From 45713417639b3a02d5e3260b6790b761f65b6e7e Mon Sep 17 00:00:00 2001
From: Mikael Karlsson <43226266+Micke-K@users.noreply.github.com>
Date: Tue, 26 Apr 2022 21:49:54 +1000
Subject: [PATCH] 3.5.0
---
CloudAPIPowerShellManagement.psd1 | Bin 8592 -> 8592 bytes
Core.psm1 | 199 +-
Documentation/ObjectCategories.json | 63 +
...0devicefirmwareconfigurationinterface.json | 14 +-
...cerestrictions_androiddeviceownerwifi.json | 26 +
.../ObjectInfo/pkcs_aospdeviceownerpkcs.json | 471 +
.../scepproperties_aospdeviceownerscep.json | 612 ++
.../session_windows10teamgeneral.json | 66 +-
...ert_aospdeviceownertrustedcertificate.json | 20 +
Documentation/ObjectInfo/vpn_iosvpn.json | 282 +-
Documentation/ObjectInfo/vpnapps_macvpn.json | 14 +-
.../wirednetwork_windows10wirednetwork.json | 2248 +++++
Documentation/Strings-cs.json | 8566 +++++++++--------
Documentation/Strings-de.json | 8566 +++++++++--------
Documentation/Strings-en.json | 8566 +++++++++--------
Documentation/Strings-es.json | 8566 +++++++++--------
Documentation/Strings-fr.json | 8566 +++++++++--------
Documentation/Strings-hu.json | 8566 +++++++++--------
Documentation/Strings-it.json | 8566 +++++++++--------
Documentation/Strings-ja.json | 8566 +++++++++--------
Documentation/Strings-ko.json | 8566 +++++++++--------
Documentation/Strings-nl.json | 8566 +++++++++--------
Documentation/Strings-pl.json | 8566 +++++++++--------
Documentation/Strings-pt.json | 8566 +++++++++--------
Documentation/Strings-ru.json | 8566 +++++++++--------
Documentation/Strings-sv.json | 8566 +++++++++--------
Documentation/Strings-tr.json | 8566 +++++++++--------
Documentation/Strings-zh-chs.json | 8566 +++++++++--------
Documentation/Strings-zh-cht.json | 8566 +++++++++--------
Documentation/Strings-zh-hans.json | 8566 +++++++++--------
Documentation/Strings-zh-hant.json | 8566 +++++++++--------
Documentation/Strings-zh.json | 8566 +++++++++--------
Extensions/Documentation.psm1 | 311 +-
Extensions/DocumentationCustom.psm1 | 335 +-
Extensions/DocumentationWord.psm1 | 150 +-
Extensions/EndpointManager.psm1 | 113 +-
Extensions/EndpointManagerInfo.psm1 | 18 +-
Extensions/MSALAuthentication.psm1 | 873 +-
Extensions/MSGraph.psm1 | 505 +-
MSALInfo.md | 2 +-
Microsoft.Identity.Client.dll | Bin 1411016 -> 1461208 bytes
Microsoft.Identity.Client.xml | 2581 ++++-
README.md | 4 +-
ReleaseNotes.md | 74 +
Start-WithConsole.cmd | 2 +-
Start-WithJson.cmd | 2 +-
Start.cmd | 2 +-
Xaml/AboutDialog.xaml | 2 +-
Xaml/CopyDialog.xaml | 47 +
Xaml/DocumentationWordOptions.xaml | 52 +-
Xaml/EndpointManagerToolsIntuneApps.xaml | 33 +
Xaml/InputDialog.xaml | 20 +-
Xaml/MSALLoginMenu.xaml | 69 +
Xaml/MainWindow.xaml | 2 +-
Xaml/ObjectDetails.xaml | 4 +-
Xaml/ProfileInfo.Xaml | 2 +
56 files changed, 101162 insertions(+), 79376 deletions(-)
create mode 100644 Documentation/ObjectInfo/pkcs_aospdeviceownerpkcs.json
create mode 100644 Documentation/ObjectInfo/scepproperties_aospdeviceownerscep.json
create mode 100644 Documentation/ObjectInfo/trustedcert_aospdeviceownertrustedcertificate.json
create mode 100644 Documentation/ObjectInfo/wirednetwork_windows10wirednetwork.json
create mode 100644 Xaml/CopyDialog.xaml
create mode 100644 Xaml/EndpointManagerToolsIntuneApps.xaml
create mode 100644 Xaml/MSALLoginMenu.xaml
diff --git a/CloudAPIPowerShellManagement.psd1 b/CloudAPIPowerShellManagement.psd1
index e55811364f93902ed944279c0e217840e49a49ac..4505f6e11283c7650d5808435313a57491db12a7 100644
GIT binary patch
delta 14
VcmbQ>Ji&QG4HKj3=2|9Uc>pIx1aANU
delta 14
VcmbQ>Ji&QG4HKiu=2|9Uc>pIr1a1HT
diff --git a/Core.psm1 b/Core.psm1
index 9108cea..82c0d79 100644
--- a/Core.psm1
+++ b/Core.psm1
@@ -11,7 +11,40 @@ This module handles the WPF UI
function Get-ModuleVersion
{
- '3.4.0'
+ '3.5.0'
+}
+
+function Initialize-Window
+{
+ param($xamlFile)
+
+ try
+ {
+ [xml]$xaml = Get-Content $xamlFile
+ [xml]$styles = Get-Content ($global:AppRootFolder + "\Themes\Styles.xaml")
+
+ ### Update relative path to full path for ResourceDictionary
+ [System.Xml.XmlNamespaceManager] $nsm = $xaml.NameTable;
+ $nsm.AddNamespace("s", 'http://schemas.microsoft.com/winfx/2006/xaml/presentation');
+ foreach($rsdNode in ($xaml.SelectNodes("//s:ResourceDictionary[@Source]", $nsm)))
+ {
+ $rsdNode.Source = (Join-Path ($global:AppRootFolder) ($rsdNode.Source)).ToString()
+ }
+
+ # Add Styles
+ foreach($node in $styles.DocumentElement.ChildNodes)
+ {
+ $tmpNode = $xaml.CreateElement("Temp")
+ $tmpNode.InnerXml = $node.OuterXml
+ $xaml.Window.'Window.Resources'.ResourceDictionary.AppendChild($tmpNode.Style) | Out-Null
+ }
+ return ([Windows.Markup.XamlReader]::Load((New-Object System.Xml.XmlNodeReader $xaml)))
+ }
+ catch
+ {
+ Write-LogError "Failed to initialize window" $_.Exception
+ return
+ }
}
function Start-CoreApp
@@ -51,6 +84,23 @@ function Start-CoreApp
Write-Log "Application started"
Write-Log "#####################################################################################"
+ Write-Log "PowerShell version: $($PSVersionTable.PSVersion.ToString())"
+ Write-Log "PowerShell build: $($PSVersionTable.BuildVersion.ToString())"
+ Write-Log "PowerShell CLR: $($PSVersionTable.CLRVersion.ToString())"
+ Write-Log "PowerShell edition: $($PSVersionTable.PSEdition)"
+
+ try
+ {
+ $osName = Get-ItemPropertyValue "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion" -Name "ProductName" -ErrorAction Stop
+ $patchLevel = Get-ItemPropertyValue "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion" -Name "UBR" -ErrorAction Stop
+ $ver = [Version]::new([Environment]::OSVersion.Version.Major,[Environment]::OSVersion.Version.Minor, [Environment]::OSVersion.Version.Build, $patchLevel)
+ Write-Log "OS: $osName $ver"
+ }
+ catch
+ {
+ Write-Log "OS version: $([environment]::OSVersion.VersionString)"
+ }
+
if(Test-Path $global:modulesPath)
{
Import-AllModules
@@ -98,6 +148,8 @@ function Start-CoreApp
Show-View $View
+ if((Get-SettingValue "CheckForUpdates") -eq $true) { Get-IsLatestVersion }
+
Invoke-ModuleFunction "Invoke-ShowMainWindow"
$global:txtSplashText.Text = "Open main window"
@@ -600,7 +652,6 @@ function Show-UpdatesDialog
Show-ModalObject
}
- #Get-Module | Where Name -eq "Core"
$fileContent = Get-Content -Raw -Path ($global:AppRootFolder + "\ReleaseNotes.md")
try
{
@@ -614,14 +665,6 @@ function Show-UpdatesDialog
if($mystream) { $mystream.Dispose() }
}
- <#
- $latest = Invoke-RestMethod "https://api.github.com/repos/Micke-K/IntuneManagement/releases/latest"
- if($latest)
- {
-
- }
- #>
-
$content = Invoke-RestMethod "https://api.github.com/repos/Micke-K/IntuneManagement/contents/ReleaseNotes.md"
if($content)
{
@@ -647,6 +690,102 @@ function Show-UpdatesDialog
Show-ModalForm "Release Notes" $script:dlgUpdates -HideButtons
}
+function Get-IsLatestVersion
+{
+ if($global:MainAppStarted -ne $true)
+ {
+ $global:txtSplashText.Text = "Check for updates"
+ [System.Windows.Forms.Application]::DoEvents()
+ }
+
+ $gitHubVer = $null
+
+ $content = Invoke-RestMethod "https://api.github.com/repos/Micke-K/IntuneManagement/releases/latest"
+ if($content.Name)
+ {
+ try
+ {
+ $gitHubVer = [version]$content.Name
+ }
+ catch {}
+ }
+
+ if($null -eq $gitHubVer)
+ {
+ $content = Invoke-RestMethod "https://api.github.com/repos/Micke-K/IntuneManagement/contents/CloudAPIPowerShellManagement.psd1"
+ $gitHubText = [System.Text.Encoding]::UTF8.GetString(([System.Convert]::FromBase64String($content.content)))
+ $gitHubInfo = Get-ModuleDataTable $gitHubText
+ try
+ {
+ $gitHubVer = [version]$gitHubInfo.ModuleVersion
+ }
+ catch {}
+ }
+
+ if(-not $gitHubVer)
+ {
+ Write-log "Failed to get version info in GitHub" 2
+ return
+ }
+
+ $LocalInfo = $null
+ $localVer = $null
+ try
+ {
+ Import-LocalizedData -BindingVariable LocalInfo -BaseDirectory $global:AppRootFolder -FileName "CloudAPIPowerShellManagement.psd1" -ErrorAction Stop
+ $localVer = [version]$LocalInfo.ModuleVersion
+ }
+ catch { }
+
+ if(-not $localVer)
+ {
+ Write-log "Failed to get version info from local file" 2
+ return
+ }
+
+ if($localVer -lt $gitHubVer)
+ {
+ Write-Log "Local version and GitHub version does not match" 2
+ Write-Log "Local version: $($localVer.ToString())"
+ Write-Log "GitHub version: $($gitHubVer.ToString())"
+ [System.Windows.MessageBox]::Show("There is a new version available on GitHub $($gitHubVer.ToString())`n`nCurrent version is $($localVer.ToString())", "Old version!", "OK", "Warning")
+ }
+ else
+ {
+ Write-Log "Running latest version: $($localVer.ToString())"
+ }
+}
+
+function Get-ModuleDataTable
+{
+ param($moduleText)
+
+ $result = $null
+
+ if(-not $moduleText) { return }
+
+ try
+ {
+ $Path = [IO.path]::ChangeExtension([IO.Path]::GetTempFileName(), "psd1")
+ $FI = [io.FileInfo]$path
+ $Utf8NoBomEncoding = New-Object System.Text.UTF8Encoding $False
+ [System.IO.File]::WriteAllLines($FI.FullName, $moduleText, $Utf8NoBomEncoding)
+ $Result = $null
+ Import-LocalizedData -BindingVariable Result -BaseDirectory $FI.DirectoryName -FileName $fi.Name
+ }
+ catch
+ {
+
+ }
+ finally
+ {
+ try { [IO.File]::Delete(([IO.path]::ChangeExtension($FI.FullName, "tmp"))) } catch {}
+ try { $FI.Delete() } catch{}
+ }
+
+ $Result
+}
+
function Show-InputDialog
{
param(
@@ -654,7 +793,7 @@ function Show-InputDialog
$FormText,
$DefaultValue)
- $script:inputBox = Get-XamlObject ($global:AppRootFolder + "\Xaml\InputDialog.xaml")
+ $script:inputBox = Initialize-Window ($global:AppRootFolder + "\Xaml\InputDialog.xaml")
if(-not $script:inputBox) { return }
$script:inputBox.Title = $FormTitle
@@ -672,6 +811,9 @@ function Show-InputDialog
$script:txtValue.Focus();
})
+ $inputBox.Owner = $global:window
+ $inputBox.Icon = $global:Window.Icon
+
$inputBox.ShowDialog() | Out-null
return $script:txtValue.Text
@@ -1674,7 +1816,7 @@ function Show-SettingsForm
}
}
- foreach($section in $global:appSettingSections)
+ foreach($settingObj in $global:appSettingSections)
{
if(-not ($settingObj | Get-Member -MemberType NoteProperty -Name "Priority"))
{
@@ -1738,8 +1880,16 @@ function Add-DefaultSettings
Key = "PreviewFeatures"
Type = "Boolean"
DefaultValue = $false
- Description = "Enable featurs that are marked as Preview. This might require a restart and prompt for consent"
+ Description = "Enable features that are marked as Preview. This might require a restart and prompt for consent"
}) "General"
+
+ Add-SettingsObject (New-Object PSObject -Property @{
+ Title = "Check for updates"
+ Key = "CheckForUpdates"
+ Type = "Boolean"
+ DefaultValue = $true
+ Description = "Check GitHub if there is a later version available"
+ }) "General"
}
function Add-SettingsObject
@@ -1752,7 +1902,12 @@ function Add-SettingsObject
Write-Log "Could not find section $section" 3
return
}
- $section.Values += $obj
+
+ try
+ {
+ $section.Values += $obj
+ }
+ catch { }
}
function Save-AllSettings
@@ -2168,10 +2323,10 @@ function Get-MainWindow
{
$window.Close()
}
- }
+ }
- Show-ModalForm $window.Title $script:welcomeForm -HideButtons
- }
+ Show-ModalForm $window.Title $script:welcomeForm -HideButtons
+ }
})
foreach($view in $global:viewObjects)
@@ -2186,7 +2341,8 @@ function Get-MainWindow
}
})
$global:mnuViews.AddChild($subItem) | Out-Null
- }
+ }
+
}
#endregion
@@ -2229,7 +2385,12 @@ function Get-JWTtoken
{
param($token)
- if(-not $token -or -not $token.StartsWith("eyJ")) { Write-Log "Invalid token" 3; return }
+ if(-not $token) { return }
+
+ if(-not $token.StartsWith("eyJ"))
+ {
+ Write-Log "Invalid JWT token" 3; return
+ }
# First part is the header. Second part is the payload. Third part is the signature
$arr = $token.Split(".")
diff --git a/Documentation/ObjectCategories.json b/Documentation/ObjectCategories.json
index d0ba58a..ce9787c 100644
--- a/Documentation/ObjectCategories.json
+++ b/Documentation/ObjectCategories.json
@@ -413,6 +413,42 @@
"DeviceRestrictions"
]
},
+ {
+ "ObjectType": "#microsoft.graph.aospDeviceOwnerEnterpriseWiFiConfiguration",
+ "PolicyType": "AOSPDeviceOwnerWiFi",
+ "PolicyTypeLanguageId": "wiFi",
+ "PlatformLanguageId": "AndroidAOSP",
+ "Categories": [
+
+ ]
+ },
+ {
+ "ObjectType": "#microsoft.graph.aospDeviceOwnerTrustedRootCertificate",
+ "PolicyType": "AOSPDeviceOwnerTrustedCertificate",
+ "PolicyTypeLanguageId": "trustedCertificate",
+ "PlatformLanguageId": "AndroidAOSP",
+ "Categories": [
+
+ ]
+ },
+ {
+ "ObjectType": "#microsoft.graph.aospDeviceOwnerPkcsCertificateProfile",
+ "PolicyType": "AOSPDeviceOwnerPKCS",
+ "PolicyTypeLanguageId": "pkcsCertificate",
+ "PlatformLanguageId": "AndroidAOSP",
+ "Categories": [
+
+ ]
+ },
+ {
+ "ObjectType": "#microsoft.graph.aospDeviceOwnerScepCertificateProfile",
+ "PolicyType": "AOSPDeviceOwnerSCEP",
+ "PolicyTypeLanguageId": "scepCertificate",
+ "PlatformLanguageId": "AndroidAOSP",
+ "Categories": [
+
+ ]
+ },
{
"ObjectType": "#microsoft.graph.editionUpgradeConfiguration",
"PolicyType": "WindowsEditionUpgrade",
@@ -1114,6 +1150,15 @@
"Win10Wifi"
]
},
+ {
+ "ObjectType": "#microsoft.graph.windowsWiredNetworkConfiguration",
+ "PolicyType": "Windows10WiredNetwork",
+ "PolicyTypeLanguageId": "wiredNetwork",
+ "PlatformLanguageId": "Windows10",
+ "Categories": [
+
+ ]
+ },
{
"ObjectType": "#microsoft.graph.windowsWifiEnterpriseEAPConfiguration",
"PolicyType": "Windows10WiFi",
@@ -1320,5 +1365,23 @@
"Categories": [
]
+ },
+ {
+ "ObjectType": "settingsCatalogLinux",
+ "PolicyType": "SettingsCatalogLinux",
+ "PolicyTypeLanguageId": "settingsCatalog",
+ "PlatformLanguageId": "Linux",
+ "Categories": [
+
+ ]
+ },
+ {
+ "ObjectType": "settingsCatalogIOS",
+ "PolicyType": "SettingsCatalogIOS",
+ "PolicyTypeLanguageId": "settingsCatalog",
+ "PlatformLanguageId": "Ios",
+ "Categories": [
+
+ ]
}
]
diff --git a/Documentation/ObjectInfo/devicefirmwareconfigurationinterface_windows10devicefirmwareconfigurationinterface.json b/Documentation/ObjectInfo/devicefirmwareconfigurationinterface_windows10devicefirmwareconfigurationinterface.json
index ea9e941..af950be 100644
--- a/Documentation/ObjectInfo/devicefirmwareconfigurationinterface_windows10devicefirmwareconfigurationinterface.json
+++ b/Documentation/ObjectInfo/devicefirmwareconfigurationinterface_windows10devicefirmwareconfigurationinterface.json
@@ -244,7 +244,7 @@
"enabled": true
}
],
- "entityKey": "frontCameras",
+ "entityKey": "frontCamera",
"booleanActions": 0,
"defaultValue": "notConfigured",
"unconfiguredValue": "notConfigured",
@@ -276,7 +276,7 @@
"enabled": true
}
],
- "entityKey": "rearCameras",
+ "entityKey": "rearCamera",
"booleanActions": 0,
"defaultValue": "notConfigured",
"unconfiguredValue": "notConfigured",
@@ -308,7 +308,7 @@
"enabled": true
}
],
- "entityKey": "infraredCameras",
+ "entityKey": "infraredCamera",
"booleanActions": 0,
"defaultValue": "notConfigured",
"unconfiguredValue": "notConfigured",
@@ -372,7 +372,7 @@
"enabled": true
}
],
- "entityKey": "microphones",
+ "entityKey": "microphone",
"booleanActions": 0,
"defaultValue": "notConfigured",
"unconfiguredValue": "notConfigured",
@@ -484,7 +484,7 @@
"enabled": true
}
],
- "entityKey": "wwan",
+ "entityKey": "wirelessWideAreaNetwork",
"booleanActions": 0,
"defaultValue": "notConfigured",
"unconfiguredValue": "notConfigured",
@@ -516,7 +516,7 @@
"enabled": true
}
],
- "entityKey": "nfc",
+ "entityKey": "nearFieldCommunication",
"booleanActions": 0,
"defaultValue": "notConfigured",
"unconfiguredValue": "notConfigured",
@@ -548,7 +548,7 @@
"enabled": true
}
],
- "entityKey": "wifi",
+ "entityKey": "wiFi",
"booleanActions": 0,
"defaultValue": "notConfigured",
"unconfiguredValue": "notConfigured",
diff --git a/Documentation/ObjectInfo/devicerestrictions_androiddeviceownerwifi.json b/Documentation/ObjectInfo/devicerestrictions_androiddeviceownerwifi.json
index 201a6ba..1db07a7 100644
--- a/Documentation/ObjectInfo/devicerestrictions_androiddeviceownerwifi.json
+++ b/Documentation/ObjectInfo/devicerestrictions_androiddeviceownerwifi.json
@@ -198,6 +198,32 @@
"policyType": 9,
"enabled": true
},
+ {
+ "dataType": 19,
+ "category": 41,
+ "nameResourceKey": "wiFiPolicyConnectAutomaticallyName",
+ "descriptionResourceKey": "wiFiPolicyConnectAutomaticallyDescription",
+ "childSettings": [
+
+ ],
+ "options": [
+ {
+ "nameResourceKey": "enableOption",
+ "value": true,
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "disableOption",
+ "value": false,
+ "enabled": true
+ }
+ ],
+ "entityKey": "connectAutomatically",
+ "booleanActions": 0,
+ "defaultValue": false,
+ "policyType": 9,
+ "enabled": true
+ },
{
"dataType": 19,
"category": 41,
diff --git a/Documentation/ObjectInfo/pkcs_aospdeviceownerpkcs.json b/Documentation/ObjectInfo/pkcs_aospdeviceownerpkcs.json
new file mode 100644
index 0000000..e3b9b4e
--- /dev/null
+++ b/Documentation/ObjectInfo/pkcs_aospdeviceownerpkcs.json
@@ -0,0 +1,471 @@
+{
+ "pkcs_aospdeviceownerpkcs": [
+ {
+ "dataType": 14,
+ "category": 88,
+ "nameResourceKey": "sCEPPolicyRenewalThresholdName",
+ "descriptionResourceKey": "sCEPPolicyRenewalThresholdDescription",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "renewalThresholdPercentage",
+ "booleanActions": 0,
+ "policyType": 121,
+ "enabled": true
+ },
+ {
+ "scaleOptions": [
+ {
+ "nameResourceKey": "days",
+ "value": "days",
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "months",
+ "value": "months",
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "years",
+ "value": "years",
+ "enabled": true
+ }
+ ],
+ "scaleEntityKey": "certificateValidityPeriodScale",
+ "defaultScale": "years",
+ "dataType": 22,
+ "category": 88,
+ "nameResourceKey": "sCEPPolicyCertificateValidityPeriodName",
+ "descriptionResourceKey": "sCEPPolicyCertificateValidityPeriodDescription",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "certificateValidityPeriodValue",
+ "booleanActions": 0,
+ "policyType": 121,
+ "enabled": true
+ },
+ {
+ "dataType": 20,
+ "category": 88,
+ "nameResourceKey": "pKCSPolicyCertificationAuthorityName",
+ "descriptionResourceKey": "pKCSPolicyCertificationAuthorityNameDescription",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "certificationAuthority",
+ "booleanActions": 0,
+ "defaultValue": "",
+ "policyType": 121,
+ "enabled": true
+ },
+ {
+ "dataType": 20,
+ "category": 88,
+ "nameResourceKey": "pKCSPolicyCertificationAuthorityNameName",
+ "descriptionResourceKey": "pKCSPolicyCertificationAuthorityNameNameDescription",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "certificationAuthorityName",
+ "booleanActions": 0,
+ "defaultValue": "",
+ "policyType": 121,
+ "enabled": true
+ },
+ {
+ "dataType": 20,
+ "category": 88,
+ "nameResourceKey": "pKCSPolicyCertificateTemplateNameName",
+ "descriptionResourceKey": "empty",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "certificateTemplateName",
+ "booleanActions": 0,
+ "defaultValue": "",
+ "policyType": 121,
+ "enabled": true
+ },
+ {
+ "dataType": 16,
+ "category": 88,
+ "nameResourceKey": "pKCSPolicyCertificationAuthorityType",
+ "descriptionResourceKey": "empty",
+ "emptyValueResourceKey": "1",
+ "childSettings": [
+
+ ],
+ "options": [
+ {
+ "nameResourceKey": "MicrosoftCA",
+ "value": "Microsoft",
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "DigiCertCA",
+ "value": "DigiCert",
+ "enabled": true
+ }
+ ],
+ "entityKey": "certificationAuthorityType",
+ "booleanActions": 0,
+ "policyType": 121,
+ "enabled": true
+ },
+ {
+ "dataType": 16,
+ "category": 88,
+ "nameResourceKey": "SCEPPolicyWindowsCertificateStoreName",
+ "descriptionResourceKey": "empty",
+ "childSettings": [
+
+ ],
+ "options": [
+ {
+ "nameResourceKey": "SCEPPolicyWindowsCertificateStoreUser",
+ "value": "user",
+ "children": [
+ {
+ "value": "custom",
+ "dataType": 9,
+ "category": 88,
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "subjectNameFormat",
+ "booleanActions": 0,
+ "policyType": 121,
+ "enabled": true
+ },
+ {
+ "dataType": 20,
+ "category": 88,
+ "nameResourceKey": "SCEPPolicySubjectNameFormatName",
+ "descriptionResourceKey": "sCEPPolicyCustomSubjectNameWithAadFormatDescription",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "subjectNameFormatString",
+ "booleanActions": 0,
+ "defaultValue": "CN={{UserName}},E={{EmailAddress}}",
+ "policyType": 121,
+ "enabled": true
+ },
+ {
+ "columns": [
+ {
+ "metadata": {
+ "dataType": 16,
+ "category": 88,
+ "nameResourceKey": "attribute",
+ "descriptionResourceKey": "empty",
+ "childSettings": [
+
+ ],
+ "options": [
+ {
+ "nameResourceKey": "PolicyEmailAddress",
+ "value": "emailAddress",
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "PolicyUserPrincipalName",
+ "value": "userPrincipalName",
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "PolicyDomainNameService",
+ "value": "domainNameService",
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "PolicyUniversalResourceIdentifier",
+ "value": "universalResourceIdentifier",
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "SCEPPolicyCustomAADAttribute",
+ "value": "customAzureADAttribute",
+ "enabled": true
+ }
+ ],
+ "entityKey": "sanType",
+ "booleanActions": 0,
+ "policyType": 121,
+ "enabled": true
+ }
+ },
+ {
+ "metadata": {
+ "dataType": 20,
+ "category": 88,
+ "nameResourceKey": "value",
+ "descriptionResourceKey": "empty",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "name",
+ "booleanActions": 0,
+ "policyType": 121,
+ "enabled": true
+ }
+ }
+ ],
+ "dataType": 21,
+ "category": 88,
+ "nameResourceKey": "PolicySubjectAlternativeName",
+ "descriptionResourceKey": "PolicySubjectAlternativeNameDescription",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "customSubjectAlternativeNames",
+ "booleanActions": 0,
+ "policyType": 121,
+ "enabled": true
+ }
+ ],
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "SCEPPolicyWindowsCertificateStoreMachine",
+ "value": "machine",
+ "children": [
+ {
+ "value": "custom",
+ "dataType": 9,
+ "category": 88,
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "subjectNameFormat",
+ "booleanActions": 0,
+ "policyType": 121,
+ "enabled": true
+ },
+ {
+ "dataType": 20,
+ "category": 88,
+ "nameResourceKey": "sCEPPolicySubjectNameFormatName",
+ "descriptionResourceKey": "sCEPPolicySubjectNameFormatDescription",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "subjectNameFormatString",
+ "booleanActions": 0,
+ "defaultValue": "CN={{AAD_Device_ID}}",
+ "policyType": 121,
+ "enabled": true
+ },
+ {
+ "columns": [
+ {
+ "metadata": {
+ "dataType": 16,
+ "category": 88,
+ "nameResourceKey": "attribute",
+ "descriptionResourceKey": "empty",
+ "childSettings": [
+
+ ],
+ "options": [
+ {
+ "nameResourceKey": "PolicyEmailAddress",
+ "value": "emailAddress",
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "PolicyUserPrincipalName",
+ "value": "userPrincipalName",
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "PolicyDomainNameService",
+ "value": "domainNameService",
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "PolicyUniversalResourceIdentifier",
+ "value": "universalResourceIdentifier",
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "SCEPPolicyCustomAADAttribute",
+ "value": "customAzureADAttribute",
+ "enabled": true
+ }
+ ],
+ "entityKey": "sanType",
+ "booleanActions": 0,
+ "policyType": 121,
+ "enabled": true
+ }
+ },
+ {
+ "metadata": {
+ "dataType": 20,
+ "category": 88,
+ "nameResourceKey": "value",
+ "descriptionResourceKey": "empty",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "name",
+ "booleanActions": 0,
+ "policyType": 121,
+ "enabled": true
+ }
+ }
+ ],
+ "dataType": 21,
+ "category": 88,
+ "nameResourceKey": "PolicySubjectAlternativeName",
+ "descriptionResourceKey": "PolicySubjectAlternativeNameDescription",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "customSubjectAlternativeNames",
+ "booleanActions": 0,
+ "policyType": 121,
+ "enabled": true
+ }
+ ],
+ "enabled": true
+ }
+ ],
+ "entityKey": "certificateStore",
+ "booleanActions": 0,
+ "defaultValue": "user",
+ "policyType": 121,
+ "enabled": true
+ },
+ {
+ "columns": [
+ {
+ "metadata": {
+ "dataType": 20,
+ "category": 88,
+ "nameResourceKey": "eDPPolicyAppsListNameName",
+ "descriptionResourceKey": "empty",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "name",
+ "booleanActions": 0,
+ "policyType": 121,
+ "enabled": true
+ }
+ },
+ {
+ "metadata": {
+ "dataType": 20,
+ "category": 88,
+ "nameResourceKey": "sCEPPolicyObjectIdentifierColumnName",
+ "descriptionResourceKey": "empty",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "objectIdentifier",
+ "booleanActions": 0,
+ "policyType": 121,
+ "enabled": true
+ }
+ }
+ ],
+ "dataType": 21,
+ "category": 88,
+ "nameResourceKey": "sCEPPolicyExtendedKeyUsageName",
+ "descriptionResourceKey": "sCEPPolicyExtendedKeyUsageDescription",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "extendedKeyUsages",
+ "booleanActions": 0,
+ "policyType": 121,
+ "enabled": true
+ },
+ {
+ "complexOptions": [
+ {
+ "dataType": 4,
+ "category": 88,
+ "nameResourceKey": "sCEPPolicySelectRootCertificateName",
+ "descriptionResourceKey": "SCEPPolicySelectRootCertificateName",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "rootCertificate",
+ "booleanActions": 0,
+ "unconfiguredValue": "notConfigured",
+ "policyType": 121,
+ "enabled": true
+ }
+ ],
+ "dataType": 5,
+ "category": 88,
+ "nameResourceKey": "sCEPPolicySelectRootCertificateName",
+ "descriptionResourceKey": "sCEPPolicySelectRootCertificateDescription",
+ "emptyValueResourceKey": "selectCertificate",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "booleanActions": 0,
+ "policyType": 121,
+ "enabled": true
+ }
+ ]
+}
diff --git a/Documentation/ObjectInfo/scepproperties_aospdeviceownerscep.json b/Documentation/ObjectInfo/scepproperties_aospdeviceownerscep.json
new file mode 100644
index 0000000..abd44b9
--- /dev/null
+++ b/Documentation/ObjectInfo/scepproperties_aospdeviceownerscep.json
@@ -0,0 +1,612 @@
+{
+ "scepproperties_aospdeviceownerscep": [
+ {
+ "dataType": 16,
+ "category": 96,
+ "nameResourceKey": "SCEPPolicyWindowsCertificateStoreName",
+ "descriptionResourceKey": "empty",
+ "childSettings": [
+
+ ],
+ "options": [
+ {
+ "nameResourceKey": "SCEPPolicyWindowsCertificateStoreUser",
+ "value": "user",
+ "children": [
+ {
+ "value": "custom",
+ "dataType": 9,
+ "category": 96,
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "subjectNameFormat",
+ "booleanActions": 0,
+ "policyType": 122,
+ "enabled": true
+ },
+ {
+ "dataType": 20,
+ "category": 96,
+ "nameResourceKey": "sCEPPolicySubjectNameFormatName",
+ "descriptionResourceKey": "sCEPPolicySubjectNameFormatDescription",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "subjectNameFormatString",
+ "booleanActions": 0,
+ "defaultValue": "CN={{UserName}},E={{EmailAddress}}",
+ "policyType": 122,
+ "enabled": true
+ },
+ {
+ "columns": [
+ {
+ "metadata": {
+ "dataType": 16,
+ "category": 96,
+ "nameResourceKey": "attribute",
+ "descriptionResourceKey": "empty",
+ "childSettings": [
+
+ ],
+ "options": [
+ {
+ "nameResourceKey": "PolicyEmailAddress",
+ "value": "emailAddress",
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "PolicyUserPrincipalName",
+ "value": "userPrincipalName",
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "PolicyDomainNameService",
+ "value": "domainNameService",
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "PolicyUniversalResourceIdentifier",
+ "value": "universalResourceIdentifier",
+ "enabled": true
+ }
+ ],
+ "entityKey": "sanType",
+ "booleanActions": 0,
+ "policyType": 122,
+ "enabled": true
+ }
+ },
+ {
+ "metadata": {
+ "dataType": 20,
+ "category": 96,
+ "nameResourceKey": "value",
+ "descriptionResourceKey": "empty",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "name",
+ "booleanActions": 0,
+ "policyType": 122,
+ "enabled": true
+ }
+ }
+ ],
+ "dataType": 21,
+ "category": 96,
+ "nameResourceKey": "PolicySubjectAlternativeName",
+ "descriptionResourceKey": "PolicySubjectAlternativeNameDescription",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "customSubjectAlternativeNames",
+ "booleanActions": 0,
+ "policyType": 122,
+ "enabled": true
+ }
+ ],
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "SCEPPolicyWindowsCertificateStoreMachine",
+ "value": "machine",
+ "children": [
+ {
+ "value": "custom",
+ "dataType": 9,
+ "category": 96,
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "subjectNameFormat",
+ "booleanActions": 0,
+ "policyType": 122,
+ "enabled": true
+ },
+ {
+ "dataType": 20,
+ "category": 96,
+ "nameResourceKey": "sCEPPolicySubjectNameFormatName",
+ "descriptionResourceKey": "sCEPPolicySubjectNameFormatDescription",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "subjectNameFormatString",
+ "booleanActions": 0,
+ "defaultValue": "CN={{AAD_Device_ID}}",
+ "policyType": 122,
+ "enabled": true
+ },
+ {
+ "columns": [
+ {
+ "metadata": {
+ "dataType": 16,
+ "category": 96,
+ "nameResourceKey": "attribute",
+ "descriptionResourceKey": "empty",
+ "childSettings": [
+
+ ],
+ "options": [
+ {
+ "nameResourceKey": "PolicyEmailAddress",
+ "value": "emailAddress",
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "PolicyUserPrincipalName",
+ "value": "userPrincipalName",
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "PolicyDomainNameService",
+ "value": "domainNameService",
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "PolicyUniversalResourceIdentifier",
+ "value": "universalResourceIdentifier",
+ "enabled": true
+ }
+ ],
+ "entityKey": "sanType",
+ "booleanActions": 0,
+ "policyType": 122,
+ "enabled": true
+ }
+ },
+ {
+ "metadata": {
+ "dataType": 20,
+ "category": 96,
+ "nameResourceKey": "value",
+ "descriptionResourceKey": "empty",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "name",
+ "booleanActions": 0,
+ "policyType": 122,
+ "enabled": true
+ }
+ }
+ ],
+ "dataType": 21,
+ "category": 96,
+ "nameResourceKey": "PolicySubjectAlternativeName",
+ "descriptionResourceKey": "PolicySubjectAlternativeNameDescription",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "customSubjectAlternativeNames",
+ "booleanActions": 0,
+ "policyType": 122,
+ "enabled": true
+ }
+ ],
+ "enabled": true
+ }
+ ],
+ "entityKey": "certificateStore",
+ "booleanActions": 0,
+ "defaultValue": "user",
+ "policyType": 122,
+ "enabled": true
+ },
+ {
+ "scaleOptions": [
+ {
+ "nameResourceKey": "days",
+ "value": "days",
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "months",
+ "value": "months",
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "years",
+ "value": "years",
+ "enabled": true
+ }
+ ],
+ "scaleEntityKey": "certificateValidityPeriodScale",
+ "defaultScale": "years",
+ "dataType": 22,
+ "category": 96,
+ "nameResourceKey": "sCEPPolicyCertificateValidityPeriodName",
+ "descriptionResourceKey": "sCEPPolicyCertificateValidityPeriodDescription",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "certificateValidityPeriodValue",
+ "booleanActions": 0,
+ "policyType": 122,
+ "enabled": true
+ },
+ {
+ "dataType": 16,
+ "category": 96,
+ "nameResourceKey": "sCEPPolicySubjectNameFormatName",
+ "descriptionResourceKey": "empty",
+ "childSettings": [
+
+ ],
+ "options": [
+ {
+ "nameResourceKey": "notConfigured",
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "sCEPPolicySubjectNameFormatCommonName",
+ "value": "commonName",
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "sCEPPolicySubjectNameFormatCommonNameAndEmailAddress",
+ "value": "commonNameIncludingEmail",
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "sCEPPolicySubjectNameFormatCommonNameAsEmail",
+ "value": "commonNameAsEmail",
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "sCEPPolicySubjectNameFormatCommonNameAsIMEI",
+ "value": "commonNameAsIMEI",
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "sCEPPolicySubjectNameFormatCommonNameAsSerialNumber",
+ "value": "commonNameAsSerialNumber",
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "sCEPPolicySubjectNameFormatCustom",
+ "value": "custom",
+ "children": [
+ {
+ "dataType": 20,
+ "category": 96,
+ "nameResourceKey": "sCEPPolicySubjectNameFormatCustom",
+ "descriptionResourceKey": "sCEPPolicyCustomSubjectNameWithAadFormatDescription",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "subjectNameFormatString",
+ "booleanActions": 0,
+ "defaultValue": "CN={{UserName}},E={{EmailAddress}}",
+ "policyType": 122,
+ "enabled": true
+ }
+ ],
+ "enabled": true
+ }
+ ],
+ "entityKey": "subjectNameFormat",
+ "booleanActions": 0,
+ "policyType": 122,
+ "enabled": true
+ },
+ {
+ "dataType": 13,
+ "category": 96,
+ "nameResourceKey": "PolicySubjectAlternativeName",
+ "descriptionResourceKey": "PolicySubjectAlternativeNameDescription",
+ "emptyValueResourceKey": "notConfigured",
+ "childSettings": [
+
+ ],
+ "options": [
+ {
+ "nameResourceKey": "PolicyEmailAddress",
+ "value": "emailAddress",
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "PolicyUserPrincipalName",
+ "value": "userPrincipalName",
+ "enabled": true
+ }
+ ],
+ "entityKey": "subjectAlternativeNameType",
+ "booleanActions": 0,
+ "policyType": 122,
+ "enabled": true
+ },
+ {
+ "dataType": 13,
+ "category": 96,
+ "nameResourceKey": "sCEPPolicyKeyUsageName",
+ "descriptionResourceKey": "sCEPPolicyKeyUsageDescription",
+ "childSettings": [
+
+ ],
+ "options": [
+ {
+ "nameResourceKey": "sCEPPolicyUseAsDigitialSignature",
+ "value": "digitalSignature",
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "sCEPPolicyUseForKeyEncipherment",
+ "value": "keyEncipherment",
+ "enabled": true
+ }
+ ],
+ "entityKey": "keyUsage",
+ "booleanActions": 0,
+ "policyType": 122,
+ "enabled": true
+ },
+ {
+ "dataType": 16,
+ "category": 96,
+ "nameResourceKey": "sCEPPolicyKeySizeName",
+ "descriptionResourceKey": "sCEPPolicyKeySizeDescription",
+ "childSettings": [
+
+ ],
+ "options": [
+ {
+ "nameResourceKey": "notConfigured",
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "",
+ "displayText": "1024",
+ "value": "size1024",
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "",
+ "displayText": "2048",
+ "value": "size2048",
+ "enabled": true
+ }
+ ],
+ "entityKey": "keySize",
+ "booleanActions": 0,
+ "policyType": 122,
+ "enabled": true
+ },
+ {
+ "dataType": 13,
+ "category": 96,
+ "nameResourceKey": "sCEPPolicyHashAlgorithmName",
+ "descriptionResourceKey": "sCEPPolicyHashAlgorithmDescription",
+ "childSettings": [
+
+ ],
+ "options": [
+ {
+ "nameResourceKey": "sCEPPPolicySHA1",
+ "value": "sha1",
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "sCEPPPolicySHA2",
+ "value": "sha2",
+ "enabled": true
+ }
+ ],
+ "entityKey": "hashAlgorithm",
+ "booleanActions": 0,
+ "policyType": 122,
+ "enabled": true
+ },
+ {
+ "complexOptions": [
+ {
+ "dataType": 4,
+ "category": 96,
+ "nameResourceKey": "sCEPPolicySelectRootCertificateName",
+ "descriptionResourceKey": "SCEPPolicySelectRootCertificateName",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "rootCertificate",
+ "booleanActions": 0,
+ "unconfiguredValue": "notConfigured",
+ "policyType": 122,
+ "enabled": true
+ }
+ ],
+ "dataType": 5,
+ "category": 96,
+ "nameResourceKey": "sCEPPolicySelectRootCertificateName",
+ "descriptionResourceKey": "sCEPPolicySelectRootCertificateDescription",
+ "emptyValueResourceKey": "selectCertificate",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "booleanActions": 0,
+ "policyType": 122,
+ "enabled": true
+ },
+ {
+ "columns": [
+ {
+ "metadata": {
+ "dataType": 20,
+ "category": 96,
+ "nameResourceKey": "eDPPolicyAppsListNameName",
+ "descriptionResourceKey": "empty",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "name",
+ "booleanActions": 0,
+ "policyType": 122,
+ "enabled": true
+ }
+ },
+ {
+ "metadata": {
+ "dataType": 20,
+ "category": 96,
+ "nameResourceKey": "sCEPPolicyObjectIdentifierColumnName",
+ "descriptionResourceKey": "empty",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "objectIdentifier",
+ "booleanActions": 0,
+ "policyType": 122,
+ "enabled": true
+ }
+ }
+ ],
+ "dataType": 21,
+ "category": 96,
+ "nameResourceKey": "sCEPPolicyExtendedKeyUsageName",
+ "descriptionResourceKey": "sCEPPolicyExtendedKeyUsageDescription",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "extendedKeyUsages",
+ "booleanActions": 0,
+ "policyType": 122,
+ "enabled": true
+ },
+ {
+ "isSettingDescription": false,
+ "showAsSectionHeader": false,
+ "dataType": 8,
+ "category": 96,
+ "nameResourceKey": "enrollmentSettingsHeading",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "booleanActions": 0,
+ "policyType": 122,
+ "enabled": true
+ },
+ {
+ "dataType": 14,
+ "category": 96,
+ "nameResourceKey": "sCEPPolicyRenewalThresholdName",
+ "descriptionResourceKey": "sCEPPolicyRenewalThresholdDescription",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "renewalThresholdPercentage",
+ "booleanActions": 0,
+ "policyType": 122,
+ "enabled": true
+ },
+ {
+ "columns": [
+ {
+ "metadata": {
+ "dataType": 20,
+ "category": 96,
+ "nameResourceKey": "sCEPPolicyServerURLName",
+ "descriptionResourceKey": "empty",
+ "emptyValueResourceKey": "sCEPPolicyServerURLSExample",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "sCEPPolicyServerURLName",
+ "booleanActions": 0,
+ "policyType": 122,
+ "enabled": true
+ }
+ }
+ ],
+ "dataType": 21,
+ "category": 96,
+ "nameResourceKey": "sCEPPolicyServerURLSName",
+ "descriptionResourceKey": "sCEPPolicyServerURLSDescription",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "scepServerUrls",
+ "booleanActions": 0,
+ "policyType": 122,
+ "enabled": true
+ }
+ ]
+}
diff --git a/Documentation/ObjectInfo/session_windows10teamgeneral.json b/Documentation/ObjectInfo/session_windows10teamgeneral.json
index 5a6177f..1c5c1a4 100644
--- a/Documentation/ObjectInfo/session_windows10teamgeneral.json
+++ b/Documentation/ObjectInfo/session_windows10teamgeneral.json
@@ -31,57 +31,57 @@
"enabled": true
},
{
- "displayText": "Never timeout",
+ "nameResourceKey": "timeoutNever",
"value": 0,
"enabled": true
},
{
- "displayText": "1 minute",
+ "nameResourceKey": "timeoutOneMinute",
"value": 1,
"enabled": true
},
{
- "displayText": "2 minutes",
+ "nameResourceKey": "timeoutTwoMinutes",
"value": 2,
"enabled": true
},
{
- "displayText": "3 minutes",
+ "nameResourceKey": "timeoutThreeMinutes",
"value": 3,
"enabled": true
},
{
- "displayText": "5 minutes",
+ "nameResourceKey": "timeoutFiveMinutes",
"value": 5,
"enabled": true
},
{
- "displayText": "10 minutes",
+ "nameResourceKey": "timeoutTenMinutes",
"value": 10,
"enabled": true
},
{
- "displayText": "15 minutes",
+ "nameResourceKey": "timeoutFifteenMinutes",
"value": 15,
"enabled": true
},
{
- "displayText": "30 minutes",
+ "nameResourceKey": "timeoutThirtyMinutes",
"value": 30,
"enabled": true
},
{
- "displayText": "1 hour",
+ "nameResourceKey": "timeoutOneHour",
"value": 60,
"enabled": true
},
{
- "displayText": "2 hours",
+ "nameResourceKey": "timeoutTwoHours",
"value": 120,
"enabled": true
},
{
- "displayText": "4 hours",
+ "nameResourceKey": "timeoutFourHours",
"value": 240,
"enabled": true
}
@@ -105,57 +105,57 @@
"enabled": true
},
{
- "displayText": "Never timeout",
+ "nameResourceKey": "timeoutNever",
"value": 0,
"enabled": true
},
{
- "displayText": "1 minute",
+ "nameResourceKey": "timeoutOneMinute",
"value": 1,
"enabled": true
},
{
- "displayText": "2 minutes",
+ "nameResourceKey": "timeoutTwoMinutes",
"value": 2,
"enabled": true
},
{
- "displayText": "3 minutes",
+ "nameResourceKey": "timeoutThreeMinutes",
"value": 3,
"enabled": true
},
{
- "displayText": "5 minutes",
+ "nameResourceKey": "timeoutFiveMinutes",
"value": 5,
"enabled": true
},
{
- "displayText": "10 minutes",
+ "nameResourceKey": "timeoutTenMinutes",
"value": 10,
"enabled": true
},
{
- "displayText": "15 minutes",
+ "nameResourceKey": "timeoutFifteenMinutes",
"value": 15,
"enabled": true
},
{
- "displayText": "30 minutes",
+ "nameResourceKey": "timeoutThirtyMinutes",
"value": 30,
"enabled": true
},
{
- "displayText": "1 hour",
+ "nameResourceKey": "timeoutOneHour",
"value": 60,
"enabled": true
},
{
- "displayText": "2 hours",
+ "nameResourceKey": "timeoutTwoHours",
"value": 120,
"enabled": true
},
{
- "displayText": "4 hours",
+ "nameResourceKey": "timeoutFourHours",
"value": 240,
"enabled": true
}
@@ -179,57 +179,57 @@
"enabled": true
},
{
- "displayText": "Never timeout",
+ "nameResourceKey": "timeoutNever",
"value": 0,
"enabled": true
},
{
- "displayText": "1 minute",
+ "nameResourceKey": "timeoutOneMinute",
"value": 1,
"enabled": true
},
{
- "displayText": "2 minutes",
+ "nameResourceKey": "timeoutTwoMinutes",
"value": 2,
"enabled": true
},
{
- "displayText": "3 minutes",
+ "nameResourceKey": "timeoutThreeMinutes",
"value": 3,
"enabled": true
},
{
- "displayText": "5 minutes",
+ "nameResourceKey": "timeoutFiveMinutes",
"value": 5,
"enabled": true
},
{
- "displayText": "10 minutes",
+ "nameResourceKey": "timeoutTenMinutes",
"value": 10,
"enabled": true
},
{
- "displayText": "15 minutes",
+ "nameResourceKey": "timeoutFifteenMinutes",
"value": 15,
"enabled": true
},
{
- "displayText": "30 minutes",
+ "nameResourceKey": "timeoutThirtyMinutes",
"value": 30,
"enabled": true
},
{
- "displayText": "1 hour",
+ "nameResourceKey": "timeoutOneHour",
"value": 60,
"enabled": true
},
{
- "displayText": "2 hours",
+ "nameResourceKey": "timeoutTwoHours",
"value": 120,
"enabled": true
},
{
- "displayText": "4 hours",
+ "nameResourceKey": "timeoutFourHours",
"value": 240,
"enabled": true
}
diff --git a/Documentation/ObjectInfo/trustedcert_aospdeviceownertrustedcertificate.json b/Documentation/ObjectInfo/trustedcert_aospdeviceownertrustedcertificate.json
new file mode 100644
index 0000000..16c575d
--- /dev/null
+++ b/Documentation/ObjectInfo/trustedcert_aospdeviceownertrustedcertificate.json
@@ -0,0 +1,20 @@
+{
+ "trustedcert_aospdeviceownertrustedcertificate": {
+ "dataEntityKey": "trustedRootCertificate",
+ "filenameEntityKey": "certFileName",
+ "dataType": 1,
+ "category": 108,
+ "nameResourceKey": "trustedCertPolicySelectCertificateName",
+ "descriptionResourceKey": "empty",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "trustedRootCertificate",
+ "booleanActions": 0,
+ "policyType": 123,
+ "enabled": true
+ }
+}
diff --git a/Documentation/ObjectInfo/vpn_iosvpn.json b/Documentation/ObjectInfo/vpn_iosvpn.json
index 801bc44..6217fd8 100644
--- a/Documentation/ObjectInfo/vpn_iosvpn.json
+++ b/Documentation/ObjectInfo/vpn_iosvpn.json
@@ -438,7 +438,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescriptionWithHint",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -621,7 +621,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -745,7 +745,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsOptional",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "connectIfNeededDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -779,8 +779,8 @@
"metadata": {
"dataType": 20,
"category": 120,
- "nameResourceKey": "dNSSearchDomainsName",
- "descriptionResourceKey": "empty",
+ "nameResourceKey": "anyDNSAddressesInList",
+ "descriptionResourceKey": "connectIfNeededDNSListDescription",
"emptyValueResourceKey": "proxyAddressExample",
"childSettings": [
@@ -811,7 +811,7 @@
{
"dataType": 20,
"category": 120,
- "nameResourceKey": "probeUrlOptionalDescription",
+ "nameResourceKey": "probeUrlOptionalName",
"descriptionResourceKey": "probeUrlOptionalDescription",
"emptyValueResourceKey": "probeUrlOptionalExample",
"childSettings": [
@@ -966,7 +966,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -1829,7 +1829,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescriptionWithHint",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -2012,7 +2012,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -2136,7 +2136,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsOptional",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "connectIfNeededDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -2170,8 +2170,8 @@
"metadata": {
"dataType": 20,
"category": 120,
- "nameResourceKey": "dNSSearchDomainsName",
- "descriptionResourceKey": "empty",
+ "nameResourceKey": "anyDNSAddressesInList",
+ "descriptionResourceKey": "connectIfNeededDNSListDescription",
"emptyValueResourceKey": "proxyAddressExample",
"childSettings": [
@@ -2202,7 +2202,7 @@
{
"dataType": 20,
"category": 120,
- "nameResourceKey": "probeUrlOptionalDescription",
+ "nameResourceKey": "probeUrlOptionalName",
"descriptionResourceKey": "probeUrlOptionalDescription",
"emptyValueResourceKey": "probeUrlOptionalExample",
"childSettings": [
@@ -2357,7 +2357,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -3267,7 +3267,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescriptionWithHint",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -3450,7 +3450,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -3574,7 +3574,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsOptional",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "connectIfNeededDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -3608,8 +3608,8 @@
"metadata": {
"dataType": 20,
"category": 120,
- "nameResourceKey": "dNSSearchDomainsName",
- "descriptionResourceKey": "empty",
+ "nameResourceKey": "anyDNSAddressesInList",
+ "descriptionResourceKey": "connectIfNeededDNSListDescription",
"emptyValueResourceKey": "proxyAddressExample",
"childSettings": [
@@ -3640,7 +3640,7 @@
{
"dataType": 20,
"category": 120,
- "nameResourceKey": "probeUrlOptionalDescription",
+ "nameResourceKey": "probeUrlOptionalName",
"descriptionResourceKey": "probeUrlOptionalDescription",
"emptyValueResourceKey": "probeUrlOptionalExample",
"childSettings": [
@@ -3795,7 +3795,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -4658,7 +4658,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescriptionWithHint",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -4841,7 +4841,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -4965,7 +4965,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsOptional",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "connectIfNeededDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -4999,8 +4999,8 @@
"metadata": {
"dataType": 20,
"category": 120,
- "nameResourceKey": "dNSSearchDomainsName",
- "descriptionResourceKey": "empty",
+ "nameResourceKey": "anyDNSAddressesInList",
+ "descriptionResourceKey": "connectIfNeededDNSListDescription",
"emptyValueResourceKey": "proxyAddressExample",
"childSettings": [
@@ -5031,7 +5031,7 @@
{
"dataType": 20,
"category": 120,
- "nameResourceKey": "probeUrlOptionalDescription",
+ "nameResourceKey": "probeUrlOptionalName",
"descriptionResourceKey": "probeUrlOptionalDescription",
"emptyValueResourceKey": "probeUrlOptionalExample",
"childSettings": [
@@ -5186,7 +5186,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -6049,7 +6049,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescriptionWithHint",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -6232,7 +6232,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -6356,7 +6356,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsOptional",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "connectIfNeededDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -6390,8 +6390,8 @@
"metadata": {
"dataType": 20,
"category": 120,
- "nameResourceKey": "dNSSearchDomainsName",
- "descriptionResourceKey": "empty",
+ "nameResourceKey": "anyDNSAddressesInList",
+ "descriptionResourceKey": "connectIfNeededDNSListDescription",
"emptyValueResourceKey": "proxyAddressExample",
"childSettings": [
@@ -6422,7 +6422,7 @@
{
"dataType": 20,
"category": 120,
- "nameResourceKey": "probeUrlOptionalDescription",
+ "nameResourceKey": "probeUrlOptionalName",
"descriptionResourceKey": "probeUrlOptionalDescription",
"emptyValueResourceKey": "probeUrlOptionalExample",
"childSettings": [
@@ -6577,7 +6577,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -7440,7 +7440,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescriptionWithHint",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -7623,7 +7623,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -7747,7 +7747,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsOptional",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "connectIfNeededDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -7781,8 +7781,8 @@
"metadata": {
"dataType": 20,
"category": 120,
- "nameResourceKey": "dNSSearchDomainsName",
- "descriptionResourceKey": "empty",
+ "nameResourceKey": "anyDNSAddressesInList",
+ "descriptionResourceKey": "connectIfNeededDNSListDescription",
"emptyValueResourceKey": "proxyAddressExample",
"childSettings": [
@@ -7813,7 +7813,7 @@
{
"dataType": 20,
"category": 120,
- "nameResourceKey": "probeUrlOptionalDescription",
+ "nameResourceKey": "probeUrlOptionalName",
"descriptionResourceKey": "probeUrlOptionalDescription",
"emptyValueResourceKey": "probeUrlOptionalExample",
"childSettings": [
@@ -7968,7 +7968,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -8878,7 +8878,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescriptionWithHint",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -9061,7 +9061,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -9185,7 +9185,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsOptional",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "connectIfNeededDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -9219,8 +9219,8 @@
"metadata": {
"dataType": 20,
"category": 120,
- "nameResourceKey": "dNSSearchDomainsName",
- "descriptionResourceKey": "empty",
+ "nameResourceKey": "anyDNSAddressesInList",
+ "descriptionResourceKey": "connectIfNeededDNSListDescription",
"emptyValueResourceKey": "proxyAddressExample",
"childSettings": [
@@ -9251,7 +9251,7 @@
{
"dataType": 20,
"category": 120,
- "nameResourceKey": "probeUrlOptionalDescription",
+ "nameResourceKey": "probeUrlOptionalName",
"descriptionResourceKey": "probeUrlOptionalDescription",
"emptyValueResourceKey": "probeUrlOptionalExample",
"childSettings": [
@@ -9406,7 +9406,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -10269,7 +10269,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescriptionWithHint",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -10452,7 +10452,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -10576,7 +10576,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsOptional",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "connectIfNeededDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -10610,8 +10610,8 @@
"metadata": {
"dataType": 20,
"category": 120,
- "nameResourceKey": "dNSSearchDomainsName",
- "descriptionResourceKey": "empty",
+ "nameResourceKey": "anyDNSAddressesInList",
+ "descriptionResourceKey": "connectIfNeededDNSListDescription",
"emptyValueResourceKey": "proxyAddressExample",
"childSettings": [
@@ -10642,7 +10642,7 @@
{
"dataType": 20,
"category": 120,
- "nameResourceKey": "probeUrlOptionalDescription",
+ "nameResourceKey": "probeUrlOptionalName",
"descriptionResourceKey": "probeUrlOptionalDescription",
"emptyValueResourceKey": "probeUrlOptionalExample",
"childSettings": [
@@ -10797,7 +10797,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -11660,7 +11660,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescriptionWithHint",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -11843,7 +11843,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -11967,7 +11967,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsOptional",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "connectIfNeededDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -12001,8 +12001,8 @@
"metadata": {
"dataType": 20,
"category": 120,
- "nameResourceKey": "dNSSearchDomainsName",
- "descriptionResourceKey": "empty",
+ "nameResourceKey": "anyDNSAddressesInList",
+ "descriptionResourceKey": "connectIfNeededDNSListDescription",
"emptyValueResourceKey": "proxyAddressExample",
"childSettings": [
@@ -12033,7 +12033,7 @@
{
"dataType": 20,
"category": 120,
- "nameResourceKey": "probeUrlOptionalDescription",
+ "nameResourceKey": "probeUrlOptionalName",
"descriptionResourceKey": "probeUrlOptionalDescription",
"emptyValueResourceKey": "probeUrlOptionalExample",
"childSettings": [
@@ -12188,7 +12188,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -13051,7 +13051,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescriptionWithHint",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -13234,7 +13234,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -13358,7 +13358,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsOptional",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "connectIfNeededDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -13392,8 +13392,8 @@
"metadata": {
"dataType": 20,
"category": 120,
- "nameResourceKey": "dNSSearchDomainsName",
- "descriptionResourceKey": "empty",
+ "nameResourceKey": "anyDNSAddressesInList",
+ "descriptionResourceKey": "connectIfNeededDNSListDescription",
"emptyValueResourceKey": "proxyAddressExample",
"childSettings": [
@@ -13424,7 +13424,7 @@
{
"dataType": 20,
"category": 120,
- "nameResourceKey": "probeUrlOptionalDescription",
+ "nameResourceKey": "probeUrlOptionalName",
"descriptionResourceKey": "probeUrlOptionalDescription",
"emptyValueResourceKey": "probeUrlOptionalExample",
"childSettings": [
@@ -13579,7 +13579,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -14442,7 +14442,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescriptionWithHint",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -14625,7 +14625,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -14749,7 +14749,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsOptional",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "connectIfNeededDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -14783,8 +14783,8 @@
"metadata": {
"dataType": 20,
"category": 120,
- "nameResourceKey": "dNSSearchDomainsName",
- "descriptionResourceKey": "empty",
+ "nameResourceKey": "anyDNSAddressesInList",
+ "descriptionResourceKey": "connectIfNeededDNSListDescription",
"emptyValueResourceKey": "proxyAddressExample",
"childSettings": [
@@ -14815,7 +14815,7 @@
{
"dataType": 20,
"category": 120,
- "nameResourceKey": "probeUrlOptionalDescription",
+ "nameResourceKey": "probeUrlOptionalName",
"descriptionResourceKey": "probeUrlOptionalDescription",
"emptyValueResourceKey": "probeUrlOptionalExample",
"childSettings": [
@@ -14970,7 +14970,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -15857,7 +15857,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescriptionWithHint",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -16040,7 +16040,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -16164,7 +16164,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsOptional",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "connectIfNeededDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -16198,8 +16198,8 @@
"metadata": {
"dataType": 20,
"category": 120,
- "nameResourceKey": "dNSSearchDomainsName",
- "descriptionResourceKey": "empty",
+ "nameResourceKey": "anyDNSAddressesInList",
+ "descriptionResourceKey": "connectIfNeededDNSListDescription",
"emptyValueResourceKey": "proxyAddressExample",
"childSettings": [
@@ -16230,7 +16230,7 @@
{
"dataType": 20,
"category": 120,
- "nameResourceKey": "probeUrlOptionalDescription",
+ "nameResourceKey": "probeUrlOptionalName",
"descriptionResourceKey": "probeUrlOptionalDescription",
"emptyValueResourceKey": "probeUrlOptionalExample",
"childSettings": [
@@ -16385,7 +16385,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -17304,7 +17304,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescriptionWithHint",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -17487,7 +17487,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -17611,7 +17611,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsOptional",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "connectIfNeededDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -17645,8 +17645,8 @@
"metadata": {
"dataType": 20,
"category": 120,
- "nameResourceKey": "dNSSearchDomainsName",
- "descriptionResourceKey": "empty",
+ "nameResourceKey": "anyDNSAddressesInList",
+ "descriptionResourceKey": "connectIfNeededDNSListDescription",
"emptyValueResourceKey": "proxyAddressExample",
"childSettings": [
@@ -17677,7 +17677,7 @@
{
"dataType": 20,
"category": 120,
- "nameResourceKey": "probeUrlOptionalDescription",
+ "nameResourceKey": "probeUrlOptionalName",
"descriptionResourceKey": "probeUrlOptionalDescription",
"emptyValueResourceKey": "probeUrlOptionalExample",
"childSettings": [
@@ -17832,7 +17832,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -18798,7 +18798,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescriptionWithHint",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -18981,7 +18981,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -19105,7 +19105,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsOptional",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "connectIfNeededDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -19139,8 +19139,8 @@
"metadata": {
"dataType": 20,
"category": 120,
- "nameResourceKey": "dNSSearchDomainsName",
- "descriptionResourceKey": "empty",
+ "nameResourceKey": "anyDNSAddressesInList",
+ "descriptionResourceKey": "connectIfNeededDNSListDescription",
"emptyValueResourceKey": "proxyAddressExample",
"childSettings": [
@@ -19171,7 +19171,7 @@
{
"dataType": 20,
"category": 120,
- "nameResourceKey": "probeUrlOptionalDescription",
+ "nameResourceKey": "probeUrlOptionalName",
"descriptionResourceKey": "probeUrlOptionalDescription",
"emptyValueResourceKey": "probeUrlOptionalExample",
"childSettings": [
@@ -19326,7 +19326,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -20112,7 +20112,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescriptionWithHint",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -20295,7 +20295,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -20419,7 +20419,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsOptional",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "connectIfNeededDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -20453,8 +20453,8 @@
"metadata": {
"dataType": 20,
"category": 120,
- "nameResourceKey": "dNSSearchDomainsName",
- "descriptionResourceKey": "empty",
+ "nameResourceKey": "anyDNSAddressesInList",
+ "descriptionResourceKey": "connectIfNeededDNSListDescription",
"emptyValueResourceKey": "proxyAddressExample",
"childSettings": [
@@ -20485,7 +20485,7 @@
{
"dataType": 20,
"category": 120,
- "nameResourceKey": "probeUrlOptionalDescription",
+ "nameResourceKey": "probeUrlOptionalName",
"descriptionResourceKey": "probeUrlOptionalDescription",
"emptyValueResourceKey": "probeUrlOptionalExample",
"childSettings": [
@@ -20640,7 +20640,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -21431,7 +21431,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescriptionWithHint",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -21614,7 +21614,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -21738,7 +21738,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsOptional",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "connectIfNeededDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -21772,8 +21772,8 @@
"metadata": {
"dataType": 20,
"category": 120,
- "nameResourceKey": "dNSSearchDomainsName",
- "descriptionResourceKey": "empty",
+ "nameResourceKey": "anyDNSAddressesInList",
+ "descriptionResourceKey": "connectIfNeededDNSListDescription",
"emptyValueResourceKey": "proxyAddressExample",
"childSettings": [
@@ -21804,7 +21804,7 @@
{
"dataType": 20,
"category": 120,
- "nameResourceKey": "probeUrlOptionalDescription",
+ "nameResourceKey": "probeUrlOptionalName",
"descriptionResourceKey": "probeUrlOptionalDescription",
"emptyValueResourceKey": "probeUrlOptionalExample",
"childSettings": [
@@ -21959,7 +21959,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -24312,7 +24312,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescriptionWithHint",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -24495,7 +24495,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -24619,7 +24619,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsOptional",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "connectIfNeededDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -24653,8 +24653,8 @@
"metadata": {
"dataType": 20,
"category": 120,
- "nameResourceKey": "dNSSearchDomainsName",
- "descriptionResourceKey": "empty",
+ "nameResourceKey": "anyDNSAddressesInList",
+ "descriptionResourceKey": "connectIfNeededDNSListDescription",
"emptyValueResourceKey": "proxyAddressExample",
"childSettings": [
@@ -24685,7 +24685,7 @@
{
"dataType": 20,
"category": 120,
- "nameResourceKey": "probeUrlOptionalDescription",
+ "nameResourceKey": "probeUrlOptionalName",
"descriptionResourceKey": "probeUrlOptionalDescription",
"emptyValueResourceKey": "probeUrlOptionalExample",
"childSettings": [
@@ -24840,7 +24840,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -25187,6 +25187,7 @@
],
"entityKey": "disconnectOnIdle",
"booleanActions": 2,
+ "defaultValue": true,
"policyType": 53,
"enabled": false
}
@@ -25513,7 +25514,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescriptionWithHint",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -25696,7 +25697,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -25820,7 +25821,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsOptional",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "connectIfNeededDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -25854,8 +25855,8 @@
"metadata": {
"dataType": 20,
"category": 120,
- "nameResourceKey": "dNSSearchDomainsName",
- "descriptionResourceKey": "empty",
+ "nameResourceKey": "anyDNSAddressesInList",
+ "descriptionResourceKey": "connectIfNeededDNSListDescription",
"emptyValueResourceKey": "proxyAddressExample",
"childSettings": [
@@ -25886,7 +25887,7 @@
{
"dataType": 20,
"category": 120,
- "nameResourceKey": "probeUrlOptionalDescription",
+ "nameResourceKey": "probeUrlOptionalName",
"descriptionResourceKey": "probeUrlOptionalDescription",
"emptyValueResourceKey": "probeUrlOptionalExample",
"childSettings": [
@@ -26041,7 +26042,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -26451,6 +26452,7 @@
],
"entityKey": "disconnectOnIdle",
"booleanActions": 2,
+ "defaultValue": true,
"policyType": 53,
"enabled": false
}
@@ -26763,7 +26765,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescriptionWithHint",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -26946,7 +26948,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -27070,7 +27072,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsOptional",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "connectIfNeededDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -27104,8 +27106,8 @@
"metadata": {
"dataType": 20,
"category": 120,
- "nameResourceKey": "dNSSearchDomainsName",
- "descriptionResourceKey": "empty",
+ "nameResourceKey": "anyDNSAddressesInList",
+ "descriptionResourceKey": "connectIfNeededDNSListDescription",
"emptyValueResourceKey": "proxyAddressExample",
"childSettings": [
@@ -27136,7 +27138,7 @@
{
"dataType": 20,
"category": 120,
- "nameResourceKey": "probeUrlOptionalDescription",
+ "nameResourceKey": "probeUrlOptionalName",
"descriptionResourceKey": "probeUrlOptionalDescription",
"emptyValueResourceKey": "probeUrlOptionalExample",
"childSettings": [
@@ -27291,7 +27293,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -28057,7 +28059,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescriptionWithHint",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -28240,7 +28242,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -28364,7 +28366,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsOptional",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "connectIfNeededDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -28398,8 +28400,8 @@
"metadata": {
"dataType": 20,
"category": 120,
- "nameResourceKey": "dNSSearchDomainsName",
- "descriptionResourceKey": "empty",
+ "nameResourceKey": "anyDNSAddressesInList",
+ "descriptionResourceKey": "connectIfNeededDNSListDescription",
"emptyValueResourceKey": "proxyAddressExample",
"childSettings": [
@@ -28430,7 +28432,7 @@
{
"dataType": 20,
"category": 120,
- "nameResourceKey": "probeUrlOptionalDescription",
+ "nameResourceKey": "probeUrlOptionalName",
"descriptionResourceKey": "probeUrlOptionalDescription",
"emptyValueResourceKey": "probeUrlOptionalExample",
"childSettings": [
@@ -28585,7 +28587,7 @@
"dataType": 20,
"category": 120,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
diff --git a/Documentation/ObjectInfo/vpnapps_macvpn.json b/Documentation/ObjectInfo/vpnapps_macvpn.json
index 54aca3e..90b287a 100644
--- a/Documentation/ObjectInfo/vpnapps_macvpn.json
+++ b/Documentation/ObjectInfo/vpnapps_macvpn.json
@@ -167,7 +167,7 @@
"dataType": 20,
"category": 121,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescriptionWithHint",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -350,7 +350,7 @@
"dataType": 20,
"category": 121,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -474,7 +474,7 @@
"dataType": 20,
"category": 121,
"nameResourceKey": "domainsOptional",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "connectIfNeededDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
@@ -508,8 +508,8 @@
"metadata": {
"dataType": 20,
"category": 121,
- "nameResourceKey": "dNSSearchDomainsName",
- "descriptionResourceKey": "empty",
+ "nameResourceKey": "anyDNSAddressesInList",
+ "descriptionResourceKey": "connectIfNeededDNSListDescription",
"emptyValueResourceKey": "proxyAddressExample",
"childSettings": [
@@ -540,7 +540,7 @@
{
"dataType": 20,
"category": 121,
- "nameResourceKey": "probeUrlOptionalDescription",
+ "nameResourceKey": "probeUrlOptionalName",
"descriptionResourceKey": "probeUrlOptionalDescription",
"emptyValueResourceKey": "probeUrlOptionalExample",
"childSettings": [
@@ -695,7 +695,7 @@
"dataType": 20,
"category": 121,
"nameResourceKey": "domainsInList",
- "descriptionResourceKey": "empty",
+ "descriptionResourceKey": "searchDomainsDescription",
"emptyValueResourceKey": "vPNPolicyTrustedNetworkDomainExample",
"childSettings": [
diff --git a/Documentation/ObjectInfo/wirednetwork_windows10wirednetwork.json b/Documentation/ObjectInfo/wirednetwork_windows10wirednetwork.json
new file mode 100644
index 0000000..3e83bec
--- /dev/null
+++ b/Documentation/ObjectInfo/wirednetwork_windows10wirednetwork.json
@@ -0,0 +1,2248 @@
+{
+ "wirednetwork_windows10wirednetwork": [
+ {
+ "dataType": 16,
+ "category": 141,
+ "nameResourceKey": "win10WiredAuthenticationModeName",
+ "descriptionResourceKey": "win10WiredAuthenticationModeDescription",
+ "childSettings": [
+
+ ],
+ "options": [
+ {
+ "nameResourceKey": "notConfigured",
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "win10WiredUser",
+ "value": "user",
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "win10WiredMachine",
+ "value": "machine",
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "win10WiredMachineOrUser",
+ "value": "machineOrUser",
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "win10WiredGuest",
+ "value": "guest",
+ "enabled": true
+ }
+ ],
+ "entityKey": "authenticationType",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ },
+ {
+ "dataType": 16,
+ "category": 141,
+ "nameResourceKey": "win10WiredRememberCredentialsName",
+ "descriptionResourceKey": "win10WiredRememberCredentialsDescription",
+ "childSettings": [
+
+ ],
+ "options": [
+ {
+ "nameResourceKey": "notConfigured",
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "enableOption",
+ "value": "true",
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "disableOption",
+ "value": "false",
+ "enabled": true
+ }
+ ],
+ "entityKey": "cacheCredentials",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ },
+ {
+ "dataType": 14,
+ "category": 141,
+ "nameResourceKey": "win10WiredAuthenticationPeriodName",
+ "descriptionResourceKey": "win10WiredAuthenticationPeriodDescription",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "authenticationPeriodInSeconds",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ },
+ {
+ "dataType": 14,
+ "category": 141,
+ "nameResourceKey": "win10WiredAuthenticationRetryDelayPeriodName",
+ "descriptionResourceKey": "win10WiredAuthenticationRetryDelayPeriodDescription",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "authenticationRetryDelayPeriodInSeconds",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ },
+ {
+ "dataType": 14,
+ "category": 141,
+ "nameResourceKey": "win10WiredStartPeriodName",
+ "descriptionResourceKey": "win10WiredStartPeriodDescription",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "eapolStartPeriodInSeconds",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ },
+ {
+ "dataType": 14,
+ "category": 141,
+ "nameResourceKey": "win10WiredMaximumEAPOLStartMessagesName",
+ "descriptionResourceKey": "win10WiredMaximumEAPOLStartMessagesDescription",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "maximumEAPOLStartMessages",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ },
+ {
+ "dataType": 14,
+ "category": 141,
+ "nameResourceKey": "win10WiredMaximumAuthenticationFailuresName",
+ "descriptionResourceKey": "win10WiredMaximumAuthenticationFailuresDescription",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "maximumAuthenticationFailures",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ },
+ {
+ "dataType": 19,
+ "category": 141,
+ "nameResourceKey": "win10WiredNetworkEnforce8021XName",
+ "descriptionResourceKey": "win10WiredNetworkEnforce8021XDescription",
+ "childSettings": [
+
+ ],
+ "options": [
+ {
+ "nameResourceKey": "win10WiredNetworkEnforceName",
+ "value": true,
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "win10WiredNetworkDoNotEnforceName",
+ "value": false,
+ "enabled": true
+ }
+ ],
+ "entityKey": "enforce8021X",
+ "booleanActions": 0,
+ "defaultValue": false,
+ "policyType": 119,
+ "enabled": false
+ },
+ {
+ "dataType": 14,
+ "category": 141,
+ "nameResourceKey": "win10WiredNetworkAuthenticationBlockPeriodName",
+ "descriptionResourceKey": "win10WiredNetworkAuthenticationBlockPeriodDescription",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "authenticationBlockPeriodInMinutes",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": false
+ },
+ {
+ "dataType": 16,
+ "category": 141,
+ "nameResourceKey": "eAPTypeName",
+ "descriptionResourceKey": "eAPTypeDescription",
+ "childSettings": [
+
+ ],
+ "options": [
+ {
+ "nameResourceKey": "selectEAP",
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "eAPSIMName",
+ "value": "eapSim",
+ "children": [
+ {
+ "value": "certificate",
+ "dataType": 9,
+ "category": 141,
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "authenticationMethod",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "eAPTLSName",
+ "value": "eapTls",
+ "children": [
+ {
+ "isSettingDescription": false,
+ "showAsSectionHeader": false,
+ "dataType": 8,
+ "category": 141,
+ "nameResourceKey": "trust",
+ "descriptionResourceKey": "trustDescription",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ },
+ {
+ "columns": [
+ {
+ "metadata": {
+ "dataType": 20,
+ "category": 141,
+ "nameResourceKey": "empty",
+ "descriptionResourceKey": "empty",
+ "emptyValueResourceKey": "trustedServerCertificateNameExample",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "trustedServerCertificateNamesName",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ }
+ }
+ ],
+ "dataType": 21,
+ "category": 141,
+ "nameResourceKey": "trustedServerCertificateNamesName",
+ "descriptionResourceKey": "trustedServerCertificateNamesDescription",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "trustedServerCertificateNames",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ },
+ {
+ "complexOptions": [
+ {
+ "dataType": 4,
+ "category": 141,
+ "nameResourceKey": "selectCertificateProfiles",
+ "descriptionResourceKey": "selectRootCertificatesForServerValidationName",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "rootCertificatesForServerValidation",
+ "booleanActions": 0,
+ "unconfiguredValue": "notConfigured",
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "dataType": 5,
+ "category": 141,
+ "nameResourceKey": "selectRootCertificatesForServerValidationName",
+ "descriptionResourceKey": "empty",
+ "emptyValueResourceKey": "selectCertificates",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ },
+ {
+ "isSettingDescription": false,
+ "showAsSectionHeader": false,
+ "dataType": 8,
+ "category": 141,
+ "nameResourceKey": "authentication",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ },
+ {
+ "value": "certificate",
+ "dataType": 9,
+ "category": 141,
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "authenticationMethod",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ },
+ {
+ "dataType": 16,
+ "category": 141,
+ "nameResourceKey": "clientCertTypeName",
+ "descriptionResourceKey": "authenticationMethodName",
+ "childSettings": [
+
+ ],
+ "options": [
+ {
+ "nameResourceKey": "notConfigured",
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "sCEPCertType",
+ "value": "SCEP certificate",
+ "children": [
+ {
+ "complexOptions": [
+ {
+ "dataType": 4,
+ "category": 141,
+ "nameResourceKey": "selectCertificateProfile",
+ "descriptionResourceKey": "clientCertForClientAuthenticationName",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "identityCertificateForClientAuthentication",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "dataType": 5,
+ "category": 141,
+ "nameResourceKey": "clientCertForClientAuthenticationName",
+ "descriptionResourceKey": "empty",
+ "emptyValueResourceKey": "selectCertificate",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "pKCSCertType",
+ "value": "PKCS certificate",
+ "children": [
+ {
+ "complexOptions": [
+ {
+ "dataType": 4,
+ "category": 141,
+ "nameResourceKey": "selectCertificateProfile",
+ "descriptionResourceKey": "clientCertForClientAuthenticationName",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "identityCertificateForClientAuthentication",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "dataType": 5,
+ "category": 141,
+ "nameResourceKey": "clientCertForClientAuthenticationName",
+ "descriptionResourceKey": "empty",
+ "emptyValueResourceKey": "selectCertificate",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ },
+ {
+ "complexOptions": [
+ {
+ "dataType": 4,
+ "category": 141,
+ "nameResourceKey": "selectCertificateProfile",
+ "descriptionResourceKey": "selectRootCertificateForClientAuthenticationName",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "rootCertificateForClientValidation",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "dataType": 5,
+ "category": 141,
+ "nameResourceKey": "selectRootCertificateForClientAuthenticationName",
+ "descriptionResourceKey": "empty",
+ "emptyValueResourceKey": "selectCertificate",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ },
+ {
+ "isSettingDescription": false,
+ "showAsSectionHeader": false,
+ "dataType": 8,
+ "category": 141,
+ "nameResourceKey": "empty",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "pFXImportCertType",
+ "value": "PFX Import certificate",
+ "children": [
+ {
+ "complexOptions": [
+ {
+ "dataType": 4,
+ "category": 141,
+ "nameResourceKey": "selectCertificateProfile",
+ "descriptionResourceKey": "clientCertForClientAuthenticationName",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "identityCertificateForClientAuthentication",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "dataType": 5,
+ "category": 141,
+ "nameResourceKey": "clientCertForClientAuthenticationName",
+ "descriptionResourceKey": "empty",
+ "emptyValueResourceKey": "selectCertificate",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "enabled": false
+ },
+ {
+ "nameResourceKey": "derivedCredentialsOption",
+ "value": "derivedCredential",
+ "children": [
+ {
+ "complexOptions": [
+ {
+ "dataType": 4,
+ "category": 141,
+ "nameResourceKey": "selectCertificateProfile",
+ "descriptionResourceKey": "selectRootCertificateForClientAuthenticationName",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "rootCertificateForClientValidation",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "dataType": 5,
+ "category": 141,
+ "nameResourceKey": "selectRootCertificateForClientAuthenticationName",
+ "descriptionResourceKey": "empty",
+ "emptyValueResourceKey": "selectCertificate",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "enabled": false
+ }
+ ],
+ "entityKey": "clientCertType",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": false
+ },
+ {
+ "complexOptions": [
+ {
+ "dataType": 4,
+ "category": 141,
+ "nameResourceKey": "selectCertificateProfile",
+ "descriptionResourceKey": "clientCertForClientAuthenticationName",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "identityCertificateForClientAuthentication",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "dataType": 5,
+ "category": 141,
+ "nameResourceKey": "clientCertForClientAuthenticationName",
+ "descriptionResourceKey": "empty",
+ "emptyValueResourceKey": "selectCertificate",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": false
+ }
+ ],
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "eAPTTLSName",
+ "value": "eapTtls",
+ "children": [
+ {
+ "isSettingDescription": false,
+ "showAsSectionHeader": false,
+ "dataType": 8,
+ "category": 141,
+ "nameResourceKey": "trust",
+ "descriptionResourceKey": "trustDescription",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ },
+ {
+ "columns": [
+ {
+ "metadata": {
+ "dataType": 20,
+ "category": 141,
+ "nameResourceKey": "empty",
+ "descriptionResourceKey": "empty",
+ "emptyValueResourceKey": "trustedServerCertificateNameExample",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "trustedServerCertificateNamesName",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ }
+ }
+ ],
+ "dataType": 21,
+ "category": 141,
+ "nameResourceKey": "trustedServerCertificateNamesName",
+ "descriptionResourceKey": "trustedServerCertificateNamesDescription",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "trustedServerCertificateNames",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ },
+ {
+ "complexOptions": [
+ {
+ "dataType": 4,
+ "category": 141,
+ "nameResourceKey": "selectCertificateProfiles",
+ "descriptionResourceKey": "selectRootCertificatesForServerValidationName",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "rootCertificatesForServerValidation",
+ "booleanActions": 0,
+ "unconfiguredValue": "notConfigured",
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "dataType": 5,
+ "category": 141,
+ "nameResourceKey": "selectRootCertificatesForServerValidationName",
+ "descriptionResourceKey": "empty",
+ "emptyValueResourceKey": "selectCertificates",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ },
+ {
+ "isSettingDescription": false,
+ "showAsSectionHeader": false,
+ "dataType": 8,
+ "category": 141,
+ "nameResourceKey": "authentication",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ },
+ {
+ "dataType": 16,
+ "category": 141,
+ "nameResourceKey": "authenticationMethodName",
+ "descriptionResourceKey": "authenticationMethodTTLSDescription",
+ "childSettings": [
+
+ ],
+ "options": [
+ {
+ "nameResourceKey": "notConfigured",
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "usernameAndPasswordOption",
+ "value": "usernameAndPassword",
+ "children": [
+ {
+ "dataType": 16,
+ "category": 141,
+ "nameResourceKey": "nonEapMethodName",
+ "descriptionResourceKey": "nonEapMethodDescription",
+ "childSettings": [
+
+ ],
+ "options": [
+ {
+ "nameResourceKey": "selectNonEapMethod",
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "pAPName",
+ "value": "unencryptedPassword",
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "cHAPName",
+ "value": "challengeHandshakeAuthenticationProtocol",
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "mSCHAPName",
+ "value": "microsoftChap",
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "cHAPTWOName",
+ "value": "microsoftChapVersionTwo",
+ "enabled": true
+ }
+ ],
+ "entityKey": "innerAuthenticationProtocolForEAPTTLS",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ },
+ {
+ "dataType": 20,
+ "category": 141,
+ "nameResourceKey": "enableIdentityPrivacyName",
+ "descriptionResourceKey": "enableIdentityPrivacyDescription",
+ "emptyValueResourceKey": "identityPrivacyExample",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "outerIdentityPrivacyTemporaryValue",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "certificatesOption",
+ "value": "certificate",
+ "children": [
+ {
+ "complexOptions": [
+ {
+ "dataType": 4,
+ "category": 141,
+ "nameResourceKey": "selectCertificateProfile",
+ "descriptionResourceKey": "CertificatesOption",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "identityCertificateForClientAuthentication",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "dataType": 5,
+ "category": 141,
+ "nameResourceKey": "certificatesOption",
+ "descriptionResourceKey": "empty",
+ "emptyValueResourceKey": "selectCertificate",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ },
+ {
+ "dataType": 20,
+ "category": 141,
+ "nameResourceKey": "enableIdentityPrivacyName",
+ "descriptionResourceKey": "enableIdentityPrivacyDescription",
+ "emptyValueResourceKey": "identityPrivacyExample",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "outerIdentityPrivacyTemporaryValue",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "enabled": false
+ },
+ {
+ "nameResourceKey": "sCEPCertType",
+ "value": "SCEP certificate",
+ "children": [
+ {
+ "complexOptions": [
+ {
+ "dataType": 4,
+ "category": 141,
+ "nameResourceKey": "selectCertificateProfile",
+ "descriptionResourceKey": "clientCertForClientAuthenticationName",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "identityCertificateForClientAuthentication",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "dataType": 5,
+ "category": 141,
+ "nameResourceKey": "clientCertForClientAuthenticationName",
+ "descriptionResourceKey": "empty",
+ "emptyValueResourceKey": "selectCertificate",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ },
+ {
+ "dataType": 20,
+ "category": 141,
+ "nameResourceKey": "enableIdentityPrivacyName",
+ "descriptionResourceKey": "enableIdentityPrivacyDescription",
+ "emptyValueResourceKey": "identityPrivacyExample",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "outerIdentityPrivacyTemporaryValue",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "enabled": false
+ },
+ {
+ "nameResourceKey": "pKCSCertType",
+ "value": "PKCS certificate",
+ "children": [
+ {
+ "complexOptions": [
+ {
+ "dataType": 4,
+ "category": 141,
+ "nameResourceKey": "selectCertificateProfile",
+ "descriptionResourceKey": "clientCertForClientAuthenticationName",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "identityCertificateForClientAuthentication",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "dataType": 5,
+ "category": 141,
+ "nameResourceKey": "clientCertForClientAuthenticationName",
+ "descriptionResourceKey": "empty",
+ "emptyValueResourceKey": "selectCertificate",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ },
+ {
+ "complexOptions": [
+ {
+ "dataType": 4,
+ "category": 141,
+ "nameResourceKey": "selectCertificateProfile",
+ "descriptionResourceKey": "selectRootCertificateForClientAuthenticationName",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "rootCertificateForClientValidation",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "dataType": 5,
+ "category": 141,
+ "nameResourceKey": "selectRootCertificateForClientAuthenticationName",
+ "descriptionResourceKey": "empty",
+ "emptyValueResourceKey": "selectCertificate",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ },
+ {
+ "dataType": 20,
+ "category": 141,
+ "nameResourceKey": "enableIdentityPrivacyName",
+ "descriptionResourceKey": "enableIdentityPrivacyDescription",
+ "emptyValueResourceKey": "identityPrivacyExample",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "outerIdentityPrivacyTemporaryValue",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "enabled": false
+ },
+ {
+ "nameResourceKey": "pFXImportCertType",
+ "value": "PFX Import certificate",
+ "children": [
+ {
+ "complexOptions": [
+ {
+ "dataType": 4,
+ "category": 141,
+ "nameResourceKey": "selectCertificateProfile",
+ "descriptionResourceKey": "clientCertForClientAuthenticationName",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "identityCertificateForClientAuthentication",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "dataType": 5,
+ "category": 141,
+ "nameResourceKey": "clientCertForClientAuthenticationName",
+ "descriptionResourceKey": "empty",
+ "emptyValueResourceKey": "selectCertificate",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ },
+ {
+ "dataType": 20,
+ "category": 141,
+ "nameResourceKey": "enableIdentityPrivacyName",
+ "descriptionResourceKey": "enableIdentityPrivacyDescription",
+ "emptyValueResourceKey": "identityPrivacyExample",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "outerIdentityPrivacyTemporaryValue",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "enabled": false
+ },
+ {
+ "nameResourceKey": "derivedCredentialsOption",
+ "value": "derivedCredential",
+ "children": [
+ {
+ "complexOptions": [
+ {
+ "dataType": 4,
+ "category": 141,
+ "nameResourceKey": "selectCertificateProfile",
+ "descriptionResourceKey": "selectRootCertificateForClientAuthenticationName",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "rootCertificateForClientValidation",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "dataType": 5,
+ "category": 141,
+ "nameResourceKey": "selectRootCertificateForClientAuthenticationName",
+ "descriptionResourceKey": "empty",
+ "emptyValueResourceKey": "selectCertificate",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "enabled": false
+ }
+ ],
+ "entityKey": "authenticationMethod",
+ "booleanActions": 0,
+ "unconfiguredValue": "notConfigured",
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "win10WifiPeapName",
+ "value": "peap",
+ "children": [
+ {
+ "isSettingDescription": false,
+ "showAsSectionHeader": false,
+ "dataType": 8,
+ "category": 141,
+ "nameResourceKey": "trust",
+ "descriptionResourceKey": "trustDescription",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ },
+ {
+ "columns": [
+ {
+ "metadata": {
+ "dataType": 20,
+ "category": 141,
+ "nameResourceKey": "empty",
+ "descriptionResourceKey": "empty",
+ "emptyValueResourceKey": "trustedServerCertificateNameExample",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "trustedServerCertificateNamesName",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ }
+ }
+ ],
+ "dataType": 21,
+ "category": 141,
+ "nameResourceKey": "trustedServerCertificateNamesName",
+ "descriptionResourceKey": "trustedServerCertificateNamesDescription",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "trustedServerCertificateNames",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ },
+ {
+ "complexOptions": [
+ {
+ "dataType": 4,
+ "category": 141,
+ "nameResourceKey": "selectCertificateProfiles",
+ "descriptionResourceKey": "selectRootCertificatesForServerValidationName",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "rootCertificatesForServerValidation",
+ "booleanActions": 0,
+ "unconfiguredValue": "notConfigured",
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "dataType": 5,
+ "category": 141,
+ "nameResourceKey": "selectRootCertificatesForServerValidationName",
+ "descriptionResourceKey": "empty",
+ "emptyValueResourceKey": "selectCertificates",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ },
+ {
+ "isSettingDescription": false,
+ "showAsSectionHeader": false,
+ "dataType": 8,
+ "category": 141,
+ "nameResourceKey": "empty",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ },
+ {
+ "dataType": 16,
+ "category": 141,
+ "nameResourceKey": "PerformServerValidation",
+ "descriptionResourceKey": "performServerValidationDescription",
+ "childSettings": [
+
+ ],
+ "options": [
+ {
+ "nameResourceKey": "notConfigured",
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "yes",
+ "value": "true",
+ "children": [
+ {
+ "dataType": 16,
+ "category": 141,
+ "nameResourceKey": "DisableUserPromptForServerValidation",
+ "descriptionResourceKey": "disableUserPromptForServerValidationDescription",
+ "childSettings": [
+
+ ],
+ "options": [
+ {
+ "nameResourceKey": "notConfigured",
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "yes",
+ "value": "true",
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "no",
+ "value": "false",
+ "enabled": true
+ }
+ ],
+ "entityKey": "disableUserPromptForServerValidation",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": false
+ }
+ ],
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "no",
+ "value": "false",
+ "enabled": true
+ }
+ ],
+ "entityKey": "performServerValidation",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": false
+ },
+ {
+ "dataType": 16,
+ "category": 141,
+ "nameResourceKey": "RequireCryptographicBinding",
+ "descriptionResourceKey": "requireCryptographicBindingDescription",
+ "childSettings": [
+
+ ],
+ "options": [
+ {
+ "nameResourceKey": "notConfigured",
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "yes",
+ "value": "true",
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "no",
+ "value": "false",
+ "enabled": true
+ }
+ ],
+ "entityKey": "requireCryptographicBinding",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": false
+ },
+ {
+ "isSettingDescription": false,
+ "showAsSectionHeader": false,
+ "dataType": 8,
+ "category": 141,
+ "nameResourceKey": "authentication",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ },
+ {
+ "dataType": 16,
+ "category": 141,
+ "nameResourceKey": "authenticationMethodName",
+ "descriptionResourceKey": "authenticationMethodName",
+ "childSettings": [
+
+ ],
+ "options": [
+ {
+ "nameResourceKey": "notConfigured",
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "usernameAndPasswordOption",
+ "value": "usernameAndPassword",
+ "children": [
+ {
+ "dataType": 20,
+ "category": 141,
+ "nameResourceKey": "enableIdentityPrivacyName",
+ "descriptionResourceKey": "enableIdentityPrivacyDescription",
+ "emptyValueResourceKey": "identityPrivacyExample",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "outerIdentityPrivacyTemporaryValue",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "certificatesOption",
+ "value": "certificate",
+ "children": [
+ {
+ "complexOptions": [
+ {
+ "dataType": 4,
+ "category": 141,
+ "nameResourceKey": "selectCertificateProfile",
+ "descriptionResourceKey": "CertificatesOption",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "identityCertificateForClientAuthentication",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "dataType": 5,
+ "category": 141,
+ "nameResourceKey": "certificatesOption",
+ "descriptionResourceKey": "empty",
+ "emptyValueResourceKey": "selectCertificate",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ },
+ {
+ "dataType": 20,
+ "category": 141,
+ "nameResourceKey": "enableIdentityPrivacyName",
+ "descriptionResourceKey": "enableIdentityPrivacyDescription",
+ "emptyValueResourceKey": "identityPrivacyExample",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "outerIdentityPrivacyTemporaryValue",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "enabled": false
+ },
+ {
+ "nameResourceKey": "sCEPCertType",
+ "value": "SCEP certificate",
+ "children": [
+ {
+ "complexOptions": [
+ {
+ "dataType": 4,
+ "category": 141,
+ "nameResourceKey": "selectCertificateProfile",
+ "descriptionResourceKey": "clientCertForClientAuthenticationName",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "identityCertificateForClientAuthentication",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "dataType": 5,
+ "category": 141,
+ "nameResourceKey": "clientCertForClientAuthenticationName",
+ "descriptionResourceKey": "empty",
+ "emptyValueResourceKey": "selectCertificate",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ },
+ {
+ "dataType": 20,
+ "category": 141,
+ "nameResourceKey": "enableIdentityPrivacyName",
+ "descriptionResourceKey": "enableIdentityPrivacyDescription",
+ "emptyValueResourceKey": "identityPrivacyExample",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "outerIdentityPrivacyTemporaryValue",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "enabled": false
+ },
+ {
+ "nameResourceKey": "pKCSCertType",
+ "value": "PKCS certificate",
+ "children": [
+ {
+ "complexOptions": [
+ {
+ "dataType": 4,
+ "category": 141,
+ "nameResourceKey": "selectCertificateProfile",
+ "descriptionResourceKey": "clientCertForClientAuthenticationName",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "identityCertificateForClientAuthentication",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "dataType": 5,
+ "category": 141,
+ "nameResourceKey": "clientCertForClientAuthenticationName",
+ "descriptionResourceKey": "empty",
+ "emptyValueResourceKey": "selectCertificate",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ },
+ {
+ "complexOptions": [
+ {
+ "dataType": 4,
+ "category": 141,
+ "nameResourceKey": "selectCertificateProfile",
+ "descriptionResourceKey": "selectRootCertificateForClientAuthenticationName",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "rootCertificateForClientValidation",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "dataType": 5,
+ "category": 141,
+ "nameResourceKey": "selectRootCertificateForClientAuthenticationName",
+ "descriptionResourceKey": "empty",
+ "emptyValueResourceKey": "selectCertificate",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ },
+ {
+ "isSettingDescription": false,
+ "showAsSectionHeader": false,
+ "dataType": 8,
+ "category": 141,
+ "nameResourceKey": "empty",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ },
+ {
+ "dataType": 20,
+ "category": 141,
+ "nameResourceKey": "enableIdentityPrivacyName",
+ "descriptionResourceKey": "enableIdentityPrivacyDescription",
+ "emptyValueResourceKey": "identityPrivacyExample",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "outerIdentityPrivacyTemporaryValue",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "enabled": false
+ },
+ {
+ "nameResourceKey": "pFXImportCertType",
+ "value": "PFX Import certificate",
+ "children": [
+ {
+ "complexOptions": [
+ {
+ "dataType": 4,
+ "category": 141,
+ "nameResourceKey": "selectCertificateProfile",
+ "descriptionResourceKey": "clientCertForClientAuthenticationName",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "identityCertificateForClientAuthentication",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "dataType": 5,
+ "category": 141,
+ "nameResourceKey": "clientCertForClientAuthenticationName",
+ "descriptionResourceKey": "empty",
+ "emptyValueResourceKey": "selectCertificate",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ },
+ {
+ "dataType": 20,
+ "category": 141,
+ "nameResourceKey": "enableIdentityPrivacyName",
+ "descriptionResourceKey": "enableIdentityPrivacyDescription",
+ "emptyValueResourceKey": "identityPrivacyExample",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "outerIdentityPrivacyTemporaryValue",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "enabled": false
+ },
+ {
+ "nameResourceKey": "derivedCredentialsOption",
+ "value": "derivedCredential",
+ "children": [
+ {
+ "complexOptions": [
+ {
+ "dataType": 4,
+ "category": 141,
+ "nameResourceKey": "selectCertificateProfile",
+ "descriptionResourceKey": "selectRootCertificateForClientAuthenticationName",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "rootCertificateForClientValidation",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "dataType": 5,
+ "category": 141,
+ "nameResourceKey": "selectRootCertificateForClientAuthenticationName",
+ "descriptionResourceKey": "empty",
+ "emptyValueResourceKey": "selectCertificate",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "enabled": false
+ }
+ ],
+ "entityKey": "authenticationMethod",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "tEAPName",
+ "value": "teap",
+ "children": [
+ {
+ "isSettingDescription": false,
+ "showAsSectionHeader": false,
+ "dataType": 8,
+ "category": 141,
+ "nameResourceKey": "trust",
+ "descriptionResourceKey": "trustDescription",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ },
+ {
+ "columns": [
+ {
+ "metadata": {
+ "dataType": 20,
+ "category": 141,
+ "nameResourceKey": "empty",
+ "descriptionResourceKey": "empty",
+ "emptyValueResourceKey": "trustedServerCertificateNameExample",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "trustedServerCertificateNamesName",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ }
+ }
+ ],
+ "dataType": 21,
+ "category": 141,
+ "nameResourceKey": "trustedServerCertificateNamesName",
+ "descriptionResourceKey": "trustedServerCertificateNamesDescription",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "trustedServerCertificateNames",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ },
+ {
+ "complexOptions": [
+ {
+ "dataType": 4,
+ "category": 141,
+ "nameResourceKey": "selectCertificateProfiles",
+ "descriptionResourceKey": "selectRootCertificatesForServerValidationName",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "rootCertificatesForServerValidation",
+ "booleanActions": 0,
+ "unconfiguredValue": "notConfigured",
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "dataType": 5,
+ "category": 141,
+ "nameResourceKey": "selectRootCertificatesForServerValidationName",
+ "descriptionResourceKey": "empty",
+ "emptyValueResourceKey": "selectCertificates",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ },
+ {
+ "isSettingDescription": false,
+ "showAsSectionHeader": false,
+ "dataType": 8,
+ "category": 141,
+ "nameResourceKey": "authentication",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ },
+ {
+ "dataType": 16,
+ "category": 141,
+ "nameResourceKey": "primaryAuthenticationMethodName",
+ "descriptionResourceKey": "primaryAuthenticationMethodTEAPDescription",
+ "childSettings": [
+
+ ],
+ "options": [
+ {
+ "nameResourceKey": "notConfigured",
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "usernameAndPasswordOption",
+ "value": "usernameAndPassword",
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "sCEPCertType",
+ "value": "SCEP certificate",
+ "children": [
+ {
+ "complexOptions": [
+ {
+ "dataType": 4,
+ "category": 141,
+ "nameResourceKey": "selectCertificateProfile",
+ "descriptionResourceKey": "clientCertForClientAuthenticationName",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "identityCertificateForClientAuthentication",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "dataType": 5,
+ "category": 141,
+ "nameResourceKey": "clientCertForClientAuthenticationName",
+ "descriptionResourceKey": "empty",
+ "emptyValueResourceKey": "selectCertificate",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "pKCSCertType",
+ "value": "PKCS certificate",
+ "children": [
+ {
+ "complexOptions": [
+ {
+ "dataType": 4,
+ "category": 141,
+ "nameResourceKey": "selectCertificateProfile",
+ "descriptionResourceKey": "clientCertForClientAuthenticationName",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "identityCertificateForClientAuthentication",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "dataType": 5,
+ "category": 141,
+ "nameResourceKey": "clientCertForClientAuthenticationName",
+ "descriptionResourceKey": "empty",
+ "emptyValueResourceKey": "selectCertificate",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ },
+ {
+ "complexOptions": [
+ {
+ "dataType": 4,
+ "category": 141,
+ "nameResourceKey": "selectCertificateProfile",
+ "descriptionResourceKey": "selectRootCertificateForClientAuthenticationName",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "rootCertificateForClientValidation",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "dataType": 5,
+ "category": 141,
+ "nameResourceKey": "selectRootCertificateForClientAuthenticationName",
+ "descriptionResourceKey": "empty",
+ "emptyValueResourceKey": "selectCertificate",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ },
+ {
+ "isSettingDescription": false,
+ "showAsSectionHeader": false,
+ "dataType": 8,
+ "category": 141,
+ "nameResourceKey": "empty",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "derivedCredentialsOption",
+ "value": "derivedCredential",
+ "children": [
+ {
+ "complexOptions": [
+ {
+ "dataType": 4,
+ "category": 141,
+ "nameResourceKey": "selectCertificateProfile",
+ "descriptionResourceKey": "selectRootCertificateForClientAuthenticationName",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "rootCertificateForClientValidation",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "dataType": 5,
+ "category": 141,
+ "nameResourceKey": "selectRootCertificateForClientAuthenticationName",
+ "descriptionResourceKey": "empty",
+ "emptyValueResourceKey": "selectCertificate",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "enabled": false
+ }
+ ],
+ "entityKey": "authenticationMethod",
+ "booleanActions": 0,
+ "unconfiguredValue": "notConfigured",
+ "policyType": 119,
+ "enabled": true
+ },
+ {
+ "dataType": 16,
+ "category": 141,
+ "nameResourceKey": "secondaryAuthenticationMethodName",
+ "descriptionResourceKey": "secondaryAuthenticationMethodTEAPDescription",
+ "childSettings": [
+
+ ],
+ "options": [
+ {
+ "nameResourceKey": "notConfigured",
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "usernameAndPasswordOption",
+ "value": "usernameAndPassword",
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "sCEPCertType",
+ "value": "SCEP certificate",
+ "children": [
+ {
+ "complexOptions": [
+ {
+ "dataType": 4,
+ "category": 141,
+ "nameResourceKey": "selectCertificateProfile",
+ "descriptionResourceKey": "clientCertForClientAuthenticationName",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "identityCertificateForClientAuthentication",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "dataType": 5,
+ "category": 141,
+ "nameResourceKey": "clientCertForClientAuthenticationName",
+ "descriptionResourceKey": "empty",
+ "emptyValueResourceKey": "selectCertificate",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "pKCSCertType",
+ "value": "PKCS certificate",
+ "children": [
+ {
+ "complexOptions": [
+ {
+ "dataType": 4,
+ "category": 141,
+ "nameResourceKey": "selectCertificateProfile",
+ "descriptionResourceKey": "clientCertForClientAuthenticationName",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "identityCertificateForClientAuthentication",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "dataType": 5,
+ "category": 141,
+ "nameResourceKey": "clientCertForClientAuthenticationName",
+ "descriptionResourceKey": "empty",
+ "emptyValueResourceKey": "selectCertificate",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ },
+ {
+ "complexOptions": [
+ {
+ "dataType": 4,
+ "category": 141,
+ "nameResourceKey": "selectCertificateProfile",
+ "descriptionResourceKey": "selectRootCertificateForClientAuthenticationName",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "rootCertificateForClientValidation",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "dataType": 5,
+ "category": 141,
+ "nameResourceKey": "selectRootCertificateForClientAuthenticationName",
+ "descriptionResourceKey": "empty",
+ "emptyValueResourceKey": "selectCertificate",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ },
+ {
+ "isSettingDescription": false,
+ "showAsSectionHeader": false,
+ "dataType": 8,
+ "category": 141,
+ "nameResourceKey": "empty",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "derivedCredentialsOption",
+ "value": "derivedCredential",
+ "children": [
+ {
+ "complexOptions": [
+ {
+ "dataType": 4,
+ "category": 141,
+ "nameResourceKey": "selectCertificateProfile",
+ "descriptionResourceKey": "selectRootCertificateForClientAuthenticationName",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "entityKey": "rootCertificateForClientValidation",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "dataType": 5,
+ "category": 141,
+ "nameResourceKey": "selectRootCertificateForClientAuthenticationName",
+ "descriptionResourceKey": "empty",
+ "emptyValueResourceKey": "selectCertificate",
+ "childSettings": [
+
+ ],
+ "options": [
+
+ ],
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "enabled": false
+ }
+ ],
+ "entityKey": "secondaryAuthenticationMethod",
+ "booleanActions": 0,
+ "unconfiguredValue": "notConfigured",
+ "policyType": 119,
+ "enabled": true
+ }
+ ],
+ "enabled": true
+ }
+ ],
+ "entityKey": "eapType",
+ "booleanActions": 0,
+ "policyType": 119,
+ "enabled": true
+ },
+ {
+ "dataType": 19,
+ "category": 141,
+ "nameResourceKey": "win10WiredFIPSComplianceName",
+ "descriptionResourceKey": "win10WiredFIPSComplianceDescription",
+ "childSettings": [
+
+ ],
+ "options": [
+ {
+ "nameResourceKey": "yes",
+ "value": true,
+ "enabled": true
+ },
+ {
+ "nameResourceKey": "no",
+ "value": false,
+ "enabled": true
+ }
+ ],
+ "entityKey": "forceFIPSCompliance",
+ "booleanActions": 0,
+ "defaultValue": false,
+ "policyType": 119,
+ "enabled": true
+ }
+ ]
+}
diff --git a/Documentation/Strings-cs.json b/Documentation/Strings-cs.json
index 928c49e..8c594b0 100644
--- a/Documentation/Strings-cs.json
+++ b/Documentation/Strings-cs.json
@@ -1,1842 +1,4 @@
{
- "InstallContextType": {
- "device": "Zařízení",
- "deviceContext": "Kontext zařízení",
- "user": "Uživatel",
- "userContext": "Kontext uživatele"
- },
- "WipPolicySettings": {
- "addNetworkBoundary": "Přidat ohraničení sítě",
- "addNetworkBoundaryButton": "Přidat ohraničení sítě...",
- "allowWindowsSearch": "Povolit ve Windows Search hledání šifrovaných podnikových dat a aplikací ze Storu",
- "authoritativeIpRanges": "Seznam rozsahů podnikových IP adres je autoritativní (nedetekovat automaticky)",
- "authoritativeProxyServers": "Seznam podnikových proxy serverů je autoritativní (nedetekovat automaticky)",
- "boundaryType": "Typ ohraničení",
- "cloudResources": "Cloudové prostředky",
- "corporateIdentity": "Podniková identita",
- "dataRecoveryCert": "Pokud chcete povolit obnovování šifrovaných dat, odešlete certifikát agenta obnovování dat (DRA).",
- "editNetworkBoundary": "Upravit ohraničení sítě",
- "enrollmentState": "Stav registrace",
- "iPv4Ranges": "Rozsahy IPv4",
- "iPv6Ranges": "Rozsahy IPv6",
- "internalProxyServers": "Interní proxy servery",
- "maxInactivityTime": "Maximální doba (v minutách), po kterou může zařízení zůstat neaktivní, než se zamkne PIN kódem nebo heslem",
- "maxPasswordAttempts": "Počet povolených neúspěšných přihlášení, než se zařízení vymaže",
- "mdmDiscoveryUrl": "Adresa URL zjišťování MDM",
- "mdmRequiredSettingsInfo": "Tyto zásady platí jenom pro Windows 10 Anniversary Edition a vyšší. Ochranu nastavují pomocí Windows Information Protection (WIP).",
- "minimumPinLength": "Nastavte minimální počet znaků vyžadovaných pro PIN kód.",
- "name": "Název",
- "networkBoundariesGridEmptyText": "Tady se budou zobrazovat všechna ohraničení sítě, která přidáte.",
- "networkBoundary": "Ohraničení sítě",
- "networkDomainNames": "Síťové domény",
- "neutralResources": "Neutrální prostředky",
- "passportForWork": "Používat Windows Hello pro firmy jako metodu přihlašování do Windows",
- "pinExpiration": "Zadejte dobu (ve dnech), po kterou se PIN kód může používat, než bude systém vyžadovat, aby ho uživatel změnil.",
- "pinHistory": "Zadejte počet předchozích PIN kódů přidružených k uživatelskému účtu, které se nedají použít znovu.",
- "pinLowercaseLetters": "Nakonfigurujte využití malých písmen v PIN kódu Windows Hello pro firmy.",
- "pinSpecialCharacters": "Nakonfigurujte využití speciálních znaků v PIN kódu Windows Hello pro firmy.",
- "pinUppercaseLetters": "Nakonfigurujte využití velkých písmen v PIN kódu Windows Hello pro firmy.",
- "protectUnderLock": "Bránit aplikacím v přístupu k podnikovým datům, pokud je zařízení uzamčené. Platí jenom pro Windows 10 Mobile.",
- "protectedDomainNames": "Chráněné domény",
- "proxyServers": "Proxy servery",
- "requireAppPin": "Zakázat PIN kód aplikace, když je PIN kód zařízení spravovaný",
- "requiredSettings": "Požadovaná nastavení",
- "requiredSettingsInfo": "Když se změní obor nebo se odeberou tyto zásady, dešifrují se firemní data.",
- "revokeOnMdmHandoff": "Odvolat přístup k chráněným datům, když se zařízení zaregistruje k MDM",
- "revokeOnUnenroll": "Odvolat šifrovací klíče při zrušení registrace",
- "rmsTemplateForEdp": "Zadejte ID šablony, která se má použít pro Azure RMS.",
- "showWipIcon": "Zobrazit ikonu ochrany podnikových dat",
- "type": "Typ",
- "useRmsForWip": "Použít Azure RMS pro WIP",
- "value": "Hodnota",
- "weRequiredSettingsInfo": "Tyto zásady platí jenom pro Windows 10 Creators Update a vyšší. Ochranu nastavují pomocí Windows Information Protection (WIP) a Windows MAM.",
- "wipProtectionMode": "Režim Windows Information Protection",
- "withEnrollment": "S registrací",
- "withoutEnrollment": "Bez registrace"
- },
- "EdgeAppConfig": {
- "AllowedURLs": {
- "title": "Povolené adresy URL",
- "tooltip": "Zadejte weby, ke kterým mají uživatele přístup v pracovním kontextu. Žádné jiné weby se nepovolí. Můžete si zvolit, že nakonfigurujete buď seznam povolených webů, nebo zakázaných, ale ne oba. "
- },
- "ApplicationProxyRedirection": {
- "header": "Proxy aplikací",
- "title": "Přesměrování proxy aplikací",
- "tooltip": "Povolí přesměrování proxy aplikací, aby uživatelé měli přístup k firemním odkazům a místním webovým aplikacím."
- },
- "BlockedURLs": {
- "title": "Blokované adresy URL",
- "tooltip": "Zadejte weby, které mají uživatele v pracovním kontextu zablokované. Všechny ostatní weby se povolí. Můžete si zvolit, že nakonfigurujete buď seznam povolených webů, nebo zakázaných, ale ne oba. "
- },
- "Bookmarks": {
- "header": "Spravované záložky",
- "tooltip": "Zadejte seznam adres URL uložených mezi záložky, které vaši uživatelé budou mít k dispozici, když ve svém pracovním kontextu budou používat Microsoft Edge.",
- "uRL": "Adresa URL"
- },
- "HomepageURL": {
- "header": "Spravovaná domovská stránka",
- "title": "Adresa URL zástupce domovské stránky",
- "tooltip": "Nakonfigurujte zástupce domovské stránky, který se uživatelům zobrazí jako první ikona pod panelem hledání, až v Microsoft Edgi otevřou novou záložku."
- },
- "PersonalContext": {
- "label": "Přesměrovat servery s omezeným přístupem na osobní kontext",
- "tooltip": "Nakonfigurujte, jestli uživatelé můžou přecházet na osobní kontext, aby mohli otevřít omezené weby."
- }
- },
- "AzureIAM": {
- "AdrsUserActionSelectionWarning": {
- "conditions": "Podmínky, které vyžadují registraci zařízení, nejsou k dispozici u uživatelské akce Registrovat nebo připojit zařízení.",
- "message": "V zásadách vytvořených pro akci uživatele „Zaregistrovat nebo připojit zařízení“ je možné použít jen možnost „Vyžadovat vícefaktorové ověřování“.{0}"
- },
- "AuthContext": {
- "Included": {
- "none": "Nejsou vybrané žádné cloudové aplikace, akce ani kontexty ověřování.",
- "plural": "Zahrnuté kontexty ověřování: {0}",
- "singular": "Zahrnuté kontexty ověřování: 1"
- },
- "InfoBlade": {
- "createTitle": "Přidat kontext ověřování",
- "descPlaceholder": "Přidat popis kontextu ověřování",
- "modifyTitle": "Upravit kontext ověřování",
- "namePlaceholder": "Např. Důvěryhodné umístění, Důvěryhodné zařízení, Silná autorizace",
- "publishDesc": "Publikování do aplikací zpřístupní kontext ověřování aplikacím, které tak budou moct kontext použít. Publikování proveďte, až dokončíte konfiguraci zásad podmíněného přístupu pro značku. [Další informace][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150966",
- "publishLabel": "Publikovat do aplikací",
- "titleDesc": "Nakonfigurujte kontext ověřování, který se použije pro ochranu dat a akcí aplikace. Použijte názvy a popisy, kterým správci aplikací porozumí. [Další informace][1]\n[1]:https://go.microsoft.com/fwlink/?linkid=2150965"
- },
- "Notify": {
- "failure": "Aplikaci {0} se nepodařilo aktualizovat.",
- "modifying": "Upravuje se {0}.",
- "success": "Aplikace {0} se úspěšně aktualizovala."
- },
- "WhatIf": {
- "selected": "Zahrnutý kontext ověřování"
- },
- "addNewStepUp": "Nový kontext ověřování",
- "checkBoxInfo": "Vyberte kontext ověřování, na které se tyto zásady budou vztahovat.",
- "configure": "Nakonfigurovat kontexty ověřování",
- "createCA": "Přiřadit zásady podmíněného přístupu ke kontextu ověřování",
- "dataGrid": "Seznam kontextů ověřování",
- "description": "Popis",
- "documentation": "Dokumentace",
- "getStarted": "Začínáme",
- "label": "Kontext ověřování (Preview)",
- "menuLabel": "Kontext ověřování (Preview)",
- "name": "Název",
- "noAuthContextSet": "Neexistují žádné kontexty ověrování",
- "noData": "Nejsou k dispozici žádné kontexty ověřování, které by se daly zobrazit.",
- "selectionInfo": "Kontext ověřování se používá k zabezpečení dat a akcí v aplikacích, jako jsou SharePoint a Microsoft Cloud App Security.",
- "step": "Krok",
- "tabDescription": "Pokud chcete ve svých aplikacích chránit data a akce, spravujte kontext ověřování. [Další informace][1]\n[1]:https://go.microsoft.com/fwlink/?linkid=2150965",
- "tagResources": "Označit prostředky pomocí kontextu ověřování"
- },
- "AuthenticationStrength": {
- "Mode": {
- "deviceBasedPush": "Microsoft Authenticator (přihlášení telefonem)",
- "deviceBasedPushFido2X509Certificate": "Microsoft Authenticator (přihlášení telefonem) + Fido 2 + ověřování na základě certifikátu",
- "deviceBasedPushX509CertificateSingleFactor": "Microsoft Authenticator (přihlášení telefonem) + Fido 2 + ověřování na základě certifikátu (jednofaktorové)",
- "email": "Jednorázové heslo poslané e-mailem",
- "emailOtp": "E-mail pro ověřování jednorázovým heslem",
- "federatedMultiFactor": "Federované vícefaktorové",
- "federatedSingleFactor": "Federovaný jeden faktor",
- "federatedSingleFactorFederatedMultiFactor": "Federované jednofaktorové + federované vícefaktorové",
- "fido2": "Klíč zabezpečení FIDO 2",
- "fido2X509CertificateSingleFactor": "Klíč zabezpečení FIDO 2 + ověřování na základě certifikátu (jednofaktorové)",
- "hardwareOath": "Hardwarové ověřování jednorázovým heslem",
- "hardwareOathX509CertificateSingleFactor": "Hardwarové ověřování jednorázovým heslem + ověřování na základě certifikátu (jednofaktorové)",
- "microsoftAuthenticatorPSIX509CertificateSingleFactor": "Microsoft Authenticator (přihlášení telefonem) + ověřování na základě certifikátu (jednofaktorové)",
- "microsoftAuthenticatorPsi": "Microsoft Authenticator (přihlášení telefonem)",
- "microsoftAuthenticatorPush": "Microsoft Authenticator (nabízené oznámení)",
- "microsoftAuthenticatorPushX509CertificateSingleFactor": "Microsoft Authenticator (nabízené oznámení) + ověřování na základě certifikátu (jednofaktorové)",
- "none": "Žádný",
- "password": "Heslo",
- "passwordDeviceBasedPush": "Heslo + Microsoft Authenticator (přihlášení telefonem)",
- "passwordFido2": "Heslo + klíč zabezpečení FIDO 2",
- "passwordHardwareOath": "Heslo + hardwarové ověřování jednorázovým heslem",
- "passwordMicrosoftAuthenticatorPSI": "Heslo + Microsoft Authenticator (přihlášení telefonem)",
- "passwordMicrosoftAuthenticatorPush": "Heslo + Microsoft Authenticator (nabízené oznámení)",
- "passwordSms": "Heslo + SMS",
- "passwordSoftwareOath": "Heslo + softwarové ověřování jednorázovým heslem",
- "passwordTemporaryAccessPassMultiUse": "Heslo + dočasné předplatné (více užití)",
- "passwordTemporaryAccessPassOneTime": "Heslo + dočasné předplatné (jednorázové užití)",
- "passwordVoice": "Heslo + hlas",
- "sms": "SMS",
- "smsSignIn": "Přihlašování zprávou SMS",
- "smsX509CertificateSingleFactor": "SMS + ověřování na základě certifikátu (jednofaktorové)",
- "softwareOath": "Softwarové ověřování jednorázovým heslem",
- "softwareOathX509CertificateSingleFactor": "Softwarové ověřování jednorázovým heslem + ověřování na základě certifikátu (jednofaktorové)",
- "temporaryAccessPassMultiUse": "Dočasné předplatné (více užití)",
- "temporaryAccessPassMultiUseX509CertificateSingleFactor": "Dočasné předplatné (více užití) + ověřování na základě certifikátu (jednofaktorové)",
- "temporaryAccessPassOneTime": "Dočasné předplatné (jednorázové užití)",
- "temporaryAccessPassOneTimeX509CertificateSingleFactor": "Dočasné předplatné (jednorázové užití) + ověřování na základě certifikátu (jednofaktorové)",
- "voice": "Hlas",
- "voiceX509CertificateSingleFactor": "Hlas + ověřování na základě certifikátu (jednofaktorové)",
- "windowsHelloForBusiness": "Windows Hello pro firmy",
- "x509CertificateMultiFactor": "Ověřování na základě certifikátu (vícefaktorové)",
- "x509CertificateSingleFactor": "Ověřování na základě certifikátu (jednofaktorové)"
- }
- },
- "CAS": {
- "BuiltinPolicy": {
- "Option": {
- "blockDownloads": "Zablokovat stahování (Preview)",
- "monitorOnly": "Jen monitorování (Preview)",
- "protectDownloads": "Chránit stahování (Preview)",
- "useCustomControls": "Použít vlastní zásady..."
- },
- "ariaLabel": "Zvolte druh Řízení podmíněného přístupu k aplikacím, který se má použít."
- }
- },
- "ChooseApplications": {
- "Grid": {
- "appIdAria": "ID aplikace: {0}"
- },
- "LowerGrid": {
- "ariaLabel": "Seznam vybraných cloudových aplikací"
- },
- "UpperGrid": {
- "ariaLabel": "Seznam cloudových aplikací, které odpovídají hledanému termínu"
- }
- },
- "ChooseLocations": {
- "Validation": {
- "failed": "Ve Vybraných lokalitách musíte zvolit alespoň jednu lokalitu.",
- "selector": "Zvolte alespoň jedno umístění."
- }
- },
- "ClientApp": {
- "Clients": {
- "Validation": {
- "failed": "Musíte vybrat alespoň jednoho z následujících klientů."
- }
- }
- },
- "ClientConditionsInfo": {
- "browserAndModern": "Tyto zásady platí jen pro moderní ověřovací aplikace a ověřovací aplikace pro prohlížeče. Pokud chcete zásady použít pro všechny klientské aplikace, povolte podmínku klientských aplikací a vyberte všechny klientské aplikace.",
- "classicExperience": "Od vytvoření těchto zásad se aktualizovala výchozí konfigurace klientských aplikací.",
- "legacyAuth": "Když se nakonfiguruje, budou se teď zásady vztahovat na všechny klientské aplikace, včetně moderního a staršího ověřování."
- },
- "CloudAppFilterBlade": {
- "AssignmentFilter": {
- "header": "Atribut",
- "placeholder": "Zvolit atribut"
- },
- "Configure": {
- "infoBalloon": "Nakonfigurujte filtry aplikací, pro které chcete zásady použít."
- },
- "NoPermissions": {
- "learnMoreAria": "Další informace o oprávněních vlastních atributů zabezpečení.",
- "message": "Nemáte oprávnění potřebná k použití vlastních atributů zabezpečení."
- },
- "gridHeader": "S využitím vlastních atributů zabezpečení můžete pomocí tvůrce pravidel nebo textového pole syntaxe pravidel vytvořit nebo upravit pravidla filtru. Ve verzi Preview jsou podporovány pouze atributy typu String. Atributy typu Integer nebo Boolean nebudou zobrazeny.",
- "learnMoreAria": "Další informace o použití tvůrce pravidel a textového pole syntaxe.",
- "noAttributes": "K dispozici nejsou žádné vlastní atributy, které by bylo možné filtrovat. Pokud chcete použít tento filtr, bude nutné nakonfigurovat některé atributy.",
- "title": "Edit filter (Preview)"
- },
- "CloudAppsUserActions": {
- "any": "Jakákoli cloudová aplikace nebo akce",
- "infoBalloon": "Cloudová aplikace nebo akce uživatele, kterou chcete otestovat. Příklad: SharePoint Online",
- "learnMore": "Umožňuje nastavit přístup podle všech nebo konkrétních cloudových aplikací nebo akcí.",
- "learnMoreB2C": "Umožňuje nastavit přístup podle všech nebo konkrétních cloudových aplikací.",
- "title": "Cloudové aplikace nebo akce"
- },
- "CloudappsSelectionBlade": {
- "Excluded": {
- "gridAria": "Seznam vyloučených cloudových aplikací"
- },
- "Filter": {
- "configured": "Nakonfigurováno",
- "label": "Edit filter (Preview)",
- "with": "{0} s {1}"
- },
- "Included": {
- "gridAria": "Seznam zahrnutých cloudových aplikací"
- },
- "Validation": {
- "authContext": "S kontextem ověřování je nutné nakonfigurovat alespoň jednu podřízenou položku.",
- "selectApps": "{0} se musí nakonfigurovat.",
- "selector": "Vyberte alespoň jednu aplikaci.",
- "userActions": "S Akcemi uživatelů je zapotřebí nakonfigurovat alespoň jednu podřízenou položku."
- }
- },
- "DeviceState": {
- "LearnMore": {
- "message": "Control user access when the device the user is signing-in from is not \"Hybrid Azure AD joined\" or \"marked as compliant\".\n '{0}' has been deprecated. Use '{1}' instead."
- }
- },
- "Errors": {
- "notFound": "Zásady se nenašly nebo se zakázaly.",
- "notFoundDetailed": "Zásady {0} už neexistují. Je možné, že se odstranily."
- },
- "NamedLocation": {
- "Form": {
- "CountryLookup": {
- "ariaLabel": "Metoda vyhledání země",
- "gps": "Určení polohy podle souřadnic GPS",
- "info": "Když se nakonfiguruje podmínka polohy zásad podmíněného přístupu, uživatelům se zobrazí výzva aplikace Authenticator, aby sdíleli svou polohu GPS. ",
- "ip": "Zjistit polohu podle IP adresy (jen protokol IPv4)"
- },
- "Header": {
- "new": "Nové umístění ({0})",
- "update": "Aktualizovat umístění ({0})"
- },
- "IP": {
- "learn": "Nakonfigurujte rozsahy IPv4 a IPv6 pojmenovaných umístění.\n[Další informace][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
- },
- "Include": {
- "infoBalloon": "Neznámé země/oblasti jsou IP adresy, které nejsou přidružené ke konkrétní zemi nebo oblasti. [Další informace][1]\n\nTo zahrnuje:\n* IPv6 adresy\n* IPv4 adresy bez přímého mapování\n[1]: https://aka.ms/canamedlocations\n",
- "label": "Zahrnout neznámé země/oblasti"
- },
- "Name": {
- "empty": "Název nemůže být prázdný.",
- "placeholder": "Název tohoto umístění"
- },
- "PrivateLink": {
- "learn": "Vytvořte nové pojmenované umístění, které bude obsahovat privátní propojení pro Azure AD.\n[Další informace][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
- },
- "Search": {
- "countries": "Hledat země",
- "names": "Hledat jména",
- "privateLinks": "Hledat privátní propojení"
- },
- "Trusted": {
- "label": "Označit jako důvěryhodné umístění"
- },
- "enter": "Zadejte nový rozsah IPv4 nebo IPv6.",
- "example": "např.: 40.77.182.32/27 nebo 2a01:111::/32"
- },
- "Label": {
- "addCountries": "Umístění zemí",
- "addIpRange": "Umístění rozsahů IP adres",
- "addPrivateLink": "Azure Private Links"
- },
- "Notification": {
- "Create": {
- "Failed": {
- "description": "Při vytváření nového umístění došlo k chybě ({0}).",
- "title": "Vytváření neproběhlo úspěšně"
- },
- "InProgress": {
- "description": "Vytváří se nové umístění ({0}).",
- "title": "Probíhá vytváření"
- },
- "Success": {
- "description": "Nové umístění se úspěšně vytvořilo ({0}).",
- "title": "Vytváření proběhlo úspěšně"
- }
- },
- "Delete": {
- "Failed": {
- "description": "Při odstraňování umístění došlo k chybě ({0}).",
- "title": "Odstraňování neproběhlo úspěšně"
- },
- "InProgress": {
- "description": "Odstraňuje se umístění ({0}).",
- "title": "Probíhá odstraňování"
- },
- "Success": {
- "description": "Umístění se úspěšně odstranilo ({0}).",
- "title": "Odstranění proběhlo úspěšně"
- }
- },
- "Update": {
- "Failed": {
- "description": "Při aktualizaci umístění došlo k chybě ({0}).",
- "title": "Aktualizace neproběhla úspěšně"
- },
- "InProgress": {
- "description": "Aktualizuje se umístění ({0}).",
- "title": "Probíhá aktualizace"
- },
- "Success": {
- "description": "Umístění se úspěšně aktualizovalo ({0}).",
- "title": "Aktualizace proběhla úspěšně"
- }
- }
- },
- "PrivateLinks": {
- "grid": "Seznam privátních propojení"
- },
- "Trusted": {
- "title": "Důvěryhodný typ",
- "trusted": "Důvěryhodná"
- },
- "Type": {
- "all": "Všechny typy",
- "countries": "Země",
- "ipRanges": "Rozsahy IP adres",
- "privateLinks": "Privátní propojení",
- "title": "Typ umístění"
- },
- "iPRangeInvalidError": "Hodnota musí být platný rozsah IPv4 nebo IPv6.",
- "iPRangeLinkOrSiteLocalError": "Síť IP se zjistila jako místní adresa propojení nebo lokality.",
- "iPRangeOctetError": "Síť IP nesmí začínat na 0 nebo 255.",
- "iPRangePrefixError": "Předpona sítě IP musí mít hodnotu od /{0} do /{1}.",
- "iPRangePrivateError": "Síť IP se zjistila jako privátní adresa."
- },
- "Policies": {
- "Grid": {
- "aria": "Seznam zásad podmíněného přístupu"
- },
- "countText": "Našly se {0} z {1} zásad.",
- "countTextSingular": "Našla se {0} z 1 zásady.",
- "search": "Vyhledat zásady"
- },
- "Policy": {
- "Condition": {
- "ServicePrincipalRisk": {
- "description": "Umožňuje nakonfigurovat úrovně rizika instančního objektu potřebné k vynucení zásad ",
- "infoBalloonContent": "Konfigurace rizika instančního objektu pro použití zásad na vybrané úrovně rizika",
- "title": "Riziko instančního objektu"
- }
- }
- },
- "PolicyControlAuthStrength": {
- "MultiFactorAuthentication": {
- "description": "Kombinace metod, které splňují požadavky silného ověřování, jako je heslo + SMS.",
- "displayName": "Vícefaktorové ověřování (MFA)"
- },
- "Passwordless": {
- "description": "Bezheslové metody, které splňují požadavky silného ověřování, například Microsoft Authenticator. ",
- "displayName": "Bezheslový MFA"
- },
- "PhishingResistant": {
- "description": "Bezheslové metody odolné proti útokům phishing pro nejsilnější úroveň ověřování, jako je například klíč zabezpečení FIDO2.",
- "displayName": "MFA odolné vůči útoku phishing"
- }
- },
- "PolicyControlFedAuthMethod": {
- "certificate": "Ověřování certifikátem",
- "infoBubble": "Zadejte požadovanou metodu ověřování, kterou musí splnit poskytovatel federace, třeba ADFS.",
- "multifactor": "Vícefaktorové ověřování",
- "require": "Vyžadovat federovanou metodu ověřování (Preview)",
- "whatIfFormat": "{0} - {1}"
- },
- "PolicyState": {
- "off": "Vypnuté",
- "on": "Zapnuté",
- "reportOnly": "Pouze sestavy"
- },
- "PolicyTemplates": {
- "Devices": {
- "description": "Vyberte kategorii šablon zásad zařízení, abyste získali přehled o zařízeních přistupujících k síti. Před udělením přístupu zajistěte dodržování předpisů a stav.",
- "name": "Zařízení"
- },
- "Identities": {
- "description": "Vyberte kategorii šablony zásad identit, abyste ověřili a zabezpečili každou identitu pomocí silného ověřování napříč všemi digitálními prostředky.",
- "name": "Identity"
- },
- "Summary": {
- "CloudApps": {
- "allCloudApps": "Všechny aplikace",
- "office365": "Office 365",
- "registerSecurityInfo": "Zaregistrovat informace o zabezpečení"
- },
- "Conditions": {
- "androidAndIOS": "Platforma zařízení: Android a iOS",
- "anyDevice": "Libovolné zařízení s výjimkou Androidu, iOS, Windows a Macu",
- "anyDeviceStateExceptHybrid": "Libovolný stav zařízení s výjimkou odpovídajícího zařízení a zařízení připojeného službou Hybrid Azure AD Join",
- "anyLocation": "Libovolné umístění kromě důvěryhodného",
- "browserMobileDesktop": "Klientské aplikace: prohlížeč, mobilní aplikace a desktopoví klienti",
- "exchangeActiveSync": "Klientské aplikace: Exchange Active Sync, ostatní klienti",
- "windowsAndMac": "Platforma zařízení: Windows a Mac"
- },
- "Devices": {
- "anyDevice": "Libovolné zařízení"
- },
- "Grant": {
- "appProtectionPolicy": "Vyžadovat zásady ochrany aplikací",
- "approvedClientApp": "Vyžaduje se klientem schválená aplikace.",
- "blockAccess": "Blokovat přístup",
- "mfa": "Vyžadovat vícefaktorové ověřování",
- "passwordChange": "Vyžadovat změnu hesla",
- "requireCompliantDevice": "Vyžadovat, aby zařízení bylo označené jako vyhovující",
- "requireHybridAzureADDevice": "Vyžadovat zařízení připojené službou Hybrid Azure AD Join"
- },
- "Session": {
- "appEnforcedRestrictions": "Používat omezení vynucená aplikací",
- "signInFrequency": "Frekvence přihlášení a dočasná relace prohlížeče"
- },
- "UsersAndGroups": {
- "allUsers": "Všichni uživatelé",
- "directoryRoles": "Role adresáře s výjimkou aktuálního správce",
- "globalAdmin": "Globální správce",
- "noGuestAndAdmins": "Všichni uživatelé kromě hostů a externích uživatelů, globálních správců a aktuálního správce"
- },
- "azureManagement": "Správa Azure",
- "deviceFilters": "Filtry pro zařízení",
- "devicePlatforms": "Platformy zařízení"
- },
- "TemplateId": {
- "AppEnforcedRestrictions": {
- "description": "Zablokujte nebo omezte přístup k obsahu SharePointu, OneDrivu a Exchange z nespravovaných zařízení.",
- "name": "CA014: Použít omezení vynucená aplikací pro nespravovaná zařízení",
- "title": "Použít omezení vynucená aplikací pro nespravovaná zařízení"
- },
- "ApprovedClientApps": {
- "description": "Aby se zabránilo ztrátě dat, organizace můžou omezit přístup ke schváleným aplikacím moderního ověřování klientů pomocí služby Intune App Protection.",
- "name": "CA012: Vyžadovat schválené klientské aplikace a ochranu aplikací",
- "title": "Vyžadovat schválené klientské aplikace a ochranu aplikací"
- },
- "BlockAccessOnUnknowns": {
- "description": "Uživatelům se zablokuje přístup k prostředkům společnosti, pokud je typ zařízení neznámý nebo nepodporovaný.",
- "name": "CA010: Zablokovat přístup neznámé nebo nepodporované platformě zařízení",
- "title": "Zablokovat přístup neznámé nebo nepodporované platformě zařízení"
- },
- "BlockLegacyAuth": {
- "description": "Zablokuje starší verze koncových bodů ověřování, které se dají použít k obejití vícefaktorového ověřování. ",
- "name": "CA003: Blokuje starší verzi ověřování.",
- "title": "Blokovat starší verzi ověřování"
- },
- "NoPersistentBrowserSession": {
- "description": "Chraňte přístup uživatelů na nespravovaných zařízeních tím, že zabráníte tomu, aby relace prohlížeče zůstaly přihlášené po zavření prohlížeče, a nastavíte frekvenci přihlašování na 1 hodinu.",
- "name": "CA011: Žádná trvalá relace prohlížeče",
- "title": "Žádná trvalá relace prohlížeče"
- },
- "RequireCompliantOrHybridADAdmins": {
- "description": "Vyžadujte, aby privilegovaní správci mohli přistupovat k prostředkům jenom při použití zařízení připojeného ke službě Azure AD nebo zařízení připojeného k hybridní službě Azure AD.",
- "name": "CA009: Vyžadovat odpovídající nebo službou Hybrid Azure AD Join připojené zařízení pro správce",
- "title": "Vyžadovat odpovídající nebo službou Hybrid Azure AD Join připojené zařízení pro správce."
- },
- "RequireCompliantOrHybridADAllUsers": {
- "description": "Chraňte přístup k firemním prostředkům tím, že budete vyžadovat, aby uživatelé používali spravované zařízení nebo prováděli vícefaktorové ověřování. (pouze macOS nebo Windows)",
- "name": "CA013: Vyžadovat odpovídající nebo službou Hybrid Azure AD Join připojené zařízení nebo vícefaktorové ověřování pro všechny uživatele",
- "title": "Vyžadovat odpovídající nebo službou Hybrid Azure AD Join připojené zařízení nebo vícefaktorové ověřování pro všechny uživatele"
- },
- "RequireMFAAllUsers": {
- "description": "Vyžadujte vícefaktorové ověřování pro všechny uživatelské účty, abyste snížili riziko ohrožení zabezpečení.",
- "name": "CA004: Vyžadovat vícefaktorové ověřování pro všechny uživatele",
- "title": "Vyžadovat vícefaktorové ověřování pro všechny uživatele"
- },
- "RequireMFAForAdmins": {
- "description": "Vyžadovat vícefaktorové ověřování pro privilegované účty pro správu, aby se snížilo riziko ohrožení zabezpečení. Tato zásada bude cílit na stejné role jako výchozí zabezpečení.",
- "name": "CA001: Vyžadovat vícefaktorové ověřování pro správce",
- "title": "Vyžadovat vícefaktorové ověřování pro správce"
- },
- "RequireMFAForAzureManagement": {
- "description": "K ochraně privilegovaného přístupu k prostředkům Azure se vyžaduje vícefaktorové ověřování.",
- "name": "CA006: Vyžadovat vícefaktorové ověřování pro správu Azure",
- "title": "Vyžadovat vícefaktorové ověřování pro správu Azure"
- },
- "RequireMFAForGuestAccess": {
- "description": "Vyžadovat, aby uživatelé typu host při přístupu k firemním prostředkům provedli vícefaktorové ověřování.",
- "name": "CA005: Vyžadovat vícefaktorové ověřování pro přístup hostů",
- "title": "Vyžadovat vícefaktorové ověřování pro přístup hostů"
- },
- "RequireMFAForRiskySignIn": {
- "description": "Vyžadovat vícefaktorové ověřování, pokud se zjistí, že riziko přihlášení je střední nebo vysoké. (vyžaduje licenci Azure AD Premium 2).",
- "name": "CA007: Vyžadovat vícefaktorové ověřování pro riziková přihlášení",
- "title": "Vyžadovat vícefaktorové ověřování pro riziková přihlášení"
- },
- "RequirePasswordChangeForHighRiskUsers": {
- "description": "Vyžaduje, aby si uživatel změnil heslo, pokud se zjistí vysoké riziko uživatele (vyžaduje licenci Azure AD Premium 2).",
- "name": "CA008: Vyžadovat změnu hesla pro uživatele s vysokým rizikem",
- "title": "Vyžadovat změnu hesla pro uživatele s vysokým rizikem"
- },
- "RequireSecurityInfo": {
- "description": "Zabezpečte, kdy a jak se uživatelé zaregistrují k vícefaktorovému ověřování Azure AD a samoobslužnému heslu. ",
- "name": "CA002: Zabezpečování registrace bezpečnostních údajů",
- "title": "Zabezpečování registrace bezpečnostních údajů"
- }
- },
- "TemplateState": {
- "BlockAccessOnUnknowns": {
- "title": "Povolení této zásady zabrání jakémukoli přístupu z neznámého typu zařízení, pro začátek zvažte použití režimu pouze sestava, dokud si nepotvrdíte, že to nebude mít vliv na vaše uživatele."
- },
- "BlockLegacyAuth": {
- "description": "Pro začátek zvažte použití režimu pouze sestava, dokud nebudete mít jistotu, že to nebude mít vliv na vaše uživatele.",
- "title": "Povolením této zásady se zablokují starší ověřování pro všechny vaše uživatele."
- },
- "RequireCompliantOrHybridADAdmins": {
- "Description": {
- "on": "Pro začátek zvažte použití režimu pouze sestava, dokud nebudete mít jistotu, že to nebude mít vliv na vaše privilegované uživatele.",
- "reportOnly": "Zásady v režimu pouze sestava, které vyžadují kompatibilní zařízení, mohou uživatele počítačů Mac, iOS a Android vyzvat, aby během vyhodnocování zásad vybrali certifikát zařízení, i když není vynucován soulad zařízení. Tyto výzvy se mohou opakovat, dokud není zařízení v souladu s požadavky."
- },
- "Title": {
- "on": "Když se tyto zásady povolí, zabráníte veškerému přístupu privilegovaných uživatelů, pokud nepoužívají spravované zařízení, například vyhovující předpisům nebo připojené k hybridní službě Azure AD. Před povolením se ujistěte, že jste nakonfigurovali zásady dodržování předpisů nebo povolili hybridní konfiguraci Azure AD.",
- "reportOnly": "Před povolením se ujistěte, že jste nakonfigurovali zásady dodržování předpisů nebo povolili hybridní konfiguraci Azure AD. "
- }
- },
- "RequireCompliantOrHybridADAllUsers": {
- "Description": {
- "on": "Tato zásada bude mít vliv na všechny uživatele kromě aktuálně přihlášeného správce. Zvažte použití režimu jenom pro sestavy, který bude začínat, dokud neověříte, že to nebude mít dopad na vaše uživatele."
- },
- "Title": {
- "on": "Nezablokujte se! Ujistěte se, že vaše zařízení dodržuje předpisy, že je připojené k hybridní službě Azure AD, nebo jste nakonfigurovali vícefaktorové ověřování. ",
- "reportOnly": "Zásady v režimu pouze sestava, které vyžadují kompatibilní zařízení, mohou uživatele počítačů Mac, iOS a Android vyzvat, aby během vyhodnocování zásad vybrali certifikát zařízení, i když není vynucován soulad zařízení. Tyto výzvy se mohou opakovat, dokud není zařízení kompatibilní."
- }
- },
- "RequireMfa": {
- "description": "Pokud k synchronizaci místních objektů používáte účty pro nouzový přístup nebo Azure AD Connect, budete možná muset tyto účty z těchto zásad po vytvoření vyloučit."
- },
- "RequireMfaAdmins": {
- "description": "Vezměte prosím na vědomí, že aktuální účet správce bude automaticky vyloučen, ale všechny ostatní budou při vytváření zásad chráněny. Zvažte pro začátek použití režimu pouze sestava.",
- "title": "Nezablokujte si přístup! Tato zásada ovlivňuje portál Microsoft Azure."
- },
- "RequireMfaAllUsers": {
- "description": "Pro začátek zvažte používání pouze režimu sestav, dokud tuto změnu nenaplánujete a neoznámíte všem uživatelům.",
- "title": "Povolením této zásady vynutíte vícefaktorové ověřování pro všechny uživatele."
- },
- "RequireSecurityInfo": {
- "description": "Dbejte, abyste zkontrolovali konfiguraci ochrany těchto účtů na základě potřeb vaší společnosti.",
- "title": "Tyto zásady se nevztahují na následující uživatele a role: Hosté a externí uživatelé, Globální správci, Aktuální správce."
- }
- },
- "basics": "Základní informace",
- "clientApps": "Klientské aplikace",
- "cloudApps": "Cloudové aplikace",
- "cloudAppsOrActions": "Cloudové aplikace nebo akce ",
- "conditions": "Podmínky ",
- "createNewPolicy": "Vytvořit nové zásady ze šablon (Preview)",
- "createPolicy": "Vytvořit zásady",
- "currentUser": "Aktuální uživatel",
- "customizeBuild": "Přizpůsobení sestavení",
- "customizeTemplate": "Seznamy šablon se přizpůsobují podle typu zásady, kterou vytváříte.",
- "excludedDevicePlatform": "Vyloučené platformy zařízení",
- "excludedDirectoryRoles": "Vyloučené role adresáře",
- "excludedLocation": "Vyloučené role adresáře",
- "excludedUsers": "Vyloučení uživatelé",
- "grantControl": "Udělit řízení ",
- "includeFilteredDevice": "Zahrnout filtrovaná zařízení do zásad",
- "includedDevicePlatform": "Zahrnuté platformy zařízení",
- "includedDirectoryRoles": "Zahrnuté role adresáře",
- "includedLocation": "Zahrnuté umístění",
- "includedUsers": "Zahrnout uživatele",
- "legacyAuthenticationClients": "Starší ověřovací klienti",
- "namePolicy": "Pojmenujte zásadu.",
- "next": "Další",
- "policyName": "Název zásady",
- "policyState": "Stav zásad",
- "policySummary": "Souhrn zásad",
- "policyTemplate": "Šablona zásad",
- "previous": "Předchozí",
- "reviewAndCreate": "Zkontrolovat a vytvořit",
- "riskLevels": "Úrovně rizika",
- "selectATemplate": "Vyberte šablonu.",
- "selectTemplate": "Vybrat šablonu",
- "selectTemplateCategory": "Vyberte kategorii šablony.",
- "selectTemplateRecommendation": "Na základě vaší odpovědi doporučujeme následující šablony.",
- "sessionControl": "Řízení relace ",
- "signInFrequency": "Frekvence přihlašování",
- "signInRisk": "Riziko přihlášení",
- "template": "Šablona ",
- "templateCategory": "Kategorie šablony:",
- "userRisk": "Riziko uživatele",
- "usersAndGroups": "Uživatelé a skupiny ",
- "viewPolicySummary": "Zobrazit souhrn zásad "
- },
- "SSM": {
- "MemberSelector": {
- "description": "Uživatelé a skupiny"
- },
- "Notification": {
- "Migration": {
- "error": "Nepovedlo se migrovat nastavení nepřetržitého vyhodnocování přístupu do zásad podmíněného přístupu.",
- "inProgress": "Migrují se nastavení nepřetržitého vyhodnocování přístupu.",
- "success": "Nastavení nepřetržitého vyhodnocování přístupu se úspěšně migrovalo do zásad podmíněného přístupu.",
- "successDescription": "Přejděte prosím k zásadám podmíněného přístupu a zobrazte migrovaná nastavení v nově vytvořených zásadách s názvem „Zásady podmíněného přístupu vytvořené z nastavení CAE“."
- },
- "error": "Nepovedlo se aktualizovat nastavení Nepřetržitého vyhodnocování přístupu.",
- "inProgress": "Aktualizují se nastavení Nepřetržitého vyhodnocování přístupu.",
- "success": "Nastavení Nepřetržitého vyhodnocování přístupu se úspěšně aktualizovala."
- },
- "PreviewOptions": {
- "disable": "Zakázat verzi Preview",
- "enable": "Povolit verzi Preview"
- },
- "StrictLocationEnforcement": {
- "infoContent1": "Kvůli neshodě rozdělení sítě nebo protokolů IPv4 a IPv6 můžou Azure AD a poskytovatel prostředků na jednom klientském zařízení zjistit různé IP adresy. Přísné vynucování lokality vynutí zásady podmíněného přístupu pro obě IP adresy zjištěné službou Azure AD a poskytovatelem prostředků.",
- "infoContent2": "Aby se zajistilo maximální zabezpečení, doporučuje se zahrnout všechny IP adresy, které můžou zjistit služba Azure AD a poskytovatel prostředků v zásadách pojmenovaného umístění, a zapnout režim Přísné vynucování lokality.",
- "label": "Přísné vynucování lokality",
- "title": "Další režimy vynucování"
- },
- "bladeTitle": "Nepřetržité vyhodnocování přístupu",
- "description": "Když se odebere přístup uživatele nebo se změní IP adresa klienta, Nepřetržité vyhodnocování přístupu téměř v reálném čase automaticky zablokuje přístup k prostředkům a aplikacím. ",
- "migrateLabel": "Migrovat",
- "migrationError": "Migrace selhala kvůli následující chybě: {0}",
- "migrationInfo": "Nastavení CAE se přesunulo do uživatelského prostředí podmíněný přístup UX. Migrujte prosím pomocí výše uvedeného tlačítka Migrovat a nakonfigurujte jej pomocí zásad podmíněného přístupu. Kliknutím zde získáte další informace.",
- "noLicenseMessage": "S Azure AD Premium můžete spravovat nastavení inteligentní správy relací.",
- "optionsPickerTitle": "Povolit nebo zakázat Nepřetržité vyhodnocování přístupu",
- "upsellInfo": "Nastavení na této stránce už nemůžete změnit a všechna zdejší nastavení by se měla ignorovat. Vaše předchozí nastavení bude respektováno. Nastavení CAE můžete do budoucna nakonfigurovat v části Podmíněný přístup. Další informace získáte kliknutím sem."
- },
- "SessionLifetime": {
- "PersistentBrowser": {
- "Error": {
- "notAllApps": "Zásady trvalých relací prohlížečů fungují správně, jen když je vybraná možnost Všechny cloudové aplikace. Aktualizujte prosím svůj výběr cloudových aplikací."
- },
- "Option": {
- "always": "Vždy trvalá",
- "help": "Trvalá relace prohlížeče umožňuje uživateli zůstat přihlášený i poté, co zavře a znovu otevře okno prohlížeče.
\n
\n- Toto nastavení funguje správně, když je vybraná možnost Všechny cloudové aplikace.
\n- Na nastavení životnosti tokenů nebo frekvence přihlašování to nemá vliv.
\n- Toto nastavení přepíše zásady Zobrazit možnost zachovat přihlášení v Brandingu společnosti.
\n- Možnost Nikdy není trvalá přepíše všechny trvalé deklarace identity jednotného přihlašování předané z federovaných ověřovacích služeb.
\n- Možnost Nikdy není trvalá znemožní jednotné přihlašování na mobilních zařízeních mezi aplikacemi a mezi aplikacemi a mobilním prohlížečem uživatele.
\n",
- "label": "Trvalá relace prohlížeče",
- "never": "Nikdy není trvalá"
- },
- "Warning": {
- "allApps": "Trvalá relace prohlížeče funguje správně, jen když je vybraná možnost Všechny cloudové aplikace. Změňte prosím svůj výběr cloudových aplikací. Pro další informace klikněte sem."
- }
- },
- "SignInFrequency": {
- "Aria": {
- "units": "Hodiny nebo dny",
- "value": "Frekvence"
- },
- "Option": {
- "Day": {
- "plural": "{0} d.",
- "singular": "1 den"
- },
- "Hour": {
- "plural": "{0} hod.",
- "singular": "1 hodina"
- },
- "daysOption": "Dny",
- "everytime": "Pokaždé",
- "help": "Doba, než se uživateli při přístupu k nějakému prostředku znovu zobrazí výzva k přihlášení. Výchozí nastavení je 90denní posuvné okno, tj. uživateli se výzva k opětovnému ověření zobrazí při prvním pokusu o přístup k prostředku poté, co na počítači nebyl uživatel aktivní 90 dní nebo déle.",
- "hoursOption": "Hodin",
- "label": "Frekvence přihlašování",
- "placeholder": "Vybrat jednotky"
- }
- },
- "mainOption": "Upravit životnost relace",
- "mainOptionHelp": "Nakonfigurujte, jak často se uživatelům bude zobrazovat výzva a jestli se mají zachovávat relace prohlížečů. Aplikace, které nepodporují moderní ověřovací protokoly, možná nebudou tyto zásady dodržovat. V takových případech se prosím obraťte na vývojáře aplikace."
- },
- "SigninRisk": {
- "LearnMore": {
- "message": "Umožňuje nastavit přístup uživatelů, aby bylo možné reagovat na konkrétní úrovně rizika uživatelů."
- }
- },
- "SingleSelectorActive": {
- "failed": "Tato data se nedaří načíst.",
- "reattempt": "Načítají se data. Opakovaný pokus {0} z {1}."
- },
- "TimeCondition": {
- "Errors": {
- "both": "Neplatný časový rozsah Include nebo Exclude",
- "daysOfWeek": "{0} Ujistěte se, že jste zadali alespoň jeden den v týdnu.",
- "endBeforeStart": "{0} Počáteční datum a čas musí předcházet koncovému datu a času.",
- "exclude": "Neplatný časový rozsah Exclude",
- "generic": "{0} Je nutné nastavit dny v týdnu i časové pásmo. Pokud nezaškrtnete Celý den, musíte také nastavit počáteční a koncový čas.",
- "include": "Neplatný časový rozsah Include",
- "timeMissing": "{0} Ujistěte se, že jste zadali jak počáteční, tak koncový čas.",
- "timeZone": "{0} Ujistěte se, že jste zadali časové pásmo.",
- "timesAndZone": "{0} Je nutné nastavit počáteční čas, koncový čas a časové pásmo."
- }
- },
- "UserActions": {
- "Included": {
- "none": "Nevybraly se žádné cloudové aplikace ani akce.",
- "plural": "Počet zahrnutých akcí uživatele: {0}",
- "singular": "Počet zahrnutých akcí uživatele: 1"
- },
- "accessRequirement1": "Úroveň 1",
- "accessRequirement2": "Úroveň 2",
- "accessRequirement3": "Úroveň 3",
- "accessRequirementsLabel": "Přistupuje se k zabezpečeným datům aplikace.",
- "appsActionsAuthTitle": "Cloudové aplikace, akce nebo kontext ověřování",
- "appsOrActionsSelectorInfoBallonText": "Aplikace, ke které se přistupuje, nebo akce uživatele",
- "appsOrActionsTitle": "Cloudové aplikace nebo akce",
- "label": "Akce uživatele",
- "mainOptionsLabel": "Vyberte, na co se tyto zásady vztahují.",
- "registerOrJoinDevices": "Zaregistrovat nebo připojit zařízení",
- "registerSecurityInfo": "Zaregistrovat informace o zabezpečení",
- "selectionInfo": "Vyberte akce, na které se tyto zásady budou vztahovat."
- },
- "UserSelectionBlade": {
- "DirectoryRoles": {
- "ariaLabel": "Zvolit role adresářů"
- },
- "Excluded": {
- "gridAria": "Seznam vyloučených uživatelů"
- },
- "Included": {
- "gridAria": "Seznam zahrnutých uživatelů"
- },
- "Validation": {
- "customRoleIncluded": "Role adresáře obsahují alespoň jednu vlastní roli.",
- "customRoleSelected": "Vybrala se alespoň jedna vlastní role.",
- "failed": "{0} se musí nakonfigurovat.",
- "roles": "Vyberte alespoň jednu roli.",
- "usersGroups": "Vyberte alespoň jednoho uživatele nebo skupinu."
- },
- "learnMore": "Řízení přístupu na základě toho, na koho se zásady budou vztahovat, jako jsou uživatelé a skupiny, identity úloh, role adresáře nebo externí hosté."
- },
- "ValidationResult": {
- "blockEveryonePolicy": "Konfigurace zásad se nepodporuje. Zkontrolujte vybraná přiřazení a ovládací prvky.",
- "invalidApplicationCondition": "Jsou vybrané neplatné cloudové aplikace.",
- "invalidClientTypesCondition": "Jsou vybrané neplatné klientské aplikace.",
- "invalidConditions": "Přiřazení nejsou vybraná.",
- "invalidControls": "Jsou vybrané neplatné ovládací prvky.",
- "invalidDevicePlatformsCondition": "Jsou vybrané neplatné platformy zařízení.",
- "invalidDevicesCondition": "Neplatná konfigurace zařízení. Pravděpodobně jde o neplatnou konfiguraci{0}.",
- "invalidGrantControlPolicy": "Neplatný ovládací prvek udělení",
- "invalidLocationsCondition": "Jsou vybraná neplatná umístění.",
- "invalidPolicy": "Přiřazení nejsou vybraná.",
- "invalidSessionControlPolicy": "Neplatný ovládací prvek relace",
- "invalidSignInRisksCondition": "Jsou vybraná neplatná rizika přihlášení.",
- "invalidUserRisksCondition": "Je vybrané neplatné riziko uživatele.",
- "invalidUsersCondition": "Jsou vybraní neplatní uživatelé.",
- "mamPolicyShouldOnlyTargetAndroidOrIosPlatforms": "Zásady MAM se dají použít jen pro platformy klientů Android a iOS.",
- "notSupportedCombination": "Konfigurace zásad není podporovaná. Další informace o podporovaných zásadách",
- "pending": "Ověřují se zásady",
- "requireComplianceEveryonePolicy": "Konfigurace zásad bude vyžadovat dodržování předpisů u zařízení všech uživatelů. Zkontrolujte vybraná přiřazení.",
- "success": "Platné zásady"
- },
- "VpnCert": {
- "Grid": {
- "aria": "Seznam všech certifikátů VPN"
- }
- },
- "WarningsInfo": {
- "Controls": {
- "compliantDeviceEnabled": "Nezablokujte si přístup! Ujistěte se, že vaše zařízení dodržuje předpisy.",
- "domainJoinedDeviceEnabled": "Nezablokujte si přístup! Ujistěte se, že vaše zařízení je připojené službou Hybrid Azure AD Join.",
- "exchangeDisabled": "Exchange ActiveSync podporuje jenom řízení kompatibilních zařízení a klientem schválených aplikací. Kliknutím získáte další informace.",
- "exchangeDisabled2": "Exchange ActiveSync podporuje jen ovládací prvky Vyhovující zařízení, Schválená klientská aplikace a Vyhovující klientská aplikace. Kliknutím získáte další informace.",
- "notAvailableForSP": "Některé ovládací prvky nejsou k dispozici kvůli výběru {0} v přiřazení zásad.",
- "requireAuthOrMfa": "{0} nejde používat s {1}.",
- "requireMfa": "Zvažte možnost otestovat novou veřejnou verzi náhledu {0}.",
- "requirePasswordChangeEnabled": "Možnost Požadovat změnu hesla se dá použít jen v případě, že se zásady přiřadí ke všem cloudovým aplikacím."
- },
- "Policies": {
- "Linux": {
- "devicePlatformsReportOnlyPolicy": "Zásady v režimu Pouze sestavy, které vyžadují zařízení dodržující předpisy, můžou vyzvat uživatele na systémech macOS, iOS, Android a Linux, aby vybrali certifikát zařízení.",
- "excludeDevicePlatforms": "Vylučte platformy zařízení macOS, iOS, Android a Linux z těchto zásad.",
- "proceedAnywayDevicePlatforms": "Pokračujte s vybranou konfigurací. Až se bude kontrolovat, jestli zařízení dodržuje předpisy, uživatelům systémů macOS, iOS, Android a Linux se můžou zobrazit výzvy."
- },
- "blockCurrentUserPolicy": "Nezablokujte si přístup! Doporučujeme zásady použít nejdříve jen na malou část uživatelů, abyste mohli ověřit, že se zásady chovají, jak mají. Navíc doporučujeme vyloučit z těchto zásad alespoň jednoho správce. Díky tomu budete mít jistotu, že stále budete mít k zásadám přístup a v případě potřeby je budete moct aktualizovat. Zkontrolujte prosím uživatele a aplikace, na které to bude mít vliv.",
- "devicePlatformsReportOnlyPolicy": "Zásady v režimu pouze sestav, které vyžadují zařízení dodržující předpisy, můžou vyzvat uživatele na systémech macOS, iOS a Android, aby vybrali certifikát zařízení.",
- "excludeCurrentUserSelection": "Vyloučit aktuálního uživatele {0} z těchto zásad",
- "excludeDevicePlatforms": "Vylučte platformy zařízení macOS, iOS a Android z těchto zásad.",
- "proceedAnywayDevicePlatforms": "Pokračujte s vybranou konfigurací. Až se bude kontrolovat, jestli zařízení dodržuje předpisy, uživatelům systémů macOS, iOS a Android se můžou zobrazit výzvy.",
- "proceedAnywaySelection": "Rozumím tomu, že tyto zásady budou mít vliv na můj účet. Přesto chci pokračovat."
- },
- "ServicePrincipals": {
- "blockExchange": "Když vyberete Office 365 Exchange Online, bude to mít vliv i na aplikace, jako jsou OneDrive a Teams.",
- "blockPortal": "Nezablokujte si přístup! Tyto zásady mají vliv na portál Azure Portal. Než budete pokračovat, ujistěte se, že se vy nebo někdo jiný budete moct dostat zpátky na portál.",
- "blockPortalWithSession": "Nezablokujte si přístup! Tyto zásady mají vliv na portál Azure Portal. Než budete pokračovat, ujistěte se, že se na portál budete moct dostat zpět buď vy, nebo alespoň někdo jiný.
Pokud konfigurujete zásady trvalých relací prohlížeče, které fungují správně jen v případě, že je vybraná možnost Všechny cloudové aplikace, můžete toto upozornění ignorovat.",
- "blockSharePoint": "Když se vybere SharePoint Online, bude to mít vliv i na aplikace, jako jsou Microsoft Teams, Planner, Delve, MyAnalytics a Newsfeed.",
- "blockSkype": "Když vyberete Online Skype pro firmy, bude to mít vliv i na Microsoft Teams.",
- "includeOrExclude": "Můžete nakonfigurovat filtr aplikace pro hodnotu {0} nebo {1}, ale ne obojí.",
- "selectAppsNAForSP": "Jednotlivé cloudové aplikace nejde vybrat kvůli výběru {0} v přiřazení zásad.",
- "teamsBlocked": "Když se do zásad zahrnou aplikace, jako jsou SharePoint Online a Exchange Online, bude to mít vliv i na Microsoft Teams."
- },
- "Users": {
- "blockAllUsers": "Nezablokujte si přístup! Tyto zásady budou mít vliv na všechny uživatele. Doporučujeme je nejdříve použít jen na malou část uživatelů, abyste mohli ověřit, že se zásady chovají, jak mají."
- }
- },
- "WhatIf": {
- "Device": {
- "AttributesGrid": {
- "aria": "Seznam atributů na zařízení použitých během přihlašování.",
- "infoBalloon": "Seznam atributů na zařízení použitých během přihlašování."
- }
- }
- },
- "advancedTabText": "Upřesnit",
- "allCloudAppsErrorBox": "Když se vybere oprávnění Požadovat změnu hesla, musí se vybrat i možnost Všechny cloudové aplikace.",
- "allDayCheckboxLabel": "Celý den",
- "allDevicePlatforms": "Libovolné zařízení",
- "allGuestUserInfoContent": "Zahrnuje hosty Azure AD B2B, ale ne hosty SharePoint B2B.",
- "allGuestUserLabel": "Všichni hosté a externí uživatelé",
- "allRiskLevelsOption": "Všechny úrovně rizika",
- "allTrustedLocationLabel": "Všechna důvěryhodná umístění",
- "allUserGroupSetSelectorLabel": "Vybrali se všichni uživatelé a skupiny",
- "allUsersString": "Všichni uživatelé",
- "and": "{0} A {1} ",
- "andWithGrouping": "({0}) A {1} ",
- "androidDisplayName": "Android",
- "anyCloudAppSelection": "Jakákoli cloudová aplikace",
- "appContextOptionInfoContent": "Požadovaná ověřovací značka",
- "appContextOptionLabel": "Požadovaná ověřovací značka (Preview)",
- "appContextUriPlaceholder": "Příklad: uri:contoso.com:level3",
- "appEnforceInfoBubble": "Omezení vynucená aplikací můžou vyžadovat další konfiguraci v cloudových aplikacích. Omezení budou platit jenom pro nové relace.",
- "appNotSetSeletorLabel": "0 vybraných aplikací",
- "applyConditionClientAppInfoBalloonContent": "Konfigurace klientských aplikací tak, aby se dané zásady používaly pro konkrétní klientské aplikace",
- "applyConditionDevicePlatformInfoBalloonContent": "Konfigurace platforem zařízení tak, aby se dané zásady používaly pro konkrétní platformy",
- "applyConditionDeviceStateInfoBalloonContent": "Konfigurace stavu zařízení tak, aby se dané zásady používaly pro konkrétní stavy zařízení",
- "applyConditionLocationInfoBalloonContent": "Konfigurace lokalit tak, aby se dané zásady používaly pro důvěryhodné nebo nedůvěryhodné lokality",
- "applyConditionSigninRiskInfoBalloonContent": "Konfigurace rizika přihlašování tak, aby se dané zásady používaly pro vybrané úrovně rizika",
- "applyConditionUserRiskInfoBalloonContent": "Konfigurace rizika uživatele tak, aby se dané zásady používaly pro vybrané úrovně rizika",
- "applyConditonLabel": "Konfigurovat",
- "ariaLabelPolicyDisabled": "Zásada je zakázána.",
- "ariaLabelPolicyEnabled": "Zásady jsou povolené",
- "ariaLabelPolicyReportOnly": "Zásady jsou v režimu pouze sestav.",
- "blockAccess": "Blokovat přístup",
- "builtInDirectoryRoleLabel": "Integrované role adresáře",
- "casCustomControlInfo": "Vlastní zásady se musí nakonfigurovat na portálu Cloud App Security. Pro doporučované aplikace tento ovládací prvek funguje okamžitě a je možné pro něj provést automatický onboarding do libovolné aplikace. Pro další informace o obou scénářích klikněte sem.",
- "casInfoBubble": "Tento ovládací prvek funguje v různých cloudových aplikacích.",
- "casPreconfiguredControlInfo": "Pro doporučované aplikace tento ovládací prvek funguje okamžitě a je možné pro něj provést automatický onboarding do libovolné aplikace. Pro další informace o obou scénářích klikněte sem.",
- "cert64DownloadCol": "Stáhnout certifikát base64",
- "cert64Name": "VpnBase64Cert",
- "certDownloadCol": "Stáhnout certifikát",
- "certDurationCol": "Vypršení platnosti",
- "certDurationStartCol": "Platné od",
- "certName": "VpnCert",
- "chooseApplicationsBladeSubtitle": "",
- "chooseApplicationsBladeTitle": "Volba aplikací",
- "chooseApplicationsCartSubitle": "",
- "chooseApplicationsCartTitle": "Zvolené aplikace",
- "chooseApplicationsEmpty": "Žádné aplikace",
- "chooseApplicationsNone": "Žádný",
- "chooseApplicationsNoneFound": "{0} se nám nepovedlo najít. Zkuste jiný název nebo ID.",
- "chooseApplicationsPlural": "{0}, počet dalších: {1}",
- "chooseApplicationsReAuthEverytimeInfo": "Hledáte svou aplikaci? Některé aplikace se nedají použít s řízením relace Vyžadovat opakované ověření – pokaždé.",
- "chooseApplicationsRemove": "Odebrat",
- "chooseApplicationsReturnedPlural": "Našel se tento počet aplikací: {0}",
- "chooseApplicationsReturnedSingular": "Našla se 1 aplikace.",
- "chooseApplicationsSearchBalloon": "Vyhledejte aplikaci tak, že zadáte její název nebo ID.",
- "chooseApplicationsSearchHint": "Hledat aplikace...",
- "chooseApplicationsSearchLabel": "Aplikace",
- "chooseApplicationsSearching": "Vyhledávání...",
- "chooseApplicationsSelect": "Vybrat",
- "chooseApplicationsSelected": "Vybrané",
- "chooseApplicationsSingular": "{0} a 1 další",
- "chooseApplicationsTooMany": "Více výsledků, než se dá zobrazit. Pomocí vyhledávacího pole prosím nastavte filtr.",
- "chooseLocationCorpnetItem": "Podniková síť",
- "chooseLocationSelectedLocationsLabel": "Vybraná umístění",
- "chooseLocationTrustedIpsItem": "Důvěryhodné IP adresy MFA",
- "chooseLocationsBladeSubtitle": "",
- "chooseLocationsBladeTitle": "Zvolte umístění",
- "chooseLocationsCartSubitle": "",
- "chooseLocationsCartTitle": "Zvolená umístění",
- "chooseLocationsEmpty": "Žádná umístění",
- "chooseLocationsExcludedSelectorTitle": "Vybrat",
- "chooseLocationsIncludedSelectorTitle": "Vybrat",
- "chooseLocationsNone": "Žádný",
- "chooseLocationsNoneFound": "{0} se nám nepovedlo najít. Zkuste jiný název nebo ID.",
- "chooseLocationsPlural": "{0}, počet dalších: {1}",
- "chooseLocationsRemove": "Odebrat",
- "chooseLocationsReturnedPlural": "Počet nalezených umístění: {0}",
- "chooseLocationsReturnedSingular": "Počet nalezených umístění: 1",
- "chooseLocationsSearchBalloon": "Vyhledejte umístění tak, že zadáte jeho název.",
- "chooseLocationsSearchHint": "Hledat v umístěních...",
- "chooseLocationsSearchLabel": "Umístění",
- "chooseLocationsSearching": "Vyhledávání...",
- "chooseLocationsSelect": "Vybrat",
- "chooseLocationsSelected": "Vybrané",
- "chooseLocationsSelectionBladeExcludedSelectorTitle": "Vybrat",
- "chooseLocationsSelectionBladeIncludedSelectorTitle": "Vybrat",
- "chooseLocationsSingular": "{0} a 1 další",
- "chooseLocationsTooMany": "Více výsledků, než se dá zobrazit. Pomocí vyhledávacího pole prosím nastavte filtr.",
- "claimProviderAddCommandText": "Nový vlastní ovládací prvek",
- "claimProviderAddNewBladeTitle": "Nový vlastní ovládací prvek",
- "claimProviderDeleteCommand": "Odstranit",
- "claimProviderDeleteDescription": "Opravdu chcete odstranit síť {0}? Tato akce je nevratná.",
- "claimProviderDeleteTitle": "Jste si jistí?",
- "claimProviderEditInfoText": "Zadejte JSON pro přizpůsobený ovládací prvek předaný poskytovatelem deklarací identit.",
- "claimProviderNotificationCreateDescription": "Vytváří se vlastní ovládací prvek s názvem {0}.",
- "claimProviderNotificationCreateFailedDescription": "Nepovedlo se vytvořit vlastní ovládací prvek {0}. Zkuste to prosím znovu později.",
- "claimProviderNotificationCreateFailedTitle": "Nepovedlo se vytvořit vlastní ovládací prvek",
- "claimProviderNotificationCreateSuccessDescription": "Vytvořil se vlastní ovládací prvek s názvem {0}.",
- "claimProviderNotificationCreateSuccessTitle": "Vytvořila se síť {0}",
- "claimProviderNotificationCreateTitle": "Vytváří se {0}",
- "claimProviderNotificationDeleteDescription": "Odstraňuje se vlastní ovládací prvek s názvem {0}.",
- "claimProviderNotificationDeleteFailedDescription": "Nepovedlo se odstranit vlastní ovládací prvek {0}. Zkuste to prosím znovu později.",
- "claimProviderNotificationDeleteFailedTitle": "Nepovedlo se odstranit vlastní ovládací prvek",
- "claimProviderNotificationDeleteSuccessDescription": "Odstranil se vlastní ovládací prvek s názvem {0}.",
- "claimProviderNotificationDeleteSuccessTitle": "Odstranila se síť {0}",
- "claimProviderNotificationDeleteTitle": "Odstraňuje se {0}.",
- "claimProviderNotificationUpdateDescription": "Aktualizuje se vlastní ovládací prvek s názvem {0}.",
- "claimProviderNotificationUpdateFailedDescription": "Nepovedlo se aktualizovat vlastní ovládací prvek {0}. Zkuste to prosím znovu později.",
- "claimProviderNotificationUpdateFailedTitle": "Nepovedlo se aktualizovat vlastní ovládací prvek",
- "claimProviderNotificationUpdateSuccessDescription": "Aktualizoval se vlastní ovládací prvek s názvem {0}.",
- "claimProviderNotificationUpdateSuccessTitle": "Aktualizovala se síť {0}",
- "claimProviderNotificationUpdateTitle": "Aktualizuje se {0}",
- "claimProviderValidationAppIdInvalid": "Hodnota AppId není platná. Zkontrolujte ji prosím a zkuste to znovu.",
- "claimProviderValidationClientIdMissing": "V datech chybí hodnota ClientId. Zkontrolujte ji prosím a zkuste to znovu.",
- "claimProviderValidationControlClaimsRequestedMissing": "V Control chybí hodnota ClaimsRequested. Zkontrolujte ji prosím a zkuste to znovu.",
- "claimProviderValidationControlClaimsRequestedTypeMissing": "V položce ClaimsRequested chybí hodnota Type. Zkontrolujte ji prosím a zkuste to znovu.",
- "claimProviderValidationControlIdAlreadyExists": "Hodnota Id pro Control už existuje. Zkontrolujte ji prosím a zkuste to znovu.",
- "claimProviderValidationControlIdMissing": "V Control chybí hodnota Id. Zkontrolujte ji prosím a zkuste to znovu.",
- "claimProviderValidationControlIdReferencedInExistingPolicy": "Hodnotu Id pro Control nejde odebrat, protože se na ni odkazují existující zásady. Nejdříve ji prosím odeberte z těchto zásad.",
- "claimProviderValidationControlIdTooManyControls": "Vlastnost Control má příliš mnoho ovládacích prvků. Zkontrolujte ji prosím a zkuste to znovu.",
- "claimProviderValidationControlIdValueReserved": "Hodnota Id pro Control je vyhrazené klíčové slovo, použijte prosím jiné ID.",
- "claimProviderValidationControlNameAlreadyExists": "Hodnota Name pro Control už existuje. Zkontrolujte ji prosím a zkuste to znovu.",
- "claimProviderValidationControlNameMissing": "V Control chybí hodnota Name. Zkontrolujte ji prosím a zkuste to znovu.",
- "claimProviderValidationControlsMissing": "V datech chybí hodnota Controls. Zkontrolujte ji prosím a zkuste to znovu.",
- "claimProviderValidationDiscoveryUrlMissing": "V datech chybí hodnota DiscoveryUrl. Zkontrolujte ji prosím a zkuste to znovu.",
- "claimProviderValidationInvalid": "Poskytnutá data nejsou platná. Zkontrolujte je prosím a zkuste to znovu.",
- "claimProviderValidationInvalidJsonDefinition": "Vlastní ovládací prvek se nepovedlo uložit. Zkontrolujte text JSON a zkuste to znovu.",
- "claimProviderValidationNameAlreadyExists": "Hodnota Name už existuje. Zkontrolujte ji prosím a zkuste to znovu.",
- "claimProviderValidationNameMissing": "V datech chybí hodnota Name. Zkontrolujte ji prosím a zkuste to znovu.",
- "claimProviderValidationUnknown": "Při ověřování poskytnutých dat došlo k neznámé chybě. Zkontrolujte je prosím a zkuste to znovu.",
- "claimProvidersNone": "Žádné vlastní ovládací prvky",
- "claimProvidersSearchPlaceholder": "Hledat ovládací prvky",
- "classicPoilcyFilterTitle": "Zobrazit",
- "classicPolicyAllPlatforms": "Všechny platformy",
- "classicPolicyClientAppBrowserAndNative": "Prohlížeč, mobilní aplikace a desktopoví klienti",
- "classicPolicyCloudAppTitle": "Cloudová aplikace",
- "classicPolicyControlAllow": "Povolit",
- "classicPolicyControlBlock": "Blokovat",
- "classicPolicyControlBlockWhenNotAtWork": "Zablokovat přístup mimo práci",
- "classicPolicyControlRequireCompliantDevice": "Vyžaduje zařízení, které splňuje požadavky.",
- "classicPolicyControlRequireDomainJoinedDevice": "Vyžaduje zařízení připojené k doméně.",
- "classicPolicyControlRequireMfa": "Vyžadovat vícefaktorové ověřování",
- "classicPolicyControlRequireMfaWhenNotAtWork": "Mimo práci vyžadovat vícefaktorové ověřování",
- "classicPolicyDeleteCommand": "Odstranit",
- "classicPolicyDeleteFailTitle": "Nepovedlo se odstranit klasické zásady",
- "classicPolicyDeleteInProgressTitle": "Odstraňují se klasické zásady",
- "classicPolicyDeleteSuccessTitle": "Klasické zásady se odstranily",
- "classicPolicyDetailBladeTitle": "Podrobnosti",
- "classicPolicyDisableCommand": "Zakázat",
- "classicPolicyDisableConfirmation": "Opravdu chcete zakázat zásady {0}? Tato akce je nevratná.",
- "classicPolicyDisableFailDescription": "Nepovedlo se zakázat zásady {0}.",
- "classicPolicyDisableFailTitle": "Nepovedlo se zakázat klasické zásady",
- "classicPolicyDisableInProgressDescription": "Zakazují se zásady {0}.",
- "classicPolicyDisableInProgressTitle": "Zakazují se klasické zásady",
- "classicPolicyDisableSuccessDescription": "Zásady {0} se úspěšně zakázaly.",
- "classicPolicyDisableSuccessTitle": "Klasické zásady se zakázaly",
- "classicPolicyEasSupportedPlatforms": "Podporované platformy protokolu Exchange ActiveSync",
- "classicPolicyEasUnsupportedPlatforms": "Nepodporované platformy protokolu Exchange ActiveSync",
- "classicPolicyExcludedPlatformsTitle": "Vyloučené platformy zařízení",
- "classicPolicyFilterAll": "Všechny zásady",
- "classicPolicyFilterDisabled": "Zakázané zásady",
- "classicPolicyFilterEnabled": "Povolené zásady",
- "classicPolicyIncludeExcludeMembersDescription": "Vyloučením skupin je možné provést migraci zásad rozdělenou do fází.",
- "classicPolicyIncludeExcludeMembersTitle": "Zahrnout nebo vyloučit skupiny",
- "classicPolicyIncludedPlatformsTitle": "Zahrnuté platformy zařízení",
- "classicPolicyManualMigrationMessage": "Tyto zásady se musí migrovat ručně.",
- "classicPolicyMigrateCommand": "Migrovat",
- "classicPolicyMigrateConfirmation": "Opravdu chcete migrovat zásady {0}? Tyto zásady se dají migrovat jen jednou.",
- "classicPolicyMigrateFailDescription": "Nepovedlo se migrovat zásady {0}.",
- "classicPolicyMigrateFailTitle": "Nepovedlo se migrovat klasické zásady",
- "classicPolicyMigrateInProgressDescription": "Migrují se zásady {0}.",
- "classicPolicyMigrateInProgressTitle": "Migrují se klasické zásady",
- "classicPolicyMigrateRecommendText": "Doporučení: Proveďte migraci na nové zásady portálu Azure Portal.",
- "classicPolicyMigrateSuccessTitle": "Klasické zásady se úspěšně migrovaly",
- "classicPolicyMigratedSuccessDescription": "Tyto klasické zásady se teď dají spravovat v části Zásady.",
- "classicPolicyMigratedSuccessDescriptionMultiple": "Tyto klasické zásady se migrovaly jako následující počet nových zásad: {0}. Nové zásady se dají spravovat v části Zásady.",
- "classicPolicyNoEditPermissionMsg": "Nemáte oprávnění upravovat tyto zásady. To můžou dělat jen globální správci a správci zabezpečení. Další informace získáte tady.",
- "classicPolicySaveFailDescription": "Nepovedlo se uložit zásady {0}.",
- "classicPolicySaveFailTitle": "Nepovedlo se uložit klasické zásady",
- "classicPolicySaveInProgressDescription": "Ukládají se zásady {0}.",
- "classicPolicySaveInProgressTitle": "Ukládají se klasické zásady",
- "classicPolicySaveSuccessDescription": "Zásady {0} se úspěšně uložily.",
- "classicPolicySaveSuccessTitle": "Klasické zásady se uložily",
- "clientAppBladeLegacyInfoBanner": "Starší verze ověřování se v tuto chvíli nepodporuje.",
- "clientAppBladeLegacyUpsellBanner": "Zablokovat nepodporované klientské aplikace (Preview)",
- "clientAppBladeTitle": "Klientské aplikace",
- "clientAppDescription": "Vyberte klientské aplikace, na které se budou tyto zásady vztahovat.",
- "clientAppExchangeActiveSync": "Exchange ActiveSync",
- "clientAppExchangeDisabledInfo": "Exchange ActiveSync je k dispozici v případě, že Exchange Online je vybraný jako jediná cloudová aplikace. Kliknutím získáte další informace.",
- "clientAppExchangeWarning": "Exchange ActiveSync v tuto chvíli nepodporuje všechny ostatní podmínky.",
- "clientAppLearnMore": "Umožňuje nastavit přístup uživatelů na cílení na konkrétní klientské aplikace, které nepoužívají moderní ověřování.",
- "clientAppLegacyHeader": "Starší verze klientů ověřování",
- "clientAppMobileDesktop": "Mobilní aplikace a desktopoví klienti",
- "clientAppModernHeader": "Moderní klienti ověřování",
- "clientAppOnlySupportedPlatforms": "Použít zásady jenom na podporovaných platformách",
- "clientAppSelectSpecificClientApps": "Vyberte klientské aplikace.",
- "clientAppV2BladeTitle": "Klientské aplikace (Preview)",
- "clientAppWebBrowser": "Prohlížeč",
- "clientAppsSelectedLabel": "Zahrnuto: {0}",
- "clientTypeBrowser": "Prohlížeč",
- "clientTypeEas": "Klienti Exchange ActiveSync",
- "clientTypeEasInfo": "Jen klienti Exchange ActiveSync, kteří používají starší verzi ověřování",
- "clientTypeModernAuth": "Klienti moderního ověřování",
- "clientTypeOtherClients": "Ostatní klienti",
- "clientTypeOtherClientsInfo": "Mezi to patří starší klienti Office a další poštovní protokoly (POP, IMAP, SMTP apod.). [Další informace][1]\n[1]: https://aka.ms/caclientapps\n",
- "cloudAppCountDiffBannerText": "Cloudové aplikace {0} nakonfigurované v těchto zásadách se odstranily z adresáře, ale na ostatní aplikace v zásadách to nemá žádný vliv. Až v zásadách příště aktualizujete oddíl aplikací, odstraněné aplikace se z nich automaticky odeberou.",
- "cloudAppsSelectionBladeAllMicrosoftApps": "Všechny aplikace Microsoftu",
- "cloudAppsSelectionExcludeAllMicrosoftClients": "Povolit desktopové a mobilní aplikace a aplikace Microsoft Cloudu (Preview)",
- "cloudappsSelectionBladeAllCloudapps": "Všechny cloudové aplikace",
- "cloudappsSelectionBladeExcludeDescription": "Vyberte cloudové aplikace, které se mají z této zásady vyloučit.",
- "cloudappsSelectionBladeExcludedSelectorTitle": "Vybrat vyloučené cloudové aplikace",
- "cloudappsSelectionBladeIncludeDescription": "Vyberte cloudové aplikace, na které se budou vztahovat tyto zásady.",
- "cloudappsSelectionBladeIncludedSelectorTitle": "Vybrat",
- "cloudappsSelectionBladeSelectedCloudapps": "Vybrat aplikace",
- "cloudappsSelectorInfoBallonText": "Služby, ke kterým uživatel přistupuje, aby mohl pracovat. Třeba Salesforce.",
- "cloudappsSelectorUserPlural": "Počet aplikací: {0}",
- "cloudappsSelectorUserSingular": "Počet aplikací: 1",
- "conditionLabelMulti": "Počet vybraných podmínek: {0}",
- "conditionLabelOne": "Počet vybraných podmínek: 1",
- "conditionalAccessBladeTitle": "Podmíněný přístup",
- "conditionsNotSelectedLabel": "Nenakonfigurováno",
- "conditionsReqPwSet": "Některé možnosti nejsou k dispozici, protože je v tuto chvíli vybrané oprávnění Požadovat změnu hesla.",
- "configureCasText": "Konfigurovat Cloud App Security",
- "configureCustomControlsText": "Nakonfigurovat vlastní zásady",
- "controlLabelMulti": "Počet vybraných ovládacích prvků: {0}",
- "controlLabelOne": "Počet vybraných ovládacích prvků: 1",
- "controlValidatorText": "Vyberte prosím aspoň jeden ovládací prvek.",
- "controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
- "controlsDeviceComplianceInfoBubble": "Zařízení musí dodržovat předpisy Intune. Pokud je nedodržuje, zobrazí se uživateli výzva, aby zařízení nastavil tak, aby předpisy dodržovalo.",
- "controlsDomainJoinedInfoBubble": "Zařízení musí být připojené službou Hybrid Azure AD Join.",
- "controlsMamInfoBubble": "Zařízení musí používat tyto aplikace schválené klientem.",
- "controlsMfaInfoBubble": "Uživatelé musí splnit další požadavky na zabezpečení, třeba telefonní hovor nebo textovou zprávu.",
- "controlsOrAndInfoBubble": "ControlsOrAndInfoBubble",
- "controlsRequireCompliantAppInfoBubble": "Zařízení musí používat aplikace chráněné zásadami.",
- "controlsRequirePasswordResetInfoBubble": "Umožňuje požadovat změnu hesla, aby se snížilo riziko uživatele. Tato možnost navíc vyžaduje vícefaktorové ověřování. Jiné ovládací prvky se nedají použít.",
- "countriesRadiobuttonInfoBalloonContent": "Země nebo oblast, ze které pochází přihlášení, je určená IP adresou uživatele.",
- "createNewVpnCert": "Nový certifikát",
- "createdTimeLabel": "Čas vytvoření",
- "customRoleLabel": "Vlastní role (nepodporuje se)",
- "dateRangeTypeLabel": "Rozsah dat",
- "daysOfWeekPlaceholderText": "Filtrovat dny v týdnu",
- "daysOfWeekTypeLabel": "Dny v týdnu",
- "deletePolicyNoLicenseText": "Tyto zásady teď můžete odstranit. Jakmile se odstraní, nebudete je moct vytvořit znovu, dokud nebudete mít potřebné licence.",
- "descriptionContentForControlsAndOr": "Pro více ovládacích prvků",
- "devicePlatform": "Platforma zařízení",
- "devicePlatformConditionHelpDescription": "Zavede zásady pro vybrané platformy zařízení.\n[Další informace][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2044750",
- "devicePlatformInclude": "Zahrnuto: {0}",
- "devicePlatformIncludeExclude": "Vyloučeno: {0} a {1}",
- "devicePlatformNoSelectionError": "Výběr platforem zařízení vyžaduje, aby se vybrala alespoň jedna podpoložka.",
- "devicePlatformsNone": "Žádný",
- "deviceSelectionBladeExcludeDescription": "Vyberte platformy, které se mají z této zásady vyloučit.",
- "deviceSelectionBladeIncludeDescription": "Vyberte platformy zařízení, které se mají zahrnout do těchto zásad.",
- "deviceStateAll": "Všechny stavy zařízení",
- "deviceStateCompliant": "Zařízení označené jako kompatibilní",
- "deviceStateCompliantInfoContent": "Zařízení kompatibilní s Intune nebudou součástí vyhodnocování těchto zásad, takže pokud zásady blokují třeba přístup, zablokují ho pro všechna zařízení kromě těch, která jsou kompatibilní s Intune.",
- "deviceStateConditionConfigureInfoContent": "Nakonfigurovat zásady na základě stavu zařízení",
- "deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Hybrid Azure AD joined' or 'marked as compliant'.\n '{0}' has been deprecated. Use '{1}' instead.",
- "deviceStateConditionSelectorLabel": "Stav zařízení (Preview)",
- "deviceStateDomainJoined": "Zařízení je připojené službou Hybrid Azure AD Join",
- "deviceStateDomainJoinedInfoContent": "Zařízení připojená službou Hybrid Azure AD Join nebudou součástí vyhodnocování těchto zásad, takže pokud zásady blokují třeba přístup, zablokují ho pro všechna zařízení kromě těch, která jsou připojená službou Hybrid Azure AD Join.",
- "deviceStateDomainJoinedInfoLinkText": "Další informace",
- "deviceStateExcludeDescription": "Vyberte podmínku stavu zařízení, na základě které se zařízení vyloučí ze zásad.",
- "deviceStateIncludeAndExcludeOneLabel": "{0} a vyloučit {1}",
- "deviceStateIncludeAndExcludeTwoLabel": "{0} a vyloučit {1}, {2}",
- "directoryRoleInfoContent": "Přiřadit zásady k integrovaným rolím adresáře",
- "directoryRolesLabel": "Role adresáře",
- "discardbutton": "Zahodit",
- "downloadDefaultFileName": "Rozsahy IP adres",
- "downloadExampleFileName": "Příklad",
- "downloadExampleHeader": "Toto je ukázkový soubor s ukázkami typů dat, které se dají přijmout. Řádky, které začínají znakem #, se budou ignorovat.",
- "endDatePickerLabel": "Končí",
- "endTimePickerLabel": "Koncový čas",
- "enterCountryText": "IP adresa a země se vyhodnocují v páru. Vyberte zemi.",
- "enterIpText": "IP adresa a země se vyhodnocují v páru. Zadejte IP adresu.",
- "enterUserText": "Nevybral se žádný uživatel. Vyberte nějakého uživatele.",
- "evaluationResult": "Výsledek hodnocení",
- "exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
- "exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Protokol Exchange ActiveSync jen s podporovanými platformami",
- "excludeAllTrustedLocationSelectorText": "všechna důvěryhodná umístění",
- "featureRequiresP2": "Tato funkce vyžaduje licenci Azure AD Premium 2.",
- "friday": "Pátek",
- "grantControls": "Udělit řízení",
- "gridNetworkTrusted": "Důvěryhodná",
- "gridPolicyCreatedDateTime": "Datum vytvoření",
- "gridPolicyEnabled": "Povoleno",
- "gridPolicyModifiedDateTime": "Datum změny",
- "gridPolicyName": "Název zásady",
- "gridPolicyState": "Stav",
- "groupSelectionBladeExcludeDescription": "Vyberte skupiny, které se mají z těchto zásad vyloučit.",
- "groupSelectionBladeExcludedSelectorTitle": "Vybrat vyloučené skupiny",
- "groupSelectionBladeSelect": "Výběr skupin",
- "groupSelectorInfoBallonText": "Skupiny v adresáři, pro které platí tyto zásady. Příklad: Pilotní skupina.",
- "groupsSelectionBladeTitle": "Skupiny",
- "helpCommonScenariosText": "Zajímají vás obvyklé scénáře?",
- "helpCondition1": "Když je libovolný uživatel mimo síť společnosti",
- "helpCondition2": "Když se přihlásí uživatelé ze skupiny Manažeři",
- "helpConditionsTitle": "Podmínky",
- "helpControl1": "Musí se přihlašovat pomocí vícefaktorového ověřování.",
- "helpControl2": "Musí být na zařízení, které dodržuje předpisy Intune nebo na zařízení připojeném do domény.",
- "helpControlsTitle": "Ovládací prvky",
- "helpIntroText": "Podmíněný přístup umožňuje vynucovat specifické požadavky na přístup na základě splnění konkrétních podmínek. Podívejme se na pár příkladů.",
- "helpIntroTitle": "Co je Podmíněný přístup?",
- "helpLearnMoreText": "Zajímají vás další informace o Podmíněném přístupu?",
- "helpStartStep1": "Vytvořte svoje první zásady tak, že kliknete na + Nové zásady.",
- "helpStartStep2": "Zadejte ovládací prvky a podmínky zásad",
- "helpStartStep3": "Až to budete mít, nezapomeňte na vytvoření a povolení zásady.",
- "helpStartTitle": "Začínáme",
- "highRisk": "Vysoká",
- "includeAndExcludeAppsTextFormat": "Zahrnout: {0}. Vyloučit: {1}",
- "includeAppsTextFormat": "Zahrnout: {0}",
- "includeUnknownAreasCheckboxInfoBalloonContent": "Neznámé oblasti jsou IP adresy, které nejdou namapovat na zemi nebo oblast.",
- "includeUnknownAreasCheckboxLabel": "Včetně neznámých oblastí",
- "infoCommandLabel": "Informace",
- "invalidCertDuration": "Neplatná doba platnosti certifikátu",
- "invalidIpAddress": "Hodnotou musí být platná IP adresa.",
- "invalidUriErrorMsg": "Zadejte prosím platný identifikátor URI. Příklad: uri:contoso.com:acr ",
- "iosDisplayName": "iOS",
- "linuxDisplayName": "Linux",
- "linuxDisplayNamePreview": "Linux (Preview)",
- "loadAll": "Načíst vše",
- "loading": "Načítá se...",
- "locationConfigureNamedLocationsText": "Konfigurace všech důvěryhodných umístění",
- "locationConfigureNamedLocationsUri": "{0}/usermanagement/mfasettings.aspx?tenantid={1}&culture={2}",
- "locationNameTooLongError": "Název umístění je moc dlouhý. Maximum je 256 znaků.",
- "locationSelectionBladeExcludeDescription": "Vyberte místa, která se mají z této zásady vyloučit.",
- "locationSelectionBladeIncludeDescription": "Vyberte umístění, která se zahrnou do těchto zásad.",
- "locationsAllLocationsLabel": "Libovolné umístění",
- "locationsAllNamedLocationsLabel": "Všechny důvěryhodné IP adresy",
- "locationsAllPrivateLinksLabel": "Všechna privátní propojení v mém tenantovi",
- "locationsIncludeExcludeLabel": "{0} a vyloučit všechny důvěryhodné IP adresy",
- "locationsSelectedPrivateLinksLabel": "Vybraná privátní propojení",
- "lowRisk": "Nízká",
- "macOsDisplayName": "macOS",
- "managePoliciesLicenseText": "Pokud chcete spravovat zásady Podmíněného přístupu, vaše organizace potřebuje Azure AD Premium P1 nebo P2.",
- "markAsTrustedCheckboxInfoBalloonContent": "Přihlášení z důvěryhodného umístění snižuje riziko přihlášení uživatele. Toto umístění jako důvěryhodné označte jenom tehdy, pokud víte, že zadané rozsahy IP adres jsou zřízené a důvěryhodné ve vaší organizaci.",
- "markAsTrustedCheckboxLabel": "Označit jako důvěryhodné umístění",
- "mediumRisk": "Střední",
- "memberSelectionCommandRemove": "Odebrat",
- "menuItemClaimProviderControls": "Vlastní ovládací prvky (Preview)",
- "menuItemClassicPolicies": "Klasické zásady",
- "menuItemInsightsAndReporting": "Přehledy a generování sestav",
- "menuItemManage": "Spravovat",
- "menuItemNamedLocationsPreview": "Pojmenovaná umístění (Preview)",
- "menuItemNamedNetworks": "Pojmenovaná umístění",
- "menuItemPolicies": "Zásady",
- "menuItemTermsOfUse": "Podmínky použití",
- "modifiedTimeLabel": "Čas změny",
- "monday": "Pondělí",
- "nameLabel": "Název",
- "namedLocationCountryInfoBanner": "Na země/oblasti se mapují jen IPv4 adresy. IPv6 adresy se zahrnují do neznámých zemí/oblastí.",
- "namedLocationTypeCountry": "Země nebo oblasti",
- "namedLocationTypeLabel": "Definovat umístění pomocí:",
- "namedLocationUpsellBanner": "Toto zobrazení je zastaralé. Přejděte do nového a vylepšeného zobrazení Pojmenovaná umístění.",
- "namedLocationsHelpDescription": "Pojmenovaná umístění se používají v sestavách zabezpečení, aby se snížil počet falešně pozitivních výsledků, a v zásadách Podmíněného přístupu Azure AD.\n[Další informace][1]\n[1]: https://aka.ms/namedlocationupdate",
- "namedNetworkAddIpRanges": "Přidat nový rozsah IP adres (např.: 40.77.182.32/27)",
- "namedNetworkCountryNeeded": "Je třeba vybrat aspoň jednu zemi.",
- "namedNetworkDeleteCommand": "Odstranit",
- "namedNetworkDeleteDescription": "Opravdu chcete odstranit síť {0}? Tato akce je nevratná.",
- "namedNetworkDeleteTitle": "Jste si jistí?",
- "namedNetworkDownloadIpRange": "Stáhnout",
- "namedNetworkInvalidRange": "Hodnotou musí být platný rozsah IP adres.",
- "namedNetworkIpRangeNeeded": "Potřebujete aspoň jeden platný rozsah IP adres.",
- "namedNetworkIpRangesDescriptionContent": "Nakonfigurujte rozsahy IP adres vaší organizace.",
- "namedNetworkIpRangesTab": "Rozsahy IP adres",
- "namedNetworkListAdd": "Nové umístění",
- "namedNetworkListConfigureTrustedIps": "Konfigurovat důvěryhodné IP adresy MFA",
- "namedNetworkNameDescription": "Příklad: Pobočka Pardubice",
- "namedNetworkNameInvalid": "Zadaný název není platný.",
- "namedNetworkNameRequired": "Pro toto umístění musíte zadat název.",
- "namedNetworkNoIpRanges": "Žádné rozsahy IP adres",
- "namedNetworkNotificationCreateDescription": "Vytváří se umístění s názvem {0}.",
- "namedNetworkNotificationCreateFailedDescription": "Umístění {0} se nepovedlo vytvořit. Zkuste to prosím znovu později.",
- "namedNetworkNotificationCreateFailedTitle": "Nepovedlo se vytvořit umístění",
- "namedNetworkNotificationCreateSuccessDescription": "Umístění s názvem {0} se vytvořilo.",
- "namedNetworkNotificationCreateSuccessTitle": "Vytvořila se síť {0}",
- "namedNetworkNotificationCreateTitle": "Vytváří se {0}",
- "namedNetworkNotificationDeleteDescription": "Odstraňuje se umístění s názvem {0}.",
- "namedNetworkNotificationDeleteFailedDescription": "Umístění {0} se nepovedlo odstranit. Zkuste to prosím znovu později.",
- "namedNetworkNotificationDeleteFailedTitle": "Nepovedlo se odstranit umístění",
- "namedNetworkNotificationDeleteSuccessDescription": "Umístění s názvem {0} se odstranilo.",
- "namedNetworkNotificationDeleteSuccessTitle": "Odstranila se síť {0}",
- "namedNetworkNotificationDeleteTitle": "Odstraňuje se {0}.",
- "namedNetworkNotificationUpdateDescription": "Aktualizuje se umístění s názvem {0}.",
- "namedNetworkNotificationUpdateFailedDescription": "Umístění {0} se nepovedlo aktualizovat. Zkuste to prosím znovu později.",
- "namedNetworkNotificationUpdateFailedTitle": "Nepovedlo se aktualizovat umístění",
- "namedNetworkNotificationUpdateSuccessDescription": "Umístění s názvem {0} se aktualizovalo.",
- "namedNetworkNotificationUpdateSuccessTitle": "Aktualizovala se síť {0}",
- "namedNetworkNotificationUpdateTitle": "Aktualizuje se {0}",
- "namedNetworkSearchPlaceholder": "Hledat v umístěních",
- "namedNetworkUploadFailedDescription": "Při parsování zadaného souboru došlo k chybě. Ujistěte se prosím, že odesíláte textový soubor, ve kterém má každý řádek formát CIDR.",
- "namedNetworkUploadFailedTitle": "Nepodařilo se analyzovat {0}.",
- "namedNetworkUploadInProgressDescription": "Probíhá pokus o parsování platných hodnot CIDR z {0}.",
- "namedNetworkUploadInProgressTitle": "Parsování souboru {0}",
- "namedNetworkUploadInvalidDescription": "Soubor {0} je buď moc velký, nebo nemá platný formát.",
- "namedNetworkUploadInvalidTitle": "Soubor {0} není platný",
- "namedNetworkUploadIpRange": "Nahrát",
- "namedNetworkUploadSuccessDescription": "Analyzoval se tento počet řádků: {0}. Tento počet z nich měl špatný formát: {1}. Tento počet se přeskočil: {2}",
- "namedNetworkUploadSuccessTitle": "Parsování souboru {0} se dokončilo",
- "namedNetworksAdd": "Nové pojmenované umístění",
- "namedNetworksConditionHelpDescription": "Umožňuje řídit přístup uživatelů na základě fyzické polohy.\n[Další informace][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
- "namedNetworksExcludeLabel": "Vyloučeno: {0} a {1}",
- "namedNetworksHelpDescription": "Pojmenovaná umístění se používají v sestavách zabezpečení, aby se snížil počet falešně pozitivních výsledků, a v zásadách Podmíněného přístupu Azure AD.\n[Další informace][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
- "namedNetworksIncludeLabel": "Zahrnuto: {0}",
- "namedNetworksNone": "Nenašla se žádná pojmenovaná umístění.",
- "namedNetworksTitle": "Konfigurovat místa",
- "namednetworkExceedingSizeErrorBladeTitle": "Podrobnosti o chybě",
- "namednetworkExceedingSizeErrorDetailText": "Podrobnosti zobrazíte kliknutím sem.",
- "namednetworkExceedingSizeErrorMessage": "Překročili jste maximální povolené úložiště pro pojmenovaná umístění. Zkuste to znovu s kratším seznamem. Další podrobnosti získáte, když kliknete sem.",
- "newCertName": "nový certifikát",
- "noPolicyRowMessage": "Žádné zásady",
- "noSPSelected": "Žádný vybraný objekt služby",
- "noUpdatePermissionMessage": "K aktualizaci těchto nastavení nemáte oprávnění. Pokud chcete získat přístup, obraťte se prosím na globálního správce.",
- "noUserSelected": "Nevybral se žádný uživatel.",
- "noneRisk": "Žádné riziko",
- "office365Description": "Mezi tyto aplikace patří Microsoft Flow, Microsoft Forms, Microsoft Teams, Office 365 Exchange Online, Office 365 SharePoint Online, Office 365 Yammer a další.",
- "office365InfoBox": "Nejméně jedna vybraná aplikace je součástí Office 365. Doporučujeme zásady nastavit přímo pro aplikaci Office 365.",
- "oneUserSelected": "Vybral se 1 uživatel.",
- "onlyGlobalAdminsCanSaveThisPolicyConfig": "Tyto zásady můžou uložit jen globální správci.",
- "or": "{0} NEBO {1} ",
- "pickerDoneCommand": "Hotovo",
- "policiesBladeAdPremiumUpsellBannerText": "Se službou Azure AD Premium můžete vytvářet své vlastní zásady s cílením na konkrétní podmínky, třeba Cloudové aplikace, Riziko přihlášení a Platformy zařízení.",
- "policiesBladeTitle": "Zásady",
- "policiesBladeTitleWithAppName": "Zásady: {0}",
- "policiesDisabledBannerText": "Pro aplikace s propojeným atributem registrace jsou vytváření a úpravy zásady zakázané.",
- "policiesHitMaxLimitStatusBarMessage": "Pro tohoto tenanta jste dosáhli maximálního počtu zásad. Než vytvoříte další zásady, některé prosím odstraňte.",
- "policyAssignmentsSection": "Přiřazení",
- "policyBlockAllInfoBox": "Nakonfigurovaná zásada zablokuje všechny uživatele, takže se nepodporuje. Zkontrolujte přiřazení a kontrolní mechanismy. Pokud chcete tuto zásadu uložit, vylučte aktuálního uživatele {0}.",
- "policyCloudAppsDisplayTextAllApp": "Všechny aplikace",
- "policyCloudAppsLabel": "Cloudové aplikace",
- "policyConditionClientAppDescription": "Software, který uživatel používá pro přístup ke cloudové aplikaci. Třeba prohlížeč.",
- "policyConditionClientAppV2Description": "Software, který uživatel používá pro přístup ke cloudové aplikaci. Třeba prohlížeč.",
- "policyConditionDevicePlatform": "Platformy zařízení",
- "policyConditionDevicePlatformDescription": "Platforma, ze které se uživatel přihlašuje. Třeba iOS.",
- "policyConditionLocation": "Umístění",
- "policyConditionLocationDescription": "Lokalita, ze které se uživatel přihlašuje (určuje se podle rozsahu IP adres)",
- "policyConditionSigninRisk": "Riziko přihlášení",
- "policyConditionSigninRiskDescription": "Pravděpodobnost, že se přihlašuje někdo jiný než daný uživatel. Úroveň rizika může být vysoká, střední nebo nízká. Vyžaduje licenci Azure AD Premium 2.",
- "policyConditionUserRisk": "Riziko uživatele",
- "policyConditionUserRiskDescription": "Umožňuje nakonfigurovat úrovně rizika uživatelů potřebné k vynucování zásad.",
- "policyConditioniClientApp": "Klientské aplikace",
- "policyConditioniClientAppV2": "Klientské aplikace (Preview)",
- "policyControlAllowAccessDisplayedName": "Udělit přístup",
- "policyControlAuthenticationStrengthDisplayedName": "Vyžadovat sílu ověřování (Preview)",
- "policyControlBladeTitle": "Udělení",
- "policyControlBlockAccessDisplayedName": "Blokovat přístup",
- "policyControlCompliantDeviceDisplayedName": "Vyžadovat, aby zařízení bylo označené jako vyhovující",
- "policyControlContentDescription": "Umožňuje nastavit vynucování přístupu a blokovat nebo udělovat přístup.",
- "policyControlInfoBallonText": "Zablokujte přístup nebo vyberte další požadavky, které je třeba splnit pro povolení přístupu.",
- "policyControlMfaChallengeDisplayedName": "Vyžadovat vícefaktorové ověřování",
- "policyControlRequireCompliantAppDisplayedName": "Vyžadovat zásady ochrany aplikací",
- "policyControlRequireDomainJoinedDisplayedName": "Vyžadovat zařízení připojené službou Hybrid Azure AD Join",
- "policyControlRequireMamDisplayedName": "Vyžaduje se klientem schválená aplikace.",
- "policyControlRequiredPasswordChangeDisplayedName": "Požadovat změnu hesla",
- "policyControlSelectAuthStrength": "Vyžadovat sílu ověřování",
- "policyControlsNoControlsSelected": "0 vybraných ovládacích prvků",
- "policyControlsSection": "Ovládací prvky přístupu",
- "policyCreatBladeTitle": "Nový",
- "policyCreateButton": "Vytvořit",
- "policyCreateFailedMessage": "Chyba: {0}",
- "policyCreateFailedTitle": "Nepovedlo se vytvořit zásady {0}",
- "policyCreateInProgressTitle": "Vytváří se {0}",
- "policyCreateSuccessMessage": "Zásady {0} se úspěšně vytvořily. Pokud máte možnost Povolit zásadu nastavenou na Zapnuto, zásady se za několik minut povolí.",
- "policyCreateSuccessTitle": "Úspěšně se vytvořily zásady {0}",
- "policyDeleteConfirmation": "Opravdu chcete odstranit síť {0}? Tato akce je nevratná.",
- "policyDeleteFailTitle": "{0} se nepovedlo odstranit.",
- "policyDeleteInProgressTitle": "Odstraňuje se {0}.",
- "policyDeleteSuccessTitle": "Branding {0} se úspěšně odstranil.",
- "policyEnforceLabel": "Povolit zásadu",
- "policyErrorCannotSetSigninRisk": "Nemáte oprávnění ukládat zásady s rizikovým stavem přihlášení.",
- "policyErrorNoPermission": "Nemáte oprávnění ukládat zásady. Obraťte se na svého globálního správce.",
- "policyErrorUnknown": "Stala se nějaká chyba, zkuste to prosím později.",
- "policyFallbackWarningMessage": "V MS Graphu nebyla vytvořena nebo aktualizována položka {0}, a proto se použila náhradní funkce AD Graph. Prověřte prosím uvedený scénář, protože při volání koncového bodu pro MS Graph s největší pravděpodobností došlo k chybě způsobené nekompatibilní podmínkou.",
- "policyFallbackWarningTitle": "Vytváření nebo aktualizace {0} bylo částečně úspěšné",
- "policyNameCannotBeEmpty": "Název zásad nemůže být prázdný.",
- "policyNameDevice": "Zásady zařízení",
- "policyNameFormat": "[{0}] {1}",
- "policyNameMam": "Zásady správy mobilních aplikací",
- "policyNameMfaLocation": "Zásady MFA a polohy",
- "policyNamePlaceholderText": "Příklad: Zásady aplikace pro dodržování předpisů zařízením",
- "policyNameTooLongError": "Název zásad je moc dlouhý. Maximum je 256 znaků.",
- "policyOff": "Vypnuté",
- "policyOn": "Zapnuté",
- "policyReportOnly": "Pouze sestavy",
- "policyReviewSection": "Zkontrolovat",
- "policySaveButton": "Uložit",
- "policyStatusIconDescription": "Zásady jsou povolené",
- "policyStatusIconEnabled": "Ikona povoleného stavu",
- "policyTemplateName1": "Pro přístup k aplikaci {0} z prohlížeče použít omezení vynucená aplikací",
- "policyTemplateName2": "Povolit přístup k aplikaci {0} jenom ze spravovaných zařízení",
- "policyTemplateName3": "Zásady migrované z nastavení nepřetržitého vyhodnocování přístupu",
- "policyTriggerRiskSpecific": "Zadejte konkrétní úroveň rizika",
- "policyTriggersInfoBalloonText": "Podmínky, které definují, kdy se zásady použijí. Třeba lokalita.",
- "policyTriggersNoConditionsSelected": "0 vybraných podmínek",
- "policyTriggersSelectorLabel": "Podmínky",
- "policyUpdateFailedMessage": "Chyba: {0}",
- "policyUpdateFailedTitle": "Aplikaci {0} se nepodařilo aktualizovat.",
- "policyUpdateInProgressTitle": "Aktualizuje se {0}.",
- "policyUpdateSuccessMessage": "Zásada {0} se úspěšně aktualizovala. Povolí se za několik minut, pokud máte možnost Povolit zásadu nastavenou na Zapnuto.",
- "policyUpdateSuccessTitle": "Aplikace {0} byla úspěšně aktualizována.",
- "primaryCol": "Primární",
- "privateLinkLabel": "Azure AD Private Link",
- "reportOnlyInfoBox": "Režim pouze sestav: Zásady se vyhodnocují a protokolují při přihlašování, ale na uživatele nemají vliv.",
- "requireAllControlsText": "Vyžadovat všechny vybrané ovládací prvky",
- "requireCompliantDevice": "Vyžaduje zařízení, které splňuje požadavky.",
- "requireDomainJoined": "Vyžadovat zařízení připojené k doméně",
- "requireMFA": "Vyžadovat vícefaktorové ověřování ",
- "requireOneControlText": "Vyžadovat jeden z vybraných ovládacích prvků",
- "resetFilters": "Resetovat filtry",
- "sPRequired": "Vyžaduje se objekt služby",
- "sPSelectorInfoBalloon": "Uživatel nebo objekt služby, který chcete otestovat",
- "saturday": "Sobota",
- "searchTextTooLongError": "Hledaný text je příliš dlouhý. Maximum je 256 znaků.",
- "securityDefaultsPolicyName": "Výchozí nastavení zabezpečení",
- "securityDefaultsTextMessage": "Aby bylo možné povolit zásady podmíněného přístupu, musí se zakázat výchozí nastavení zabezpečení.",
- "securityDefaultsWarningMessage": "Vypadá to, že se chystáte spravovat konfigurace zabezpečení organizace. Výborně! Abyste mohli povolit zásady podmíněného přístupu, musí se zakázat výchozí nastavení zabezpečení.",
- "selectDevicePlatforms": "Vybrat platformy zařízení",
- "selectNamedNetworksSubtitle": "",
- "selectNamedNetworksTitle": "Vybrat umístění",
- "selectedSP": "Vybraný objekt služby",
- "servicePrincipalDataGridAria": "Seznam dostupných objektů služby",
- "servicePrincipalDropDownLabel": "Na co se vztahují tyto zásady?",
- "servicePrincipalInfoBox": "Některé podmínky nejsou k dispozici kvůli výběru {0} v přiřazení zásad.",
- "servicePrincipalRadioAll": "Všechny vlastněné objekty služby",
- "servicePrincipalRadioSelect": "Vybrat objekty služby",
- "servicePrincipalSelectionsAria": "Mřížka vybraných objektů služby",
- "servicePrincipalSelectorAria": "Seznam vybraných objektů služby",
- "servicePrincipalSelectorMultiple": "Počet vybraných objektů služby: {0}",
- "servicePrincipalSelectorSingle": "1 vybraný objekt služby",
- "servicePrincipalSpecificInc": "Včetně konkrétních objektů služby",
- "servicePrincipals": "Objekty služby",
- "sessionControlBladeTitle": "Relace",
- "sessionControlDescriptionContent": "Umožňuje nastavit přístup podle ovládacích prvků relací, aby bylo možné omezit prostředí v konkrétních cloudových aplikacích.",
- "sessionControlDisableInfo": "Tento ovládací prvek funguje jen v podporovaných aplikacích. Jedinými cloudovými aplikacemi, které podporují omezení vynucená aplikací, jsou v tuto chvíli Office 365, Exchange Online a SharePoint Online. Další informace získáte kliknutím sem.",
- "sessionControlInfoBallonText": "Ovládací prvky relací umožňují používat v cloudové aplikaci omezené možnosti.",
- "sessionControls": "Ovládací prvky relací",
- "sessionControlsAppEnforcedLabel": "Používat omezení vynucená aplikací",
- "sessionControlsCasLabel": "Používat Řízení podmíněného přístupu k aplikacím",
- "sessionControlsSecureSignInLabel": "Vyžadovat vazbu tokenu",
- "sharepointAppName": "SharePoint",
- "signinRiskDescription": "Vyberte úroveň rizika přihlášení, na kterou se budou tyto zásady vztahovat.",
- "signinRiskInclude": "Zahrnuto: {0}",
- "signinRiskTriggerDescriptionContent": "Vyberte úroveň rizika přihlášení.",
- "singleTenantServicePrincipalInfoBallonText": "Zásady platí jenom pro instanční objekty jednoho tenanta vlastněné vaší organizací. Další informace získáte kliknutím sem. ",
- "specificSigninRiskLevelsOption": "Vyberte konkrétní úrovně rizika přihlášení.",
- "specificUsersExcluded": "konkrétní vyloučení uživatelé",
- "specificUsersIncluded": "Konkrétní zahrnutí uživatelé",
- "specificUsersIncludedAndExcluded": "Konkrétní zahrnutí nebo vyloučení uživatelé",
- "startDatePickerLabel": "Spuštění",
- "startFreeTrial": "Zahájit bezplatnou zkušební verzi",
- "startTimePickerLabel": "Počáteční čas",
- "sunday": "Neděle",
- "testButton": "What If",
- "thumbprintCol": "Miniatura",
- "thursday": "Čtvrtek",
- "timeConditionAllTimesLabel": "Kdykoli",
- "timeConditionIntroText": "Nakonfigurujte čas, po který bude tato zásada platit.",
- "timeConditionSelectorInfoBallonContent": "Kdy se uživatel přihlašuje. Například středa 9:00–17:00 SEČ.",
- "timeConditionSelectorLabel": "Čas (preview)",
- "timeConditionSpecificLabel": "Konkrétní časy",
- "timeSelectorAllTimesText": "Kdykoli",
- "timeSelectorSpecificTimesText": "Nakonfigurované konkrétní časy",
- "timeZoneDropdownInfoBalloonContent": "Vyberte časové pásmo, které definuje časový rozsah. Tato zásada platí pro uživatele ve všech časových pásmech. Například středa 9:00–17:00 pro jednoho uživatele by byla středa 10:00–18:00 pro uživatele v jiném časovém pásmu.",
- "timeZoneDropdownLabel": "Časové pásmo",
- "timeZoneDropdownPlaceholderText": "Vyberte časové pásmo.",
- "tooManyPoliciesDescription": "Momentálně se zobrazuje jenom prvních 50 zásad. Další se zobrazíte kliknutím sem.",
- "tooManyPoliciesTitle": "Našlo se více než 50 zásad",
- "trustedLocationStatusIconDescription": "Umístění je důvěryhodné.",
- "trustedLocationStatusIconEnabled": "Ikona stavu důvěryhodnosti",
- "tuesday": "Úterý",
- "uploadInBadState": "Zadaný soubor se nepovedlo nahrát.",
- "upsellAppsDescription": "U citlivých aplikací se bude vyžadovat vícefaktorové ověřování po celou dobu nebo jen při připojování z prostředí mimo firemní síť.",
- "upsellAppsTitle": "Zabezpečené aplikace",
- "upsellBannerText": "Abyste mohli použít tuto funkci, získejte bezplatnou zkušební verzi Premium.",
- "upsellDataDescription": "Pro přístup k prostředkům společnosti se bude vyžadovat, aby zařízení bylo označené jako vyhovující nebo připojené službou Hybrid Azure AD Join.",
- "upsellDataTitle": "Zabezpečená data",
- "upsellDescription": "Podmíněný přístup poskytuje možnosti řízení a ochranu, které potřebujete k udržování vašich firemních dat v zabezpečeném stavu, a zároveň dává vašim pracovníkům možnosti pro efektivní práci z libovolného zařízení. Můžete například omezit přístup z prostředí mimo firemní síť nebo povolit jen přístup ze zařízení, která splňují vaše zásady dodržování předpisů.",
- "upsellRiskDescription": "Při rizikových událostech zjištěných systémem strojového učení Microsoftu se bude vyžadovat vícefaktorové ověřování.",
- "upsellRiskTitle": "Ochrana před rizikem",
- "upsellTitle": "Podmíněný přístup",
- "upsellWhyTitle": "Proč používat Podmíněný přístup?",
- "userAppNoneOption": "Žádný",
- "userNamePlaceholderText": "Zadat uživatelské jméno",
- "userNotSetSeletorLabel": "0 vybraných uživatelů a skupin",
- "userOnlySelectionBladeExcludeDescription": "Vyberte uživatele, kteří se mají z této zásady vyloučit.",
- "userOrGroupSelectionCountDiffBannerText": "{0} nakonfigurované v těchto zásadách bylo odstraněno z adresáře, ale na ostatní uživatele a skupiny v zásadách to nemá žádný vliv. Až zásady aktualizujete příště, odstranění uživatelé nebo skupiny se automaticky odeberou.",
- "userOrSPNotSetSelectorLabel": "Počet vybraných identit uživatelů nebo úloh: 0",
- "userOrSPSelectionBladeTitle": "Identity uživatelů nebo úloh",
- "userOrSPSelectorInfoBallonText": "Identity v adresáři, na které se zásady vztahují, včetně uživatelů, skupin a objektů služeb",
- "userRequired": "Je vyžadován uživatel.",
- "userRiskErrorBox": "Když se vybere oprávnění Požadovat změnu hesla, musí se vybrat podmínka Riziko uživatele.",
- "userSPRequired": "Vyžaduje se uživatel nebo objekt služby.",
- "userSPSelectorTitle": "Identita uživatele nebo úlohy",
- "userSelectionBladeAllUsersAndGroups": "Všichni uživatelé a skupiny",
- "userSelectionBladeExcludeDescription": "Vyberte uživatele, kteří se mají z této zásady vyloučit.",
- "userSelectionBladeExcludeTabTitle": "Vyloučit",
- "userSelectionBladeExcludedSelectorTitle": "Vybrat vyloučené uživatele",
- "userSelectionBladeIncludeDescription": "Vyberte uživatele, na které se tato zásada bude vztahovat.",
- "userSelectionBladeIncludeTabTitle": "Zahrnout",
- "userSelectionBladeIncludedSelectorTitle": "Vybrat",
- "userSelectionBladeSelectUsers": "Vybrat uživatele",
- "userSelectionBladeSelectedUsers": "Vyberte uživatele a skupiny",
- "userSelectionBladeTitle": "Uživatelé a skupiny",
- "userSelectorBladeTitle": "Uživatelé",
- "userSelectorExcluded": "Vyloučeno: {0}",
- "userSelectorGroupPlural": "Počet skupin: {0}",
- "userSelectorGroupSingular": "Počet skupin: 1",
- "userSelectorIncluded": "Zahrnuto: {0}",
- "userSelectorInfoBallonText": "Uživatelé a skupiny v adresáři, pro které platí tyto zásady. Třeba pilotní skupina.",
- "userSelectorSelected": "Počet vybraných: {0}",
- "userSelectorTitle": "Uživatel",
- "userSelectorUserAndGroup": "{0}, {1}",
- "userSelectorUserPlural": "Uživatelé aplikace {0}",
- "userSelectorUserSingular": "Počet uživatelů: 1",
- "userSelectorWithExclusion": "{0} a {1}",
- "usersGroupsLabel": "Uživatelé a skupiny",
- "viewApprovedAppsText": "Zobrazit seznam klientem schválených aplikací",
- "viewCompliantAppsText": "Zobrazit seznam klientských aplikací chráněných zásadami",
- "vpnBladeTitle": "Připojení VPN",
- "vpnCertCreateFailedMessage": "Chyba: {0}",
- "vpnCertCreateFailedTitle": "Nepovedlo se vytvořit {0}",
- "vpnCertCreateInProgressTitle": "Vytváří se {0}.",
- "vpnCertCreateSuccessMessage": "Certifikát {0} se úspěšně vytvořil.",
- "vpnCertCreateSuccessTitle": "Zásady {0} se úspěšně vytvořily.",
- "vpnCertNoRowsMessage": "Nenašly se žádné certifikáty VPN.",
- "vpnCertUpdateFailedMessage": "Chyba: {0}",
- "vpnCertUpdateFailedTitle": "Aplikaci {0} se nepodařilo aktualizovat.",
- "vpnCertUpdateInProgressTitle": "Aktualizuje se {0}.",
- "vpnCertUpdateSuccessMessage": "Certifikát {0} se úspěšně aktualizoval.",
- "vpnCertUpdateSuccessTitle": "Aplikace {0} byla úspěšně aktualizována.",
- "vpnFeatureInfo": "Další informace o připojení VPN a Podmíněném přístupu získáte, když kliknete sem.",
- "vpnFeatureWarning": "Jakmile se na portálu Azure Portal vytvoří certifikát VPN, Azure AD začne s jeho pomocí okamžitě vystavovat klientovi VPN krátkodobé certifikáty. Je naprosto nezbytné okamžitě nasadit certifikát VPN na server VPN, aby při ověřování přihlašovacích údajů klienta VPN nedošlo k žádným problémům.",
- "vpnMenuText": "Připojení VPN",
- "vpncertDropdownDefaultOption": "Doba trvání",
- "vpncertDropdownInfoBalloonContent": "Vyberte dobu platnosti certifikátu, který chcete vytvořit.",
- "vpncertDropdownLabel": "Vyberte dobu platnosti",
- "vpncertDropdownOneyearOption": "1 rok",
- "vpncertDropdownThreeyearOption": "3 roky",
- "vpncertDropdownTwoyearOption": "2 roky",
- "wednesday": "Středa",
- "whatIfAppEnforcedControl": "Používat omezení vynucená aplikací",
- "whatIfBladeDescription": "Otestujte dopad Podmíněného přístupu na uživatele, když se přihlásí za určitých podmínek.",
- "whatIfBladeTitle": "What If",
- "whatIfClassicPoliciesWarning": "Tento nástroj nevyhodnocuje klasické zásady.",
- "whatIfClientAppInfo": "Klientská aplikace, ze které se uživatel přihlašuje. Příklad: Prohlížeč",
- "whatIfCountry": "Země/oblast",
- "whatIfCountryInfo": "Země, ze které se uživatel přihlašuje",
- "whatIfDevicePlatformInfo": "Platforma zařízení, ze které se uživatel přihlašuje",
- "whatIfDeviceStateInfo": "Stav zařízení, ze kterého se uživatel přihlašuje",
- "whatIfEnterIpAddress": "Zadat IP adresu (např.: 40.77.182.32)",
- "whatIfErrorInvalidIpAddress": "Zadaná adresa IP je neplatná.",
- "whatIfEvaResultApplication": "Cloudové aplikace",
- "whatIfEvaResultClientApps": "Klientská aplikace",
- "whatIfEvaResultDevicePlatform": "Platforma zařízení",
- "whatIfEvaResultEmptyPolicy": "Prázdné zásady",
- "whatIfEvaResultInvalidCondition": "Neplatná podmínka",
- "whatIfEvaResultInvalidPolicy": "Neplatné zásady",
- "whatIfEvaResultLocation": "Umístění",
- "whatIfEvaResultNotEnoughInformation": "Nedostatek informací",
- "whatIfEvaResultPolicyNotEnabled": "Zásady se nepovolily.",
- "whatIfEvaResultSignInRisk": "Riziko přihlášení",
- "whatIfEvaResultUsers": "Uživatelé a skupiny",
- "whatIfIpAddress": "IP adresa",
- "whatIfIpAddressInfo": "IP adresa, ze které se uživatel přihlašuje",
- "whatIfIpCountryInfoBoxText": "Pokud používáte IP adresu nebo zemi, budou se vyžadovat obě pole, která by si měla vzájemně odpovídat.",
- "whatIfPolicyAppliesTab": "Zásady, které se použijí",
- "whatIfPolicyDoesNotApplyTab": "Zásady, které se nepoužijí",
- "whatIfReasons": "Důvody, proč se tyto zásady nepoužijí",
- "whatIfSelectClientApp": "Vybrat klientskou aplikaci...",
- "whatIfSelectCountry": "Vybrat zemi...",
- "whatIfSelectDevicePlatform": "Vybrat platformu zařízení...",
- "whatIfSelectPrivateLink": "Vyberte Private Link...",
- "whatIfSelectServicePrincipalRisk": "Vyberte riziko pro objekt služby…",
- "whatIfSelectSignInRisk": "Vyberte riziko přihlášení...",
- "whatIfSelectType": "Vybrat typ identity",
- "whatIfSelectUserRisk": "Vyberte riziko uživatele...",
- "whatIfServicePrincipalRiskInfo": "Úroveň rizika přidružená k objektu služby",
- "whatIfSignInRisk": "Riziko přihlášení",
- "whatIfSignInRiskInfo": "Úroveň rizika přidružená k přihlášení",
- "whatIfUnknownAreas": "Neznámé oblasti",
- "whatIfUserPickerLabel": "Vybraný uživatel",
- "whatIfUserPickerNoRowsLabel": "Nevybral se žádný uživatel ani objekt služby",
- "whatIfUserRiskInfo": "Úroveň rizika přidružená k uživateli",
- "whatIfUserSelectorInfo": "Uživatel v adresáři, kterého chcete otestovat",
- "windows365InfoBox": "Výběr Windows 365 bude mít vliv na připojení k počítačům Cloud PC a hostitelům relací Azure Virtual Desktopu. Další informace získáte, když kliknete sem.",
- "windowsDisplayName": "Windows",
- "windowsPhoneDisplayName": "Windows Phone",
- "workloadIdentities": "Identity úloh (Preview)",
- "workloadIdentity": "Identita úlohy"
- },
- "ApplicableDeviceType": {
- "iPad": "iPad",
- "iPhoneAndIPod": "iPhone a iPod"
- },
- "TAPSettings": {
- "AllowedDataIngestionLocations": {
- "label": "Povolit uživatelům otevírat data z vybraných služeb",
- "tooltip": "Vyberte služby úložiště aplikace, ze kterých uživatelé budou moct otevírat data. Všechny ostatní služby se zablokují. Když se nevybere žádná služba, uživatelé nebudou moct data otevírat."
- },
- "AndroidBackup": {
- "label": "Zálohovat data organizace do služeb zálohování Androidu",
- "tooltip": "Pokud chcete zabránit tomu, aby se data organizace zálohovala do služeb zálohování Androidu, vyberte {0}. \r\nPokud chcete zálohování dat organizace do služeb zálohování Androidu povolit, vyberte {1}. \r\nNa osobní nebo nespravovaná data to nemá žádný vliv."
- },
- "AndroidBiometricAuthentication": {
- "label": "Přístup pomocí biometriky místo PIN kódu",
- "tooltip": "Zvolte, které metody ověřování Androidu můžou uživatelé používat místo PIN kódu aplikace, pokud takové jsou."
- },
- "AndroidFingerprint": {
- "label": "Přístup pomocí otisku prstu namísto PIN kódu (Android 6.0+)",
- "tooltip": "Operační systém Androidu ověřuje uživatele zařízení s Androidem pomocí otisku prstu. Tato funkce podporuje nativní biometrické ovládací prvky na zařízeních s Androidem. Nastavení biometriky specifická pro výrobce OEM, třeba Samsung Pass, se nepodporují. Když se tato možnost povolí, musí se pro přístup k aplikaci na zařízení, které to podporuje, použít nativní biometrické ovládací prvky."
- },
- "AndroidOverrideFingerprint": {
- "label": "Po vypršení časového limitu obejít otisk prstu PIN kódem"
- },
- "AppPIN": {
- "label": "PIN kód aplikace, když je nastavený PIN kód zařízení",
- "tooltip": "Když se tato možnost nebude vyžadovat, PIN kód aplikace se pro přístup k aplikaci nemusí použít ani ve chvíli, kdy je na zařízení zaregistrovaném do MDM nastavený PIN kód zařízení.
\r\n\r\nPoznámka: Na Androidu Intune nemůže zjišťovat registraci zařízení pomocí řešení EMM třetí strany."
- },
- "BlockDataIngestionIntoOrganizationDocuments": {
- "label": "Otevřít data do dokumentů organizace",
- "tooltip1": "Vyberte Blokovat a zakážete používání možnosti Otevřít nebo jiných možností sdílení dat mezi účty v této aplikaci. Vyberte Povolit, pokud chcete povolit používání Otevřít a dalších možností sdílení dat mezi účty v této aplikaci.",
- "tooltip2": "Při nastavení na Blokovat můžete konfigurovat volbu Povolit uživateli otevírat data z vybraných služeb a určit služby povolené pro umístění dat organizace.",
- "tooltip3": "Poznámka: Toto nastavení se vynutí jedině v případě, kdy je volba „Přijímat data z jiných aplikací“ nastavená na „Aplikace spravované zásadami“.
\r\nPoznámka: Toto nastavení se nepoužívá na všechny aplikace. Další informace najdete v {0}.",
- "tooltip4": "Poznámka: Toto nastavení se vynutí jedině v případě, kdy je volba „Přijímat data z jiných aplikací“ nastavená na „Aplikace spravované zásadami“.
\r\nPoznámka: Toto nastavení se nepoužívá na všechny aplikace. Další informace najdete v {0} nebo {0}."
- },
- "ConnectToVpnOnLaunch": {
- "label": "Spustit připojení Microsoft Tunnel při spuštění aplikace",
- "tooltip": "Povolit připojení k síti VPN při spuštění aplikace"
- },
- "CredentialsForAccess": {
- "label": "Přístup pomocí přihlašovacích údajů pracovního nebo školního účtu",
- "tooltip": "Když se tato možnost vyžaduje, musí se pro přístup k aplikacím spravovaným pomocí zásad použít pracovní nebo školní přihlašovací údaje. Pokud se pro přístup k aplikaci vyžaduje i PIN kód nebo biometrické metody, přihlašovací údaje k pracovnímu nebo školnímu účtu se budou vyžadovat navíc."
- },
- "CustomBrowserDisplayName": {
- "label": "Název nespravovaného prohlížeče",
- "tooltip": "Zadejte název aplikace pro prohlížeč přidružený k ID nespravovaného prohlížeče. Tento název se zobrazí uživatelům, pokud není nainstalovaný zadaný prohlížeč."
- },
- "CustomBrowserPackageId": {
- "label": "ID nespravovaného prohlížeče",
- "tooltip": "Zadejte ID aplikace pro jeden prohlížeč. V zadaném prohlížeči se otevře webový obsah (HTTP/S) z aplikací spravovaných zásadami."
- },
- "CustomBrowserProtocol": {
- "label": "Protokol nespravovaného prohlížeče",
- "tooltip": "Zadejte protokol pro jeden nespravovaný prohlížeč. Webový obsah (HTTP/S) z aplikací spravovaných zásadami se otevře v jakékoli aplikaci, která podporuje tento protokol.
\r\n \r\nPoznámka: Zahrňte jen předponu protokolu. Pokud váš prohlížeč vyžaduje, aby odkazy měly tvar mybrowser://www.microsoft.com, zadejte mybrowser.
"
- },
- "CustomDialerAppDisplayName": {
- "label": "Název aplikace pro vytáčení"
- },
- "CustomDialerAppPackageId": {
- "label": "ID balíčku aplikace pro vytáčení"
- },
- "CustomDialerAppProtocol": {
- "label": "Schéma URL aplikace pro vytáčení"
- },
- "Cutcopypaste": {
- "label": "Omezit operace vyjmutí, kopírování a vložení mezi jinými aplikacemi",
- "tooltip": "Vyjímání, kopírování a vkládání dat mezi vaší aplikací a jinými schválenými aplikacemi nainstalovanými na zařízení. Můžete si zvolit, že tyto akce budete mezi aplikacemi zcela blokovat, že je povolíte pro jakoukoli aplikaci, nebo že jejich používání omezíte na aplikace, které spravuje vaše organizace.
\r\n\r\nMožnost Aplikace spravované zásadami s vkládáním umožňuje přijímat příchozí obsah vložený z jiné aplikace. Zablokuje ale uživatelům možnost sdílet obsah s jinými než spravovanými aplikacemi.
"
- },
- "DialerRestrictionLevel": {
- "iosTooltip": "Obvykle, když uživatel vybere v aplikaci odkaz s telefonním číslem, otevřete se aplikace číselníku, ve které bude telefonní číslo předem vyplněné a připravené k volání. Pro toto nastavení zvolte, jak se má tento typ přenosu obsahu zpracovávat, když se zahájí z aplikace spravované zásadami. Aby se toto nastavení projevilo, můžou být zapotřebí další kroky. Nejdříve ověřte, že se ze seznamu Vyberte aplikace, které se mají vyloučit odebraly tel a telprompt. Pak se ujistěte, že aplikace používá novější verzi sady Intune SDK (verzi 12.7.0+).",
- "label": "Přenést data telekomunikace do",
- "tooltip": "Obvykle, když uživatel v aplikaci vybere telefonní číslo s hypertextovým odkazem, otevře se telefonní číslo předem naplněné a připravené k volání v aplikaci pro vytáčení. Pro toto nastavení zvolte, jak se má zpracovat tento typ přenosu obsahu, když se iniciuje z aplikace spravované zásadou."
- },
- "EncryptData": {
- "label": "Šifrovat data organizace",
- "link": "https://docs.microsoft.com/cs-cz/intune/app-protection-policy-settings-android#data-relocation-settings",
- "tooltip": "Pokud chcete vynutit šifrování dat organizace pomocí šifrování na aplikační vrstvě Intune, vyberte {0}.\r\n
\r\nPokud na zaregistrovaných zařízeních šifrování dat organizace pomocí šifrování na aplikační vrstvě Intune vynucovat nechcete, vyberte {1}.\r\n\r\n
\r\nPoznámka: Další informace o šifrování na aplikační vrstvě Intune najdete tady: {2}"
- },
- "EncryptDataAndroid": {
- "tooltip": "Pokud chcete v této aplikaci povolit šifrování pracovních nebo školních dat, zvolte Vyžadovat. Intune používá schéma OpenSSL s 256b šifrováním AES a systém Úložiště klíčů Android, pomocí kterých bezpečně šifruje data aplikací. Data se šifrují synchronně během V/V operací se soubory. Obsah v úložišti zařízení je vždy šifrovaný. Sada SDK bude i nadále podporovat 128bitové klíče, aby se zachovala kompatibilita s obsahem a aplikacemi, které používají starší verze sady SDK.
\r\n\r\nMetoda šifrování odpovídá standardu FIPS 140-2.
"
- },
- "EncryptDataIos": {
- "tooltip1": "Pokud chcete v této aplikaci povolit šifrování pracovních nebo školních dat, zvolte Vyžadovat. Služba Intune vynucuje šifrování zařízení s iOS/iPadOS, aby chránila data aplikací ve chvíli, kdy je zařízení zamknuté. Aplikace můžou volitelně šifrovat svá data pomocí šifrování v sadě Intune APP SDK. Tato sada používá kryptografické metody iOS, pomocí kterých data aplikací šifruje pomocí 128bitového šifrování AES.",
- "tooltip2": "Když povolíte toto nastavení, je možné, že uživatel bude muset pro přístup k zařízení nastavit a používat PIN kód. Pokud zařízení žádný PIN kód nemá, a přitom se vyžaduje šifrování, uživateli se zobrazí výzva, aby si PIN kód nastavil. Výzva obsahuje tuto zprávu: Vaše organizace vyžaduje, abyste před přístupem k této aplikaci nejdříve povolili PIN kód zařízení.",
- "tooltip3": "Informace o tom, které moduly šifrování iOSu dodržují standard FIPS 140-2 nebo které čekají na potvrzení jeho implementace, najdete v oficiální dokumentaci Applu."
- },
- "EncryptDataOnEnrolledDevices": {
- "label": "Šifrovat data organizace na zaregistrovaných zařízeních",
- "tooltip": "Pokud chcete na všech zařízeních vynutit šifrování dat organizace pomocí šifrování na aplikační vrstvě Intune, vyberte {0}.
\r\n\r\nPokud na zaregistrovaných zařízeních šifrování dat organizace pomocí šifrování na aplikační vrstvě Intune vynucovat nechcete, vyberte {1}."
- },
- "IOSBackup": {
- "label": "Zálohovat data organizace do iTunes a iCloudu",
- "tooltip": "Pokud chcete zabránit tomu, aby se data organizace zálohovala do iTunes nebo iCloudu, vyberte {0}. \r\nPokud chcete zálohování dat organizace do iTunes nebo iCloudu povolit, vyberte {1}. \r\nNa osobní nebo nespravovaná data to nemá žádný vliv."
- },
- "IOSFaceID": {
- "label": "Přístup pomocí Face ID místo PIN kódu (iOS 11+ nebo iPadOS)",
- "tooltip": "Face ID používá technologii rozpoznávání tváře, pomocí které ověřuje uživatele na zařízeních s iOS/iPadOS. Intune k ověření uživatelů pomocí Face ID volá rozhraní LocalAuthentication API. Když se tato možnost povolí, pro přístup k aplikaci na zařízení, které podporuje Face ID, se musí použít právě Face ID."
- },
- "IOSOverrideTouchId": {
- "label": "Po vypršení časového limitu přepsat ověření pomocí biometrických údajů PIN kódem"
- },
- "IOSTouchId": {
- "label": "Přístup pomocí Touch ID místo PIN kódu (iOS 8+ nebo iPadOS)",
- "tooltip": "Touch ID používá technologii rozpoznávání otisku prstu, pomocí které ověřuje uživatele na zařízení s iOSem. Intune k ověření uživatelů pomocí Touch ID volá rozhraní LocalAuthentication API. Když se tato možnost povolí, pro přístup k aplikaci na zařízení, které podporuje Touch ID, se musí použít právě Touch ID."
- },
- "NotificationRestriction": {
- "label": "Oznámení dat organizace",
- "tooltip": "Pokud chcete zadat, jak se pro tuto aplikaci a všechna připojená zařízení, třeba nositelnou elektroniku, zobrazují oznámení pro účty organizace, vyberte jednu z těchto možností:
\r\n{0}: Nesdílet oznámení
\r\n{1}: Nesdílet v oznámeních data organizace. Pokud aplikace tuto možnost nepodporuje, oznámení se zablokují.
\r\n{2}: Sdílet všechna oznámení
\r\n Jen Android:\r\n Poznámka: Toto nastavení se nevztahuje na všechny aplikace. Další informace najdete tady: {3}
\r\n \r\n Jen iOS:\r\nPoznámka: Toto nastavení se nevztahuje na všechny aplikace. Další informace najdete tady: {4}
"
- },
- "OpenLinksManagedBrowser": {
- "label": "Omezit přenos webového obsahu s jinými aplikacemi",
- "tooltip": "Vyberte jednu z následujících možností pro určení aplikací, ve kterých tato aplikace bude moci otevírat webový obsah:
\r\nEdge: Dovolí otevírat webový obsah jen v Microsoft Edgi.
\r\nNespravovaný prohlížeč: Dovolí otevírat webový obsah jen v nespravovaném prohlížeči definovaném v nastavení Protokol nespravovaného prohlížeče.
\r\nLibovolná aplikace: Dovolí otevírat webové odkazy v jakékoli aplikaci.
"
- },
- "OverrideBiometric": {
- "tooltip": "V případě potřeby, v závislosti na časovém limitu (počet minut neaktivity), přepíše výzva zadat PIN kód výzvy použít biometriku. Pokud ještě časový limit nevyprší, výzva použít biometriku se bude zobrazovat nadále. Tato hodnota časového limitu by měla být větší než hodnota zadaná v části Znovu zkontrolovat požadavky na přístup po (počet minut neaktivity). "
- },
- "PinAccess": {
- "label": "Přístup pomocí PIN kódu",
- "tooltip": "V případě potřeby se pro přístup k aplikaci spravované zásadami musí použít PIN kód. Až uživatelé aplikaci poprvé spustí z pracovního nebo školního účtu, musí si vytvořit přístupový PIN kód."
- },
- "PinLength": {
- "label": "Vyberte minimální délku PIN kódu.",
- "tooltip": "Toto nastavení vyžaduje minimální počet číslic PIN kódu."
- },
- "PinType": {
- "label": "Typ PIN kódu",
- "tooltip": "Číselné PIN kódy se skládají jen z číslic. Hesla obsahují alfanumerické a speciální znaky. "
- },
- "Printing": {
- "label": "Tisk dat organizace",
- "tooltip": "Pokud se tato možnost zablokuje, aplikace nebude moct tisknout chráněná data."
- },
- "ReceiveData": {
- "label": "Přijímat data z jiných aplikací",
- "tooltip": "Pokud chcete určit aplikace, ze kterých může tato aplikace přijímat data, vyberte jednu z následujících možností:
\r\n\r\nŽádné: V dokumentech nebo účtech organizace se nepovolí přijímání dat z žádné aplikace.
\r\n\r\nAplikace spravované zásadami: V dokumentech a účtech organizace se povolí přijímání dat jen z aplikací spravovaných zásadami.\r\n
\r\nJakákoli aplikace s příchozími daty organizace: Umožní přijímat data v dokumentech a účtech organizace z jakékoli aplikace a všechna příchozí data bez uživatelského účtu se budou považovat za data organizace.
\r\n\r\nVšechny aplikace: Umožní přijímat data v dokumentech a účtech organizace z jakékoli aplikace."
- },
- "RecheckAccessAfter": {
- "label": "Znovu zkontrolovat požadavky na přístup po (počet minut neaktivity)\r\n\r\n",
- "tooltip": "Pokud je aplikace spravovaná zásadami neaktivní déle než zadaný počet minut, aplikace po spuštění vyzve, aby se znovu zkontrolovaly požadavky na přístup (tj. PIN kód, nastavení podmíněného spuštění)."
- },
- "RestrictKeyboards": {
- "duplicatePackageError": "ID balíčku musí být jedinečné.",
- "invalidPackageError": "Neplatné ID balíčku",
- "label": "Schválené klávesnice",
- "select": "Vyberte klávesnice, které chcete schválit",
- "subtitle": "Přidejte všechny klávesnice a metody zadávání znaků, které uživatelům povolíte používat s cílovými aplikacemi. Název klávesnice zadejte tak, jak se má zobrazovat koncovému uživateli.",
- "title": "Přidat schválené klávesnice",
- "toolTip": "Vyberte Vyžadovat a pak pro tyto zásady zadejte seznam schválených klávesnic. Další informace."
- },
- "SaveData": {
- "label": "Ukládat kopie dat organizace",
- "tooltip": "Pokud chcete zabránit ukládání kopie dat organizace pomocí Uložit jako do nového umístění, které nepatří mezi vybrané služby úložiště, vyberte {0}.\r\n Pokud chcete ukládání kopie dat organizace do nového umístění pomocí Uložit jako povolit, vyberte {1}.
\r\n\r\n\r\nPoznámka: Toto nastavení neplatí pro všechny aplikace. Další informace najdete tady: {2}\r\n"
- },
- "SaveDataToSelected": {
- "label": "Povolit uživateli ukládat kopie do vybraných služeb",
- "tooltip": "Vyberte služby úložiště, do kterých uživatelé můžou ukládat kopie dat organizace. Všechny ostatní služby se zablokují. Když se žádné služby nevyberou, uživatelé nebudou moct ukládat kopie dat organizace."
- },
- "ScreenCaptureAndAndroidAssistant": {
- "label": "Zachytávání obrazovky a Asistent Google\r\n",
- "tooltip": "Když se tato možnost blokuje, funkce skenování zachytáváním obrazovky a aplikací Asistent Google se při používání aplikace spravované zásadami zakáží. Tato funkce podporuje obvyklou aplikaci Asistent Google. Asistenti třetích stran, kteří používají rozhraní Assist API od Googlu, se nepodporují. Když vyberete Blokovat a aplikaci budete používat spolu s pracovním nebo školním účtem, obrázek náhledu přepínače aplikace bude rozmazaný."
- },
- "SendData": {
- "label": "Posílat data organizace do jiných aplikací",
- "tooltip": "Pokud chcete určit aplikace, kterým tato aplikace může posílat data organizace, vyberte jednu z následujících možností:
\r\n\r\n\r\nŽádné: Nepovolí posílat data organizace do žádné aplikace.
\r\n\r\n\r\nAplikace spravované zásadami: Povolí posílat data organizace jen do jiných aplikací spravovaných zásadami.
\r\n\r\n\r\nAplikace spravované zásadami se sdílením operačního systému: Povolí posílat data organizace jen do jiných aplikací spravovaných zásadami a dokumenty organizace do jiných aplikací spravovaných pomocí MDM na zaregistrovaných zařízeních.
\r\n\r\n\r\nAplikace spravované zásadami s filtrováním sdílení a otevírání v určité aplikaci: Povolí posílat data organizace jen do jiných aplikací spravovaných zásadami a filtruje dialogy operačního systému pro sdílení a otevírání v určité aplikaci tak, aby se zobrazovaly jen aplikace spravované zásadami.\r\n
\r\n\r\nVšechny aplikace: Povolí posílat data organizace do jakékoli aplikace."
- },
- "SimplePin": {
- "label": "Jednoduchý PIN kód",
- "tooltip": "Když se tato možnost zablokuje, uživatelé si nebudou moct vytvořit jednoduchý PIN kód. Jednoduchý PIN kód je řetězec po sobě jdoucích nebo se opakujících číslic, třeba 1234, ABCD nebo 1111. Poznámka: Zablokování jednoduchého PIN kódu typu Heslo vyžaduje, aby heslo obsahovalo alespoň jednu číslici, jedno písmeno a jeden speciální znak."
- },
- "SyncContacts": {
- "label": "Synchronizovat data aplikací spravovaných zásadami s nativními aplikacemi nebo doplňky"
- },
- "ThirdPartyKeyboards": {
- "infoBox": "Omezení klávesnice platí ve všech oblastech aplikace. Omezení platí i pro osobní účty aplikací, které podporují více identit. Další informace.",
- "label": "Klávesnice třetích stran"
- },
- "Timeout": {
- "label": "Časový limit (počet minut neaktivity)"
- },
- "Tap": {
- "numberOfDays": "Počet dnů",
- "pinResetAfterNumberOfDays": "Resetování PIN kódu po určitém počtu dní",
- "previousPinBlockCount": "Vyberte počet předchozích hodnot kódu PIN, které se mají zachovat"
- }
- },
- "WindowsFeatureUpdateProfile": {
- "Details": {
- "Description": {
- "label": "Popis"
- },
- "FeatureDeploymentSettings": {
- "header": "Nastavení nasazení funkcí"
- },
- "FeatureUpdateVersion": {
- "infoballoon": "Tato funkce nemůže downgradovat zařízení.",
- "label": "Aktualizace funkcí, která se má nasadit"
- },
- "GradualRolloutEndDate": {
- "label": "Dostupnost poslední skupiny"
- },
- "GradualRolloutInterval": {
- "label": "Počet dní mezi skupinami"
- },
- "GradualRolloutStartDate": {
- "label": "Dostupnost první skupiny"
- },
- "Name": {
- "label": "Název"
- },
- "RolloutOptions": {
- "label": "Možnosti uvedení"
- },
- "RolloutSettings": {
- "header": "Kdy chcete aktualizaci zpřístupnit ve službě Windows Update?"
- },
- "ScopeSettings": {
- "header": "Nakonfigurujte značky oboru pro tyto zásady."
- },
- "StartDateOnlyStartDate": {
- "label": "První dostupné datum"
- },
- "bladeTitle": "Nasazení aktualizací funkcí",
- "deploymentSettingsTitle": "Nastavení nasazení",
- "loadError": "Načítání nebylo úspěšné!",
- "windows11EULA": "Pokud vyberete pro nasazení tuto aktualizaci funkcí, vyjadřujete souhlas s tím, že při použití tohoto operačního systému na zařízení buď (1) byla v multilicenčním programu zakoupena platná licence Windows, nebo (2) jste oprávněný zástupce organizace s pravomocí přijímat jejím jménem příslušné licenční podmínky pro software společnosti Microsoft. Tyto podmínky najdete tady {0}."
- },
- "Notifications": {
- "deploymentSaved": "Nasazení {0} se uložilo.",
- "newFeatureUpdateDeploymentCreated": "Vytvořilo se nové nasazení aktualizace funkcí."
- },
- "TabName": {
- "deploymentSettings": "Nastavení nasazení",
- "groupAssignmentSettings": "Přiřazení",
- "scopeSettings": "Značky oboru"
- }
- },
- "OfficeUpdateChannel": {
- "current": "Aktuální kanál",
- "deferred": "Půlroční podnikový kanál",
- "firstReleaseCurrent": "Aktuální kanál (Preview)",
- "firstReleaseDeferred": "Půlroční podnikový kanál (Preview)",
- "monthlyEnterprise": "Měsíční podnikový kanál",
- "placeHolder": "Vyberte jednu možnost."
- },
- "Win32ReturnCodes": {
- "CodeTypes": {
- "failed": "Selhalo",
- "hardReboot": "Úplné restartování",
- "retry": "Opakovat",
- "softReboot": "Rychlé restartování",
- "success": "Úspěch"
- },
- "Columns": {
- "codeType": "Typ kódu",
- "returnCode": "Návratový kód"
- },
- "bladeTitle": "Návratové kódy",
- "gridAriaLabel": "Návratové kódy",
- "header": "Zadejte návratové kódy, které určí chování po instalaci:",
- "onAddAnnounceMessage": "Návratový kód přidal položku {0} z {1}",
- "onDeleteSuccess": "Návratový kód {0} byl úspěšně odstraněn",
- "returnCodeAlreadyUsedValidation": "Návratový kód se už používá.",
- "returnCodeMustBeIntegerValidation": "Návratový kód by měl být celé číslo.",
- "returnCodeShouldBeAtLeast": "Návratový kód by měl být nejméně {0}.",
- "returnCodeShouldBeAtMost": "Návratový kód by měl být nejvíce {0}.",
- "selectorLabel": "Návratové kódy"
- },
- "SecurityTemplate": {
- "aSR": "Omezení možností útoku",
- "accountProtection": "Ochrana účtu",
- "allDevices": "Všechna zařízení",
- "antivirus": "Antivirus",
- "antivirusReporting": "Vytváření sestav antiviru (Preview)",
- "conditionalAccess": "Podmíněný přístup",
- "deviceCompliance": "Dodržování předpisů zařízením",
- "diskEncryption": "Šifrování disku",
- "eDR": "Zjišťování koncových bodů a odpověď",
- "firewall": "Firewall",
- "helpSupport": "Nápověda a podpora",
- "setup": "Instalace",
- "wdapt": "Microsoft Defender pro koncový bod"
- },
- "PolicySet": {
- "appManagement": "Správa aplikací",
- "assignments": "Přiřazení",
- "basics": "Základy",
- "deviceEnrollment": "Registrace zařízení",
- "deviceManagement": "Správa zařízení",
- "scopeTags": "Značky oboru",
- "appConfigurationTitle": "Zásady konfigurace aplikací",
- "appProtectionTitle": "Zásady ochrany aplikací",
- "appTitle": "Aplikace",
- "iOSAppProvisioningTitle": "Zřizovací profily aplikací pro iOS",
- "deviceLimitRestrictionTitle": "Omezení limitů počtů zařízení",
- "deviceTypeRestrictionTitle": "Omezení typů zařízení",
- "enrollmentStatusSettingTitle": "Stránky stavu registrace",
- "windowsAutopilotDeploymentProfileTitle": "Profily nasazení Windows Autopilot",
- "deviceComplianceTitle": "Zásady dodržování předpisů zařízením",
- "deviceConfigurationTitle": "Profily konfigurace zařízení",
- "powershellScriptTitle": "Powershellové skripty"
- },
- "AssignmentAction": {
- "exclude": "Vyloučeno",
- "include": "Zahrnuto",
- "includeAllDevicesVirtualGroup": "Zahrnuto",
- "includeAllUsersVirtualGroup": "Zahrnuto"
- },
- "WindowsFeatureUpdate": {
- "EndOFSupportStatus": {
- "notSupported": "Nepodporováno",
- "supportEnding": "Konec podpory",
- "supported": "Podporováno"
- }
- },
- "InstallIntent": {
- "available": "K dispozici zaregistrovaným zařízením",
- "availableWithoutEnrollment": "K dispozici s registrací i bez ní",
- "required": "Povinné",
- "uninstall": "Odinstalovat"
- },
"OutlookAppConfig": {
"DataProtectionConfiguration": {
"header": "Konfigurace ochrany dat"
@@ -1938,307 +100,864 @@
"themesEnabledTitle": "Motivy jsou povolené",
"themesEnabledTooltip": "Určete, jestli může uživatel používat vlastní vizuální motiv."
},
- "TAP": {
- "AccessRequirements": {
- "infoText": "Nakonfigurujte PIN kód a požadavky na přihlašovací údaje, které uživatelé musí splnit, aby mohli získat přístup k aplikacím v pracovním kontextu."
- },
- "DataProtection": {
- "infoText": "Tato skupinu obsahuje ovládací prvky ochrany před únikem informací (DLP), třeba omezení operací vyjmutí, kopírování, vkládání a uložení jako. Tato nastavení určují, jak uživatel pracuje s daty v aplikacích."
- },
- "DeviceTypes": {
- "selectOne": "Vyberte alespoň jeden typ zařízení."
- },
- "TargetedApps": {
- "TargetToAll": {
- "label": "Cílit na aplikace na všech typech zařízení"
- },
- "infoText": "Zvolte, jak chcete tyto zásady zavést do aplikací na různých zařízeních. Pak přidejte alespoň jednu aplikaci.",
- "selectOne": "Pokud chcete vytvořit zásady, vyberte alespoň jednu aplikaci."
- }
- },
- "TACSettings": {
- "edgeSettings": "Nastavení konfigurace Edge",
- "edgeWindowsDataProtectionSettings": "Nastavení ochrany dat Edge (Windows) – Preview",
- "edgeWindowsSettings": "Nastavení konfigurace Edge (Windows) – Preview",
- "generalAppConfig": "Obecná konfigurace aplikace",
- "generalSettings": "Obecná nastavení konfigurace",
- "outlookSMIMEConfig": "Nastavení standardu S/MIME v Outlooku",
- "outlookSettings": "Nastavení konfigurace Outlooku",
- "sMIME": "Standard S/MIME"
- },
- "OfficeApplicationAdditionalType": {
- "projectProRetail": "Project Online Desktop Client",
- "visioProRetail": "Visio Online Plan 2"
- },
- "Win32Requirements": {
- "AdditionalRequirements": {
- "File": {
- "fileOrFolderToolTip": "Soubor nebo složka jako vybraný požadavek",
- "pathToolTip": "Úplná cesta souboru nebo složky, které se mají zjistit",
- "property": "Vlastnost",
- "valueToolTip": "Vyberte hodnotu požadavku, která odpovídá vybrané metodě zjišťování. Metody zjišťování na základě data a času by se měly zadat v místním formátu."
- },
- "GridColumns": {
- "pathOrScript": "Cesta/skript",
- "type": "Typ"
- },
- "Registry": {
- "keyPath": "Cesta ke klíči",
- "keyPathTooltip": "Úplná cesta položky registru, která obsahuje hodnotu jako požadavek",
- "operator": "Operátor",
- "operatorTooltip": "Vyberte operátor pro porovnání.",
- "registryRequirement": "Požadavek klíče registru",
- "registryRequirementTooltip": "Vyberte porovnání požadavků klíčů registrů.",
- "valueName": "Název hodnoty",
- "valueNameTooltip": "Název požadované hodnoty registru"
- },
- "RequirementTypeOptions": {
- "fileType": "Soubor",
- "registry": "Registr",
- "script": "Skript"
- },
- "Script": {
- "RequirementMethodOptions": {
- "boolean": "Logická hodnota",
- "dateTime": "Datum a čas",
- "float": "Plovoucí desetinná čárka",
- "integer": "Celé číslo",
- "string": "Řetězec",
- "version": "Verze"
- },
- "ScriptContent": {
- "emptyMessage": "Obsah skriptu by neměl být prázdný."
- },
- "duplicateName": "Název skriptu {0} se už používá. Zadejte prosím jiný název.",
- "enforceSignatureCheck": "Vynutit kontrolu podpisu skriptu",
- "enforceSignatureCheckTooltip": "Pokud chcete ověřit, že skript je podepsaný důvěryhodným vydavatelem, který umožní skriptu běžet bez toho, aby se zobrazovaly výzvy nebo upozornění, vyberte Ano. Skript se spustí neblokovaný. Pokud chcete skript spustit s potvrzením koncového uživatele, ale bez ověření podpisu, vyberte Ne (výchozí).",
- "loggedOnCredentials": "Spustit tento skript pomocí přihlašovacích údajů přihlášeného uživatele",
- "loggedOnCredentialsTooltip": "Spustit skript pomocí přihlašovacích údajů přihlášeného zařízení",
- "operatorTooltip": "Vyberte operátor pro porovnání požadavků.",
- "requirementMethod": "Vyberte typ výstupních dat.",
- "requirementMethodTooltip": "Vyberte datový typ, který se použije při určování požadavku na shodu zjišťování.",
- "scriptFile": "Soubor skriptu",
- "scriptFileTooltip": "Vyberte powershellový skript, který zjistí přítomnost aplikace v klientovi. Když se aplikace zjistí, proces požadavku poskytne ukončovací kód s hodnotou 0 a zapíše řetězcovou hodnotu na STDOUT.",
- "scriptName": "Název skriptu",
- "value": "Hodnota",
- "valueTooltip": "Vyberte hodnotu požadavku, která odpovídá vybrané metodě zjišťování. Metody zjišťování na základě data a času by se měly zadat v místním formátu."
- },
- "bladeTitle": "Přidat pravidlo požadavku",
- "createRequirementHeader": "Vytvořit požadavek",
- "header": "Nakonfigurovat další pravidla požadavků",
- "label": "Pravidla dalších požadavků",
- "noRequirementsSelectedPlaceholder": "Nezadaly se žádné požadavky.",
- "requirementType": "Typ požadavku",
- "requirementTypeTooltip": "Zvolte typ metody zjišťování, pomocí které se určí, jak se požadavek bude ověřovat."
- },
- "architectures": "Architektura operačního systému",
- "architecturesTooltip": "Zvolte architektury potřebné k nainstalování aplikace",
- "bladeTitle": "Požadavky",
- "diskSpace": "Požadované místo na disku (MB)",
- "diskSpaceTooltip": "Požadované volné místo na systémové jednotce, aby se aplikace mohla nainstalovat",
- "header": "Zadejte požadavky, které zařízení musí splnit, než se aplikace nainstaluje:",
- "maximumTextFieldValue": "Hodnota musí být maximálně {0}.",
- "minimumCpuSpeed": "Minimální požadovaná rychlost CPU (MHz)",
- "minimumCpuSpeedTooltip": "Minimální požadovaná rychlost CPU, aby se aplikace mohla nainstalovat",
- "minimumLogicalProcessors": "Minimální požadovaný počet logických procesorů",
- "minimumLogicalProcessorsTooltip": "Minimální požadovaný počet logických procesorů, aby se aplikace mohla nainstalovat",
- "minimumOperatingSystem": "Minimální operační systém",
- "minimumOperatingSystemTooltip": "Vyberte minimální operační systém potřebný k instalaci aplikace.",
- "minumumTextFieldValue": "Hodnota musí být aspoň {0}.",
- "physicalMemory": "Požadovaná fyzická paměť (MB)",
- "physicalMemoryTooltip": "Požadovaná fyzická paměť (RAM), aby se aplikace mohla nainstalovat",
- "selectorLabel": "Požadavky",
- "validNumber": "Zadejte platné číslo."
- },
- "ArchitectureOptions": {
- "sixtyFourBit": "64 bitů",
- "thirtyTwoBit": "32 bitů"
- },
- "Countries": {
- "ae": "Spojené arabské emiráty",
- "ag": "Antigua a Barbuda",
- "ai": "Anguilla",
- "al": "Albánie",
- "am": "Arménie",
- "ao": "Angola",
- "ar": "Argentina",
- "at": "Rakousko",
- "au": "Austrálie",
- "az": "Ázerbájdžán",
- "bb": "Barbados",
- "be": "Belgie",
- "bf": "Burkina Faso",
- "bg": "Bulharsko",
- "bh": "Bahrajn",
- "bj": "Benin",
- "bm": "Bermudy",
- "bn": "Brunej",
- "bo": "Bolívie",
- "br": "Brazílie",
- "bs": "Bahamy",
- "bt": "Bhútán",
- "bw": "Botswana",
- "by": "Bělorusko",
- "bz": "Belize",
- "ca": "Kanada",
- "cg": "Konžská republika",
- "ch": "Švýcarsko",
- "cl": "Chile",
- "cn": "Čína",
- "co": "Kolumbie",
- "cr": "Kostarika",
- "cv": "Cabo Verde",
- "cy": "Kypr",
- "cz": "Česká republika",
- "de": "Německo",
- "dk": "Dánsko",
- "dm": "Dominika",
- "do": "Dominikánská republika",
- "dz": "Alžírsko",
- "ec": "Ekvádor",
- "ee": "Estonsko",
- "eg": "Egypt",
- "es": "Španělsko",
- "fi": "Finsko",
- "fj": "Fidži",
- "fm": "Federativní státy Mikronésie",
- "fr": "Francie",
- "gb": "Spojené království",
- "gd": "Grenada",
- "gh": "Ghana",
- "gm": "Gambie",
- "gr": "Řecko",
- "gt": "Guatemala",
- "gw": "Guinea-Bissau",
- "gy": "Guyana",
- "hk": "Hongkong",
- "hn": "Honduras",
- "hr": "Chorvatsko",
- "hu": "Maďarsko",
- "id": "Indonésie",
- "ie": "Irsko",
- "il": "Izrael",
- "in": "Indie",
- "is": "Island",
- "it": "Itálie",
- "jm": "Jamajka",
- "jo": "Jordánsko",
- "jp": "Japonsko",
- "ke": "Keňa",
- "kg": "Kyrgyzstán",
- "kh": "Kambodža",
- "kn": "Svatý Kryštof a Nevis",
- "kr": "Korejská republika",
- "kw": "Kuvajt",
- "ky": "Kajmanské ostrovy",
- "kz": "Kazachstán",
- "la": "Laoská lidově demokratická republika",
- "lb": "Libanon",
- "lc": "Svatá Lucie",
- "lk": "Srí Lanka",
- "lr": "Libérie",
- "lt": "Litva",
- "lu": "Lucembursko",
- "lv": "Lotyšsko",
- "md": "Moldavská republika",
- "mg": "Madagaskar",
- "mk": "Severní Makedonie",
- "ml": "Mali",
- "mn": "Mongolsko",
- "mo": "Macao",
- "mr": "Mauritánie",
- "ms": "Montserrat",
- "mt": "Malta",
- "mu": "Mauricius",
- "mw": "Malawi",
- "mx": "Mexiko",
- "my": "Malajsie",
- "mz": "Mosambik",
- "na": "Namibie",
- "ne": "Niger",
- "ng": "Nigérie",
- "ni": "Nikaragua",
- "nl": "Nizozemsko",
- "no": "Norsko",
- "np": "Nepál",
- "nz": "Nový Zéland",
- "om": "Omán",
- "pa": "Panama",
- "pe": "Peru",
- "pg": "Papua-Nová Guinea",
- "ph": "Filipíny",
- "pk": "Pákistán",
- "pl": "Polsko",
- "pt": "Portugalsko",
- "pw": "Palau",
- "py": "Paraguay",
- "qa": "Katar",
- "ro": "Rumunsko",
- "ru": "Rusko",
- "sa": "Saúdská Arábie",
- "sb": "Šalamounovy ostrovy",
- "sc": "Seychely",
- "se": "Švédsko",
- "sg": "Singapur",
- "si": "Slovinsko",
- "sk": "Slovensko",
- "sl": "Sierra Leone",
- "sn": "Senegal",
- "sr": "Surinam",
- "st": "Svatý Tomáš a Princův ostrov",
- "sv": "Salvador",
- "sz": "Svazijsko",
- "tc": "Turks a Caicos",
- "td": "Čad",
- "th": "Thajsko",
- "tj": "Tádžikistán",
- "tm": "Turkmenistán",
- "tn": "Tunisko",
- "tr": "Turecko",
- "tt": "Trinidad a Tobago",
- "tw": "Tchaj-wan",
- "tz": "Tanzanie",
- "ua": "Ukrajina",
- "ug": "Uganda",
- "us": "USA",
- "uy": "Uruguay",
- "uz": "Uzbekistán",
- "vc": "Svatý Vincenc a Grenadiny",
- "ve": "Venezuela",
- "vg": "Britské Panenské ostrovy",
- "vn": "Vietnam",
- "ye": "Jemen",
- "za": "Jihoafrická republika",
- "zw": "Zimbabwe"
+ "Languages": {
+ "ar-aE": "Arabština (Spojené arabské emiráty)",
+ "ar-bH": "Arabština (Bahrajn)",
+ "ar-dZ": "Arabština (Alžírsko)",
+ "ar-eG": "Arabština (Egypt)",
+ "ar-iQ": "Arabština (Irák)",
+ "ar-jO": "Arabština (Jordánsko)",
+ "ar-kW": "Arabština (Kuvajt)",
+ "ar-lB": "Arabština (Libanon)",
+ "ar-lY": "Arabština (Libye)",
+ "ar-mA": "Arabština (Maroko)",
+ "ar-oM": "Arabština (Omán)",
+ "ar-qA": "Arabština (Katar)",
+ "ar-sA": "arabština (Saúdská Arábie)",
+ "ar-sY": "Arabština (Sýrie)",
+ "ar-tN": "Arabština (Tunisko)",
+ "ar-yE": "Arabština (Jemen)",
+ "az-cyrl": "Ázerbájdžánština (cyrilice, Ázerbájdžán)",
+ "az-latn": "Ázerbájdžánština (latinka, Ázerbájdžán)",
+ "bn-bD": "Bengálština (Bangladéš)",
+ "bn-iN": "Bengálština (Indie)",
+ "bs-cyrl": "Bosenština (cyrilice)",
+ "bs-latn": "Bosenština (latinka)",
+ "zh-cN": "Čínština (ČLR)",
+ "zh-hK": "Čínština (Hongkong – zvláštní administrativní oblast)",
+ "zh-mO": "Čínština (Macao – zvláštní administrativní oblast)",
+ "zh-sG": "čínština (Singapur)",
+ "zh-tW": "Čínština (Tchaj-wan)",
+ "hr-bA": "Chorvatština (latinka)",
+ "hr-hR": "chorvatština (Chorvatsko)",
+ "nl-bE": "Nizozemština (Belgie)",
+ "nl-nL": "nizozemština (Nizozemsko)",
+ "en-aU": "Angličtina (Austrálie)",
+ "en-bZ": "Angličtina (Belize)",
+ "en-cA": "Angličtina (Kanada)",
+ "en-cabn": "Angličtina (Karibská oblast)",
+ "en-iE": "Angličtina (Irsko)",
+ "en-iN": "Angličtina (Indie)",
+ "en-jM": "Angličtina (Jamajka)",
+ "en-mY": "Angličtina (Malajsie)",
+ "en-nZ": "Angličtina (Nový Zéland)",
+ "en-pH": "Angličtina (Filipínská republika)",
+ "en-sG": "Angličtina (Singapur)",
+ "en-tT": "Angličtina (Trinidad a Tobago)",
+ "en-uK": "angličtina (Spojené království)",
+ "en-uS": "angličtina (Spojené státy)",
+ "en-zA": "Angličtina (Jihoafrická republika)",
+ "en-zW": "Angličtina (Zimbabwe)",
+ "fr-bE": "Francouzština (Belgie)",
+ "fr-cA": "francouzština (Kanada)",
+ "fr-cH": "Francouzština (Švýcarsko)",
+ "fr-fR": "francouzština (Francie)",
+ "fr-lU": "Francouzština (Lucembursko)",
+ "fr-mC": "Francouzština (Monako)",
+ "de-aT": "Němčina (Rakousko)",
+ "de-cH": "Němčina (Švýcarsko)",
+ "de-dE": "němčina (Německo)",
+ "de-lI": "Němčina (Lichtenštejnsko)",
+ "de-lU": "Němčina (Lucembursko)",
+ "iu-cans": "Inuktitutština (slabičné písmo, Kanada)",
+ "iu-latn": "Inuktitutština (latinka, Kanada)",
+ "it-cH": "Italština (Švýcarsko)",
+ "it-iT": "italština (Itálie)",
+ "ms-bN": "Malajština (Sultanát Brunej)",
+ "ms-mY": "Malajština (Malajsie)",
+ "mn-cN": "Mongolština (tradiční mongolština, ČLR)",
+ "mn-mN": "Mongolština (cyrilice, Mongolsko)",
+ "no-nB": "norština, Bokmål (Norsko)",
+ "no-nn": "Norština, Nynorsk (Norsko)",
+ "pt-bR": "portugalština (Brazílie)",
+ "pt-pT": "portugalština (Portugalsko)",
+ "quz-bO": "Kečuánština (Bolívie)",
+ "quz-eC": "Kečuánština (Ekvádor)",
+ "quz-pE": "Kečuánština (Peru)",
+ "smj-nO": "Sámština (lulejská, Norsko)",
+ "smj-sE": "Sámština (lulejská, Švédsko)",
+ "se-fI": "Sámština (severní, Finsko)",
+ "se-nO": "Sámština (severní, Norsko)",
+ "se-sE": "Sámština (severní, Švédsko)",
+ "sma-nO": "Sámština (jižní, Norsko)",
+ "sma-sE": "Sámština (jižní, Švédsko)",
+ "smn": "Sámština (inarijská, Finsko)",
+ "sms": "Sámština (skoltská, Finsko)",
+ "sr-Cyrl-bA": "Srbština (cyrilice)",
+ "sr-Cyrl-rS": "Srbština (cyrilice, Srbsko a Černá hora)",
+ "sr-Latn-bA": "srbština (latinka)",
+ "sr-Latn-rS": "srbština (latinka, Srbsko)",
+ "dsb": "Dolnolužická srbština (Německo)",
+ "hsb": "Hornolužická srbština (Německo)",
+ "es-es-tradnl": "Španělština (Španělsko; tradiční řazení)",
+ "es-aR": "Španělština (Argentina)",
+ "es-bO": "Španělština (Bolívie)",
+ "es-cL": "Španělština (Chile)",
+ "es-cO": "Španělština (Kolumbie)",
+ "es-cR": "Španělština (Kostarika)",
+ "es-dO": "Španělština (Dominikánská republika)",
+ "es-eC": "Španělština (Ekvádor)",
+ "es-eS": "Španělština (Španělsko)",
+ "es-gT": "Španělština (Guatemala)",
+ "es-hN": "Španělština (Honduras)",
+ "es-mX": "Španělština (Mexiko)",
+ "es-nI": "Španělština (Nikaragua)",
+ "es-pA": "Španělština (Panama)",
+ "es-pE": "Španělština (Peru)",
+ "es-pR": "Španělština (Portoriko)",
+ "es-pY": "Španělština (Paraguay)",
+ "es-sV": "Španělština (Salvador)",
+ "es-uS": "Španělština (Spojené státy)",
+ "es-uY": "Španělština (Uruguay)",
+ "es-vE": "Španělština (Venezuela)",
+ "sv-fI": "Švédština (Finsko)",
+ "uz-cyrl": "Uzbečtina (cyrilice, Uzbekistán)",
+ "uz-latn": "Uzbečtina (latinka, Uzbekistán)",
+ "af": "Afrikánština (Jihoafrická republika)",
+ "sq": "Albánština (Albánie)",
+ "am": "Amharšina (Etiopie)",
+ "hy": "Arménština (Arménie)",
+ "as": "Ásámština (Indie)",
+ "ba": "Baškirština (Rusko)",
+ "eu": "Baskičtina (Baskičtina)",
+ "be": "Běloruština (Bělorusko)",
+ "br": "Bretonština (Francie)",
+ "bg": "bulharština (Bulharsko)",
+ "ca": "Katalánština (Katalánština)",
+ "co": "Korsičtina (Francie)",
+ "cs": "čeština (Česká republika)",
+ "da": "dánština (Dánsko)",
+ "prs": "Dáríština (Afghánistán)",
+ "dv": "Divehština (Maledivy)",
+ "et": "estonština (Estonsko)",
+ "fo": "Faerština (Faerské ostrovy)",
+ "fil": "Filipínština (Filipíny)",
+ "fi": "finština (Finsko)",
+ "gl": "Galicijština (Galicie)",
+ "ka": "Gruzínština (Gruzie)",
+ "el": "Řečtina (Řecko)",
+ "gu": "Gudžarátština (Indie)",
+ "ha": "Hauština (latinka, Nigérie)",
+ "he": "hebrejština (Izrael)",
+ "hi": "Hindština (Indie)",
+ "hu": "maďarština (Maďarsko)",
+ "is": "Islandština (Island)",
+ "ig": "Igboština (Nigérie)",
+ "id": "Indonéština (Indonésie)",
+ "ga": "Irština (Irsko)",
+ "xh": "Isi-xhoština (Jihoafrická republika)",
+ "zu": "Zuluština (Jihoafrická republika)",
+ "ja": "japonština (Japonsko)",
+ "kn": "Kannadština (Indie)",
+ "kk": "Kazaština (Kazachstán)",
+ "km": "Khmérština (Kambodža)",
+ "rw": "Kiňarwandština (Rwanda)",
+ "sw": "Svahilština (Keňa)",
+ "kok": "Konkánština (Indie)",
+ "ko": "korejština (Korea)",
+ "ky": "Kyrgyzština (Kyrgyzstán)",
+ "lo": "Laština (Laoská lidově demokratická republika)",
+ "lv": "lotyština (Lotyšsko)",
+ "lt": "litevština (Litva)",
+ "lb": "Lucemburština (Lucembursko)",
+ "mk": "Makedonština (Severní Makedonie)",
+ "ml": "Malajálamština (Indie)",
+ "mt": "Maltština (Malta)",
+ "mi": "Maorština (Nový Zéland)",
+ "mr": "Maráthština (Indie)",
+ "moh": "Mohawkština (Mohawkové)",
+ "ne": "Nepálština (Nepál)",
+ "oc": "Okcitánština (Francie)",
+ "or": "Udijština (Indie)",
+ "ps": "Paštština (Afghánistán)",
+ "fa": "Perština",
+ "pl": "polština (Polsko)",
+ "pa": "Paňdžábština (Indie)",
+ "ro": "rumunština (Rumunsko)",
+ "rm": "Rétorománština (Švýcarsko)",
+ "ru": "ruština (Rusko)",
+ "sa": "Sanskrt (Indie)",
+ "st": "Severní sotština (Jihoafrická republika)",
+ "tn": "Setswanština (Jihoafrická republika)",
+ "si": "Sinhálština (Srí Lanka)",
+ "sk": "slovenština (Slovensko)",
+ "sl": "slovinština (Slovinsko)",
+ "sv": "švédština (Švédsko)",
+ "syr": "Syrština (Sýrie)",
+ "tg": "Tádžičtina (cyrilice, Tádžikistán)",
+ "ta": "Tamilština (Indie)",
+ "tt": "Tatarština (Rusko)",
+ "te": "Telugština (Indie)",
+ "th": "thajština (Thajsko)",
+ "bo": "Tibetština (ČLR)",
+ "tr": "turečtina (Turecko)",
+ "tk": "Turkménština (Turkmenistán)",
+ "uk": "ukrajinština (Ukrajina)",
+ "ur": "Urdština (Islámská republika Pákistán)",
+ "vi": "Vietnamština (Vietnam)",
+ "cy": "Velština (Spojené království)",
+ "wo": "Wolofština (Senegal)",
+ "ii": "Yi (ČLR)",
+ "yo": "Jorubština (Nigérie)"
+ },
+ "Category": {
+ "airPlay": "AirPlay",
+ "airPrint": "AirPrint",
+ "androidDefenderAtp": "Microsoft Defender pro koncový bod",
+ "androidDeviceOwnerApplications": "Aplikace",
+ "androidForWorkPassword": "Heslo zařízení",
+ "appManagement": "Povolit nebo blokovat aplikace",
+ "applicationGuard": "Ochrana Application Guard v programu Microsoft Defender",
+ "applicationRestrictions": "Omezené aplikace",
+ "applicationVisibility": "Zobrazit nebo skrýt aplikace",
+ "applications": "App Store",
+ "applicationsAndGames": "App Store, zobrazování dokumentů, hraní her",
+ "applicationsAndGoogle": "Obchod Google Play",
+ "appsAndExperience": "Aplikace a prostředí",
+ "associatedDomains": "Přidružené domény",
+ "autonomousSingleAppMode": "Autonomní režim jedné aplikace",
+ "azureOperationalInsights": "Azure Operational Insights",
+ "bitLocker": "Šifrování Windows",
+ "browser": "Prohlížeč",
+ "builtinApps": "Integrované aplikace",
+ "cellular": "Mobilní",
+ "cloudAndStorage": "Cloud a úložiště",
+ "cloudPrint": "Cloudová tiskárna",
+ "complianceEmailProfile": "E-mail",
+ "connectedDevices": "Připojená zařízení",
+ "connectivity": "Mobilní síť a připojení",
+ "contentCaching": "Zachytávání obsahu",
+ "controlPanelAndSettings": "Ovládací panely a nastavení",
+ "credentialGuard": "Ochrana Credential Guard v programu Microsoft Defender",
+ "customCompliance": "Vlastní dodržování předpisů",
+ "customCompliancePreview": "Vlastní dodržování předpisů (Preview)",
+ "customConfiguration": "Vlastní konfigurační profil",
+ "customOMASettings": "Vlastní nastavení OMA-URI",
+ "customPreferences": "Soubor preferencí",
+ "defender": "Antivirová ochrana v programu Microsoft Defender",
+ "defenderAntivirus": "Antivirová ochrana v programu Microsoft Defender",
+ "defenderExploitGuard": "Ochrana Exploit Guard v programu Microsoft Defender",
+ "defenderFirewall": "Firewall v programu Microsoft Defender",
+ "defenderLocalSecurityOptions": "Možnosti zabezpečení místního zařízení",
+ "defenderSecurityCenter": "Centrum zabezpečení v programu Microsoft Defender",
+ "deliveryOptimization": "Optimalizace doručení",
+ "derivedCredentialAuthenticationConfiguration": "Odvozené přihlašovací údaje",
+ "deviceExperience": "Možnosti zařízení",
+ "deviceFirmwareConfigurationInterface": "Rozhraní DFCI (Device Firmware Configuration Interface)",
+ "deviceGuard": "Řízení aplikací v programu Microsoft Defender",
+ "deviceHealth": "Stav zařízení",
+ "devicePassword": "Heslo zařízení",
+ "deviceProperties": "Vlastnosti zařízení",
+ "deviceRestrictions": "Obecné",
+ "deviceSecurity": "Zabezpečení systému",
+ "display": "Zobrazit",
+ "domainJoin": "Připojení k doméně",
+ "domains": "Domény",
+ "edgeBrowser": "Microsoft Edge starší verze (verze 45 a starší)",
+ "edgeBrowserSmartScreen": "Filtr SmartScreen v programu Microsoft Defender",
+ "edgeKiosk": "Beznabídkový režim Microsoft Edge",
+ "editionUpgrade": "Upgrade edice",
+ "education": "Vzdělávání",
+ "educationDeviceCerts": "Certifikáty zařízení",
+ "educationStudentCerts": "Certifikáty studentů",
+ "educationTakeATest": "Zkuste si test",
+ "educationTeacherCerts": "Certifikáty učitelů",
+ "emailProfile": "E-mail",
+ "enterpriseDataProtection": "Windows Information Protection",
+ "expeditedCheckin": "Konfigurace správy mobilních zařízení",
+ "extensibleSingleSignOn": "Rozšíření aplikace jednotného přihlašování",
+ "filevault": "FileVault",
+ "firewall": "Firewall",
+ "games": "Hry",
+ "gatekeeper": "Gatekeeper",
+ "healthMonitoring": "Sledování stavu",
+ "homeScreenLayout": "Rozložení domovské obrazovky",
+ "iOSWallpaper": "Tapeta",
+ "importedPFX": "Importovaný certifikát PKCS",
+ "iosDefenderAtp": "Microsoft Defender pro koncový bod",
+ "iosKiosk": "Veřejný terminál",
+ "kernelExtensions": "Rozšíření jádra",
+ "keyboardAndDictionary": "Klávesnice a slovník",
+ "kiosk": "Veřejný terminál",
+ "kioskAndroidEnterprise": "Vyhrazená zařízení",
+ "kioskConfiguration": "Veřejný terminál",
+ "kioskConfigurationV2": "Veřejný terminál",
+ "kioskWebBrowser": "Webový prohlížeč veřejného terminálu",
+ "lockScreenMessage": "Zpráva zamykací obrazovky",
+ "lockedScreenExperience": "Prostředí zamknuté obrazovky",
+ "logging": "Vytváření sestav a telemetrie",
+ "loginItems": "Položky přihlášení",
+ "loginWindow": "Přihlašovací okno",
+ "macDefenderAtp": "Microsoft Defender pro koncový bod",
+ "maintenance": "Údržba",
+ "malware": "Malware",
+ "messaging": "Zasílání zpráv",
+ "networkBoundary": "Ohraničení sítě",
+ "networkProxy": "Síťový proxy server",
+ "notifications": "Oznámení aplikace",
+ "pKCS": "Certifikát PKCS",
+ "password": "Heslo",
+ "personalProfile": "Osobní profil",
+ "personalization": "Přizpůsobení",
+ "policyOverride": "Přepsat zásady skupiny",
+ "powerSettings": "Nastavení napájení",
+ "printer": "Tiskárna",
+ "privacy": "Soukromí",
+ "privacyPerApp": "Výjimky ze zásad ochrany osobních údajů pro jednotlivé aplikace",
+ "privacyPreferences": "Předvolby ochrany osobních údajů",
+ "projection": "Projekce",
+ "sCCMCompliance": "Dodržování předpisů Configuration Manageru",
+ "sCEP": "Certifikát SCEP",
+ "sCEPProperties": "Certifikát SCEP",
+ "sMode": "Přepínač režimů (jen Windows Insider)",
+ "safari": "Safari",
+ "search": "Hledat",
+ "session": "Relace",
+ "sharedDevice": "Sdílený iPad",
+ "sharedPCAccountManager": "Sdílené víceuživatelské zařízení",
+ "singleSignOn": "Jednotné přihlašování",
+ "smartScreen": "Filtr SmartScreen v programu Microsoft Defender",
+ "softwareUpdates": "Nastavení",
+ "start": "Spustit",
+ "systemExtensions": "Systémová rozšíření",
+ "systemSecurity": "Zabezpečení systému",
+ "trustedCert": "Důvěryhodný certifikát",
+ "updates": "Aktualizace",
+ "userRights": "Uživatelská práva",
+ "usersAndAccounts": "Uživatelé a účty",
+ "vPN": "Základní síť VPN",
+ "vPNApps": "Automatické připojení VPN",
+ "vPNAppsAndTrafficRules": "Aplikace a pravidla přenosů",
+ "vPNConditionalAccess": "Podmíněný přístup",
+ "vPNConnectivity": "Možnosti připojení",
+ "vPNDNSTriggers": "Nastavení DNS",
+ "vPNIKEv2": "Nastavení IKEv2",
+ "vPNProxy": "Proxy",
+ "vPNSplitTunneling": "Dělené tunelové propojení",
+ "vPNTrustedNetwork": "Detekce důvěryhodných sítí",
+ "webContentFilter": "Filtr webového obsahu",
+ "wiFi": "Wi-Fi",
+ "win10Wifi": "Wi-Fi",
+ "windowsAtp": "Microsoft Defender pro koncový bod",
+ "windowsDefenderATP": "Microsoft Defender pro koncový bod",
+ "windowsHelloForBusiness": "Windows Hello pro firmy",
+ "windowsSpotlight": "Windows Spotlight",
+ "wiredNetwork": "Drátová síť",
+ "wireless": "Bezdrátové",
+ "wirelessProjection": "Bezdrátová projekce",
+ "workProfile": "Nastavení pracovního profilu",
+ "workProfilePassword": "Heslo pracovního profilu",
+ "xboxServices": "Služby Xbox",
+ "zebraMx": "Profil MX (pouze Zebra)",
+ "complianceActionsLabel": "Akce při nedodržení předpisů"
+ },
+ "WindowsFeatureUpdateProfile": {
+ "Details": {
+ "Description": {
+ "label": "Popis"
+ },
+ "FeatureDeploymentSettings": {
+ "header": "Nastavení nasazení funkcí"
+ },
+ "FeatureUpdateVersion": {
+ "infoballoon": "Tato funkce nemůže downgradovat zařízení.",
+ "label": "Aktualizace funkcí, která se má nasadit"
+ },
+ "GradualRolloutEndDate": {
+ "label": "Dostupnost poslední skupiny"
+ },
+ "GradualRolloutInterval": {
+ "label": "Počet dní mezi skupinami"
+ },
+ "GradualRolloutStartDate": {
+ "label": "Dostupnost první skupiny"
+ },
+ "Name": {
+ "label": "Název"
+ },
+ "RolloutOptions": {
+ "label": "Možnosti uvedení"
+ },
+ "RolloutSettings": {
+ "header": "Kdy chcete aktualizaci zpřístupnit ve službě Windows Update?"
+ },
+ "ScopeSettings": {
+ "header": "Nakonfigurujte značky oboru pro tyto zásady."
+ },
+ "StartDateOnlyStartDate": {
+ "label": "První dostupné datum"
+ },
+ "bladeTitle": "Nasazení aktualizací funkcí",
+ "deploymentSettingsTitle": "Nastavení nasazení",
+ "loadError": "Načítání nebylo úspěšné!",
+ "windows11EULA": "Pokud vyberete pro nasazení tuto aktualizaci funkcí, vyjadřujete souhlas s tím, že při použití tohoto operačního systému na zařízení buď (1) byla v multilicenčním programu zakoupena platná licence Windows, nebo (2) jste oprávněný zástupce organizace s pravomocí přijímat jejím jménem příslušné licenční podmínky pro software společnosti Microsoft. Tyto podmínky najdete tady {0}."
+ },
+ "Notifications": {
+ "deploymentSaved": "Nasazení {0} se uložilo.",
+ "newFeatureUpdateDeploymentCreated": "Vytvořilo se nové nasazení aktualizace funkcí."
+ },
+ "TabName": {
+ "deploymentSettings": "Nastavení nasazení",
+ "groupAssignmentSettings": "Přiřazení",
+ "scopeSettings": "Značky oboru"
+ }
+ },
+ "WIPPinRequirements": {
+ "WipLowercaseCharacterPinRequirements": {
+ "allow": "Povolit používání malých písmen v PIN kódu",
+ "notAllow": "Nepovolit používání malých písmen v PIN kódu",
+ "requireAtLeastOne": "Vyžadovat v PIN kódu aspoň jedno malé písmeno"
+ },
+ "WipSpecialCharacterPinRequirements": {
+ "allow": "Povolit používání speciálních znaků v PIN kódu",
+ "notAllow": "Nepovolit používání speciálních znaků v PIN kódu",
+ "requireAtLeastOne": "Vyžadovat v PIN kódu aspoň jeden speciální znak"
+ },
+ "WipUppercaseCharacterPinRequirements": {
+ "allow": "Povolit používání velkých písmen v PIN kódu",
+ "notAllow": "Nepovolit používání velkých písmen v PIN kódu",
+ "requireAtLeastOne": "Vyžadovat v PIN kódu aspoň jedno velké písmeno"
+ }
+ },
+ "OutlookAppConfigSettings": {
+ "AllowUserToChangeSetting": {
+ "title": "Povolit uživateli měnit nastavení",
+ "tooltip": "Určuje, jestli uživatel může měnit nastavení."
+ },
+ "AllowWorkAccounts": {
+ "title": "Povolit pouze pracovní nebo školní účty",
+ "tooltip": " Když povolíte toto nastavení, uživatelé si nebudou moci do Outlooku přidat osobní e-mailový účet a účet úložiště. Pokud má uživatel v Outlooku přidaný osobní účet, zobrazí se mu výzva k jeho odebrání. Pokud uživatel osobní účet neodebere, nebude možné přidat pracovní nebo školní účet."
+ },
+ "BlockExternalImages": {
+ "title": "Blokovat externí obrázky",
+ "tooltip": "Pokud je povoleno blokování externích obrázků, aplikace zabrání stahovat obrázky hostované na internetu, které jsou vložené do textu zprávy. Když se tato možnost nastaví jako nenakonfigurovaná, výchozí nastavení aplikace je Vypnuto."
+ },
+ "ConfigureEmail": {
+ "title": "Konfigurovat nastavení e-mailového účtu"
+ },
+ "DefaultAppSignatureSetting": {
+ "Tooltip": {
+ "android": "Výchozí podpis aplikace označuje, jestli aplikace použije jako výchozí podpis při vytváření zprávy text Získat Outlook pro Android. Pokud se nastavení nakonfiguruje na Vypnuto, výchozí podpis se nebude používat. Uživatelé ale můžou přidat svůj vlastní.\r\n\r\nKdyž se možnost nastaví na Nenakonfigurováno, výchozí nastavení aplikace se nastaví na Zapnuto.",
+ "iOS": "Výchozí podpis aplikace označuje, jestli aplikace použije jako výchozí podpis při vytváření zprávy text Získat Outlook pro iOS. Pokud se nastavení nakonfiguruje na Vypnuto, výchozí podpis se nebude používat. Uživatelé ale můžou přidat svůj vlastní.\r\n\r\nKdyž se možnost nastaví na Nenakonfigurováno, výchozí nastavení aplikace se nastaví na Zapnuto."
+ },
+ "title": "Výchozí podpis aplikace"
+ },
+ "OfficeFeedReplies": {
+ "title": "Informační kanál Discover",
+ "tooltip": "Informační kanál Discover nabízí informace o nejčastěji používaných souborech Office. Standardně se tento kanál povoluje ve chvíli, kdy se pro daného uživatele povoluje Delve. Když se tato možnost nastaví jako nenakonfigurovaná, výchozí nastavení aplikace je Zapnuto."
+ },
+ "OrganizeMailByThread": {
+ "title": "Uspořádat poštu podle vlákna",
+ "tooltip": "Výchozím chováním v Outlooku je seskupit poštovní konverzace do zobrazení konverzace ve vláknech. Pokud se toto nastavení zakáže, Outlook zobrazí každou poštu samostatně a nebude ji seskupovat podle vlákna."
+ },
+ "PlayMyEmails": {
+ "title": "Přehrát moje e-maily",
+ "tooltip": "Funkce Přehrát moje e-maily není v aplikaci povolená ve výchozím nastavení, oprávněným uživatelům se ale nabízí prostřednictvím banneru v doručené poště. Když se tato funkce nastaví na hodnotu Vypnuto, nebude se v aplikaci oprávněným uživatelům nabízet. I tak si uživatelé můžou v aplikaci přehrávání e-mailů povolit ručně. Pokud je nastavená jako Není nakonfigurováno, je výchozí nastavení aplikace Zapnuto a funkce se bude oprávněným uživatelům nabízet."
+ },
+ "SuggestedReplies": {
+ "title": "Navrhované odpovědi",
+ "tooltip": "Když otevřete zprávu, Outlook pod ní může navrhnout odpovědi. Pokud vyberete nějakou navrhovanou odpověď, můžete ji před odesláním upravit."
+ },
+ "SyncCalendars": {
+ "title": "Synchronizovat kalendáře",
+ "tooltip": "Umožňuje nakonfigurovat, jestli uživatelé můžou synchronizovat svůj kalendář Outlooku s nativní aplikací a databází kalendáře."
+ },
+ "TextPredictions": {
+ "title": "Predikce textu",
+ "tooltip": "Aplikace Outlook může při psaní zpráv navrhovat slova a fráze. Když Outlook nabídne návrh, přijměte ho potáhnutím prstem. Když se nenakonfiguruje, bude ve výchozím nastavení aplikace nastavené na Zapnuté."
+ },
+ "ThemesEnabled": {
+ "title": "Motivy jsou povolené",
+ "tooltip": "Určete, jestli může uživatel používat vlastní vizuální motiv."
+ }
+ },
+ "AssignmentFilters": {
+ "assignmentFilterColumnHeader": "Filtr",
+ "noFilters": "Žádné"
+ },
+ "Platform": {
+ "all": "Vše",
+ "android": "Správce zařízení s Androidem",
+ "androidAOSP": "Android (AOSP)",
+ "androidEnterprise": "Android Enterprise",
+ "androidForWork": "Android Enterprise",
+ "androidWorkProfile": "Android Enterprise",
+ "common": "Společné",
+ "iOS": "iOS/iPadOS",
+ "iosAndAndroidPlatformLabel": "iOS a Android",
+ "iosCommaAndroidPlatformLabel": "iOS, Android",
+ "linux": "Linux",
+ "macOS": "macOS",
+ "unknown": "Neznámé",
+ "unsupported": "Nepodporováno",
+ "windows": "Windows",
+ "windows10": "Windows 10 a novější",
+ "windows10CM": "Windows 10 a novější (ConfigMgr)",
+ "windows10Holo": "Windows 10 Holographic",
+ "windows10Mobile": "Windows 10 Mobile",
+ "windows10Team": "Windows 10 Team",
+ "windows10X": "Windows 10X",
+ "windows8": "Windows 8.1 a novější",
+ "windows8And10": "Windows 8 a 10",
+ "windowsPhone": "Windows Phone 8.1",
+ "windows10AndLater": "Windows 10 a novější",
+ "windows10AndWindowsServer": "Windows 10, Windows 11 a Windows Server (ConfigMgr)",
+ "windows10andLaterCM": "Windows 10 a novější (ConfigMgr)",
+ "holoLens": "HoloLens",
+ "surfaceHub2": "Surface Hub 2",
+ "surfaceHub2S": "Surface Hub 2S",
+ "windowsPC": "Počítač s Windows"
+ },
+ "AppInformationTab": {
+ "Error": {
+ "multipleChildApps": "Pokud nahraný balíček obsahuje jednu aplikaci, dá se aplikace LOB pro macOS nainstalovat jenom jako spravovaná."
+ },
+ "Info": {
+ "AppStoreUrl": {
+ "android": "Zadejte odkaz na popis aplikace v obchodě Google Play. Například:",
+ "androidLink": "https://play.google.com/store/apps/details?id=com.microsoft.office.outlook",
+ "windows": "Zadejte odkaz na popis aplikace v Microsoft Storu. Například:",
+ "windowsLink": "https://www.microsoft.com/en-us/p/microsoft-to-do-lists-tasks-reminders/9nblggh5r558"
+ },
+ "appPackageFile": "Soubor, který obsahuje vaši aplikaci ve formátu, který se dá na zařízení zkušebně načíst. Mezi platné typy balíčků patří: Android (.apk), iOS (.ipa), macOS (.pkg, .intunemac), Windows (.msi, .appx, .appxbundle, .msix a .msixbundle).",
+ "applicableDeviceType": "Vyberte typy zařízení, které můžou tuto aplikaci nainstalovat.",
+ "category": "Kategorizujte aplikaci, abyste uživatelům usnadnili zatřídit ji a najít v aplikaci Portál společnosti. Pro aplikaci můžete zvolit několik kategorií.",
+ "categoryLink": "https://docs.microsoft.com/en-us/intune/apps/apps-add#create-and-edit-categories-for-apps",
+ "description": "Pomozte uživatelům zařízení pochopit, co aplikace umí nebo co v ní můžou dělat. Tento popis se bude zobrazovat na Portálu společnosti.",
+ "developer": "Název společnosti nebo jméno vývojáře, který aplikaci vyvinul. Tyto informace budou viditelné pro uživatele přihlášené do centra pro správu.",
+ "displayVersion": "Verze aplikace. Tyto informace se budou uživatelům zobrazovat na Portálu společnosti.",
+ "infoUrl": "Odkažte uživatele na web nebo dokumentaci s dalšími informacemi o této aplikaci. Adresu URL informací uvidí uživatelé v aplikaci Portál společnosti.",
+ "isFeatured": "Vybrané aplikace jsou umístěny prominentně v aplikaci Portál společnosti, aby se k nim uživatelé mohli rychle dostat.",
+ "learnMore": "Další informace",
+ "logo": "Nahrajte logo, které je přidružené k této aplikaci. Toto logo se bude zobrazovat vedle aplikace všude v aplikaci Portál společnosti.",
+ "macOSDmgAppPackageFile": "Soubor, který obsahuje vaši aplikaci ve formátu, který se dá na zařízení zkušebně načíst. Platný typ balíčku: .dmg.",
+ "minOperatingSystem": "Vyberte nejstarší verzi operačního systému, na které je možné aplikaci nainstalovat. Pokud aplikaci přiřadíte k zařízení s dřívějším operačním systémem, nebude nainstalována.",
+ "name": "Přidejte název aplikace. Tento název se bude zobrazovat v seznamu aplikací Intune a uživatelům v aplikaci Portál společnosti.",
+ "notes": "Přidejte další poznámky o aplikaci. Poznámky budou viditelné pro uživatele přihlášené do centra pro správu.",
+ "owner": "Jméno osoby v organizaci, která spravuje licencování nebo je kontaktním osobou pro tuto aplikaci. Toto jméno bude viditelné pro uživatele přihlášené do centra pro správu.",
+ "packageName": "Kontaktujte výrobce zařízení získejte název balíčku aplikace. Příklad názvu balíčku: com.example.app",
+ "privacyUrl": "Zadejte odkaz pro lidi, kteří se chtějí dozvědět více o nastavení ochrany osobních údajů a podmínkách aplikace. Adresa URL ochrany osobních údajů uvidí uživatelé v aplikaci Portál společnosti.",
+ "publisher": "Název vývojáře nebo společnosti, kteří aplikaci distribuují. Tyto informace se budou uživatelům zobrazovat na Portálu společnosti.",
+ "selectApp": "Vyhledejte v App Storu aplikace pro iOS, které chcete nasadit s Intune.",
+ "useManagedBrowser": "Pokud je to požadováno, tato webová aplikace se uživateli otevře v prohlížeči chráněném s Intune, jako je Microsoft Edge nebo Intune Managed Browser. Toto nastavení platí pro zařízení s iOS i Androidem.",
+ "useManagedBrowserLink": "https://docs.microsoft.com/en-us/intune/apps/app-configuration-managed-browser",
+ "win32AppPackageFile": "Soubor, který obsahuje vaši aplikaci ve formátu, který se dá zkušebně načíst na zařízení. Platné typy balíčků: .intunewin."
+ },
+ "descriptionPreview": "Preview",
+ "descriptionRequired": "Popis je povinný.",
+ "editDescription": "Upravit popis",
+ "macOSMinOperatingSystemAdditionalInfo": "Minimální operační systém pro nahrání souboru .pkg je macOS 10.14. Pokud chcete vybrat starší minimální operační systém, nahrajte soubor .intunemac.",
+ "name": "Informace o aplikaci",
+ "nameForOfficeSuitApp": "Informace o sadě aplikací"
+ },
+ "Tooltips": {
+ "PolicySettings": {
+ "TouchId1": {
+ "android": "Na Androidu můžete povolit možnost používat identifikaci na základě otisku prstu místo PIN kódu. Když uživatelé budou chtít získat přístup k této aplikaci přes svoje pracovní účty, zobrazí se jim výzva, aby poskytli svoje otisky prstů.",
+ "iOS": "Na zařízeních s iOS/iPadOS můžete namísto PIN kódu povolit identifikaci pomocí otisku prstu. Při přístupu uživatelů k této aplikaci pomocí pracovního účtu se zobrazí výzva k načtení otisku prstu.",
+ "mac": "Na zařízeních s Macem můžete namísto PIN kódu povolit identifikaci pomocí otisku prstu. Při přístupu uživatelů k této aplikaci pomocí pracovního účtu se zobrazí výzva k načtení otisku prstu."
+ },
+ "appSharingFromLevel1": "Pokud chcete určit, ze kterých aplikací může tato aplikace přijímat data, vyberte jednu z následujících možností:",
+ "appSharingFromLevel2": "{0}: Povolí přijímat v dokumentech a účtech organizace jen data z jiných aplikací spravovaných zásadami.",
+ "appSharingFromLevel3": "{0}: Povolí přijímat v dokumentech a účtech organizace data z jakékoli aplikace.",
+ "appSharingFromLevel4": "{0}: Nepovolí přijímat v dokumentech a účtech organizace data z jakékoli aplikace.",
+ "appSharingFromLevel5": "{0}: Povolit přenos dat z jakékoli aplikace a považovat všechna příchozí data bez identity uživatele za data organizace",
+ "appSharingToLevel1": "Pokud chcete určit, kterým aplikacím může tato aplikace posílat data, vyberte jednu z následujících možností:",
+ "appSharingToLevel2": "{0}: Povolí posílat data organizace jen do jiných aplikací spravovaných zásadami.",
+ "appSharingToLevel3": "{0}: Povolí posílat data organizace do jakékoli aplikace.",
+ "appSharingToLevel4": "{0}: Nepovolí posílat data organizace do žádné aplikace.",
+ "appSharingToLevel5": "{0}: Povolit přenos jen do jiných aplikací spravovaných zásadami a přenos souborů do ostatních aplikací spravovaných pomocí MDM na registrovaných zařízeních",
+ "appSharingToLevel6": "{0}: Povolit přenos jen do jiných aplikací spravovaných zásadami a filtrovat dialogy operačního systému pro otevření v určité aplikaci nebo pro sdílení tak, aby zobrazovaly jen aplikace spravované zásadami",
+ "conditionalEncryption1": "Vyberte {0}, pokud chcete zakázat šifrování aplikací pro interní úložiště aplikací, když se na zaregistrovaném zařízení zjistí šifrování zařízení.",
+ "conditionalEncryption2": "Poznámka: Intune může detekovat pouze registraci zařízení pomocí Intune MDM. Externí úložiště aplikací se bude i nadále šifrovat, aby se zajistilo, že k datům nebudou mít přístup nespravované aplikace.",
+ "contactSyncMac": "Když se tato možnost zakáže, aplikace nebudou moct ukládat kontakty do nativního adresáře.",
+ "contactsSync": "Pokud chcete zabránit aplikacím spravovaným zásadami ukládat data do nativních aplikací na zařízeních (jako jsou Kontakty, Kalendář a widgety) nebo pokud chcete zabránit používání doplňků v aplikacích spravovaných zásadami, zvolte Blokovat. Pokud zvolíte Povolit, může aplikace spravovaná zásadami ukládat data do nativních aplikací nebo používat doplňky, pokud jsou tyto funkce v aplikaci spravované zásadami podporovány a povoleny.
Aplikace můžou poskytovat další možnosti konfigurace pomocí zásad pro konfiguraci aplikací. Další informace najdete v dokumentaci k aplikaci.",
+ "encryptionAndroid1": "U aplikací přidružených k zásadě správy mobilních aplikací Intune poskytuje šifrování společnost Microsoft. Data se šifrují synchronně během V/V operací se soubory podle nastavení v zásadě správy mobilních aplikací. Spravované aplikace na Androidu používají šifrování AES-128 v režimu CBC s využitím kryptografických knihoven platformy. Metoda šifrování nedodržuje standard FIPS 140-2. Šifrování SHA-256 se podporuje jako explicitní příkaz prostřednictvím parametru SigAlg a je funkční jenom na zařízeních 4.2 a novějších. Obsah v úložišti zařízení se šifruje vždy.",
+ "encryptionAndroid2": "Pokud ve vaší zásadě aplikace vyžadujete šifrování, musí koncový uživatel nastavit a používat PIN kód pro přístup k zařízení. Pokud není PIN kód pro přístup k zařízení nastavený, aplikace se nespustí a koncovému uživateli se místo toho zobrazí zpráva s informacemi o tom, že jeho společnost vyžaduje, aby pro přístup k dané aplikaci nejprve povolil PIN kód zařízení.",
+ "encryptionMac1": "U aplikací přidružených k zásadě správy mobilních aplikací Intune poskytuje šifrování společnost Microsoft. Data se šifrují synchronně během V/V operací se soubory podle nastavení v zásadě správy mobilních aplikací. Spravované aplikace na Macu používají šifrování AES-128 v režimu CBC s využitím kryptografických knihoven platformy. Metoda šifrování nedodržuje standard FIPS 140-2. Šifrování SHA-256 se podporuje jako explicitní příkaz prostřednictvím parametru SigAlg a je funkční jenom na zařízeních 4.2 a novějších. Obsah v úložišti zařízení se šifruje vždy.",
+ "faceId1": "Tam, kde je to možné, můžete povolit, aby se místo PIN kódu používala identifikace tváře. Až uživatelé budou přistupovat k této aplikaci a svým pracovním účtům, zobrazí se jim výzva, aby poskytli identifikaci tváře.",
+ "faceId2": "Pokud chcete pro přístup k aplikaci povolit identifikaci tváře namísto PIN kódu, vyberte Ano.",
+ "managementLevelsAndroid1": "Pomocí této možnosti můžete zadat, jestli tyto zásady platí pro zařízení správce zařízení s Androidem, zařízení s Android Enterprise nebo pro nespravovaná zařízení.",
+ "managementLevelsAndroid2": "{0}: Nespravovaná zařízení jsou zařízení, na kterých se nezjistila správa Intune MDM. Do toho patří i dodavatelé MDM třetích stran.",
+ "managementLevelsAndroid3": "{0}: Zařízení spravovaná v Intune používající rozhraní API pro správu zařízení s Androidem.",
+ "managementLevelsAndroid4": "{0}: Zařízení spravovaná v Intune používající pracovní profily Android Enterprise nebo úplnou správu zařízení Android Enterprise.",
+ "managementLevelsIos1": "Pomocí této možnosti můžete zadat, jestli tyto zásady platí pro spravovaná zařízení MDM, nebo pro nespravovaná zařízení.",
+ "managementLevelsIos2": "{0}: Nespravovaná zařízení jsou zařízení, na kterých se nezjistila správa Intune MDM. Do toho patří i dodavatelé MDM třetích stran.",
+ "managementLevelsIos3": "{0}: Spravovaná zařízení se spravují pomocí Intune MDM.",
+ "minAppVersion": "Definujte číslo minimální požadované verze aplikace, kterou by uživatel měl používat, aby získal k aplikaci zabezpečený přístup.",
+ "minAppVersionWarning": "Definujte číslo minimální doporučené verze aplikace, kterou by uživatel měl používat pro zabezpečený přístup k aplikaci.",
+ "minOsVersion": "Definujte číslo minimální požadované verze operačního systému, kterou by uživatel měl používat, aby získal k aplikaci zabezpečený přístup.",
+ "minOsVersionWarning": "Definujte číslo minimální doporučené verze operačního systému, kterou by uživatel měl používat, aby získal k aplikaci zabezpečený přístup.",
+ "minPatchVersion": "Definujte nejstarší požadovanou úroveň opravy zabezpečení Androidu, kterou uživatel může mít, aby mohl získat zabezpečený přístup k aplikaci.",
+ "minPatchVersionWarning": "Definujte nejstarší doporučenou úroveň opravy zabezpečení Androidu, kterou uživatel může mít, aby měl zabezpečený přístup k aplikaci.",
+ "minSdkVersion": "Definujte minimální požadovanou verzi sady Intune Application Protection Policy SDK, kterou by uživatel měl používat, aby získal k aplikaci zabezpečený přístup.",
+ "requireAppPinDefault": "Pokud chcete zakázat PIN kód aplikace, když se na zaregistrovaném zařízení zjistí zámek, vyberte Ano.
",
+ "targetAllApps1": "Pomocí této možnosti můžete své zásady zacílit na aplikace a zařízení v jakémkoli stavu správy.",
+ "targetAllApps2": "Pokud má uživatel zásady, které cílí na konkrétní stav správy, toto nastavení se při řešení konfliktů zásad nahradí.",
+ "touchId2": "Pokud chcete, aby se pro přístup k aplikaci místo PIN kódu vyžadovala identifikace pomocí otisku prstu, zvolte {0}."
+ },
+ "Tap": {
+ "pinResetAfterNumberOfDays": "Zadejte počet dní, který musí uplynout, než bude potřeba, aby uživatel PIN kód resetoval.",
+ "previousPinBlockCount": "Toto nastavení určuje počet předchozích kódů PIN, které Intune zachová. Všechny nové PIN kódy se musí lišit od těch, které Intune zachovává."
+ },
+ "WipPolicySettings": {
+ "25": "",
+ "allowWindowsSearch": "Tato možnost umožní službě Windows Search nadále hledat v šifrovaných datech.",
+ "authoritativeIpRanges": "Toto nastavení povolte, pokud chcete přepsat automatické zjišťování rozsahů IP adres ve Windows.",
+ "authoritativeProxyServers": "Toto nastavení povolte, pokud chcete přepsat automatické zjišťování rozsahů proxy serverů ve Windows.",
+ "checkInput": "Zkontrolovat platnost vstupu",
+ "dataRecoveryCert": "Certifikát pro obnovení je speciální certifikát systému souborů EFS (Encrypting File System), který můžete použít k obnovení šifrovaných souborů v případě, že se ztratí nebo poškodí váš šifrovací klíč. Potřebujete k tomu vytvořit certifikát pro obnovení a zadat ho tady. Další informace najdete tady.",
+ "enterpriseCloudResources": "Zadejte cloudové prostředky, které se budou považovat za firemní a budou se chránit pomocí zásad Windows Information Protection. Pokud chcete zadat více prostředků, oddělte jednotlivé záznamy znakem |.
Pokud máte ve společnosti nakonfigurované proxy, můžete zadat proxy server, přes který se bude směrovat provoz k vámi zadaným cloudovým prostředkům.
URL[,Proxy]|URL[,Proxy]
Bez proxy: contoso.sharepoint.com|contoso.visualstudio.com
S proxy: contoso.sharepoint.com,proxy.contoso.com|contoso.visualstudio.com,proxy.contoso.com
",
+ "enterpriseIPv4Ranges": "Zadejte rozsahy IPv4, které tvoří vaši firemní síť. Tyto rozsahy spolu s názvy podnikových síťových domén, které zadáte, definují ohraničení firemní sítě.
Toto nastavení vyžaduje, aby byla povolená služba Windows Information Protection.
Pokud chcete zadat více záznamů, oddělejte jednotlivé záznamy čárkou.
Příklad: 3.4.0.1-3.4.255.255,192.168.1.1-192.168.255.255
",
+ "enterpriseIPv6Ranges": "Zadejte rozsahy IPv6, které tvoří vaši firemní síť. Tyto rozsahy spolu s názvy podnikových síťových domén, které zadáte, definují ohraničení firemní sítě.
Pokud chcete zadat více záznamů, oddělte jednotlivé záznamy čárkou.
Příklad: 2001:4898:dc05::-2001:4898:dc05:ffff:ffff:ffff:ffff:ffff,2a01:110::-2a01:110:7fff:ffff:ffff:ffff:ffff:ffff
",
+ "enterpriseInternalProxyServers": "Pokud máte ve společnosti nakonfigurované proxy, můžete zadat proxy server, přes který se bude směrovat provoz ke cloudovým prostředkům zadaným v nastaveních podnikových cloudových prostředků.
Pokud potřebujete zadat více hodnot, oddělte jednotlivé záznamy středníkem.
Příklad: contoso.internalproxy1.com;contoso.internalproxy2.com
",
+ "enterpriseNetworkDomainNames": "Zadejte názvy DNS, které utváří vaši firemní síť. Spolu se zadanými rozsahy IP adres definují ohraničení firemní sítě. Pokud potřebujete zadat více hodnot, oddělte jednotlivé záznamy čárkou.
Toto nastavení vyžaduje, aby byla povolená služba Windows Information Protection.
Příklad: corp.contoso.com,region.contoso.com
",
+ "enterpriseProtectedDomainNames": "Zadejte názvy DNS, které tvoří vaši firemní síť. Pomocí nich a rozsahů IP adres, které zadáte, se definují hranice vaší firemní sítě. Pokud potřebujete zadat více hodnot, oddělte jednotlivé položky znakem |.
Toto nastavení se vyžaduje, aby se mohla povolit funkce Windows Information Protection.
Příklad: corp.contoso.com|region.contoso.com
",
+ "enterpriseProxyServers": "Pokud máte v podnikové síti externí proxy servery, zadejte je sem. Když zadáváte adresu proxy serveru, měli byste zadat také port, přes který bude probíhat přenos a ochrana prostřednictvím Windows Information Protection.
Poznámka: Tento seznam nesmí zahrnovat servery uvedené v seznamu podnikových interních proxy serverů. Pokud potřebujete zadat více hodnot, oddělte jednotlivé záznamy středníkem.
Příklad: proxy.contoso.com:80;proxy2.contoso.com:80
",
+ "maxInactivityTime1": "Určuje maximální dobu (v minutách), po kterou může zařízení zůstat neaktivní, než se zamkne PIN kódem nebo heslem. Uživatelé si můžou vybrat jakoukoli hodnotu vypršení časového limit menší než maximální doba zadaná v aplikaci Nastavení. Poznámka: Lumia 950 a 950XL mají maximální hodnotu časového limitu 5 minut bez ohledu na hodnotu, kterou určují tyto zásady.",
+ "maxInactivityTime2": "0 (výchozí) – Není definovaný žádný časový limit. Výchozí hodnota 0 se interpretuje tak, že není definovaný žádný časový limit.",
+ "maxPasswordAttempts1": "Tyto zásady se chovají jinak na mobilním a jinak na desktopovém zařízení.",
+ "maxPasswordAttempts2": "Když uživatel dosáhne hodnoty nastavené v těchto zásadách na mobilním zařízení, zařízení se vymaže.",
+ "maxPasswordAttempts3": "Když uživatel dosáhne hodnoty nastavené v těchto zásadách na stolním počítači, počítač se nevymaže. Místo toho se počítač převede do režimu obnovení BitLockeru, který sice znepřístupní data, ale je možné je obnovit. Pokud se nezapne BitLocker, zásady se nedají vynutit.",
+ "maxPasswordAttempts4": "Než uživatel dosáhne limitu neúspěšných pokusů, pošle se mu na zamykací obrazovku upozornění, že další neúspěšné pokusy uzamknou jeho počítač. Jakmile uživatel limitu dosáhne, zařízení se automaticky restartuje a zobrazí stránku obnovení BitLockeru. Tato stránka uživatele vyzve k zadání obnovovacího klíče BitLockeru.",
+ "maxPasswordAttempts5": "0 (výchozí) – Zařízení se po zadání nesprávného PIN kódu nebo hesla nikdy nevymaže.",
+ "maxPasswordAttempts6": "Pokud jsou všechny hodnoty zásad = 0, je nejbezpečnější hodnotou 0. Jinak je nejbezpečnější hodnotou zásad Min.",
+ "mdmDiscoveryUrl": "Zadejte adresu URL pro koncový bod registrace MDM, který budou používat uživatelé registrující se do MDM. Tato hodnota se standardně zadává pro Intune.",
+ "minimumPinLength1": "Celočíselná hodnota, která nastavuje minimální počet znaků vyžadovaných pro PIN kód. Výchozí hodnota je 4. Nejnižší počet, který pro toto nastavení zásad můžete nakonfigurovat, je 4. Největší hodnota, kterou můžete nakonfigurovat, musí být menší než 127 nebo číslo nakonfigurované v nastavení zásady Maximální délka PIN kódu, podle toho, co je menší.",
+ "minimumPinLength2": "Pokud nakonfigurujete toto nastavení zásad, délka PIN kódu musí být větší nebo rovna tomuto číslu. Pokud toto nastavení zásad zakážete nebo nenakonfigurujete, délka PIN kódu musí být větší nebo rovna 4.",
+ "name": "Název tohoto ohraničení sítě",
+ "neutralResources": "Pokud máte ve společnosti koncové body pro přesměrování ověřování, zadejte je sem. Umístění, která se tady zadají, se považují buď za osobní, nebo za podniková. Záleží to na kontextu připojení před přesměrováním.
Pokud potřebujete zadat více hodnot, oddělte jednotlivé záznamy čárkou.
Příklad: sts.contoso.com,sts.contoso2.com
",
+ "passportForWork1": "Hodnota, která nastavuje Windows Hello pro firmy jako metodu přihlašování do Windows",
+ "passportForWork2": "Výchozí hodnota je true. Pokud tyto zásady nastavíte na false, uživatel nemůže zřídit Windows Hello pro firmy. Výjimkou jsou mobilní telefony připojené k Azure Active Directory, u kterých je zřízení povinné.",
+ "pinExpiration": "Největší hodnota, kterou můžete pro toto nastavení zásad nastavit, je 730. Nejmenší hodnota, kterou můžete pro toto nastavení zásad nastavit, je 0. Pokud tyto zásady nastavíte na 0, platnost PIN kódu uživatele nikdy nevyprší.",
+ "pinHistory1": "Největší hodnota, kterou můžete pro toto nastavení zásad nastavit, je 50. Nejmenší hodnota, kterou můžete pro toto nastavení zásad nastavit, je 0. Pokud tyto zásady nastavíte na 0, ukládání předchozích PIN kódů se nebude vyžadovat.",
+ "pinHistory2": "Aktuální PIN kód uživatele je součástí sady PIN kódů přidružených k uživatelskému účtu. Když se PIN kód resetuje, historie PIN kódů se nezachová.",
+ "protectUnderLock": "Chrání obsah aplikací, když je zařízení zamknuté.",
+ "protectionModeBlock": "Zablokovat: Znemožňuje, aby podniková data opustila chráněné aplikace.
",
+ "protectionModeOff": "Vypnuto: Uživatel může přemístit data mimo chráněné aplikace. Neprotokolují se žádné akce.
",
+ "protectionModeOverride": "Povolit potlačení: Když se uživatel pokusí přemístit data z chráněné do nechráněné aplikace, zobrazí se mu dotaz. Pokud se rozhodne tento dotaz potlačit, akce se zaznamená do protokolu.
",
+ "protectionModeSilent": "Tiché: Uživatelé můžou přemístit data mimo chráněné aplikace. Tyto akce se protokolují.
",
+ "required": "Požadováno",
+ "revokeOnMdmHandoff": "Přidáno ve Windows 10, verze 1703. Tato zásada řídí, jestli se mají odvolat klíče ochrany WIP při upgradu zařízení z MAM na MDM. Pokud je nastavená na Vypnuto, klíče se neodvolají a uživatel bude mít po upgradu dál přístup k chráněným souborům. Takové nastavení se doporučuje, když je služba MDM nakonfigurovaná se stejným EnterpriseID ochrany WIP jako služba MAM.",
+ "revokeOnUnenroll": "Tato možnost způsobí odvolání šifrovacích klíčů, když zařízení zruší svoji registraci k těmto zásadám.",
+ "rmsTemplateForEdp": "Identifikátor TemplateID GUID, který se použije k šifrování RMS. Šablona Azure RMS umožňuje správci IT konfigurovat podrobnosti o tom, kdo a jak dlouho má přístup k souboru chráněnému pomocí RMS.",
+ "showWipIcon": "Tato možnost dá uživateli pomocí překryvné ikony vědět, že jedná v kontextu podniku.",
+ "useRmsForWip": "Určuje, jestli se má pro WIP povolit šifrování Azure RMS."
+ },
+ "requireAppPin": "Pokud chcete zakázat PIN kód aplikace, když se na zaregistrovaném zařízení zjistí zámek, vyberte Ano.
Poznámka: Na iOS/iPadOS nemůže Intune zjišťovat registraci zařízení pomocí řešení EMM třetí strany.
"
+ },
+ "Autopilot": {
+ "AssignResourceAccount": {
+ "createNewCommandMenu": "Vytvořit nový",
+ "createNewResourceAccountInfo": "\r\nVytvořte během registrace nový účet prostředku. Účet prostředku se hned přidá do tabulky účtů prostředků, ale dokud se zařízení nezaregistruje a neověří se předplatné Surface Hubu, nebude aktivní. Další informace o účtech prostředků
\r\n ",
+ "createNewResourceTitle": "Vytvořit nový účet prostředku",
+ "deviceNameInvalid": "Název zařízení nemá platný formát.",
+ "deviceNameRequired": "Název zařízení je povinný.",
+ "editResourceAccountLabel": "Upravit",
+ "selectExistingCommandMenu": "Vybrat existující"
+ },
+ "Device": {
+ "ComputerName": {
+ "validFormat": "Názvy musí mít nanejvýš 15 znaků a můžou obsahovat písmena (a–z, A–Z), číslice (0–9) a spojovníky. Názvy se nesmí skládat jen z číslic a nemohou obsahovat mezery."
+ },
+ "Header": {
+ "addressableUserName": "Popisný název uživatele",
+ "azureADDevice": "Přidružené zařízení Azure AD",
+ "batch": "Značka skupiny",
+ "dateAssigned": "Datum přiřazení",
+ "deviceAccountFriendlyName": "Popisný název účtu zařízení",
+ "deviceAccountPwd": "Heslo účtu zařízení",
+ "deviceAccountUpn": "Účet zařízení",
+ "deviceDisplayName": "Název zařízení",
+ "deviceName": "Název zařízení",
+ "deviceUseType": "Typ využití zařízení",
+ "enrollmentState": "Stav registrace",
+ "intuneDevice": "Přidružené zařízení Intune",
+ "lastContacted": "Naposledy kontaktováno",
+ "make": "Výrobce",
+ "model": "Model",
+ "profile": "Přiřazený profil",
+ "profileStatus": "Stav profilu",
+ "purchaseOrderId": "Nákupní objednávka",
+ "resourceAccount": "Účet prostředku",
+ "serialNumber": "Sériové číslo",
+ "userPrincipalName": "Uživatel"
+ },
+ "SurfaceHub": {
+ "friendlyNameRequired": "Popisný název je povinný.",
+ "pwdRequired": "Heslo je povinné.",
+ "upnRequired": "Účet zařízení je povinný.",
+ "upnValidFormat": "Hodnoty můžou obsahovat písmena (a–z, A–Z), číslice (0–9) a spojovníky. Hodnoty nesmí obsahovat mezeru."
+ }
+ },
+ "DeviceUseType": {
+ "meetingAndPresentation": "Schůzka a prezentace",
+ "teamCollaboration": "Spolupráce týmů"
+ },
+ "Devices": {
+ "featureDescription": "Windows Autopilot umožňuje přizpůsobit pro vaše uživatele software spouštěný při prvním zapnutí (OOBE).",
+ "importErrorStatus": "Některá zařízení se neimportovala. Pro další informace klikněte sem.",
+ "importPendingStatus": "Probíhá import. Uplynulý čas: {0} min. Tento proces může trvat až {1} min."
+ },
+ "DirectoryService": {
+ "activeDirectoryAD": "Připojené službou Hybrid Azure AD Join",
+ "activeDirectoryADLabel": "Hybrid Azure AD a Autopilot",
+ "azureAD": "Připojeno k Azure AD",
+ "unknownType": "Neznámý typ"
+ },
+ "Filter": {
+ "enrollmentState": "Stav",
+ "profile": "Stav profilu"
+ },
+ "OOBE": {
+ "AddressableUserName": {
+ "validateEmpty": "Uživatelsky přívětivý název nemůže být prázdný."
+ },
+ "ApplyComputerNameTemplate": {
+ "infoBalloon": "Pokud chcete do svých zařízení během registrace přidávat názvy, vytvořte šablonu pro vytváření názvů.",
+ "label": "Použít šablonu názvu zařízení"
+ },
+ "ApplyComputerNameTemplateDisabled": {
+ "label": "Pro typ nasazení Autopilot připojený službou Hybrid Azure AD Join se pro jména zařízení používají nastavení zadaná v konfiguraci připojení k doméně."
+ },
+ "ComputerNameTemplate": {
+ "emptyValue": "MyCompany-%RAND:4%",
+ "label": "Zadat název",
+ "noDisallowedChars": "Název může obsahovat jen alfanumerické znaky, spojovníky, %SERIAL% nebo %RAND:x%.",
+ "serialLength": "U %SERIAL% se nedá použít více než 7 znaků.",
+ "validateLessThan15Chars": "Název musí obsahovat nanejvýš 15 znaků.",
+ "validateNoSpaces": "Názvy počítačů nemůžou obsahovat mezery.",
+ "validateNotAllNumbers": "Název musí navíc obsahovat písmena nebo spojovníky.",
+ "validateNotEmpty": "Název nesmí být prázdný.",
+ "validateOnlyOneMacro": "Název musí obsahovat buď %SERIAL%, nebo %RAND:x%, ne obojí."
+ },
+ "ConfigureComputerNameTemplate": {
+ "description": "Vytvořte jedinečný název pro zařízení. Názvy musí mít nanejvýš 15 znaků, můžou obsahovat písmena (a–z, A–Z), číslice (0–9) a spojovníky. Názvy se nesmí skládat jen z číslic ani obsahovat mezeru. Pokud chcete přidat sériové číslo specifické pro daný hardware, použijte makro %SERIAL%. Kromě toho můžete použít makro %RAND:x%, které přidá náhodný řetězec číslic. Písmeno x je počet číslic, které se mají přidat."
+ },
+ "EnableWhiteGlove": {
+ "infoBalloon": "Pokud chcete zaregistrovat zařízení a zřídit všechny aplikace a nastavení v kontextu systému, povolte možnost stisknout 5krát tlačítko Windows, aby se spustil software spouštěný při prvním zapnutí počítače. Aplikace a nastavení v kontextu uživatele se nainstalují, až se uživatel přihlásí.",
+ "label": "Povolit předem zřízené nasazení"
+ },
+ "HybridAzureADSkipConnectivityCheck": {
+ "infoBalloon": "Tok připojení k hybridní implementaci Azure AD Autopilot bude pokračovat i v případě, že během spuštění OOBE nevytvoří připojení řadiče domény.",
+ "label": "Přeskočit kontrolu připojení AD (Preview)"
+ },
+ "accountType": "Typ uživatelského účtu",
+ "accountTypeInfo": "Zadejte, jestli jsou uživatelé na zařízení správci, nebo standardní uživatelé. Poznámka: Toto nastavení neplatí pro účty globálních správců nebo správců společnosti. Tyto účty nemůžou být standardní uživatelé, protože mají přístup ke všem funkcím pro správu v Azure AD.",
+ "configOOBEInfo": "\r\nNakonfigurujte software spouštěný při prvním zapnutí zařízení Autopilot.\r\n
",
+ "configureDevice": "Režim nasazení",
+ "configureDeviceHintForSurfaceHub2": "Autopilot podporuje režim automatického nasazení jen pro Surface Hub 2. Tento režim nepřidružuje uživatele k registrovanému zařízení, proto nevyžaduje jeho přihlašovací údaje.",
+ "configureDeviceHintForWindowsPC": "\r\n Režim nasazení určuje, jestli uživatel musí pro zřízení zařízení zadat přihlašovací údaje.\r\n
\r\n \r\n - \r\n Řízení uživatelem: Zařízení se přidruží k uživateli, který zařízení registruje, a při zřizování zařízení se musí zadat přihlašovací údaje uživatele.\r\n
\r\n - \r\n Nasazení sebou samým (Preview): Zařízení nejsou přidružená k uživateli, který je registruje, a při zřizování zařízení se nevyžadují přihlašovací údaje uživatele.\r\n
\r\n
",
+ "createSurfaceHub2Info": "Nakonfigurujte nastavení registrace Autopilot pro zařízení Surface Hub 2. Standardně Autopilot umožňuje v prostředí prvního spuštění počítače přeskočit ověřování uživatelů. Další informace o Windows Autopilotu pro Surface Hub 2",
+ "createWindowsPCInfo": "\r\n\r\nPro zařízení Autopilot v režimu automatického nasazení se automaticky povolí následující možnosti:\r\n
\r\n\r\n - \r\n Přeskočit výběr pracovního nebo domácího využití\r\n
\r\n - \r\n Přeskočit registraci OEM a konfiguraci OneDrivu\r\n
\r\n - \r\n Přeskočit ověřování uživatelů v prostředí prvního spuštění počítače\r\n
\r\n
",
+ "endUserDevice": "Řízení uživatelem",
+ "hideEscapeLink": "Skrýt možnosti změny účtu",
+ "hideEscapeLinkInfo": "Možnosti změnit účet a začít znovu s jiným účtem se zobrazují během počáteční instalace zařízení na přihlašovací stránce společnosti a na chybové stránce domény. Pokud chcete tyto možnosti skrýt, musíte v Azure Active Directory nakonfigurovat branding společnosti (vyžaduje Windows 10 verze 1809 nebo novější nebo Windows 11).",
+ "info": "Nastavení profilu AutoPilot definují prostředí, které uživatelé uvidí, když poprvé spustí Windows. ",
+ "language": "Jazyk (oblast)",
+ "languageInfo": "Zadejte jazyk a oblast, které se použijí.",
+ "licenseAgreement": "Licenční podmínky pro software společnosti Microsoft",
+ "licenseAgreementInfo": "Zadejte, jestli se uživatelům má zobrazovat smlouva EULA.",
+ "plugAndForgetDevice": "Nasazení sebou samým (Preview)",
+ "plugAndForgetGA": "Automatické nasazení",
+ "privacySettingWarning": "Pro zařízení s Windows 10 verze 1903 a novější nebo s Windows 11 se změnila výchozí hodnota pro shromažďování diagnostických dat. ",
+ "privacySettings": "Nastavení soukromí",
+ "privacySettingsInfo": "Zadejte, jestli se uživatelům mají zobrazovat nastavení ochrany osobních údajů.",
+ "showCortanaConfigurationPage": "Konfigurace Cortany",
+ "showCortanaConfigurationPageInfo": "Možnost Zobrazit umožní, aby se během spuštění představila konfigurace Cortany.",
+ "skipEULAWarning": "Důležité informace o skrývání licenčních podmínek",
+ "skipKeyboardSelection": "Automaticky nakonfigurovat klávesnici",
+ "skipKeyboardSelectionInfo": "Když se tato možnost nastaví na true a bude nastavený jazyk, přeskočí se stránka pro výběr klávesnice.",
+ "subtitle": "Profily AutoPilot",
+ "title": "Software spouštěný při prvním zapnutí zařízení",
+ "useOSDefaultLanguage": "Výchozí nastavení operačního systému",
+ "userSelect": "Výběr uživatele"
+ },
+ "Sync": {
+ "lastRequestedLabel": "Poslední žádost o synchronizaci",
+ "lastSuccessfulLabel": "Poslední úspěšná synchronizace",
+ "syncInProgress": "Probíhá synchronizace. Vraťte se prosím za chvíli.",
+ "syncInitiated": "Synchronizace nastavení AutoPilot byla zahájena.",
+ "syncSettingsTitle": "Synchronizovat nastavení AutoPilot"
+ },
+ "Title": {
+ "devices": "Zařízení Windows AutoPilot"
+ },
+ "Tooltips": {
+ "addressableUserName": "Uvítací název, který se zobrazí při instalaci zařízení",
+ "azureADDevice": "Přejděte na podrobnosti přidruženého zařízení. Hodnota N/A znamená, že žádné přidružené zařízení neexistuje.",
+ "batch": "Řetězcový atribut, pomocí kterého se dá identifikovat skupina zařízení. Pole značky skupiny Intune se mapuje na atribut OrderID v zařízeních Azure Active Directory.",
+ "dateAssigned": "Časové razítko, kdy se profil přiřadil k zařízení",
+ "deviceAccountFriendlyName": "Popisný název účtu zařízení pro zařízení Surface Hub",
+ "deviceAccountPwd": "Heslo účtu zařízení pro zařízení Surface Hub",
+ "deviceAccountUpn": "E-mail účtu zařízení pro zařízení Surface Hub",
+ "deviceDisplayName": "Nakonfigurujte jedinečný název zařízení. Tento název se bude ignorovat v nasazeních připojených službou Hybrid Azure AD Join. Název zařízení stále pochází z profilu připojení k doméně pro zařízení hybridní služby Azure AD.",
+ "deviceName": "Název, který se zobrazuje, když se někdo pokusí zjistit zařízení a připojit se k němu",
+ "deviceUseType": " Zařízení by se nastavilo podle vaší volby. V nastavení se to dá vždy změnit.\r\n \r\n - Pro schůzky a prezentace není funkce Windows Hello zapnutá a data se po každé relaci odeberou.\r\n
\r\n - V případě týmové spolupráce je funkce Windows Hello zapnutá a profily se ukládají pro rychlé přihlašování.
\r\n
",
+ "enrollmentState": "Určuje, jestli je zařízení zaregistrované.",
+ "intuneDevice": "Přejděte na podrobnosti přidruženého zařízení. Hodnota N/A znamená, že žádné přidružené zařízení neexistuje.",
+ "lastContacted": "Časové razítko, kdy se se zařízením naposledy navázal kontakt",
+ "make": "Výrobce vybraného zařízení",
+ "model": "Model vybraného zařízení",
+ "profile": "Název profilu přiřazeného k zařízení",
+ "profileStatus": "Určuje, jestli je k zařízení přiřazený profil",
+ "purchaseOrderId": "ID nákupní objednávky",
+ "resourceAccount": "Identita zařízení nebo hlavní název uživatele (UPN)",
+ "serialNumber": "Sériové číslo vybraného zařízení",
+ "userPrincipalName": "Uživatel, kterým se předem vyplní ověřování při instalaci zařízení"
+ },
+ "allDevices": "Všechna zařízení",
+ "allDevicesAlreadyAssignedError": "Profil Autopilot je už přiřazen ke všem zařízením.",
+ "assignFailedDescription": "Nepovedlo se aktualizovat přiřazení pro {0}.",
+ "assignFailedTitle": "Nepovedlo se aktualizovat přiřazení profilů AutoPilot",
+ "assignSuccessDescription": "Přiřazení pro {0} se úspěšně aktualizovala.",
+ "assignSuccessTitle": "Přiřazení profilů AutoPilot se úspěšně aktualizovala",
+ "assignSufaceHub2ProfileNextStep": "Další postup pro toto nasazení",
+ "assignSurfaceHub2ProfileToDeviceGroup": "1. Přiřaďte tento profil k alespoň jedné skupině zařízení.",
+ "assignSurfaceHub2ProfileToResourceAccount": "2. Přiřaďte účet prostředku ke každému zařízení Surface Hub, na které chcete nasadit tento profil.",
+ "assignedDevicesCount": "Přiřazená zařízení",
+ "assignedDevicesResourceAccountDescription": "Abyste mohli tento profil nasadit na zařízení, musíte zařízení přiřadit k účtu prostředku. Pokud chcete přiřadit existující účet prostředku nebo vytvořit nějaký nový, vyberte po jednom jednotlivá zařízení. Další informace o účtech prostředků
",
+ "assignedDevicesResourceAccountStatusBarMessage": "V této tabulce se uvádějí jen zařízení Surface Hub 2, kterým se přiřadil tento profil.",
+ "assigningDescription": "Aktualizuje se přiřazení pro {0}.",
+ "assigningTitle": "Aktualizují se přiřazení profilů AutoPilot",
+ "autoremediationContext": "We've detected a hardware change on this device. We're trying to automatically register the new hardware. You don't need to do anything now; the status will be updated at the next check in with the result. Learn more about resetting the profile.",
+ "autoremediationTitle": "Device {0} has a fix pending",
+ "cannotDeleteMessage": "Tento profil je přidružený ke skupinám. Než budete moct profil odstranit, bude nutné zrušit v něm přiřazení všech skupin.",
+ "cannotDeleteTitle": "Nejde odstranit {0}",
+ "createdDateTime": "Vytvořeno",
+ "deleteMessage": "Pokud tento profil AutoPilot odstraníte, bude se u všech zařízení přiřazených k tomuto profilu zobrazovat Nepřiřazeno.",
+ "deleteMessageWithPolicySet": "Profil {0} je zahrnutý v jedné nebo více sadách zásad. Pokud profil {0} odstraníte, nebudete už jej moct přiřazovat prostřednictvím těchto sad zásad. Chcete jej přesto odstranit?",
+ "deleteTitle": "Opravdu chcete tento profil odstranit?",
+ "description": "Popis",
+ "deviceType": "Typ zařízení",
+ "deviceUse": "Použití zařízení",
+ "directoryServiceHintForSurfaceHub2": " \r\n Autopilot podporuje připojení k Azure AD jen pro zařízení Surface Hub 2. Zadejte, jak se zařízení ve vaší organizaci připojují ke službě Active Directory (AD).\r\n
\r\n \r\n - \r\n Připojeno k Azure AD: Jen cloud bez místní služby Windows Server Active Directory\r\n
\r\n
\r\n ",
+ "directoryServiceHintForWindowsPC": "\r\n \r\n Zadejte, jak se zařízení připojují k Active Directory (AD) ve vaší organizaci:\r\n
\r\n \r\n - \r\n Připojeno k Azure AD: Jen cloud bez místní služby Active Directory Windows Serveru\r\n
\r\n
\r\n ",
+ "getAssignedDevicesCountError": "Při načítání počtu přiřazených zařízení došlo k chybě.",
+ "getAssignmentsError": "Při načítání přiřazení profilů AutoPilot došlo k chybě.",
+ "harvestDeviceId": "Převést všechna cílová zařízení na Autopilot",
+ "harvestDeviceIdDescription": "Standardně se tento profil dá zavést jen pro zařízení Autopilot synchronizovaná ze služby Autopilot.",
+ "harvestDeviceIdInfo": "\r\n Když vyberete Ano, zaregistrujete všechna cílová zařízení do Autopilota, pokud už nejsou registrovaná. Až registrovaná zařízení příště projdou softwarem spouštěným při prvním zapnutí Windows, projdou přiřazeným scénářem Autopilot.\r\n
\r\n Pamatujte, že některé scénáře Autopilot vyžadují konkrétní minimální sestavení systému Windows. Zkontrolujte, jestli má vaše zařízení minimální požadované sestavení, aby scénářem prošlo.\r\n
\r\n Odebrání tohoto profilu neodebere ovlivněná zařízení z Autopilota. Pokud chcete odebrat zařízení z Autopilota, použijte zobrazení Zařízení Windows Autopilot.\r\n ",
+ "harvestDeviceIdWarning": "Po převodu se zařízení Autopilot dají vrátit jen tak, že se odstraní ze seznamu zařízení Autopilot.",
+ "holoLensCommandMenu": "HoloLens",
+ "info": "Profily nasazení Windows AutoPilot umožňují přizpůsobit software spouštěný při prvním zapnutí vašich zařízení.",
+ "invalidProfileNameMessage": "Znak {0} není povolený.",
+ "joinTypeLabel": "Připojit se k Azure AD jako",
+ "lastModifiedDateTime": "Poslední změna:",
+ "manualRemediationContext": "We've detected a hardware change on this device. It won't automatically receive an Autopilot profile when it's reset unless you register the device again. Learn more about resetting the profile.",
+ "manualRemediationTitle": "Device {0} needs your attention",
+ "name": "Název",
+ "noAutopilotProfile": "Žádné profily AutoPilot",
+ "notEnoughPermissionAssignedError": "K přiřazení tohoto profilu do jedné nebo více vybraných skupin nemáte dostatečná oprávnění. Obraťte se prosím na svého správce.",
+ "profile": "profil",
+ "resourceAccountStatusBarMessage": "Pro každé zařízení Surface Hub 2, do kterého je nasazený tento profil, se vyžaduje jeden účet prostředku. Kliknutím získáte další informace.",
+ "selectServices": "Vyberte adresářovou službu, ke které se zařízení připojí.",
+ "surfaceHub2CommandMenu": "Surface Hub 2",
+ "surfaceHub2SCommandMenu": "Surface Hub 2S",
+ "userAffinityLabel": "Režim nasazení",
+ "windowsPCCommandMenu": "Počítač s Windows",
+ "directoryServiceLabel": "Připojit k Azure AD jako"
},
- "CategoryDescription": {
- "androidGeneralApplicationRestrictions": "Pomocí těchto nastavení si udržíte přehled o uživatelích, kteří si instalují aplikace, které nebyly schválené pro použití ve vaší firmě. Vyberte typ seznamu aplikací s omezeným přístupem:
\r\n Zakázané aplikace – seznam aplikací, při jejichž instalaci ze strany uživatelů chcete dostat zprávu
\r\n Schválené aplikace – seznam aplikací, které jsou schválené pro použití ve vaší firmě. Když si uživatelé nainstalují aplikaci, která není v tomto seznamu, dostanete zprávu.
\r\n ",
- "androidZebraMxZebraMx": "Nakonfigurujte zařízení Zebra tak, že nahrajete profil MX ve formátu XML.",
- "iosDeviceFeaturesAirprint": "Pomocí těchto nastavení nakonfigurujete zařízení s iOS tak, aby se automaticky připojila ke kompatibilním tiskárnám AirPrint ve vaší síti. Budete potřebovat IP adresu a cestu k prostředku těchto tiskáren.",
- "iosDeviceFeaturesExtensibleSingleSignOn": "Nakonfigurujte rozšíření aplikace, které povoluje jednotné přihlašování (SSO) pro zařízení s iOS 13.0 nebo novějším.",
- "iosDeviceFeaturesHomeScreenLayout": "Nakonfigurujte rozložení dokovací a domovské obrazovky na zařízeních s iOS. Některá zařízení můžou mít omezený počet zobrazených položek.",
- "iosDeviceFeaturesIOSWallpaper": "Zobrazí obrázek, který se bude zobrazovat na domovské nebo zamykací obrazovce zařízení s iOS.\r\n Pokud chcete, aby se na každém místě zobrazil jedinečný obrázek, vytvořte jeden profil s obrázkem zamykací obrazovky a jeden s obrázkem domovské obrazovky.\r\n Pak oba profily přiřaďte uživatelům.\r\n
\r\n \r\n - Maximální velikost souboru: 750 kB
\r\n - Typ souboru: PNG, JPG nebo JPEG
\r\n
\r\n ",
- "iosDeviceFeaturesNotifications": "Zadejte nastavení oznámení pro aplikace. Podporuje iOS 9.3 a novější.",
- "iosDeviceFeaturesSharedDevice": "Zadejte nepovinný text, který se zobrazí na zamknuté obrazovce. Podporuje se v iOSu 9.3 a novějších. Další informace",
- "iosGeneralApplicationRestrictions": "Pomocí těchto nastavení si udržíte přehled o uživatelích, kteří si instalují aplikace, které nebyly schválené pro použití ve vaší firmě. Vyberte typ seznamu aplikací s omezeným přístupem:
\r\n Zakázané aplikace – seznam aplikací, při jejichž instalaci ze strany uživatelů chcete dostat zprávu
\r\n Schválené aplikace – seznam aplikací, které jsou schválené pro použití ve vaší firmě. Když si uživatelé nainstalují aplikaci, která není v tomto seznamu, dostanete zprávu.
\r\n ",
- "iosGeneralApplicationVisibility": "Pomocí seznamu zobrazených aplikací určete aplikace pro iOS, které může uživatel zobrazit nebo spustit. Pomocí seznamu skrytých aplikací určete aplikace pro iOS, které uživatel nemůže zobrazit ani spustit.",
- "iosGeneralAutonomousSingleAppMode": "Aplikace, které přidáte do tohoto seznamu a přiřadíte k zařízení, můžou zařízení uzamknout tak, aby na něm po spuštění běžela jenom tato aplikace. Zařízení se dá zamknout i v případě, že na něm poběží určitá akce (třeba testování). Jakmile se akce dokončí nebo pokud odeberete toto omezení, zařízení se vrátí do normálního stavu.",
- "iosGeneralKiosk": "Celoobrazovkový režim zamyká v zařízení různá nastavení nebo určuje jednu aplikaci, která na zařízení poběží. To může být užitečné v prostředích, jako je třeba obchod, kde chcete, aby na zařízení běžela jenom jedna ukázková aplikace.",
- "macDeviceFeaturesAirprint": "Pomocí těchto nastavení můžete nakonfigurovat zařízení s macOSem tak, aby se automaticky připojovala k tiskárnám kompatibilním s AirPrintem ve vaší síti. Vaše tiskárny budou potřebovat IP adresu a cestu k prostředku.",
- "macDeviceFeaturesAssociatedDomains": "Nakonfigurujte přidružené domény a můžete sdílet data a přihlašovací údaje mezi aplikacemi a weby organizace. Tento profil se dá použít u zařízení s operačním systémem macOS 10.15 nebo novějším.",
- "macDeviceFeaturesExtensibleSingleSignOn": "Nakonfigurujte rozšíření aplikace, které povoluje jednotné přihlašování (SSO) pro zařízení s macOS 10.15 nebo novějším.",
- "macDeviceFeaturesLoginItems": "Zvolte, které aplikace, soubory nebo složky se otevřou, když se uživatel přihlásí ke svým zařízením. Pokud nechcete, aby uživatel měnil, jak se vybrané aplikace budou otevírat, můžete aplikaci skrýt z konfigurace uživatele.",
- "macDeviceFeaturesLoginWindow": "Nakonfigurujte zobrazování přihlašovací obrazovky macOS a funkcí, které jsou uživatelům k dispozici před a po přihlášení.",
- "macExtensionsKernelExtensions": "Pomocí těchto nastavení můžete nakonfigurovat zásady rozšíření jádra na zařízeních s macOSem ve verzi 10.13.2 a novějších.",
- "macGeneralDomains": "E-maily, které uživatel posílá nebo přijímá a které neodpovídají doménám zadaným tady, se označí jako nedůvěryhodné.",
- "windows10EndpointProtectionApplicationGuard": "Když budete používat Microsoft Edge, Ochrana Application Guard v programu Microsoft Defender ochrání vaše prostředí před weby, které vaše organizace nedefinovala jako důvěryhodné. Když uživatelé navštíví weby, které nejsou uvedené v ohraničení vaší izolované sítě, otevřou se tyto weby ve virtuální relaci procházení v Hyper-V. Důvěryhodné weby se definují prostřednictvím ohraničení sítě, které se dá konfigurovat v Konfiguraci zařízení. Poznámka: Tato funkce je k dispozici jen pro zařízení s 64bitovým systémem Windows 10 nebo novějším.",
- "windows10EndpointProtectionCredentialGuard": "Když se ochrana Credential Guard povolí, povolí se i tato povinná nastavení:\r\n
\r\n \r\n - Povolit zabezpečení na základě virtualizace: Povolí při příštím restartování zabezpečení na základě virtualizace (VBS). Zabezpečení na základě virtualizace nabízí podporu služeb zabezpečení pomocí hypervisoru Windows.
\r\n
\r\n - Zabezpečené spouštění s přímým přístupem do paměti (DMA): Zapne VBS se zabezpečeným spouštěním a přímým přístupem do paměti (DMA).
\r\n
\r\n ",
- "windows10EndpointProtectionDeviceGuard": "Zvolte další aplikace, které je potřeba auditovat pomocí Řízení aplikací v programu Microsoft Defender nebo které tento nástroj může považovat za důvěryhodné, aby bylo možné povolit jejich spuštění. Součásti systému Windows a všechny aplikace z obchodu Windows Store se za důvěryhodné považují automaticky.
\r\n Aplikace se nebudou blokovat, pokud se spustí v režimu Pouze audit. V tomto režimu se protokolují všechny události v protokolech místních klientů.\r\n ",
- "windows10GeneralPrivacyPerApp": "Přidejte aplikace, které by měly mít jiné chování ochrany osobních údajů než to, které jste definovali ve výchozích zásadách.",
- "windows10NetworkBoundaryNetworkBoundary": "Ohraničení sítě je seznam podnikových prostředků, třeba domén hostovaných v cloudu a rozsahů IP adres pro počítače umístěné v podnikové síti. Pokud chcete chránit data uložená v těchto umístěních pomocí zásad, definujte ohraničení sítě.",
- "windowsHealthMonitoring": "Nakonfigurujte zásady monitorování stavu Windows.",
- "windowsPhoneGeneralApplicationRestrictions": "Windows Phone může uživatelům znemožnit instalaci nebo spuštění aplikací uvedených v seznamu zakázaných nebo aplikací, které nejsou uvedené v seznamu schválených. Všechny spravované aplikace musí být přidané do seznamu schválených."
- },
"MinimumOperatingSystem": {
"Android": {
"v10": "Android 10.0",
@@ -2435,6 +1154,304 @@
"excludedGroups": "Vyloučené skupiny",
"licenseType": "Typ licence"
},
+ "TAP": {
+ "AccessRequirements": {
+ "infoText": "Nakonfigurujte PIN kód a požadavky na přihlašovací údaje, které uživatelé musí splnit, aby mohli získat přístup k aplikacím v pracovním kontextu."
+ },
+ "DataProtection": {
+ "infoText": "Tato skupinu obsahuje ovládací prvky ochrany před únikem informací (DLP), třeba omezení operací vyjmutí, kopírování, vkládání a uložení jako. Tato nastavení určují, jak uživatel pracuje s daty v aplikacích."
+ },
+ "DeviceTypes": {
+ "selectOne": "Vyberte alespoň jeden typ zařízení."
+ },
+ "TargetedApps": {
+ "TargetToAll": {
+ "label": "Cílit na aplikace na všech typech zařízení"
+ },
+ "infoText": "Zvolte, jak chcete tyto zásady zavést do aplikací na různých zařízeních. Pak přidejte alespoň jednu aplikaci.",
+ "selectOne": "Pokud chcete vytvořit zásady, vyberte alespoň jednu aplikaci."
+ }
+ },
+ "AssignmentAction": {
+ "exclude": "Vyloučeno",
+ "include": "Zahrnuto",
+ "includeAllDevicesVirtualGroup": "Zahrnuto",
+ "includeAllUsersVirtualGroup": "Zahrnuto"
+ },
+ "AppType": {
+ "androidEnterpriseSystemApp": "Aplikace systému Android Enterprise",
+ "androidForWorkApp": "Aplikace spravovaného obchodu Google Play",
+ "androidLobApp": "Obchodní aplikace Android",
+ "androidStoreApp": "Aplikace z obchodu pro Android",
+ "builtInAndroid": "Integrovaná aplikace pro Android",
+ "builtInApp": "Integrovaná aplikace",
+ "builtInIos": "Integrovaná aplikace pro iOS",
+ "default": "",
+ "iosLobApp": "Obchodní aplikace iOS",
+ "iosStoreApp": "Aplikace z obchodu pro iOS",
+ "iosVppApp": "Aplikace iOS koupená přes Volume Purchase Program",
+ "lineOfBusinessApp": "Obchodní aplikace",
+ "macOSDmgApp": "Aplikace pro macOS (.DMG)",
+ "macOSEdgeApp": "Microsoft Edge (macOS)",
+ "macOSLobApp": "Obchodní aplikace pro macOS",
+ "macOSMdatpApp": "Microsoft Defender ATP (macOS)",
+ "macOSOfficeSuiteApp": "Aplikace Microsoft 365 (macOS)",
+ "macOsVppApp": "Aplikace macOS koupená přes Volume Purchase Program",
+ "managedAndroidLobApp": "Spravovaná obchodní aplikace Android",
+ "managedAndroidStoreApp": "Spravovaná aplikace z obchodu pro Android",
+ "managedGooglePlayApp": "Aplikace spravovaného obchodu Google Play",
+ "managedGooglePlayPrivateApp": "Privátní aplikace spravovaného obchodu Google Play",
+ "managedGooglePlayWebApp": "Webový odkaz spravovaného obchodu Google Play",
+ "managedIosLobApp": "Spravovaná obchodní aplikace iOS",
+ "managedIosStoreApp": "Spravovaná aplikace z obchodu pro iOS",
+ "microsoftStoreForBusinessApp": "Aplikace pro Microsoft Store pro firmy",
+ "microsoftStoreForBusinessReleaseManagedApp": "Microsoft Store pro firmy",
+ "officeSuiteApp": "Microsoft 365 Apps (Windows 10 a novější)",
+ "webApp": "Webový odkaz",
+ "windowsAppXLobApp": "Obchodní aplikace Windows AppX",
+ "windowsClassicApp": "Aplikace pro Windows (Win32)",
+ "windowsEdgeApp": "Microsoft Edge (Windows 10 a novější)",
+ "windowsMobileMsiLobApp": "Obchodní aplikace Windows MSI",
+ "windowsPhone81AppXBundleLobApp": "Obchodní aplikace Windows Phone 8.1 AppX",
+ "windowsPhone81AppXLobApp": "Obchodní aplikace Windows Phone 8.1 AppX",
+ "windowsPhone81StoreApp": "Aplikace pro Windows Phone 8.1 Store",
+ "windowsPhoneXapLobApp": "Obchodní aplikace Windows Phone XAP",
+ "windowsStoreApp": "Aplikace pro Microsoft Store",
+ "windowsUniversalAppXLobApp": "Obchodní aplikace Windows Universal AppX",
+ "windowsUniversalLobApp": "Univerzální obchodní aplikace pro Windows"
+ },
+ "TAPSettings": {
+ "AllowedDataIngestionLocations": {
+ "label": "Povolit uživatelům otevírat data z vybraných služeb",
+ "tooltip": "Vyberte služby úložiště aplikace, ze kterých uživatelé budou moct otevírat data. Všechny ostatní služby se zablokují. Když se nevybere žádná služba, uživatelé nebudou moct data otevírat."
+ },
+ "AndroidBackup": {
+ "label": "Zálohovat data organizace do služeb zálohování Androidu",
+ "tooltip": "Pokud chcete zabránit tomu, aby se data organizace zálohovala do služeb zálohování Androidu, vyberte {0}. \r\nPokud chcete zálohování dat organizace do služeb zálohování Androidu povolit, vyberte {1}. \r\nNa osobní nebo nespravovaná data to nemá žádný vliv."
+ },
+ "AndroidBiometricAuthentication": {
+ "label": "Přístup pomocí biometriky místo PIN kódu",
+ "tooltip": "Zvolte, které metody ověřování Androidu můžou uživatelé používat místo PIN kódu aplikace, pokud takové jsou."
+ },
+ "AndroidFingerprint": {
+ "label": "Přístup pomocí otisku prstu namísto PIN kódu (Android 6.0+)",
+ "tooltip": "Operační systém Androidu ověřuje uživatele zařízení s Androidem pomocí otisku prstu. Tato funkce podporuje nativní biometrické ovládací prvky na zařízeních s Androidem. Nastavení biometriky specifická pro výrobce OEM, třeba Samsung Pass, se nepodporují. Když se tato možnost povolí, musí se pro přístup k aplikaci na zařízení, které to podporuje, použít nativní biometrické ovládací prvky."
+ },
+ "AndroidOverrideFingerprint": {
+ "label": "Po vypršení časového limitu obejít otisk prstu PIN kódem"
+ },
+ "AppPIN": {
+ "label": "PIN kód aplikace, když je nastavený PIN kód zařízení",
+ "tooltip": "Když se tato možnost nebude vyžadovat, PIN kód aplikace se pro přístup k aplikaci nemusí použít ani ve chvíli, kdy je na zařízení zaregistrovaném do MDM nastavený PIN kód zařízení.
\r\n\r\nPoznámka: Na Androidu Intune nemůže zjišťovat registraci zařízení pomocí řešení EMM třetí strany."
+ },
+ "BlockDataIngestionIntoOrganizationDocuments": {
+ "label": "Otevřít data do dokumentů organizace",
+ "tooltip1": "Vyberte Blokovat a zakážete používání možnosti Otevřít nebo jiných možností sdílení dat mezi účty v této aplikaci. Vyberte Povolit, pokud chcete povolit používání Otevřít a dalších možností sdílení dat mezi účty v této aplikaci.",
+ "tooltip2": "Při nastavení na Blokovat můžete konfigurovat volbu Povolit uživateli otevírat data z vybraných služeb a určit služby povolené pro umístění dat organizace.",
+ "tooltip3": "Poznámka: Toto nastavení se vynutí jedině v případě, kdy je volba „Přijímat data z jiných aplikací“ nastavená na „Aplikace spravované zásadami“.
\r\nPoznámka: Toto nastavení se nepoužívá na všechny aplikace. Další informace najdete v {0}.",
+ "tooltip4": "Poznámka: Toto nastavení se vynutí jedině v případě, kdy je volba „Přijímat data z jiných aplikací“ nastavená na „Aplikace spravované zásadami“.
\r\nPoznámka: Toto nastavení se nepoužívá na všechny aplikace. Další informace najdete v {0} nebo {0}."
+ },
+ "ConnectToVpnOnLaunch": {
+ "label": "Spustit připojení Microsoft Tunnel při spuštění aplikace",
+ "tooltip": "Povolit připojení k síti VPN při spuštění aplikace"
+ },
+ "CredentialsForAccess": {
+ "label": "Přístup pomocí přihlašovacích údajů pracovního nebo školního účtu",
+ "tooltip": "Když se tato možnost vyžaduje, musí se pro přístup k aplikacím spravovaným pomocí zásad použít pracovní nebo školní přihlašovací údaje. Pokud se pro přístup k aplikaci vyžaduje i PIN kód nebo biometrické metody, přihlašovací údaje k pracovnímu nebo školnímu účtu se budou vyžadovat navíc."
+ },
+ "CustomBrowserDisplayName": {
+ "label": "Název nespravovaného prohlížeče",
+ "tooltip": "Zadejte název aplikace pro prohlížeč přidružený k ID nespravovaného prohlížeče. Tento název se zobrazí uživatelům, pokud není nainstalovaný zadaný prohlížeč."
+ },
+ "CustomBrowserPackageId": {
+ "label": "ID nespravovaného prohlížeče",
+ "tooltip": "Zadejte ID aplikace pro jeden prohlížeč. V zadaném prohlížeči se otevře webový obsah (HTTP/S) z aplikací spravovaných zásadami."
+ },
+ "CustomBrowserProtocol": {
+ "label": "Protokol nespravovaného prohlížeče",
+ "tooltip": "Zadejte protokol pro jeden nespravovaný prohlížeč. Webový obsah (HTTP/S) z aplikací spravovaných zásadami se otevře v jakékoli aplikaci, která podporuje tento protokol.
\r\n \r\nPoznámka: Zahrňte jen předponu protokolu. Pokud váš prohlížeč vyžaduje, aby odkazy měly tvar mybrowser://www.microsoft.com, zadejte mybrowser.
"
+ },
+ "CustomDialerAppDisplayName": {
+ "label": "Název aplikace pro vytáčení"
+ },
+ "CustomDialerAppPackageId": {
+ "label": "ID balíčku aplikace pro vytáčení"
+ },
+ "CustomDialerAppProtocol": {
+ "label": "Schéma URL aplikace pro vytáčení"
+ },
+ "Cutcopypaste": {
+ "label": "Omezit operace vyjmutí, kopírování a vložení mezi jinými aplikacemi",
+ "tooltip": "Vyjímání, kopírování a vkládání dat mezi vaší aplikací a jinými schválenými aplikacemi nainstalovanými na zařízení. Můžete si zvolit, že tyto akce budete mezi aplikacemi zcela blokovat, že je povolíte pro jakoukoli aplikaci, nebo že jejich používání omezíte na aplikace, které spravuje vaše organizace.
\r\n\r\nMožnost Aplikace spravované zásadami s vkládáním umožňuje přijímat příchozí obsah vložený z jiné aplikace. Zablokuje ale uživatelům možnost sdílet obsah s jinými než spravovanými aplikacemi.
"
+ },
+ "DialerRestrictionLevel": {
+ "iosTooltip": "Obvykle, když uživatel vybere v aplikaci odkaz s telefonním číslem, otevřete se aplikace číselníku, ve které bude telefonní číslo předem vyplněné a připravené k volání. Pro toto nastavení zvolte, jak se má tento typ přenosu obsahu zpracovávat, když se zahájí z aplikace spravované zásadami. Aby se toto nastavení projevilo, můžou být zapotřebí další kroky. Nejdříve ověřte, že se ze seznamu Vyberte aplikace, které se mají vyloučit odebraly tel a telprompt. Pak se ujistěte, že aplikace používá novější verzi sady Intune SDK (verzi 12.7.0+).",
+ "label": "Přenést data telekomunikace do",
+ "tooltip": "Obvykle, když uživatel v aplikaci vybere telefonní číslo s hypertextovým odkazem, otevře se telefonní číslo předem naplněné a připravené k volání v aplikaci pro vytáčení. Pro toto nastavení zvolte, jak se má zpracovat tento typ přenosu obsahu, když se iniciuje z aplikace spravované zásadou."
+ },
+ "EncryptData": {
+ "label": "Šifrovat data organizace",
+ "link": "https://docs.microsoft.com/cs-cz/intune/app-protection-policy-settings-android#data-relocation-settings",
+ "tooltip": "Pokud chcete vynutit šifrování dat organizace pomocí šifrování na aplikační vrstvě Intune, vyberte {0}.\r\n
\r\nPokud na zaregistrovaných zařízeních šifrování dat organizace pomocí šifrování na aplikační vrstvě Intune vynucovat nechcete, vyberte {1}.\r\n\r\n
\r\nPoznámka: Další informace o šifrování na aplikační vrstvě Intune najdete tady: {2}"
+ },
+ "EncryptDataAndroid": {
+ "tooltip": "Pokud chcete v této aplikaci povolit šifrování pracovních nebo školních dat, zvolte Vyžadovat. Intune používá schéma OpenSSL s 256b šifrováním AES a systém Úložiště klíčů Android, pomocí kterých bezpečně šifruje data aplikací. Data se šifrují synchronně během V/V operací se soubory. Obsah v úložišti zařízení je vždy šifrovaný. Sada SDK bude i nadále podporovat 128bitové klíče, aby se zachovala kompatibilita s obsahem a aplikacemi, které používají starší verze sady SDK.
\r\n\r\nMetoda šifrování odpovídá standardu FIPS 140-2.
"
+ },
+ "EncryptDataIos": {
+ "tooltip1": "Pokud chcete v této aplikaci povolit šifrování pracovních nebo školních dat, zvolte Vyžadovat. Služba Intune vynucuje šifrování zařízení s iOS/iPadOS, aby chránila data aplikací ve chvíli, kdy je zařízení zamknuté. Aplikace můžou volitelně šifrovat svá data pomocí šifrování v sadě Intune APP SDK. Tato sada používá kryptografické metody iOS, pomocí kterých data aplikací šifruje pomocí 128bitového šifrování AES.",
+ "tooltip2": "Když povolíte toto nastavení, je možné, že uživatel bude muset pro přístup k zařízení nastavit a používat PIN kód. Pokud zařízení žádný PIN kód nemá, a přitom se vyžaduje šifrování, uživateli se zobrazí výzva, aby si PIN kód nastavil. Výzva obsahuje tuto zprávu: Vaše organizace vyžaduje, abyste před přístupem k této aplikaci nejdříve povolili PIN kód zařízení.",
+ "tooltip3": "Informace o tom, které moduly šifrování iOSu dodržují standard FIPS 140-2 nebo které čekají na potvrzení jeho implementace, najdete v oficiální dokumentaci Applu."
+ },
+ "EncryptDataOnEnrolledDevices": {
+ "label": "Šifrovat data organizace na zaregistrovaných zařízeních",
+ "tooltip": "Pokud chcete na všech zařízeních vynutit šifrování dat organizace pomocí šifrování na aplikační vrstvě Intune, vyberte {0}.
\r\n\r\nPokud na zaregistrovaných zařízeních šifrování dat organizace pomocí šifrování na aplikační vrstvě Intune vynucovat nechcete, vyberte {1}."
+ },
+ "IOSBackup": {
+ "label": "Zálohovat data organizace do iTunes a iCloudu",
+ "tooltip": "Pokud chcete zabránit tomu, aby se data organizace zálohovala do iTunes nebo iCloudu, vyberte {0}. \r\nPokud chcete zálohování dat organizace do iTunes nebo iCloudu povolit, vyberte {1}. \r\nNa osobní nebo nespravovaná data to nemá žádný vliv."
+ },
+ "IOSFaceID": {
+ "label": "Přístup pomocí Face ID místo PIN kódu (iOS 11+ nebo iPadOS)",
+ "tooltip": "Face ID používá technologii rozpoznávání tváře, pomocí které ověřuje uživatele na zařízeních s iOS/iPadOS. Intune k ověření uživatelů pomocí Face ID volá rozhraní LocalAuthentication API. Když se tato možnost povolí, pro přístup k aplikaci na zařízení, které podporuje Face ID, se musí použít právě Face ID."
+ },
+ "IOSOverrideTouchId": {
+ "label": "Po vypršení časového limitu přepsat ověření pomocí biometrických údajů PIN kódem"
+ },
+ "IOSTouchId": {
+ "label": "Přístup pomocí Touch ID místo PIN kódu (iOS 8+ nebo iPadOS)",
+ "tooltip": "Touch ID používá technologii rozpoznávání otisku prstu, pomocí které ověřuje uživatele na zařízení s iOSem. Intune k ověření uživatelů pomocí Touch ID volá rozhraní LocalAuthentication API. Když se tato možnost povolí, pro přístup k aplikaci na zařízení, které podporuje Touch ID, se musí použít právě Touch ID."
+ },
+ "NotificationRestriction": {
+ "label": "Oznámení dat organizace",
+ "tooltip": "Pokud chcete zadat, jak se pro tuto aplikaci a všechna připojená zařízení, třeba nositelnou elektroniku, zobrazují oznámení pro účty organizace, vyberte jednu z těchto možností:
\r\n{0}: Nesdílet oznámení
\r\n{1}: Nesdílet v oznámeních data organizace. Pokud aplikace tuto možnost nepodporuje, oznámení se zablokují.
\r\n{2}: Sdílet všechna oznámení
\r\n Jen Android:\r\n Poznámka: Toto nastavení se nevztahuje na všechny aplikace. Další informace najdete tady: {3}
\r\n \r\n Jen iOS:\r\nPoznámka: Toto nastavení se nevztahuje na všechny aplikace. Další informace najdete tady: {4}
"
+ },
+ "OpenLinksManagedBrowser": {
+ "label": "Omezit přenos webového obsahu s jinými aplikacemi",
+ "tooltip": "Vyberte jednu z následujících možností pro určení aplikací, ve kterých tato aplikace bude moci otevírat webový obsah:
\r\nEdge: Dovolí otevírat webový obsah jen v Microsoft Edgi.
\r\nNespravovaný prohlížeč: Dovolí otevírat webový obsah jen v nespravovaném prohlížeči definovaném v nastavení Protokol nespravovaného prohlížeče.
\r\nLibovolná aplikace: Dovolí otevírat webové odkazy v jakékoli aplikaci.
"
+ },
+ "OverrideBiometric": {
+ "tooltip": "V případě potřeby, v závislosti na časovém limitu (počet minut neaktivity), přepíše výzva zadat PIN kód výzvy použít biometriku. Pokud ještě časový limit nevyprší, výzva použít biometriku se bude zobrazovat nadále. Tato hodnota časového limitu by měla být větší než hodnota zadaná v části Znovu zkontrolovat požadavky na přístup po (počet minut neaktivity). "
+ },
+ "PinAccess": {
+ "label": "Přístup pomocí PIN kódu",
+ "tooltip": "V případě potřeby se pro přístup k aplikaci spravované zásadami musí použít PIN kód. Až uživatelé aplikaci poprvé spustí z pracovního nebo školního účtu, musí si vytvořit přístupový PIN kód."
+ },
+ "PinLength": {
+ "label": "Vyberte minimální délku PIN kódu.",
+ "tooltip": "Toto nastavení vyžaduje minimální počet číslic PIN kódu."
+ },
+ "PinType": {
+ "label": "Typ PIN kódu",
+ "tooltip": "Číselné PIN kódy se skládají jen z číslic. Hesla obsahují alfanumerické a speciální znaky. "
+ },
+ "Printing": {
+ "label": "Tisk dat organizace",
+ "tooltip": "Pokud se tato možnost zablokuje, aplikace nebude moct tisknout chráněná data."
+ },
+ "ReceiveData": {
+ "label": "Přijímat data z jiných aplikací",
+ "tooltip": "Pokud chcete určit aplikace, ze kterých může tato aplikace přijímat data, vyberte jednu z následujících možností:
\r\n\r\nŽádné: V dokumentech nebo účtech organizace se nepovolí přijímání dat z žádné aplikace.
\r\n\r\nAplikace spravované zásadami: V dokumentech a účtech organizace se povolí přijímání dat jen z aplikací spravovaných zásadami.\r\n
\r\nJakákoli aplikace s příchozími daty organizace: Umožní přijímat data v dokumentech a účtech organizace z jakékoli aplikace a všechna příchozí data bez uživatelského účtu se budou považovat za data organizace.
\r\n\r\nVšechny aplikace: Umožní přijímat data v dokumentech a účtech organizace z jakékoli aplikace."
+ },
+ "RecheckAccessAfter": {
+ "label": "Znovu zkontrolovat požadavky na přístup po (počet minut neaktivity)\r\n\r\n",
+ "tooltip": "Pokud je aplikace spravovaná zásadami neaktivní déle než zadaný počet minut, aplikace po spuštění vyzve, aby se znovu zkontrolovaly požadavky na přístup (tj. PIN kód, nastavení podmíněného spuštění)."
+ },
+ "RestrictKeyboards": {
+ "duplicatePackageError": "ID balíčku musí být jedinečné.",
+ "invalidPackageError": "Neplatné ID balíčku",
+ "label": "Schválené klávesnice",
+ "select": "Vyberte klávesnice, které chcete schválit",
+ "subtitle": "Přidejte všechny klávesnice a metody zadávání znaků, které uživatelům povolíte používat s cílovými aplikacemi. Název klávesnice zadejte tak, jak se má zobrazovat koncovému uživateli.",
+ "title": "Přidat schválené klávesnice",
+ "toolTip": "Vyberte Vyžadovat a pak pro tyto zásady zadejte seznam schválených klávesnic. Další informace."
+ },
+ "SaveData": {
+ "label": "Ukládat kopie dat organizace",
+ "tooltip": "Pokud chcete zabránit ukládání kopie dat organizace pomocí Uložit jako do nového umístění, které nepatří mezi vybrané služby úložiště, vyberte {0}.\r\n Pokud chcete ukládání kopie dat organizace do nového umístění pomocí Uložit jako povolit, vyberte {1}.
\r\n\r\n\r\nPoznámka: Toto nastavení neplatí pro všechny aplikace. Další informace najdete tady: {2}\r\n"
+ },
+ "SaveDataToSelected": {
+ "label": "Povolit uživateli ukládat kopie do vybraných služeb",
+ "tooltip": "Vyberte služby úložiště, do kterých uživatelé můžou ukládat kopie dat organizace. Všechny ostatní služby se zablokují. Když se žádné služby nevyberou, uživatelé nebudou moct ukládat kopie dat organizace."
+ },
+ "ScreenCaptureAndAndroidAssistant": {
+ "label": "Zachytávání obrazovky a Asistent Google\r\n",
+ "tooltip": "Když se tato možnost blokuje, funkce skenování zachytáváním obrazovky a aplikací Asistent Google se při používání aplikace spravované zásadami zakáží. Tato funkce podporuje obvyklou aplikaci Asistent Google. Asistenti třetích stran, kteří používají rozhraní Assist API od Googlu, se nepodporují. Když vyberete Blokovat a aplikaci budete používat spolu s pracovním nebo školním účtem, obrázek náhledu přepínače aplikace bude rozmazaný."
+ },
+ "SendData": {
+ "label": "Posílat data organizace do jiných aplikací",
+ "tooltip": "Pokud chcete určit aplikace, kterým tato aplikace může posílat data organizace, vyberte jednu z následujících možností:
\r\n\r\n\r\nŽádné: Nepovolí posílat data organizace do žádné aplikace.
\r\n\r\n\r\nAplikace spravované zásadami: Povolí posílat data organizace jen do jiných aplikací spravovaných zásadami.
\r\n\r\n\r\nAplikace spravované zásadami se sdílením operačního systému: Povolí posílat data organizace jen do jiných aplikací spravovaných zásadami a dokumenty organizace do jiných aplikací spravovaných pomocí MDM na zaregistrovaných zařízeních.
\r\n\r\n\r\nAplikace spravované zásadami s filtrováním sdílení a otevírání v určité aplikaci: Povolí posílat data organizace jen do jiných aplikací spravovaných zásadami a filtruje dialogy operačního systému pro sdílení a otevírání v určité aplikaci tak, aby se zobrazovaly jen aplikace spravované zásadami.\r\n
\r\n\r\nVšechny aplikace: Povolí posílat data organizace do jakékoli aplikace."
+ },
+ "SimplePin": {
+ "label": "Jednoduchý PIN kód",
+ "tooltip": "Když se tato možnost zablokuje, uživatelé si nebudou moct vytvořit jednoduchý PIN kód. Jednoduchý PIN kód je řetězec po sobě jdoucích nebo se opakujících číslic, třeba 1234, ABCD nebo 1111. Poznámka: Zablokování jednoduchého PIN kódu typu Heslo vyžaduje, aby heslo obsahovalo alespoň jednu číslici, jedno písmeno a jeden speciální znak."
+ },
+ "SyncContacts": {
+ "label": "Synchronizovat data aplikací spravovaných zásadami s nativními aplikacemi nebo doplňky"
+ },
+ "ThirdPartyKeyboards": {
+ "infoBox": "Omezení klávesnice platí ve všech oblastech aplikace. Omezení platí i pro osobní účty aplikací, které podporují více identit. Další informace.",
+ "label": "Klávesnice třetích stran"
+ },
+ "Timeout": {
+ "label": "Časový limit (počet minut neaktivity)"
+ },
+ "Tap": {
+ "numberOfDays": "Počet dnů",
+ "pinResetAfterNumberOfDays": "Resetování PIN kódu po určitém počtu dní",
+ "previousPinBlockCount": "Vyberte počet předchozích hodnot kódu PIN, které se mají zachovat"
+ }
+ },
+ "ScheduledAction": {
+ "Form": {
+ "editBlockActionInfo": "Pro všechny zásady dodržování předpisů se vyžaduje jedna akce bloku.",
+ "graceperiod": "Plán (dny po nedodržení)",
+ "graceperiodInfo": "Zadejte počet dnů po nedodržování předpisů, po jejichž uplynutí by měla být pro zařízení uživatele aktivována tato akce.",
+ "subtitle": "Zadejte parametry akce.",
+ "title": "Parametry akce"
+ },
+ "List": {
+ "gracePeriodDay": "{0} den po nedodržení",
+ "gracePeriodDays": "{0} dny (dnů) po nedodržení",
+ "gracePeriodHour": "Počet hodin po nedodržení předpisů: {0}",
+ "gracePeriodHours": "Počet hodin po nedodržení předpisů: {0}",
+ "gracePeriodMinute": "Počet minut po nedodržení předpisů: {0}",
+ "gracePeriodMinutes": "Počet minut po nedodržení předpisů: {0}",
+ "immediately": "Okamžitě",
+ "schedule": "Plán",
+ "scheduleInfoBalloon": "Dny po nedodržení předpisů",
+ "subtitle": "Zadejte sekvenci akcí pro zařízení nedodržující předpisy.",
+ "title": "Akce"
+ },
+ "Notification": {
+ "additionalEmailLabel": "Ostatní",
+ "additionalRecipients": "Další příjemci (prostřednictvím e-mailu)",
+ "additionalRecipientsBladeTitle": "Vybrat další příjemce",
+ "emailAddressPrompt": "Zadejte e-mailové adresy (oddělené čárkami).",
+ "invalidEmail": "Neplatná e-mailová adresa",
+ "messageTemplate": "Šablona zprávy",
+ "noneSelected": "Nic není vybráno.",
+ "notSelected": "Nevybráno",
+ "numSelected": "Počet vybraných: {0}",
+ "selected": "Vybrané"
+ },
+ "block": "Označit zařízení jako nevyhovující",
+ "lockDevice": "Uzamknout zařízení (místní akce)",
+ "lockDeviceWithPasscode": "Uzamknout zařízení (místní akce)",
+ "noAction": "Žádná akce",
+ "noActionRow": "Žádné akce. Pokud chcete přidat akci, vyberte Přidat.",
+ "pushNotification": "Poslat nabízené oznámení koncovému uživateli",
+ "remoteLock": "Vzdáleně uzamknout zařízení, které nedodržuje předpisy",
+ "removeSourceAccessProfile": "Odebrat zdrojový profil přístupu",
+ "retire": "Vyřadit (z provozu) zařízení, která nedodržují předpisy",
+ "wipe": "Vymazat",
+ "emailNotification": "Odeslat e-mail koncovému uživateli"
+ },
+ "InstallIntent": {
+ "available": "K dispozici zaregistrovaným zařízením",
+ "availableWithoutEnrollment": "K dispozici s registrací i bez ní",
+ "required": "Povinné",
+ "uninstall": "Odinstalovat"
+ },
"EnrollmentStatusScreen": {
"Apps": {
"managedApps": "Spravované aplikace",
@@ -2466,142 +1483,61 @@
"resetToggle": "Povolit uživatelům resetovat zařízení, když dojde k chybě instalace",
"timeout": "Zobrazit chybu, pokud instalace trvá déle než zadaný počet minut"
},
- "EnrollmentType": {
- "devicesWithEnrollment": "Spravovaná zařízení",
- "devicesWithoutEnrollment": "Spravované aplikace"
- },
- "ApplicabilityRules": {
- "GridLabel": {
- "property": "Vlastnost",
- "rule": "Pravidlo",
- "ruleDetails": "Podrobnosti pravidla",
- "value": "Hodnota"
- },
- "assignIf": "Přiřadit profil, pokud",
- "deleteWarning": "Tato akce odstraní vybrané pravidlo použitelnosti.",
- "dontAssignIf": "Nepřiřazovat profil, pokud",
- "editionDisplayText": "{0} {1}",
- "editionDisplayTextMore": "a ještě {0}",
- "instructions": "Zadejte, jak se tento profil má použít v přiřazené skupině. Intune použije profil jen pro zařízení, která splňují kombinaci kritérií danou těmito pravidly.",
- "maxText": "Maximum",
- "minText": "Minimum",
- "noActionRow": "Nezadala se žádná pravidla použitelnosti.",
- "oSVersion": "např. 1.2.3.4",
- "toText": "do",
- "windows10Education": "Windows 10/11 Education",
- "windows10EducationN": "Windows 10/11 Education N",
- "windows10Enterprise": "Windows 10/11 Enterprise",
- "windows10EnterpriseN": "Windows 10/11 Enterprise N",
- "windows10HolographicEnterprise": "Windows 10 Holographic pro firmy",
- "windows10Home": "Windows 10/11 Home",
- "windows10HomeChina": "Windows 10 Home China",
- "windows10HomeN": "Windows 10/11 Home N",
- "windows10HomeSingleLanguage": "Windows 10/11 Home Single Language",
- "windows10IoTCore": "Windows 10 IoT Core",
- "windows10IoTCoreCommercial": "Windows 10 IoT Core Commercial",
- "windows10Mobile": "Windows 10 Mobile",
- "windows10MobileEnterprise": "Windows 10 Mobile Enterprise",
- "windows10OsEdition": "Edice operačního systému",
- "windows10OsVersion": "Verze OS",
- "windows10Professional": "Windows 10/11 Professional",
- "windows10ProfessionalEducation": "Windows 10/11 Professional Education",
- "windows10ProfessionalEducationN": "Windows 10/11 Professional Education N",
- "windows10ProfessionalN": "Windows 10 Professional N",
- "windows10ProfessionalWorkstation": "Windows 10/11 Professional Workstation",
- "windows10ProfessionalWorkstationN": "Windows 10/11 Professional Workstation N"
+ "Devices": {
+ "General": {
+ "android": "Android"
+ },
+ "aOSP": "Open source projekt Androidu",
+ "android": "Správce zařízení s Androidem",
+ "androidWorkProfile": "Android Enterprise (pracovní profil)",
+ "iOS": "iOS/iPadOS",
+ "mac": "macOS",
+ "windows": "Windows (MDM)",
+ "windows10": "Windows 10 a novější",
+ "windowsHomeSku": "SKU Windows Home",
+ "windowsMobile": "Windows Mobile"
+ },
+ "AppInfoBalloonText": {
+ "Certificate": {
+ "customSubjectName": "CN={{UserName}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US\r\nor\r\nCN={{AAD_Device_ID}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US",
+ "keySize": "Vyberte počet bitů obsažených v klíči.",
+ "keyUsage": "Zadejte kryptografickou akci, která se vyžaduje k výměně veřejného klíče certifikátu.",
+ "renewalThreshold": "Zadejte procento (mezi 1 a 99 procenty) povolené zbývající živostnosti certifikátu, než zařízení může požádat o prodloužení jeho platnosti. Doporučená hodnota pro Intune je 20 %. (1-99)",
+ "rootCert": "Zvolte dříve nakonfigurovaný a přiřazený profil kořenového certifikátu CA. Certifikát CA musí odpovídat kořenovému certifikátu certifikační autority, která vystavila certifikát pro tento profil (ten, který v tuto chvíli konfigurujete).",
+ "scepServerUrl": "Zadejte adresu URL pro server NDES, který vystavuje certifikáty prostřednictvím SCEP (musí se jednat o HTTPS). Například https://contoso.com/certsrv/mscep/mscep.dll.",
+ "scepServerUrls": "Přidejte nejméně jednu adresu URL pro server NDES, který vystavuje certifikáty prostřednictvím SCEP (musí se jednat o HTTPS). Např. https://contoso.com/certsrv/mscep/mscep.dll.",
+ "subjectAlternativeName": "Alternativní název subjektu",
+ "subjectNameFormat": "Formát názvu subjektu",
+ "validityPeriod": "Čas zbývající do vypršení platnosti certifikátu. Zadejte hodnotu, která je nižší nebo rovna období platnosti, které se zobrazuje v šabloně certifikátu. Výchozí hodnota je nastavená na jeden rok."
+ },
+ "appInstallContext": "Tato možnost určuje kontext instalace, který se přidruží k této aplikaci. U aplikací v duálním režimu vyberte požadovaný kontext pro tuto aplikaci. Pro všechny ostatní aplikace se tato hodnota vybere předem podle balíčku a nedá se upravit.",
+ "autoUpdateMode": "Nakonfigurujte prioritu aktualizace pro aplikaci. Vyberte „Výchozí“, pokud chcete vyžadovat, aby bylo zařízení před aktualizací aplikace připojeno k síti Wi-Fi, nabíjelo se a nebylo aktivně používáno. Vyberte „Vysoká priorita“, pokud se má aplikace aktualizovat hned, jakmile vývojář aplikaci publikuje, bez ohledu na stav nabíjení, připojení k síti Wi-Fi nebo aktivitu koncového uživatele na zařízení. Výběrem možnosti Odloženo zrušíte aktualizace aplikací až na 90 dní. Vysoká priorita a odložení se projeví pouze u zařízení DO.",
+ "configurationSettingsFormat": "Text formátu nastavení konfigurace",
+ "ignoreVersionDetection": "Pro aplikace, které automaticky aktualizuje jejich vývojář (třeba Google Chrome), nastavte tuto možnost na Ano.",
+ "ignoreVersionDetectionMacOSLobApp": "Vyberte Ano pro aplikace, které vývojář aplikace aktualizuje automaticky, nebo pro kontrolu bundleID aplikace před instalací. Pokud chcete před instalací zkontrolovat bundleID i číslo verze aplikace, vyberte možnost Ne.",
+ "installAsManagedMacOSLobApp": "Toto nastavení se použije jenom na macOS 11 a vyšší. V macOS 10.15 a nižším se aplikace nainstaluje, ale nebude spravovaná.",
+ "installContextDropdown": "Vyberte příslušný kontext instalace. Kontext uživatele nainstaluje aplikaci jen pro cílové uživatele, kdežto kontext zařízení nainstaluje aplikaci pro všechny uživatele daného zařízení.",
+ "ldapUrl": "Toto je název hostitele protokolu LDAP, kde můžu klienti získat veřejné šifrovací klíče pro příjemce e-mailů. E-maily se zašifrují, když je k dispozici klíč. Podporované formáty: - ldap.example.com
\r\n- ldap.example.com:123
\r\n- ldap://ldap.example.com
- ldap://ldap.example.com:123
- ldaps://ldap.example.com
\r\n- ldaps://ldap.example.com:123
",
+ "permissionsSettings": "Vyberte oprávnění modulu runtime pro přidružené aplikace.",
+ "policyAssociatedApp": "Vyberte aplikaci, ke které se tyto zásady přidruží.",
+ "policyConfigurationSettings": "Vyberte metodu, pomocí které chcete definovat nastavení konfigurace těchto zásad.",
+ "policyDescription": "Případně můžete také zadat popis těchto zásad konfigurace.",
+ "policyEnrollmentType": "Určete, jestli se tato nastavení mají spravovat prostřednictvím správy zařízení, nebo aplikací vytvořených s použitím sady Intune SDK.",
+ "policyName": "Zadejte název zásad konfigurace.",
+ "policyPlatform": "Vyberte platformu, které se budou tyto zásady konfigurace aplikací týkat.",
+ "policyProfileType": "Vyberte typy profilů zařízení, na které se bude tento konfigurační profil aplikace vztahovat",
+ "policySMime": "Nakonfigurujte nastavení šifrování a podepisování S/MIME pro Outlook.",
+ "sMimeDeployCertsFromIntune": "Zadejte, jestli se z Intune budou doručovat certifikáty S/MIME, aby se mohly používat v Outlooku.\r\nIntune může automaticky nasazovat podpisové a šifrovací certifikáty uživatelům přes Portál společnosti.",
+ "sMimeEnable": "Zadejte, jestli se při vytváření e-mailu povolí ovládací prvky S/MIME.",
+ "sMimeEnableAllowChange": "Určuje, jestli uživatel může měnit nastavení Povolit standard S/MIME.",
+ "sMimeEncryptAllEmails": "Zadejte, jestli musí být všechny e-maily šifrované, nebo ne.\r\nŠifrování převádí data na šifrovaný text, aby si je mohl přečíst jen zamýšlený příjemce.",
+ "sMimeEncryptAllEmailsAllowChange": "Určuje, jestli uživatel může měnit nastavení Šifrovat všechny e-maily.",
+ "sMimeEncryptionCertProfile": "Zadejte profil certifikátu pro šifrování e-mailů.",
+ "sMimeSignAllEmails": "Zadejte, jestli musí být všechny e-maily podepsané.\r\nDigitální podpis ověřuje pravost e-mailu a zajišťuje, že se během přenosu nezmění jeho obsah.",
+ "sMimeSignAllEmailsAllowChange": "Určuje, jestli uživatel může měnit nastavení Podepsat všechny e-maily.",
+ "sMimeSigningCertProfile": "Zadejte profil certifikátu pro podepisování e-mailů.",
+ "sMimeUserNotificationType": "Způsob, jak uživatelům oznámit, že k získání certifikátů S/MIME pro Outlook musí otevřít Portál společnosti"
},
- "BooleanActions": {
- "allow": "Povolit",
- "block": "Blokovat",
- "configured": "Nakonfigurováno",
- "disable": "Zakázat",
- "dontRequire": "Nevyžadovat",
- "enable": "Povolit",
- "hide": "Skrýt",
- "limit": "Limit",
- "notConfigured": "Nenakonfigurováno",
- "require": "Vyžadovat",
- "show": "Zobrazit",
- "yes": "Ano"
- },
- "ProactiveRemediations": {
- "Create": {
- "Basics": {
- "DescriptionMultiLineTextBox": {
- "label": "Popis",
- "placeholder": "Zadejte popis"
- },
- "NameTextBox": {
- "label": "Název",
- "placeholder": "Zadat název"
- },
- "PublisherTextBox": {
- "label": "Vydavatel",
- "placeholder": "Zadat vydavatele"
- },
- "VersionTextBox": {
- "label": "Verze"
- },
- "headerDescription": "Vytvořte nový vlastní balíček skriptu ze skriptů detekce a nápravy, které jste napsali."
- },
- "ScopeTags": {
- "headerDescription": "Vyberte jednu nebo více skupin pro přiřazení balíčku skriptu."
- },
- "Settings": {
- "DetectionScriptMultiLineTextBox": {
- "label": "Skript detekce",
- "placeholder": "Text vstupního skriptu",
- "requiredValidationMessage": "Zadejte skript detekce"
- },
- "EnforceScriptSignatureCheckOptionPicker": {
- "label": "Vynutit kontrolu podpisu skriptu"
- },
- "LoggedOnCredentialsOptionPicker": {
- "label": "Spustit tento skript pomocí přihlašovacích údajů přihlášeného uživatele"
- },
- "RemediationScript": {
- "infoBox": "Tento skript se spustí v režimu jenom pro detekci, protože není k dispozici žádný skript nápravy."
- },
- "RemediationScriptMultiLineTextBox": {
- "label": "Nápravný skript",
- "placeholder": "Text vstupního skriptu"
- },
- "RunIn64BitPSOptionPicker": {
- "label": "Spustit skript v 64bitovém PowerShellu"
- },
- "ScriptMultiLineTextBox": {
- "base64EncodingValidationMessage": "Neplatný skript. Nejméně jeden znak použitý ve skriptu není platný."
- },
- "headerDescription": "Vytvořte vlastní balíček skriptu ze skriptů, které jste napsali. Ve výchozím nastavení se skripty spustí na přiřazených zařízeních každý den.",
- "infoBox": "Tento skript je jen pro čtení. Některá nastavení tohoto skriptu můžou být zakázaná."
- },
- "title": "Vytvořit vlastní skript",
- "ScriptProperties": {
- "GridHeaders": {
- "interval": "Interval",
- "time": "Datum a čas"
- },
- "Interval": {
- "day": "Opakuje se každý den",
- "days": "Opakuje se vždy po {0} dnech",
- "hour": "Opakuje se každou hodinu",
- "hours": "Opakuje se vždy po {0} hodinách",
- "month": "Opakuje se každý měsíc",
- "months": "Opakuje se vždy po {0} měsících",
- "week": "Opakuje se každý týden",
- "weeks": "Opakuje se vždy po {0} týdnech"
- },
- "Time": {
- "utc": "{0} (UTC)",
- "utcWithDate": "{0} (UTC) dne {1}",
- "withDate": "{0} dne {1}"
- }
- }
- },
- "Edit": {
- "title": "Upravit – {0}"
- }
- },
"WindowsManagement": {
"Assignment": {
"noAssignmentCustomAttributeDisplayText": "Přiřaďte vlastní atribut alespoň k jedné skupině. Pokud chcete upravit přiřazení, přejděte do Vlastností.",
@@ -2708,910 +1644,6 @@
"shellScriptObjectName": "Skript prostředí",
"successfullySavedPolicy": "Uložené: {0}"
},
- "AssignmentFilters": {
- "assignmentFilterColumnHeader": "Filtr",
- "noFilters": "Žádné"
- },
- "Category": {
- "airPlay": "AirPlay",
- "airPrint": "AirPrint",
- "androidDefenderAtp": "Microsoft Defender pro koncový bod",
- "androidDeviceOwnerApplications": "Aplikace",
- "androidForWorkPassword": "Heslo zařízení",
- "appManagement": "Povolit nebo blokovat aplikace",
- "applicationGuard": "Ochrana Application Guard v programu Microsoft Defender",
- "applicationRestrictions": "Omezené aplikace",
- "applicationVisibility": "Zobrazit nebo skrýt aplikace",
- "applications": "App Store",
- "applicationsAndGames": "App Store, zobrazování dokumentů, hraní her",
- "applicationsAndGoogle": "Obchod Google Play",
- "appsAndExperience": "Aplikace a prostředí",
- "associatedDomains": "Přidružené domény",
- "autonomousSingleAppMode": "Autonomní režim jedné aplikace",
- "azureOperationalInsights": "Azure Operational Insights",
- "bitLocker": "Šifrování Windows",
- "browser": "Prohlížeč",
- "builtinApps": "Integrované aplikace",
- "cellular": "Mobilní",
- "cloudAndStorage": "Cloud a úložiště",
- "cloudPrint": "Cloudová tiskárna",
- "complianceEmailProfile": "E-mail",
- "connectedDevices": "Připojená zařízení",
- "connectivity": "Mobilní síť a připojení",
- "contentCaching": "Zachytávání obsahu",
- "controlPanelAndSettings": "Ovládací panely a nastavení",
- "credentialGuard": "Ochrana Credential Guard v programu Microsoft Defender",
- "customCompliance": "Vlastní dodržování předpisů",
- "customCompliancePreview": "Vlastní dodržování předpisů (Preview)",
- "customConfiguration": "Vlastní konfigurační profil",
- "customOMASettings": "Vlastní nastavení OMA-URI",
- "customPreferences": "Soubor preferencí",
- "defender": "Antivirová ochrana v programu Microsoft Defender",
- "defenderAntivirus": "Antivirová ochrana v programu Microsoft Defender",
- "defenderExploitGuard": "Ochrana Exploit Guard v programu Microsoft Defender",
- "defenderFirewall": "Firewall v programu Microsoft Defender",
- "defenderLocalSecurityOptions": "Možnosti zabezpečení místního zařízení",
- "defenderSecurityCenter": "Centrum zabezpečení v programu Microsoft Defender",
- "deliveryOptimization": "Optimalizace doručení",
- "derivedCredentialAuthenticationConfiguration": "Odvozené přihlašovací údaje",
- "deviceExperience": "Možnosti zařízení",
- "deviceFirmwareConfigurationInterface": "Rozhraní DFCI (Device Firmware Configuration Interface)",
- "deviceGuard": "Řízení aplikací v programu Microsoft Defender",
- "deviceHealth": "Stav zařízení",
- "devicePassword": "Heslo zařízení",
- "deviceProperties": "Vlastnosti zařízení",
- "deviceRestrictions": "Obecné",
- "deviceSecurity": "Zabezpečení systému",
- "display": "Zobrazit",
- "domainJoin": "Připojení k doméně",
- "domains": "Domény",
- "edgeBrowser": "Microsoft Edge starší verze (verze 45 a starší)",
- "edgeBrowserSmartScreen": "Filtr SmartScreen v programu Microsoft Defender",
- "edgeKiosk": "Beznabídkový režim Microsoft Edge",
- "editionUpgrade": "Upgrade edice",
- "education": "Vzdělávání",
- "educationDeviceCerts": "Certifikáty zařízení",
- "educationStudentCerts": "Certifikáty studentů",
- "educationTakeATest": "Zkuste si test",
- "educationTeacherCerts": "Certifikáty učitelů",
- "emailProfile": "E-mail",
- "enterpriseDataProtection": "Windows Information Protection",
- "expeditedCheckin": "Konfigurace správy mobilních zařízení",
- "extensibleSingleSignOn": "Rozšíření aplikace jednotného přihlašování",
- "filevault": "FileVault",
- "firewall": "Firewall",
- "games": "Hry",
- "gatekeeper": "Gatekeeper",
- "healthMonitoring": "Sledování stavu",
- "homeScreenLayout": "Rozložení domovské obrazovky",
- "iOSWallpaper": "Tapeta",
- "importedPFX": "Importovaný certifikát PKCS",
- "iosDefenderAtp": "Microsoft Defender pro koncový bod",
- "iosKiosk": "Veřejný terminál",
- "kernelExtensions": "Rozšíření jádra",
- "keyboardAndDictionary": "Klávesnice a slovník",
- "kiosk": "Veřejný terminál",
- "kioskAndroidEnterprise": "Vyhrazená zařízení",
- "kioskConfiguration": "Veřejný terminál",
- "kioskConfigurationV2": "Veřejný terminál",
- "kioskWebBrowser": "Webový prohlížeč veřejného terminálu",
- "lockScreenMessage": "Zpráva zamykací obrazovky",
- "lockedScreenExperience": "Prostředí zamknuté obrazovky",
- "logging": "Vytváření sestav a telemetrie",
- "loginItems": "Položky přihlášení",
- "loginWindow": "Přihlašovací okno",
- "macDefenderAtp": "Microsoft Defender pro koncový bod",
- "maintenance": "Údržba",
- "malware": "Malware",
- "messaging": "Zasílání zpráv",
- "networkBoundary": "Ohraničení sítě",
- "networkProxy": "Síťový proxy server",
- "notifications": "Oznámení aplikace",
- "pKCS": "Certifikát PKCS",
- "password": "Heslo",
- "personalProfile": "Osobní profil",
- "personalization": "Přizpůsobení",
- "policyOverride": "Přepsat zásady skupiny",
- "powerSettings": "Nastavení napájení",
- "printer": "Tiskárna",
- "privacy": "Soukromí",
- "privacyPerApp": "Výjimky ze zásad ochrany osobních údajů pro jednotlivé aplikace",
- "privacyPreferences": "Předvolby ochrany osobních údajů",
- "projection": "Projekce",
- "sCCMCompliance": "Dodržování předpisů Configuration Manageru",
- "sCEP": "Certifikát SCEP",
- "sCEPProperties": "Certifikát SCEP",
- "sMode": "Přepínač režimů (jen Windows Insider)",
- "safari": "Safari",
- "search": "Hledat",
- "session": "Relace",
- "sharedDevice": "Sdílený iPad",
- "sharedPCAccountManager": "Sdílené víceuživatelské zařízení",
- "singleSignOn": "Jednotné přihlašování",
- "smartScreen": "Filtr SmartScreen v programu Microsoft Defender",
- "softwareUpdates": "Nastavení",
- "start": "Spustit",
- "systemExtensions": "Systémová rozšíření",
- "systemSecurity": "Zabezpečení systému",
- "trustedCert": "Důvěryhodný certifikát",
- "updates": "Aktualizace",
- "userRights": "Uživatelská práva",
- "usersAndAccounts": "Uživatelé a účty",
- "vPN": "Základní síť VPN",
- "vPNApps": "Automatické připojení VPN",
- "vPNAppsAndTrafficRules": "Aplikace a pravidla přenosů",
- "vPNConditionalAccess": "Podmíněný přístup",
- "vPNConnectivity": "Možnosti připojení",
- "vPNDNSTriggers": "Nastavení DNS",
- "vPNIKEv2": "Nastavení IKEv2",
- "vPNProxy": "Proxy",
- "vPNSplitTunneling": "Dělené tunelové propojení",
- "vPNTrustedNetwork": "Detekce důvěryhodných sítí",
- "webContentFilter": "Filtr webového obsahu",
- "wiFi": "Wi-Fi",
- "win10Wifi": "Wi-Fi",
- "windowsAtp": "Microsoft Defender pro koncový bod",
- "windowsDefenderATP": "Microsoft Defender pro koncový bod",
- "windowsHelloForBusiness": "Windows Hello pro firmy",
- "windowsSpotlight": "Windows Spotlight",
- "wiredNetwork": "Drátová síť",
- "wireless": "Bezdrátové",
- "wirelessProjection": "Bezdrátová projekce",
- "workProfile": "Nastavení pracovního profilu",
- "workProfilePassword": "Heslo pracovního profilu",
- "xboxServices": "Služby Xbox",
- "zebraMx": "Profil MX (pouze Zebra)",
- "complianceActionsLabel": "Akce při nedodržení předpisů"
- },
- "MicrosoftEdgeChannel": {
- "beta": "Beta",
- "dev": "Dev",
- "stable": "Stable"
- },
- "ConfigurationTypes": {
- "Table": {
- "androidDeviceOwnerGeneral": "Omezení zařízení (vlastník zařízení)",
- "androidForWorkGeneral": "Omezení zařízení (pracovní profil)"
- },
- "androidCustom": "Vlastní",
- "androidDeviceOwnerGeneral": "Omezení zařízení",
- "androidDeviceOwnerPkcs": "Certifikát PKCS",
- "androidDeviceOwnerScep": "Certifikát SCEP",
- "androidDeviceOwnerTrustedCertificate": "Důvěryhodný certifikát",
- "androidDeviceOwnerVpn": "Síť VPN",
- "androidDeviceOwnerWiFi": "Wi-Fi",
- "androidEmailProfile": "E-mail (jen Samsung KNOX)",
- "androidForWorkCustom": "Vlastní",
- "androidForWorkEmailProfile": "E-mail",
- "androidForWorkGeneral": "Omezení zařízení",
- "androidForWorkImportedPFX": "Importovaný certifikát PKCS",
- "androidForWorkOemConfig": "OEMConfig",
- "androidForWorkPKCS": "Certifikát PKCS",
- "androidForWorkSCEP": "Certifikát SCEP",
- "androidForWorkTrustedCertificate": "Důvěryhodný certifikát",
- "androidForWorkVpn": "VPN",
- "androidForWorkWiFi": "Wi-Fi",
- "androidGeneral": "Omezení zařízení",
- "androidImportedPFX": "Importovaný certifikát PKCS",
- "androidPKCS": "Certifikát PKCS",
- "androidSCEP": "Certifikát SCEP",
- "androidTrustedCertificate": "Důvěryhodný certifikát",
- "androidVPN": "VPN",
- "androidWiFi": "Wi-Fi",
- "androidZebraMx": "Profil MX (pouze Zebra)",
- "complianceAndroid": "Zásady dodržování předpisů v Androidu",
- "complianceAndroidDeviceOwner": "Plně spravovaná, vyhrazená, vlastněná společností a s pracovním profilem",
- "complianceAndroidEnterprise": "Pracovní profil v osobním vlastnictví",
- "complianceAndroidForWork": "Zásady dodržování předpisů pro Android for Work",
- "complianceIos": "Zásady dodržování předpisů v iOSu",
- "complianceMac": "Zásady dodržování předpisů na Macu",
- "complianceWindows10": "Zásada dodržování předpisů ve Windows 10 a novějších",
- "complianceWindows10Mobile": "Zásady dodržování předpisů ve Windows 10 Mobile",
- "complianceWindows8": "Zásady dodržování předpisů ve Windows 8",
- "complianceWindowsPhone": "Zásady dodržování předpisů ve Windows Phone",
- "exchangeActiveSync": "Exchange ActiveSync",
- "iosCustom": "Vlastní",
- "iosDerivedCredentialAuthenticationConfiguration": "Odvozené přihlašovací údaje PIV",
- "iosDeviceFeatures": "Funkce zařízení",
- "iosEDU": "Vzdělávání",
- "iosEducation": "Vzdělávání",
- "iosEmailProfile": "E-mail",
- "iosGeneral": "Omezení zařízení",
- "iosImportedPFX": "Importovaný certifikát PKCS",
- "iosPKCS": "Certifikát PKCS",
- "iosPresets": "Předvolby",
- "iosSCEP": "Certifikát SCEP",
- "iosTrustedCertificate": "Důvěryhodný certifikát",
- "iosVPN": "VPN",
- "iosVPNZscaler": "Síť VPN",
- "iosWiFi": "Wi-Fi",
- "macCustom": "Vlastní",
- "macDeviceFeatures": "Funkce zařízení",
- "macEndpointProtection": "Ochrana koncového bodu",
- "macExtensions": "Rozšíření",
- "macGeneral": "Omezení zařízení",
- "macImportedPFX": "Importovaný certifikát PKCS",
- "macSCEP": "Certifikát SCEP",
- "macTrustedCertificate": "Důvěryhodný certifikát",
- "macVPN": "VPN",
- "macWiFi": "Wi-Fi",
- "settingsCatalog": "Katalog nastavení (Preview)",
- "unsupported": "Nepodporováno",
- "windows10AdministrativeTemplate": "Šablony pro správu (Preview)",
- "windows10Atp": "Microsoft Defender for Endpoint (desktopová zařízení se systémem Windows 10 nebo novějším)",
- "windows10Custom": "Vlastní",
- "windows10DesktopSoftwareUpdate": "Aktualizace softwaru",
- "windows10DeviceFirmwareConfigurationInterface": "Rozhraní DFCI (Device Firmware Configuration Interface)",
- "windows10EmailProfile": "E-mail",
- "windows10EndpointProtection": "Ochrana koncového bodu",
- "windows10EnterpriseDataProtection": "Windows Information Protection",
- "windows10General": "Omezení zařízení",
- "windows10ImportedPFX": "Importovaný certifikát PKCS",
- "windows10Kiosk": "Veřejný terminál",
- "windows10NetworkBoundary": "Ohraničení sítě",
- "windows10PKCS": "Certifikát PKCS",
- "windows10PolicyOverride": "Přepsat zásady skupiny",
- "windows10SCEP": "Certifikát SCEP",
- "windows10SecureAssessmentProfile": "Vzdělávací profil",
- "windows10SharedPC": "Sdílené víceuživatelské zařízení",
- "windows10TeamGeneral": "Omezení zařízení (Windows 10 Team)",
- "windows10TrustedCertificate": "Důvěryhodný certifikát",
- "windows10VPN": "VPN",
- "windows10WiFi": "Wi-Fi",
- "windows10WiFiCustom": "Vlastní Wi-Fi",
- "windows8General": "Omezení zařízení",
- "windows8SCEP": "Certifikát SCEP",
- "windows8TrustedCertificate": "Důvěryhodný certifikát",
- "windows8VPN": "VPN",
- "windows8WiFi": "Import Wi-Fi",
- "windowsDeliveryOptimization": "Optimalizace doručení",
- "windowsDomainJoin": "Připojení k doméně",
- "windowsEditionUpgrade": "Upgrade edice a přepnutí režimu",
- "windowsIdentityProtection": "Ochrana identity",
- "windowsPhoneCustom": "Vlastní",
- "windowsPhoneEmailProfile": "E-mail",
- "windowsPhoneGeneral": "Omezení zařízení",
- "windowsPhoneImportedPFX": "Importovaný certifikát PKCS",
- "windowsPhoneSCEP": "Certifikát SCEP",
- "windowsPhoneTrustedCertificate": "Důvěryhodný certifikát",
- "windowsPhoneVPN": "VPN",
- "IosUpdate": "Zásady aktualizace iOS"
- },
- "WindowsEnrollment": {
- "coManagementAuthorityDesc": "Konfigurovat nastavení spolusprávy pro integraci Configuration Manageru",
- "coManagementAuthorityTitle": "Nastavení spolusprávy ",
- "deploymentProfiles": "Profily nasazení Windows AutoPilot",
- "description": "Informace o sedmi různých způsobech, jak můžou uživatelé nebo správci registrovat osobní počítač s Windows 10/11 v Intune.",
- "descriptionLabel": "Metody registrace systému Windows",
- "enrollmentStatusPage": "Stránka stavu registrace"
- },
- "Platform": {
- "all": "Vše",
- "android": "Správce zařízení s Androidem",
- "androidAOSP": "Android (AOSP)",
- "androidEnterprise": "Android Enterprise",
- "androidForWork": "Android Enterprise",
- "androidWorkProfile": "Android Enterprise",
- "common": "Společné",
- "iOS": "iOS/iPadOS",
- "iosAndAndroidPlatformLabel": "iOS a Android",
- "iosCommaAndroidPlatformLabel": "iOS, Android",
- "linux": "Linux",
- "macOS": "macOS",
- "unknown": "Neznámé",
- "unsupported": "Nepodporováno",
- "windows": "Windows",
- "windows10": "Windows 10 a novější",
- "windows10CM": "Windows 10 a novější (ConfigMgr)",
- "windows10Holo": "Windows 10 Holographic",
- "windows10Mobile": "Windows 10 Mobile",
- "windows10Team": "Windows 10 Team",
- "windows10X": "Windows 10X",
- "windows8": "Windows 8.1 a novější",
- "windows8And10": "Windows 8 a 10",
- "windowsPhone": "Windows Phone 8.1",
- "windows10AndLater": "Windows 10 a novější",
- "windows10AndWindowsServer": "Windows 10, Windows 11 a Windows Server (ConfigMgr)",
- "windows10andLaterCM": "Windows 10 a novější (ConfigMgr)",
- "holoLens": "HoloLens",
- "surfaceHub2": "Surface Hub 2",
- "surfaceHub2S": "Surface Hub 2S",
- "windowsPC": "Počítač s Windows"
- },
- "EnrollmentRestrictions": {
- "DeletePayloadLink": {
- "content": "Profil {0} je zahrnutý v jedné nebo více sadách zásad. Pokud profil {0} odstraníte, nebudete už jej moct přiřazovat prostřednictvím těchto sad zásad. Chcete jej přesto odstranit?",
- "contentWithError": "{0} by mohla být zahrnutá v jedné nebo více sadách zásad. Pokud {0} odstraníte, nebudete už ji moct přiřazovat prostřednictvím těchto sad zásad. Chcete ji přesto odstranit?",
- "header": "Opravdu chcete odstranit toto omezení?"
- },
- "DeviceLimit": {
- "description": "Zadejte maximální počet zařízení, která uživatel může zaregistrovat.",
- "header": "Omezení limitů počtů zařízení",
- "info": "Definujte, kolik zařízení může každý uživatel zaregistrovat."
- },
- "DeviceType": {
- "VersionValidation": {
- "aOSP": "Musí být 1.0 nebo vyšší.",
- "android": "Zadejte platné číslo verze. Příklady: 5.0, 5.5.1, 6.0.0.1",
- "androidForWork": "Zadejte platné číslo verze. Příklady: 5.0, 5.1.1",
- "iOS": "Zadejte platné číslo verze. Příklady: 9.0, 10.0, 9.0.2",
- "mac": "Zadejte platné číslo verze. Příklady: 10, 10.10, 10.10.1",
- "min": "Minimum nemůže být menší než {0}.",
- "minMax": "Minimální verze nemůže být větší než maximální verze.",
- "windows": "Musí být 10.0 nebo vyšší. Pokud chcete povolit zařízení 8.1, nechejte pole prázdné.",
- "windowsMobile": "Musí být 10.0 nebo vyšší. Pokud chcete povolit zařízení 8.1, nechejte pole prázdné."
- },
- "allPlatformsBlocked": "Všechny platformy zařízení jsou zablokované. Pokud chcete povolit konfiguraci platforem, povolte jejich registraci.",
- "blockManufacturerPlaceHolder": "Název výrobce",
- "blockManufacturersHeader": "Zablokovaní výrobci",
- "cannotRestrict": "Omezení se nepodporují.",
- "configurationDescription": "Zadejte omezení konfigurace platformy, která se musí splnit, aby se zařízení zaregistrovalo. Po registraci můžete zařízení omezovat pomocí zásad dodržování předpisů. Verze definujte jako hlavníverze.podverze.build. Omezení verzí platí jenom pro zařízení registrovaná na Portálu společnosti. Intune standardně klasifikuje zařízení jako v osobním vlastnictví. Pokud se zařízení mají klasifikovat jako ve vlastnictví firmy, je nutná další akce.",
- "configurationDescriptionLabel": "Další informace o nastavení omezení registrace",
- "configurations": "Konfigurovat platformy",
- "deviceManufacturer": "Výrobce zařízení",
- "header": "Omezení typů zařízení",
- "info": "Definujte, které platformy, verze a typy správy se můžou registrovat.",
- "manufacturer": "Výrobce",
- "max": "Maximum",
- "maxVersion": "Maximální verze",
- "min": "Minimum",
- "minVersion": "Minimální verze",
- "newPlatforms": "Povolili jste nové platformy. Zvažte možnost aktualizovat konfigurace platforem.",
- "personal": "V osobním vlastnictví",
- "platform": "Platforma",
- "platformDescription": "Registraci můžete povolit pro následující platformy. Blokujte jenom ty platformy, které nebudete podporovat. Povolené platformy se dají konfigurovat prostřednictvím dalších omezení registrace.",
- "platformSettings": "Nastavení platformy",
- "platforms": "Vyberte platformy.",
- "platformsSelected": "Počet vybraných platforem: {0}",
- "type": "Typ",
- "versions": "verze",
- "versionsRange": "Povolit rozsah min/max:",
- "windowsTooltip": "Omezí registrace prostřednictvím správy mobilních zařízení. Neomezí instalaci agentů počítačů. Podporují se jen verze Windows 10 a Windows 11. Pokud chcete povolit Windows 8.1, nechejte verze prázdné."
- },
- "Priority": {
- "saved": "Priority omezení se úspěšně uložily."
- },
- "Row": {
- "announce": "Priorita: {0}, název: {1}, přiřazené: {2}"
- },
- "Table": {
- "deployed": "Nasazeno",
- "name": "Název",
- "priority": "Priorita"
- },
- "Type": {
- "limit": "Omezení limitu počtu zařízení",
- "type": "Omezení typu zařízení"
- },
- "allUsers": "Všichni uživatelé",
- "androidRestrictions": "Omezení pro Android",
- "create": "Vytvořit omezení",
- "defaultLimitDescription": "Toto je výchozí omezení limitu počtu zařízení, které se s nejnižší prioritou používá pro všechny uživatele bez ohledu na členství ve skupině.",
- "defaultTypeDescription": "Toto je výchozí omezení typu zařízení, které se s nejnižší prioritou používá pro všechny uživatele bez ohledu na členství ve skupině.",
- "defaultWhfbDescription": "Toto je výchozí konfigurace Windows Hello pro firmy, která se s nejnižší prioritou používá pro všechny uživatele bez ohledu na členství ve skupině.",
- "deleteMessage": "Ovlivnění uživatelé se omezí dalším přiřazeným omezením s nejvyšší prioritou. Pokud nejsou přiřazená žádná další omezení, použije se výchozí omezení.",
- "deleteTitle": "Opravdu chcete odstranit omezení {0}?",
- "descriptionHint": "Krátký odstavec s popisem využití v organizaci nebo úrovně omezení charakterizované nastavením omezení",
- "edit": "Upravit omezení",
- "info": "Zařízení musí dodržovat omezení registrace s nejvyšší prioritou, která se přiřadila jeho uživateli. Pokud chcete změnit prioritu omezení zařízení, můžete omezení přetáhnout. Výchozí omezení mají pro všechny uživatele nejnižší prioritu a spravují registrace bez uživatelů. Dají se upravit, ale ne odstranit.",
- "iosRestrictions": "Omezení pro iOS",
- "mDM": "MDM",
- "macRestrictions": "Omezení pro macOS",
- "maxVersion": "Maximální verze",
- "minVersion": "Minimální verze",
- "nameHint": "Toto bude primární atribut viditelný při identifikaci sady omezení.",
- "noAssignmentsStatusBar": "Přiřaďte omezení k aspoň jedné skupině. Klikněte na Vlastnosti.",
- "notFound": "Omezení se nenašlo. Možná už se odstranilo.",
- "personallyOwned": "Zařízení v osobním vlastnictví",
- "restriction": "Omezení",
- "restrictionLowerCase": "omezení",
- "restrictionType": "Typ omezení",
- "selectType": "Vyberte typ omezení.",
- "selectValidation": "Vyberte prosím platformu.",
- "typeHint": "Pokud chcete omezit vlastnosti zařízení, zvolte Omezení typu zařízení. Pokud chcete omezit počet zařízení na jednoho uživatele, zvolte Omezení limitu počtu zařízení.",
- "typeRequired": "Typ omezení je povinný.",
- "winPhoneRestrictions": "Omezení pro Windows Phone",
- "windowsRestrictions": "Omezení pro Windows"
- },
- "Titles": {
- "ChromeOs": {
- "devices": "Zařízení s operačním systémem Chrome"
- },
- "ManagedDesktop": {
- "adminContacts": "Kontakty správce",
- "appPackaging": "Balení aplikace",
- "devices": "Zařízení",
- "feedback": "Zpětná vazba",
- "gettingStarted": "Začínáme",
- "messages": "Zprávy",
- "onlineResources": "Prostředky online",
- "serviceRequests": "Žádosti o služby",
- "settings": "Nastavení",
- "tenantEnrollment": "Registrace tenanta"
- },
- "actions": "Akce při nedodržení předpisů",
- "advancedExchangeSettings": "Nastavení Exchange Online",
- "advancedThreatProtection": "Microsoft Defender pro koncový bod",
- "allApps": "Všechny aplikace",
- "allDevices": "Všechna zařízení",
- "androidFotaDeployments": "Nasazení FOTA pro Android",
- "appBundles": "Sady prostředků aplikace",
- "appCategories": "Kategorie aplikací",
- "appConfigPolicies": "Zásady konfigurace aplikací",
- "appInstallStatus": "Stav instalace aplikace",
- "appLicences": "Licence aplikací",
- "appProtectionPolicies": "Zásady ochrany aplikací",
- "appProtectionStatus": "Stav ochrany aplikace",
- "appSelectiveWipe": "Selektivní vymazání aplikace",
- "appleVppTokens": "Tokeny Apple VPP",
- "apps": "Aplikace",
- "assign": "Přiřazení",
- "assignedPermissions": "Přiřazená oprávnění",
- "assignedRoles": "Přiřazené role",
- "autopilotDeploymentReport": "Nasazení Autopilot (Preview)",
- "brandingAndCustomization": "Přizpůsobení",
- "cartProfiles": "Profily košíků",
- "certificateConnectors": "Konektory certifikátů",
- "chromeEnterprise": "Chrome Enterprise",
- "compliancePolicies": "Zásady dodržování předpisů",
- "complianceScriptManagement": "Skripty",
- "complianceScriptManagementPreview": "Skripty (Preview)",
- "complianceSettings": "Nastavení zásad dodržování předpisů",
- "conditionStatements": "Příkazy podmínek",
- "conditions": "Umístění",
- "configMgr": "Microsoft Endpoint Configuration Manager",
- "configurationProfiles": "Konfigurační profily",
- "configurationProfilesPreview": "Konfigurační profily (Preview)",
- "connectorsAndTokens": "Konektory a tokeny",
- "corporateDeviceIdentifiers": "Identifikátory podnikových zařízení",
- "customAttributes": "Vlastní atributy",
- "customNotifications": "Vlastní oznámení",
- "deploymentSettings": "Nastavení nasazení",
- "derivedCredentials": "Odvozené přihlašovací údaje",
- "deviceActions": "Akce zařízení",
- "deviceCategories": "Kategorie zařízení",
- "deviceCleanUp": "Pravidla čištění zařízení",
- "deviceEnrollmentManagers": "Správci registrace zařízení",
- "deviceExecutionStatus": "Stav zařízení",
- "deviceLimitEnrollmentRestrictions": "Omezení limitu zařízení pro registraci",
- "deviceTypeEnrollmentRestrictions": "Omezení platformy zařízení pro registraci",
- "devices": "Zařízení",
- "discoveredApps": "Zjištěné aplikace",
- "embeddedSIM": "Mobilní profily eSIM (Preview)",
- "enrollDevices": "Registrovat zařízení",
- "enrollmentFailures": "Neúspěšné registrace",
- "enrollmentNotifications": "Oznámení o registraci (Preview)",
- "enrollmentRestrictions": "Omezení registrace",
- "exchangeActiveSync": "Exchange ActiveSync",
- "exchangeServiceConnectors": "Konektory služby Exchange",
- "failuresForFeatureUpdates": "Selhání aktualizace funkcí (Preview)",
- "failuresForQualityUpdates": "Chyby urychlené aktualizace systému Windows (Preview)",
- "featureFlighting": "Publikování testovacích verzí funkcí",
- "featureUpdateDeployments": "Aktualizace funkcí pro systém Windows 10 a novější (Preview)",
- "flighting": "Publikování testovacích verzí",
- "fotaUpdate": "Aktualizace FOTA",
- "groupPolicy": "Šablony pro správu",
- "groupPolicyAnalytics": "Analýza zásad skupiny",
- "helpSupport": "Nápověda a podpora",
- "helpSupportReplacement": "Nápověda a podpora ({0})",
- "iOSAppProvisioning": "Zřizovací profily aplikací pro iOS",
- "incompleteUserEnrollments": "Nedokončené registrace uživatele",
- "intuneRemoteAssistance": "Vzdálená nápověda (Preview)",
- "iosUpdates": "Aktualizovat zásady pro iOS/iPadOS",
- "legacyPcManagement": "Starší verze správy počítače",
- "macOSSoftwareUpdate": "Zásady aktualizace pro macOS",
- "macOSSoftwareUpdateAccountSummaries": "Stav instalace pro zařízení s macOSem",
- "macOSSoftwareUpdateCategorySummaries": "Souhrn aktualizací softwaru",
- "macOSSoftwareUpdateStateSummaries": "aktualizace",
- "managedGooglePlay": "Spravovaný obchod Google Play",
- "msfb": "Microsoft Store pro firmy",
- "myPermissions": "Moje oprávnění",
- "notifications": "Oznámení",
- "officeApps": "Aplikace Office",
- "officeProPlusPolicies": "Zásady pro aplikace Office",
- "onPremise": "Místní",
- "onPremisesConnector": "Exchange ActiveSync On-premises Connector",
- "onPremisesDeviceAccess": "Zařízení Exchange ActiveSync",
- "onPremisesManageAccess": "Přístup k místnímu Exchangi",
- "outOfDateIosDevices": "Chyby instalace pro zařízení s iOSem",
- "overview": "Přehled",
- "partnerDeviceManagement": "Správa partnerského zařízení",
- "perUpdateRingDeploymentState": "Stav nasazení podle kruhu aktualizace",
- "permissions": "Oprávnění",
- "platformApps": "Počet aplikací: {0}",
- "platformDevices": "Zařízení {0}",
- "platformEnrollment": "Registrace {0}",
- "policies": "Zásady",
- "previewMDMDevices": "Všechna spravovaná zařízení (Preview)",
- "profiles": "Profily",
- "properties": "Vlastnosti",
- "reports": "Sestavy",
- "retireNoncompliantDevices": "Vyřadit (z provozu) zařízení nesplňující požadavky",
- "retireNoncompliantDevicesPreview": "Retire noncompliant devices (preview)",
- "role": "Role",
- "scriptManagement": "Skripty",
- "securityBaselines": "Standardní hodnoty zabezpečení",
- "serviceToServiceConnector": "Konektor Exchange Online",
- "shellScripts": "Skripty prostředí",
- "teamViewerConnector": "Konektor pro TeamViewer",
- "telecomeExpenseManagement": "Služba TEM (Telecom Expense Management)",
- "tenantAdmin": "Správce tenanta",
- "tenantAdministration": "Správa tenanta",
- "termsAndConditions": "Podmínky a ujednání",
- "titles": "Názvy",
- "troubleshootSupport": "Řešení problémů a podpora",
- "user": "Uživatel",
- "userExecutionStatus": "Stav uživatele",
- "warranty": "Dodavatelé se zárukou",
- "wdacSupplementalPolicies": "Doplňkové zásady režimu S",
- "windows10DriverUpdate": "Aktualizace ovladačů pro systém Windows 10 a novější (Preview)",
- "windows10QualityUpdate": "Aktualizace pro zvýšení kvality pro systém Windows 10 a novější (Preview)",
- "windows10UpdateRings": "Aktualizační okruhy pro Windows 10 a novější",
- "windows10XPolicyFailures": "Selhání zásad Windows 10X",
- "windowsEnterpriseCertificate": "Certifikát Windows Enterprise",
- "windowsManagement": "Powershellové skripty",
- "windowsSideLoadingKeys": "Klíče pro instalaci bokem ve Windows",
- "windowsSymantecCertificate": "Certifikát Windows DigiCert",
- "windowsThreatReport": "Stav agenta hrozeb"
- },
- "ScopeTypes": {
- "allDevices": "Všechna zařízení",
- "allUsers": "Všichni uživatelé",
- "allUsersAndDevices": "Všichni uživatelé a všechna zařízení",
- "selectedGroups": "Vybrané skupiny"
- },
- "DetectionRules": {
- "ComparisonOperators": {
- "equals": "Je rovno",
- "greaterThan": "Větší než",
- "greaterThanOrEqualTo": "Větší než nebo rovno",
- "lessThan": "Menší než",
- "lessThanOrEqualTo": "Menší než nebo rovno",
- "notEqualTo": "Není rovno"
- },
- "CustomScript": {
- "enforceSignatureCheck": "Vynutit kontrolu podpisu skriptu a tiše spustit skript",
- "enforceSignatureCheckTooltip": "Pokud chcete ověřit, že skript je podepsaný důvěryhodným vydavatelem, který umožní skriptu běžet bez toho, aby se zobrazovaly výzvy nebo upozornění, vyberte Ano. Skript se spustí neblokovaný. Pokud chcete skript spustit s potvrzením koncového uživatele bez ověření podpisu, vyberte Ne (výchozí).",
- "header": "Použít vlastní skript zjišťování",
- "runAs32Bit": "Na 64bitových klientech spouštět skript jako 32bitový proces",
- "runAs32BitTooltip": "Pokud chcete na 64bitových klientech spouštět skript jako 32bitový proces, vyberte Ano. Pokud ho na těchto klientech chcete spouštět jako 64bitový proces, vyberte Ne (výchozí). 32bitoví klienti budou skript spouštět jako 32bitový proces.",
- "scriptFile": "Soubor skriptu",
- "scriptFileNotSelectedValidation": "Nevybral se žádný soubor skriptu.",
- "scriptFileTooltip": "Vyberte powershellový skript, který zjistí přítomnost aplikace v klientovi. Aplikace se bude považovat za zjištěnou, když skript vrátí ukončovací kód s hodnotou 0 a zapíše řetězcovou hodnotu na STDOUT."
- },
- "Manual": {
- "FileRule": {
- "DetectionMethodOptions": {
- "dateCreated": "Datum vytvoření",
- "dateModified": "Datum změny",
- "doesNotExist": "Soubor nebo složka neexistuje.",
- "fileOrFolderExists": "Soubor nebo složka existuje.",
- "sizeInMB": "Velikost v MB",
- "version": "Řetězec (verze)"
- },
- "associatedWith32Bit": "Přidruženo k 32bitové aplikaci na 64bitových klientech",
- "associatedWith32BitTooltip": "Pokud chcete na 64bitových klientech rozbalit proměnné prostředí cest v 32bitovém kontextu, vyberte Ano. Pokud chcete na těchto klientech rozbalit všechny proměnné cest v 64bitovém kontextu, vyberte Ne (výchozí). 32bitoví klienti budou vždy používat 32bitový kontext.",
- "detectionMethod": "Metoda zjišťování",
- "detectionMethodTooltip": "Vyberte typ metody zjišťování, která se používá k ověření přítomnosti aplikace",
- "fileOrFolder": "Soubor nebo složka",
- "fileOrFolderToolTip": "Soubor nebo složka, které se mají zjistit",
- "operator": "Operátor",
- "operatorTooltip": "Vyberte operátor, pomocí kterého metoda zjišťování ověří porovnání.",
- "path": "Cesta",
- "pathTooltip": "Úplná cesta složky, která obsahuje soubor nebo složku, které se mají zjistit",
- "value": "Hodnota",
- "valueTooltip": "Vyberte hodnotu, která odpovídá vybrané metodě zjišťování. Metody zjišťování na základě data by se měly zadat v místním čase."
- },
- "GridColumns": {
- "pathOrCode": "Cesta/kód",
- "type": "Typ"
- },
- "MsiRule": {
- "operator": "Operátor",
- "operatorTooltip": "Vyberte operátor pro porovnání ověření verze produktu Instalační služby MSI.",
- "productCode": "Kód produktu Instalační služby MSI",
- "productCodeTooltip": "Platný kód produktu Instalační služby MSI pro aplikaci",
- "productVersion": "Hodnota",
- "productVersionCheck": "Kontrola verze produktu Instalační služby MSI",
- "productVersionCheckTooltip": "Pokud chcete kromě kódu produktu Instalační služby MSI ověřit i verzi tohoto produktu, vyberte Ano.",
- "productVersionTooltip": "Zadejte verzi produktu Instalační služby MSI pro aplikaci."
- },
- "RegistryRule": {
- "DetectionMethodOptions": {
- "integerComparison": "Porovnání celých čísel",
- "keyDoesNotExist": "Klíč neexistuje.",
- "keyExists": "Klíč existuje.",
- "stringComparison": "Porovnání řetězců",
- "valueDoesNotExist": "Hodnota neexistuje.",
- "valueExists": "Hodnota existuje.",
- "versionComparison": "Porovnání verzí"
- },
- "associatedWith32Bit": "Přidruženo k 32bitové aplikaci na 64bitových klientech",
- "associatedWith32BitTooltip": "Pokud chcete na 64bitových klientech prohledávat 32bitový registr, vyberte Ano. Pokud na těchto klientech chcete prohledávat 64bitový registr, vyberte Ne (výchozí). 32bitoví klienti budou vždy prohledávat 32bitový registr.",
- "detectionMethod": "Metoda zjišťování",
- "detectionMethodTooltip": "Vyberte typ metody zjišťování, která se používá k ověření přítomnosti aplikace",
- "keyPath": "Cesta ke klíči",
- "keyPathTooltip": "Úplná cesta položky registru, která obsahuje hodnotu, která se má zjistit",
- "operator": "Operátor",
- "operatorTooltip": "Vyberte operátor, pomocí kterého metoda zjišťování ověří porovnání.",
- "value": "Hodnota",
- "valueName": "Název hodnoty",
- "valueNameTooltip": "Název hodnoty registru, která se má zjistit",
- "valueTooltip": "Vyberte hodnotu, která odpovídá vybrané metodě zjišťování."
- },
- "RuleTypeOptions": {
- "file": "Soubor",
- "mSI": "Instalační služba MSI",
- "registry": "Registr"
- },
- "gridAriaLabel": "Pravidla zjišťování",
- "header": "Vytvořte pravidlo, které indikuje přítomnost aplikace.",
- "noRulesSelectedPlaceholder": "Nezadala se žádná pravidla.",
- "ruleTableLimit": "Můžete přidat až 25 pravidel detekce",
- "ruleType": "Typ pravidla",
- "ruleTypeTooltip": "Zvolte typ pravidla zjišťování, které se má přidat."
- },
- "RuleConfigurationOptions": {
- "customScript": "Použít vlastní skript zjišťování",
- "manual": "Ručně nakonfigurovat pravidla zjišťování"
- },
- "bladeTitle": "Pravidla detekce",
- "header": "Nakonfigurovat pravidla pro konkrétní aplikaci, pomocí kterých se zjistí přítomnost aplikace",
- "rulesFormat": "Formát pravidel",
- "rulesFormatTooltip": "Zvolte buď ruční konfiguraci pravidel zjišťování, nebo použijte vlastní skript, který zjistí přítomnost aplikace.",
- "selectorLabel": "Pravidla detekce"
- },
- "AppType": {
- "androidEnterpriseSystemApp": "Aplikace systému Android Enterprise",
- "androidForWorkApp": "Aplikace spravovaného obchodu Google Play",
- "androidLobApp": "Obchodní aplikace Android",
- "androidStoreApp": "Aplikace z obchodu pro Android",
- "builtInAndroid": "Integrovaná aplikace pro Android",
- "builtInApp": "Integrovaná aplikace",
- "builtInIos": "Integrovaná aplikace pro iOS",
- "default": "",
- "iosLobApp": "Obchodní aplikace iOS",
- "iosStoreApp": "Aplikace z obchodu pro iOS",
- "iosVppApp": "Aplikace iOS koupená přes Volume Purchase Program",
- "lineOfBusinessApp": "Obchodní aplikace",
- "macOSDmgApp": "Aplikace pro macOS (.DMG)",
- "macOSEdgeApp": "Microsoft Edge (macOS)",
- "macOSLobApp": "Obchodní aplikace pro macOS",
- "macOSMdatpApp": "Microsoft Defender ATP (macOS)",
- "macOSOfficeSuiteApp": "Aplikace Microsoft 365 (macOS)",
- "macOsVppApp": "Aplikace macOS koupená přes Volume Purchase Program",
- "managedAndroidLobApp": "Spravovaná obchodní aplikace Android",
- "managedAndroidStoreApp": "Spravovaná aplikace z obchodu pro Android",
- "managedGooglePlayApp": "Aplikace spravovaného obchodu Google Play",
- "managedGooglePlayPrivateApp": "Privátní aplikace spravovaného obchodu Google Play",
- "managedGooglePlayWebApp": "Webový odkaz spravovaného obchodu Google Play",
- "managedIosLobApp": "Spravovaná obchodní aplikace iOS",
- "managedIosStoreApp": "Spravovaná aplikace z obchodu pro iOS",
- "microsoftStoreForBusinessApp": "Aplikace pro Microsoft Store pro firmy",
- "microsoftStoreForBusinessReleaseManagedApp": "Microsoft Store pro firmy",
- "officeSuiteApp": "Microsoft 365 Apps (Windows 10 a novější)",
- "webApp": "Webový odkaz",
- "windowsAppXLobApp": "Obchodní aplikace Windows AppX",
- "windowsClassicApp": "Aplikace pro Windows (Win32)",
- "windowsEdgeApp": "Microsoft Edge (Windows 10 a novější)",
- "windowsMobileMsiLobApp": "Obchodní aplikace Windows MSI",
- "windowsPhone81AppXBundleLobApp": "Obchodní aplikace Windows Phone 8.1 AppX",
- "windowsPhone81AppXLobApp": "Obchodní aplikace Windows Phone 8.1 AppX",
- "windowsPhone81StoreApp": "Aplikace pro Windows Phone 8.1 Store",
- "windowsPhoneXapLobApp": "Obchodní aplikace Windows Phone XAP",
- "windowsStoreApp": "Aplikace pro Microsoft Store",
- "windowsUniversalAppXLobApp": "Obchodní aplikace Windows Universal AppX",
- "windowsUniversalLobApp": "Univerzální obchodní aplikace pro Windows"
- },
- "PolicyType": {
- "AttackSurfaceReductionRules": {
- "configMgr": "Pravidla pro omezení potenciální oblasti útoku (ConfigMgr)"
- },
- "EndpointDetectionandResponse": {
- "mDE": "Zjišťování koncových bodů a odpověď"
- },
- "EndpointSecurityTemplate": {
- "aSRAppBrowserSecurity": "Izolace aplikací a prohlížečů",
- "aSRApplicationControl": "Řízení aplikací",
- "aSRAttackSurfaceReduction": "Pravidla pro omezení možností útoku",
- "aSRDeviceControl": "Řízení zařízení",
- "aSRExploitProtection": "Ochrana Exploit Protection",
- "aSRWebProtection": "Webová ochrana (Microsoft Edge starší verze)",
- "aVExclusions": "Výjimky Antivirové ochrany v programu Microsoft Defender",
- "antivirus": "Antivirová ochrana v programu Microsoft Defender",
- "cloudPC": "Windows 365 – Standardní hodnoty zabezpečení",
- "default": "Zabezpečení koncového bodu",
- "defenderTest": "Ukázka programu Microsoft Defender pro koncový bod",
- "diskEncryption": "Nástroj BitLocker",
- "eDR": "Zjišťování koncových bodů a odpověď",
- "edgeSecurityBaseline": "Standardní hodnoty Microsoft Edge",
- "edgeSecurityBaselinePreview": "Preview: Standardní hodnoty Microsoft Edge",
- "editionUpgradeConfiguration": "Upgrade edice a přepnutí režimu",
- "firewall": "Firewall v programu Microsoft Defender",
- "firewallRules": "Pravidla Firewallu v programu Microsoft Defender",
- "identityProtection": "Ochrana účtu",
- "identityProtectionPreview": "Ochrana účtu (Preview)",
- "mDMSecurityBaseline1810": "Základní úroveň zabezpečení MDM pro Windows 10 a novější pro říjen 2018",
- "mDMSecurityBaseline1810Preview": "Preview: Základní úroveň zabezpečení MDM pro Windows 10 a novější pro říjen 2018",
- "mDMSecurityBaseline1810PreviewBeta": "Preview: Základní úroveň zabezpečení MDM pro Windows 10 pro říjen 2018 (beta verze)",
- "mDMSecurityBaseline1906": "Základní úroveň zabezpečení MDM pro Windows 10 a novější pro květen 2019",
- "mDMSecurityBaseline2004": "Základní úroveň zabezpečení MDM pro Windows 10 a novější pro srpen 2020",
- "mDMSecurityBaseline2101": "Základní plán zabezpečení MDM pro Windows 10 a novější, prosinec 2020",
- "macOSAntivirus": "Antivirus",
- "macOSDiskEncryption": "FileVault",
- "macOSFirewall": "Brána firewall macOS",
- "microsoftDefenderBaseline": "Standardní hodnoty pro Microsoft Defender pro koncový bod",
- "office365Baseline": "Standardní hodnoty Microsoft Office O365",
- "office365BaselinePreview": "Preview: Standardní hodnoty Microsoft Office O365",
- "securityBaselines": "Základní úrovně zabezpečení",
- "test": "Testovací šablona",
- "testFirewallRulesSecurityTemplateName": "Pravidla Firewallu v programu Microsoft Defender (test)",
- "testIdentityProtectionSecurityTemplateName": "Ochrana účtu (test)",
- "windowsSecurityExperience": "Možnosti Zabezpečení Windows"
- },
- "Firewall": {
- "mDE": "Firewall v programu Microsoft Defender"
- },
- "FirewallRules": {
- "mDE": "Pravidla Firewallu v programu Microsoft Defender"
- },
- "administrativeTemplates": "Šablony pro správu",
- "androidCompliancePolicy": "Zásady dodržování předpisů v Androidu",
- "aospDeviceOwnerCompliancePolicy": "Zásady dodržování předpisů v Androidu (AOSP)",
- "applicationControl": "Řízení aplikací",
- "custom": "Vlastní",
- "deliveryOptimization": "Optimalizace doručení",
- "derivedPersonalIdentityVerificationCredential": "Odvozené přihlašovací údaje",
- "deviceFeatures": "Funkce zařízení",
- "deviceFirmwareConfigurationInterface": "Rozhraní DFCI (Device Firmware Configuration Interface)",
- "deviceLock": "Zámek zařízení",
- "deviceOwner": "Plně spravovaná, vyhrazená, vlastněná společností a s pracovním profilem",
- "deviceRestrictions": "Omezení zařízení",
- "deviceRestrictionsWindows10Team": "Omezení zařízení (Windows 10 Team)",
- "domainJoinPreview": "Připojení k doméně",
- "editionUpgradeAndModeSwitch": "Upgrade edice a přepnutí režimu",
- "education": "Vzdělávání",
- "email": "E-mail",
- "emailSamsungKnoxOnly": "E-mail (jen Samsung KNOX)",
- "endpointProtection": "Ochrana koncového bodu",
- "expeditedCheckin": "Konfigurace správy mobilních zařízení",
- "exploitProtection": "Ochrana Exploit Guard",
- "extensions": "Rozšíření",
- "hardwareConfigurations": "Konfigurace systému BIOS",
- "identityProtection": "Identity Protection",
- "iosCompliancePolicy": "Zásady dodržování předpisů v iOSu",
- "kiosk": "Veřejný terminál",
- "macCompliancePolicy": "Zásady dodržování předpisů na Macu",
- "microsoftDefenderAntivirus": "Antivirová ochrana v programu Microsoft Defender",
- "microsoftDefenderAntivirusexclusions": "Výjimky Antivirové ochrany v programu Microsoft Defender",
- "microsoftDefenderAtpWindows10Desktop": "Microsoft Defender for Endpoint (desktopová zařízení se systémem Windows 10 nebo novějším)",
- "microsoftDefenderFirewallRules": "Pravidla Firewallu v programu Microsoft Defender",
- "microsoftEdgeBaseline": "Standardní hodnoty Microsoft Edge",
- "mxProfileZebraOnly": "Profil MX (pouze Zebra)",
- "networkBoundary": "Ohraničení sítě",
- "oemConfig": "OEMConfig",
- "overrideGroupPolicy": "Přepsat zásady skupiny",
- "pkcsCertificate": "Certifikát PKCS",
- "pkcsImportedCertificate": "Importovaný certifikát PKCS",
- "preferenceFile": "Soubor preferencí",
- "presets": "Předvolby",
- "scepCertificate": "Certifikát SCEP",
- "secureAssessmentEducation": "Secure Assessment (Education)",
- "settingsCatalog": "Katalog nastavení",
- "sharedMultiUserDevice": "Sdílené víceuživatelské zařízení",
- "softwareUpdates": "Aktualizace softwaru",
- "trustedCertificate": "Důvěryhodný certifikát",
- "unknown": "Neznámé",
- "unsupported": "Nepodporovaný",
- "vpn": "VPN",
- "wiFi": "Wi-Fi",
- "wiFiImport": "Import Wi-Fi",
- "windows10CompliancePolicy": "Zásady dodržování předpisů ve Windows 10/11",
- "windows10MobileCompliancePolicy": "Zásady dodržování předpisů ve Windows 10 Mobile",
- "windows10XScep": "Certifikát SCEP – TEST",
- "windows10XTrustedCertificate": "Důvěryhodný certifikát – TEST",
- "windows10XVPN": "Síť VPN – TEST",
- "windows10XWifi": "WIFI – TEST",
- "windows8CompliancePolicy": "Zásady dodržování předpisů ve Windows 8",
- "windowsHealthMonitoring": "Monitorování stavu Windows",
- "windowsInformationProtection": "Windows Information Protection",
- "windowsPhoneCompliancePolicy": "Zásady dodržování předpisů ve Windows Phone",
- "windowsUpdateforBusiness": "Windows Update pro firmy",
- "wiredNetwork": "Drátová síť",
- "workProfile": "Pracovní profil v osobním vlastnictví"
- },
- "OfficeSuiteAppsTab": {
- "acceptLicenseOnBehalfOfUsersLabel": "Přijmout licenční podmínky pro software Microsoft jménem uživatelů",
- "appSuiteConfigurationLabel": "Konfigurace sady aplikací",
- "appSuiteInformationLabel": "Informace o sadě aplikací",
- "appsToBeInstalledLabel": "Aplikace, které se mají nainstalovat jako součást sady",
- "architectureLabel": "Architektura",
- "architectureTooltip": "Definuje, jestli je na zařízeních nainstalovaná 32bitová nebo 64bitová edice aplikací Microsoft 365.",
- "configurationDesignerLabel": "Návrhář konfigurace",
- "configurationFileLabel": "Konfigurační soubor",
- "configurationSettingsFormatLabel": "Formát nastavení konfigurace",
- "configureAppSuiteLabel": "Konfigurovat sadu aplikací",
- "configuredLabel": "Nakonfigurováno",
- "currentVersionLabel": "Aktuální verze",
- "currentVersionTooltip": "Toto je aktuální verze systému Office, která je nakonfigurovaná v této sadě. Když se nakonfiguruje a uloží novější verze, bude tato hodnota aktualizována.",
- "enableMicrosoftSearchAsDefaultTooltip": "Nainstaluje službu na pozadí, která pomáhá určit, jestli je na zařízení nainstalované rozšíření Microsoft Search v Bingu pro Google Chrome.",
- "enterXmlDataLabel": "Zadat XML data",
- "languagesLabel": "Jazyky",
- "languagesTooltip": "Ve výchozím nastavení bude Intune instalovat Office s výchozím jazykem operačního systému. Zvolte všechny další jazyky, které chcete nainstalovat.",
- "learnMoreText": "Další informace",
- "newUpdateChannelTooltip": "Definuje, jak často se má aplikace aktualizovat o nové funkce.",
- "noCurrentVersionText": "Žádná aktuální verze",
- "noLanguagesSelectedLabel": "Nejsou vybrány žádné jazyky",
- "notConfiguredLabel": "Nenakonfigurováno",
- "propertiesLabel": "Vlastnosti",
- "removeOtherVersionsLabel": "Odebrat další verze",
- "removeOtherVersionsTooltip": "Zvolte Ano, pokud chcete ze zařízení uživatelů odebrat jiné verze Office (MSI).",
- "selectOfficeAppsLabel": "Vyberte aplikace Office",
- "selectOfficeAppsTooltip": "Vyberte aplikace Office 365, které chcete nainstalovat jako součást sady.",
- "selectOtherOfficeAppsLabel": "Vyberte další aplikace Office (je nutná licence)",
- "selectOtherOfficeAppsTooltip": "Pokud vlastníte licence těchto dalších aplikací Office, můžete je pomocí Intune přiřadit taky.",
- "specificVersionLabel": "Konkrétní verze",
- "updateChannelLabel": "Aktualizační kanál",
- "updateChannelTooltip": "Definuje, jak často se má aplikace aktualizovat o nové funkce.
\r\nMěsíčně – Poskytuje uživatelům nejnovější funkce Office, jakmile jsou k dispozici.
\r\nMěsíční podnikový kanál – Poskytuje uživatelům nejnovější funkce Office jednou měsíčně, vždy druhé úterý v měsíci.
\r\nMěsíčně (cílené) – Poskytuje uživatelům možnost časného přístupu k nadcházející měsíční verzi. Jedná se o podporovaný kanál aktualizací a je obvykle k dispozici nejméně jeden týden před vydáním měsíční verze, která obsahuje nové funkce.
\r\nPololetní – Poskytuje uživatelům nové funkce Office jenom několikrát za rok.
\r\nPololetní (cílené) – Poskytuje pilotním uživatelům a testerům kompatibility aplikací příležitost testovat nadcházející pololetní vydání.",
- "useMicrosoftSearchAsDefault": "Nainstalovat službu na pozadí pro Microsoft Search v Bingu",
- "useSharedComputerActivationLabel": "Použít sdílenou aktivaci počítače",
- "useSharedComputerActivationTooltip": "Aktivace pro sdílené počítače umožňuje nasadit aplikace Microsoft 365 na počítače, které používá více uživatelů. Uživatelé můžou obvykle instalovat a aktivovat aplikace Microsoft 365 na omezeném počtu zařízení, například na 5 počítačích. Použití aplikací Microsoft 365 s aktivací pro sdílené počítače se do tohoto limitu nezapočítá.",
- "versionToInstallLabel": "Verze, která se má nainstalovat",
- "versionToInstallTooltip": "Vyberte verzi systému Office, která se má nainstalovat.",
- "xLanguagesSelectedLabel": "Vybrané jazyky: {0}",
- "xmlConfigurationLabel": "Konfigurace souboru XML"
- },
- "OfficeApplicationType": {
- "access": "Access",
- "bing": "Microsoft Search jako výchozí",
- "excel": "Excel",
- "groove": "OneDrive (Groove)",
- "lync": "Skype pro firmy",
- "oneDrive": "OneDrive Desktop",
- "oneNote": "OneNote",
- "outlook": "Outlook",
- "powerPoint": "PowerPoint",
- "publisher": "Publisher",
- "teams": "Teams",
- "word": "Word"
- },
- "WindowsQualityUpdateProfile": {
- "Details": {
- "DaysUntilForcedReboot": {
- "label": "Počet dní čekání před vynucením restartování"
- },
- "Description": {
- "label": "Popis"
- },
- "Name": {
- "label": "Název"
- },
- "QualityUpdateRelease": {
- "label": "Urychleně zpracovat instalaci aktualizací pro zvýšení kvality, pokud je verze operačního systému zařízení nižší než:"
- },
- "bladeTitle": "Aktualizace pro zvýšení kvality systému Windows 10 a novějšího (Preview)",
- "loadError": "Načítání selhalo."
- },
- "TabName": {
- "qualityUpdateSettings": "Nastavení"
- },
- "infoBoxText": "Jediným vyhrazeným ovládacím prvkem aktualizace pro zvýšení kvality, který je kromě stávající zásady aktualizačního okruhu pro systém Windows 10 a novější aktuálně k dispozici, je možnost urychleně zpracovat aktualizace pro zvýšení kvality na zařízeních, která překračují zadanou úroveň opravy. Další ovládací prvky budou k dispozici v budoucnu.",
- "warningBoxText": "I když urychlené zpracování aktualizací softwaru můžete zkrátit čas na to, aby se v případě potřeby dosáhlo shody s předpisy, má větší dopad na produktivitu koncového uživatele. Výrazně se zvýší pravděpodobnost, že během pracovní doby dojde k restartování."
- },
- "Devices": {
- "General": {
- "android": "Android"
- },
- "aOSP": "Open source projekt Androidu",
- "android": "Správce zařízení s Androidem",
- "androidWorkProfile": "Android Enterprise (pracovní profil)",
- "iOS": "iOS/iPadOS",
- "mac": "macOS",
- "windows": "Windows (MDM)",
- "windows10": "Windows 10 a novější",
- "windowsHomeSku": "SKU Windows Home",
- "windowsMobile": "Windows Mobile"
- },
"SettingDetails": {
"CustomPolicyConfigurationProfile": {
"uploadControlPlaceHolderText": "Vyberte soubor konfiguračního profilu"
@@ -3675,7 +1707,7 @@
"aESGCM128": "AES-128-GCM (16oktetové ICV)",
"aESGCM256": "AES-256-GCM (16oktetové ICV)",
"aadSharedDeviceDataClearAppsDescription": "Přidejte do seznamu kteroukoli aplikaci, která není optimalizovaná pro režim sdíleného zařízení. Místní data aplikace se vymažou pokaždé, když se uživatel odhlásí z aplikace optimalizované pro režim sdíleného zařízení. K dispozici pro vyhrazená zařízení zaregistrovaná ve sdíleném režimu a s Androidem 9 a novějším.",
- "aadSharedDeviceDataClearAppsName": "Vymazat místní data v aplikacích, které nejsou optimalizované pro režim sdíleného zařízení (Public Preview)",
+ "aadSharedDeviceDataClearAppsName": "Vymazat místní data v aplikacích, které nejsou optimalizované pro režim sdíleného zařízení",
"accountsPageDescription": "Blokovat přístup k nastavení Účty v aplikaci Nastavení.",
"accountsPageName": "Účty",
"accountsSignInAssistantSettingsDescription": "Zablokuje službu Pomocníka pro přihlašování společnosti Microsoft (wlidsvc). Když se toto nastavení nenakonfiguruje, službu NT wlidsvc může ovládat uživatel (ruční spuštění).",
@@ -5503,7 +3535,7 @@
"enableEndUserAccessToDefenderName": "Přístup koncového uživatele k Defenderu",
"enableEngagedRestartDescription": "Povolí nastavení, která uživateli umožní přepnout na restartování podle plánu.",
"enableEngagedRestartName": "Umožnit uživateli provést restartování (restartování podle plánu)",
- "enableIdentityPrivacyDescription": "Tato vlastnost maskuje uživatelská jména textem, který zadáte. Když například napíšete výraz anonymní, každý uživatel, který se ověřuje v rámci tohoto připojení Wi-Fi pomocí svého skutečného uživatelského jména, se bude zobrazovat jako anonymní.",
+ "enableIdentityPrivacyDescription": "Tato vlastnost maskuje uživatelská jména zadaným textem. Pokud například zadáte slovo anonymní, každý uživatel, který se ověří pomocí tohoto Wi-Fi připojení svým skutečným uživatelským jménem, se zobrazí jako anonymní. To se může vyžadovat, pokud se používá ověřování pomocí certifikátu podle zařízení.",
"enableIdentityPrivacyName": "Ochrana identity (vnější identita)",
"enableNetworkInspectionSystemDescription": "Blokuje nebezpečný provoz detekovaný podle podpisů v Systému kontroly sítě (NIS).",
"enableNetworkInspectionSystemName": "Systém kontroly sítě (NIS)",
@@ -7252,6 +5284,8 @@
"presharedKeyEncodingDescription": "Kóduje předsdílené klíče pomocí UTF-8.",
"presharedKeyEncodingName": "Kódování předsdíleného klíče",
"preventAny": "Nesdílet nic mimo hranice",
+ "primaryAuthenticationMethodName": "Primární metoda ověřování",
+ "primaryAuthenticationMethodTEAPDescription": "Zvolte primární způsob ověřování uživatelů. Když vyberete Certifikáty, vyberte jeden z profilů certifikátů (SCEP nebo PKCS), který je také nasazený na zařízení. Toto je certifikát identity, který zařízení prezentuje serveru.",
"primarySMTPAddressOption": "Primární adresa SMTP",
"printersColumns": "např. název DNS tiskárny",
"printersDescription": "Automatické zřizování tiskáren podle jejich názvů hostitelů sítě. Toto nastavení nepodporuje sdílené tiskárny.",
@@ -7663,6 +5697,8 @@
"searchEnableRemoteQueriesName": "Vzdálené dotazy",
"secondActiveEthernet": "Druhá aktivní síť Ethernet",
"secondEthernet": "Druhá síť Ethernet",
+ "secondaryAuthenticationMethodName": "Sekundární metoda ověřování",
+ "secondaryAuthenticationMethodTEAPDescription": "Zvolte sekundární způsob ověřování uživatelů. Když vyberete Certifikáty, vyberte jeden z profilů certifikátů (SCEP nebo PKCS), který je také nasazený na zařízení. Toto je certifikát identity, který zařízení prezentuje serveru.",
"secretKey": "Tajný klíč:",
"secureBootEnabledDescription": "Vyžadovat, aby na zařízení bylo povolené zabezpečené spuštění",
"secureBootEnabledName": "Vyžadovat, aby na zařízení bylo povolené zabezpečené spuštění",
@@ -8074,6 +6110,7 @@
"systemUpdateWindow9": "4:30",
"systemWindowsBlockedDescription": "Zakáže oznámení Windows, třeba informační zprávy, příchozí hovory, odchozí hovory, systémová upozornění a chyby systému.",
"systemWindowsBlockedName": "Okna oznámení",
+ "tEAPName": "Tunelový protokol EAP (TEAP)",
"tLSMinMax": "Minimální verze protokolu TLS musí být menší nebo rovna jeho maximální verzi.",
"tLSVersionRangeMaximum": "Maximum rozsahu verze protokolu TLS",
"tLSVersionRangeMaximumDescription": "Zadejte maximální verzi protokolu TLS 1.0, 1.1, nebo 1.2. Když se verze ponechá prázdná, použije se výchozí hodnota 1.2.",
@@ -8126,6 +6163,17 @@
"timeWindowSameStartEndDayTime": "Koncové datum a čas nemůžou být stejné jako počáteční datum a čas.",
"timeZoneDescription": "Vyberte časové pásmo cílových zařízení.",
"timeZoneName": "Časové pásmo",
+ "timeoutFifteenMinutes": "15 minut",
+ "timeoutFiveMinutes": "5 minut",
+ "timeoutFourHours": "4 hodiny",
+ "timeoutNever": "Bez vypršení časového limitu",
+ "timeoutOneHour": "1 hodina",
+ "timeoutOneMinute": "1 minuta",
+ "timeoutTenMinutes": "10 minut",
+ "timeoutThirtyMinutes": "30 minut",
+ "timeoutThreeMinutes": "3 minuty",
+ "timeoutTwoHours": "2 hodiny",
+ "timeoutTwoMinutes": "2 minuty",
"toggleConfigurationPkgDescription": "Umožňuje nahrát podepsaný konfigurační balíček, který bude sloužit k nasazení klienta Microsoft Defenderu pro koncový bod",
"toggleConfigurationPkgName": "Typ balíčku konfigurace klienta programu Microsoft Defender pro koncový bod:",
"trafficRuleAppName": "Aplikace",
@@ -8824,6 +6872,33 @@
"win10WifiWirelessSecurityTypeName": "Typ zabezpečení bezdrátové sítě",
"win10WifiWirelessSecurityTypeOpen": "Otevřené (bez ověření)",
"win10WifiWirelessSecurityTypeWPA": "WPA/WPA2-osobní",
+ "win10WiredAuthenticationModeDescription": "Zvolte, jestli chcete ověřit uživatele, zařízení, obojí nebo použít ověřování hosta (žádné). Pokud používáte ověřování pomocí certifikátů, ujistěte se, jestli typ certifikátu odpovídá typu ověřování.",
+ "win10WiredAuthenticationModeName": "Režim ověřování",
+ "win10WiredAuthenticationPeriodDescription": "Počet sekund, po které klient po ověřování počká, než dojde k selhání. Zvolte číslo od 1 do 3600. Pokud hodnotu nezadáte, použije se 18 sekund.",
+ "win10WiredAuthenticationPeriodName": "Období ověřování",
+ "win10WiredAuthenticationRetryDelayPeriodDescription": "Počet sekund mezi neúspěšným ověřováním a dalším pokusem o ověřování. Zvolte hodnotu od 1 do 3600. Pokud hodnotu nezadáte, použije se 1 sekunda.",
+ "win10WiredAuthenticationRetryDelayPeriodName": "Období zpoždění opakování ověřování ",
+ "win10WiredFIPSComplianceDescription": "Od všech agentur federální vlády USA, které chrání citlivé, ale ne tajné digitálně ukládané informace pomocí bezpečnostních systémů založených na kryptografii, se vyžaduje ověřování podle standardu FIPS 140-2.",
+ "win10WiredFIPSComplianceName": "Vynutit, aby drátový profil dodržoval standard FIPS (Federal Information Processing Standard)",
+ "win10WiredGuest": "Host",
+ "win10WiredMachine": "Počítač",
+ "win10WiredMachineOrUser": "Uživatel nebo počítač",
+ "win10WiredMaximumAuthenticationFailuresDescription": "Zadejte pro tuto sadu přihlašovacích údajů maximální počet selhání ověřování. Pokud hodnotu nezadáte, použije se 1 pokus.",
+ "win10WiredMaximumAuthenticationFailuresName": "Maximální počet selhání ověřování",
+ "win10WiredMaximumEAPOLStartMessagesDescription": "Zvolte počet zpráv o spuštění služby EAPOL od 1 do 100. Pokud hodnotu nezadáte, odešlou se nejvýše 3 zprávy.",
+ "win10WiredMaximumEAPOLStartMessagesName": "Maximální počet spuštění služby EAPOL",
+ "win10WiredNetworkAuthenticationBlockPeriodDescription": "Doba blokování ověřování v minutách. Slouží k určení doby, po kterou budou pokusy o automatické ověření po neúspěšném pokusu o ověření blokovány. Zvolte hodnotu mezi 0 a 1440.",
+ "win10WiredNetworkAuthenticationBlockPeriodName": "Doba blokování (minuty)",
+ "win10WiredNetworkAuthenticationModeName": "Režim ověřování",
+ "win10WiredNetworkDoNotEnforceName": "Nevynucovat",
+ "win10WiredNetworkEnforce8021XDescription": "Určuje, jestli služba automatické konfigurace pro drátové sítě vyžaduje při ověřování portů protokol 802.1X.",
+ "win10WiredNetworkEnforce8021XName": "802.1x",
+ "win10WiredNetworkEnforceName": "Vynutit",
+ "win10WiredRememberCredentialsDescription": "Zvolte, jestli se mají přihlašovací údaje uživatelů ukládat do mezipaměti, když jsou zadány při prvním připojení k drátové síti. Přihlašovací údaje uložené v mezipaměti se používají pro následná připojení a uživatelé je nemusí znovu zadávat. Nenakonfigurování tohoto nastavení je ekvivalentní k nastavení na ano.",
+ "win10WiredRememberCredentialsName": "Zapamatovat si přihlašovací údaje při každém přihlášení",
+ "win10WiredStartPeriodDescription": "Počet sekund, po které se má čekat před odesláním zprávy o spuštění služby EAPOL Zvolte hodnotu mezi 1 a 3600. Pokud hodnotu nezadáte, použije se 5 sekund.",
+ "win10WiredStartPeriodName": "Počáteční období",
+ "win10WiredUser": "Uživatel",
"win10appLockerApplicationControlAllowDescription": "Tyto aplikace bude možné spustit.",
"win10appLockerApplicationControlAllowName": "Vynutit",
"win10appLockerApplicationControlAuditComponentsAndStoreAppsDescription": "Režim Pouze audit protokoluje všechny události v protokolech událostí místního klienta, ale neblokuje spouštění aplikací. Součásti systému Windows a aplikace pro Microsoft Store se budou protokolovat jako vyhovující požadavkům na zabezpečení.",
@@ -9165,7 +7240,6 @@
"deviceConditionsInfoParagraph2": "Podobná nastavení, která se zakládají na zařízení, se dají nakonfigurovat i pro zaregistrovaná zařízení.",
"deviceConditionsInfoParagraph2LinkText": "Další informace o konfiguraci nastavení dodržování předpisů registrovanými zařízeními",
"deviceId": "ID zařízení",
- "deviceLockComplexityValidationFailureNotes": "Poznámky:
\r\n\r\n - Zámek zařízení může vyžadovat složitost hesla NÍZKÁ, STŘEDNÍ nebo VYSOKÁ cílenou na Android 11 a novější. Když se na zařízeních, která používají Android 10 nebo starší, nastaví hodnota složitosti na nízkou, střední nebo vysokou, použije se výchozí očekávané chování pro nízkou složitost.
\r\n - Definice hesel níže se můžou změnit. Nejaktuálnější definice pro různé úrovně složitosti hesel najdete v části DevicePolicyManager|Vývojáři pro Android.
\r\n
\r\n\r\nNízká
\r\n\r\n - Heslo může představovat vzor nebo PIN kód s opakujícími se (4444) nebo seřazenými (1234, 4321, 2468) posloupnostmi.
\r\n
\r\n\r\nStřední
\r\n\r\n - PIN kód bez opakujících se (4444) nebo seřazených (1234, 4321, 2468) posloupností s minimální délkou alespoň 4 znaky
\r\n - Hesla ze znaků abecedy s minimální délkou alespoň 4 znaky
\r\n - Alfanumerická hesla s minimální délkou alespoň 4 znaky
\r\n
\r\n\r\nVysoká
\r\n\r\n - PIN kód bez opakujících se (4444) nebo seřazených (1234, 4321, 2468) posloupností s minimální délkou 8 znaků
\r\n - Hesla ze znaků abecedy s minimální délkou 6 znaků
\r\n - Alfanumerická hesla s minimální délkou 6 znaků
\r\n
\r\n",
"deviceLockedOpenFilesOptionsText": "Když je zařízení uzamčené a existují otevřené soubory",
"deviceLockedOptionText": "Když je zařízení blokované",
"deviceManufacturer": "Výrobce zařízení",
@@ -9463,7 +7537,7 @@
"reporting": "Sestavy",
"reports": "Sestavy",
"require": "Vyžadovat",
- "requireDeviceLockComplexityOnApps": "Vyžadovat složitost zámku zařízení",
+ "requireDeviceLockOnApps": "Require device lock",
"requireThreatScanOnApps": "Vyžadovat kontrolu hrozeb u aplikací",
"requiredField": "Toto pole nemůže být prázdné.",
"requiredSafetyNetEvaluationType": "Požadovaný typ vyhodnocení SafetyNet",
@@ -9659,6 +7733,7 @@
"yourDataIsBeingDownloadedEllipsis": "Vaše data se stahují, může to chvíli trvat...",
"yourDataIsBeingDownloadedMinutes": "Vaše data se stahují, může to několik minut trvat...",
"yourProtectionLevel": "Vaše úroveň ochrany",
+ "rules": "Pravidla",
"basics": "Základy",
"modeTableHeader": "Režim skupiny",
"appAssignmentMsg": "Skupina",
@@ -9695,221 +7770,2042 @@
"licenseTypeDevice": "Zařízení",
"licenseTypeUser": "Uživatel"
},
- "Languages": {
- "ar-aE": "Arabština (Spojené arabské emiráty)",
- "ar-bH": "Arabština (Bahrajn)",
- "ar-dZ": "Arabština (Alžírsko)",
- "ar-eG": "Arabština (Egypt)",
- "ar-iQ": "Arabština (Irák)",
- "ar-jO": "Arabština (Jordánsko)",
- "ar-kW": "Arabština (Kuvajt)",
- "ar-lB": "Arabština (Libanon)",
- "ar-lY": "Arabština (Libye)",
- "ar-mA": "Arabština (Maroko)",
- "ar-oM": "Arabština (Omán)",
- "ar-qA": "Arabština (Katar)",
- "ar-sA": "arabština (Saúdská Arábie)",
- "ar-sY": "Arabština (Sýrie)",
- "ar-tN": "Arabština (Tunisko)",
- "ar-yE": "Arabština (Jemen)",
- "az-cyrl": "Ázerbájdžánština (cyrilice, Ázerbájdžán)",
- "az-latn": "Ázerbájdžánština (latinka, Ázerbájdžán)",
- "bn-bD": "Bengálština (Bangladéš)",
- "bn-iN": "Bengálština (Indie)",
- "bs-cyrl": "Bosenština (cyrilice)",
- "bs-latn": "Bosenština (latinka)",
- "zh-cN": "Čínština (ČLR)",
- "zh-hK": "Čínština (Hongkong – zvláštní administrativní oblast)",
- "zh-mO": "Čínština (Macao – zvláštní administrativní oblast)",
- "zh-sG": "čínština (Singapur)",
- "zh-tW": "Čínština (Tchaj-wan)",
- "hr-bA": "Chorvatština (latinka)",
- "hr-hR": "chorvatština (Chorvatsko)",
- "nl-bE": "Nizozemština (Belgie)",
- "nl-nL": "nizozemština (Nizozemsko)",
- "en-aU": "Angličtina (Austrálie)",
- "en-bZ": "Angličtina (Belize)",
- "en-cA": "Angličtina (Kanada)",
- "en-cabn": "Angličtina (Karibská oblast)",
- "en-iE": "Angličtina (Irsko)",
- "en-iN": "Angličtina (Indie)",
- "en-jM": "Angličtina (Jamajka)",
- "en-mY": "Angličtina (Malajsie)",
- "en-nZ": "Angličtina (Nový Zéland)",
- "en-pH": "Angličtina (Filipínská republika)",
- "en-sG": "Angličtina (Singapur)",
- "en-tT": "Angličtina (Trinidad a Tobago)",
- "en-uK": "angličtina (Spojené království)",
- "en-uS": "angličtina (Spojené státy)",
- "en-zA": "Angličtina (Jihoafrická republika)",
- "en-zW": "Angličtina (Zimbabwe)",
- "fr-bE": "Francouzština (Belgie)",
- "fr-cA": "francouzština (Kanada)",
- "fr-cH": "Francouzština (Švýcarsko)",
- "fr-fR": "francouzština (Francie)",
- "fr-lU": "Francouzština (Lucembursko)",
- "fr-mC": "Francouzština (Monako)",
- "de-aT": "Němčina (Rakousko)",
- "de-cH": "Němčina (Švýcarsko)",
- "de-dE": "němčina (Německo)",
- "de-lI": "Němčina (Lichtenštejnsko)",
- "de-lU": "Němčina (Lucembursko)",
- "iu-cans": "Inuktitutština (slabičné písmo, Kanada)",
- "iu-latn": "Inuktitutština (latinka, Kanada)",
- "it-cH": "Italština (Švýcarsko)",
- "it-iT": "italština (Itálie)",
- "ms-bN": "Malajština (Sultanát Brunej)",
- "ms-mY": "Malajština (Malajsie)",
- "mn-cN": "Mongolština (tradiční mongolština, ČLR)",
- "mn-mN": "Mongolština (cyrilice, Mongolsko)",
- "no-nB": "norština, Bokmål (Norsko)",
- "no-nn": "Norština, Nynorsk (Norsko)",
- "pt-bR": "portugalština (Brazílie)",
- "pt-pT": "portugalština (Portugalsko)",
- "quz-bO": "Kečuánština (Bolívie)",
- "quz-eC": "Kečuánština (Ekvádor)",
- "quz-pE": "Kečuánština (Peru)",
- "smj-nO": "Sámština (lulejská, Norsko)",
- "smj-sE": "Sámština (lulejská, Švédsko)",
- "se-fI": "Sámština (severní, Finsko)",
- "se-nO": "Sámština (severní, Norsko)",
- "se-sE": "Sámština (severní, Švédsko)",
- "sma-nO": "Sámština (jižní, Norsko)",
- "sma-sE": "Sámština (jižní, Švédsko)",
- "smn": "Sámština (inarijská, Finsko)",
- "sms": "Sámština (skoltská, Finsko)",
- "sr-Cyrl-bA": "Srbština (cyrilice)",
- "sr-Cyrl-rS": "Srbština (cyrilice, Srbsko a Černá hora)",
- "sr-Latn-bA": "srbština (latinka)",
- "sr-Latn-rS": "srbština (latinka, Srbsko)",
- "dsb": "Dolnolužická srbština (Německo)",
- "hsb": "Hornolužická srbština (Německo)",
- "es-es-tradnl": "Španělština (Španělsko; tradiční řazení)",
- "es-aR": "Španělština (Argentina)",
- "es-bO": "Španělština (Bolívie)",
- "es-cL": "Španělština (Chile)",
- "es-cO": "Španělština (Kolumbie)",
- "es-cR": "Španělština (Kostarika)",
- "es-dO": "Španělština (Dominikánská republika)",
- "es-eC": "Španělština (Ekvádor)",
- "es-eS": "Španělština (Španělsko)",
- "es-gT": "Španělština (Guatemala)",
- "es-hN": "Španělština (Honduras)",
- "es-mX": "Španělština (Mexiko)",
- "es-nI": "Španělština (Nikaragua)",
- "es-pA": "Španělština (Panama)",
- "es-pE": "Španělština (Peru)",
- "es-pR": "Španělština (Portoriko)",
- "es-pY": "Španělština (Paraguay)",
- "es-sV": "Španělština (Salvador)",
- "es-uS": "Španělština (Spojené státy)",
- "es-uY": "Španělština (Uruguay)",
- "es-vE": "Španělština (Venezuela)",
- "sv-fI": "Švédština (Finsko)",
- "uz-cyrl": "Uzbečtina (cyrilice, Uzbekistán)",
- "uz-latn": "Uzbečtina (latinka, Uzbekistán)",
- "af": "Afrikánština (Jihoafrická republika)",
- "sq": "Albánština (Albánie)",
- "am": "Amharšina (Etiopie)",
- "hy": "Arménština (Arménie)",
- "as": "Ásámština (Indie)",
- "ba": "Baškirština (Rusko)",
- "eu": "Baskičtina (Baskičtina)",
- "be": "Běloruština (Bělorusko)",
- "br": "Bretonština (Francie)",
- "bg": "bulharština (Bulharsko)",
- "ca": "Katalánština (Katalánština)",
- "co": "Korsičtina (Francie)",
- "cs": "čeština (Česká republika)",
- "da": "dánština (Dánsko)",
- "prs": "Dáríština (Afghánistán)",
- "dv": "Divehština (Maledivy)",
- "et": "estonština (Estonsko)",
- "fo": "Faerština (Faerské ostrovy)",
- "fil": "Filipínština (Filipíny)",
- "fi": "finština (Finsko)",
- "gl": "Galicijština (Galicie)",
- "ka": "Gruzínština (Gruzie)",
- "el": "Řečtina (Řecko)",
- "gu": "Gudžarátština (Indie)",
- "ha": "Hauština (latinka, Nigérie)",
- "he": "hebrejština (Izrael)",
- "hi": "Hindština (Indie)",
- "hu": "maďarština (Maďarsko)",
- "is": "Islandština (Island)",
- "ig": "Igboština (Nigérie)",
- "id": "Indonéština (Indonésie)",
- "ga": "Irština (Irsko)",
- "xh": "Isi-xhoština (Jihoafrická republika)",
- "zu": "Zuluština (Jihoafrická republika)",
- "ja": "japonština (Japonsko)",
- "kn": "Kannadština (Indie)",
- "kk": "Kazaština (Kazachstán)",
- "km": "Khmérština (Kambodža)",
- "rw": "Kiňarwandština (Rwanda)",
- "sw": "Svahilština (Keňa)",
- "kok": "Konkánština (Indie)",
- "ko": "korejština (Korea)",
- "ky": "Kyrgyzština (Kyrgyzstán)",
- "lo": "Laština (Laoská lidově demokratická republika)",
- "lv": "lotyština (Lotyšsko)",
- "lt": "litevština (Litva)",
- "lb": "Lucemburština (Lucembursko)",
- "mk": "Makedonština (Severní Makedonie)",
- "ml": "Malajálamština (Indie)",
- "mt": "Maltština (Malta)",
- "mi": "Maorština (Nový Zéland)",
- "mr": "Maráthština (Indie)",
- "moh": "Mohawkština (Mohawkové)",
- "ne": "Nepálština (Nepál)",
- "oc": "Okcitánština (Francie)",
- "or": "Udijština (Indie)",
- "ps": "Paštština (Afghánistán)",
- "fa": "Perština",
- "pl": "polština (Polsko)",
- "pa": "Paňdžábština (Indie)",
- "ro": "rumunština (Rumunsko)",
- "rm": "Rétorománština (Švýcarsko)",
- "ru": "ruština (Rusko)",
- "sa": "Sanskrt (Indie)",
- "st": "Severní sotština (Jihoafrická republika)",
- "tn": "Setswanština (Jihoafrická republika)",
- "si": "Sinhálština (Srí Lanka)",
- "sk": "slovenština (Slovensko)",
- "sl": "slovinština (Slovinsko)",
- "sv": "švédština (Švédsko)",
- "syr": "Syrština (Sýrie)",
- "tg": "Tádžičtina (cyrilice, Tádžikistán)",
- "ta": "Tamilština (Indie)",
- "tt": "Tatarština (Rusko)",
- "te": "Telugština (Indie)",
- "th": "thajština (Thajsko)",
- "bo": "Tibetština (ČLR)",
- "tr": "turečtina (Turecko)",
- "tk": "Turkménština (Turkmenistán)",
- "uk": "ukrajinština (Ukrajina)",
- "ur": "Urdština (Islámská republika Pákistán)",
- "vi": "Vietnamština (Vietnam)",
- "cy": "Velština (Spojené království)",
- "wo": "Wolofština (Senegal)",
- "ii": "Yi (ČLR)",
- "yo": "Jorubština (Nigérie)"
- },
- "AppProtection": {
- "allAppTypes": "Cílit na všechny typy aplikací",
- "androidPlatformLabel": "Android",
- "appsInAndroidWorkProfile": "Aplikace v pracovním profilu Androidu",
- "appsOnIntuneManagedDevices": "Aplikace na spravovaných zařízeních Intune",
- "appsOnUnmanagedDevices": "Aplikace na nespravovaných zařízeních",
- "iOSPlatformLabel": "iOS/iPadOS",
- "iosAndroidMacPlatformLabel": "iOS, Android, Mac",
- "iosAndroidPlatformLabel": "iOS, Android",
- "macPlatformLabel": "Mac",
- "notAvailable": "Není dostupné",
- "windows10PlatformLabel": "Windows 10 a novější",
- "withEnrollment": "S registrací",
- "withoutEnrollment": "Bez registrace"
- },
+ "ApplicabilityRules": {
+ "GridLabel": {
+ "property": "Vlastnost",
+ "rule": "Pravidlo",
+ "ruleDetails": "Podrobnosti pravidla",
+ "value": "Hodnota"
+ },
+ "assignIf": "Přiřadit profil, pokud",
+ "deleteWarning": "Tato akce odstraní vybrané pravidlo použitelnosti.",
+ "dontAssignIf": "Nepřiřazovat profil, pokud",
+ "editionDisplayText": "{0} {1}",
+ "editionDisplayTextMore": "a ještě {0}",
+ "instructions": "Zadejte, jak se tento profil má použít v přiřazené skupině. Intune použije profil jen pro zařízení, která splňují kombinaci kritérií danou těmito pravidly.",
+ "maxText": "Maximum",
+ "minText": "Minimum",
+ "noActionRow": "Nezadala se žádná pravidla použitelnosti.",
+ "oSVersion": "např. 1.2.3.4",
+ "toText": "do",
+ "windows10Education": "Windows 10/11 Education",
+ "windows10EducationN": "Windows 10/11 Education N",
+ "windows10Enterprise": "Windows 10/11 Enterprise",
+ "windows10EnterpriseN": "Windows 10/11 Enterprise N",
+ "windows10HolographicEnterprise": "Windows 10 Holographic pro firmy",
+ "windows10Home": "Windows 10/11 Home",
+ "windows10HomeChina": "Windows 10 Home China",
+ "windows10HomeN": "Windows 10/11 Home N",
+ "windows10HomeSingleLanguage": "Windows 10/11 Home Single Language",
+ "windows10IoTCore": "Windows 10 IoT Core",
+ "windows10IoTCoreCommercial": "Windows 10 IoT Core Commercial",
+ "windows10Mobile": "Windows 10 Mobile",
+ "windows10MobileEnterprise": "Windows 10 Mobile Enterprise",
+ "windows10OsEdition": "Edice operačního systému",
+ "windows10OsVersion": "Verze OS",
+ "windows10Professional": "Windows 10/11 Professional",
+ "windows10ProfessionalEducation": "Windows 10/11 Professional Education",
+ "windows10ProfessionalEducationN": "Windows 10/11 Professional Education N",
+ "windows10ProfessionalN": "Windows 10 Professional N",
+ "windows10ProfessionalWorkstation": "Windows 10/11 Professional Workstation",
+ "windows10ProfessionalWorkstationN": "Windows 10/11 Professional Workstation N"
+ },
+ "DetectionRules": {
+ "ComparisonOperators": {
+ "equals": "Je rovno",
+ "greaterThan": "Větší než",
+ "greaterThanOrEqualTo": "Větší než nebo rovno",
+ "lessThan": "Menší než",
+ "lessThanOrEqualTo": "Menší než nebo rovno",
+ "notEqualTo": "Není rovno"
+ },
+ "CustomScript": {
+ "enforceSignatureCheck": "Vynutit kontrolu podpisu skriptu a tiše spustit skript",
+ "enforceSignatureCheckTooltip": "Pokud chcete ověřit, že skript je podepsaný důvěryhodným vydavatelem, který umožní skriptu běžet bez toho, aby se zobrazovaly výzvy nebo upozornění, vyberte Ano. Skript se spustí neblokovaný. Pokud chcete skript spustit s potvrzením koncového uživatele bez ověření podpisu, vyberte Ne (výchozí).",
+ "header": "Použít vlastní skript zjišťování",
+ "runAs32Bit": "Na 64bitových klientech spouštět skript jako 32bitový proces",
+ "runAs32BitTooltip": "Pokud chcete na 64bitových klientech spouštět skript jako 32bitový proces, vyberte Ano. Pokud ho na těchto klientech chcete spouštět jako 64bitový proces, vyberte Ne (výchozí). 32bitoví klienti budou skript spouštět jako 32bitový proces.",
+ "scriptFile": "Soubor skriptu",
+ "scriptFileNotSelectedValidation": "Nevybral se žádný soubor skriptu.",
+ "scriptFileTooltip": "Vyberte powershellový skript, který zjistí přítomnost aplikace v klientovi. Aplikace se bude považovat za zjištěnou, když skript vrátí ukončovací kód s hodnotou 0 a zapíše řetězcovou hodnotu na STDOUT.",
+ "scriptSizeLimitValidation": "Váš skript detekce překračuje maximální povolenou velikost. Vyřešte to zmenšením velikost vašeho skriptu detekce."
+ },
+ "Manual": {
+ "FileRule": {
+ "DetectionMethodOptions": {
+ "dateCreated": "Datum vytvoření",
+ "dateModified": "Datum změny",
+ "doesNotExist": "Soubor nebo složka neexistuje.",
+ "fileOrFolderExists": "Soubor nebo složka existuje.",
+ "sizeInMB": "Velikost v MB",
+ "version": "Řetězec (verze)"
+ },
+ "associatedWith32Bit": "Přidruženo k 32bitové aplikaci na 64bitových klientech",
+ "associatedWith32BitTooltip": "Pokud chcete na 64bitových klientech rozbalit proměnné prostředí cest v 32bitovém kontextu, vyberte Ano. Pokud chcete na těchto klientech rozbalit všechny proměnné cest v 64bitovém kontextu, vyberte Ne (výchozí). 32bitoví klienti budou vždy používat 32bitový kontext.",
+ "detectionMethod": "Metoda zjišťování",
+ "detectionMethodTooltip": "Vyberte typ metody zjišťování, která se používá k ověření přítomnosti aplikace",
+ "fileOrFolder": "Soubor nebo složka",
+ "fileOrFolderToolTip": "Soubor nebo složka, které se mají zjistit",
+ "operator": "Operátor",
+ "operatorTooltip": "Vyberte operátor, pomocí kterého metoda zjišťování ověří porovnání.",
+ "path": "Cesta",
+ "pathTooltip": "Úplná cesta složky, která obsahuje soubor nebo složku, které se mají zjistit",
+ "value": "Hodnota",
+ "valueTooltip": "Vyberte hodnotu, která odpovídá vybrané metodě zjišťování. Metody zjišťování na základě data by se měly zadat v místním čase."
+ },
+ "GridColumns": {
+ "pathOrCode": "Cesta/kód",
+ "type": "Typ"
+ },
+ "MsiRule": {
+ "operator": "Operátor",
+ "operatorTooltip": "Vyberte operátor pro porovnání ověření verze produktu Instalační služby MSI.",
+ "productCode": "Kód produktu Instalační služby MSI",
+ "productCodeTooltip": "Platný kód produktu Instalační služby MSI pro aplikaci",
+ "productVersion": "Hodnota",
+ "productVersionCheck": "Kontrola verze produktu Instalační služby MSI",
+ "productVersionCheckTooltip": "Pokud chcete kromě kódu produktu Instalační služby MSI ověřit i verzi tohoto produktu, vyberte Ano.",
+ "productVersionTooltip": "Zadejte verzi produktu Instalační služby MSI pro aplikaci."
+ },
+ "RegistryRule": {
+ "DetectionMethodOptions": {
+ "integerComparison": "Porovnání celých čísel",
+ "keyDoesNotExist": "Klíč neexistuje.",
+ "keyExists": "Klíč existuje.",
+ "stringComparison": "Porovnání řetězců",
+ "valueDoesNotExist": "Hodnota neexistuje.",
+ "valueExists": "Hodnota existuje.",
+ "versionComparison": "Porovnání verzí"
+ },
+ "associatedWith32Bit": "Přidruženo k 32bitové aplikaci na 64bitových klientech",
+ "associatedWith32BitTooltip": "Pokud chcete na 64bitových klientech prohledávat 32bitový registr, vyberte Ano. Pokud na těchto klientech chcete prohledávat 64bitový registr, vyberte Ne (výchozí). 32bitoví klienti budou vždy prohledávat 32bitový registr.",
+ "detectionMethod": "Metoda zjišťování",
+ "detectionMethodTooltip": "Vyberte typ metody zjišťování, která se používá k ověření přítomnosti aplikace",
+ "keyPath": "Cesta ke klíči",
+ "keyPathTooltip": "Úplná cesta položky registru, která obsahuje hodnotu, která se má zjistit",
+ "operator": "Operátor",
+ "operatorTooltip": "Vyberte operátor, pomocí kterého metoda zjišťování ověří porovnání.",
+ "value": "Hodnota",
+ "valueName": "Název hodnoty",
+ "valueNameTooltip": "Název hodnoty registru, která se má zjistit",
+ "valueTooltip": "Vyberte hodnotu, která odpovídá vybrané metodě zjišťování."
+ },
+ "RuleTypeOptions": {
+ "file": "Soubor",
+ "mSI": "Instalační služba MSI",
+ "registry": "Registr"
+ },
+ "gridAriaLabel": "Pravidla zjišťování",
+ "header": "Vytvořte pravidlo, které indikuje přítomnost aplikace.",
+ "noRulesSelectedPlaceholder": "Nezadala se žádná pravidla.",
+ "ruleTableLimit": "Můžete přidat až 25 pravidel detekce",
+ "ruleType": "Typ pravidla",
+ "ruleTypeTooltip": "Zvolte typ pravidla zjišťování, které se má přidat."
+ },
+ "RuleConfigurationOptions": {
+ "customScript": "Použít vlastní skript zjišťování",
+ "manual": "Ručně nakonfigurovat pravidla zjišťování"
+ },
+ "bladeTitle": "Pravidla detekce",
+ "header": "Nakonfigurovat pravidla pro konkrétní aplikaci, pomocí kterých se zjistí přítomnost aplikace",
+ "rulesFormat": "Formát pravidel",
+ "rulesFormatTooltip": "Zvolte buď ruční konfiguraci pravidel zjišťování, nebo použijte vlastní skript, který zjistí přítomnost aplikace.",
+ "selectorLabel": "Pravidla detekce"
+ },
+ "PolicyType": {
+ "AttackSurfaceReductionRules": {
+ "configMgr": "Pravidla pro omezení potenciální oblasti útoku (ConfigMgr)"
+ },
+ "EndpointDetectionandResponse": {
+ "mDE": "Zjišťování koncových bodů a odpověď"
+ },
+ "EndpointSecurityTemplate": {
+ "aSRAppBrowserSecurity": "Izolace aplikací a prohlížečů",
+ "aSRApplicationControl": "Řízení aplikací",
+ "aSRAttackSurfaceReduction": "Pravidla pro omezení možností útoku",
+ "aSRDeviceControl": "Řízení zařízení",
+ "aSRExploitProtection": "Ochrana Exploit Protection",
+ "aSRWebProtection": "Webová ochrana (Microsoft Edge starší verze)",
+ "aVExclusions": "Výjimky Antivirové ochrany v programu Microsoft Defender",
+ "antivirus": "Antivirová ochrana v programu Microsoft Defender",
+ "cloudPC": "Windows 365 – Standardní hodnoty zabezpečení",
+ "default": "Zabezpečení koncového bodu",
+ "defenderTest": "Ukázka programu Microsoft Defender pro koncový bod",
+ "diskEncryption": "Nástroj BitLocker",
+ "eDR": "Zjišťování koncových bodů a odpověď",
+ "edgeSecurityBaseline": "Standardní hodnoty Microsoft Edge",
+ "edgeSecurityBaselinePreview": "Preview: Standardní hodnoty Microsoft Edge",
+ "editionUpgradeConfiguration": "Upgrade edice a přepnutí režimu",
+ "firewall": "Firewall v programu Microsoft Defender",
+ "firewallRules": "Pravidla Firewallu v programu Microsoft Defender",
+ "identityProtection": "Ochrana účtu",
+ "identityProtectionPreview": "Ochrana účtu (Preview)",
+ "mDMSecurityBaseline1810": "Základní úroveň zabezpečení MDM pro Windows 10 a novější pro říjen 2018",
+ "mDMSecurityBaseline1810Preview": "Preview: Základní úroveň zabezpečení MDM pro Windows 10 a novější pro říjen 2018",
+ "mDMSecurityBaseline1810PreviewBeta": "Preview: Základní úroveň zabezpečení MDM pro Windows 10 pro říjen 2018 (beta verze)",
+ "mDMSecurityBaseline1906": "Základní úroveň zabezpečení MDM pro Windows 10 a novější pro květen 2019",
+ "mDMSecurityBaseline2004": "Základní úroveň zabezpečení MDM pro Windows 10 a novější pro srpen 2020",
+ "mDMSecurityBaseline2101": "Základní plán zabezpečení MDM pro Windows 10 a novější, prosinec 2020",
+ "macOSAntivirus": "Antivirus",
+ "macOSDiskEncryption": "FileVault",
+ "macOSFirewall": "Brána firewall macOS",
+ "microsoftDefenderBaseline": "Standardní hodnoty pro Microsoft Defender pro koncový bod",
+ "office365Baseline": "Standardní hodnoty Microsoft Office O365",
+ "office365BaselinePreview": "Preview: Standardní hodnoty Microsoft Office O365",
+ "securityBaselines": "Základní úrovně zabezpečení",
+ "test": "Testovací šablona",
+ "testFirewallRulesSecurityTemplateName": "Pravidla Firewallu v programu Microsoft Defender (test)",
+ "testIdentityProtectionSecurityTemplateName": "Ochrana účtu (test)",
+ "windowsSecurityExperience": "Možnosti Zabezpečení Windows"
+ },
+ "Firewall": {
+ "mDE": "Firewall v programu Microsoft Defender"
+ },
+ "FirewallRules": {
+ "mDE": "Pravidla Firewallu v programu Microsoft Defender"
+ },
+ "administrativeTemplates": "Šablony pro správu",
+ "androidCompliancePolicy": "Zásady dodržování předpisů v Androidu",
+ "aospDeviceOwnerCompliancePolicy": "Zásady dodržování předpisů v Androidu (AOSP)",
+ "applicationControl": "Řízení aplikací",
+ "custom": "Vlastní",
+ "deliveryOptimization": "Optimalizace doručení",
+ "derivedPersonalIdentityVerificationCredential": "Odvozené přihlašovací údaje",
+ "deviceFeatures": "Funkce zařízení",
+ "deviceFirmwareConfigurationInterface": "Rozhraní DFCI (Device Firmware Configuration Interface)",
+ "deviceLock": "Zámek zařízení",
+ "deviceOwner": "Plně spravovaná, vyhrazená, vlastněná společností a s pracovním profilem",
+ "deviceRestrictions": "Omezení zařízení",
+ "deviceRestrictionsWindows10Team": "Omezení zařízení (Windows 10 Team)",
+ "domainJoinPreview": "Připojení k doméně",
+ "editionUpgradeAndModeSwitch": "Upgrade edice a přepnutí režimu",
+ "education": "Vzdělávání",
+ "email": "E-mail",
+ "emailSamsungKnoxOnly": "E-mail (jen Samsung KNOX)",
+ "endpointProtection": "Ochrana koncového bodu",
+ "expeditedCheckin": "Konfigurace správy mobilních zařízení",
+ "exploitProtection": "Ochrana Exploit Guard",
+ "extensions": "Rozšíření",
+ "hardwareConfigurations": "Konfigurace systému BIOS",
+ "identityProtection": "Identity Protection",
+ "iosCompliancePolicy": "Zásady dodržování předpisů v iOSu",
+ "kiosk": "Veřejný terminál",
+ "macCompliancePolicy": "Zásady dodržování předpisů na Macu",
+ "microsoftDefenderAntivirus": "Antivirová ochrana v programu Microsoft Defender",
+ "microsoftDefenderAntivirusexclusions": "Výjimky Antivirové ochrany v programu Microsoft Defender",
+ "microsoftDefenderAtpWindows10Desktop": "Microsoft Defender for Endpoint (desktopová zařízení se systémem Windows 10 nebo novějším)",
+ "microsoftDefenderFirewallRules": "Pravidla Firewallu v programu Microsoft Defender",
+ "microsoftEdgeBaseline": "Standardní hodnoty Microsoft Edge",
+ "mxProfileZebraOnly": "Profil MX (pouze Zebra)",
+ "networkBoundary": "Ohraničení sítě",
+ "oemConfig": "OEMConfig",
+ "overrideGroupPolicy": "Přepsat zásady skupiny",
+ "pkcsCertificate": "Certifikát PKCS",
+ "pkcsImportedCertificate": "Importovaný certifikát PKCS",
+ "preferenceFile": "Soubor preferencí",
+ "presets": "Předvolby",
+ "scepCertificate": "Certifikát SCEP",
+ "secureAssessmentEducation": "Secure Assessment (Education)",
+ "settingsCatalog": "Katalog nastavení",
+ "sharedMultiUserDevice": "Sdílené víceuživatelské zařízení",
+ "softwareUpdates": "Aktualizace softwaru",
+ "trustedCertificate": "Důvěryhodný certifikát",
+ "unknown": "Neznámé",
+ "unsupported": "Nepodporovaný",
+ "vpn": "VPN",
+ "wiFi": "Wi-Fi",
+ "wiFiImport": "Import Wi-Fi",
+ "windows10CompliancePolicy": "Zásady dodržování předpisů ve Windows 10/11",
+ "windows10MobileCompliancePolicy": "Zásady dodržování předpisů ve Windows 10 Mobile",
+ "windows10XScep": "Certifikát SCEP – TEST",
+ "windows10XTrustedCertificate": "Důvěryhodný certifikát – TEST",
+ "windows10XVPN": "Síť VPN – TEST",
+ "windows10XWifi": "WIFI – TEST",
+ "windows8CompliancePolicy": "Zásady dodržování předpisů ve Windows 8",
+ "windowsHealthMonitoring": "Monitorování stavu Windows",
+ "windowsInformationProtection": "Windows Information Protection",
+ "windowsPhoneCompliancePolicy": "Zásady dodržování předpisů ve Windows Phone",
+ "windowsUpdateforBusiness": "Windows Update pro firmy",
+ "wiredNetwork": "Drátová síť",
+ "workProfile": "Pracovní profil v osobním vlastnictví"
+ },
+ "Win32Requirements": {
+ "AdditionalRequirements": {
+ "File": {
+ "fileOrFolderToolTip": "Soubor nebo složka jako vybraný požadavek",
+ "pathToolTip": "Úplná cesta souboru nebo složky, které se mají zjistit",
+ "property": "Vlastnost",
+ "valueToolTip": "Vyberte hodnotu požadavku, která odpovídá vybrané metodě zjišťování. Metody zjišťování na základě data a času by se měly zadat v místním formátu."
+ },
+ "GridColumns": {
+ "pathOrScript": "Cesta/skript",
+ "type": "Typ"
+ },
+ "Registry": {
+ "keyPath": "Cesta ke klíči",
+ "keyPathTooltip": "Úplná cesta položky registru, která obsahuje hodnotu jako požadavek",
+ "operator": "Operátor",
+ "operatorTooltip": "Vyberte operátor pro porovnání.",
+ "registryRequirement": "Požadavek klíče registru",
+ "registryRequirementTooltip": "Vyberte porovnání požadavků klíčů registrů.",
+ "valueName": "Název hodnoty",
+ "valueNameTooltip": "Název požadované hodnoty registru"
+ },
+ "RequirementTypeOptions": {
+ "fileType": "Soubor",
+ "registry": "Registr",
+ "script": "Skript"
+ },
+ "Script": {
+ "RequirementMethodOptions": {
+ "boolean": "Logická hodnota",
+ "dateTime": "Datum a čas",
+ "float": "Plovoucí desetinná čárka",
+ "integer": "Celé číslo",
+ "string": "Řetězec",
+ "version": "Verze"
+ },
+ "ScriptContent": {
+ "emptyMessage": "Obsah skriptu by neměl být prázdný."
+ },
+ "duplicateName": "Název skriptu {0} se už používá. Zadejte prosím jiný název.",
+ "enforceSignatureCheck": "Vynutit kontrolu podpisu skriptu",
+ "enforceSignatureCheckTooltip": "Pokud chcete ověřit, že skript je podepsaný důvěryhodným vydavatelem, který umožní skriptu běžet bez toho, aby se zobrazovaly výzvy nebo upozornění, vyberte Ano. Skript se spustí neblokovaný. Pokud chcete skript spustit s potvrzením koncového uživatele, ale bez ověření podpisu, vyberte Ne (výchozí).",
+ "loggedOnCredentials": "Spustit tento skript pomocí přihlašovacích údajů přihlášeného uživatele",
+ "loggedOnCredentialsTooltip": "Spustit skript pomocí přihlašovacích údajů přihlášeného zařízení",
+ "operatorTooltip": "Vyberte operátor pro porovnání požadavků.",
+ "requirementMethod": "Vyberte typ výstupních dat.",
+ "requirementMethodTooltip": "Vyberte datový typ, který se použije při určování požadavku na shodu zjišťování.",
+ "scriptFile": "Soubor skriptu",
+ "scriptFileTooltip": "Vyberte powershellový skript, který zjistí přítomnost aplikace v klientovi. Když se aplikace zjistí, proces požadavku poskytne ukončovací kód s hodnotou 0 a zapíše řetězcovou hodnotu na STDOUT.",
+ "scriptName": "Název skriptu",
+ "value": "Hodnota",
+ "valueTooltip": "Vyberte hodnotu požadavku, která odpovídá vybrané metodě zjišťování. Metody zjišťování na základě data a času by se měly zadat v místním formátu."
+ },
+ "bladeTitle": "Přidat pravidlo požadavku",
+ "createRequirementHeader": "Vytvořit požadavek",
+ "header": "Nakonfigurovat další pravidla požadavků",
+ "label": "Pravidla dalších požadavků",
+ "noRequirementsSelectedPlaceholder": "Nezadaly se žádné požadavky.",
+ "requirementType": "Typ požadavku",
+ "requirementTypeTooltip": "Zvolte typ metody zjišťování, pomocí které se určí, jak se požadavek bude ověřovat."
+ },
+ "architectures": "Architektura operačního systému",
+ "architecturesTooltip": "Zvolte architektury potřebné k nainstalování aplikace",
+ "bladeTitle": "Požadavky",
+ "diskSpace": "Požadované místo na disku (MB)",
+ "diskSpaceTooltip": "Požadované volné místo na systémové jednotce, aby se aplikace mohla nainstalovat",
+ "header": "Zadejte požadavky, které zařízení musí splnit, než se aplikace nainstaluje:",
+ "maximumTextFieldValue": "Hodnota musí být maximálně {0}.",
+ "minimumCpuSpeed": "Minimální požadovaná rychlost CPU (MHz)",
+ "minimumCpuSpeedTooltip": "Minimální požadovaná rychlost CPU, aby se aplikace mohla nainstalovat",
+ "minimumLogicalProcessors": "Minimální požadovaný počet logických procesorů",
+ "minimumLogicalProcessorsTooltip": "Minimální požadovaný počet logických procesorů, aby se aplikace mohla nainstalovat",
+ "minimumOperatingSystem": "Minimální operační systém",
+ "minimumOperatingSystemTooltip": "Vyberte minimální operační systém potřebný k instalaci aplikace.",
+ "minumumTextFieldValue": "Hodnota musí být aspoň {0}.",
+ "physicalMemory": "Požadovaná fyzická paměť (MB)",
+ "physicalMemoryTooltip": "Požadovaná fyzická paměť (RAM), aby se aplikace mohla nainstalovat",
+ "selectorLabel": "Požadavky",
+ "validNumber": "Zadejte platné číslo."
+ },
+ "AzureIAM": {
+ "AdrsUserActionSelectionWarning": {
+ "conditions": "Podmínky, které vyžadují registraci zařízení, nejsou k dispozici u uživatelské akce Registrovat nebo připojit zařízení.",
+ "message": "V zásadách vytvořených pro akci uživatele „Zaregistrovat nebo připojit zařízení“ je možné použít jen možnost „Vyžadovat vícefaktorové ověřování“.{0}"
+ },
+ "AuthContext": {
+ "Delete": {
+ "failure": "{0} se nepovedlo odstranit.",
+ "failureCa": "Nepodařilo se odstranit: {0}, protože na to odkazují zásady certifikační autority.",
+ "modifying": "Odstraňuje se {0}.",
+ "success": "Úspěšně jste odstranili: {0}."
+ },
+ "Included": {
+ "none": "Nejsou vybrané žádné cloudové aplikace, akce ani kontexty ověřování.",
+ "plural": "Zahrnuté kontexty ověřování: {0}",
+ "singular": "Zahrnuté kontexty ověřování: 1"
+ },
+ "InfoBlade": {
+ "createTitle": "Přidat kontext ověřování",
+ "descPlaceholder": "Přidat popis kontextu ověřování",
+ "modifyTitle": "Upravit kontext ověřování",
+ "namePlaceholder": "Např. Důvěryhodné umístění, Důvěryhodné zařízení, Silná autorizace",
+ "publishDesc": "Publikování do aplikací zpřístupní kontext ověřování aplikacím, které tak budou moct kontext použít. Publikování proveďte, až dokončíte konfiguraci zásad podmíněného přístupu pro značku. [Další informace][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150966",
+ "publishLabel": "Publikovat do aplikací",
+ "titleDesc": "Nakonfigurujte kontext ověřování, který se použije pro ochranu dat a akcí aplikace. Použijte názvy a popisy, kterým správci aplikací porozumí. [Další informace][1]\n[1]:https://go.microsoft.com/fwlink/?linkid=2150965"
+ },
+ "Notify": {
+ "failure": "Aplikaci {0} se nepodařilo aktualizovat.",
+ "modifying": "Upravuje se {0}.",
+ "success": "Aplikace {0} se úspěšně aktualizovala."
+ },
+ "WhatIf": {
+ "selected": "Zahrnutý kontext ověřování"
+ },
+ "addNewStepUp": "Nový kontext ověřování",
+ "checkBoxInfo": "Vyberte kontext ověřování, na které se tyto zásady budou vztahovat.",
+ "configure": "Nakonfigurovat kontexty ověřování",
+ "createCA": "Přiřadit zásady podmíněného přístupu ke kontextu ověřování",
+ "dataGrid": "Seznam kontextů ověřování",
+ "deleteFailedByReference": "You cannot delete this authentication context because it is being referenced by CA policies.",
+ "description": "Popis",
+ "documentation": "Dokumentace",
+ "getStarted": "Začínáme",
+ "label": "Kontext ověřování (Preview)",
+ "menuLabel": "Kontext ověřování (Preview)",
+ "name": "Název",
+ "noAuthContextConfigured": "Nebyly nakonfigurovány žádné kontexty ověřování.",
+ "noAuthContextSet": "Neexistují žádné kontexty ověrování",
+ "noData": "Nejsou k dispozici žádné kontexty ověřování, které by se daly zobrazit.",
+ "selectionInfo": "Kontext ověřování se používá k zabezpečení dat a akcí v aplikacích, jako jsou SharePoint a Microsoft Cloud App Security.",
+ "step": "Krok",
+ "tabDescription": "Pokud chcete ve svých aplikacích chránit data a akce, spravujte kontext ověřování. [Další informace][1]\n[1]:https://go.microsoft.com/fwlink/?linkid=2150965",
+ "tagResources": "Označit prostředky pomocí kontextu ověřování"
+ },
+ "AuthenticationStrength": {
+ "Mode": {
+ "deviceBasedPush": "Microsoft Authenticator (přihlášení telefonem)",
+ "deviceBasedPushFido2X509Certificate": "Microsoft Authenticator (přihlášení telefonem) + Fido 2 + ověřování na základě certifikátu",
+ "deviceBasedPushX509CertificateSingleFactor": "Microsoft Authenticator (přihlášení telefonem) + Fido 2 + ověřování na základě certifikátu (jednofaktorové)",
+ "email": "Jednorázové heslo poslané e-mailem",
+ "emailOtp": "Jednorázové heslo poslané e-mailem",
+ "federatedMultiFactor": "Federované vícefaktorové",
+ "federatedSingleFactor": "Federovaný jeden faktor",
+ "federatedSingleFactorFederatedMultiFactor": "Federované jednofaktorové + federované vícefaktorové",
+ "fido2": "Klíč zabezpečení FIDO 2",
+ "fido2X509CertificateSingleFactor": "Klíč zabezpečení FIDO 2 + ověřování na základě certifikátu (jednofaktorové)",
+ "hardwareOath": "Hardwarové tokeny OATH",
+ "hardwareOathEmail": "Hardwarové tokeny OATH + jednorázové heslo poslané e-mailem",
+ "hardwareOathX509CertificateSingleFactor": "Hardwarové tokeny OATH + ověřování na základě certifikátu (jednofaktorové)",
+ "microsoftAuthenticatorPSIX509CertificateSingleFactor": "Microsoft Authenticator (přihlášení telefonem) + ověřování na základě certifikátu (jednofaktorové)",
+ "microsoftAuthenticatorPsi": "Microsoft Authenticator (přihlášení telefonem)",
+ "microsoftAuthenticatorPush": "Microsoft Authenticator (nabízené oznámení)",
+ "microsoftAuthenticatorPushEmail": "Microsoft Authenticator (nabízené oznámení) + jednorázové heslo poslané e-mailem",
+ "microsoftAuthenticatorPushX509CertificateSingleFactor": "Microsoft Authenticator (nabízené oznámení) + ověřování na základě certifikátu (jednofaktorové)",
+ "none": "Žádný",
+ "password": "Heslo",
+ "passwordDeviceBasedPush": "Heslo + Microsoft Authenticator (přihlášení telefonem)",
+ "passwordFido2": "Heslo + klíč zabezpečení FIDO 2",
+ "passwordHardwareOath": "Heslo + hardwarové tokeny OATH",
+ "passwordMicrosoftAuthenticatorPSI": "Heslo + Microsoft Authenticator (přihlášení telefonem)",
+ "passwordMicrosoftAuthenticatorPush": "Heslo + Microsoft Authenticator (nabízené oznámení)",
+ "passwordSms": "Heslo + SMS",
+ "passwordSoftwareOath": "Heslo + softwarové tokeny OATH",
+ "passwordTemporaryAccessPassMultiUse": "Heslo + dočasné předplatné (více užití)",
+ "passwordTemporaryAccessPassOneTime": "Heslo + dočasné předplatné (jednorázové užití)",
+ "passwordVoice": "Heslo + hlas",
+ "sms": "SMS",
+ "smsEmail": "SMS + jednorázové heslo poslané e-mailem",
+ "smsSignIn": "Přihlašování zprávou SMS",
+ "smsX509CertificateSingleFactor": "SMS + ověřování na základě certifikátu (jednofaktorové)",
+ "softwareOath": "Softwarové tokeny OATH",
+ "softwareOathEmail": "Softwarové tokeny OATH + jednorázové heslo poslané e-mailem",
+ "softwareOathX509CertificateSingleFactor": "Softwarové tokeny OATH + ověřování na základě certifikátu (jednofaktorové)",
+ "temporaryAccessPassMultiUse": "Dočasné předplatné (více užití)",
+ "temporaryAccessPassMultiUseX509CertificateSingleFactor": "Dočasné předplatné (více užití) + ověřování na základě certifikátu (jednofaktorové)",
+ "temporaryAccessPassOneTime": "Dočasné předplatné (jednorázové užití)",
+ "temporaryAccessPassOneTimeX509CertificateSingleFactor": "Dočasné předplatné (jednorázové užití) + ověřování na základě certifikátu (jednofaktorové)",
+ "voice": "Hlas",
+ "voiceEmail": "Telefonát + jednorázové heslo poslané e-mailem",
+ "voiceX509CertificateSingleFactor": "Hlas + ověřování na základě certifikátu (jednofaktorové)",
+ "windowsHelloForBusiness": "Windows Hello pro firmy",
+ "x509CertificateMultiFactor": "Ověřování na základě certifikátu (vícefaktorové)",
+ "x509CertificateSingleFactor": "Ověřování na základě certifikátu (jednofaktorové)"
+ }
+ },
+ "CAS": {
+ "BuiltinPolicy": {
+ "Option": {
+ "blockDownloads": "Zablokovat stahování (Preview)",
+ "monitorOnly": "Jen monitorování (Preview)",
+ "protectDownloads": "Chránit stahování (Preview)",
+ "useCustomControls": "Použít vlastní zásady..."
+ },
+ "ariaLabel": "Zvolte druh Řízení podmíněného přístupu k aplikacím, který se má použít."
+ }
+ },
+ "ChooseApplications": {
+ "Grid": {
+ "appIdAria": "ID aplikace: {0}"
+ },
+ "LowerGrid": {
+ "ariaLabel": "Seznam vybraných cloudových aplikací"
+ },
+ "UpperGrid": {
+ "ariaLabel": "Seznam cloudových aplikací, které odpovídají hledanému termínu"
+ }
+ },
+ "ChooseLocations": {
+ "Validation": {
+ "failed": "Ve Vybraných lokalitách musíte zvolit alespoň jednu lokalitu.",
+ "selector": "Zvolte alespoň jedno umístění."
+ }
+ },
+ "ClientApp": {
+ "Clients": {
+ "Validation": {
+ "failed": "Musíte vybrat alespoň jednoho z následujících klientů."
+ }
+ }
+ },
+ "ClientConditionsInfo": {
+ "browserAndModern": "Tyto zásady platí jen pro moderní ověřovací aplikace a ověřovací aplikace pro prohlížeče. Pokud chcete zásady použít pro všechny klientské aplikace, povolte podmínku klientských aplikací a vyberte všechny klientské aplikace.",
+ "classicExperience": "Od vytvoření těchto zásad se aktualizovala výchozí konfigurace klientských aplikací.",
+ "legacyAuth": "Když se nakonfiguruje, budou se teď zásady vztahovat na všechny klientské aplikace, včetně moderního a staršího ověřování."
+ },
+ "CloudAppFilterBlade": {
+ "AssignmentFilter": {
+ "header": "Atribut",
+ "placeholder": "Zvolit atribut"
+ },
+ "Configure": {
+ "infoBalloon": "Nakonfigurujte filtry aplikací, pro které chcete zásady použít."
+ },
+ "NoPermissions": {
+ "learnMoreAria": "Další informace o oprávněních vlastních atributů zabezpečení.",
+ "message": "Nemáte oprávnění potřebná k použití vlastních atributů zabezpečení."
+ },
+ "gridHeader": "S využitím vlastních atributů zabezpečení můžete pomocí tvůrce pravidel nebo textového pole syntaxe pravidel vytvořit nebo upravit pravidla filtru. Ve verzi Preview jsou podporovány pouze atributy typu String. Atributy typu Integer nebo Boolean nebudou zobrazeny.",
+ "learnMoreAria": "Další informace o použití tvůrce pravidel a textového pole syntaxe.",
+ "noAttributes": "K dispozici nejsou žádné vlastní atributy, které by bylo možné filtrovat. Pokud chcete použít tento filtr, bude nutné nakonfigurovat některé atributy.",
+ "title": "Upravit filtr (Preview)"
+ },
+ "CloudAppsUserActions": {
+ "any": "Jakákoli cloudová aplikace nebo akce",
+ "infoBalloon": "Cloudová aplikace nebo akce uživatele, kterou chcete otestovat. Příklad: SharePoint Online",
+ "learnMore": "Umožňuje nastavit přístup podle všech nebo konkrétních cloudových aplikací nebo akcí.",
+ "learnMoreB2C": "Umožňuje nastavit přístup podle všech nebo konkrétních cloudových aplikací.",
+ "title": "Cloudové aplikace nebo akce"
+ },
+ "CloudappsSelectionBlade": {
+ "Excluded": {
+ "gridAria": "Seznam vyloučených cloudových aplikací"
+ },
+ "Filter": {
+ "configured": "Nakonfigurováno",
+ "label": "Upravit filtr (Preview)",
+ "with": "{0} s {1}"
+ },
+ "Included": {
+ "gridAria": "Seznam zahrnutých cloudových aplikací"
+ },
+ "Validation": {
+ "authContext": "S kontextem ověřování je nutné nakonfigurovat alespoň jednu podřízenou položku.",
+ "selectApps": "{0} se musí nakonfigurovat.",
+ "selector": "Vyberte alespoň jednu aplikaci.",
+ "userActions": "S Akcemi uživatelů je zapotřebí nakonfigurovat alespoň jednu podřízenou položku."
+ }
+ },
+ "DeviceState": {
+ "LearnMore": {
+ "message": "Umožňuje nastavit přístup uživatelů, když je zařízení, ze kterého se uživatel přihlašuje, připojené službou Hybrid Azure AD Join nebo označené jako kompatibilní.\n Možnost je teď už zastaralá. Místo toho použijte možnost {1}."
+ }
+ },
+ "Errors": {
+ "notFound": "Zásady se nenašly nebo se zakázaly.",
+ "notFoundDetailed": "Zásady {0} už neexistují. Je možné, že se odstranily."
+ },
+ "GuestsOrExternalUsers": {
+ "allExternalTenantsLabel": "Všechny organizace Azure Active Directory",
+ "b2bCollaborationGuestLabel": "Uživatel typu host pro B2B Collaboration",
+ "b2bCollaborationMemberLabel": "Uživatelé členů B2B Collaboration",
+ "b2bDirectConnectUserLabel": "Přímé připojení B2B",
+ "enumeratedExternalTenantsError": "Vyberte prosím alespoň jednoho externího tenanta.",
+ "enumeratedExternalTenantsLabel": "Vybrat organizace Azure Active Directory",
+ "externalTenantsLabel": "Zadat externí organizace Azure Active Directory",
+ "externalUserDropdownLabel": "Zvolit typy hosta nebo externích uživatelů",
+ "externalUsersError": "Vyberte aspoň jeden typ externího hosta nebo uživatele.",
+ "guestOrExternalUsersInfoContent": "Zahrnuje B2B Collaboration, přímé připojení B2B a další typy externích uživatelů.",
+ "guestOrExternalUsersLabel": "Host nebo externí uživatelé",
+ "internalGuestLabel": "Místní uživatelé typu host",
+ "otherExternalUserLabel": "Další externí uživatelé"
+ },
+ "NamedLocation": {
+ "Form": {
+ "CountryLookup": {
+ "ariaLabel": "Metoda vyhledání země",
+ "gps": "Určení polohy podle souřadnic GPS",
+ "info": "Když se nakonfiguruje podmínka polohy zásad podmíněného přístupu, uživatelům se zobrazí výzva aplikace Authenticator, aby sdíleli svou polohu GPS. ",
+ "ip": "Zjistit polohu podle IP adresy (jen protokol IPv4)"
+ },
+ "Header": {
+ "new": "Nové umístění ({0})",
+ "update": "Aktualizovat umístění ({0})"
+ },
+ "IP": {
+ "learn": "Nakonfigurujte rozsahy IPv4 a IPv6 pojmenovaných umístění.\n[Další informace][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
+ },
+ "Include": {
+ "infoBalloon": "Neznámé země/oblasti jsou IP adresy, které nejsou přidružené ke konkrétní zemi nebo oblasti. [Další informace][1]\n\nTo zahrnuje:\n* IPv6 adresy\n* IPv4 adresy bez přímého mapování\n[1]: https://aka.ms/canamedlocations\n",
+ "label": "Zahrnout neznámé země/oblasti"
+ },
+ "Name": {
+ "empty": "Název nemůže být prázdný.",
+ "placeholder": "Název tohoto umístění"
+ },
+ "PrivateLink": {
+ "learn": "Vytvořte nové pojmenované umístění, které bude obsahovat privátní propojení pro Azure AD.\n[Další informace][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
+ },
+ "Search": {
+ "countries": "Hledat země",
+ "names": "Hledat jména",
+ "privateLinks": "Hledat privátní propojení"
+ },
+ "Trusted": {
+ "label": "Označit jako důvěryhodné umístění"
+ },
+ "enter": "Zadejte nový rozsah IPv4 nebo IPv6.",
+ "example": "např.: 40.77.182.32/27 nebo 2a01:111::/32"
+ },
+ "Label": {
+ "addCountries": "Umístění zemí",
+ "addIpRange": "Umístění rozsahů IP adres",
+ "addPrivateLink": "Azure Private Links"
+ },
+ "Notification": {
+ "Create": {
+ "Failed": {
+ "description": "Při vytváření nového umístění došlo k chybě ({0}).",
+ "title": "Vytváření neproběhlo úspěšně"
+ },
+ "InProgress": {
+ "description": "Vytváří se nové umístění ({0}).",
+ "title": "Probíhá vytváření"
+ },
+ "Success": {
+ "description": "Nové umístění se úspěšně vytvořilo ({0}).",
+ "title": "Vytváření proběhlo úspěšně"
+ }
+ },
+ "Delete": {
+ "Failed": {
+ "description": "Při odstraňování umístění došlo k chybě ({0}).",
+ "title": "Odstraňování neproběhlo úspěšně"
+ },
+ "InProgress": {
+ "description": "Odstraňuje se umístění ({0}).",
+ "title": "Probíhá odstraňování"
+ },
+ "Success": {
+ "description": "Umístění se úspěšně odstranilo ({0}).",
+ "title": "Odstranění proběhlo úspěšně"
+ }
+ },
+ "Update": {
+ "Failed": {
+ "description": "Při aktualizaci umístění došlo k chybě ({0}).",
+ "title": "Aktualizace neproběhla úspěšně"
+ },
+ "InProgress": {
+ "description": "Aktualizuje se umístění ({0}).",
+ "title": "Probíhá aktualizace"
+ },
+ "Success": {
+ "description": "Umístění se úspěšně aktualizovalo ({0}).",
+ "title": "Aktualizace proběhla úspěšně"
+ }
+ }
+ },
+ "PrivateLinks": {
+ "grid": "Seznam privátních propojení"
+ },
+ "Trusted": {
+ "title": "Důvěryhodný typ",
+ "trusted": "Důvěryhodná"
+ },
+ "Type": {
+ "all": "Všechny typy",
+ "countries": "Země",
+ "ipRanges": "Rozsahy IP adres",
+ "privateLinks": "Privátní propojení",
+ "title": "Typ umístění"
+ },
+ "iPRangeInvalidError": "Hodnota musí být platný rozsah IPv4 nebo IPv6.",
+ "iPRangeLinkOrSiteLocalError": "Síť IP se zjistila jako místní adresa propojení nebo lokality.",
+ "iPRangeOctetError": "Síť IP nesmí začínat na 0 nebo 255.",
+ "iPRangePrefixError": "Předpona sítě IP musí mít hodnotu od /{0} do /{1}.",
+ "iPRangePrivateError": "Síť IP se zjistila jako privátní adresa."
+ },
+ "NamedNetwork": {
+ "List": {
+ "gridAria": "Seznam pojmenovaných umístění"
+ }
+ },
+ "Policies": {
+ "Grid": {
+ "aria": "Seznam zásad podmíněného přístupu"
+ },
+ "countText": "Našly se {0} z {1} zásad.",
+ "countTextSingular": "Našla se {0} z 1 zásady.",
+ "search": "Vyhledat zásady"
+ },
+ "Policy": {
+ "Condition": {
+ "ServicePrincipalRisk": {
+ "description": "Umožňuje nakonfigurovat úrovně rizika instančního objektu potřebné k vynucení zásad ",
+ "infoBalloonContent": "Konfigurace rizika instančního objektu pro použití zásad na vybrané úrovně rizika",
+ "title": "Riziko instančního objektu (Preview)"
+ }
+ }
+ },
+ "PolicyControlAuthStrength": {
+ "MultiFactorAuthentication": {
+ "description": "Kombinace metod, které splňují požadavky silného ověřování, jako je heslo + SMS.",
+ "displayName": "Vícefaktorové ověřování (MFA)"
+ },
+ "Passwordless": {
+ "description": "Bezheslové metody, které splňují požadavky silného ověřování, například Microsoft Authenticator. ",
+ "displayName": "Bezheslový MFA"
+ },
+ "PhishingResistant": {
+ "description": "Bezheslové metody odolné proti útokům phishing pro nejsilnější úroveň ověřování, jako je například klíč zabezpečení FIDO2.",
+ "displayName": "MFA odolné vůči útoku phishing"
+ }
+ },
+ "PolicyControlFedAuthMethod": {
+ "ariaLabel": "Learn more about requiring authentication methods satisfied by federation providers.",
+ "certificate": "Ověřování certifikátem",
+ "infoBubble": "Zadejte požadovanou metodu ověřování, kterou musí splnit poskytovatel federace, třeba ADFS.",
+ "multifactor": "Vícefaktorové ověřování",
+ "require": "Vyžadovat federovanou metodu ověřování (Preview)",
+ "whatIfFormat": "{0} - {1}"
+ },
+ "PolicyState": {
+ "off": "Vypnuté",
+ "on": "Zapnuté",
+ "reportOnly": "Pouze sestavy"
+ },
+ "PolicyTemplates": {
+ "Devices": {
+ "description": "Vyberte kategorii šablon zásad zařízení, abyste získali přehled o zařízeních přistupujících k síti. Před udělením přístupu zajistěte dodržování předpisů a stav.",
+ "name": "Zařízení"
+ },
+ "Identities": {
+ "description": "Vyberte kategorii šablony zásad identit, abyste ověřili a zabezpečili každou identitu pomocí silného ověřování napříč všemi digitálními prostředky.",
+ "name": "Identity"
+ },
+ "Summary": {
+ "CloudApps": {
+ "allCloudApps": "Všechny aplikace",
+ "office365": "Office 365",
+ "registerSecurityInfo": "Zaregistrovat informace o zabezpečení"
+ },
+ "Conditions": {
+ "androidAndIOS": "Platforma zařízení: Android a iOS",
+ "anyDevice": "Libovolné zařízení s výjimkou Androidu, iOS, Windows a Macu",
+ "anyDeviceStateExceptHybrid": "Libovolný stav zařízení s výjimkou odpovídajícího zařízení a zařízení připojeného službou Hybrid Azure AD Join",
+ "anyLocation": "Libovolné umístění kromě důvěryhodného",
+ "browserMobileDesktop": "Klientské aplikace: prohlížeč, mobilní aplikace a desktopoví klienti",
+ "exchangeActiveSync": "Klientské aplikace: Exchange Active Sync, ostatní klienti",
+ "windowsAndMac": "Platforma zařízení: Windows a Mac"
+ },
+ "Devices": {
+ "anyDevice": "Libovolné zařízení"
+ },
+ "Grant": {
+ "appProtectionPolicy": "Vyžadovat zásady ochrany aplikací",
+ "approvedClientApp": "Vyžaduje se klientem schválená aplikace.",
+ "blockAccess": "Blokovat přístup",
+ "mfa": "Vyžadovat vícefaktorové ověřování",
+ "passwordChange": "Vyžadovat změnu hesla",
+ "requireCompliantDevice": "Vyžadovat, aby zařízení bylo označené jako vyhovující",
+ "requireHybridAzureADDevice": "Vyžadovat zařízení připojené službou Hybrid Azure AD Join"
+ },
+ "Session": {
+ "appEnforcedRestrictions": "Používat omezení vynucená aplikací",
+ "signInFrequency": "Frekvence přihlášení a dočasná relace prohlížeče"
+ },
+ "UsersAndGroups": {
+ "allUsers": "Všichni uživatelé",
+ "directoryRoles": "Role adresáře s výjimkou aktuálního správce",
+ "globalAdmin": "Globální správce",
+ "noGuestAndAdmins": "Všichni uživatelé kromě hostů a externích uživatelů, globálních správců a aktuálního správce"
+ },
+ "azureManagement": "Správa Azure",
+ "deviceFilters": "Filtry pro zařízení",
+ "devicePlatforms": "Platformy zařízení"
+ },
+ "TemplateId": {
+ "AppEnforcedRestrictions": {
+ "description": "Zablokujte nebo omezte přístup k obsahu SharePointu, OneDrivu a Exchange z nespravovaných zařízení.",
+ "name": "CA014: Použít omezení vynucená aplikací pro nespravovaná zařízení",
+ "title": "Použít omezení vynucená aplikací pro nespravovaná zařízení"
+ },
+ "ApprovedClientApps": {
+ "description": "Aby se zabránilo ztrátě dat, organizace můžou omezit přístup ke schváleným aplikacím moderního ověřování klientů pomocí služby Intune App Protection.",
+ "name": "CA012: Vyžadovat schválené klientské aplikace a ochranu aplikací",
+ "title": "Vyžadovat schválené klientské aplikace a ochranu aplikací"
+ },
+ "BlockAccessOnUnknowns": {
+ "description": "Uživatelům se zablokuje přístup k prostředkům společnosti, pokud je typ zařízení neznámý nebo nepodporovaný.",
+ "name": "CA010: Zablokovat přístup neznámé nebo nepodporované platformě zařízení",
+ "title": "Zablokovat přístup neznámé nebo nepodporované platformě zařízení"
+ },
+ "BlockLegacyAuth": {
+ "description": "Zablokuje starší verze koncových bodů ověřování, které se dají použít k obejití vícefaktorového ověřování. ",
+ "name": "CA003: Blokuje starší verzi ověřování.",
+ "title": "Blokovat starší verzi ověřování"
+ },
+ "NoPersistentBrowserSession": {
+ "description": "Chraňte přístup uživatelů na nespravovaných zařízeních tím, že zabráníte tomu, aby relace prohlížeče zůstaly přihlášené po zavření prohlížeče, a nastavíte frekvenci přihlašování na 1 hodinu.",
+ "name": "CA011: Žádná trvalá relace prohlížeče",
+ "title": "Žádná trvalá relace prohlížeče"
+ },
+ "RequireCompliantOrHybridADAdmins": {
+ "description": "Vyžadujte, aby privilegovaní správci mohli přistupovat k prostředkům jenom při použití zařízení připojeného ke službě Azure AD nebo zařízení připojeného k hybridní službě Azure AD.",
+ "name": "CA009: Vyžadovat odpovídající nebo službou Hybrid Azure AD Join připojené zařízení pro správce",
+ "title": "Vyžadovat odpovídající nebo službou Hybrid Azure AD Join připojené zařízení pro správce."
+ },
+ "RequireCompliantOrHybridADAllUsers": {
+ "description": "Chraňte přístup k firemním prostředkům tím, že budete vyžadovat, aby uživatelé používali spravované zařízení nebo prováděli vícefaktorové ověřování. (pouze macOS nebo Windows)",
+ "name": "CA013: Vyžadovat odpovídající nebo službou Hybrid Azure AD Join připojené zařízení nebo vícefaktorové ověřování pro všechny uživatele",
+ "title": "Vyžadovat odpovídající nebo službou Hybrid Azure AD Join připojené zařízení nebo vícefaktorové ověřování pro všechny uživatele"
+ },
+ "RequireMFAAllUsers": {
+ "description": "Vyžadujte vícefaktorové ověřování pro všechny uživatelské účty, abyste snížili riziko ohrožení zabezpečení.",
+ "name": "CA004: Vyžadovat vícefaktorové ověřování pro všechny uživatele",
+ "title": "Vyžadovat vícefaktorové ověřování pro všechny uživatele"
+ },
+ "RequireMFAForAdmins": {
+ "description": "Vyžadovat vícefaktorové ověřování pro privilegované účty pro správu, aby se snížilo riziko ohrožení zabezpečení. Tato zásada bude cílit na stejné role jako výchozí zabezpečení.",
+ "name": "CA001: Vyžadovat vícefaktorové ověřování pro správce",
+ "title": "Vyžadovat vícefaktorové ověřování pro správce"
+ },
+ "RequireMFAForAzureManagement": {
+ "description": "K ochraně privilegovaného přístupu k prostředkům Azure se vyžaduje vícefaktorové ověřování.",
+ "name": "CA006: Vyžadovat vícefaktorové ověřování pro správu Azure",
+ "title": "Vyžadovat vícefaktorové ověřování pro správu Azure"
+ },
+ "RequireMFAForGuestAccess": {
+ "description": "Vyžadovat, aby uživatelé typu host při přístupu k firemním prostředkům provedli vícefaktorové ověřování.",
+ "name": "CA005: Vyžadovat vícefaktorové ověřování pro přístup hostů",
+ "title": "Vyžadovat vícefaktorové ověřování pro přístup hostů"
+ },
+ "RequireMFAForRiskySignIn": {
+ "description": "Vyžadovat vícefaktorové ověřování, pokud se zjistí, že riziko přihlášení je střední nebo vysoké. (vyžaduje licenci Azure AD Premium 2).",
+ "name": "CA007: Vyžadovat vícefaktorové ověřování pro riziková přihlášení",
+ "title": "Vyžadovat vícefaktorové ověřování pro riziková přihlášení"
+ },
+ "RequirePasswordChangeForHighRiskUsers": {
+ "description": "Vyžaduje, aby si uživatel změnil heslo, pokud se zjistí vysoké riziko uživatele (vyžaduje licenci Azure AD Premium 2).",
+ "name": "CA008: Vyžadovat změnu hesla pro uživatele s vysokým rizikem",
+ "title": "Vyžadovat změnu hesla pro uživatele s vysokým rizikem"
+ },
+ "RequireSecurityInfo": {
+ "description": "Zabezpečte, kdy a jak se uživatelé zaregistrují k vícefaktorovému ověřování Azure AD a samoobslužnému heslu. ",
+ "name": "CA002: Zabezpečování registrace bezpečnostních údajů",
+ "title": "Zabezpečování registrace bezpečnostních údajů"
+ }
+ },
+ "TemplateState": {
+ "BlockAccessOnUnknowns": {
+ "title": "Povolení této zásady zabrání jakémukoli přístupu z neznámého typu zařízení, pro začátek zvažte použití režimu pouze sestava, dokud si nepotvrdíte, že to nebude mít vliv na vaše uživatele."
+ },
+ "BlockLegacyAuth": {
+ "description": "Pro začátek zvažte použití režimu pouze sestava, dokud nebudete mít jistotu, že to nebude mít vliv na vaše uživatele.",
+ "title": "Povolením této zásady se zablokují starší ověřování pro všechny vaše uživatele."
+ },
+ "RequireCompliantOrHybridADAdmins": {
+ "Description": {
+ "on": "Pro začátek zvažte použití režimu pouze sestava, dokud nebudete mít jistotu, že to nebude mít vliv na vaše privilegované uživatele.",
+ "reportOnly": "Zásady v režimu pouze sestava, které vyžadují kompatibilní zařízení, mohou uživatele počítačů Mac, iOS a Android vyzvat, aby během vyhodnocování zásad vybrali certifikát zařízení, i když není vynucován soulad zařízení. Tyto výzvy se mohou opakovat, dokud není zařízení v souladu s požadavky."
+ },
+ "Title": {
+ "on": "Když se tyto zásady povolí, zabráníte veškerému přístupu privilegovaných uživatelů, pokud nepoužívají spravované zařízení, například vyhovující předpisům nebo připojené k hybridní službě Azure AD. Před povolením se ujistěte, že jste nakonfigurovali zásady dodržování předpisů nebo povolili hybridní konfiguraci Azure AD.",
+ "reportOnly": "Před povolením se ujistěte, že jste nakonfigurovali zásady dodržování předpisů nebo povolili hybridní konfiguraci Azure AD. "
+ }
+ },
+ "RequireCompliantOrHybridADAllUsers": {
+ "Description": {
+ "on": "Tato zásada bude mít vliv na všechny uživatele kromě aktuálně přihlášeného správce. Zvažte použití režimu jenom pro sestavy, který bude začínat, dokud neověříte, že to nebude mít dopad na vaše uživatele."
+ },
+ "Title": {
+ "on": "Nezablokujte se! Ujistěte se, že vaše zařízení dodržuje předpisy, že je připojené k hybridní službě Azure AD, nebo jste nakonfigurovali vícefaktorové ověřování. ",
+ "reportOnly": "Zásady v režimu pouze sestava, které vyžadují kompatibilní zařízení, mohou uživatele počítačů Mac, iOS a Android vyzvat, aby během vyhodnocování zásad vybrali certifikát zařízení, i když není vynucován soulad zařízení. Tyto výzvy se mohou opakovat, dokud není zařízení kompatibilní."
+ }
+ },
+ "RequireMfa": {
+ "description": "Pokud k synchronizaci místních objektů používáte účty pro nouzový přístup nebo Azure AD Connect, budete možná muset tyto účty z těchto zásad po vytvoření vyloučit."
+ },
+ "RequireMfaAdmins": {
+ "description": "Vezměte prosím na vědomí, že aktuální účet správce bude automaticky vyloučen, ale všechny ostatní budou při vytváření zásad chráněny. Zvažte pro začátek použití režimu pouze sestava.",
+ "title": "Nezablokujte si přístup! Tato zásada ovlivňuje portál Microsoft Azure."
+ },
+ "RequireMfaAllUsers": {
+ "description": "Pro začátek zvažte používání pouze režimu sestav, dokud tuto změnu nenaplánujete a neoznámíte všem uživatelům.",
+ "title": "Povolením této zásady vynutíte vícefaktorové ověřování pro všechny uživatele."
+ },
+ "RequireSecurityInfo": {
+ "description": "Dbejte, abyste zkontrolovali konfiguraci ochrany těchto účtů na základě potřeb vaší společnosti.",
+ "title": "Tyto zásady se nevztahují na následující uživatele a role: Hosté a externí uživatelé, Globální správci, Aktuální správce."
+ }
+ },
+ "basics": "Základní informace",
+ "clientApps": "Klientské aplikace",
+ "cloudApps": "Cloudové aplikace",
+ "cloudAppsOrActions": "Cloudové aplikace nebo akce ",
+ "conditions": "Podmínky ",
+ "createNewPolicy": "Vytvořit nové zásady ze šablon (Preview)",
+ "createPolicy": "Vytvořit zásady",
+ "currentUser": "Aktuální uživatel",
+ "customizeBuild": "Přizpůsobení sestavení",
+ "customizeTemplate": "Seznamy šablon se přizpůsobují podle typu zásady, kterou vytváříte.",
+ "excludedDevicePlatform": "Vyloučené platformy zařízení",
+ "excludedDirectoryRoles": "Vyloučené role adresáře",
+ "excludedLocation": "Vyloučené role adresáře",
+ "excludedUsers": "Vyloučení uživatelé",
+ "grantControl": "Udělit řízení ",
+ "includeFilteredDevice": "Zahrnout filtrovaná zařízení do zásad",
+ "includedDevicePlatform": "Zahrnuté platformy zařízení",
+ "includedDirectoryRoles": "Zahrnuté role adresáře",
+ "includedLocation": "Zahrnuté umístění",
+ "includedUsers": "Zahrnout uživatele",
+ "legacyAuthenticationClients": "Starší ověřovací klienti",
+ "namePolicy": "Pojmenujte zásadu.",
+ "next": "Další",
+ "policyName": "Název zásady",
+ "policyState": "Stav zásad",
+ "policySummary": "Souhrn zásad",
+ "policyTemplate": "Šablona zásad",
+ "previous": "Předchozí",
+ "reviewAndCreate": "Zkontrolovat a vytvořit",
+ "riskLevels": "Úrovně rizika",
+ "selectATemplate": "Vyberte šablonu.",
+ "selectTemplate": "Vybrat šablonu",
+ "selectTemplateCategory": "Vyberte kategorii šablony.",
+ "selectTemplateRecommendation": "Na základě vaší odpovědi doporučujeme následující šablony.",
+ "sessionControl": "Řízení relace ",
+ "signInFrequency": "Frekvence přihlašování",
+ "signInRisk": "Riziko přihlášení",
+ "template": "Šablona ",
+ "templateCategory": "Kategorie šablony:",
+ "userRisk": "Riziko uživatele",
+ "usersAndGroups": "Uživatelé a skupiny ",
+ "viewPolicySummary": "Zobrazit souhrn zásad "
+ },
+ "SSM": {
+ "MemberSelector": {
+ "description": "Uživatelé a skupiny"
+ },
+ "Notification": {
+ "Migration": {
+ "error": "Nepovedlo se migrovat nastavení nepřetržitého vyhodnocování přístupu do zásad podmíněného přístupu.",
+ "inProgress": "Migrují se nastavení nepřetržitého vyhodnocování přístupu.",
+ "success": "Nastavení nepřetržitého vyhodnocování přístupu se úspěšně migrovalo do zásad podmíněného přístupu.",
+ "successDescription": "Přejděte prosím k zásadám podmíněného přístupu a zobrazte migrovaná nastavení v nově vytvořených zásadách s názvem „Zásady podmíněného přístupu vytvořené z nastavení CAE“."
+ },
+ "error": "Nepovedlo se aktualizovat nastavení Nepřetržitého vyhodnocování přístupu.",
+ "inProgress": "Aktualizují se nastavení Nepřetržitého vyhodnocování přístupu.",
+ "success": "Nastavení Nepřetržitého vyhodnocování přístupu se úspěšně aktualizovala."
+ },
+ "PreviewOptions": {
+ "disable": "Zakázat verzi Preview",
+ "enable": "Povolit verzi Preview"
+ },
+ "StrictLocationEnforcement": {
+ "infoContent1": "Kvůli neshodě rozdělení sítě nebo protokolů IPv4 a IPv6 můžou Azure AD a poskytovatel prostředků na jednom klientském zařízení zjistit různé IP adresy. Přísné vynucování lokality vynutí zásady podmíněného přístupu pro obě IP adresy zjištěné službou Azure AD a poskytovatelem prostředků.",
+ "infoContent2": "Aby se zajistilo maximální zabezpečení, doporučuje se zahrnout všechny IP adresy, které můžou zjistit služba Azure AD a poskytovatel prostředků v zásadách pojmenovaného umístění, a zapnout režim Přísné vynucování lokality.",
+ "label": "Přísné vynucování lokality",
+ "title": "Další režimy vynucování"
+ },
+ "bladeTitle": "Nepřetržité vyhodnocování přístupu",
+ "description": "Když se odebere přístup uživatele nebo se změní IP adresa klienta, Nepřetržité vyhodnocování přístupu téměř v reálném čase automaticky zablokuje přístup k prostředkům a aplikacím. ",
+ "migrateLabel": "Migrovat",
+ "migrationError": "Migrace selhala kvůli následující chybě: {0}",
+ "migrationInfo": "Nastavení CAE se přesunulo do uživatelského prostředí podmíněný přístup UX. Migrujte prosím pomocí výše uvedeného tlačítka Migrovat a nakonfigurujte jej pomocí zásad podmíněného přístupu. Kliknutím zde získáte další informace.",
+ "noLicenseMessage": "S Azure AD Premium můžete spravovat nastavení inteligentní správy relací.",
+ "optionsPickerTitle": "Povolit nebo zakázat Nepřetržité vyhodnocování přístupu",
+ "upsellInfo": "Nastavení na této stránce už nemůžete změnit a všechna zdejší nastavení by se měla ignorovat. Vaše předchozí nastavení bude respektováno. Nastavení CAE můžete do budoucna nakonfigurovat v části Podmíněný přístup. Další informace získáte kliknutím sem."
+ },
+ "SelectOrganizations": {
+ "Blade": {
+ "Lower": {
+ "gridAria": "Seznam vybraných organizací"
+ },
+ "Upper": {
+ "gridAria": "Seznam dostupných organizací"
+ },
+ "description": "Přidejte organizaci Azure Active Directory tak, že zadáte jeden z jejích názvů domén.",
+ "notFoundResult": "Nenalezeno",
+ "searchBoxPlaceholder": "ID tenanta nebo název domény",
+ "subTitle": "Organizace Azure Active Directory"
+ },
+ "Selector": {
+ "AdditionalDetails": {
+ "aria": "ID organizace: {0}"
+ },
+ "DisplayText": {
+ "multiple": "Počet vybraných organizací Azure Active Directory: {0}",
+ "single": "Počet vybraných organizací Azure Active Directory: 1"
+ },
+ "gridAria": "Seznam vybraných organizací"
+ }
+ },
+ "SessionLifetime": {
+ "PersistentBrowser": {
+ "Error": {
+ "notAllApps": "Zásady trvalých relací prohlížečů fungují správně, jen když je vybraná možnost Všechny cloudové aplikace. Aktualizujte prosím svůj výběr cloudových aplikací."
+ },
+ "Option": {
+ "always": "Vždy trvalá",
+ "help": "Trvalá relace prohlížeče umožňuje uživateli zůstat přihlášený i poté, co zavře a znovu otevře okno prohlížeče.
\n\n- Toto nastavení funguje správně, když je vybraná možnost Všechny cloudové aplikace.
\n- Na nastavení životnosti tokenů nebo frekvence přihlašování to nemá vliv.
\n- Toto nastavení přepíše zásady Zobrazit možnost zachovat přihlášení v Brandingu společnosti.
\n- Možnost Nikdy není trvalá přepíše všechny trvalé deklarace identity jednotného přihlašování předané z federovaných ověřovacích služeb.
\n- Možnost Nikdy není trvalá znemožní jednotné přihlašování na mobilních zařízeních mezi aplikacemi a mezi aplikacemi a mobilním prohlížečem uživatele.
\n",
+ "label": "Trvalá relace prohlížeče",
+ "never": "Nikdy není trvalá"
+ },
+ "Warning": {
+ "allApps": "Trvalá relace prohlížeče funguje správně, jen když je vybraná možnost Všechny cloudové aplikace. Změňte prosím svůj výběr cloudových aplikací. Pro další informace klikněte sem."
+ }
+ },
+ "SignInFrequency": {
+ "Aria": {
+ "units": "Hodiny nebo dny",
+ "value": "Frekvence"
+ },
+ "Option": {
+ "Day": {
+ "plural": "{0} d.",
+ "singular": "1 den"
+ },
+ "Hour": {
+ "plural": "{0} hod.",
+ "singular": "1 hodina"
+ },
+ "daysOption": "Dny",
+ "everytime": "Pokaždé",
+ "help": "Doba, než se uživateli při přístupu k nějakému prostředku znovu zobrazí výzva k přihlášení. Výchozí nastavení je 90denní posuvné okno, tj. uživateli se výzva k opětovnému ověření zobrazí při prvním pokusu o přístup k prostředku poté, co na počítači nebyl uživatel aktivní 90 dní nebo déle.",
+ "hoursOption": "Hodin",
+ "label": "Frekvence přihlašování",
+ "placeholder": "Vybrat jednotky"
+ }
+ },
+ "mainOption": "Upravit životnost relace",
+ "mainOptionHelp": "Nakonfigurujte, jak často se uživatelům bude zobrazovat výzva a jestli se mají zachovávat relace prohlížečů. Aplikace, které nepodporují moderní ověřovací protokoly, možná nebudou tyto zásady dodržovat. V takových případech se prosím obraťte na vývojáře aplikace."
+ },
+ "SigninRisk": {
+ "LearnMore": {
+ "message": "Umožňuje nastavit přístup uživatelů, aby bylo možné reagovat na konkrétní úrovně rizika uživatelů."
+ }
+ },
+ "SingleSelectorActive": {
+ "failed": "Tato data se nedaří načíst.",
+ "reattempt": "Načítají se data. Opakovaný pokus {0} z {1}."
+ },
+ "TimeCondition": {
+ "Errors": {
+ "both": "Neplatný časový rozsah Include nebo Exclude",
+ "daysOfWeek": "{0} Ujistěte se, že jste zadali alespoň jeden den v týdnu.",
+ "endBeforeStart": "{0} Počáteční datum a čas musí předcházet koncovému datu a času.",
+ "exclude": "Neplatný časový rozsah Exclude",
+ "generic": "{0} Je nutné nastavit dny v týdnu i časové pásmo. Pokud nezaškrtnete Celý den, musíte také nastavit počáteční a koncový čas.",
+ "include": "Neplatný časový rozsah Include",
+ "timeMissing": "{0} Ujistěte se, že jste zadali jak počáteční, tak koncový čas.",
+ "timeZone": "{0} Ujistěte se, že jste zadali časové pásmo.",
+ "timesAndZone": "{0} Je nutné nastavit počáteční čas, koncový čas a časové pásmo."
+ }
+ },
+ "UserActions": {
+ "Included": {
+ "none": "Nevybraly se žádné cloudové aplikace ani akce.",
+ "plural": "Počet zahrnutých akcí uživatele: {0}",
+ "singular": "Počet zahrnutých akcí uživatele: 1"
+ },
+ "accessRequirement1": "Úroveň 1",
+ "accessRequirement2": "Úroveň 2",
+ "accessRequirement3": "Úroveň 3",
+ "accessRequirementsLabel": "Přistupuje se k zabezpečeným datům aplikace.",
+ "appsActionsAuthTitle": "Cloudové aplikace, akce nebo kontext ověřování",
+ "appsOrActionsSelectorInfoBallonText": "Aplikace, ke které se přistupuje, nebo akce uživatele",
+ "appsOrActionsTitle": "Cloudové aplikace nebo akce",
+ "label": "Akce uživatele",
+ "mainOptionsLabel": "Vyberte, na co se tyto zásady vztahují.",
+ "registerOrJoinDevices": "Zaregistrovat nebo připojit zařízení",
+ "registerSecurityInfo": "Zaregistrovat informace o zabezpečení",
+ "selectionInfo": "Vyberte akce, na které se tyto zásady budou vztahovat.",
+ "whatIf": "Zahrnuté akce uživatele"
+ },
+ "UserSelectionBlade": {
+ "DirectoryRoles": {
+ "ariaLabel": "Zvolit role adresářů"
+ },
+ "Excluded": {
+ "gridAria": "Seznam vyloučených uživatelů"
+ },
+ "Included": {
+ "gridAria": "Seznam zahrnutých uživatelů"
+ },
+ "Validation": {
+ "customRoleIncluded": "Role adresáře obsahují alespoň jednu vlastní roli.",
+ "customRoleSelected": "Vybrala se alespoň jedna vlastní role.",
+ "failed": "{0} se musí nakonfigurovat.",
+ "roles": "Vyberte alespoň jednu roli.",
+ "usersGroups": "Vyberte alespoň jednoho uživatele nebo skupinu."
+ },
+ "learnMore": "Řízení přístupu na základě toho, na koho se zásady budou vztahovat, jako jsou uživatelé a skupiny, identity úloh, role adresáře nebo externí hosté."
+ },
+ "ValidationResult": {
+ "blockEveryonePolicy": "Konfigurace zásad se nepodporuje. Zkontrolujte vybraná přiřazení a ovládací prvky.",
+ "invalidApplicationCondition": "Jsou vybrané neplatné cloudové aplikace.",
+ "invalidClientTypesCondition": "Jsou vybrané neplatné klientské aplikace.",
+ "invalidConditions": "Přiřazení nejsou vybraná.",
+ "invalidControls": "Jsou vybrané neplatné ovládací prvky.",
+ "invalidDevicePlatformsCondition": "Jsou vybrané neplatné platformy zařízení.",
+ "invalidDevicesCondition": "Neplatná konfigurace zařízení. Pravděpodobně jde o neplatnou konfiguraci{0}.",
+ "invalidGrantControlPolicy": "Neplatný ovládací prvek udělení",
+ "invalidLocationsCondition": "Jsou vybraná neplatná umístění.",
+ "invalidPolicy": "Přiřazení nejsou vybraná.",
+ "invalidSessionControlPolicy": "Neplatný ovládací prvek relace",
+ "invalidSignInRisksCondition": "Jsou vybraná neplatná rizika přihlášení.",
+ "invalidUserRisksCondition": "Je vybrané neplatné riziko uživatele.",
+ "invalidUsersCondition": "Jsou vybraní neplatní uživatelé.",
+ "mamPolicyShouldOnlyTargetAndroidOrIosPlatforms": "Zásady MAM se dají použít jen pro platformy klientů Android a iOS.",
+ "notSupportedCombination": "Konfigurace zásad není podporovaná. Další informace o podporovaných zásadách",
+ "pending": "Ověřují se zásady",
+ "requireComplianceEveryonePolicy": "Konfigurace zásad bude vyžadovat dodržování předpisů u zařízení všech uživatelů. Zkontrolujte vybraná přiřazení.",
+ "success": "Platné zásady"
+ },
+ "VpnCert": {
+ "Grid": {
+ "aria": "Seznam všech certifikátů VPN"
+ }
+ },
+ "WarningsInfo": {
+ "Controls": {
+ "compliantDeviceEnabled": "Nezablokujte si přístup! Ujistěte se, že vaše zařízení dodržuje předpisy.",
+ "domainJoinedDeviceEnabled": "Nezablokujte si přístup! Ujistěte se, že vaše zařízení je připojené službou Hybrid Azure AD Join.",
+ "exchangeDisabled": "Exchange ActiveSync podporuje jenom řízení kompatibilních zařízení a klientem schválených aplikací. Kliknutím získáte další informace.",
+ "exchangeDisabled2": "Exchange ActiveSync podporuje jen ovládací prvky Vyhovující zařízení, Schválená klientská aplikace a Vyhovující klientská aplikace. Kliknutím získáte další informace.",
+ "notAvailableForSP": "Některé ovládací prvky nejsou k dispozici kvůli výběru {0} v přiřazení zásad.",
+ "requireAuthOrMfa": "{0} nejde používat s {1}.",
+ "requireMfa": "Zvažte možnost otestovat novou veřejnou verzi náhledu {0}.",
+ "requirePasswordChangeEnabled": "Možnost Požadovat změnu hesla se dá použít jen v případě, že se zásady přiřadí ke všem cloudovým aplikacím."
+ },
+ "Policies": {
+ "Linux": {
+ "devicePlatformsReportOnlyPolicy": "Zásady v režimu Pouze sestavy, které vyžadují zařízení dodržující předpisy, můžou vyzvat uživatele na systémech macOS, iOS, Android a Linux, aby vybrali certifikát zařízení.",
+ "excludeDevicePlatforms": "Vylučte platformy zařízení macOS, iOS, Android a Linux z těchto zásad.",
+ "proceedAnywayDevicePlatforms": "Pokračujte s vybranou konfigurací. Až se bude kontrolovat, jestli zařízení dodržuje předpisy, uživatelům systémů macOS, iOS, Android a Linux se můžou zobrazit výzvy."
+ },
+ "blockCurrentUserPolicy": "Nezablokujte si přístup! Doporučujeme zásady použít nejdříve jen na malou část uživatelů, abyste mohli ověřit, že se zásady chovají, jak mají. Navíc doporučujeme vyloučit z těchto zásad alespoň jednoho správce. Díky tomu budete mít jistotu, že stále budete mít k zásadám přístup a v případě potřeby je budete moct aktualizovat. Zkontrolujte prosím uživatele a aplikace, na které to bude mít vliv.",
+ "devicePlatformsReportOnlyPolicy": "Zásady v režimu pouze sestav, které vyžadují zařízení dodržující předpisy, můžou vyzvat uživatele na systémech macOS, iOS a Android, aby vybrali certifikát zařízení.",
+ "excludeCurrentUserSelection": "Vyloučit aktuálního uživatele {0} z těchto zásad",
+ "excludeDevicePlatforms": "Vylučte platformy zařízení macOS, iOS a Android z těchto zásad.",
+ "proceedAnywayDevicePlatforms": "Pokračujte s vybranou konfigurací. Až se bude kontrolovat, jestli zařízení dodržuje předpisy, uživatelům systémů macOS, iOS a Android se můžou zobrazit výzvy.",
+ "proceedAnywaySelection": "Rozumím tomu, že tyto zásady budou mít vliv na můj účet. Přesto chci pokračovat."
+ },
+ "ServicePrincipals": {
+ "blockExchange": "Když vyberete Office 365 Exchange Online, bude to mít vliv i na aplikace, jako jsou OneDrive a Teams.",
+ "blockPortal": "Nezablokujte si přístup! Tyto zásady mají vliv na portál Azure Portal. Než budete pokračovat, ujistěte se, že se vy nebo někdo jiný budete moct dostat zpátky na portál.",
+ "blockPortalWithSession": "Nezablokujte si přístup! Tyto zásady mají vliv na portál Azure Portal. Než budete pokračovat, ujistěte se, že se na portál budete moct dostat zpět buď vy, nebo alespoň někdo jiný.
Pokud konfigurujete zásady trvalých relací prohlížeče, které fungují správně jen v případě, že je vybraná možnost Všechny cloudové aplikace, můžete toto upozornění ignorovat.",
+ "blockSharePoint": "Když se vybere SharePoint Online, bude to mít vliv i na aplikace, jako jsou Microsoft Teams, Planner, Delve, MyAnalytics a Newsfeed.",
+ "blockSkype": "Když vyberete Online Skype pro firmy, bude to mít vliv i na Microsoft Teams.",
+ "includeOrExclude": "Můžete nakonfigurovat filtr aplikace pro hodnotu {0} nebo {1}, ale ne obojí.",
+ "selectAppsNAForSP": "Jednotlivé cloudové aplikace nejde vybrat kvůli výběru {0} v přiřazení zásad.",
+ "teamsBlocked": "Když se do zásad zahrnou aplikace, jako jsou SharePoint Online a Exchange Online, bude to mít vliv i na Microsoft Teams."
+ },
+ "Users": {
+ "blockAllUsers": "Nezablokujte si přístup! Tyto zásady budou mít vliv na všechny uživatele. Doporučujeme je nejdříve použít jen na malou část uživatelů, abyste mohli ověřit, že se zásady chovají, jak mají."
+ }
+ },
+ "WhatIf": {
+ "Device": {
+ "AttributesGrid": {
+ "aria": "Seznam atributů na zařízení použitých během přihlašování.",
+ "infoBalloon": "Seznam atributů na zařízení použitých během přihlašování."
+ }
+ }
+ },
+ "advancedTabText": "Upřesnit",
+ "allCloudAppsErrorBox": "Když se vybere oprávnění Požadovat změnu hesla, musí se vybrat i možnost Všechny cloudové aplikace.",
+ "allCloudAppsReauth": "Pokud je vybrané řízení relace s Frekvencí přihlašování pokaždé a oprávnění Riziko přihlašování, musíte vybrat možnost Všechny cloudové aplikace.",
+ "allCloudOrSpecificApps": "Řízení relace „frekvence přihlašování pokaždé“ vyžaduje výběr „všechny cloudové aplikace“ nebo specificky podporovaných aplikací.",
+ "allDayCheckboxLabel": "Celý den",
+ "allDevicePlatforms": "Libovolné zařízení",
+ "allGuestUserInfoContent": "Zahrnuje hosty Azure AD B2B, ale ne hosty SharePoint B2B.",
+ "allGuestUserLabel": "Všichni hosté a externí uživatelé",
+ "allRiskLevelsOption": "Všechny úrovně rizika",
+ "allTrustedLocationLabel": "Všechna důvěryhodná umístění",
+ "allUserGroupSetSelectorLabel": "Vybrali se všichni uživatelé a skupiny",
+ "allUsersReauth": "Řízení relace „frekvence přihlašování pokaždé“ vyžaduje výběr „Všichni uživatelé“.",
+ "allUsersString": "Všichni uživatelé",
+ "and": "{0} A {1} ",
+ "andWithGrouping": "({0}) A {1} ",
+ "androidDisplayName": "Android",
+ "anyCloudAppSelection": "Jakákoli cloudová aplikace",
+ "appContextOptionInfoContent": "Požadovaná ověřovací značka",
+ "appContextOptionLabel": "Požadovaná ověřovací značka (Preview)",
+ "appContextUriPlaceholder": "Příklad: uri:contoso.com:level3",
+ "appEnforceInfoBubble": "Omezení vynucená aplikací můžou vyžadovat další konfiguraci v cloudových aplikacích. Omezení budou platit jenom pro nové relace.",
+ "appNotSetSeletorLabel": "0 vybraných aplikací",
+ "applyConditionClientAppInfoBalloonContent": "Konfigurace klientských aplikací tak, aby se dané zásady používaly pro konkrétní klientské aplikace",
+ "applyConditionDevicePlatformInfoBalloonContent": "Konfigurace platforem zařízení tak, aby se dané zásady používaly pro konkrétní platformy",
+ "applyConditionDeviceStateInfoBalloonContent": "Konfigurace stavu zařízení tak, aby se dané zásady používaly pro konkrétní stavy zařízení",
+ "applyConditionLocationInfoBalloonContent": "Konfigurace lokalit tak, aby se dané zásady používaly pro důvěryhodné nebo nedůvěryhodné lokality",
+ "applyConditionSigninRiskInfoBalloonContent": "Konfigurace rizika přihlašování tak, aby se dané zásady používaly pro vybrané úrovně rizika",
+ "applyConditionUserRiskInfoBalloonContent": "Konfigurace rizika uživatele tak, aby se dané zásady používaly pro vybrané úrovně rizika",
+ "applyConditonLabel": "Konfigurovat",
+ "ariaLabelPolicyDisabled": "Zásada je zakázána.",
+ "ariaLabelPolicyEnabled": "Zásady jsou povolené",
+ "ariaLabelPolicyReportOnly": "Zásady jsou v režimu pouze sestav.",
+ "blockAccess": "Blokovat přístup",
+ "builtInDirectoryRoleLabel": "Integrované role adresáře",
+ "casCustomControlInfo": "Vlastní zásady se musí nakonfigurovat na portálu Cloud App Security. Pro doporučované aplikace tento ovládací prvek funguje okamžitě a je možné pro něj provést automatický onboarding do libovolné aplikace. Pro další informace o obou scénářích klikněte sem.",
+ "casInfoBubble": "Tento ovládací prvek funguje v různých cloudových aplikacích.",
+ "casPreconfiguredControlInfo": "Pro doporučované aplikace tento ovládací prvek funguje okamžitě a je možné pro něj provést automatický onboarding do libovolné aplikace. Pro další informace o obou scénářích klikněte sem.",
+ "cert64DownloadCol": "Stáhnout certifikát base64",
+ "cert64Name": "VpnBase64Cert",
+ "certDownloadCol": "Stáhnout certifikát",
+ "certDurationCol": "Vypršení platnosti",
+ "certDurationStartCol": "Platné od",
+ "certName": "VpnCert",
+ "certainApps": "Pro frekvenci přihlašování typu pokaždé se podporují jenom některé aplikace, pokud nevyberete oprávnění Vyžadovat vícefaktorové ověřování a Vyžadovat změnu hesla.",
+ "chooseApplicationsBladeSubtitle": "",
+ "chooseApplicationsBladeTitle": "Volba aplikací",
+ "chooseApplicationsCartSubitle": "",
+ "chooseApplicationsCartTitle": "Zvolené aplikace",
+ "chooseApplicationsEmpty": "Žádné aplikace",
+ "chooseApplicationsNone": "Žádný",
+ "chooseApplicationsNoneFound": "{0} se nám nepovedlo najít. Zkuste jiný název nebo ID.",
+ "chooseApplicationsPlural": "{0}, počet dalších: {1}",
+ "chooseApplicationsReAuthEverytimeInfo": "Hledáte svou aplikaci? Některé aplikace se nedají použít s řízením relace Vyžadovat opakované ověření – pokaždé.",
+ "chooseApplicationsRemove": "Odebrat",
+ "chooseApplicationsReturnedPlural": "Našel se tento počet aplikací: {0}",
+ "chooseApplicationsReturnedSingular": "Našla se 1 aplikace.",
+ "chooseApplicationsSearchBalloon": "Vyhledejte aplikaci tak, že zadáte její název nebo ID.",
+ "chooseApplicationsSearchHint": "Hledat aplikace...",
+ "chooseApplicationsSearchLabel": "Aplikace",
+ "chooseApplicationsSearching": "Vyhledávání...",
+ "chooseApplicationsSelect": "Vybrat",
+ "chooseApplicationsSelected": "Vybrané",
+ "chooseApplicationsSingular": "{0} a 1 další",
+ "chooseApplicationsTooMany": "Více výsledků, než se dá zobrazit. Pomocí vyhledávacího pole prosím nastavte filtr.",
+ "chooseLocationCorpnetItem": "Podniková síť",
+ "chooseLocationSelectedLocationsLabel": "Vybraná umístění",
+ "chooseLocationTrustedIpsItem": "Důvěryhodné IP adresy MFA",
+ "chooseLocationsBladeSubtitle": "",
+ "chooseLocationsBladeTitle": "Zvolte umístění",
+ "chooseLocationsCartSubitle": "",
+ "chooseLocationsCartTitle": "Zvolená umístění",
+ "chooseLocationsEmpty": "Žádná umístění",
+ "chooseLocationsExcludedSelectorTitle": "Vybrat",
+ "chooseLocationsIncludedSelectorTitle": "Vybrat",
+ "chooseLocationsNone": "Žádný",
+ "chooseLocationsNoneFound": "{0} se nám nepovedlo najít. Zkuste jiný název nebo ID.",
+ "chooseLocationsPlural": "{0}, počet dalších: {1}",
+ "chooseLocationsRemove": "Odebrat",
+ "chooseLocationsReturnedPlural": "Počet nalezených umístění: {0}",
+ "chooseLocationsReturnedSingular": "Počet nalezených umístění: 1",
+ "chooseLocationsSearchBalloon": "Vyhledejte umístění tak, že zadáte jeho název.",
+ "chooseLocationsSearchHint": "Hledat v umístěních...",
+ "chooseLocationsSearchLabel": "Umístění",
+ "chooseLocationsSearching": "Vyhledávání...",
+ "chooseLocationsSelect": "Vybrat",
+ "chooseLocationsSelected": "Vybrané",
+ "chooseLocationsSelectionBladeExcludedSelectorTitle": "Vybrat",
+ "chooseLocationsSelectionBladeIncludedSelectorTitle": "Vybrat",
+ "chooseLocationsSingular": "{0} a 1 další",
+ "chooseLocationsTooMany": "Více výsledků, než se dá zobrazit. Pomocí vyhledávacího pole prosím nastavte filtr.",
+ "claimProviderAddCommandText": "Nový vlastní ovládací prvek",
+ "claimProviderAddNewBladeTitle": "Nový vlastní ovládací prvek",
+ "claimProviderDeleteCommand": "Odstranit",
+ "claimProviderDeleteDescription": "Opravdu chcete odstranit síť {0}? Tato akce je nevratná.",
+ "claimProviderDeleteTitle": "Jste si jistí?",
+ "claimProviderEditInfoText": "Zadejte JSON pro přizpůsobený ovládací prvek předaný poskytovatelem deklarací identit.",
+ "claimProviderNotificationCreateDescription": "Vytváří se vlastní ovládací prvek s názvem {0}.",
+ "claimProviderNotificationCreateFailedDescription": "Nepovedlo se vytvořit vlastní ovládací prvek {0}. Zkuste to prosím znovu později.",
+ "claimProviderNotificationCreateFailedTitle": "Nepovedlo se vytvořit vlastní ovládací prvek",
+ "claimProviderNotificationCreateSuccessDescription": "Vytvořil se vlastní ovládací prvek s názvem {0}.",
+ "claimProviderNotificationCreateSuccessTitle": "Vytvořila se síť {0}",
+ "claimProviderNotificationCreateTitle": "Vytváří se {0}",
+ "claimProviderNotificationDeleteDescription": "Odstraňuje se vlastní ovládací prvek s názvem {0}.",
+ "claimProviderNotificationDeleteFailedDescription": "Nepovedlo se odstranit vlastní ovládací prvek {0}. Zkuste to prosím znovu později.",
+ "claimProviderNotificationDeleteFailedTitle": "Nepovedlo se odstranit vlastní ovládací prvek",
+ "claimProviderNotificationDeleteSuccessDescription": "Odstranil se vlastní ovládací prvek s názvem {0}.",
+ "claimProviderNotificationDeleteSuccessTitle": "Odstranila se síť {0}",
+ "claimProviderNotificationDeleteTitle": "Odstraňuje se {0}.",
+ "claimProviderNotificationUpdateDescription": "Aktualizuje se vlastní ovládací prvek s názvem {0}.",
+ "claimProviderNotificationUpdateFailedDescription": "Nepovedlo se aktualizovat vlastní ovládací prvek {0}. Zkuste to prosím znovu později.",
+ "claimProviderNotificationUpdateFailedTitle": "Nepovedlo se aktualizovat vlastní ovládací prvek",
+ "claimProviderNotificationUpdateSuccessDescription": "Aktualizoval se vlastní ovládací prvek s názvem {0}.",
+ "claimProviderNotificationUpdateSuccessTitle": "Aktualizovala se síť {0}",
+ "claimProviderNotificationUpdateTitle": "Aktualizuje se {0}",
+ "claimProviderValidationAppIdInvalid": "Hodnota AppId není platná. Zkontrolujte ji prosím a zkuste to znovu.",
+ "claimProviderValidationClientIdMissing": "V datech chybí hodnota ClientId. Zkontrolujte ji prosím a zkuste to znovu.",
+ "claimProviderValidationControlClaimsRequestedMissing": "V Control chybí hodnota ClaimsRequested. Zkontrolujte ji prosím a zkuste to znovu.",
+ "claimProviderValidationControlClaimsRequestedTypeMissing": "V položce ClaimsRequested chybí hodnota Type. Zkontrolujte ji prosím a zkuste to znovu.",
+ "claimProviderValidationControlIdAlreadyExists": "Hodnota Id pro Control už existuje. Zkontrolujte ji prosím a zkuste to znovu.",
+ "claimProviderValidationControlIdMissing": "V Control chybí hodnota Id. Zkontrolujte ji prosím a zkuste to znovu.",
+ "claimProviderValidationControlIdReferencedInExistingPolicy": "Hodnotu Id pro Control nejde odebrat, protože se na ni odkazují existující zásady. Nejdříve ji prosím odeberte z těchto zásad.",
+ "claimProviderValidationControlIdTooManyControls": "Vlastnost Control má příliš mnoho ovládacích prvků. Zkontrolujte ji prosím a zkuste to znovu.",
+ "claimProviderValidationControlIdValueReserved": "Hodnota Id pro Control je vyhrazené klíčové slovo, použijte prosím jiné ID.",
+ "claimProviderValidationControlNameAlreadyExists": "Hodnota Name pro Control už existuje. Zkontrolujte ji prosím a zkuste to znovu.",
+ "claimProviderValidationControlNameMissing": "V Control chybí hodnota Name. Zkontrolujte ji prosím a zkuste to znovu.",
+ "claimProviderValidationControlsMissing": "V datech chybí hodnota Controls. Zkontrolujte ji prosím a zkuste to znovu.",
+ "claimProviderValidationDiscoveryUrlMissing": "V datech chybí hodnota DiscoveryUrl. Zkontrolujte ji prosím a zkuste to znovu.",
+ "claimProviderValidationInvalid": "Poskytnutá data nejsou platná. Zkontrolujte je prosím a zkuste to znovu.",
+ "claimProviderValidationInvalidJsonDefinition": "Vlastní ovládací prvek se nepovedlo uložit. Zkontrolujte text JSON a zkuste to znovu.",
+ "claimProviderValidationNameAlreadyExists": "Hodnota Name už existuje. Zkontrolujte ji prosím a zkuste to znovu.",
+ "claimProviderValidationNameMissing": "V datech chybí hodnota Name. Zkontrolujte ji prosím a zkuste to znovu.",
+ "claimProviderValidationUnknown": "Při ověřování poskytnutých dat došlo k neznámé chybě. Zkontrolujte je prosím a zkuste to znovu.",
+ "claimProvidersNone": "Žádné vlastní ovládací prvky",
+ "claimProvidersSearchPlaceholder": "Hledat ovládací prvky",
+ "classicPoilcyFilterTitle": "Zobrazit",
+ "classicPolicyAllPlatforms": "Všechny platformy",
+ "classicPolicyClientAppBrowserAndNative": "Prohlížeč, mobilní aplikace a desktopoví klienti",
+ "classicPolicyCloudAppTitle": "Cloudová aplikace",
+ "classicPolicyControlAllow": "Povolit",
+ "classicPolicyControlBlock": "Blokovat",
+ "classicPolicyControlBlockWhenNotAtWork": "Zablokovat přístup mimo práci",
+ "classicPolicyControlRequireCompliantDevice": "Vyžaduje zařízení, které splňuje požadavky.",
+ "classicPolicyControlRequireDomainJoinedDevice": "Vyžaduje zařízení připojené k doméně.",
+ "classicPolicyControlRequireMfa": "Vyžadovat vícefaktorové ověřování",
+ "classicPolicyControlRequireMfaWhenNotAtWork": "Mimo práci vyžadovat vícefaktorové ověřování",
+ "classicPolicyDeleteCommand": "Odstranit",
+ "classicPolicyDeleteFailTitle": "Nepovedlo se odstranit klasické zásady",
+ "classicPolicyDeleteInProgressTitle": "Odstraňují se klasické zásady",
+ "classicPolicyDeleteSuccessTitle": "Klasické zásady se odstranily",
+ "classicPolicyDetailBladeTitle": "Podrobnosti",
+ "classicPolicyDisableCommand": "Zakázat",
+ "classicPolicyDisableConfirmation": "Opravdu chcete zakázat zásady {0}? Tato akce je nevratná.",
+ "classicPolicyDisableFailDescription": "Nepovedlo se zakázat zásady {0}.",
+ "classicPolicyDisableFailTitle": "Nepovedlo se zakázat klasické zásady",
+ "classicPolicyDisableInProgressDescription": "Zakazují se zásady {0}.",
+ "classicPolicyDisableInProgressTitle": "Zakazují se klasické zásady",
+ "classicPolicyDisableSuccessDescription": "Zásady {0} se úspěšně zakázaly.",
+ "classicPolicyDisableSuccessTitle": "Klasické zásady se zakázaly",
+ "classicPolicyEasSupportedPlatforms": "Podporované platformy protokolu Exchange ActiveSync",
+ "classicPolicyEasUnsupportedPlatforms": "Nepodporované platformy protokolu Exchange ActiveSync",
+ "classicPolicyExcludedPlatformsTitle": "Vyloučené platformy zařízení",
+ "classicPolicyFilterAll": "Všechny zásady",
+ "classicPolicyFilterDisabled": "Zakázané zásady",
+ "classicPolicyFilterEnabled": "Povolené zásady",
+ "classicPolicyIncludeExcludeMembersDescription": "Vyloučením skupin je možné provést migraci zásad rozdělenou do fází.",
+ "classicPolicyIncludeExcludeMembersTitle": "Zahrnout nebo vyloučit skupiny",
+ "classicPolicyIncludedPlatformsTitle": "Zahrnuté platformy zařízení",
+ "classicPolicyManualMigrationMessage": "Tyto zásady se musí migrovat ručně.",
+ "classicPolicyMigrateCommand": "Migrovat",
+ "classicPolicyMigrateConfirmation": "Opravdu chcete migrovat zásady {0}? Tyto zásady se dají migrovat jen jednou.",
+ "classicPolicyMigrateFailDescription": "Nepovedlo se migrovat zásady {0}.",
+ "classicPolicyMigrateFailTitle": "Nepovedlo se migrovat klasické zásady",
+ "classicPolicyMigrateInProgressDescription": "Migrují se zásady {0}.",
+ "classicPolicyMigrateInProgressTitle": "Migrují se klasické zásady",
+ "classicPolicyMigrateRecommendText": "Doporučení: Proveďte migraci na nové zásady portálu Azure Portal.",
+ "classicPolicyMigrateSuccessTitle": "Klasické zásady se úspěšně migrovaly",
+ "classicPolicyMigratedSuccessDescription": "Tyto klasické zásady se teď dají spravovat v části Zásady.",
+ "classicPolicyMigratedSuccessDescriptionMultiple": "Tyto klasické zásady se migrovaly jako následující počet nových zásad: {0}. Nové zásady se dají spravovat v části Zásady.",
+ "classicPolicyNoEditPermissionMsg": "Nemáte oprávnění upravovat tyto zásady. To můžou dělat jen globální správci a správci zabezpečení. Další informace získáte tady.",
+ "classicPolicySaveFailDescription": "Nepovedlo se uložit zásady {0}.",
+ "classicPolicySaveFailTitle": "Nepovedlo se uložit klasické zásady",
+ "classicPolicySaveInProgressDescription": "Ukládají se zásady {0}.",
+ "classicPolicySaveInProgressTitle": "Ukládají se klasické zásady",
+ "classicPolicySaveSuccessDescription": "Zásady {0} se úspěšně uložily.",
+ "classicPolicySaveSuccessTitle": "Klasické zásady se uložily",
+ "clientAppBladeLegacyInfoBanner": "Starší verze ověřování se v tuto chvíli nepodporuje.",
+ "clientAppBladeLegacyUpsellBanner": "Zablokovat nepodporované klientské aplikace (Preview)",
+ "clientAppBladeTitle": "Klientské aplikace",
+ "clientAppDescription": "Vyberte klientské aplikace, na které se budou tyto zásady vztahovat.",
+ "clientAppExchangeActiveSync": "Exchange ActiveSync",
+ "clientAppExchangeDisabledInfo": "Exchange ActiveSync je k dispozici v případě, že Exchange Online je vybraný jako jediná cloudová aplikace. Kliknutím získáte další informace.",
+ "clientAppExchangeWarning": "Exchange ActiveSync v tuto chvíli nepodporuje všechny ostatní podmínky.",
+ "clientAppLearnMore": "Umožňuje nastavit přístup uživatelů na cílení na konkrétní klientské aplikace, které nepoužívají moderní ověřování.",
+ "clientAppLegacyHeader": "Starší verze klientů ověřování",
+ "clientAppMobileDesktop": "Mobilní aplikace a desktopoví klienti",
+ "clientAppModernHeader": "Moderní klienti ověřování",
+ "clientAppOnlySupportedPlatforms": "Použít zásady jenom na podporovaných platformách",
+ "clientAppSelectSpecificClientApps": "Vyberte klientské aplikace.",
+ "clientAppV2BladeTitle": "Klientské aplikace (Preview)",
+ "clientAppWebBrowser": "Prohlížeč",
+ "clientAppsSelectedLabel": "Zahrnuto: {0}",
+ "clientTypeBrowser": "Prohlížeč",
+ "clientTypeEas": "Klienti Exchange ActiveSync",
+ "clientTypeEasInfo": "Jen klienti Exchange ActiveSync, kteří používají starší verzi ověřování",
+ "clientTypeModernAuth": "Klienti moderního ověřování",
+ "clientTypeOtherClients": "Ostatní klienti",
+ "clientTypeOtherClientsInfo": "Mezi to patří starší klienti Office a další poštovní protokoly (POP, IMAP, SMTP apod.). [Další informace][1]\n[1]: https://aka.ms/caclientapps\n",
+ "cloudAppCountDiffBannerText": "Cloudové aplikace {0} nakonfigurované v těchto zásadách se odstranily z adresáře, ale na ostatní aplikace v zásadách to nemá žádný vliv. Až v zásadách příště aktualizujete oddíl aplikací, odstraněné aplikace se z nich automaticky odeberou.",
+ "cloudAppsSelectionBladeAllMicrosoftApps": "Všechny aplikace Microsoftu",
+ "cloudAppsSelectionExcludeAllMicrosoftClients": "Povolit desktopové a mobilní aplikace a aplikace Microsoft Cloudu (Preview)",
+ "cloudappsSelectionBladeAllCloudapps": "Všechny cloudové aplikace",
+ "cloudappsSelectionBladeExcludeDescription": "Vyberte cloudové aplikace, které se mají z této zásady vyloučit.",
+ "cloudappsSelectionBladeExcludedSelectorTitle": "Vybrat vyloučené cloudové aplikace",
+ "cloudappsSelectionBladeIncludeDescription": "Vyberte cloudové aplikace, na které se budou vztahovat tyto zásady.",
+ "cloudappsSelectionBladeIncludedSelectorTitle": "Vybrat",
+ "cloudappsSelectionBladeSelectedCloudapps": "Vybrat aplikace",
+ "cloudappsSelectorInfoBallonText": "Služby, ke kterým uživatel přistupuje, aby mohl pracovat. Třeba Salesforce.",
+ "cloudappsSelectorPluralExcluded": "Vyloučené aplikace: {0}",
+ "cloudappsSelectorPluralIncluded": "Zahrnuté aplikace: {0}",
+ "cloudappsSelectorSingularExcluded": "1 vyloučená aplikace",
+ "cloudappsSelectorSingularIncluded": "1 zahrnutá aplikace",
+ "cloudappsSelectorUserPlural": "Počet aplikací: {0}",
+ "cloudappsSelectorUserSingular": "Počet aplikací: 1",
+ "conditionLabelMulti": "Počet vybraných podmínek: {0}",
+ "conditionLabelOne": "Počet vybraných podmínek: 1",
+ "conditionalAccessBladeTitle": "Podmíněný přístup",
+ "conditionsNotSelectedLabel": "Nenakonfigurováno",
+ "conditionsReqMfaReauthSet": "Některé možnosti nejsou dostupné kvůli aktuálně vybranému oprávnění Vyžadovat vícefaktorové ověřování a řízení relace s frekvencí přihlašování typu pokaždé.",
+ "conditionsReqPwSet": "Některé možnosti nejsou k dispozici, protože je v tuto chvíli vybrané oprávnění Požadovat změnu hesla.",
+ "configureCasText": "Konfigurovat Cloud App Security",
+ "configureCustomControlsText": "Nakonfigurovat vlastní zásady",
+ "controlLabelMulti": "Počet vybraných ovládacích prvků: {0}",
+ "controlLabelOne": "Počet vybraných ovládacích prvků: 1",
+ "controlValidatorText": "Vyberte prosím aspoň jeden ovládací prvek.",
+ "controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
+ "controlsDeviceComplianceAriaLabel": "Learn more about requiring compliant devices.",
+ "controlsDeviceComplianceInfoBubble": "Device must be Intune compliant. If the device is non-compliant, the user will be prompted to bring the device under compliance.",
+ "controlsDomainJoinedAriaLabel": "Learn more about requiring hybrid Azure AD joined devices.",
+ "controlsDomainJoinedInfoBubble": "Zařízení musí být připojené službou Hybrid Azure AD Join.",
+ "controlsMamAriaLabel": "Learn more about requiring approved client applications.",
+ "controlsMamInfoBubble": "Zařízení musí používat tyto aplikace schválené klientem.",
+ "controlsMfaInfoBubble": "Uživatelé musí splnit další požadavky na zabezpečení, třeba telefonní hovor nebo textovou zprávu.",
+ "controlsOrAndInfoBubble": "ControlsOrAndInfoBubble",
+ "controlsRequireCompliantAppAriaLabel": "Learn more about requiring policy protected apps.",
+ "controlsRequireCompliantAppInfoBubble": "Zařízení musí používat aplikace chráněné zásadami.",
+ "controlsRequirePasswordResetAriaLabel": "Learn more about requiring a password change.",
+ "controlsRequirePasswordResetInfoBubble": "Umožňuje požadovat změnu hesla, aby se snížilo riziko uživatele. Tato možnost navíc vyžaduje vícefaktorové ověřování. Jiné ovládací prvky se nedají použít.",
+ "countriesRadiobuttonInfoBalloonContent": "Země nebo oblast, ze které pochází přihlášení, je určená IP adresou uživatele.",
+ "createNewVpnCert": "Nový certifikát",
+ "createdTimeLabel": "Čas vytvoření",
+ "customRoleLabel": "Vlastní role (nepodporuje se)",
+ "dateRangeTypeLabel": "Rozsah dat",
+ "daysOfWeekPlaceholderText": "Filtrovat dny v týdnu",
+ "daysOfWeekTypeLabel": "Dny v týdnu",
+ "deletePolicyNoLicenseText": "Tyto zásady teď můžete odstranit. Jakmile se odstraní, nebudete je moct vytvořit znovu, dokud nebudete mít potřebné licence.",
+ "descriptionContentForControlsAndOr": "Pro více ovládacích prvků",
+ "devicePlatform": "Platforma zařízení",
+ "devicePlatformConditionHelpDescription": "Zavede zásady pro vybrané platformy zařízení.\n[Další informace][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2044750",
+ "devicePlatformInclude": "Zahrnuto: {0}",
+ "devicePlatformIncludeExclude": "Vyloučeno: {0} a {1}",
+ "devicePlatformNoSelectionError": "Výběr platforem zařízení vyžaduje, aby se vybrala alespoň jedna podpoložka.",
+ "devicePlatformsNone": "Žádný",
+ "deviceSelectionBladeExcludeDescription": "Vyberte platformy, které se mají z této zásady vyloučit.",
+ "deviceSelectionBladeIncludeDescription": "Vyberte platformy zařízení, které se mají zahrnout do těchto zásad.",
+ "deviceStateAll": "Všechny stavy zařízení",
+ "deviceStateCompliant": "Zařízení označené jako kompatibilní",
+ "deviceStateCompliantInfoContent": "Zařízení kompatibilní s Intune nebudou součástí vyhodnocování těchto zásad, takže pokud zásady blokují třeba přístup, zablokují ho pro všechna zařízení kromě těch, která jsou kompatibilní s Intune.",
+ "deviceStateConditionConfigureInfoContent": "Nakonfigurovat zásady na základě stavu zařízení",
+ "deviceStateConditionSelectorInfoContent": "Označuje, jestli je zařízení, ze kterého se uživatel přihlašuje, připojené službou Hybrid Azure AD Join nebo označené jako kompatibilní.\n Možnost je teď už zastaralá. Místo toho použijte možnost {1}.",
+ "deviceStateConditionSelectorLabel": "Stav zařízení (zastaralý)",
+ "deviceStateDomainJoined": "Zařízení je připojené službou Hybrid Azure AD Join",
+ "deviceStateDomainJoinedInfoContent": "Zařízení připojená službou Hybrid Azure AD Join nebudou součástí vyhodnocování těchto zásad, takže pokud zásady blokují třeba přístup, zablokují ho pro všechna zařízení kromě těch, která jsou připojená službou Hybrid Azure AD Join.",
+ "deviceStateDomainJoinedInfoLinkText": "Další informace",
+ "deviceStateExcludeDescription": "Vyberte podmínku stavu zařízení, na základě které se zařízení vyloučí ze zásad.",
+ "deviceStateIncludeAndExcludeOneLabel": "{0} a vyloučit {1}",
+ "deviceStateIncludeAndExcludeTwoLabel": "{0} a vyloučit {1}, {2}",
+ "directoryRoleInfoContent": "Přiřadit zásady k integrovaným rolím adresáře",
+ "directoryRolesLabel": "Role adresáře",
+ "discardbutton": "Zahodit",
+ "downloadDefaultFileName": "Rozsahy IP adres",
+ "downloadExampleFileName": "Příklad",
+ "downloadExampleHeader": "Toto je ukázkový soubor s ukázkami typů dat, které se dají přijmout. Řádky, které začínají znakem #, se budou ignorovat.",
+ "endDatePickerLabel": "Končí",
+ "endTimePickerLabel": "Koncový čas",
+ "enterCountryText": "IP adresa a země se vyhodnocují v páru. Vyberte zemi.",
+ "enterIpText": "IP adresa a země se vyhodnocují v páru. Zadejte IP adresu.",
+ "enterUserText": "Nevybral se žádný uživatel. Vyberte nějakého uživatele.",
+ "evaluationResult": "Výsledek hodnocení",
+ "exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
+ "exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Protokol Exchange ActiveSync jen s podporovanými platformami",
+ "excludeAllTrustedLocationSelectorText": "všechna důvěryhodná umístění",
+ "featureRequiresP2": "Tato funkce vyžaduje licenci Azure AD Premium 2.",
+ "friday": "Pátek",
+ "grantControls": "Udělit řízení",
+ "gridNetworkTrusted": "Důvěryhodná",
+ "gridPolicyCreatedDateTime": "Datum vytvoření",
+ "gridPolicyEnabled": "Povoleno",
+ "gridPolicyModifiedDateTime": "Datum změny",
+ "gridPolicyName": "Název zásady",
+ "gridPolicyState": "Stav",
+ "groupSelectionBladeExcludeDescription": "Vyberte skupiny, které se mají z těchto zásad vyloučit.",
+ "groupSelectionBladeExcludedSelectorTitle": "Vybrat vyloučené skupiny",
+ "groupSelectionBladeSelect": "Výběr skupin",
+ "groupSelectorInfoBallonText": "Skupiny v adresáři, pro které platí tyto zásady. Příklad: Pilotní skupina.",
+ "groupsSelectionBladeTitle": "Skupiny",
+ "helpCommonScenariosText": "Zajímají vás obvyklé scénáře?",
+ "helpCondition1": "Když je libovolný uživatel mimo síť společnosti",
+ "helpCondition2": "Když se přihlásí uživatelé ze skupiny Manažeři",
+ "helpConditionsTitle": "Podmínky",
+ "helpControl1": "Musí se přihlašovat pomocí vícefaktorového ověřování.",
+ "helpControl2": "Musí být na zařízení, které dodržuje předpisy Intune nebo na zařízení připojeném do domény.",
+ "helpControlsTitle": "Ovládací prvky",
+ "helpIntroText": "Podmíněný přístup umožňuje vynucovat specifické požadavky na přístup na základě splnění konkrétních podmínek. Podívejme se na pár příkladů.",
+ "helpIntroTitle": "Co je Podmíněný přístup?",
+ "helpLearnMoreText": "Zajímají vás další informace o Podmíněném přístupu?",
+ "helpStartStep1": "Vytvořte svoje první zásady tak, že kliknete na + Nové zásady.",
+ "helpStartStep2": "Zadejte ovládací prvky a podmínky zásad",
+ "helpStartStep3": "Až to budete mít, nezapomeňte na vytvoření a povolení zásady.",
+ "helpStartTitle": "Začínáme",
+ "highRisk": "Vysoká",
+ "includeAndExcludeAppsTextFormat": "Zahrnout: {0}. Vyloučit: {1}",
+ "includeAppsTextFormat": "Zahrnout: {0}",
+ "includeUnknownAreasCheckboxInfoBalloonContent": "Neznámé oblasti jsou IP adresy, které nejdou namapovat na zemi nebo oblast.",
+ "includeUnknownAreasCheckboxLabel": "Včetně neznámých oblastí",
+ "infoCommandLabel": "Informace",
+ "invalidCertDuration": "Neplatná doba platnosti certifikátu",
+ "invalidIpAddress": "Hodnotou musí být platná IP adresa.",
+ "invalidUriErrorMsg": "Zadejte prosím platný identifikátor URI. Příklad: uri:contoso.com:acr ",
+ "iosDisplayName": "iOS",
+ "linuxDisplayName": "Linux",
+ "loadAll": "Načíst vše",
+ "loading": "Načítá se...",
+ "locationConfigureNamedLocationsText": "Konfigurace všech důvěryhodných umístění",
+ "locationConfigureNamedLocationsUri": "{0}/usermanagement/mfasettings.aspx?tenantid={1}&culture={2}",
+ "locationNameTooLongError": "Název umístění je moc dlouhý. Maximum je 256 znaků.",
+ "locationSelectionBladeExcludeDescription": "Vyberte místa, která se mají z této zásady vyloučit.",
+ "locationSelectionBladeIncludeDescription": "Vyberte umístění, která se zahrnou do těchto zásad.",
+ "locationsAllLocationsLabel": "Libovolné umístění",
+ "locationsAllNamedLocationsLabel": "Všechny důvěryhodné IP adresy",
+ "locationsAllPrivateLinksLabel": "Všechna privátní propojení v mém tenantovi",
+ "locationsIncludeExcludeLabel": "{0} a vyloučit všechny důvěryhodné IP adresy",
+ "locationsSelectedPrivateLinksLabel": "Vybraná privátní propojení",
+ "lowRisk": "Nízká",
+ "macOsDisplayName": "macOS",
+ "managePoliciesLicenseText": "Pokud chcete spravovat zásady Podmíněného přístupu, vaše organizace potřebuje Azure AD Premium P1 nebo P2.",
+ "markAsTrustedCheckboxInfoBalloonContent": "Přihlášení z důvěryhodného umístění snižuje riziko přihlášení uživatele. Toto umístění jako důvěryhodné označte jenom tehdy, pokud víte, že zadané rozsahy IP adres jsou zřízené a důvěryhodné ve vaší organizaci.",
+ "markAsTrustedCheckboxLabel": "Označit jako důvěryhodné umístění",
+ "mediumRisk": "Střední",
+ "memberSelectionCommandRemove": "Odebrat",
+ "menuItemClaimProviderControls": "Vlastní ovládací prvky (Preview)",
+ "menuItemClassicPolicies": "Klasické zásady",
+ "menuItemInsightsAndReporting": "Přehledy a generování sestav",
+ "menuItemManage": "Spravovat",
+ "menuItemNamedLocationsPreview": "Pojmenovaná umístění (Preview)",
+ "menuItemNamedNetworks": "Pojmenovaná umístění",
+ "menuItemPolicies": "Zásady",
+ "menuItemTermsOfUse": "Podmínky použití",
+ "modifiedTimeLabel": "Čas změny",
+ "monday": "Pondělí",
+ "nameLabel": "Název",
+ "namedLocationCountryInfoBanner": "Na země/oblasti se mapují jen IPv4 adresy. IPv6 adresy se zahrnují do neznámých zemí/oblastí.",
+ "namedLocationTypeCountry": "Země nebo oblasti",
+ "namedLocationTypeLabel": "Definovat umístění pomocí:",
+ "namedLocationUpsellBanner": "Toto zobrazení je zastaralé. Přejděte do nového a vylepšeného zobrazení Pojmenovaná umístění.",
+ "namedLocationsHelpDescription": "Pojmenovaná umístění se používají v sestavách zabezpečení, aby se snížil počet falešně pozitivních výsledků, a v zásadách Podmíněného přístupu Azure AD.\n[Další informace][1]\n[1]: https://aka.ms/namedlocationupdate",
+ "namedNetworkAddIpRanges": "Přidat nový rozsah IP adres (např.: 40.77.182.32/27)",
+ "namedNetworkCountryNeeded": "Je třeba vybrat aspoň jednu zemi.",
+ "namedNetworkDeleteCommand": "Odstranit",
+ "namedNetworkDeleteDescription": "Opravdu chcete odstranit síť {0}? Tato akce je nevratná.",
+ "namedNetworkDeleteTitle": "Jste si jistí?",
+ "namedNetworkDownloadIpRange": "Stáhnout",
+ "namedNetworkInvalidRange": "Hodnotou musí být platný rozsah IP adres.",
+ "namedNetworkIpRangeNeeded": "Potřebujete aspoň jeden platný rozsah IP adres.",
+ "namedNetworkIpRangesDescriptionContent": "Nakonfigurujte rozsahy IP adres vaší organizace.",
+ "namedNetworkIpRangesTab": "Rozsahy IP adres",
+ "namedNetworkListAdd": "Nové umístění",
+ "namedNetworkListConfigureTrustedIps": "Konfigurovat důvěryhodné IP adresy MFA",
+ "namedNetworkNameDescription": "Příklad: Pobočka Pardubice",
+ "namedNetworkNameInvalid": "Zadaný název není platný.",
+ "namedNetworkNameRequired": "Pro toto umístění musíte zadat název.",
+ "namedNetworkNoIpRanges": "Žádné rozsahy IP adres",
+ "namedNetworkNotificationCreateDescription": "Vytváří se umístění s názvem {0}.",
+ "namedNetworkNotificationCreateFailedDescription": "Umístění {0} se nepovedlo vytvořit. Zkuste to prosím znovu později.",
+ "namedNetworkNotificationCreateFailedTitle": "Nepovedlo se vytvořit umístění",
+ "namedNetworkNotificationCreateSuccessDescription": "Umístění s názvem {0} se vytvořilo.",
+ "namedNetworkNotificationCreateSuccessTitle": "Vytvořila se síť {0}",
+ "namedNetworkNotificationCreateTitle": "Vytváří se {0}",
+ "namedNetworkNotificationDeleteDescription": "Odstraňuje se umístění s názvem {0}.",
+ "namedNetworkNotificationDeleteFailedDescription": "Umístění {0} se nepovedlo odstranit. Zkuste to prosím znovu později.",
+ "namedNetworkNotificationDeleteFailedTitle": "Nepovedlo se odstranit umístění",
+ "namedNetworkNotificationDeleteSuccessDescription": "Umístění s názvem {0} se odstranilo.",
+ "namedNetworkNotificationDeleteSuccessTitle": "Odstranila se síť {0}",
+ "namedNetworkNotificationDeleteTitle": "Odstraňuje se {0}.",
+ "namedNetworkNotificationUpdateDescription": "Aktualizuje se umístění s názvem {0}.",
+ "namedNetworkNotificationUpdateFailedDescription": "Umístění {0} se nepovedlo aktualizovat. Zkuste to prosím znovu později.",
+ "namedNetworkNotificationUpdateFailedTitle": "Nepovedlo se aktualizovat umístění",
+ "namedNetworkNotificationUpdateSuccessDescription": "Umístění s názvem {0} se aktualizovalo.",
+ "namedNetworkNotificationUpdateSuccessTitle": "Aktualizovala se síť {0}",
+ "namedNetworkNotificationUpdateTitle": "Aktualizuje se {0}",
+ "namedNetworkSearchPlaceholder": "Hledat v umístěních",
+ "namedNetworkUploadFailedDescription": "Při parsování zadaného souboru došlo k chybě. Ujistěte se prosím, že odesíláte textový soubor, ve kterém má každý řádek formát CIDR.",
+ "namedNetworkUploadFailedTitle": "Nepodařilo se analyzovat {0}.",
+ "namedNetworkUploadInProgressDescription": "Probíhá pokus o parsování platných hodnot CIDR z {0}.",
+ "namedNetworkUploadInProgressTitle": "Parsování souboru {0}",
+ "namedNetworkUploadInvalidDescription": "Soubor {0} je buď moc velký, nebo nemá platný formát.",
+ "namedNetworkUploadInvalidTitle": "Soubor {0} není platný",
+ "namedNetworkUploadIpRange": "Nahrát",
+ "namedNetworkUploadSuccessDescription": "Analyzoval se tento počet řádků: {0}. Tento počet z nich měl špatný formát: {1}. Tento počet se přeskočil: {2}",
+ "namedNetworkUploadSuccessTitle": "Parsování souboru {0} se dokončilo",
+ "namedNetworksAdd": "Nové pojmenované umístění",
+ "namedNetworksConditionHelpDescription": "Umožňuje řídit přístup uživatelů na základě fyzické polohy.\n[Další informace][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
+ "namedNetworksExcludeLabel": "Vyloučeno: {0} a {1}",
+ "namedNetworksHelpDescription": "Pojmenovaná umístění se používají v sestavách zabezpečení, aby se snížil počet falešně pozitivních výsledků, a v zásadách Podmíněného přístupu Azure AD.\n[Další informace][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
+ "namedNetworksIncludeLabel": "Zahrnuto: {0}",
+ "namedNetworksNone": "Nenašla se žádná pojmenovaná umístění.",
+ "namedNetworksTitle": "Konfigurovat místa",
+ "namednetworkExceedingSizeErrorBladeTitle": "Podrobnosti o chybě",
+ "namednetworkExceedingSizeErrorDetailText": "Podrobnosti zobrazíte kliknutím sem.",
+ "namednetworkExceedingSizeErrorMessage": "Překročili jste maximální povolené úložiště pro pojmenovaná umístění. Zkuste to znovu s kratším seznamem. Další podrobnosti získáte, když kliknete sem.",
+ "needMfaSecondary": "Pokud je vybrané řízení relace s frekvencí přihlašování typu pokaždé a s možností Pouze sekundární metody ověřování, musíte vybrat možnost Vyžadovat vícefaktorové ověřování.",
+ "newCertName": "nový certifikát",
+ "noAttributePermissionsError": "K vytvoření nebo aktualizaci zásad nejsou k dispozici dostatečná oprávnění. Pro přidání nebo úpravu dynamických filtrů se vyžaduje role čtenáře definic atributů.",
+ "noPolicyRowMessage": "Žádné zásady",
+ "noSPSelected": "Žádný vybraný objekt služby",
+ "noUpdatePermissionMessage": "K aktualizaci těchto nastavení nemáte oprávnění. Pokud chcete získat přístup, obraťte se prosím na globálního správce.",
+ "noUserSelected": "Nevybral se žádný uživatel.",
+ "noneRisk": "Žádné riziko",
+ "office365Description": "Mezi tyto aplikace patří Microsoft Flow, Microsoft Forms, Microsoft Teams, Office 365 Exchange Online, Office 365 SharePoint Online, Office 365 Yammer a další.",
+ "office365InfoBox": "Nejméně jedna vybraná aplikace je součástí Office 365. Doporučujeme zásady nastavit přímo pro aplikaci Office 365.",
+ "oneUserSelected": "Vybral se 1 uživatel.",
+ "onlyGlobalAdminsCanSaveThisPolicyConfig": "Tyto zásady můžou uložit jen globální správci.",
+ "or": "{0} NEBO {1} ",
+ "pickerDoneCommand": "Hotovo",
+ "policiesBladeAdPremiumUpsellBannerText": "Se službou Azure AD Premium můžete vytvářet své vlastní zásady s cílením na konkrétní podmínky, třeba Cloudové aplikace, Riziko přihlášení a Platformy zařízení.",
+ "policiesBladeTitle": "Zásady",
+ "policiesBladeTitleWithAppName": "Zásady: {0}",
+ "policiesDisabledBannerText": "Pro aplikace s propojeným atributem registrace jsou vytváření a úpravy zásady zakázané.",
+ "policiesHitMaxLimitStatusBarMessage": "Pro tohoto tenanta jste dosáhli maximálního počtu zásad. Než vytvoříte další zásady, některé prosím odstraňte.",
+ "policyAssignmentsSection": "Přiřazení",
+ "policyBlockAllInfoBox": "Nakonfigurovaná zásada zablokuje všechny uživatele, takže se nepodporuje. Zkontrolujte přiřazení a kontrolní mechanismy. Pokud chcete tuto zásadu uložit, vylučte aktuálního uživatele {0}.",
+ "policyCloudAppsDisplayTextAllApp": "Všechny aplikace",
+ "policyCloudAppsLabel": "Cloudové aplikace",
+ "policyConditionClientAppDescription": "Software, který uživatel používá pro přístup ke cloudové aplikaci. Třeba prohlížeč.",
+ "policyConditionClientAppV2Description": "Software, který uživatel používá pro přístup ke cloudové aplikaci. Třeba prohlížeč.",
+ "policyConditionDevicePlatform": "Platformy zařízení",
+ "policyConditionDevicePlatformDescription": "Platforma, ze které se uživatel přihlašuje. Třeba iOS.",
+ "policyConditionLocation": "Umístění",
+ "policyConditionLocationDescription": "Lokalita, ze které se uživatel přihlašuje (určuje se podle rozsahu IP adres)",
+ "policyConditionSigninRisk": "Riziko přihlášení",
+ "policyConditionSigninRiskDescription": "Pravděpodobnost, že se přihlašuje někdo jiný než daný uživatel. Úroveň rizika může být vysoká, střední nebo nízká. Vyžaduje licenci Azure AD Premium 2.",
+ "policyConditionUserRisk": "Riziko uživatele",
+ "policyConditionUserRiskDescription": "Umožňuje nakonfigurovat úrovně rizika uživatelů potřebné k vynucování zásad.",
+ "policyConditioniClientApp": "Klientské aplikace",
+ "policyConditioniClientAppV2": "Klientské aplikace (Preview)",
+ "policyControlAllowAccessDisplayedName": "Udělit přístup",
+ "policyControlAuthenticationStrengthDisplayedName": "Vyžadovat sílu ověřování (Preview)",
+ "policyControlBladeTitle": "Udělení",
+ "policyControlBlockAccessDisplayedName": "Blokovat přístup",
+ "policyControlCompliantDeviceDisplayedName": "Vyžadovat, aby zařízení bylo označené jako vyhovující",
+ "policyControlContentDescription": "Umožňuje nastavit vynucování přístupu a blokovat nebo udělovat přístup.",
+ "policyControlInfoBallonText": "Zablokujte přístup nebo vyberte další požadavky, které je třeba splnit pro povolení přístupu.",
+ "policyControlMfaChallengeDisplayedName": "Vyžadovat vícefaktorové ověřování",
+ "policyControlRequireCompliantAppDisplayedName": "Vyžadovat zásady ochrany aplikací",
+ "policyControlRequireDomainJoinedDisplayedName": "Vyžadovat zařízení připojené službou Hybrid Azure AD Join",
+ "policyControlRequireMamDisplayedName": "Vyžaduje se klientem schválená aplikace.",
+ "policyControlRequiredPasswordChangeDisplayedName": "Požadovat změnu hesla",
+ "policyControlSelectAuthStrength": "Vyžadovat sílu ověřování",
+ "policyControlsNoControlsSelected": "0 vybraných ovládacích prvků",
+ "policyControlsSection": "Ovládací prvky přístupu",
+ "policyCreatBladeTitle": "Nový",
+ "policyCreateButton": "Vytvořit",
+ "policyCreateFailedMessage": "Chyba: {0}",
+ "policyCreateFailedTitle": "Nepovedlo se vytvořit zásady {0}",
+ "policyCreateInProgressTitle": "Vytváří se {0}",
+ "policyCreateSuccessMessage": "Zásady {0} se úspěšně vytvořily. Pokud máte možnost Povolit zásadu nastavenou na Zapnuto, zásady se za několik minut povolí.",
+ "policyCreateSuccessTitle": "Úspěšně se vytvořily zásady {0}",
+ "policyDeleteConfirmation": "Opravdu chcete odstranit síť {0}? Tato akce je nevratná.",
+ "policyDeleteFailTitle": "{0} se nepovedlo odstranit.",
+ "policyDeleteInProgressTitle": "Odstraňuje se {0}.",
+ "policyDeleteSuccessTitle": "Branding {0} se úspěšně odstranil.",
+ "policyEnforceLabel": "Povolit zásadu",
+ "policyErrorCannotSetSigninRisk": "Nemáte oprávnění ukládat zásady s rizikovým stavem přihlášení.",
+ "policyErrorNoPermission": "Nemáte oprávnění ukládat zásady. Obraťte se na svého globálního správce.",
+ "policyErrorUnknown": "Stala se nějaká chyba, zkuste to prosím později.",
+ "policyFallbackWarningMessage": "V MS Graphu nebyla vytvořena nebo aktualizována položka {0}, a proto se použila náhradní funkce AD Graph. Prověřte prosím uvedený scénář, protože při volání koncového bodu pro MS Graph s největší pravděpodobností došlo k chybě způsobené nekompatibilní podmínkou.",
+ "policyFallbackWarningTitle": "Vytváření nebo aktualizace {0} bylo částečně úspěšné",
+ "policyNameCannotBeEmpty": "Název zásad nemůže být prázdný.",
+ "policyNameDevice": "Zásady zařízení",
+ "policyNameFormat": "[{0}] {1}",
+ "policyNameMam": "Zásady správy mobilních aplikací",
+ "policyNameMfaLocation": "Zásady MFA a polohy",
+ "policyNamePlaceholderText": "Příklad: Zásady aplikace pro dodržování předpisů zařízením",
+ "policyNameTooLongError": "Název zásad je moc dlouhý. Maximum je 256 znaků.",
+ "policyOff": "Vypnuté",
+ "policyOn": "Zapnuté",
+ "policyReportOnly": "Pouze sestavy",
+ "policyReviewSection": "Zkontrolovat",
+ "policySaveButton": "Uložit",
+ "policyStatusIconDescription": "Zásady jsou povolené",
+ "policyStatusIconEnabled": "Ikona povoleného stavu",
+ "policyTemplateName1": "Pro přístup k aplikaci {0} z prohlížeče použít omezení vynucená aplikací",
+ "policyTemplateName2": "Povolit přístup k aplikaci {0} jenom ze spravovaných zařízení",
+ "policyTemplateName3": "Zásady migrované z nastavení nepřetržitého vyhodnocování přístupu",
+ "policyTriggerRiskSpecific": "Zadejte konkrétní úroveň rizika",
+ "policyTriggersInfoBalloonText": "Podmínky, které definují, kdy se zásady použijí. Třeba lokalita.",
+ "policyTriggersNoConditionsSelected": "0 vybraných podmínek",
+ "policyTriggersSelectorLabel": "Podmínky",
+ "policyUpdateFailedMessage": "Chyba: {0}",
+ "policyUpdateFailedTitle": "Aplikaci {0} se nepodařilo aktualizovat.",
+ "policyUpdateInProgressTitle": "Aktualizuje se {0}.",
+ "policyUpdateSuccessMessage": "Zásada {0} se úspěšně aktualizovala. Povolí se za několik minut, pokud máte možnost Povolit zásadu nastavenou na Zapnuto.",
+ "policyUpdateSuccessTitle": "Aplikace {0} byla úspěšně aktualizována.",
+ "primaryCol": "Primární",
+ "privateLinkLabel": "Azure AD Private Link",
+ "reportOnlyInfoBox": "Režim pouze sestav: Zásady se vyhodnocují a protokolují při přihlašování, ale na uživatele nemají vliv.",
+ "requireAllControlsText": "Vyžadovat všechny vybrané ovládací prvky",
+ "requireCompliantDevice": "Vyžaduje zařízení, které splňuje požadavky.",
+ "requireDomainJoined": "Vyžadovat zařízení připojené k doméně",
+ "requireGrantReauth": "Řízení relace „frekvence přihlašování pokaždé“ vyžaduje řízení udělování „vyžadovat vícefaktorové ověřování“ nebo „vyžadovat změnu hesla“, když je vybráno „Všechny cloudové aplikace“.",
+ "requireMFA": "Vyžadovat vícefaktorové ověřování ",
+ "requireMfaReauth": "Řízení relace „frekvence přihlašování pokaždé“ vyžaduje řízení udělování „vyžadovat vícefaktorové ověřování“ pro „riziko přihlášení“.",
+ "requireOneControlText": "Vyžadovat jeden z vybraných ovládacích prvků",
+ "requirePasswordChangeReauth": "Řízení relace „frekvence přihlašování pokaždé“ vyžaduje řízení udělování „vyžadovat změnu hesla“ pro „riziko uživatele“.",
+ "requireRiskReauth": "Řízení relace „frekvence přihlašování pokaždé“ vyžaduje řízení relace „riziko uživatele“ nebo „riziko přihlášení“, když je vybráno „všechny cloudové aplikace“.",
+ "resetFilters": "Resetovat filtry",
+ "sPRequired": "Vyžaduje se objekt služby",
+ "sPSelectorInfoBalloon": "Uživatel nebo objekt služby, který chcete otestovat",
+ "saturday": "Sobota",
+ "searchTextTooLongError": "Hledaný text je příliš dlouhý. Maximum je 256 znaků.",
+ "securityDefaultsPolicyName": "Výchozí nastavení zabezpečení",
+ "securityDefaultsTextMessage": "Aby bylo možné povolit zásady podmíněného přístupu, musí se zakázat výchozí nastavení zabezpečení.",
+ "securityDefaultsWarningMessage": "Vypadá to, že se chystáte spravovat konfigurace zabezpečení organizace. Výborně! Abyste mohli povolit zásady podmíněného přístupu, musí se zakázat výchozí nastavení zabezpečení.",
+ "selectDevicePlatforms": "Vybrat platformy zařízení",
+ "selectNamedNetworksSubtitle": "",
+ "selectNamedNetworksTitle": "Vybrat umístění",
+ "selectedSP": "Vybraný objekt služby",
+ "servicePrincipalDataGridAria": "Seznam dostupných objektů služby",
+ "servicePrincipalDropDownLabel": "Na co se vztahují tyto zásady?",
+ "servicePrincipalInfoBox": "Některé podmínky nejsou k dispozici kvůli výběru {0} v přiřazení zásad.",
+ "servicePrincipalRadioAll": "Všechny vlastněné objekty služby",
+ "servicePrincipalRadioSelect": "Vybrat objekty služby",
+ "servicePrincipalSelectionsAria": "Mřížka vybraných objektů služby",
+ "servicePrincipalSelectorAria": "Seznam vybraných objektů služby",
+ "servicePrincipalSelectorMultiple": "Počet vybraných objektů služby: {0}",
+ "servicePrincipalSelectorSingle": "1 vybraný objekt služby",
+ "servicePrincipalSpecificInc": "Včetně konkrétních objektů služby",
+ "servicePrincipals": "Objekty služby",
+ "sessionControlBladeTitle": "Relace",
+ "sessionControlDescriptionContent": "Umožňuje nastavit přístup podle ovládacích prvků relací, aby bylo možné omezit prostředí v konkrétních cloudových aplikacích.",
+ "sessionControlDisableInfo": "Tento ovládací prvek funguje jen v podporovaných aplikacích. Jedinými cloudovými aplikacemi, které podporují omezení vynucená aplikací, jsou v tuto chvíli Office 365, Exchange Online a SharePoint Online. Další informace získáte kliknutím sem.",
+ "sessionControlInfoBallonText": "Ovládací prvky relací umožňují používat v cloudové aplikaci omezené možnosti.",
+ "sessionControls": "Ovládací prvky relací",
+ "sessionControlsAppEnforcedLabel": "Používat omezení vynucená aplikací",
+ "sessionControlsCasLabel": "Používat Řízení podmíněného přístupu k aplikacím",
+ "sessionControlsSecureSignInLabel": "Vyžadovat vazbu tokenu",
+ "sharepointAppName": "SharePoint",
+ "signinRiskDescription": "Vyberte úroveň rizika přihlášení, na kterou se budou tyto zásady vztahovat.",
+ "signinRiskInclude": "Zahrnuto: {0}",
+ "signinRiskReauth": "Pokud je vybrané oprávnění typu Vyžadovat vícefaktorové ověřování a řízení relace s frekvencí přihlašování typu pokaždé, musíte vybrat podmínku Riziko přihlašování.",
+ "signinRiskTriggerDescriptionContent": "Vyberte úroveň rizika přihlášení.",
+ "singleTenantServicePrincipalInfoBallonText": "Zásady platí jenom pro instanční objekty jednoho tenanta vlastněné vaší organizací. Další informace získáte kliknutím sem. ",
+ "specificSigninRiskLevelsOption": "Vyberte konkrétní úrovně rizika přihlášení.",
+ "specificUsersExcluded": "konkrétní vyloučení uživatelé",
+ "specificUsersIncluded": "Konkrétní zahrnutí uživatelé",
+ "specificUsersIncludedAndExcluded": "Konkrétní zahrnutí nebo vyloučení uživatelé",
+ "startDatePickerLabel": "Spuštění",
+ "startFreeTrial": "Zahájit bezplatnou zkušební verzi",
+ "startTimePickerLabel": "Počáteční čas",
+ "sunday": "Neděle",
+ "testButton": "What If",
+ "thumbprintCol": "Miniatura",
+ "thursday": "Čtvrtek",
+ "timeConditionAllTimesLabel": "Kdykoli",
+ "timeConditionIntroText": "Nakonfigurujte čas, po který bude tato zásada platit.",
+ "timeConditionSelectorInfoBallonContent": "Kdy se uživatel přihlašuje. Například středa 9:00–17:00 SEČ.",
+ "timeConditionSelectorLabel": "Čas (preview)",
+ "timeConditionSpecificLabel": "Konkrétní časy",
+ "timeSelectorAllTimesText": "Kdykoli",
+ "timeSelectorSpecificTimesText": "Nakonfigurované konkrétní časy",
+ "timeZoneDropdownInfoBalloonContent": "Vyberte časové pásmo, které definuje časový rozsah. Tato zásada platí pro uživatele ve všech časových pásmech. Například středa 9:00–17:00 pro jednoho uživatele by byla středa 10:00–18:00 pro uživatele v jiném časovém pásmu.",
+ "timeZoneDropdownLabel": "Časové pásmo",
+ "timeZoneDropdownPlaceholderText": "Vyberte časové pásmo.",
+ "tooManyPoliciesDescription": "Momentálně se zobrazuje jenom prvních 50 zásad. Další se zobrazíte kliknutím sem.",
+ "tooManyPoliciesTitle": "Našlo se více než 50 zásad",
+ "trustedLocationStatusIconDescription": "Umístění je důvěryhodné.",
+ "trustedLocationStatusIconEnabled": "Ikona stavu důvěryhodnosti",
+ "tuesday": "Úterý",
+ "uploadInBadState": "Zadaný soubor se nepovedlo nahrát.",
+ "upsellAppsDescription": "U citlivých aplikací se bude vyžadovat vícefaktorové ověřování po celou dobu nebo jen při připojování z prostředí mimo firemní síť.",
+ "upsellAppsTitle": "Zabezpečené aplikace",
+ "upsellBannerText": "Abyste mohli použít tuto funkci, získejte bezplatnou zkušební verzi Premium.",
+ "upsellDataDescription": "Pro přístup k prostředkům společnosti se bude vyžadovat, aby zařízení bylo označené jako vyhovující nebo připojené službou Hybrid Azure AD Join.",
+ "upsellDataTitle": "Zabezpečená data",
+ "upsellDescription": "Podmíněný přístup poskytuje možnosti řízení a ochranu, které potřebujete k udržování vašich firemních dat v zabezpečeném stavu, a zároveň dává vašim pracovníkům možnosti pro efektivní práci z libovolného zařízení. Můžete například omezit přístup z prostředí mimo firemní síť nebo povolit jen přístup ze zařízení, která splňují vaše zásady dodržování předpisů.",
+ "upsellRiskDescription": "Při rizikových událostech zjištěných systémem strojového učení Microsoftu se bude vyžadovat vícefaktorové ověřování.",
+ "upsellRiskTitle": "Ochrana před rizikem",
+ "upsellTitle": "Podmíněný přístup",
+ "upsellWhyTitle": "Proč používat Podmíněný přístup?",
+ "userAppNoneOption": "Žádný",
+ "userNamePlaceholderText": "Zadat uživatelské jméno",
+ "userNotSetSeletorLabel": "0 vybraných uživatelů a skupin",
+ "userOnlySelectionBladeExcludeDescription": "Vyberte uživatele, kteří se mají z této zásady vyloučit.",
+ "userOrGroupSelectionCountDiffBannerText": "{0} nakonfigurované v těchto zásadách bylo odstraněno z adresáře, ale na ostatní uživatele a skupiny v zásadách to nemá žádný vliv. Až zásady aktualizujete příště, odstranění uživatelé nebo skupiny se automaticky odeberou.",
+ "userOrSPNotSetSelectorLabel": "Počet vybraných identit uživatelů nebo úloh: 0",
+ "userOrSPSelectionBladeTitle": "Identity uživatelů nebo úloh",
+ "userOrSPSelectorInfoBallonText": "Identity v adresáři, na které se zásady vztahují, včetně uživatelů, skupin a objektů služeb",
+ "userRequired": "Je vyžadován uživatel.",
+ "userRiskErrorBox": "Když se vybere oprávnění Požadovat změnu hesla, musí se vybrat podmínka Riziko uživatele.",
+ "userRiskReauth": "Pokud je vybrané oprávnění typu Vyžadovat změnu hesla a řízení relace s frekvencí přihlašování typu pokaždé, musíte vybrat podmínku Riziko uživatele, ne podmínku Riziko přihlašování.",
+ "userSPRequired": "Vyžaduje se uživatel nebo objekt služby.",
+ "userSPSelectorTitle": "Identita uživatele nebo úlohy",
+ "userSelectionBladeAllUsersAndGroups": "Všichni uživatelé a skupiny",
+ "userSelectionBladeExcludeDescription": "Vyberte uživatele, kteří se mají z této zásady vyloučit.",
+ "userSelectionBladeExcludeTabTitle": "Vyloučit",
+ "userSelectionBladeExcludedSelectorTitle": "Vybrat vyloučené uživatele",
+ "userSelectionBladeIncludeDescription": "Vyberte uživatele, na které se tato zásada bude vztahovat.",
+ "userSelectionBladeIncludeTabTitle": "Zahrnout",
+ "userSelectionBladeIncludedSelectorTitle": "Vybrat",
+ "userSelectionBladeSelectUsers": "Vybrat uživatele",
+ "userSelectionBladeSelectedUsers": "Vyberte uživatele a skupiny",
+ "userSelectionBladeTitle": "Uživatelé a skupiny",
+ "userSelectorBladeTitle": "Uživatelé",
+ "userSelectorExcluded": "Vyloučeno: {0}",
+ "userSelectorGroupPlural": "Počet skupin: {0}",
+ "userSelectorGroupSingular": "Počet skupin: 1",
+ "userSelectorIncluded": "Zahrnuto: {0}",
+ "userSelectorInfoBallonText": "Uživatelé a skupiny v adresáři, pro které platí tyto zásady. Třeba pilotní skupina.",
+ "userSelectorSelected": "Počet vybraných: {0}",
+ "userSelectorTitle": "Uživatel",
+ "userSelectorUserAndGroup": "{0}, {1}",
+ "userSelectorUserPlural": "Uživatelé aplikace {0}",
+ "userSelectorUserSingular": "Počet uživatelů: 1",
+ "userSelectorWithExclusion": "{0} a {1}",
+ "usersGroupsLabel": "Uživatelé a skupiny",
+ "viewApprovedAppsText": "Zobrazit seznam klientem schválených aplikací",
+ "viewCompliantAppsText": "Zobrazit seznam klientských aplikací chráněných zásadami",
+ "vpnBladeTitle": "Připojení VPN",
+ "vpnCertCreateFailedMessage": "Chyba: {0}",
+ "vpnCertCreateFailedTitle": "Nepovedlo se vytvořit {0}",
+ "vpnCertCreateInProgressTitle": "Vytváří se {0}.",
+ "vpnCertCreateSuccessMessage": "Certifikát {0} se úspěšně vytvořil.",
+ "vpnCertCreateSuccessTitle": "Zásady {0} se úspěšně vytvořily.",
+ "vpnCertNoRowsMessage": "Nenašly se žádné certifikáty VPN.",
+ "vpnCertUpdateFailedMessage": "Chyba: {0}",
+ "vpnCertUpdateFailedTitle": "Aplikaci {0} se nepodařilo aktualizovat.",
+ "vpnCertUpdateInProgressTitle": "Aktualizuje se {0}.",
+ "vpnCertUpdateSuccessMessage": "Certifikát {0} se úspěšně aktualizoval.",
+ "vpnCertUpdateSuccessTitle": "Aplikace {0} byla úspěšně aktualizována.",
+ "vpnFeatureInfo": "Další informace o připojení VPN a Podmíněném přístupu získáte, když kliknete sem.",
+ "vpnFeatureWarning": "Jakmile se na portálu Azure Portal vytvoří certifikát VPN, Azure AD začne s jeho pomocí okamžitě vystavovat klientovi VPN krátkodobé certifikáty. Je naprosto nezbytné okamžitě nasadit certifikát VPN na server VPN, aby při ověřování přihlašovacích údajů klienta VPN nedošlo k žádným problémům.",
+ "vpnMenuText": "Připojení VPN",
+ "vpncertDropdownDefaultOption": "Doba trvání",
+ "vpncertDropdownInfoBalloonContent": "Vyberte dobu platnosti certifikátu, který chcete vytvořit.",
+ "vpncertDropdownLabel": "Vyberte dobu platnosti",
+ "vpncertDropdownOneyearOption": "1 rok",
+ "vpncertDropdownThreeyearOption": "3 roky",
+ "vpncertDropdownTwoyearOption": "2 roky",
+ "wednesday": "Středa",
+ "whatIfAppEnforcedControl": "Používat omezení vynucená aplikací",
+ "whatIfBladeDescription": "Otestujte dopad Podmíněného přístupu na uživatele, když se přihlásí za určitých podmínek.",
+ "whatIfBladeTitle": "What If",
+ "whatIfClassicPoliciesWarning": "Tento nástroj nevyhodnocuje klasické zásady.",
+ "whatIfClientAppInfo": "Klientská aplikace, ze které se uživatel přihlašuje. Příklad: Prohlížeč",
+ "whatIfCountry": "Země/oblast",
+ "whatIfCountryInfo": "Země, ze které se uživatel přihlašuje",
+ "whatIfDevicePlatformInfo": "Platforma zařízení, ze které se uživatel přihlašuje",
+ "whatIfDeviceStateInfo": "Stav zařízení, ze kterého se uživatel přihlašuje",
+ "whatIfEnterIpAddress": "Zadat IP adresu (např.: 40.77.182.32)",
+ "whatIfErrorInvalidIpAddress": "Zadaná adresa IP je neplatná.",
+ "whatIfEvaResultApplication": "Cloudové aplikace",
+ "whatIfEvaResultClientApps": "Klientská aplikace",
+ "whatIfEvaResultDevicePlatform": "Platforma zařízení",
+ "whatIfEvaResultEmptyPolicy": "Prázdné zásady",
+ "whatIfEvaResultInvalidCondition": "Neplatná podmínka",
+ "whatIfEvaResultInvalidPolicy": "Neplatné zásady",
+ "whatIfEvaResultLocation": "Umístění",
+ "whatIfEvaResultNotEnoughInformation": "Nedostatek informací",
+ "whatIfEvaResultPolicyNotEnabled": "Zásady se nepovolily.",
+ "whatIfEvaResultSignInRisk": "Riziko přihlášení",
+ "whatIfEvaResultUsers": "Uživatelé a skupiny",
+ "whatIfIpAddress": "IP adresa",
+ "whatIfIpAddressInfo": "IP adresa, ze které se uživatel přihlašuje",
+ "whatIfIpCountryInfoBoxText": "Pokud používáte IP adresu nebo zemi, budou se vyžadovat obě pole, která by si měla vzájemně odpovídat.",
+ "whatIfPolicyAppliesTab": "Zásady, které se použijí",
+ "whatIfPolicyDoesNotApplyTab": "Zásady, které se nepoužijí",
+ "whatIfReasons": "Důvody, proč se tyto zásady nepoužijí",
+ "whatIfSelectClientApp": "Vybrat klientskou aplikaci...",
+ "whatIfSelectCountry": "Vybrat zemi...",
+ "whatIfSelectDevicePlatform": "Vybrat platformu zařízení...",
+ "whatIfSelectPrivateLink": "Vyberte Private Link...",
+ "whatIfSelectServicePrincipalRisk": "Vyberte riziko pro objekt služby…",
+ "whatIfSelectSignInRisk": "Vyberte riziko přihlášení...",
+ "whatIfSelectType": "Vybrat typ identity",
+ "whatIfSelectUserRisk": "Vyberte riziko uživatele...",
+ "whatIfServicePrincipalRiskInfo": "Úroveň rizika přidružená k objektu služby",
+ "whatIfSignInRisk": "Riziko přihlášení",
+ "whatIfSignInRiskInfo": "Úroveň rizika přidružená k přihlášení",
+ "whatIfUnknownAreas": "Neznámé oblasti",
+ "whatIfUserPickerLabel": "Vybraný uživatel",
+ "whatIfUserPickerNoRowsLabel": "Nevybral se žádný uživatel ani objekt služby",
+ "whatIfUserRiskInfo": "Úroveň rizika přidružená k uživateli",
+ "whatIfUserSelectorInfo": "Uživatel v adresáři, kterého chcete otestovat",
+ "windows365InfoBox": "Výběr Windows 365 bude mít vliv na připojení k počítačům Cloud PC a hostitelům relací Azure Virtual Desktopu. Další informace získáte, když kliknete sem.",
+ "windowsDisplayName": "Windows",
+ "windowsPhoneDisplayName": "Windows Phone",
+ "workloadIdentities": "Identity úloh (Preview)",
+ "workloadIdentity": "Identita úlohy"
+ },
+ "AppResources": {
+ "AppSettingsUx": {
+ "assignmentFilterColumnHeader": "Filtr",
+ "assignmentFilterTypeColumnHeader": "Režim filtru",
+ "assignmentToast": "Oznámení koncovému uživateli",
+ "assignmentTypeTableHeader": "TYP PŘIŘAZENÍ",
+ "deadlineTimeColumnLabel": "Konečný termín instalace",
+ "deliveryOptimizationPriorityHeader": "Priorita optimalizace doručení",
+ "groupTableHeader": "Skupina",
+ "installContextLabel": "Kontext instalace",
+ "isRemovable": "Nainstalovat jako vyměnitelné",
+ "licenseTypeLabel": "Typ licence",
+ "modeTableHeader": "Režim skupiny",
+ "policySet": "Sada zásad",
+ "restartGracePeriodHeader": "Období odkladu restartování",
+ "startTimeColumnLabel": "Dostupnost",
+ "tracks": "Stopy",
+ "uninstallOnRemoval": "Při odebrání zařízení odinstalovat",
+ "updateMode": "Priorita aktualizace",
+ "vPN": "Síť VPN"
+ },
+ "AppType": {
+ "aADWebApp": "Webová aplikace AAD",
+ "androidEnterpriseSystemApp": "Aplikace systému Android Enterprise",
+ "androidForWorkApp": "Aplikace spravovaného obchodu Google Play",
+ "androidLobApp": "Obchodní aplikace Android",
+ "androidStoreApp": "Aplikace z obchodu pro Android",
+ "builtInAndroid": "Integrovaná aplikace pro Android",
+ "builtInApp": "Integrovaná aplikace",
+ "builtInIos": "Integrovaná aplikace pro iOS",
+ "iosLobApp": "Obchodní aplikace iOS",
+ "iosStoreApp": "Aplikace z obchodu pro iOS",
+ "iosVppApp": "Aplikace iOS koupená přes Volume Purchase Program",
+ "lineOfBusinessApp": "Obchodní aplikace",
+ "macOSDmgApp": "Aplikace pro macOS (.DMG)",
+ "macOSEdgeApp": "Microsoft Edge (macOS)",
+ "macOSLobApp": "Obchodní aplikace pro macOS",
+ "macOSMdatpApp": "Microsoft Defender ATP (macOS)",
+ "macOSOfficeSuiteApp": "Sada Office pro macOS",
+ "macOsVppApp": "Aplikace macOS koupená přes Volume Purchase Program",
+ "managedAndroidLobApp": "Spravovaná obchodní aplikace Android",
+ "managedAndroidStoreApp": "Spravovaná aplikace z obchodu pro Android",
+ "managedGooglePlayApp": "Aplikace spravovaného obchodu Google Play",
+ "managedGooglePlayPrivateApp": "Privátní aplikace spravovaného obchodu Google Play",
+ "managedGooglePlayWebApp": "Webový odkaz spravovaného obchodu Google Play",
+ "managedIosLobApp": "Spravovaná obchodní aplikace iOS",
+ "managedIosStoreApp": "Spravovaná aplikace z obchodu pro iOS",
+ "microsoftStoreForBusinessApp": "Aplikace pro Microsoft Store pro firmy",
+ "microsoftStoreForBusinessReleaseManagedApp": "Microsoft Store pro firmy",
+ "officeAddIn": "Doplněk pro Office",
+ "officeSuiteApp": "Microsoft 365 Apps (Windows 10 a novější)",
+ "sharePointApp": "Aplikace SharePoint",
+ "teamsApp": "Aplikace Teams",
+ "webApp": "Webový odkaz",
+ "windowsAppXLobApp": "Obchodní aplikace Windows AppX",
+ "windowsClassicApp": "Aplikace pro Windows (Win32)",
+ "windowsEdgeApp": "Microsoft Edge (Windows 10 a novější)",
+ "windowsMobileMsiLobApp": "Obchodní aplikace Windows MSI",
+ "windowsPhone81AppXBundleLobApp": "Obchodní aplikace Windows Phone 8.1 AppX",
+ "windowsPhone81AppXLobApp": "Obchodní aplikace Windows Phone 8.1 AppX",
+ "windowsPhone81StoreApp": "Aplikace pro Windows Phone 8.1 Store",
+ "windowsPhoneXapLobApp": "Obchodní aplikace Windows Phone XAP",
+ "windowsStoreApp": "Aplikace pro Microsoft Store",
+ "windowsUniversalAppXLobApp": "Obchodní aplikace Windows Universal AppX",
+ "windowsUniversalLobApp": "Univerzální obchodní aplikace pro Windows"
+ },
+ "AppTypePlatform": {
+ "android": "Android",
+ "ios": "iOS",
+ "macOs": "macOS",
+ "web": "Web",
+ "windows": "Windows"
+ },
+ "AssignmentAction": {
+ "exclude": "Vyloučené",
+ "include": "Zahrnuté",
+ "includeAllDevicesVirtualGroup": "Zahrnuté",
+ "includeAllUsersVirtualGroup": "Zahrnuté"
+ },
+ "AssignmentToast": {
+ "hideAll": "Skrýt všechny informační zprávy",
+ "showAll": "Zobrazit všechny informační zprávy",
+ "showReboot": "Zobrazit informační zprávy o restartování počítače"
+ },
+ "DeliveryOptimizationPriority": {
+ "backgroundNormal": "Pozadí",
+ "displayText": "Stahování obsahu v {0}",
+ "foreground": "Popředí",
+ "header": "Priorita optimalizace doručení"
+ },
+ "DeviceRestartBehaviorOptions": {
+ "allow": "Instalace aplikace může vynutit restartování zařízení",
+ "basedOnReturnCode": "Určete chování na základě návratových kódů",
+ "force": "Intune vynutí povinné restartování zařízení",
+ "suppress": "Žádná konkrétní akce"
+ },
+ "FilterType": {
+ "exclude": "Vyloučit",
+ "include": "Zahrnout",
+ "none": "Žádné"
+ },
+ "InstallIntent": {
+ "available": "K dispozici zaregistrovaným zařízením",
+ "availableWithoutEnrollment": "K dispozici s registrací i bez ní",
+ "notApplicable": "Nelze použít",
+ "required": "Povinné",
+ "uninstall": "Odinstalovat"
+ },
+ "SettingType": {
+ "assignmentType": "Typ přiřazení",
+ "deviceLicensing": "Typ licence",
+ "installContext": "Při odebrání zařízení odinstalovat",
+ "toastSettings": "Oznámení koncovému uživateli",
+ "vpnConfiguration": "VPN"
+ },
+ "UpdateMode": {
+ "default": "Výchozí",
+ "postponed": "Odloženo",
+ "priority": "Vysoká priorita"
+ }
+ },
+ "WindowsEnrollment": {
+ "coManagementAuthorityDesc": "Konfigurovat nastavení spolusprávy pro integraci Configuration Manageru",
+ "coManagementAuthorityTitle": "Nastavení spolusprávy ",
+ "deploymentProfiles": "Profily nasazení Windows AutoPilot",
+ "description": "Informace o sedmi různých způsobech, jak můžou uživatelé nebo správci registrovat osobní počítač s Windows 10/11 v Intune.",
+ "descriptionLabel": "Metody registrace systému Windows",
+ "enrollmentStatusPage": "Stránka stavu registrace"
+ },
+ "Win32Program": {
+ "DeviceRestartBehaviorOptions": {
+ "allow": "Instalace aplikace může vynutit restartování zařízení",
+ "basedOnReturnCode": "Určete chování na základě návratových kódů",
+ "force": "Intune vynutí povinné restartování zařízení",
+ "suppress": "Žádná konkrétní akce"
+ },
+ "RunAsAccountOptions": {
+ "system": "Systém",
+ "user": "Uživatel"
+ },
+ "bladeTitle": "Program",
+ "deviceRestartBehavior": "Chování zařízení při restartu",
+ "deviceRestartBehaviorTooltip": "Vyberte chování restartování zařízení po úspěšné instalaci aplikace. Pokud chcete zařízení restartovat podle nastavení konfigurace návratových kódů, vyberte Určit chování na základě návratových kódů. Pokud chcete restartování zařízení během instalace aplikací založených na Instalační službě MSI potlačit, vyberte Žádná konkrétní akce. Možnost Instalace aplikace může vynutit restartování zařízení zvolte, pokud chcete, aby se instalace aplikace dokončila bez potlačování restartování. Když se vybere možnost Intune vynutí povinné restartování zařízení, zařízení se po úspěšné instalaci aplikace restartuje vždy.",
+ "header": "Zadejte příkazy, pomocí kterých se tato aplikace nainstaluje a odinstaluje:",
+ "installCommand": "Příkaz pro instalaci",
+ "installCommandMaxLengthErrorMessage": "Příkaz Instalovat nesmí překročit maximální povolenou délku 1024 znaků.",
+ "installCommandTooltip": "Celý instalační příkazový řádek, pomocí kterého se tato aplikace instaluje",
+ "runAs32Bit": "Na 64bitových klientech spouštět příkazy k instalaci a odinstalaci v 32bitových procesech",
+ "runAs32BitTooltip": "Pokud chcete na 64bitových klientech instalovat a odinstalovávat aplikaci v 32bitovém procesu, vyberte Ano. Pokud na těchto klientech chcete aplikaci instalovat a odinstalovávat v 64bitovém procesu, vyberte Ne (výchozí). 32bitoví klienti budou vždy používat 32bitový proces.",
+ "runAsAccount": "Chování při instalaci",
+ "runAsAccountTooltip": "Pokud chcete v případě, že se to podporuje, tuto aplikaci nainstalovat pro všechny uživatele, vyberte Systém. Pokud ji chcete nainstalovat pro uživatele, který je na zařízení přihlášený, vyberte Uživatel. U aplikací Instalační služby MSI s dvojím využitím změny znemožní úspěšné dokončení aktualizací a odinstalací, dokud se neobnoví hodnota použitá na zařízení při původní instalaci.",
+ "selectorLabel": "Program",
+ "uninstallCommand": "Příkaz pro odinstalaci",
+ "uninstallCommandTooltip": "Celý odinstalační příkazový řádek, pomocí kterého se tato aplikace odinstaluje"
+ },
+ "CategoryDescription": {
+ "androidGeneralApplicationRestrictions": "Pomocí těchto nastavení si udržíte přehled o uživatelích, kteří si instalují aplikace, které nebyly schválené pro použití ve vaší firmě. Vyberte typ seznamu aplikací s omezeným přístupem:
\r\n Zakázané aplikace – seznam aplikací, při jejichž instalaci ze strany uživatelů chcete dostat zprávu
\r\n Schválené aplikace – seznam aplikací, které jsou schválené pro použití ve vaší firmě. Když si uživatelé nainstalují aplikaci, která není v tomto seznamu, dostanete zprávu.
\r\n ",
+ "androidZebraMxZebraMx": "Nakonfigurujte zařízení Zebra tak, že nahrajete profil MX ve formátu XML.",
+ "iosDeviceFeaturesAirprint": "Pomocí těchto nastavení nakonfigurujete zařízení s iOS tak, aby se automaticky připojila ke kompatibilním tiskárnám AirPrint ve vaší síti. Budete potřebovat IP adresu a cestu k prostředku těchto tiskáren.",
+ "iosDeviceFeaturesExtensibleSingleSignOn": "Nakonfigurujte rozšíření aplikace, které povoluje jednotné přihlašování (SSO) pro zařízení s iOS 13.0 nebo novějším.",
+ "iosDeviceFeaturesHomeScreenLayout": "Nakonfigurujte rozložení dokovací a domovské obrazovky na zařízeních s iOS. Některá zařízení můžou mít omezený počet zobrazených položek.",
+ "iosDeviceFeaturesIOSWallpaper": "Zobrazí obrázek, který se bude zobrazovat na domovské nebo zamykací obrazovce zařízení s iOS.\r\n Pokud chcete, aby se na každém místě zobrazil jedinečný obrázek, vytvořte jeden profil s obrázkem zamykací obrazovky a jeden s obrázkem domovské obrazovky.\r\n Pak oba profily přiřaďte uživatelům.\r\n
\r\n \r\n - Maximální velikost souboru: 750 kB
\r\n - Typ souboru: PNG, JPG nebo JPEG
\r\n
\r\n ",
+ "iosDeviceFeaturesNotifications": "Zadejte nastavení oznámení pro aplikace. Podporuje iOS 9.3 a novější.",
+ "iosDeviceFeaturesSharedDevice": "Zadejte nepovinný text, který se zobrazí na zamknuté obrazovce. Podporuje se v iOSu 9.3 a novějších. Další informace",
+ "iosGeneralApplicationRestrictions": "Pomocí těchto nastavení si udržíte přehled o uživatelích, kteří si instalují aplikace, které nebyly schválené pro použití ve vaší firmě. Vyberte typ seznamu aplikací s omezeným přístupem:
\r\n Zakázané aplikace – seznam aplikací, při jejichž instalaci ze strany uživatelů chcete dostat zprávu
\r\n Schválené aplikace – seznam aplikací, které jsou schválené pro použití ve vaší firmě. Když si uživatelé nainstalují aplikaci, která není v tomto seznamu, dostanete zprávu.
\r\n ",
+ "iosGeneralApplicationVisibility": "Pomocí seznamu zobrazených aplikací určete aplikace pro iOS, které může uživatel zobrazit nebo spustit. Pomocí seznamu skrytých aplikací určete aplikace pro iOS, které uživatel nemůže zobrazit ani spustit.",
+ "iosGeneralAutonomousSingleAppMode": "Aplikace, které přidáte do tohoto seznamu a přiřadíte k zařízení, můžou zařízení uzamknout tak, aby na něm po spuštění běžela jenom tato aplikace. Zařízení se dá zamknout i v případě, že na něm poběží určitá akce (třeba testování). Jakmile se akce dokončí nebo pokud odeberete toto omezení, zařízení se vrátí do normálního stavu.",
+ "iosGeneralKiosk": "Celoobrazovkový režim zamyká v zařízení různá nastavení nebo určuje jednu aplikaci, která na zařízení poběží. To může být užitečné v prostředích, jako je třeba obchod, kde chcete, aby na zařízení běžela jenom jedna ukázková aplikace.",
+ "macDeviceFeaturesAirprint": "Pomocí těchto nastavení můžete nakonfigurovat zařízení s macOSem tak, aby se automaticky připojovala k tiskárnám kompatibilním s AirPrintem ve vaší síti. Vaše tiskárny budou potřebovat IP adresu a cestu k prostředku.",
+ "macDeviceFeaturesAssociatedDomains": "Nakonfigurujte přidružené domény a můžete sdílet data a přihlašovací údaje mezi aplikacemi a weby organizace. Tento profil se dá použít u zařízení s operačním systémem macOS 10.15 nebo novějším.",
+ "macDeviceFeaturesExtensibleSingleSignOn": "Nakonfigurujte rozšíření aplikace, které povoluje jednotné přihlašování (SSO) pro zařízení s macOS 10.15 nebo novějším.",
+ "macDeviceFeaturesLoginItems": "Zvolte, které aplikace, soubory nebo složky se otevřou, když se uživatel přihlásí ke svým zařízením. Pokud nechcete, aby uživatel měnil, jak se vybrané aplikace budou otevírat, můžete aplikaci skrýt z konfigurace uživatele.",
+ "macDeviceFeaturesLoginWindow": "Nakonfigurujte zobrazování přihlašovací obrazovky macOS a funkcí, které jsou uživatelům k dispozici před a po přihlášení.",
+ "macExtensionsKernelExtensions": "Pomocí těchto nastavení můžete nakonfigurovat zásady rozšíření jádra na zařízeních s macOSem ve verzi 10.13.2 a novějších.",
+ "macGeneralDomains": "E-maily, které uživatel posílá nebo přijímá a které neodpovídají doménám zadaným tady, se označí jako nedůvěryhodné.",
+ "windows10EndpointProtectionApplicationGuard": "Když budete používat Microsoft Edge, Ochrana Application Guard v programu Microsoft Defender ochrání vaše prostředí před weby, které vaše organizace nedefinovala jako důvěryhodné. Když uživatelé navštíví weby, které nejsou uvedené v ohraničení vaší izolované sítě, otevřou se tyto weby ve virtuální relaci procházení v Hyper-V. Důvěryhodné weby se definují prostřednictvím ohraničení sítě, které se dá konfigurovat v Konfiguraci zařízení. Poznámka: Tato funkce je k dispozici jen pro zařízení s 64bitovým systémem Windows 10 nebo novějším.",
+ "windows10EndpointProtectionCredentialGuard": "Když se ochrana Credential Guard povolí, povolí se i tato povinná nastavení:\r\n
\r\n \r\n - Povolit zabezpečení na základě virtualizace: Povolí při příštím restartování zabezpečení na základě virtualizace (VBS). Zabezpečení na základě virtualizace nabízí podporu služeb zabezpečení pomocí hypervisoru Windows.
\r\n
\r\n - Zabezpečené spouštění s přímým přístupem do paměti (DMA): Zapne VBS se zabezpečeným spouštěním a přímým přístupem do paměti (DMA).
\r\n
\r\n ",
+ "windows10EndpointProtectionDeviceGuard": "Zvolte další aplikace, které je potřeba auditovat pomocí Řízení aplikací v programu Microsoft Defender nebo které tento nástroj může považovat za důvěryhodné, aby bylo možné povolit jejich spuštění. Součásti systému Windows a všechny aplikace z obchodu Windows Store se za důvěryhodné považují automaticky.
\r\n Aplikace se nebudou blokovat, pokud se spustí v režimu Pouze audit. V tomto režimu se protokolují všechny události v protokolech místních klientů.\r\n ",
+ "windows10GeneralPrivacyPerApp": "Přidejte aplikace, které by měly mít jiné chování ochrany osobních údajů než to, které jste definovali ve výchozích zásadách.",
+ "windows10NetworkBoundaryNetworkBoundary": "Ohraničení sítě je seznam podnikových prostředků, třeba domén hostovaných v cloudu a rozsahů IP adres pro počítače umístěné v podnikové síti. Pokud chcete chránit data uložená v těchto umístěních pomocí zásad, definujte ohraničení sítě.",
+ "windowsHealthMonitoring": "Nakonfigurujte zásady monitorování stavu Windows.",
+ "windowsPhoneGeneralApplicationRestrictions": "Windows Phone může uživatelům znemožnit instalaci nebo spuštění aplikací uvedených v seznamu zakázaných nebo aplikací, které nejsou uvedené v seznamu schválených. Všechny spravované aplikace musí být přidané do seznamu schválených."
+ },
"Inputs": {
"accountDomain": "Doména účtu",
"accountDomainHint": "např. contosodomain",
@@ -9962,6 +9858,7 @@
"displayNameLabel": "Název",
"displayVersionHint": "Zadat verzi aplikace",
"displayVersionLabel": "Verze aplikace",
+ "displayVersionLengthCheck": "Verze zobrazení by měla být dlouhá maximálně 130 znaků.",
"eBookCategoryNameLabel": "Výchozí název",
"emailAccount": "Název e-mailového účtu",
"emailAccountHint": "třeba podnikový e-mail",
@@ -10066,385 +9963,51 @@
"xmlFormatInvalid": "Formát zásad XML je neplatný.",
"xmlTooLarge": "Velikost vstupu musí být menší než 1 MB."
},
- "Tooltips": {
- "PolicySettings": {
- "TouchId1": {
- "android": "Na Androidu můžete povolit možnost používat identifikaci na základě otisku prstu místo PIN kódu. Když uživatelé budou chtít získat přístup k této aplikaci přes svoje pracovní účty, zobrazí se jim výzva, aby poskytli svoje otisky prstů.",
- "iOS": "Na zařízeních s iOS/iPadOS můžete namísto PIN kódu povolit identifikaci pomocí otisku prstu. Při přístupu uživatelů k této aplikaci pomocí pracovního účtu se zobrazí výzva k načtení otisku prstu.",
- "mac": "Na zařízeních s Macem můžete namísto PIN kódu povolit identifikaci pomocí otisku prstu. Při přístupu uživatelů k této aplikaci pomocí pracovního účtu se zobrazí výzva k načtení otisku prstu."
- },
- "appSharingFromLevel1": "Pokud chcete určit, ze kterých aplikací může tato aplikace přijímat data, vyberte jednu z následujících možností:",
- "appSharingFromLevel2": "{0}: Povolí přijímat v dokumentech a účtech organizace jen data z jiných aplikací spravovaných zásadami.",
- "appSharingFromLevel3": "{0}: Povolí přijímat v dokumentech a účtech organizace data z jakékoli aplikace.",
- "appSharingFromLevel4": "{0}: Nepovolí přijímat v dokumentech a účtech organizace data z jakékoli aplikace.",
- "appSharingFromLevel5": "{0}: Povolit přenos dat z jakékoli aplikace a považovat všechna příchozí data bez identity uživatele za data organizace",
- "appSharingToLevel1": "Pokud chcete určit, kterým aplikacím může tato aplikace posílat data, vyberte jednu z následujících možností:",
- "appSharingToLevel2": "{0}: Povolí posílat data organizace jen do jiných aplikací spravovaných zásadami.",
- "appSharingToLevel3": "{0}: Povolí posílat data organizace do jakékoli aplikace.",
- "appSharingToLevel4": "{0}: Nepovolí posílat data organizace do žádné aplikace.",
- "appSharingToLevel5": "{0}: Povolit přenos jen do jiných aplikací spravovaných zásadami a přenos souborů do ostatních aplikací spravovaných pomocí MDM na registrovaných zařízeních",
- "appSharingToLevel6": "{0}: Povolit přenos jen do jiných aplikací spravovaných zásadami a filtrovat dialogy operačního systému pro otevření v určité aplikaci nebo pro sdílení tak, aby zobrazovaly jen aplikace spravované zásadami",
- "conditionalEncryption1": "Vyberte {0}, pokud chcete zakázat šifrování aplikací pro interní úložiště aplikací, když se na zaregistrovaném zařízení zjistí šifrování zařízení.",
- "conditionalEncryption2": "Poznámka: Intune může detekovat pouze registraci zařízení pomocí Intune MDM. Externí úložiště aplikací se bude i nadále šifrovat, aby se zajistilo, že k datům nebudou mít přístup nespravované aplikace.",
- "contactSyncMac": "Když se tato možnost zakáže, aplikace nebudou moct ukládat kontakty do nativního adresáře.",
- "contactsSync": "Pokud chcete zabránit aplikacím spravovaným zásadami ukládat data do nativních aplikací na zařízeních (jako jsou Kontakty, Kalendář a widgety) nebo pokud chcete zabránit používání doplňků v aplikacích spravovaných zásadami, zvolte Blokovat. Pokud zvolíte Povolit, může aplikace spravovaná zásadami ukládat data do nativních aplikací nebo používat doplňky, pokud jsou tyto funkce v aplikaci spravované zásadami podporovány a povoleny.
Aplikace můžou poskytovat další možnosti konfigurace pomocí zásad pro konfiguraci aplikací. Další informace najdete v dokumentaci k aplikaci.",
- "encryptionAndroid1": "U aplikací přidružených k zásadě správy mobilních aplikací Intune poskytuje šifrování společnost Microsoft. Data se šifrují synchronně během V/V operací se soubory podle nastavení v zásadě správy mobilních aplikací. Spravované aplikace na Androidu používají šifrování AES-128 v režimu CBC s využitím kryptografických knihoven platformy. Metoda šifrování nedodržuje standard FIPS 140-2. Šifrování SHA-256 se podporuje jako explicitní příkaz prostřednictvím parametru SigAlg a je funkční jenom na zařízeních 4.2 a novějších. Obsah v úložišti zařízení se šifruje vždy.",
- "encryptionAndroid2": "Pokud ve vaší zásadě aplikace vyžadujete šifrování, musí koncový uživatel nastavit a používat PIN kód pro přístup k zařízení. Pokud není PIN kód pro přístup k zařízení nastavený, aplikace se nespustí a koncovému uživateli se místo toho zobrazí zpráva s informacemi o tom, že jeho společnost vyžaduje, aby pro přístup k dané aplikaci nejprve povolil PIN kód zařízení.",
- "encryptionMac1": "U aplikací přidružených k zásadě správy mobilních aplikací Intune poskytuje šifrování společnost Microsoft. Data se šifrují synchronně během V/V operací se soubory podle nastavení v zásadě správy mobilních aplikací. Spravované aplikace na Macu používají šifrování AES-128 v režimu CBC s využitím kryptografických knihoven platformy. Metoda šifrování nedodržuje standard FIPS 140-2. Šifrování SHA-256 se podporuje jako explicitní příkaz prostřednictvím parametru SigAlg a je funkční jenom na zařízeních 4.2 a novějších. Obsah v úložišti zařízení se šifruje vždy.",
- "faceId1": "Tam, kde je to možné, můžete povolit, aby se místo PIN kódu používala identifikace tváře. Až uživatelé budou přistupovat k této aplikaci a svým pracovním účtům, zobrazí se jim výzva, aby poskytli identifikaci tváře.",
- "faceId2": "Pokud chcete pro přístup k aplikaci povolit identifikaci tváře namísto PIN kódu, vyberte Ano.",
- "managementLevelsAndroid1": "Pomocí této možnosti můžete zadat, jestli tyto zásady platí pro zařízení správce zařízení s Androidem, zařízení s Android Enterprise nebo pro nespravovaná zařízení.",
- "managementLevelsAndroid2": "{0}: Nespravovaná zařízení jsou zařízení, na kterých se nezjistila správa Intune MDM. Do toho patří i dodavatelé MDM třetích stran.",
- "managementLevelsAndroid3": "{0}: Zařízení spravovaná v Intune používající rozhraní API pro správu zařízení s Androidem.",
- "managementLevelsAndroid4": "{0}: Zařízení spravovaná v Intune používající pracovní profily Android Enterprise nebo úplnou správu zařízení Android Enterprise.",
- "managementLevelsIos1": "Pomocí této možnosti můžete zadat, jestli tyto zásady platí pro spravovaná zařízení MDM, nebo pro nespravovaná zařízení.",
- "managementLevelsIos2": "{0}: Nespravovaná zařízení jsou zařízení, na kterých se nezjistila správa Intune MDM. Do toho patří i dodavatelé MDM třetích stran.",
- "managementLevelsIos3": "{0}: Spravovaná zařízení se spravují pomocí Intune MDM.",
- "minAppVersion": "Definujte číslo minimální požadované verze aplikace, kterou by uživatel měl používat, aby získal k aplikaci zabezpečený přístup.",
- "minAppVersionWarning": "Definujte číslo minimální doporučené verze aplikace, kterou by uživatel měl používat pro zabezpečený přístup k aplikaci.",
- "minOsVersion": "Definujte číslo minimální požadované verze operačního systému, kterou by uživatel měl používat, aby získal k aplikaci zabezpečený přístup.",
- "minOsVersionWarning": "Definujte číslo minimální doporučené verze operačního systému, kterou by uživatel měl používat, aby získal k aplikaci zabezpečený přístup.",
- "minPatchVersion": "Definujte nejstarší požadovanou úroveň opravy zabezpečení Androidu, kterou uživatel může mít, aby mohl získat zabezpečený přístup k aplikaci.",
- "minPatchVersionWarning": "Definujte nejstarší doporučenou úroveň opravy zabezpečení Androidu, kterou uživatel může mít, aby měl zabezpečený přístup k aplikaci.",
- "minSdkVersion": "Definujte minimální požadovanou verzi sady Intune Application Protection Policy SDK, kterou by uživatel měl používat, aby získal k aplikaci zabezpečený přístup.",
- "requireAppPinDefault": "Pokud chcete zakázat PIN kód aplikace, když se na zaregistrovaném zařízení zjistí zámek, vyberte Ano.
",
- "targetAllApps1": "Pomocí této možnosti můžete své zásady zacílit na aplikace a zařízení v jakémkoli stavu správy.",
- "targetAllApps2": "Pokud má uživatel zásady, které cílí na konkrétní stav správy, toto nastavení se při řešení konfliktů zásad nahradí.",
- "touchId2": "Pokud chcete, aby se pro přístup k aplikaci místo PIN kódu vyžadovala identifikace pomocí otisku prstu, zvolte {0}."
- },
- "Tap": {
- "pinResetAfterNumberOfDays": "Zadejte počet dní, který musí uplynout, než bude potřeba, aby uživatel PIN kód resetoval.",
- "previousPinBlockCount": "Toto nastavení určuje počet předchozích kódů PIN, které Intune zachová. Všechny nové PIN kódy se musí lišit od těch, které Intune zachovává."
+ "WindowsFeatureUpdate": {
+ "EndOFSupportStatus": {
+ "notSupported": "Nepodporováno",
+ "supportEnding": "Konec podpory",
+ "supported": "Podporováno"
+ }
},
- "WipPolicySettings": {
- "25": "",
- "allowWindowsSearch": "Tato možnost umožní službě Windows Search nadále hledat v šifrovaných datech.",
- "authoritativeIpRanges": "Toto nastavení povolte, pokud chcete přepsat automatické zjišťování rozsahů IP adres ve Windows.",
- "authoritativeProxyServers": "Toto nastavení povolte, pokud chcete přepsat automatické zjišťování rozsahů proxy serverů ve Windows.",
- "checkInput": "Zkontrolovat platnost vstupu",
- "dataRecoveryCert": "Certifikát pro obnovení je speciální certifikát systému souborů EFS (Encrypting File System), který můžete použít k obnovení šifrovaných souborů v případě, že se ztratí nebo poškodí váš šifrovací klíč. Potřebujete k tomu vytvořit certifikát pro obnovení a zadat ho tady. Další informace najdete tady.",
- "enterpriseCloudResources": "Zadejte cloudové prostředky, které se budou považovat za firemní a budou se chránit pomocí zásad Windows Information Protection. Pokud chcete zadat více prostředků, oddělte jednotlivé záznamy znakem |.
Pokud máte ve společnosti nakonfigurované proxy, můžete zadat proxy server, přes který se bude směrovat provoz k vámi zadaným cloudovým prostředkům.
URL[,Proxy]|URL[,Proxy]
Bez proxy: contoso.sharepoint.com|contoso.visualstudio.com
S proxy: contoso.sharepoint.com,proxy.contoso.com|contoso.visualstudio.com,proxy.contoso.com
",
- "enterpriseIPv4Ranges": "Zadejte rozsahy IPv4, které tvoří vaši firemní síť. Tyto rozsahy spolu s názvy podnikových síťových domén, které zadáte, definují ohraničení firemní sítě.
Toto nastavení vyžaduje, aby byla povolená služba Windows Information Protection.
Pokud chcete zadat více záznamů, oddělejte jednotlivé záznamy čárkou.
Příklad: 3.4.0.1-3.4.255.255,192.168.1.1-192.168.255.255
",
- "enterpriseIPv6Ranges": "Zadejte rozsahy IPv6, které tvoří vaši firemní síť. Tyto rozsahy spolu s názvy podnikových síťových domén, které zadáte, definují ohraničení firemní sítě.
Pokud chcete zadat více záznamů, oddělte jednotlivé záznamy čárkou.
Příklad: 2001:4898:dc05::-2001:4898:dc05:ffff:ffff:ffff:ffff:ffff,2a01:110::-2a01:110:7fff:ffff:ffff:ffff:ffff:ffff
",
- "enterpriseInternalProxyServers": "Pokud máte ve společnosti nakonfigurované proxy, můžete zadat proxy server, přes který se bude směrovat provoz ke cloudovým prostředkům zadaným v nastaveních podnikových cloudových prostředků.
Pokud potřebujete zadat více hodnot, oddělte jednotlivé záznamy středníkem.
Příklad: contoso.internalproxy1.com;contoso.internalproxy2.com
",
- "enterpriseNetworkDomainNames": "Zadejte názvy DNS, které utváří vaši firemní síť. Spolu se zadanými rozsahy IP adres definují ohraničení firemní sítě. Pokud potřebujete zadat více hodnot, oddělte jednotlivé záznamy čárkou.
Toto nastavení vyžaduje, aby byla povolená služba Windows Information Protection.
Příklad: corp.contoso.com,region.contoso.com
",
- "enterpriseProtectedDomainNames": "Zadejte názvy DNS, které tvoří vaši firemní síť. Pomocí nich a rozsahů IP adres, které zadáte, se definují hranice vaší firemní sítě. Pokud potřebujete zadat více hodnot, oddělte jednotlivé položky znakem |.
Toto nastavení se vyžaduje, aby se mohla povolit funkce Windows Information Protection.
Příklad: corp.contoso.com|region.contoso.com
",
- "enterpriseProxyServers": "Pokud máte v podnikové síti externí proxy servery, zadejte je sem. Když zadáváte adresu proxy serveru, měli byste zadat také port, přes který bude probíhat přenos a ochrana prostřednictvím Windows Information Protection.
Poznámka: Tento seznam nesmí zahrnovat servery uvedené v seznamu podnikových interních proxy serverů. Pokud potřebujete zadat více hodnot, oddělte jednotlivé záznamy středníkem.
Příklad: proxy.contoso.com:80;proxy2.contoso.com:80
",
- "maxInactivityTime1": "Určuje maximální dobu (v minutách), po kterou může zařízení zůstat neaktivní, než se zamkne PIN kódem nebo heslem. Uživatelé si můžou vybrat jakoukoli hodnotu vypršení časového limit menší než maximální doba zadaná v aplikaci Nastavení. Poznámka: Lumia 950 a 950XL mají maximální hodnotu časového limitu 5 minut bez ohledu na hodnotu, kterou určují tyto zásady.",
- "maxInactivityTime2": "0 (výchozí) – Není definovaný žádný časový limit. Výchozí hodnota 0 se interpretuje tak, že není definovaný žádný časový limit.",
- "maxPasswordAttempts1": "Tyto zásady se chovají jinak na mobilním a jinak na desktopovém zařízení.",
- "maxPasswordAttempts2": "Když uživatel dosáhne hodnoty nastavené v těchto zásadách na mobilním zařízení, zařízení se vymaže.",
- "maxPasswordAttempts3": "Když uživatel dosáhne hodnoty nastavené v těchto zásadách na stolním počítači, počítač se nevymaže. Místo toho se počítač převede do režimu obnovení BitLockeru, který sice znepřístupní data, ale je možné je obnovit. Pokud se nezapne BitLocker, zásady se nedají vynutit.",
- "maxPasswordAttempts4": "Než uživatel dosáhne limitu neúspěšných pokusů, pošle se mu na zamykací obrazovku upozornění, že další neúspěšné pokusy uzamknou jeho počítač. Jakmile uživatel limitu dosáhne, zařízení se automaticky restartuje a zobrazí stránku obnovení BitLockeru. Tato stránka uživatele vyzve k zadání obnovovacího klíče BitLockeru.",
- "maxPasswordAttempts5": "0 (výchozí) – Zařízení se po zadání nesprávného PIN kódu nebo hesla nikdy nevymaže.",
- "maxPasswordAttempts6": "Pokud jsou všechny hodnoty zásad = 0, je nejbezpečnější hodnotou 0. Jinak je nejbezpečnější hodnotou zásad Min.",
- "mdmDiscoveryUrl": "Zadejte adresu URL pro koncový bod registrace MDM, který budou používat uživatelé registrující se do MDM. Tato hodnota se standardně zadává pro Intune.",
- "minimumPinLength1": "Celočíselná hodnota, která nastavuje minimální počet znaků vyžadovaných pro PIN kód. Výchozí hodnota je 4. Nejnižší počet, který pro toto nastavení zásad můžete nakonfigurovat, je 4. Největší hodnota, kterou můžete nakonfigurovat, musí být menší než 127 nebo číslo nakonfigurované v nastavení zásady Maximální délka PIN kódu, podle toho, co je menší.",
- "minimumPinLength2": "Pokud nakonfigurujete toto nastavení zásad, délka PIN kódu musí být větší nebo rovna tomuto číslu. Pokud toto nastavení zásad zakážete nebo nenakonfigurujete, délka PIN kódu musí být větší nebo rovna 4.",
- "name": "Název tohoto ohraničení sítě",
- "neutralResources": "Pokud máte ve společnosti koncové body pro přesměrování ověřování, zadejte je sem. Umístění, která se tady zadají, se považují buď za osobní, nebo za podniková. Záleží to na kontextu připojení před přesměrováním.
Pokud potřebujete zadat více hodnot, oddělte jednotlivé záznamy čárkou.
Příklad: sts.contoso.com,sts.contoso2.com
",
- "passportForWork1": "Hodnota, která nastavuje Windows Hello pro firmy jako metodu přihlašování do Windows",
- "passportForWork2": "Výchozí hodnota je true. Pokud tyto zásady nastavíte na false, uživatel nemůže zřídit Windows Hello pro firmy. Výjimkou jsou mobilní telefony připojené k Azure Active Directory, u kterých je zřízení povinné.",
- "pinExpiration": "Největší hodnota, kterou můžete pro toto nastavení zásad nastavit, je 730. Nejmenší hodnota, kterou můžete pro toto nastavení zásad nastavit, je 0. Pokud tyto zásady nastavíte na 0, platnost PIN kódu uživatele nikdy nevyprší.",
- "pinHistory1": "Největší hodnota, kterou můžete pro toto nastavení zásad nastavit, je 50. Nejmenší hodnota, kterou můžete pro toto nastavení zásad nastavit, je 0. Pokud tyto zásady nastavíte na 0, ukládání předchozích PIN kódů se nebude vyžadovat.",
- "pinHistory2": "Aktuální PIN kód uživatele je součástí sady PIN kódů přidružených k uživatelskému účtu. Když se PIN kód resetuje, historie PIN kódů se nezachová.",
- "protectUnderLock": "Chrání obsah aplikací, když je zařízení zamknuté.",
- "protectionModeBlock": "Zablokovat: Znemožňuje, aby podniková data opustila chráněné aplikace.
",
- "protectionModeOff": "Vypnuto: Uživatel může přemístit data mimo chráněné aplikace. Neprotokolují se žádné akce.
",
- "protectionModeOverride": "Povolit potlačení: Když se uživatel pokusí přemístit data z chráněné do nechráněné aplikace, zobrazí se mu dotaz. Pokud se rozhodne tento dotaz potlačit, akce se zaznamená do protokolu.
",
- "protectionModeSilent": "Tiché: Uživatelé můžou přemístit data mimo chráněné aplikace. Tyto akce se protokolují.
",
- "required": "Požadováno",
- "revokeOnMdmHandoff": "Přidáno ve Windows 10, verze 1703. Tato zásada řídí, jestli se mají odvolat klíče ochrany WIP při upgradu zařízení z MAM na MDM. Pokud je nastavená na Vypnuto, klíče se neodvolají a uživatel bude mít po upgradu dál přístup k chráněným souborům. Takové nastavení se doporučuje, když je služba MDM nakonfigurovaná se stejným EnterpriseID ochrany WIP jako služba MAM.",
- "revokeOnUnenroll": "Tato možnost způsobí odvolání šifrovacích klíčů, když zařízení zruší svoji registraci k těmto zásadám.",
- "rmsTemplateForEdp": "Identifikátor TemplateID GUID, který se použije k šifrování RMS. Šablona Azure RMS umožňuje správci IT konfigurovat podrobnosti o tom, kdo a jak dlouho má přístup k souboru chráněnému pomocí RMS.",
- "showWipIcon": "Tato možnost dá uživateli pomocí překryvné ikony vědět, že jedná v kontextu podniku.",
- "useRmsForWip": "Určuje, jestli se má pro WIP povolit šifrování Azure RMS."
+ "SecurityTemplate": {
+ "aSR": "Omezení možností útoku",
+ "accountProtection": "Ochrana účtu",
+ "allDevices": "Všechna zařízení",
+ "antivirus": "Antivirus",
+ "antivirusReporting": "Vytváření sestav antiviru (Preview)",
+ "conditionalAccess": "Podmíněný přístup",
+ "deviceCompliance": "Dodržování předpisů zařízením",
+ "diskEncryption": "Šifrování disku",
+ "eDR": "Zjišťování koncových bodů a odpověď",
+ "firewall": "Firewall",
+ "helpSupport": "Nápověda a podpora",
+ "setup": "Instalace",
+ "wdapt": "Microsoft Defender pro koncový bod"
+ },
+ "Win32ReturnCodes": {
+ "CodeTypes": {
+ "failed": "Selhalo",
+ "hardReboot": "Úplné restartování",
+ "retry": "Opakovat",
+ "softReboot": "Rychlé restartování",
+ "success": "Úspěch"
},
- "requireAppPin": "Pokud chcete zakázat PIN kód aplikace, když se na zaregistrovaném zařízení zjistí zámek, vyberte Ano.
Poznámka: Na iOS/iPadOS nemůže Intune zjišťovat registraci zařízení pomocí řešení EMM třetí strany.
"
- },
- "AppInfoBalloonText": {
- "Certificate": {
- "customSubjectName": "CN={{UserName}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US\r\nor\r\nCN={{AAD_Device_ID}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US",
- "keySize": "Vyberte počet bitů obsažených v klíči.",
- "keyUsage": "Zadejte kryptografickou akci, která se vyžaduje k výměně veřejného klíče certifikátu.",
- "renewalThreshold": "Zadejte procento (mezi 1 a 99 procenty) povolené zbývající živostnosti certifikátu, než zařízení může požádat o prodloužení jeho platnosti. Doporučená hodnota pro Intune je 20 %. (1-99)",
- "rootCert": "Zvolte dříve nakonfigurovaný a přiřazený profil kořenového certifikátu CA. Certifikát CA musí odpovídat kořenovému certifikátu certifikační autority, která vystavila certifikát pro tento profil (ten, který v tuto chvíli konfigurujete).",
- "scepServerUrl": "Zadejte adresu URL pro server NDES, který vystavuje certifikáty prostřednictvím SCEP (musí se jednat o HTTPS). Například https://contoso.com/certsrv/mscep/mscep.dll.",
- "scepServerUrls": "Přidejte nejméně jednu adresu URL pro server NDES, který vystavuje certifikáty prostřednictvím SCEP (musí se jednat o HTTPS). Např. https://contoso.com/certsrv/mscep/mscep.dll.",
- "subjectAlternativeName": "Alternativní název subjektu",
- "subjectNameFormat": "Formát názvu subjektu",
- "validityPeriod": "Čas zbývající do vypršení platnosti certifikátu. Zadejte hodnotu, která je nižší nebo rovna období platnosti, které se zobrazuje v šabloně certifikátu. Výchozí hodnota je nastavená na jeden rok."
- },
- "appInstallContext": "Tato možnost určuje kontext instalace, který se přidruží k této aplikaci. U aplikací v duálním režimu vyberte požadovaný kontext pro tuto aplikaci. Pro všechny ostatní aplikace se tato hodnota vybere předem podle balíčku a nedá se upravit.",
- "autoUpdateMode": "Nakonfigurujte prioritu aktualizace pro aplikaci. Vyberte „Výchozí“, pokud chcete vyžadovat, aby bylo zařízení před aktualizací aplikace připojeno k síti Wi-Fi, nabíjelo se a nebylo aktivně používáno. Vyberte „Vysoká priorita“, pokud se má aplikace aktualizovat hned, jakmile vývojář aplikaci publikuje, bez ohledu na stav nabíjení, připojení k síti Wi-Fi nebo aktivitu koncového uživatele na zařízení. Vysoká priorita se projeví jenom u zařízení DO.",
- "configurationSettingsFormat": "Text formátu nastavení konfigurace",
- "ignoreVersionDetection": "Pro aplikace, které automaticky aktualizuje jejich vývojář (třeba Google Chrome), nastavte tuto možnost na Ano.",
- "ignoreVersionDetectionMacOSLobApp": "Vyberte Ano pro aplikace, které vývojář aplikace aktualizuje automaticky, nebo pro kontrolu bundleID aplikace před instalací. Pokud chcete před instalací zkontrolovat bundleID i číslo verze aplikace, vyberte možnost Ne.",
- "installAsManagedMacOSLobApp": "Toto nastavení se použije jenom na macOS 11 a vyšší. V macOS 10.15 a nižším se aplikace nainstaluje, ale nebude spravovaná.",
- "installContextDropdown": "Vyberte příslušný kontext instalace. Kontext uživatele nainstaluje aplikaci jen pro cílové uživatele, kdežto kontext zařízení nainstaluje aplikaci pro všechny uživatele daného zařízení.",
- "ldapUrl": "Toto je název hostitele protokolu LDAP, kde můžu klienti získat veřejné šifrovací klíče pro příjemce e-mailů. E-maily se zašifrují, když je k dispozici klíč. Podporované formáty: - ldap.example.com
\r\n- ldap.example.com:123
\r\n- ldap://ldap.example.com
- ldap://ldap.example.com:123
- ldaps://ldap.example.com
\r\n- ldaps://ldap.example.com:123
",
- "permissionsSettings": "Vyberte oprávnění modulu runtime pro přidružené aplikace.",
- "policyAssociatedApp": "Vyberte aplikaci, ke které se tyto zásady přidruží.",
- "policyConfigurationSettings": "Vyberte metodu, pomocí které chcete definovat nastavení konfigurace těchto zásad.",
- "policyDescription": "Případně můžete také zadat popis těchto zásad konfigurace.",
- "policyEnrollmentType": "Určete, jestli se tato nastavení mají spravovat prostřednictvím správy zařízení, nebo aplikací vytvořených s použitím sady Intune SDK.",
- "policyName": "Zadejte název zásad konfigurace.",
- "policyPlatform": "Vyberte platformu, které se budou tyto zásady konfigurace aplikací týkat.",
- "policyProfileType": "Vyberte typy profilů zařízení, na které se bude tento konfigurační profil aplikace vztahovat",
- "policySMime": "Nakonfigurujte nastavení šifrování a podepisování S/MIME pro Outlook.",
- "sMimeDeployCertsFromIntune": "Zadejte, jestli se z Intune budou doručovat certifikáty S/MIME, aby se mohly používat v Outlooku.\r\nIntune může automaticky nasazovat podpisové a šifrovací certifikáty uživatelům přes Portál společnosti.",
- "sMimeEnable": "Zadejte, jestli se při vytváření e-mailu povolí ovládací prvky S/MIME.",
- "sMimeEnableAllowChange": "Určuje, jestli uživatel může měnit nastavení Povolit standard S/MIME.",
- "sMimeEncryptAllEmails": "Zadejte, jestli musí být všechny e-maily šifrované, nebo ne.\r\nŠifrování převádí data na šifrovaný text, aby si je mohl přečíst jen zamýšlený příjemce.",
- "sMimeEncryptAllEmailsAllowChange": "Určuje, jestli uživatel může měnit nastavení Šifrovat všechny e-maily.",
- "sMimeEncryptionCertProfile": "Zadejte profil certifikátu pro šifrování e-mailů.",
- "sMimeSignAllEmails": "Zadejte, jestli musí být všechny e-maily podepsané.\r\nDigitální podpis ověřuje pravost e-mailu a zajišťuje, že se během přenosu nezmění jeho obsah.",
- "sMimeSignAllEmailsAllowChange": "Určuje, jestli uživatel může měnit nastavení Podepsat všechny e-maily.",
- "sMimeSigningCertProfile": "Zadejte profil certifikátu pro podepisování e-mailů.",
- "sMimeUserNotificationType": "Způsob, jak uživatelům oznámit, že k získání certifikátů S/MIME pro Outlook musí otevřít Portál společnosti"
- },
- "WindowsQualityUpdateDaysUntilForcedReboot": {
- "oneDay": "1 den",
- "twoDays": "2 dny",
- "zeroDays": "0 dnů"
- },
- "Autopilot": {
- "AssignResourceAccount": {
- "createNewCommandMenu": "Vytvořit nový",
- "createNewResourceAccountInfo": "\r\nVytvořte během registrace nový účet prostředku. Účet prostředku se hned přidá do tabulky účtů prostředků, ale dokud se zařízení nezaregistruje a neověří se předplatné Surface Hubu, nebude aktivní. Další informace o účtech prostředků
\r\n ",
- "createNewResourceTitle": "Vytvořit nový účet prostředku",
- "deviceNameInvalid": "Název zařízení nemá platný formát.",
- "deviceNameRequired": "Název zařízení je povinný.",
- "editResourceAccountLabel": "Upravit",
- "selectExistingCommandMenu": "Vybrat existující"
- },
- "Device": {
- "ComputerName": {
- "validFormat": "Názvy musí mít nanejvýš 15 znaků a můžou obsahovat písmena (a–z, A–Z), číslice (0–9) a spojovníky. Názvy se nesmí skládat jen z číslic a nemohou obsahovat mezery."
- },
- "Header": {
- "addressableUserName": "Jednoduchý název",
- "azureADDevice": "Přidružené zařízení Azure AD",
- "batch": "Značka skupiny",
- "dateAssigned": "Datum přiřazení",
- "deviceDisplayName": "Název zařízení",
- "deviceName": "Název zařízení",
- "deviceUseType": "Typ využití zařízení",
- "enrollmentState": "Stav registrace",
- "intuneDevice": "Přidružené zařízení Intune",
- "lastContacted": "Naposledy kontaktováno",
- "make": "Výrobce",
- "model": "Model",
- "profile": "Přiřazený profil",
- "profileStatus": "Stav profilu",
- "purchaseOrderId": "Nákupní objednávka",
- "resourceAccount": "Účet prostředku",
- "serialNumber": "Sériové číslo",
- "userPrincipalName": "Uživatel"
- }
- },
- "DeviceUseType": {
- "meetingAndPresentation": "Schůzka a prezentace",
- "teamCollaboration": "Spolupráce týmů"
- },
- "Devices": {
- "featureDescription": "Windows Autopilot umožňuje přizpůsobit pro vaše uživatele software spouštěný při prvním zapnutí (OOBE).",
- "importErrorStatus": "Některá zařízení se neimportovala. Pro další informace klikněte sem.",
- "importPendingStatus": "Probíhá import. Uplynulý čas: {0} min. Tento proces může trvat až {1} min."
- },
- "DirectoryService": {
- "activeDirectoryAD": "Připojené službou Hybrid Azure AD Join",
- "activeDirectoryADLabel": "Hybrid Azure AD a Autopilot",
- "azureAD": "Připojeno k Azure AD",
- "unknownType": "Neznámý typ"
- },
- "Filter": {
- "enrollmentState": "Stav",
- "profile": "Stav profilu"
- },
- "OOBE": {
- "AddressableUserName": {
- "validateEmpty": "Uživatelsky přívětivý název nemůže být prázdný."
- },
- "ApplyComputerNameTemplate": {
- "infoBalloon": "Pokud chcete do svých zařízení během registrace přidávat názvy, vytvořte šablonu pro vytváření názvů.",
- "label": "Použít šablonu názvu zařízení"
- },
- "ApplyComputerNameTemplateDisabled": {
- "label": "Pro typ nasazení Autopilot připojený službou Hybrid Azure AD Join se pro jména zařízení používají nastavení zadaná v konfiguraci připojení k doméně."
- },
- "ComputerNameTemplate": {
- "emptyValue": "MyCompany-%RAND:4%",
- "label": "Zadat název",
- "noDisallowedChars": "Název může obsahovat jen alfanumerické znaky, spojovníky, %SERIAL% nebo %RAND:x%.",
- "serialLength": "U %SERIAL% se nedá použít více než 7 znaků.",
- "validateLessThan15Chars": "Název musí obsahovat nanejvýš 15 znaků.",
- "validateNoSpaces": "Názvy počítačů nemůžou obsahovat mezery.",
- "validateNotAllNumbers": "Název musí navíc obsahovat písmena nebo spojovníky.",
- "validateNotEmpty": "Název nesmí být prázdný.",
- "validateOnlyOneMacro": "Název musí obsahovat buď %SERIAL%, nebo %RAND:x%, ne obojí."
- },
- "ConfigureComputerNameTemplate": {
- "description": "Vytvořte jedinečný název pro zařízení. Názvy musí mít nanejvýš 15 znaků, můžou obsahovat písmena (a–z, A–Z), číslice (0–9) a spojovníky. Názvy se nesmí skládat jen z číslic ani obsahovat mezeru. Pokud chcete přidat sériové číslo specifické pro daný hardware, použijte makro %SERIAL%. Kromě toho můžete použít makro %RAND:x%, které přidá náhodný řetězec číslic. Písmeno x je počet číslic, které se mají přidat."
- },
- "EnableWhiteGlove": {
- "infoBalloon": "Pokud chcete zaregistrovat zařízení a zřídit všechny aplikace a nastavení v kontextu systému, povolte možnost stisknout 5krát tlačítko Windows, aby se spustil software spouštěný při prvním zapnutí počítače. Aplikace a nastavení v kontextu uživatele se nainstalují, až se uživatel přihlásí.",
- "label": "Povolit předem zřízené nasazení"
- },
- "HybridAzureADSkipConnectivityCheck": {
- "infoBalloon": "Tok připojení k hybridní implementaci Azure AD Autopilot bude pokračovat i v případě, že během spuštění OOBE nevytvoří připojení řadiče domény.",
- "label": "Přeskočit kontrolu připojení AD (Preview)"
- },
- "accountType": "Typ uživatelského účtu",
- "accountTypeInfo": "Zadejte, jestli jsou uživatelé na zařízení správci, nebo standardní uživatelé. Poznámka: Toto nastavení neplatí pro účty globálních správců nebo správců společnosti. Tyto účty nemůžou být standardní uživatelé, protože mají přístup ke všem funkcím pro správu v Azure AD.",
- "configOOBEInfo": "\r\nNakonfigurujte software spouštěný při prvním zapnutí zařízení Autopilot.\r\n
",
- "configureDevice": "Režim nasazení",
- "configureDeviceHintForSurfaceHub2": "Autopilot podporuje režim automatického nasazení jen pro Surface Hub 2. Tento režim nepřidružuje uživatele k registrovanému zařízení, proto nevyžaduje jeho přihlašovací údaje.",
- "configureDeviceHintForWindowsPC": "\r\n Režim nasazení určuje, jestli uživatel musí pro zřízení zařízení zadat přihlašovací údaje.\r\n
\r\n \r\n - \r\n Řízení uživatelem: Zařízení se přidruží k uživateli, který zařízení registruje, a při zřizování zařízení se musí zadat přihlašovací údaje uživatele.\r\n
\r\n - \r\n Nasazení sebou samým (Preview): Zařízení nejsou přidružená k uživateli, který je registruje, a při zřizování zařízení se nevyžadují přihlašovací údaje uživatele.\r\n
\r\n
",
- "createSurfaceHub2Info": "Nakonfigurujte nastavení registrace Autopilot pro zařízení Surface Hub 2. Standardně Autopilot umožňuje v prostředí prvního spuštění počítače přeskočit ověřování uživatelů. Další informace o Windows Autopilotu pro Surface Hub 2",
- "createWindowsPCInfo": "\r\n\r\nPro zařízení Autopilot v režimu automatického nasazení se automaticky povolí následující možnosti:\r\n
\r\n\r\n - \r\n Přeskočit výběr pracovního nebo domácího využití\r\n
\r\n - \r\n Přeskočit registraci OEM a konfiguraci OneDrivu\r\n
\r\n - \r\n Přeskočit ověřování uživatelů v prostředí prvního spuštění počítače\r\n
\r\n
",
- "endUserDevice": "Řízení uživatelem",
- "hideEscapeLink": "Skrýt možnosti změny účtu",
- "hideEscapeLinkInfo": "Možnosti změnit účet a začít znovu s jiným účtem se zobrazují během počáteční instalace zařízení na přihlašovací stránce společnosti a na chybové stránce domény. Pokud chcete tyto možnosti skrýt, musíte v Azure Active Directory nakonfigurovat branding společnosti (vyžaduje Windows 10 verze 1809 nebo novější nebo Windows 11).",
- "info": "Nastavení profilu AutoPilot definují prostředí, které uživatelé uvidí, když poprvé spustí Windows. ",
- "language": "Jazyk (oblast)",
- "languageInfo": "Zadejte jazyk a oblast, které se použijí.",
- "licenseAgreement": "Licenční podmínky pro software společnosti Microsoft",
- "licenseAgreementInfo": "Zadejte, jestli se uživatelům má zobrazovat smlouva EULA.",
- "plugAndForgetDevice": "Nasazení sebou samým (Preview)",
- "plugAndForgetGA": "Automatické nasazení",
- "privacySettingWarning": "Pro zařízení s Windows 10 verze 1903 a novější nebo s Windows 11 se změnila výchozí hodnota pro shromažďování diagnostických dat. ",
- "privacySettings": "Nastavení soukromí",
- "privacySettingsInfo": "Zadejte, jestli se uživatelům mají zobrazovat nastavení ochrany osobních údajů.",
- "showCortanaConfigurationPage": "Konfigurace Cortany",
- "showCortanaConfigurationPageInfo": "Možnost Zobrazit umožní, aby se během spuštění představila konfigurace Cortany.",
- "skipEULAWarning": "Důležité informace o skrývání licenčních podmínek",
- "skipKeyboardSelection": "Automaticky nakonfigurovat klávesnici",
- "skipKeyboardSelectionInfo": "Když se tato možnost nastaví na true a bude nastavený jazyk, přeskočí se stránka pro výběr klávesnice.",
- "subtitle": "Profily AutoPilot",
- "title": "Software spouštěný při prvním zapnutí zařízení",
- "useOSDefaultLanguage": "Výchozí nastavení operačního systému",
- "userSelect": "Výběr uživatele"
- },
- "Sync": {
- "lastRequestedLabel": "Poslední žádost o synchronizaci",
- "lastSuccessfulLabel": "Poslední úspěšná synchronizace",
- "syncInProgress": "Probíhá synchronizace. Vraťte se prosím za chvíli.",
- "syncInitiated": "Synchronizace nastavení AutoPilot byla zahájena.",
- "syncSettingsTitle": "Synchronizovat nastavení AutoPilot"
- },
- "Title": {
- "devices": "Zařízení Windows AutoPilot"
- },
- "Tooltips": {
- "addressableUserName": "Uvítací název, který se zobrazí při instalaci zařízení",
- "azureADDevice": "Přejděte na podrobnosti přidruženého zařízení. Hodnota N/A znamená, že žádné přidružené zařízení neexistuje.",
- "batch": "Řetězcový atribut, pomocí kterého se dá identifikovat skupina zařízení. Pole značky skupiny Intune se mapuje na atribut OrderID v zařízeních Azure AD.",
- "dateAssigned": "Časové razítko, kdy se profil přiřadil k zařízení",
- "deviceDisplayName": "Nakonfigurujte jedinečný název zařízení. Tento název se bude ignorovat v nasazeních připojených službou Hybrid Azure AD Join. Název zařízení stále pochází z profilu připojení k doméně pro zařízení hybridní služby Azure AD.",
- "deviceName": "Název, který se zobrazuje, když se někdo pokusí zjistit zařízení a připojit se k němu",
- "deviceUseType": " Zařízení by se nastavilo podle vaší volby. V nastavení se to dá vždy změnit.\r\n \r\n - Pro schůzky a prezentace není funkce Windows Hello zapnutá a data se po každé relaci odeberou.\r\n
\r\n - V případě týmové spolupráce je funkce Windows Hello zapnutá a profily se ukládají pro rychlé přihlašování.
\r\n
",
- "enrollmentState": "Určuje, jestli je zařízení zaregistrované.",
- "intuneDevice": "Přejděte na podrobnosti přidruženého zařízení. Hodnota N/A znamená, že žádné přidružené zařízení neexistuje.",
- "lastContacted": "Časové razítko, kdy se se zařízením naposledy navázal kontakt",
- "make": "Výrobce vybraného zařízení",
- "model": "Model vybraného zařízení",
- "profile": "Název profilu přiřazeného k zařízení",
- "profileStatus": "Určuje, jestli je k zařízení přiřazený profil",
- "purchaseOrderId": "ID nákupní objednávky",
- "resourceAccount": "Identita zařízení nebo hlavní název uživatele (UPN)",
- "serialNumber": "Sériové číslo vybraného zařízení",
- "userPrincipalName": "Uživatel, kterým se předem vyplní ověřování při instalaci zařízení"
- },
- "allDevices": "Všechna zařízení",
- "allDevicesAlreadyAssignedError": "Profil Autopilot je už přiřazen ke všem zařízením.",
- "assignFailedDescription": "Nepovedlo se aktualizovat přiřazení pro {0}.",
- "assignFailedTitle": "Nepovedlo se aktualizovat přiřazení profilů AutoPilot",
- "assignSuccessDescription": "Přiřazení pro {0} se úspěšně aktualizovala.",
- "assignSuccessTitle": "Přiřazení profilů AutoPilot se úspěšně aktualizovala",
- "assignSufaceHub2ProfileNextStep": "Další postup pro toto nasazení",
- "assignSurfaceHub2ProfileToDeviceGroup": "1. Přiřaďte tento profil k alespoň jedné skupině zařízení.",
- "assignSurfaceHub2ProfileToResourceAccount": "2. Přiřaďte účet prostředku ke každému zařízení Surface Hub, na které chcete nasadit tento profil.",
- "assignedDevicesCount": "Přiřazená zařízení",
- "assignedDevicesResourceAccountDescription": "Abyste mohli tento profil nasadit na zařízení, musíte zařízení přiřadit k účtu prostředku. Pokud chcete přiřadit existující účet prostředku nebo vytvořit nějaký nový, vyberte po jednom jednotlivá zařízení. Další informace o účtech prostředků
",
- "assignedDevicesResourceAccountStatusBarMessage": "V této tabulce se uvádějí jen zařízení Surface Hub 2, kterým se přiřadil tento profil.",
- "assigningDescription": "Aktualizuje se přiřazení pro {0}.",
- "assigningTitle": "Aktualizují se přiřazení profilů AutoPilot",
- "cannotDeleteMessage": "Tento profil je přidružený ke skupinám. Než budete moct profil odstranit, bude nutné zrušit v něm přiřazení všech skupin.",
- "cannotDeleteTitle": "Nejde odstranit {0}",
- "createdDateTime": "Vytvořeno",
- "deleteMessage": "Pokud tento profil AutoPilot odstraníte, bude se u všech zařízení přiřazených k tomuto profilu zobrazovat Nepřiřazeno.",
- "deleteMessageWithPolicySet": "Profil {0} je zahrnutý v jedné nebo více sadách zásad. Pokud profil {0} odstraníte, nebudete už jej moct přiřazovat prostřednictvím těchto sad zásad. Chcete jej přesto odstranit?",
- "deleteTitle": "Opravdu chcete tento profil odstranit?",
- "description": "Popis",
- "deviceType": "Typ zařízení",
- "deviceUse": "Použití zařízení",
- "directoryServiceHintForSurfaceHub2": " \r\n Autopilot podporuje připojení k Azure AD jen pro zařízení Surface Hub 2. Zadejte, jak se zařízení ve vaší organizaci připojují ke službě Active Directory (AD).\r\n
\r\n \r\n - \r\n Připojeno k Azure AD: Jen cloud bez místní služby Windows Server Active Directory\r\n
\r\n
\r\n ",
- "directoryServiceHintForWindowsPC": "\r\n \r\n Zadejte, jak se zařízení připojují k Active Directory (AD) ve vaší organizaci:\r\n
\r\n \r\n - \r\n Připojeno k Azure AD: Jen cloud bez místní služby Active Directory Windows Serveru\r\n
\r\n
\r\n ",
- "getAssignedDevicesCountError": "Při načítání počtu přiřazených zařízení došlo k chybě.",
- "getAssignmentsError": "Při načítání přiřazení profilů AutoPilot došlo k chybě.",
- "harvestDeviceId": "Převést všechna cílová zařízení na Autopilot",
- "harvestDeviceIdDescription": "Standardně se tento profil dá zavést jen pro zařízení Autopilot synchronizovaná ze služby Autopilot.",
- "harvestDeviceIdInfo": "\r\n Když vyberete Ano, zaregistrujete všechna cílová zařízení do Autopilota, pokud už nejsou registrovaná. Až registrovaná zařízení příště projdou softwarem spouštěným při prvním zapnutí Windows, projdou přiřazeným scénářem Autopilot.\r\n
\r\n Pamatujte, že některé scénáře Autopilot vyžadují konkrétní minimální sestavení systému Windows. Zkontrolujte, jestli má vaše zařízení minimální požadované sestavení, aby scénářem prošlo.\r\n
\r\n Odebrání tohoto profilu neodebere ovlivněná zařízení z Autopilota. Pokud chcete odebrat zařízení z Autopilota, použijte zobrazení Zařízení Windows Autopilot.\r\n ",
- "harvestDeviceIdWarning": "Po převodu se zařízení Autopilot dají vrátit jen tak, že se odstraní ze seznamu zařízení Autopilot.",
- "holoLensCommandMenu": "HoloLens",
- "info": "Profily nasazení Windows AutoPilot umožňují přizpůsobit software spouštěný při prvním zapnutí vašich zařízení.",
- "invalidProfileNameMessage": "Znak {0} není povolený.",
- "joinTypeLabel": "Připojit se k Azure AD jako",
- "lastModifiedDateTime": "Poslední změna:",
- "name": "Název",
- "noAutopilotProfile": "Žádné profily AutoPilot",
- "notEnoughPermissionAssignedError": "K přiřazení tohoto profilu do jedné nebo více vybraných skupin nemáte dostatečná oprávnění. Obraťte se prosím na svého správce.",
- "profile": "profil",
- "resourceAccountStatusBarMessage": "Pro každé zařízení Surface Hub 2, do kterého je nasazený tento profil, se vyžaduje jeden účet prostředku. Kliknutím získáte další informace.",
- "selectServices": "Vyberte adresářovou službu, ke které se zařízení připojí.",
- "surfaceHub2CommandMenu": "Surface Hub 2",
- "surfaceHub2SCommandMenu": "Surface Hub 2S",
- "userAffinityLabel": "Režim nasazení",
- "windowsPCCommandMenu": "Počítač s Windows",
- "directoryServiceLabel": "Připojit k Azure AD jako"
- },
- "AppInformationTab": {
- "Error": {
- "multipleChildApps": "Pokud nahraný balíček obsahuje jednu aplikaci, dá se aplikace LOB pro macOS nainstalovat jenom jako spravovaná."
- },
- "Info": {
- "AppStoreUrl": {
- "android": "Zadejte odkaz na popis aplikace v obchodě Google Play. Například:",
- "androidLink": "https://play.google.com/store/apps/details?id=com.microsoft.office.outlook",
- "windows": "Zadejte odkaz na popis aplikace v Microsoft Storu. Například:",
- "windowsLink": "https://www.microsoft.com/en-us/p/microsoft-to-do-lists-tasks-reminders/9nblggh5r558"
- },
- "appPackageFile": "Soubor, který obsahuje vaši aplikaci ve formátu, který se dá zkušebně načíst na zařízení. Mezi platné typy balíčků patří: Android (. apk), iOS (. IPA), macOS (. intunemac), Windows (. msi,. appx,. appxbundle,. msix a. msixbundle).",
- "applicableDeviceType": "Vyberte typy zařízení, které můžou tuto aplikaci nainstalovat.",
- "category": "Kategorizujte aplikaci, abyste uživatelům usnadnili zatřídit ji a najít v aplikaci Portál společnosti. Pro aplikaci můžete zvolit několik kategorií.",
- "categoryLink": "https://docs.microsoft.com/en-us/intune/apps/apps-add#create-and-edit-categories-for-apps",
- "description": "Pomozte uživatelům zařízení pochopit, co aplikace umí nebo co v ní můžou dělat. Tento popis se bude zobrazovat na Portálu společnosti.",
- "developer": "Název společnosti nebo jméno vývojáře, který aplikaci vyvinul. Tyto informace budou viditelné pro uživatele přihlášené do centra pro správu.",
- "displayVersion": "Verze aplikace. Tyto informace se budou uživatelům zobrazovat na Portálu společnosti.",
- "infoUrl": "Odkažte uživatele na web nebo dokumentaci s dalšími informacemi o této aplikaci. Adresu URL informací uvidí uživatelé v aplikaci Portál společnosti.",
- "isFeatured": "Vybrané aplikace jsou umístěny prominentně v aplikaci Portál společnosti, aby se k nim uživatelé mohli rychle dostat.",
- "learnMore": "Další informace",
- "logo": "Nahrajte logo, které je přidružené k této aplikaci. Toto logo se bude zobrazovat vedle aplikace všude v aplikaci Portál společnosti.",
- "macOSDmgAppPackageFile": "Soubor, který obsahuje vaši aplikaci ve formátu, který se dá na zařízení zkušebně načíst. Platný typ balíčku: .dmg.",
- "minOperatingSystem": "Vyberte nejstarší verzi operačního systému, na které je možné aplikaci nainstalovat. Pokud aplikaci přiřadíte k zařízení s dřívějším operačním systémem, nebude nainstalována.",
- "name": "Přidejte název aplikace. Tento název se bude zobrazovat v seznamu aplikací Intune a uživatelům v aplikaci Portál společnosti.",
- "notes": "Přidejte další poznámky o aplikaci. Poznámky budou viditelné pro uživatele přihlášené do centra pro správu.",
- "owner": "Jméno osoby v organizaci, která spravuje licencování nebo je kontaktním osobou pro tuto aplikaci. Toto jméno bude viditelné pro uživatele přihlášené do centra pro správu.",
- "packageName": "Kontaktujte výrobce zařízení získejte název balíčku aplikace. Příklad názvu balíčku: com.example.app",
- "privacyUrl": "Zadejte odkaz pro lidi, kteří se chtějí dozvědět více o nastavení ochrany osobních údajů a podmínkách aplikace. Adresa URL ochrany osobních údajů uvidí uživatelé v aplikaci Portál společnosti.",
- "publisher": "Název vývojáře nebo společnosti, kteří aplikaci distribuují. Tyto informace se budou uživatelům zobrazovat na Portálu společnosti.",
- "selectApp": "Vyhledejte v App Storu aplikace pro iOS, které chcete nasadit s Intune.",
- "useManagedBrowser": "Pokud je to požadováno, tato webová aplikace se uživateli otevře v prohlížeči chráněném s Intune, jako je Microsoft Edge nebo Intune Managed Browser. Toto nastavení platí pro zařízení s iOS i Androidem.",
- "useManagedBrowserLink": "https://docs.microsoft.com/en-us/intune/apps/app-configuration-managed-browser",
- "win32AppPackageFile": "Soubor, který obsahuje vaši aplikaci ve formátu, který se dá zkušebně načíst na zařízení. Platné typy balíčků: .intunewin."
- },
- "descriptionPreview": "Preview",
- "descriptionRequired": "Popis je povinný.",
- "editDescription": "Upravit popis",
- "name": "Informace o aplikaci",
- "nameForOfficeSuitApp": "Informace o sadě aplikací"
- },
+ "Columns": {
+ "codeType": "Typ kódu",
+ "returnCode": "Návratový kód"
+ },
+ "bladeTitle": "Návratové kódy",
+ "gridAriaLabel": "Návratové kódy",
+ "header": "Zadejte návratové kódy, které určí chování po instalaci:",
+ "onAddAnnounceMessage": "Návratový kód přidal položku {0} z {1}",
+ "onDeleteSuccess": "Návratový kód {0} byl úspěšně odstraněn",
+ "returnCodeAlreadyUsedValidation": "Návratový kód se už používá.",
+ "returnCodeMustBeIntegerValidation": "Návratový kód by měl být celé číslo.",
+ "returnCodeShouldBeAtLeast": "Návratový kód by měl být nejméně {0}.",
+ "returnCodeShouldBeAtMost": "Návratový kód by měl být nejvíce {0}.",
+ "selectorLabel": "Návratové kódy"
+ },
"NotificationMessage": {
"NotificationMessageTemplatesTab": {
"arabic": "Arabština",
@@ -10516,84 +10079,599 @@
"localeLabel": "Národní prostředí",
"isDefaultLocale": "Je výchozí"
},
- "Win32Program": {
- "DeviceRestartBehaviorOptions": {
- "allow": "Instalace aplikace může vynutit restartování zařízení",
- "basedOnReturnCode": "Určete chování na základě návratových kódů",
- "force": "Intune vynutí povinné restartování zařízení",
- "suppress": "Žádná konkrétní akce"
- },
- "RunAsAccountOptions": {
- "system": "Systém",
- "user": "Uživatel"
- },
- "bladeTitle": "Program",
- "deviceRestartBehavior": "Chování zařízení při restartu",
- "deviceRestartBehaviorTooltip": "Vyberte chování restartování zařízení po úspěšné instalaci aplikace. Pokud chcete zařízení restartovat podle nastavení konfigurace návratových kódů, vyberte Určit chování na základě návratových kódů. Pokud chcete restartování zařízení během instalace aplikací založených na Instalační službě MSI potlačit, vyberte Žádná konkrétní akce. Možnost Instalace aplikace může vynutit restartování zařízení zvolte, pokud chcete, aby se instalace aplikace dokončila bez potlačování restartování. Když se vybere možnost Intune vynutí povinné restartování zařízení, zařízení se po úspěšné instalaci aplikace restartuje vždy.",
- "header": "Zadejte příkazy, pomocí kterých se tato aplikace nainstaluje a odinstaluje:",
- "installCommand": "Příkaz pro instalaci",
- "installCommandMaxLengthErrorMessage": "Příkaz Instalovat nesmí překročit maximální povolenou délku 1024 znaků.",
- "installCommandTooltip": "Celý instalační příkazový řádek, pomocí kterého se tato aplikace instaluje",
- "runAs32Bit": "Na 64bitových klientech spouštět příkazy k instalaci a odinstalaci v 32bitových procesech",
- "runAs32BitTooltip": "Pokud chcete na 64bitových klientech instalovat a odinstalovávat aplikaci v 32bitovém procesu, vyberte Ano. Pokud na těchto klientech chcete aplikaci instalovat a odinstalovávat v 64bitovém procesu, vyberte Ne (výchozí). 32bitoví klienti budou vždy používat 32bitový proces.",
- "runAsAccount": "Chování při instalaci",
- "runAsAccountTooltip": "Pokud chcete v případě, že se to podporuje, tuto aplikaci nainstalovat pro všechny uživatele, vyberte Systém. Pokud ji chcete nainstalovat pro uživatele, který je na zařízení přihlášený, vyberte Uživatel. U aplikací Instalační služby MSI s dvojím využitím změny znemožní úspěšné dokončení aktualizací a odinstalací, dokud se neobnoví hodnota použitá na zařízení při původní instalaci.",
- "selectorLabel": "Program",
- "uninstallCommand": "Příkaz pro odinstalaci",
- "uninstallCommandTooltip": "Celý odinstalační příkazový řádek, pomocí kterého se tato aplikace odinstaluje"
- },
- "OutlookAppConfigSettings": {
- "AllowUserToChangeSetting": {
- "title": "Povolit uživateli měnit nastavení",
- "tooltip": "Určuje, jestli uživatel může měnit nastavení."
- },
- "AllowWorkAccounts": {
- "title": "Povolit pouze pracovní nebo školní účty",
- "tooltip": " Když povolíte toto nastavení, uživatelé si nebudou moci do Outlooku přidat osobní e-mailový účet a účet úložiště. Pokud má uživatel v Outlooku přidaný osobní účet, zobrazí se mu výzva k jeho odebrání. Pokud uživatel osobní účet neodebere, nebude možné přidat pracovní nebo školní účet."
- },
- "BlockExternalImages": {
- "title": "Blokovat externí obrázky",
- "tooltip": "Pokud je povoleno blokování externích obrázků, aplikace zabrání stahovat obrázky hostované na internetu, které jsou vložené do textu zprávy. Když se tato možnost nastaví jako nenakonfigurovaná, výchozí nastavení aplikace je Vypnuto."
- },
- "ConfigureEmail": {
- "title": "Konfigurovat nastavení e-mailového účtu"
- },
- "DefaultAppSignatureSetting": {
- "Tooltip": {
- "android": "Výchozí podpis aplikace označuje, jestli aplikace použije jako výchozí podpis při vytváření zprávy text Získat Outlook pro Android. Pokud se nastavení nakonfiguruje na Vypnuto, výchozí podpis se nebude používat. Uživatelé ale můžou přidat svůj vlastní.\r\n\r\nKdyž se možnost nastaví na Nenakonfigurováno, výchozí nastavení aplikace se nastaví na Zapnuto.",
- "iOS": "Výchozí podpis aplikace označuje, jestli aplikace použije jako výchozí podpis při vytváření zprávy text Získat Outlook pro iOS. Pokud se nastavení nakonfiguruje na Vypnuto, výchozí podpis se nebude používat. Uživatelé ale můžou přidat svůj vlastní.\r\n\r\nKdyž se možnost nastaví na Nenakonfigurováno, výchozí nastavení aplikace se nastaví na Zapnuto."
- },
- "title": "Výchozí podpis aplikace"
- },
- "OfficeFeedReplies": {
- "title": "Informační kanál Discover",
- "tooltip": "Informační kanál Discover nabízí informace o nejčastěji používaných souborech Office. Standardně se tento kanál povoluje ve chvíli, kdy se pro daného uživatele povoluje Delve. Když se tato možnost nastaví jako nenakonfigurovaná, výchozí nastavení aplikace je Zapnuto."
- },
- "OrganizeMailByThread": {
- "title": "Uspořádat poštu podle vlákna",
- "tooltip": "Výchozím chováním v Outlooku je seskupit poštovní konverzace do zobrazení konverzace ve vláknech. Pokud se toto nastavení zakáže, Outlook zobrazí každou poštu samostatně a nebude ji seskupovat podle vlákna."
- },
- "PlayMyEmails": {
- "title": "Přehrát moje e-maily",
- "tooltip": "Funkce Přehrát moje e-maily není v aplikaci povolená ve výchozím nastavení, oprávněným uživatelům se ale nabízí prostřednictvím banneru v doručené poště. Když se tato funkce nastaví na hodnotu Vypnuto, nebude se v aplikaci oprávněným uživatelům nabízet. I tak si uživatelé můžou v aplikaci přehrávání e-mailů povolit ručně. Pokud je nastavená jako Není nakonfigurováno, je výchozí nastavení aplikace Zapnuto a funkce se bude oprávněným uživatelům nabízet."
- },
- "SuggestedReplies": {
- "title": "Navrhované odpovědi",
- "tooltip": "Když otevřete zprávu, Outlook pod ní může navrhnout odpovědi. Pokud vyberete nějakou navrhovanou odpověď, můžete ji před odesláním upravit."
- },
- "SyncCalendars": {
- "title": "Synchronizovat kalendáře",
- "tooltip": "Umožňuje nakonfigurovat, jestli uživatelé můžou synchronizovat svůj kalendář Outlooku s nativní aplikací a databází kalendáře."
- },
- "TextPredictions": {
- "title": "Predikce textu",
- "tooltip": "Aplikace Outlook může při psaní zpráv navrhovat slova a fráze. Když Outlook nabídne návrh, přijměte ho potáhnutím prstem. Když se nenakonfiguruje, bude ve výchozím nastavení aplikace nastavené na Zapnuté."
+ "WindowsQualityUpdateProfile": {
+ "Details": {
+ "DaysUntilForcedReboot": {
+ "label": "Počet dní čekání před vynucením restartování"
+ },
+ "Description": {
+ "label": "Popis"
+ },
+ "Name": {
+ "label": "Název"
+ },
+ "QualityUpdateRelease": {
+ "label": "Urychleně zpracovat instalaci aktualizací pro zvýšení kvality, pokud je verze operačního systému zařízení nižší než:"
+ },
+ "bladeTitle": "Aktualizace pro zvýšení kvality systému Windows 10 a novějšího (Preview)",
+ "loadError": "Načítání selhalo."
+ },
+ "TabName": {
+ "qualityUpdateSettings": "Nastavení"
+ },
+ "infoBoxText": "Jediným vyhrazeným ovládacím prvkem aktualizace pro zvýšení kvality, který je kromě stávající zásady aktualizačního okruhu pro systém Windows 10 a novější aktuálně k dispozici, je možnost urychleně zpracovat aktualizace pro zvýšení kvality na zařízeních, která překračují zadanou úroveň opravy. Další ovládací prvky budou k dispozici v budoucnu.",
+ "warningBoxText": "I když urychlené zpracování aktualizací softwaru můžete zkrátit čas na to, aby se v případě potřeby dosáhlo shody s předpisy, má větší dopad na produktivitu koncového uživatele. Výrazně se zvýší pravděpodobnost, že během pracovní doby dojde k restartování."
+ },
+ "TermsOfUse": {
+ "Languages": {
+ "addLanguage": "Add language",
+ "af": "Afrikaans",
+ "am": "Amharic",
+ "arSA": "Arabic (Saudi Arabia)",
+ "as": "Assamese",
+ "az": "Azerbaijani",
+ "be": "Belarusian",
+ "bg": "Bulgarian",
+ "bn": "Bangla",
+ "bnIN": "Bangla (India)",
+ "bs": "Bosnian",
+ "ca": "Catalan",
+ "caESvalencia": "Valencian (Spain)",
+ "cs": "Czech",
+ "cy": "Welsh",
+ "da": "Danish",
+ "de": "German",
+ "default": "Default",
+ "defaultDetailsTag": "{0} (Default)",
+ "el": "Greek",
+ "en": "English",
+ "enGB": "English (United Kingdom)",
+ "es": "Spanish",
+ "esMX": "Spanish (Mexico)",
+ "et": "Estonian",
+ "eu": "Basque",
+ "fa": "Persian",
+ "fi": "Finnish",
+ "fil": "Filipino",
+ "fr": "French",
+ "frCA": "French (Canada)",
+ "ga": "Irish",
+ "gd": "Scottish Gaelic",
+ "gl": "Galician",
+ "gu": "Gujarati",
+ "ha": "Hausa",
+ "he": "Hebrew",
+ "hi": "Hindi",
+ "hr": "Croatian",
+ "hu": "Hungarian",
+ "hy": "Armenian",
+ "id": "Indonesian",
+ "ig": "Igbo",
+ "is": "Icelandic",
+ "it": "Italian",
+ "ja": "Japanese",
+ "ka": "Georgian",
+ "kk": "Kazakh",
+ "km": "Khmer",
+ "kn": "Kannada",
+ "ko": "Korean",
+ "kok": "Konkani",
+ "kuArab": "Central Kurdish (Arabic)",
+ "ky": "Kyrgyz",
+ "languageOptions": "Language Options",
+ "lb": "Luxembourgish",
+ "lo": "Lao",
+ "lt": "Lithuanian",
+ "lv": "Latvian",
+ "mi": "Maori",
+ "mk": "Macedonian",
+ "ml": "Malayalam",
+ "mn": "Mongolian",
+ "mr": "Marathi",
+ "ms": "Malay",
+ "mt": "Maltese",
+ "ne": "Nepali",
+ "nl": "Dutch",
+ "nnNO": "Norwegian, Nynorsk (Norway)",
+ "no": "Norwegian",
+ "notSpecified": "Language not specified",
+ "nso": "Sesotho sa Leboa",
+ "or": "Odia",
+ "paArabPK": "Punjabi (Islamic Republic of Pakistan)",
+ "paIN": "Punjabi (India)",
+ "pl": "Polish",
+ "prs": "Dari",
+ "ptBR": "Portuguese (Brazil)",
+ "ptPT": "Portuguese (Portugal)",
+ "quz": "Quechua",
+ "ro": "Romanian",
+ "ru": "Russian",
+ "rw": "Kinyarwanda",
+ "sd": "Sindhi",
+ "si": "Sinhala",
+ "sk": "Slovak",
+ "sl": "Slovenian",
+ "sq": "Albanian",
+ "srCyrlBA": "Serbian (Cyrillic, Bosnia and Herzegovina)",
+ "srCyrlRS": "Serbian (Cyrillic, Serbia)",
+ "srLatnRS": "Serbian (Latin, Serbia)",
+ "sv": "Swedish",
+ "sw": "Kiswahili",
+ "ta": "Tamil",
+ "te": "Telugu",
+ "tg": "Tajik",
+ "th": "Thai",
+ "ti": "Tigrinya",
+ "tk": "Turkmen",
+ "tn": "Setswana",
+ "tr": "Turkish",
+ "tt": "Tatar",
+ "ug": "Uyghur",
+ "uk": "Ukrainian",
+ "ur": "Urdu",
+ "uz": "Uzbek",
+ "vi": "Vietnamese",
+ "wo": "Wolof",
+ "xh": "isiXhosa",
+ "yo": "Yoruba",
+ "zhHans": "Chinese (Simplified)",
+ "zhHant": "Chinese (Traditional)",
+ "zu": "isiZulu"
+ },
+ "AcceptanceExpirationFrequency": {
+ "annually": "Annually",
+ "biannually": "Bi-annually",
+ "monthly": "Monthly",
+ "quarterly": "Quarterly"
},
- "ThemesEnabled": {
- "title": "Motivy jsou povolené",
- "tooltip": "Určete, jestli může uživatel používat vlastní vizuální motiv."
- }
- },
+ "Wizard": {
+ "AgreementTargetEntityScope": {
+ "NotSelected": {
+ "label": "None selected"
+ },
+ "selectEntityTitle": "Select group",
+ "title": "Select group"
+ },
+ "PolicyFile": {
+ "Languages": {
+ "Empty": {
+ "default": "Select default language",
+ "nonDefault": "Select a language"
+ }
+ },
+ "Validations": {
+ "duplicateLanguage": "Oops, {0} appears to be selected multiple times. Language selection must be unique."
+ }
+ },
+ "PolicyTemplate": {
+ "InfoBox": {
+ "allGuestsAllApps": "A conditional access policy will be created for all guests and all cloud apps. This policy impacts the Azure portal. Once this is created you might be required to sign-out and sign-in.",
+ "allUsersAllApps": "A conditional access policy will be created for all users and all cloud apps. This policy impacts the Azure portal. Once this is created you will be required to sign-out and sign-in.",
+ "custom": "Select the users, groups, and apps that this Terms of Use will be applied to.",
+ "noPolicy": "This terms of use will appear in the grant control list when creating a conditional access policy."
+ }
+ },
+ "Section": {
+ "conditionalAccessSubtitle": "Enforce with conditional access policy templates",
+ "conditionalAccessTitle": "Conditional access",
+ "termsOfUseSubtitle": "Create and upload documents",
+ "termsOfUseTitle": "Terms of use"
+ },
+ "acceptanceDurationInfo": "The terms of use will be enforced immediately and each user will have to re-consent every specified number of days.",
+ "acceptanceDurationLabel": "Duration before re-acceptance required (days)",
+ "acceptanceDurationPlaceholder": "Example: '90'",
+ "acceptanceExpirationFrequencyInfo": "Require users to consent on a recurring basis.",
+ "acceptanceExpirationFrequencyLabel": "Frequency",
+ "acceptanceExpirationStartDateTimeInfo": "The terms of use will be enforced immediately and users will be required to re-consent on this date.",
+ "acceptanceExpirationStartDateTimeLabel": "Expire starting on",
+ "agreementIsPerDeviceAcceptanceRequiredInfo": "The end users will be required to consent to the terms of use on every device.",
+ "agreementIsPerDeviceAcceptanceRequiredLabel": "Require users to consent on every device",
+ "agreementIsViewingBeforeAcceptanceRequiredInfo": "The end users will be required to view the terms of use prior to accepting.",
+ "agreementIsViewingBeforeAcceptanceRequiredLabel": "Require users to expand the terms of use",
+ "agreementNameInfo": "Name will be used to manage the terms of use within the Azure portal.",
+ "agreementNameLabel": "Name",
+ "agreementNamePlaceholderText": "Example: 'All users terms of use'",
+ "agreementRequirmentLabel": "Required Upon",
+ "agreementTargetEntityLabel": "Users targeted",
+ "agreementUploadPolicyLabel": "Terms of use",
+ "agreementUploadPolicyPlaceholderText": "Upload required PDF",
+ "createButtonLabel": "Create",
+ "createPolicyInfo": "In order to enforce the terms of use, a conditional access policy is required. You can create a conditional access policy targeted to specific users and applications later or use one of the predefined templates.",
+ "createPolicyLabel": "Create a policy",
+ "isAcceptanceExpirationEnabledInfo": "The terms of use will be enforced immediately and all users will be forced to re-consent on a schedule.",
+ "isAcceptanceExpirationEnabledLabel": "Expire consents",
+ "pdfValidationInvalidFileFormat": "The file must be in the .pdf format.",
+ "policyFilesInfo": "Upload a PDF file containing the terms of use that your end users must accept. Based on end user preferences they will be shown the appropriate language or if not match the default language will be shown.
For end users agreeing on mobile devices, we recommend the PDF font size to be at least 24 pt.
Display name will be the title of the terms of use that is presented to the end user.",
+ "policyFilesLabel": "Terms of use document",
+ "policyTemplateInfo": "These templates are pre configured conditional access policies that are targeted to specific users and applications.",
+ "policyTemplateLabel": "Policy templates",
+ "title": "New terms of use"
+ }
+ },
+ "TACSettings": {
+ "edgeSettings": "Nastavení konfigurace Edge",
+ "edgeWindowsDataProtectionSettings": "Nastavení ochrany dat Edge (Windows) – Preview",
+ "edgeWindowsSettings": "Nastavení konfigurace Edge (Windows) – Preview",
+ "generalAppConfig": "Obecná konfigurace aplikace",
+ "generalSettings": "Obecná nastavení konfigurace",
+ "outlookSMIMEConfig": "Nastavení standardu S/MIME v Outlooku",
+ "outlookSettings": "Nastavení konfigurace Outlooku",
+ "sMIME": "Standard S/MIME"
+ },
+ "MicrosoftEdgeChannel": {
+ "beta": "Beta",
+ "dev": "Dev",
+ "stable": "Stable"
+ },
+ "WipPolicySettings": {
+ "addNetworkBoundary": "Přidat ohraničení sítě",
+ "addNetworkBoundaryButton": "Přidat ohraničení sítě...",
+ "allowWindowsSearch": "Povolit ve Windows Search hledání šifrovaných podnikových dat a aplikací ze Storu",
+ "authoritativeIpRanges": "Seznam rozsahů podnikových IP adres je autoritativní (nedetekovat automaticky)",
+ "authoritativeProxyServers": "Seznam podnikových proxy serverů je autoritativní (nedetekovat automaticky)",
+ "boundaryType": "Typ ohraničení",
+ "cloudResources": "Cloudové prostředky",
+ "corporateIdentity": "Podniková identita",
+ "dataRecoveryCert": "Pokud chcete povolit obnovování šifrovaných dat, odešlete certifikát agenta obnovování dat (DRA).",
+ "editNetworkBoundary": "Upravit ohraničení sítě",
+ "enrollmentState": "Stav registrace",
+ "iPv4Ranges": "Rozsahy IPv4",
+ "iPv6Ranges": "Rozsahy IPv6",
+ "internalProxyServers": "Interní proxy servery",
+ "maxInactivityTime": "Maximální doba (v minutách), po kterou může zařízení zůstat neaktivní, než se zamkne PIN kódem nebo heslem",
+ "maxPasswordAttempts": "Počet povolených neúspěšných přihlášení, než se zařízení vymaže",
+ "mdmDiscoveryUrl": "Adresa URL zjišťování MDM",
+ "mdmRequiredSettingsInfo": "Tyto zásady platí jenom pro Windows 10 Anniversary Edition a vyšší. Ochranu nastavují pomocí Windows Information Protection (WIP).",
+ "minimumPinLength": "Nastavte minimální počet znaků vyžadovaných pro PIN kód.",
+ "name": "Název",
+ "networkBoundariesGridEmptyText": "Tady se budou zobrazovat všechna ohraničení sítě, která přidáte.",
+ "networkBoundary": "Ohraničení sítě",
+ "networkDomainNames": "Síťové domény",
+ "neutralResources": "Neutrální prostředky",
+ "passportForWork": "Používat Windows Hello pro firmy jako metodu přihlašování do Windows",
+ "pinExpiration": "Zadejte dobu (ve dnech), po kterou se PIN kód může používat, než bude systém vyžadovat, aby ho uživatel změnil.",
+ "pinHistory": "Zadejte počet předchozích PIN kódů přidružených k uživatelskému účtu, které se nedají použít znovu.",
+ "pinLowercaseLetters": "Nakonfigurujte využití malých písmen v PIN kódu Windows Hello pro firmy.",
+ "pinSpecialCharacters": "Nakonfigurujte využití speciálních znaků v PIN kódu Windows Hello pro firmy.",
+ "pinUppercaseLetters": "Nakonfigurujte využití velkých písmen v PIN kódu Windows Hello pro firmy.",
+ "protectUnderLock": "Bránit aplikacím v přístupu k podnikovým datům, pokud je zařízení uzamčené. Platí jenom pro Windows 10 Mobile.",
+ "protectedDomainNames": "Chráněné domény",
+ "proxyServers": "Proxy servery",
+ "requireAppPin": "Zakázat PIN kód aplikace, když je PIN kód zařízení spravovaný",
+ "requiredSettings": "Požadovaná nastavení",
+ "requiredSettingsInfo": "Když se změní obor nebo se odeberou tyto zásady, dešifrují se firemní data.",
+ "revokeOnMdmHandoff": "Odvolat přístup k chráněným datům, když se zařízení zaregistruje k MDM",
+ "revokeOnUnenroll": "Odvolat šifrovací klíče při zrušení registrace",
+ "rmsTemplateForEdp": "Zadejte ID šablony, která se má použít pro Azure RMS.",
+ "showWipIcon": "Zobrazit ikonu ochrany podnikových dat",
+ "type": "Typ",
+ "useRmsForWip": "Použít Azure RMS pro WIP",
+ "value": "Hodnota",
+ "weRequiredSettingsInfo": "Tyto zásady platí jenom pro Windows 10 Creators Update a vyšší. Ochranu nastavují pomocí Windows Information Protection (WIP) a Windows MAM.",
+ "wipProtectionMode": "Režim Windows Information Protection",
+ "withEnrollment": "S registrací",
+ "withoutEnrollment": "Bez registrace"
+ },
+ "OfficeApplicationAdditionalType": {
+ "projectProRetail": "Project Online Desktop Client",
+ "visioProRetail": "Visio Online Plan 2"
+ },
+ "Countries": {
+ "ae": "Spojené arabské emiráty",
+ "ag": "Antigua a Barbuda",
+ "ai": "Anguilla",
+ "al": "Albánie",
+ "am": "Arménie",
+ "ao": "Angola",
+ "ar": "Argentina",
+ "at": "Rakousko",
+ "au": "Austrálie",
+ "az": "Ázerbájdžán",
+ "bb": "Barbados",
+ "be": "Belgie",
+ "bf": "Burkina Faso",
+ "bg": "Bulharsko",
+ "bh": "Bahrajn",
+ "bj": "Benin",
+ "bm": "Bermudy",
+ "bn": "Brunej",
+ "bo": "Bolívie",
+ "br": "Brazílie",
+ "bs": "Bahamy",
+ "bt": "Bhútán",
+ "bw": "Botswana",
+ "by": "Bělorusko",
+ "bz": "Belize",
+ "ca": "Kanada",
+ "cg": "Konžská republika",
+ "ch": "Švýcarsko",
+ "cl": "Chile",
+ "cn": "Čína",
+ "co": "Kolumbie",
+ "cr": "Kostarika",
+ "cv": "Cabo Verde",
+ "cy": "Kypr",
+ "cz": "Česká republika",
+ "de": "Německo",
+ "dk": "Dánsko",
+ "dm": "Dominika",
+ "do": "Dominikánská republika",
+ "dz": "Alžírsko",
+ "ec": "Ekvádor",
+ "ee": "Estonsko",
+ "eg": "Egypt",
+ "es": "Španělsko",
+ "fi": "Finsko",
+ "fj": "Fidži",
+ "fm": "Federativní státy Mikronésie",
+ "fr": "Francie",
+ "gb": "Spojené království",
+ "gd": "Grenada",
+ "gh": "Ghana",
+ "gm": "Gambie",
+ "gr": "Řecko",
+ "gt": "Guatemala",
+ "gw": "Guinea-Bissau",
+ "gy": "Guyana",
+ "hk": "Hongkong",
+ "hn": "Honduras",
+ "hr": "Chorvatsko",
+ "hu": "Maďarsko",
+ "id": "Indonésie",
+ "ie": "Irsko",
+ "il": "Izrael",
+ "in": "Indie",
+ "is": "Island",
+ "it": "Itálie",
+ "jm": "Jamajka",
+ "jo": "Jordánsko",
+ "jp": "Japonsko",
+ "ke": "Keňa",
+ "kg": "Kyrgyzstán",
+ "kh": "Kambodža",
+ "kn": "Svatý Kryštof a Nevis",
+ "kr": "Korejská republika",
+ "kw": "Kuvajt",
+ "ky": "Kajmanské ostrovy",
+ "kz": "Kazachstán",
+ "la": "Laoská lidově demokratická republika",
+ "lb": "Libanon",
+ "lc": "Svatá Lucie",
+ "lk": "Srí Lanka",
+ "lr": "Libérie",
+ "lt": "Litva",
+ "lu": "Lucembursko",
+ "lv": "Lotyšsko",
+ "md": "Moldavská republika",
+ "mg": "Madagaskar",
+ "mk": "Severní Makedonie",
+ "ml": "Mali",
+ "mn": "Mongolsko",
+ "mo": "Macao",
+ "mr": "Mauritánie",
+ "ms": "Montserrat",
+ "mt": "Malta",
+ "mu": "Mauricius",
+ "mw": "Malawi",
+ "mx": "Mexiko",
+ "my": "Malajsie",
+ "mz": "Mosambik",
+ "na": "Namibie",
+ "ne": "Niger",
+ "ng": "Nigérie",
+ "ni": "Nikaragua",
+ "nl": "Nizozemsko",
+ "no": "Norsko",
+ "np": "Nepál",
+ "nz": "Nový Zéland",
+ "om": "Omán",
+ "pa": "Panama",
+ "pe": "Peru",
+ "pg": "Papua-Nová Guinea",
+ "ph": "Filipíny",
+ "pk": "Pákistán",
+ "pl": "Polsko",
+ "pt": "Portugalsko",
+ "pw": "Palau",
+ "py": "Paraguay",
+ "qa": "Katar",
+ "ro": "Rumunsko",
+ "ru": "Rusko",
+ "sa": "Saúdská Arábie",
+ "sb": "Šalamounovy ostrovy",
+ "sc": "Seychely",
+ "se": "Švédsko",
+ "sg": "Singapur",
+ "si": "Slovinsko",
+ "sk": "Slovensko",
+ "sl": "Sierra Leone",
+ "sn": "Senegal",
+ "sr": "Surinam",
+ "st": "Svatý Tomáš a Princův ostrov",
+ "sv": "Salvador",
+ "sz": "Svazijsko",
+ "tc": "Turks a Caicos",
+ "td": "Čad",
+ "th": "Thajsko",
+ "tj": "Tádžikistán",
+ "tm": "Turkmenistán",
+ "tn": "Tunisko",
+ "tr": "Turecko",
+ "tt": "Trinidad a Tobago",
+ "tw": "Tchaj-wan",
+ "tz": "Tanzanie",
+ "ua": "Ukrajina",
+ "ug": "Uganda",
+ "us": "USA",
+ "uy": "Uruguay",
+ "uz": "Uzbekistán",
+ "vc": "Svatý Vincenc a Grenadiny",
+ "ve": "Venezuela",
+ "vg": "Britské Panenské ostrovy",
+ "vn": "Vietnam",
+ "ye": "Jemen",
+ "za": "Jihoafrická republika",
+ "zw": "Zimbabwe"
+ },
+ "OfficeUpdateChannel": {
+ "current": "Aktuální kanál",
+ "deferred": "Půlroční podnikový kanál",
+ "firstReleaseCurrent": "Aktuální kanál (Preview)",
+ "firstReleaseDeferred": "Půlroční podnikový kanál (Preview)",
+ "monthlyEnterprise": "Měsíční podnikový kanál",
+ "placeHolder": "Vyberte jednu možnost."
+ },
+ "AppProtection": {
+ "allAppTypes": "Cílit na všechny typy aplikací",
+ "androidPlatformLabel": "Android",
+ "appsInAndroidWorkProfile": "Aplikace v pracovním profilu Androidu",
+ "appsOnIntuneManagedDevices": "Aplikace na spravovaných zařízeních Intune",
+ "appsOnUnmanagedDevices": "Aplikace na nespravovaných zařízeních",
+ "iOSPlatformLabel": "iOS/iPadOS",
+ "iosAndroidMacPlatformLabel": "iOS, Android, Mac",
+ "iosAndroidPlatformLabel": "iOS, Android",
+ "macPlatformLabel": "Mac",
+ "notAvailable": "Není dostupné",
+ "windows10PlatformLabel": "Windows 10 a novější",
+ "withEnrollment": "S registrací",
+ "withoutEnrollment": "Bez registrace"
+ },
+ "InstallContextType": {
+ "device": "Zařízení",
+ "deviceContext": "Kontext zařízení",
+ "user": "Uživatel",
+ "userContext": "Kontext uživatele"
+ },
+ "ProactiveRemediations": {
+ "Create": {
+ "Basics": {
+ "DescriptionMultiLineTextBox": {
+ "label": "Popis",
+ "placeholder": "Zadejte popis"
+ },
+ "NameTextBox": {
+ "label": "Název",
+ "placeholder": "Zadat název"
+ },
+ "PublisherTextBox": {
+ "label": "Vydavatel",
+ "placeholder": "Zadat vydavatele"
+ },
+ "VersionTextBox": {
+ "label": "Verze"
+ },
+ "headerDescription": "Vytvořte nový vlastní balíček skriptu ze skriptů detekce a nápravy, které jste napsali."
+ },
+ "ScopeTags": {
+ "headerDescription": "Vyberte jednu nebo více skupin pro přiřazení balíčku skriptu."
+ },
+ "Settings": {
+ "DetectionScriptMultiLineTextBox": {
+ "label": "Skript detekce",
+ "placeholder": "Text vstupního skriptu",
+ "requiredValidationMessage": "Zadejte skript detekce"
+ },
+ "EnforceScriptSignatureCheckOptionPicker": {
+ "label": "Vynutit kontrolu podpisu skriptu"
+ },
+ "LoggedOnCredentialsOptionPicker": {
+ "label": "Spustit tento skript pomocí přihlašovacích údajů přihlášeného uživatele"
+ },
+ "RemediationScript": {
+ "infoBox": "Tento skript se spustí v režimu jenom pro detekci, protože není k dispozici žádný skript nápravy."
+ },
+ "RemediationScriptMultiLineTextBox": {
+ "label": "Nápravný skript",
+ "placeholder": "Text vstupního skriptu"
+ },
+ "RunIn64BitPSOptionPicker": {
+ "label": "Spustit skript v 64bitovém PowerShellu"
+ },
+ "ScriptMultiLineTextBox": {
+ "base64EncodingValidationMessage": "Neplatný skript. Nejméně jeden znak použitý ve skriptu není platný."
+ },
+ "headerDescription": "Vytvořte vlastní balíček skriptu ze skriptů, které jste napsali. Ve výchozím nastavení se skripty spustí na přiřazených zařízeních každý den.",
+ "infoBox": "Tento skript je jen pro čtení. Některá nastavení tohoto skriptu můžou být zakázaná."
+ },
+ "title": "Vytvořit vlastní skript",
+ "ScriptProperties": {
+ "GridHeaders": {
+ "interval": "Interval",
+ "time": "Datum a čas"
+ },
+ "Interval": {
+ "day": "Opakuje se každý den",
+ "days": "Opakuje se vždy po {0} dnech",
+ "hour": "Opakuje se každou hodinu",
+ "hours": "Opakuje se vždy po {0} hodinách",
+ "month": "Opakuje se každý měsíc",
+ "months": "Opakuje se vždy po {0} měsících",
+ "week": "Opakuje se každý týden",
+ "weeks": "Opakuje se vždy po {0} týdnech"
+ },
+ "Time": {
+ "utc": "{0} (UTC)",
+ "utcWithDate": "{0} (UTC) dne {1}",
+ "withDate": "{0} dne {1}"
+ }
+ }
+ },
+ "Edit": {
+ "title": "Upravit – {0}"
+ }
+ },
+ "EdgeAppConfig": {
+ "AllowedURLs": {
+ "title": "Povolené adresy URL",
+ "tooltip": "Zadejte weby, ke kterým mají uživatele přístup v pracovním kontextu. Žádné jiné weby se nepovolí. Můžete si zvolit, že nakonfigurujete buď seznam povolených webů, nebo zakázaných, ale ne oba. "
+ },
+ "ApplicationProxyRedirection": {
+ "header": "Proxy aplikací",
+ "title": "Přesměrování proxy aplikací",
+ "tooltip": "Povolí přesměrování proxy aplikací, aby uživatelé měli přístup k firemním odkazům a místním webovým aplikacím."
+ },
+ "BlockedURLs": {
+ "title": "Blokované adresy URL",
+ "tooltip": "Zadejte weby, které mají uživatele v pracovním kontextu zablokované. Všechny ostatní weby se povolí. Můžete si zvolit, že nakonfigurujete buď seznam povolených webů, nebo zakázaných, ale ne oba. "
+ },
+ "Bookmarks": {
+ "header": "Spravované záložky",
+ "tooltip": "Zadejte seznam adres URL uložených mezi záložky, které vaši uživatelé budou mít k dispozici, když ve svém pracovním kontextu budou používat Microsoft Edge.",
+ "uRL": "Adresa URL"
+ },
+ "HomepageURL": {
+ "header": "Spravovaná domovská stránka",
+ "title": "Adresa URL zástupce domovské stránky",
+ "tooltip": "Nakonfigurujte zástupce domovské stránky, který se uživatelům zobrazí jako první ikona pod panelem hledání, až v Microsoft Edgi otevřou novou záložku."
+ },
+ "PersonalContext": {
+ "label": "Přesměrovat servery s omezeným přístupem na osobní kontext",
+ "tooltip": "Nakonfigurujte, jestli uživatelé můžou přecházet na osobní kontext, aby mohli otevřít omezené weby."
+ }
+ },
+ "BooleanActions": {
+ "allow": "Povolit",
+ "block": "Blokovat",
+ "configured": "Nakonfigurováno",
+ "disable": "Zakázat",
+ "dontRequire": "Nevyžadovat",
+ "enable": "Povolit",
+ "hide": "Skrýt",
+ "limit": "Limit",
+ "notConfigured": "Nenakonfigurováno",
+ "require": "Vyžadovat",
+ "show": "Zobrazit",
+ "yes": "Ano"
+ },
+ "ArchitectureOptions": {
+ "sixtyFourBit": "64 bitů",
+ "thirtyTwoBit": "32 bitů"
+ },
+ "WindowsQualityUpdateDaysUntilForcedReboot": {
+ "oneDay": "1 den",
+ "twoDays": "2 dny",
+ "zeroDays": "0 dnů"
+ },
"SoftwareUpdates": {
"BladeTitles": {
"overview": "Přehled"
@@ -10800,66 +10878,732 @@
"notScannedYet": "Zatím nekontrolováno",
"outOfDateIosDevices": "Neaktualizovaná zařízení s iOSem"
},
- "ScheduledAction": {
- "Form": {
- "editBlockActionInfo": "Pro všechny zásady dodržování předpisů se vyžaduje jedna akce bloku.",
- "graceperiod": "Plán (dny po nedodržení)",
- "graceperiodInfo": "Zadejte počet dnů po nedodržování předpisů, po jejichž uplynutí by měla být pro zařízení uživatele aktivována tato akce.",
- "subtitle": "Zadejte parametry akce.",
- "title": "Parametry akce"
- },
- "List": {
- "gracePeriodDay": "{0} den po nedodržení",
- "gracePeriodDays": "{0} dny (dnů) po nedodržení",
- "gracePeriodHour": "Počet hodin po nedodržení předpisů: {0}",
- "gracePeriodHours": "Počet hodin po nedodržení předpisů: {0}",
- "gracePeriodMinute": "Počet minut po nedodržení předpisů: {0}",
- "gracePeriodMinutes": "Počet minut po nedodržení předpisů: {0}",
- "immediately": "Okamžitě",
- "schedule": "Plán",
- "scheduleInfoBalloon": "Dny po nedodržení předpisů",
- "subtitle": "Zadejte sekvenci akcí pro zařízení nedodržující předpisy.",
- "title": "Akce"
- },
- "Notification": {
- "additionalEmailLabel": "Ostatní",
- "additionalRecipients": "Další příjemci (prostřednictvím e-mailu)",
- "additionalRecipientsBladeTitle": "Vybrat další příjemce",
- "emailAddressPrompt": "Zadejte e-mailové adresy (oddělené čárkami).",
- "invalidEmail": "Neplatná e-mailová adresa",
- "messageTemplate": "Šablona zprávy",
- "noneSelected": "Nic není vybráno.",
- "notSelected": "Nevybráno",
- "numSelected": "Počet vybraných: {0}",
- "selected": "Vybrané"
+ "ConfigurationTypes": {
+ "Table": {
+ "androidDeviceOwnerGeneral": "Omezení zařízení (vlastník zařízení)",
+ "androidForWorkGeneral": "Omezení zařízení (pracovní profil)"
+ },
+ "androidCustom": "Vlastní",
+ "androidDeviceOwnerGeneral": "Omezení zařízení",
+ "androidDeviceOwnerPkcs": "Certifikát PKCS",
+ "androidDeviceOwnerScep": "Certifikát SCEP",
+ "androidDeviceOwnerTrustedCertificate": "Důvěryhodný certifikát",
+ "androidDeviceOwnerVpn": "Síť VPN",
+ "androidDeviceOwnerWiFi": "Wi-Fi",
+ "androidEmailProfile": "E-mail (jen Samsung KNOX)",
+ "androidForWorkCustom": "Vlastní",
+ "androidForWorkEmailProfile": "E-mail",
+ "androidForWorkGeneral": "Omezení zařízení",
+ "androidForWorkImportedPFX": "Importovaný certifikát PKCS",
+ "androidForWorkOemConfig": "OEMConfig",
+ "androidForWorkPKCS": "Certifikát PKCS",
+ "androidForWorkSCEP": "Certifikát SCEP",
+ "androidForWorkTrustedCertificate": "Důvěryhodný certifikát",
+ "androidForWorkVpn": "VPN",
+ "androidForWorkWiFi": "Wi-Fi",
+ "androidGeneral": "Omezení zařízení",
+ "androidImportedPFX": "Importovaný certifikát PKCS",
+ "androidPKCS": "Certifikát PKCS",
+ "androidSCEP": "Certifikát SCEP",
+ "androidTrustedCertificate": "Důvěryhodný certifikát",
+ "androidVPN": "VPN",
+ "androidWiFi": "Wi-Fi",
+ "androidZebraMx": "Profil MX (pouze Zebra)",
+ "complianceAndroid": "Zásady dodržování předpisů v Androidu",
+ "complianceAndroidDeviceOwner": "Plně spravovaná, vyhrazená, vlastněná společností a s pracovním profilem",
+ "complianceAndroidEnterprise": "Pracovní profil v osobním vlastnictví",
+ "complianceAndroidForWork": "Zásady dodržování předpisů pro Android for Work",
+ "complianceIos": "Zásady dodržování předpisů v iOSu",
+ "complianceMac": "Zásady dodržování předpisů na Macu",
+ "complianceWindows10": "Zásada dodržování předpisů ve Windows 10 a novějších",
+ "complianceWindows10Mobile": "Zásady dodržování předpisů ve Windows 10 Mobile",
+ "complianceWindows8": "Zásady dodržování předpisů ve Windows 8",
+ "complianceWindowsPhone": "Zásady dodržování předpisů ve Windows Phone",
+ "exchangeActiveSync": "Exchange ActiveSync",
+ "iosCustom": "Vlastní",
+ "iosDerivedCredentialAuthenticationConfiguration": "Odvozené přihlašovací údaje PIV",
+ "iosDeviceFeatures": "Funkce zařízení",
+ "iosEDU": "Vzdělávání",
+ "iosEducation": "Vzdělávání",
+ "iosEmailProfile": "E-mail",
+ "iosGeneral": "Omezení zařízení",
+ "iosImportedPFX": "Importovaný certifikát PKCS",
+ "iosPKCS": "Certifikát PKCS",
+ "iosPresets": "Předvolby",
+ "iosSCEP": "Certifikát SCEP",
+ "iosTrustedCertificate": "Důvěryhodný certifikát",
+ "iosVPN": "VPN",
+ "iosVPNZscaler": "Síť VPN",
+ "iosWiFi": "Wi-Fi",
+ "macCustom": "Vlastní",
+ "macDeviceFeatures": "Funkce zařízení",
+ "macEndpointProtection": "Ochrana koncového bodu",
+ "macExtensions": "Rozšíření",
+ "macGeneral": "Omezení zařízení",
+ "macImportedPFX": "Importovaný certifikát PKCS",
+ "macSCEP": "Certifikát SCEP",
+ "macTrustedCertificate": "Důvěryhodný certifikát",
+ "macVPN": "VPN",
+ "macWiFi": "Wi-Fi",
+ "settingsCatalog": "Katalog nastavení (Preview)",
+ "unsupported": "Nepodporováno",
+ "windows10AdministrativeTemplate": "Šablony pro správu (Preview)",
+ "windows10Atp": "Microsoft Defender for Endpoint (desktopová zařízení se systémem Windows 10 nebo novějším)",
+ "windows10Custom": "Vlastní",
+ "windows10DesktopSoftwareUpdate": "Aktualizace softwaru",
+ "windows10DeviceFirmwareConfigurationInterface": "Rozhraní DFCI (Device Firmware Configuration Interface)",
+ "windows10EmailProfile": "E-mail",
+ "windows10EndpointProtection": "Ochrana koncového bodu",
+ "windows10EnterpriseDataProtection": "Windows Information Protection",
+ "windows10General": "Omezení zařízení",
+ "windows10ImportedPFX": "Importovaný certifikát PKCS",
+ "windows10Kiosk": "Veřejný terminál",
+ "windows10NetworkBoundary": "Ohraničení sítě",
+ "windows10PKCS": "Certifikát PKCS",
+ "windows10PolicyOverride": "Přepsat zásady skupiny",
+ "windows10SCEP": "Certifikát SCEP",
+ "windows10SecureAssessmentProfile": "Vzdělávací profil",
+ "windows10SharedPC": "Sdílené víceuživatelské zařízení",
+ "windows10TeamGeneral": "Omezení zařízení (Windows 10 Team)",
+ "windows10TrustedCertificate": "Důvěryhodný certifikát",
+ "windows10VPN": "VPN",
+ "windows10WiFi": "Wi-Fi",
+ "windows10WiFiCustom": "Vlastní Wi-Fi",
+ "windows8General": "Omezení zařízení",
+ "windows8SCEP": "Certifikát SCEP",
+ "windows8TrustedCertificate": "Důvěryhodný certifikát",
+ "windows8VPN": "VPN",
+ "windows8WiFi": "Import Wi-Fi",
+ "windowsDeliveryOptimization": "Optimalizace doručení",
+ "windowsDomainJoin": "Připojení k doméně",
+ "windowsEditionUpgrade": "Upgrade edice a přepnutí režimu",
+ "windowsIdentityProtection": "Ochrana identity",
+ "windowsPhoneCustom": "Vlastní",
+ "windowsPhoneEmailProfile": "E-mail",
+ "windowsPhoneGeneral": "Omezení zařízení",
+ "windowsPhoneImportedPFX": "Importovaný certifikát PKCS",
+ "windowsPhoneSCEP": "Certifikát SCEP",
+ "windowsPhoneTrustedCertificate": "Důvěryhodný certifikát",
+ "windowsPhoneVPN": "VPN",
+ "IosUpdate": "Zásady aktualizace iOS"
+ },
+ "OfficeSuiteAppsTab": {
+ "acceptLicenseOnBehalfOfUsersLabel": "Přijmout licenční podmínky pro software Microsoft jménem uživatelů",
+ "appSuiteConfigurationLabel": "Konfigurace sady aplikací",
+ "appSuiteInformationLabel": "Informace o sadě aplikací",
+ "appsToBeInstalledLabel": "Aplikace, které se mají nainstalovat jako součást sady",
+ "architectureLabel": "Architektura",
+ "architectureTooltip": "Definuje, jestli je na zařízeních nainstalovaná 32bitová nebo 64bitová edice aplikací Microsoft 365.",
+ "configurationDesignerLabel": "Návrhář konfigurace",
+ "configurationFileLabel": "Konfigurační soubor",
+ "configurationSettingsFormatLabel": "Formát nastavení konfigurace",
+ "configureAppSuiteLabel": "Konfigurovat sadu aplikací",
+ "configuredLabel": "Nakonfigurováno",
+ "currentVersionLabel": "Aktuální verze",
+ "currentVersionTooltip": "Toto je aktuální verze systému Office, která je nakonfigurovaná v této sadě. Když se nakonfiguruje a uloží novější verze, bude tato hodnota aktualizována.",
+ "enableMicrosoftSearchAsDefaultTooltip": "Nainstaluje službu na pozadí, která pomáhá určit, jestli je na zařízení nainstalované rozšíření Microsoft Search v Bingu pro Google Chrome.",
+ "enterXmlDataLabel": "Zadat XML data",
+ "languagesLabel": "Jazyky",
+ "languagesTooltip": "Ve výchozím nastavení bude Intune instalovat Office s výchozím jazykem operačního systému. Zvolte všechny další jazyky, které chcete nainstalovat.",
+ "learnMoreText": "Další informace",
+ "newUpdateChannelTooltip": "Definuje, jak často se má aplikace aktualizovat o nové funkce.",
+ "noCurrentVersionText": "Žádná aktuální verze",
+ "noLanguagesSelectedLabel": "Nejsou vybrány žádné jazyky",
+ "notConfiguredLabel": "Nenakonfigurováno",
+ "propertiesLabel": "Vlastnosti",
+ "removeOtherVersionsLabel": "Odebrat další verze",
+ "removeOtherVersionsTooltip": "Zvolte Ano, pokud chcete ze zařízení uživatelů odebrat jiné verze Office (MSI).",
+ "selectOfficeAppsLabel": "Vyberte aplikace Office",
+ "selectOfficeAppsTooltip": "Vyberte aplikace Office 365, které chcete nainstalovat jako součást sady.",
+ "selectOtherOfficeAppsLabel": "Vyberte další aplikace Office (je nutná licence)",
+ "selectOtherOfficeAppsTooltip": "Pokud vlastníte licence těchto dalších aplikací Office, můžete je pomocí Intune přiřadit taky.",
+ "specificVersionLabel": "Konkrétní verze",
+ "updateChannelLabel": "Aktualizační kanál",
+ "updateChannelTooltip": "Definuje, jak často se má aplikace aktualizovat o nové funkce.
\r\nMěsíčně – Poskytuje uživatelům nejnovější funkce Office, jakmile jsou k dispozici.
\r\nMěsíční podnikový kanál – Poskytuje uživatelům nejnovější funkce Office jednou měsíčně, vždy druhé úterý v měsíci.
\r\nMěsíčně (cílené) – Poskytuje uživatelům možnost časného přístupu k nadcházející měsíční verzi. Jedná se o podporovaný kanál aktualizací a je obvykle k dispozici nejméně jeden týden před vydáním měsíční verze, která obsahuje nové funkce.
\r\nPololetní – Poskytuje uživatelům nové funkce Office jenom několikrát za rok.
\r\nPololetní (cílené) – Poskytuje pilotním uživatelům a testerům kompatibility aplikací příležitost testovat nadcházející pololetní vydání.",
+ "useMicrosoftSearchAsDefault": "Nainstalovat službu na pozadí pro Microsoft Search v Bingu",
+ "useSharedComputerActivationLabel": "Použít sdílenou aktivaci počítače",
+ "useSharedComputerActivationTooltip": "Aktivace pro sdílené počítače umožňuje nasadit aplikace Microsoft 365 na počítače, které používá více uživatelů. Uživatelé můžou obvykle instalovat a aktivovat aplikace Microsoft 365 na omezeném počtu zařízení, například na 5 počítačích. Použití aplikací Microsoft 365 s aktivací pro sdílené počítače se do tohoto limitu nezapočítá.",
+ "versionToInstallLabel": "Verze, která se má nainstalovat",
+ "versionToInstallTooltip": "Vyberte verzi systému Office, která se má nainstalovat.",
+ "xLanguagesSelectedLabel": "Vybrané jazyky: {0}",
+ "xmlConfigurationLabel": "Konfigurace souboru XML"
+ },
+ "EnrollmentRestrictions": {
+ "DeletePayloadLink": {
+ "content": "Profil {0} je zahrnutý v jedné nebo více sadách zásad. Pokud profil {0} odstraníte, nebudete už jej moct přiřazovat prostřednictvím těchto sad zásad. Chcete jej přesto odstranit?",
+ "contentWithError": "{0} by mohla být zahrnutá v jedné nebo více sadách zásad. Pokud {0} odstraníte, nebudete už ji moct přiřazovat prostřednictvím těchto sad zásad. Chcete ji přesto odstranit?",
+ "header": "Opravdu chcete odstranit toto omezení?"
+ },
+ "DeviceLimit": {
+ "description": "Zadejte maximální počet zařízení, která uživatel může zaregistrovat.",
+ "header": "Omezení limitů počtů zařízení",
+ "info": "Definujte, kolik zařízení může každý uživatel zaregistrovat."
+ },
+ "DeviceType": {
+ "VersionValidation": {
+ "aOSP": "Musí být 1.0 nebo vyšší.",
+ "android": "Zadejte platné číslo verze. Příklady: 5.0, 5.5.1, 6.0.0.1",
+ "androidForWork": "Zadejte platné číslo verze. Příklady: 5.0, 5.1.1",
+ "iOS": "Zadejte platné číslo verze. Příklady: 9.0, 10.0, 9.0.2",
+ "mac": "Zadejte platné číslo verze. Příklady: 10, 10.10, 10.10.1",
+ "min": "Minimum nemůže být menší než {0}.",
+ "minMax": "Minimální verze nemůže být větší než maximální verze.",
+ "windows": "Musí být 10.0 nebo vyšší. Pokud chcete povolit zařízení 8.1, nechejte pole prázdné.",
+ "windowsMobile": "Musí být 10.0 nebo vyšší. Pokud chcete povolit zařízení 8.1, nechejte pole prázdné."
+ },
+ "allPlatformsBlocked": "Všechny platformy zařízení jsou zablokované. Pokud chcete povolit konfiguraci platforem, povolte jejich registraci.",
+ "blockManufacturerPlaceHolder": "Název výrobce",
+ "blockManufacturersHeader": "Zablokovaní výrobci",
+ "cannotRestrict": "Omezení se nepodporují.",
+ "configurationDescription": "Zadejte omezení konfigurace platformy, která se musí splnit, aby se zařízení zaregistrovalo. Po registraci můžete zařízení omezovat pomocí zásad dodržování předpisů. Verze definujte jako hlavníverze.podverze.build. Omezení verzí platí jenom pro zařízení registrovaná na Portálu společnosti. Intune standardně klasifikuje zařízení jako v osobním vlastnictví. Pokud se zařízení mají klasifikovat jako ve vlastnictví firmy, je nutná další akce.",
+ "configurationDescriptionLabel": "Další informace o nastavení omezení registrace",
+ "configurations": "Konfigurovat platformy",
+ "deviceManufacturer": "Výrobce zařízení",
+ "header": "Omezení typů zařízení",
+ "info": "Definujte, které platformy, verze a typy správy se můžou registrovat.",
+ "manufacturer": "Výrobce",
+ "max": "Maximum",
+ "maxVersion": "Maximální verze",
+ "min": "Minimum",
+ "minVersion": "Minimální verze",
+ "newPlatforms": "Povolili jste nové platformy. Zvažte možnost aktualizovat konfigurace platforem.",
+ "personal": "V osobním vlastnictví",
+ "platform": "Platforma",
+ "platformDescription": "Registraci můžete povolit pro následující platformy. Blokujte jenom ty platformy, které nebudete podporovat. Povolené platformy se dají konfigurovat prostřednictvím dalších omezení registrace.",
+ "platformSettings": "Nastavení platformy",
+ "platforms": "Vyberte platformy.",
+ "platformsSelected": "Počet vybraných platforem: {0}",
+ "type": "Typ",
+ "versions": "verze",
+ "versionsRange": "Povolit rozsah min/max:",
+ "windowsTooltip": "Omezí registrace prostřednictvím správy mobilních zařízení. Neomezí instalaci agentů počítačů. Podporují se jen verze Windows 10 a Windows 11. Pokud chcete povolit Windows 8.1, nechejte verze prázdné."
+ },
+ "Priority": {
+ "saved": "Priority omezení se úspěšně uložily."
+ },
+ "Row": {
+ "announce": "Priorita: {0}, název: {1}, přiřazené: {2}"
+ },
+ "Table": {
+ "deployed": "Nasazeno",
+ "name": "Název",
+ "priority": "Priorita"
},
- "block": "Označit zařízení jako nevyhovující",
- "lockDevice": "Uzamknout zařízení (místní akce)",
- "lockDeviceWithPasscode": "Uzamknout zařízení (místní akce)",
- "noAction": "Žádná akce",
- "noActionRow": "Žádné akce. Pokud chcete přidat akci, vyberte Přidat.",
- "pushNotification": "Poslat nabízené oznámení koncovému uživateli",
- "remoteLock": "Vzdáleně uzamknout zařízení, které nedodržuje předpisy",
- "removeSourceAccessProfile": "Odebrat zdrojový profil přístupu",
- "retire": "Vyřadit (z provozu) zařízení, která nedodržují předpisy",
- "wipe": "Vymazat",
- "emailNotification": "Odeslat e-mail koncovému uživateli"
- },
- "WIPPinRequirements": {
- "WipLowercaseCharacterPinRequirements": {
- "allow": "Povolit používání malých písmen v PIN kódu",
- "notAllow": "Nepovolit používání malých písmen v PIN kódu",
- "requireAtLeastOne": "Vyžadovat v PIN kódu aspoň jedno malé písmeno"
- },
- "WipSpecialCharacterPinRequirements": {
- "allow": "Povolit používání speciálních znaků v PIN kódu",
- "notAllow": "Nepovolit používání speciálních znaků v PIN kódu",
- "requireAtLeastOne": "Vyžadovat v PIN kódu aspoň jeden speciální znak"
- },
- "WipUppercaseCharacterPinRequirements": {
- "allow": "Povolit používání velkých písmen v PIN kódu",
- "notAllow": "Nepovolit používání velkých písmen v PIN kódu",
- "requireAtLeastOne": "Vyžadovat v PIN kódu aspoň jedno velké písmeno"
- }
- }
+ "Type": {
+ "limit": "Omezení limitu počtu zařízení",
+ "type": "Omezení typu zařízení"
+ },
+ "allUsers": "Všichni uživatelé",
+ "androidRestrictions": "Omezení pro Android",
+ "create": "Vytvořit omezení",
+ "defaultLimitDescription": "Toto je výchozí omezení limitu počtu zařízení, které se s nejnižší prioritou používá pro všechny uživatele bez ohledu na členství ve skupině.",
+ "defaultTypeDescription": "Toto je výchozí omezení typu zařízení, které se s nejnižší prioritou používá pro všechny uživatele bez ohledu na členství ve skupině.",
+ "defaultWhfbDescription": "Toto je výchozí konfigurace Windows Hello pro firmy, která se s nejnižší prioritou používá pro všechny uživatele bez ohledu na členství ve skupině.",
+ "deleteMessage": "Ovlivnění uživatelé se omezí dalším přiřazeným omezením s nejvyšší prioritou. Pokud nejsou přiřazená žádná další omezení, použije se výchozí omezení.",
+ "deleteTitle": "Opravdu chcete odstranit omezení {0}?",
+ "descriptionHint": "Krátký odstavec s popisem využití v organizaci nebo úrovně omezení charakterizované nastavením omezení",
+ "edit": "Upravit omezení",
+ "info": "Zařízení musí dodržovat omezení registrace s nejvyšší prioritou, která se přiřadila jeho uživateli. Pokud chcete změnit prioritu omezení zařízení, můžete omezení přetáhnout. Výchozí omezení mají pro všechny uživatele nejnižší prioritu a spravují registrace bez uživatelů. Dají se upravit, ale ne odstranit.",
+ "iosRestrictions": "Omezení pro iOS",
+ "mDM": "MDM",
+ "macRestrictions": "Omezení pro macOS",
+ "maxVersion": "Maximální verze",
+ "minVersion": "Minimální verze",
+ "nameHint": "Toto bude primární atribut viditelný při identifikaci sady omezení.",
+ "noAssignmentsStatusBar": "Přiřaďte omezení k aspoň jedné skupině. Klikněte na Vlastnosti.",
+ "notFound": "Omezení se nenašlo. Možná už se odstranilo.",
+ "personallyOwned": "Zařízení v osobním vlastnictví",
+ "restriction": "Omezení",
+ "restrictionLowerCase": "omezení",
+ "restrictionType": "Typ omezení",
+ "selectType": "Vyberte typ omezení.",
+ "selectValidation": "Vyberte prosím platformu.",
+ "typeHint": "Pokud chcete omezit vlastnosti zařízení, zvolte Omezení typu zařízení. Pokud chcete omezit počet zařízení na jednoho uživatele, zvolte Omezení limitu počtu zařízení.",
+ "typeRequired": "Typ omezení je povinný.",
+ "winPhoneRestrictions": "Omezení pro Windows Phone",
+ "windowsRestrictions": "Omezení pro Windows"
+ },
+ "Titles": {
+ "ChromeOs": {
+ "devices": "Zařízení s operačním systémem Chrome"
+ },
+ "ManagedDesktop": {
+ "adminContacts": "Kontakty správce",
+ "appPackaging": "Balení aplikace",
+ "devices": "Zařízení",
+ "feedback": "Zpětná vazba",
+ "gettingStarted": "Začínáme",
+ "messages": "Zprávy",
+ "onlineResources": "Prostředky online",
+ "serviceRequests": "Žádosti o služby",
+ "settings": "Nastavení",
+ "tenantEnrollment": "Registrace tenanta"
+ },
+ "actions": "Akce při nedodržení předpisů",
+ "advancedExchangeSettings": "Nastavení Exchange Online",
+ "advancedThreatProtection": "Microsoft Defender pro koncový bod",
+ "allApps": "Všechny aplikace",
+ "allDevices": "Všechna zařízení",
+ "androidFotaDeployments": "Nasazení FOTA pro Android",
+ "appBundles": "Sady prostředků aplikace",
+ "appCategories": "Kategorie aplikací",
+ "appConfigPolicies": "Zásady konfigurace aplikací",
+ "appInstallStatus": "Stav instalace aplikace",
+ "appLicences": "Licence aplikací",
+ "appProtectionPolicies": "Zásady ochrany aplikací",
+ "appProtectionStatus": "Stav ochrany aplikace",
+ "appSelectiveWipe": "Selektivní vymazání aplikace",
+ "appleVppTokens": "Tokeny Apple VPP",
+ "apps": "Aplikace",
+ "assign": "Přiřazení",
+ "assignedPermissions": "Přiřazená oprávnění",
+ "assignedRoles": "Přiřazené role",
+ "autopilotDeploymentReport": "Nasazení Autopilot (Preview)",
+ "brandingAndCustomization": "Přizpůsobení",
+ "cartProfiles": "Profily košíků",
+ "certificateConnectors": "Konektory certifikátů",
+ "chromeEnterprise": "Chrome Enterprise",
+ "compliancePolicies": "Zásady dodržování předpisů",
+ "complianceScriptManagement": "Skripty",
+ "complianceScriptManagementPreview": "Skripty (Preview)",
+ "complianceSettings": "Nastavení zásad dodržování předpisů",
+ "conditionStatements": "Příkazy podmínek",
+ "conditions": "Umístění",
+ "configMgr": "Microsoft Endpoint Configuration Manager",
+ "configurationProfiles": "Konfigurační profily",
+ "configurationProfilesPreview": "Konfigurační profily (Preview)",
+ "connectorsAndTokens": "Konektory a tokeny",
+ "corporateDeviceIdentifiers": "Identifikátory podnikových zařízení",
+ "customAttributes": "Vlastní atributy",
+ "customNotifications": "Vlastní oznámení",
+ "deploymentSettings": "Nastavení nasazení",
+ "derivedCredentials": "Odvozené přihlašovací údaje",
+ "deviceActions": "Akce zařízení",
+ "deviceCategories": "Kategorie zařízení",
+ "deviceCleanUp": "Pravidla čištění zařízení",
+ "deviceEnrollmentManagers": "Správci registrace zařízení",
+ "deviceExecutionStatus": "Stav zařízení",
+ "deviceLimitEnrollmentRestrictions": "Omezení limitu zařízení pro registraci",
+ "deviceTypeEnrollmentRestrictions": "Omezení platformy zařízení pro registraci",
+ "devices": "Zařízení",
+ "discoveredApps": "Zjištěné aplikace",
+ "embeddedSIM": "Mobilní profily eSIM (Preview)",
+ "enrollDevices": "Registrovat zařízení",
+ "enrollmentFailures": "Neúspěšné registrace",
+ "enrollmentNotifications": "Oznámení o registraci (Preview)",
+ "enrollmentRestrictions": "Omezení registrace",
+ "exchangeActiveSync": "Exchange ActiveSync",
+ "exchangeServiceConnectors": "Konektory služby Exchange",
+ "failuresForFeatureUpdates": "Selhání aktualizace funkcí (Preview)",
+ "failuresForQualityUpdates": "Chyby urychlené aktualizace systému Windows (Preview)",
+ "featureFlighting": "Publikování testovacích verzí funkcí",
+ "featureUpdateDeployments": "Aktualizace funkcí pro systém Windows 10 a novější (Preview)",
+ "flighting": "Publikování testovacích verzí",
+ "fotaUpdate": "Aktualizace FOTA",
+ "groupPolicy": "Šablony pro správu",
+ "groupPolicyAnalytics": "Analýza zásad skupiny",
+ "helpSupport": "Nápověda a podpora",
+ "helpSupportReplacement": "Nápověda a podpora ({0})",
+ "iOSAppProvisioning": "Zřizovací profily aplikací pro iOS",
+ "incompleteUserEnrollments": "Nedokončené registrace uživatele",
+ "intuneRemoteAssistance": "Vzdálená nápověda (Preview)",
+ "iosUpdates": "Aktualizovat zásady pro iOS/iPadOS",
+ "legacyPcManagement": "Starší verze správy počítače",
+ "macOSSoftwareUpdate": "Zásady aktualizace pro macOS",
+ "macOSSoftwareUpdateAccountSummaries": "Stav instalace pro zařízení s macOSem",
+ "macOSSoftwareUpdateCategorySummaries": "Souhrn aktualizací softwaru",
+ "macOSSoftwareUpdateStateSummaries": "aktualizace",
+ "managedGooglePlay": "Spravovaný obchod Google Play",
+ "msfb": "Microsoft Store pro firmy",
+ "myPermissions": "Moje oprávnění",
+ "notifications": "Oznámení",
+ "officeApps": "Aplikace Office",
+ "officeProPlusPolicies": "Zásady pro aplikace Office",
+ "onPremise": "Místní",
+ "onPremisesConnector": "Exchange ActiveSync On-premises Connector",
+ "onPremisesDeviceAccess": "Zařízení Exchange ActiveSync",
+ "onPremisesManageAccess": "Přístup k místnímu Exchangi",
+ "outOfDateIosDevices": "Chyby instalace pro zařízení s iOSem",
+ "overview": "Přehled",
+ "partnerDeviceManagement": "Správa partnerského zařízení",
+ "perUpdateRingDeploymentState": "Stav nasazení podle kruhu aktualizace",
+ "permissions": "Oprávnění",
+ "platformApps": "Počet aplikací: {0}",
+ "platformDevices": "Zařízení {0}",
+ "platformEnrollment": "Registrace {0}",
+ "policies": "Zásady",
+ "previewMDMDevices": "Všechna spravovaná zařízení (Preview)",
+ "profiles": "Profily",
+ "properties": "Vlastnosti",
+ "reports": "Sestavy",
+ "retireNoncompliantDevices": "Vyřadit (z provozu) zařízení nesplňující požadavky",
+ "retireNoncompliantDevicesPreview": "Retire noncompliant devices (preview)",
+ "role": "Role",
+ "scriptManagement": "Skripty",
+ "securityBaselines": "Standardní hodnoty zabezpečení",
+ "serviceToServiceConnector": "Konektor Exchange Online",
+ "shellScripts": "Skripty prostředí",
+ "teamViewerConnector": "Konektor pro TeamViewer",
+ "telecomeExpenseManagement": "Služba TEM (Telecom Expense Management)",
+ "tenantAdmin": "Správce tenanta",
+ "tenantAdministration": "Správa tenanta",
+ "termsAndConditions": "Podmínky a ujednání",
+ "titles": "Názvy",
+ "troubleshootSupport": "Řešení problémů a podpora",
+ "user": "Uživatel",
+ "userExecutionStatus": "Stav uživatele",
+ "warranty": "Dodavatelé se zárukou",
+ "wdacSupplementalPolicies": "Doplňkové zásady režimu S",
+ "windows10DriverUpdate": "Aktualizace ovladačů pro systém Windows 10 a novější (Preview)",
+ "windows10QualityUpdate": "Aktualizace pro zvýšení kvality pro systém Windows 10 a novější (Preview)",
+ "windows10UpdateRings": "Aktualizační okruhy pro Windows 10 a novější",
+ "windows10XPolicyFailures": "Selhání zásad Windows 10X",
+ "windowsEnterpriseCertificate": "Certifikát Windows Enterprise",
+ "windowsManagement": "Powershellové skripty",
+ "windowsSideLoadingKeys": "Klíče pro instalaci bokem ve Windows",
+ "windowsSymantecCertificate": "Certifikát Windows DigiCert",
+ "windowsThreatReport": "Stav agenta hrozeb"
+ },
+ "ScopeTypes": {
+ "allDevices": "Všechna zařízení",
+ "allUsers": "Všichni uživatelé",
+ "allUsersAndDevices": "Všichni uživatelé a všechna zařízení",
+ "selectedGroups": "Vybrané skupiny"
+ },
+ "OfficeApplicationType": {
+ "access": "Access",
+ "bing": "Microsoft Search jako výchozí",
+ "excel": "Excel",
+ "groove": "OneDrive (Groove)",
+ "lync": "Skype pro firmy",
+ "oneDrive": "OneDrive Desktop",
+ "oneNote": "OneNote",
+ "outlook": "Outlook",
+ "powerPoint": "PowerPoint",
+ "publisher": "Publisher",
+ "teams": "Teams",
+ "word": "Word"
+ },
+ "ApplicableDeviceType": {
+ "iPad": "iPad",
+ "iPhoneAndIPod": "iPhone a iPod"
+ },
+ "Assignment": {
+ "AutoUpdateMode": {
+ "default": "Výchozí",
+ "header": "Priorita aktualizace",
+ "postponed": "Odloženo",
+ "priority": "Vysoká priorita"
+ },
+ "DeliveryOptimizationPriority": {
+ "backgroundNormal": "Pozadí",
+ "displayText": "Stahování obsahu v {0}",
+ "foreground": "Popředí",
+ "header": "Priorita optimalizace doručení"
+ },
+ "RestartGracePeriod": {
+ "allowSnooze": "Umožnit uživateli odložit oznámení o restartování",
+ "countdownDialog": "Vyberte, jak dlouho před restartováním se má zobrazit dialogové okno odpočtu do restartování (minuty).",
+ "durationInMinutes": "Období odkladu restartování zařízení (minuty)",
+ "snoozeDurationInMinutes": "Vyberte délku odkladu (minuty)"
+ },
+ "SoftwareInstallationTime": {
+ "TimeZone": {
+ "label": "Časové pásmo",
+ "local": "Časové pásmo zařízení",
+ "utc": "UTC"
+ },
+ "dateAndTimeLabel": "Datum a čas",
+ "deadlineTimeColumnLabel": "Konečný termín instalace",
+ "deadlineTimeDatePickerErrorMessage": "Vybrané datum musí nastat později než datum k dispozici",
+ "deadlineTimeLabel": "Konečný termín instalace aplikace",
+ "defaultTime": "Co nejdříve",
+ "infoText": "Pokud neurčíte čas dostupnosti níže, bude tato aplikace k dispozici ihned po nasazení. Pokud se jedná o požadovanou aplikaci, můžete zadat konečný termín instalace.",
+ "specificTime": "Určité datum a čas",
+ "startTimeColumnLabel": "Dostupnost",
+ "startTimeDatePickerErrorMessage": "Vybrané datum musí nastat před datem konečného termínu",
+ "startTimeLabel": "Dostupnost aplikace"
+ },
+ "restartGracePeriodHeader": "Období odkladu restartování",
+ "restartGracePeriodLabel": "Období odkladu restartování zařízení",
+ "summaryTitle": "Činnost koncového uživatele"
+ },
+ "EnrollmentType": {
+ "devicesWithEnrollment": "Spravovaná zařízení",
+ "devicesWithoutEnrollment": "Spravované aplikace"
+ },
+ "PolicySet": {
+ "appManagement": "Správa aplikací",
+ "assignments": "Přiřazení",
+ "basics": "Základy",
+ "deviceEnrollment": "Registrace zařízení",
+ "deviceManagement": "Správa zařízení",
+ "scopeTags": "Značky oboru",
+ "appConfigurationTitle": "Zásady konfigurace aplikací",
+ "appProtectionTitle": "Zásady ochrany aplikací",
+ "appTitle": "Aplikace",
+ "iOSAppProvisioningTitle": "Zřizovací profily aplikací pro iOS",
+ "deviceLimitRestrictionTitle": "Omezení limitů počtů zařízení",
+ "deviceTypeRestrictionTitle": "Omezení typů zařízení",
+ "enrollmentStatusSettingTitle": "Stránky stavu registrace",
+ "windowsAutopilotDeploymentProfileTitle": "Profily nasazení Windows Autopilot",
+ "deviceComplianceTitle": "Zásady dodržování předpisů zařízením",
+ "deviceConfigurationTitle": "Profily konfigurace zařízení",
+ "powershellScriptTitle": "Powershellové skripty"
+ },
+ "AzureIAMCommon": {
+ "CountryNames": {
+ "countryNameNR": "Nauru",
+ "countryNameBH": "Bahrajn",
+ "countryNameZA": "Jihoafrická republika",
+ "countryNameJO": "Jordánsko",
+ "countryNameSD": "Súdán",
+ "countryNameNU": "Niue",
+ "countryNameCZ": "Česká republika",
+ "countryNameLT": "Litva",
+ "countryNameTK": "Tokelau",
+ "countryNameEC": "Ekvádor",
+ "countryNameVU": "Vanuatu",
+ "countryNameUG": "Uganda",
+ "countryNameLI": "Lichtenštejnsko",
+ "countryNameHK": "Hongkong – zvláštní administrativní oblast",
+ "countryNameGH": "Ghana",
+ "countryNameSA": "Saúdská Arábie",
+ "countryNamePG": "Papua-Nová Guinea",
+ "countryNameBW": "Botswana",
+ "countryNameDG": "Diego Garcia",
+ "countryNameIN": "Indie",
+ "countryNameHN": "Honduras",
+ "countryNameRO": "Rumunsko",
+ "countryNameKZ": "Kazachstán",
+ "countryNameLC": "Svatá Lucie",
+ "countryNameGE": "Gruzie",
+ "countryNameTT": "Trinidad a Tobago",
+ "countryNameMP": "Severní Mariany",
+ "countryNameMV": "Maledivy",
+ "countryNameFI": "Finsko",
+ "countryNameNO": "Norsko",
+ "countryNameEE": "Estonsko",
+ "countryNameVE": "Venezuela",
+ "countryNameUZ": "Uzbekistán",
+ "countryNameME": "Černá Hora",
+ "countryNameTJ": "Tádžikistán",
+ "countryNameAW": "Aruba",
+ "countryNameFR": "Francie",
+ "countryNameOM": "Omán",
+ "countryNameAO": "Angola",
+ "countryNameIT": "Itálie",
+ "countryNameAZ": "Ázerbájdžán",
+ "countryNameKG": "Kyrgyzstán",
+ "countryNameWF": "Wallis a Futuna",
+ "countryNameTL": "Timor-Leste",
+ "countryNameFK": "Falklandy (Malvíny)",
+ "countryNameGY": "Guyana",
+ "countryNameSS": "Jižní Súdán",
+ "countryNameMM": "Myanmar",
+ "countryNameHT": "Haiti",
+ "countryNameSY": "Sýrie",
+ "countryNameMD": "Moldavsko",
+ "countryNameVC": "Svatý Vincenc a Grenadiny",
+ "countryNameID": "Indonésie",
+ "countryNameRE": "Réunion",
+ "countryNameER": "Eritrea",
+ "countryNameMK": "Severní Makedonie",
+ "countryNameTG": "Togo",
+ "countryNamePF": "Francouzská Polynésie",
+ "countryNameKY": "Kajmanské ostrovy",
+ "countryNameIO": "Britské indickooceánské území",
+ "countryNameRU": "Rusko",
+ "countryNameMA": "Maroko",
+ "countryNameAU": "Austrálie",
+ "countryNameBO": "Bolívie",
+ "countryNameVA": "Svatý stolec (Vatikán)",
+ "countryNameVG": "Britské Panenské ostrovy",
+ "countryNameFM": "Mikronésie",
+ "countryNameAQ": "Antarktida",
+ "countryNameZM": "Zambie",
+ "countryNameBR": "Brazílie",
+ "countryNameIS": "Island",
+ "countryNamePE": "Peru",
+ "countryNameBG": "Bulharsko",
+ "countryNamePR": "Portoriko",
+ "countryNameGI": "Gibraltar",
+ "countryNameBS": "Bahamy",
+ "countryNameJE": "Jersey",
+ "countryNameMO": "Macao – zvláštní administrativní oblast",
+ "countryNameRW": "Rwanda",
+ "countryNameAS": "Americká Samoa",
+ "countryNameBQ": "Bonaire, Svatý Eustach a Saba",
+ "countryNameMF": "Svatý Martin (Francie)",
+ "countryNameTM": "Turkmenistán",
+ "countryNameML": "Mali",
+ "countryNameTO": "Tonga",
+ "countryNameNC": "Nová Kaledonie",
+ "countryNameAC": "Ascensión",
+ "countryNameBN": "Brunej",
+ "countryNameBD": "Bangladéš",
+ "countryNameMW": "Malawi",
+ "countryNameGM": "Gambie",
+ "countryNameGA": "Gabon",
+ "countryNameCA": "Kanada",
+ "countryNameSH": "Svatá Helena",
+ "countryNameYT": "Mayotte",
+ "countryNameMN": "Mongolsko",
+ "countryNamePA": "Panama",
+ "countryNameCM": "Kamerun",
+ "countryNameNE": "Niger",
+ "countryNameCW": "Curaçao",
+ "countryNameJP": "Japonsko",
+ "countryNameCY": "Kypr",
+ "countryNameCD": "Konžská demokratická republika",
+ "countryNameTN": "Tunisko",
+ "countryNameTR": "Turecko",
+ "countryNameWS": "Samoa",
+ "countryNameSE": "Švédsko",
+ "countryNameXK": "Kosovo",
+ "countryNameKH": "Kambodža",
+ "countryNamePL": "Polsko",
+ "countryNameDZ": "Alžírsko",
+ "countryNameLR": "Libérie",
+ "countryNameSO": "Somálsko",
+ "countryNameDM": "Dominika",
+ "countryNameEG": "Egypt",
+ "countryNameGF": "Francouzská Guyana",
+ "countryNameNZ": "Nový Zéland",
+ "countryNamePS": "Palestinská samospráva",
+ "countryNameIL": "Izrael",
+ "countryNameSL": "Sierra Leone",
+ "countryNameGR": "Řecko",
+ "countryNameNG": "Nigérie",
+ "countryNameMR": "Mauritánie",
+ "countryNameVI": "Americké Panenské ostrovy",
+ "countryNameGQ": "Rovníková Guinea",
+ "countryNameMX": "Mexiko",
+ "countryNameDJ": "Džibutsko",
+ "countryNameGN": "Guinea",
+ "countryNameCN": "Čína",
+ "countryNameMZ": "Mosambik",
+ "countryNameBV": "Bouvetův ostrov",
+ "countryNameNF": "Norfolk",
+ "countryNameTZ": "Tanzanie",
+ "countryNameAI": "Anguilla",
+ "countryNameGS": "Jižní Georgie a Jižní Sandwichovy ostrovy",
+ "countryNameRS": "Srbsko",
+ "countryNameCC": "Kokosové ostrovy",
+ "countryNameNA": "Namibie",
+ "countryNameDE": "Německo",
+ "countryNameCG": "Konžská republika",
+ "countryNameKW": "Kuvajt",
+ "countryNameMH": "Marshallovy ostrovy",
+ "countryNameVN": "Vietnam",
+ "countryNameBY": "Bělorusko",
+ "countryNameMY": "Malajsie",
+ "countryNameST": "Svatý Tomáš a Princův ostrov",
+ "countryNameLS": "Lesotho",
+ "countryNameBI": "Burundi",
+ "countryNameTD": "Čad",
+ "countryNameCX": "Vánoční ostrov",
+ "countryNameIR": "Írán",
+ "countryNameTV": "Tuvalu",
+ "countryNameGW": "Guinea-Bissau",
+ "countryNameUA": "Ukrajina",
+ "countryNameCU": "Kuba",
+ "countryNameCO": "Kolumbie",
+ "countryNameNI": "Nikaragua",
+ "countryNameHR": "Chorvatsko",
+ "countryNameSC": "Seychely",
+ "countryNameNL": "Nizozemsko",
+ "countryNameUM": "Menší odlehlé ostrovy Spojených států amerických",
+ "countryNameIM": "Ostrov Man",
+ "countryNameFJ": "Fidži",
+ "countryNameSR": "Surinam",
+ "countryNameGT": "Guatemala",
+ "countryNameSM": "San Marino",
+ "countryNameLA": "Laos",
+ "countryNameGB": "Spojené království",
+ "countryNameBB": "Barbados",
+ "countryNameSI": "Slovinsko",
+ "countryNameAM": "Arménie",
+ "countryNameAR": "Argentina",
+ "countryNamePM": "Saint-Pierre a Miquelon",
+ "countryNameTF": "Francouzská jižní a antarktická území",
+ "countryNameDO": "Dominikánská republika",
+ "countryNameZW": "Zimbabwe",
+ "countryNameMQ": "Martinik",
+ "countryNamePT": "Portugalsko",
+ "countryNameCF": "Středoafrická republika",
+ "countryNameBE": "Belgie",
+ "countryNameKM": "Komory",
+ "countryNameLY": "Libye",
+ "countryNameIE": "Irsko",
+ "countryNameKP": "Severní Korea",
+ "countryNameGG": "Guernsey",
+ "countryNameSK": "Slovensko",
+ "countryNameTC": "Turks a Caicos",
+ "countryNameNP": "Nepál",
+ "countryNameBF": "Burkina Faso",
+ "countryNameYE": "Jemen",
+ "countryNameBA": "Bosna a Hercegovina",
+ "countryNameGP": "Guadeloupe",
+ "countryNameMS": "Montserrat",
+ "countryNameCL": "Chile",
+ "countryNameIQ": "Irák",
+ "countryNameSJ": "Špicberky a Jan Mayen",
+ "countryNameAX": "Ålandy",
+ "countryNameKE": "Keňa",
+ "countryNameGU": "Guam",
+ "countryNameBM": "Bermudy",
+ "countryNameFO": "Faerské ostrovy",
+ "countryNameBL": "Svatý Bartoloměj",
+ "countryNameLB": "Libanon",
+ "countryNameJM": "Jamajka",
+ "countryNameAF": "Afghánistán",
+ "countryNameES": "Španělsko",
+ "countryNameMC": "Monako",
+ "countryNameSG": "Singapur",
+ "countryNameAL": "Albánie",
+ "countryNameSN": "Senegal",
+ "countryNameSZ": "Svazijsko",
+ "countryNameBZ": "Belize",
+ "countryNameCI": "Côte d’Ivoire (Pobřeží slonoviny)",
+ "countryNameTW": "Tchaj-wan",
+ "countryNameUY": "Uruguay",
+ "countryNameCK": "Cookovy ostrovy",
+ "countryNameTH": "Thajsko",
+ "countryNameHM": "Heardův ostrov a McDonaldovy ostrovy",
+ "countryNameGD": "Grenada",
+ "countryNameUS": "Spojené státy",
+ "countryNameAT": "Rakousko",
+ "countryNameKR": "Korejská republika",
+ "countryNamePK": "Pákistán",
+ "countryNameDK": "Dánsko",
+ "countryNameSV": "Salvador",
+ "countryNamePW": "Palau",
+ "countryNameET": "Etiopie",
+ "countryNameMG": "Madagaskar",
+ "countryNameCR": "Kostarika",
+ "countryNameLU": "Lucembursko",
+ "countryNameQA": "Katar",
+ "countryNameBT": "Bhútán",
+ "countryNameSB": "Šalamounovy ostrovy",
+ "countryNameAE": "Spojené arabské emiráty",
+ "countryNameAD": "Andorra",
+ "countryNameCV": "Cabo Verde",
+ "countryNameAG": "Antigua a Barbuda",
+ "countryNameMU": "Mauricius",
+ "countryNameHU": "Maďarsko",
+ "countryNameSX": "Svatý Martin (Nizozemsko)",
+ "countryNameCH": "Švýcarsko",
+ "countryNamePN": "Pitcairnovy ostrovy",
+ "countryNameGL": "Grónsko",
+ "countryNamePH": "Filipíny",
+ "countryNameMT": "Malta",
+ "countryNameKN": "Svatý Kryštof a Nevis",
+ "countryNameLK": "Srí Lanka",
+ "countryNameKI": "Kiribati",
+ "countryNameBJ": "Benin",
+ "countryNameLV": "Lotyšsko",
+ "countryNamePY": "Paraguay"
+ }
+ }
}
diff --git a/Documentation/Strings-de.json b/Documentation/Strings-de.json
index 4b50ab6..b221548 100644
--- a/Documentation/Strings-de.json
+++ b/Documentation/Strings-de.json
@@ -1,1842 +1,4 @@
{
- "InstallContextType": {
- "device": "Gerät",
- "deviceContext": "Gerätekontext",
- "user": "Benutzer",
- "userContext": "Benutzerkontext"
- },
- "WipPolicySettings": {
- "addNetworkBoundary": "Netzwerkgrenze hinzufügen",
- "addNetworkBoundaryButton": "Netzwerkgrenze hinzufügen...",
- "allowWindowsSearch": "Die Suche nach verschlüsselten Daten und Store-Apps durch Windows Search zulassen",
- "authoritativeIpRanges": "Liste der Unternehmens-IP-Bereiche ist autoritativ (keine automatische Erkennung)",
- "authoritativeProxyServers": "Liste der Unternehmensproxyserver ist autoritativ (keine automatische Erkennung)",
- "boundaryType": "Grenztyp",
- "cloudResources": "Cloudressourcen",
- "corporateIdentity": "Unternehmensidentität",
- "dataRecoveryCert": "Laden Sie ein DRA-Zertifikat hoch, um die Wiederherstellung verschlüsselter Daten zuzulassen.",
- "editNetworkBoundary": "Netzwerkgrenze bearbeiten",
- "enrollmentState": "Registrierungsstatus",
- "iPv4Ranges": "IPv4-Bereiche",
- "iPv6Ranges": "IPv6-Bereiche",
- "internalProxyServers": "Interne Proxyserver",
- "maxInactivityTime": "Die maximal zulässige Zeit (in Minuten) nach dem Wechsel des Gerät in den Leerlauf, bis das Gerät durch die PIN oder ein Kennwort gesperrt wird",
- "maxPasswordAttempts": "Zulässige Anzahl von Authentifizierungsfehlern, bevor das Gerät zurückgesetzt wird",
- "mdmDiscoveryUrl": "URL für MDM-Ermittlung",
- "mdmRequiredSettingsInfo": "Diese Richtlinie gilt nur für die Windows 10 Anniversary-Edition und höher. Diese Richtlinie verwendet Windows Information Protection (WIP) zum Anwenden von Schutz.",
- "minimumPinLength": "Legen Sie die für die PIN erforderliche Mindestanzahl an Zeichen fest.",
- "name": "Name",
- "networkBoundariesGridEmptyText": "Hier werden alle von Ihnen hinzugefügten Netzwerkgrenzen angezeigt.",
- "networkBoundary": "Netzwerkgrenze",
- "networkDomainNames": "Netzwerkdomänen",
- "neutralResources": "Neutrale Ressourcen",
- "passportForWork": "Verwenden Sie Windows Hello for Business als Methode zum Anmelden bei Windows.",
- "pinExpiration": "Geben Sie den Zeitraum (in Tagen) an, für den eine PIN verwendet werden kann, bevor das System den Benutzer zur Änderung auffordert.",
- "pinHistory": "Geben Sie die Anzahl der letzten PINs an, die einem Benutzerkonto zugeordnet und nicht wiederverwendet werden können.",
- "pinLowercaseLetters": "Konfigurieren Sie die Verwendung von Kleinbuchstaben in der Windows Hello for Business-PIN.",
- "pinSpecialCharacters": "Konfigurieren Sie die Verwendung von Sonderzeichen in der Windows Hello for Business-PIN.",
- "pinUppercaseLetters": "Konfigurieren Sie die Verwendung von Großbuchstaben in der Windows Hello for Business-PIN.",
- "protectUnderLock": "App-Zugriff auf Unternehmensdaten verhindern, wenn das Gerät gesperrt ist (gilt nur für Windows 10 Mobile)",
- "protectedDomainNames": "Geschützte Domänen",
- "proxyServers": "Proxyserver",
- "requireAppPin": "App-PIN deaktivieren, wenn Geräte-PIN verwaltet wird",
- "requiredSettings": "Erforderliche Einstellungen",
- "requiredSettingsInfo": "Durch das Ändern des Bereichs oder das Entfernen dieser Richtlinie werden die Unternehmensdaten entschlüsselt.",
- "revokeOnMdmHandoff": "Zugriff auf geschützte Daten widerrufen, wenn das Gerät bei MDM registriert wird",
- "revokeOnUnenroll": "Beim Aufheben der Registrierung Verschlüsselungsschlüssel widerrufen",
- "rmsTemplateForEdp": "Geben Sie die Vorlagen-ID zur Verwendung für Azure RMS an.",
- "showWipIcon": "Zeigen Sie das Datenschutzsymbol des Unternehmens an.",
- "type": "Typ",
- "useRmsForWip": "Verwenden Sie Azure RMS für WIP.",
- "value": "Wert",
- "weRequiredSettingsInfo": "Diese Richtlinie gilt nur für Windows 10 Creators Update und höher. Diese Richtlinie verwendet Windows Information Protection (WIP) und Windows MAM zum Anwenden von Schutz.",
- "wipProtectionMode": "Windows Information Protection-Modus",
- "withEnrollment": "Mit Registrierung",
- "withoutEnrollment": "Ohne Registrierung"
- },
- "EdgeAppConfig": {
- "AllowedURLs": {
- "title": "Zulässige URLs",
- "tooltip": "Geben Sie die Websites an, auf die Ihre Benutzer im Arbeitskontext zugreifen dürfen. Andere Websites sind nicht zulässig. Sie können entweder eine Liste der zulässigen oder der blockierten Websites konfigurieren, aber nicht beides."
- },
- "ApplicationProxyRedirection": {
- "header": "Anwendungsproxy",
- "title": "Anwendungsproxyumleitung",
- "tooltip": "Hiermit aktivieren Sie die App-Proxyumleitung, um Benutzern den Zugriff auf Unternehmenslinks und lokale Web-Apps zu erteilen."
- },
- "BlockedURLs": {
- "title": "Blockierte URLs",
- "tooltip": "Geben Sie die Websites an, die für Ihre Benutzer im Arbeitskontext blockiert sind. Alle anderen Websites sind zulässig. Sie können entweder eine Liste der zulässigen oder der blockierten Websites konfigurieren, aber nicht beides."
- },
- "Bookmarks": {
- "header": "Verwaltete Lesezeichen",
- "tooltip": "Geben Sie eine Liste der mit Lesezeichen versehenen URLs ein, die Ihren Benutzern bei der Verwendung von Microsoft Edge in ihrem Arbeitskontext zur Verfügung stehen.",
- "uRL": "URL"
- },
- "HomepageURL": {
- "header": "Verwaltete Homepage",
- "title": "URL-Verknüpfung zur Startseite",
- "tooltip": "Konfigurieren Sie eine URL-Verknüpfung zur Startseite, die Benutzern als erstes Symbol unterhalb der Suchleiste angezeigt wird, wenn sie in Microsoft Edge eine neue Registerkarte öffnen."
- },
- "PersonalContext": {
- "label": "Eingeschränkte Sites an persönlichen Kontext umleiten",
- "tooltip": "Konfigurieren Sie, ob Benutzer zu ihrem persönlichen Kontext wechseln dürfen, um eingeschränkte Websites zu öffnen."
- }
- },
- "AzureIAM": {
- "AdrsUserActionSelectionWarning": {
- "conditions": "Bedingungen, die eine Geräteregistrierung erfordern, sind mit der Benutzeraktion „Geräte registrieren oder beitreten“ nicht verfügbar.",
- "message": "In Richtlinien, die für die Benutzeraktion \"Geräte registrieren oder einbinden\" erstellt wurden, kann nur \"Multi-Faktor-Authentifizierung erforderlich\" festgelegt werden. {0}"
- },
- "AuthContext": {
- "Included": {
- "none": "Keine Cloud-Apps, Aktionen oder Authentifizierungskontexte ausgewählt.",
- "plural": "{0} Authentifizierungskontexte eingeschlossen",
- "singular": "1 Authentifizierungskontext eingeschlossen"
- },
- "InfoBlade": {
- "createTitle": "Authentifizierungskontext hinzufügen",
- "descPlaceholder": "Fügen Sie eine Beschreibung für den Authentifizierungskontext hinzu.",
- "modifyTitle": "Authentifizierungskontext ändern",
- "namePlaceholder": "Beispiele: vertrauenswürdiger Speicherort, vertrauenswürdiges Gerät, starke Autorisierung",
- "publishDesc": "Durch \"In Apps veröffentlichen\" wird der Authentifizierungskontext für Apps zur Verfügung gestellt und kann verwendet werden. Veröffentlichen Sie ihn, wenn Sie die Konfiguration der Richtlinie für bedingten Zugriff für das Tag abgeschlossen haben. [Weitere Informationen][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150966",
- "publishLabel": "In Apps veröffentlichen",
- "titleDesc": "Konfigurieren Sie einen Authentifizierungskontext, der zum Schutz von Anwendungsdaten und Aktionen verwendet wird. Verwenden Sie Namen und Beschreibungen, die für Anwendungsadministratoren verständlich sind. [Weitere Informationen][1]\n[1]:https://go.microsoft.com/fwlink/?linkid=2150965"
- },
- "Notify": {
- "failure": "Fehler beim Aktualisieren von \"{0}\".",
- "modifying": "\"{0}\" wird geändert",
- "success": "\"{0}\" erfolgreich aktualisiert"
- },
- "WhatIf": {
- "selected": "Authentifizierungskontext eingeschlossen"
- },
- "addNewStepUp": "Neuer Authentifizierungskontext",
- "checkBoxInfo": "Wählen Sie die Authentifizierungskontexte aus, für die diese Richtlinie gelten soll.",
- "configure": "Authentifizierungskontexte konfigurieren",
- "createCA": "Richtlinien für bedingten Zugriff dem Authentifizierungskontext zuweisen",
- "dataGrid": "Liste der Authentifizierungskontexte",
- "description": "Beschreibung",
- "documentation": "Dokumentation",
- "getStarted": "Erste Schritte",
- "label": "Authentifizierungskontext (Vorschau)",
- "menuLabel": "Authentifizierungskontext (Vorschau)",
- "name": "Name",
- "noAuthContextSet": "Es sind keine Authentifizierungskontexte vorhanden",
- "noData": "Keine Authentifizierungskontexte zur Anzeige vorhanden.",
- "selectionInfo": "Ein Authentifizierungskontext wird verwendet, um Anwendungsdaten und Aktionen in Apps wie SharePoint und Microsoft Cloud App Security zu schützen.",
- "step": "Schritt",
- "tabDescription": "Verwalten Sie den Authentifizierungskontext, um Daten und Aktionen in Ihren Apps zu schützen. [Weitere Informationen][1]\n[1]:https://go.microsoft.com/fwlink/?linkid=2150965",
- "tagResources": "Ressourcen mit einem Authentifizierungskontext markieren"
- },
- "AuthenticationStrength": {
- "Mode": {
- "deviceBasedPush": "Microsoft Authenticator (Anmeldung per Telefon)",
- "deviceBasedPushFido2X509Certificate": "Microsoft Authenticator (Anmeldung per Telefon) + FIDO 2 + zertifikatbasierte Authentifizierung",
- "deviceBasedPushX509CertificateSingleFactor": "Microsoft Authenticator (Anmeldung per Telefon) + FIDO 2 + zertifikatbasierte Authentifizierung (Einzelfaktor)",
- "email": "Einmalpass via E-Mail",
- "emailOtp": "E-Mail-OTP",
- "federatedMultiFactor": "Multi-Faktor-Verbund",
- "federatedSingleFactor": "Verbund-Einzelfaktor",
- "federatedSingleFactorFederatedMultiFactor": "Einzelfaktor-Verbund + Multi-Faktor-Verbund",
- "fido2": "FIDO 2-Sicherheitsschlüssel",
- "fido2X509CertificateSingleFactor": "FIDO 2-Sicherheitsschlüssel + zertifikatbasierte Authentifizierung (Einzelfaktor)",
- "hardwareOath": "Hardware-OTP",
- "hardwareOathX509CertificateSingleFactor": "Hardware-OTP + zertifikatbasierte Authentifizierung (Einzelfaktor)",
- "microsoftAuthenticatorPSIX509CertificateSingleFactor": "Microsoft Authenticator (Anmeldung per Telefon) + zertifikatbasierte Authentifizierung (Einzelfaktor)",
- "microsoftAuthenticatorPsi": "Microsoft Authenticator (Anmeldung per Telefon)",
- "microsoftAuthenticatorPush": "Microsoft Authenticator (Pushbenachrichtigung)",
- "microsoftAuthenticatorPushX509CertificateSingleFactor": "Microsoft Authenticator (Pushbenachrichtigung) + zertifikatbasierte Authentifizierung (Einzelfaktor)",
- "none": "Keine",
- "password": "Kennwort",
- "passwordDeviceBasedPush": "Kennwort + Microsoft Authenticator (Anmeldung per Telefon)",
- "passwordFido2": "Kennwort + FIDO 2-Sicherheitsschlüssel",
- "passwordHardwareOath": "Kennwort + Hardware-OTP",
- "passwordMicrosoftAuthenticatorPSI": "Kennwort + Microsoft Authenticator (Anmeldung per Telefon)",
- "passwordMicrosoftAuthenticatorPush": "Kennwort + Microsoft Authenticator (Pushbenachrichtigung)",
- "passwordSms": "Kennwort + SMS",
- "passwordSoftwareOath": "Kennwort und Software-OTP",
- "passwordTemporaryAccessPassMultiUse": "Kennwort + befristeter Zugriffspass (Mehrfachverwendung)",
- "passwordTemporaryAccessPassOneTime": "Kennwort + befristeter Zugriffspass (einmalige Verwendung)",
- "passwordVoice": "Kennwort + Stimme",
- "sms": "SMS",
- "smsSignIn": "SMS-Anmeldung",
- "smsX509CertificateSingleFactor": "SMS + zertifikatbasierte Authentifizierung (Einzelfaktor)",
- "softwareOath": "Software-OTP",
- "softwareOathX509CertificateSingleFactor": "Software-OTP und zertifikatbasierte Authentifizierung (Einzelfaktor)",
- "temporaryAccessPassMultiUse": "Befristeter Zugriffspass (mehrfache Verwendung)",
- "temporaryAccessPassMultiUseX509CertificateSingleFactor": "Befristeter Zugriffspass (Mehrfachverwendung) + zertifikatbasierte Authentifizierung (Einzelfaktor)",
- "temporaryAccessPassOneTime": "Befristeter Zugriffspass (einmalige Verwendung)",
- "temporaryAccessPassOneTimeX509CertificateSingleFactor": "Befristeter Zugriffspass (einmalige Verwendung) + zertifikatbasierte Authentifizierung (Einzelfaktor)",
- "voice": "Stimme",
- "voiceX509CertificateSingleFactor": "Sprache + zertifikatbasierte Authentifizierung (Einzelfaktor)",
- "windowsHelloForBusiness": "Windows Hello for Business",
- "x509CertificateMultiFactor": "Zertifikatbasierte Authentifizierung (Multi-Faktor)",
- "x509CertificateSingleFactor": "Zertifikatbasierte Authentifizierung (Einzelfaktor)"
- }
- },
- "CAS": {
- "BuiltinPolicy": {
- "Option": {
- "blockDownloads": "Downloads blockieren (Vorschau)",
- "monitorOnly": "Nur überwachen (Vorschau)",
- "protectDownloads": "Downloads schützen (Vorschau)",
- "useCustomControls": "Benutzerdefinierte Richtlinie verwenden..."
- },
- "ariaLabel": "Wählen Sie die Art der anzuwendenden App-Steuerung für bedingten Zugriff aus."
- }
- },
- "ChooseApplications": {
- "Grid": {
- "appIdAria": "App-ID: {0}"
- },
- "LowerGrid": {
- "ariaLabel": "Liste ausgewählter Cloud-Apps"
- },
- "UpperGrid": {
- "ariaLabel": "Liste der Cloud-Apps, die dem Suchbegriff entsprechen"
- }
- },
- "ChooseLocations": {
- "Validation": {
- "failed": "Bei \"Ausgewählte Standorte\" müssen Sie mindestens einen Standort auswählen.",
- "selector": "Wählen Sie mindestens einen Standort aus."
- }
- },
- "ClientApp": {
- "Clients": {
- "Validation": {
- "failed": "Sie müssen mindestens einen der folgenden Clients auswählen."
- }
- }
- },
- "ClientConditionsInfo": {
- "browserAndModern": "Diese Richtlinie gilt nur für Browser und Apps mit moderner Authentifizierung. Um die Richtlinie auf alle Client-Apps anzuwenden, aktivieren Sie die Client-App-Bedingung, und wählen Sie alle Client-Apps aus.",
- "classicExperience": "Die Standardkonfiguration für Client-Apps wurde seit der Erstellung dieser Richtlinie aktualisiert.",
- "legacyAuth": "Sofern nicht konfiguriert, gelten Richtlinien ab sofort für alle Client-Apps – moderne Authentifizierung und Legacyauthentifizierung eingeschlossen."
- },
- "CloudAppFilterBlade": {
- "AssignmentFilter": {
- "header": "Attribut",
- "placeholder": "Attribut auswählen"
- },
- "Configure": {
- "infoBalloon": "Konfigurieren Sie App-Filter, die für die Richtlinie gelten sollen."
- },
- "NoPermissions": {
- "learnMoreAria": "Weitere Informationen zu Berechtigungen für benutzerdefinierte Sicherheitsattribute.",
- "message": "Sie verfügen nicht über die erforderlichen Berechtigungen, um benutzerdefinierte Sicherheitsattribute zu verwenden."
- },
- "gridHeader": "Mit benutzerdefinierten Sicherheitsattributen können Sie den Regel-Generator oder das Regelsyntax-Textfeld verwenden, um die Filterregeln zu erstellen oder zu bearbeiten. In der Vorschauversion werden nur Attribute vom Typ „Zeichenfolge“ unterstützt. Attribute vom Typ „Integer“ oder „Boolesch“ werden nicht angezeigt.",
- "learnMoreAria": "Weitere Informationen zur Verwendung des Regelgenerators und des Syntax-Textfelds.",
- "noAttributes": "Es sind keine benutzerdefinierten Attribute verfügbar, nach denen gefiltert werden kann. Sie müssen einige Attribute konfigurieren, um diesen Filter einzusetzen.",
- "title": "Edit filter (Preview)"
- },
- "CloudAppsUserActions": {
- "any": "Beliebige Cloud-App oder Aktion",
- "infoBalloon": "Cloud-App oder Benutzeraktion, die Sie testen möchten. Beispiel: SharePoint Online",
- "learnMore": "Steuern Sie den Zugriff basierend auf allen oder bestimmten Cloud-Apps oder -Aktionen.",
- "learnMoreB2C": "Steuern Sie den Zugriff basierend auf allen oder bestimmten Cloud-Apps.",
- "title": "Cloud-Apps oder -aktionen"
- },
- "CloudappsSelectionBlade": {
- "Excluded": {
- "gridAria": "Liste ausgeschlossener Cloud-Apps"
- },
- "Filter": {
- "configured": "Konfiguriert",
- "label": "Edit filter (Preview)",
- "with": "{0} mit {1}"
- },
- "Included": {
- "gridAria": "Liste eingeschlossener Cloud-Apps"
- },
- "Validation": {
- "authContext": "Für \"Authentifizierungskontext\" muss mindestens ein untergeordnetes Element konfiguriert werden.",
- "selectApps": "„{0}“ muss konfiguriert werden",
- "selector": "Wählen Sie mindestens eine App aus.",
- "userActions": "Bei \"Benutzeraktionen\" muss mindestens ein untergeordnetes Element konfiguriert werden."
- }
- },
- "DeviceState": {
- "LearnMore": {
- "message": "Control user access when the device the user is signing-in from is not \"Hybrid Azure AD joined\" or \"marked as compliant\".\n '{0}' has been deprecated. Use '{1}' instead."
- }
- },
- "Errors": {
- "notFound": "Die Richtlinie wurde nicht gefunden oder wurde gelöscht.",
- "notFoundDetailed": "Die Richtlinie \"{0}\" ist nicht mehr vorhanden. Möglicherweise wurde sie gelöscht."
- },
- "NamedLocation": {
- "Form": {
- "CountryLookup": {
- "ariaLabel": "Methode für Länder-/Regionssuche",
- "gps": "Standort anhand von GPS-Koordinaten bestimmen",
- "info": "Wenn die Standortbedingung einer Richtlinie für bedingten Zugriff konfiguriert ist, werden Benutzer von der Authenticator-App aufgefordert, ihren GPS-Standort freizugeben. ",
- "ip": "Standort anhand der IP-Adresse bestimmen (nur IPv4)"
- },
- "Header": {
- "new": "Neuer Standort ({0})",
- "update": "Standort aktualisieren ({0})"
- },
- "IP": {
- "learn": "Konfigurieren Sie IPv4- und IPv6-Bereiche für benannte Standorte.\n[Weitere Informationen][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
- },
- "Include": {
- "infoBalloon": "Unbekannte Länder/Regionen sind IP-Adressen, die keinem bestimmten Land bzw. keiner bestimmten Region zugeordnet sind. [Weitere Informationen][1]\n\nHierzu gehören:\n* IPv6-Adressen\n* IPv4-Adressen ohne direkte Zuordnung\n[1]: https://aka.ms/canamedlocations\n",
- "label": "Unbekannte Länder/Regionen einbeziehen"
- },
- "Name": {
- "empty": "Der Name darf nicht leer sein.",
- "placeholder": "Diesen Standort benennen"
- },
- "PrivateLink": {
- "learn": "Erstellen Sie einen neuen benannten Standort mit Private Link-Instanzen für Azure AD. \n[Weitere Informationen][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
- },
- "Search": {
- "countries": "Länder suchen",
- "names": "Namen suchen",
- "privateLinks": "Private Link-Instanzen suchen"
- },
- "Trusted": {
- "label": "Als vertrauenswürdigen Standort markieren"
- },
- "enter": "Neuen IPv4- oder IPv6-Bereich eingeben",
- "example": "Beispiel: 40.77.182.32/27 oder 2a01:111::/32"
- },
- "Label": {
- "addCountries": "Länder (Standort)",
- "addIpRange": "IP-Adressbereiche (Standort)",
- "addPrivateLink": "Azure Private Link-Instanzen"
- },
- "Notification": {
- "Create": {
- "Failed": {
- "description": "Fehler beim Erstellen eines neuen Standorts ({0}).",
- "title": "Fehler bei der Erstellung"
- },
- "InProgress": {
- "description": "Neuer Speicherort wird erstellt ({0}).",
- "title": "Erstellung wird durchgeführt"
- },
- "Success": {
- "description": "Erfolg beim Erstellen eines neuen Standorts ({0})",
- "title": "Erstellung erfolgreich"
- }
- },
- "Delete": {
- "Failed": {
- "description": "Fehler beim Löschen des Standorts ({0}).",
- "title": "Fehler beim Löschen"
- },
- "InProgress": {
- "description": "Der Standort wird gelöscht ({0}).",
- "title": "Löschvorgang wird ausgeführt."
- },
- "Success": {
- "description": "Der Standort wurde erfolgreich gelöscht ({0}).",
- "title": "Löschen erfolgreich"
- }
- },
- "Update": {
- "Failed": {
- "description": "Fehler beim Aktualisieren des Standorts ({0}).",
- "title": "Fehler beim Aktualisieren"
- },
- "InProgress": {
- "description": "Der Standort wird aktualisiert ({0}).",
- "title": "Aktualisierung wird durchgeführt"
- },
- "Success": {
- "description": "Der Standort wurde erfolgreich aktualisiert ({0}).",
- "title": "Aktualisierung erfolgreich"
- }
- }
- },
- "PrivateLinks": {
- "grid": "Liste der Private Link-Instanzen"
- },
- "Trusted": {
- "title": "Vertrauenswürdiger Typ",
- "trusted": "Vertrauenswürdig"
- },
- "Type": {
- "all": "Alle Typen",
- "countries": "Länder",
- "ipRanges": "IP-Bereiche",
- "privateLinks": "Private Link-Instanzen",
- "title": "Standorttyp"
- },
- "iPRangeInvalidError": "Der Wert muss ein gültiger IPv4- oder IPv6-Adressbereich sein.",
- "iPRangeLinkOrSiteLocalError": "Das IP-Netzwerk wurde als lokaler Link oder lokale Standortadresse erkannt.",
- "iPRangeOctetError": "Das IP-Netzwerk darf nicht mit 0 oder 255 beginnen.",
- "iPRangePrefixError": "Das IP-Netzwerkpräfix muss zwischen /{0} und /{1} liegen.",
- "iPRangePrivateError": "Das IP-Netzwerk wurde als private Adresse erkannt."
- },
- "Policies": {
- "Grid": {
- "aria": "Liste mit Richtlinien für den bedingten Zugriff"
- },
- "countText": "{0} von {1} Richtlinien gefunden",
- "countTextSingular": "{0} von 1 Richtlinie gefunden",
- "search": "Richtlinien suchen"
- },
- "Policy": {
- "Condition": {
- "ServicePrincipalRisk": {
- "description": "Konfigurieren der für die Erzwingung der Richtlinie erforderlichen Risikostufen des Dienstprinzipals",
- "infoBalloonContent": "Konfigurieren des Dienstprinzipalrisikos zum Anwenden der Richtlinie auf die ausgewählte(n) Risikostufe(n)",
- "title": "Dienstprinzipalrisiko"
- }
- }
- },
- "PolicyControlAuthStrength": {
- "MultiFactorAuthentication": {
- "description": "Kombinationen von Methoden, die eine starke Authentifizierung erfüllen, z. B. Kennwort + SMS",
- "displayName": "Multi-Faktor-Authentifizierung (MFA)"
- },
- "Passwordless": {
- "description": "Kennwortlose Methoden, die eine starke Authentifizierung erfüllen, z. B. Microsoft Authenticator ",
- "displayName": "Kennwortlose MFA"
- },
- "PhishingResistant": {
- "description": "Phishing-sichere kennwortlose Methoden für die stärkste Authentifizierung, z. B. FIDO2-Sicherheitsschlüssel",
- "displayName": "Phishing-resistente MFA"
- }
- },
- "PolicyControlFedAuthMethod": {
- "certificate": "Zertifikatauthentifizierung",
- "infoBubble": "Geben Sie eine erforderliche Authentifizierungsmethode an, die vom Verbundanbieter, z. B. AD FS, erfüllt werden muss.",
- "multifactor": "Multi-Faktor-Authentifizierung",
- "require": "Verbundauthentifizierungsmethode erforderlich (Vorschau)",
- "whatIfFormat": "{0} - {1}"
- },
- "PolicyState": {
- "off": "Aus",
- "on": "Ein",
- "reportOnly": "Nur Bericht"
- },
- "PolicyTemplates": {
- "Devices": {
- "description": "Wählen Sie die Kategorie „Geräterichtlinienvorlage“ aus, um Einblick in Geräte zu erlangen, die auf das Netzwerk zugreifen. Stellen Sie die Compliance und den Integritätsstatus sicher, bevor Sie Zugriff gewähren.",
- "name": "Geräte"
- },
- "Identities": {
- "description": "Wählen Sie die Kategorie „Identitätsrichtlinienvorlage“ aus, um jede Identität mit starker Authentifizierung für Ihre gesamten digitalen Ressourcen zu überprüfen und zu schützen.",
- "name": "Identitäten"
- },
- "Summary": {
- "CloudApps": {
- "allCloudApps": "Alle Apps",
- "office365": "Office 365",
- "registerSecurityInfo": "Sicherheitsinformationen registrieren"
- },
- "Conditions": {
- "androidAndIOS": "Geräteplattform: Android und iOS",
- "anyDevice": "Alle Geräte außer Android, iOS, Windows und Mac",
- "anyDeviceStateExceptHybrid": "Alle Gerätezustände außer „konform“ und „hybrid, in Azure AD eingebunden“",
- "anyLocation": "Beliebiger Speicherort, mit Ausnahme von „vertrauenswürdig“",
- "browserMobileDesktop": "Client-Apps: Browser, mobile Apps und Desktopclients",
- "exchangeActiveSync": "Client-Apps: Exchange Active Sync, andere Clients",
- "windowsAndMac": "Geräteplattform: Windows und Mac"
- },
- "Devices": {
- "anyDevice": "Jedes Gerät"
- },
- "Grant": {
- "appProtectionPolicy": "Appschutz-Richtlinie erforderlich",
- "approvedClientApp": "Genehmigte Client-App erforderlich",
- "blockAccess": "Zugriff blockieren",
- "mfa": "Multi-Faktor-Authentifizierung erfordern",
- "passwordChange": "Kennwortänderung erforderlich",
- "requireCompliantDevice": "Markieren des Geräts als kompatibel erforderlich",
- "requireHybridAzureADDevice": "In Azure AD eingebundenes Hybridgerät erforderlich"
- },
- "Session": {
- "appEnforcedRestrictions": "Von der App erzwungene Einschränkungen verwenden",
- "signInFrequency": "Anmeldehäufigkeit und nie persistente Browsersitzung"
- },
- "UsersAndGroups": {
- "allUsers": "Alle Benutzer",
- "directoryRoles": "Verzeichnisrollen außer dem aktuellen Administrator",
- "globalAdmin": "Globaler Administrator",
- "noGuestAndAdmins": "Alle Benutzer außer Gast und Externe, globale Administratoren, aktueller Administrator"
- },
- "azureManagement": "Azure-Verwaltung",
- "deviceFilters": "Nach Geräten filtern",
- "devicePlatforms": "Geräteplattformen"
- },
- "TemplateId": {
- "AppEnforcedRestrictions": {
- "description": "Blockieren oder beschränken Sie den Zugriff auf SharePoint-, OneDrive- und Exchange-Inhalte von nicht verwalteten Geräten.",
- "name": "CA014: Von der Anwendung erzwungene Einschränkungen für nicht verwaltete Geräte verwenden",
- "title": "Von der Anwendung erzwungene Einschränkungen für nicht verwaltete Geräte verwenden"
- },
- "ApprovedClientApps": {
- "description": "Um Datenverluste zu verhindern, können Organisationen den Zugriff auf genehmigte moderne Client-Apps zur Authentifizierung mit InTune-App-Schutz einschränken.",
- "name": "CA012: Genehmigte Client-Apps und App-Schutz verlangen",
- "title": "Genehmigte Client-Apps und App-Schutz erforderlich"
- },
- "BlockAccessOnUnknowns": {
- "description": "Benutzer werden am Zugriff auf Unternehmensressourcen gehindert, wenn der Gerätetyp unbekannt oder nicht unterstützt wird.",
- "name": "CA010: Zugriff für unbekannte oder nicht unterstützte Geräteplattform blockieren",
- "title": "Zugriff für unbekannte oder nicht unterstützte Geräteplattform blockieren"
- },
- "BlockLegacyAuth": {
- "description": "Hiermit blockieren Sie Legacy-Authentifizierungsendpunkte, die zur Umgehung der Multi-Faktor-Authentifizierung verwendet werden können. ",
- "name": "CA003: Legacyauthentifizierung blockieren",
- "title": "Legacy-Authentifizierung blockieren"
- },
- "NoPersistentBrowserSession": {
- "description": "Schützen Sie den Benutzerzugriff auf nicht verwalteten Geräten, indem Sie verhindern, dass Browsersitzungen nach dem Schließen des Browsers angemeldet bleiben und die Anmeldehäufigkeit auf 1 Stunde festgelegt wird.",
- "name": "CA011: Keine persistente Browsersitzung",
- "title": "Keine persistente Browsersitzung"
- },
- "RequireCompliantOrHybridADAdmins": {
- "description": "Erfordern Sie, dass privilegierte Administratoren nur auf Ressourcen zuzugreifen, wenn sie ein kompatibles oder hybrides, in Azure AD eingebundenes Gerät verwenden.",
- "name": "CA009: Konformes oder hybrid, in Azure AD eingebundenes Gerät für Administratoren erforderlich.",
- "title": "Konformes oder hybrid, in Azure AD eingebundenes Gerät für Administratoren erforderlich."
- },
- "RequireCompliantOrHybridADAllUsers": {
- "description": "Schützen Sie den Zugriff auf Unternehmensressourcen, indem Sie festlegen, dass Benutzer ein verwaltetes Gerät verwenden oder eine Multi-Faktor-Authentifizierung durchführen müssen. (nur macOS oder Windows)",
- "name": "CA013: Konformes oder hybrid, in Azure AD eingebundenes Gerät oder Multi-Faktor-Authentifizierung für alle Benutzer erforderlich.",
- "title": "Konformes oder hybrid, in Azure AD eingebundenes Gerät oder Multi-Faktor-Authentifizierung für alle Benutzer erforderlich."
- },
- "RequireMFAAllUsers": {
- "description": "Erfordern Sie die Multi-Faktor-Authentifizierung für alle Benutzerkonten, um das Risiko einer Kompromittierung zu verringern.",
- "name": "CA004: Multi-Faktor-Authentifizierung für alle Benutzer verlangen",
- "title": "Multi-Faktor-Authentifizierung für alle Benutzer verlangen"
- },
- "RequireMFAForAdmins": {
- "description": "Erfordern Sie die Multi-Faktor-Authentifizierung für privilegierte Administratorkonten, um das Risiko einer Kompromittierung zu verringern. Diese Richtlinie ist auf die gleichen Rollen wie die Sicherheitsstandards ausgerichtet.",
- "name": "CA001: Multi-Faktor-Authentifizierung für Administratoren verlangen",
- "title": "Multi-Faktor-Authentifizierung für Administratoren erforderlich"
- },
- "RequireMFAForAzureManagement": {
- "description": "Fordern Sie die Multi-Faktor-Authentifizierung an, um den privilegierten Zugriff auf Azure-Ressourcen zu schützen.",
- "name": "CA006: Multi-Faktor-Authentifizierung für die Azure-Verwaltung verlangen",
- "title": "Multi-Faktor-Authentifizierung für die Azure-Verwaltung verlangen"
- },
- "RequireMFAForGuestAccess": {
- "description": "Erfordern Sie, dass Gastbenutzer beim Zugriff auf Ihre Unternehmensressourcen eine Multi-Faktor-Authentifizierung durchführen.",
- "name": "CA005: Multi-Faktor-Authentifizierung für Gastzugriff verlangen",
- "title": "Multi-Faktor-Authentifizierung für Gastzugriff verlangen"
- },
- "RequireMFAForRiskySignIn": {
- "description": "Erfordern Sie die Multi-Faktor-Authentifizierung, wenn das Anmelderisiko als „mittel“ oder „hoch“ erkannt wird. (Erfordert eine Azure AD Premium 2-Lizenz)",
- "name": "CA007: Multi-Faktor-Authentifizierung für riskante Anmeldung erforderlich.",
- "title": "Multi-Faktor-Authentifizierung für riskante Anmeldungen erforderlich."
- },
- "RequirePasswordChangeForHighRiskUsers": {
- "description": "Erfordern Sie, dass der Benutzer sein Kennwort ändern muss, wenn das Benutzerrisiko als „hoch“ erkannt wird. (Erfordert eine Azure AD Premium 2-Lizenz)",
- "name": "CA008: Kennwortänderung für Benutzer mit hohem Risiko verlangen",
- "title": "Kennwortänderung für Benutzer mit hohem Risiko verlangen"
- },
- "RequireSecurityInfo": {
- "description": "Es kann sichergestellt werden, wann und wie sich Benutzer für die Multi-Faktor-Authentifizierung für Azure AD registrieren, und auch die Self-Service-Kennwortzurücksetzung ist möglich. ",
- "name": "CA002: Registrierung von Sicherheitsinformationen wird gesichert",
- "title": "Registrierung von Sicherheitsinformationen wird gesichert"
- }
- },
- "TemplateState": {
- "BlockAccessOnUnknowns": {
- "title": "Durch das Aktivieren dieser Richtlinie wird der Zugriff von einem unbekannten Gerätetyp verhindert. Sie sollten zunächst den reinen Berichtsmodus verwenden, bis sichergestellt ist, dass Ihre Benutzer hierdurch nicht beeinträchtigt werden."
- },
- "BlockLegacyAuth": {
- "description": "Sie sollten zunächst den reinen Berichtsmodus verwenden, bis sichergestellt ist, dass Ihre Benutzer hierdurch nicht beeinträchtigt werden.",
- "title": "Durch Aktivieren dieser Richtlinie wird die Legacyauthentifizierung für alle Benutzer blockiert."
- },
- "RequireCompliantOrHybridADAdmins": {
- "Description": {
- "on": "Erwägen Sie, zunächst den Modus „Nur Bericht“ zu verwenden, bis Sie bestätigt haben, dass sich dies nicht auf Ihre privilegierten Benutzer auswirkt.",
- "reportOnly": "Richtlinien im reinen Berichtsmodus, für die konforme Geräte erforderlich sind, können Benutzer auf Mac-, iOS- und Android-Geräten während der Richtlinienauswertung zur Auswahl eines Gerätezertifikats auffordern, selbst wenn keine Gerätekonformität erzwungen wird. Diese Eingabeaufforderungen können sich wiederholen, bis die Konformität des Geräts hergestellt ist."
- },
- "Title": {
- "on": "Durch das Aktivieren dieser Richtlinie wird jeglicher Zugriff für privilegierte Benutzer verhindert, es sei denn, sie verwenden ein verwaltetes Gerät, z. B. konforme oder hybride, in Azure AD eingebundene Geräte. Stellen Sie sicher, dass Sie Ihre Konformitätsrichtlinien konfiguriert oder die Azure AD Hybridkonfiguration aktiviert haben, bevor Sie sie aktivieren.",
- "reportOnly": "Stellen Sie sicher, dass Sie Ihre Konformitätsrichtlinien konfiguriert oder die Azure AD Hybridkonfiguration aktiviert haben, bevor Sie sie aktivieren. "
- }
- },
- "RequireCompliantOrHybridADAllUsers": {
- "Description": {
- "on": "Diese Richtlinie wirkt sich auf alle Benutzer mit Ausnahme des aktuell angemeldeten Administrators aus. Erwägen Sie, zunächst den Modus „Nur Bericht“ zu verwenden, bis Sie bestätigt haben, dass sich dies nicht auf Ihre Benutzer auswirkt."
- },
- "Title": {
- "on": "Sperren Sie sich nicht aus! Stellen Sie sicher, dass Ihr Gerät kompatibel oder hybrid, in Azure AD eingebunden ist oder Sie die Multi-Faktor-Authentifizierung konfiguriert haben. ",
- "reportOnly": "Richtlinien im reinen Berichtsmodus, für die konforme Geräte erforderlich sind, können Benutzer auf Mac-, iOS- und Android-Geräten während der Richtlinienauswertung zur Auswahl eines Gerätezertifikats auffordern, selbst wenn keine Gerätekonformität erzwungen wird. Diese Eingabeaufforderungen können sich wiederholen, bis die Konformität des Geräts hergestellt ist."
- }
- },
- "RequireMfa": {
- "description": "Wenn Sie Not-Crawlkonten oder Azure AD Connect verwenden, um Ihre lokalen Objekte zu synchronisieren, müssen Sie diese Konten nach der Erstellung möglicherweise von dieser Richtlinie ausschließen."
- },
- "RequireMfaAdmins": {
- "description": "Beachten Sie, dass das aktuelle Administratorkonto automatisch ausgeschlossen wird. Alle anderen werden jedoch bei der Richtlinienerstellung geschützt. Erwägen Sie zunächst die Verwendung des reinen Berichtsmodus.",
- "title": "Sperren Sie sich nicht aus. Diese Richtlinie wirkt sich auf das Azure-Portal aus."
- },
- "RequireMfaAllUsers": {
- "description": "Sie sollten zunächst den reinen Berichtsmodus verwenden, bis Sie diese Änderung geplant und allen Benutzern mitgeteilt haben.",
- "title": "Wenn Sie diese Richtlinie aktivieren, wird die Multi-Faktor-Authentifizierung für alle Ihre Benutzer erzwungen."
- },
- "RequireSecurityInfo": {
- "description": "Überprüfen Sie unbedingt Ihre Konfiguration, um diese Konten basierend auf Ihren Unternehmensanforderungen zu schützen.",
- "title": "Die folgenden Benutzer und Rollen werden von dieser Richtlinie ausgeschlossen: Gäste und externe Benutzer, globale Administratoren, aktueller Administrator"
- }
- },
- "basics": "Allgemeine Informationen",
- "clientApps": "Client-Apps",
- "cloudApps": "Cloud-Apps",
- "cloudAppsOrActions": "Cloudanwendungen oder -aktionen ",
- "conditions": "Bedingungen ",
- "createNewPolicy": "Erstellen einer neuen Richtlinie aus Vorlagen (Vorschau)",
- "createPolicy": "Richtlinie erstellen",
- "currentUser": "Aktueller Benutzer",
- "customizeBuild": "Ihr Build anpassen",
- "customizeTemplate": "Die Vorlagenlisten werden basierend auf dem Richtlinientyp, den Sie erstellen möchten, angepasst.",
- "excludedDevicePlatform": "Ausgeschlossene Geräteplattformen",
- "excludedDirectoryRoles": "Ausgeschlossene Verzeichnisrollen",
- "excludedLocation": "Ausgeschlossene Verzeichnisrollen",
- "excludedUsers": "Ausgeschlossene Benutzer",
- "grantControl": "Gewährungssteuerelement ",
- "includeFilteredDevice": "Gefilterte Geräte in Richtlinie einbeziehen",
- "includedDevicePlatform": "Eingeschlossene Geräteplattformen",
- "includedDirectoryRoles": "Eingeschlossene Verzeichnisrollen",
- "includedLocation": "Eingeschlossener Speicherort",
- "includedUsers": "Eingeschlossene Benutzer",
- "legacyAuthenticationClients": "Legacy-Authentifizierungsclients",
- "namePolicy": "Ihre Richtlinie benennen",
- "next": "Weiter",
- "policyName": "Richtlinienname",
- "policyState": "Richtlinienstatus",
- "policySummary": "Zusammenfassung der Richtlinie",
- "policyTemplate": "Richtlinienvorlage",
- "previous": "Zurück",
- "reviewAndCreate": "Überprüfen und erstellen",
- "riskLevels": "Risikostufen",
- "selectATemplate": "Vorlage auswählen",
- "selectTemplate": "Vorlage auswählen",
- "selectTemplateCategory": "Auswählen einer Vorlagenkategorie",
- "selectTemplateRecommendation": "Wir empfehlen die folgenden Vorlagen basierend auf Ihrer Antwort.",
- "sessionControl": "Sitzungssteuerung ",
- "signInFrequency": "Anmeldehäufigkeit",
- "signInRisk": "Anmelderisiko",
- "template": "Vorlage ",
- "templateCategory": "Vorlagenkategorie",
- "userRisk": "Benutzerrisiko",
- "usersAndGroups": "Benutzer und Gruppen ",
- "viewPolicySummary": "Richtlinienzusammenfassung anzeigen "
- },
- "SSM": {
- "MemberSelector": {
- "description": "Benutzer und Gruppen"
- },
- "Notification": {
- "Migration": {
- "error": "Fehler beim Migrieren der Einstellungen für die fortlaufende Zugriffsevaluierung zu den Richtlinien für den bedingten Zugriff.",
- "inProgress": "Migrieren von Einstellungen für die fortlaufende Zugriffsevaluierung",
- "success": "Die Einstellungen für die fortlaufende Zugriffsevaluierung wurden erfolgreich zu den Richtlinien für den bedingten Zugriff migriert.",
- "successDescription": "Fahren Sie mit den Richtlinien für den bedingten Zugriff fort, um die migrierten Einstellungen in der neu erstellten Richtlinie mit dem Namen „Aus den Einstellungen der fortlaufenden Zugriffsevaluierung erstellte Richtlinie für den bedingten Zugriff\" anzuzeigen."
- },
- "error": "Fehler beim Aktualisieren der Einstellungen für die fortlaufende Zugriffsevaluierung.",
- "inProgress": "Die Einstellungen für die fortlaufende Zugriffsevaluierung werden aktualisiert.",
- "success": "Die Einstellungen für die fortlaufende Zugriffsevaluierung wurden erfolgreich aktualisiert."
- },
- "PreviewOptions": {
- "disable": "Vorschau deaktivieren",
- "enable": "Vorschau aktivieren"
- },
- "StrictLocationEnforcement": {
- "infoContent1": "Aufgrund eines Netzwerkpartitions- oder IPv4/IPv6-Konflikts können Azure AD und der Ressourcenanbieter vom selben Clientgerät aus unterschiedliche IP-Adressen feststellen. Durch die strikte Standorterzwingung wird die Richtlinie für bedingten Zugriff basierend auf den beiden von Azure AD und dem Ressourcenanbieter ermittelten IP-Adressen erzwungen.",
- "infoContent2": "Um maximale Sicherheit zu gewährleisten, sollten Sie in Ihrer Richtlinie \"Benannter Standort\" alle IP-Adressen berücksichtigen, die sowohl von Azure AD als auch von einem Ressourcenanbieter erkannt werden. Aktivieren Sie außerdem den Modus \"Strikte Standorterzwingung\".",
- "label": "Strikte Standorterzwingung",
- "title": "Zusätzliche Erzwingungsmodi"
- },
- "bladeTitle": "Fortlaufende Zugriffsevaluierung (Continuous Access Evaluation, CAE)",
- "description": "Wenn der Zugriff eines Benutzers entfernt oder eine Client-IP-Adresse geändert wird, blockiert die fortlaufende Zugriffsevaluierung den Zugriff auf Ressourcen und Anwendungen automatisch und nahezu in Echtzeit. ",
- "migrateLabel": "Migrieren",
- "migrationError": "Die Migration ist aufgrund des folgenden Fehlers fehlgeschlagen: {0}",
- "migrationInfo": "Die CAE-Einstellung wurde zur Benutzererfahrung „Bedingter Zugriff“ verschoben. Bitte migrieren Sie diese mit der obigen Schaltfläche „Migrieren“, und konfigurieren Sie diese zukünftig mit der Richtlinie für bedingten Zugriff. Klicken Sie hier, um weitere Informationen zu erhalten.",
- "noLicenseMessage": "Einstellungen für die intelligente Sitzungsverwaltung mit Azure AD Premium verwalten",
- "optionsPickerTitle": "Fortlaufende Zugriffsevaluierung aktivieren/deaktivieren",
- "upsellInfo": "Sie können Ihre Einstellungen auf der Seite nicht mehr ändern, und alle Einstellungen hier sollten ignoriert werden. Ihre bisherige Einstellung wird beibehalten. Sie können Ihre CAE-Einstellungen in Zukunft unter „Bedingter Zugriff“ konfigurieren. Klicken Sie hier, um weitere Informationen zu erhalten."
- },
- "SessionLifetime": {
- "PersistentBrowser": {
- "Error": {
- "notAllApps": "Die Richtlinie für persistente Browsersitzungen funktioniert nur dann ordnungsgemäß, wenn \"Alle Cloud-Apps\" ausgewählt ist. Aktualisieren Sie Ihre Cloud-Apps-Auswahl."
- },
- "Option": {
- "always": "Immer persistent",
- "help": "Bei einer persistenten Browsersitzung können Benutzer nach dem Schließen und erneuten Öffnen ihres Browserfensters angemeldet bleiben.
\n\n- Diese Einstellung funktioniert ordnungsgemäß, wenn \"Alle Cloud-Apps\" ausgewählt ist.
\n- Diese Einstellung hat keine Auswirkungen auf die Tokenlebensdauer oder auf die Einstellung für die Anmeldehäufigkeit.
\n- Hiermit wird die Richtlinie zum Anzeigen der Option \"Angemeldet bleiben\" im Unternehmensbranding außer Kraft gesetzt.
\n- \"Niemals persistent\" setzt Ansprüche auf persistentes einmaliges Anmelden von Verbundauthentifizierungsdiensten außer Kraft.
\n- \"Niemals persistent\" verhindert auf mobilen Geräten das einmalige Anmelden zwischen verschiedenen Anwendungen sowie zwischen Anwendungen und dem mobilen Browser des Benutzers.
\n",
- "label": "Beständige Browsersitzung",
- "never": "Niemals persistent"
- },
- "Warning": {
- "allApps": "\"Persistente Browsersitzung\" funktioniert nur dann ordnungsgemäß, wenn \"Alle Cloud-Apps\" ausgewählt ist. Ändern Sie Ihre Cloud-Apps-Auswahl. Klicken Sie hier, um weitere Informationen zu erhalten."
- }
- },
- "SignInFrequency": {
- "Aria": {
- "units": "Stunden oder Tage",
- "value": "Häufigkeit"
- },
- "Option": {
- "Day": {
- "plural": "{0} Tage",
- "singular": "1 Tag"
- },
- "Hour": {
- "plural": "{0} Stunden",
- "singular": "1 Stunde"
- },
- "daysOption": "Tage",
- "everytime": "Jedes Mal",
- "help": "Zeitraum, bis ein Benutzer bei dem Versuch, auf eine Ressource zuzugreifen, zur erneuten Anmeldung aufgefordert wird. Die Standardeinstellung ist ein rollierendes Zeitfenster von 90 Tagen, d. h., Benutzer werden zur erneuten Authentifizierung aufgefordert, wenn sie auf ihrem Computer nach einer Inaktivität von 90 Tagen oder länger erstmals auf eine Ressource zuzugreifen versuchen.",
- "hoursOption": "Stunden",
- "label": "Anmeldehäufigkeit",
- "placeholder": "Einheiten auswählen"
- }
- },
- "mainOption": "Sitzungsdauer ändern",
- "mainOptionHelp": "Konfigurieren Sie, wie oft Benutzer zur Eingabe aufgefordert werden, und gibt an, ob Browsersitzungen dauerhaft gespeichert werden. Von Anwendungen, die moderne Authentifizierungsprotokolle nicht unterstützen, werden diese Richtlinien möglicherweise nicht berücksichtigt. Wenden Sie sich in diesem Fall an den Anwendungsentwickler."
- },
- "SigninRisk": {
- "LearnMore": {
- "message": "Steuern Sie den Benutzerzugriff, um auf bestimmte Anmelderisikostufen zu reagieren."
- }
- },
- "SingleSelectorActive": {
- "failed": "Diese Daten konnten nicht geladen werden.",
- "reattempt": "Daten werden geladen. {0} von {1} erneuten Versuchen."
- },
- "TimeCondition": {
- "Errors": {
- "both": "Ungültiger Zeitbereich für \"Einschließen\" oder \"Ausschließen\".",
- "daysOfWeek": "{0} Sie müssen mindestens einen Wochentag angeben.",
- "endBeforeStart": "{0} Stellen Sie sicher, dass Datum und Uhrzeit für den Start vor dem Datum und der Uhrzeit des Endzeitpunkts liegen.",
- "exclude": "Ungültiger Zeitbereich für \"Ausschließen\".",
- "generic": "{0} Stellen Sie sicher, dass sowohl die Wochentage als auch die Zeitzone festgelegt sind. Wenn \"Ganztägig\" nicht aktiviert ist, müssen Sie außerdem einen Start- und einen Endzeitpunkt festlegen.",
- "include": "Ungültiger Zeitbereich für \"Einschließen\".",
- "timeMissing": "{0} Sie müssen sowohl eine Start- als auch eine Endzeit angeben.",
- "timeZone": "{0} Sie müssen eine Zeitzone angeben.",
- "timesAndZone": "{0} Stellen Sie sicher, dass Sie den Start- und Endzeitpunkt sowie die Zeitzone festlegen."
- }
- },
- "UserActions": {
- "Included": {
- "none": "Keine Cloud-Apps oder -aktionen ausgewählt.",
- "plural": "{0} Benutzeraktionen eingeschlossen",
- "singular": "1 Benutzeraktion eingeschlossen"
- },
- "accessRequirement1": "Ebene 1",
- "accessRequirement2": "Ebene 2",
- "accessRequirement3": "Ebene 3",
- "accessRequirementsLabel": "Es wird auf gesicherte App-Daten zugegriffen.",
- "appsActionsAuthTitle": "Cloud-Apps, Aktionen oder Authentifizierungskontext",
- "appsOrActionsSelectorInfoBallonText": "Anwendungen, auf die zugegriffen wird, oder Benutzeraktionen",
- "appsOrActionsTitle": "Cloud-Apps oder -aktionen",
- "label": "Benutzeraktionen",
- "mainOptionsLabel": "Wählen Sie aus, worauf diese Richtlinie angewendet werden soll.",
- "registerOrJoinDevices": "Geräte registrieren oder einbinden",
- "registerSecurityInfo": "Sicherheitsinformationen registrieren",
- "selectionInfo": "Hiermit wird die Aktion ausgewählt, auf die diese Richtlinie angewendet wird."
- },
- "UserSelectionBlade": {
- "DirectoryRoles": {
- "ariaLabel": "Verzeichnisrollen auswählen"
- },
- "Excluded": {
- "gridAria": "Liste ausgeschlossener Benutzer"
- },
- "Included": {
- "gridAria": "Liste eingeschlossener Benutzer"
- },
- "Validation": {
- "customRoleIncluded": "\"Verzeichnisrollen\" umfasst mindestens eine benutzerdefinierte Rolle.",
- "customRoleSelected": "Es wurde mindestens eine benutzerdefinierte Rolle ausgewählt.",
- "failed": "\"{0}\" muss konfiguriert werden.",
- "roles": "Wählen Sie mindestens eine Rolle aus.",
- "usersGroups": "Wählen Sie mindestens einen Benutzer oder eine Gruppe aus."
- },
- "learnMore": "Steuern Sie den Zugriff basierend darauf, für wen die Richtlinie gelten wird, z. B. Benutzer und Gruppen, Workloadidentitäten, Verzeichnisrollen oder externe Gäste."
- },
- "ValidationResult": {
- "blockEveryonePolicy": "Die Richtlinienkonfiguration wird nicht unterstützt. Überprüfen Sie alle Zuweisungen und Steuerelemente.",
- "invalidApplicationCondition": "Ungültige Cloudanwendungen ausgewählt",
- "invalidClientTypesCondition": "Ungültige Clients ausgewählt",
- "invalidConditions": "Zuweisungen nicht ausgewählt",
- "invalidControls": "Ungültige Steuerelemente ausgewählt",
- "invalidDevicePlatformsCondition": "Ungültige Geräteplattformen ausgewählt",
- "invalidDevicesCondition": "Ungültige Gerätekonfiguration. Möglicherweise liegt eine ungültige Konfiguration von \"{0}\" vor.",
- "invalidGrantControlPolicy": "Ungültiges Gewährungssteuerelement",
- "invalidLocationsCondition": "Ungültige Standorte ausgewählt",
- "invalidPolicy": "Zuweisungen nicht ausgewählt",
- "invalidSessionControlPolicy": "Ungültiges Sitzungssteuerelement",
- "invalidSignInRisksCondition": "Ungültiges Anmelderisiko ausgewählt",
- "invalidUserRisksCondition": "Ungültiges Benutzerrisiko ausgewählt",
- "invalidUsersCondition": "Ungültige Benutzer ausgewählt",
- "mamPolicyShouldOnlyTargetAndroidOrIosPlatforms": "Die MAM-Richtlinie kann nur auf Android- oder iOS-Clientplattformen angewendet werden.",
- "notSupportedCombination": "Die Richtlinienkonfiguration wird nicht unterstützt. Erfahren Sie mehr über unterstützte Richtlinien.",
- "pending": "Die Richtlinie wird überprüft.",
- "requireComplianceEveryonePolicy": "Die Richtlinienkonfiguration erfordert Gerätekompatibilität für alle Benutzer. Überprüfen Sie die ausgewählten Zuweisungen.",
- "success": "Gültige Richtlinie"
- },
- "VpnCert": {
- "Grid": {
- "aria": "Liste der VPN-Zertifikate"
- }
- },
- "WarningsInfo": {
- "Controls": {
- "compliantDeviceEnabled": "Sperren Sie sich nicht aus! Stellen Sie sicher, dass Ihr Gerät konform ist.",
- "domainJoinedDeviceEnabled": "Sperren Sie sich nicht aus! Stellen Sie sicher, dass Ihr Gerät als Hybridgerät in Azure AD eingebunden ist.",
- "exchangeDisabled": "Exchange ActiveSync unterstützt nur die Steuerelemente \"Konformes Gerät\" und \"Genehmigte Client-App\". Klicken Sie, um weitere Informationen zu erhalten.",
- "exchangeDisabled2": "Exchange ActiveSync unterstützt nur die Steuerelemente \"Konformes Gerät\", \"Genehmigte Client-App\" und \"Konforme Client-App\". Klicken Sie, um weitere Informationen zu erhalten.",
- "notAvailableForSP": "Einige Steuerelemente sind aufgrund der Auswahl von „{0}“ in der Richtlinienzuweisung nicht verfügbar.",
- "requireAuthOrMfa": "„{0}“ kann nicht zusammen mit „{1}“ verwendet werden.",
- "requireMfa": "Erwägen Sie, die neue Public Preview „{0}“ zu testen.",
- "requirePasswordChangeEnabled": "\"Kennwortänderung anfordern\" kann nur verwendet werden, wenn die Richtlinie allen Cloud-Apps zugewiesen ist."
- },
- "Policies": {
- "Linux": {
- "devicePlatformsReportOnlyPolicy": "Bei Richtlinien im Modus „nur melden“, für die konforme Geräte erforderlich sind, werden Benutzer unter macOS, iOS, Android und Linux möglicherweise zur Auswahl eines Gerätezertifikats aufgefordert.",
- "excludeDevicePlatforms": "Schließen Sie die Geräteplattformen macOS, iOS, Android und Linux aus dieser Richtlinie aus.",
- "proceedAnywayDevicePlatforms": "Fahren Sie mit der ausgewählten Konfiguration fort. Benutzer unter macOS, iOS, Android und Linux erhalten möglicherweise Eingabeaufforderungen, wenn das Gerät auf Konformität geprüft wird."
- },
- "blockCurrentUserPolicy": "Sperren Sie sich nicht aus! Wir empfehlen, eine Richtlinie zunächst auf eine kleine Gruppe von Benutzern anzuwenden, um sicherzustellen, dass sie sich wie erwartet verhält. Es wird außerdem empfohlen, mindestens einen Administrator von dieser Richtlinie auszuschließen. Dadurch wird sichergestellt, dass Sie weiterhin Zugriff haben und eine Richtlinie aktualisiert werden kann, falls eine Änderung erforderlich ist. Überprüfen Sie die betroffenen Benutzer und Apps.",
- "devicePlatformsReportOnlyPolicy": "Bei Richtlinien im reinen Berichtsmodus, für die konforme Geräte erforderlich sind, werden Benutzer unter macOS, iOS und Android möglicherweise zur Auswahl eines Gerätezertifikats aufgefordert.",
- "excludeCurrentUserSelection": "Hiermit wird der aktuelle Benutzer ({0}) von dieser Richtlinie ausgeschlossen.",
- "excludeDevicePlatforms": "Schließen Sie die Geräteplattformen macOS, iOS und Android aus dieser Richtlinie aus.",
- "proceedAnywayDevicePlatforms": "Fahren Sie mit der ausgewählten Konfiguration fort. Benutzer unter macOS, iOS und Android erhalten möglicherweise Eingabeaufforderungen, wenn das Gerät auf Konformität geprüft wird.",
- "proceedAnywaySelection": "Ich habe verstanden, dass mein Konto von dieser Richtlinie betroffen ist. Ich möchte dennoch fortfahren."
- },
- "ServicePrincipals": {
- "blockExchange": "Die Auswahl von Office 365 Exchange Online wirkt sich auch auf Apps wie OneDrive und Teams aus.",
- "blockPortal": "Sperren Sie sich nicht aus! Diese Richtlinie wirkt sich auf das Azure-Portal aus. Bevor Sie den Vorgang fortsetzen, müssen Sie sicherstellen, dass ein anderer Benutzer weiterhin Zugriff auf das Portal hat.",
- "blockPortalWithSession": "Sperren Sie sich nicht aus! Diese Richtlinie besitzt Auswirkungen auf das Azure-Portal. Stellen Sie vor dem Fortfahren sicher, dass Sie oder eine andere Person wieder in das Portal gelangen kann.
Ignorieren Sie diese Warnung, wenn Sie eine Richtlinie für beständige Browsersitzungen konfigurieren, die nur korrekt funktioniert, wenn \"Alle Cloud-Apps\" ausgewählt ist.",
- "blockSharePoint": "Die Auswahl von SharePoint Online wirkt sich auch auf Apps wie Microsoft Teams, Planner, Delve, MyAnalytics und Newsfeed usw. aus.",
- "blockSkype": "Die Auswahl von Skype for Business Online wirkt sich auch auf Microsoft Teams aus.",
- "includeOrExclude": "Sie können den App-Filter für „{0}“ oder für „{1}“ konfigurieren, aber nicht für beide.",
- "selectAppsNAForSP": "Einzelne Cloud-Apps können aufgrund der Auswahl „{0}“ in der Richtlinienzuweisung nicht ausgewählt werden.",
- "teamsBlocked": "Microsoft Teams sind ebenfalls betroffen, wenn Apps wie SharePoint Online und Exchange Online in der Richtlinie enthalten sind."
- },
- "Users": {
- "blockAllUsers": "Sperren Sie sich nicht aus! Diese Richtlinie wirkt sich auf alle Benutzer aus. Wir empfehlen, eine Richtlinie zunächst auf eine kleine Gruppe von Benutzern anzuwenden, um sicherzustellen, dass sie sich wie erwartet verhält."
- }
- },
- "WhatIf": {
- "Device": {
- "AttributesGrid": {
- "aria": "Liste der Attribute auf dem Gerät, die bei der Anmeldung verwendet werden.",
- "infoBalloon": "Liste der Attribute auf dem Gerät, die bei der Anmeldung verwendet werden."
- }
- }
- },
- "advancedTabText": "Erweitert",
- "allCloudAppsErrorBox": "\"Alle Cloud-Apps\" muss ausgewählt werden, wenn die Zuweisung \"Kennwortänderung anfordern\" ausgewählt ist.",
- "allDayCheckboxLabel": "Ganztägig",
- "allDevicePlatforms": "Jedes Gerät",
- "allGuestUserInfoContent": "Enthält Azure AD B2B-Gäste, aber keine SharePoint B2B-Gäste.",
- "allGuestUserLabel": "Alle Gast- und externen Benutzer",
- "allRiskLevelsOption": "Alle Risikostufen",
- "allTrustedLocationLabel": "Alle vertrauenswürdigen Standorte",
- "allUserGroupSetSelectorLabel": "Alle ausgewählten Benutzer und Gruppen",
- "allUsersString": "Alle Benutzer",
- "and": "{0} UND {1} ",
- "andWithGrouping": "({0}) UND {1} ",
- "androidDisplayName": "Android",
- "anyCloudAppSelection": "Cloud-app",
- "appContextOptionInfoContent": "Angefordertes Authentifizierungstag",
- "appContextOptionLabel": "Angefordertes Authentifizierungstag (Vorschau)",
- "appContextUriPlaceholder": "Beispiel: uri:contoso.com:level3",
- "appEnforceInfoBubble": "Für von der App erzwungene Einschränkungen sind möglicherweise zusätzliche Administratorkonfigurationen innerhalb der Cloud-Apps erforderlich. Die Einschränkungen treten nur für neue Sitzungen in Kraft.",
- "appNotSetSeletorLabel": "0 Cloud-Apps ausgewählt",
- "applyConditionClientAppInfoBalloonContent": "Konfigurieren Sie Client-Apps, um die Richtlinie auf bestimmte Client-Apps anzuwenden.",
- "applyConditionDevicePlatformInfoBalloonContent": "Konfigurieren Sie Geräteplattformen, um die Richtlinie auf bestimmte Plattformen anzuwenden.",
- "applyConditionDeviceStateInfoBalloonContent": "Konfigurieren Sie den Gerätezustand, um die Richtlinie auf bestimmte Gerätezustände anzuwenden.",
- "applyConditionLocationInfoBalloonContent": "Konfigurieren Sie Standorte, um die Richtlinie auf vertrauenswürdige/nicht vertrauenswürdige Standorte anzuwenden.",
- "applyConditionSigninRiskInfoBalloonContent": "Konfigurieren Sie das Anmelderisiko, um die Richtlinie auf ausgewählte Risikostufen anzuwenden.",
- "applyConditionUserRiskInfoBalloonContent": "Konfigurieren Sie das Benutzerrisiko, um die Richtlinie auf ausgewählte Risikostufen anzuwenden.",
- "applyConditonLabel": "Konfigurieren",
- "ariaLabelPolicyDisabled": "Richtlinie ist deaktiviert",
- "ariaLabelPolicyEnabled": "Die Richtlinie ist aktiviert.",
- "ariaLabelPolicyReportOnly": "Die Richtlinie befindet sich im reinen Berichtmodus.",
- "blockAccess": "Zugriff blockieren",
- "builtInDirectoryRoleLabel": "Integrierte Verzeichnisrollen",
- "casCustomControlInfo": "Benutzerdefinierte Richtlinien müssen im Cloud App Security-Portal konfiguriert werden. Dieses Steuerelement funktioniert sofort für ausgewählte Apps und kann für jede App selbst integriert werden. Klicken Sie hier, um weitere Informationen zu beiden Szenarien zu erhalten.",
- "casInfoBubble": "Dieses Steuerelement funktioniert für verschiedene Cloud-Apps.",
- "casPreconfiguredControlInfo": "Dieses Steuerelement funktioniert sofort für ausgewählte Apps und kann für jede App selbst integriert werden. Klicken Sie hier, um weitere Informationen zu beiden Szenarien zu erhalten.",
- "cert64DownloadCol": "Base64-Zertifikat herunterladen",
- "cert64Name": "VpnBase64Cert",
- "certDownloadCol": "Zertifikat herunterladen",
- "certDurationCol": "Ablauf",
- "certDurationStartCol": "Gültig ab",
- "certName": "VpnCert",
- "chooseApplicationsBladeSubtitle": "",
- "chooseApplicationsBladeTitle": "Anwendungen wählen",
- "chooseApplicationsCartSubitle": "",
- "chooseApplicationsCartTitle": "Gewählte Anwendungen",
- "chooseApplicationsEmpty": "Keine Anwendungen",
- "chooseApplicationsNone": "Kein",
- "chooseApplicationsNoneFound": "Wir haben \"{0}\" nicht gefunden. Versuchen Sie es mit einem anderen Namen oder einer anderen ID.",
- "chooseApplicationsPlural": "\"{0}\" und {1} weitere",
- "chooseApplicationsReAuthEverytimeInfo": "Suchen Sie nach Ihrer App? Einige Anwendungen können nicht mit Wert „Erneute Authentifizierung erforderlich – jedes Mal“ des Sitzungssteuerelements verwendet werden.",
- "chooseApplicationsRemove": "Entfernen",
- "chooseApplicationsReturnedPlural": "{0} Anwendungen gefunden",
- "chooseApplicationsReturnedSingular": "1 Anwendung gefunden",
- "chooseApplicationsSearchBalloon": "Suchen Sie nach einer Anwendung, indem Sie ihren Namen oder ihre ID eingeben.",
- "chooseApplicationsSearchHint": "Anwendungen suchen...",
- "chooseApplicationsSearchLabel": "Anwendungen",
- "chooseApplicationsSearching": "Suche wird ausgeführt...",
- "chooseApplicationsSelect": "Auswählen",
- "chooseApplicationsSelected": "Ausgewählt",
- "chooseApplicationsSingular": "{0} und 1 weitere",
- "chooseApplicationsTooMany": "Weitere Ergebnisse können angezeigt werden. Filtern Sie anhand des Suchfelds.",
- "chooseLocationCorpnetItem": "Unternehmensnetzwerk",
- "chooseLocationSelectedLocationsLabel": "Ausgewählte Standorte",
- "chooseLocationTrustedIpsItem": "Für MFA vertrauenswürdige IPs",
- "chooseLocationsBladeSubtitle": "",
- "chooseLocationsBladeTitle": "Standorte auswählen",
- "chooseLocationsCartSubitle": "",
- "chooseLocationsCartTitle": "Ausgewählte Standorte",
- "chooseLocationsEmpty": "Keine Speicherorte",
- "chooseLocationsExcludedSelectorTitle": "Auswählen",
- "chooseLocationsIncludedSelectorTitle": "Auswählen",
- "chooseLocationsNone": "Kein",
- "chooseLocationsNoneFound": "Wir haben \"{0}\" nicht gefunden. Versuchen Sie es mit einem anderen Namen oder einer anderen ID.",
- "chooseLocationsPlural": "\"{0}\" und {1} weitere",
- "chooseLocationsRemove": "Entfernen",
- "chooseLocationsReturnedPlural": "{0} Standorte gefunden",
- "chooseLocationsReturnedSingular": "1 Standort gefunden",
- "chooseLocationsSearchBalloon": "Suchen Sie nach einem Standort, indem Sie seinen Namen eingeben.",
- "chooseLocationsSearchHint": "Suche nach Standorten...",
- "chooseLocationsSearchLabel": "Speicherorte",
- "chooseLocationsSearching": "Suche wird ausgeführt...",
- "chooseLocationsSelect": "Auswählen",
- "chooseLocationsSelected": "Ausgewählt",
- "chooseLocationsSelectionBladeExcludedSelectorTitle": "Auswählen",
- "chooseLocationsSelectionBladeIncludedSelectorTitle": "Auswählen",
- "chooseLocationsSingular": "{0} und 1 weitere",
- "chooseLocationsTooMany": "Weitere Ergebnisse können angezeigt werden. Filtern Sie anhand des Suchfelds.",
- "claimProviderAddCommandText": "Neues benutzerdefiniertes Steuerelement",
- "claimProviderAddNewBladeTitle": "Neues benutzerdefiniertes Steuerelement",
- "claimProviderDeleteCommand": "Löschen",
- "claimProviderDeleteDescription": "Möchten Sie \"{0}\" löschen? Diese Aktion kann nicht rückgängig gemacht werden.",
- "claimProviderDeleteTitle": "Sind Sie sicher?",
- "claimProviderEditInfoText": "Geben Sie die JSON für benutzerdefinierte Steuerelemente ein, die von Ihren Anspruchsanbietern bereitgestellt wird.",
- "claimProviderNotificationCreateDescription": "Benutzerdefiniertes Steuerelement \"{0}\" wird erstellt.",
- "claimProviderNotificationCreateFailedDescription": "Fehler beim Erstellen des benutzerdefinierten Steuerelements \"{0}\". Versuchen Sie es später noch mal.",
- "claimProviderNotificationCreateFailedTitle": "Fehler beim Erstellen von benutzerdefiniertem Steuerelement",
- "claimProviderNotificationCreateSuccessDescription": "Benutzerdefiniertes Steuerelement \"{0}\" wurde erstellt.",
- "claimProviderNotificationCreateSuccessTitle": "\"{0}\" wurde erstellt",
- "claimProviderNotificationCreateTitle": "\"{0}\" wird erstellt",
- "claimProviderNotificationDeleteDescription": "Benutzerdefiniertes Steuerelement \"{0}\" wird gelöscht.",
- "claimProviderNotificationDeleteFailedDescription": "Fehler beim Löschen des benutzerdefinierten Steuerelements \"{0}\". Versuchen Sie es später noch mal.",
- "claimProviderNotificationDeleteFailedTitle": "Fehler beim Löschen von benutzerdefiniertem Element",
- "claimProviderNotificationDeleteSuccessDescription": "Benutzerdefiniertes Steuerelement \"{0}\" wurde gelöscht.",
- "claimProviderNotificationDeleteSuccessTitle": "\"{0}\" wurde gelöscht",
- "claimProviderNotificationDeleteTitle": "\"{0}\" wird gelöscht.",
- "claimProviderNotificationUpdateDescription": "Benutzerdefiniertes Steuerelement \"{0}\" wird aktualisiert.",
- "claimProviderNotificationUpdateFailedDescription": "Fehler beim Aktualisieren des benutzerdefinierten Steuerelements \"{0}\". Versuchen Sie es später noch mal.",
- "claimProviderNotificationUpdateFailedTitle": "Fehler beim Aktualisieren von benutzerdefiniertem Steuerelement",
- "claimProviderNotificationUpdateSuccessDescription": "Benutzerdefiniertes Steuerelement \"{0}\" wurde aktualisiert.",
- "claimProviderNotificationUpdateSuccessTitle": "\"{0}\" wurde aktualisiert",
- "claimProviderNotificationUpdateTitle": "\"{0}\" wird aktualisiert",
- "claimProviderValidationAppIdInvalid": "Der AppId-Wert ist ungültig. Überprüfen Sie ihn, und versuchen Sie es noch mal.",
- "claimProviderValidationClientIdMissing": "Bei den Daten fehlt ein ClientId-Wert. Überprüfen Sie die Werte, und versuchen Sie es noch mal.",
- "claimProviderValidationControlClaimsRequestedMissing": "Bei \"Control\" fehlt ein ClaimsRequested-Wert. Überprüfen Sie die Werte, und versuchen Sie es noch mal.",
- "claimProviderValidationControlClaimsRequestedTypeMissing": "Dem Element \"ClaimsRequested\" fehlt ein Type-Wert. Überprüfen Sie das Element, und versuchen Sie es noch mal.",
- "claimProviderValidationControlIdAlreadyExists": "Der Id-Wert von \"Control\" ist bereits vorhanden. Überprüfen Sie die Werte, und versuchen Sie es noch mal.",
- "claimProviderValidationControlIdMissing": "Bei \"Control\" fehlt ein Id-Wert. Überprüfen Sie die Werte, und versuchen Sie es noch mal.",
- "claimProviderValidationControlIdReferencedInExistingPolicy": "Der Id-Wert von \"Control\" kann nicht entfernt werden, weil eine vorhandene Richtlinie darauf verweist. Entfernen Sie ihn zuerst aus der Richtlinie.",
- "claimProviderValidationControlIdTooManyControls": "Die Eigenschaft \"Control\" weist zu viele Steuerelemente auf. Überprüfen Sie die Eigenschaft, und versuchen Sie es noch mal.",
- "claimProviderValidationControlIdValueReserved": "Der Id-Wert von \"Control\" ist ein reserviertes Schlüsselwort, verwenden Sie eine andere ID.",
- "claimProviderValidationControlNameAlreadyExists": "Der Name-Wert von \"Control\" ist bereits vorhanden. Überprüfen Sie die Werte, und versuchen Sie es noch mal.",
- "claimProviderValidationControlNameMissing": "Bei \"Control\" fehlt ein Name-Wert. Überprüfen Sie die Werte, und versuchen Sie es noch mal.",
- "claimProviderValidationControlsMissing": "Bei den Daten fehlt ein Controls-Wert. Überprüfen Sie die Werte, und versuchen Sie es noch mal.",
- "claimProviderValidationDiscoveryUrlMissing": "Bei den Daten fehlt ein DiscoveryUrl-Wert. Überprüfen Sie die Werte, und versuchen Sie es noch mal.",
- "claimProviderValidationInvalid": "Die bereitgestellten Daten sind ungültig. Überprüfen Sie sie, und versuchen Sie es noch mal.",
- "claimProviderValidationInvalidJsonDefinition": "Das benutzerdefinierte Steuerelement kann nicht gespeichert werden. Prüfen Sie den JSON-Text, und versuchen Sie es noch mal.",
- "claimProviderValidationNameAlreadyExists": "Der Name-Wert ist bereits vorhanden. Überprüfen Sie die Werte, und versuchen Sie es noch mal.",
- "claimProviderValidationNameMissing": "Bei den Daten fehlt ein Name-Wert. Überprüfen Sie die Werte, und versuchen Sie es noch mal.",
- "claimProviderValidationUnknown": "Unbekannter Fehler beim Überprüfen der bereitgestellten Daten. Überprüfen Sie sie, und versuchen Sie es noch mal.",
- "claimProvidersNone": "Keine benutzerdefinierten Steuerelemente",
- "claimProvidersSearchPlaceholder": "Durchsuchen Sie die Steuerelemente.",
- "classicPoilcyFilterTitle": "Zeigen",
- "classicPolicyAllPlatforms": "Alle Plattformen",
- "classicPolicyClientAppBrowserAndNative": "Browser, mobile Apps und Desktopclients",
- "classicPolicyCloudAppTitle": "Cloudanwendung",
- "classicPolicyControlAllow": "Zulassen",
- "classicPolicyControlBlock": "Blockieren",
- "classicPolicyControlBlockWhenNotAtWork": "Zugriff blockieren, wenn nicht gearbeitet wird",
- "classicPolicyControlRequireCompliantDevice": "Erfordert kompatibles Gerät",
- "classicPolicyControlRequireDomainJoinedDevice": "In Domäne eingebundenes Gerät anfordern",
- "classicPolicyControlRequireMfa": "Multi-Faktor-Authentifizierung erfordern",
- "classicPolicyControlRequireMfaWhenNotAtWork": "Erfordert Multi-Faktor-Authentifizierung, wenn nicht bei der Arbeit",
- "classicPolicyDeleteCommand": "Löschen",
- "classicPolicyDeleteFailTitle": "Fehler beim Löschen der klassischen Richtlinie",
- "classicPolicyDeleteInProgressTitle": "Klassische Richtlinie wird gelöscht",
- "classicPolicyDeleteSuccessTitle": "Klassische Richtlinie gelöscht",
- "classicPolicyDetailBladeTitle": "Details",
- "classicPolicyDisableCommand": "Deaktivieren",
- "classicPolicyDisableConfirmation": "Möchten Sie \"{0}\" deaktivieren? Diese Aktion kann nicht rückgängig gemacht werden.",
- "classicPolicyDisableFailDescription": "Fehler beim Deaktivieren von \"{0}\".",
- "classicPolicyDisableFailTitle": "Fehler beim Deaktivieren der klassischen Richtlinie",
- "classicPolicyDisableInProgressDescription": "\"{0}\" wird deaktiviert.",
- "classicPolicyDisableInProgressTitle": "Klassische Richtlinie wird deaktiviert",
- "classicPolicyDisableSuccessDescription": "\"{0}\" wurde erfolgreich deaktiviert.",
- "classicPolicyDisableSuccessTitle": "Klassische Richtlinie deaktiviert",
- "classicPolicyEasSupportedPlatforms": "Von Exchange ActiveSync unterstützte Plattformen",
- "classicPolicyEasUnsupportedPlatforms": "Von Exchange ActiveSync nicht unterstützte Plattformen",
- "classicPolicyExcludedPlatformsTitle": "Ausgeschlossene Geräteplattformen",
- "classicPolicyFilterAll": "Alle Richtlinien",
- "classicPolicyFilterDisabled": "Deaktivierte Richtlinien",
- "classicPolicyFilterEnabled": "Aktivierte Richtlinien",
- "classicPolicyIncludeExcludeMembersDescription": "Durch das Ausschließen von Gruppen können Sie Richtlinien in Phasen migrieren.",
- "classicPolicyIncludeExcludeMembersTitle": "Gruppen einschließen/ausschließen",
- "classicPolicyIncludedPlatformsTitle": "Eingeschlossene Geräteplattformen",
- "classicPolicyManualMigrationMessage": "Diese Richtlinie muss manuell migriert werden.",
- "classicPolicyMigrateCommand": "Migrieren",
- "classicPolicyMigrateConfirmation": "Möchten Sie \"{0}\" migrieren? Diese Richtlinie kann nur einmal migriert werden.",
- "classicPolicyMigrateFailDescription": "Fehler bei der Migration von \"{0}\".",
- "classicPolicyMigrateFailTitle": "Fehler beim Migrieren der klassischen Richtlinie",
- "classicPolicyMigrateInProgressDescription": "\"{0}\" wird migriert.",
- "classicPolicyMigrateInProgressTitle": "Klassische Richtlinie wird migriert",
- "classicPolicyMigrateRecommendText": "Empfehlung: Führen Sie eine Migration zu den neuen Azure-Portalrichtlinien durch.",
- "classicPolicyMigrateSuccessTitle": "Klassische Richtlinie erfolgreich migriert",
- "classicPolicyMigratedSuccessDescription": "Diese klassische Richtlinie kann jetzt unter \"Richtlinien\" verwaltet werden.",
- "classicPolicyMigratedSuccessDescriptionMultiple": "Diese klassische Richtlinie wurde in {0} neue Richtlinien migriert. Neue Richtlinien können unter \"Richtlinien\" verwaltet werden.",
- "classicPolicyNoEditPermissionMsg": "Sie haben keine Berechtigung zum Bearbeiten dieser Richtlinie. Nur globale Administratoren und Sicherheitsadministratoren können die Richtlinie bearbeiten. Klicken Sie hier, um weitere Informationen zu erhalten.",
- "classicPolicySaveFailDescription": "Fehler beim Speichern von \"{0}\".",
- "classicPolicySaveFailTitle": "Fehler beim Speichern der klassischen Richtlinien",
- "classicPolicySaveInProgressDescription": "\"{0}\" wird gespeichert.",
- "classicPolicySaveInProgressTitle": "Klassische Richtlinie wird gespeichert",
- "classicPolicySaveSuccessDescription": "\"{0}\" wurde erfolgreich gespeichert.",
- "classicPolicySaveSuccessTitle": "Klassische Richtlinie gespeichert",
- "clientAppBladeLegacyInfoBanner": "Die Legacyauthentifizierung wird zurzeit nicht unterstützt.",
- "clientAppBladeLegacyUpsellBanner": "Nicht unterstützte Client-Apps blockieren (Vorschau)",
- "clientAppBladeTitle": "Client-Apps",
- "clientAppDescription": "Wählen Sie die Client-Apps aus, auf die diese Richtlinie angewendet wird.",
- "clientAppExchangeActiveSync": "Exchange ActiveSync",
- "clientAppExchangeDisabledInfo": "Exchange ActiveSync ist verfügbar, wenn Exchange Online als einzige Cloud-App ausgewählt ist. Klicken Sie, um weitere Informationen zu erhalten.",
- "clientAppExchangeWarning": "Alle übrigen Bedingungen werden von Exchange ActiveSync zurzeit nicht unterstützt.",
- "clientAppLearnMore": "Steuern Sie den Benutzerzugriff für bestimmte Clientanwendungen, die keine moderne Authentifizierung verwenden.",
- "clientAppLegacyHeader": "Legacy-Authentifizierungsclients",
- "clientAppMobileDesktop": "Mobile Apps und Desktopclients",
- "clientAppModernHeader": "Clients mit moderner Authentifizierung",
- "clientAppOnlySupportedPlatforms": "Richtlinie nur auf unterstützte Plattformen anwenden",
- "clientAppSelectSpecificClientApps": "Client-Apps auswählen",
- "clientAppV2BladeTitle": "Client-Apps (Vorschau)",
- "clientAppWebBrowser": "Browser",
- "clientAppsSelectedLabel": "{0} eingeschlossen",
- "clientTypeBrowser": "Browser",
- "clientTypeEas": "Exchange ActiveSync-Clients",
- "clientTypeEasInfo": "Exchange ActiveSync-Clients, die nur die Legacyauthentifizierung verwenden.",
- "clientTypeModernAuth": "Clients mit moderner Authentifizierung",
- "clientTypeOtherClients": "Andere Clients",
- "clientTypeOtherClientsInfo": "Dies schließt ältere Office-Clients und weitere E-Mail-Protokolle (POP, IMAP, SMTP usw.) ein. [Weitere Informationen][1]\n[1]: https://aka.ms/caclientapps\n",
- "cloudAppCountDiffBannerText": "{0} der in dieser Richtlinie konfigurierten Cloud-Apps wurden aus dem Verzeichnis gelöscht, aber dies wirkt sich nicht auf die weiteren Apps in der Richtlinie aus. Beim nächsten Aktualisieren des Anwendungsabschnitts der Richtlinie werden die gelöschten Apps automatisch entfernt.",
- "cloudAppsSelectionBladeAllMicrosoftApps": "Alle Microsoft-Apps",
- "cloudAppsSelectionExcludeAllMicrosoftClients": "Cloud-, Desktop- und mobile Apps von Microsoft zulassen (Vorschau)",
- "cloudappsSelectionBladeAllCloudapps": "Alle Cloud-Apps",
- "cloudappsSelectionBladeExcludeDescription": "Wählen Sie die Cloud-Apps aus, die von der Richtlinie ausgenommen werden sollen.",
- "cloudappsSelectionBladeExcludedSelectorTitle": "Ausgeschlossene Cloud-Apps auswählen",
- "cloudappsSelectionBladeIncludeDescription": "Hiermit werden die Cloud-Apps ausgewählt, auf die die Richtlinie angewendet wird.",
- "cloudappsSelectionBladeIncludedSelectorTitle": "Auswählen",
- "cloudappsSelectionBladeSelectedCloudapps": "Apps auswählen",
- "cloudappsSelectorInfoBallonText": "Dienste, auf die der Benutzer im Rahmen seiner Arbeit zugreift. Beispiel: \"Salesforce\"",
- "cloudappsSelectorUserPlural": "{0} Apps",
- "cloudappsSelectorUserSingular": "1 App",
- "conditionLabelMulti": "{0} Bedingungen ausgewählt",
- "conditionLabelOne": "1 Bedingung ausgewählt",
- "conditionalAccessBladeTitle": "Bedingter Zugriff",
- "conditionsNotSelectedLabel": "Nicht konfiguriert",
- "conditionsReqPwSet": "Aufgrund der derzeit ausgewählten Zuweisung \"Kennwortänderung anfordern\" sind einige Optionen nicht verfügbar.",
- "configureCasText": "Cloud App Security konfigurieren",
- "configureCustomControlsText": "Benutzerdefinierte Richtlinie konfigurieren",
- "controlLabelMulti": "{0} Steuerelemente ausgewählt",
- "controlLabelOne": "1 Steuerelement ausgewählt",
- "controlValidatorText": "Wählen Sie mindestens ein Steuerelement aus.",
- "controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
- "controlsDeviceComplianceInfoBubble": "Das Gerät muss mit Intune kompatibel sein. Wenn das Gerät nicht kompatibel ist, wird der Benutzer aufgefordert, für Gerätekompatibilität zu sorgen.",
- "controlsDomainJoinedInfoBubble": "Geräte müssen als Hybridgeräte in Azure AD eingebunden werden.",
- "controlsMamInfoBubble": "Das Gerät muss diese genehmigten Clientanwendungen verwenden.",
- "controlsMfaInfoBubble": "Benutzer müssen zusätzliche Sicherheitsanforderungen erfüllen, z. B. Telefonanruf, SMS.",
- "controlsOrAndInfoBubble": "ControlsOrAndInfoBubble",
- "controlsRequireCompliantAppInfoBubble": "Das Gerät muss durch Richtlinien geschützte Apps verwenden.",
- "controlsRequirePasswordResetInfoBubble": "Zum Verringern des Benutzerrisikos ist eine Kennwortänderung erforderlich. Für diese Option wird außerdem die Multi-Faktor-Authentifizierung benötigt. Andere Steuerelemente können nicht verwendet werden.",
- "countriesRadiobuttonInfoBalloonContent": "Das Land/die Region, von der aus die Anmeldung erfolgt, wird über die IP-Adresse des Benutzers bestimmt.",
- "createNewVpnCert": "Neues Zertifikat",
- "createdTimeLabel": "Zeitpunkt der Erstellung",
- "customRoleLabel": "Benutzerdefinierte Rollen (nicht unterstützt)",
- "dateRangeTypeLabel": "Datumsbereich",
- "daysOfWeekPlaceholderText": "Wochentage filtern",
- "daysOfWeekTypeLabel": "Wochentage",
- "deletePolicyNoLicenseText": "Sie können diese Richtlinie jetzt löschen. Nach dem Löschen können Sie sie erst dann wiederherstellen, wenn Sie die erforderlichen Lizenzen besitzen.",
- "descriptionContentForControlsAndOr": "Für mehrere Steuerelemente",
- "devicePlatform": "Geräteplattform",
- "devicePlatformConditionHelpDescription": "Hiermit wird die Richtlinie auf ausgewählte Geräteplattformen angewendet.\n[Weitere Informationen][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2044750",
- "devicePlatformInclude": "{0} eingeschlossen",
- "devicePlatformIncludeExclude": "\"{0}\" und \"{1}\" ausgeschlossen",
- "devicePlatformNoSelectionError": "Für die Auswahl von Geräteplattformen muss ein untergeordnetes Element ausgewählt werden.",
- "devicePlatformsNone": "Kein",
- "deviceSelectionBladeExcludeDescription": "Wählen Sie die Plattformen aus, die von der Richtlinie ausgenommen werden sollen.",
- "deviceSelectionBladeIncludeDescription": "Hiermit werden die Geräteplattformen ausgewählt, auf die diese Richtlinie angewendet werden soll.",
- "deviceStateAll": "Alle Gerätezustände",
- "deviceStateCompliant": "Gerät als konform markiert",
- "deviceStateCompliantInfoContent": "Mit Intune konforme Geräte werden von der Auswertung dieser Richtlinie ausgeschlossen. Wenn die Richtlinie z. B. den Zugriff blockiert, werden alle Geräte mit Ausnahme derjenigen blockiert, die mit Intune konform sind.",
- "deviceStateConditionConfigureInfoContent": "Richtlinienkonfiguration basierend auf Gerätezustand",
- "deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Hybrid Azure AD joined' or 'marked as compliant'.\n '{0}' has been deprecated. Use '{1}' instead.",
- "deviceStateConditionSelectorLabel": "Gerätestatus (Vorschau)",
- "deviceStateDomainJoined": "In Azure AD eingebundenes Hybridgerät",
- "deviceStateDomainJoinedInfoContent": "In Azure AD eingebundene Hybridgeräte werden von der Auswertung dieser Richtlinie ausgeschlossen. Wenn die Richtlinie z. B. den Zugriff blockiert, werden alle Geräte mit Ausnahme der in Azure AD eingebundenen Hybridgeräte blockiert.",
- "deviceStateDomainJoinedInfoLinkText": "Weitere Informationen.",
- "deviceStateExcludeDescription": "Hiermit wird der Gerätezustand zum Ausschließen von Geräten von dieser Richtlinie ausgewählt.",
- "deviceStateIncludeAndExcludeOneLabel": "{0}, ausschließen: {1}",
- "deviceStateIncludeAndExcludeTwoLabel": "{0}, ausschließen: {1}, {2}",
- "directoryRoleInfoContent": "Weisen Sie integrierten Verzeichnisrollen eine Richtlinie zu.",
- "directoryRolesLabel": "Verzeichnisrollen",
- "discardbutton": "Verwerfen",
- "downloadDefaultFileName": "IP-Bereiche",
- "downloadExampleFileName": "Beispiel",
- "downloadExampleHeader": "Dies ist eine Beispieldatei zu den akzeptierten Datentypen. Zeilen, die mit # beginnen, werden ignoriert.",
- "endDatePickerLabel": "Endet",
- "endTimePickerLabel": "Endzeit",
- "enterCountryText": "Die IP-Adresse und das Land/die Region werden zusammen ausgewertet. Wählen Sie das Land/die Region aus.",
- "enterIpText": "Die IP-Adresse und das Land/die Region werden zusammen ausgewertet. Geben Sie die IP-Adresse ein.",
- "enterUserText": "Kein Benutzer ausgewählt. Wählen Sie einen Benutzer aus.",
- "evaluationResult": "Auswertungsergebnis",
- "exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
- "exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Nur Exchange ActiveSync mit unterstützten Plattformen",
- "excludeAllTrustedLocationSelectorText": "Alle vertrauenswürdigen Standorte",
- "featureRequiresP2": "Für dieses Feature ist eine Azure AD Premium 2-Lizenz erforderlich.",
- "friday": "Freitag",
- "grantControls": "Steuerelemente zur Rechteerteilung",
- "gridNetworkTrusted": "Vertrauenswürdig",
- "gridPolicyCreatedDateTime": "Erstellungsdatum",
- "gridPolicyEnabled": "Aktiviert",
- "gridPolicyModifiedDateTime": "Änderungsdatum",
- "gridPolicyName": "Richtlinienname",
- "gridPolicyState": "Zustand",
- "groupSelectionBladeExcludeDescription": "Hiermit werden die Gruppen ausgewählt, die von der Richtlinie ausgenommen werden sollen.",
- "groupSelectionBladeExcludedSelectorTitle": "Ausgeschlossene Gruppen auswählen",
- "groupSelectionBladeSelect": "Gruppen auswählen",
- "groupSelectorInfoBallonText": "Gruppen im Verzeichnis, auf das die Richtlinie angewendet wird. Beispiel: \"Pilotgruppe\"",
- "groupsSelectionBladeTitle": "Gruppen",
- "helpCommonScenariosText": "Möchten Sie einige gängige Szenarien kennenlernen?",
- "helpCondition1": "Wenn sich ein beliebiger Benutzer außerhalb des Unternehmensnetzwerks befindet",
- "helpCondition2": "Wenn sich Benutzer der Gruppe \"Manager\" anmelden",
- "helpConditionsTitle": "Bedingungen",
- "helpControl1": "Sie müssen sich unter Verwendung der Multi-Faktor-Authentifizierung anmelden.",
- "helpControl2": "Sie müssen sich auf einem Intune-kompatiblen oder auf einem in die Domäne eingebundenen Gerät befinden.",
- "helpControlsTitle": "Steuerungen",
- "helpIntroText": "Über den bedingten Zugriff können Sie Zugriffsanforderungen erzwingen, wenn bestimmte Bedingungen erfüllt sind. Hier einige Beispiele:",
- "helpIntroTitle": "Was ist bedingter Zugriff?",
- "helpLearnMoreText": "Möchten Sie mehr über den bedingten Zugriff erfahren?",
- "helpStartStep1": "Erstellen Sie Ihre erste Richtlinie, indem Sie auf \"+ Neue Richtlinie\" klicken.",
- "helpStartStep2": "Geben Sie Richtlinienbedingungen und -steuerelemente an.",
- "helpStartStep3": "Wenn Sie fertig sind, vergessen Sie nicht, die Richtlinie zu aktivieren und auf \"Erstellen\" zu klicken.",
- "helpStartTitle": "Erste Schritte",
- "highRisk": "Hoch",
- "includeAndExcludeAppsTextFormat": "Einschließen: {0}. Ausschließen: {1}.",
- "includeAppsTextFormat": "Einschließen: {0}.",
- "includeUnknownAreasCheckboxInfoBalloonContent": "Unbekannte Bereiche sind IP-Adressen, die keinem Land/keiner Region zugeordnet werden können.",
- "includeUnknownAreasCheckboxLabel": "Unbekannte Bereiche einschließen",
- "infoCommandLabel": "Info",
- "invalidCertDuration": "Ungültige Zertifikatdauer.",
- "invalidIpAddress": "Der Wert muss eine gültige IP-Adresse sein.",
- "invalidUriErrorMsg": "Geben Sie einen gültigen URI an. Beispiel: uri:contoso.com:acr ",
- "iosDisplayName": "iOS",
- "linuxDisplayName": "Linux",
- "linuxDisplayNamePreview": "Linux (Vorschau)",
- "loadAll": "Alle laden",
- "loading": "Wird geladen...",
- "locationConfigureNamedLocationsText": "Alle vertrauenswürdigen Standorte konfigurieren",
- "locationConfigureNamedLocationsUri": "{0}/usermanagement/mfasettings.aspx?tenantid={1}&culture={2}",
- "locationNameTooLongError": "Der Name der Richtlinie ist zu lang. Er darf maximal 256 Zeichen umfassen.",
- "locationSelectionBladeExcludeDescription": "Wählen Sie die Standorte aus, die von der Richtlinie ausgenommen werden sollen.",
- "locationSelectionBladeIncludeDescription": "Hiermit werden die Standorte ausgewählt, die in diese Richtlinie eingeschlossen werden sollen.",
- "locationsAllLocationsLabel": "Alle Standorte",
- "locationsAllNamedLocationsLabel": "Alle vertrauenswürdigen IPs",
- "locationsAllPrivateLinksLabel": "Alle Private Link-Instanzen in meinem Mandanten",
- "locationsIncludeExcludeLabel": "\"{0}\" und alle vertrauenswürdigen IPs ausschließen",
- "locationsSelectedPrivateLinksLabel": "Ausgewählte Private Link-Instanzen",
- "lowRisk": "Niedrig",
- "macOsDisplayName": "macOS",
- "managePoliciesLicenseText": "Zum Verwalten von Richtlinien für bedingten Zugriff benötigt Ihre Organisation Azure AD Premium P1 oder P2.",
- "markAsTrustedCheckboxInfoBalloonContent": "Durch die Anmeldung von einem vertrauenswürdigen Standort aus wird das Benutzeranmelderisiko verringert. Markieren Sie diesen Standort nur dann als vertrauenswürdig, wenn die eingegebenen IP-Bereiche bekannt sind und in Ihrer Organisation als unbedenklich eingestuft werden.",
- "markAsTrustedCheckboxLabel": "Als vertrauenswürdigen Standort markieren",
- "mediumRisk": "Mittel",
- "memberSelectionCommandRemove": "Entfernen",
- "menuItemClaimProviderControls": "Benutzerdefinierte Steuerelemente (Vorschau)",
- "menuItemClassicPolicies": "Klassische Richtlinien",
- "menuItemInsightsAndReporting": "Insights und Berichterstellung",
- "menuItemManage": "Verwalten",
- "menuItemNamedLocationsPreview": "Benannte Standorte (Vorschau)",
- "menuItemNamedNetworks": "Benannte Standorte",
- "menuItemPolicies": "Richtlinien",
- "menuItemTermsOfUse": "Nutzungsbedingungen",
- "modifiedTimeLabel": "Zeitpunkt der Änderung",
- "monday": "Montag",
- "nameLabel": "Name",
- "namedLocationCountryInfoBanner": "Nur IPv4-Adressen werden Ländern/Regionen zugeordnet. IPv6-Adressen werden bei unbekannten Ländern/Regionen einbezogen.",
- "namedLocationTypeCountry": "Länder/Regionen",
- "namedLocationTypeLabel": "Standort definieren über:",
- "namedLocationUpsellBanner": "Diese Ansicht ist veraltet. Wechseln Sie zur neuen und verbesserten Ansicht \"Benannte Standorte\".",
- "namedLocationsHelpDescription": "Benannte Standorte werden von Azure AD-Sicherheitsberichten verwendet, um die Anzahl von falsch positiven Ergebnissen und von Azure AD-Richtlinien für bedingten Zugriff zu verringern.\n[Weitere Informationen][1]\n[1]: https://aka.ms/namedlocationupdate",
- "namedNetworkAddIpRanges": "Neuen IP-Adressbereich hinzufügen (Beispiel: 40.77.182.32/27)",
- "namedNetworkCountryNeeded": "Sie müssen mindestens ein Land/eine Region auswählen.",
- "namedNetworkDeleteCommand": "Löschen",
- "namedNetworkDeleteDescription": "Möchten Sie \"{0}\" löschen? Diese Aktion kann nicht rückgängig gemacht werden.",
- "namedNetworkDeleteTitle": "Sind Sie sicher?",
- "namedNetworkDownloadIpRange": "Herunterladen",
- "namedNetworkInvalidRange": "Der Wert muss ein gültiger IP-Bereich sein.",
- "namedNetworkIpRangeNeeded": "Sie benötigen mindestens einen gültigen IP-Bereich.",
- "namedNetworkIpRangesDescriptionContent": "Hiermit werden die IP-Adressbereiche für Ihre Organisation konfiguriert.",
- "namedNetworkIpRangesTab": "IP-Bereiche",
- "namedNetworkListAdd": "Neuer Standort",
- "namedNetworkListConfigureTrustedIps": "Durch MFA bestätigte IPs konfigurieren",
- "namedNetworkNameDescription": "Beispiel: \"Büro Redmond\"",
- "namedNetworkNameInvalid": "Der angegebene Name ist ungültig.",
- "namedNetworkNameRequired": "Sie müssen einen Namen für diesen Standort angeben.",
- "namedNetworkNoIpRanges": "Keine IP-Bereiche",
- "namedNetworkNotificationCreateDescription": "Der Standort namens \"{0}\" wird erstellt.",
- "namedNetworkNotificationCreateFailedDescription": "Fehler beim Erstellen des Standorts \"{0}\". Versuchen Sie es später noch mal.",
- "namedNetworkNotificationCreateFailedTitle": "Fehler beim Erstellen des Standorts",
- "namedNetworkNotificationCreateSuccessDescription": "Der Standort namens \"{0}\" wurde erstellt.",
- "namedNetworkNotificationCreateSuccessTitle": "\"{0}\" wurde erstellt",
- "namedNetworkNotificationCreateTitle": "\"{0}\" wird erstellt",
- "namedNetworkNotificationDeleteDescription": "Der Standort namens \"{0}\" wird gelöscht.",
- "namedNetworkNotificationDeleteFailedDescription": "Fehler beim Löschen des Standorts \"{0}\". Versuchen Sie es später noch mal.",
- "namedNetworkNotificationDeleteFailedTitle": "Fehler beim Löschen des Standorts",
- "namedNetworkNotificationDeleteSuccessDescription": "Der Standort namens \"{0}\" wurde gelöscht.",
- "namedNetworkNotificationDeleteSuccessTitle": "\"{0}\" wurde gelöscht",
- "namedNetworkNotificationDeleteTitle": "\"{0}\" wird gelöscht.",
- "namedNetworkNotificationUpdateDescription": "Der Standort namens \"{0}\" wird aktualisiert.",
- "namedNetworkNotificationUpdateFailedDescription": "Fehler beim Aktualisieren des Standorts \"{0}\". Versuchen Sie es später noch mal.",
- "namedNetworkNotificationUpdateFailedTitle": "Fehler beim Aktualisieren des Standorts",
- "namedNetworkNotificationUpdateSuccessDescription": "Der Standort namens \"{0}\" wurde aktualisiert.",
- "namedNetworkNotificationUpdateSuccessTitle": "\"{0}\" wurde aktualisiert",
- "namedNetworkNotificationUpdateTitle": "\"{0}\" wird aktualisiert",
- "namedNetworkSearchPlaceholder": "Suche nach Standorten",
- "namedNetworkUploadFailedDescription": "Fehler beim Analysieren der angegebenen Datei. Stellen Sie sicher, dass eine Nur-Text-Datei hochgeladen wird, bei der jede Zeile das CIDR-Format aufweist.",
- "namedNetworkUploadFailedTitle": "Fehler beim Analysieren von \"{0}\"",
- "namedNetworkUploadInProgressDescription": "Es wird versucht, gültige CIDR-Werte aus \"{0}\" zu analysieren.",
- "namedNetworkUploadInProgressTitle": "\"{0}\" wird analysiert",
- "namedNetworkUploadInvalidDescription": "\"{0}\" ist entweder zu groß oder weist ein ungültiges Format auf.",
- "namedNetworkUploadInvalidTitle": "\"{0}\" ungültig",
- "namedNetworkUploadIpRange": "Hochladen",
- "namedNetworkUploadSuccessDescription": "{0} Zeilen wurden analysiert. {1} weisen ein ungültiges Format auf. {2} wurden übersprungen.",
- "namedNetworkUploadSuccessTitle": "Analyse von \"{0}\" beendet",
- "namedNetworksAdd": "Neuer benannter Standort",
- "namedNetworksConditionHelpDescription": "Hiermit steuern Sie den Benutzerzugriff basierend auf dem physischen Standort.\n[Weitere Informationen][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
- "namedNetworksExcludeLabel": "\"{0}\" und \"{1}\" ausgeschlossen",
- "namedNetworksHelpDescription": "Benannte Standorte werden von Azure AD-Sicherheitsberichten verwendet, um die Anzahl von falsch positiven Ergebnissen und von Azure AD-Richtlinien für bedingten Zugriff zu verringern.\n[Weitere Informationen][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
- "namedNetworksIncludeLabel": "{0} eingeschlossen",
- "namedNetworksNone": "Keine benannten Standorte gefunden.",
- "namedNetworksTitle": "Standorte konfigurieren",
- "namednetworkExceedingSizeErrorBladeTitle": "Fehlerdetails",
- "namednetworkExceedingSizeErrorDetailText": "Klicken Sie hier, um weitere Informationen zu erhalten.",
- "namednetworkExceedingSizeErrorMessage": "Sie haben den maximal zulässigen Speicher für benannte Standorte überschritten. Versuchen Sie es mit einer kürzeren Liste. Klicken Sie hier, um weitere Details anzuzeigen.",
- "newCertName": "Neues Zertifikat",
- "noPolicyRowMessage": "Keine Richtlinien",
- "noSPSelected": "Kein Dienstprinzipal ausgewählt",
- "noUpdatePermissionMessage": "Sie sind nicht berechtigt, diese Einstellungen zu aktualisieren. Wenden Sie sich an den globalen Administrator, um Zugriff zu erhalten.",
- "noUserSelected": "Kein Benutzer ausgewählt.",
- "noneRisk": "Kein Risiko",
- "office365Description": "Zu diesen Apps gehören Microsoft Flow, Microsoft Forms, Microsoft Teams, Office 365 Exchange Online, Office 365 SharePoint Online, Office 365 Yammer und andere.",
- "office365InfoBox": "Mindestens eine der ausgewählten Apps ist Teil von Office 365. Es wird empfohlen, die Richtlinie stattdessen für die Office 365-App festzulegen.",
- "oneUserSelected": "1 Benutzer ausgewählt",
- "onlyGlobalAdminsCanSaveThisPolicyConfig": "Nur globale Administratoren können diese Richtlinie speichern.",
- "or": "{0} ODER {1}",
- "pickerDoneCommand": "Fertig",
- "policiesBladeAdPremiumUpsellBannerText": "Erstellen Sie Ihre eigenen Richtlinien, und bearbeiten Sie spezifische Bedingungen wie Cloud-Apps, Anmelderisiken und Geräteplattformen mit Azure AD Premium.",
- "policiesBladeTitle": "Richtlinien",
- "policiesBladeTitleWithAppName": "Richtlinien: {0}",
- "policiesDisabledBannerText": "Das Erstellen und Bearbeiten von Richtlinien ist für Anwendungen mit einem Attribut für die Anmeldung per Link untersagt.",
- "policiesHitMaxLimitStatusBarMessage": "Sie haben die maximale Anzahl von Richtlinien für diesen Mandanten erreicht. Löschen Sie einige Richtlinien, um weitere Richtlinien erstellen zu können.",
- "policyAssignmentsSection": "Zuweisungen",
- "policyBlockAllInfoBox": "Die konfigurierte Richtlinie blockiert alle Benutzer und wird daher nicht unterstützt. Überprüfen Sie die Zuweisungen und Steuerelemente. Schließen Sie den aktuellen Benutzer ({0}) aus, wenn Sie diese Richtlinie speichern möchten.",
- "policyCloudAppsDisplayTextAllApp": "Alle Apps",
- "policyCloudAppsLabel": "Cloud-Apps",
- "policyConditionClientAppDescription": "Software, die der Benutzer zum Zugriff auf die Cloud-App verwendet. Beispiel: \"Browser\"",
- "policyConditionClientAppV2Description": "Software, die der Benutzer zum Zugriff auf die Cloud-App verwendet. Beispiel: \"Browser\"",
- "policyConditionDevicePlatform": "Geräteplattformen",
- "policyConditionDevicePlatformDescription": "Die Plattform, von der aus sich der Benutzer anmeldet. Beispiel: \"iOS\"",
- "policyConditionLocation": "Standorte",
- "policyConditionLocationDescription": "Der Standort (ermittelt über den IP-Adressbereich), von dem aus sich der Benutzer anmeldet",
- "policyConditionSigninRisk": "Anmelderisiko",
- "policyConditionSigninRiskDescription": "Die Wahrscheinlichkeit, dass die Anmeldung von einer anderen Person als dem Benutzer stammt. Die Risikostufe kann \"Hoch\", \"Mittel\" oder \"Niedrig\" lauten. Erfordert eine Azure AD Premium 2-Lizenz.",
- "policyConditionUserRisk": "Benutzerrisiko",
- "policyConditionUserRiskDescription": "Hiermit konfigurieren Sie die Benutzerrisikostufen, die für die Erzwingung der Richtlinie erforderlich sind.",
- "policyConditioniClientApp": "Client-Apps",
- "policyConditioniClientAppV2": "Client-Apps (Vorschau)",
- "policyControlAllowAccessDisplayedName": "Zugriff gewähren",
- "policyControlAuthenticationStrengthDisplayedName": "Authentifizierungsstärke erforderlich (Vorschau)",
- "policyControlBladeTitle": "Gewähren",
- "policyControlBlockAccessDisplayedName": "Blockzugriff",
- "policyControlCompliantDeviceDisplayedName": "Markieren des Geräts als kompatibel erforderlich",
- "policyControlContentDescription": "Steuern Sie die Zugriffserzwingung, um den Zugriff zu blockieren oder zu gewähren.",
- "policyControlInfoBallonText": "Blockieren Sie den Zugriff, oder wählen Sie zusätzliche Anforderungen aus, die für eine Zugriffserteilung erfüllt sein müssen.",
- "policyControlMfaChallengeDisplayedName": "Multi-Faktor-Authentifizierung erfordern",
- "policyControlRequireCompliantAppDisplayedName": "App-Schutzrichtlinie erforderlich",
- "policyControlRequireDomainJoinedDisplayedName": "In Azure AD eingebundenes Hybridgerät erforderlich",
- "policyControlRequireMamDisplayedName": "Genehmigte Client-App erforderlich",
- "policyControlRequiredPasswordChangeDisplayedName": "Kennwortänderung anfordern",
- "policyControlSelectAuthStrength": "Authentifizierungsstärke erforderlich",
- "policyControlsNoControlsSelected": "0 Steuerelemente ausgewählt",
- "policyControlsSection": "Zugriffskontrollen",
- "policyCreatBladeTitle": "Neu",
- "policyCreateButton": "Erstellen",
- "policyCreateFailedMessage": "Fehler: {0}",
- "policyCreateFailedTitle": "Fehler beim Erstellen von \"{0}\"",
- "policyCreateInProgressTitle": "\"{0}\" wird erstellt",
- "policyCreateSuccessMessage": "\"{0}\" wurde erfolgreich erstellt. Die Richtlinie wird in wenigen Minuten aktiviert, wenn Sie \"Richtlinie aktivieren\" auf \"Ein\" festgelegt haben.",
- "policyCreateSuccessTitle": "\"{0}\" erfolgreich erstellt",
- "policyDeleteConfirmation": "Möchten Sie \"{0}\" löschen? Diese Aktion kann nicht rückgängig gemacht werden.",
- "policyDeleteFailTitle": "Fehler beim Löschen von \"{0}\".",
- "policyDeleteInProgressTitle": "\"{0}\" wird gelöscht.",
- "policyDeleteSuccessTitle": "\"{0}\" wurde erfolgreich gelöscht.",
- "policyEnforceLabel": "Richtlinie aktivieren",
- "policyErrorCannotSetSigninRisk": "Sie haben keine Berechtigung zum Speichern einer Richtlinie mit einer Bedingung zum Anmelderisiko.",
- "policyErrorNoPermission": "Sie haben keine Berechtigung zum Speichern der Richtlinie. Wenden Sie sich an Ihren globalen Administrator.",
- "policyErrorUnknown": "Es ist ein Fehler aufgetreten. Versuchen Sie es später noch mal.",
- "policyFallbackWarningMessage": "Fehler beim Erstellen oder Aktualisieren von \"{0}\" mithilfe von MS Graph. Es wurde ein Fallback auf AD Graph durchgeführt. Untersuchen Sie das folgende Szenario, weil höchstwahrscheinlich ein Fehler beim Aufrufen des Richtlinienendpunkts für MS Graph mit einer inkompatiblen Bedingung vorliegt.",
- "policyFallbackWarningTitle": "\"{0}\" teilweise erfolgreich erstellt oder aktualisiert",
- "policyNameCannotBeEmpty": "Der Richtlinienname darf nicht leer sein.",
- "policyNameDevice": "Geräterichtlinie",
- "policyNameFormat": "[{0}] {1}",
- "policyNameMam": "Richtlinie für die Verwaltung mobiler Apps",
- "policyNameMfaLocation": "MFA- und Standortrichtlinie",
- "policyNamePlaceholderText": "Beispiel: \"App-Richtlinie zur Gerätekompatibilität\"",
- "policyNameTooLongError": "Der Name der Richtlinie ist zu lang. Der Name darf maximal 256 Zeichen umfassen.",
- "policyOff": "Aus",
- "policyOn": "Ein",
- "policyReportOnly": "Nur Bericht",
- "policyReviewSection": "Überprüfung",
- "policySaveButton": "Speichern",
- "policyStatusIconDescription": "Die Richtlinie ist aktiviert.",
- "policyStatusIconEnabled": "Symbol für den Status \"Aktiviert\"",
- "policyTemplateName1": "Von der App erzwungene Einschränkungen für den Browserzugriff durch {0} verwenden",
- "policyTemplateName2": "Zugriff durch {0} nur auf verwalteten Geräten zulassen",
- "policyTemplateName3": "Die Richtlinie wurde aus den Einstellungen für die fortlaufende Zugriffsevaluierung migriert.",
- "policyTriggerRiskSpecific": "Bestimmte Risikostufe auswählen",
- "policyTriggersInfoBalloonText": "Diese Bedingungen definieren die Anwendung der Richtlinie. Beispiel \"Standort\".",
- "policyTriggersNoConditionsSelected": "0 Bedingungen ausgewählt",
- "policyTriggersSelectorLabel": "Bedingungen",
- "policyUpdateFailedMessage": "Fehler: {0}",
- "policyUpdateFailedTitle": "Fehler beim Aktualisieren von \"{0}\".",
- "policyUpdateInProgressTitle": "\"{0}\" wird aktualisiert.",
- "policyUpdateSuccessMessage": "\"{0}\" wurde erfolgreich aktualisiert. Die Richtlinie wird in wenigen Minuten aktiviert, wenn Sie \"Richtlinie aktivieren\" auf \"Ein\" festgelegt haben.",
- "policyUpdateSuccessTitle": "\"{0}\" wurde erfolgreich aktualisiert.",
- "primaryCol": "Primär",
- "privateLinkLabel": "Azure AD Private Link",
- "reportOnlyInfoBox": "Modus \"Nur Bericht\": Richtlinien werden bei der Anmeldung ausgewertet und protokolliert, beeinträchtigen die Benutzer aber nicht.",
- "requireAllControlsText": "Alle ausgewählten Kontrollen anfordern",
- "requireCompliantDevice": "Erfordert kompatibles Gerät",
- "requireDomainJoined": "In Domäne eingebundenes Gerät erforderlich",
- "requireMFA": "Multi-Factor Authentication erforderlich",
- "requireOneControlText": "Eine der ausgewählten Steuerungen anfordern",
- "resetFilters": "Filter zurücksetzen",
- "sPRequired": "Dienstprinzipal ist erforderlich",
- "sPSelectorInfoBalloon": "Benutzer oder Dienstprinzipal, den Sie testen möchten",
- "saturday": "Samstag",
- "searchTextTooLongError": "Der Suchtext ist zu lang. Es sind maximal 256 Zeichen zulässig.",
- "securityDefaultsPolicyName": "Sicherheitsstandards",
- "securityDefaultsTextMessage": "Die Sicherheitsstandards müssen deaktiviert sein, um Richtlinie für bedingten Zugriff zu aktivieren.",
- "securityDefaultsWarningMessage": "Sie möchten offenbar die Sicherheitskonfigurationen Ihrer Organisation verwalten. Hervorragend! Sie müssen zunächst die Sicherheitsstandards deaktivieren, um eine Richtlinie für den bedingten Zugriff zu aktivieren.",
- "selectDevicePlatforms": "Geräteplattformen auswählen",
- "selectNamedNetworksSubtitle": "",
- "selectNamedNetworksTitle": "Speicherorte auswählen",
- "selectedSP": "Ausgewählter Dienstprinzipal",
- "servicePrincipalDataGridAria": "Liste der verfügbaren Dienstprinzipale",
- "servicePrincipalDropDownLabel": "Wofür gilt diese Richtlinie?",
- "servicePrincipalInfoBox": "Einige Bedingungen sind aufgrund der Auswahl von „{0}“ in der Richtlinienzuweisung nicht verfügbar.",
- "servicePrincipalRadioAll": "Alle eigenen Dienstprinzipale",
- "servicePrincipalRadioSelect": "Dienstprinzipale auswählen",
- "servicePrincipalSelectionsAria": "Raster für ausgewählte Dienstprinzipale",
- "servicePrincipalSelectorAria": "Liste der ausgewählten Dienstprinzipale",
- "servicePrincipalSelectorMultiple": "{0} Dienstprinzipale ausgewählt",
- "servicePrincipalSelectorSingle": "1 Dienstprinzipal ausgewählt",
- "servicePrincipalSpecificInc": "Bestimmte eingeschlossene Dienstprinzipale",
- "servicePrincipals": "Dienstprinzipal",
- "sessionControlBladeTitle": "Sitzung",
- "sessionControlDescriptionContent": "Steuern Sie den Zugriff basierend auf Sitzungssteuerelementen, um in bestimmten Cloudanwendungen eine eingeschränkte Funktionalität zu ermöglichen.",
- "sessionControlDisableInfo": "Dieses Steuerelement kann nur mit unterstützten Apps eingesetzt werden. Aktuell sind Office 365, Exchange Online und SharePoint Online die einzigen Cloud-Apps, die von der App erzwungene Einschränkungen unterstützen. Klicken Sie hier, um weitere Informationen zu erhalten.",
- "sessionControlInfoBallonText": "Sitzungssteuerelemente sorgen für eingeschränkte Interaktionsmöglichkeiten innerhalb einer Cloud-App.",
- "sessionControls": "Sitzungskontrollen",
- "sessionControlsAppEnforcedLabel": "Von der App erzwungene Einschränkungen verwenden",
- "sessionControlsCasLabel": "App-Steuerung für bedingten Zugriff verwenden",
- "sessionControlsSecureSignInLabel": "Tokenbindung erforderlich",
- "sharepointAppName": "SharePoint",
- "signinRiskDescription": "Hiermit wählen Sie die Anmelderisikostufe aus, auf die diese Richtlinie angewendet werden soll.",
- "signinRiskInclude": "{0} eingeschlossen",
- "signinRiskTriggerDescriptionContent": "Stufe für Anmelderisiko auswählen",
- "singleTenantServicePrincipalInfoBallonText": "Die Richtlinie gilt nur für Dienstprinzipale mit einem einzelnen Mandanten, die sich im Besitz Ihrer Organisation befinden. Klicken Sie hier, um weitere Informationen zu erhalten. ",
- "specificSigninRiskLevelsOption": "Spezifische Risikostufen für die Anmeldung auswählen",
- "specificUsersExcluded": "bestimmte Benutzer ausgeschlossen",
- "specificUsersIncluded": "Bestimmte Benutzer eingeschlossen",
- "specificUsersIncludedAndExcluded": "Bestimmte Benutzer ausgeschlossen und eingeschlossen",
- "startDatePickerLabel": "Startet",
- "startFreeTrial": "Kostenlose Testversion starten",
- "startTimePickerLabel": "Startzeit",
- "sunday": "Sonntag",
- "testButton": "What If",
- "thumbprintCol": "Fingerabdruck",
- "thursday": "Donnerstag",
- "timeConditionAllTimesLabel": "Beliebige Zeit",
- "timeConditionIntroText": "Hiermit werden die Zeiten für die Anwendung dieser Richtlinie ausgewählt.",
- "timeConditionSelectorInfoBallonContent": "Zeitraum, in dem sich der Benutzer anmeldet. Beispiel: \"Mittwoch, 9:00–17:00 Uhr PST\".",
- "timeConditionSelectorLabel": "Zeit (Vorschau)",
- "timeConditionSpecificLabel": "Bestimmte Zeiten",
- "timeSelectorAllTimesText": "Beliebige Zeit",
- "timeSelectorSpecificTimesText": "Bestimmte Zeiten konfiguriert",
- "timeZoneDropdownInfoBalloonContent": "Wählen Sie eine Zeitzone aus, die den Zeitbereich definiert. Diese Richtlinie gilt für Benutzer in allen Zeitzonen. Beispiel: Der Zeitraum \"Mittwoch, 9:00–17:00 Uhr\", der für einen Benutzer in einer bestimmten Zeitzone gilt, entspricht für einen anderen Benutzer in einer anderen Zeitzone dem Zeitraum \"Mittwoch, 10:00–18:00 Uhr\".",
- "timeZoneDropdownLabel": "Zeitzone",
- "timeZoneDropdownPlaceholderText": "Zeitzone auswählen",
- "tooManyPoliciesDescription": "Es werden nur die ersten 50 Richtlinien angezeigt. Klicken Sie hier, um alle Richtlinien anzuzeigen.",
- "tooManyPoliciesTitle": "Mehr als 50 Richtlinien gefunden",
- "trustedLocationStatusIconDescription": "Standort ist vertrauenswürdig",
- "trustedLocationStatusIconEnabled": "Symbol für vertrauenswürdigen Status",
- "tuesday": "Dienstag",
- "uploadInBadState": "Die angegebene Datei kann nicht hochgeladen werden.",
- "upsellAppsDescription": "Erfordert in allen Fällen oder nur von außerhalb des Unternehmensnetzwerks eine Multi-Faktor-Authentifizierung für sensible Anwendungen.",
- "upsellAppsTitle": "Sichere Anwendungen",
- "upsellBannerText": "Holen Sie sich die kostenlose Premium-Testversion, um dieses Feature zu verwenden.",
- "upsellDataDescription": "Für den Zugriff auf Unternehmensressourcen ist die Markierung des Geräts als konform oder eine Einbindung als Hybridgerät in Azure AD erforderlich.",
- "upsellDataTitle": "Sichere Daten",
- "upsellDescription": "Der bedingte Zugriff bietet genau den Grad an Kontrolle und Schutz, den Sie zur Absicherung Ihrer Unternehmensdaten benötigen. Gleichzeitig wird gewährleistet, dass Ihre Benutzer bestmöglich von einem beliebigen Gerät aus ihre Arbeit erledigen können. Beispielsweise können Sie den Zugriff von außerhalb des Unternehmensnetzwerks einschränken oder den Zugriff auf Geräte beschränken, die den Kompatibilitätsrichtlinien entsprechen.",
- "upsellRiskDescription": "Erfordert eine Multi-Faktor-Authentifizierung für Risikoereignisse, die vom Microsoft Machine Learning-System erkannt werden.",
- "upsellRiskTitle": "Risikoschutz",
- "upsellTitle": "Bedingter Zugriff",
- "upsellWhyTitle": "Was spricht für die Verwendung des bedingten Zugriffs?",
- "userAppNoneOption": "Kein",
- "userNamePlaceholderText": "Benutzernamen eingeben",
- "userNotSetSeletorLabel": "0 Benutzer und Gruppen ausgewählt",
- "userOnlySelectionBladeExcludeDescription": "Wählen Sie die Benutzer aus, die von der Richtlinie ausgenommen werden sollen.",
- "userOrGroupSelectionCountDiffBannerText": "{0}, die in dieser Richtlinie konfiguriert sind, wurden aus dem Verzeichnis gelöscht. Dies wirkt sich jedoch nicht auf die weiteren Benutzer und Gruppen in der Richtlinie aus. Beim nächsten Aktualisieren der Richtlinie werden die gelöschten Benutzer und/oder Gruppen automatisch entfernt.",
- "userOrSPNotSetSelectorLabel": "0 Benutzer- oder Workloadidentitäten ausgewählt",
- "userOrSPSelectionBladeTitle": "Benutzer- oder Workloadidentitäten",
- "userOrSPSelectorInfoBallonText": "Identitäten im Verzeichnis, für das die Richtlinie gilt, einschließlich Benutzer, Gruppen und Dienstprinzipale",
- "userRequired": "Benutzer erforderlich",
- "userRiskErrorBox": "Die Bedingung \"Benutzerrisiko\" muss ausgewählt werden, wenn die Zuweisung \"Kennwortänderung anfordern\" ausgewählt ist.",
- "userSPRequired": "Benutzer oder Dienstprinzipal ist erforderlich",
- "userSPSelectorTitle": "Benutzer- oder Workloadidentität",
- "userSelectionBladeAllUsersAndGroups": "Alle Benutzer und Gruppen",
- "userSelectionBladeExcludeDescription": "Wählen Sie die Benutzer und Gruppen aus, die von der Richtlinie ausgenommen werden sollen.",
- "userSelectionBladeExcludeTabTitle": "Ausschließen",
- "userSelectionBladeExcludedSelectorTitle": "Ausgeschlossene Benutzer auswählen",
- "userSelectionBladeIncludeDescription": "Hiermit werden die Benutzer ausgewählt, auf die diese Richtlinie angewendet wird.",
- "userSelectionBladeIncludeTabTitle": "Einschließen",
- "userSelectionBladeIncludedSelectorTitle": "Auswählen",
- "userSelectionBladeSelectUsers": "Benutzer auswählen",
- "userSelectionBladeSelectedUsers": "Benutzer und Gruppen auswählen",
- "userSelectionBladeTitle": "Benutzer und Gruppen",
- "userSelectorBladeTitle": "Benutzer",
- "userSelectorExcluded": "{0} ausgeschlossen",
- "userSelectorGroupPlural": "{0} Gruppen",
- "userSelectorGroupSingular": "1 Gruppe",
- "userSelectorIncluded": "{0} eingeschlossen",
- "userSelectorInfoBallonText": "Benutzer und Gruppen im Verzeichnis, auf die die Richtlinie angewendet wird. Beispiel: \"Pilotgruppe\"",
- "userSelectorSelected": "{0} ausgewählt",
- "userSelectorTitle": "Benutzer",
- "userSelectorUserAndGroup": "{0}, {1}",
- "userSelectorUserPlural": "{0} Benutzer",
- "userSelectorUserSingular": "1 Benutzer",
- "userSelectorWithExclusion": "{0} und {1}",
- "usersGroupsLabel": "Benutzer und Gruppen",
- "viewApprovedAppsText": "Liste der genehmigten Client-Apps anzeigen",
- "viewCompliantAppsText": "Liste der durch Richtlinien geschützten Client-Apps anzeigen",
- "vpnBladeTitle": "VPN-Konnektivität",
- "vpnCertCreateFailedMessage": "Fehler: {0}",
- "vpnCertCreateFailedTitle": "Fehler beim Erstellen von {0}.",
- "vpnCertCreateInProgressTitle": "{0} wird erstellt.",
- "vpnCertCreateSuccessMessage": "\"{0}\" wurde erfolgreich erstellt.",
- "vpnCertCreateSuccessTitle": "\"{0}\" wurde erfolgreich erstellt.",
- "vpnCertNoRowsMessage": "Keine VPN-Zertifikate gefunden.",
- "vpnCertUpdateFailedMessage": "Fehler: {0}",
- "vpnCertUpdateFailedTitle": "Fehler beim Aktualisieren von \"{0}\".",
- "vpnCertUpdateInProgressTitle": "\"{0}\" wird aktualisiert.",
- "vpnCertUpdateSuccessMessage": "\"{0}\" wurde erfolgreich aktualisiert.",
- "vpnCertUpdateSuccessTitle": "\"{0}\" wurde erfolgreich aktualisiert.",
- "vpnFeatureInfo": "Klicken Sie hier, um weitere Informationen zur VPN-Konnektivität und zum bedingten Zugriff zu erhalten.",
- "vpnFeatureWarning": "Sobald ein VPN-Zertifikat im Azure-Portal erstellt wird, wird es von Azure AD sofort zum Ausstellen kurzlebiger Zertifikate für den VPN-Client verwendet. Das VPN-Zertifikat muss unbedingt sofort auf dem VPN-Server bereitgestellt werden, um Probleme bei der Validierung von Anmeldeinformationen des VPN-Clients zu vermeiden.",
- "vpnMenuText": "VPN-Konnektivität",
- "vpncertDropdownDefaultOption": "Dauer",
- "vpncertDropdownInfoBalloonContent": "Wählen Sie die Dauer für das zu erstellende Zertifikat aus.",
- "vpncertDropdownLabel": "Dauer auswählen",
- "vpncertDropdownOneyearOption": "1 Jahr",
- "vpncertDropdownThreeyearOption": "3 Jahre",
- "vpncertDropdownTwoyearOption": "2 Jahre",
- "wednesday": "Mittwoch",
- "whatIfAppEnforcedControl": "Von der App erzwungene Einschränkungen verwenden",
- "whatIfBladeDescription": "Testen Sie die Auswirkungen des bedingten Zugriffs für einen Benutzer, wenn die Anmeldung unter bestimmten Bedingungen erfolgt.",
- "whatIfBladeTitle": "What If",
- "whatIfClassicPoliciesWarning": "Klassische Richtlinien werden von diesem Tool nicht ausgewertet.",
- "whatIfClientAppInfo": "Die Client-App, über die sich der Benutzer anmeldet. Beispiel: \"Browser\".",
- "whatIfCountry": "Land",
- "whatIfCountryInfo": "Das Land, von dem aus der Benutzer sich anmeldet.",
- "whatIfDevicePlatformInfo": "Die Geräteplattform, von der aus der Benutzer sich anmeldet.",
- "whatIfDeviceStateInfo": "Der Status des Geräts, von dem aus der Benutzer sich anmeldet.",
- "whatIfEnterIpAddress": "IP-Adresse eingeben (Beispiel: 40.77.182.32)",
- "whatIfErrorInvalidIpAddress": "Es wurde eine ungültige IP-Adresse angegeben.",
- "whatIfEvaResultApplication": "Cloud-Apps",
- "whatIfEvaResultClientApps": "Client-App",
- "whatIfEvaResultDevicePlatform": "Geräteplattform",
- "whatIfEvaResultEmptyPolicy": "Leere Richtlinie",
- "whatIfEvaResultInvalidCondition": "Ungültige Bedingung",
- "whatIfEvaResultInvalidPolicy": "Ungültige Richtlinie",
- "whatIfEvaResultLocation": "Standort",
- "whatIfEvaResultNotEnoughInformation": "Nicht genügend Informationen",
- "whatIfEvaResultPolicyNotEnabled": "Nicht aktivierte Richtlinie",
- "whatIfEvaResultSignInRisk": "Anmelderisiko",
- "whatIfEvaResultUsers": "Benutzer und Gruppen",
- "whatIfIpAddress": "IP-Adresse",
- "whatIfIpAddressInfo": "Die IP-Adresse, von der aus der Benutzer sich anmeldet.",
- "whatIfIpCountryInfoBoxText": "Wenn Sie eine IP-Adresse oder ein Land/eine Region verwenden, sind beide Felder erforderlich und müssen ordnungsgemäß zugeordnet werden.",
- "whatIfPolicyAppliesTab": "Anzuwendende Richtlinien",
- "whatIfPolicyDoesNotApplyTab": "Nicht anzuwendende Richtlinien",
- "whatIfReasons": "Gründe für Nichtanwendung dieser Richtlinie",
- "whatIfSelectClientApp": "Client-App auswählen...",
- "whatIfSelectCountry": "Land auswählen...",
- "whatIfSelectDevicePlatform": "Geräteplattform auswählen...",
- "whatIfSelectPrivateLink": "Private Link auswählen...",
- "whatIfSelectServicePrincipalRisk": "Dienstprinzipalrisiko auswählen",
- "whatIfSelectSignInRisk": "Anmelderisiko auswählen...",
- "whatIfSelectType": "Identitätstyp auswählen",
- "whatIfSelectUserRisk": "Benutzerrisiko auswählen...",
- "whatIfServicePrincipalRiskInfo": "Die dem Dienstprinzipal zugeordnete Risikostufe",
- "whatIfSignInRisk": "Anmelderisiko",
- "whatIfSignInRiskInfo": "Die der Anmeldung zugeordnete Risikostufe",
- "whatIfUnknownAreas": "Unbekannte Bereiche",
- "whatIfUserPickerLabel": "Ausgewählter Benutzer",
- "whatIfUserPickerNoRowsLabel": "Kein Benutzer oder Dienstprinzipal ausgewählt",
- "whatIfUserRiskInfo": "Die dem Benutzer zugeordnete Risikostufe",
- "whatIfUserSelectorInfo": "Benutzer im Verzeichnis, das getestet werden soll",
- "windows365InfoBox": "Die Auswahl von Windows 365 wirkt sich auf Verbindungen mit Cloud-PCs und Azure Virtual Desktop-Sitzungshosts aus. Klicken Sie hier, um weitere Informationen zu erhalten.",
- "windowsDisplayName": "Windows",
- "windowsPhoneDisplayName": "Windows Phone",
- "workloadIdentities": "Workloadidentitäten (Vorschau)",
- "workloadIdentity": "Workload-Identität"
- },
- "ApplicableDeviceType": {
- "iPad": "iPad",
- "iPhoneAndIPod": "iPhone und iPod"
- },
- "TAPSettings": {
- "AllowedDataIngestionLocations": {
- "label": "Benutzern das Öffnen von Daten über ausgewählte Dienste erlauben",
- "tooltip": "Wählen Sie die Anwendungsspeicherdienste aus, über die Benutzer Daten öffnen können. Alle anderen Dienste werden blockiert. Wenn Sie keine Dienste auswählen, wird das Öffnen von Daten durch Benutzer verhindert."
- },
- "AndroidBackup": {
- "label": "Organisationsdaten in Android-Sicherungsdiensten sichern",
- "tooltip": "Wählen Sie \"{0}\" aus, um die Sicherung von Organisationsdaten in Android-Sicherungsdiensten zu verhindern. \r\nWählen Sie \"{1}\" aus, um die Sicherung von Organisationsdaten in Android-Sicherungsdiensten zu ermöglichen. \r\nPersonenbezogene oder nicht verwaltete Daten sind hiervon nicht betroffen."
- },
- "AndroidBiometricAuthentication": {
- "label": "Biometrie anstelle von PIN für Zugriff",
- "tooltip": "Wählen Sie ggf. aus, welche Android-Authentifizierungsmethoden von Benutzern anstelle einer App-PIN verwendet werden können."
- },
- "AndroidFingerprint": {
- "label": "Fingerabdruck statt PIN für Zugriff (Android 6.0 und höher)",
- "tooltip": "Das Android-Betriebssystem verwendet Fingerabdruckscans, um Benutzer von Android-Geräten zu authentifizieren. Dieses Feature unterstützt die nativen biometrischen Kontrollen auf Android-Geräten. OEM-spezifische biometrische Einstellungen, wie z. B. Samsung Pass, werden nicht unterstützt. Sofern zugelassen, müssen native biometrische Kontrollen verwendet werden, um auf Geräten mit Unterstützung dieses Features auf die App zuzugreifen."
- },
- "AndroidOverrideFingerprint": {
- "label": "PIN setzt Fingerabdruck nach Timeout außer Kraft"
- },
- "AppPIN": {
- "label": "App-PIN, wenn Geräte-PIN festgelegt ist",
- "tooltip": "Sofern sie nicht erforderlich ist, muss für den Zugriff auf die App keine App-PIN verwendet werden, wenn die Geräte-PIN auf einem MDM-registrierten Gerät festgelegt ist.
\r\n\r\nHinweis: Intune kann die Geräteregistrierung bei einer EMM-Drittanbieterlösung unter Android nicht erkennen."
- },
- "BlockDataIngestionIntoOrganizationDocuments": {
- "label": "Daten in Organisationsdokumenten öffnen",
- "tooltip1": "Wählen Sie Blockieren aus, um die Verwendung der Option Öffnen oder anderer Optionen zum Freigeben von Daten zwischen Konten in dieser App zu deaktivieren. Wählen Sie Zulassen aus, wenn Sie die Verwendung von Öffnen und anderen Optionen zum Freigeben von Daten zwischen Konten in dieser App zulassen möchten.",
- "tooltip2": "Wenn diese Option auf Blockieren festgelegt ist, können Sie die Einstellung Benutzern das Öffnen von Daten über ausgewählte Dienste erlauben konfigurieren, um anzugeben, welche Dienste für Speicherorte von Organisationsdaten zulässig sind.",
- "tooltip3": "Hinweis: Diese Einstellung wird nur erzwungen, wenn die Einstellung \"Daten von anderen Apps empfangen\" auf \"Richtlinienverwaltete Apps\" festgelegt ist.
\r\nHinweis: Diese Einstellung gilt nicht für alle Anwendungen. Weitere Informationen finden Sie unter {0}.",
- "tooltip4": "Hinweis: Diese Einstellung wird nur erzwungen, wenn die Einstellung \"Daten von anderen Apps empfangen\" auf \"Richtlinienverwaltete Apps\" festgelegt ist.
\r\nHinweis: Diese Einstellung gilt nicht für alle Anwendungen. Weitere Informationen finden Sie unter {0} oder {0}."
- },
- "ConnectToVpnOnLaunch": {
- "label": "Microsoft Tunnel-Verbindung beim App-Start starten",
- "tooltip": "Verbindung mit VPN zulassen, wenn die App gestartet wird"
- },
- "CredentialsForAccess": {
- "label": "Anmeldeinformationen für Geschäfts-, Schul- oder Unikonto für Zugriff",
- "tooltip": "Sofern als erforderlich festgelegt, müssen Anmeldeinformationen für Geschäfts-, Schul- oder Uni-Konten verwendet werden, um auf die von der Richtlinie verwaltete App zuzugreifen. Wenn außerdem eine PIN oder biometrische Methoden für den Zugriff auf die App erforderlich sind, werden die Anmeldeinformationen für das Geschäfts-, Schul- oder Uni-Konto zusätzlich zu diesen Eingabeaufforderungen benötigt."
- },
- "CustomBrowserDisplayName": {
- "label": "Name von nicht verwaltetem Browser",
- "tooltip": "Geben Sie den Anwendungsnamen für den Browser ein, der der \"ID von nicht verwaltetem Browser\" zugeordnet ist. Dieser Name wird Benutzern angezeigt, wenn der angegebene Browser nicht installiert ist."
- },
- "CustomBrowserPackageId": {
- "label": "ID von nicht verwaltetem Browser",
- "tooltip": "Geben Sie die Anwendungs-ID für einen einzelnen Browser ein. Webinhalte (HTTP/S) aus mit Richtlinien verwalteten Anwendungen werden im angegebenen Browser geöffnet."
- },
- "CustomBrowserProtocol": {
- "label": "Protokoll von nicht verwaltetem Browser",
- "tooltip": "Geben Sie das Protokoll für einen einzelnen nicht verwalteten Browser ein. Webinhalte (HTTP/S) aus mit Richtlinien verwalteten Anwendungen werden in jeder beliebigen App geöffnet, die dieses Protokoll unterstützt.
\r\n \r\nHinweis: Geben Sie nur das Protokollpräfix an. Wenn Ihr Browser Links im Format \"mybrowser://www.microsoft.com\" verlangt, geben Sie \"mybrowser\" ein.
"
- },
- "CustomDialerAppDisplayName": {
- "label": "Name der Telefon-App"
- },
- "CustomDialerAppPackageId": {
- "label": "Paket-ID der Telefon-App"
- },
- "CustomDialerAppProtocol": {
- "label": "URL-Schema der Telefon-App"
- },
- "Cutcopypaste": {
- "label": "Ausschneiden, Kopieren und Einfügen zwischen Apps einschränken",
- "tooltip": "Führen Sie Aktionen zum Ausschneiden, Kopieren und Einfügen von Daten zwischen Ihrer App und anderen genehmigten Apps aus, die auf dem Gerät installiert sind. Sie können diese Aktionen zwischen Apps vollständig blockieren, sie für die Verwendung mit einer beliebigen App zulassen oder die Verwendung auf Apps beschränken, die Ihre Organisation verwaltet.
\r\n\r\nÜber Per Richtlinie verwaltete Apps mit Einfügung eingehender Inhalte können Sie eingehende Inhalte akzeptieren, die aus einer anderen App eingefügt wurden. Benutzer können jedoch keine Inhalte nach außen freigeben – es sei denn, die Freigabe erfolgt für eine verwaltete App.
"
- },
- "DialerRestrictionLevel": {
- "iosTooltip": "Wenn ein Benutzer eine mit einem Link verknüpfte Telefonnummer in einer App auswählt, wird in der Regel eine Tastenfeld-App mit der vorausgefüllten Telefonnummer geöffnet, die dann angerufen werden kann. Wählen Sie für diese Einstellung aus, wie diese Form der Inhaltsübertragung behandelt werden soll, wenn sie über eine App mit Richtlinienverwaltung ausgelöst wird. Es können zusätzliche Schritte erforderlich sein, damit diese Einstellung wirksam wird. Vergewissern Sie sich zunächst, dass \"tel\" und \"telprompt\" aus der Liste der ausgenommenen Apps entfernt wurden. Stellen Sie anschließend sicher, dass die Anwendung eine neuere Version des Intune SDK (Version 12.7.0+) verwendet.",
- "label": "Telekommunikationsdaten übertragen an",
- "tooltip": "Wenn ein Benutzer eine mit einem Link verknüpfte Telefonnummer in einer App auswählt, wird in der Regel eine Tastenfeld-App mit der vorausgefüllten Telefonnummer geöffnet, die dann angerufen werden kann. Wählen Sie für diese Einstellung aus, wie diese Art der Inhaltsübertragung behandelt werden soll, wenn sie über eine App mit Richtlinienverwaltung ausgelöst wird."
- },
- "EncryptData": {
- "label": "Organisationsdaten verschlüsseln",
- "link": "https://docs.microsoft.com/de-de/intune/app-protection-policy-settings-android#data-relocation-settings",
- "tooltip": "Wählen Sie \"{0}\" aus, um die Verschlüsselung von Organisationsdaten mit der Intune-Verschlüsselung auf App-Ebene zu erzwingen. \r\n
\r\nWählen Sie \"{1}\" aus, um die Verschlüsselung von Organisationsdaten mit der Intune-Verschlüsselung auf App-Ebene nicht zu erzwingen.\r\n\r\n
\r\nHinweis: Weitere Informationen zur Intune-Verschlüsselung auf App-Ebene finden Sie unter \"{2}\"."
- },
- "EncryptDataAndroid": {
- "tooltip": "Wählen Sie Erforderlich aus, um für Geschäfts-, Schul- oder Unidaten in dieser App die Verschlüsselung zu aktivieren. Intune verwendet ein OpenSSL-AES-Verschlüsselungsschema mit 256 Bit in Kombination mit dem Android-Keystore-System, um App-Daten sicher zu verschlüsseln. Die Daten werden bei Datei-E/A-Aufgaben synchron verschlüsselt. Der Inhalt im Gerätespeicher wird immer verschlüsselt. Das SDK bietet weiterhin Unterstützung für 128-Bit-Schlüssel, um Kompatibilität mit Inhalten und Apps zu gewährleisten, die ältere SDK-Versionen verwenden.
\r\n\r\nDie Verschlüsselungsmethode ist mit FIPS 140-2 konform.
"
- },
- "EncryptDataIos": {
- "tooltip1": "Wählen Sie Erforderlich aus, um für Geschäfts, Schul- oder Unidaten in dieser App die Verschlüsselung zu aktivieren. Intune erzwingt eine iOS-/iPadOS-Geräteverschlüsselung, um App-Daten zu schützen, während das Gerät gesperrt ist. Anwendungen können optional App-Daten mithilfe der Intune APP SDK-Verschlüsselung verschlüsseln. Das Intune APP SDK nutzt iOS-/iPadOS-Kryptografiemethoden, um eine 128-Bit-AES-Verschlüsselung auf App-Daten anzuwenden.",
- "tooltip2": "Wenn Sie diese Einstellung aktivieren, muss der Benutzer möglicherweise eine PIN für den Zugriff auf sein Gerät einrichten und verwenden. Wenn keine Geräte-PIN vorhanden und eine Verschlüsselung erforderlich ist, wird der Benutzer über die folgende Meldung zur Festlegung einer PIN aufgefordert: \"Ihre Organisation hat festgelegt, dass Sie zunächst eine Geräte-PIN aktivieren müssen, um auf diese App zuzugreifen.\"",
- "tooltip3": "Wechseln Sie zur offiziellen Apple-Dokumentation, um zu sehen, welche iOS-Verschlüsselungsmodule mit FIPS 140-2 konform sind bzw. für welche Module eine FIPS 140-2-Konformität aussteht."
- },
- "EncryptDataOnEnrolledDevices": {
- "label": "Organisationsdaten auf registrierten Geräten verschlüsseln",
- "tooltip": "Wählen Sie \"{0}\" aus, um auf allen Geräten die Verschlüsselung von Organisationsdaten mit Intune-Verschlüsselung auf App-Ebene zu erzwingen.
\r\n\r\nWählen Sie \"{1}\" aus, um auf registrierten Geräten die Verschlüsselung von Organisationsdaten mit Intune-Verschlüsselung auf App-Ebene nicht zu erzwingen."
- },
- "IOSBackup": {
- "label": "Organisationsdaten in iTunes und iCloud sichern",
- "tooltip": "Wählen Sie \"{0}\" aus, um zu verhindern, dass Organisationsdaten in iTunes oder iCloud gesichert werden. \r\nWählen Sie \"{1}\" aus, um die Sicherung von Organisationsdaten in iTunes oder iCloud zuzulassen. \r\nPersonenbezogene Daten oder nicht verwaltete Daten sind hiervon nicht betroffen."
- },
- "IOSFaceID": {
- "label": "Face ID anstelle von PIN für Zugriff (iOS 11 und höher/iPadOS)",
- "tooltip": "Face ID verwendet eine Technologie zur Gesichtserkennung, um Benutzer auf iOS-/iPadOS-Geräten zu authentifizieren. Intune ruft die LocalAuthentication-API auf, um Benutzer per Face ID zu authentifizieren. Sofern zugelassen, muss die Face ID verwendet werden, um auf einem Gerät mit Face ID-Unterstützung auf die App zuzugreifen."
- },
- "IOSOverrideTouchId": {
- "label": "PIN setzt Biometrie nach Timeout außer Kraft"
- },
- "IOSTouchId": {
- "label": "Touch ID anstelle von PIN für Zugriff (iOS 8 und höher/iPadOS)",
- "tooltip": "Face ID verwendet eine Technologie zur Fingerabdruckerkennung, um Benutzer auf iOS-Geräten zu authentifizieren. Intune ruft die LocalAuthentication-API auf, um Benutzer per Touch ID zu authentifizieren. Sofern zugelassen, muss die Touch ID verwendet werden, um auf einem Gerät mit Touch ID-Unterstützung auf die App zuzugreifen."
- },
- "NotificationRestriction": {
- "label": "Benachrichtigungen zu Organisationsdaten",
- "tooltip": "Wählen Sie eine der folgenden Optionen aus, um anzugeben, wie Benachrichtigungen für Organisationskonten für diese Apps und alle verbundenen Geräte (z. B. Wearables) angezeigt werden:
\r\n{0}: Benachrichtigungen nicht freigeben.
\r\n{1}: Organisationsdaten nicht in Benachrichtigungen freigeben. Sofern nicht durch die Anwendung unterstützt, werden Benachrichtigungen blockiert.
\r\n{2}: Alle Benachrichtigungen freigeben.
\r\n Nur Android:\r\n Hinweis: Diese Einstellung gilt nicht für alle Anwendungen. Weitere Informationen finden Sie unter {3}
\r\n \r\n Nur iOS:\r\nHinweis: Diese Einstellung gilt nicht für alle Anwendungen. Weitere Informationen finden Sie unter {4}.
"
- },
- "OpenLinksManagedBrowser": {
- "label": "Übertragung von Webinhalt in andere Apps einschränken",
- "tooltip": "Wählen Sie eine der folgenden Optionen aus, um die Apps anzugeben, in denen diese App Webinhalte öffnen kann:
\r\nEdge: Hiermit können Webinhalte nur in Edge geöffnet werden
\r\nNicht verwalteter Browser: Hiermit können Webinhalte nur in dem nicht verwalteten Browser geöffnet werden, der über die Einstellung „Protokoll von nicht verwaltetem Browser“ definiert wurde
\r\nBeliebige App: Weblinks werden in beliebigen Apps zugelassen
"
- },
- "OverrideBiometric": {
- "tooltip": "Sofern als erforderlich festgelegt, setzt eine PIN-Aufforderung abhängig vom Timeout (Minuten der Inaktivität) Biometrieaufforderungen außer Kraft. Solange der Timeoutwert nicht erreicht wurde, wird weiterhin die Biometrieaufforderung angezeigt. Dieser Timeoutwert sollte größer sein als der unter \"Zugriffsanforderungen nach (Minuten der Inaktivität) erneut überprüfen\" angegebene Wert."
- },
- "PinAccess": {
- "label": "PIN für Zugriff",
- "tooltip": "Sofern als erforderlich festgelegt, muss für den Zugriff auf die per Richtlinie verwaltete App eine PIN verwendet werden. Benutzer müssen eine PIN für den Zugriff erstellen, wenn Sie die App über ein Geschäfts-, Schul- oder Unikonto zum ersten Mal öffnen."
- },
- "PinLength": {
- "label": "PIN-Mindestlänge auswählen",
- "tooltip": "Diese Einstellung gibt die Mindestanzahl von Ziffern einer PIN an."
- },
- "PinType": {
- "label": "PIN-Typ",
- "tooltip": "Numerische PINs bestehen nur aus Ziffern. Passcodes bestehen aus alphanumerischen Zeichen und Sonderzeichen."
- },
- "Printing": {
- "label": "Organisationsdaten drucken",
- "tooltip": "Sofern blockiert, kann die App keine geschützten Daten drucken."
- },
- "ReceiveData": {
- "label": "Daten von anderen Apps empfangen",
- "tooltip": "Wählen Sie eine der folgenden Optionen aus, um die Apps festzulegen, von denen diese App Daten empfangen kann:
\r\n\r\nKeine: Hiermit wird der Empfang von Daten in Organisationsdokumenten oder Konten beliebiger Apps untersagt.
\r\n\r\nPer Richtlinie verwaltete Apps: Hiermit ist der Empfang von Daten in Organisationsdokumenten oder Konten nur von Apps zulässig, die ebenfalls per Richtlinie verwaltete werden.\r\n
\r\nBeliebige App mit eingehenden Organisationsdaten: Hiermit wird der Empfang von Daten in Organisationsdokumenten oder Konten aus einer beliebigen App zugelassen, und alle eingehenden Daten ohne Benutzerkonto werden als Organisationsdaten betrachtet.
\r\n\r\nAlle Apps: Hiermit wird der Empfang von Daten in Organisationsdokumenten oder Konten von beliebigen Apps zugelassen."
- },
- "RecheckAccessAfter": {
- "label": "Zugriffsanforderungen nach (Minuten der Inaktivität) erneut überprüfen\r\n\r\n",
- "tooltip": "Wenn die per Richtlinie verwaltet App länger inaktiv ist als die angegebene Anzahl von Minuten der Inaktivität, fordert die App nach dem Start der App eine erneute Überprüfung der Zugriffsanforderungen (z. B. PIN, bedingte Starteinstellungen) an."
- },
- "RestrictKeyboards": {
- "duplicatePackageError": "Die Paket-ID muss eindeutig sein.",
- "invalidPackageError": "Ungültige Paket-ID.",
- "label": "Genehmigte Tastaturen",
- "select": "Zu genehmigende Tastaturen auswählen",
- "subtitle": "Fügen Sie alle Tastaturen und Eingabemethoden hinzu, die Benutzer mit den Ziel-Apps verwenden dürfen. Geben Sie den Tastaturnamen so ein, wie er dem Endbenutzer angezeigt werden soll.",
- "title": "Genehmigte Tastaturen hinzufügen",
- "toolTip": "Wählen Sie \"Erforderlich\" aus, und geben Sie dann eine Liste der genehmigten Tastaturen für diese Richtlinie an. Weitere Informationen."
- },
- "SaveData": {
- "label": "Kopien von Organisationsdaten speichern",
- "tooltip": "Wählen Sie \"{0}\" aus, um das Speichern einer Kopie von Organisationsdaten an einem anderen Ort als dem ausgewählten Speicherdienst über \"Speichern unter\" zu verhindern.\r\n Wählen Sie \"{1}\" aus, um das Speichern einer Kopie von Organisationsdaten an einem anderen Ort als dem ausgewählten Speicherdienst über \"Speichern unter\" zuzulassen.
\r\n\r\n\r\nHinweis: Diese Einstellung gilt nicht für alle Anwendungen. Weitere Informationen finden Sie unter {2}.\r\n"
- },
- "SaveDataToSelected": {
- "label": "Benutzer das Speichern von Kopien in den ausgewählten Diensten ermöglichen",
- "tooltip": "Wählen Sie die Speicherdienste aus, in denen Benutzer Kopien von Organisationsdaten speichern können. Alle anderen Dienste werden blockiert. Wenn Sie keine Dienste auswählen, wird verhindert, dass Benutzer Kopien von Organisationsdaten speichern."
- },
- "ScreenCaptureAndAndroidAssistant": {
- "label": "Bildschirmaufnahme und Google Assistant\r\n",
- "tooltip": "Sofern blockiert, werden sowohl die Funktionen für Bildschirmaufnahmen als auch die Scanfunktionen der Google Assistant-App deaktiviert, wenn die per Richtlinie verwaltete App verwendet wird. Diese Funktion unterstützt die übliche Google Assistant-App. Drittanbieter-Assistenten, die die Google Assistant-API verwenden, werden nicht unterstützt. Wenn Sie \"Blockieren\" auswählen, wird auch das Vorschaubild im App-Schnellzugriff verschwommen angezeigt, wenn Sie die App mit einem Geschäfts-, Schul- oder Unikonto verwenden."
- },
- "SendData": {
- "label": "Organisationsdaten an andere Apps senden",
- "tooltip": "Wählen Sie eine der folgenden Optionen aus, um die Apps festzulegen, an die diese App Organisationsdaten senden kann:
\r\n\r\n\r\nKeine: Hiermit wird das Senden von Organisationsdaten an alle Apps untersagt.
\r\n\r\n\r\nPer Richtlinie verwaltete Apps: Hiermit wird nur das Senden von Organisationsdaten an andere per Richtlinie verwaltete Apps zugelassen.
\r\n\r\n\r\nPer Richtlinie verwaltete Apps mit Betriebssystemfreigabe: Hiermit wird nur das Senden von Organisationsdaten an andere per Richtlinie verwaltete Anwendungen und das Senden von Organisationsdokumenten an andere MDM-verwaltete Anwendungen auf registrierten Geräten zugelassen.
\r\n\r\n\r\nPer Richtlinie verwaltete App mit Filterung für \"Öffnen in\"/\"Freigeben\": Hiermit wird nur das Senden von Organisationsdaten an andere per Richtlinie verwaltete Apps mit Filterung für \"Öffnen in\"/\"Freigeben\" zugelassen.\r\n
\r\n\r\nAlle Apps: Hiermit wird das Senden von Organisationsdaten an eine beliebige App zugelassen."
- },
- "SimplePin": {
- "label": "Einfache PIN",
- "tooltip": "Sofern blockiert, dürfen Benutzer keine einfache PIN erstellen. Eine einfache PIN ist eine Sequenz von aufeinanderfolgenden oder sich wiederholenden Ziffern, wie z. B. 1234, ABCD oder 1111. Beachten Sie, dass das Blockieren einer einfachen PIN vom Typ \"Passcode\" erfordert, dass das Kennwort mindestens eine Ziffer, einen Buchstaben und ein Sonderzeichen enthält."
- },
- "SyncContacts": {
- "label": "Daten von durch Richtlinien verwalteten Apps mit nativen Apps oder Add-Ins synchronisieren"
- },
- "ThirdPartyKeyboards": {
- "infoBox": "Tastatureinschränkungen gelten für alle Bereiche einer App. Persönliche Konten für Apps, die mehrere Identitäten unterstützen, sind von dieser Einschränkung betroffen. Weitere Informationen.",
- "label": "Tastaturen von Drittanbietern"
- },
- "Timeout": {
- "label": "Timeout (Minuten der Inaktivität)"
- },
- "Tap": {
- "numberOfDays": "Anzahl Tage",
- "pinResetAfterNumberOfDays": "Anzahl von Tagen für PIN-Zurücksetzung",
- "previousPinBlockCount": "Anzahl der beizubehaltenden vorherigen PIN-Werte auswählen"
- }
- },
- "WindowsFeatureUpdateProfile": {
- "Details": {
- "Description": {
- "label": "Beschreibung"
- },
- "FeatureDeploymentSettings": {
- "header": "Einstellungen für Featurebereitstellung"
- },
- "FeatureUpdateVersion": {
- "infoballoon": "Dieses Feature kann kein Downgrade für ein Gerät durchführen.",
- "label": "Bereitzustellendes Featureupdate"
- },
- "GradualRolloutEndDate": {
- "label": "Endgültige Gruppenverfügbarkeit"
- },
- "GradualRolloutInterval": {
- "label": "Tage zwischen Gruppen"
- },
- "GradualRolloutStartDate": {
- "label": "Erste Gruppenverfügbarkeit"
- },
- "Name": {
- "label": "Name"
- },
- "RolloutOptions": {
- "label": "Rollout-Optionen"
- },
- "RolloutSettings": {
- "header": "Wann möchten Sie das Update in Windows Update verfügbar machen?"
- },
- "ScopeSettings": {
- "header": "Konfigurieren Sie Bereichstags für diese Richtlinie."
- },
- "StartDateOnlyStartDate": {
- "label": "Erstes verfügbares Datum"
- },
- "bladeTitle": "Funktionsupdatebereitstellungen",
- "deploymentSettingsTitle": "Bereitstellungseinstellungen",
- "loadError": "Fehler beim Laden.",
- "windows11EULA": "Durch Auswahl dieses Featureupdates für die Bereitstellung stimmen Sie zu, dass Sie bei Anwendung dieses Betriebssystems auf ein Gerät entweder (1) die entsprechende Windows-Lizenz durch Volumenlizenzierung erworben haben oder (2) dazu autorisiert sind, Ihre Organisation vertraglich zu binden, und in ihrem Namen die hier aufgeführten relevanten Microsoft-Software-Lizenzbedingungen akzeptieren: {0}."
- },
- "Notifications": {
- "deploymentSaved": "\"{0}\" wurde gespeichert.",
- "newFeatureUpdateDeploymentCreated": "Die neue Featureupdatebereitstellung wurde erstellt."
- },
- "TabName": {
- "deploymentSettings": "Bereitstellungseinstellungen",
- "groupAssignmentSettings": "Zuweisungen",
- "scopeSettings": "Bereichstags"
- }
- },
- "OfficeUpdateChannel": {
- "current": "Aktueller Kanal",
- "deferred": "Halbjährlicher Enterprise-Kanal",
- "firstReleaseCurrent": "Aktueller Kanal (Vorschau)",
- "firstReleaseDeferred": "Halbjährlicher Enterprise-Kanal (Vorschau)",
- "monthlyEnterprise": "Monatlicher Enterprise-Kanal",
- "placeHolder": "Eine auswählen"
- },
- "Win32ReturnCodes": {
- "CodeTypes": {
- "failed": "Fehler",
- "hardReboot": "Harter Neustart",
- "retry": "Wiederholen",
- "softReboot": "Warmneustart",
- "success": "Erfolgreich"
- },
- "Columns": {
- "codeType": "Codetyp",
- "returnCode": "Rückgabecode"
- },
- "bladeTitle": "Rückgabecodes",
- "gridAriaLabel": "Rückgabecodes",
- "header": "Geben Sie Rückgabecodes an, um das Verhalten nach der Installation festzulegen:",
- "onAddAnnounceMessage": "Der Rückgabecode hat Element {0} von {1} hinzugefügt.",
- "onDeleteSuccess": "Der Rückgabecode {0} wurde erfolgreich gelöscht.",
- "returnCodeAlreadyUsedValidation": "Der Rückgabecode wird bereits verwendet.",
- "returnCodeMustBeIntegerValidation": "Der Rückgabecode muss eine ganze Zahl sein.",
- "returnCodeShouldBeAtLeast": "Der Rückgabecode muss mindestens {0} lauten.",
- "returnCodeShouldBeAtMost": "Der Rückgabecode darf maximal {0} lauten.",
- "selectorLabel": "Rückgabecodes"
- },
- "SecurityTemplate": {
- "aSR": "Verringerung der Angriffsfläche",
- "accountProtection": "Kontoschutz",
- "allDevices": "Alle Geräte",
- "antivirus": "Antivirus",
- "antivirusReporting": "Antivirus-Berichterstellung (Vorschau)",
- "conditionalAccess": "Bedingter Zugriff",
- "deviceCompliance": "Gerätekompatibilität",
- "diskEncryption": "Datenträgerverschlüsselung",
- "eDR": "Endpunkterkennung und -antwort",
- "firewall": "Firewall",
- "helpSupport": "Hilfe und Support",
- "setup": "Setup",
- "wdapt": "Microsoft Defender für Endpunkt"
- },
- "PolicySet": {
- "appManagement": "Anwendungsverwaltung",
- "assignments": "Zuweisungen",
- "basics": "Grundlagen",
- "deviceEnrollment": "Geräteregistrierung",
- "deviceManagement": "Geräteverwaltung",
- "scopeTags": "Bereichstags",
- "appConfigurationTitle": "App-Konfigurationsrichtlinien",
- "appProtectionTitle": "App-Schutzrichtlinien",
- "appTitle": "Apps",
- "iOSAppProvisioningTitle": "iOS-App-Bereitstellungsprofile",
- "deviceLimitRestrictionTitle": "Einschränkungen zum Gerätelimit",
- "deviceTypeRestrictionTitle": "Einschränkungen zum Gerätetyp",
- "enrollmentStatusSettingTitle": "Registrierungsstatusseiten",
- "windowsAutopilotDeploymentProfileTitle": "Windows Autopilot Deployment-Profile",
- "deviceComplianceTitle": "Richtlinien zur Gerätekonformität",
- "deviceConfigurationTitle": "Profile für die Gerätekonfiguration",
- "powershellScriptTitle": "PowerShell-Skripts"
- },
- "AssignmentAction": {
- "exclude": "Ausgeschlossen",
- "include": "Enthalten",
- "includeAllDevicesVirtualGroup": "Enthalten",
- "includeAllUsersVirtualGroup": "Enthalten"
- },
- "WindowsFeatureUpdate": {
- "EndOFSupportStatus": {
- "notSupported": "Nicht unterstützt.",
- "supportEnding": "Bevorstehendes Ende des Supports",
- "supported": "Unterstützt"
- }
- },
- "InstallIntent": {
- "available": "Für registrierte Geräte verfügbar",
- "availableWithoutEnrollment": "Verfügbar mit oder ohne Registrierung",
- "required": "Erforderlich",
- "uninstall": "Deinstallieren"
- },
"OutlookAppConfig": {
"DataProtectionConfiguration": {
"header": "Datenschutzkonfiguration"
@@ -1938,307 +100,864 @@
"themesEnabledTitle": "Designs aktiviert",
"themesEnabledTooltip": "Geben Sie an, ob der Benutzer ein benutzerdefiniertes visuelles Design verwenden darf."
},
- "TAP": {
- "AccessRequirements": {
- "infoText": "Konfigurieren Sie die PIN- und Anmeldeinformationsanforderungen, die Benutzer erfüllen müssen, um in einem Arbeitskontext auf Apps zuzugreifen."
- },
- "DataProtection": {
- "infoText": "Diese Gruppe enthält die DLP-Steuerelemente (Data Loss Prevention, Verhinderung von Datenverlust), z. B. Einschränkungen für die Befehle \"Ausschneiden\", \"Kopieren\", \"Einfügen\" und \"Speichern unter\". Diese Einstellungen bestimmen, wie Benutzer mit Daten in den Apps interagieren."
- },
- "DeviceTypes": {
- "selectOne": "Wählen Sie mindestens einen Gerätetyp aus."
- },
- "TargetedApps": {
- "TargetToAll": {
- "label": "Für Apps auf allen Gerätetypen festlegen"
- },
- "infoText": "Wählen Sie aus, wie diese Richtlinie auf Apps auf unterschiedlichen Geräten angewendet werden soll. Fügen Sie dann mindestens eine App hinzu.",
- "selectOne": "Wählen Sie mindestens eine App aus, um eine Richtlinie zu erstellen."
- }
- },
- "TACSettings": {
- "edgeSettings": "Edge-Konfigurationseinstellungen",
- "edgeWindowsDataProtectionSettings": "Microsoft Edge-Datenschutzeinstellungen (Windows) – Vorschau",
- "edgeWindowsSettings": "Microsoft Edge-Konfigurationseinstellungen (Windows) – Vorschau",
- "generalAppConfig": "Allgemeine App-Konfiguration",
- "generalSettings": "Allgemeine Konfigurationseinstellungen",
- "outlookSMIMEConfig": "Outlook-S/MIME-Einstellungen",
- "outlookSettings": "Outlook-Konfigurationseinstellungen",
- "sMIME": "S/MIME"
- },
- "OfficeApplicationAdditionalType": {
- "projectProRetail": "Projekt Online-Desktopclient",
- "visioProRetail": "Visio Online-Plan 2"
- },
- "Win32Requirements": {
- "AdditionalRequirements": {
- "File": {
- "fileOrFolderToolTip": "Die Datei oder der Ordner als ausgewählte Anforderung.",
- "pathToolTip": "Der vollständige Pfad der Datei oder des Ordners, die bzw. der erkannt werden soll.",
- "property": "Eigenschaft",
- "valueToolTip": "Wählen Sie einen Anforderungswert aus, der der ausgewählten Erkennungsmethode entspricht. Die Datums- und die Zeitanforderung müssen im lokalen Format eingegeben werden."
- },
- "GridColumns": {
- "pathOrScript": "Pfad/Skript",
- "type": "Typ"
- },
- "Registry": {
- "keyPath": "Schlüsselpfad",
- "keyPathTooltip": "Der vollständige Pfad des Registrierungseintrags mit dem Wert als Anforderung.",
- "operator": "Operator",
- "operatorTooltip": "Wählen Sie den Operator für den Vergleich aus.",
- "registryRequirement": "Registrierungsschlüsselanforderung",
- "registryRequirementTooltip": "Wählen Sie den Registrierungsschlüssel-Anforderungsvergleich aus.",
- "valueName": "Wertname",
- "valueNameTooltip": "Der Name des erforderlichen Registrierungswerts."
- },
- "RequirementTypeOptions": {
- "fileType": "Datei",
- "registry": "Registrierung",
- "script": "Skript"
- },
- "Script": {
- "RequirementMethodOptions": {
- "boolean": "Boolescher Wert",
- "dateTime": "Datum und Uhrzeit",
- "float": "Gleitkomma",
- "integer": "Ganze Zahl",
- "string": "Zeichenfolge",
- "version": "Version"
- },
- "ScriptContent": {
- "emptyMessage": "Der Skriptinhalt darf nicht leer sein."
- },
- "duplicateName": "Der Skriptname \"{0}\" wird bereits verwendet. Geben Sie einen anderen Namen ein.",
- "enforceSignatureCheck": "Skriptsignaturprüfung erzwingen",
- "enforceSignatureCheckTooltip": "Wählen Sie \"Ja\" aus, um sicherzustellen, dass das Skript von einem vertrauenswürdigen Herausgeber signiert ist, damit das Skript ohne Warnungen oder Eingabeaufforderungen ausgeführt werden kann. Das Skript wird ohne Blockierung ausgeführt. Wählen Sie \"Nein\" (Standardeinstellung) aus, um das Skript mit Benutzerbestätigung, aber ohne Signaturüberprüfung auszuführen.",
- "loggedOnCredentials": "Dieses Skript mit den Anmeldeinformationen des angemeldeten Benutzers ausführen",
- "loggedOnCredentialsTooltip": "Führen Sie das Skript mit den Anmeldeinformationen des angemeldeten Geräts aus.",
- "operatorTooltip": "Wählen Sie den Operator für den Anforderungsvergleich aus.",
- "requirementMethod": "Ausgabedatentyp auswählen",
- "requirementMethodTooltip": "Wählen Sie den Datentyp aus, der beim Ermitteln einer Anforderung zur Erkennungsübereinstimmung verwendet wird.",
- "scriptFile": "Skriptdatei",
- "scriptFileTooltip": "Wählen Sie ein PowerShell-Skript aus, mit dem das Vorhandensein der App auf dem Client erkannt wird. Wenn die App erkannt wird, stellt der Anforderungsprozess einen Exitcode mit dem Wert 0 bereit und schreibt einen Zeichenfolgenwert in STDOUT.",
- "scriptName": "Skriptname",
- "value": "Wert",
- "valueTooltip": "Wählen Sie einen Anforderungswert aus, der der ausgewählten Erkennungsmethode entspricht. Die Datums- und die Zeitanforderung müssen im lokalen Format eingegeben werden."
- },
- "bladeTitle": "Anforderungsregel hinzufügen",
- "createRequirementHeader": "Erstellen Sie eine Anforderung.",
- "header": "Konfigurieren Sie zusätzliche Anforderungsregeln.",
- "label": "Zusätzliche Anforderungsregeln",
- "noRequirementsSelectedPlaceholder": "Keine Anforderungen angegeben.",
- "requirementType": "Anforderungstyp",
- "requirementTypeTooltip": "Wählen Sie den Typ der Erkennungsmethode aus, die festlegt, wie eine Anforderung überprüft wird."
- },
- "architectures": "Betriebssystemarchitektur",
- "architecturesTooltip": "Wählen Sie die Architekturen aus, die zum Installieren der App benötigt werden.",
- "bladeTitle": "Anforderungen",
- "diskSpace": "Erforderlicher Speicherplatz (MB)",
- "diskSpaceTooltip": "Der benötigte freie Speicherplatz auf dem Systemlaufwerk zum Installieren der App.",
- "header": "Geben Sie die Anforderungen an, die Geräte vor dem Installieren der App erfüllen müssen:",
- "maximumTextFieldValue": "Der Wert darf höchstens {0} betragen.",
- "minimumCpuSpeed": "Mindestens erforderliche CPU-Geschwindigkeit (MHz)",
- "minimumCpuSpeedTooltip": "Die mindestens erforderliche CPU-Geschwindigkeit zum Installieren der App.",
- "minimumLogicalProcessors": "Mindestens erforderliche Anzahl logischer Prozessoren",
- "minimumLogicalProcessorsTooltip": "Die mindestens erforderliche Anzahl logischer Prozessoren zum Installieren der App.",
- "minimumOperatingSystem": "Mindestens erforderliches Betriebssystem",
- "minimumOperatingSystemTooltip": "Wählen Sie das mindestens erforderliche Betriebssystem zum Installieren der App aus.",
- "minumumTextFieldValue": "Der Wert muss mindestens {0} sein.",
- "physicalMemory": "Erforderlicher physischer Speicher (MB)",
- "physicalMemoryTooltip": "Erforderlicher physischer Arbeitsspeicher (RAM) zum Installieren der App.",
- "selectorLabel": "Anforderungen",
- "validNumber": "Geben Sie eine gültige Zahl ein."
- },
- "ArchitectureOptions": {
- "sixtyFourBit": "64 Bit",
- "thirtyTwoBit": "32 Bit"
- },
- "Countries": {
- "ae": "Vereinigte Arabische Emirate",
- "ag": "Antigua und Barbuda",
- "ai": "Anguilla",
- "al": "Albanien",
- "am": "Armenien",
- "ao": "Angola",
- "ar": "Argentinien",
- "at": "Österreich",
- "au": "Australien",
- "az": "Aserbaidschan",
- "bb": "Barbados",
- "be": "Belgien",
- "bf": "Burkina Faso",
- "bg": "Bulgarien",
- "bh": "Bahrain",
- "bj": "Benin",
- "bm": "Bermuda",
- "bn": "Brunei Darussalam",
- "bo": "Bolivien",
- "br": "Brasilien",
- "bs": "Bahamas",
- "bt": "Bhutan",
- "bw": "Botsuana",
- "by": "Belarus",
- "bz": "Belize",
- "ca": "Kanada",
- "cg": "Republik Kongo",
- "ch": "Schweiz",
- "cl": "Chile",
- "cn": "China",
- "co": "Kolumbien",
- "cr": "Costa Rica",
- "cv": "Cabo Verde",
- "cy": "Zypern",
- "cz": "Tschechische Republik",
- "de": "Deutschland",
- "dk": "Dänemark",
- "dm": "Dominica",
- "do": "Dominikanische Republik",
- "dz": "Algerien",
- "ec": "Ecuador",
- "ee": "Estland",
- "eg": "Ägypten",
- "es": "Spanien",
- "fi": "Finnland",
- "fj": "Fidschi",
- "fm": "Föderierte Staaten von Mikronesien",
- "fr": "Frankreich",
- "gb": "Vereinigtes Königreich",
- "gd": "Grenada",
- "gh": "Ghana",
- "gm": "Gambia",
- "gr": "Griechenland",
- "gt": "Guatemala",
- "gw": "Guinea-Bissau",
- "gy": "Guyana",
- "hk": "Hongkong",
- "hn": "Honduras",
- "hr": "Kroatien",
- "hu": "Ungarn",
- "id": "Indonesien",
- "ie": "Irland",
- "il": "Israel",
- "in": "Indien",
- "is": "Island",
- "it": "Italien",
- "jm": "Jamaika",
- "jo": "Jordanien",
- "jp": "Japan",
- "ke": "Kenia",
- "kg": "Kirgisistan",
- "kh": "Kambodscha",
- "kn": "St. Kitts und Nevis",
- "kr": "Republik Korea",
- "kw": "Kuwait",
- "ky": "Kaimaninseln",
- "kz": "Kasachstan",
- "la": "Demokratische Volksrepublik Laos",
- "lb": "Libanon",
- "lc": "St. Lucia",
- "lk": "Sri Lanka",
- "lr": "Liberia",
- "lt": "Litauen",
- "lu": "Luxemburg",
- "lv": "Lettland",
- "md": "Republik Moldau",
- "mg": "Madagaskar",
- "mk": "Nordmazedonien",
- "ml": "Mali",
- "mn": "Mongolei",
- "mo": "Macau",
- "mr": "Mauretanien",
- "ms": "Montserrat",
- "mt": "Malta",
- "mu": "Mauritius",
- "mw": "Malawi",
- "mx": "Mexiko",
- "my": "Malaysia",
- "mz": "Mosambik",
- "na": "Namibia",
- "ne": "Niger",
- "ng": "Nigeria",
- "ni": "Nicaragua",
- "nl": "Niederlande",
- "no": "Norwegen",
- "np": "Nepal",
- "nz": "Neuseeland",
- "om": "Oman",
- "pa": "Panama",
- "pe": "Peru",
- "pg": "Papua-Neuguinea",
- "ph": "Philippinen",
- "pk": "Pakistan",
- "pl": "Polen",
- "pt": "Portugal",
- "pw": "Palau",
- "py": "Paraguay",
- "qa": "Katar",
- "ro": "Rumänien",
- "ru": "Russische Föderation",
- "sa": "Saudi-Arabien",
- "sb": "Salomonen",
- "sc": "Seychellen",
- "se": "Schweden",
- "sg": "Singapur",
- "si": "Slowenien",
- "sk": "Slowakei",
- "sl": "Sierra Leone",
- "sn": "Senegal",
- "sr": "Suriname",
- "st": "São Tomé und Príncipe",
- "sv": "El Salvador",
- "sz": "Swasiland",
- "tc": "Turks- und Caicosinseln",
- "td": "Tschad",
- "th": "Thailand",
- "tj": "Tadschikistan",
- "tm": "Turkmenistan",
- "tn": "Tunesien",
- "tr": "Türkei",
- "tt": "Trinidad und Tobago",
- "tw": "Taiwan",
- "tz": "Tansania",
- "ua": "Ukraine",
- "ug": "Uganda",
- "us": "Vereinigte Staaten",
- "uy": "Uruguay",
- "uz": "Usbekistan",
- "vc": "St. Vincent und die Grenadinen",
- "ve": "Venezuela",
- "vg": "Britische Jungferninseln",
- "vn": "Vietnam",
- "ye": "Jemen",
- "za": "Südafrika",
- "zw": "Simbabwe"
+ "Languages": {
+ "ar-aE": "Arabisch (Vereinigte Arabische Emirate)",
+ "ar-bH": "Arabisch (Bahrain)",
+ "ar-dZ": "Arabisch (Algerien)",
+ "ar-eG": "Arabisch (Ägypten)",
+ "ar-iQ": "Arabisch (Irak)",
+ "ar-jO": "Arabisch (Jordanien)",
+ "ar-kW": "Arabisch (Kuwait)",
+ "ar-lB": "Arabisch (Libanon)",
+ "ar-lY": "Arabisch (Libyen)",
+ "ar-mA": "Arabisch (Marokko)",
+ "ar-oM": "Arabisch (Oman)",
+ "ar-qA": "Arabisch (Katar)",
+ "ar-sA": "Arabisch (Saudi-Arabien)",
+ "ar-sY": "Arabisch (Syrien)",
+ "ar-tN": "Arabisch (Tunesien)",
+ "ar-yE": "Arabisch (Jemen)",
+ "az-cyrl": "Aserbaidschanisch (Kyrillisch, Aserbaidschan)",
+ "az-latn": "Aserbaidschanisch (lateinisch, Aserbaidschan)",
+ "bn-bD": "Bangla (Bangladesch)",
+ "bn-iN": "Bangla (Indien)",
+ "bs-cyrl": "Bosnisch (Kyrillisch)",
+ "bs-latn": "Bosnisch (Lateinisch)",
+ "zh-cN": "Chinesisch (Volksrepublik China)",
+ "zh-hK": "Chinesisch (Hongkong SAR)",
+ "zh-mO": "Chinesisch (Macau SAR)",
+ "zh-sG": "Chinesisch (Singapur)",
+ "zh-tW": "Chinesisch (Taiwan)",
+ "hr-bA": "Kroatisch (Lateinisch)",
+ "hr-hR": "Kroatisch (Kroatien)",
+ "nl-bE": "Niederländisch (Belgien)",
+ "nl-nL": "Niederländisch (Niederlande)",
+ "en-aU": "Englisch (Australien)",
+ "en-bZ": "Englisch (Belize)",
+ "en-cA": "Englisch (Kanada)",
+ "en-cabn": "Englisch (Karibik)",
+ "en-iE": "Englisch (Irland)",
+ "en-iN": "Englisch (Indien)",
+ "en-jM": "Englisch (Jamaika)",
+ "en-mY": "Englisch (Malaysia)",
+ "en-nZ": "Englisch (Neuseeland)",
+ "en-pH": "Englisch (Republik Philippinen)",
+ "en-sG": "Englisch (Singapur)",
+ "en-tT": "Englisch (Trinidad und Tobago)",
+ "en-uK": "Englisch (Vereinigtes Königreich)",
+ "en-uS": "Englisch (Vereinigte Staaten)",
+ "en-zA": "Englisch (Südafrika)",
+ "en-zW": "Englisch (Zimbabwe)",
+ "fr-bE": "Französisch (Belgien)",
+ "fr-cA": "Französisch (Kanada)",
+ "fr-cH": "Französisch (Schweiz)",
+ "fr-fR": "Französisch (Frankreich)",
+ "fr-lU": "Französisch (Luxemburg)",
+ "fr-mC": "Französisch (Monaco)",
+ "de-aT": "Deutsch (Österreich)",
+ "de-cH": "Deutsch (Schweiz)",
+ "de-dE": "Deutsch (Deutschland)",
+ "de-lI": "Deutsch (Liechtenstein)",
+ "de-lU": "Deutsch (Luxemburg)",
+ "iu-cans": "Inuktitut (Silbenschrift, Kanada)",
+ "iu-latn": "Inuktitut (Lateinisch, Kanada)",
+ "it-cH": "Italienisch (Schweiz)",
+ "it-iT": "Italienisch (Italien)",
+ "ms-bN": "Malaiisch (Brunei Darussalam)",
+ "ms-mY": "Malaiisch (Malaysia)",
+ "mn-cN": "Mongolisch (Traditionelles Mongolisch, Volksrepublik China)",
+ "mn-mN": "Mongolisch (kyrillisch, Mongolei)",
+ "no-nB": "Norwegisch, Bokmål (Norwegen)",
+ "no-nn": "Norwegisch, Nynorsk (Norwegen)",
+ "pt-bR": "Portugiesisch (Brasilien)",
+ "pt-pT": "Portugiesisch (Portugal)",
+ "quz-bO": "Quechua (Bolivien)",
+ "quz-eC": "Quechua (Ecuador)",
+ "quz-pE": "Quechua (Peru)",
+ "smj-nO": "Samisch (Lule, Norwegen)",
+ "smj-sE": "Samisch (Lule, Schweden)",
+ "se-fI": "Samisch (Nord, Finnland)",
+ "se-nO": "Samisch (Nord, Norwegen)",
+ "se-sE": "Samisch (Nord, Schweden)",
+ "sma-nO": "Samisch (Süd, Norwegen)",
+ "sma-sE": "Samisch (Süd, Schweden)",
+ "smn": "Samisch (Inari, Finnland)",
+ "sms": "Samisch (Skolt, Finnland)",
+ "sr-Cyrl-bA": "Serbisch (Kyrillisch)",
+ "sr-Cyrl-rS": "Serbisch (Kyrillisch, Serbien/Montenegro)",
+ "sr-Latn-bA": "Serbisch (Lateinisch)",
+ "sr-Latn-rS": "Serbisch (Lateinisch, Serbien)",
+ "dsb": "Niedersorbisch (Deutschland)",
+ "hsb": "Obersorbisch (Deutschland)",
+ "es-es-tradnl": "Spanisch (Spanien, traditionelle Sortierung)",
+ "es-aR": "Spanisch (Argentinien)",
+ "es-bO": "Spanisch (Bolivien)",
+ "es-cL": "Spanisch (Chile)",
+ "es-cO": "Spanisch (Kolumbien)",
+ "es-cR": "Spanisch (Costa Rica)",
+ "es-dO": "Spanisch (Dominikanische Republik)",
+ "es-eC": "Spanisch (Ecuador)",
+ "es-eS": "Spanisch (Spanien)",
+ "es-gT": "Spanisch (Guatemala)",
+ "es-hN": "Spanisch (Honduras)",
+ "es-mX": "Spanisch (Mexiko)",
+ "es-nI": "Spanisch (Nicaragua)",
+ "es-pA": "Spanisch (Panama)",
+ "es-pE": "Spanisch (Peru)",
+ "es-pR": "Spanisch (Puerto Rico)",
+ "es-pY": "Spanisch (Paraguay)",
+ "es-sV": "Spanisch (El Salvador)",
+ "es-uS": "Spanisch (USA)",
+ "es-uY": "Spanisch (Uruguay)",
+ "es-vE": "Spanisch (Venezuela)",
+ "sv-fI": "Schwedisch (Finnland)",
+ "uz-cyrl": "Usbekisch (kyrillisch, Usbekistan)",
+ "uz-latn": "Usbekisch (lateinisch, Usbekistan)",
+ "af": "Afrikaans (Südafrika)",
+ "sq": "Albanien (Albanisch)",
+ "am": "Amharisch (Äthiopien)",
+ "hy": "Armenisch (Armenien)",
+ "as": "Assamesisch (Indien)",
+ "ba": "Baschkirisch (Russische Föderation)",
+ "eu": "Baskisch (Baskisch)",
+ "be": "Belarussisch (Belarus)",
+ "br": "Bretonisch (Frankreich)",
+ "bg": "Bulgarisch (Bulgarien)",
+ "ca": "Katalanisch (Katalanisch)",
+ "co": "Korsisch (Frankreich)",
+ "cs": "Tschechisch (Tschechische Republik)",
+ "da": "Dänisch (Dänemark)",
+ "prs": "Dari (Afghanistan)",
+ "dv": "Divehi (Malediven)",
+ "et": "Estnisch (Estland)",
+ "fo": "Färöisch (Färöer)",
+ "fil": "Filipino (Philippinen)",
+ "fi": "Finnisch (Finnland)",
+ "gl": "Galicisch (Galicisch)",
+ "ka": "Georgisch (Georgien)",
+ "el": "Griechisch (Griechenland)",
+ "gu": "Gujarati (Indien)",
+ "ha": "Hausa (Lateinisch, Nigeria)",
+ "he": "Hebräisch (Israel)",
+ "hi": "Hindi (Indien)",
+ "hu": "Ungarisch (Ungarn)",
+ "is": "Isländisch (Island)",
+ "ig": "Igbo (Nigeria)",
+ "id": "Indonesisch (Indonesien)",
+ "ga": "Irisch (Irland)",
+ "xh": "isiXhosa (Südafrika)",
+ "zu": "isiZulu (Südafrika)",
+ "ja": "Japanisch (Japan)",
+ "kn": "Kannada (Indien)",
+ "kk": "Kasachisch (Kasachstan)",
+ "km": "Khmer (Kambodscha)",
+ "rw": "Kinyarwanda (Ruanda)",
+ "sw": "Suaheli (Kenia)",
+ "kok": "Konkani (Indien)",
+ "ko": "Koreanisch (Südkorea)",
+ "ky": "Kirgisisch (Kirgisistan)",
+ "lo": "Laotisch (Demokratische Volksrepublik Laos)",
+ "lv": "Lettisch (Lettland)",
+ "lt": "Litauisch (Litauen)",
+ "lb": "Luxemburgisch (Luxemburg)",
+ "mk": "Mazedonisch (Nordmazedonien)",
+ "ml": "Malayalam (Indien)",
+ "mt": "Maltesisch (Malta)",
+ "mi": "Maori (Neuseeland)",
+ "mr": "Marathi (Indien)",
+ "moh": "Mohawk (Kanada)",
+ "ne": "Nepalesisch (Nepal)",
+ "oc": "Okzitanisch (Frankreich)",
+ "or": "Odia (Indien)",
+ "ps": "Paschtu (Afghanistan)",
+ "fa": "Persisch",
+ "pl": "Polnisch (Polen)",
+ "pa": "Punjabi (Indien)",
+ "ro": "Rumänisch (Rumänien)",
+ "rm": "Rätoromanisch (Schweiz)",
+ "ru": "Russisch (Russische Föderation)",
+ "sa": "Sanskrit (Indien)",
+ "st": "Sesotho sa Leboa (Südafrika)",
+ "tn": "Tswana (Südafrika)",
+ "si": "Singhalesisch (Sri Lanka)",
+ "sk": "Slowakisch (Slowakei)",
+ "sl": "Slowenisch (Slowenien)",
+ "sv": "Schwedisch (Schweden)",
+ "syr": "Syrisch (Syrien)",
+ "tg": "Tadschikisch (Kyrillisch, Tadschikistan)",
+ "ta": "Tamil (Indien)",
+ "tt": "Tatarisch (Russische Föderation)",
+ "te": "Telugu (Indien)",
+ "th": "Thailändisch (Thailand)",
+ "bo": "Tibetanisch (VR China)",
+ "tr": "Türkisch (Türkei)",
+ "tk": "Turkmenisch (Turkmenistan)",
+ "uk": "Ukrainisch (Ukraine)",
+ "ur": "Urdu (Islamische Republik Pakistan)",
+ "vi": "Vietnamesisch (Vietnam)",
+ "cy": "Walisisch (Vereinigtes Königreich)",
+ "wo": "Wolof (Senegal)",
+ "ii": "Yi (Volksrepublik China)",
+ "yo": "Yoruba (Nigeria)"
+ },
+ "Category": {
+ "airPlay": "AirPlay",
+ "airPrint": "AirPrint",
+ "androidDefenderAtp": "Microsoft Defender für Endpunkt",
+ "androidDeviceOwnerApplications": "Anwendungen",
+ "androidForWorkPassword": "Gerätekennwort",
+ "appManagement": "Apps zulassen oder blockieren",
+ "applicationGuard": "Microsoft Defender Application Guard",
+ "applicationRestrictions": "Eingeschränkte Apps",
+ "applicationVisibility": "Apps anzeigen oder ausblenden",
+ "applications": "App Store",
+ "applicationsAndGames": "App Store, Dokumentanzeige, Spiele",
+ "applicationsAndGoogle": "Google Play Store",
+ "appsAndExperience": "Apps und Oberfläche",
+ "associatedDomains": "Zugehörige Domänen",
+ "autonomousSingleAppMode": "Autonomer Einzelanwendungsmodus",
+ "azureOperationalInsights": "Azure Operational Insights",
+ "bitLocker": "Windows-Verschlüsselung",
+ "browser": "Browser",
+ "builtinApps": "Integrierte Apps",
+ "cellular": "Mobilfunk",
+ "cloudAndStorage": "Cloud und Speicher",
+ "cloudPrint": "Clouddrucker",
+ "complianceEmailProfile": "E-Mail",
+ "connectedDevices": "Verbundene Geräte",
+ "connectivity": "Mobilfunk und Konnektivität",
+ "contentCaching": "Content Caching",
+ "controlPanelAndSettings": "Systemsteuerung und Einstellungen",
+ "credentialGuard": "Microsoft Defender Credential Guard",
+ "customCompliance": "Benutzerdefinierte Konformität",
+ "customCompliancePreview": "Benutzerdefinierte Konformität (Vorschau)",
+ "customConfiguration": "Benutzerdefiniertes Konfigurationsprofil",
+ "customOMASettings": "Benutzerdefinierte OMA-URI-Einstellungen",
+ "customPreferences": "Einstellungsdatei",
+ "defender": "Microsoft Defender Antivirus",
+ "defenderAntivirus": "Microsoft Defender Antivirus",
+ "defenderExploitGuard": "Microsoft Defender Exploit Guard",
+ "defenderFirewall": "Microsoft Defender Firewall",
+ "defenderLocalSecurityOptions": "Sicherheitsoptionen für lokales Gerät",
+ "defenderSecurityCenter": "Microsoft Defender Security Center",
+ "deliveryOptimization": "Übermittlungsoptimierung",
+ "derivedCredentialAuthenticationConfiguration": "Abgeleitete Anmeldeinformation",
+ "deviceExperience": "Geräteoberfläche",
+ "deviceFirmwareConfigurationInterface": "Schnittstelle zur Konfiguration der Gerätefirmware",
+ "deviceGuard": "Microsoft Defender-Anwendungssteuerung",
+ "deviceHealth": "Geräteintegritätsdienst",
+ "devicePassword": "Gerätekennwort",
+ "deviceProperties": "Geräteeigenschaften",
+ "deviceRestrictions": "Allgemein",
+ "deviceSecurity": "Systemsicherheit",
+ "display": "Anzeigen",
+ "domainJoin": "Domänenbeitritt",
+ "domains": "Domänen",
+ "edgeBrowser": "Microsoft Edge-Legacybrowser (Version 45 und früher)",
+ "edgeBrowserSmartScreen": "Microsoft Defender SmartScreen",
+ "edgeKiosk": "Microsoft Edge-Kioskmodus",
+ "editionUpgrade": "Editionsupgrade",
+ "education": "Bildung",
+ "educationDeviceCerts": "Gerätezertifikate",
+ "educationStudentCerts": "Zertifikate für Schüler und Studenten",
+ "educationTakeATest": "Prüfung",
+ "educationTeacherCerts": "Lehrerzertifikate",
+ "emailProfile": "E-Mail",
+ "enterpriseDataProtection": "Windows Information Protection",
+ "expeditedCheckin": "Konfiguration der Verwaltung mobiler Geräte",
+ "extensibleSingleSignOn": "App-Erweiterung für einmaliges Anmelden",
+ "filevault": "FileVault",
+ "firewall": "Firewall",
+ "games": "Spiele",
+ "gatekeeper": "Gatekeeper",
+ "healthMonitoring": "Integritätsüberwachung",
+ "homeScreenLayout": "Layout der Startseite",
+ "iOSWallpaper": "Hintergrundbild",
+ "importedPFX": "Importiertes PKCS-Zertifikat",
+ "iosDefenderAtp": "Microsoft Defender für Endpunkt",
+ "iosKiosk": "Kiosk",
+ "kernelExtensions": "Kernelerweiterungen",
+ "keyboardAndDictionary": "Tastatur und Wörterbuch",
+ "kiosk": "Kiosk",
+ "kioskAndroidEnterprise": "Dedizierte Geräte",
+ "kioskConfiguration": "Kiosk",
+ "kioskConfigurationV2": "Kiosk",
+ "kioskWebBrowser": "Kioskwebbrowser",
+ "lockScreenMessage": "Nachricht auf Sperrbildschirm",
+ "lockedScreenExperience": "Gesperrter Bildschirm",
+ "logging": "Berichterstellung und Telemetrie",
+ "loginItems": "Anmeldeelemente",
+ "loginWindow": "Anmeldefenster",
+ "macDefenderAtp": "Microsoft Defender für Endpunkt",
+ "maintenance": "Wartung",
+ "malware": "Schadsoftware",
+ "messaging": "Messaging",
+ "networkBoundary": "Netzwerkgrenze",
+ "networkProxy": "Netzwerkproxy",
+ "notifications": "App-Benachrichtigungen",
+ "pKCS": "PKCS-Zertifikat",
+ "password": "Kennwort",
+ "personalProfile": "Persönliches Profil",
+ "personalization": "Personalisierung",
+ "policyOverride": "Gruppenrichtlinie außer Kraft setzen",
+ "powerSettings": "Energieeinstellungen",
+ "printer": "Drucker",
+ "privacy": "Datenschutz",
+ "privacyPerApp": "App-spezifische Datenschutzausnahmen",
+ "privacyPreferences": "Datenschutzeinstellungen",
+ "projection": "Projektion",
+ "sCCMCompliance": "Configuration Manager-Konformität",
+ "sCEP": "SCEP-Zertifikat",
+ "sCEPProperties": "SCEP-Zertifikat",
+ "sMode": "Moduswechsel (nur Windows-Insider)",
+ "safari": "Safari",
+ "search": "Suchen",
+ "session": "Sitzung",
+ "sharedDevice": "Shared iPad",
+ "sharedPCAccountManager": "Freigegebenes, von mehreren Benutzern verwendetes Gerät",
+ "singleSignOn": "Einmaliges Anmelden",
+ "smartScreen": "Microsoft Defender SmartScreen",
+ "softwareUpdates": "Einstellungen",
+ "start": "Starten",
+ "systemExtensions": "Systemerweiterungen",
+ "systemSecurity": "Systemsicherheit",
+ "trustedCert": "Vertrauenswürdiges Zertifikat",
+ "updates": "Updates",
+ "userRights": "Benutzerrechte",
+ "usersAndAccounts": "Benutzer und Konten",
+ "vPN": "Basis-VPN",
+ "vPNApps": "Automatisches VPN",
+ "vPNAppsAndTrafficRules": "Regeln zu Apps und Datenverkehr",
+ "vPNConditionalAccess": "Bedingter Zugriff",
+ "vPNConnectivity": "Konnektivität",
+ "vPNDNSTriggers": "DNS-Einstellungen",
+ "vPNIKEv2": "IKEv2-Einstellungen",
+ "vPNProxy": "Proxy",
+ "vPNSplitTunneling": "Getrenntes Tunneln",
+ "vPNTrustedNetwork": "Erkennung vertrauenswürdiger Netzwerke",
+ "webContentFilter": "Webinhaltsfilter",
+ "wiFi": "WLAN",
+ "win10Wifi": "WLAN",
+ "windowsAtp": "Microsoft Defender für Endpunkt",
+ "windowsDefenderATP": "Microsoft Defender für Endpunkt",
+ "windowsHelloForBusiness": "Windows Hello for Business",
+ "windowsSpotlight": "Windows-Blickpunkt",
+ "wiredNetwork": "Kabelgebundenes Netzwerk",
+ "wireless": "Drahtlosnetzwerke",
+ "wirelessProjection": "Drahtlose Projektion",
+ "workProfile": "Arbeitsprofileinstellungen",
+ "workProfilePassword": "Arbeitsprofilkennwort",
+ "xboxServices": "Xbox-Dienste",
+ "zebraMx": "MX-Profil (nur Zebra)",
+ "complianceActionsLabel": "Aktionen bei Inkompatibilität"
+ },
+ "WindowsFeatureUpdateProfile": {
+ "Details": {
+ "Description": {
+ "label": "Beschreibung"
+ },
+ "FeatureDeploymentSettings": {
+ "header": "Einstellungen für Featurebereitstellung"
+ },
+ "FeatureUpdateVersion": {
+ "infoballoon": "Dieses Feature kann kein Downgrade für ein Gerät durchführen.",
+ "label": "Bereitzustellendes Featureupdate"
+ },
+ "GradualRolloutEndDate": {
+ "label": "Endgültige Gruppenverfügbarkeit"
+ },
+ "GradualRolloutInterval": {
+ "label": "Tage zwischen Gruppen"
+ },
+ "GradualRolloutStartDate": {
+ "label": "Erste Gruppenverfügbarkeit"
+ },
+ "Name": {
+ "label": "Name"
+ },
+ "RolloutOptions": {
+ "label": "Rollout-Optionen"
+ },
+ "RolloutSettings": {
+ "header": "Wann möchten Sie das Update in Windows Update verfügbar machen?"
+ },
+ "ScopeSettings": {
+ "header": "Konfigurieren Sie Bereichstags für diese Richtlinie."
+ },
+ "StartDateOnlyStartDate": {
+ "label": "Erstes verfügbares Datum"
+ },
+ "bladeTitle": "Funktionsupdatebereitstellungen",
+ "deploymentSettingsTitle": "Bereitstellungseinstellungen",
+ "loadError": "Fehler beim Laden.",
+ "windows11EULA": "Durch Auswahl dieses Featureupdates für die Bereitstellung stimmen Sie zu, dass Sie bei Anwendung dieses Betriebssystems auf ein Gerät entweder (1) die entsprechende Windows-Lizenz durch Volumenlizenzierung erworben haben oder (2) dazu autorisiert sind, Ihre Organisation vertraglich zu binden, und in ihrem Namen die hier aufgeführten relevanten Microsoft-Software-Lizenzbedingungen akzeptieren: {0}."
+ },
+ "Notifications": {
+ "deploymentSaved": "\"{0}\" wurde gespeichert.",
+ "newFeatureUpdateDeploymentCreated": "Die neue Featureupdatebereitstellung wurde erstellt."
+ },
+ "TabName": {
+ "deploymentSettings": "Bereitstellungseinstellungen",
+ "groupAssignmentSettings": "Zuweisungen",
+ "scopeSettings": "Bereichstags"
+ }
+ },
+ "WIPPinRequirements": {
+ "WipLowercaseCharacterPinRequirements": {
+ "allow": "Verwendung von Kleinbuchstaben in der PIN zulassen",
+ "notAllow": "Verwendung von Kleinbuchstaben in der PIN nicht zulassen",
+ "requireAtLeastOne": "Verwendung mindestens eines Kleinbuchstabens in der PIN erforderlich"
+ },
+ "WipSpecialCharacterPinRequirements": {
+ "allow": "Verwendung von Sonderzeichen in der PIN zulassen",
+ "notAllow": "Verwendung von Sonderzeichen in der PIN nicht zulassen",
+ "requireAtLeastOne": "Verwendung mindestens eines Sonderzeichens in der PIN erforderlich"
+ },
+ "WipUppercaseCharacterPinRequirements": {
+ "allow": "Verwendung von Großbuchstaben in der PIN zulassen",
+ "notAllow": "Verwendung von Großbuchstaben in der PIN nicht zulassen",
+ "requireAtLeastOne": "Verwendung mindestens eines Großbuchstabens in der PIN erforderlich"
+ }
+ },
+ "OutlookAppConfigSettings": {
+ "AllowUserToChangeSetting": {
+ "title": "Benutzer das Ändern der Einstellung erlauben",
+ "tooltip": "Geben Sie an, ob der Benutzer die Einstellung ändern darf."
+ },
+ "AllowWorkAccounts": {
+ "title": "Nur Geschäfts-, Schul- oder Unikonten zulassen",
+ "tooltip": " Wenn diese Einstellung aktiviert ist, können Benutzer keine persönlichen E-Mail- und Speicherkonten in Outlook hinzufügen. Wenn der Benutzer ein persönliches Konto zu Outlook hinzugefügt hat, wird er aufgefordert, das persönliche Konto zu entfernen. Wird das persönliche Konto nicht entfernt, kann das Geschäfts, Schul- oder Unikonto nicht hinzugefügt werden."
+ },
+ "BlockExternalImages": {
+ "title": "Externe Bilder blockieren",
+ "tooltip": "Wenn die Option \"Externe Bilder blockieren\" aktiviert ist, verhindert die App das Herunterladen von im Internet gehosteten Bildern, die in den Nachrichtentext eingebettet sind. Wird diese Einstellung als nicht konfiguriert festgelegt, lautet die Standardeinstellung für die App \"Aus\"."
+ },
+ "ConfigureEmail": {
+ "title": "E-Mail-Kontoeinstellungen konfigurieren"
+ },
+ "DefaultAppSignatureSetting": {
+ "Tooltip": {
+ "android": "Die Standard-App-Signatur gibt an, ob die App \"Outlook für Android herunterladen\" als standardmäßige Signatur beim Verfassen von Nachrichten verwendet wird. Wenn die Einstellung als deaktiviert konfiguriert ist, wird die standardmäßige Signatur nicht verwendet. Benutzer können jedoch ihre eigene Signatur hinzufügen.\r\n\r\nWenn sie als nicht konfiguriert festgelegt wird, ist die Standard-App-Einstellung aktiviert.",
+ "iOS": "Die Standard-App-Signatur gibt an, ob die App \"Outlook für iOS herunterladen\" als standardmäßige Signatur beim Verfassen von Nachrichten verwendet wird. Wenn die Einstellung als deaktiviert konfiguriert ist, wird die standardmäßige Signatur nicht verwendet. Benutzer können jedoch ihre eigene Signatur hinzufügen.\r\n\r\nWenn sie als nicht konfiguriert festgelegt wird, ist die Standard-App-Einstellung aktiviert."
+ },
+ "title": "Standard-App-Signatur"
+ },
+ "OfficeFeedReplies": {
+ "title": "Ermittlungsfeed",
+ "tooltip": "Im Ermittlungsfeed werden die Office-Dateien angezeigt, auf die am häufigsten zugegriffen wurde. Standardmäßig ist dieser Feed aktiviert, wenn Delve für den Benutzer aktiviert ist. Wurde die App nicht konfiguriert, lautet die Standard-App-Einstellung \"Ein\"."
+ },
+ "OrganizeMailByThread": {
+ "title": "E-Mails nach Thread organisieren",
+ "tooltip": "Das Standardverhalten in Outlook besteht darin, E-Mail-Nachrichten zu bündeln und als Unterhaltungsthread anzuzeigen. Wenn diese Einstellung deaktiviert ist, gruppiert Outlook die E-Mails nicht, sondern zeigt jede E-Mail einzeln an."
+ },
+ "PlayMyEmails": {
+ "title": "Meine E-Mails wiedergeben",
+ "tooltip": "Das Feature \"Meine E-Mails wiedergeben\" ist in der App standardmäßig nicht aktiviert, wird aber berechtigten Benutzern über ein Banner im Posteingang angepriesen. Wenn diese Option deaktiviert ist, werden berechtigte Benutzer in der App nicht auf dieses Feature aufmerksam gemacht. Benutzer können \"Meine E-Mails wiedergeben\" auch dann manuell über die App aktivieren, wenn dieses Feature deaktiviert ist. Bei der Einstellung \"Nicht konfiguriert\" ist die App-Einstellung standardmäßig aktiviert, und berechtigte Benutzer werden auf das Feature aufmerksam gemacht."
+ },
+ "SuggestedReplies": {
+ "title": "Vorgeschlagene Antworten",
+ "tooltip": "Wenn Sie eine Nachricht öffnen, schlägt Outlook unterhalb der Nachricht möglicherweise Antworten vor. Wenn Sie eine vorgeschlagene Antwort auswählen, können Sie diese vor dem Senden bearbeiten."
+ },
+ "SyncCalendars": {
+ "title": "Kalender synchronisieren",
+ "tooltip": "Hiermit wird konfiguriert, ob Benutzer ihren Outlook-Kalender mit der nativen Kalender-App und -datenbank synchronisieren können."
+ },
+ "TextPredictions": {
+ "title": "Textvorhersagen",
+ "tooltip": "Während Sie Nachrichten verfassen, kann Outlook Wörter und Ausdrücke vorschlagen. Wischen Sie, um einen von Outlook angebotenen Vorschlag zu akzeptieren. Wenn diese Einstellung auf \"Nicht konfiguriert\" festgelegt ist, wird die standardmäßige App-Einstellung auf EIN festgelegt."
+ },
+ "ThemesEnabled": {
+ "title": "Designs aktiviert",
+ "tooltip": "Geben Sie an, ob der Benutzer ein benutzerdefiniertes visuelles Design verwenden darf."
+ }
+ },
+ "AssignmentFilters": {
+ "assignmentFilterColumnHeader": "Filter",
+ "noFilters": "Keine"
+ },
+ "Platform": {
+ "all": "Alle",
+ "android": "Android-Geräteadministrator",
+ "androidAOSP": "Android (AOSP)",
+ "androidEnterprise": "Android Enterprise",
+ "androidForWork": "Android Enterprise",
+ "androidWorkProfile": "Android Enterprise",
+ "common": "Allgemein",
+ "iOS": "iOS/iPadOS",
+ "iosAndAndroidPlatformLabel": "iOS und Android",
+ "iosCommaAndroidPlatformLabel": "iOS, Android",
+ "linux": "Linux",
+ "macOS": "macOS",
+ "unknown": "Unbekannt",
+ "unsupported": "Nicht unterstützt",
+ "windows": "Windows",
+ "windows10": "Windows 10 und höher",
+ "windows10CM": "Windows 10 und höher (ConfigMgr)",
+ "windows10Holo": "Windows 10 Holographic",
+ "windows10Mobile": "Windows 10 Mobile",
+ "windows10Team": "Windows 10 Team",
+ "windows10X": "Windows 10X",
+ "windows8": "Windows 8.1 und höher",
+ "windows8And10": "Windows 8 und 10",
+ "windowsPhone": "Windows Phone 8.1",
+ "windows10AndLater": "Windows 10 und höher",
+ "windows10AndWindowsServer": "Windows 10, Windows 11 und Windows Server (Configuration Manager)",
+ "windows10andLaterCM": "Windows 10 und höher (ConfigMgr)",
+ "holoLens": "HoloLens",
+ "surfaceHub2": "Surface Hub 2",
+ "surfaceHub2S": "Surface Hub 2S",
+ "windowsPC": "Windows-PC"
+ },
+ "AppInformationTab": {
+ "Error": {
+ "multipleChildApps": "Eine branchenspezifische macOS-App kann nur als verwaltete App installiert werden, wenn das hochgeladene Paket eine einzelne App enthält."
+ },
+ "Info": {
+ "AppStoreUrl": {
+ "android": "Geben Sie den Link zum App-Eintrag im Google Play Store ein. Beispiel:",
+ "androidLink": "https://play.google.com/store/apps/details?id=com.microsoft.office.outlook",
+ "windows": "Geben Sie den Link zum App-Eintrag im Microsoft Store ein. Beispiel:",
+ "windowsLink": "https://www.microsoft.com/en-us/p/microsoft-to-do-lists-tasks-reminders/9nblggh5r558"
+ },
+ "appPackageFile": "Eine Datei, die Ihre App in einem Format enthält, das auf einem Gerät quergeladen werden kann. Gültige Pakettypen umfassen: Android (.apk), iOS (.ipa), macOS (.pkg, .intunemac), Windows (.msi, .appx, .appxbundle, .msix, and .msixbundle).",
+ "applicableDeviceType": "Wählen Sie die Gerätetypen aus, auf denen diese App installiert werden kann.",
+ "category": "Kategorisieren Sie die App, um Benutzern das Sortieren und Suchen im Unternehmensportal zu erleichtern. Sie können mehrere Kategorien auswählen.",
+ "categoryLink": "https://docs.microsoft.com/en-us/intune/apps/apps-add#create-and-edit-categories-for-apps",
+ "description": "Stellen Sie Informationen bereit, damit die Benutzer besser verstehen, worum es sich bei Ihrer App handelt und welche Möglichkeit die App ihnen bietet. Diese Beschreibung wird im Unternehmensportal angezeigt.",
+ "developer": "Der Name des Unternehmens oder der Person, von der die App entwickelt wurde. Diese Informationen sind für Personen sichtbar, die beim Admin Center angemeldet sind.",
+ "displayVersion": "Die Version der App. Diese Informationen sind für Benutzer im Unternehmensportal sichtbar.",
+ "infoUrl": "Stellen Sie einen Link zu einer Website oder Dokumentation bereit, die weitere Informationen zur App enthält. Die Informations-URL ist für Benutzer im Unternehmensportal sichtbar.",
+ "isFeatured": "Ausgewählte Apps werden prominent im Unternehmensportal platziert, sodass Benutzer sie schnell aufrufen können.",
+ "learnMore": "Weitere Informationen",
+ "logo": "Laden Sie ein Logo hoch, das der App zugeordnet ist. Dieses Logo wird im Unternehmensportal neben der App angezeigt.",
+ "macOSDmgAppPackageFile": "Eine Datei, die Ihre App in einem Format enthält, das auf einem Gerät quergeladen werden kann. Gültiger Pakettyp: .dmg. ",
+ "minOperatingSystem": "Wählen Sie die früheste Betriebssystemversion aus, unter der die App installiert werden kann. Wenn Sie die App einem Gerät mit einem früheren Betriebssystem zuweisen, wird die App nicht installiert.",
+ "name": "Fügen Sie einen Namen für die App hinzu. Dieser Name wird in der Intune-App-Liste und für Benutzer im Unternehmensportal angezeigt.",
+ "notes": "Fügen Sie zusätzliche Hinweise zur App hinzu. Hinweise sind für Personen sichtbar, die beim Admin Center angemeldet sind.",
+ "owner": "Der Name der Person in Ihrer Organisation, die die Lizenzierung verwaltet oder als Kontakt für diese App fungiert. Dieser Name ist für Personen sichtbar, die beim Admin Center angemeldet sind.",
+ "packageName": "Wenden Sie sich an den Gerätehersteller, um den Paketnamen der App abzurufen. Beispielpaketname: com.beispiel.app",
+ "privacyUrl": "Stellen Sie einen Link für Personen bereit, die mehr über die Datenschutzeinstellungen und -bestimmungen der App erfahren möchten. Die URL zum Datenschutz ist für Benutzer im Unternehmensportal sichtbar.",
+ "publisher": "Der Name des Entwicklers oder Unternehmens, von dem die App verteilt wird. Diese Informationen sind für Benutzer im Unternehmensportal sichtbar.",
+ "selectApp": "Suchen Sie im App Store nach iOS Store-Apps, die Sie mit Intune bereitstellen möchten.",
+ "useManagedBrowser": "Wenn ein Benutzer die Web-App öffnet, wird diese bei Bedarf in einem von Intune geschützten Browser wie Microsoft Edge oder Intune Managed Browser geöffnet. Diese Einstellung gilt sowohl für iOS- als auch für Android-Geräte.",
+ "useManagedBrowserLink": "https://docs.microsoft.com/en-us/intune/apps/app-configuration-managed-browser",
+ "win32AppPackageFile": "Dies ist eine Datei, die Ihre App in einem Format enthält, das auf einem Gerät quergeladen werden kann. Gültige Pakettypen: INTUNEWIN."
+ },
+ "descriptionPreview": "Vorschau",
+ "descriptionRequired": "Die Beschreibung ist erforderlich.",
+ "editDescription": "Beschreibung bearbeiten",
+ "macOSMinOperatingSystemAdditionalInfo": "Das Mindestbetriebssystem für das Hochladen einer PKG-Datei ist macOS 10.14. Laden Sie eine INTUNEMAC-Datei hoch, um ein älteres Mindestbetriebssystem auszuwählen.",
+ "name": "App-Informationen",
+ "nameForOfficeSuitApp": "Informationen zur App-Suite"
+ },
+ "Tooltips": {
+ "PolicySettings": {
+ "TouchId1": {
+ "android": "Unter Android können Sie die Identifikation per Fingerabdruck anstelle einer PIN verwenden. Benutzer werden aufgefordert, ihren Fingerabdruck bereitzustellen, wenn sie mit ihren Geschäftskonten auf diese App zugreifen.",
+ "iOS": "Auf iOS-/iPadOS-Geräten können Sie den Benutzern auch ermöglichen, sich statt mit einer PIN per Fingerabdruck zu identifizieren. Benutzer werden aufgefordert, ihren Fingerabdruck zu scannen, wenn sie mit ihrem Geschäftskonto auf diese App zugreifen.",
+ "mac": "Auf Mac-Geräten können Sie den Benutzern auch ermöglichen, sich statt mit einer PIN per Fingerabdruck zu identifizieren. Benutzer werden aufgefordert, ihren Fingerabdruck zu scannen, wenn sie mit ihrem Geschäftskonto auf diese App zugreifen."
+ },
+ "appSharingFromLevel1": "Wählen Sie eine der folgenden Optionen aus, um die Apps anzugeben, von denen diese App Daten empfangen darf:",
+ "appSharingFromLevel2": "{0}: Empfang von Daten in Organisationsdokumenten und Konten nur von anderen richtlinienverwalteten Apps zulassen",
+ "appSharingFromLevel3": "{0}: Empfang von Daten aus beliebigen Apps in Organisationsdokumenten und Konten zulassen",
+ "appSharingFromLevel4": "{0}: Empfang von Daten aus anderen Apps in Organisationsdokumenten oder Konten nicht zulassen",
+ "appSharingFromLevel5": "{0}: Datenübertragungen aus anderen Apps zulassen und alle eingehenden Daten ohne Benutzeridentität als Organisationsdaten behandeln.",
+ "appSharingToLevel1": "Wählen Sie eine der folgenden Optionen aus, um die Apps anzugeben, an die diese App Daten senden darf:",
+ "appSharingToLevel2": "{0}: Senden von Organisationsdaten nur an andere richtlinienverwaltete Apps zulassen",
+ "appSharingToLevel3": "{0}: Senden von Organisationsdaten an beliebige Apps zulassen",
+ "appSharingToLevel4": "{0}: Senden von Organisationsdaten an andere Apps nicht zulassen",
+ "appSharingToLevel5": "{0}: Nur Übertragung an andere richtlinienverwaltete Apps und Dateiübertragungen an andere MDM-verwaltete Apps auf registrierten Geräten zulassen",
+ "appSharingToLevel6": "{0}: Nur Übertragungen an andere richtlinienverwaltete Apps zulassen und Betriebssystem-Dialogfelder \"Öffnen in\"/\"Freigeben\" filtern, sodass nur per Richtlinie verwaltete Apps angezeigt werden",
+ "conditionalEncryption1": "Wählen Sie \"{0}\" aus, um die App-Verschlüsselung für den internen App-Speicher zu deaktivieren, wenn auf einem registrierten Gerät eine aktive Geräteverschlüsselung ermittelt wurde.",
+ "conditionalEncryption2": "Hinweis: Intune kann nur Geräte ermitteln, die mit Intune MDM registriert wurden. Externer App-Speicher wird weiterhin verschlüsselt, um sicherzustellen, dass nicht verwaltete Anwendungen nicht auf Daten zugreifen können.",
+ "contactSyncMac": "Wenn diese Option deaktiviert ist, können Apps keine Kontakte im nativen Adressbuch speichern.",
+ "contactsSync": "Wählen Sie Blockieren aus, um zu verhindern, dass durch Richtlinien verwaltete Apps Daten in den nativen Apps des Geräts speichern (z. B. Kontakte, Kalender und Widgets), oder um die Verwendung von Add-Ins innerhalb der durch Richtlinien verwalteten Apps zu verhindern. Wenn Sie Zulassen auswählen, kann die durch Richtlinien verwaltete App Daten in den nativen Apps speichern oder Add-Ins verwenden, sofern diese Features in der durch Richtlinien verwalteten App unterstützt werden und aktiviert sind.
Apps bieten möglicherweise zusätzliche Konfigurationsfunktionen anhand von App-Konfigurationsrichtlinien. Weitere Informationen finden Sie in der Dokumentation der App.",
+ "encryptionAndroid1": "Bei Apps, die einer Intune-Richtlinie für die Verwaltung mobiler Anwendungen zugeordnet sind, wird die Verschlüsselung durch Microsoft bereitgestellt. Daten werden bei Datei-E/A-Vorgängen gemäß den Einstellungen in der Richtlinie für die Verwaltung mobiler Anwendungen synchron verschlüsselt. Verwaltete Apps unter Android verwenden AES-128-Verschlüsselung im CBC-Modus unter Verwendung der plattformeigenen Kryptografiebibliotheken. Die Verschlüsselungsmethode ist nicht mit FIPS 140-2 konform. Die SHA-256-Verschlüsselung wird als explizite Anweisung unter Verwendung des SigAlg-Parameters unterstützt und funktioniert nur auf Geräten mit Version 4.2 und höher. Inhalte im Gerätespeicher werden immer verschlüsselt.",
+ "encryptionAndroid2": "Wenn Sie in Ihrer App-Richtlinie eine Verschlüsselung anfordern, müssen Endbenutzer eine PIN einrichten und verwenden, um auf das Gerät zuzugreifen. Wenn keine PIN für den Gerätezugriff eingerichtet wurde, werden die Apps nicht gestartet, und den Benutzern wird stattdessen diese Meldung angezeigt: \"Ihr Unternehmen hat festgelegt, dass Sie zunächst eine Geräte-PIN aktivieren müssen, um auf diese Anwendung zuzugreifen.\"",
+ "encryptionMac1": "Bei Apps, die einer Intune-Richtlinie für die Verwaltung mobiler Anwendungen zugeordnet sind, wird die Verschlüsselung durch Microsoft bereitgestellt. Daten werden bei Datei-E/A-Vorgängen gemäß den Einstellungen in der Richtlinie für die Verwaltung mobiler Anwendungen synchron verschlüsselt. Verwaltete Apps unter Mac verwenden AES-128-Verschlüsselung im CBC-Modus unter Verwendung der plattformeigenen Kryptografiebibliotheken. Die Verschlüsselungsmethode ist nicht mit FIPS 140-2 konform. Die SHA-256-Verschlüsselung wird als explizite Anweisung unter Verwendung des SigAlg-Parameters unterstützt und funktioniert nur auf Geräten mit Version 4.2 und höher. Inhalte im Gerätespeicher werden immer verschlüsselt.",
+ "faceId1": "Gegebenenfalls können Sie die Verwendung der Gesichtserkennung anstelle einer PIN erlauben. Benutzer werden aufgefordert, beim Zugriff auf diese Anwendung über ihre Arbeitskonten eine Gesichtserkennung bereitzustellen.",
+ "faceId2": "Wählen Sie Ja, um für den App-Zugriff die Gesichtserkennung anstelle einer PIN zu erlauben.",
+ "managementLevelsAndroid1": "Über diese Option geben Sie an, ob diese Richtlinie für Geräte des Android-Geräteadministrators, für Android Enterprise-Geräte oder für nicht verwaltete Geräte gilt.",
+ "managementLevelsAndroid2": "{0}: Nicht verwaltete Geräte sind Geräte, auf denen Intune MDM nicht erkannt wurde. Dazu gehören auch MDM-Drittanbieter.",
+ "managementLevelsAndroid3": "{0}: Von Intune verwaltete Geräte, die die Android-Geräteverwaltungs-API verwenden.",
+ "managementLevelsAndroid4": "{0}: Von Intune verwaltete Geräte, die Android Enterprise-Arbeitsprofile oder Android Enterprise Full Device Management verwenden.",
+ "managementLevelsIos1": "Über diese Option geben Sie an, ob diese Richtlinie für über MDM verwaltete Geräte oder für nicht verwaltete Geräte gilt.",
+ "managementLevelsIos2": "{0}: Nicht verwaltete Geräte sind Geräte, auf denen Intune MDM nicht erkannt wurde. Dazu gehören auch MDM-Drittanbieter.",
+ "managementLevelsIos3": "{0}: Verwaltete Geräte werden über Intune MDM verwaltet.",
+ "minAppVersion": "Definieren Sie die erforderliche App-Mindestversionsnummer, über die ein Benutzer für den sicheren Zugriff auf die App verfügen muss.",
+ "minAppVersionWarning": "Definieren Sie die empfohlene App-Mindestversionsnummer, über die ein Benutzer für den sicheren Zugriff auf die App verfügen sollte.",
+ "minOsVersion": "Definieren Sie die erforderliche Mindestversionsnummer für das Betriebssystem, über die ein Benutzer für den sicheren Zugriff auf die App verfügen muss.",
+ "minOsVersionWarning": "Definieren Sie die empfohlene Mindestversionsnummer für das Betriebssystem, über die ein Benutzer für den sicheren Zugriff auf die App verfügen sollte.",
+ "minPatchVersion": "Definieren Sie die niedrigste erforderliche Android-Sicherheitspatchebene, die ein Benutzer für den sicheren Zugriff auf die App verwenden kann.",
+ "minPatchVersionWarning": "Definieren Sie die niedrigste empfohlene Android-Sicherheitspatchebene, die ein Benutzer für den sicheren Zugriff auf die App verwenden kann.",
+ "minSdkVersion": "Definieren Sie die erforderliche SDK-Version für Intune-Anwendungsschutzrichtlinien, über die ein Benutzer für den sicheren Zugriff auf die App verfügen muss.",
+ "requireAppPinDefault": "Wählen Sie Ja aus, um die App-PIN zu deaktivieren, wenn eine Gerätesperre auf einem registrierten Gerät erkannt wurde.
",
+ "targetAllApps1": "Mit dieser Option legen Sie fest, dass Ihre Richtlinie für Apps auf Geräten mit beliebigem Verwaltungsstatus gilt.",
+ "targetAllApps2": "Bei der Auflösung von Richtlinienkonflikten wird diese Einstellung außer Kraft gesetzt, wenn ein Benutzer die Richtlinie für einen bestimmten Verwaltungsstatus festgelegt hat.",
+ "touchId2": "Wählen Sie \"{0}\" aus, um für den Zugriff auf die App eine Identifizierung per Fingerabdruck statt per PIN anzufordern."
+ },
+ "Tap": {
+ "pinResetAfterNumberOfDays": "Geben Sie die Anzahl von Tagen an, nach denen der Benutzer die PIN zurücksetzen muss.",
+ "previousPinBlockCount": "Mit dieser Einstellung wird die Anzahl der vorherigen PINs angegeben, die Intune beibehält. Neue PINs müssen sich von denen unterscheiden, die Intune verwaltet."
+ },
+ "WipPolicySettings": {
+ "25": "",
+ "allowWindowsSearch": "Hiermit wird Windows Search das Fortsetzen der Suche in verschlüsselten Daten ermöglicht.",
+ "authoritativeIpRanges": "Aktivieren Sie diese Einstellung, wenn Sie die automatische Windows-Erkennung von IP-Bereichen außer Kraft setzen möchten.",
+ "authoritativeProxyServers": "Aktivieren Sie diese Einstellung, wenn Sie die automatische Windows-Erkennung von Proxyservern außer Kraft setzen möchten.",
+ "checkInput": "Eingabe auf Gültigkeit prüfen",
+ "dataRecoveryCert": "Ein Wiederherstellungszertifikat ist ein spezielles EFS-Zertifikat (Encrypting File System, verschlüsselndes Dateisystem), mit dem Sie verschlüsselte Dateien wiederherstellen können, wenn Ihr Verschlüsselungsschlüssel verloren geht oder beschädigt wird. Sie müssen das Wiederherstellungszertifikat erstellen und hier angeben. Weitere Informationen finden Sie hier.",
+ "enterpriseCloudResources": "Geben Sie Cloudressourcen an, die als unternehmenseigene Ressourcen eingestuft und mit der Windows Information Protection-Richtlinie geschützt werden sollen. Sie können mehrere Ressourcen angeben, indem Sie die einzelnen Einträge durch das Zeichen \"|\" voneinander trennen.
Wenn Sie in Ihrem Unternehmen einen Proxy konfiguriert haben, können Sie den Proxy angeben, über den der Datenverkehr zu den von Ihnen angegebenen Cloudressourcen geleitet werden soll.
URL[,Proxy]|URL[,Proxy]
Ohne Proxy: contoso.sharepoint.com|contoso.visualstudio.com
Mit Proxy: contoso.sharepoint.com,proxy.contoso.com|contoso.visualstudio.com,proxy.contoso.com
",
+ "enterpriseIPv4Ranges": "Geben Sie die IPv4-Bereiche an, aus denen Ihr Unternehmensnetzwerk gebildet wird. Diese werden zusammen mit den angegebenen Domänennamen für das Unternehmensnetzwerk verwendet, um die Grenzen Ihres Unternehmensnetzwerks zu definieren.
Für diese Einstellung muss Windows Information Protection aktiviert sein.
Sie können mehrere Werte angeben, indem Sie die einzelnen Einträge durch ein Komma voneinander trennen.
Beispiel: 3.4.0.1-3.4.255.255,192.168.1.1-192.168.255.255
",
+ "enterpriseIPv6Ranges": "Geben Sie die IPv6-Bereiche an, aus denen Ihr Unternehmensnetzwerk gebildet wird. Diese werden zusammen mit den angegebenen Domänennamen für das Unternehmensnetzwerk verwendet, um die Grenzen Ihres Unternehmensnetzwerks zu definieren.
Sie können mehrere Werte angeben, indem Sie die einzelnen Einträge durch ein Komma voneinander trennen.
Beispiel: 2001:4898:dc05::-2001:4898:dc05:ffff:ffff:ffff:ffff:ffff,2a01:110::-2a01:110:7fff:ffff:ffff:ffff:ffff:ffff
",
+ "enterpriseInternalProxyServers": "Wenn Sie in Ihrem Unternehmen einen Proxy konfiguriert haben, können Sie den Proxy festlegen, über den der Datenverkehr an die in den Unternehmenscloudressourcen-Einstellungen angegebenen Cloudressourcen geleitet werden soll.
Sie können mehrere Werte angeben, indem Sie die einzelnen Einträge durch ein Semikolon voneinander trennen.
Beispiel: contoso.internalproxy1.com;contoso.internalproxy2.com
",
+ "enterpriseNetworkDomainNames": "Geben Sie die DNS-Namen an, aus denen Ihr Unternehmensnetzwerk gebildet wird. Diese werden zusammen mit den festgelegten IP-Bereichen verwendet, um die Grenzen Ihres Unternehmensnetzwerks zu definieren. Sie können mehrere Werte angeben, indem Sie die einzelnen Einträge durch ein Komma voneinander trennen.
Für diese Einstellung muss Windows Information Protection aktiviert sein.
Beispiel: corp.contoso.com,region.contoso.com
",
+ "enterpriseProtectedDomainNames": "Geben Sie die DNS-Namen an, aus denen Ihr Unternehmensnetzwerk gebildet wird. Diese werden zusammen mit den festgelegten IP-Bereichen verwendet, um die Grenzen Ihres Unternehmensnetzwerks zu definieren. Sie können mehrere Werte angeben, indem Sie die einzelnen Einträge durch \"|\" voneinander trennen.
Für diese Einstellung muss Windows Information Protection aktiviert sein.
Beispiel: corp.contoso.com|region.contoso.com
",
+ "enterpriseProxyServers": "Wenn Sie extern zugängliche Proxys in Ihrem Unternehmensnetzwerk verwenden, geben Sie diese hier an. Bei der Angabe einer Proxyserveradresse müssen Sie auch den Port angeben, über den Datenverkehr zugelassen und durch Windows Information Protection geschützt werden soll.
Hinweis: Diese Liste darf keine Server aus Ihrer Liste interner Unternehmensproxyserver umfassen. Sie können mehrere Werte angeben, indem Sie die einzelnen Einträge durch ein Semikolon voneinander trennen.
Beispiel: proxy.contoso.com:80;proxy2.contoso.com:80
",
+ "maxInactivityTime1": "Gibt den maximal zulässigen Zeitraum (in Minuten) nach dem Wechsel eines Geräts in den Leerlauf an, bis das Gerät durch die PIN oder ein Kennwort gesperrt wird. Benutzer können einen beliebigen Timeoutwert auswählen, der kleiner ist als der in der Einstellungen-App angegebene maximale Zeitraum. Beachten Sie, dass für Lumia 950 und 950XL unabhängig von dem durch diese Richtlinie festgelegten Wert ein maximaler Timeoutwert von 5 Minuten gilt.",
+ "maxInactivityTime2": "0 (Standard): Kein Timeout definiert. Der Standardwert \"0\" wird als \"Kein Timeout definiert\" interpretiert.",
+ "maxPasswordAttempts1": "Diese Richtlinie zeigt auf dem Mobilgerät und auf dem Desktop unterschiedliche Verhaltensweisen.",
+ "maxPasswordAttempts2": "Wenn der Benutzer auf einem Mobilgerät den durch diese Richtlinie festgelegten Wert erreicht, wird das Gerät zurückgesetzt.",
+ "maxPasswordAttempts3": "Wenn der Benutzer auf einem Desktop den durch diese Richtlinie festgelegten Wert erreicht, wird er nicht zurückgesetzt. Stattdessen wird der Desktop in den BitLocker-Wiederherstellungsmodus versetzt, in dem die Daten nicht zugänglich, aber wiederherstellbar sind. Wenn BitLocker nicht aktiviert ist, kann die Richtlinie nicht durchgesetzt werden.",
+ "maxPasswordAttempts4": "Vor dem Erreichen des Grenzwerts für fehlerhafte Versuche wird der Benutzer zum Sperrbildschirm geschickt und darauf hingewiesen, dass der Computer bei weiteren Fehlversuchen gesperrt wird. Wenn der Benutzer den Grenzwert erreicht, wird das Gerät automatisch neu gestartet und zeigt die BitLocker-Wiederherstellungsseite an. Auf dieser Seite wird der Benutzer aufgefordert, den BitLocker-Wiederherstellungsschlüssel einzugeben.",
+ "maxPasswordAttempts5": "0 (Standard): Das Gerät wird nach einer fehlerhaften PIN- oder Kennworteingabe niemals zurückgesetzt.",
+ "maxPasswordAttempts6": "Der sicherste Wert ist 0, wenn für alle Richtlinienwerte 0 festgelegt wurde; andernfalls ist der Mindestwert für die Richtlinie der sicherste Wert.",
+ "mdmDiscoveryUrl": "Geben Sie die URL für den MDM-Registrierungsendpunkt an, der von Benutzern verwendet werden soll, die sich bei MDM registrieren. Standardmäßig wird diese für Intune angegeben.",
+ "minimumPinLength1": "Der ganzzahlige Wert, der die Mindestanzahl von für die PIN erforderlichen Zeichen festlegt. Der Standardwert ist 4. Die niedrigste Zahl, die Sie für diese Richtlinieneinstellung konfigurieren können, ist 4. Die größte Zahl, die Sie konfigurieren können, muss geringer sein als die Zahl, die in der Richtlinieneinstellung für die maximale PIN-Länge konfiguriert wurde, in jedem Fall jedoch geringer als 127.",
+ "minimumPinLength2": "Wenn Sie diese Richtlinieneinstellung konfigurieren, muss die PIN-Länge mindestens dieser Zahl entsprechen. Wenn Sie diese Richtlinieneinstellung deaktivieren oder nicht konfigurieren, muss die PIN mindestens 4 Zeichen lang sein.",
+ "name": "Der Name dieser Netzwerkgrenze",
+ "neutralResources": "Wenn Sie Endpunkte für die Authentifizierungsumleitung in Ihrem Unternehmen verwenden, geben Sie diese hier an. Die hier angegebenen Standorte werden je nach Kontext der Verbindung vor der Umleitung entweder als private Standorte oder als Unternehmensstandorte eingestuft.
Sie können mehrere Werte angeben, indem Sie die einzelnen Einträge durch ein Komma voneinander trennen.
Beispiel: sts.contoso.com,sts.contoso2.com
",
+ "passportForWork1": "Der Wert, der Windows Hello for Business als Methode zum Anmelden bei Windows festlegt.",
+ "passportForWork2": "Der Standardwert ist TRUE. Wenn Sie diese Richtlinie auf FALSE festlegen, kann der Benutzer Windows Hello for Business nur auf in Azure Active Directory eingebundenen Mobiltelefonen bereitstellen, auf denen die Bereitstellung erforderlich ist.",
+ "pinExpiration": "Die größte Zahl, die Sie für diese Richtlinieneinstellung konfigurieren können, ist 730. Die niedrigste Zahl, die Sie für diese Richtlinieneinstellung konfigurieren können, ist 0. Wenn diese Richtlinie auf 0 festgelegt wird, läuft die PIN des Benutzers niemals ab.",
+ "pinHistory1": "Die größte Zahl, die Sie für diese Richtlinieneinstellung konfigurieren können, ist 50. Die niedrigste Zahl, die Sie für diese Richtlinieneinstellung konfigurieren können, ist 0. Wenn diese Richtlinie auf 0 festgelegt wird, ist die Speicherung vorheriger PINs nicht erforderlich.",
+ "pinHistory2": "Die aktuelle PIN des Benutzers ist in der Menge von PINs enthalten, die dem Benutzerkonto zugeordnet sind. Der PIN-Verlauf wird bei einer PIN-Zurücksetzung nicht beibehalten.",
+ "protectUnderLock": "Schützt App-Inhalte, während sich das Gerät im gesperrten Zustand befindet.",
+ "protectionModeBlock": "Blockieren: Verhindert, dass Unternehmensdaten geschützte Apps verlassen.
",
+ "protectionModeOff": "Aus: Der Benutzer kann Daten aus geschützten Apps verschieben. Es werden keine Aktionen protokolliert.
",
+ "protectionModeOverride": "Außerkraftsetzungen zulassen: Der Benutzer wird abgefragt, wenn er versucht, Daten aus einer geschützten in eine nicht geschützte App zu verschieben. Wenn der Benutzer die Abfrage außer Kraft setzt, wird die Aktion protokolliert.
",
+ "protectionModeSilent": "Im Hintergrund: Der Benutzer kann Daten aus geschützten Apps verschieben. Diese Aktionen werden protokolliert.
",
+ "required": "Erforderlich",
+ "revokeOnMdmHandoff": "Wurde in Windows 10, Version 1703, hinzugefügt. Diese Richtlinie steuert, ob die WIP-Schlüssel widerrufen werden, wenn auf einem Gerät ein Upgrade von MAM auf MDM durchgeführt wird. Ist diese Option deaktiviert, werden die Schlüssel nicht widerrufen, und der Benutzer kann nach dem Upgrade weiterhin auf geschützte Dateien zugreifen. Dies wird empfohlen, wenn der MDM-Dienst mit derselben WIP-EnterpriseID wie der MAM-Dienst konfiguriert ist.",
+ "revokeOnUnenroll": "Hiermit werden Verschlüsselungsschlüssel widerrufen, wenn ein Gerät die Registrierung bei dieser Richtlinie aufhebt.",
+ "rmsTemplateForEdp": "Die TemplateID-GUID zur Verwendung für die RMS-Verschlüsselung. Durch die Azure RMS-Vorlage kann der IT-Administrator konfigurieren, wer wie lange auf die RMS-geschützte Datei zugreifen kann.",
+ "showWipIcon": "Hiermit wird der Benutzer durch das Überlagern eines Symbols darauf hingewiesen, dass er gerade in einem Unternehmenskontext agiert.",
+ "useRmsForWip": "Gibt an, ob die Azure RMS-Verschlüsselung für WIP zulässig ist."
+ },
+ "requireAppPin": "Wählen Sie Ja aus, um die App-PIN zu deaktivieren, wenn eine Gerätesperre auf einem registrierten Gerät erkannt wurde.
Hinweis: Intune kann unter iOS/iPadOS keine Geräteregistrierung mit einer Drittanbieter-EMM-Lösung erkennen.
"
+ },
+ "Autopilot": {
+ "AssignResourceAccount": {
+ "createNewCommandMenu": "Neu erstellen",
+ "createNewResourceAccountInfo": "\r\nErstellen Sie während der Registrierung ein neues Ressourcenkonto. Das Ressourcenkonto wird sofort der Ressourcenkontotabelle hinzugefügt, aber erst aktiviert, wenn das Gerät registriert und das Surface Hub-Abonnement überprüft wurde. Weitere Informationen zu Ressourcenkonten
\r\n ",
+ "createNewResourceTitle": "Neues Ressourcenkonto erstellen",
+ "deviceNameInvalid": "Der Gerätename weist ein ungültiges Format auf.",
+ "deviceNameRequired": "Der Gerätename ist erforderlich.",
+ "editResourceAccountLabel": "Bearbeiten",
+ "selectExistingCommandMenu": "Vorhandenes Element auswählen"
+ },
+ "Device": {
+ "ComputerName": {
+ "validFormat": "Namen dürfen höchstens 15 Zeichen umfassen und nur Buchstaben (a–Z, A–Z), Ziffern (0–9) und Bindestriche enthalten. Namen dürfen nicht ausschließlich aus Ziffern bestehen und keine Leerzeichen enthalten."
+ },
+ "Header": {
+ "addressableUserName": "Benutzeranzeigename",
+ "azureADDevice": "Zugeordnetes Azure AD-Gerät",
+ "batch": "Gruppentag",
+ "dateAssigned": "Zuweisungsdatum",
+ "deviceAccountFriendlyName": "Anzeigename des Gerätekontos",
+ "deviceAccountPwd": "Gerätekontokennwort",
+ "deviceAccountUpn": "Gerätekonto",
+ "deviceDisplayName": "Gerätename",
+ "deviceName": "Gerätename",
+ "deviceUseType": "Art der Gerätenutzung",
+ "enrollmentState": "Registrierungsstatus",
+ "intuneDevice": "Zugeordnetes Intune-Gerät",
+ "lastContacted": "Zuletzt kontaktiert",
+ "make": "Hersteller",
+ "model": "Modell",
+ "profile": "Zugewiesenes Profil",
+ "profileStatus": "Profilstatus",
+ "purchaseOrderId": "Bestellung",
+ "resourceAccount": "Ressourcenkonto",
+ "serialNumber": "Seriennummer",
+ "userPrincipalName": "Benutzer"
+ },
+ "SurfaceHub": {
+ "friendlyNameRequired": "Ein Anzeigename ist erforderlich.",
+ "pwdRequired": "Es ist ein Kennwort erforderlich.",
+ "upnRequired": "Ein Gerätekonto ist erforderlich.",
+ "upnValidFormat": "Werte können Buchstaben (a–z, A–Z), Zahlen (0–9) und Bindestriche enthalten. Werte dürfen kein Leerzeichen enthalten."
+ }
+ },
+ "DeviceUseType": {
+ "meetingAndPresentation": "Besprechungen und Präsentationen",
+ "teamCollaboration": "Teamzusammenarbeit"
+ },
+ "Devices": {
+ "featureDescription": "Mit Windows AutoPilot können Sie die Willkommensseite für Ihre Benutzer anpassen.",
+ "importErrorStatus": "Einige Geräte wurden nicht importiert. Klicken Sie hier, um weitere Informationen zu erhalten.",
+ "importPendingStatus": "Der Import wird ausgeführt. Verstrichene Zeit: {0} Min. Dieser Vorgang kann bis zu {1} Min. dauern."
+ },
+ "DirectoryService": {
+ "activeDirectoryAD": "In Azure AD Hybrid eingebunden",
+ "activeDirectoryADLabel": "Azure AD Hybrid mit Autopilot",
+ "azureAD": "In Azure AD eingebunden",
+ "unknownType": "Unbekannter Typ"
+ },
+ "Filter": {
+ "enrollmentState": "Zustand",
+ "profile": "Profilstatus"
+ },
+ "OOBE": {
+ "AddressableUserName": {
+ "validateEmpty": "Der Anzeigename darf nicht leer sein."
+ },
+ "ApplyComputerNameTemplate": {
+ "infoBalloon": "Erstellen Sie eine Benennungsvorlage, um Ihren Geräten während der Registrierung Namen hinzuzufügen.",
+ "label": "Vorlage für Gerätenamen anwenden"
+ },
+ "ApplyComputerNameTemplateDisabled": {
+ "label": "Für Autopilot Deployment-Profile mit Azure AD Hybrid-Einbindung werden Geräte anhand der Einstellungen benannt, die in den Einstellungen in der Domänenbeitrittskonfiguration angegeben sind."
+ },
+ "ComputerNameTemplate": {
+ "emptyValue": "MeineFirma-%RAND:4%",
+ "label": "Namen eingeben",
+ "noDisallowedChars": "Der Name darf nur alphanumerische Zeichen, Bindestriche, %SERIAL% oder %RAND:x% enthalten.",
+ "serialLength": "Bei %SERIAL% dürfen höchstens 7 Zeichen verwendet werden.",
+ "validateLessThan15Chars": "Der Name darf höchstens 15 Zeichen umfassen.",
+ "validateNoSpaces": "Computernamen dürfen keine Leerzeichen enthalten.",
+ "validateNotAllNumbers": "Der Name muss auch Buchstaben und/oder Bindestriche enthalten.",
+ "validateNotEmpty": "Name darf nicht leer sein",
+ "validateOnlyOneMacro": "Der Name darf nur entweder %SERIAL% oder %RAND:x% enthalten."
+ },
+ "ConfigureComputerNameTemplate": {
+ "description": "Erstellen Sie einen eindeutigen Namen für Ihre Geräte. Die Namen dürfen höchstens 15 Zeichen umfassen und nur Buchstaben (a–Z, A–Z), Ziffern (0–9) und Bindestriche enthalten. Namen dürfen nicht ausschließlich Ziffern enthalten. Verwenden Sie das Makro \"%SERIAL%\", um eine hardwarespezifische Seriennummer hinzuzufügen. Alternativ dazu können Sie über das Makro \"%RAND:x%\" eine zufällige Zeichenfolge von Ziffern hinzufügen, wobei x der hinzuzufügenden Anzahl von Ziffern entspricht."
+ },
+ "EnableWhiteGlove": {
+ "infoBalloon": "Ermöglichen Sie durch fünfmaliges Drücken der Windows-Taste die Ausführung der Windows-Willkommensseite ohne Benutzerauthentifizierung, um das Gerät zu registrieren und alle Systemkontext-Apps und -einstellungen bereitzustellen. Benutzerkontext-Apps und -einstellungen werden übermittelt, wenn der Benutzer sich anmeldet.",
+ "label": "Vorab bereitgestellte Bereitstellung zulassen"
+ },
+ "HybridAzureADSkipConnectivityCheck": {
+ "infoBalloon": "Der Autopilot-Azure AD Hybrid Join-Flow wird fortgesetzt, auch wenn beim ersten Start keine Verbindung mit dem Domänencontroller hergestellt werden kann.",
+ "label": "AD-Konnektivitätsprüfung überspringen (Vorschau)"
+ },
+ "accountType": "Art des Benutzerkontos",
+ "accountTypeInfo": "Geben Sie an, ob es sich bei den Benutzern um Administratoren oder Standardbenutzer für das Gerät handelt. Beachten Sie, dass diese Einstellung nicht für die Konten von globalen Administratoren oder Unternehmensadministratoren gilt. Diese Konten können keine Standardbenutzer sein, da sie Zugriff auf alle Verwaltungsfunktionen von Azure AD haben.",
+ "configOOBEInfo": "\r\nKonfigurieren Sie die Willkommensseite für Ihre Autopilot-Geräte.\r\n
",
+ "configureDevice": "Bereitstellungsmodus",
+ "configureDeviceHintForSurfaceHub2": "Autopilot unterstützt für Surface Hub 2 nur den Self-Deployment-Modus. Dieser Modus ordnet den Benutzer nicht dem registrierten Gerät zu, deshalb sind keine Benutzeranmeldeinformationen erforderlich.",
+ "configureDeviceHintForWindowsPC": "\r\n Der Bereitstellungsmodus steuert, ob Benutzer Anmeldeinformationen angeben müssen, um das Gerät bereitzustellen.\r\n
\r\n \r\n - \r\n Benutzergesteuert: Geräte sind dem Benutzer zugeordnet, der das Gerät registriert, und zum Bereitstellen des Geräts sind Benutzeranmeldeinformationen erforderlich\r\n
\r\n - \r\n Selbstbereitstellung (Vorschau): Geräte sind nicht dem Benutzer zugeordnet, der das Gerät registriert, und zum Bereitstellen des Geräts sind keine Benutzeranmeldeinformationen erforderlich.\r\n
\r\n
",
+ "createSurfaceHub2Info": "Konfigurieren Sie die Autopilot-Registrierungseinstellungen für Ihre Surface Hub 2-Geräte. Autopilot ermöglicht standardmäßig das Überspringen der Benutzerauthentifizierung auf der Windows-Willkommensseite. Erfahren Sie mehr über Windows Autopilot für Surface Hub 2.",
+ "createWindowsPCInfo": "\r\n\r\nFolgende Optionen werden für Autopilot-Geräte im Self-Deployment-Modus automatisch aktiviert:\r\n
\r\n\r\n - \r\n Auswahl zur Nutzung am Arbeitsplatz oder zu Hause überspringen\r\n
\r\n - \r\n OEM-Registrierung und OneDrive-Konfiguration überspringen\r\n
\r\n - \r\n Benutzerauthentifizierung auf Windows-Willkommensseite überspringen\r\n
\r\n
",
+ "endUserDevice": "Benutzergesteuert",
+ "hideEscapeLink": "Optionen zur Kontoänderung ausblenden",
+ "hideEscapeLinkInfo": "Optionen zum Ändern des Kontos und zum Starten mit einem anderen Konto werden jeweils während der anfänglichen Geräteeinrichtung auf der Anmeldeseite des Unternehmens und auf der Seite mit Domänenfehlern angezeigt. Um diese Optionen auszublenden, müssen Sie das Unternehmensbranding in Azure Active Directory konfigurieren (erfordert Windows 10, 1809 oder höher oder Windows 11).",
+ "info": "Die AutoPilot-Profileinstellungen definieren die Willkommensseite, die den Benutzern beim ersten Start von Windows angezeigt wird. ",
+ "language": "Sprache (Region)",
+ "languageInfo": "Geben Sie die zu verwendende Sprache und Region an.",
+ "licenseAgreement": "Microsoft Software-Lizenzbedingungen",
+ "licenseAgreementInfo": "Hiermit wird angegeben, ob den Benutzern Lizenzbedingungen angezeigt werden.",
+ "plugAndForgetDevice": "Selbstbereitstellung (Vorschau)",
+ "plugAndForgetGA": "Automatische Bereitstellung",
+ "privacySettingWarning": "Der Standardwert für die Sammlung von Diagnosedaten wurde für Geräte geändert, auf denen Windows 10, Version 1903 und höher, oder Windows 11 ausgeführt wird. ",
+ "privacySettings": "Datenschutzeinstellungen",
+ "privacySettingsInfo": "Hiermit wird angegeben, ob den Benutzern Datenschutzeinstellungen angezeigt werden.",
+ "showCortanaConfigurationPage": "Cortana-Konfiguration",
+ "showCortanaConfigurationPageInfo": "Bei Auswahl von \"Anzeigen\" wird die Einführung zur Cortana-Konfiguration beim Start aktiviert.",
+ "skipEULAWarning": "Wichtige Informationen zum Ausblenden von Lizenzbedingungen",
+ "skipKeyboardSelection": "Tastatur automatisch konfigurieren",
+ "skipKeyboardSelectionInfo": "Bei TRUE wird die Tastaturauswahlseite übersprungen, wenn die Sprache festgelegt ist.",
+ "subtitle": "AutoPilot-Profile",
+ "title": "Windows-Willkommensseite",
+ "useOSDefaultLanguage": "Betriebssystemstandard",
+ "userSelect": "Benutzerauswahl"
+ },
+ "Sync": {
+ "lastRequestedLabel": "Letzte Synchronisierungsanforderung",
+ "lastSuccessfulLabel": "Letzte erfolgreiche Synchronisierung",
+ "syncInProgress": "Es wird zurzeit eine Synchronisierung durchgeführt. Versuchen Sie es später noch mal.",
+ "syncInitiated": "Die Synchronisierung der AutoPilot-Einstellungen wurde initiiert.",
+ "syncSettingsTitle": "AutoPilot-Einstellungen synchronisieren"
+ },
+ "Title": {
+ "devices": "Windows AutoPilot-Geräte"
+ },
+ "Tooltips": {
+ "addressableUserName": "Name, der während der Geräteeinrichtung in der Begrüßung angezeigt wird.",
+ "azureADDevice": "Wechseln Sie zu den Gerätedetails für das zugeordnete Gerät. N/V bedeutet, dass kein Gerät zugeordnet ist.",
+ "batch": "Ein Zeichenfolgenattribut, das zum Identifizieren einer Gruppe von Geräten verwendet werden kann. Das Intune-Feld für das Gruppentag wird dem OrderID-Attribut für Azure AD-Geräte zugeordnet.",
+ "dateAssigned": "Zeitstempel, der angibt, wann das Profil dem Gerät zugewiesen wurde.",
+ "deviceAccountFriendlyName": "Anzeigename des Gerätekontos für Surface Hub-Geräte",
+ "deviceAccountPwd": "Gerätekontokennwort für Surface Hub-Geräte",
+ "deviceAccountUpn": "E-Mail-Adresse des Gerätekontos für Surface Hub-Geräte",
+ "deviceDisplayName": "Konfigurieren Sie einen eindeutigen Namen für ein Gerät. Dieser Name wird für in Azure AD Hybrid eingebundene Bereitstellungen ignoriert. Der Gerätename stammt weiterhin aus dem Domänenbeitrittsprofil für in Azure AD eingebundene Hybridgeräte.",
+ "deviceName": "Der angezeigte Name, wenn jemand versucht hat, das Gerät zu ermitteln und eine Verbindung herzustellen.",
+ "deviceUseType": " Das Gerät wird basierend auf Ihrer Auswahl eingerichtet. Sie können die Einstellungen später jederzeit ändern.\r\n \r\n - Für Besprechungen und Präsentationen ist Windows Hello nicht aktiviert, und die Daten werden nach jeder Sitzung entfernt.\r\n
\r\n - Für die Teamzusammenarbeit ist Windows Hello aktiviert, und Profile werden für die schnelle Anmeldung gespeichert.
\r\n
",
+ "enrollmentState": "Gibt an, ob das Gerät registriert wurde.",
+ "intuneDevice": "Wechseln Sie zu den Gerätedetails für das zugeordnete Gerät. N/V bedeutet, dass kein Gerät zugeordnet ist.",
+ "lastContacted": "Zeitstempel, der angibt, wann das Gerät zuletzt kontaktiert wurde.",
+ "make": "Hersteller des ausgewählten Geräts.",
+ "model": "Modell des ausgewählten Geräts",
+ "profile": "Name des Profils, das dem Gerät zugewiesen ist.",
+ "profileStatus": "Gibt an, ob dem Gerät ein Profil zugewiesen ist.",
+ "purchaseOrderId": "Bestell-ID",
+ "resourceAccount": "Die Identität des Geräts oder der Benutzerprinzipalname (UPN).",
+ "serialNumber": "Seriennummer des ausgewählten Geräts.",
+ "userPrincipalName": "Benutzer, der während der Geräteeinrichtung vorab für die Authentifizierung ausgefüllt wird."
+ },
+ "allDevices": "Nicht alle Geräte",
+ "allDevicesAlreadyAssignedError": "Es wurde allen Geräten bereits ein Autopilot-Profil zugewiesen.",
+ "assignFailedDescription": "Fehler beim Aktualisieren von Zuweisungen für {0}.",
+ "assignFailedTitle": "Fehler beim Aktualisieren von AutoPilot-Profilzuweisungen.",
+ "assignSuccessDescription": "Die Zuweisungen für {0} wurden erfolgreich aktualisiert.",
+ "assignSuccessTitle": "Die AutoPilot-Profilzuweisungen wurden erfolgreich aktualisiert.",
+ "assignSufaceHub2ProfileNextStep": "Nächste Schritte für diese Bereitstellung",
+ "assignSurfaceHub2ProfileToDeviceGroup": "1. Weisen Sie dieses Profil mindestens einer Gerätegruppe zu.",
+ "assignSurfaceHub2ProfileToResourceAccount": "2. Weisen Sie jedem Surface Hub-Gerät, auf dem Sie dieses Profil bereitstellen, ein Ressourcenkonto zu.",
+ "assignedDevicesCount": "Zugewiesene Geräte",
+ "assignedDevicesResourceAccountDescription": "Um dieses Profil auf einem Gerät bereitzustellen, müssen Sie dem Gerät ein Ressourcenkonto zuweisen. Wählen Sie jeweils ein Gerät pro Arbeitsschritt aus, um ein vorhandenes Ressourcenkonto zuzuweisen oder ein neues Ressourcenkonto zu erstellen. Weitere Informationen zu Ressourcenkonten
",
+ "assignedDevicesResourceAccountStatusBarMessage": "Diese Tabelle listet nur die Surface Hub 2-Geräte auf, denen dieses Profil zugewiesen wurde.",
+ "assigningDescription": "Die Zuweisungen für {0} werden aktualisiert.",
+ "assigningTitle": "Die AutoPilot-Profilzuweisungen werden aktualisiert.",
+ "autoremediationContext": "We've detected a hardware change on this device. We're trying to automatically register the new hardware. You don't need to do anything now; the status will be updated at the next check in with the result. Learn more about resetting the profile.",
+ "autoremediationTitle": "Device {0} has a fix pending",
+ "cannotDeleteMessage": "Dieses Profil ist Gruppen zugewiesen. Sie müssen die Zuweisung zu allen Gruppen aufheben, bevor Sie das Profil löschen können.",
+ "cannotDeleteTitle": "\"{0}\" kann nicht gelöscht werden",
+ "createdDateTime": "Erstellt",
+ "deleteMessage": "Wenn Sie dieses AutoPilot-Profil löschen, wird für alle diesem Profil zugewiesenen Geräte der Status \"Nicht zugewiesen\" angezeigt.",
+ "deleteMessageWithPolicySet": "\"{0}\" ist in mindestens einem Richtliniensatz enthalten. Wenn Sie \"{0}\" löschen, können Sie das Profil nicht mehr über diese Richtliniensätze zuweisen.",
+ "deleteTitle": "Möchten Sie dieses Profil löschen?",
+ "description": "Beschreibung",
+ "deviceType": "Gerätetyp",
+ "deviceUse": "Geräteverwendung",
+ "directoryServiceHintForSurfaceHub2": " \r\n Autopilot unterstützt für Surface Hub 2-Geräte nur \"In Azure AD eingebunden\". Geben Sie an, wie Geräte in Ihrer Organisation in Active Directory (AD) eingebunden werden.\r\n
\r\n \r\n - \r\n In Azure AD eingebunden: Nur Cloud ohne lokale Windows Server Active Directory-Instanz.\r\n
\r\n
\r\n ",
+ "directoryServiceHintForWindowsPC": "\r\n \r\n Geben Sie an, wie Geräte in Ihrer Organisation in Active Directory (AD) eingebunden werden:\r\n
\r\n \r\n - \r\n In Azure AD eingebunden: Nur Cloud, ohne lokale Windows Server Active Directory-Umgebung\r\n
\r\n
\r\n ",
+ "getAssignedDevicesCountError": "Fehler beim Abrufen der Anzahl zugewiesener Geräte.",
+ "getAssignmentsError": "Fehler beim Abrufen der AutoPilot-Profilzuweisungen.",
+ "harvestDeviceId": "Alle Zielgeräte in Autopilot-Geräte konvertieren",
+ "harvestDeviceIdDescription": "Standardmäßig kann dieses Profil nur auf Autopilot-Geräte angewendet werden, die vom Autopilot-Dienst synchronisiert werden.",
+ "harvestDeviceIdInfo": "\r\n Wählen Sie \"Ja\" aus, um alle Zielgeräte für Autopilot zu registrieren (sofern noch nicht geschehen). Wenn registrierte Geräte das nächste Mal durch die Willkommensseite geführt werden, wird das zugewiesene Autopilot-Szenario durchlaufen.\r\n
\r\n Beachten Sie, dass bestimmte Autopilot-Szenarien spezifische Windows-Mindestbuilds erfordern. Stellen Sie sicher, dass Ihr Gerät über den erforderlichen Mindestbuild verfügt, um das Szenario zu durchlaufen.\r\n
\r\n Durch das Entfernen dieses Profils werden die betroffenen Geräte nicht aus Autopilot entfernt. Um ein Gerät aus Autopilot zu entfernen, verwenden Sie die Ansicht für Windows Autopilot-Geräte.\r\n ",
+ "harvestDeviceIdWarning": "Nach der Konvertierung können Autopilot-Geräte nur wiederhergestellt werden, indem Sie sie aus der Liste der Autopilot-Geräte löschen.",
+ "holoLensCommandMenu": "HoloLens",
+ "info": "Mit den Windows AutoPilot Deployment-Profilen können Sie die Willkommensseite für Ihre Geräte anpassen.",
+ "invalidProfileNameMessage": "Das Zeichen \"{0}\" ist nicht zulässig.",
+ "joinTypeLabel": "Azure AD beitreten als",
+ "lastModifiedDateTime": "Zuletzt geändert:",
+ "manualRemediationContext": "We've detected a hardware change on this device. It won't automatically receive an Autopilot profile when it's reset unless you register the device again. Learn more about resetting the profile.",
+ "manualRemediationTitle": "Device {0} needs your attention",
+ "name": "Name",
+ "noAutopilotProfile": "Keine AutoPilot-Profile.",
+ "notEnoughPermissionAssignedError": "Ihre Berechtigungen reichen nicht aus, um dieses Profil mindestens einer der ausgewählten Gruppen zuzuweisen. Wenden Sie sich an Ihren Administrator.",
+ "profile": "Profil",
+ "resourceAccountStatusBarMessage": "Ein Ressourcenkonto ist für jedes Surface Hub 2-Gerät erforderlich, für das dieses Profil bereitgestellt wird. Klicken Sie hier, um mehr zu erfahren.",
+ "selectServices": "Verzeichnisdienst auswählen, dem Geräte beitreten sollen",
+ "surfaceHub2CommandMenu": "Surface Hub 2",
+ "surfaceHub2SCommandMenu": "Surface Hub 2S",
+ "userAffinityLabel": "Bereitstellungsmodus",
+ "windowsPCCommandMenu": "Windows-PC",
+ "directoryServiceLabel": "Azure AD beitreten als"
},
- "CategoryDescription": {
- "androidGeneralApplicationRestrictions": "Mit dieser Einstellung bleiben Sie darüber informiert, welche Benutzer Apps installieren, die nicht für die Verwendung in Ihrem Unternehmen genehmigt sind. Wählen Sie die Art der Liste für eingeschränkte Apps aus:
\r\n Verbotene Apps: Eine Liste der Apps, bei denen Sie informiert werden möchten, wenn Benutzer sie installieren.
\r\n Genehmigte Apps: Eine Liste der Apps, die zur Verwendung in Ihrem Unternehmen genehmigt sind. Wenn Benutzer eine App installieren, die nicht in dieser Liste aufgeführt ist, werden Sie informiert.
\r\n ",
- "androidZebraMxZebraMx": "Hiermit werden Zebra-Geräte durch das Hochladen eines MX-Profils im XML-Format konfiguriert.",
- "iosDeviceFeaturesAirprint": "Mit diesen Einstellungen konfigurieren Sie iOS-Geräte für das automatische Herstellen einer Verbindung mit AirPrint-kompatiblen Druckern in Ihrem Netzwerk. Sie benötigen die IP-Adresse und den Ressourcenpfad Ihrer Drucker.",
- "iosDeviceFeaturesExtensibleSingleSignOn": "Konfigurieren Sie eine App-Erweiterung, die einmaliges Anmelden (Single Sign-On, SSO) für Geräte mit iOS 13.0 oder höher aktiviert.",
- "iosDeviceFeaturesHomeScreenLayout": "Konfigurieren Sie das Layout für den Dock- und den Startbildschirm auf iOS-Geräten. Für bestimmte Geräte gelten möglicherweise Limits für die Anzahl von Elementen, die angezeigt werden können.",
- "iosDeviceFeaturesIOSWallpaper": "Hiermit wird ein Bild zur Anzeige auf dem Startbildschirm und/oder dem Sperrbildschirm von iOS-Geräten angegeben.\r\n Um unterschiedliche Bilder für Start- und Sperrbildschirm zu verwenden, erstellen Sie ein Profil mit dem Bild für den Sperrbildschirm und ein Profil mit dem Bild für den Startbildschirm.\r\n Weisen Sie Ihren Benutzern anschließend beide Profile zu.\r\n
\r\n \r\n - Max. Dateigröße: 750 KB
\r\n - Dateityp: PNG, JPG oder JPEG
\r\n
\r\n ",
- "iosDeviceFeaturesNotifications": "Geben Sie Benachrichtigungseinstellungen für Apps an. Unterstützt iOS 9.3 und höher.",
- "iosDeviceFeaturesSharedDevice": "Hiermit wird optionaler Text zur Anzeige auf dem Sperrbildschirm angegeben. Diese Funktion wird unter iOS 9.3 und höher unterstützt. Weitere Informationen",
- "iosGeneralApplicationRestrictions": "Mit dieser Einstellung bleiben Sie darüber informiert, welche Benutzer Apps installieren, die nicht für die Verwendung in Ihrem Unternehmen genehmigt sind. Wählen Sie die Art der Liste für eingeschränkte Apps aus:
\r\n Verbotene Apps: Eine Liste der Apps, bei denen Sie informiert werden möchten, wenn Benutzer sie installieren.
\r\n Genehmigte Apps: Eine Liste der Apps, die zur Verwendung in Ihrem Unternehmen genehmigt sind. Wenn Benutzer eine App installieren, die nicht in dieser Liste aufgeführt ist, werden Sie informiert.
\r\n ",
- "iosGeneralApplicationVisibility": "Verwenden Sie die Liste \"Apps anzeigen\" um festzulegen, welche iOS-Apps der Benutzer anzeigen oder starten kann. Verwenden Sie die Liste \"Ausgeblendete Apps\", um festzulegen, welche iOS-Apps der Benutzer nicht anzeigen oder starten kann.",
- "iosGeneralAutonomousSingleAppMode": "Apps, die Sie dieser Liste hinzufügen und einem Gerät zuweisen, können das Gerät so sperren, dass nur diese App nach ihrem Start ausgeführt werden kann, oder sie können das Gerät während der Ausführung einer bestimmten Aktion sperren (beispielsweise bei einer Prüfung). Sobald die Aktion abgeschlossen ist oder Sie die Einschränkung entfernen, kehrt das Gerät zu seinem Normalzustand zurück.",
- "iosGeneralKiosk": "Der Kioskmodus sperrt verschiedene Einstellungen in einem Gerät oder gibt eine einzige App an, die auf einem Gerät ausgeführt werden kann. Dies kann in Umgebungen wie beispielsweise einem Ladengeschäft hilfreich sein, in dem auf einem Gerät nur eine einzige Demo-App ausgeführt werden soll.",
- "macDeviceFeaturesAirprint": "Verwenden Sie diese Einstellungen, um macOS-Geräte für die automatische Verbindungsherstellung mit AirPrint-kompatiblen Druckern im Netzwerk zu konfigurieren. Sie benötigen die IP-Adresse und den Ressourcenpfad Ihrer Drucker.",
- "macDeviceFeaturesAssociatedDomains": "Konfigurieren Sie zugeordnete Domänen, um Daten und Anmeldeinformationen zwischen den Apps und Websites Ihrer Organisation freizugeben. Dieses Profil kann auf Geräte mit macOS 10.15 oder höher angewendet werden.",
- "macDeviceFeaturesExtensibleSingleSignOn": "Konfigurieren Sie eine App-Erweiterung, die einmaliges Anmelden (Single Sign-On, SSO) für Geräte mit macOS 10.15 oder höher aktiviert.",
- "macDeviceFeaturesLoginItems": "Wählen Sie aus, welche Apps, Dateien und Ordner geöffnet werden sollen, wenn sich Benutzer bei ihren Geräten anmelden. Wenn Sie nicht möchten, dass Benutzer das Verhalten der Apps beim Öffnen ändern, können Sie die App aus der Benutzerkonfiguration ausblenden.",
- "macDeviceFeaturesLoginWindow": "Hiermit konfigurieren Sie die Darstellung des macOS-Anmeldebildschirms und die Funktionen, die den Benutzern vor und nach der Anmeldung zur Verfügung stehen.",
- "macExtensionsKernelExtensions": "Verwenden Sie diese Einstellungen zum Konfigurieren der Kernelerweiterungsrichtlinie auf macOS-Geräten unter 10.13.2 oder höher.",
- "macGeneralDomains": "Vom Benutzer gesendete oder empfangene E-Mails, die nicht den hier angegebenen Domänen entsprechen, werden als nicht vertrauenswürdig markiert.",
- "windows10EndpointProtectionApplicationGuard": "Bei der Verwendung von Microsoft Edge schützt Microsoft Defender Application Guard Ihre Umgebung vor Websites, die von Ihrer Organisation nicht als vertrauenswürdig definiert wurden. Wenn Benutzer Websites besuchen, die nicht in Ihrer isolierten Netzwerkgrenze aufgeführt sind, werden die Websites in einer virtuellen Browsersitzung in Hyper-V geöffnet. Vertrauenswürdige Sites werden durch eine Netzwerkgrenze definiert, die in der Gerätekonfiguration konfiguriert werden kann. Beachten Sie, dass dieses Feature nur für Geräte mit 64-Bit-Windows 10 oder höher verfügbar ist.",
- "windows10EndpointProtectionCredentialGuard": "Durch das Aktivieren von Credential Guard werden folgende erforderliche Einstellungen aktiviert:\r\n
\r\n \r\n - Virtualisierungsbasierte Sicherheit aktivieren: Aktiviert die virtualisierungsbasierte Sicherheit (VBS) beim nächsten Neustart. Die virtualisierungsbasierte Sicherheit verwendet Windows Hypervisor, um Unterstützung für Sicherheitsdienste bereitzustellen.
\r\n
\r\n - Sicherer Start mit direktem Speicherzugriff: Aktiviert VBS mit sicherem Start und direktem Speicherzugriff (DMA).
\r\n
\r\n ",
- "windows10EndpointProtectionDeviceGuard": "Wählen Sie zusätzliche Apps, die durch die Microsoft Defender-Anwendungssteuerung entweder überwacht werden müssen oder als vertrauenswürdig eingestuft und ausgeführt werden können. Windows-Komponenten und alle Apps aus dem Windows Store werden automatisch als zur Ausführung vertrauenswürdig eingestuft.
\r\n Anwendungen werden nicht blockiert, wenn sie im Modus \"Nur überwachen\" ausgeführt werden. Im Modus \"Nur überwachen\" werden alle Ereignisse in lokalen Clientprotokollen erfasst.\r\n ",
- "windows10GeneralPrivacyPerApp": "Fügen Sie Apps hinzu, die ein anderes Datenschutzverhalten aufweisen sollen als das von Ihnen unter \"Standarddatenschutz\" definierte.",
- "windows10NetworkBoundaryNetworkBoundary": "Die Netzwerkgrenze ist die Liste der Unternehmensressourcen, z. B. eine in der Cloud gehostete Domäne und IP-Adressbereiche für Computer, die sich im Unternehmensnetzwerk befinden. Definieren Sie Netzwerkgrenzen, um Richtlinien zum Schutz von Daten anzuwenden, die an diesen Standorten vorliegen.",
- "windowsHealthMonitoring": "Hiermit wird die Richtlinie für die Windows-Integritätsüberwachung konfiguriert.",
- "windowsPhoneGeneralApplicationRestrictions": "Windows Phone kann Benutzer daran hindern, die in der Liste unzulässiger Apps enthaltenen Apps bzw. Apps, die nicht in der Liste genehmigter Apps aufgeführt sind, zu installieren oder zu starten. Alle verwalteten Apps müssen der Liste genehmigter Apps hinzugefügt werden."
- },
"MinimumOperatingSystem": {
"Android": {
"v10": "Android 10.0",
@@ -2435,6 +1154,304 @@
"excludedGroups": "Ausgeschlossene Gruppen",
"licenseType": "Lizenztyp"
},
+ "TAP": {
+ "AccessRequirements": {
+ "infoText": "Konfigurieren Sie die PIN- und Anmeldeinformationsanforderungen, die Benutzer erfüllen müssen, um in einem Arbeitskontext auf Apps zuzugreifen."
+ },
+ "DataProtection": {
+ "infoText": "Diese Gruppe enthält die DLP-Steuerelemente (Data Loss Prevention, Verhinderung von Datenverlust), z. B. Einschränkungen für die Befehle \"Ausschneiden\", \"Kopieren\", \"Einfügen\" und \"Speichern unter\". Diese Einstellungen bestimmen, wie Benutzer mit Daten in den Apps interagieren."
+ },
+ "DeviceTypes": {
+ "selectOne": "Wählen Sie mindestens einen Gerätetyp aus."
+ },
+ "TargetedApps": {
+ "TargetToAll": {
+ "label": "Für Apps auf allen Gerätetypen festlegen"
+ },
+ "infoText": "Wählen Sie aus, wie diese Richtlinie auf Apps auf unterschiedlichen Geräten angewendet werden soll. Fügen Sie dann mindestens eine App hinzu.",
+ "selectOne": "Wählen Sie mindestens eine App aus, um eine Richtlinie zu erstellen."
+ }
+ },
+ "AssignmentAction": {
+ "exclude": "Ausgeschlossen",
+ "include": "Enthalten",
+ "includeAllDevicesVirtualGroup": "Enthalten",
+ "includeAllUsersVirtualGroup": "Enthalten"
+ },
+ "AppType": {
+ "androidEnterpriseSystemApp": "Android Enterprise-System-App",
+ "androidForWorkApp": "Verwaltete Google Play Store-App",
+ "androidLobApp": "Branchenspezifische Android-App",
+ "androidStoreApp": "Android Store-App",
+ "builtInAndroid": "Integrierte Android-App",
+ "builtInApp": "Integrierte App",
+ "builtInIos": "Integrierte iOS-App",
+ "default": "",
+ "iosLobApp": "Branchenspezifische iOS-App",
+ "iosStoreApp": "iOS Store-App",
+ "iosVppApp": "iOS Volume Purchase Program-App",
+ "lineOfBusinessApp": "Branchenspezifische App",
+ "macOSDmgApp": "macOS-App (DMG)",
+ "macOSEdgeApp": "Microsoft Edge (macOS)",
+ "macOSLobApp": "Branchenspezifische macOS-App",
+ "macOSMdatpApp": "Microsoft Defender ATP (macOS)",
+ "macOSOfficeSuiteApp": "Microsoft 365-Apps (macOS)",
+ "macOsVppApp": "macOS-Volume Purchase Program-App",
+ "managedAndroidLobApp": "Verwaltete branchenspezifische Android-App",
+ "managedAndroidStoreApp": "Verwaltete Android Store-App",
+ "managedGooglePlayApp": "Verwaltete Google Play Store-App",
+ "managedGooglePlayPrivateApp": "Private verwaltete Google Play-App",
+ "managedGooglePlayWebApp": "Weblink für verwaltetes Google Play",
+ "managedIosLobApp": "Verwaltete branchenspezifische iOS-App",
+ "managedIosStoreApp": "Verwaltete iOS Store-App",
+ "microsoftStoreForBusinessApp": "Microsoft Store für Unternehmen-App",
+ "microsoftStoreForBusinessReleaseManagedApp": "Microsoft Store für Unternehmen",
+ "officeSuiteApp": "Microsoft 365 Apps (Windows 10 und höher)",
+ "webApp": "Weblink",
+ "windowsAppXLobApp": "Branchenspezifische Windows-APPX-App",
+ "windowsClassicApp": "Windows-App (Win32)",
+ "windowsEdgeApp": "Microsoft Edge (Windows 10 und höher)",
+ "windowsMobileMsiLobApp": "Branchenspezifische Windows MSI-App",
+ "windowsPhone81AppXBundleLobApp": "Branchenspezifische Windows Phone 8.1-APPX-App",
+ "windowsPhone81AppXLobApp": "Branchenspezifische Windows Phone 8.1-APPX-App",
+ "windowsPhone81StoreApp": "Windows Phone 8.1 Store-App",
+ "windowsPhoneXapLobApp": "Branchenspezifische Windows Phone-XAP-App",
+ "windowsStoreApp": "Microsoft Store-App",
+ "windowsUniversalAppXLobApp": "Branchenspezifische Windows Universal-APPX-App",
+ "windowsUniversalLobApp": "Branchenspezifische Windows Universal-App"
+ },
+ "TAPSettings": {
+ "AllowedDataIngestionLocations": {
+ "label": "Benutzern das Öffnen von Daten über ausgewählte Dienste erlauben",
+ "tooltip": "Wählen Sie die Anwendungsspeicherdienste aus, über die Benutzer Daten öffnen können. Alle anderen Dienste werden blockiert. Wenn Sie keine Dienste auswählen, wird das Öffnen von Daten durch Benutzer verhindert."
+ },
+ "AndroidBackup": {
+ "label": "Organisationsdaten in Android-Sicherungsdiensten sichern",
+ "tooltip": "Wählen Sie \"{0}\" aus, um die Sicherung von Organisationsdaten in Android-Sicherungsdiensten zu verhindern. \r\nWählen Sie \"{1}\" aus, um die Sicherung von Organisationsdaten in Android-Sicherungsdiensten zu ermöglichen. \r\nPersonenbezogene oder nicht verwaltete Daten sind hiervon nicht betroffen."
+ },
+ "AndroidBiometricAuthentication": {
+ "label": "Biometrie anstelle von PIN für Zugriff",
+ "tooltip": "Wählen Sie ggf. aus, welche Android-Authentifizierungsmethoden von Benutzern anstelle einer App-PIN verwendet werden können."
+ },
+ "AndroidFingerprint": {
+ "label": "Fingerabdruck statt PIN für Zugriff (Android 6.0 und höher)",
+ "tooltip": "Das Android-Betriebssystem verwendet Fingerabdruckscans, um Benutzer von Android-Geräten zu authentifizieren. Dieses Feature unterstützt die nativen biometrischen Kontrollen auf Android-Geräten. OEM-spezifische biometrische Einstellungen, wie z. B. Samsung Pass, werden nicht unterstützt. Sofern zugelassen, müssen native biometrische Kontrollen verwendet werden, um auf Geräten mit Unterstützung dieses Features auf die App zuzugreifen."
+ },
+ "AndroidOverrideFingerprint": {
+ "label": "PIN setzt Fingerabdruck nach Timeout außer Kraft"
+ },
+ "AppPIN": {
+ "label": "App-PIN, wenn Geräte-PIN festgelegt ist",
+ "tooltip": "Sofern sie nicht erforderlich ist, muss für den Zugriff auf die App keine App-PIN verwendet werden, wenn die Geräte-PIN auf einem MDM-registrierten Gerät festgelegt ist.
\r\n\r\nHinweis: Intune kann die Geräteregistrierung bei einer EMM-Drittanbieterlösung unter Android nicht erkennen."
+ },
+ "BlockDataIngestionIntoOrganizationDocuments": {
+ "label": "Daten in Organisationsdokumenten öffnen",
+ "tooltip1": "Wählen Sie Blockieren aus, um die Verwendung der Option Öffnen oder anderer Optionen zum Freigeben von Daten zwischen Konten in dieser App zu deaktivieren. Wählen Sie Zulassen aus, wenn Sie die Verwendung von Öffnen und anderen Optionen zum Freigeben von Daten zwischen Konten in dieser App zulassen möchten.",
+ "tooltip2": "Wenn diese Option auf Blockieren festgelegt ist, können Sie die Einstellung Benutzern das Öffnen von Daten über ausgewählte Dienste erlauben konfigurieren, um anzugeben, welche Dienste für Speicherorte von Organisationsdaten zulässig sind.",
+ "tooltip3": "Hinweis: Diese Einstellung wird nur erzwungen, wenn die Einstellung \"Daten von anderen Apps empfangen\" auf \"Richtlinienverwaltete Apps\" festgelegt ist.
\r\nHinweis: Diese Einstellung gilt nicht für alle Anwendungen. Weitere Informationen finden Sie unter {0}.",
+ "tooltip4": "Hinweis: Diese Einstellung wird nur erzwungen, wenn die Einstellung \"Daten von anderen Apps empfangen\" auf \"Richtlinienverwaltete Apps\" festgelegt ist.
\r\nHinweis: Diese Einstellung gilt nicht für alle Anwendungen. Weitere Informationen finden Sie unter {0} oder {0}."
+ },
+ "ConnectToVpnOnLaunch": {
+ "label": "Microsoft Tunnel-Verbindung beim App-Start starten",
+ "tooltip": "Verbindung mit VPN zulassen, wenn die App gestartet wird"
+ },
+ "CredentialsForAccess": {
+ "label": "Anmeldeinformationen für Geschäfts-, Schul- oder Unikonto für Zugriff",
+ "tooltip": "Sofern als erforderlich festgelegt, müssen Anmeldeinformationen für Geschäfts-, Schul- oder Uni-Konten verwendet werden, um auf die von der Richtlinie verwaltete App zuzugreifen. Wenn außerdem eine PIN oder biometrische Methoden für den Zugriff auf die App erforderlich sind, werden die Anmeldeinformationen für das Geschäfts-, Schul- oder Uni-Konto zusätzlich zu diesen Eingabeaufforderungen benötigt."
+ },
+ "CustomBrowserDisplayName": {
+ "label": "Name von nicht verwaltetem Browser",
+ "tooltip": "Geben Sie den Anwendungsnamen für den Browser ein, der der \"ID von nicht verwaltetem Browser\" zugeordnet ist. Dieser Name wird Benutzern angezeigt, wenn der angegebene Browser nicht installiert ist."
+ },
+ "CustomBrowserPackageId": {
+ "label": "ID von nicht verwaltetem Browser",
+ "tooltip": "Geben Sie die Anwendungs-ID für einen einzelnen Browser ein. Webinhalte (HTTP/S) aus mit Richtlinien verwalteten Anwendungen werden im angegebenen Browser geöffnet."
+ },
+ "CustomBrowserProtocol": {
+ "label": "Protokoll von nicht verwaltetem Browser",
+ "tooltip": "Geben Sie das Protokoll für einen einzelnen nicht verwalteten Browser ein. Webinhalte (HTTP/S) aus mit Richtlinien verwalteten Anwendungen werden in jeder beliebigen App geöffnet, die dieses Protokoll unterstützt.
\r\n \r\nHinweis: Geben Sie nur das Protokollpräfix an. Wenn Ihr Browser Links im Format \"mybrowser://www.microsoft.com\" verlangt, geben Sie \"mybrowser\" ein.
"
+ },
+ "CustomDialerAppDisplayName": {
+ "label": "Name der Telefon-App"
+ },
+ "CustomDialerAppPackageId": {
+ "label": "Paket-ID der Telefon-App"
+ },
+ "CustomDialerAppProtocol": {
+ "label": "URL-Schema der Telefon-App"
+ },
+ "Cutcopypaste": {
+ "label": "Ausschneiden, Kopieren und Einfügen zwischen Apps einschränken",
+ "tooltip": "Führen Sie Aktionen zum Ausschneiden, Kopieren und Einfügen von Daten zwischen Ihrer App und anderen genehmigten Apps aus, die auf dem Gerät installiert sind. Sie können diese Aktionen zwischen Apps vollständig blockieren, sie für die Verwendung mit einer beliebigen App zulassen oder die Verwendung auf Apps beschränken, die Ihre Organisation verwaltet.
\r\n\r\nÜber Per Richtlinie verwaltete Apps mit Einfügung eingehender Inhalte können Sie eingehende Inhalte akzeptieren, die aus einer anderen App eingefügt wurden. Benutzer können jedoch keine Inhalte nach außen freigeben – es sei denn, die Freigabe erfolgt für eine verwaltete App.
"
+ },
+ "DialerRestrictionLevel": {
+ "iosTooltip": "Wenn ein Benutzer eine mit einem Link verknüpfte Telefonnummer in einer App auswählt, wird in der Regel eine Tastenfeld-App mit der vorausgefüllten Telefonnummer geöffnet, die dann angerufen werden kann. Wählen Sie für diese Einstellung aus, wie diese Form der Inhaltsübertragung behandelt werden soll, wenn sie über eine App mit Richtlinienverwaltung ausgelöst wird. Es können zusätzliche Schritte erforderlich sein, damit diese Einstellung wirksam wird. Vergewissern Sie sich zunächst, dass \"tel\" und \"telprompt\" aus der Liste der ausgenommenen Apps entfernt wurden. Stellen Sie anschließend sicher, dass die Anwendung eine neuere Version des Intune SDK (Version 12.7.0+) verwendet.",
+ "label": "Telekommunikationsdaten übertragen an",
+ "tooltip": "Wenn ein Benutzer eine mit einem Link verknüpfte Telefonnummer in einer App auswählt, wird in der Regel eine Tastenfeld-App mit der vorausgefüllten Telefonnummer geöffnet, die dann angerufen werden kann. Wählen Sie für diese Einstellung aus, wie diese Art der Inhaltsübertragung behandelt werden soll, wenn sie über eine App mit Richtlinienverwaltung ausgelöst wird."
+ },
+ "EncryptData": {
+ "label": "Organisationsdaten verschlüsseln",
+ "link": "https://docs.microsoft.com/de-de/intune/app-protection-policy-settings-android#data-relocation-settings",
+ "tooltip": "Wählen Sie \"{0}\" aus, um die Verschlüsselung von Organisationsdaten mit der Intune-Verschlüsselung auf App-Ebene zu erzwingen. \r\n
\r\nWählen Sie \"{1}\" aus, um die Verschlüsselung von Organisationsdaten mit der Intune-Verschlüsselung auf App-Ebene nicht zu erzwingen.\r\n\r\n
\r\nHinweis: Weitere Informationen zur Intune-Verschlüsselung auf App-Ebene finden Sie unter \"{2}\"."
+ },
+ "EncryptDataAndroid": {
+ "tooltip": "Wählen Sie Erforderlich aus, um für Geschäfts-, Schul- oder Unidaten in dieser App die Verschlüsselung zu aktivieren. Intune verwendet ein OpenSSL-AES-Verschlüsselungsschema mit 256 Bit in Kombination mit dem Android-Keystore-System, um App-Daten sicher zu verschlüsseln. Die Daten werden bei Datei-E/A-Aufgaben synchron verschlüsselt. Der Inhalt im Gerätespeicher wird immer verschlüsselt. Das SDK bietet weiterhin Unterstützung für 128-Bit-Schlüssel, um Kompatibilität mit Inhalten und Apps zu gewährleisten, die ältere SDK-Versionen verwenden.
\r\n\r\nDie Verschlüsselungsmethode ist mit FIPS 140-2 konform.
"
+ },
+ "EncryptDataIos": {
+ "tooltip1": "Wählen Sie Erforderlich aus, um für Geschäfts, Schul- oder Unidaten in dieser App die Verschlüsselung zu aktivieren. Intune erzwingt eine iOS-/iPadOS-Geräteverschlüsselung, um App-Daten zu schützen, während das Gerät gesperrt ist. Anwendungen können optional App-Daten mithilfe der Intune APP SDK-Verschlüsselung verschlüsseln. Das Intune APP SDK nutzt iOS-/iPadOS-Kryptografiemethoden, um eine 128-Bit-AES-Verschlüsselung auf App-Daten anzuwenden.",
+ "tooltip2": "Wenn Sie diese Einstellung aktivieren, muss der Benutzer möglicherweise eine PIN für den Zugriff auf sein Gerät einrichten und verwenden. Wenn keine Geräte-PIN vorhanden und eine Verschlüsselung erforderlich ist, wird der Benutzer über die folgende Meldung zur Festlegung einer PIN aufgefordert: \"Ihre Organisation hat festgelegt, dass Sie zunächst eine Geräte-PIN aktivieren müssen, um auf diese App zuzugreifen.\"",
+ "tooltip3": "Wechseln Sie zur offiziellen Apple-Dokumentation, um zu sehen, welche iOS-Verschlüsselungsmodule mit FIPS 140-2 konform sind bzw. für welche Module eine FIPS 140-2-Konformität aussteht."
+ },
+ "EncryptDataOnEnrolledDevices": {
+ "label": "Organisationsdaten auf registrierten Geräten verschlüsseln",
+ "tooltip": "Wählen Sie \"{0}\" aus, um auf allen Geräten die Verschlüsselung von Organisationsdaten mit Intune-Verschlüsselung auf App-Ebene zu erzwingen.
\r\n\r\nWählen Sie \"{1}\" aus, um auf registrierten Geräten die Verschlüsselung von Organisationsdaten mit Intune-Verschlüsselung auf App-Ebene nicht zu erzwingen."
+ },
+ "IOSBackup": {
+ "label": "Organisationsdaten in iTunes und iCloud sichern",
+ "tooltip": "Wählen Sie \"{0}\" aus, um zu verhindern, dass Organisationsdaten in iTunes oder iCloud gesichert werden. \r\nWählen Sie \"{1}\" aus, um die Sicherung von Organisationsdaten in iTunes oder iCloud zuzulassen. \r\nPersonenbezogene Daten oder nicht verwaltete Daten sind hiervon nicht betroffen."
+ },
+ "IOSFaceID": {
+ "label": "Face ID anstelle von PIN für Zugriff (iOS 11 und höher/iPadOS)",
+ "tooltip": "Face ID verwendet eine Technologie zur Gesichtserkennung, um Benutzer auf iOS-/iPadOS-Geräten zu authentifizieren. Intune ruft die LocalAuthentication-API auf, um Benutzer per Face ID zu authentifizieren. Sofern zugelassen, muss die Face ID verwendet werden, um auf einem Gerät mit Face ID-Unterstützung auf die App zuzugreifen."
+ },
+ "IOSOverrideTouchId": {
+ "label": "PIN setzt Biometrie nach Timeout außer Kraft"
+ },
+ "IOSTouchId": {
+ "label": "Touch ID anstelle von PIN für Zugriff (iOS 8 und höher/iPadOS)",
+ "tooltip": "Face ID verwendet eine Technologie zur Fingerabdruckerkennung, um Benutzer auf iOS-Geräten zu authentifizieren. Intune ruft die LocalAuthentication-API auf, um Benutzer per Touch ID zu authentifizieren. Sofern zugelassen, muss die Touch ID verwendet werden, um auf einem Gerät mit Touch ID-Unterstützung auf die App zuzugreifen."
+ },
+ "NotificationRestriction": {
+ "label": "Benachrichtigungen zu Organisationsdaten",
+ "tooltip": "Wählen Sie eine der folgenden Optionen aus, um anzugeben, wie Benachrichtigungen für Organisationskonten für diese Apps und alle verbundenen Geräte (z. B. Wearables) angezeigt werden:
\r\n{0}: Benachrichtigungen nicht freigeben.
\r\n{1}: Organisationsdaten nicht in Benachrichtigungen freigeben. Sofern nicht durch die Anwendung unterstützt, werden Benachrichtigungen blockiert.
\r\n{2}: Alle Benachrichtigungen freigeben.
\r\n Nur Android:\r\n Hinweis: Diese Einstellung gilt nicht für alle Anwendungen. Weitere Informationen finden Sie unter {3}
\r\n \r\n Nur iOS:\r\nHinweis: Diese Einstellung gilt nicht für alle Anwendungen. Weitere Informationen finden Sie unter {4}.
"
+ },
+ "OpenLinksManagedBrowser": {
+ "label": "Übertragung von Webinhalt in andere Apps einschränken",
+ "tooltip": "Wählen Sie eine der folgenden Optionen aus, um die Apps anzugeben, in denen diese App Webinhalte öffnen kann:
\r\nEdge: Hiermit können Webinhalte nur in Edge geöffnet werden
\r\nNicht verwalteter Browser: Hiermit können Webinhalte nur in dem nicht verwalteten Browser geöffnet werden, der über die Einstellung „Protokoll von nicht verwaltetem Browser“ definiert wurde
\r\nBeliebige App: Weblinks werden in beliebigen Apps zugelassen
"
+ },
+ "OverrideBiometric": {
+ "tooltip": "Sofern als erforderlich festgelegt, setzt eine PIN-Aufforderung abhängig vom Timeout (Minuten der Inaktivität) Biometrieaufforderungen außer Kraft. Solange der Timeoutwert nicht erreicht wurde, wird weiterhin die Biometrieaufforderung angezeigt. Dieser Timeoutwert sollte größer sein als der unter \"Zugriffsanforderungen nach (Minuten der Inaktivität) erneut überprüfen\" angegebene Wert."
+ },
+ "PinAccess": {
+ "label": "PIN für Zugriff",
+ "tooltip": "Sofern als erforderlich festgelegt, muss für den Zugriff auf die per Richtlinie verwaltete App eine PIN verwendet werden. Benutzer müssen eine PIN für den Zugriff erstellen, wenn Sie die App über ein Geschäfts-, Schul- oder Unikonto zum ersten Mal öffnen."
+ },
+ "PinLength": {
+ "label": "PIN-Mindestlänge auswählen",
+ "tooltip": "Diese Einstellung gibt die Mindestanzahl von Ziffern einer PIN an."
+ },
+ "PinType": {
+ "label": "PIN-Typ",
+ "tooltip": "Numerische PINs bestehen nur aus Ziffern. Passcodes bestehen aus alphanumerischen Zeichen und Sonderzeichen."
+ },
+ "Printing": {
+ "label": "Organisationsdaten drucken",
+ "tooltip": "Sofern blockiert, kann die App keine geschützten Daten drucken."
+ },
+ "ReceiveData": {
+ "label": "Daten von anderen Apps empfangen",
+ "tooltip": "Wählen Sie eine der folgenden Optionen aus, um die Apps festzulegen, von denen diese App Daten empfangen kann:
\r\n\r\nKeine: Hiermit wird der Empfang von Daten in Organisationsdokumenten oder Konten beliebiger Apps untersagt.
\r\n\r\nPer Richtlinie verwaltete Apps: Hiermit ist der Empfang von Daten in Organisationsdokumenten oder Konten nur von Apps zulässig, die ebenfalls per Richtlinie verwaltete werden.\r\n
\r\nBeliebige App mit eingehenden Organisationsdaten: Hiermit wird der Empfang von Daten in Organisationsdokumenten oder Konten aus einer beliebigen App zugelassen, und alle eingehenden Daten ohne Benutzerkonto werden als Organisationsdaten betrachtet.
\r\n\r\nAlle Apps: Hiermit wird der Empfang von Daten in Organisationsdokumenten oder Konten von beliebigen Apps zugelassen."
+ },
+ "RecheckAccessAfter": {
+ "label": "Zugriffsanforderungen nach (Minuten der Inaktivität) erneut überprüfen\r\n\r\n",
+ "tooltip": "Wenn die per Richtlinie verwaltet App länger inaktiv ist als die angegebene Anzahl von Minuten der Inaktivität, fordert die App nach dem Start der App eine erneute Überprüfung der Zugriffsanforderungen (z. B. PIN, bedingte Starteinstellungen) an."
+ },
+ "RestrictKeyboards": {
+ "duplicatePackageError": "Die Paket-ID muss eindeutig sein.",
+ "invalidPackageError": "Ungültige Paket-ID.",
+ "label": "Genehmigte Tastaturen",
+ "select": "Zu genehmigende Tastaturen auswählen",
+ "subtitle": "Fügen Sie alle Tastaturen und Eingabemethoden hinzu, die Benutzer mit den Ziel-Apps verwenden dürfen. Geben Sie den Tastaturnamen so ein, wie er dem Endbenutzer angezeigt werden soll.",
+ "title": "Genehmigte Tastaturen hinzufügen",
+ "toolTip": "Wählen Sie \"Erforderlich\" aus, und geben Sie dann eine Liste der genehmigten Tastaturen für diese Richtlinie an. Weitere Informationen."
+ },
+ "SaveData": {
+ "label": "Kopien von Organisationsdaten speichern",
+ "tooltip": "Wählen Sie \"{0}\" aus, um das Speichern einer Kopie von Organisationsdaten an einem anderen Ort als dem ausgewählten Speicherdienst über \"Speichern unter\" zu verhindern.\r\n Wählen Sie \"{1}\" aus, um das Speichern einer Kopie von Organisationsdaten an einem anderen Ort als dem ausgewählten Speicherdienst über \"Speichern unter\" zuzulassen.
\r\n\r\n\r\nHinweis: Diese Einstellung gilt nicht für alle Anwendungen. Weitere Informationen finden Sie unter {2}.\r\n"
+ },
+ "SaveDataToSelected": {
+ "label": "Benutzer das Speichern von Kopien in den ausgewählten Diensten ermöglichen",
+ "tooltip": "Wählen Sie die Speicherdienste aus, in denen Benutzer Kopien von Organisationsdaten speichern können. Alle anderen Dienste werden blockiert. Wenn Sie keine Dienste auswählen, wird verhindert, dass Benutzer Kopien von Organisationsdaten speichern."
+ },
+ "ScreenCaptureAndAndroidAssistant": {
+ "label": "Bildschirmaufnahme und Google Assistant\r\n",
+ "tooltip": "Sofern blockiert, werden sowohl die Funktionen für Bildschirmaufnahmen als auch die Scanfunktionen der Google Assistant-App deaktiviert, wenn die per Richtlinie verwaltete App verwendet wird. Diese Funktion unterstützt die übliche Google Assistant-App. Drittanbieter-Assistenten, die die Google Assistant-API verwenden, werden nicht unterstützt. Wenn Sie \"Blockieren\" auswählen, wird auch das Vorschaubild im App-Schnellzugriff verschwommen angezeigt, wenn Sie die App mit einem Geschäfts-, Schul- oder Unikonto verwenden."
+ },
+ "SendData": {
+ "label": "Organisationsdaten an andere Apps senden",
+ "tooltip": "Wählen Sie eine der folgenden Optionen aus, um die Apps festzulegen, an die diese App Organisationsdaten senden kann:
\r\n\r\n\r\nKeine: Hiermit wird das Senden von Organisationsdaten an alle Apps untersagt.
\r\n\r\n\r\nPer Richtlinie verwaltete Apps: Hiermit wird nur das Senden von Organisationsdaten an andere per Richtlinie verwaltete Apps zugelassen.
\r\n\r\n\r\nPer Richtlinie verwaltete Apps mit Betriebssystemfreigabe: Hiermit wird nur das Senden von Organisationsdaten an andere per Richtlinie verwaltete Anwendungen und das Senden von Organisationsdokumenten an andere MDM-verwaltete Anwendungen auf registrierten Geräten zugelassen.
\r\n\r\n\r\nPer Richtlinie verwaltete App mit Filterung für \"Öffnen in\"/\"Freigeben\": Hiermit wird nur das Senden von Organisationsdaten an andere per Richtlinie verwaltete Apps mit Filterung für \"Öffnen in\"/\"Freigeben\" zugelassen.\r\n
\r\n\r\nAlle Apps: Hiermit wird das Senden von Organisationsdaten an eine beliebige App zugelassen."
+ },
+ "SimplePin": {
+ "label": "Einfache PIN",
+ "tooltip": "Sofern blockiert, dürfen Benutzer keine einfache PIN erstellen. Eine einfache PIN ist eine Sequenz von aufeinanderfolgenden oder sich wiederholenden Ziffern, wie z. B. 1234, ABCD oder 1111. Beachten Sie, dass das Blockieren einer einfachen PIN vom Typ \"Passcode\" erfordert, dass das Kennwort mindestens eine Ziffer, einen Buchstaben und ein Sonderzeichen enthält."
+ },
+ "SyncContacts": {
+ "label": "Daten von durch Richtlinien verwalteten Apps mit nativen Apps oder Add-Ins synchronisieren"
+ },
+ "ThirdPartyKeyboards": {
+ "infoBox": "Tastatureinschränkungen gelten für alle Bereiche einer App. Persönliche Konten für Apps, die mehrere Identitäten unterstützen, sind von dieser Einschränkung betroffen. Weitere Informationen.",
+ "label": "Tastaturen von Drittanbietern"
+ },
+ "Timeout": {
+ "label": "Timeout (Minuten der Inaktivität)"
+ },
+ "Tap": {
+ "numberOfDays": "Anzahl Tage",
+ "pinResetAfterNumberOfDays": "Anzahl von Tagen für PIN-Zurücksetzung",
+ "previousPinBlockCount": "Anzahl der beizubehaltenden vorherigen PIN-Werte auswählen"
+ }
+ },
+ "ScheduledAction": {
+ "Form": {
+ "editBlockActionInfo": "Für alle Konformitätsrichtlinien ist eine Blockierungsaktion erforderlich.",
+ "graceperiod": "Zeitplan (Tage nach Inkompatibilität)",
+ "graceperiodInfo": "Geben Sie die Anzahl von Tagen nach Feststellen der Inkompatibilität an, nach denen diese Aktion für das Gerät des Benutzers ausgelöst werden soll.",
+ "subtitle": "Aktionsparameter angeben",
+ "title": "Aktionsparameter"
+ },
+ "List": {
+ "gracePeriodDay": "{0} Tag nach Inkompatibilität",
+ "gracePeriodDays": "{0} Tage nach Inkompatibilität",
+ "gracePeriodHour": "{0} Stunde nach Nichtkonformität",
+ "gracePeriodHours": "{0} Stunden nach Nichtkonformität",
+ "gracePeriodMinute": "{0} Minute nach Nichtkonformität",
+ "gracePeriodMinutes": "{0} Minuten nach Nichtkonformität",
+ "immediately": "Sofort",
+ "schedule": "Zeitplan",
+ "scheduleInfoBalloon": "Tage nach Nichtkonformität",
+ "subtitle": "Aktionsfolge auf nicht kompatiblen Geräte angeben",
+ "title": "Aktionen"
+ },
+ "Notification": {
+ "additionalEmailLabel": "Andere",
+ "additionalRecipients": "Zusätzliche Empfänger (per E-Mail)",
+ "additionalRecipientsBladeTitle": "Zusätzliche Empfänger auswählen",
+ "emailAddressPrompt": "E-Mail-Adressen eingeben (durch Kommas getrennt)",
+ "invalidEmail": "Ungültige E-Mail-Adresse",
+ "messageTemplate": "Nachrichtenvorlage",
+ "noneSelected": "Nichts ausgewählt",
+ "notSelected": "Nicht ausgewählt",
+ "numSelected": "{0} ausgewählt",
+ "selected": "Ausgewählt"
+ },
+ "block": "Gerät als nicht konform markieren",
+ "lockDevice": "Gerät sperren (lokale Aktion)",
+ "lockDeviceWithPasscode": "Gerät sperren (lokale Aktion)",
+ "noAction": "Keine Aktion",
+ "noActionRow": "Keine Aktionen. Wählen Sie \"Hinzufügen\", um eine Aktion hinzuzufügen.",
+ "pushNotification": "Pushbenachrichtigung an Endbenutzer senden",
+ "remoteLock": "Nicht konformes Gerät remote sperren",
+ "removeSourceAccessProfile": "Quellzugriffsprofil entfernen",
+ "retire": "Nicht konformes Gerät zurückziehen",
+ "wipe": "Zurücksetzen",
+ "emailNotification": "E-Mail an Endbenutzer senden"
+ },
+ "InstallIntent": {
+ "available": "Für registrierte Geräte verfügbar",
+ "availableWithoutEnrollment": "Verfügbar mit oder ohne Registrierung",
+ "required": "Erforderlich",
+ "uninstall": "Deinstallieren"
+ },
"EnrollmentStatusScreen": {
"Apps": {
"managedApps": "Verwaltete Apps",
@@ -2466,142 +1483,61 @@
"resetToggle": "Benutzern bei Installationsfehlern das Zurücksetzen des Geräts erlauben",
"timeout": "Fehler anzeigen, wenn die Installation länger als die angegebene Anzahl von Minuten dauert"
},
- "EnrollmentType": {
- "devicesWithEnrollment": "Verwaltete Geräte",
- "devicesWithoutEnrollment": "Verwaltete Apps"
- },
- "ApplicabilityRules": {
- "GridLabel": {
- "property": "Eigenschaft",
- "rule": "Regel",
- "ruleDetails": "Regeldetails",
- "value": "Wert"
- },
- "assignIf": "Profil in folgenden Fällen zuweisen",
- "deleteWarning": "Hierdurch wird die ausgewählte Anwendbarkeitsregel gelöscht.",
- "dontAssignIf": "Profil in folgenden Fällen nicht zuweisen",
- "editionDisplayText": "{0} {1}",
- "editionDisplayTextMore": "und {0} weitere",
- "instructions": "Geben Sie an, wie dieses Profil innerhalb einer zugewiesenen Gruppe angewendet werden soll. Intune wendet das Profil nur auf Geräte an, die die kombinierten Kriterien dieser Regeln erfüllen.",
- "maxText": "Max.",
- "minText": "Min.",
- "noActionRow": "Keine Anwendbarkeitsregeln angegeben.",
- "oSVersion": "Beispiel: 1.2.3.4",
- "toText": "bis",
- "windows10Education": "Windows 10/11 Education",
- "windows10EducationN": "Windows 10/11 Education N",
- "windows10Enterprise": "Windows 10/11 Enterprise",
- "windows10EnterpriseN": "Windows 10/11 Enterprise N",
- "windows10HolographicEnterprise": "Windows 10 Holographic for Business",
- "windows10Home": "Windows 10/11 Home",
- "windows10HomeChina": "Windows 10 Home (China)",
- "windows10HomeN": "Windows 10/11 Home N",
- "windows10HomeSingleLanguage": "Windows 10/11 Home (Einzelsprache)",
- "windows10IoTCore": "Windows 10 IoT Core",
- "windows10IoTCoreCommercial": "Windows 10 IoT Core Commercial",
- "windows10Mobile": "Windows 10 Mobile",
- "windows10MobileEnterprise": "Windows 10 Mobile Enterprise",
- "windows10OsEdition": "Betriebssystemedition",
- "windows10OsVersion": "Betriebssystemversion",
- "windows10Professional": "Windows 10/11 Professional",
- "windows10ProfessionalEducation": "Windows 10/11 Professional Education",
- "windows10ProfessionalEducationN": "Windows 10/11 Professional Education N",
- "windows10ProfessionalN": "Windows 10 Professional N",
- "windows10ProfessionalWorkstation": "Windows 10/11 Professional Workstation",
- "windows10ProfessionalWorkstationN": "Windows 10/11 Professional Workstation N"
+ "Devices": {
+ "General": {
+ "android": "Android"
+ },
+ "aOSP": "Android-Open-Source-Projekt",
+ "android": "Android-Geräteadministrator",
+ "androidWorkProfile": "Android Enterprise (Arbeitsprofil)",
+ "iOS": "iOS/iPadOS",
+ "mac": "macOS",
+ "windows": "Windows (MDM)",
+ "windows10": "Windows 10 und höher",
+ "windowsHomeSku": "Windows Home-SKU",
+ "windowsMobile": "Windows Mobile"
+ },
+ "AppInfoBalloonText": {
+ "Certificate": {
+ "customSubjectName": "CN={{UserName}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US\r\nor\r\nCN={{AAD_Device_ID}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US",
+ "keySize": "Wählen Sie die Anzahl von Bits aus, die im Schlüssel enthalten sein sollen.",
+ "keyUsage": "Geben Sie die kryptografische Aktion an, die zum Austauschen des öffentlichen Schlüssels des Zertifikats erforderlich ist.",
+ "renewalThreshold": "Geben Sie den Prozentsatz (zwischen 1 und 99 Prozent) der verbleibenden Gültigkeitsdauer des Zertifikats an, die zulässig ist, bevor ein Gerät die Verlängerung des Zertifikats anfordern kann. Der empfohlene Wert in Intune beträgt 20 %. (1–99)",
+ "rootCert": "Wählen Sie ein zuvor konfiguriertes und zugeordnetes Profil für das Stammzertifizierungsstellen-Zertifikat aus. Das Zertifizierungsstellenzertifikat muss mit dem Stammzertifikat der Zertifizierungsstelle übereinstimmen, die das Zertifikat für dieses Profil (das Sie gerade konfigurieren) ausstellt.",
+ "scepServerUrl": "Geben Sie eine URL für den NDES-Server ein, der Zertifikate über SCEP ausgibt (HTTPS erforderlich). Beispiel: https://contoso.com/certsrv/mscep/mscep.dll",
+ "scepServerUrls": "Fügen Sie mindestens eine URL für den NDES-Server hinzu, der Zertifikate über SCEP ausstellt (HTTPS erforderlich). Beispiel: https://contoso.com/certsrv/mscep/mscep.dll",
+ "subjectAlternativeName": "Alternativer Antragstellername",
+ "subjectNameFormat": "Format des Antragstellernamens",
+ "validityPeriod": "Die verbleibende Zeit vor Ablauf des Zertifikats. Geben Sie einen Wert ein, der gleich oder kleiner ist als der Gültigkeitszeitraum, der in der Zertifikatvorlage angezeigt wird. Standardmäßig ist ein Jahr festgelegt."
+ },
+ "appInstallContext": "Hiermit wird der Installationskontext für diese App angegeben. Wählen Sie für Apps im dualen Modus den gewünschten Kontext für die App aus. Für alle weiteren Apps wird diese Einstellung basierend auf dem Paket vorausgewählt und kann nicht geändert werden.",
+ "autoUpdateMode": "Konfigurieren Sie die Updatepriorität für die App. Wählen Sie \"Standard\" aus, um die Verbindung des Geräts mit WLAN zu verlangen, eine Belastung auszuführen und vor dem Aktualisieren der App nicht aktiv verwendet zu werden. Wählen Sie \"Hohe Priorität\" aus, um die App zu aktualisieren, sobald der Entwickler die App veröffentlicht hat, unabhängig vom Gebührenstatus, der WLAN-Funktion oder der Endbenutzeraktivität auf dem Gerät. Wählen Sie \"Zurückgestellt\" aus, um app-Updates für bis zu 90 Tage zu verhandeln. \"Hohe Priorität\" und \"Zurückgestellt\" werden nur auf Do-Geräten wirksam.",
+ "configurationSettingsFormat": "Text für das Konfigurationseinstellungsformat",
+ "ignoreVersionDetection": "Für Apps, die vom App-Entwickler automatisch aktualisiert werden (z. B. Google Chrome), legen Sie diese Option auf \"Ja\" fest.",
+ "ignoreVersionDetectionMacOSLobApp": "Wählen Sie \"Ja\" aus, wenn die Apps automatisch durch den App-Entwickler aktualisiert werden, oder wenn vor der Installation nur auf die App-Bundle-ID überprüft werden soll. Wählen Sie \"Nein\" aus, um vor der Installation auf die App-Bundle-ID und die Versionsnummer zu überprüfen.",
+ "installAsManagedMacOSLobApp": "Diese Einstellung gilt nur für macOS 11 und höher. Unter macOS 10.15 und früher wird die App installiert, aber nicht verwaltet.",
+ "installContextDropdown": "Wählen Sie den entsprechenden Installationskontext aus. Durch den Benutzerkontext wird die App nur für den Zielbenutzer installiert, während sie durch den Gerätekontext für alle Benutzer auf dem Gerät installiert wird.",
+ "ldapUrl": "Dies ist der LDAP-Hostname, über den Clients die öffentlichen Verschlüsselungskeys für E-Mail-Empfänger abrufen können. E-Mails werden verschlüsselt, wenn ein Key verfügbar ist. Unterstützte Formate: - ldap.example.com
\r\n- ldap.example.com:123
\r\n- ldap://ldap.example.com
- ldap://ldap.example.com:123
- ldaps://ldap.example.com
\r\n- ldaps://ldap.example.com:123
",
+ "permissionsSettings": "Wählen Sie Laufzeitberechtigungen für die zugeordnete App.",
+ "policyAssociatedApp": "Wählen Sie die App, der diese Richtlinie zugeordnet werden soll.",
+ "policyConfigurationSettings": "Wählen Sie die Methode aus, die Sie zum Definieren von Konfigurationseinstellungen für diese Richtlinie verwenden möchten.",
+ "policyDescription": "Geben Sie optional eine Beschreibung für diese Konfigurationsrichtlinie ein.",
+ "policyEnrollmentType": "Wählen Sie aus, ob diese Einstellungen über die Geräteverwaltung oder über mit dem Intune-SDK erstellte Apps verwaltet werden.",
+ "policyName": "Geben Sie einen Namen für diese Konfigurationsrichtlinie ein.",
+ "policyPlatform": "Wählen Sie die Plattform aus, auf die diese App-Konfigurationsrichtlinie angewendet wird.",
+ "policyProfileType": "Wählen Sie die Geräteprofiltypen aus, auf die dieses App-Konfigurationsprofil angewendet werden soll.",
+ "policySMime": "Hiermit konfigurieren Sie S/MIME-Signatur- und Verschlüsselungseinstellungen für Outlook.",
+ "sMimeDeployCertsFromIntune": "Geben Sie an, ob von Intune S/MIME-Zertifikate für die Verwendung mit Outlook bereitgestellt werden sollen oder nicht.\r\nIntune kann über das Unternehmensportal automatisch Signatur- und Verschlüsselungszertifikate für Benutzer bereitstellen.",
+ "sMimeEnable": "Hiermit geben Sie an, ob S/MIME-Steuerelemente beim Verfassen einer E-Mail aktiviert werden.",
+ "sMimeEnableAllowChange": "Geben Sie an, ob der Benutzer die Einstellung \"S/MIME aktivieren\" ändern darf.",
+ "sMimeEncryptAllEmails": "Hiermit wird angegeben, ob alle E-Mails verschlüsselt werden müssen oder nicht.\r\nBei der Verschlüsselung werden Daten mithilfe eines Verschlüsselungsverfahrens konvertiert, sodass sie nur vom beabsichtigten Empfänger gelesen werden können.",
+ "sMimeEncryptAllEmailsAllowChange": "Geben Sie an, ob der Benutzer die Einstellung \"Alle E-Mails verschlüsseln\" ändern darf.",
+ "sMimeEncryptionCertProfile": "Geben Sie das Zertifikatprofil für die E-Mail-Verschlüsselung an.",
+ "sMimeSignAllEmails": "Geben Sie an, ob alle E-Mail-Nachrichten signiert werden müssen oder nicht.\r\nEine digitale Signatur weist die Echtheit der E-Mail-Adresse nach und stellt sicher, dass der Inhalt während der Übertragung nicht verändert wird.",
+ "sMimeSignAllEmailsAllowChange": "Geben Sie an, ob der Benutzer die Einstellung \"Alle E-Mails signieren\" ändern darf.",
+ "sMimeSigningCertProfile": "Geben Sie das Zertifikatprofil für die E-Mail-Signatur an.",
+ "sMimeUserNotificationType": "Das Verfahren, mit dem Benutzer darüber benachrichtigt werden, dass sie das Unternehmensportal öffnen müssen, um S/MIME-Zertifikate für Outlook abzurufen."
},
- "BooleanActions": {
- "allow": "Erteilen Sie",
- "block": "Blockieren",
- "configured": "Konfiguriert",
- "disable": "Deaktivieren",
- "dontRequire": "Nicht anfordern",
- "enable": "Aktivieren",
- "hide": "Ausblenden",
- "limit": "Limit",
- "notConfigured": "Nicht konfiguriert",
- "require": "Anfordern",
- "show": "Anzeigen",
- "yes": "Ja"
- },
- "ProactiveRemediations": {
- "Create": {
- "Basics": {
- "DescriptionMultiLineTextBox": {
- "label": "Beschreibung",
- "placeholder": "Beschreibung eingeben"
- },
- "NameTextBox": {
- "label": "Name",
- "placeholder": "Namen eingeben"
- },
- "PublisherTextBox": {
- "label": "Herausgeber",
- "placeholder": "Geben Sie einen Herausgeber ein."
- },
- "VersionTextBox": {
- "label": "Version"
- },
- "headerDescription": "Erstellen Sie ein neues benutzerdefiniertes Skriptpaket aus von Ihnen geschriebenen Skripts für Erkennung und Wartung."
- },
- "ScopeTags": {
- "headerDescription": "Wählen Sie mindestens eine Gruppe aus, um das Skriptpaket zuzuweisen."
- },
- "Settings": {
- "DetectionScriptMultiLineTextBox": {
- "label": "Erkennungsskript",
- "placeholder": "Text für Eingabeskript",
- "requiredValidationMessage": "Geben Sie das Erkennungsskript ein."
- },
- "EnforceScriptSignatureCheckOptionPicker": {
- "label": "Skriptsignaturprüfung erzwingen"
- },
- "LoggedOnCredentialsOptionPicker": {
- "label": "Dieses Skript mit den Anmeldeinformationen des angemeldeten Benutzers ausführen"
- },
- "RemediationScript": {
- "infoBox": "Dieses Skript wird im reinen Erkennungsmodus ausgeführt, weil kein Wartungsskript vorhanden ist."
- },
- "RemediationScriptMultiLineTextBox": {
- "label": "Wiederherstellungsskript",
- "placeholder": "Text für Eingabeskript"
- },
- "RunIn64BitPSOptionPicker": {
- "label": "Skript in 64-Bit-PowerShell ausführen"
- },
- "ScriptMultiLineTextBox": {
- "base64EncodingValidationMessage": "Ungültiges Skript. Mindestens ein im Skript verwendetes Zeichen ist ungültig."
- },
- "headerDescription": "Erstellen Sie ein benutzerdefiniertes Skriptpaket aus Skripts, die Sie geschrieben haben. Standardmäßig werden Skripts täglich auf zugewiesenen Geräten ausgeführt.",
- "infoBox": "Dieses Skript ist schreibgeschützt. Einige der Einstellungen für dieses Skript sind möglicherweise deaktiviert."
- },
- "title": "Benutzerdefiniertes Skript erstellen",
- "ScriptProperties": {
- "GridHeaders": {
- "interval": "Intervall",
- "time": "Datum und Uhrzeit"
- },
- "Interval": {
- "day": "Wird jeden Tag wiederholt",
- "days": "Wird alle {0} Tage wiederholt",
- "hour": "Wird jede Stunde wiederholt",
- "hours": "Wird alle {0} Stunden wiederholt",
- "month": "Wird jeden Monat wiederholt",
- "months": "Wird alle {0} Monate wiederholt",
- "week": "Wird jede Woche wiederholt",
- "weeks": "Wird alle {0} Wochen wiederholt"
- },
- "Time": {
- "utc": "{0} (UTC)",
- "utcWithDate": "{0} (UTC) am {1}",
- "withDate": "{0} am {1}"
- }
- }
- },
- "Edit": {
- "title": "Bearbeiten: {0}"
- }
- },
"WindowsManagement": {
"Assignment": {
"noAssignmentCustomAttributeDisplayText": "Weisen Sie mindestens einer Gruppe ein benutzerdefiniertes Attribut zu. Wechseln Sie zu \"Eigenschaften\", um Zuweisungen zu bearbeiten.",
@@ -2708,910 +1644,6 @@
"shellScriptObjectName": "Shell-Skript",
"successfullySavedPolicy": "\"{0}\" wurde gespeichert."
},
- "AssignmentFilters": {
- "assignmentFilterColumnHeader": "Filter",
- "noFilters": "Keine"
- },
- "Category": {
- "airPlay": "AirPlay",
- "airPrint": "AirPrint",
- "androidDefenderAtp": "Microsoft Defender für Endpunkt",
- "androidDeviceOwnerApplications": "Anwendungen",
- "androidForWorkPassword": "Gerätekennwort",
- "appManagement": "Apps zulassen oder blockieren",
- "applicationGuard": "Microsoft Defender Application Guard",
- "applicationRestrictions": "Eingeschränkte Apps",
- "applicationVisibility": "Apps anzeigen oder ausblenden",
- "applications": "App Store",
- "applicationsAndGames": "App Store, Dokumentanzeige, Spiele",
- "applicationsAndGoogle": "Google Play Store",
- "appsAndExperience": "Apps und Oberfläche",
- "associatedDomains": "Zugehörige Domänen",
- "autonomousSingleAppMode": "Autonomer Einzelanwendungsmodus",
- "azureOperationalInsights": "Azure Operational Insights",
- "bitLocker": "Windows-Verschlüsselung",
- "browser": "Browser",
- "builtinApps": "Integrierte Apps",
- "cellular": "Mobilfunk",
- "cloudAndStorage": "Cloud und Speicher",
- "cloudPrint": "Clouddrucker",
- "complianceEmailProfile": "E-Mail",
- "connectedDevices": "Verbundene Geräte",
- "connectivity": "Mobilfunk und Konnektivität",
- "contentCaching": "Content Caching",
- "controlPanelAndSettings": "Systemsteuerung und Einstellungen",
- "credentialGuard": "Microsoft Defender Credential Guard",
- "customCompliance": "Benutzerdefinierte Konformität",
- "customCompliancePreview": "Benutzerdefinierte Konformität (Vorschau)",
- "customConfiguration": "Benutzerdefiniertes Konfigurationsprofil",
- "customOMASettings": "Benutzerdefinierte OMA-URI-Einstellungen",
- "customPreferences": "Einstellungsdatei",
- "defender": "Microsoft Defender Antivirus",
- "defenderAntivirus": "Microsoft Defender Antivirus",
- "defenderExploitGuard": "Microsoft Defender Exploit Guard",
- "defenderFirewall": "Microsoft Defender Firewall",
- "defenderLocalSecurityOptions": "Sicherheitsoptionen für lokales Gerät",
- "defenderSecurityCenter": "Microsoft Defender Security Center",
- "deliveryOptimization": "Übermittlungsoptimierung",
- "derivedCredentialAuthenticationConfiguration": "Abgeleitete Anmeldeinformation",
- "deviceExperience": "Geräteoberfläche",
- "deviceFirmwareConfigurationInterface": "Schnittstelle zur Konfiguration der Gerätefirmware",
- "deviceGuard": "Microsoft Defender-Anwendungssteuerung",
- "deviceHealth": "Geräteintegritätsdienst",
- "devicePassword": "Gerätekennwort",
- "deviceProperties": "Geräteeigenschaften",
- "deviceRestrictions": "Allgemein",
- "deviceSecurity": "Systemsicherheit",
- "display": "Anzeigen",
- "domainJoin": "Domänenbeitritt",
- "domains": "Domänen",
- "edgeBrowser": "Microsoft Edge-Legacybrowser (Version 45 und früher)",
- "edgeBrowserSmartScreen": "Microsoft Defender SmartScreen",
- "edgeKiosk": "Microsoft Edge-Kioskmodus",
- "editionUpgrade": "Editionsupgrade",
- "education": "Bildung",
- "educationDeviceCerts": "Gerätezertifikate",
- "educationStudentCerts": "Zertifikate für Schüler und Studenten",
- "educationTakeATest": "Prüfung",
- "educationTeacherCerts": "Lehrerzertifikate",
- "emailProfile": "E-Mail",
- "enterpriseDataProtection": "Windows Information Protection",
- "expeditedCheckin": "Konfiguration der Verwaltung mobiler Geräte",
- "extensibleSingleSignOn": "App-Erweiterung für einmaliges Anmelden",
- "filevault": "FileVault",
- "firewall": "Firewall",
- "games": "Spiele",
- "gatekeeper": "Gatekeeper",
- "healthMonitoring": "Integritätsüberwachung",
- "homeScreenLayout": "Layout der Startseite",
- "iOSWallpaper": "Hintergrundbild",
- "importedPFX": "Importiertes PKCS-Zertifikat",
- "iosDefenderAtp": "Microsoft Defender für Endpunkt",
- "iosKiosk": "Kiosk",
- "kernelExtensions": "Kernelerweiterungen",
- "keyboardAndDictionary": "Tastatur und Wörterbuch",
- "kiosk": "Kiosk",
- "kioskAndroidEnterprise": "Dedizierte Geräte",
- "kioskConfiguration": "Kiosk",
- "kioskConfigurationV2": "Kiosk",
- "kioskWebBrowser": "Kioskwebbrowser",
- "lockScreenMessage": "Nachricht auf Sperrbildschirm",
- "lockedScreenExperience": "Gesperrter Bildschirm",
- "logging": "Berichterstellung und Telemetrie",
- "loginItems": "Anmeldeelemente",
- "loginWindow": "Anmeldefenster",
- "macDefenderAtp": "Microsoft Defender für Endpunkt",
- "maintenance": "Wartung",
- "malware": "Schadsoftware",
- "messaging": "Messaging",
- "networkBoundary": "Netzwerkgrenze",
- "networkProxy": "Netzwerkproxy",
- "notifications": "App-Benachrichtigungen",
- "pKCS": "PKCS-Zertifikat",
- "password": "Kennwort",
- "personalProfile": "Persönliches Profil",
- "personalization": "Personalisierung",
- "policyOverride": "Gruppenrichtlinie außer Kraft setzen",
- "powerSettings": "Energieeinstellungen",
- "printer": "Drucker",
- "privacy": "Datenschutz",
- "privacyPerApp": "App-spezifische Datenschutzausnahmen",
- "privacyPreferences": "Datenschutzeinstellungen",
- "projection": "Projektion",
- "sCCMCompliance": "Configuration Manager-Konformität",
- "sCEP": "SCEP-Zertifikat",
- "sCEPProperties": "SCEP-Zertifikat",
- "sMode": "Moduswechsel (nur Windows-Insider)",
- "safari": "Safari",
- "search": "Suchen",
- "session": "Sitzung",
- "sharedDevice": "Shared iPad",
- "sharedPCAccountManager": "Freigegebenes, von mehreren Benutzern verwendetes Gerät",
- "singleSignOn": "Einmaliges Anmelden",
- "smartScreen": "Microsoft Defender SmartScreen",
- "softwareUpdates": "Einstellungen",
- "start": "Starten",
- "systemExtensions": "Systemerweiterungen",
- "systemSecurity": "Systemsicherheit",
- "trustedCert": "Vertrauenswürdiges Zertifikat",
- "updates": "Updates",
- "userRights": "Benutzerrechte",
- "usersAndAccounts": "Benutzer und Konten",
- "vPN": "Basis-VPN",
- "vPNApps": "Automatisches VPN",
- "vPNAppsAndTrafficRules": "Regeln zu Apps und Datenverkehr",
- "vPNConditionalAccess": "Bedingter Zugriff",
- "vPNConnectivity": "Konnektivität",
- "vPNDNSTriggers": "DNS-Einstellungen",
- "vPNIKEv2": "IKEv2-Einstellungen",
- "vPNProxy": "Proxy",
- "vPNSplitTunneling": "Getrenntes Tunneln",
- "vPNTrustedNetwork": "Erkennung vertrauenswürdiger Netzwerke",
- "webContentFilter": "Webinhaltsfilter",
- "wiFi": "WLAN",
- "win10Wifi": "WLAN",
- "windowsAtp": "Microsoft Defender für Endpunkt",
- "windowsDefenderATP": "Microsoft Defender für Endpunkt",
- "windowsHelloForBusiness": "Windows Hello for Business",
- "windowsSpotlight": "Windows-Blickpunkt",
- "wiredNetwork": "Kabelgebundenes Netzwerk",
- "wireless": "Drahtlosnetzwerke",
- "wirelessProjection": "Drahtlose Projektion",
- "workProfile": "Arbeitsprofileinstellungen",
- "workProfilePassword": "Arbeitsprofilkennwort",
- "xboxServices": "Xbox-Dienste",
- "zebraMx": "MX-Profil (nur Zebra)",
- "complianceActionsLabel": "Aktionen bei Inkompatibilität"
- },
- "MicrosoftEdgeChannel": {
- "beta": "Beta",
- "dev": "Dev",
- "stable": "Stable"
- },
- "ConfigurationTypes": {
- "Table": {
- "androidDeviceOwnerGeneral": "Geräteeinschränkungen (Gerätebesitzer)",
- "androidForWorkGeneral": "Geräteeinschränkungen (Arbeitsprofil)"
- },
- "androidCustom": "Benutzerdefiniert",
- "androidDeviceOwnerGeneral": "Geräteeinschränkungen",
- "androidDeviceOwnerPkcs": "PKCS-Zertifikat",
- "androidDeviceOwnerScep": "SCEP-Zertifikat",
- "androidDeviceOwnerTrustedCertificate": "Vertrauenswürdiges Zertifikat",
- "androidDeviceOwnerVpn": "VPN",
- "androidDeviceOwnerWiFi": "WLAN",
- "androidEmailProfile": "E-Mail (nur Samsung KNOX)",
- "androidForWorkCustom": "Benutzerdefiniert",
- "androidForWorkEmailProfile": "E-Mail",
- "androidForWorkGeneral": "Geräteeinschränkungen",
- "androidForWorkImportedPFX": "Importiertes PKCS-Zertifikat",
- "androidForWorkOemConfig": "OEMConfig",
- "androidForWorkPKCS": "PKCS-Zertifikat",
- "androidForWorkSCEP": "SCEP-Zertifikat",
- "androidForWorkTrustedCertificate": "Vertrauenswürdiges Zertifikat",
- "androidForWorkVpn": "VPN",
- "androidForWorkWiFi": "WLAN",
- "androidGeneral": "Geräteeinschränkungen",
- "androidImportedPFX": "Importiertes PKCS-Zertifikat",
- "androidPKCS": "PKCS-Zertifikat",
- "androidSCEP": "SCEP-Zertifikat",
- "androidTrustedCertificate": "Vertrauenswürdiges Zertifikat",
- "androidVPN": "VPN",
- "androidWiFi": "WLAN",
- "androidZebraMx": "MX-Profil (nur Zebra)",
- "complianceAndroid": "Android-Kompatibilitätsrichtlinie",
- "complianceAndroidDeviceOwner": "Vollständig verwaltetes, dediziertes und unternehmenseigenes Arbeitsprofil",
- "complianceAndroidEnterprise": "Arbeitsprofil \"Persönliches Eigentum\"",
- "complianceAndroidForWork": "Android for Work-Kompatibilitätsrichtlinie",
- "complianceIos": "iOS-Konformitätsrichtlinie",
- "complianceMac": "Mac-Kompatibilitätsrichtlinie",
- "complianceWindows10": "Compliancerichtlinie für Windows 10 und höher",
- "complianceWindows10Mobile": "Windows 10 Mobile-Kompatibilitätsrichtlinie",
- "complianceWindows8": "Windows 8-Kompatibilitätsrichtlinie",
- "complianceWindowsPhone": "Windows Phone-Kompatibilitätsrichtlinie",
- "exchangeActiveSync": "Exchange Active Sync",
- "iosCustom": "Benutzerdefiniert",
- "iosDerivedCredentialAuthenticationConfiguration": "Abgeleitete PIV-Anmeldeinformationen",
- "iosDeviceFeatures": "Gerätefunktionen",
- "iosEDU": "Bildung",
- "iosEducation": "Bildung",
- "iosEmailProfile": "E-Mail",
- "iosGeneral": "Geräteeinschränkungen",
- "iosImportedPFX": "Importiertes PKCS-Zertifikat",
- "iosPKCS": "PKCS-Zertifikat",
- "iosPresets": "Voreinstellungen",
- "iosSCEP": "SCEP-Zertifikat",
- "iosTrustedCertificate": "Vertrauenswürdiges Zertifikat",
- "iosVPN": "VPN",
- "iosVPNZscaler": "VPN",
- "iosWiFi": "WLAN",
- "macCustom": "Benutzerdefiniert",
- "macDeviceFeatures": "Gerätefunktionen",
- "macEndpointProtection": "Endpoint Protection",
- "macExtensions": "Erweiterungen",
- "macGeneral": "Geräteeinschränkungen",
- "macImportedPFX": "Importiertes PKCS-Zertifikat",
- "macSCEP": "SCEP-Zertifikat",
- "macTrustedCertificate": "Vertrauenswürdiges Zertifikat",
- "macVPN": "VPN",
- "macWiFi": "WLAN",
- "settingsCatalog": "Einstellungskatalog (Vorschau)",
- "unsupported": "Nicht unterstützt",
- "windows10AdministrativeTemplate": "Administrative Vorlagen (Vorschau)",
- "windows10Atp": "Microsoft Defender für Endpunkt (Desktopgeräte, auf denen Windows 10 oder höher ausgeführt wird)",
- "windows10Custom": "Benutzerdefiniert",
- "windows10DesktopSoftwareUpdate": "Softwareupdates",
- "windows10DeviceFirmwareConfigurationInterface": "Schnittstelle zur Konfiguration der Gerätefirmware",
- "windows10EmailProfile": "E-Mail",
- "windows10EndpointProtection": "Endpoint Protection",
- "windows10EnterpriseDataProtection": "Windows Information Protection",
- "windows10General": "Geräteeinschränkungen",
- "windows10ImportedPFX": "Importiertes PKCS-Zertifikat",
- "windows10Kiosk": "Kiosk",
- "windows10NetworkBoundary": "Netzwerkgrenze",
- "windows10PKCS": "PKCS-Zertifikat",
- "windows10PolicyOverride": "Gruppenrichtlinie außer Kraft setzen",
- "windows10SCEP": "SCEP-Zertifikat",
- "windows10SecureAssessmentProfile": "Education-Profil",
- "windows10SharedPC": "Freigegebenes, von mehreren Benutzern verwendetes Gerät",
- "windows10TeamGeneral": "Geräteeinschränkungen (Windows 10 Team)",
- "windows10TrustedCertificate": "Vertrauenswürdiges Zertifikat",
- "windows10VPN": "VPN",
- "windows10WiFi": "WLAN",
- "windows10WiFiCustom": "WLAN (benutzerdefiniert)",
- "windows8General": "Geräteeinschränkungen",
- "windows8SCEP": "SCEP-Zertifikat",
- "windows8TrustedCertificate": "Vertrauenswürdiges Zertifikat",
- "windows8VPN": "VPN",
- "windows8WiFi": "WLAN (Import)",
- "windowsDeliveryOptimization": "Übermittlungsoptimierung",
- "windowsDomainJoin": "Domänenbeitritt",
- "windowsEditionUpgrade": "Editionsupgrade und Moduswechsel",
- "windowsIdentityProtection": "Identity Protection",
- "windowsPhoneCustom": "Benutzerdefiniert",
- "windowsPhoneEmailProfile": "E-Mail",
- "windowsPhoneGeneral": "Geräteeinschränkungen",
- "windowsPhoneImportedPFX": "Importiertes PKCS-Zertifikat",
- "windowsPhoneSCEP": "SCEP-Zertifikat",
- "windowsPhoneTrustedCertificate": "Vertrauenswürdiges Zertifikat",
- "windowsPhoneVPN": "VPN",
- "IosUpdate": "Richtlinie für iOS-Updates"
- },
- "WindowsEnrollment": {
- "coManagementAuthorityDesc": "Hiermit werden Co-Verwaltungseinstellungen für die Configuration Manager-Integration konfiguriert.",
- "coManagementAuthorityTitle": "Einstellungen für die Co-Verwaltung",
- "deploymentProfiles": "Windows AutoPilot Deployment-Profile",
- "description": "Erfahren Sie mehr über die sieben verschiedenen Möglichkeiten, wie ein Windows 10/11-PC von Benutzern oder Administratoren bei Intune registriert werden kann.",
- "descriptionLabel": "Windows-Registrierungsmethoden",
- "enrollmentStatusPage": "Seite \"Registrierungsstatus\""
- },
- "Platform": {
- "all": "Alle",
- "android": "Android-Geräteadministrator",
- "androidAOSP": "Android (AOSP)",
- "androidEnterprise": "Android Enterprise",
- "androidForWork": "Android Enterprise",
- "androidWorkProfile": "Android Enterprise",
- "common": "Allgemein",
- "iOS": "iOS/iPadOS",
- "iosAndAndroidPlatformLabel": "iOS und Android",
- "iosCommaAndroidPlatformLabel": "iOS, Android",
- "linux": "Linux",
- "macOS": "macOS",
- "unknown": "Unbekannt",
- "unsupported": "Nicht unterstützt",
- "windows": "Windows",
- "windows10": "Windows 10 und höher",
- "windows10CM": "Windows 10 und höher (ConfigMgr)",
- "windows10Holo": "Windows 10 Holographic",
- "windows10Mobile": "Windows 10 Mobile",
- "windows10Team": "Windows 10 Team",
- "windows10X": "Windows 10X",
- "windows8": "Windows 8.1 und höher",
- "windows8And10": "Windows 8 und 10",
- "windowsPhone": "Windows Phone 8.1",
- "windows10AndLater": "Windows 10 und höher",
- "windows10AndWindowsServer": "Windows 10, Windows 11 und Windows Server (Configuration Manager)",
- "windows10andLaterCM": "Windows 10 und höher (ConfigMgr)",
- "holoLens": "HoloLens",
- "surfaceHub2": "Surface Hub 2",
- "surfaceHub2S": "Surface Hub 2S",
- "windowsPC": "Windows-PC"
- },
- "EnrollmentRestrictions": {
- "DeletePayloadLink": {
- "content": "\"{0}\" ist in mindestens einem Richtliniensatz enthalten. Wenn Sie \"{0}\" löschen, können Sie das Profil nicht mehr über diese Richtliniensätze zuweisen. Dennoch löschen?",
- "contentWithError": "\"{0}\" ist möglicherweise in mindestens einem Richtliniensatz enthalten. Wenn Sie \"{0}\" löschen, können Sie sie nicht mehr über diese Richtliniensätze zuweisen. Dennoch löschen?",
- "header": "Möchten Sie diese Einschränkung löschen?"
- },
- "DeviceLimit": {
- "description": "Legt die maximale Anzahl von Geräten fest, die ein Benutzer registrieren kann.",
- "header": "Einschränkungen zum Gerätelimit",
- "info": "Definieren Sie, wie viele Geräte jeder Benutzer registrieren darf."
- },
- "DeviceType": {
- "VersionValidation": {
- "aOSP": "1.0 oder höher erforderlich.",
- "android": "Geben Sie eine gültige Versionsnummer ein. Beispiele: 5.0, 5.5.1, 6.0.0.1",
- "androidForWork": "Geben Sie eine gültige Versionsnummer ein. Beispiele: 5.0, 5.1.1",
- "iOS": "Geben Sie eine gültige Versionsnummer ein. Beispiele: 9.0, 10.0, 9.0.2",
- "mac": "Geben Sie eine gültige Versionsnummer ein. Beispiele: 10, 10.10, 10.10.1",
- "min": "Der Mindestwert darf nicht unter {0} liegen.",
- "minMax": "Die Mindestversion darf nicht höher als die maximale Version sein.",
- "windows": "Version 10.0 oder höher erforderlich. Lassen Sie die Einstellung leer, um 8.1-Geräte zuzulassen.",
- "windowsMobile": "Version 10.0 oder höher erforderlich. Lassen Sie die Einstellung leer, um 8.1-Geräte zuzulassen."
- },
- "allPlatformsBlocked": "Alle Geräteplattformen sind blockiert. Lassen Sie die Plattformregistrierung zu, um die Plattformkonfiguration zu aktivieren.",
- "blockManufacturerPlaceHolder": "Herstellername",
- "blockManufacturersHeader": "Blockierte Hersteller",
- "cannotRestrict": "Einschränkung nicht unterstützt",
- "configurationDescription": "Legt die Einschränkungen in Bezug auf Plattformkonfigurationen fest, die für ein Gerät erfüllt werden müssen, damit das Gerät registriert werden kann. Verwenden Sie Konformitätsrichtlinien, um Geräte nach der Registrierung einzuschränken. Definieren Sie Versionen als \"Hauptversion.Nebenversion.Build\". Versionseinschränkungen gelten nur für Geräte, die beim Unternehmensportal registriert sind. Intune stuft Geräte standardmäßig als privat ein. Um Geräte als unternehmenseigen zu klassifizieren, sind zusätzliche Aktionen erforderlich.",
- "configurationDescriptionLabel": "Weitere Informationen zum Festlegen von Registrierungseinschränkungen",
- "configurations": "Plattformen konfigurieren",
- "deviceManufacturer": "Gerätehersteller",
- "header": "Einschränkungen zum Gerätetyp",
- "info": "Definieren Sie, welche Plattformen, Versionen und Verwaltungstypen eine Registrierung durchführen können.",
- "manufacturer": "Hersteller",
- "max": "Max.",
- "maxVersion": "Höchste zulässige Version",
- "min": "Min",
- "minVersion": "Mindestversion",
- "newPlatforms": "Es sind neue zugelassene Plattformen verfügbar. Erwägen Sie eine Aktualisierung der Plattformkonfigurationen.",
- "personal": "Persönliches Eigentum",
- "platform": "Plattform",
- "platformDescription": "Sie können die Registrierung der folgenden Plattformen zulassen. Nur blockierte Plattformen werden nicht unterstützt. Zugelassen Plattformen können mit zusätzlichen Registrierungsbeschränkungen konfiguriert werden.",
- "platformSettings": "Plattformeinstellungen",
- "platforms": "Plattformen auswählen",
- "platformsSelected": "{0} Plattformen ausgewählt",
- "type": "Typ",
- "versions": "Versionen",
- "versionsRange": "Zulässiger Bereich für Mindestversion/maximale Version:",
- "windowsTooltip": "Schränkt die Registrierung über mobile Geräteverwaltung ein. Schränkt die Installation des PC-Agents nicht ein. Nur Windows 10- und Windows 11-Versionen werden unterstützt. Lassen Sie die Versionen leer, um Windows 8.1 zuzulassen."
- },
- "Priority": {
- "saved": "Die Einschränkungsprioritäten wurden erfolgreich gespeichert."
- },
- "Row": {
- "announce": "Priorität: {0}, Name: {1}, zugewiesen: {2}"
- },
- "Table": {
- "deployed": "Bereitgestellt",
- "name": "Name",
- "priority": "Priorität"
- },
- "Type": {
- "limit": "Gerätelimiteinschränkung",
- "type": "Gerätetypeinschränkung"
- },
- "allUsers": "Alle Benutzer",
- "androidRestrictions": "Android-Einschränkungen",
- "create": "Einschränkung erstellen",
- "defaultLimitDescription": "Dies ist die Standardeinschränkung des Gerätelimits, die mit der niedrigsten Priorität unabhängig von der Gruppenmitgliedschaft auf alle Benutzer angewendet wird.",
- "defaultTypeDescription": "Dies ist die Standardeinschränkung des Gerätetyps, die mit der niedrigsten Priorität unabhängig von der Gruppenmitgliedschaft auf alle Benutzer angewendet wird.",
- "defaultWhfbDescription": "Dies ist die Windows Hello for Business-Standardkonfiguration, die mit der niedrigsten Priorität unabhängig von der Gruppenmitgliedschaft auf alle Benutzer angewendet wird.",
- "deleteMessage": "Für betroffene Benutzer gilt die Einschränkung der nächsthöheren Priorität. Wenn keine weitere Einschränkung zugewiesen ist, wird die Standardeinschränkung angewendet.",
- "deleteTitle": "Möchten Sie die Einschränkung \"{0}\" löschen?",
- "descriptionHint": "Kurzer Absatz zur Beschreibung der Unternehmensnutzung oder der Einschränkungsebene, die durch die Einstellungen der Einschränkung definiert wird.",
- "edit": "Einschränkung bearbeiten",
- "info": "Ein Gerät muss die Registrierungsbeschränkungen mit der höchsten Priorität erfüllen, die dem Benutzer zugeordnet wurden. Sie können eine Gerätebeschränkung ziehen, um ihre Priorität zu ändern. Standardbeschränkungen weisen für alle Benutzer die niedrigste Priorität auf und dienen zur Steuerung benutzerloser Registrierungen. Standardbeschränkungen können bearbeitet, aber nicht gelöscht werden.",
- "iosRestrictions": "iOS-Einschränkungen",
- "mDM": "MDM",
- "macRestrictions": "MacOS-Einschränkungen",
- "maxVersion": "Maximalversion",
- "minVersion": "Mindestversion",
- "nameHint": "Dies ist das primäre Attribut, das zur Identifikation des Einschränkungssatzes angezeigt wird.",
- "noAssignmentsStatusBar": "Weisen Sie die Einschränkung mindestens einer Gruppe zu. Klicken Sie auf \"Eigenschaften\".",
- "notFound": "Die Einschränkung wurde nicht gefunden. Möglicherweise wurde es bereits gelöscht.",
- "personallyOwned": "Geräte im Privatbesitz",
- "restriction": "Einschränkung",
- "restrictionLowerCase": "Einschränkung",
- "restrictionType": "Restriction Type",
- "selectType": "Einschränkungstyp auswählen",
- "selectValidation": "Wählen Sie eine Plattform aus.",
- "typeHint": "Wählen Sie \"Gerätetypeinschränkung\" aus, um Geräteeigenschaften einzuschränken. Wählen Sie \"Gerätelimiteinschränkung\" aus, um die Anzahl von Geräten pro Benutzer einzuschränken.",
- "typeRequired": "Der Einschränkungstyp ist erforderlich.",
- "winPhoneRestrictions": "Windows Phone-Einschränkungen",
- "windowsRestrictions": "Windows-Einschränkungen"
- },
- "Titles": {
- "ChromeOs": {
- "devices": "Chrome OS-Geräte"
- },
- "ManagedDesktop": {
- "adminContacts": "Administratorkontakte",
- "appPackaging": "App-Paketierung",
- "devices": "Geräte",
- "feedback": "Feedback",
- "gettingStarted": "Erste Schritte",
- "messages": "Meldungen",
- "onlineResources": "Onlineressourcen",
- "serviceRequests": "Service Requests",
- "settings": "Einstellungen",
- "tenantEnrollment": "Mandantenregistrierung"
- },
- "actions": "Aktionen bei Inkompatibilität",
- "advancedExchangeSettings": "Exchange Online-Einstellungen",
- "advancedThreatProtection": "Microsoft Defender für Endpunkt",
- "allApps": "Alle Apps",
- "allDevices": "Alle Geräte",
- "androidFotaDeployments": "Android FOTA-Bereitstellungen",
- "appBundles": "App-Bundles",
- "appCategories": "App-Kategorien",
- "appConfigPolicies": "App-Konfigurationsrichtlinien",
- "appInstallStatus": "App-Installationsstatus",
- "appLicences": "App-Lizenzen",
- "appProtectionPolicies": "App-Schutzrichtlinien",
- "appProtectionStatus": "Status des App-Schutzes",
- "appSelectiveWipe": "Selektive App-Zurücksetzung",
- "appleVppTokens": "Apple-VPP-Token",
- "apps": "Apps",
- "assign": "Zuweisungen",
- "assignedPermissions": "Zugewiesene Berechtigungen",
- "assignedRoles": "Zugewiesene Rollen",
- "autopilotDeploymentReport": "Autopilot-Bereitstellungen (Vorschau)",
- "brandingAndCustomization": "Anpassung",
- "cartProfiles": "Warenkorbprofile",
- "certificateConnectors": "Zertifikatconnectors",
- "chromeEnterprise": "Chrome Enterprise",
- "compliancePolicies": "Konformitätsrichtlinien",
- "complianceScriptManagement": "Skripts",
- "complianceScriptManagementPreview": "Skripts (Vorschau)",
- "complianceSettings": "Einstellungen für Kompatibilitätsrichtlinie",
- "conditionStatements": "Bedingungsaussagen",
- "conditions": "Speicherorte",
- "configMgr": "Microsoft Endpoint Configuration Manager",
- "configurationProfiles": "Konfigurationsprofile",
- "configurationProfilesPreview": "Konfigurationsprofile (Vorschau)",
- "connectorsAndTokens": "Connectors und Token",
- "corporateDeviceIdentifiers": "Bezeichner von Unternehmensgeräten",
- "customAttributes": "Benutzerdefinierte Attribute",
- "customNotifications": "Benutzerdefinierte Benachrichtigungen",
- "deploymentSettings": "Bereitstellungseinstellungen",
- "derivedCredentials": "Abgeleitete Anmeldeinformationen",
- "deviceActions": "Geräteaktionen",
- "deviceCategories": "Gerätekategorien",
- "deviceCleanUp": "Regeln für die Gerätebereinigung",
- "deviceEnrollmentManagers": "Geräteregistrierungs-Manager",
- "deviceExecutionStatus": "Gerätestatus",
- "deviceLimitEnrollmentRestrictions": "Registrierungseinschränkungen – Gerätelimit",
- "deviceTypeEnrollmentRestrictions": "Registrierungseinschränkungen – Geräteplattform",
- "devices": "Geräte",
- "discoveredApps": "Ermittelte Apps",
- "embeddedSIM": "eSIM-Mobilfunkprofile (Vorschau)",
- "enrollDevices": "Geräte registrieren",
- "enrollmentFailures": "Registrierungsfehler",
- "enrollmentNotifications": "Registrierungsbenachrichtigungen (Vorschau)",
- "enrollmentRestrictions": "Registrierungsbeschränkungen",
- "exchangeActiveSync": "Exchange ActiveSync",
- "exchangeServiceConnectors": "Exchange-Dienstconnectors",
- "failuresForFeatureUpdates": "Fehler bei Featureupdate (Vorschau)",
- "failuresForQualityUpdates": "Fehler bei beschleunigten Windows-Updates (Vorschau)",
- "featureFlighting": "Feature-Flighting",
- "featureUpdateDeployments": "Featureupdates für Windows 10 und höher (Vorschau)",
- "flighting": "Test-Flighting",
- "fotaUpdate": "Firmware-Over-the-Air-Update",
- "groupPolicy": "Administrative Vorlagen",
- "groupPolicyAnalytics": "Analyse von Gruppenrichtlinien",
- "helpSupport": "Hilfe und Support",
- "helpSupportReplacement": "Hilfe und Support ({0})",
- "iOSAppProvisioning": "iOS-App-Bereitstellungsprofile",
- "incompleteUserEnrollments": "Unvollständige Benutzerregistrierungen",
- "intuneRemoteAssistance": "Remotehilfe (Vorschau)",
- "iosUpdates": "Richtlinien für iOS/iPadOS aktualisieren",
- "legacyPcManagement": "Legacy-PC-Verwaltung",
- "macOSSoftwareUpdate": "Updaterichtlinien für macOS",
- "macOSSoftwareUpdateAccountSummaries": "Installationsstatus für macOS-Geräte",
- "macOSSoftwareUpdateCategorySummaries": "Zusammenfassung der Softwareupdates",
- "macOSSoftwareUpdateStateSummaries": "Updates",
- "managedGooglePlay": "Verwaltetes Google Play",
- "msfb": "Microsoft Store für Unternehmen",
- "myPermissions": "Meine Berechtigungen",
- "notifications": "Benachrichtigungen",
- "officeApps": "Office-Apps",
- "officeProPlusPolicies": "Richtlinien für Office-Apps",
- "onPremise": "Lokal",
- "onPremisesConnector": "Lokaler Connector für Exchange ActiveSync",
- "onPremisesDeviceAccess": "Exchange ActiveSync-Geräte",
- "onPremisesManageAccess": "Zugriff auf Exchange lokal",
- "outOfDateIosDevices": "Installationsfehler für iOS-Geräte",
- "overview": "Übersicht",
- "partnerDeviceManagement": "Partnergeräteverwaltung",
- "perUpdateRingDeploymentState": "Bereitstellungsstatus pro Updatering",
- "permissions": "Berechtigungen",
- "platformApps": "{0} Apps",
- "platformDevices": "{0} Geräte",
- "platformEnrollment": "{0}-Registrierung",
- "policies": "Richtlinien",
- "previewMDMDevices": "Alle verwalteten Geräte (Vorschau)",
- "profiles": "Profile",
- "properties": "Eigenschaften",
- "reports": "Berichte",
- "retireNoncompliantDevices": "Nicht konforme Geräte abkoppeln",
- "retireNoncompliantDevicesPreview": "Retire noncompliant devices (preview)",
- "role": "Rolle",
- "scriptManagement": "Skripts",
- "securityBaselines": "Sicherheitsbaselines",
- "serviceToServiceConnector": "Exchange Online-Connector",
- "shellScripts": "Shellskripts",
- "teamViewerConnector": "TeamViewer-Connector",
- "telecomeExpenseManagement": "Telecom Expense Management",
- "tenantAdmin": "Mandantenadministrator",
- "tenantAdministration": "Mandantenverwaltung",
- "termsAndConditions": "Geschäftsbedingungen",
- "titles": "Titel",
- "troubleshootSupport": "Problembehandlung + Support",
- "user": "Benutzer",
- "userExecutionStatus": "Benutzerstatus",
- "warranty": "Garantieanbieter",
- "wdacSupplementalPolicies": "Zusätzliche S Modus-Richtlinien",
- "windows10DriverUpdate": "Treiberupdates für Windows 10 und höher (Vorschau)",
- "windows10QualityUpdate": "Qualitätsupdates für Windows 10 und höher (Vorschau)",
- "windows10UpdateRings": "Updateringe für Windows 10 und höher",
- "windows10XPolicyFailures": "Windows 10X-Richtlinienfehler",
- "windowsEnterpriseCertificate": "Windows Enterprise-Zertifikat",
- "windowsManagement": "PowerShell-Skripts",
- "windowsSideLoadingKeys": "Windows-Schlüssel zum Querladen",
- "windowsSymantecCertificate": "Windows-DigiCert-Zertifikat",
- "windowsThreatReport": "Status des Bedrohungs-Agents"
- },
- "ScopeTypes": {
- "allDevices": "Alle Geräte",
- "allUsers": "Alle Benutzer",
- "allUsersAndDevices": "Alle Benutzer und alle Geräte",
- "selectedGroups": "Ausgewählte Gruppen"
- },
- "DetectionRules": {
- "ComparisonOperators": {
- "equals": "Ist gleich",
- "greaterThan": "Größer als",
- "greaterThanOrEqualTo": "Größer oder gleich",
- "lessThan": "Kleiner als",
- "lessThanOrEqualTo": "Kleiner oder gleich",
- "notEqualTo": "Ungleich"
- },
- "CustomScript": {
- "enforceSignatureCheck": "Überprüfung der Skriptsignatur erzwingen und Skript unbeaufsichtigt ausführen",
- "enforceSignatureCheckTooltip": "Wählen Sie \"Ja\", um sicherzustellen, dass das Skript von einem vertrauenswürdigen Herausgeber signiert ist, damit das Skript ohne Warnungen oder Anzeige von Benutzeraufforderungen ausgeführt werden kann. Das Skript wird ohne Blockierung ausgeführt. Wählen Sie \"Nein\" (Standardeinstellung) aus, um das Skript mit Benutzerbestätigung ohne Signaturüberprüfung auszuführen.",
- "header": "Benutzerdefiniertes Skript für die Erkennung verwenden",
- "runAs32Bit": "Skript auf 64-Bit-Clients als 32-Bit-Prozess ausführen",
- "runAs32BitTooltip": "Wählen Sie \"Ja\", um das Skript auf 64-Bit-Clients in einem 32-Bit-Prozess auszuführen. Wählen Sie \"Nein\" (Standardeinstellung) aus, um das Skript auf 64-Bit-Clients in einem 64-Bit-Prozess auszuführen. 32-Bit-Clients führen das Skript in einem 32-Bit-Prozess aus.",
- "scriptFile": "Skriptdatei",
- "scriptFileNotSelectedValidation": "Keine Skriptdatei ausgewählt.",
- "scriptFileTooltip": "Wählen Sie ein PowerShell-Skript aus, mit dem das Vorhandensein der App auf dem Client erkannt wird. Die App wird erkannt, wenn das Skript den Wert 0 als Exitcode zurückgibt und einen Zeichenfolgenwert in STDOUT schreibt."
- },
- "Manual": {
- "FileRule": {
- "DetectionMethodOptions": {
- "dateCreated": "Erstellungsdatum",
- "dateModified": "Änderungsdatum",
- "doesNotExist": "Datei oder Ordner nicht vorhanden.",
- "fileOrFolderExists": "Datei oder Ordner ist vorhanden",
- "sizeInMB": "Größe in MB",
- "version": "Zeichenfolge (Version)"
- },
- "associatedWith32Bit": "Auf 64-Bit-Clients einer 32-Bit-App zugeordnet",
- "associatedWith32BitTooltip": "Wählen Sie \"Ja\", um Pfadumgebungsvariablen auf 64-Bit-Clients im 32-Bit-Kontext zu erweitern. Wählen Sie \"Nein\" (Standardeinstellung) aus, um Pfadvariablen auf 64-Bit-Clients im 64-Bit-Kontext zu erweitern. 32-Bit-Clients verwenden immer den 32-Bit-Kontext.",
- "detectionMethod": "Erkennungsmethode",
- "detectionMethodTooltip": "Wählen Sie den Typ der Erkennungsmethode aus, um das Vorhandensein der App zu überprüfen.",
- "fileOrFolder": "Datei oder Ordner",
- "fileOrFolderToolTip": "Die Datei oder der Ordner für die Erkennung.",
- "operator": "Operator",
- "operatorTooltip": "Wählen Sie den Operator für die Erkennungsmethode zum Überprüfen des Vergleichs aus.",
- "path": "Pfad",
- "pathTooltip": "Der vollständige Pfad des Ordners, der die Datei oder den Order für die Ermittlung enthält.",
- "value": "Wert",
- "valueTooltip": "Wählen Sie einen Wert aus, der der ausgewählten Erkennungsmethode entspricht. Datumserkennungsmethoden müssen in lokaler Zeit eingegeben werden."
- },
- "GridColumns": {
- "pathOrCode": "Pfad/Code",
- "type": "Typ"
- },
- "MsiRule": {
- "operator": "Operator",
- "operatorTooltip": "Wählen Sie den Operator für den Vergleich zur MSI-Produktversionsüberprüfung aus.",
- "productCode": "MSI-Produktcode",
- "productCodeTooltip": "Ein gültiger MSI-Produktcode für die App.",
- "productVersion": "Wert",
- "productVersionCheck": "Überprüfung der MSI-Produktversion",
- "productVersionCheckTooltip": "Wählen Sie \"Ja\", um zusätzlich zum MSI-Produktcode die MSI-Produktversion zu überprüfen.",
- "productVersionTooltip": "Geben Sie die MSI-Produktversion für die App ein."
- },
- "RegistryRule": {
- "DetectionMethodOptions": {
- "integerComparison": "Ganzzahlenvergleich",
- "keyDoesNotExist": "Schlüssel nicht vorhanden",
- "keyExists": "Schlüssel vorhanden",
- "stringComparison": "Zeichenfolgenvergleich",
- "valueDoesNotExist": "Wert nicht vorhanden",
- "valueExists": "Wert vorhanden",
- "versionComparison": "Versionsvergleich"
- },
- "associatedWith32Bit": "Auf 64-Bit-Clients einer 32-Bit-App zugeordnet",
- "associatedWith32BitTooltip": "Wählen Sie \"Ja\", um auf 64-Bit-Clients die 32-Bit-Registrierung zu durchsuchen. Wählen Sie \"Nein\" (Standardeinstellung) aus, um auf 64-Bit-Clients die 64-Bit-Registrierung zu durchsuchen. 32-Bit-Clients durchsuchen immer die 32-Bit-Registrierung.",
- "detectionMethod": "Erkennungsmethode",
- "detectionMethodTooltip": "Wählen Sie den Typ der Erkennungsmethode aus, um das Vorhandensein der App zu überprüfen.",
- "keyPath": "Schlüsselpfad",
- "keyPathTooltip": "Der vollständige Pfad des Registrierungseintrags mit dem Wert, der erkannt werden soll.",
- "operator": "Operator",
- "operatorTooltip": "Wählen Sie den Operator für die Erkennungsmethode zum Überprüfen des Vergleichs aus.",
- "value": "Wert",
- "valueName": "Wertname",
- "valueNameTooltip": "Der Name des Registrierungswerts, der erkannt werden soll.",
- "valueTooltip": "Wählen Sie einen Wert aus, der mit der ausgewählten Erkennungsmethode übereinstimmt."
- },
- "RuleTypeOptions": {
- "file": "Datei",
- "mSI": "MSI",
- "registry": "Registrierung"
- },
- "gridAriaLabel": "Erkennungsregeln",
- "header": "Erstellen Sie eine Regel, die das Vorhandensein dieser App anzeigt.",
- "noRulesSelectedPlaceholder": "Keine Regeln angegeben.",
- "ruleTableLimit": "Sie können bis zu 25 Erkennungsregeln hinzufügen.",
- "ruleType": "Regeltyp",
- "ruleTypeTooltip": "Wählen Sie den Typ der hinzuzufügenden Erkennungsregel aus."
- },
- "RuleConfigurationOptions": {
- "customScript": "Benutzerdefiniertes Skript für die Erkennung verwenden",
- "manual": "Erkennungsregeln manuell konfigurieren"
- },
- "bladeTitle": "Erkennungsregeln",
- "header": "Konfigurieren Sie App-spezifische Regeln zum Erkennen des Vorhandenseins der App.",
- "rulesFormat": "Regelformat",
- "rulesFormatTooltip": "Konfigurieren Sie die Erkennungsregeln entweder manuell, oder verwenden Sie ein benutzerdefiniertes Skript, um das Vorhandensein der App zu erkennen.",
- "selectorLabel": "Erkennungsregeln"
- },
- "AppType": {
- "androidEnterpriseSystemApp": "Android Enterprise-System-App",
- "androidForWorkApp": "Verwaltete Google Play Store-App",
- "androidLobApp": "Branchenspezifische Android-App",
- "androidStoreApp": "Android Store-App",
- "builtInAndroid": "Integrierte Android-App",
- "builtInApp": "Integrierte App",
- "builtInIos": "Integrierte iOS-App",
- "default": "",
- "iosLobApp": "Branchenspezifische iOS-App",
- "iosStoreApp": "iOS Store-App",
- "iosVppApp": "iOS Volume Purchase Program-App",
- "lineOfBusinessApp": "Branchenspezifische App",
- "macOSDmgApp": "macOS-App (DMG)",
- "macOSEdgeApp": "Microsoft Edge (macOS)",
- "macOSLobApp": "Branchenspezifische macOS-App",
- "macOSMdatpApp": "Microsoft Defender ATP (macOS)",
- "macOSOfficeSuiteApp": "Microsoft 365-Apps (macOS)",
- "macOsVppApp": "macOS-Volume Purchase Program-App",
- "managedAndroidLobApp": "Verwaltete branchenspezifische Android-App",
- "managedAndroidStoreApp": "Verwaltete Android Store-App",
- "managedGooglePlayApp": "Verwaltete Google Play Store-App",
- "managedGooglePlayPrivateApp": "Private verwaltete Google Play-App",
- "managedGooglePlayWebApp": "Weblink für verwaltetes Google Play",
- "managedIosLobApp": "Verwaltete branchenspezifische iOS-App",
- "managedIosStoreApp": "Verwaltete iOS Store-App",
- "microsoftStoreForBusinessApp": "Microsoft Store für Unternehmen-App",
- "microsoftStoreForBusinessReleaseManagedApp": "Microsoft Store für Unternehmen",
- "officeSuiteApp": "Microsoft 365 Apps (Windows 10 und höher)",
- "webApp": "Weblink",
- "windowsAppXLobApp": "Branchenspezifische Windows-APPX-App",
- "windowsClassicApp": "Windows-App (Win32)",
- "windowsEdgeApp": "Microsoft Edge (Windows 10 und höher)",
- "windowsMobileMsiLobApp": "Branchenspezifische Windows MSI-App",
- "windowsPhone81AppXBundleLobApp": "Branchenspezifische Windows Phone 8.1-APPX-App",
- "windowsPhone81AppXLobApp": "Branchenspezifische Windows Phone 8.1-APPX-App",
- "windowsPhone81StoreApp": "Windows Phone 8.1 Store-App",
- "windowsPhoneXapLobApp": "Branchenspezifische Windows Phone-XAP-App",
- "windowsStoreApp": "Microsoft Store-App",
- "windowsUniversalAppXLobApp": "Branchenspezifische Windows Universal-APPX-App",
- "windowsUniversalLobApp": "Branchenspezifische Windows Universal-App"
- },
- "PolicyType": {
- "AttackSurfaceReductionRules": {
- "configMgr": "Regeln zur Verringerung der Angriffsfläche (ConfigMgr)"
- },
- "EndpointDetectionandResponse": {
- "mDE": "Endpunkterkennung und -antwort"
- },
- "EndpointSecurityTemplate": {
- "aSRAppBrowserSecurity": "App- und Browserisolierung",
- "aSRApplicationControl": "Anwendungssteuerung",
- "aSRAttackSurfaceReduction": "Regeln zur Verringerung der Angriffsfläche",
- "aSRDeviceControl": "Gerätesteuerung",
- "aSRExploitProtection": "Exploit-Schutz",
- "aSRWebProtection": "Webschutz (Microsoft Edge-Legacyversion)",
- "aVExclusions": "Microsoft Defender Antivirus-Ausschlüsse",
- "antivirus": "Microsoft Defender Antivirus",
- "cloudPC": "Windows 365-Sicherheitsbaseline",
- "default": "Endpunktsicherheit",
- "defenderTest": "Microsoft Defender für Endpunkt-Demo",
- "diskEncryption": "BitLocker",
- "eDR": "Endpunkterkennung und -antwort",
- "edgeSecurityBaseline": "Microsoft Edge-Baseline",
- "edgeSecurityBaselinePreview": "Vorschau: Microsoft Edge-Baseline",
- "editionUpgradeConfiguration": "Editionsupgrade und Moduswechsel",
- "firewall": "Microsoft Defender Firewall",
- "firewallRules": "Microsoft Defender Firewall-Regeln",
- "identityProtection": "Kontoschutz",
- "identityProtectionPreview": "Kontoschutz (Vorschau)",
- "mDMSecurityBaseline1810": "MDM-Sicherheitsbaseline für Windows 10 und höher für Oktober 2018",
- "mDMSecurityBaseline1810Preview": "Vorschau: MDM-Sicherheitsbaseline für Windows 10 und höher für Oktober 2018",
- "mDMSecurityBaseline1810PreviewBeta": "Vorschau: MDM-Sicherheitsbaseline für Windows 10 für Oktober 2018 (Beta)",
- "mDMSecurityBaseline1906": "MDM-Sicherheitsbaseline für Windows 10 und höher für Mai 2019",
- "mDMSecurityBaseline2004": "MDM-Sicherheitsbaseline für Windows 10 und höher für August 2020",
- "mDMSecurityBaseline2101": "MDM-Sicherheitsbaseline für Windows 10 und höher Dezember 2020",
- "macOSAntivirus": "Antivirus",
- "macOSDiskEncryption": "FileVault",
- "macOSFirewall": "macOS-Firewall",
- "microsoftDefenderBaseline": "Microsoft Defender für Endpunkt-Baseline",
- "office365Baseline": "Microsoft Office O365-Baseline",
- "office365BaselinePreview": "Vorschau: Microsoft Office O365-Baseline",
- "securityBaselines": "Sicherheitsbaselines",
- "test": "Testvorlage",
- "testFirewallRulesSecurityTemplateName": "Microsoft Defender Firewall-Regeln (Test)",
- "testIdentityProtectionSecurityTemplateName": "Kontoschutz (Test)",
- "windowsSecurityExperience": "Windows-Sicherheitsfunktionalität"
- },
- "Firewall": {
- "mDE": "Microsoft Defender Firewall"
- },
- "FirewallRules": {
- "mDE": "Microsoft Defender Firewall-Regeln"
- },
- "administrativeTemplates": "Administrative Vorlagen",
- "androidCompliancePolicy": "Android-Kompatibilitätsrichtlinie",
- "aospDeviceOwnerCompliancePolicy": "Android-Konformitätsrichtlinie (AOSP)",
- "applicationControl": "Anwendungssteuerung",
- "custom": "Benutzerdefiniert",
- "deliveryOptimization": "Übermittlungsoptimierung",
- "derivedPersonalIdentityVerificationCredential": "Abgeleitete Anmeldeinformation",
- "deviceFeatures": "Gerätefunktionen",
- "deviceFirmwareConfigurationInterface": "Schnittstelle zur Konfiguration der Gerätefirmware",
- "deviceLock": "Gerätesperre",
- "deviceOwner": "Vollständig verwaltetes, dediziertes und unternehmenseigenes Arbeitsprofil",
- "deviceRestrictions": "Geräteeinschränkungen",
- "deviceRestrictionsWindows10Team": "Geräteeinschränkungen (Windows 10 Team)",
- "domainJoinPreview": "Domänenbeitritt",
- "editionUpgradeAndModeSwitch": "Editionsupgrade und Moduswechsel",
- "education": "Bildung",
- "email": "E-Mail",
- "emailSamsungKnoxOnly": "E-Mail (nur Samsung KNOX)",
- "endpointProtection": "Endpoint Protection",
- "expeditedCheckin": "Konfiguration der Verwaltung mobiler Geräte",
- "exploitProtection": "Exploit-Schutz",
- "extensions": "Erweiterungen",
- "hardwareConfigurations": "BIOS-Konfigurationen",
- "identityProtection": "Identity Protection",
- "iosCompliancePolicy": "iOS-Konformitätsrichtlinie",
- "kiosk": "Kiosk",
- "macCompliancePolicy": "Mac-Kompatibilitätsrichtlinie",
- "microsoftDefenderAntivirus": "Microsoft Defender Antivirus",
- "microsoftDefenderAntivirusexclusions": "Microsoft Defender Antivirus-Ausschlüsse",
- "microsoftDefenderAtpWindows10Desktop": "Microsoft Defender für Endpunkt (Desktopgeräte, auf denen Windows 10 oder höher ausgeführt wird)",
- "microsoftDefenderFirewallRules": "Microsoft Defender Firewall-Regeln",
- "microsoftEdgeBaseline": "Microsoft Edge-Baseline",
- "mxProfileZebraOnly": "MX-Profil (nur Zebra)",
- "networkBoundary": "Netzwerkgrenze",
- "oemConfig": "OEMConfig",
- "overrideGroupPolicy": "Gruppenrichtlinie außer Kraft setzen",
- "pkcsCertificate": "PKCS-Zertifikat",
- "pkcsImportedCertificate": "Importiertes PKCS-Zertifikat",
- "preferenceFile": "Einstellungsdatei",
- "presets": "Voreinstellungen",
- "scepCertificate": "SCEP-Zertifikat",
- "secureAssessmentEducation": "Sicheres Assessment (Education)",
- "settingsCatalog": "Einstellungskatalog",
- "sharedMultiUserDevice": "Freigegebenes, von mehreren Benutzern verwendetes Gerät",
- "softwareUpdates": "Softwareupdates",
- "trustedCertificate": "Vertrauenswürdiges Zertifikat",
- "unknown": "Unbekannt",
- "unsupported": "Nicht unterstützt",
- "vpn": "VPN",
- "wiFi": "WLAN",
- "wiFiImport": "WLAN (Import)",
- "windows10CompliancePolicy": "Windows 10/11-Konformitätsrichtlinie",
- "windows10MobileCompliancePolicy": "Windows 10 Mobile-Kompatibilitätsrichtlinie",
- "windows10XScep": "SCEP-Zertifikat: TEST",
- "windows10XTrustedCertificate": "Vertrauenswürdiges Zertifikat: TEST",
- "windows10XVPN": "VPN: TEST",
- "windows10XWifi": "WLAN: TEST",
- "windows8CompliancePolicy": "Windows 8-Kompatibilitätsrichtlinie",
- "windowsHealthMonitoring": "Windows-Integritätsüberwachung",
- "windowsInformationProtection": "Windows Information Protection",
- "windowsPhoneCompliancePolicy": "Windows Phone-Kompatibilitätsrichtlinie",
- "windowsUpdateforBusiness": "Windows Update for Business",
- "wiredNetwork": "Kabelgebundenes Netzwerk",
- "workProfile": "Arbeitsprofil \"Persönliches Eigentum\""
- },
- "OfficeSuiteAppsTab": {
- "acceptLicenseOnBehalfOfUsersLabel": "Microsoft-Softwarelizenzbedingungen im Auftrag von Benutzern akzeptieren",
- "appSuiteConfigurationLabel": "App-Suite-Konfiguration",
- "appSuiteInformationLabel": "Informationen zur App-Suite",
- "appsToBeInstalledLabel": "Als Teil der Suite zu installierende Apps",
- "architectureLabel": "Architektur",
- "architectureTooltip": "Hiermit wird definiert, ob auf Geräten die 32-Bit- oder die 64-Bit-Edition von Microsoft 365-Apps installiert wird.",
- "configurationDesignerLabel": "Konfigurations-Designer",
- "configurationFileLabel": "Konfigurationsdatei",
- "configurationSettingsFormatLabel": "Format der Konfigurationseinstellungen",
- "configureAppSuiteLabel": "App-Suite konfigurieren",
- "configuredLabel": "Konfiguriert",
- "currentVersionLabel": "Aktuelle Version",
- "currentVersionTooltip": "Dies ist die aktuelle Office-Version, die in dieser Suite konfiguriert ist. Dieser Wert wird aktualisiert, wenn eine neuere Version konfiguriert und gespeichert wird.",
- "enableMicrosoftSearchAsDefaultTooltip": "Installiert einen Hintergrunddienst, mit dem Sie ermitteln können, ob eine Microsoft Search in Bing-Erweiterung für Google Chrome auf dem Gerät installiert ist.",
- "enterXmlDataLabel": "XML-Daten eingeben",
- "languagesLabel": "Sprachen",
- "languagesTooltip": "Intune installiert Office per Voreinstellung mit der Standardsprache des Betriebssystems. Wählen Sie zusätzliche Sprachen aus, die Sie installieren möchten.",
- "learnMoreText": "Weitere Informationen",
- "newUpdateChannelTooltip": "Definiert, wie oft die App mit neuen Features aktualisiert wird.",
- "noCurrentVersionText": "Keine aktuelle Version.",
- "noLanguagesSelectedLabel": "Keine Sprachen ausgewählt",
- "notConfiguredLabel": "Nicht konfiguriert",
- "propertiesLabel": "Eigenschaften",
- "removeOtherVersionsLabel": "Andere Versionen entfernen",
- "removeOtherVersionsTooltip": "Wählen Sie Ja aus, um andere Office-Versionen (MSI) von Benutzergeräten zu entfernen.",
- "selectOfficeAppsLabel": "Office-Apps auswählen",
- "selectOfficeAppsTooltip": "Wählen Sie die Office 365-App aus, die Sie als Teil der Suite installieren möchten.",
- "selectOtherOfficeAppsLabel": "Andere Office-Apps auswählen (Lizenz erforderlich)",
- "selectOtherOfficeAppsTooltip": "Wenn Sie Lizenzen für diese zusätzlichen Office-Apps besitzen, können Sie auch diese mit Intune zuweisen.",
- "specificVersionLabel": "Spezifische Version",
- "updateChannelLabel": "Updatekanal",
- "updateChannelTooltip": "Definiert, wie häufig die App mit neuen Features aktualisiert wird.
\r\nMonatlich: Neue Office-Features werden den Benutzern bereitgestellt, sobald sie verfügbar sind.
\r\nMonatlicher Enterprise-Kanal: Neue Office-Features werden den Benutzern monatlich (am zweiten Dienstag im Monat) bereitgestellt.
\r\nMonatlich (gezielt): Bietet eine frühe Vorschau für das bevorstehende Release im monatlichen Kanal. Es handelt sich um einen unterstützten Updatekanal, der in der Regel mindestens eine Woche vorab verfügbar ist, wenn es sich um ein Release mit neuen Features im monatlichen Kanal handelt.
\r\nHalbjährlich: Neue Office-Features werden den Benutzern nur wenige Male im Jahr bereitgestellt.
\r\nHalbjährlich (gezielt): Pilotbenutzer und Anwendungskompatibilitätstester erhalten die Möglichkeit, das nächste halbjährliche Release zu testen.",
- "useMicrosoftSearchAsDefault": "Hintergrunddienst für Microsoft Search in Bing installieren",
- "useSharedComputerActivationLabel": "Aktivierung gemeinsam genutzter Computer verwenden",
- "useSharedComputerActivationTooltip": "Durch das Aktivieren freigegebener Computer können Sie Microsoft 365-Apps auf Computern bereitstellen, die von mehreren Benutzern verwendet werden. Normalerweise können Benutzer Microsoft 365-Apps nur auf einer begrenzten Anzahl von Geräten installieren und aktivieren, z. B. auf 5 PCs. Die Verwendung von Microsoft 365-Apps mit Aktivierung freigegebener Computer wird nicht auf diesen Grenzwert angerechnet.",
- "versionToInstallLabel": "Zu installierende Version",
- "versionToInstallTooltip": "Wählen Sie die Office-Version aus, die installiert werden soll.",
- "xLanguagesSelectedLabel": "{0} Sprache(n) ausgewählt",
- "xmlConfigurationLabel": "XML-Konfiguration"
- },
- "OfficeApplicationType": {
- "access": "Access",
- "bing": "Microsoft Search als Standard",
- "excel": "Excel",
- "groove": "OneDrive (Groove)",
- "lync": "Skype for Business",
- "oneDrive": "OneDrive-Desktop",
- "oneNote": "OneNote",
- "outlook": "Outlook",
- "powerPoint": "PowerPoint",
- "publisher": "Publisher",
- "teams": "Teams",
- "word": "Word"
- },
- "WindowsQualityUpdateProfile": {
- "Details": {
- "DaysUntilForcedReboot": {
- "label": "Wartezeit in Tagen bis zum erzwungenen Neustart"
- },
- "Description": {
- "label": "Beschreibung"
- },
- "Name": {
- "label": "Name"
- },
- "QualityUpdateRelease": {
- "label": "Installation von Qualitätsupdates beschleunigen, wenn die Gerätebetriebssystemversion niedriger ist als:"
- },
- "bladeTitle": "Qualitätsupdates Windows 10 und höher (Vorschau)",
- "loadError": "Fehler beim Laden."
- },
- "TabName": {
- "qualityUpdateSettings": "Einstellungen"
- },
- "infoBoxText": "Die einzige dedizierte Qualitätsupdatesteuerung, die derzeit außer der vorhandenen Updateringrichtlinie für Windows 10 und höher verfügbar ist, ist die Möglichkeit, Qualitätsupdates für Geräte zu beschleunigen, die hinter eine bestimmte Patchebene fallen. Weitere Steuerelemente werden in Zukunft verfügbar sein.",
- "warningBoxText": "Die Beschleunigung von Softwareupdates kann zwar dazu beitragen, bei Bedarf eine schnellere Konformität zu erzielen, sie hat aber einen größeren Einfluss auf die Produktivität der Endbenutzer. Die Wahrscheinlichkeit, dass ein Neustart während der Geschäftszeiten erfolgt, ist deutlich erhöht."
- },
- "Devices": {
- "General": {
- "android": "Android"
- },
- "aOSP": "Android-Open-Source-Projekt",
- "android": "Android-Geräteadministrator",
- "androidWorkProfile": "Android Enterprise (Arbeitsprofil)",
- "iOS": "iOS/iPadOS",
- "mac": "macOS",
- "windows": "Windows (MDM)",
- "windows10": "Windows 10 und höher",
- "windowsHomeSku": "Windows Home-SKU",
- "windowsMobile": "Windows Mobile"
- },
"SettingDetails": {
"CustomPolicyConfigurationProfile": {
"uploadControlPlaceHolderText": "Wählen Sie eine Konfigurationsprofildatei aus."
@@ -3675,7 +1707,7 @@
"aESGCM128": "AES-128-GCM (16-Oktett-ICV)",
"aESGCM256": "AES-256-GCM (16-Oktett-ICV)",
"aadSharedDeviceDataClearAppsDescription": "Hiermit werden der Liste Apps hinzugefügt, die nicht für den Modus für gemeinsam genutzte Geräte optimiert sind. Die lokalen Daten der App werden gelöscht, wenn sich ein Benutzer von einer App abmeldet, die für den Modus für gemeinsam genutzte Geräte optimiert ist. Verfügbar für dedizierte Geräte, die im Modus \"Gemeinsam genutzt\" unter Android 9 und höher registriert sind.",
- "aadSharedDeviceDataClearAppsName": "Nicht für den Modus für gemeinsam genutzte Geräte optimierte lokale Daten in Apps löschen (Public Preview)",
+ "aadSharedDeviceDataClearAppsName": "Löschen lokaler Daten in Apps, die nicht für den Modus für gemeinsam genutzte Geräte optimiert sind",
"accountsPageDescription": "Hiermit blockieren Sie den Zugriff auf \"Konten\" in der App \"Einstellungen\".",
"accountsPageName": "Konten",
"accountsSignInAssistantSettingsDescription": "Blockieren Sie den Microsoft-Anmeldeassistentendienst (wlidsvc). Wenn diese Einstellung nicht konfiguriert ist, kann der wlidsvc-NT-Dienst durch den Benutzer gesteuert werden (manueller Start).",
@@ -5503,7 +3535,7 @@
"enableEndUserAccessToDefenderName": "Endbenutzerzugriff auf Defender",
"enableEngagedRestartDescription": "Aktiviert Einstellungen, um dem Benutzer den Wechsel zu einem erzwungenen Neustart zu ermöglichen.",
"enableEngagedRestartName": "Benutzer (erzwungenen) Neustart ermöglichen",
- "enableIdentityPrivacyDescription": "Diese Eigenschaft maskiert Benutzernamen mit dem von Ihnen eingegebenen Text. Wenn Sie beispielsweise \"anonym\" eingeben, wird jeder Benutzer, der sich über diese WLAN-Verbindung mit seinem echten Benutzernamen anmeldet, als \"anonym\" angezeigt.",
+ "enableIdentityPrivacyDescription": "Diese Eigenschaft maskiert Benutzernamen mit dem von Ihnen eingegebenen Text. Wenn Sie beispielsweise „Anonym“ eingeben, werden alle Benutzer, die sich über diese WLAN-Verbindung mit ihrem realen Benutzernamen authentifizieren, als „Anonym“ angezeigt. Dies ist möglicherweise erforderlich, wenn eine gerätebasierte Zertifikatauthentifizierung verwendet wird.",
"enableIdentityPrivacyName": "Identitätsschutz (äußere Identität)",
"enableNetworkInspectionSystemDescription": "Hiermit blockieren Sie böswilligen Datenverkehr, der durch Signaturen im Netzwerkinspektionssystem (NIS) erkannt wurde.",
"enableNetworkInspectionSystemName": "Netzwerkinspektionssystem (NIS)",
@@ -7252,6 +5284,8 @@
"presharedKeyEncodingDescription": "Hiermit codieren Sie vorinstallierte Schlüssel mit UTF-8.",
"presharedKeyEncodingName": "Codierung vorinstallierter Schlüssel",
"preventAny": "Grenzüberschreitende Freigabe verhindern",
+ "primaryAuthenticationMethodName": "Primäre Authentifizierungsmethode",
+ "primaryAuthenticationMethodTEAPDescription": "Wählen Sie die primäre Methode aus, mit der Benutzer sich authentifizieren sollen. Wenn Sie Zertifikate auswählen, wählen Sie eines der Zertifikatprofile (SCEP oder PKCS) aus, das auch auf dem Gerät bereitgestellt wird. Dies ist das Identitätszertifikat, das vom Gerät an den Server übergeben wird.",
"primarySMTPAddressOption": "Primäre SMTP-Adresse",
"printersColumns": "z. B. DNS-Name des Druckers",
"printersDescription": "Stellen Sie Drucker basierend auf ihren Netzwerkhostnamen automatisch bereit. Mit dieser Einstellung werden freigegebene Drucker nicht unterstützt.",
@@ -7663,6 +5697,8 @@
"searchEnableRemoteQueriesName": "Remoteabfragen",
"secondActiveEthernet": "Zweites aktives Ethernet",
"secondEthernet": "Zweites Ethernet",
+ "secondaryAuthenticationMethodName": "Sekundäre Authentifizierungsmethode",
+ "secondaryAuthenticationMethodTEAPDescription": "Wählen Sie die sekundäre Methode aus, mit der Benutzer sich authentifizieren sollen. Wenn Sie Zertifikate auswählen, wählen Sie eines der Zertifikatprofile (SCEP oder PKCS) aus, das auch auf dem Gerät bereitgestellt wird. Dies ist das Identitätszertifikat, das vom Gerät an den Server übergeben wird.",
"secretKey": "Geheimer Schlüssel:",
"secureBootEnabledDescription": "Sicherer Start muss auf dem Gerät aktiviert sein.",
"secureBootEnabledName": "Sicherer Start muss auf dem Gerät aktiviert sein.",
@@ -8074,6 +6110,7 @@
"systemUpdateWindow9": "04:30 Uhr",
"systemWindowsBlockedDescription": "Hiermit deaktivieren Sie Fensterbenachrichtigungen wie z. B. Popups, eingehende Anrufe, ausgehende Anrufe, Systemwarnungen und Systemfehler.",
"systemWindowsBlockedName": "Benachrichtigungsfenster",
+ "tEAPName": "Tunnel EAP (TEAP)",
"tLSMinMax": "Die TLS-Mindestversion muss kleiner als der Wert für die höchstens zulässige TLS-Version sein oder diesem entsprechen.",
"tLSVersionRangeMaximum": "Maximaler TLS-Versionsbereich",
"tLSVersionRangeMaximumDescription": "Geben Sie als TLS-Höchstversion 1.0, 1.1 oder 1.2 ein. Wenn das Feld leer gelassen wird, lautet der Standardwert 1.2.",
@@ -8126,6 +6163,17 @@
"timeWindowSameStartEndDayTime": "Enddatum/-uhrzeit darf nicht mit Startdatum/-uhrzeit übereinstimmen.",
"timeZoneDescription": "Hiermit wählen Sie die Zeitzone für die Zielgeräte aus.",
"timeZoneName": "Zeitzone",
+ "timeoutFifteenMinutes": "15 Minuten",
+ "timeoutFiveMinutes": "5 Minuten",
+ "timeoutFourHours": "4 Stunden",
+ "timeoutNever": "Kein Zeitlimit",
+ "timeoutOneHour": "1 Stunde",
+ "timeoutOneMinute": "1 Minute",
+ "timeoutTenMinutes": "10 Minuten",
+ "timeoutThirtyMinutes": "30 Minuten",
+ "timeoutThreeMinutes": "3 Minuten",
+ "timeoutTwoHours": "2 Stunden",
+ "timeoutTwoMinutes": "2 Minuten",
"toggleConfigurationPkgDescription": "Hiermit wird ein signiertes Konfigurationspaket hochgeladen, das zum Onboarding des Microsoft Defender für Endpunkt-Clients verwendet wird.",
"toggleConfigurationPkgName": "Pakettyp für die Microsoft Defender für Endpunkt-Clientkonfiguration:",
"trafficRuleAppName": "App",
@@ -8824,6 +6872,33 @@
"win10WifiWirelessSecurityTypeName": "Sicherheitstyp für Drahtlosverbindung",
"win10WifiWirelessSecurityTypeOpen": "Offen (keine Authentifizierung)",
"win10WifiWirelessSecurityTypeWPA": "WPA/WPA2-Persönlich",
+ "win10WiredAuthenticationModeDescription": "Wählen Sie aus, ob der Benutzer oder das Gerät authentifiziert oder die Gastauthentifizierung (keine) verwendet werden soll. Wenn Sie die Zertifikatauthentifizierung verwenden, stellen Sie sicher, dass der Zertifikattyp mit dem Authentifizierungstyp übereinstimmt.",
+ "win10WiredAuthenticationModeName": "Authentifizierungsmodus",
+ "win10WiredAuthenticationPeriodDescription": "Die Anzahl von Sekunden, die der Client nach einem Authentifizierungsversuch warten soll, bevor ein Fehler gemeldet wird. Wählen Sie eine Zahl zwischen 1 und 3600 aus. Ohne Angabe eines Werts beträgt der Zeitraum 18 Sekunden.",
+ "win10WiredAuthenticationPeriodName": "Authentifizierungszeitraum",
+ "win10WiredAuthenticationRetryDelayPeriodDescription": "Die Anzahl von Sekunden zwischen einer fehlerhaften Authentifizierung und dem nächsten Authentifizierungsversuch. Wählen Sie einen Wert zwischen 1 und 3600 aus. Ohne Angabe eines Werts beträgt der Zeitraum 1 Sekunde.",
+ "win10WiredAuthenticationRetryDelayPeriodName": "Zeitraum für Wiederholungsverzögerung bei der Authentifizierung ",
+ "win10WiredFIPSComplianceDescription": "Eine Überprüfung anhand des FIPS 140-2-Standards ist für alle US-Regierungsbehörden erforderlich, die bei der digitalen Speicherung kryptografiebasierte Sicherheitssysteme zum Schutz sensibler, aber nicht klassifizierter Daten einsetzen.",
+ "win10WiredFIPSComplianceName": "Konformität des Verkabelungsprofils mit dem Federal Information Processing Standard (FIPS) erzwingen",
+ "win10WiredGuest": "Gast",
+ "win10WiredMachine": "Computer",
+ "win10WiredMachineOrUser": "Benutzer oder Computer",
+ "win10WiredMaximumAuthenticationFailuresDescription": "Geben Sie die maximale Anzahl von Authentifizierungsfehlern für diesen Anmeldeinformationssatz ein. Ohne Angabe eines Werts wird 1 Versuch verwendet.",
+ "win10WiredMaximumAuthenticationFailuresName": "Maximale Authentifizierungsfehler",
+ "win10WiredMaximumEAPOLStartMessagesDescription": "Wählen Sie eine Anzahl von EAPOL-Start-Nachrichten zwischen 1 und 100 aus. Ohne Angabe eines Werts werden maximal 3 Nachrichten gesendet.",
+ "win10WiredMaximumEAPOLStartMessagesName": "Maximaler Wert für \"EAPOL-Start\"",
+ "win10WiredNetworkAuthenticationBlockPeriodDescription": "Zeitraum der Authentifizierungsblockierung in Minuten. Wird verwendet, um die Dauer anzugeben, für die automatische Authentifizierungsversuche nach einem fehlerhaften Authentifizierungsversuch blockiert werden. Wählen Sie einen Wert zwischen 0 und 1440 aus.",
+ "win10WiredNetworkAuthenticationBlockPeriodName": "Blockierungszeitraum (Minuten)",
+ "win10WiredNetworkAuthenticationModeName": "Authentifizierungsmodus",
+ "win10WiredNetworkDoNotEnforceName": "Nicht erzwingen",
+ "win10WiredNetworkEnforce8021XDescription": "Gibt an, ob der automatische Konfigurationsdienst für kabelgebundene Netzwerke die Verwendung von 802.1X für die Port-Authentifizierung erfordert.",
+ "win10WiredNetworkEnforce8021XName": "802.1x",
+ "win10WiredNetworkEnforceName": "Erzwingen",
+ "win10WiredRememberCredentialsDescription": "Wählen Sie aus, ob die Anmeldeinformationen von Benutzern beim ersten Herstellen einer Verbindung mit dem verkabelten Netzwerk zwischengespeichert werden sollen. Zwischengespeicherte Anmeldeinformationen werden für nachfolgende Verbindungen verwendet, und die Benutzer müssen sie nicht erneut eingeben. Das Nicht konfigurieren dieser Einstellung entspricht dem Festlegen auf \"Ja\".",
+ "win10WiredRememberCredentialsName": "Anmeldeinformationen bei jeder Anmeldung speichern",
+ "win10WiredStartPeriodDescription": "Die Anzahl von Sekunden, die vor dem Senden einer EAPOL-Start-Nachricht gewartet werden soll. Wählen Sie einen Wert zwischen 1 und 3600 aus. Ohne Angabe eines Werts beträgt der Zeitraum 5 Sekunden.",
+ "win10WiredStartPeriodName": "Startzeitraum",
+ "win10WiredUser": "Benutzer",
"win10appLockerApplicationControlAllowDescription": "Diese Apps dürfen ausgeführt werden.",
"win10appLockerApplicationControlAllowName": "Erzwingen",
"win10appLockerApplicationControlAuditComponentsAndStoreAppsDescription": "Im Modus \"Nur überwachen\" werden alle Ereignisse in den lokalen Clientereignisprotokollen aufgezeichnet. Die Ausführung von Apps wird jedoch nicht blockiert. Windows-Komponenten und Microsoft Store-Apps erfüllen die Sicherheitsanforderungen und werden entsprechend protokolliert.",
@@ -9165,7 +7240,6 @@
"deviceConditionsInfoParagraph2": "Ähnliche gerätebasierte Einstellungen können für registrierte Geräte konfiguriert werden.",
"deviceConditionsInfoParagraph2LinkText": "Erfahren Sie mehr über das Konfigurieren von Konformitätseinstellungen für registrierte Geräte.",
"deviceId": "Geräte-ID",
- "deviceLockComplexityValidationFailureNotes": "Hinweise:
\r\n\r\n - Die Gerätesperre kann die Kennwortkomplexität: NIEDRIG, MITTEL oder HOCH für Android 11 und höher anfordern. Bei Geräten, die unter Android 10 und früheren Versionen ausgeführt werden, wird beim Festlegen des Komplexitätswerts „Niedrig“, „Mittel“, „Hoch“ standardmäßig das erwartete Verhalten für „Niedrige Komplexität“ verwendet.
\r\n - Die unten aufgeführten Kennwortdefinitionen unterliegen Änderungen. Die aktuellsten Definitionen der verschiedenen Kennwortkomplexitätsstufen finden Sie unter DevicePolicyManager|Android Developers.
\r\n
\r\n\r\nNiedrig
\r\n\r\n - Das Kennwort kann ein Muster oder eine PIN mit wiederholenden (4444) oder geordneten (1234, 4321, 2468) Zeichenfolgen sein.
\r\n
\r\n\r\nMittel
\r\n\r\n - PIN ohne wiederholende (4444) oder geordnete (1234, 4321, 2468) Zeichenfolgen mit einer Mindestlänge von 4 Zeichen
\r\n - Alphabetische Kennwörter mit einer Mindestlänge von 4 Zeichen
\r\n - Alphanumerische Kennwörter mit einer Mindestlänge von 4 Zeichen
\r\n
\r\n\r\nHoch
\r\n\r\n - PIN ohne wiederholende (4444) oder geordnete (1234, 4321, 2468) Zeichenfolgen mit einer Mindestlänge von 8 Zeichen
\r\n - Alphabetische Kennwörter mit einer Mindestlänge von 6 Zeichen
\r\n - Alphanumerische Kennwörter mit einer Mindestlänge von 6 Zeichen
\r\n
\r\n",
"deviceLockedOpenFilesOptionsText": "Wenn das Gerät gesperrt ist und Dateien geöffnet sind",
"deviceLockedOptionText": "Wenn das Gerät gesperrt ist",
"deviceManufacturer": "Gerätehersteller",
@@ -9463,7 +7537,7 @@
"reporting": "Berichterstellung",
"reports": "Berichte",
"require": "Anfordern",
- "requireDeviceLockComplexityOnApps": "Gerätesperrekomplexität erforderlich",
+ "requireDeviceLockOnApps": "Require device lock",
"requireThreatScanOnApps": "Bedrohungsüberprüfung für Apps erzwingen",
"requiredField": "Dieses Feld darf nicht leer sein.",
"requiredSafetyNetEvaluationType": "Erforderlicher SafetyNet-Auswertungstyp",
@@ -9659,6 +7733,7 @@
"yourDataIsBeingDownloadedEllipsis": "Ihre Daten werden heruntergeladen, dieser Vorgang kann etwas Zeit in Anspruch nehmen...",
"yourDataIsBeingDownloadedMinutes": "Ihre Daten werden heruntergeladen, dieser Vorgang kann einige Minuten dauern...",
"yourProtectionLevel": "Ihre Schutzebene",
+ "rules": "Regeln",
"basics": "Grundeinstellungen",
"modeTableHeader": "Gruppenmodus",
"appAssignmentMsg": "Gruppe",
@@ -9695,221 +7770,2042 @@
"licenseTypeDevice": "Gerät",
"licenseTypeUser": "Benutzer"
},
- "Languages": {
- "ar-aE": "Arabisch (Vereinigte Arabische Emirate)",
- "ar-bH": "Arabisch (Bahrain)",
- "ar-dZ": "Arabisch (Algerien)",
- "ar-eG": "Arabisch (Ägypten)",
- "ar-iQ": "Arabisch (Irak)",
- "ar-jO": "Arabisch (Jordanien)",
- "ar-kW": "Arabisch (Kuwait)",
- "ar-lB": "Arabisch (Libanon)",
- "ar-lY": "Arabisch (Libyen)",
- "ar-mA": "Arabisch (Marokko)",
- "ar-oM": "Arabisch (Oman)",
- "ar-qA": "Arabisch (Katar)",
- "ar-sA": "Arabisch (Saudi-Arabien)",
- "ar-sY": "Arabisch (Syrien)",
- "ar-tN": "Arabisch (Tunesien)",
- "ar-yE": "Arabisch (Jemen)",
- "az-cyrl": "Aserbaidschanisch (Kyrillisch, Aserbaidschan)",
- "az-latn": "Aserbaidschanisch (lateinisch, Aserbaidschan)",
- "bn-bD": "Bangla (Bangladesch)",
- "bn-iN": "Bangla (Indien)",
- "bs-cyrl": "Bosnisch (Kyrillisch)",
- "bs-latn": "Bosnisch (Lateinisch)",
- "zh-cN": "Chinesisch (Volksrepublik China)",
- "zh-hK": "Chinesisch (Hongkong SAR)",
- "zh-mO": "Chinesisch (Macau SAR)",
- "zh-sG": "Chinesisch (Singapur)",
- "zh-tW": "Chinesisch (Taiwan)",
- "hr-bA": "Kroatisch (Lateinisch)",
- "hr-hR": "Kroatisch (Kroatien)",
- "nl-bE": "Niederländisch (Belgien)",
- "nl-nL": "Niederländisch (Niederlande)",
- "en-aU": "Englisch (Australien)",
- "en-bZ": "Englisch (Belize)",
- "en-cA": "Englisch (Kanada)",
- "en-cabn": "Englisch (Karibik)",
- "en-iE": "Englisch (Irland)",
- "en-iN": "Englisch (Indien)",
- "en-jM": "Englisch (Jamaika)",
- "en-mY": "Englisch (Malaysia)",
- "en-nZ": "Englisch (Neuseeland)",
- "en-pH": "Englisch (Republik Philippinen)",
- "en-sG": "Englisch (Singapur)",
- "en-tT": "Englisch (Trinidad und Tobago)",
- "en-uK": "Englisch (Vereinigtes Königreich)",
- "en-uS": "Englisch (Vereinigte Staaten)",
- "en-zA": "Englisch (Südafrika)",
- "en-zW": "Englisch (Zimbabwe)",
- "fr-bE": "Französisch (Belgien)",
- "fr-cA": "Französisch (Kanada)",
- "fr-cH": "Französisch (Schweiz)",
- "fr-fR": "Französisch (Frankreich)",
- "fr-lU": "Französisch (Luxemburg)",
- "fr-mC": "Französisch (Monaco)",
- "de-aT": "Deutsch (Österreich)",
- "de-cH": "Deutsch (Schweiz)",
- "de-dE": "Deutsch (Deutschland)",
- "de-lI": "Deutsch (Liechtenstein)",
- "de-lU": "Deutsch (Luxemburg)",
- "iu-cans": "Inuktitut (Silbenschrift, Kanada)",
- "iu-latn": "Inuktitut (Lateinisch, Kanada)",
- "it-cH": "Italienisch (Schweiz)",
- "it-iT": "Italienisch (Italien)",
- "ms-bN": "Malaiisch (Brunei Darussalam)",
- "ms-mY": "Malaiisch (Malaysia)",
- "mn-cN": "Mongolisch (Traditionelles Mongolisch, Volksrepublik China)",
- "mn-mN": "Mongolisch (kyrillisch, Mongolei)",
- "no-nB": "Norwegisch, Bokmål (Norwegen)",
- "no-nn": "Norwegisch, Nynorsk (Norwegen)",
- "pt-bR": "Portugiesisch (Brasilien)",
- "pt-pT": "Portugiesisch (Portugal)",
- "quz-bO": "Quechua (Bolivien)",
- "quz-eC": "Quechua (Ecuador)",
- "quz-pE": "Quechua (Peru)",
- "smj-nO": "Samisch (Lule, Norwegen)",
- "smj-sE": "Samisch (Lule, Schweden)",
- "se-fI": "Samisch (Nord, Finnland)",
- "se-nO": "Samisch (Nord, Norwegen)",
- "se-sE": "Samisch (Nord, Schweden)",
- "sma-nO": "Samisch (Süd, Norwegen)",
- "sma-sE": "Samisch (Süd, Schweden)",
- "smn": "Samisch (Inari, Finnland)",
- "sms": "Samisch (Skolt, Finnland)",
- "sr-Cyrl-bA": "Serbisch (Kyrillisch)",
- "sr-Cyrl-rS": "Serbisch (Kyrillisch, Serbien/Montenegro)",
- "sr-Latn-bA": "Serbisch (Lateinisch)",
- "sr-Latn-rS": "Serbisch (Lateinisch, Serbien)",
- "dsb": "Niedersorbisch (Deutschland)",
- "hsb": "Obersorbisch (Deutschland)",
- "es-es-tradnl": "Spanisch (Spanien, traditionelle Sortierung)",
- "es-aR": "Spanisch (Argentinien)",
- "es-bO": "Spanisch (Bolivien)",
- "es-cL": "Spanisch (Chile)",
- "es-cO": "Spanisch (Kolumbien)",
- "es-cR": "Spanisch (Costa Rica)",
- "es-dO": "Spanisch (Dominikanische Republik)",
- "es-eC": "Spanisch (Ecuador)",
- "es-eS": "Spanisch (Spanien)",
- "es-gT": "Spanisch (Guatemala)",
- "es-hN": "Spanisch (Honduras)",
- "es-mX": "Spanisch (Mexiko)",
- "es-nI": "Spanisch (Nicaragua)",
- "es-pA": "Spanisch (Panama)",
- "es-pE": "Spanisch (Peru)",
- "es-pR": "Spanisch (Puerto Rico)",
- "es-pY": "Spanisch (Paraguay)",
- "es-sV": "Spanisch (El Salvador)",
- "es-uS": "Spanisch (USA)",
- "es-uY": "Spanisch (Uruguay)",
- "es-vE": "Spanisch (Venezuela)",
- "sv-fI": "Schwedisch (Finnland)",
- "uz-cyrl": "Usbekisch (kyrillisch, Usbekistan)",
- "uz-latn": "Usbekisch (lateinisch, Usbekistan)",
- "af": "Afrikaans (Südafrika)",
- "sq": "Albanien (Albanisch)",
- "am": "Amharisch (Äthiopien)",
- "hy": "Armenisch (Armenien)",
- "as": "Assamesisch (Indien)",
- "ba": "Baschkirisch (Russische Föderation)",
- "eu": "Baskisch (Baskisch)",
- "be": "Belarussisch (Belarus)",
- "br": "Bretonisch (Frankreich)",
- "bg": "Bulgarisch (Bulgarien)",
- "ca": "Katalanisch (Katalanisch)",
- "co": "Korsisch (Frankreich)",
- "cs": "Tschechisch (Tschechische Republik)",
- "da": "Dänisch (Dänemark)",
- "prs": "Dari (Afghanistan)",
- "dv": "Divehi (Malediven)",
- "et": "Estnisch (Estland)",
- "fo": "Färöisch (Färöer)",
- "fil": "Filipino (Philippinen)",
- "fi": "Finnisch (Finnland)",
- "gl": "Galicisch (Galicisch)",
- "ka": "Georgisch (Georgien)",
- "el": "Griechisch (Griechenland)",
- "gu": "Gujarati (Indien)",
- "ha": "Hausa (Lateinisch, Nigeria)",
- "he": "Hebräisch (Israel)",
- "hi": "Hindi (Indien)",
- "hu": "Ungarisch (Ungarn)",
- "is": "Isländisch (Island)",
- "ig": "Igbo (Nigeria)",
- "id": "Indonesisch (Indonesien)",
- "ga": "Irisch (Irland)",
- "xh": "isiXhosa (Südafrika)",
- "zu": "isiZulu (Südafrika)",
- "ja": "Japanisch (Japan)",
- "kn": "Kannada (Indien)",
- "kk": "Kasachisch (Kasachstan)",
- "km": "Khmer (Kambodscha)",
- "rw": "Kinyarwanda (Ruanda)",
- "sw": "Suaheli (Kenia)",
- "kok": "Konkani (Indien)",
- "ko": "Koreanisch (Südkorea)",
- "ky": "Kirgisisch (Kirgisistan)",
- "lo": "Laotisch (Demokratische Volksrepublik Laos)",
- "lv": "Lettisch (Lettland)",
- "lt": "Litauisch (Litauen)",
- "lb": "Luxemburgisch (Luxemburg)",
- "mk": "Mazedonisch (Nordmazedonien)",
- "ml": "Malayalam (Indien)",
- "mt": "Maltesisch (Malta)",
- "mi": "Maori (Neuseeland)",
- "mr": "Marathi (Indien)",
- "moh": "Mohawk (Kanada)",
- "ne": "Nepalesisch (Nepal)",
- "oc": "Okzitanisch (Frankreich)",
- "or": "Odia (Indien)",
- "ps": "Paschtu (Afghanistan)",
- "fa": "Persisch",
- "pl": "Polnisch (Polen)",
- "pa": "Punjabi (Indien)",
- "ro": "Rumänisch (Rumänien)",
- "rm": "Rätoromanisch (Schweiz)",
- "ru": "Russisch (Russische Föderation)",
- "sa": "Sanskrit (Indien)",
- "st": "Sesotho sa Leboa (Südafrika)",
- "tn": "Tswana (Südafrika)",
- "si": "Singhalesisch (Sri Lanka)",
- "sk": "Slowakisch (Slowakei)",
- "sl": "Slowenisch (Slowenien)",
- "sv": "Schwedisch (Schweden)",
- "syr": "Syrisch (Syrien)",
- "tg": "Tadschikisch (Kyrillisch, Tadschikistan)",
- "ta": "Tamil (Indien)",
- "tt": "Tatarisch (Russische Föderation)",
- "te": "Telugu (Indien)",
- "th": "Thailändisch (Thailand)",
- "bo": "Tibetanisch (VR China)",
- "tr": "Türkisch (Türkei)",
- "tk": "Turkmenisch (Turkmenistan)",
- "uk": "Ukrainisch (Ukraine)",
- "ur": "Urdu (Islamische Republik Pakistan)",
- "vi": "Vietnamesisch (Vietnam)",
- "cy": "Walisisch (Vereinigtes Königreich)",
- "wo": "Wolof (Senegal)",
- "ii": "Yi (Volksrepublik China)",
- "yo": "Yoruba (Nigeria)"
- },
- "AppProtection": {
- "allAppTypes": "Auf alle App-Typen ausrichten",
- "androidPlatformLabel": "Android",
- "appsInAndroidWorkProfile": "Apps in Android for Work-Profil",
- "appsOnIntuneManagedDevices": "Apps auf durch Intune verwalteten Geräten",
- "appsOnUnmanagedDevices": "Apps auf nicht verwalteten Geräten",
- "iOSPlatformLabel": "iOS/iPadOS",
- "iosAndroidMacPlatformLabel": "iOS, Android, Mac",
- "iosAndroidPlatformLabel": "iOS, Android",
- "macPlatformLabel": "Mac",
- "notAvailable": "Nicht verfügbar",
- "windows10PlatformLabel": "Windows 10 und höher",
- "withEnrollment": "Mit Registrierung",
- "withoutEnrollment": "Ohne Registrierung"
- },
+ "ApplicabilityRules": {
+ "GridLabel": {
+ "property": "Eigenschaft",
+ "rule": "Regel",
+ "ruleDetails": "Regeldetails",
+ "value": "Wert"
+ },
+ "assignIf": "Profil in folgenden Fällen zuweisen",
+ "deleteWarning": "Hierdurch wird die ausgewählte Anwendbarkeitsregel gelöscht.",
+ "dontAssignIf": "Profil in folgenden Fällen nicht zuweisen",
+ "editionDisplayText": "{0} {1}",
+ "editionDisplayTextMore": "und {0} weitere",
+ "instructions": "Geben Sie an, wie dieses Profil innerhalb einer zugewiesenen Gruppe angewendet werden soll. Intune wendet das Profil nur auf Geräte an, die die kombinierten Kriterien dieser Regeln erfüllen.",
+ "maxText": "Max.",
+ "minText": "Min.",
+ "noActionRow": "Keine Anwendbarkeitsregeln angegeben.",
+ "oSVersion": "Beispiel: 1.2.3.4",
+ "toText": "bis",
+ "windows10Education": "Windows 10/11 Education",
+ "windows10EducationN": "Windows 10/11 Education N",
+ "windows10Enterprise": "Windows 10/11 Enterprise",
+ "windows10EnterpriseN": "Windows 10/11 Enterprise N",
+ "windows10HolographicEnterprise": "Windows 10 Holographic for Business",
+ "windows10Home": "Windows 10/11 Home",
+ "windows10HomeChina": "Windows 10 Home (China)",
+ "windows10HomeN": "Windows 10/11 Home N",
+ "windows10HomeSingleLanguage": "Windows 10/11 Home (Einzelsprache)",
+ "windows10IoTCore": "Windows 10 IoT Core",
+ "windows10IoTCoreCommercial": "Windows 10 IoT Core Commercial",
+ "windows10Mobile": "Windows 10 Mobile",
+ "windows10MobileEnterprise": "Windows 10 Mobile Enterprise",
+ "windows10OsEdition": "Betriebssystemedition",
+ "windows10OsVersion": "Betriebssystemversion",
+ "windows10Professional": "Windows 10/11 Professional",
+ "windows10ProfessionalEducation": "Windows 10/11 Professional Education",
+ "windows10ProfessionalEducationN": "Windows 10/11 Professional Education N",
+ "windows10ProfessionalN": "Windows 10 Professional N",
+ "windows10ProfessionalWorkstation": "Windows 10/11 Professional Workstation",
+ "windows10ProfessionalWorkstationN": "Windows 10/11 Professional Workstation N"
+ },
+ "DetectionRules": {
+ "ComparisonOperators": {
+ "equals": "Ist gleich",
+ "greaterThan": "Größer als",
+ "greaterThanOrEqualTo": "Größer oder gleich",
+ "lessThan": "Kleiner als",
+ "lessThanOrEqualTo": "Kleiner oder gleich",
+ "notEqualTo": "Ungleich"
+ },
+ "CustomScript": {
+ "enforceSignatureCheck": "Überprüfung der Skriptsignatur erzwingen und Skript unbeaufsichtigt ausführen",
+ "enforceSignatureCheckTooltip": "Wählen Sie \"Ja\", um sicherzustellen, dass das Skript von einem vertrauenswürdigen Herausgeber signiert ist, damit das Skript ohne Warnungen oder Anzeige von Benutzeraufforderungen ausgeführt werden kann. Das Skript wird ohne Blockierung ausgeführt. Wählen Sie \"Nein\" (Standardeinstellung) aus, um das Skript mit Benutzerbestätigung ohne Signaturüberprüfung auszuführen.",
+ "header": "Benutzerdefiniertes Skript für die Erkennung verwenden",
+ "runAs32Bit": "Skript auf 64-Bit-Clients als 32-Bit-Prozess ausführen",
+ "runAs32BitTooltip": "Wählen Sie \"Ja\", um das Skript auf 64-Bit-Clients in einem 32-Bit-Prozess auszuführen. Wählen Sie \"Nein\" (Standardeinstellung) aus, um das Skript auf 64-Bit-Clients in einem 64-Bit-Prozess auszuführen. 32-Bit-Clients führen das Skript in einem 32-Bit-Prozess aus.",
+ "scriptFile": "Skriptdatei",
+ "scriptFileNotSelectedValidation": "Keine Skriptdatei ausgewählt.",
+ "scriptFileTooltip": "Wählen Sie ein PowerShell-Skript aus, mit dem das Vorhandensein der App auf dem Client erkannt wird. Die App wird erkannt, wenn das Skript den Wert 0 als Exitcode zurückgibt und einen Zeichenfolgenwert in STDOUT schreibt.",
+ "scriptSizeLimitValidation": "Ihr Erkennungsskript überschreitet die maximal zulässige Größe. Beheben Sie dies, indem Sie die Größe Ihres Erkennungsskripts verringern."
+ },
+ "Manual": {
+ "FileRule": {
+ "DetectionMethodOptions": {
+ "dateCreated": "Erstellungsdatum",
+ "dateModified": "Änderungsdatum",
+ "doesNotExist": "Datei oder Ordner nicht vorhanden.",
+ "fileOrFolderExists": "Datei oder Ordner ist vorhanden",
+ "sizeInMB": "Größe in MB",
+ "version": "Zeichenfolge (Version)"
+ },
+ "associatedWith32Bit": "Auf 64-Bit-Clients einer 32-Bit-App zugeordnet",
+ "associatedWith32BitTooltip": "Wählen Sie \"Ja\", um Pfadumgebungsvariablen auf 64-Bit-Clients im 32-Bit-Kontext zu erweitern. Wählen Sie \"Nein\" (Standardeinstellung) aus, um Pfadvariablen auf 64-Bit-Clients im 64-Bit-Kontext zu erweitern. 32-Bit-Clients verwenden immer den 32-Bit-Kontext.",
+ "detectionMethod": "Erkennungsmethode",
+ "detectionMethodTooltip": "Wählen Sie den Typ der Erkennungsmethode aus, um das Vorhandensein der App zu überprüfen.",
+ "fileOrFolder": "Datei oder Ordner",
+ "fileOrFolderToolTip": "Die Datei oder der Ordner für die Erkennung.",
+ "operator": "Operator",
+ "operatorTooltip": "Wählen Sie den Operator für die Erkennungsmethode zum Überprüfen des Vergleichs aus.",
+ "path": "Pfad",
+ "pathTooltip": "Der vollständige Pfad des Ordners, der die Datei oder den Order für die Ermittlung enthält.",
+ "value": "Wert",
+ "valueTooltip": "Wählen Sie einen Wert aus, der der ausgewählten Erkennungsmethode entspricht. Datumserkennungsmethoden müssen in lokaler Zeit eingegeben werden."
+ },
+ "GridColumns": {
+ "pathOrCode": "Pfad/Code",
+ "type": "Typ"
+ },
+ "MsiRule": {
+ "operator": "Operator",
+ "operatorTooltip": "Wählen Sie den Operator für den Vergleich zur MSI-Produktversionsüberprüfung aus.",
+ "productCode": "MSI-Produktcode",
+ "productCodeTooltip": "Ein gültiger MSI-Produktcode für die App.",
+ "productVersion": "Wert",
+ "productVersionCheck": "Überprüfung der MSI-Produktversion",
+ "productVersionCheckTooltip": "Wählen Sie \"Ja\", um zusätzlich zum MSI-Produktcode die MSI-Produktversion zu überprüfen.",
+ "productVersionTooltip": "Geben Sie die MSI-Produktversion für die App ein."
+ },
+ "RegistryRule": {
+ "DetectionMethodOptions": {
+ "integerComparison": "Ganzzahlenvergleich",
+ "keyDoesNotExist": "Schlüssel nicht vorhanden",
+ "keyExists": "Schlüssel vorhanden",
+ "stringComparison": "Zeichenfolgenvergleich",
+ "valueDoesNotExist": "Wert nicht vorhanden",
+ "valueExists": "Wert vorhanden",
+ "versionComparison": "Versionsvergleich"
+ },
+ "associatedWith32Bit": "Auf 64-Bit-Clients einer 32-Bit-App zugeordnet",
+ "associatedWith32BitTooltip": "Wählen Sie \"Ja\", um auf 64-Bit-Clients die 32-Bit-Registrierung zu durchsuchen. Wählen Sie \"Nein\" (Standardeinstellung) aus, um auf 64-Bit-Clients die 64-Bit-Registrierung zu durchsuchen. 32-Bit-Clients durchsuchen immer die 32-Bit-Registrierung.",
+ "detectionMethod": "Erkennungsmethode",
+ "detectionMethodTooltip": "Wählen Sie den Typ der Erkennungsmethode aus, um das Vorhandensein der App zu überprüfen.",
+ "keyPath": "Schlüsselpfad",
+ "keyPathTooltip": "Der vollständige Pfad des Registrierungseintrags mit dem Wert, der erkannt werden soll.",
+ "operator": "Operator",
+ "operatorTooltip": "Wählen Sie den Operator für die Erkennungsmethode zum Überprüfen des Vergleichs aus.",
+ "value": "Wert",
+ "valueName": "Wertname",
+ "valueNameTooltip": "Der Name des Registrierungswerts, der erkannt werden soll.",
+ "valueTooltip": "Wählen Sie einen Wert aus, der mit der ausgewählten Erkennungsmethode übereinstimmt."
+ },
+ "RuleTypeOptions": {
+ "file": "Datei",
+ "mSI": "MSI",
+ "registry": "Registrierung"
+ },
+ "gridAriaLabel": "Erkennungsregeln",
+ "header": "Erstellen Sie eine Regel, die das Vorhandensein dieser App anzeigt.",
+ "noRulesSelectedPlaceholder": "Keine Regeln angegeben.",
+ "ruleTableLimit": "Sie können bis zu 25 Erkennungsregeln hinzufügen.",
+ "ruleType": "Regeltyp",
+ "ruleTypeTooltip": "Wählen Sie den Typ der hinzuzufügenden Erkennungsregel aus."
+ },
+ "RuleConfigurationOptions": {
+ "customScript": "Benutzerdefiniertes Skript für die Erkennung verwenden",
+ "manual": "Erkennungsregeln manuell konfigurieren"
+ },
+ "bladeTitle": "Erkennungsregeln",
+ "header": "Konfigurieren Sie App-spezifische Regeln zum Erkennen des Vorhandenseins der App.",
+ "rulesFormat": "Regelformat",
+ "rulesFormatTooltip": "Konfigurieren Sie die Erkennungsregeln entweder manuell, oder verwenden Sie ein benutzerdefiniertes Skript, um das Vorhandensein der App zu erkennen.",
+ "selectorLabel": "Erkennungsregeln"
+ },
+ "PolicyType": {
+ "AttackSurfaceReductionRules": {
+ "configMgr": "Regeln zur Verringerung der Angriffsfläche (ConfigMgr)"
+ },
+ "EndpointDetectionandResponse": {
+ "mDE": "Endpunkterkennung und -antwort"
+ },
+ "EndpointSecurityTemplate": {
+ "aSRAppBrowserSecurity": "App- und Browserisolierung",
+ "aSRApplicationControl": "Anwendungssteuerung",
+ "aSRAttackSurfaceReduction": "Regeln zur Verringerung der Angriffsfläche",
+ "aSRDeviceControl": "Gerätesteuerung",
+ "aSRExploitProtection": "Exploit-Schutz",
+ "aSRWebProtection": "Webschutz (Microsoft Edge-Legacyversion)",
+ "aVExclusions": "Microsoft Defender Antivirus-Ausschlüsse",
+ "antivirus": "Microsoft Defender Antivirus",
+ "cloudPC": "Windows 365-Sicherheitsbaseline",
+ "default": "Endpunktsicherheit",
+ "defenderTest": "Microsoft Defender für Endpunkt-Demo",
+ "diskEncryption": "BitLocker",
+ "eDR": "Endpunkterkennung und -antwort",
+ "edgeSecurityBaseline": "Microsoft Edge-Baseline",
+ "edgeSecurityBaselinePreview": "Vorschau: Microsoft Edge-Baseline",
+ "editionUpgradeConfiguration": "Editionsupgrade und Moduswechsel",
+ "firewall": "Microsoft Defender Firewall",
+ "firewallRules": "Microsoft Defender Firewall-Regeln",
+ "identityProtection": "Kontoschutz",
+ "identityProtectionPreview": "Kontoschutz (Vorschau)",
+ "mDMSecurityBaseline1810": "MDM-Sicherheitsbaseline für Windows 10 und höher für Oktober 2018",
+ "mDMSecurityBaseline1810Preview": "Vorschau: MDM-Sicherheitsbaseline für Windows 10 und höher für Oktober 2018",
+ "mDMSecurityBaseline1810PreviewBeta": "Vorschau: MDM-Sicherheitsbaseline für Windows 10 für Oktober 2018 (Beta)",
+ "mDMSecurityBaseline1906": "MDM-Sicherheitsbaseline für Windows 10 und höher für Mai 2019",
+ "mDMSecurityBaseline2004": "MDM-Sicherheitsbaseline für Windows 10 und höher für August 2020",
+ "mDMSecurityBaseline2101": "MDM-Sicherheitsbaseline für Windows 10 und höher Dezember 2020",
+ "macOSAntivirus": "Antivirus",
+ "macOSDiskEncryption": "FileVault",
+ "macOSFirewall": "macOS-Firewall",
+ "microsoftDefenderBaseline": "Microsoft Defender für Endpunkt-Baseline",
+ "office365Baseline": "Microsoft Office O365-Baseline",
+ "office365BaselinePreview": "Vorschau: Microsoft Office O365-Baseline",
+ "securityBaselines": "Sicherheitsbaselines",
+ "test": "Testvorlage",
+ "testFirewallRulesSecurityTemplateName": "Microsoft Defender Firewall-Regeln (Test)",
+ "testIdentityProtectionSecurityTemplateName": "Kontoschutz (Test)",
+ "windowsSecurityExperience": "Windows-Sicherheitsfunktionalität"
+ },
+ "Firewall": {
+ "mDE": "Microsoft Defender Firewall"
+ },
+ "FirewallRules": {
+ "mDE": "Microsoft Defender Firewall-Regeln"
+ },
+ "administrativeTemplates": "Administrative Vorlagen",
+ "androidCompliancePolicy": "Android-Kompatibilitätsrichtlinie",
+ "aospDeviceOwnerCompliancePolicy": "Android-Konformitätsrichtlinie (AOSP)",
+ "applicationControl": "Anwendungssteuerung",
+ "custom": "Benutzerdefiniert",
+ "deliveryOptimization": "Übermittlungsoptimierung",
+ "derivedPersonalIdentityVerificationCredential": "Abgeleitete Anmeldeinformation",
+ "deviceFeatures": "Gerätefunktionen",
+ "deviceFirmwareConfigurationInterface": "Schnittstelle zur Konfiguration der Gerätefirmware",
+ "deviceLock": "Gerätesperre",
+ "deviceOwner": "Vollständig verwaltetes, dediziertes und unternehmenseigenes Arbeitsprofil",
+ "deviceRestrictions": "Geräteeinschränkungen",
+ "deviceRestrictionsWindows10Team": "Geräteeinschränkungen (Windows 10 Team)",
+ "domainJoinPreview": "Domänenbeitritt",
+ "editionUpgradeAndModeSwitch": "Editionsupgrade und Moduswechsel",
+ "education": "Bildung",
+ "email": "E-Mail",
+ "emailSamsungKnoxOnly": "E-Mail (nur Samsung KNOX)",
+ "endpointProtection": "Endpoint Protection",
+ "expeditedCheckin": "Konfiguration der Verwaltung mobiler Geräte",
+ "exploitProtection": "Exploit-Schutz",
+ "extensions": "Erweiterungen",
+ "hardwareConfigurations": "BIOS-Konfigurationen",
+ "identityProtection": "Identity Protection",
+ "iosCompliancePolicy": "iOS-Konformitätsrichtlinie",
+ "kiosk": "Kiosk",
+ "macCompliancePolicy": "Mac-Kompatibilitätsrichtlinie",
+ "microsoftDefenderAntivirus": "Microsoft Defender Antivirus",
+ "microsoftDefenderAntivirusexclusions": "Microsoft Defender Antivirus-Ausschlüsse",
+ "microsoftDefenderAtpWindows10Desktop": "Microsoft Defender für Endpunkt (Desktopgeräte, auf denen Windows 10 oder höher ausgeführt wird)",
+ "microsoftDefenderFirewallRules": "Microsoft Defender Firewall-Regeln",
+ "microsoftEdgeBaseline": "Microsoft Edge-Baseline",
+ "mxProfileZebraOnly": "MX-Profil (nur Zebra)",
+ "networkBoundary": "Netzwerkgrenze",
+ "oemConfig": "OEMConfig",
+ "overrideGroupPolicy": "Gruppenrichtlinie außer Kraft setzen",
+ "pkcsCertificate": "PKCS-Zertifikat",
+ "pkcsImportedCertificate": "Importiertes PKCS-Zertifikat",
+ "preferenceFile": "Einstellungsdatei",
+ "presets": "Voreinstellungen",
+ "scepCertificate": "SCEP-Zertifikat",
+ "secureAssessmentEducation": "Sicheres Assessment (Education)",
+ "settingsCatalog": "Einstellungskatalog",
+ "sharedMultiUserDevice": "Freigegebenes, von mehreren Benutzern verwendetes Gerät",
+ "softwareUpdates": "Softwareupdates",
+ "trustedCertificate": "Vertrauenswürdiges Zertifikat",
+ "unknown": "Unbekannt",
+ "unsupported": "Nicht unterstützt",
+ "vpn": "VPN",
+ "wiFi": "WLAN",
+ "wiFiImport": "WLAN (Import)",
+ "windows10CompliancePolicy": "Windows 10/11-Konformitätsrichtlinie",
+ "windows10MobileCompliancePolicy": "Windows 10 Mobile-Kompatibilitätsrichtlinie",
+ "windows10XScep": "SCEP-Zertifikat: TEST",
+ "windows10XTrustedCertificate": "Vertrauenswürdiges Zertifikat: TEST",
+ "windows10XVPN": "VPN: TEST",
+ "windows10XWifi": "WLAN: TEST",
+ "windows8CompliancePolicy": "Windows 8-Kompatibilitätsrichtlinie",
+ "windowsHealthMonitoring": "Windows-Integritätsüberwachung",
+ "windowsInformationProtection": "Windows Information Protection",
+ "windowsPhoneCompliancePolicy": "Windows Phone-Kompatibilitätsrichtlinie",
+ "windowsUpdateforBusiness": "Windows Update for Business",
+ "wiredNetwork": "Kabelgebundenes Netzwerk",
+ "workProfile": "Arbeitsprofil \"Persönliches Eigentum\""
+ },
+ "Win32Requirements": {
+ "AdditionalRequirements": {
+ "File": {
+ "fileOrFolderToolTip": "Die Datei oder der Ordner als ausgewählte Anforderung.",
+ "pathToolTip": "Der vollständige Pfad der Datei oder des Ordners, die bzw. der erkannt werden soll.",
+ "property": "Eigenschaft",
+ "valueToolTip": "Wählen Sie einen Anforderungswert aus, der der ausgewählten Erkennungsmethode entspricht. Die Datums- und die Zeitanforderung müssen im lokalen Format eingegeben werden."
+ },
+ "GridColumns": {
+ "pathOrScript": "Pfad/Skript",
+ "type": "Typ"
+ },
+ "Registry": {
+ "keyPath": "Schlüsselpfad",
+ "keyPathTooltip": "Der vollständige Pfad des Registrierungseintrags mit dem Wert als Anforderung.",
+ "operator": "Operator",
+ "operatorTooltip": "Wählen Sie den Operator für den Vergleich aus.",
+ "registryRequirement": "Registrierungsschlüsselanforderung",
+ "registryRequirementTooltip": "Wählen Sie den Registrierungsschlüssel-Anforderungsvergleich aus.",
+ "valueName": "Wertname",
+ "valueNameTooltip": "Der Name des erforderlichen Registrierungswerts."
+ },
+ "RequirementTypeOptions": {
+ "fileType": "Datei",
+ "registry": "Registrierung",
+ "script": "Skript"
+ },
+ "Script": {
+ "RequirementMethodOptions": {
+ "boolean": "Boolescher Wert",
+ "dateTime": "Datum und Uhrzeit",
+ "float": "Gleitkomma",
+ "integer": "Ganze Zahl",
+ "string": "Zeichenfolge",
+ "version": "Version"
+ },
+ "ScriptContent": {
+ "emptyMessage": "Der Skriptinhalt darf nicht leer sein."
+ },
+ "duplicateName": "Der Skriptname \"{0}\" wird bereits verwendet. Geben Sie einen anderen Namen ein.",
+ "enforceSignatureCheck": "Skriptsignaturprüfung erzwingen",
+ "enforceSignatureCheckTooltip": "Wählen Sie \"Ja\" aus, um sicherzustellen, dass das Skript von einem vertrauenswürdigen Herausgeber signiert ist, damit das Skript ohne Warnungen oder Eingabeaufforderungen ausgeführt werden kann. Das Skript wird ohne Blockierung ausgeführt. Wählen Sie \"Nein\" (Standardeinstellung) aus, um das Skript mit Benutzerbestätigung, aber ohne Signaturüberprüfung auszuführen.",
+ "loggedOnCredentials": "Dieses Skript mit den Anmeldeinformationen des angemeldeten Benutzers ausführen",
+ "loggedOnCredentialsTooltip": "Führen Sie das Skript mit den Anmeldeinformationen des angemeldeten Geräts aus.",
+ "operatorTooltip": "Wählen Sie den Operator für den Anforderungsvergleich aus.",
+ "requirementMethod": "Ausgabedatentyp auswählen",
+ "requirementMethodTooltip": "Wählen Sie den Datentyp aus, der beim Ermitteln einer Anforderung zur Erkennungsübereinstimmung verwendet wird.",
+ "scriptFile": "Skriptdatei",
+ "scriptFileTooltip": "Wählen Sie ein PowerShell-Skript aus, mit dem das Vorhandensein der App auf dem Client erkannt wird. Wenn die App erkannt wird, stellt der Anforderungsprozess einen Exitcode mit dem Wert 0 bereit und schreibt einen Zeichenfolgenwert in STDOUT.",
+ "scriptName": "Skriptname",
+ "value": "Wert",
+ "valueTooltip": "Wählen Sie einen Anforderungswert aus, der der ausgewählten Erkennungsmethode entspricht. Die Datums- und die Zeitanforderung müssen im lokalen Format eingegeben werden."
+ },
+ "bladeTitle": "Anforderungsregel hinzufügen",
+ "createRequirementHeader": "Erstellen Sie eine Anforderung.",
+ "header": "Konfigurieren Sie zusätzliche Anforderungsregeln.",
+ "label": "Zusätzliche Anforderungsregeln",
+ "noRequirementsSelectedPlaceholder": "Keine Anforderungen angegeben.",
+ "requirementType": "Anforderungstyp",
+ "requirementTypeTooltip": "Wählen Sie den Typ der Erkennungsmethode aus, die festlegt, wie eine Anforderung überprüft wird."
+ },
+ "architectures": "Betriebssystemarchitektur",
+ "architecturesTooltip": "Wählen Sie die Architekturen aus, die zum Installieren der App benötigt werden.",
+ "bladeTitle": "Anforderungen",
+ "diskSpace": "Erforderlicher Speicherplatz (MB)",
+ "diskSpaceTooltip": "Der benötigte freie Speicherplatz auf dem Systemlaufwerk zum Installieren der App.",
+ "header": "Geben Sie die Anforderungen an, die Geräte vor dem Installieren der App erfüllen müssen:",
+ "maximumTextFieldValue": "Der Wert darf höchstens {0} betragen.",
+ "minimumCpuSpeed": "Mindestens erforderliche CPU-Geschwindigkeit (MHz)",
+ "minimumCpuSpeedTooltip": "Die mindestens erforderliche CPU-Geschwindigkeit zum Installieren der App.",
+ "minimumLogicalProcessors": "Mindestens erforderliche Anzahl logischer Prozessoren",
+ "minimumLogicalProcessorsTooltip": "Die mindestens erforderliche Anzahl logischer Prozessoren zum Installieren der App.",
+ "minimumOperatingSystem": "Mindestens erforderliches Betriebssystem",
+ "minimumOperatingSystemTooltip": "Wählen Sie das mindestens erforderliche Betriebssystem zum Installieren der App aus.",
+ "minumumTextFieldValue": "Der Wert muss mindestens {0} sein.",
+ "physicalMemory": "Erforderlicher physischer Speicher (MB)",
+ "physicalMemoryTooltip": "Erforderlicher physischer Arbeitsspeicher (RAM) zum Installieren der App.",
+ "selectorLabel": "Anforderungen",
+ "validNumber": "Geben Sie eine gültige Zahl ein."
+ },
+ "AzureIAM": {
+ "AdrsUserActionSelectionWarning": {
+ "conditions": "Bedingungen, die eine Geräteregistrierung erfordern, sind mit der Benutzeraktion „Geräte registrieren oder beitreten“ nicht verfügbar.",
+ "message": "In Richtlinien, die für die Benutzeraktion \"Geräte registrieren oder einbinden\" erstellt wurden, kann nur \"Multi-Faktor-Authentifizierung erforderlich\" festgelegt werden. {0}"
+ },
+ "AuthContext": {
+ "Delete": {
+ "failure": "Fehler beim Löschen von {0}",
+ "failureCa": "Fehler beim Löschen von {0}, da ZS-Richtlinien darauf verweisen.",
+ "modifying": "{0} wird gelöscht.",
+ "success": "{0} erfolgreich gelöscht"
+ },
+ "Included": {
+ "none": "Keine Cloud-Apps, Aktionen oder Authentifizierungskontexte ausgewählt.",
+ "plural": "{0} Authentifizierungskontexte eingeschlossen",
+ "singular": "1 Authentifizierungskontext eingeschlossen"
+ },
+ "InfoBlade": {
+ "createTitle": "Authentifizierungskontext hinzufügen",
+ "descPlaceholder": "Fügen Sie eine Beschreibung für den Authentifizierungskontext hinzu.",
+ "modifyTitle": "Authentifizierungskontext ändern",
+ "namePlaceholder": "Beispiele: vertrauenswürdiger Speicherort, vertrauenswürdiges Gerät, starke Autorisierung",
+ "publishDesc": "Durch \"In Apps veröffentlichen\" wird der Authentifizierungskontext für Apps zur Verfügung gestellt und kann verwendet werden. Veröffentlichen Sie ihn, wenn Sie die Konfiguration der Richtlinie für bedingten Zugriff für das Tag abgeschlossen haben. [Weitere Informationen][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150966",
+ "publishLabel": "In Apps veröffentlichen",
+ "titleDesc": "Konfigurieren Sie einen Authentifizierungskontext, der zum Schutz von Anwendungsdaten und Aktionen verwendet wird. Verwenden Sie Namen und Beschreibungen, die für Anwendungsadministratoren verständlich sind. [Weitere Informationen][1]\n[1]:https://go.microsoft.com/fwlink/?linkid=2150965"
+ },
+ "Notify": {
+ "failure": "Fehler beim Aktualisieren von \"{0}\".",
+ "modifying": "\"{0}\" wird geändert",
+ "success": "\"{0}\" erfolgreich aktualisiert"
+ },
+ "WhatIf": {
+ "selected": "Authentifizierungskontext eingeschlossen"
+ },
+ "addNewStepUp": "Neuer Authentifizierungskontext",
+ "checkBoxInfo": "Wählen Sie die Authentifizierungskontexte aus, für die diese Richtlinie gelten soll.",
+ "configure": "Authentifizierungskontexte konfigurieren",
+ "createCA": "Richtlinien für bedingten Zugriff dem Authentifizierungskontext zuweisen",
+ "dataGrid": "Liste der Authentifizierungskontexte",
+ "deleteFailedByReference": "You cannot delete this authentication context because it is being referenced by CA policies.",
+ "description": "Beschreibung",
+ "documentation": "Dokumentation",
+ "getStarted": "Erste Schritte",
+ "label": "Authentifizierungskontext (Vorschau)",
+ "menuLabel": "Authentifizierungskontext (Vorschau)",
+ "name": "Name",
+ "noAuthContextConfigured": "Es wurden keine Authentifizierungskontexte konfiguriert.",
+ "noAuthContextSet": "Es sind keine Authentifizierungskontexte vorhanden",
+ "noData": "Keine Authentifizierungskontexte zur Anzeige vorhanden.",
+ "selectionInfo": "Ein Authentifizierungskontext wird verwendet, um Anwendungsdaten und Aktionen in Apps wie SharePoint und Microsoft Cloud App Security zu schützen.",
+ "step": "Schritt",
+ "tabDescription": "Verwalten Sie den Authentifizierungskontext, um Daten und Aktionen in Ihren Apps zu schützen. [Weitere Informationen][1]\n[1]:https://go.microsoft.com/fwlink/?linkid=2150965",
+ "tagResources": "Ressourcen mit einem Authentifizierungskontext markieren"
+ },
+ "AuthenticationStrength": {
+ "Mode": {
+ "deviceBasedPush": "Microsoft Authenticator (Anmeldung per Telefon)",
+ "deviceBasedPushFido2X509Certificate": "Microsoft Authenticator (Anmeldung per Telefon) + FIDO 2 + zertifikatbasierte Authentifizierung",
+ "deviceBasedPushX509CertificateSingleFactor": "Microsoft Authenticator (Anmeldung per Telefon) + FIDO 2 + zertifikatbasierte Authentifizierung (Einzelfaktor)",
+ "email": "Einmal-Passcode per E-Mail",
+ "emailOtp": "Einmal-Passcode per E-Mail",
+ "federatedMultiFactor": "Multi-Faktor-Verbund",
+ "federatedSingleFactor": "Verbund-Einzelfaktor",
+ "federatedSingleFactorFederatedMultiFactor": "Einzelfaktor-Verbund + Multi-Faktor-Verbund",
+ "fido2": "FIDO 2-Sicherheitsschlüssel",
+ "fido2X509CertificateSingleFactor": "FIDO 2-Sicherheitsschlüssel + zertifikatbasierte Authentifizierung (Einzelfaktor)",
+ "hardwareOath": "Hardware-OATH-Token",
+ "hardwareOathEmail": "Hardware-OATH-Token und Einmal-Passcode per E-Mail",
+ "hardwareOathX509CertificateSingleFactor": "Hardware-OATH-Token und zertifikatbasierte Authentifizierung (Einfachfaktor)",
+ "microsoftAuthenticatorPSIX509CertificateSingleFactor": "Microsoft Authenticator (Anmeldung per Telefon) + zertifikatbasierte Authentifizierung (Einzelfaktor)",
+ "microsoftAuthenticatorPsi": "Microsoft Authenticator (Anmeldung per Telefon)",
+ "microsoftAuthenticatorPush": "Microsoft Authenticator (Pushbenachrichtigung)",
+ "microsoftAuthenticatorPushEmail": "Microsoft Authenticator (Pushbenachrichtigung) und Einmal-Passcode per E-Mail",
+ "microsoftAuthenticatorPushX509CertificateSingleFactor": "Microsoft Authenticator (Pushbenachrichtigung) + zertifikatbasierte Authentifizierung (Einzelfaktor)",
+ "none": "Keine",
+ "password": "Kennwort",
+ "passwordDeviceBasedPush": "Kennwort + Microsoft Authenticator (Anmeldung per Telefon)",
+ "passwordFido2": "Kennwort + FIDO 2-Sicherheitsschlüssel",
+ "passwordHardwareOath": "Kennwort und Hardware-OATH-Token",
+ "passwordMicrosoftAuthenticatorPSI": "Kennwort + Microsoft Authenticator (Anmeldung per Telefon)",
+ "passwordMicrosoftAuthenticatorPush": "Kennwort + Microsoft Authenticator (Pushbenachrichtigung)",
+ "passwordSms": "Kennwort + SMS",
+ "passwordSoftwareOath": "Kennwort und Software-OATH-Token",
+ "passwordTemporaryAccessPassMultiUse": "Kennwort + befristeter Zugriffspass (Mehrfachverwendung)",
+ "passwordTemporaryAccessPassOneTime": "Kennwort + befristeter Zugriffspass (einmalige Verwendung)",
+ "passwordVoice": "Kennwort + Stimme",
+ "sms": "SMS",
+ "smsEmail": "SMS und Einmal-Passcode per E-Mail",
+ "smsSignIn": "SMS-Anmeldung",
+ "smsX509CertificateSingleFactor": "SMS + zertifikatbasierte Authentifizierung (Einzelfaktor)",
+ "softwareOath": "Software-OATH-Token",
+ "softwareOathEmail": "Software-OATH-Token und Einmal-Passcode per E-Mail",
+ "softwareOathX509CertificateSingleFactor": "Software-OATH-Token und zertifikatbasierte Authentifizierung (Einfachfaktor)",
+ "temporaryAccessPassMultiUse": "Befristeter Zugriffspass (mehrfache Verwendung)",
+ "temporaryAccessPassMultiUseX509CertificateSingleFactor": "Befristeter Zugriffspass (Mehrfachverwendung) + zertifikatbasierte Authentifizierung (Einzelfaktor)",
+ "temporaryAccessPassOneTime": "Befristeter Zugriffspass (einmalige Verwendung)",
+ "temporaryAccessPassOneTimeX509CertificateSingleFactor": "Befristeter Zugriffspass (einmalige Verwendung) + zertifikatbasierte Authentifizierung (Einzelfaktor)",
+ "voice": "Stimme",
+ "voiceEmail": "Voice und Einmal-Passcode per E-Mail",
+ "voiceX509CertificateSingleFactor": "Sprache + zertifikatbasierte Authentifizierung (Einzelfaktor)",
+ "windowsHelloForBusiness": "Windows Hello for Business",
+ "x509CertificateMultiFactor": "Zertifikatbasierte Authentifizierung (Multi-Faktor)",
+ "x509CertificateSingleFactor": "Zertifikatbasierte Authentifizierung (Einzelfaktor)"
+ }
+ },
+ "CAS": {
+ "BuiltinPolicy": {
+ "Option": {
+ "blockDownloads": "Downloads blockieren (Vorschau)",
+ "monitorOnly": "Nur überwachen (Vorschau)",
+ "protectDownloads": "Downloads schützen (Vorschau)",
+ "useCustomControls": "Benutzerdefinierte Richtlinie verwenden..."
+ },
+ "ariaLabel": "Wählen Sie die Art der anzuwendenden App-Steuerung für bedingten Zugriff aus."
+ }
+ },
+ "ChooseApplications": {
+ "Grid": {
+ "appIdAria": "App-ID: {0}"
+ },
+ "LowerGrid": {
+ "ariaLabel": "Liste ausgewählter Cloud-Apps"
+ },
+ "UpperGrid": {
+ "ariaLabel": "Liste der Cloud-Apps, die dem Suchbegriff entsprechen"
+ }
+ },
+ "ChooseLocations": {
+ "Validation": {
+ "failed": "Bei \"Ausgewählte Standorte\" müssen Sie mindestens einen Standort auswählen.",
+ "selector": "Wählen Sie mindestens einen Standort aus."
+ }
+ },
+ "ClientApp": {
+ "Clients": {
+ "Validation": {
+ "failed": "Sie müssen mindestens einen der folgenden Clients auswählen."
+ }
+ }
+ },
+ "ClientConditionsInfo": {
+ "browserAndModern": "Diese Richtlinie gilt nur für Browser und Apps mit moderner Authentifizierung. Um die Richtlinie auf alle Client-Apps anzuwenden, aktivieren Sie die Client-App-Bedingung, und wählen Sie alle Client-Apps aus.",
+ "classicExperience": "Die Standardkonfiguration für Client-Apps wurde seit der Erstellung dieser Richtlinie aktualisiert.",
+ "legacyAuth": "Sofern nicht konfiguriert, gelten Richtlinien ab sofort für alle Client-Apps – moderne Authentifizierung und Legacyauthentifizierung eingeschlossen."
+ },
+ "CloudAppFilterBlade": {
+ "AssignmentFilter": {
+ "header": "Attribut",
+ "placeholder": "Attribut auswählen"
+ },
+ "Configure": {
+ "infoBalloon": "Konfigurieren Sie App-Filter, die für die Richtlinie gelten sollen."
+ },
+ "NoPermissions": {
+ "learnMoreAria": "Weitere Informationen zu Berechtigungen für benutzerdefinierte Sicherheitsattribute.",
+ "message": "Sie verfügen nicht über die erforderlichen Berechtigungen, um benutzerdefinierte Sicherheitsattribute zu verwenden."
+ },
+ "gridHeader": "Mit benutzerdefinierten Sicherheitsattributen können Sie den Regel-Generator oder das Regelsyntax-Textfeld verwenden, um die Filterregeln zu erstellen oder zu bearbeiten. In der Vorschauversion werden nur Attribute vom Typ „Zeichenfolge“ unterstützt. Attribute vom Typ „Integer“ oder „Boolesch“ werden nicht angezeigt.",
+ "learnMoreAria": "Weitere Informationen zur Verwendung des Regelgenerators und des Syntax-Textfelds.",
+ "noAttributes": "Es sind keine benutzerdefinierten Attribute verfügbar, nach denen gefiltert werden kann. Sie müssen einige Attribute konfigurieren, um diesen Filter einzusetzen.",
+ "title": "Filter bearbeiten (Vorschau)"
+ },
+ "CloudAppsUserActions": {
+ "any": "Beliebige Cloud-App oder Aktion",
+ "infoBalloon": "Cloud-App oder Benutzeraktion, die Sie testen möchten. Beispiel: SharePoint Online",
+ "learnMore": "Steuern Sie den Zugriff basierend auf allen oder bestimmten Cloud-Apps oder -Aktionen.",
+ "learnMoreB2C": "Steuern Sie den Zugriff basierend auf allen oder bestimmten Cloud-Apps.",
+ "title": "Cloud-Apps oder -aktionen"
+ },
+ "CloudappsSelectionBlade": {
+ "Excluded": {
+ "gridAria": "Liste ausgeschlossener Cloud-Apps"
+ },
+ "Filter": {
+ "configured": "Konfiguriert",
+ "label": "Filter bearbeiten (Vorschau)",
+ "with": "{0} mit {1}"
+ },
+ "Included": {
+ "gridAria": "Liste eingeschlossener Cloud-Apps"
+ },
+ "Validation": {
+ "authContext": "Für \"Authentifizierungskontext\" muss mindestens ein untergeordnetes Element konfiguriert werden.",
+ "selectApps": "„{0}“ muss konfiguriert werden",
+ "selector": "Wählen Sie mindestens eine App aus.",
+ "userActions": "Bei \"Benutzeraktionen\" muss mindestens ein untergeordnetes Element konfiguriert werden."
+ }
+ },
+ "DeviceState": {
+ "LearnMore": {
+ "message": "Steuern Sie den Benutzerzugriff, wenn das Gerät, von dem sich der Benutzer anmeldet, nicht „Hybrid, in Azure AD eingebunden“ oder „als kompatibel markiert“ ist.\n Dies ist veraltet. Verwenden Sie stattdessen „{1}“."
+ }
+ },
+ "Errors": {
+ "notFound": "Die Richtlinie wurde nicht gefunden oder wurde gelöscht.",
+ "notFoundDetailed": "Die Richtlinie \"{0}\" ist nicht mehr vorhanden. Möglicherweise wurde sie gelöscht."
+ },
+ "GuestsOrExternalUsers": {
+ "allExternalTenantsLabel": "Alle Azure AD-Organisationen",
+ "b2bCollaborationGuestLabel": "B2B Collaboration-Gastbenutzer",
+ "b2bCollaborationMemberLabel": "B2B Collaboration-Mitgliederbenutzer",
+ "b2bDirectConnectUserLabel": "B2B Direct Connect-Benutzer",
+ "enumeratedExternalTenantsError": "Wählen Sie bitte mindestens einen externen Mandanten aus.",
+ "enumeratedExternalTenantsLabel": "Azure AD-Organisationen auswählen",
+ "externalTenantsLabel": "Angeben externer Azure AD-Organisationen",
+ "externalUserDropdownLabel": "Auswählen von Gast- oder externen Benutzertypen",
+ "externalUsersError": "Wählen Sie mindestens einen externen Gast- oder Benutzertyp aus.",
+ "guestOrExternalUsersInfoContent": "Umfasst B2B Collaboration-Benutzer, Benutzer mit direkter B2B-Verbindung und andere Arten von externen Benutzern.",
+ "guestOrExternalUsersLabel": "Gastbenutzer oder externe Benutzer",
+ "internalGuestLabel": "Lokale Gastbenutzer",
+ "otherExternalUserLabel": "Andere externe Benutzer"
+ },
+ "NamedLocation": {
+ "Form": {
+ "CountryLookup": {
+ "ariaLabel": "Methode für Länder-/Regionssuche",
+ "gps": "Standort anhand von GPS-Koordinaten bestimmen",
+ "info": "Wenn die Standortbedingung einer Richtlinie für bedingten Zugriff konfiguriert ist, werden Benutzer von der Authenticator-App aufgefordert, ihren GPS-Standort freizugeben. ",
+ "ip": "Standort anhand der IP-Adresse bestimmen (nur IPv4)"
+ },
+ "Header": {
+ "new": "Neuer Standort ({0})",
+ "update": "Standort aktualisieren ({0})"
+ },
+ "IP": {
+ "learn": "Konfigurieren Sie IPv4- und IPv6-Bereiche für benannte Standorte.\n[Weitere Informationen][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
+ },
+ "Include": {
+ "infoBalloon": "Unbekannte Länder/Regionen sind IP-Adressen, die keinem bestimmten Land bzw. keiner bestimmten Region zugeordnet sind. [Weitere Informationen][1]\n\nHierzu gehören:\n* IPv6-Adressen\n* IPv4-Adressen ohne direkte Zuordnung\n[1]: https://aka.ms/canamedlocations\n",
+ "label": "Unbekannte Länder/Regionen einbeziehen"
+ },
+ "Name": {
+ "empty": "Der Name darf nicht leer sein.",
+ "placeholder": "Diesen Standort benennen"
+ },
+ "PrivateLink": {
+ "learn": "Erstellen Sie einen neuen benannten Standort mit Private Link-Instanzen für Azure AD. \n[Weitere Informationen][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
+ },
+ "Search": {
+ "countries": "Länder suchen",
+ "names": "Namen suchen",
+ "privateLinks": "Private Link-Instanzen suchen"
+ },
+ "Trusted": {
+ "label": "Als vertrauenswürdigen Standort markieren"
+ },
+ "enter": "Neuen IPv4- oder IPv6-Bereich eingeben",
+ "example": "Beispiel: 40.77.182.32/27 oder 2a01:111::/32"
+ },
+ "Label": {
+ "addCountries": "Länder (Standort)",
+ "addIpRange": "IP-Adressbereiche (Standort)",
+ "addPrivateLink": "Azure Private Link-Instanzen"
+ },
+ "Notification": {
+ "Create": {
+ "Failed": {
+ "description": "Fehler beim Erstellen eines neuen Standorts ({0}).",
+ "title": "Fehler bei der Erstellung"
+ },
+ "InProgress": {
+ "description": "Neuer Speicherort wird erstellt ({0}).",
+ "title": "Erstellung wird durchgeführt"
+ },
+ "Success": {
+ "description": "Erfolg beim Erstellen eines neuen Standorts ({0})",
+ "title": "Erstellung erfolgreich"
+ }
+ },
+ "Delete": {
+ "Failed": {
+ "description": "Fehler beim Löschen des Standorts ({0}).",
+ "title": "Fehler beim Löschen"
+ },
+ "InProgress": {
+ "description": "Der Standort wird gelöscht ({0}).",
+ "title": "Löschvorgang wird ausgeführt."
+ },
+ "Success": {
+ "description": "Der Standort wurde erfolgreich gelöscht ({0}).",
+ "title": "Löschen erfolgreich"
+ }
+ },
+ "Update": {
+ "Failed": {
+ "description": "Fehler beim Aktualisieren des Standorts ({0}).",
+ "title": "Fehler beim Aktualisieren"
+ },
+ "InProgress": {
+ "description": "Der Standort wird aktualisiert ({0}).",
+ "title": "Aktualisierung wird durchgeführt"
+ },
+ "Success": {
+ "description": "Der Standort wurde erfolgreich aktualisiert ({0}).",
+ "title": "Aktualisierung erfolgreich"
+ }
+ }
+ },
+ "PrivateLinks": {
+ "grid": "Liste der Private Link-Instanzen"
+ },
+ "Trusted": {
+ "title": "Vertrauenswürdiger Typ",
+ "trusted": "Vertrauenswürdig"
+ },
+ "Type": {
+ "all": "Alle Typen",
+ "countries": "Länder",
+ "ipRanges": "IP-Bereiche",
+ "privateLinks": "Private Link-Instanzen",
+ "title": "Standorttyp"
+ },
+ "iPRangeInvalidError": "Der Wert muss ein gültiger IPv4- oder IPv6-Adressbereich sein.",
+ "iPRangeLinkOrSiteLocalError": "Das IP-Netzwerk wurde als lokaler Link oder lokale Standortadresse erkannt.",
+ "iPRangeOctetError": "Das IP-Netzwerk darf nicht mit 0 oder 255 beginnen.",
+ "iPRangePrefixError": "Das IP-Netzwerkpräfix muss zwischen /{0} und /{1} liegen.",
+ "iPRangePrivateError": "Das IP-Netzwerk wurde als private Adresse erkannt."
+ },
+ "NamedNetwork": {
+ "List": {
+ "gridAria": "Liste der benannten Standorte"
+ }
+ },
+ "Policies": {
+ "Grid": {
+ "aria": "Liste mit Richtlinien für den bedingten Zugriff"
+ },
+ "countText": "{0} von {1} Richtlinien gefunden",
+ "countTextSingular": "{0} von 1 Richtlinie gefunden",
+ "search": "Richtlinien suchen"
+ },
+ "Policy": {
+ "Condition": {
+ "ServicePrincipalRisk": {
+ "description": "Konfigurieren der für die Erzwingung der Richtlinie erforderlichen Risikostufen des Dienstprinzipals",
+ "infoBalloonContent": "Konfigurieren des Dienstprinzipalrisikos zum Anwenden der Richtlinie auf die ausgewählte(n) Risikostufe(n)",
+ "title": "Dienstprinzipalrisiko (Vorschau)"
+ }
+ }
+ },
+ "PolicyControlAuthStrength": {
+ "MultiFactorAuthentication": {
+ "description": "Kombinationen von Methoden, die eine starke Authentifizierung erfüllen, z. B. Kennwort + SMS",
+ "displayName": "Multi-Faktor-Authentifizierung (MFA)"
+ },
+ "Passwordless": {
+ "description": "Kennwortlose Methoden, die eine starke Authentifizierung erfüllen, z. B. Microsoft Authenticator ",
+ "displayName": "Kennwortlose MFA"
+ },
+ "PhishingResistant": {
+ "description": "Phishing-sichere kennwortlose Methoden für die stärkste Authentifizierung, z. B. FIDO2-Sicherheitsschlüssel",
+ "displayName": "Phishing-resistente MFA"
+ }
+ },
+ "PolicyControlFedAuthMethod": {
+ "ariaLabel": "Learn more about requiring authentication methods satisfied by federation providers.",
+ "certificate": "Zertifikatauthentifizierung",
+ "infoBubble": "Geben Sie eine erforderliche Authentifizierungsmethode an, die vom Verbundanbieter, z. B. AD FS, erfüllt werden muss.",
+ "multifactor": "Multi-Faktor-Authentifizierung",
+ "require": "Verbundauthentifizierungsmethode erforderlich (Vorschau)",
+ "whatIfFormat": "{0} - {1}"
+ },
+ "PolicyState": {
+ "off": "Aus",
+ "on": "Ein",
+ "reportOnly": "Nur Bericht"
+ },
+ "PolicyTemplates": {
+ "Devices": {
+ "description": "Wählen Sie die Kategorie „Geräterichtlinienvorlage“ aus, um Einblick in Geräte zu erlangen, die auf das Netzwerk zugreifen. Stellen Sie die Compliance und den Integritätsstatus sicher, bevor Sie Zugriff gewähren.",
+ "name": "Geräte"
+ },
+ "Identities": {
+ "description": "Wählen Sie die Kategorie „Identitätsrichtlinienvorlage“ aus, um jede Identität mit starker Authentifizierung für Ihre gesamten digitalen Ressourcen zu überprüfen und zu schützen.",
+ "name": "Identitäten"
+ },
+ "Summary": {
+ "CloudApps": {
+ "allCloudApps": "Alle Apps",
+ "office365": "Office 365",
+ "registerSecurityInfo": "Sicherheitsinformationen registrieren"
+ },
+ "Conditions": {
+ "androidAndIOS": "Geräteplattform: Android und iOS",
+ "anyDevice": "Alle Geräte außer Android, iOS, Windows und Mac",
+ "anyDeviceStateExceptHybrid": "Alle Gerätezustände außer „konform“ und „hybrid, in Azure AD eingebunden“",
+ "anyLocation": "Beliebiger Speicherort, mit Ausnahme von „vertrauenswürdig“",
+ "browserMobileDesktop": "Client-Apps: Browser, mobile Apps und Desktopclients",
+ "exchangeActiveSync": "Client-Apps: Exchange Active Sync, andere Clients",
+ "windowsAndMac": "Geräteplattform: Windows und Mac"
+ },
+ "Devices": {
+ "anyDevice": "Jedes Gerät"
+ },
+ "Grant": {
+ "appProtectionPolicy": "Appschutz-Richtlinie erforderlich",
+ "approvedClientApp": "Genehmigte Client-App erforderlich",
+ "blockAccess": "Zugriff blockieren",
+ "mfa": "Multi-Faktor-Authentifizierung erfordern",
+ "passwordChange": "Kennwortänderung erforderlich",
+ "requireCompliantDevice": "Markieren des Geräts als kompatibel erforderlich",
+ "requireHybridAzureADDevice": "In Azure AD eingebundenes Hybridgerät erforderlich"
+ },
+ "Session": {
+ "appEnforcedRestrictions": "Von der App erzwungene Einschränkungen verwenden",
+ "signInFrequency": "Anmeldehäufigkeit und nie persistente Browsersitzung"
+ },
+ "UsersAndGroups": {
+ "allUsers": "Alle Benutzer",
+ "directoryRoles": "Verzeichnisrollen außer dem aktuellen Administrator",
+ "globalAdmin": "Globaler Administrator",
+ "noGuestAndAdmins": "Alle Benutzer außer Gast und Externe, globale Administratoren, aktueller Administrator"
+ },
+ "azureManagement": "Azure-Verwaltung",
+ "deviceFilters": "Nach Geräten filtern",
+ "devicePlatforms": "Geräteplattformen"
+ },
+ "TemplateId": {
+ "AppEnforcedRestrictions": {
+ "description": "Blockieren oder beschränken Sie den Zugriff auf SharePoint-, OneDrive- und Exchange-Inhalte von nicht verwalteten Geräten.",
+ "name": "CA014: Von der Anwendung erzwungene Einschränkungen für nicht verwaltete Geräte verwenden",
+ "title": "Von der Anwendung erzwungene Einschränkungen für nicht verwaltete Geräte verwenden"
+ },
+ "ApprovedClientApps": {
+ "description": "Um Datenverluste zu verhindern, können Organisationen den Zugriff auf genehmigte moderne Client-Apps zur Authentifizierung mit InTune-App-Schutz einschränken.",
+ "name": "CA012: Genehmigte Client-Apps und App-Schutz verlangen",
+ "title": "Genehmigte Client-Apps und App-Schutz erforderlich"
+ },
+ "BlockAccessOnUnknowns": {
+ "description": "Benutzer werden am Zugriff auf Unternehmensressourcen gehindert, wenn der Gerätetyp unbekannt oder nicht unterstützt wird.",
+ "name": "CA010: Zugriff für unbekannte oder nicht unterstützte Geräteplattform blockieren",
+ "title": "Zugriff für unbekannte oder nicht unterstützte Geräteplattform blockieren"
+ },
+ "BlockLegacyAuth": {
+ "description": "Hiermit blockieren Sie Legacy-Authentifizierungsendpunkte, die zur Umgehung der Multi-Faktor-Authentifizierung verwendet werden können. ",
+ "name": "CA003: Legacyauthentifizierung blockieren",
+ "title": "Legacy-Authentifizierung blockieren"
+ },
+ "NoPersistentBrowserSession": {
+ "description": "Schützen Sie den Benutzerzugriff auf nicht verwalteten Geräten, indem Sie verhindern, dass Browsersitzungen nach dem Schließen des Browsers angemeldet bleiben und die Anmeldehäufigkeit auf 1 Stunde festgelegt wird.",
+ "name": "CA011: Keine persistente Browsersitzung",
+ "title": "Keine persistente Browsersitzung"
+ },
+ "RequireCompliantOrHybridADAdmins": {
+ "description": "Erfordern Sie, dass privilegierte Administratoren nur auf Ressourcen zuzugreifen, wenn sie ein kompatibles oder hybrides, in Azure AD eingebundenes Gerät verwenden.",
+ "name": "CA009: Konformes oder hybrid, in Azure AD eingebundenes Gerät für Administratoren erforderlich.",
+ "title": "Konformes oder hybrid, in Azure AD eingebundenes Gerät für Administratoren erforderlich."
+ },
+ "RequireCompliantOrHybridADAllUsers": {
+ "description": "Schützen Sie den Zugriff auf Unternehmensressourcen, indem Sie festlegen, dass Benutzer ein verwaltetes Gerät verwenden oder eine Multi-Faktor-Authentifizierung durchführen müssen. (nur macOS oder Windows)",
+ "name": "CA013: Konformes oder hybrid, in Azure AD eingebundenes Gerät oder Multi-Faktor-Authentifizierung für alle Benutzer erforderlich.",
+ "title": "Konformes oder hybrid, in Azure AD eingebundenes Gerät oder Multi-Faktor-Authentifizierung für alle Benutzer erforderlich."
+ },
+ "RequireMFAAllUsers": {
+ "description": "Erfordern Sie die Multi-Faktor-Authentifizierung für alle Benutzerkonten, um das Risiko einer Kompromittierung zu verringern.",
+ "name": "CA004: Multi-Faktor-Authentifizierung für alle Benutzer verlangen",
+ "title": "Multi-Faktor-Authentifizierung für alle Benutzer verlangen"
+ },
+ "RequireMFAForAdmins": {
+ "description": "Erfordern Sie die Multi-Faktor-Authentifizierung für privilegierte Administratorkonten, um das Risiko einer Kompromittierung zu verringern. Diese Richtlinie ist auf die gleichen Rollen wie die Sicherheitsstandards ausgerichtet.",
+ "name": "CA001: Multi-Faktor-Authentifizierung für Administratoren verlangen",
+ "title": "Multi-Faktor-Authentifizierung für Administratoren erforderlich"
+ },
+ "RequireMFAForAzureManagement": {
+ "description": "Fordern Sie die Multi-Faktor-Authentifizierung an, um den privilegierten Zugriff auf Azure-Ressourcen zu schützen.",
+ "name": "CA006: Multi-Faktor-Authentifizierung für die Azure-Verwaltung verlangen",
+ "title": "Multi-Faktor-Authentifizierung für die Azure-Verwaltung verlangen"
+ },
+ "RequireMFAForGuestAccess": {
+ "description": "Erfordern Sie, dass Gastbenutzer beim Zugriff auf Ihre Unternehmensressourcen eine Multi-Faktor-Authentifizierung durchführen.",
+ "name": "CA005: Multi-Faktor-Authentifizierung für Gastzugriff verlangen",
+ "title": "Multi-Faktor-Authentifizierung für Gastzugriff verlangen"
+ },
+ "RequireMFAForRiskySignIn": {
+ "description": "Erfordern Sie die Multi-Faktor-Authentifizierung, wenn das Anmelderisiko als „mittel“ oder „hoch“ erkannt wird. (Erfordert eine Azure AD Premium 2-Lizenz)",
+ "name": "CA007: Multi-Faktor-Authentifizierung für riskante Anmeldung erforderlich.",
+ "title": "Multi-Faktor-Authentifizierung für riskante Anmeldungen erforderlich."
+ },
+ "RequirePasswordChangeForHighRiskUsers": {
+ "description": "Erfordern Sie, dass der Benutzer sein Kennwort ändern muss, wenn das Benutzerrisiko als „hoch“ erkannt wird. (Erfordert eine Azure AD Premium 2-Lizenz)",
+ "name": "CA008: Kennwortänderung für Benutzer mit hohem Risiko verlangen",
+ "title": "Kennwortänderung für Benutzer mit hohem Risiko verlangen"
+ },
+ "RequireSecurityInfo": {
+ "description": "Es kann sichergestellt werden, wann und wie sich Benutzer für die Multi-Faktor-Authentifizierung für Azure AD registrieren, und auch die Self-Service-Kennwortzurücksetzung ist möglich. ",
+ "name": "CA002: Registrierung von Sicherheitsinformationen wird gesichert",
+ "title": "Registrierung von Sicherheitsinformationen wird gesichert"
+ }
+ },
+ "TemplateState": {
+ "BlockAccessOnUnknowns": {
+ "title": "Durch das Aktivieren dieser Richtlinie wird der Zugriff von einem unbekannten Gerätetyp verhindert. Sie sollten zunächst den reinen Berichtsmodus verwenden, bis sichergestellt ist, dass Ihre Benutzer hierdurch nicht beeinträchtigt werden."
+ },
+ "BlockLegacyAuth": {
+ "description": "Sie sollten zunächst den reinen Berichtsmodus verwenden, bis sichergestellt ist, dass Ihre Benutzer hierdurch nicht beeinträchtigt werden.",
+ "title": "Durch Aktivieren dieser Richtlinie wird die Legacyauthentifizierung für alle Benutzer blockiert."
+ },
+ "RequireCompliantOrHybridADAdmins": {
+ "Description": {
+ "on": "Erwägen Sie, zunächst den Modus „Nur Bericht“ zu verwenden, bis Sie bestätigt haben, dass sich dies nicht auf Ihre privilegierten Benutzer auswirkt.",
+ "reportOnly": "Richtlinien im reinen Berichtsmodus, für die konforme Geräte erforderlich sind, können Benutzer auf Mac-, iOS- und Android-Geräten während der Richtlinienauswertung zur Auswahl eines Gerätezertifikats auffordern, selbst wenn keine Gerätekonformität erzwungen wird. Diese Eingabeaufforderungen können sich wiederholen, bis die Konformität des Geräts hergestellt ist."
+ },
+ "Title": {
+ "on": "Durch das Aktivieren dieser Richtlinie wird jeglicher Zugriff für privilegierte Benutzer verhindert, es sei denn, sie verwenden ein verwaltetes Gerät, z. B. konforme oder hybride, in Azure AD eingebundene Geräte. Stellen Sie sicher, dass Sie Ihre Konformitätsrichtlinien konfiguriert oder die Azure AD Hybridkonfiguration aktiviert haben, bevor Sie sie aktivieren.",
+ "reportOnly": "Stellen Sie sicher, dass Sie Ihre Konformitätsrichtlinien konfiguriert oder die Azure AD Hybridkonfiguration aktiviert haben, bevor Sie sie aktivieren. "
+ }
+ },
+ "RequireCompliantOrHybridADAllUsers": {
+ "Description": {
+ "on": "Diese Richtlinie wirkt sich auf alle Benutzer mit Ausnahme des aktuell angemeldeten Administrators aus. Erwägen Sie, zunächst den Modus „Nur Bericht“ zu verwenden, bis Sie bestätigt haben, dass sich dies nicht auf Ihre Benutzer auswirkt."
+ },
+ "Title": {
+ "on": "Sperren Sie sich nicht aus! Stellen Sie sicher, dass Ihr Gerät kompatibel oder hybrid, in Azure AD eingebunden ist oder Sie die Multi-Faktor-Authentifizierung konfiguriert haben. ",
+ "reportOnly": "Richtlinien im reinen Berichtsmodus, für die konforme Geräte erforderlich sind, können Benutzer auf Mac-, iOS- und Android-Geräten während der Richtlinienauswertung zur Auswahl eines Gerätezertifikats auffordern, selbst wenn keine Gerätekonformität erzwungen wird. Diese Eingabeaufforderungen können sich wiederholen, bis die Konformität des Geräts hergestellt ist."
+ }
+ },
+ "RequireMfa": {
+ "description": "Wenn Sie Not-Crawlkonten oder Azure AD Connect verwenden, um Ihre lokalen Objekte zu synchronisieren, müssen Sie diese Konten nach der Erstellung möglicherweise von dieser Richtlinie ausschließen."
+ },
+ "RequireMfaAdmins": {
+ "description": "Beachten Sie, dass das aktuelle Administratorkonto automatisch ausgeschlossen wird. Alle anderen werden jedoch bei der Richtlinienerstellung geschützt. Erwägen Sie zunächst die Verwendung des reinen Berichtsmodus.",
+ "title": "Sperren Sie sich nicht aus. Diese Richtlinie wirkt sich auf das Azure-Portal aus."
+ },
+ "RequireMfaAllUsers": {
+ "description": "Sie sollten zunächst den reinen Berichtsmodus verwenden, bis Sie diese Änderung geplant und allen Benutzern mitgeteilt haben.",
+ "title": "Wenn Sie diese Richtlinie aktivieren, wird die Multi-Faktor-Authentifizierung für alle Ihre Benutzer erzwungen."
+ },
+ "RequireSecurityInfo": {
+ "description": "Überprüfen Sie unbedingt Ihre Konfiguration, um diese Konten basierend auf Ihren Unternehmensanforderungen zu schützen.",
+ "title": "Die folgenden Benutzer und Rollen werden von dieser Richtlinie ausgeschlossen: Gäste und externe Benutzer, globale Administratoren, aktueller Administrator"
+ }
+ },
+ "basics": "Allgemeine Informationen",
+ "clientApps": "Client-Apps",
+ "cloudApps": "Cloud-Apps",
+ "cloudAppsOrActions": "Cloudanwendungen oder -aktionen ",
+ "conditions": "Bedingungen ",
+ "createNewPolicy": "Erstellen einer neuen Richtlinie aus Vorlagen (Vorschau)",
+ "createPolicy": "Richtlinie erstellen",
+ "currentUser": "Aktueller Benutzer",
+ "customizeBuild": "Ihr Build anpassen",
+ "customizeTemplate": "Die Vorlagenlisten werden basierend auf dem Richtlinientyp, den Sie erstellen möchten, angepasst.",
+ "excludedDevicePlatform": "Ausgeschlossene Geräteplattformen",
+ "excludedDirectoryRoles": "Ausgeschlossene Verzeichnisrollen",
+ "excludedLocation": "Ausgeschlossene Verzeichnisrollen",
+ "excludedUsers": "Ausgeschlossene Benutzer",
+ "grantControl": "Gewährungssteuerelement ",
+ "includeFilteredDevice": "Gefilterte Geräte in Richtlinie einbeziehen",
+ "includedDevicePlatform": "Eingeschlossene Geräteplattformen",
+ "includedDirectoryRoles": "Eingeschlossene Verzeichnisrollen",
+ "includedLocation": "Eingeschlossener Speicherort",
+ "includedUsers": "Eingeschlossene Benutzer",
+ "legacyAuthenticationClients": "Legacy-Authentifizierungsclients",
+ "namePolicy": "Ihre Richtlinie benennen",
+ "next": "Weiter",
+ "policyName": "Richtlinienname",
+ "policyState": "Richtlinienstatus",
+ "policySummary": "Zusammenfassung der Richtlinie",
+ "policyTemplate": "Richtlinienvorlage",
+ "previous": "Zurück",
+ "reviewAndCreate": "Überprüfen und erstellen",
+ "riskLevels": "Risikostufen",
+ "selectATemplate": "Vorlage auswählen",
+ "selectTemplate": "Vorlage auswählen",
+ "selectTemplateCategory": "Auswählen einer Vorlagenkategorie",
+ "selectTemplateRecommendation": "Wir empfehlen die folgenden Vorlagen basierend auf Ihrer Antwort.",
+ "sessionControl": "Sitzungssteuerung ",
+ "signInFrequency": "Anmeldehäufigkeit",
+ "signInRisk": "Anmelderisiko",
+ "template": "Vorlage ",
+ "templateCategory": "Vorlagenkategorie",
+ "userRisk": "Benutzerrisiko",
+ "usersAndGroups": "Benutzer und Gruppen ",
+ "viewPolicySummary": "Richtlinienzusammenfassung anzeigen "
+ },
+ "SSM": {
+ "MemberSelector": {
+ "description": "Benutzer und Gruppen"
+ },
+ "Notification": {
+ "Migration": {
+ "error": "Fehler beim Migrieren der Einstellungen für die fortlaufende Zugriffsevaluierung zu den Richtlinien für den bedingten Zugriff.",
+ "inProgress": "Migrieren von Einstellungen für die fortlaufende Zugriffsevaluierung",
+ "success": "Die Einstellungen für die fortlaufende Zugriffsevaluierung wurden erfolgreich zu den Richtlinien für den bedingten Zugriff migriert.",
+ "successDescription": "Fahren Sie mit den Richtlinien für den bedingten Zugriff fort, um die migrierten Einstellungen in der neu erstellten Richtlinie mit dem Namen „Aus den Einstellungen der fortlaufenden Zugriffsevaluierung erstellte Richtlinie für den bedingten Zugriff\" anzuzeigen."
+ },
+ "error": "Fehler beim Aktualisieren der Einstellungen für die fortlaufende Zugriffsevaluierung.",
+ "inProgress": "Die Einstellungen für die fortlaufende Zugriffsevaluierung werden aktualisiert.",
+ "success": "Die Einstellungen für die fortlaufende Zugriffsevaluierung wurden erfolgreich aktualisiert."
+ },
+ "PreviewOptions": {
+ "disable": "Vorschau deaktivieren",
+ "enable": "Vorschau aktivieren"
+ },
+ "StrictLocationEnforcement": {
+ "infoContent1": "Aufgrund eines Netzwerkpartitions- oder IPv4/IPv6-Konflikts können Azure AD und der Ressourcenanbieter vom selben Clientgerät aus unterschiedliche IP-Adressen feststellen. Durch die strikte Standorterzwingung wird die Richtlinie für bedingten Zugriff basierend auf den beiden von Azure AD und dem Ressourcenanbieter ermittelten IP-Adressen erzwungen.",
+ "infoContent2": "Um maximale Sicherheit zu gewährleisten, sollten Sie in Ihrer Richtlinie \"Benannter Standort\" alle IP-Adressen berücksichtigen, die sowohl von Azure AD als auch von einem Ressourcenanbieter erkannt werden. Aktivieren Sie außerdem den Modus \"Strikte Standorterzwingung\".",
+ "label": "Strikte Standorterzwingung",
+ "title": "Zusätzliche Erzwingungsmodi"
+ },
+ "bladeTitle": "Fortlaufende Zugriffsevaluierung (Continuous Access Evaluation, CAE)",
+ "description": "Wenn der Zugriff eines Benutzers entfernt oder eine Client-IP-Adresse geändert wird, blockiert die fortlaufende Zugriffsevaluierung den Zugriff auf Ressourcen und Anwendungen automatisch und nahezu in Echtzeit. ",
+ "migrateLabel": "Migrieren",
+ "migrationError": "Die Migration ist aufgrund des folgenden Fehlers fehlgeschlagen: {0}",
+ "migrationInfo": "Die CAE-Einstellung wurde zur Benutzererfahrung „Bedingter Zugriff“ verschoben. Bitte migrieren Sie diese mit der obigen Schaltfläche „Migrieren“, und konfigurieren Sie diese zukünftig mit der Richtlinie für bedingten Zugriff. Klicken Sie hier, um weitere Informationen zu erhalten.",
+ "noLicenseMessage": "Einstellungen für die intelligente Sitzungsverwaltung mit Azure AD Premium verwalten",
+ "optionsPickerTitle": "Fortlaufende Zugriffsevaluierung aktivieren/deaktivieren",
+ "upsellInfo": "Sie können Ihre Einstellungen auf der Seite nicht mehr ändern, und alle Einstellungen hier sollten ignoriert werden. Ihre bisherige Einstellung wird beibehalten. Sie können Ihre CAE-Einstellungen in Zukunft unter „Bedingter Zugriff“ konfigurieren. Klicken Sie hier, um weitere Informationen zu erhalten."
+ },
+ "SelectOrganizations": {
+ "Blade": {
+ "Lower": {
+ "gridAria": "Liste der ausgewählten Organisationen"
+ },
+ "Upper": {
+ "gridAria": "Liste der verfügbaren Organisationen"
+ },
+ "description": "Fügen Sie eine Azure AD-Organisation hinzu, indem Sie einen der zugehörigen Domänennamen eingeben.",
+ "notFoundResult": "Nicht gefunden",
+ "searchBoxPlaceholder": "Mandanten-ID oder Domänenname",
+ "subTitle": "Azure AD-Organisation"
+ },
+ "Selector": {
+ "AdditionalDetails": {
+ "aria": "Organisations-ID: {0}"
+ },
+ "DisplayText": {
+ "multiple": "{0} Azure AD-Organisationen ausgewählt",
+ "single": "1 Azure AD-Organisation ausgewählt"
+ },
+ "gridAria": "Liste der ausgewählten Organisationen"
+ }
+ },
+ "SessionLifetime": {
+ "PersistentBrowser": {
+ "Error": {
+ "notAllApps": "Die Richtlinie für persistente Browsersitzungen funktioniert nur dann ordnungsgemäß, wenn \"Alle Cloud-Apps\" ausgewählt ist. Aktualisieren Sie Ihre Cloud-Apps-Auswahl."
+ },
+ "Option": {
+ "always": "Immer persistent",
+ "help": "Bei einer persistenten Browsersitzung können Benutzer nach dem Schließen und erneuten Öffnen ihres Browserfensters angemeldet bleiben.
\n\n- Diese Einstellung funktioniert ordnungsgemäß, wenn \"Alle Cloud-Apps\" ausgewählt ist.
\n- Diese Einstellung hat keine Auswirkungen auf die Tokenlebensdauer oder auf die Einstellung für die Anmeldehäufigkeit.
\n- Hiermit wird die Richtlinie zum Anzeigen der Option \"Angemeldet bleiben\" im Unternehmensbranding außer Kraft gesetzt.
\n- \"Niemals persistent\" setzt Ansprüche auf persistentes einmaliges Anmelden von Verbundauthentifizierungsdiensten außer Kraft.
\n- \"Niemals persistent\" verhindert auf mobilen Geräten das einmalige Anmelden zwischen verschiedenen Anwendungen sowie zwischen Anwendungen und dem mobilen Browser des Benutzers.
\n",
+ "label": "Beständige Browsersitzung",
+ "never": "Niemals persistent"
+ },
+ "Warning": {
+ "allApps": "\"Persistente Browsersitzung\" funktioniert nur dann ordnungsgemäß, wenn \"Alle Cloud-Apps\" ausgewählt ist. Ändern Sie Ihre Cloud-Apps-Auswahl. Klicken Sie hier, um weitere Informationen zu erhalten."
+ }
+ },
+ "SignInFrequency": {
+ "Aria": {
+ "units": "Stunden oder Tage",
+ "value": "Häufigkeit"
+ },
+ "Option": {
+ "Day": {
+ "plural": "{0} Tage",
+ "singular": "1 Tag"
+ },
+ "Hour": {
+ "plural": "{0} Stunden",
+ "singular": "1 Stunde"
+ },
+ "daysOption": "Tage",
+ "everytime": "Jedes Mal",
+ "help": "Zeitraum, bis ein Benutzer bei dem Versuch, auf eine Ressource zuzugreifen, zur erneuten Anmeldung aufgefordert wird. Die Standardeinstellung ist ein rollierendes Zeitfenster von 90 Tagen, d. h., Benutzer werden zur erneuten Authentifizierung aufgefordert, wenn sie auf ihrem Computer nach einer Inaktivität von 90 Tagen oder länger erstmals auf eine Ressource zuzugreifen versuchen.",
+ "hoursOption": "Stunden",
+ "label": "Anmeldehäufigkeit",
+ "placeholder": "Einheiten auswählen"
+ }
+ },
+ "mainOption": "Sitzungsdauer ändern",
+ "mainOptionHelp": "Konfigurieren Sie, wie oft Benutzer zur Eingabe aufgefordert werden, und gibt an, ob Browsersitzungen dauerhaft gespeichert werden. Von Anwendungen, die moderne Authentifizierungsprotokolle nicht unterstützen, werden diese Richtlinien möglicherweise nicht berücksichtigt. Wenden Sie sich in diesem Fall an den Anwendungsentwickler."
+ },
+ "SigninRisk": {
+ "LearnMore": {
+ "message": "Steuern Sie den Benutzerzugriff, um auf bestimmte Anmelderisikostufen zu reagieren."
+ }
+ },
+ "SingleSelectorActive": {
+ "failed": "Diese Daten konnten nicht geladen werden.",
+ "reattempt": "Daten werden geladen. {0} von {1} erneuten Versuchen."
+ },
+ "TimeCondition": {
+ "Errors": {
+ "both": "Ungültiger Zeitbereich für \"Einschließen\" oder \"Ausschließen\".",
+ "daysOfWeek": "{0} Sie müssen mindestens einen Wochentag angeben.",
+ "endBeforeStart": "{0} Stellen Sie sicher, dass Datum und Uhrzeit für den Start vor dem Datum und der Uhrzeit des Endzeitpunkts liegen.",
+ "exclude": "Ungültiger Zeitbereich für \"Ausschließen\".",
+ "generic": "{0} Stellen Sie sicher, dass sowohl die Wochentage als auch die Zeitzone festgelegt sind. Wenn \"Ganztägig\" nicht aktiviert ist, müssen Sie außerdem einen Start- und einen Endzeitpunkt festlegen.",
+ "include": "Ungültiger Zeitbereich für \"Einschließen\".",
+ "timeMissing": "{0} Sie müssen sowohl eine Start- als auch eine Endzeit angeben.",
+ "timeZone": "{0} Sie müssen eine Zeitzone angeben.",
+ "timesAndZone": "{0} Stellen Sie sicher, dass Sie den Start- und Endzeitpunkt sowie die Zeitzone festlegen."
+ }
+ },
+ "UserActions": {
+ "Included": {
+ "none": "Keine Cloud-Apps oder -aktionen ausgewählt.",
+ "plural": "{0} Benutzeraktionen eingeschlossen",
+ "singular": "1 Benutzeraktion eingeschlossen"
+ },
+ "accessRequirement1": "Ebene 1",
+ "accessRequirement2": "Ebene 2",
+ "accessRequirement3": "Ebene 3",
+ "accessRequirementsLabel": "Es wird auf gesicherte App-Daten zugegriffen.",
+ "appsActionsAuthTitle": "Cloud-Apps, Aktionen oder Authentifizierungskontext",
+ "appsOrActionsSelectorInfoBallonText": "Anwendungen, auf die zugegriffen wird, oder Benutzeraktionen",
+ "appsOrActionsTitle": "Cloud-Apps oder -aktionen",
+ "label": "Benutzeraktionen",
+ "mainOptionsLabel": "Wählen Sie aus, worauf diese Richtlinie angewendet werden soll.",
+ "registerOrJoinDevices": "Geräte registrieren oder einbinden",
+ "registerSecurityInfo": "Sicherheitsinformationen registrieren",
+ "selectionInfo": "Hiermit wird die Aktion ausgewählt, auf die diese Richtlinie angewendet wird.",
+ "whatIf": "Benutzeraktion eingeschlossen"
+ },
+ "UserSelectionBlade": {
+ "DirectoryRoles": {
+ "ariaLabel": "Verzeichnisrollen auswählen"
+ },
+ "Excluded": {
+ "gridAria": "Liste ausgeschlossener Benutzer"
+ },
+ "Included": {
+ "gridAria": "Liste eingeschlossener Benutzer"
+ },
+ "Validation": {
+ "customRoleIncluded": "\"Verzeichnisrollen\" umfasst mindestens eine benutzerdefinierte Rolle.",
+ "customRoleSelected": "Es wurde mindestens eine benutzerdefinierte Rolle ausgewählt.",
+ "failed": "\"{0}\" muss konfiguriert werden.",
+ "roles": "Wählen Sie mindestens eine Rolle aus.",
+ "usersGroups": "Wählen Sie mindestens einen Benutzer oder eine Gruppe aus."
+ },
+ "learnMore": "Steuern Sie den Zugriff basierend darauf, für wen die Richtlinie gelten wird, z. B. Benutzer und Gruppen, Workloadidentitäten, Verzeichnisrollen oder externe Gäste."
+ },
+ "ValidationResult": {
+ "blockEveryonePolicy": "Die Richtlinienkonfiguration wird nicht unterstützt. Überprüfen Sie alle Zuweisungen und Steuerelemente.",
+ "invalidApplicationCondition": "Ungültige Cloudanwendungen ausgewählt",
+ "invalidClientTypesCondition": "Ungültige Clients ausgewählt",
+ "invalidConditions": "Zuweisungen nicht ausgewählt",
+ "invalidControls": "Ungültige Steuerelemente ausgewählt",
+ "invalidDevicePlatformsCondition": "Ungültige Geräteplattformen ausgewählt",
+ "invalidDevicesCondition": "Ungültige Gerätekonfiguration. Möglicherweise liegt eine ungültige Konfiguration von \"{0}\" vor.",
+ "invalidGrantControlPolicy": "Ungültiges Gewährungssteuerelement",
+ "invalidLocationsCondition": "Ungültige Standorte ausgewählt",
+ "invalidPolicy": "Zuweisungen nicht ausgewählt",
+ "invalidSessionControlPolicy": "Ungültiges Sitzungssteuerelement",
+ "invalidSignInRisksCondition": "Ungültiges Anmelderisiko ausgewählt",
+ "invalidUserRisksCondition": "Ungültiges Benutzerrisiko ausgewählt",
+ "invalidUsersCondition": "Ungültige Benutzer ausgewählt",
+ "mamPolicyShouldOnlyTargetAndroidOrIosPlatforms": "Die MAM-Richtlinie kann nur auf Android- oder iOS-Clientplattformen angewendet werden.",
+ "notSupportedCombination": "Die Richtlinienkonfiguration wird nicht unterstützt. Erfahren Sie mehr über unterstützte Richtlinien.",
+ "pending": "Die Richtlinie wird überprüft.",
+ "requireComplianceEveryonePolicy": "Die Richtlinienkonfiguration erfordert Gerätekompatibilität für alle Benutzer. Überprüfen Sie die ausgewählten Zuweisungen.",
+ "success": "Gültige Richtlinie"
+ },
+ "VpnCert": {
+ "Grid": {
+ "aria": "Liste der VPN-Zertifikate"
+ }
+ },
+ "WarningsInfo": {
+ "Controls": {
+ "compliantDeviceEnabled": "Sperren Sie sich nicht aus! Stellen Sie sicher, dass Ihr Gerät konform ist.",
+ "domainJoinedDeviceEnabled": "Sperren Sie sich nicht aus! Stellen Sie sicher, dass Ihr Gerät als Hybridgerät in Azure AD eingebunden ist.",
+ "exchangeDisabled": "Exchange ActiveSync unterstützt nur die Steuerelemente \"Konformes Gerät\" und \"Genehmigte Client-App\". Klicken Sie, um weitere Informationen zu erhalten.",
+ "exchangeDisabled2": "Exchange ActiveSync unterstützt nur die Steuerelemente \"Konformes Gerät\", \"Genehmigte Client-App\" und \"Konforme Client-App\". Klicken Sie, um weitere Informationen zu erhalten.",
+ "notAvailableForSP": "Einige Steuerelemente sind aufgrund der Auswahl von „{0}“ in der Richtlinienzuweisung nicht verfügbar.",
+ "requireAuthOrMfa": "„{0}“ kann nicht zusammen mit „{1}“ verwendet werden.",
+ "requireMfa": "Erwägen Sie, die neue Public Preview „{0}“ zu testen.",
+ "requirePasswordChangeEnabled": "\"Kennwortänderung anfordern\" kann nur verwendet werden, wenn die Richtlinie allen Cloud-Apps zugewiesen ist."
+ },
+ "Policies": {
+ "Linux": {
+ "devicePlatformsReportOnlyPolicy": "Bei Richtlinien im Modus „nur melden“, für die konforme Geräte erforderlich sind, werden Benutzer unter macOS, iOS, Android und Linux möglicherweise zur Auswahl eines Gerätezertifikats aufgefordert.",
+ "excludeDevicePlatforms": "Schließen Sie die Geräteplattformen macOS, iOS, Android und Linux aus dieser Richtlinie aus.",
+ "proceedAnywayDevicePlatforms": "Fahren Sie mit der ausgewählten Konfiguration fort. Benutzer unter macOS, iOS, Android und Linux erhalten möglicherweise Eingabeaufforderungen, wenn das Gerät auf Konformität geprüft wird."
+ },
+ "blockCurrentUserPolicy": "Sperren Sie sich nicht aus! Wir empfehlen, eine Richtlinie zunächst auf eine kleine Gruppe von Benutzern anzuwenden, um sicherzustellen, dass sie sich wie erwartet verhält. Es wird außerdem empfohlen, mindestens einen Administrator von dieser Richtlinie auszuschließen. Dadurch wird sichergestellt, dass Sie weiterhin Zugriff haben und eine Richtlinie aktualisiert werden kann, falls eine Änderung erforderlich ist. Überprüfen Sie die betroffenen Benutzer und Apps.",
+ "devicePlatformsReportOnlyPolicy": "Bei Richtlinien im reinen Berichtsmodus, für die konforme Geräte erforderlich sind, werden Benutzer unter macOS, iOS und Android möglicherweise zur Auswahl eines Gerätezertifikats aufgefordert.",
+ "excludeCurrentUserSelection": "Hiermit wird der aktuelle Benutzer ({0}) von dieser Richtlinie ausgeschlossen.",
+ "excludeDevicePlatforms": "Schließen Sie die Geräteplattformen macOS, iOS und Android aus dieser Richtlinie aus.",
+ "proceedAnywayDevicePlatforms": "Fahren Sie mit der ausgewählten Konfiguration fort. Benutzer unter macOS, iOS und Android erhalten möglicherweise Eingabeaufforderungen, wenn das Gerät auf Konformität geprüft wird.",
+ "proceedAnywaySelection": "Ich habe verstanden, dass mein Konto von dieser Richtlinie betroffen ist. Ich möchte dennoch fortfahren."
+ },
+ "ServicePrincipals": {
+ "blockExchange": "Die Auswahl von Office 365 Exchange Online wirkt sich auch auf Apps wie OneDrive und Teams aus.",
+ "blockPortal": "Sperren Sie sich nicht aus! Diese Richtlinie wirkt sich auf das Azure-Portal aus. Bevor Sie den Vorgang fortsetzen, müssen Sie sicherstellen, dass ein anderer Benutzer weiterhin Zugriff auf das Portal hat.",
+ "blockPortalWithSession": "Sperren Sie sich nicht aus! Diese Richtlinie besitzt Auswirkungen auf das Azure-Portal. Stellen Sie vor dem Fortfahren sicher, dass Sie oder eine andere Person wieder in das Portal gelangen kann.
Ignorieren Sie diese Warnung, wenn Sie eine Richtlinie für beständige Browsersitzungen konfigurieren, die nur korrekt funktioniert, wenn \"Alle Cloud-Apps\" ausgewählt ist.",
+ "blockSharePoint": "Die Auswahl von SharePoint Online wirkt sich auch auf Apps wie Microsoft Teams, Planner, Delve, MyAnalytics und Newsfeed usw. aus.",
+ "blockSkype": "Die Auswahl von Skype for Business Online wirkt sich auch auf Microsoft Teams aus.",
+ "includeOrExclude": "Sie können den App-Filter für „{0}“ oder für „{1}“ konfigurieren, aber nicht für beide.",
+ "selectAppsNAForSP": "Einzelne Cloud-Apps können aufgrund der Auswahl „{0}“ in der Richtlinienzuweisung nicht ausgewählt werden.",
+ "teamsBlocked": "Microsoft Teams sind ebenfalls betroffen, wenn Apps wie SharePoint Online und Exchange Online in der Richtlinie enthalten sind."
+ },
+ "Users": {
+ "blockAllUsers": "Sperren Sie sich nicht aus! Diese Richtlinie wirkt sich auf alle Benutzer aus. Wir empfehlen, eine Richtlinie zunächst auf eine kleine Gruppe von Benutzern anzuwenden, um sicherzustellen, dass sie sich wie erwartet verhält."
+ }
+ },
+ "WhatIf": {
+ "Device": {
+ "AttributesGrid": {
+ "aria": "Liste der Attribute auf dem Gerät, die bei der Anmeldung verwendet werden.",
+ "infoBalloon": "Liste der Attribute auf dem Gerät, die bei der Anmeldung verwendet werden."
+ }
+ }
+ },
+ "advancedTabText": "Erweitert",
+ "allCloudAppsErrorBox": "\"Alle Cloud-Apps\" muss ausgewählt werden, wenn die Zuweisung \"Kennwortänderung anfordern\" ausgewählt ist.",
+ "allCloudAppsReauth": "„Alle Cloud-Apps“ muss ausgewählt werden, wenn die Sitzungssteuerung „Anmeldehäufigkeit jedes Mal“ und die Bedingung „Anmelderisiko“ ausgewählt sind.",
+ "allCloudOrSpecificApps": "Für die Sitzungssteuerung \"Anmeldehäufigkeit jedes Mal\" muss \"alle Cloud-Apps\" oder speziell unterstützte Apps ausgewählt werden.",
+ "allDayCheckboxLabel": "Ganztägig",
+ "allDevicePlatforms": "Jedes Gerät",
+ "allGuestUserInfoContent": "Enthält Azure AD B2B-Gäste, aber keine SharePoint B2B-Gäste.",
+ "allGuestUserLabel": "Alle Gast- und externen Benutzer",
+ "allRiskLevelsOption": "Alle Risikostufen",
+ "allTrustedLocationLabel": "Alle vertrauenswürdigen Standorte",
+ "allUserGroupSetSelectorLabel": "Alle ausgewählten Benutzer und Gruppen",
+ "allUsersReauth": "Für das Sitzungssteuerelement \"Anmeldehäufigkeit jedes Mal\" muss \"Alle Benutzer\" ausgewählt sein.",
+ "allUsersString": "Alle Benutzer",
+ "and": "{0} UND {1} ",
+ "andWithGrouping": "({0}) UND {1} ",
+ "androidDisplayName": "Android",
+ "anyCloudAppSelection": "Cloud-app",
+ "appContextOptionInfoContent": "Angefordertes Authentifizierungstag",
+ "appContextOptionLabel": "Angefordertes Authentifizierungstag (Vorschau)",
+ "appContextUriPlaceholder": "Beispiel: uri:contoso.com:level3",
+ "appEnforceInfoBubble": "Für von der App erzwungene Einschränkungen sind möglicherweise zusätzliche Administratorkonfigurationen innerhalb der Cloud-Apps erforderlich. Die Einschränkungen treten nur für neue Sitzungen in Kraft.",
+ "appNotSetSeletorLabel": "0 Cloud-Apps ausgewählt",
+ "applyConditionClientAppInfoBalloonContent": "Konfigurieren Sie Client-Apps, um die Richtlinie auf bestimmte Client-Apps anzuwenden.",
+ "applyConditionDevicePlatformInfoBalloonContent": "Konfigurieren Sie Geräteplattformen, um die Richtlinie auf bestimmte Plattformen anzuwenden.",
+ "applyConditionDeviceStateInfoBalloonContent": "Konfigurieren Sie den Gerätezustand, um die Richtlinie auf bestimmte Gerätezustände anzuwenden.",
+ "applyConditionLocationInfoBalloonContent": "Konfigurieren Sie Standorte, um die Richtlinie auf vertrauenswürdige/nicht vertrauenswürdige Standorte anzuwenden.",
+ "applyConditionSigninRiskInfoBalloonContent": "Konfigurieren Sie das Anmelderisiko, um die Richtlinie auf ausgewählte Risikostufen anzuwenden.",
+ "applyConditionUserRiskInfoBalloonContent": "Konfigurieren Sie das Benutzerrisiko, um die Richtlinie auf ausgewählte Risikostufen anzuwenden.",
+ "applyConditonLabel": "Konfigurieren",
+ "ariaLabelPolicyDisabled": "Richtlinie ist deaktiviert",
+ "ariaLabelPolicyEnabled": "Die Richtlinie ist aktiviert.",
+ "ariaLabelPolicyReportOnly": "Die Richtlinie befindet sich im reinen Berichtmodus.",
+ "blockAccess": "Zugriff blockieren",
+ "builtInDirectoryRoleLabel": "Integrierte Verzeichnisrollen",
+ "casCustomControlInfo": "Benutzerdefinierte Richtlinien müssen im Cloud App Security-Portal konfiguriert werden. Dieses Steuerelement funktioniert sofort für ausgewählte Apps und kann für jede App selbst integriert werden. Klicken Sie hier, um weitere Informationen zu beiden Szenarien zu erhalten.",
+ "casInfoBubble": "Dieses Steuerelement funktioniert für verschiedene Cloud-Apps.",
+ "casPreconfiguredControlInfo": "Dieses Steuerelement funktioniert sofort für ausgewählte Apps und kann für jede App selbst integriert werden. Klicken Sie hier, um weitere Informationen zu beiden Szenarien zu erhalten.",
+ "cert64DownloadCol": "Base64-Zertifikat herunterladen",
+ "cert64Name": "VpnBase64Cert",
+ "certDownloadCol": "Zertifikat herunterladen",
+ "certDurationCol": "Ablauf",
+ "certDurationStartCol": "Gültig ab",
+ "certName": "VpnCert",
+ "certainApps": "Nur bestimmte Apps werden für die \"Anmeldehäufigkeit jedes Mal\" unterstützt, wenn die Zuweisungen \"Multi-Faktor-Authentifizierung erforderlich\" und \"Kennwortänderung erforderlich\" nicht ausgewählt sind.",
+ "chooseApplicationsBladeSubtitle": "",
+ "chooseApplicationsBladeTitle": "Anwendungen wählen",
+ "chooseApplicationsCartSubitle": "",
+ "chooseApplicationsCartTitle": "Gewählte Anwendungen",
+ "chooseApplicationsEmpty": "Keine Anwendungen",
+ "chooseApplicationsNone": "Kein",
+ "chooseApplicationsNoneFound": "Wir haben \"{0}\" nicht gefunden. Versuchen Sie es mit einem anderen Namen oder einer anderen ID.",
+ "chooseApplicationsPlural": "\"{0}\" und {1} weitere",
+ "chooseApplicationsReAuthEverytimeInfo": "Suchen Sie nach Ihrer App? Einige Anwendungen können nicht mit Wert „Erneute Authentifizierung erforderlich – jedes Mal“ des Sitzungssteuerelements verwendet werden.",
+ "chooseApplicationsRemove": "Entfernen",
+ "chooseApplicationsReturnedPlural": "{0} Anwendungen gefunden",
+ "chooseApplicationsReturnedSingular": "1 Anwendung gefunden",
+ "chooseApplicationsSearchBalloon": "Suchen Sie nach einer Anwendung, indem Sie ihren Namen oder ihre ID eingeben.",
+ "chooseApplicationsSearchHint": "Anwendungen suchen...",
+ "chooseApplicationsSearchLabel": "Anwendungen",
+ "chooseApplicationsSearching": "Suche wird ausgeführt...",
+ "chooseApplicationsSelect": "Auswählen",
+ "chooseApplicationsSelected": "Ausgewählt",
+ "chooseApplicationsSingular": "{0} und 1 weitere",
+ "chooseApplicationsTooMany": "Weitere Ergebnisse können angezeigt werden. Filtern Sie anhand des Suchfelds.",
+ "chooseLocationCorpnetItem": "Unternehmensnetzwerk",
+ "chooseLocationSelectedLocationsLabel": "Ausgewählte Standorte",
+ "chooseLocationTrustedIpsItem": "Für MFA vertrauenswürdige IPs",
+ "chooseLocationsBladeSubtitle": "",
+ "chooseLocationsBladeTitle": "Standorte auswählen",
+ "chooseLocationsCartSubitle": "",
+ "chooseLocationsCartTitle": "Ausgewählte Standorte",
+ "chooseLocationsEmpty": "Keine Speicherorte",
+ "chooseLocationsExcludedSelectorTitle": "Auswählen",
+ "chooseLocationsIncludedSelectorTitle": "Auswählen",
+ "chooseLocationsNone": "Kein",
+ "chooseLocationsNoneFound": "Wir haben \"{0}\" nicht gefunden. Versuchen Sie es mit einem anderen Namen oder einer anderen ID.",
+ "chooseLocationsPlural": "\"{0}\" und {1} weitere",
+ "chooseLocationsRemove": "Entfernen",
+ "chooseLocationsReturnedPlural": "{0} Standorte gefunden",
+ "chooseLocationsReturnedSingular": "1 Standort gefunden",
+ "chooseLocationsSearchBalloon": "Suchen Sie nach einem Standort, indem Sie seinen Namen eingeben.",
+ "chooseLocationsSearchHint": "Suche nach Standorten...",
+ "chooseLocationsSearchLabel": "Speicherorte",
+ "chooseLocationsSearching": "Suche wird ausgeführt...",
+ "chooseLocationsSelect": "Auswählen",
+ "chooseLocationsSelected": "Ausgewählt",
+ "chooseLocationsSelectionBladeExcludedSelectorTitle": "Auswählen",
+ "chooseLocationsSelectionBladeIncludedSelectorTitle": "Auswählen",
+ "chooseLocationsSingular": "{0} und 1 weitere",
+ "chooseLocationsTooMany": "Weitere Ergebnisse können angezeigt werden. Filtern Sie anhand des Suchfelds.",
+ "claimProviderAddCommandText": "Neues benutzerdefiniertes Steuerelement",
+ "claimProviderAddNewBladeTitle": "Neues benutzerdefiniertes Steuerelement",
+ "claimProviderDeleteCommand": "Löschen",
+ "claimProviderDeleteDescription": "Möchten Sie \"{0}\" löschen? Diese Aktion kann nicht rückgängig gemacht werden.",
+ "claimProviderDeleteTitle": "Sind Sie sicher?",
+ "claimProviderEditInfoText": "Geben Sie die JSON für benutzerdefinierte Steuerelemente ein, die von Ihren Anspruchsanbietern bereitgestellt wird.",
+ "claimProviderNotificationCreateDescription": "Benutzerdefiniertes Steuerelement \"{0}\" wird erstellt.",
+ "claimProviderNotificationCreateFailedDescription": "Fehler beim Erstellen des benutzerdefinierten Steuerelements \"{0}\". Versuchen Sie es später noch mal.",
+ "claimProviderNotificationCreateFailedTitle": "Fehler beim Erstellen von benutzerdefiniertem Steuerelement",
+ "claimProviderNotificationCreateSuccessDescription": "Benutzerdefiniertes Steuerelement \"{0}\" wurde erstellt.",
+ "claimProviderNotificationCreateSuccessTitle": "\"{0}\" wurde erstellt",
+ "claimProviderNotificationCreateTitle": "\"{0}\" wird erstellt",
+ "claimProviderNotificationDeleteDescription": "Benutzerdefiniertes Steuerelement \"{0}\" wird gelöscht.",
+ "claimProviderNotificationDeleteFailedDescription": "Fehler beim Löschen des benutzerdefinierten Steuerelements \"{0}\". Versuchen Sie es später noch mal.",
+ "claimProviderNotificationDeleteFailedTitle": "Fehler beim Löschen von benutzerdefiniertem Element",
+ "claimProviderNotificationDeleteSuccessDescription": "Benutzerdefiniertes Steuerelement \"{0}\" wurde gelöscht.",
+ "claimProviderNotificationDeleteSuccessTitle": "\"{0}\" wurde gelöscht",
+ "claimProviderNotificationDeleteTitle": "\"{0}\" wird gelöscht.",
+ "claimProviderNotificationUpdateDescription": "Benutzerdefiniertes Steuerelement \"{0}\" wird aktualisiert.",
+ "claimProviderNotificationUpdateFailedDescription": "Fehler beim Aktualisieren des benutzerdefinierten Steuerelements \"{0}\". Versuchen Sie es später noch mal.",
+ "claimProviderNotificationUpdateFailedTitle": "Fehler beim Aktualisieren von benutzerdefiniertem Steuerelement",
+ "claimProviderNotificationUpdateSuccessDescription": "Benutzerdefiniertes Steuerelement \"{0}\" wurde aktualisiert.",
+ "claimProviderNotificationUpdateSuccessTitle": "\"{0}\" wurde aktualisiert",
+ "claimProviderNotificationUpdateTitle": "\"{0}\" wird aktualisiert",
+ "claimProviderValidationAppIdInvalid": "Der AppId-Wert ist ungültig. Überprüfen Sie ihn, und versuchen Sie es noch mal.",
+ "claimProviderValidationClientIdMissing": "Bei den Daten fehlt ein ClientId-Wert. Überprüfen Sie die Werte, und versuchen Sie es noch mal.",
+ "claimProviderValidationControlClaimsRequestedMissing": "Bei \"Control\" fehlt ein ClaimsRequested-Wert. Überprüfen Sie die Werte, und versuchen Sie es noch mal.",
+ "claimProviderValidationControlClaimsRequestedTypeMissing": "Dem Element \"ClaimsRequested\" fehlt ein Type-Wert. Überprüfen Sie das Element, und versuchen Sie es noch mal.",
+ "claimProviderValidationControlIdAlreadyExists": "Der Id-Wert von \"Control\" ist bereits vorhanden. Überprüfen Sie die Werte, und versuchen Sie es noch mal.",
+ "claimProviderValidationControlIdMissing": "Bei \"Control\" fehlt ein Id-Wert. Überprüfen Sie die Werte, und versuchen Sie es noch mal.",
+ "claimProviderValidationControlIdReferencedInExistingPolicy": "Der Id-Wert von \"Control\" kann nicht entfernt werden, weil eine vorhandene Richtlinie darauf verweist. Entfernen Sie ihn zuerst aus der Richtlinie.",
+ "claimProviderValidationControlIdTooManyControls": "Die Eigenschaft \"Control\" weist zu viele Steuerelemente auf. Überprüfen Sie die Eigenschaft, und versuchen Sie es noch mal.",
+ "claimProviderValidationControlIdValueReserved": "Der Id-Wert von \"Control\" ist ein reserviertes Schlüsselwort, verwenden Sie eine andere ID.",
+ "claimProviderValidationControlNameAlreadyExists": "Der Name-Wert von \"Control\" ist bereits vorhanden. Überprüfen Sie die Werte, und versuchen Sie es noch mal.",
+ "claimProviderValidationControlNameMissing": "Bei \"Control\" fehlt ein Name-Wert. Überprüfen Sie die Werte, und versuchen Sie es noch mal.",
+ "claimProviderValidationControlsMissing": "Bei den Daten fehlt ein Controls-Wert. Überprüfen Sie die Werte, und versuchen Sie es noch mal.",
+ "claimProviderValidationDiscoveryUrlMissing": "Bei den Daten fehlt ein DiscoveryUrl-Wert. Überprüfen Sie die Werte, und versuchen Sie es noch mal.",
+ "claimProviderValidationInvalid": "Die bereitgestellten Daten sind ungültig. Überprüfen Sie sie, und versuchen Sie es noch mal.",
+ "claimProviderValidationInvalidJsonDefinition": "Das benutzerdefinierte Steuerelement kann nicht gespeichert werden. Prüfen Sie den JSON-Text, und versuchen Sie es noch mal.",
+ "claimProviderValidationNameAlreadyExists": "Der Name-Wert ist bereits vorhanden. Überprüfen Sie die Werte, und versuchen Sie es noch mal.",
+ "claimProviderValidationNameMissing": "Bei den Daten fehlt ein Name-Wert. Überprüfen Sie die Werte, und versuchen Sie es noch mal.",
+ "claimProviderValidationUnknown": "Unbekannter Fehler beim Überprüfen der bereitgestellten Daten. Überprüfen Sie sie, und versuchen Sie es noch mal.",
+ "claimProvidersNone": "Keine benutzerdefinierten Steuerelemente",
+ "claimProvidersSearchPlaceholder": "Durchsuchen Sie die Steuerelemente.",
+ "classicPoilcyFilterTitle": "Zeigen",
+ "classicPolicyAllPlatforms": "Alle Plattformen",
+ "classicPolicyClientAppBrowserAndNative": "Browser, mobile Apps und Desktopclients",
+ "classicPolicyCloudAppTitle": "Cloudanwendung",
+ "classicPolicyControlAllow": "Zulassen",
+ "classicPolicyControlBlock": "Blockieren",
+ "classicPolicyControlBlockWhenNotAtWork": "Zugriff blockieren, wenn nicht gearbeitet wird",
+ "classicPolicyControlRequireCompliantDevice": "Erfordert kompatibles Gerät",
+ "classicPolicyControlRequireDomainJoinedDevice": "In Domäne eingebundenes Gerät anfordern",
+ "classicPolicyControlRequireMfa": "Multi-Faktor-Authentifizierung erfordern",
+ "classicPolicyControlRequireMfaWhenNotAtWork": "Erfordert Multi-Faktor-Authentifizierung, wenn nicht bei der Arbeit",
+ "classicPolicyDeleteCommand": "Löschen",
+ "classicPolicyDeleteFailTitle": "Fehler beim Löschen der klassischen Richtlinie",
+ "classicPolicyDeleteInProgressTitle": "Klassische Richtlinie wird gelöscht",
+ "classicPolicyDeleteSuccessTitle": "Klassische Richtlinie gelöscht",
+ "classicPolicyDetailBladeTitle": "Details",
+ "classicPolicyDisableCommand": "Deaktivieren",
+ "classicPolicyDisableConfirmation": "Möchten Sie \"{0}\" deaktivieren? Diese Aktion kann nicht rückgängig gemacht werden.",
+ "classicPolicyDisableFailDescription": "Fehler beim Deaktivieren von \"{0}\".",
+ "classicPolicyDisableFailTitle": "Fehler beim Deaktivieren der klassischen Richtlinie",
+ "classicPolicyDisableInProgressDescription": "\"{0}\" wird deaktiviert.",
+ "classicPolicyDisableInProgressTitle": "Klassische Richtlinie wird deaktiviert",
+ "classicPolicyDisableSuccessDescription": "\"{0}\" wurde erfolgreich deaktiviert.",
+ "classicPolicyDisableSuccessTitle": "Klassische Richtlinie deaktiviert",
+ "classicPolicyEasSupportedPlatforms": "Von Exchange ActiveSync unterstützte Plattformen",
+ "classicPolicyEasUnsupportedPlatforms": "Von Exchange ActiveSync nicht unterstützte Plattformen",
+ "classicPolicyExcludedPlatformsTitle": "Ausgeschlossene Geräteplattformen",
+ "classicPolicyFilterAll": "Alle Richtlinien",
+ "classicPolicyFilterDisabled": "Deaktivierte Richtlinien",
+ "classicPolicyFilterEnabled": "Aktivierte Richtlinien",
+ "classicPolicyIncludeExcludeMembersDescription": "Durch das Ausschließen von Gruppen können Sie Richtlinien in Phasen migrieren.",
+ "classicPolicyIncludeExcludeMembersTitle": "Gruppen einschließen/ausschließen",
+ "classicPolicyIncludedPlatformsTitle": "Eingeschlossene Geräteplattformen",
+ "classicPolicyManualMigrationMessage": "Diese Richtlinie muss manuell migriert werden.",
+ "classicPolicyMigrateCommand": "Migrieren",
+ "classicPolicyMigrateConfirmation": "Möchten Sie \"{0}\" migrieren? Diese Richtlinie kann nur einmal migriert werden.",
+ "classicPolicyMigrateFailDescription": "Fehler bei der Migration von \"{0}\".",
+ "classicPolicyMigrateFailTitle": "Fehler beim Migrieren der klassischen Richtlinie",
+ "classicPolicyMigrateInProgressDescription": "\"{0}\" wird migriert.",
+ "classicPolicyMigrateInProgressTitle": "Klassische Richtlinie wird migriert",
+ "classicPolicyMigrateRecommendText": "Empfehlung: Führen Sie eine Migration zu den neuen Azure-Portalrichtlinien durch.",
+ "classicPolicyMigrateSuccessTitle": "Klassische Richtlinie erfolgreich migriert",
+ "classicPolicyMigratedSuccessDescription": "Diese klassische Richtlinie kann jetzt unter \"Richtlinien\" verwaltet werden.",
+ "classicPolicyMigratedSuccessDescriptionMultiple": "Diese klassische Richtlinie wurde in {0} neue Richtlinien migriert. Neue Richtlinien können unter \"Richtlinien\" verwaltet werden.",
+ "classicPolicyNoEditPermissionMsg": "Sie haben keine Berechtigung zum Bearbeiten dieser Richtlinie. Nur globale Administratoren und Sicherheitsadministratoren können die Richtlinie bearbeiten. Klicken Sie hier, um weitere Informationen zu erhalten.",
+ "classicPolicySaveFailDescription": "Fehler beim Speichern von \"{0}\".",
+ "classicPolicySaveFailTitle": "Fehler beim Speichern der klassischen Richtlinien",
+ "classicPolicySaveInProgressDescription": "\"{0}\" wird gespeichert.",
+ "classicPolicySaveInProgressTitle": "Klassische Richtlinie wird gespeichert",
+ "classicPolicySaveSuccessDescription": "\"{0}\" wurde erfolgreich gespeichert.",
+ "classicPolicySaveSuccessTitle": "Klassische Richtlinie gespeichert",
+ "clientAppBladeLegacyInfoBanner": "Die Legacyauthentifizierung wird zurzeit nicht unterstützt.",
+ "clientAppBladeLegacyUpsellBanner": "Nicht unterstützte Client-Apps blockieren (Vorschau)",
+ "clientAppBladeTitle": "Client-Apps",
+ "clientAppDescription": "Wählen Sie die Client-Apps aus, auf die diese Richtlinie angewendet wird.",
+ "clientAppExchangeActiveSync": "Exchange ActiveSync",
+ "clientAppExchangeDisabledInfo": "Exchange ActiveSync ist verfügbar, wenn Exchange Online als einzige Cloud-App ausgewählt ist. Klicken Sie, um weitere Informationen zu erhalten.",
+ "clientAppExchangeWarning": "Alle übrigen Bedingungen werden von Exchange ActiveSync zurzeit nicht unterstützt.",
+ "clientAppLearnMore": "Steuern Sie den Benutzerzugriff für bestimmte Clientanwendungen, die keine moderne Authentifizierung verwenden.",
+ "clientAppLegacyHeader": "Legacy-Authentifizierungsclients",
+ "clientAppMobileDesktop": "Mobile Apps und Desktopclients",
+ "clientAppModernHeader": "Clients mit moderner Authentifizierung",
+ "clientAppOnlySupportedPlatforms": "Richtlinie nur auf unterstützte Plattformen anwenden",
+ "clientAppSelectSpecificClientApps": "Client-Apps auswählen",
+ "clientAppV2BladeTitle": "Client-Apps (Vorschau)",
+ "clientAppWebBrowser": "Browser",
+ "clientAppsSelectedLabel": "{0} eingeschlossen",
+ "clientTypeBrowser": "Browser",
+ "clientTypeEas": "Exchange ActiveSync-Clients",
+ "clientTypeEasInfo": "Exchange ActiveSync-Clients, die nur die Legacyauthentifizierung verwenden.",
+ "clientTypeModernAuth": "Clients mit moderner Authentifizierung",
+ "clientTypeOtherClients": "Andere Clients",
+ "clientTypeOtherClientsInfo": "Dies schließt ältere Office-Clients und weitere E-Mail-Protokolle (POP, IMAP, SMTP usw.) ein. [Weitere Informationen][1]\n[1]: https://aka.ms/caclientapps\n",
+ "cloudAppCountDiffBannerText": "{0} der in dieser Richtlinie konfigurierten Cloud-Apps wurden aus dem Verzeichnis gelöscht, aber dies wirkt sich nicht auf die weiteren Apps in der Richtlinie aus. Beim nächsten Aktualisieren des Anwendungsabschnitts der Richtlinie werden die gelöschten Apps automatisch entfernt.",
+ "cloudAppsSelectionBladeAllMicrosoftApps": "Alle Microsoft-Apps",
+ "cloudAppsSelectionExcludeAllMicrosoftClients": "Cloud-, Desktop- und mobile Apps von Microsoft zulassen (Vorschau)",
+ "cloudappsSelectionBladeAllCloudapps": "Alle Cloud-Apps",
+ "cloudappsSelectionBladeExcludeDescription": "Wählen Sie die Cloud-Apps aus, die von der Richtlinie ausgenommen werden sollen.",
+ "cloudappsSelectionBladeExcludedSelectorTitle": "Ausgeschlossene Cloud-Apps auswählen",
+ "cloudappsSelectionBladeIncludeDescription": "Hiermit werden die Cloud-Apps ausgewählt, auf die die Richtlinie angewendet wird.",
+ "cloudappsSelectionBladeIncludedSelectorTitle": "Auswählen",
+ "cloudappsSelectionBladeSelectedCloudapps": "Apps auswählen",
+ "cloudappsSelectorInfoBallonText": "Dienste, auf die der Benutzer im Rahmen seiner Arbeit zugreift. Beispiel: \"Salesforce\"",
+ "cloudappsSelectorPluralExcluded": "{0} ausgeschlossene Apps",
+ "cloudappsSelectorPluralIncluded": "{0} enthaltene Apps",
+ "cloudappsSelectorSingularExcluded": "1 App ausgeschlossen",
+ "cloudappsSelectorSingularIncluded": "1 App enthalten",
+ "cloudappsSelectorUserPlural": "{0} Apps",
+ "cloudappsSelectorUserSingular": "1 App",
+ "conditionLabelMulti": "{0} Bedingungen ausgewählt",
+ "conditionLabelOne": "1 Bedingung ausgewählt",
+ "conditionalAccessBladeTitle": "Bedingter Zugriff",
+ "conditionsNotSelectedLabel": "Nicht konfiguriert",
+ "conditionsReqMfaReauthSet": "Einige Optionen sind aufgrund der Zuweisung \"Multi-Faktor-Authentifizierung erforderlich\" und des derzeit ausgewählten Sitzungssteuerelements \"Anmeldehäufigkeit jedes Mal\" nicht verfügbar.",
+ "conditionsReqPwSet": "Aufgrund der derzeit ausgewählten Zuweisung \"Kennwortänderung anfordern\" sind einige Optionen nicht verfügbar.",
+ "configureCasText": "Cloud App Security konfigurieren",
+ "configureCustomControlsText": "Benutzerdefinierte Richtlinie konfigurieren",
+ "controlLabelMulti": "{0} Steuerelemente ausgewählt",
+ "controlLabelOne": "1 Steuerelement ausgewählt",
+ "controlValidatorText": "Wählen Sie mindestens ein Steuerelement aus.",
+ "controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
+ "controlsDeviceComplianceAriaLabel": "Learn more about requiring compliant devices.",
+ "controlsDeviceComplianceInfoBubble": "Device must be Intune compliant. If the device is non-compliant, the user will be prompted to bring the device under compliance.",
+ "controlsDomainJoinedAriaLabel": "Learn more about requiring hybrid Azure AD joined devices.",
+ "controlsDomainJoinedInfoBubble": "Geräte müssen als Hybridgeräte in Azure AD eingebunden werden.",
+ "controlsMamAriaLabel": "Learn more about requiring approved client applications.",
+ "controlsMamInfoBubble": "Das Gerät muss diese genehmigten Clientanwendungen verwenden.",
+ "controlsMfaInfoBubble": "Benutzer müssen zusätzliche Sicherheitsanforderungen erfüllen, z. B. Telefonanruf, SMS.",
+ "controlsOrAndInfoBubble": "ControlsOrAndInfoBubble",
+ "controlsRequireCompliantAppAriaLabel": "Learn more about requiring policy protected apps.",
+ "controlsRequireCompliantAppInfoBubble": "Das Gerät muss durch Richtlinien geschützte Apps verwenden.",
+ "controlsRequirePasswordResetAriaLabel": "Learn more about requiring a password change.",
+ "controlsRequirePasswordResetInfoBubble": "Zum Verringern des Benutzerrisikos ist eine Kennwortänderung erforderlich. Für diese Option wird außerdem die Multi-Faktor-Authentifizierung benötigt. Andere Steuerelemente können nicht verwendet werden.",
+ "countriesRadiobuttonInfoBalloonContent": "Das Land/die Region, von der aus die Anmeldung erfolgt, wird über die IP-Adresse des Benutzers bestimmt.",
+ "createNewVpnCert": "Neues Zertifikat",
+ "createdTimeLabel": "Zeitpunkt der Erstellung",
+ "customRoleLabel": "Benutzerdefinierte Rollen (nicht unterstützt)",
+ "dateRangeTypeLabel": "Datumsbereich",
+ "daysOfWeekPlaceholderText": "Wochentage filtern",
+ "daysOfWeekTypeLabel": "Wochentage",
+ "deletePolicyNoLicenseText": "Sie können diese Richtlinie jetzt löschen. Nach dem Löschen können Sie sie erst dann wiederherstellen, wenn Sie die erforderlichen Lizenzen besitzen.",
+ "descriptionContentForControlsAndOr": "Für mehrere Steuerelemente",
+ "devicePlatform": "Geräteplattform",
+ "devicePlatformConditionHelpDescription": "Hiermit wird die Richtlinie auf ausgewählte Geräteplattformen angewendet.\n[Weitere Informationen][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2044750",
+ "devicePlatformInclude": "{0} eingeschlossen",
+ "devicePlatformIncludeExclude": "\"{0}\" und \"{1}\" ausgeschlossen",
+ "devicePlatformNoSelectionError": "Für die Auswahl von Geräteplattformen muss ein untergeordnetes Element ausgewählt werden.",
+ "devicePlatformsNone": "Kein",
+ "deviceSelectionBladeExcludeDescription": "Wählen Sie die Plattformen aus, die von der Richtlinie ausgenommen werden sollen.",
+ "deviceSelectionBladeIncludeDescription": "Hiermit werden die Geräteplattformen ausgewählt, auf die diese Richtlinie angewendet werden soll.",
+ "deviceStateAll": "Alle Gerätezustände",
+ "deviceStateCompliant": "Gerät als konform markiert",
+ "deviceStateCompliantInfoContent": "Mit Intune konforme Geräte werden von der Auswertung dieser Richtlinie ausgeschlossen. Wenn die Richtlinie z. B. den Zugriff blockiert, werden alle Geräte mit Ausnahme derjenigen blockiert, die mit Intune konform sind.",
+ "deviceStateConditionConfigureInfoContent": "Richtlinienkonfiguration basierend auf Gerätezustand",
+ "deviceStateConditionSelectorInfoContent": "Gibt an, ob das Gerät, von dem sich der Benutzer anmeldet, „Hybrid, in Azure AD eingebunden“ oder „als kompatibel markiert“ ist.\n Dies ist veraltet. Verwenden Sie stattdessen „{1}“.",
+ "deviceStateConditionSelectorLabel": "Gerätestatus (veraltet)",
+ "deviceStateDomainJoined": "In Azure AD eingebundenes Hybridgerät",
+ "deviceStateDomainJoinedInfoContent": "In Azure AD eingebundene Hybridgeräte werden von der Auswertung dieser Richtlinie ausgeschlossen. Wenn die Richtlinie z. B. den Zugriff blockiert, werden alle Geräte mit Ausnahme der in Azure AD eingebundenen Hybridgeräte blockiert.",
+ "deviceStateDomainJoinedInfoLinkText": "Weitere Informationen.",
+ "deviceStateExcludeDescription": "Hiermit wird der Gerätezustand zum Ausschließen von Geräten von dieser Richtlinie ausgewählt.",
+ "deviceStateIncludeAndExcludeOneLabel": "{0}, ausschließen: {1}",
+ "deviceStateIncludeAndExcludeTwoLabel": "{0}, ausschließen: {1}, {2}",
+ "directoryRoleInfoContent": "Weisen Sie integrierten Verzeichnisrollen eine Richtlinie zu.",
+ "directoryRolesLabel": "Verzeichnisrollen",
+ "discardbutton": "Verwerfen",
+ "downloadDefaultFileName": "IP-Bereiche",
+ "downloadExampleFileName": "Beispiel",
+ "downloadExampleHeader": "Dies ist eine Beispieldatei zu den akzeptierten Datentypen. Zeilen, die mit # beginnen, werden ignoriert.",
+ "endDatePickerLabel": "Endet",
+ "endTimePickerLabel": "Endzeit",
+ "enterCountryText": "Die IP-Adresse und das Land/die Region werden zusammen ausgewertet. Wählen Sie das Land/die Region aus.",
+ "enterIpText": "Die IP-Adresse und das Land/die Region werden zusammen ausgewertet. Geben Sie die IP-Adresse ein.",
+ "enterUserText": "Kein Benutzer ausgewählt. Wählen Sie einen Benutzer aus.",
+ "evaluationResult": "Auswertungsergebnis",
+ "exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
+ "exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Nur Exchange ActiveSync mit unterstützten Plattformen",
+ "excludeAllTrustedLocationSelectorText": "Alle vertrauenswürdigen Standorte",
+ "featureRequiresP2": "Für dieses Feature ist eine Azure AD Premium 2-Lizenz erforderlich.",
+ "friday": "Freitag",
+ "grantControls": "Steuerelemente zur Rechteerteilung",
+ "gridNetworkTrusted": "Vertrauenswürdig",
+ "gridPolicyCreatedDateTime": "Erstellungsdatum",
+ "gridPolicyEnabled": "Aktiviert",
+ "gridPolicyModifiedDateTime": "Änderungsdatum",
+ "gridPolicyName": "Richtlinienname",
+ "gridPolicyState": "Zustand",
+ "groupSelectionBladeExcludeDescription": "Hiermit werden die Gruppen ausgewählt, die von der Richtlinie ausgenommen werden sollen.",
+ "groupSelectionBladeExcludedSelectorTitle": "Ausgeschlossene Gruppen auswählen",
+ "groupSelectionBladeSelect": "Gruppen auswählen",
+ "groupSelectorInfoBallonText": "Gruppen im Verzeichnis, auf das die Richtlinie angewendet wird. Beispiel: \"Pilotgruppe\"",
+ "groupsSelectionBladeTitle": "Gruppen",
+ "helpCommonScenariosText": "Möchten Sie einige gängige Szenarien kennenlernen?",
+ "helpCondition1": "Wenn sich ein beliebiger Benutzer außerhalb des Unternehmensnetzwerks befindet",
+ "helpCondition2": "Wenn sich Benutzer der Gruppe \"Manager\" anmelden",
+ "helpConditionsTitle": "Bedingungen",
+ "helpControl1": "Sie müssen sich unter Verwendung der Multi-Faktor-Authentifizierung anmelden.",
+ "helpControl2": "Sie müssen sich auf einem Intune-kompatiblen oder auf einem in die Domäne eingebundenen Gerät befinden.",
+ "helpControlsTitle": "Steuerungen",
+ "helpIntroText": "Über den bedingten Zugriff können Sie Zugriffsanforderungen erzwingen, wenn bestimmte Bedingungen erfüllt sind. Hier einige Beispiele:",
+ "helpIntroTitle": "Was ist bedingter Zugriff?",
+ "helpLearnMoreText": "Möchten Sie mehr über den bedingten Zugriff erfahren?",
+ "helpStartStep1": "Erstellen Sie Ihre erste Richtlinie, indem Sie auf \"+ Neue Richtlinie\" klicken.",
+ "helpStartStep2": "Geben Sie Richtlinienbedingungen und -steuerelemente an.",
+ "helpStartStep3": "Wenn Sie fertig sind, vergessen Sie nicht, die Richtlinie zu aktivieren und auf \"Erstellen\" zu klicken.",
+ "helpStartTitle": "Erste Schritte",
+ "highRisk": "Hoch",
+ "includeAndExcludeAppsTextFormat": "Einschließen: {0}. Ausschließen: {1}.",
+ "includeAppsTextFormat": "Einschließen: {0}.",
+ "includeUnknownAreasCheckboxInfoBalloonContent": "Unbekannte Bereiche sind IP-Adressen, die keinem Land/keiner Region zugeordnet werden können.",
+ "includeUnknownAreasCheckboxLabel": "Unbekannte Bereiche einschließen",
+ "infoCommandLabel": "Info",
+ "invalidCertDuration": "Ungültige Zertifikatdauer.",
+ "invalidIpAddress": "Der Wert muss eine gültige IP-Adresse sein.",
+ "invalidUriErrorMsg": "Geben Sie einen gültigen URI an. Beispiel: uri:contoso.com:acr ",
+ "iosDisplayName": "iOS",
+ "linuxDisplayName": "Linux",
+ "loadAll": "Alle laden",
+ "loading": "Wird geladen...",
+ "locationConfigureNamedLocationsText": "Alle vertrauenswürdigen Standorte konfigurieren",
+ "locationConfigureNamedLocationsUri": "{0}/usermanagement/mfasettings.aspx?tenantid={1}&culture={2}",
+ "locationNameTooLongError": "Der Name der Richtlinie ist zu lang. Er darf maximal 256 Zeichen umfassen.",
+ "locationSelectionBladeExcludeDescription": "Wählen Sie die Standorte aus, die von der Richtlinie ausgenommen werden sollen.",
+ "locationSelectionBladeIncludeDescription": "Hiermit werden die Standorte ausgewählt, die in diese Richtlinie eingeschlossen werden sollen.",
+ "locationsAllLocationsLabel": "Alle Standorte",
+ "locationsAllNamedLocationsLabel": "Alle vertrauenswürdigen IPs",
+ "locationsAllPrivateLinksLabel": "Alle Private Link-Instanzen in meinem Mandanten",
+ "locationsIncludeExcludeLabel": "\"{0}\" und alle vertrauenswürdigen IPs ausschließen",
+ "locationsSelectedPrivateLinksLabel": "Ausgewählte Private Link-Instanzen",
+ "lowRisk": "Niedrig",
+ "macOsDisplayName": "macOS",
+ "managePoliciesLicenseText": "Zum Verwalten von Richtlinien für bedingten Zugriff benötigt Ihre Organisation Azure AD Premium P1 oder P2.",
+ "markAsTrustedCheckboxInfoBalloonContent": "Durch die Anmeldung von einem vertrauenswürdigen Standort aus wird das Benutzeranmelderisiko verringert. Markieren Sie diesen Standort nur dann als vertrauenswürdig, wenn die eingegebenen IP-Bereiche bekannt sind und in Ihrer Organisation als unbedenklich eingestuft werden.",
+ "markAsTrustedCheckboxLabel": "Als vertrauenswürdigen Standort markieren",
+ "mediumRisk": "Mittel",
+ "memberSelectionCommandRemove": "Entfernen",
+ "menuItemClaimProviderControls": "Benutzerdefinierte Steuerelemente (Vorschau)",
+ "menuItemClassicPolicies": "Klassische Richtlinien",
+ "menuItemInsightsAndReporting": "Insights und Berichterstellung",
+ "menuItemManage": "Verwalten",
+ "menuItemNamedLocationsPreview": "Benannte Standorte (Vorschau)",
+ "menuItemNamedNetworks": "Benannte Standorte",
+ "menuItemPolicies": "Richtlinien",
+ "menuItemTermsOfUse": "Nutzungsbedingungen",
+ "modifiedTimeLabel": "Zeitpunkt der Änderung",
+ "monday": "Montag",
+ "nameLabel": "Name",
+ "namedLocationCountryInfoBanner": "Nur IPv4-Adressen werden Ländern/Regionen zugeordnet. IPv6-Adressen werden bei unbekannten Ländern/Regionen einbezogen.",
+ "namedLocationTypeCountry": "Länder/Regionen",
+ "namedLocationTypeLabel": "Standort definieren über:",
+ "namedLocationUpsellBanner": "Diese Ansicht ist veraltet. Wechseln Sie zur neuen und verbesserten Ansicht \"Benannte Standorte\".",
+ "namedLocationsHelpDescription": "Benannte Standorte werden von Azure AD-Sicherheitsberichten verwendet, um die Anzahl von falsch positiven Ergebnissen und von Azure AD-Richtlinien für bedingten Zugriff zu verringern.\n[Weitere Informationen][1]\n[1]: https://aka.ms/namedlocationupdate",
+ "namedNetworkAddIpRanges": "Neuen IP-Adressbereich hinzufügen (Beispiel: 40.77.182.32/27)",
+ "namedNetworkCountryNeeded": "Sie müssen mindestens ein Land/eine Region auswählen.",
+ "namedNetworkDeleteCommand": "Löschen",
+ "namedNetworkDeleteDescription": "Möchten Sie \"{0}\" löschen? Diese Aktion kann nicht rückgängig gemacht werden.",
+ "namedNetworkDeleteTitle": "Sind Sie sicher?",
+ "namedNetworkDownloadIpRange": "Herunterladen",
+ "namedNetworkInvalidRange": "Der Wert muss ein gültiger IP-Bereich sein.",
+ "namedNetworkIpRangeNeeded": "Sie benötigen mindestens einen gültigen IP-Bereich.",
+ "namedNetworkIpRangesDescriptionContent": "Hiermit werden die IP-Adressbereiche für Ihre Organisation konfiguriert.",
+ "namedNetworkIpRangesTab": "IP-Bereiche",
+ "namedNetworkListAdd": "Neuer Standort",
+ "namedNetworkListConfigureTrustedIps": "Durch MFA bestätigte IPs konfigurieren",
+ "namedNetworkNameDescription": "Beispiel: \"Büro Redmond\"",
+ "namedNetworkNameInvalid": "Der angegebene Name ist ungültig.",
+ "namedNetworkNameRequired": "Sie müssen einen Namen für diesen Standort angeben.",
+ "namedNetworkNoIpRanges": "Keine IP-Bereiche",
+ "namedNetworkNotificationCreateDescription": "Der Standort namens \"{0}\" wird erstellt.",
+ "namedNetworkNotificationCreateFailedDescription": "Fehler beim Erstellen des Standorts \"{0}\". Versuchen Sie es später noch mal.",
+ "namedNetworkNotificationCreateFailedTitle": "Fehler beim Erstellen des Standorts",
+ "namedNetworkNotificationCreateSuccessDescription": "Der Standort namens \"{0}\" wurde erstellt.",
+ "namedNetworkNotificationCreateSuccessTitle": "\"{0}\" wurde erstellt",
+ "namedNetworkNotificationCreateTitle": "\"{0}\" wird erstellt",
+ "namedNetworkNotificationDeleteDescription": "Der Standort namens \"{0}\" wird gelöscht.",
+ "namedNetworkNotificationDeleteFailedDescription": "Fehler beim Löschen des Standorts \"{0}\". Versuchen Sie es später noch mal.",
+ "namedNetworkNotificationDeleteFailedTitle": "Fehler beim Löschen des Standorts",
+ "namedNetworkNotificationDeleteSuccessDescription": "Der Standort namens \"{0}\" wurde gelöscht.",
+ "namedNetworkNotificationDeleteSuccessTitle": "\"{0}\" wurde gelöscht",
+ "namedNetworkNotificationDeleteTitle": "\"{0}\" wird gelöscht.",
+ "namedNetworkNotificationUpdateDescription": "Der Standort namens \"{0}\" wird aktualisiert.",
+ "namedNetworkNotificationUpdateFailedDescription": "Fehler beim Aktualisieren des Standorts \"{0}\". Versuchen Sie es später noch mal.",
+ "namedNetworkNotificationUpdateFailedTitle": "Fehler beim Aktualisieren des Standorts",
+ "namedNetworkNotificationUpdateSuccessDescription": "Der Standort namens \"{0}\" wurde aktualisiert.",
+ "namedNetworkNotificationUpdateSuccessTitle": "\"{0}\" wurde aktualisiert",
+ "namedNetworkNotificationUpdateTitle": "\"{0}\" wird aktualisiert",
+ "namedNetworkSearchPlaceholder": "Suche nach Standorten",
+ "namedNetworkUploadFailedDescription": "Fehler beim Analysieren der angegebenen Datei. Stellen Sie sicher, dass eine Nur-Text-Datei hochgeladen wird, bei der jede Zeile das CIDR-Format aufweist.",
+ "namedNetworkUploadFailedTitle": "Fehler beim Analysieren von \"{0}\"",
+ "namedNetworkUploadInProgressDescription": "Es wird versucht, gültige CIDR-Werte aus \"{0}\" zu analysieren.",
+ "namedNetworkUploadInProgressTitle": "\"{0}\" wird analysiert",
+ "namedNetworkUploadInvalidDescription": "\"{0}\" ist entweder zu groß oder weist ein ungültiges Format auf.",
+ "namedNetworkUploadInvalidTitle": "\"{0}\" ungültig",
+ "namedNetworkUploadIpRange": "Hochladen",
+ "namedNetworkUploadSuccessDescription": "{0} Zeilen wurden analysiert. {1} weisen ein ungültiges Format auf. {2} wurden übersprungen.",
+ "namedNetworkUploadSuccessTitle": "Analyse von \"{0}\" beendet",
+ "namedNetworksAdd": "Neuer benannter Standort",
+ "namedNetworksConditionHelpDescription": "Hiermit steuern Sie den Benutzerzugriff basierend auf dem physischen Standort.\n[Weitere Informationen][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
+ "namedNetworksExcludeLabel": "\"{0}\" und \"{1}\" ausgeschlossen",
+ "namedNetworksHelpDescription": "Benannte Standorte werden von Azure AD-Sicherheitsberichten verwendet, um die Anzahl von falsch positiven Ergebnissen und von Azure AD-Richtlinien für bedingten Zugriff zu verringern.\n[Weitere Informationen][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
+ "namedNetworksIncludeLabel": "{0} eingeschlossen",
+ "namedNetworksNone": "Keine benannten Standorte gefunden.",
+ "namedNetworksTitle": "Standorte konfigurieren",
+ "namednetworkExceedingSizeErrorBladeTitle": "Fehlerdetails",
+ "namednetworkExceedingSizeErrorDetailText": "Klicken Sie hier, um weitere Informationen zu erhalten.",
+ "namednetworkExceedingSizeErrorMessage": "Sie haben den maximal zulässigen Speicher für benannte Standorte überschritten. Versuchen Sie es mit einer kürzeren Liste. Klicken Sie hier, um weitere Details anzuzeigen.",
+ "needMfaSecondary": "\"Multi-Faktor-Authentifizierung erforderlich\" muss ausgewählt sein, wenn \"Anmeldehäufigkeit jedes Mal\" mit \"Nur sekundäre Authentifizierungsmethoden\" ausgewählt ist.",
+ "newCertName": "Neues Zertifikat",
+ "noAttributePermissionsError": "Unzureichende Berechtigungen zum Erstellen oder Aktualisieren der Richtlinie. Die Rolle „Attributdefinitionsleser“ ist erforderlich, um dynamische Filter hinzuzufügen/zu bearbeiten.",
+ "noPolicyRowMessage": "Keine Richtlinien",
+ "noSPSelected": "Kein Dienstprinzipal ausgewählt",
+ "noUpdatePermissionMessage": "Sie sind nicht berechtigt, diese Einstellungen zu aktualisieren. Wenden Sie sich an den globalen Administrator, um Zugriff zu erhalten.",
+ "noUserSelected": "Kein Benutzer ausgewählt.",
+ "noneRisk": "Kein Risiko",
+ "office365Description": "Zu diesen Apps gehören Microsoft Flow, Microsoft Forms, Microsoft Teams, Office 365 Exchange Online, Office 365 SharePoint Online, Office 365 Yammer und andere.",
+ "office365InfoBox": "Mindestens eine der ausgewählten Apps ist Teil von Office 365. Es wird empfohlen, die Richtlinie stattdessen für die Office 365-App festzulegen.",
+ "oneUserSelected": "1 Benutzer ausgewählt",
+ "onlyGlobalAdminsCanSaveThisPolicyConfig": "Nur globale Administratoren können diese Richtlinie speichern.",
+ "or": "{0} ODER {1}",
+ "pickerDoneCommand": "Fertig",
+ "policiesBladeAdPremiumUpsellBannerText": "Erstellen Sie Ihre eigenen Richtlinien, und bearbeiten Sie spezifische Bedingungen wie Cloud-Apps, Anmelderisiken und Geräteplattformen mit Azure AD Premium.",
+ "policiesBladeTitle": "Richtlinien",
+ "policiesBladeTitleWithAppName": "Richtlinien: {0}",
+ "policiesDisabledBannerText": "Das Erstellen und Bearbeiten von Richtlinien ist für Anwendungen mit einem Attribut für die Anmeldung per Link untersagt.",
+ "policiesHitMaxLimitStatusBarMessage": "Sie haben die maximale Anzahl von Richtlinien für diesen Mandanten erreicht. Löschen Sie einige Richtlinien, um weitere Richtlinien erstellen zu können.",
+ "policyAssignmentsSection": "Zuweisungen",
+ "policyBlockAllInfoBox": "Die konfigurierte Richtlinie blockiert alle Benutzer und wird daher nicht unterstützt. Überprüfen Sie die Zuweisungen und Steuerelemente. Schließen Sie den aktuellen Benutzer ({0}) aus, wenn Sie diese Richtlinie speichern möchten.",
+ "policyCloudAppsDisplayTextAllApp": "Alle Apps",
+ "policyCloudAppsLabel": "Cloud-Apps",
+ "policyConditionClientAppDescription": "Software, die der Benutzer zum Zugriff auf die Cloud-App verwendet. Beispiel: \"Browser\"",
+ "policyConditionClientAppV2Description": "Software, die der Benutzer zum Zugriff auf die Cloud-App verwendet. Beispiel: \"Browser\"",
+ "policyConditionDevicePlatform": "Geräteplattformen",
+ "policyConditionDevicePlatformDescription": "Die Plattform, von der aus sich der Benutzer anmeldet. Beispiel: \"iOS\"",
+ "policyConditionLocation": "Standorte",
+ "policyConditionLocationDescription": "Der Standort (ermittelt über den IP-Adressbereich), von dem aus sich der Benutzer anmeldet",
+ "policyConditionSigninRisk": "Anmelderisiko",
+ "policyConditionSigninRiskDescription": "Die Wahrscheinlichkeit, dass die Anmeldung von einer anderen Person als dem Benutzer stammt. Die Risikostufe kann \"Hoch\", \"Mittel\" oder \"Niedrig\" lauten. Erfordert eine Azure AD Premium 2-Lizenz.",
+ "policyConditionUserRisk": "Benutzerrisiko",
+ "policyConditionUserRiskDescription": "Hiermit konfigurieren Sie die Benutzerrisikostufen, die für die Erzwingung der Richtlinie erforderlich sind.",
+ "policyConditioniClientApp": "Client-Apps",
+ "policyConditioniClientAppV2": "Client-Apps (Vorschau)",
+ "policyControlAllowAccessDisplayedName": "Zugriff gewähren",
+ "policyControlAuthenticationStrengthDisplayedName": "Authentifizierungsstärke erforderlich (Vorschau)",
+ "policyControlBladeTitle": "Gewähren",
+ "policyControlBlockAccessDisplayedName": "Blockzugriff",
+ "policyControlCompliantDeviceDisplayedName": "Markieren des Geräts als kompatibel erforderlich",
+ "policyControlContentDescription": "Steuern Sie die Zugriffserzwingung, um den Zugriff zu blockieren oder zu gewähren.",
+ "policyControlInfoBallonText": "Blockieren Sie den Zugriff, oder wählen Sie zusätzliche Anforderungen aus, die für eine Zugriffserteilung erfüllt sein müssen.",
+ "policyControlMfaChallengeDisplayedName": "Multi-Faktor-Authentifizierung erfordern",
+ "policyControlRequireCompliantAppDisplayedName": "App-Schutzrichtlinie erforderlich",
+ "policyControlRequireDomainJoinedDisplayedName": "In Azure AD eingebundenes Hybridgerät erforderlich",
+ "policyControlRequireMamDisplayedName": "Genehmigte Client-App erforderlich",
+ "policyControlRequiredPasswordChangeDisplayedName": "Kennwortänderung anfordern",
+ "policyControlSelectAuthStrength": "Authentifizierungsstärke erforderlich",
+ "policyControlsNoControlsSelected": "0 Steuerelemente ausgewählt",
+ "policyControlsSection": "Zugriffskontrollen",
+ "policyCreatBladeTitle": "Neu",
+ "policyCreateButton": "Erstellen",
+ "policyCreateFailedMessage": "Fehler: {0}",
+ "policyCreateFailedTitle": "Fehler beim Erstellen von \"{0}\"",
+ "policyCreateInProgressTitle": "\"{0}\" wird erstellt",
+ "policyCreateSuccessMessage": "\"{0}\" wurde erfolgreich erstellt. Die Richtlinie wird in wenigen Minuten aktiviert, wenn Sie \"Richtlinie aktivieren\" auf \"Ein\" festgelegt haben.",
+ "policyCreateSuccessTitle": "\"{0}\" erfolgreich erstellt",
+ "policyDeleteConfirmation": "Möchten Sie \"{0}\" löschen? Diese Aktion kann nicht rückgängig gemacht werden.",
+ "policyDeleteFailTitle": "Fehler beim Löschen von \"{0}\".",
+ "policyDeleteInProgressTitle": "\"{0}\" wird gelöscht.",
+ "policyDeleteSuccessTitle": "\"{0}\" wurde erfolgreich gelöscht.",
+ "policyEnforceLabel": "Richtlinie aktivieren",
+ "policyErrorCannotSetSigninRisk": "Sie haben keine Berechtigung zum Speichern einer Richtlinie mit einer Bedingung zum Anmelderisiko.",
+ "policyErrorNoPermission": "Sie haben keine Berechtigung zum Speichern der Richtlinie. Wenden Sie sich an Ihren globalen Administrator.",
+ "policyErrorUnknown": "Es ist ein Fehler aufgetreten. Versuchen Sie es später noch mal.",
+ "policyFallbackWarningMessage": "Fehler beim Erstellen oder Aktualisieren von \"{0}\" mithilfe von MS Graph. Es wurde ein Fallback auf AD Graph durchgeführt. Untersuchen Sie das folgende Szenario, weil höchstwahrscheinlich ein Fehler beim Aufrufen des Richtlinienendpunkts für MS Graph mit einer inkompatiblen Bedingung vorliegt.",
+ "policyFallbackWarningTitle": "\"{0}\" teilweise erfolgreich erstellt oder aktualisiert",
+ "policyNameCannotBeEmpty": "Der Richtlinienname darf nicht leer sein.",
+ "policyNameDevice": "Geräterichtlinie",
+ "policyNameFormat": "[{0}] {1}",
+ "policyNameMam": "Richtlinie für die Verwaltung mobiler Apps",
+ "policyNameMfaLocation": "MFA- und Standortrichtlinie",
+ "policyNamePlaceholderText": "Beispiel: \"App-Richtlinie zur Gerätekompatibilität\"",
+ "policyNameTooLongError": "Der Name der Richtlinie ist zu lang. Der Name darf maximal 256 Zeichen umfassen.",
+ "policyOff": "Aus",
+ "policyOn": "Ein",
+ "policyReportOnly": "Nur Bericht",
+ "policyReviewSection": "Überprüfung",
+ "policySaveButton": "Speichern",
+ "policyStatusIconDescription": "Die Richtlinie ist aktiviert.",
+ "policyStatusIconEnabled": "Symbol für den Status \"Aktiviert\"",
+ "policyTemplateName1": "Von der App erzwungene Einschränkungen für den Browserzugriff durch {0} verwenden",
+ "policyTemplateName2": "Zugriff durch {0} nur auf verwalteten Geräten zulassen",
+ "policyTemplateName3": "Die Richtlinie wurde aus den Einstellungen für die fortlaufende Zugriffsevaluierung migriert.",
+ "policyTriggerRiskSpecific": "Bestimmte Risikostufe auswählen",
+ "policyTriggersInfoBalloonText": "Diese Bedingungen definieren die Anwendung der Richtlinie. Beispiel \"Standort\".",
+ "policyTriggersNoConditionsSelected": "0 Bedingungen ausgewählt",
+ "policyTriggersSelectorLabel": "Bedingungen",
+ "policyUpdateFailedMessage": "Fehler: {0}",
+ "policyUpdateFailedTitle": "Fehler beim Aktualisieren von \"{0}\".",
+ "policyUpdateInProgressTitle": "\"{0}\" wird aktualisiert.",
+ "policyUpdateSuccessMessage": "\"{0}\" wurde erfolgreich aktualisiert. Die Richtlinie wird in wenigen Minuten aktiviert, wenn Sie \"Richtlinie aktivieren\" auf \"Ein\" festgelegt haben.",
+ "policyUpdateSuccessTitle": "\"{0}\" wurde erfolgreich aktualisiert.",
+ "primaryCol": "Primär",
+ "privateLinkLabel": "Azure AD Private Link",
+ "reportOnlyInfoBox": "Modus \"Nur Bericht\": Richtlinien werden bei der Anmeldung ausgewertet und protokolliert, beeinträchtigen die Benutzer aber nicht.",
+ "requireAllControlsText": "Alle ausgewählten Kontrollen anfordern",
+ "requireCompliantDevice": "Erfordert kompatibles Gerät",
+ "requireDomainJoined": "In Domäne eingebundenes Gerät erforderlich",
+ "requireGrantReauth": "Die Sitzungssteuerung \"Anmeldehäufigkeit jedes Mal\" erfordert eine \"Mehrstufige Authentifizierung erforderlich\" oder \"Kennwortänderung erforderlich\", um die Steuerung zu erteilen, wenn \"Alle Cloud-Apps\" ausgewählt ist.",
+ "requireMFA": "Multi-Factor Authentication erforderlich",
+ "requireMfaReauth": "Für die Sitzungssteuerung \"Anmeldehäufigkeit jedes Mal\" muss die Steuerung \"Mehrstufige Authentifizierung erforderlich\" für \"Anmelderisiko\" erteilt werden.",
+ "requireOneControlText": "Eine der ausgewählten Steuerungen anfordern",
+ "requirePasswordChangeReauth": "Für die Sitzungssteuerung \"Anmeldehäufigkeit jedes Mal\" ist die Berechtigung \"Kennwortänderung erforderlich\" für \"Benutzerrisiko\" erforderlich.",
+ "requireRiskReauth": "Für die Sitzungssteuerung \"Anmeldehäufigkeit jedes Mal\" ist das Sitzungssteuerelement \"Benutzerrisiko\" oder \"Anmelderisiko\" erforderlich, wenn \"Alle Cloud-Apps\" ausgewählt ist.",
+ "resetFilters": "Filter zurücksetzen",
+ "sPRequired": "Dienstprinzipal ist erforderlich",
+ "sPSelectorInfoBalloon": "Benutzer oder Dienstprinzipal, den Sie testen möchten",
+ "saturday": "Samstag",
+ "searchTextTooLongError": "Der Suchtext ist zu lang. Es sind maximal 256 Zeichen zulässig.",
+ "securityDefaultsPolicyName": "Sicherheitsstandards",
+ "securityDefaultsTextMessage": "Die Sicherheitsstandards müssen deaktiviert sein, um Richtlinie für bedingten Zugriff zu aktivieren.",
+ "securityDefaultsWarningMessage": "Sie möchten offenbar die Sicherheitskonfigurationen Ihrer Organisation verwalten. Hervorragend! Sie müssen zunächst die Sicherheitsstandards deaktivieren, um eine Richtlinie für den bedingten Zugriff zu aktivieren.",
+ "selectDevicePlatforms": "Geräteplattformen auswählen",
+ "selectNamedNetworksSubtitle": "",
+ "selectNamedNetworksTitle": "Speicherorte auswählen",
+ "selectedSP": "Ausgewählter Dienstprinzipal",
+ "servicePrincipalDataGridAria": "Liste der verfügbaren Dienstprinzipale",
+ "servicePrincipalDropDownLabel": "Wofür gilt diese Richtlinie?",
+ "servicePrincipalInfoBox": "Einige Bedingungen sind aufgrund der Auswahl von „{0}“ in der Richtlinienzuweisung nicht verfügbar.",
+ "servicePrincipalRadioAll": "Alle eigenen Dienstprinzipale",
+ "servicePrincipalRadioSelect": "Dienstprinzipale auswählen",
+ "servicePrincipalSelectionsAria": "Raster für ausgewählte Dienstprinzipale",
+ "servicePrincipalSelectorAria": "Liste der ausgewählten Dienstprinzipale",
+ "servicePrincipalSelectorMultiple": "{0} Dienstprinzipale ausgewählt",
+ "servicePrincipalSelectorSingle": "1 Dienstprinzipal ausgewählt",
+ "servicePrincipalSpecificInc": "Bestimmte eingeschlossene Dienstprinzipale",
+ "servicePrincipals": "Dienstprinzipal",
+ "sessionControlBladeTitle": "Sitzung",
+ "sessionControlDescriptionContent": "Steuern Sie den Zugriff basierend auf Sitzungssteuerelementen, um in bestimmten Cloudanwendungen eine eingeschränkte Funktionalität zu ermöglichen.",
+ "sessionControlDisableInfo": "Dieses Steuerelement kann nur mit unterstützten Apps eingesetzt werden. Aktuell sind Office 365, Exchange Online und SharePoint Online die einzigen Cloud-Apps, die von der App erzwungene Einschränkungen unterstützen. Klicken Sie hier, um weitere Informationen zu erhalten.",
+ "sessionControlInfoBallonText": "Sitzungssteuerelemente sorgen für eingeschränkte Interaktionsmöglichkeiten innerhalb einer Cloud-App.",
+ "sessionControls": "Sitzungskontrollen",
+ "sessionControlsAppEnforcedLabel": "Von der App erzwungene Einschränkungen verwenden",
+ "sessionControlsCasLabel": "App-Steuerung für bedingten Zugriff verwenden",
+ "sessionControlsSecureSignInLabel": "Tokenbindung erforderlich",
+ "sharepointAppName": "SharePoint",
+ "signinRiskDescription": "Hiermit wählen Sie die Anmelderisikostufe aus, auf die diese Richtlinie angewendet werden soll.",
+ "signinRiskInclude": "{0} eingeschlossen",
+ "signinRiskReauth": "Die Bedingung \"Anmelderisiko\" muss ausgewählt werden, wenn die Zuweisung \"Multi-Faktor-Authentifizierung erforderlich\" und die Sitzungssteuerung \"Anmeldehäufigkeit jedes Mal\" ausgewählt sind.",
+ "signinRiskTriggerDescriptionContent": "Stufe für Anmelderisiko auswählen",
+ "singleTenantServicePrincipalInfoBallonText": "Die Richtlinie gilt nur für Dienstprinzipale mit einem einzelnen Mandanten, die sich im Besitz Ihrer Organisation befinden. Klicken Sie hier, um weitere Informationen zu erhalten. ",
+ "specificSigninRiskLevelsOption": "Spezifische Risikostufen für die Anmeldung auswählen",
+ "specificUsersExcluded": "bestimmte Benutzer ausgeschlossen",
+ "specificUsersIncluded": "Bestimmte Benutzer eingeschlossen",
+ "specificUsersIncludedAndExcluded": "Bestimmte Benutzer ausgeschlossen und eingeschlossen",
+ "startDatePickerLabel": "Startet",
+ "startFreeTrial": "Kostenlose Testversion starten",
+ "startTimePickerLabel": "Startzeit",
+ "sunday": "Sonntag",
+ "testButton": "What If",
+ "thumbprintCol": "Fingerabdruck",
+ "thursday": "Donnerstag",
+ "timeConditionAllTimesLabel": "Beliebige Zeit",
+ "timeConditionIntroText": "Hiermit werden die Zeiten für die Anwendung dieser Richtlinie ausgewählt.",
+ "timeConditionSelectorInfoBallonContent": "Zeitraum, in dem sich der Benutzer anmeldet. Beispiel: \"Mittwoch, 9:00–17:00 Uhr PST\".",
+ "timeConditionSelectorLabel": "Zeit (Vorschau)",
+ "timeConditionSpecificLabel": "Bestimmte Zeiten",
+ "timeSelectorAllTimesText": "Beliebige Zeit",
+ "timeSelectorSpecificTimesText": "Bestimmte Zeiten konfiguriert",
+ "timeZoneDropdownInfoBalloonContent": "Wählen Sie eine Zeitzone aus, die den Zeitbereich definiert. Diese Richtlinie gilt für Benutzer in allen Zeitzonen. Beispiel: Der Zeitraum \"Mittwoch, 9:00–17:00 Uhr\", der für einen Benutzer in einer bestimmten Zeitzone gilt, entspricht für einen anderen Benutzer in einer anderen Zeitzone dem Zeitraum \"Mittwoch, 10:00–18:00 Uhr\".",
+ "timeZoneDropdownLabel": "Zeitzone",
+ "timeZoneDropdownPlaceholderText": "Zeitzone auswählen",
+ "tooManyPoliciesDescription": "Es werden nur die ersten 50 Richtlinien angezeigt. Klicken Sie hier, um alle Richtlinien anzuzeigen.",
+ "tooManyPoliciesTitle": "Mehr als 50 Richtlinien gefunden",
+ "trustedLocationStatusIconDescription": "Standort ist vertrauenswürdig",
+ "trustedLocationStatusIconEnabled": "Symbol für vertrauenswürdigen Status",
+ "tuesday": "Dienstag",
+ "uploadInBadState": "Die angegebene Datei kann nicht hochgeladen werden.",
+ "upsellAppsDescription": "Erfordert in allen Fällen oder nur von außerhalb des Unternehmensnetzwerks eine Multi-Faktor-Authentifizierung für sensible Anwendungen.",
+ "upsellAppsTitle": "Sichere Anwendungen",
+ "upsellBannerText": "Holen Sie sich die kostenlose Premium-Testversion, um dieses Feature zu verwenden.",
+ "upsellDataDescription": "Für den Zugriff auf Unternehmensressourcen ist die Markierung des Geräts als konform oder eine Einbindung als Hybridgerät in Azure AD erforderlich.",
+ "upsellDataTitle": "Sichere Daten",
+ "upsellDescription": "Der bedingte Zugriff bietet genau den Grad an Kontrolle und Schutz, den Sie zur Absicherung Ihrer Unternehmensdaten benötigen. Gleichzeitig wird gewährleistet, dass Ihre Benutzer bestmöglich von einem beliebigen Gerät aus ihre Arbeit erledigen können. Beispielsweise können Sie den Zugriff von außerhalb des Unternehmensnetzwerks einschränken oder den Zugriff auf Geräte beschränken, die den Kompatibilitätsrichtlinien entsprechen.",
+ "upsellRiskDescription": "Erfordert eine Multi-Faktor-Authentifizierung für Risikoereignisse, die vom Microsoft Machine Learning-System erkannt werden.",
+ "upsellRiskTitle": "Risikoschutz",
+ "upsellTitle": "Bedingter Zugriff",
+ "upsellWhyTitle": "Was spricht für die Verwendung des bedingten Zugriffs?",
+ "userAppNoneOption": "Kein",
+ "userNamePlaceholderText": "Benutzernamen eingeben",
+ "userNotSetSeletorLabel": "0 Benutzer und Gruppen ausgewählt",
+ "userOnlySelectionBladeExcludeDescription": "Wählen Sie die Benutzer aus, die von der Richtlinie ausgenommen werden sollen.",
+ "userOrGroupSelectionCountDiffBannerText": "{0}, die in dieser Richtlinie konfiguriert sind, wurden aus dem Verzeichnis gelöscht. Dies wirkt sich jedoch nicht auf die weiteren Benutzer und Gruppen in der Richtlinie aus. Beim nächsten Aktualisieren der Richtlinie werden die gelöschten Benutzer und/oder Gruppen automatisch entfernt.",
+ "userOrSPNotSetSelectorLabel": "0 Benutzer- oder Workloadidentitäten ausgewählt",
+ "userOrSPSelectionBladeTitle": "Benutzer- oder Workloadidentitäten",
+ "userOrSPSelectorInfoBallonText": "Identitäten im Verzeichnis, für das die Richtlinie gilt, einschließlich Benutzer, Gruppen und Dienstprinzipale",
+ "userRequired": "Benutzer erforderlich",
+ "userRiskErrorBox": "Die Bedingung \"Benutzerrisiko\" muss ausgewählt werden, wenn die Zuweisung \"Kennwortänderung anfordern\" ausgewählt ist.",
+ "userRiskReauth": "Die Bedingung \"Benutzerrisiko\" und nicht \"Anmelderisiko\" muss ausgewählt werden, wenn die Zuweisung \"Kennwortänderung erforderlich\" und die Sitzungssteuerung \"Anmeldehäufigkeit jedes Mal anfordern\" ausgewählt sind.",
+ "userSPRequired": "Benutzer oder Dienstprinzipal ist erforderlich",
+ "userSPSelectorTitle": "Benutzer- oder Workloadidentität",
+ "userSelectionBladeAllUsersAndGroups": "Alle Benutzer und Gruppen",
+ "userSelectionBladeExcludeDescription": "Wählen Sie die Benutzer und Gruppen aus, die von der Richtlinie ausgenommen werden sollen.",
+ "userSelectionBladeExcludeTabTitle": "Ausschließen",
+ "userSelectionBladeExcludedSelectorTitle": "Ausgeschlossene Benutzer auswählen",
+ "userSelectionBladeIncludeDescription": "Hiermit werden die Benutzer ausgewählt, auf die diese Richtlinie angewendet wird.",
+ "userSelectionBladeIncludeTabTitle": "Einschließen",
+ "userSelectionBladeIncludedSelectorTitle": "Auswählen",
+ "userSelectionBladeSelectUsers": "Benutzer auswählen",
+ "userSelectionBladeSelectedUsers": "Benutzer und Gruppen auswählen",
+ "userSelectionBladeTitle": "Benutzer und Gruppen",
+ "userSelectorBladeTitle": "Benutzer",
+ "userSelectorExcluded": "{0} ausgeschlossen",
+ "userSelectorGroupPlural": "{0} Gruppen",
+ "userSelectorGroupSingular": "1 Gruppe",
+ "userSelectorIncluded": "{0} eingeschlossen",
+ "userSelectorInfoBallonText": "Benutzer und Gruppen im Verzeichnis, auf die die Richtlinie angewendet wird. Beispiel: \"Pilotgruppe\"",
+ "userSelectorSelected": "{0} ausgewählt",
+ "userSelectorTitle": "Benutzer",
+ "userSelectorUserAndGroup": "{0}, {1}",
+ "userSelectorUserPlural": "{0} Benutzer",
+ "userSelectorUserSingular": "1 Benutzer",
+ "userSelectorWithExclusion": "{0} und {1}",
+ "usersGroupsLabel": "Benutzer und Gruppen",
+ "viewApprovedAppsText": "Liste der genehmigten Client-Apps anzeigen",
+ "viewCompliantAppsText": "Liste der durch Richtlinien geschützten Client-Apps anzeigen",
+ "vpnBladeTitle": "VPN-Konnektivität",
+ "vpnCertCreateFailedMessage": "Fehler: {0}",
+ "vpnCertCreateFailedTitle": "Fehler beim Erstellen von {0}.",
+ "vpnCertCreateInProgressTitle": "{0} wird erstellt.",
+ "vpnCertCreateSuccessMessage": "\"{0}\" wurde erfolgreich erstellt.",
+ "vpnCertCreateSuccessTitle": "\"{0}\" wurde erfolgreich erstellt.",
+ "vpnCertNoRowsMessage": "Keine VPN-Zertifikate gefunden.",
+ "vpnCertUpdateFailedMessage": "Fehler: {0}",
+ "vpnCertUpdateFailedTitle": "Fehler beim Aktualisieren von \"{0}\".",
+ "vpnCertUpdateInProgressTitle": "\"{0}\" wird aktualisiert.",
+ "vpnCertUpdateSuccessMessage": "\"{0}\" wurde erfolgreich aktualisiert.",
+ "vpnCertUpdateSuccessTitle": "\"{0}\" wurde erfolgreich aktualisiert.",
+ "vpnFeatureInfo": "Klicken Sie hier, um weitere Informationen zur VPN-Konnektivität und zum bedingten Zugriff zu erhalten.",
+ "vpnFeatureWarning": "Sobald ein VPN-Zertifikat im Azure-Portal erstellt wird, wird es von Azure AD sofort zum Ausstellen kurzlebiger Zertifikate für den VPN-Client verwendet. Das VPN-Zertifikat muss unbedingt sofort auf dem VPN-Server bereitgestellt werden, um Probleme bei der Validierung von Anmeldeinformationen des VPN-Clients zu vermeiden.",
+ "vpnMenuText": "VPN-Konnektivität",
+ "vpncertDropdownDefaultOption": "Dauer",
+ "vpncertDropdownInfoBalloonContent": "Wählen Sie die Dauer für das zu erstellende Zertifikat aus.",
+ "vpncertDropdownLabel": "Dauer auswählen",
+ "vpncertDropdownOneyearOption": "1 Jahr",
+ "vpncertDropdownThreeyearOption": "3 Jahre",
+ "vpncertDropdownTwoyearOption": "2 Jahre",
+ "wednesday": "Mittwoch",
+ "whatIfAppEnforcedControl": "Von der App erzwungene Einschränkungen verwenden",
+ "whatIfBladeDescription": "Testen Sie die Auswirkungen des bedingten Zugriffs für einen Benutzer, wenn die Anmeldung unter bestimmten Bedingungen erfolgt.",
+ "whatIfBladeTitle": "What If",
+ "whatIfClassicPoliciesWarning": "Klassische Richtlinien werden von diesem Tool nicht ausgewertet.",
+ "whatIfClientAppInfo": "Die Client-App, über die sich der Benutzer anmeldet. Beispiel: \"Browser\".",
+ "whatIfCountry": "Land",
+ "whatIfCountryInfo": "Das Land, von dem aus der Benutzer sich anmeldet.",
+ "whatIfDevicePlatformInfo": "Die Geräteplattform, von der aus der Benutzer sich anmeldet.",
+ "whatIfDeviceStateInfo": "Der Status des Geräts, von dem aus der Benutzer sich anmeldet.",
+ "whatIfEnterIpAddress": "IP-Adresse eingeben (Beispiel: 40.77.182.32)",
+ "whatIfErrorInvalidIpAddress": "Es wurde eine ungültige IP-Adresse angegeben.",
+ "whatIfEvaResultApplication": "Cloud-Apps",
+ "whatIfEvaResultClientApps": "Client-App",
+ "whatIfEvaResultDevicePlatform": "Geräteplattform",
+ "whatIfEvaResultEmptyPolicy": "Leere Richtlinie",
+ "whatIfEvaResultInvalidCondition": "Ungültige Bedingung",
+ "whatIfEvaResultInvalidPolicy": "Ungültige Richtlinie",
+ "whatIfEvaResultLocation": "Standort",
+ "whatIfEvaResultNotEnoughInformation": "Nicht genügend Informationen",
+ "whatIfEvaResultPolicyNotEnabled": "Nicht aktivierte Richtlinie",
+ "whatIfEvaResultSignInRisk": "Anmelderisiko",
+ "whatIfEvaResultUsers": "Benutzer und Gruppen",
+ "whatIfIpAddress": "IP-Adresse",
+ "whatIfIpAddressInfo": "Die IP-Adresse, von der aus der Benutzer sich anmeldet.",
+ "whatIfIpCountryInfoBoxText": "Wenn Sie eine IP-Adresse oder ein Land/eine Region verwenden, sind beide Felder erforderlich und müssen ordnungsgemäß zugeordnet werden.",
+ "whatIfPolicyAppliesTab": "Anzuwendende Richtlinien",
+ "whatIfPolicyDoesNotApplyTab": "Nicht anzuwendende Richtlinien",
+ "whatIfReasons": "Gründe für Nichtanwendung dieser Richtlinie",
+ "whatIfSelectClientApp": "Client-App auswählen...",
+ "whatIfSelectCountry": "Land auswählen...",
+ "whatIfSelectDevicePlatform": "Geräteplattform auswählen...",
+ "whatIfSelectPrivateLink": "Private Link auswählen...",
+ "whatIfSelectServicePrincipalRisk": "Dienstprinzipalrisiko auswählen",
+ "whatIfSelectSignInRisk": "Anmelderisiko auswählen...",
+ "whatIfSelectType": "Identitätstyp auswählen",
+ "whatIfSelectUserRisk": "Benutzerrisiko auswählen...",
+ "whatIfServicePrincipalRiskInfo": "Die dem Dienstprinzipal zugeordnete Risikostufe",
+ "whatIfSignInRisk": "Anmelderisiko",
+ "whatIfSignInRiskInfo": "Die der Anmeldung zugeordnete Risikostufe",
+ "whatIfUnknownAreas": "Unbekannte Bereiche",
+ "whatIfUserPickerLabel": "Ausgewählter Benutzer",
+ "whatIfUserPickerNoRowsLabel": "Kein Benutzer oder Dienstprinzipal ausgewählt",
+ "whatIfUserRiskInfo": "Die dem Benutzer zugeordnete Risikostufe",
+ "whatIfUserSelectorInfo": "Benutzer im Verzeichnis, das getestet werden soll",
+ "windows365InfoBox": "Die Auswahl von Windows 365 wirkt sich auf Verbindungen mit Cloud-PCs und Azure Virtual Desktop-Sitzungshosts aus. Klicken Sie hier, um weitere Informationen zu erhalten.",
+ "windowsDisplayName": "Windows",
+ "windowsPhoneDisplayName": "Windows Phone",
+ "workloadIdentities": "Workloadidentitäten (Vorschau)",
+ "workloadIdentity": "Workload-Identität"
+ },
+ "AppResources": {
+ "AppSettingsUx": {
+ "assignmentFilterColumnHeader": "Filter",
+ "assignmentFilterTypeColumnHeader": "Filtermodus",
+ "assignmentToast": "Endbenutzerbenachrichtigungen",
+ "assignmentTypeTableHeader": "ZUWEISUNGSTYP",
+ "deadlineTimeColumnLabel": "Installationsstichtag",
+ "deliveryOptimizationPriorityHeader": "Priorität der Übermittlungsoptimierung",
+ "groupTableHeader": "Gruppe",
+ "installContextLabel": "Installationskontext",
+ "isRemovable": "Als entfernbare App installieren",
+ "licenseTypeLabel": "Lizenztyp",
+ "modeTableHeader": "Gruppenmodus",
+ "policySet": "Richtliniensatz",
+ "restartGracePeriodHeader": "Kulanzzeitraum neu starten",
+ "startTimeColumnLabel": "Verfügbarkeit",
+ "tracks": "Nachverfolgungen",
+ "uninstallOnRemoval": "Bei Entfernung des Geräts deinstallieren",
+ "updateMode": "Updatepriorität",
+ "vPN": "VPN"
+ },
+ "AppType": {
+ "aADWebApp": "AAD-Web-App",
+ "androidEnterpriseSystemApp": "Android Enterprise-System-App",
+ "androidForWorkApp": "Verwaltete Google Play Store-App",
+ "androidLobApp": "Branchenspezifische Android-App",
+ "androidStoreApp": "Android Store-App",
+ "builtInAndroid": "Integrierte Android-App",
+ "builtInApp": "Integrierte App",
+ "builtInIos": "Integrierte iOS-App",
+ "iosLobApp": "Branchenspezifische iOS-App",
+ "iosStoreApp": "iOS Store-App",
+ "iosVppApp": "iOS Volume Purchase Program-App",
+ "lineOfBusinessApp": "Branchenspezifische App",
+ "macOSDmgApp": "macOS-App (DMG)",
+ "macOSEdgeApp": "Microsoft Edge (macOS)",
+ "macOSLobApp": "Branchenspezifische macOS-App",
+ "macOSMdatpApp": "Microsoft Defender ATP (macOS)",
+ "macOSOfficeSuiteApp": "macOS Office Suite",
+ "macOsVppApp": "macOS-Volume Purchase Program-App",
+ "managedAndroidLobApp": "Verwaltete branchenspezifische Android-App",
+ "managedAndroidStoreApp": "Verwaltete Android Store-App",
+ "managedGooglePlayApp": "Verwaltete Google Play Store-App",
+ "managedGooglePlayPrivateApp": "Private verwaltete Google Play-App",
+ "managedGooglePlayWebApp": "Weblink für verwaltetes Google Play",
+ "managedIosLobApp": "Verwaltete branchenspezifische iOS-App",
+ "managedIosStoreApp": "Verwaltete iOS Store-App",
+ "microsoftStoreForBusinessApp": "Microsoft Store für Unternehmen-App",
+ "microsoftStoreForBusinessReleaseManagedApp": "Microsoft Store für Unternehmen",
+ "officeAddIn": "Office-Add-In",
+ "officeSuiteApp": "Microsoft 365 Apps (Windows 10 und höher)",
+ "sharePointApp": "SharePoint-App",
+ "teamsApp": "Teams-App",
+ "webApp": "Weblink",
+ "windowsAppXLobApp": "Branchenspezifische Windows-APPX-App",
+ "windowsClassicApp": "Windows-App (Win32)",
+ "windowsEdgeApp": "Microsoft Edge (Windows 10 und höher)",
+ "windowsMobileMsiLobApp": "Branchenspezifische Windows MSI-App",
+ "windowsPhone81AppXBundleLobApp": "Branchenspezifische Windows Phone 8.1-APPX-App",
+ "windowsPhone81AppXLobApp": "Branchenspezifische Windows Phone 8.1-APPX-App",
+ "windowsPhone81StoreApp": "Windows Phone 8.1 Store-App",
+ "windowsPhoneXapLobApp": "Branchenspezifische Windows Phone-XAP-App",
+ "windowsStoreApp": "Microsoft Store-App",
+ "windowsUniversalAppXLobApp": "Branchenspezifische Windows Universal-APPX-App",
+ "windowsUniversalLobApp": "Branchenspezifische Windows Universal-App"
+ },
+ "AppTypePlatform": {
+ "android": "Android",
+ "ios": "iOS",
+ "macOs": "macOS",
+ "web": "Web",
+ "windows": "Windows"
+ },
+ "AssignmentAction": {
+ "exclude": "Ausgeschlossen",
+ "include": "Enthalten",
+ "includeAllDevicesVirtualGroup": "Enthalten",
+ "includeAllUsersVirtualGroup": "Enthalten"
+ },
+ "AssignmentToast": {
+ "hideAll": "Alle Popupbenachrichtigungen ausblenden",
+ "showAll": "Alle Popupbenachrichtigungen anzeigen",
+ "showReboot": "Popupbenachrichtigungen für Computerneustarts anzeigen"
+ },
+ "DeliveryOptimizationPriority": {
+ "backgroundNormal": "Hintergrund",
+ "displayText": "Inhaltsdownload in {0}",
+ "foreground": "Vordergrund",
+ "header": "Priorität der Übermittlungsoptimierung"
+ },
+ "DeviceRestartBehaviorOptions": {
+ "allow": "App-Installation kann einen Geräteneustart erzwingen",
+ "basedOnReturnCode": "Verhalten auf Grundlage von Rückgabecodes bestimmen",
+ "force": "Intune erzwingt einen verbindlichen Geräteneustart",
+ "suppress": "Keine bestimmte Aktion"
+ },
+ "FilterType": {
+ "exclude": "Ausschließen",
+ "include": "Einschließen",
+ "none": "Keine"
+ },
+ "InstallIntent": {
+ "available": "Für registrierte Geräte verfügbar",
+ "availableWithoutEnrollment": "Verfügbar mit oder ohne Registrierung",
+ "notApplicable": "Nicht zutreffend",
+ "required": "Erforderlich",
+ "uninstall": "Deinstallieren"
+ },
+ "SettingType": {
+ "assignmentType": "Zuweisungstyp",
+ "deviceLicensing": "Lizenztyp",
+ "installContext": "Bei Entfernung des Geräts deinstallieren",
+ "toastSettings": "Endbenutzerbenachrichtigungen",
+ "vpnConfiguration": "VPN"
+ },
+ "UpdateMode": {
+ "default": "Standard",
+ "postponed": "Zurückgestellt",
+ "priority": "Hohe Priorität"
+ }
+ },
+ "WindowsEnrollment": {
+ "coManagementAuthorityDesc": "Hiermit werden Co-Verwaltungseinstellungen für die Configuration Manager-Integration konfiguriert.",
+ "coManagementAuthorityTitle": "Einstellungen für die Co-Verwaltung",
+ "deploymentProfiles": "Windows AutoPilot Deployment-Profile",
+ "description": "Erfahren Sie mehr über die sieben verschiedenen Möglichkeiten, wie ein Windows 10/11-PC von Benutzern oder Administratoren bei Intune registriert werden kann.",
+ "descriptionLabel": "Windows-Registrierungsmethoden",
+ "enrollmentStatusPage": "Seite \"Registrierungsstatus\""
+ },
+ "Win32Program": {
+ "DeviceRestartBehaviorOptions": {
+ "allow": "App-Installation kann einen Geräteneustart erzwingen",
+ "basedOnReturnCode": "Verhalten auf Grundlage von Rückgabecodes bestimmen",
+ "force": "Intune erzwingt einen verbindlichen Geräteneustart",
+ "suppress": "Keine bestimmte Aktion"
+ },
+ "RunAsAccountOptions": {
+ "system": "System",
+ "user": "Benutzer"
+ },
+ "bladeTitle": "Programm",
+ "deviceRestartBehavior": "Verhalten beim Geräteneustart",
+ "deviceRestartBehaviorTooltip": "Wählen Sie das Verhalten des Geräteneustarts aus, nachdem die App erfolgreich installiert wurde. Wählen Sie \"Verhalten auf Grundlage von Rückgabecodes bestimmen\" aus, um das Gerät basierend auf den Rückgabecode-Konfigurationseinstellungen neu zu starten. Wählen Sie \"Keine bestimmte Aktion\" aus, um Geräteneustarts während der App-Installation für MSI-basierte Apps zu unterdrücken. Wählen Sie \"App-Installation kann einen Geräteneustart erzwingen\" aus, damit die App-Installation abgeschlossen werden kann, ohne dass Neustarts unterdrückt werden. Wählen Sie \"Intune erzwingt einen verbindlichen Geräteneustart\", um das Gerät nach erfolgreicher App-Installation grundsätzlich neu zu starten.",
+ "header": "Geben Sie die Befehle zum Installieren und Deinstallieren dieser App an:",
+ "installCommand": "Installationsbefehl",
+ "installCommandMaxLengthErrorMessage": "Der Installationsbefehl darf die maximal zulässige Länge von 1024 Zeichen nicht überschreiten.",
+ "installCommandTooltip": "Die Befehlszeile zur vollständigen Installation dieser App.",
+ "runAs32Bit": "Befehle zur Installation und Deinstallation auf 64-Bit-Clients in einem 32-Bit-Prozess ausführen",
+ "runAs32BitTooltip": "Wählen Sie \"Ja\", um die App auf 64-Bit-Clients in einem 32-Bit-Prozess zu installieren und zu deinstallieren. Wählen Sie \"Nein\" (Standardeinstellung) aus, um die App auf 64-Bit-Clients in einem 64-Bit-Prozess zu installieren. 32-Bit-Clients verwenden immer einen 32-Bit-Prozess.",
+ "runAsAccount": "Installationsverhalten",
+ "runAsAccountTooltip": "Wählen Sie \"System\" aus, um diese App für alle Benutzer zu installieren, sofern dies unterstützt wird. Wählen Sie \"Benutzer\" aus, um diese App für den auf dem Gerät angemeldeten Benutzer zu installieren. Bei MSI-Apps im dualen Modus verhindern Änderungen, dass Updates und Deinstallationen erfolgreich abgeschlossen werden, bis der Wert, der zum Zeitpunkt der ursprünglichen Installation für das Gerät galt, wiederhergestellt wird.",
+ "selectorLabel": "Programm",
+ "uninstallCommand": "Deinstallationsbefehl",
+ "uninstallCommandTooltip": "Die Befehlszeile zur vollständigen Deinstallation dieser App."
+ },
+ "CategoryDescription": {
+ "androidGeneralApplicationRestrictions": "Mit dieser Einstellung bleiben Sie darüber informiert, welche Benutzer Apps installieren, die nicht für die Verwendung in Ihrem Unternehmen genehmigt sind. Wählen Sie die Art der Liste für eingeschränkte Apps aus:
\r\n Verbotene Apps: Eine Liste der Apps, bei denen Sie informiert werden möchten, wenn Benutzer sie installieren.
\r\n Genehmigte Apps: Eine Liste der Apps, die zur Verwendung in Ihrem Unternehmen genehmigt sind. Wenn Benutzer eine App installieren, die nicht in dieser Liste aufgeführt ist, werden Sie informiert.
\r\n ",
+ "androidZebraMxZebraMx": "Hiermit werden Zebra-Geräte durch das Hochladen eines MX-Profils im XML-Format konfiguriert.",
+ "iosDeviceFeaturesAirprint": "Mit diesen Einstellungen konfigurieren Sie iOS-Geräte für das automatische Herstellen einer Verbindung mit AirPrint-kompatiblen Druckern in Ihrem Netzwerk. Sie benötigen die IP-Adresse und den Ressourcenpfad Ihrer Drucker.",
+ "iosDeviceFeaturesExtensibleSingleSignOn": "Konfigurieren Sie eine App-Erweiterung, die einmaliges Anmelden (Single Sign-On, SSO) für Geräte mit iOS 13.0 oder höher aktiviert.",
+ "iosDeviceFeaturesHomeScreenLayout": "Konfigurieren Sie das Layout für den Dock- und den Startbildschirm auf iOS-Geräten. Für bestimmte Geräte gelten möglicherweise Limits für die Anzahl von Elementen, die angezeigt werden können.",
+ "iosDeviceFeaturesIOSWallpaper": "Hiermit wird ein Bild zur Anzeige auf dem Startbildschirm und/oder dem Sperrbildschirm von iOS-Geräten angegeben.\r\n Um unterschiedliche Bilder für Start- und Sperrbildschirm zu verwenden, erstellen Sie ein Profil mit dem Bild für den Sperrbildschirm und ein Profil mit dem Bild für den Startbildschirm.\r\n Weisen Sie Ihren Benutzern anschließend beide Profile zu.\r\n
\r\n \r\n - Max. Dateigröße: 750 KB
\r\n - Dateityp: PNG, JPG oder JPEG
\r\n
\r\n ",
+ "iosDeviceFeaturesNotifications": "Geben Sie Benachrichtigungseinstellungen für Apps an. Unterstützt iOS 9.3 und höher.",
+ "iosDeviceFeaturesSharedDevice": "Hiermit wird optionaler Text zur Anzeige auf dem Sperrbildschirm angegeben. Diese Funktion wird unter iOS 9.3 und höher unterstützt. Weitere Informationen",
+ "iosGeneralApplicationRestrictions": "Mit dieser Einstellung bleiben Sie darüber informiert, welche Benutzer Apps installieren, die nicht für die Verwendung in Ihrem Unternehmen genehmigt sind. Wählen Sie die Art der Liste für eingeschränkte Apps aus:
\r\n Verbotene Apps: Eine Liste der Apps, bei denen Sie informiert werden möchten, wenn Benutzer sie installieren.
\r\n Genehmigte Apps: Eine Liste der Apps, die zur Verwendung in Ihrem Unternehmen genehmigt sind. Wenn Benutzer eine App installieren, die nicht in dieser Liste aufgeführt ist, werden Sie informiert.
\r\n ",
+ "iosGeneralApplicationVisibility": "Verwenden Sie die Liste \"Apps anzeigen\" um festzulegen, welche iOS-Apps der Benutzer anzeigen oder starten kann. Verwenden Sie die Liste \"Ausgeblendete Apps\", um festzulegen, welche iOS-Apps der Benutzer nicht anzeigen oder starten kann.",
+ "iosGeneralAutonomousSingleAppMode": "Apps, die Sie dieser Liste hinzufügen und einem Gerät zuweisen, können das Gerät so sperren, dass nur diese App nach ihrem Start ausgeführt werden kann, oder sie können das Gerät während der Ausführung einer bestimmten Aktion sperren (beispielsweise bei einer Prüfung). Sobald die Aktion abgeschlossen ist oder Sie die Einschränkung entfernen, kehrt das Gerät zu seinem Normalzustand zurück.",
+ "iosGeneralKiosk": "Der Kioskmodus sperrt verschiedene Einstellungen in einem Gerät oder gibt eine einzige App an, die auf einem Gerät ausgeführt werden kann. Dies kann in Umgebungen wie beispielsweise einem Ladengeschäft hilfreich sein, in dem auf einem Gerät nur eine einzige Demo-App ausgeführt werden soll.",
+ "macDeviceFeaturesAirprint": "Verwenden Sie diese Einstellungen, um macOS-Geräte für die automatische Verbindungsherstellung mit AirPrint-kompatiblen Druckern im Netzwerk zu konfigurieren. Sie benötigen die IP-Adresse und den Ressourcenpfad Ihrer Drucker.",
+ "macDeviceFeaturesAssociatedDomains": "Konfigurieren Sie zugeordnete Domänen, um Daten und Anmeldeinformationen zwischen den Apps und Websites Ihrer Organisation freizugeben. Dieses Profil kann auf Geräte mit macOS 10.15 oder höher angewendet werden.",
+ "macDeviceFeaturesExtensibleSingleSignOn": "Konfigurieren Sie eine App-Erweiterung, die einmaliges Anmelden (Single Sign-On, SSO) für Geräte mit macOS 10.15 oder höher aktiviert.",
+ "macDeviceFeaturesLoginItems": "Wählen Sie aus, welche Apps, Dateien und Ordner geöffnet werden sollen, wenn sich Benutzer bei ihren Geräten anmelden. Wenn Sie nicht möchten, dass Benutzer das Verhalten der Apps beim Öffnen ändern, können Sie die App aus der Benutzerkonfiguration ausblenden.",
+ "macDeviceFeaturesLoginWindow": "Hiermit konfigurieren Sie die Darstellung des macOS-Anmeldebildschirms und die Funktionen, die den Benutzern vor und nach der Anmeldung zur Verfügung stehen.",
+ "macExtensionsKernelExtensions": "Verwenden Sie diese Einstellungen zum Konfigurieren der Kernelerweiterungsrichtlinie auf macOS-Geräten unter 10.13.2 oder höher.",
+ "macGeneralDomains": "Vom Benutzer gesendete oder empfangene E-Mails, die nicht den hier angegebenen Domänen entsprechen, werden als nicht vertrauenswürdig markiert.",
+ "windows10EndpointProtectionApplicationGuard": "Bei der Verwendung von Microsoft Edge schützt Microsoft Defender Application Guard Ihre Umgebung vor Websites, die von Ihrer Organisation nicht als vertrauenswürdig definiert wurden. Wenn Benutzer Websites besuchen, die nicht in Ihrer isolierten Netzwerkgrenze aufgeführt sind, werden die Websites in einer virtuellen Browsersitzung in Hyper-V geöffnet. Vertrauenswürdige Sites werden durch eine Netzwerkgrenze definiert, die in der Gerätekonfiguration konfiguriert werden kann. Beachten Sie, dass dieses Feature nur für Geräte mit 64-Bit-Windows 10 oder höher verfügbar ist.",
+ "windows10EndpointProtectionCredentialGuard": "Durch das Aktivieren von Credential Guard werden folgende erforderliche Einstellungen aktiviert:\r\n
\r\n \r\n - Virtualisierungsbasierte Sicherheit aktivieren: Aktiviert die virtualisierungsbasierte Sicherheit (VBS) beim nächsten Neustart. Die virtualisierungsbasierte Sicherheit verwendet Windows Hypervisor, um Unterstützung für Sicherheitsdienste bereitzustellen.
\r\n
\r\n - Sicherer Start mit direktem Speicherzugriff: Aktiviert VBS mit sicherem Start und direktem Speicherzugriff (DMA).
\r\n
\r\n ",
+ "windows10EndpointProtectionDeviceGuard": "Wählen Sie zusätzliche Apps, die durch die Microsoft Defender-Anwendungssteuerung entweder überwacht werden müssen oder als vertrauenswürdig eingestuft und ausgeführt werden können. Windows-Komponenten und alle Apps aus dem Windows Store werden automatisch als zur Ausführung vertrauenswürdig eingestuft.
\r\n Anwendungen werden nicht blockiert, wenn sie im Modus \"Nur überwachen\" ausgeführt werden. Im Modus \"Nur überwachen\" werden alle Ereignisse in lokalen Clientprotokollen erfasst.\r\n ",
+ "windows10GeneralPrivacyPerApp": "Fügen Sie Apps hinzu, die ein anderes Datenschutzverhalten aufweisen sollen als das von Ihnen unter \"Standarddatenschutz\" definierte.",
+ "windows10NetworkBoundaryNetworkBoundary": "Die Netzwerkgrenze ist die Liste der Unternehmensressourcen, z. B. eine in der Cloud gehostete Domäne und IP-Adressbereiche für Computer, die sich im Unternehmensnetzwerk befinden. Definieren Sie Netzwerkgrenzen, um Richtlinien zum Schutz von Daten anzuwenden, die an diesen Standorten vorliegen.",
+ "windowsHealthMonitoring": "Hiermit wird die Richtlinie für die Windows-Integritätsüberwachung konfiguriert.",
+ "windowsPhoneGeneralApplicationRestrictions": "Windows Phone kann Benutzer daran hindern, die in der Liste unzulässiger Apps enthaltenen Apps bzw. Apps, die nicht in der Liste genehmigter Apps aufgeführt sind, zu installieren oder zu starten. Alle verwalteten Apps müssen der Liste genehmigter Apps hinzugefügt werden."
+ },
"Inputs": {
"accountDomain": "Kontodomäne",
"accountDomainHint": "z. B. contosodomain",
@@ -9962,6 +9858,7 @@
"displayNameLabel": "Name",
"displayVersionHint": "App-Version eingeben",
"displayVersionLabel": "App-Version",
+ "displayVersionLengthCheck": "Die Anzeigeversion darf maximal 130 Zeichen lang sein.",
"eBookCategoryNameLabel": "Standardname",
"emailAccount": "E-Mail-Kontoname",
"emailAccountHint": "z. B. Unternehmens-E-Mail-Adresse",
@@ -10066,385 +9963,51 @@
"xmlFormatInvalid": "Das XML-Richtlinienformat ist ungültig.",
"xmlTooLarge": "Die Eingabegröße muss unter 1 MB liegen."
},
- "Tooltips": {
- "PolicySettings": {
- "TouchId1": {
- "android": "Unter Android können Sie die Identifikation per Fingerabdruck anstelle einer PIN verwenden. Benutzer werden aufgefordert, ihren Fingerabdruck bereitzustellen, wenn sie mit ihren Geschäftskonten auf diese App zugreifen.",
- "iOS": "Auf iOS-/iPadOS-Geräten können Sie den Benutzern auch ermöglichen, sich statt mit einer PIN per Fingerabdruck zu identifizieren. Benutzer werden aufgefordert, ihren Fingerabdruck zu scannen, wenn sie mit ihrem Geschäftskonto auf diese App zugreifen.",
- "mac": "Auf Mac-Geräten können Sie den Benutzern auch ermöglichen, sich statt mit einer PIN per Fingerabdruck zu identifizieren. Benutzer werden aufgefordert, ihren Fingerabdruck zu scannen, wenn sie mit ihrem Geschäftskonto auf diese App zugreifen."
- },
- "appSharingFromLevel1": "Wählen Sie eine der folgenden Optionen aus, um die Apps anzugeben, von denen diese App Daten empfangen darf:",
- "appSharingFromLevel2": "{0}: Empfang von Daten in Organisationsdokumenten und Konten nur von anderen richtlinienverwalteten Apps zulassen",
- "appSharingFromLevel3": "{0}: Empfang von Daten aus beliebigen Apps in Organisationsdokumenten und Konten zulassen",
- "appSharingFromLevel4": "{0}: Empfang von Daten aus anderen Apps in Organisationsdokumenten oder Konten nicht zulassen",
- "appSharingFromLevel5": "{0}: Datenübertragungen aus anderen Apps zulassen und alle eingehenden Daten ohne Benutzeridentität als Organisationsdaten behandeln.",
- "appSharingToLevel1": "Wählen Sie eine der folgenden Optionen aus, um die Apps anzugeben, an die diese App Daten senden darf:",
- "appSharingToLevel2": "{0}: Senden von Organisationsdaten nur an andere richtlinienverwaltete Apps zulassen",
- "appSharingToLevel3": "{0}: Senden von Organisationsdaten an beliebige Apps zulassen",
- "appSharingToLevel4": "{0}: Senden von Organisationsdaten an andere Apps nicht zulassen",
- "appSharingToLevel5": "{0}: Nur Übertragung an andere richtlinienverwaltete Apps und Dateiübertragungen an andere MDM-verwaltete Apps auf registrierten Geräten zulassen",
- "appSharingToLevel6": "{0}: Nur Übertragungen an andere richtlinienverwaltete Apps zulassen und Betriebssystem-Dialogfelder \"Öffnen in\"/\"Freigeben\" filtern, sodass nur per Richtlinie verwaltete Apps angezeigt werden",
- "conditionalEncryption1": "Wählen Sie \"{0}\" aus, um die App-Verschlüsselung für den internen App-Speicher zu deaktivieren, wenn auf einem registrierten Gerät eine aktive Geräteverschlüsselung ermittelt wurde.",
- "conditionalEncryption2": "Hinweis: Intune kann nur Geräte ermitteln, die mit Intune MDM registriert wurden. Externer App-Speicher wird weiterhin verschlüsselt, um sicherzustellen, dass nicht verwaltete Anwendungen nicht auf Daten zugreifen können.",
- "contactSyncMac": "Wenn diese Option deaktiviert ist, können Apps keine Kontakte im nativen Adressbuch speichern.",
- "contactsSync": "Wählen Sie Blockieren aus, um zu verhindern, dass durch Richtlinien verwaltete Apps Daten in den nativen Apps des Geräts speichern (z. B. Kontakte, Kalender und Widgets), oder um die Verwendung von Add-Ins innerhalb der durch Richtlinien verwalteten Apps zu verhindern. Wenn Sie Zulassen auswählen, kann die durch Richtlinien verwaltete App Daten in den nativen Apps speichern oder Add-Ins verwenden, sofern diese Features in der durch Richtlinien verwalteten App unterstützt werden und aktiviert sind.
Apps bieten möglicherweise zusätzliche Konfigurationsfunktionen anhand von App-Konfigurationsrichtlinien. Weitere Informationen finden Sie in der Dokumentation der App.",
- "encryptionAndroid1": "Bei Apps, die einer Intune-Richtlinie für die Verwaltung mobiler Anwendungen zugeordnet sind, wird die Verschlüsselung durch Microsoft bereitgestellt. Daten werden bei Datei-E/A-Vorgängen gemäß den Einstellungen in der Richtlinie für die Verwaltung mobiler Anwendungen synchron verschlüsselt. Verwaltete Apps unter Android verwenden AES-128-Verschlüsselung im CBC-Modus unter Verwendung der plattformeigenen Kryptografiebibliotheken. Die Verschlüsselungsmethode ist nicht mit FIPS 140-2 konform. Die SHA-256-Verschlüsselung wird als explizite Anweisung unter Verwendung des SigAlg-Parameters unterstützt und funktioniert nur auf Geräten mit Version 4.2 und höher. Inhalte im Gerätespeicher werden immer verschlüsselt.",
- "encryptionAndroid2": "Wenn Sie in Ihrer App-Richtlinie eine Verschlüsselung anfordern, müssen Endbenutzer eine PIN einrichten und verwenden, um auf das Gerät zuzugreifen. Wenn keine PIN für den Gerätezugriff eingerichtet wurde, werden die Apps nicht gestartet, und den Benutzern wird stattdessen diese Meldung angezeigt: \"Ihr Unternehmen hat festgelegt, dass Sie zunächst eine Geräte-PIN aktivieren müssen, um auf diese Anwendung zuzugreifen.\"",
- "encryptionMac1": "Bei Apps, die einer Intune-Richtlinie für die Verwaltung mobiler Anwendungen zugeordnet sind, wird die Verschlüsselung durch Microsoft bereitgestellt. Daten werden bei Datei-E/A-Vorgängen gemäß den Einstellungen in der Richtlinie für die Verwaltung mobiler Anwendungen synchron verschlüsselt. Verwaltete Apps unter Mac verwenden AES-128-Verschlüsselung im CBC-Modus unter Verwendung der plattformeigenen Kryptografiebibliotheken. Die Verschlüsselungsmethode ist nicht mit FIPS 140-2 konform. Die SHA-256-Verschlüsselung wird als explizite Anweisung unter Verwendung des SigAlg-Parameters unterstützt und funktioniert nur auf Geräten mit Version 4.2 und höher. Inhalte im Gerätespeicher werden immer verschlüsselt.",
- "faceId1": "Gegebenenfalls können Sie die Verwendung der Gesichtserkennung anstelle einer PIN erlauben. Benutzer werden aufgefordert, beim Zugriff auf diese Anwendung über ihre Arbeitskonten eine Gesichtserkennung bereitzustellen.",
- "faceId2": "Wählen Sie Ja, um für den App-Zugriff die Gesichtserkennung anstelle einer PIN zu erlauben.",
- "managementLevelsAndroid1": "Über diese Option geben Sie an, ob diese Richtlinie für Geräte des Android-Geräteadministrators, für Android Enterprise-Geräte oder für nicht verwaltete Geräte gilt.",
- "managementLevelsAndroid2": "{0}: Nicht verwaltete Geräte sind Geräte, auf denen Intune MDM nicht erkannt wurde. Dazu gehören auch MDM-Drittanbieter.",
- "managementLevelsAndroid3": "{0}: Von Intune verwaltete Geräte, die die Android-Geräteverwaltungs-API verwenden.",
- "managementLevelsAndroid4": "{0}: Von Intune verwaltete Geräte, die Android Enterprise-Arbeitsprofile oder Android Enterprise Full Device Management verwenden.",
- "managementLevelsIos1": "Über diese Option geben Sie an, ob diese Richtlinie für über MDM verwaltete Geräte oder für nicht verwaltete Geräte gilt.",
- "managementLevelsIos2": "{0}: Nicht verwaltete Geräte sind Geräte, auf denen Intune MDM nicht erkannt wurde. Dazu gehören auch MDM-Drittanbieter.",
- "managementLevelsIos3": "{0}: Verwaltete Geräte werden über Intune MDM verwaltet.",
- "minAppVersion": "Definieren Sie die erforderliche App-Mindestversionsnummer, über die ein Benutzer für den sicheren Zugriff auf die App verfügen muss.",
- "minAppVersionWarning": "Definieren Sie die empfohlene App-Mindestversionsnummer, über die ein Benutzer für den sicheren Zugriff auf die App verfügen sollte.",
- "minOsVersion": "Definieren Sie die erforderliche Mindestversionsnummer für das Betriebssystem, über die ein Benutzer für den sicheren Zugriff auf die App verfügen muss.",
- "minOsVersionWarning": "Definieren Sie die empfohlene Mindestversionsnummer für das Betriebssystem, über die ein Benutzer für den sicheren Zugriff auf die App verfügen sollte.",
- "minPatchVersion": "Definieren Sie die niedrigste erforderliche Android-Sicherheitspatchebene, die ein Benutzer für den sicheren Zugriff auf die App verwenden kann.",
- "minPatchVersionWarning": "Definieren Sie die niedrigste empfohlene Android-Sicherheitspatchebene, die ein Benutzer für den sicheren Zugriff auf die App verwenden kann.",
- "minSdkVersion": "Definieren Sie die erforderliche SDK-Version für Intune-Anwendungsschutzrichtlinien, über die ein Benutzer für den sicheren Zugriff auf die App verfügen muss.",
- "requireAppPinDefault": "Wählen Sie Ja aus, um die App-PIN zu deaktivieren, wenn eine Gerätesperre auf einem registrierten Gerät erkannt wurde.
",
- "targetAllApps1": "Mit dieser Option legen Sie fest, dass Ihre Richtlinie für Apps auf Geräten mit beliebigem Verwaltungsstatus gilt.",
- "targetAllApps2": "Bei der Auflösung von Richtlinienkonflikten wird diese Einstellung außer Kraft gesetzt, wenn ein Benutzer die Richtlinie für einen bestimmten Verwaltungsstatus festgelegt hat.",
- "touchId2": "Wählen Sie \"{0}\" aus, um für den Zugriff auf die App eine Identifizierung per Fingerabdruck statt per PIN anzufordern."
- },
- "Tap": {
- "pinResetAfterNumberOfDays": "Geben Sie die Anzahl von Tagen an, nach denen der Benutzer die PIN zurücksetzen muss.",
- "previousPinBlockCount": "Mit dieser Einstellung wird die Anzahl der vorherigen PINs angegeben, die Intune beibehält. Neue PINs müssen sich von denen unterscheiden, die Intune verwaltet."
+ "WindowsFeatureUpdate": {
+ "EndOFSupportStatus": {
+ "notSupported": "Nicht unterstützt.",
+ "supportEnding": "Bevorstehendes Ende des Supports",
+ "supported": "Unterstützt"
+ }
},
- "WipPolicySettings": {
- "25": "",
- "allowWindowsSearch": "Hiermit wird Windows Search das Fortsetzen der Suche in verschlüsselten Daten ermöglicht.",
- "authoritativeIpRanges": "Aktivieren Sie diese Einstellung, wenn Sie die automatische Windows-Erkennung von IP-Bereichen außer Kraft setzen möchten.",
- "authoritativeProxyServers": "Aktivieren Sie diese Einstellung, wenn Sie die automatische Windows-Erkennung von Proxyservern außer Kraft setzen möchten.",
- "checkInput": "Eingabe auf Gültigkeit prüfen",
- "dataRecoveryCert": "Ein Wiederherstellungszertifikat ist ein spezielles EFS-Zertifikat (Encrypting File System, verschlüsselndes Dateisystem), mit dem Sie verschlüsselte Dateien wiederherstellen können, wenn Ihr Verschlüsselungsschlüssel verloren geht oder beschädigt wird. Sie müssen das Wiederherstellungszertifikat erstellen und hier angeben. Weitere Informationen finden Sie hier.",
- "enterpriseCloudResources": "Geben Sie Cloudressourcen an, die als unternehmenseigene Ressourcen eingestuft und mit der Windows Information Protection-Richtlinie geschützt werden sollen. Sie können mehrere Ressourcen angeben, indem Sie die einzelnen Einträge durch das Zeichen \"|\" voneinander trennen.
Wenn Sie in Ihrem Unternehmen einen Proxy konfiguriert haben, können Sie den Proxy angeben, über den der Datenverkehr zu den von Ihnen angegebenen Cloudressourcen geleitet werden soll.
URL[,Proxy]|URL[,Proxy]
Ohne Proxy: contoso.sharepoint.com|contoso.visualstudio.com
Mit Proxy: contoso.sharepoint.com,proxy.contoso.com|contoso.visualstudio.com,proxy.contoso.com
",
- "enterpriseIPv4Ranges": "Geben Sie die IPv4-Bereiche an, aus denen Ihr Unternehmensnetzwerk gebildet wird. Diese werden zusammen mit den angegebenen Domänennamen für das Unternehmensnetzwerk verwendet, um die Grenzen Ihres Unternehmensnetzwerks zu definieren.
Für diese Einstellung muss Windows Information Protection aktiviert sein.
Sie können mehrere Werte angeben, indem Sie die einzelnen Einträge durch ein Komma voneinander trennen.
Beispiel: 3.4.0.1-3.4.255.255,192.168.1.1-192.168.255.255
",
- "enterpriseIPv6Ranges": "Geben Sie die IPv6-Bereiche an, aus denen Ihr Unternehmensnetzwerk gebildet wird. Diese werden zusammen mit den angegebenen Domänennamen für das Unternehmensnetzwerk verwendet, um die Grenzen Ihres Unternehmensnetzwerks zu definieren.
Sie können mehrere Werte angeben, indem Sie die einzelnen Einträge durch ein Komma voneinander trennen.
Beispiel: 2001:4898:dc05::-2001:4898:dc05:ffff:ffff:ffff:ffff:ffff,2a01:110::-2a01:110:7fff:ffff:ffff:ffff:ffff:ffff
",
- "enterpriseInternalProxyServers": "Wenn Sie in Ihrem Unternehmen einen Proxy konfiguriert haben, können Sie den Proxy festlegen, über den der Datenverkehr an die in den Unternehmenscloudressourcen-Einstellungen angegebenen Cloudressourcen geleitet werden soll.
Sie können mehrere Werte angeben, indem Sie die einzelnen Einträge durch ein Semikolon voneinander trennen.
Beispiel: contoso.internalproxy1.com;contoso.internalproxy2.com
",
- "enterpriseNetworkDomainNames": "Geben Sie die DNS-Namen an, aus denen Ihr Unternehmensnetzwerk gebildet wird. Diese werden zusammen mit den festgelegten IP-Bereichen verwendet, um die Grenzen Ihres Unternehmensnetzwerks zu definieren. Sie können mehrere Werte angeben, indem Sie die einzelnen Einträge durch ein Komma voneinander trennen.
Für diese Einstellung muss Windows Information Protection aktiviert sein.
Beispiel: corp.contoso.com,region.contoso.com
",
- "enterpriseProtectedDomainNames": "Geben Sie die DNS-Namen an, aus denen Ihr Unternehmensnetzwerk gebildet wird. Diese werden zusammen mit den festgelegten IP-Bereichen verwendet, um die Grenzen Ihres Unternehmensnetzwerks zu definieren. Sie können mehrere Werte angeben, indem Sie die einzelnen Einträge durch \"|\" voneinander trennen.
Für diese Einstellung muss Windows Information Protection aktiviert sein.
Beispiel: corp.contoso.com|region.contoso.com
",
- "enterpriseProxyServers": "Wenn Sie extern zugängliche Proxys in Ihrem Unternehmensnetzwerk verwenden, geben Sie diese hier an. Bei der Angabe einer Proxyserveradresse müssen Sie auch den Port angeben, über den Datenverkehr zugelassen und durch Windows Information Protection geschützt werden soll.
Hinweis: Diese Liste darf keine Server aus Ihrer Liste interner Unternehmensproxyserver umfassen. Sie können mehrere Werte angeben, indem Sie die einzelnen Einträge durch ein Semikolon voneinander trennen.
Beispiel: proxy.contoso.com:80;proxy2.contoso.com:80
",
- "maxInactivityTime1": "Gibt den maximal zulässigen Zeitraum (in Minuten) nach dem Wechsel eines Geräts in den Leerlauf an, bis das Gerät durch die PIN oder ein Kennwort gesperrt wird. Benutzer können einen beliebigen Timeoutwert auswählen, der kleiner ist als der in der Einstellungen-App angegebene maximale Zeitraum. Beachten Sie, dass für Lumia 950 und 950XL unabhängig von dem durch diese Richtlinie festgelegten Wert ein maximaler Timeoutwert von 5 Minuten gilt.",
- "maxInactivityTime2": "0 (Standard): Kein Timeout definiert. Der Standardwert \"0\" wird als \"Kein Timeout definiert\" interpretiert.",
- "maxPasswordAttempts1": "Diese Richtlinie zeigt auf dem Mobilgerät und auf dem Desktop unterschiedliche Verhaltensweisen.",
- "maxPasswordAttempts2": "Wenn der Benutzer auf einem Mobilgerät den durch diese Richtlinie festgelegten Wert erreicht, wird das Gerät zurückgesetzt.",
- "maxPasswordAttempts3": "Wenn der Benutzer auf einem Desktop den durch diese Richtlinie festgelegten Wert erreicht, wird er nicht zurückgesetzt. Stattdessen wird der Desktop in den BitLocker-Wiederherstellungsmodus versetzt, in dem die Daten nicht zugänglich, aber wiederherstellbar sind. Wenn BitLocker nicht aktiviert ist, kann die Richtlinie nicht durchgesetzt werden.",
- "maxPasswordAttempts4": "Vor dem Erreichen des Grenzwerts für fehlerhafte Versuche wird der Benutzer zum Sperrbildschirm geschickt und darauf hingewiesen, dass der Computer bei weiteren Fehlversuchen gesperrt wird. Wenn der Benutzer den Grenzwert erreicht, wird das Gerät automatisch neu gestartet und zeigt die BitLocker-Wiederherstellungsseite an. Auf dieser Seite wird der Benutzer aufgefordert, den BitLocker-Wiederherstellungsschlüssel einzugeben.",
- "maxPasswordAttempts5": "0 (Standard): Das Gerät wird nach einer fehlerhaften PIN- oder Kennworteingabe niemals zurückgesetzt.",
- "maxPasswordAttempts6": "Der sicherste Wert ist 0, wenn für alle Richtlinienwerte 0 festgelegt wurde; andernfalls ist der Mindestwert für die Richtlinie der sicherste Wert.",
- "mdmDiscoveryUrl": "Geben Sie die URL für den MDM-Registrierungsendpunkt an, der von Benutzern verwendet werden soll, die sich bei MDM registrieren. Standardmäßig wird diese für Intune angegeben.",
- "minimumPinLength1": "Der ganzzahlige Wert, der die Mindestanzahl von für die PIN erforderlichen Zeichen festlegt. Der Standardwert ist 4. Die niedrigste Zahl, die Sie für diese Richtlinieneinstellung konfigurieren können, ist 4. Die größte Zahl, die Sie konfigurieren können, muss geringer sein als die Zahl, die in der Richtlinieneinstellung für die maximale PIN-Länge konfiguriert wurde, in jedem Fall jedoch geringer als 127.",
- "minimumPinLength2": "Wenn Sie diese Richtlinieneinstellung konfigurieren, muss die PIN-Länge mindestens dieser Zahl entsprechen. Wenn Sie diese Richtlinieneinstellung deaktivieren oder nicht konfigurieren, muss die PIN mindestens 4 Zeichen lang sein.",
- "name": "Der Name dieser Netzwerkgrenze",
- "neutralResources": "Wenn Sie Endpunkte für die Authentifizierungsumleitung in Ihrem Unternehmen verwenden, geben Sie diese hier an. Die hier angegebenen Standorte werden je nach Kontext der Verbindung vor der Umleitung entweder als private Standorte oder als Unternehmensstandorte eingestuft.
Sie können mehrere Werte angeben, indem Sie die einzelnen Einträge durch ein Komma voneinander trennen.
Beispiel: sts.contoso.com,sts.contoso2.com
",
- "passportForWork1": "Der Wert, der Windows Hello for Business als Methode zum Anmelden bei Windows festlegt.",
- "passportForWork2": "Der Standardwert ist TRUE. Wenn Sie diese Richtlinie auf FALSE festlegen, kann der Benutzer Windows Hello for Business nur auf in Azure Active Directory eingebundenen Mobiltelefonen bereitstellen, auf denen die Bereitstellung erforderlich ist.",
- "pinExpiration": "Die größte Zahl, die Sie für diese Richtlinieneinstellung konfigurieren können, ist 730. Die niedrigste Zahl, die Sie für diese Richtlinieneinstellung konfigurieren können, ist 0. Wenn diese Richtlinie auf 0 festgelegt wird, läuft die PIN des Benutzers niemals ab.",
- "pinHistory1": "Die größte Zahl, die Sie für diese Richtlinieneinstellung konfigurieren können, ist 50. Die niedrigste Zahl, die Sie für diese Richtlinieneinstellung konfigurieren können, ist 0. Wenn diese Richtlinie auf 0 festgelegt wird, ist die Speicherung vorheriger PINs nicht erforderlich.",
- "pinHistory2": "Die aktuelle PIN des Benutzers ist in der Menge von PINs enthalten, die dem Benutzerkonto zugeordnet sind. Der PIN-Verlauf wird bei einer PIN-Zurücksetzung nicht beibehalten.",
- "protectUnderLock": "Schützt App-Inhalte, während sich das Gerät im gesperrten Zustand befindet.",
- "protectionModeBlock": "Blockieren: Verhindert, dass Unternehmensdaten geschützte Apps verlassen.
",
- "protectionModeOff": "Aus: Der Benutzer kann Daten aus geschützten Apps verschieben. Es werden keine Aktionen protokolliert.
",
- "protectionModeOverride": "Außerkraftsetzungen zulassen: Der Benutzer wird abgefragt, wenn er versucht, Daten aus einer geschützten in eine nicht geschützte App zu verschieben. Wenn der Benutzer die Abfrage außer Kraft setzt, wird die Aktion protokolliert.
",
- "protectionModeSilent": "Im Hintergrund: Der Benutzer kann Daten aus geschützten Apps verschieben. Diese Aktionen werden protokolliert.
",
- "required": "Erforderlich",
- "revokeOnMdmHandoff": "Wurde in Windows 10, Version 1703, hinzugefügt. Diese Richtlinie steuert, ob die WIP-Schlüssel widerrufen werden, wenn auf einem Gerät ein Upgrade von MAM auf MDM durchgeführt wird. Ist diese Option deaktiviert, werden die Schlüssel nicht widerrufen, und der Benutzer kann nach dem Upgrade weiterhin auf geschützte Dateien zugreifen. Dies wird empfohlen, wenn der MDM-Dienst mit derselben WIP-EnterpriseID wie der MAM-Dienst konfiguriert ist.",
- "revokeOnUnenroll": "Hiermit werden Verschlüsselungsschlüssel widerrufen, wenn ein Gerät die Registrierung bei dieser Richtlinie aufhebt.",
- "rmsTemplateForEdp": "Die TemplateID-GUID zur Verwendung für die RMS-Verschlüsselung. Durch die Azure RMS-Vorlage kann der IT-Administrator konfigurieren, wer wie lange auf die RMS-geschützte Datei zugreifen kann.",
- "showWipIcon": "Hiermit wird der Benutzer durch das Überlagern eines Symbols darauf hingewiesen, dass er gerade in einem Unternehmenskontext agiert.",
- "useRmsForWip": "Gibt an, ob die Azure RMS-Verschlüsselung für WIP zulässig ist."
+ "SecurityTemplate": {
+ "aSR": "Verringerung der Angriffsfläche",
+ "accountProtection": "Kontoschutz",
+ "allDevices": "Alle Geräte",
+ "antivirus": "Antivirus",
+ "antivirusReporting": "Antivirus-Berichterstellung (Vorschau)",
+ "conditionalAccess": "Bedingter Zugriff",
+ "deviceCompliance": "Gerätekompatibilität",
+ "diskEncryption": "Datenträgerverschlüsselung",
+ "eDR": "Endpunkterkennung und -antwort",
+ "firewall": "Firewall",
+ "helpSupport": "Hilfe und Support",
+ "setup": "Setup",
+ "wdapt": "Microsoft Defender für Endpunkt"
+ },
+ "Win32ReturnCodes": {
+ "CodeTypes": {
+ "failed": "Fehler",
+ "hardReboot": "Harter Neustart",
+ "retry": "Wiederholen",
+ "softReboot": "Warmneustart",
+ "success": "Erfolgreich"
},
- "requireAppPin": "Wählen Sie Ja aus, um die App-PIN zu deaktivieren, wenn eine Gerätesperre auf einem registrierten Gerät erkannt wurde.
Hinweis: Intune kann unter iOS/iPadOS keine Geräteregistrierung mit einer Drittanbieter-EMM-Lösung erkennen.
"
- },
- "AppInfoBalloonText": {
- "Certificate": {
- "customSubjectName": "CN={{UserName}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US\r\nor\r\nCN={{AAD_Device_ID}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US",
- "keySize": "Wählen Sie die Anzahl von Bits aus, die im Schlüssel enthalten sein sollen.",
- "keyUsage": "Geben Sie die kryptografische Aktion an, die zum Austauschen des öffentlichen Schlüssels des Zertifikats erforderlich ist.",
- "renewalThreshold": "Geben Sie den Prozentsatz (zwischen 1 und 99 Prozent) der verbleibenden Gültigkeitsdauer des Zertifikats an, die zulässig ist, bevor ein Gerät die Verlängerung des Zertifikats anfordern kann. Der empfohlene Wert in Intune beträgt 20 %. (1–99)",
- "rootCert": "Wählen Sie ein zuvor konfiguriertes und zugeordnetes Profil für das Stammzertifizierungsstellen-Zertifikat aus. Das Zertifizierungsstellenzertifikat muss mit dem Stammzertifikat der Zertifizierungsstelle übereinstimmen, die das Zertifikat für dieses Profil (das Sie gerade konfigurieren) ausstellt.",
- "scepServerUrl": "Geben Sie eine URL für den NDES-Server ein, der Zertifikate über SCEP ausgibt (HTTPS erforderlich). Beispiel: https://contoso.com/certsrv/mscep/mscep.dll",
- "scepServerUrls": "Fügen Sie mindestens eine URL für den NDES-Server hinzu, der Zertifikate über SCEP ausstellt (HTTPS erforderlich). Beispiel: https://contoso.com/certsrv/mscep/mscep.dll",
- "subjectAlternativeName": "Alternativer Antragstellername",
- "subjectNameFormat": "Format des Antragstellernamens",
- "validityPeriod": "Die verbleibende Zeit vor Ablauf des Zertifikats. Geben Sie einen Wert ein, der gleich oder kleiner ist als der Gültigkeitszeitraum, der in der Zertifikatvorlage angezeigt wird. Standardmäßig ist ein Jahr festgelegt."
- },
- "appInstallContext": "Hiermit wird der Installationskontext für diese App angegeben. Wählen Sie für Apps im dualen Modus den gewünschten Kontext für die App aus. Für alle weiteren Apps wird diese Einstellung basierend auf dem Paket vorausgewählt und kann nicht geändert werden.",
- "autoUpdateMode": "Konfigurieren Sie die Updatepriorität für die App. Wählen Sie \"Standard\" aus, um zu verlangen, dass das Gerät mit dem WLAN verbunden sein und aufgeladen werden muss und nicht aktiv verwendet werden darf, damit die App aktualisiert werden kann. Wählen Sie \"Hohe Priorität\" aus, damit die App aktualisiert wird, sobald der Entwickler die App veröffentlicht hat, unabhängig vom Ladestatus, der WLAN-Funktion oder der Endbenutzeraktivität auf dem Gerät. \"Hohe Priorität\" tritt nur auf DO-Geräten in Kraft.",
- "configurationSettingsFormat": "Text für das Konfigurationseinstellungsformat",
- "ignoreVersionDetection": "Für Apps, die vom App-Entwickler automatisch aktualisiert werden (z. B. Google Chrome), legen Sie diese Option auf \"Ja\" fest.",
- "ignoreVersionDetectionMacOSLobApp": "Wählen Sie \"Ja\" aus, wenn die Apps automatisch durch den App-Entwickler aktualisiert werden, oder wenn vor der Installation nur auf die App-Bundle-ID überprüft werden soll. Wählen Sie \"Nein\" aus, um vor der Installation auf die App-Bundle-ID und die Versionsnummer zu überprüfen.",
- "installAsManagedMacOSLobApp": "Diese Einstellung gilt nur für macOS 11 und höher. Unter macOS 10.15 und früher wird die App installiert, aber nicht verwaltet.",
- "installContextDropdown": "Wählen Sie den entsprechenden Installationskontext aus. Durch den Benutzerkontext wird die App nur für den Zielbenutzer installiert, während sie durch den Gerätekontext für alle Benutzer auf dem Gerät installiert wird.",
- "ldapUrl": "Dies ist der LDAP-Hostname, über den Clients die öffentlichen Verschlüsselungskeys für E-Mail-Empfänger abrufen können. E-Mails werden verschlüsselt, wenn ein Key verfügbar ist. Unterstützte Formate: - ldap.example.com
\r\n- ldap.example.com:123
\r\n- ldap://ldap.example.com
- ldap://ldap.example.com:123
- ldaps://ldap.example.com
\r\n- ldaps://ldap.example.com:123
",
- "permissionsSettings": "Wählen Sie Laufzeitberechtigungen für die zugeordnete App.",
- "policyAssociatedApp": "Wählen Sie die App, der diese Richtlinie zugeordnet werden soll.",
- "policyConfigurationSettings": "Wählen Sie die Methode aus, die Sie zum Definieren von Konfigurationseinstellungen für diese Richtlinie verwenden möchten.",
- "policyDescription": "Geben Sie optional eine Beschreibung für diese Konfigurationsrichtlinie ein.",
- "policyEnrollmentType": "Wählen Sie aus, ob diese Einstellungen über die Geräteverwaltung oder über mit dem Intune-SDK erstellte Apps verwaltet werden.",
- "policyName": "Geben Sie einen Namen für diese Konfigurationsrichtlinie ein.",
- "policyPlatform": "Wählen Sie die Plattform aus, auf die diese App-Konfigurationsrichtlinie angewendet wird.",
- "policyProfileType": "Wählen Sie die Geräteprofiltypen aus, auf die dieses App-Konfigurationsprofil angewendet werden soll.",
- "policySMime": "Hiermit konfigurieren Sie S/MIME-Signatur- und Verschlüsselungseinstellungen für Outlook.",
- "sMimeDeployCertsFromIntune": "Geben Sie an, ob von Intune S/MIME-Zertifikate für die Verwendung mit Outlook bereitgestellt werden sollen oder nicht.\r\nIntune kann über das Unternehmensportal automatisch Signatur- und Verschlüsselungszertifikate für Benutzer bereitstellen.",
- "sMimeEnable": "Hiermit geben Sie an, ob S/MIME-Steuerelemente beim Verfassen einer E-Mail aktiviert werden.",
- "sMimeEnableAllowChange": "Geben Sie an, ob der Benutzer die Einstellung \"S/MIME aktivieren\" ändern darf.",
- "sMimeEncryptAllEmails": "Hiermit wird angegeben, ob alle E-Mails verschlüsselt werden müssen oder nicht.\r\nBei der Verschlüsselung werden Daten mithilfe eines Verschlüsselungsverfahrens konvertiert, sodass sie nur vom beabsichtigten Empfänger gelesen werden können.",
- "sMimeEncryptAllEmailsAllowChange": "Geben Sie an, ob der Benutzer die Einstellung \"Alle E-Mails verschlüsseln\" ändern darf.",
- "sMimeEncryptionCertProfile": "Geben Sie das Zertifikatprofil für die E-Mail-Verschlüsselung an.",
- "sMimeSignAllEmails": "Geben Sie an, ob alle E-Mail-Nachrichten signiert werden müssen oder nicht.\r\nEine digitale Signatur weist die Echtheit der E-Mail-Adresse nach und stellt sicher, dass der Inhalt während der Übertragung nicht verändert wird.",
- "sMimeSignAllEmailsAllowChange": "Geben Sie an, ob der Benutzer die Einstellung \"Alle E-Mails signieren\" ändern darf.",
- "sMimeSigningCertProfile": "Geben Sie das Zertifikatprofil für die E-Mail-Signatur an.",
- "sMimeUserNotificationType": "Das Verfahren, mit dem Benutzer darüber benachrichtigt werden, dass sie das Unternehmensportal öffnen müssen, um S/MIME-Zertifikate für Outlook abzurufen."
- },
- "WindowsQualityUpdateDaysUntilForcedReboot": {
- "oneDay": "1 Tag",
- "twoDays": "2 Tage",
- "zeroDays": "0 Tage"
- },
- "Autopilot": {
- "AssignResourceAccount": {
- "createNewCommandMenu": "Neu erstellen",
- "createNewResourceAccountInfo": "\r\nErstellen Sie während der Registrierung ein neues Ressourcenkonto. Das Ressourcenkonto wird sofort der Ressourcenkontotabelle hinzugefügt, aber erst aktiviert, wenn das Gerät registriert und das Surface Hub-Abonnement überprüft wurde. Weitere Informationen zu Ressourcenkonten
\r\n ",
- "createNewResourceTitle": "Neues Ressourcenkonto erstellen",
- "deviceNameInvalid": "Der Gerätename weist ein ungültiges Format auf.",
- "deviceNameRequired": "Der Gerätename ist erforderlich.",
- "editResourceAccountLabel": "Bearbeiten",
- "selectExistingCommandMenu": "Vorhandenes Element auswählen"
- },
- "Device": {
- "ComputerName": {
- "validFormat": "Namen dürfen höchstens 15 Zeichen umfassen und nur Buchstaben (a–Z, A–Z), Ziffern (0–9) und Bindestriche enthalten. Namen dürfen nicht ausschließlich aus Ziffern bestehen und keine Leerzeichen enthalten."
- },
- "Header": {
- "addressableUserName": "Anzeigename",
- "azureADDevice": "Zugeordnetes Azure AD-Gerät",
- "batch": "Gruppentag",
- "dateAssigned": "Zuweisungsdatum",
- "deviceDisplayName": "Gerätename",
- "deviceName": "Gerätename",
- "deviceUseType": "Art der Gerätenutzung",
- "enrollmentState": "Registrierungsstatus",
- "intuneDevice": "Zugeordnetes Intune-Gerät",
- "lastContacted": "Zuletzt kontaktiert",
- "make": "Hersteller",
- "model": "Modell",
- "profile": "Zugewiesenes Profil",
- "profileStatus": "Profilstatus",
- "purchaseOrderId": "Bestellung",
- "resourceAccount": "Ressourcenkonto",
- "serialNumber": "Seriennummer",
- "userPrincipalName": "Benutzer"
- }
- },
- "DeviceUseType": {
- "meetingAndPresentation": "Besprechungen und Präsentationen",
- "teamCollaboration": "Teamzusammenarbeit"
- },
- "Devices": {
- "featureDescription": "Mit Windows AutoPilot können Sie die Willkommensseite für Ihre Benutzer anpassen.",
- "importErrorStatus": "Einige Geräte wurden nicht importiert. Klicken Sie hier, um weitere Informationen zu erhalten.",
- "importPendingStatus": "Der Import wird ausgeführt. Verstrichene Zeit: {0} Min. Dieser Vorgang kann bis zu {1} Min. dauern."
- },
- "DirectoryService": {
- "activeDirectoryAD": "In Azure AD Hybrid eingebunden",
- "activeDirectoryADLabel": "Azure AD Hybrid mit Autopilot",
- "azureAD": "In Azure AD eingebunden",
- "unknownType": "Unbekannter Typ"
- },
- "Filter": {
- "enrollmentState": "Zustand",
- "profile": "Profilstatus"
- },
- "OOBE": {
- "AddressableUserName": {
- "validateEmpty": "Der Anzeigename darf nicht leer sein."
- },
- "ApplyComputerNameTemplate": {
- "infoBalloon": "Erstellen Sie eine Benennungsvorlage, um Ihren Geräten während der Registrierung Namen hinzuzufügen.",
- "label": "Vorlage für Gerätenamen anwenden"
- },
- "ApplyComputerNameTemplateDisabled": {
- "label": "Für Autopilot Deployment-Profile mit Azure AD Hybrid-Einbindung werden Geräte anhand der Einstellungen benannt, die in den Einstellungen in der Domänenbeitrittskonfiguration angegeben sind."
- },
- "ComputerNameTemplate": {
- "emptyValue": "MeineFirma-%RAND:4%",
- "label": "Namen eingeben",
- "noDisallowedChars": "Der Name darf nur alphanumerische Zeichen, Bindestriche, %SERIAL% oder %RAND:x% enthalten.",
- "serialLength": "Bei %SERIAL% dürfen höchstens 7 Zeichen verwendet werden.",
- "validateLessThan15Chars": "Der Name darf höchstens 15 Zeichen umfassen.",
- "validateNoSpaces": "Computernamen dürfen keine Leerzeichen enthalten.",
- "validateNotAllNumbers": "Der Name muss auch Buchstaben und/oder Bindestriche enthalten.",
- "validateNotEmpty": "Name darf nicht leer sein",
- "validateOnlyOneMacro": "Der Name darf nur entweder %SERIAL% oder %RAND:x% enthalten."
- },
- "ConfigureComputerNameTemplate": {
- "description": "Erstellen Sie einen eindeutigen Namen für Ihre Geräte. Die Namen dürfen höchstens 15 Zeichen umfassen und nur Buchstaben (a–Z, A–Z), Ziffern (0–9) und Bindestriche enthalten. Namen dürfen nicht ausschließlich Ziffern enthalten. Verwenden Sie das Makro \"%SERIAL%\", um eine hardwarespezifische Seriennummer hinzuzufügen. Alternativ dazu können Sie über das Makro \"%RAND:x%\" eine zufällige Zeichenfolge von Ziffern hinzufügen, wobei x der hinzuzufügenden Anzahl von Ziffern entspricht."
- },
- "EnableWhiteGlove": {
- "infoBalloon": "Ermöglichen Sie durch fünfmaliges Drücken der Windows-Taste die Ausführung der Windows-Willkommensseite ohne Benutzerauthentifizierung, um das Gerät zu registrieren und alle Systemkontext-Apps und -einstellungen bereitzustellen. Benutzerkontext-Apps und -einstellungen werden übermittelt, wenn der Benutzer sich anmeldet.",
- "label": "Vorab bereitgestellte Bereitstellung zulassen"
- },
- "HybridAzureADSkipConnectivityCheck": {
- "infoBalloon": "Der Autopilot-Azure AD Hybrid Join-Flow wird fortgesetzt, auch wenn beim ersten Start keine Verbindung mit dem Domänencontroller hergestellt werden kann.",
- "label": "AD-Konnektivitätsprüfung überspringen (Vorschau)"
- },
- "accountType": "Art des Benutzerkontos",
- "accountTypeInfo": "Geben Sie an, ob es sich bei den Benutzern um Administratoren oder Standardbenutzer für das Gerät handelt. Beachten Sie, dass diese Einstellung nicht für die Konten von globalen Administratoren oder Unternehmensadministratoren gilt. Diese Konten können keine Standardbenutzer sein, da sie Zugriff auf alle Verwaltungsfunktionen von Azure AD haben.",
- "configOOBEInfo": "\r\nKonfigurieren Sie die Willkommensseite für Ihre Autopilot-Geräte.\r\n
",
- "configureDevice": "Bereitstellungsmodus",
- "configureDeviceHintForSurfaceHub2": "Autopilot unterstützt für Surface Hub 2 nur den Self-Deployment-Modus. Dieser Modus ordnet den Benutzer nicht dem registrierten Gerät zu, deshalb sind keine Benutzeranmeldeinformationen erforderlich.",
- "configureDeviceHintForWindowsPC": "\r\n Der Bereitstellungsmodus steuert, ob Benutzer Anmeldeinformationen angeben müssen, um das Gerät bereitzustellen.\r\n
\r\n \r\n - \r\n Benutzergesteuert: Geräte sind dem Benutzer zugeordnet, der das Gerät registriert, und zum Bereitstellen des Geräts sind Benutzeranmeldeinformationen erforderlich\r\n
\r\n - \r\n Selbstbereitstellung (Vorschau): Geräte sind nicht dem Benutzer zugeordnet, der das Gerät registriert, und zum Bereitstellen des Geräts sind keine Benutzeranmeldeinformationen erforderlich.\r\n
\r\n
",
- "createSurfaceHub2Info": "Konfigurieren Sie die Autopilot-Registrierungseinstellungen für Ihre Surface Hub 2-Geräte. Autopilot ermöglicht standardmäßig das Überspringen der Benutzerauthentifizierung auf der Windows-Willkommensseite. Erfahren Sie mehr über Windows Autopilot für Surface Hub 2.",
- "createWindowsPCInfo": "\r\n\r\nFolgende Optionen werden für Autopilot-Geräte im Self-Deployment-Modus automatisch aktiviert:\r\n
\r\n\r\n - \r\n Auswahl zur Nutzung am Arbeitsplatz oder zu Hause überspringen\r\n
\r\n - \r\n OEM-Registrierung und OneDrive-Konfiguration überspringen\r\n
\r\n - \r\n Benutzerauthentifizierung auf Windows-Willkommensseite überspringen\r\n
\r\n
",
- "endUserDevice": "Benutzergesteuert",
- "hideEscapeLink": "Optionen zur Kontoänderung ausblenden",
- "hideEscapeLinkInfo": "Optionen zum Ändern des Kontos und zum Starten mit einem anderen Konto werden jeweils während der anfänglichen Geräteeinrichtung auf der Anmeldeseite des Unternehmens und auf der Seite mit Domänenfehlern angezeigt. Um diese Optionen auszublenden, müssen Sie das Unternehmensbranding in Azure Active Directory konfigurieren (erfordert Windows 10, 1809 oder höher oder Windows 11).",
- "info": "Die AutoPilot-Profileinstellungen definieren die Willkommensseite, die den Benutzern beim ersten Start von Windows angezeigt wird. ",
- "language": "Sprache (Region)",
- "languageInfo": "Geben Sie die zu verwendende Sprache und Region an.",
- "licenseAgreement": "Microsoft Software-Lizenzbedingungen",
- "licenseAgreementInfo": "Hiermit wird angegeben, ob den Benutzern Lizenzbedingungen angezeigt werden.",
- "plugAndForgetDevice": "Selbstbereitstellung (Vorschau)",
- "plugAndForgetGA": "Automatische Bereitstellung",
- "privacySettingWarning": "Der Standardwert für die Sammlung von Diagnosedaten wurde für Geräte geändert, auf denen Windows 10, Version 1903 und höher, oder Windows 11 ausgeführt wird. ",
- "privacySettings": "Datenschutzeinstellungen",
- "privacySettingsInfo": "Hiermit wird angegeben, ob den Benutzern Datenschutzeinstellungen angezeigt werden.",
- "showCortanaConfigurationPage": "Cortana-Konfiguration",
- "showCortanaConfigurationPageInfo": "Bei Auswahl von \"Anzeigen\" wird die Einführung zur Cortana-Konfiguration beim Start aktiviert.",
- "skipEULAWarning": "Wichtige Informationen zum Ausblenden von Lizenzbedingungen",
- "skipKeyboardSelection": "Tastatur automatisch konfigurieren",
- "skipKeyboardSelectionInfo": "Bei TRUE wird die Tastaturauswahlseite übersprungen, wenn die Sprache festgelegt ist.",
- "subtitle": "AutoPilot-Profile",
- "title": "Windows-Willkommensseite",
- "useOSDefaultLanguage": "Betriebssystemstandard",
- "userSelect": "Benutzerauswahl"
- },
- "Sync": {
- "lastRequestedLabel": "Letzte Synchronisierungsanforderung",
- "lastSuccessfulLabel": "Letzte erfolgreiche Synchronisierung",
- "syncInProgress": "Es wird zurzeit eine Synchronisierung durchgeführt. Versuchen Sie es später noch mal.",
- "syncInitiated": "Die Synchronisierung der AutoPilot-Einstellungen wurde initiiert.",
- "syncSettingsTitle": "AutoPilot-Einstellungen synchronisieren"
- },
- "Title": {
- "devices": "Windows AutoPilot-Geräte"
- },
- "Tooltips": {
- "addressableUserName": "Name, der während der Geräteeinrichtung in der Begrüßung angezeigt wird.",
- "azureADDevice": "Wechseln Sie zu den Gerätedetails für das zugeordnete Gerät. N/V bedeutet, dass kein Gerät zugeordnet ist.",
- "batch": "Ein Zeichenfolgenattribut, das zum Identifizieren einer Gruppe von Geräten verwendet werden kann. Das Intune-Feld für das Gruppentag wird dem OrderID-Attribut für Azure AD-Geräte zugeordnet.",
- "dateAssigned": "Zeitstempel, der angibt, wann das Profil dem Gerät zugewiesen wurde.",
- "deviceDisplayName": "Konfigurieren Sie einen eindeutigen Namen für ein Gerät. Dieser Name wird für in Azure AD Hybrid eingebundene Bereitstellungen ignoriert. Der Gerätename stammt weiterhin aus dem Domänenbeitrittsprofil für in Azure AD eingebundene Hybridgeräte.",
- "deviceName": "Der angezeigte Name, wenn jemand versucht hat, das Gerät zu ermitteln und eine Verbindung herzustellen.",
- "deviceUseType": " Das Gerät wird basierend auf Ihrer Auswahl eingerichtet. Sie können die Einstellungen später jederzeit ändern.\r\n \r\n - Für Besprechungen und Präsentationen ist Windows Hello nicht aktiviert, und die Daten werden nach jeder Sitzung entfernt.\r\n
\r\n - Für die Teamzusammenarbeit ist Windows Hello aktiviert, und Profile werden für die schnelle Anmeldung gespeichert.
\r\n
",
- "enrollmentState": "Gibt an, ob das Gerät registriert wurde.",
- "intuneDevice": "Wechseln Sie zu den Gerätedetails für das zugeordnete Gerät. N/V bedeutet, dass kein Gerät zugeordnet ist.",
- "lastContacted": "Zeitstempel, der angibt, wann das Gerät zuletzt kontaktiert wurde.",
- "make": "Hersteller des ausgewählten Geräts.",
- "model": "Modell des ausgewählten Geräts",
- "profile": "Name des Profils, das dem Gerät zugewiesen ist.",
- "profileStatus": "Gibt an, ob dem Gerät ein Profil zugewiesen ist.",
- "purchaseOrderId": "Auftragsnummer",
- "resourceAccount": "Die Identität des Geräts oder der Benutzerprinzipalname (UPN).",
- "serialNumber": "Seriennummer des ausgewählten Geräts.",
- "userPrincipalName": "Benutzer, der während der Geräteeinrichtung vorab für die Authentifizierung ausgefüllt wird."
- },
- "allDevices": "Nicht alle Geräte",
- "allDevicesAlreadyAssignedError": "Es wurde allen Geräten bereits ein Autopilot-Profil zugewiesen.",
- "assignFailedDescription": "Fehler beim Aktualisieren von Zuweisungen für {0}.",
- "assignFailedTitle": "Fehler beim Aktualisieren von AutoPilot-Profilzuweisungen.",
- "assignSuccessDescription": "Die Zuweisungen für {0} wurden erfolgreich aktualisiert.",
- "assignSuccessTitle": "Die AutoPilot-Profilzuweisungen wurden erfolgreich aktualisiert.",
- "assignSufaceHub2ProfileNextStep": "Nächste Schritte für diese Bereitstellung",
- "assignSurfaceHub2ProfileToDeviceGroup": "1. Weisen Sie dieses Profil mindestens einer Gerätegruppe zu.",
- "assignSurfaceHub2ProfileToResourceAccount": "2. Weisen Sie jedem Surface Hub-Gerät, auf dem Sie dieses Profil bereitstellen, ein Ressourcenkonto zu.",
- "assignedDevicesCount": "Zugewiesene Geräte",
- "assignedDevicesResourceAccountDescription": "Um dieses Profil auf einem Gerät bereitzustellen, müssen Sie dem Gerät ein Ressourcenkonto zuweisen. Wählen Sie jeweils ein Gerät pro Arbeitsschritt aus, um ein vorhandenes Ressourcenkonto zuzuweisen oder ein neues Ressourcenkonto zu erstellen. Weitere Informationen zu Ressourcenkonten
",
- "assignedDevicesResourceAccountStatusBarMessage": "Diese Tabelle listet nur die Surface Hub 2-Geräte auf, denen dieses Profil zugewiesen wurde.",
- "assigningDescription": "Die Zuweisungen für {0} werden aktualisiert.",
- "assigningTitle": "Die AutoPilot-Profilzuweisungen werden aktualisiert.",
- "cannotDeleteMessage": "Dieses Profil ist Gruppen zugewiesen. Sie müssen die Zuweisung zu allen Gruppen aufheben, bevor Sie das Profil löschen können.",
- "cannotDeleteTitle": "\"{0}\" kann nicht gelöscht werden",
- "createdDateTime": "Erstellt",
- "deleteMessage": "Wenn Sie dieses AutoPilot-Profil löschen, wird für alle diesem Profil zugewiesenen Geräte der Status \"Nicht zugewiesen\" angezeigt.",
- "deleteMessageWithPolicySet": "\"{0}\" ist in mindestens einem Richtliniensatz enthalten. Wenn Sie \"{0}\" löschen, können Sie das Profil nicht mehr über diese Richtliniensätze zuweisen.",
- "deleteTitle": "Möchten Sie dieses Profil löschen?",
- "description": "Beschreibung",
- "deviceType": "Gerätetyp",
- "deviceUse": "Geräteverwendung",
- "directoryServiceHintForSurfaceHub2": " \r\n Autopilot unterstützt für Surface Hub 2-Geräte nur \"In Azure AD eingebunden\". Geben Sie an, wie Geräte in Ihrer Organisation in Active Directory (AD) eingebunden werden.\r\n
\r\n \r\n - \r\n In Azure AD eingebunden: Nur Cloud ohne lokale Windows Server Active Directory-Instanz.\r\n
\r\n
\r\n ",
- "directoryServiceHintForWindowsPC": "\r\n \r\n Geben Sie an, wie Geräte in Ihrer Organisation in Active Directory (AD) eingebunden werden:\r\n
\r\n \r\n - \r\n In Azure AD eingebunden: Nur Cloud, ohne lokale Windows Server Active Directory-Umgebung\r\n
\r\n
\r\n ",
- "getAssignedDevicesCountError": "Fehler beim Abrufen der Anzahl zugewiesener Geräte.",
- "getAssignmentsError": "Fehler beim Abrufen der AutoPilot-Profilzuweisungen.",
- "harvestDeviceId": "Alle Zielgeräte in Autopilot-Geräte konvertieren",
- "harvestDeviceIdDescription": "Standardmäßig kann dieses Profil nur auf Autopilot-Geräte angewendet werden, die vom Autopilot-Dienst synchronisiert werden.",
- "harvestDeviceIdInfo": "\r\n Wählen Sie \"Ja\" aus, um alle Zielgeräte für Autopilot zu registrieren (sofern noch nicht geschehen). Wenn registrierte Geräte das nächste Mal durch die Willkommensseite geführt werden, wird das zugewiesene Autopilot-Szenario durchlaufen.\r\n
\r\n Beachten Sie, dass bestimmte Autopilot-Szenarien spezifische Windows-Mindestbuilds erfordern. Stellen Sie sicher, dass Ihr Gerät über den erforderlichen Mindestbuild verfügt, um das Szenario zu durchlaufen.\r\n
\r\n Durch das Entfernen dieses Profils werden die betroffenen Geräte nicht aus Autopilot entfernt. Um ein Gerät aus Autopilot zu entfernen, verwenden Sie die Ansicht für Windows Autopilot-Geräte.\r\n ",
- "harvestDeviceIdWarning": "Nach der Konvertierung können Autopilot-Geräte nur wiederhergestellt werden, indem Sie sie aus der Liste der Autopilot-Geräte löschen.",
- "holoLensCommandMenu": "HoloLens",
- "info": "Mit den Windows AutoPilot Deployment-Profilen können Sie die Willkommensseite für Ihre Geräte anpassen.",
- "invalidProfileNameMessage": "Das Zeichen \"{0}\" ist nicht zulässig.",
- "joinTypeLabel": "Azure AD beitreten als",
- "lastModifiedDateTime": "Zuletzt geändert:",
- "name": "Name",
- "noAutopilotProfile": "Keine AutoPilot-Profile.",
- "notEnoughPermissionAssignedError": "Ihre Berechtigungen reichen nicht aus, um dieses Profil mindestens einer der ausgewählten Gruppen zuzuweisen. Wenden Sie sich an Ihren Administrator.",
- "profile": "Profil",
- "resourceAccountStatusBarMessage": "Ein Ressourcenkonto ist für jedes Surface Hub 2-Gerät erforderlich, für das dieses Profil bereitgestellt wird. Klicken Sie hier, um mehr zu erfahren.",
- "selectServices": "Verzeichnisdienst auswählen, dem Geräte beitreten sollen",
- "surfaceHub2CommandMenu": "Surface Hub 2",
- "surfaceHub2SCommandMenu": "Surface Hub 2S",
- "userAffinityLabel": "Bereitstellungsmodus",
- "windowsPCCommandMenu": "Windows-PC",
- "directoryServiceLabel": "Azure AD beitreten als"
- },
- "AppInformationTab": {
- "Error": {
- "multipleChildApps": "Eine branchenspezifische macOS-App kann nur als verwaltete App installiert werden, wenn das hochgeladene Paket eine einzelne App enthält."
- },
- "Info": {
- "AppStoreUrl": {
- "android": "Geben Sie den Link zum App-Eintrag im Google Play Store ein. Beispiel:",
- "androidLink": "https://play.google.com/store/apps/details?id=com.microsoft.office.outlook",
- "windows": "Geben Sie den Link zum App-Eintrag im Microsoft Store ein. Beispiel:",
- "windowsLink": "https://www.microsoft.com/en-us/p/microsoft-to-do-lists-tasks-reminders/9nblggh5r558"
- },
- "appPackageFile": "Eine Datei, die Ihre App in einem Format enthält, die das Querladen auf einem Gerät ermöglicht. Gültige Pakettypen: Android (.apk), iOS (.ipa), macOS (.intunemac), Windows (.msi, .appx, .appxbundle, .msix, .msixbundle).",
- "applicableDeviceType": "Wählen Sie die Gerätetypen aus, auf denen diese App installiert werden kann.",
- "category": "Kategorisieren Sie die App, um Benutzern das Sortieren und Suchen im Unternehmensportal zu erleichtern. Sie können mehrere Kategorien auswählen.",
- "categoryLink": "https://docs.microsoft.com/en-us/intune/apps/apps-add#create-and-edit-categories-for-apps",
- "description": "Stellen Sie Informationen bereit, damit die Benutzer besser verstehen, worum es sich bei Ihrer App handelt und welche Möglichkeit die App ihnen bietet. Diese Beschreibung wird im Unternehmensportal angezeigt.",
- "developer": "Der Name des Unternehmens oder der Person, von der die App entwickelt wurde. Diese Informationen sind für Personen sichtbar, die beim Admin Center angemeldet sind.",
- "displayVersion": "Die Version der App. Diese Informationen sind für Benutzer im Unternehmensportal sichtbar.",
- "infoUrl": "Stellen Sie einen Link zu einer Website oder Dokumentation bereit, die weitere Informationen zur App enthält. Die Informations-URL ist für Benutzer im Unternehmensportal sichtbar.",
- "isFeatured": "Ausgewählte Apps werden prominent im Unternehmensportal platziert, sodass Benutzer sie schnell aufrufen können.",
- "learnMore": "Weitere Informationen",
- "logo": "Laden Sie ein Logo hoch, das der App zugeordnet ist. Dieses Logo wird im Unternehmensportal neben der App angezeigt.",
- "macOSDmgAppPackageFile": "Eine Datei, die Ihre App in einem Format enthält, das auf einem Gerät quergeladen werden kann. Gültiger Pakettyp: .dmg. ",
- "minOperatingSystem": "Wählen Sie die früheste Betriebssystemversion aus, unter der die App installiert werden kann. Wenn Sie die App einem Gerät mit einem früheren Betriebssystem zuweisen, wird die App nicht installiert.",
- "name": "Fügen Sie einen Namen für die App hinzu. Dieser Name wird in der Intune-App-Liste und für Benutzer im Unternehmensportal angezeigt.",
- "notes": "Fügen Sie zusätzliche Hinweise zur App hinzu. Hinweise sind für Personen sichtbar, die beim Admin Center angemeldet sind.",
- "owner": "Der Name der Person in Ihrer Organisation, die die Lizenzierung verwaltet oder als Kontakt für diese App fungiert. Dieser Name ist für Personen sichtbar, die beim Admin Center angemeldet sind.",
- "packageName": "Wenden Sie sich an den Gerätehersteller, um den Paketnamen der App abzurufen. Beispielpaketname: com.beispiel.app",
- "privacyUrl": "Stellen Sie einen Link für Personen bereit, die mehr über die Datenschutzeinstellungen und -bestimmungen der App erfahren möchten. Die URL zum Datenschutz ist für Benutzer im Unternehmensportal sichtbar.",
- "publisher": "Der Name des Entwicklers oder Unternehmens, von dem die App verteilt wird. Diese Informationen sind für Benutzer im Unternehmensportal sichtbar.",
- "selectApp": "Suchen Sie im App Store nach iOS Store-Apps, die Sie mit Intune bereitstellen möchten.",
- "useManagedBrowser": "Wenn ein Benutzer die Web-App öffnet, wird diese bei Bedarf in einem von Intune geschützten Browser wie Microsoft Edge oder Intune Managed Browser geöffnet. Diese Einstellung gilt sowohl für iOS- als auch für Android-Geräte.",
- "useManagedBrowserLink": "https://docs.microsoft.com/en-us/intune/apps/app-configuration-managed-browser",
- "win32AppPackageFile": "Dies ist eine Datei, die Ihre App in einem Format enthält, das auf einem Gerät quergeladen werden kann. Gültige Pakettypen: INTUNEWIN."
- },
- "descriptionPreview": "Vorschau",
- "descriptionRequired": "Die Beschreibung ist erforderlich.",
- "editDescription": "Beschreibung bearbeiten",
- "name": "App-Informationen",
- "nameForOfficeSuitApp": "Informationen zur App-Suite"
- },
+ "Columns": {
+ "codeType": "Codetyp",
+ "returnCode": "Rückgabecode"
+ },
+ "bladeTitle": "Rückgabecodes",
+ "gridAriaLabel": "Rückgabecodes",
+ "header": "Geben Sie Rückgabecodes an, um das Verhalten nach der Installation festzulegen:",
+ "onAddAnnounceMessage": "Der Rückgabecode hat Element {0} von {1} hinzugefügt.",
+ "onDeleteSuccess": "Der Rückgabecode {0} wurde erfolgreich gelöscht.",
+ "returnCodeAlreadyUsedValidation": "Der Rückgabecode wird bereits verwendet.",
+ "returnCodeMustBeIntegerValidation": "Der Rückgabecode muss eine ganze Zahl sein.",
+ "returnCodeShouldBeAtLeast": "Der Rückgabecode muss mindestens {0} lauten.",
+ "returnCodeShouldBeAtMost": "Der Rückgabecode darf maximal {0} lauten.",
+ "selectorLabel": "Rückgabecodes"
+ },
"NotificationMessage": {
"NotificationMessageTemplatesTab": {
"arabic": "Arabisch",
@@ -10516,84 +10079,599 @@
"localeLabel": "Gebietsschema",
"isDefaultLocale": "Ist Standard"
},
- "Win32Program": {
- "DeviceRestartBehaviorOptions": {
- "allow": "App-Installation kann einen Geräteneustart erzwingen",
- "basedOnReturnCode": "Verhalten auf Grundlage von Rückgabecodes bestimmen",
- "force": "Intune erzwingt einen verbindlichen Geräteneustart",
- "suppress": "Keine bestimmte Aktion"
- },
- "RunAsAccountOptions": {
- "system": "System",
- "user": "Benutzer"
- },
- "bladeTitle": "Programm",
- "deviceRestartBehavior": "Verhalten beim Geräteneustart",
- "deviceRestartBehaviorTooltip": "Wählen Sie das Verhalten des Geräteneustarts aus, nachdem die App erfolgreich installiert wurde. Wählen Sie \"Verhalten auf Grundlage von Rückgabecodes bestimmen\" aus, um das Gerät basierend auf den Rückgabecode-Konfigurationseinstellungen neu zu starten. Wählen Sie \"Keine bestimmte Aktion\" aus, um Geräteneustarts während der App-Installation für MSI-basierte Apps zu unterdrücken. Wählen Sie \"App-Installation kann einen Geräteneustart erzwingen\" aus, damit die App-Installation abgeschlossen werden kann, ohne dass Neustarts unterdrückt werden. Wählen Sie \"Intune erzwingt einen verbindlichen Geräteneustart\", um das Gerät nach erfolgreicher App-Installation grundsätzlich neu zu starten.",
- "header": "Geben Sie die Befehle zum Installieren und Deinstallieren dieser App an:",
- "installCommand": "Installationsbefehl",
- "installCommandMaxLengthErrorMessage": "Der Installationsbefehl darf die maximal zulässige Länge von 1024 Zeichen nicht überschreiten.",
- "installCommandTooltip": "Die Befehlszeile zur vollständigen Installation dieser App.",
- "runAs32Bit": "Befehle zur Installation und Deinstallation auf 64-Bit-Clients in einem 32-Bit-Prozess ausführen",
- "runAs32BitTooltip": "Wählen Sie \"Ja\", um die App auf 64-Bit-Clients in einem 32-Bit-Prozess zu installieren und zu deinstallieren. Wählen Sie \"Nein\" (Standardeinstellung) aus, um die App auf 64-Bit-Clients in einem 64-Bit-Prozess zu installieren. 32-Bit-Clients verwenden immer einen 32-Bit-Prozess.",
- "runAsAccount": "Installationsverhalten",
- "runAsAccountTooltip": "Wählen Sie \"System\" aus, um diese App für alle Benutzer zu installieren, sofern dies unterstützt wird. Wählen Sie \"Benutzer\" aus, um diese App für den auf dem Gerät angemeldeten Benutzer zu installieren. Bei MSI-Apps im dualen Modus verhindern Änderungen, dass Updates und Deinstallationen erfolgreich abgeschlossen werden, bis der Wert, der zum Zeitpunkt der ursprünglichen Installation für das Gerät galt, wiederhergestellt wird.",
- "selectorLabel": "Programm",
- "uninstallCommand": "Deinstallationsbefehl",
- "uninstallCommandTooltip": "Die Befehlszeile zur vollständigen Deinstallation dieser App."
- },
- "OutlookAppConfigSettings": {
- "AllowUserToChangeSetting": {
- "title": "Benutzer das Ändern der Einstellung erlauben",
- "tooltip": "Geben Sie an, ob der Benutzer die Einstellung ändern darf."
- },
- "AllowWorkAccounts": {
- "title": "Nur Geschäfts-, Schul- oder Unikonten zulassen",
- "tooltip": " Wenn diese Einstellung aktiviert ist, können Benutzer keine persönlichen E-Mail- und Speicherkonten in Outlook hinzufügen. Wenn der Benutzer ein persönliches Konto zu Outlook hinzugefügt hat, wird er aufgefordert, das persönliche Konto zu entfernen. Wird das persönliche Konto nicht entfernt, kann das Geschäfts, Schul- oder Unikonto nicht hinzugefügt werden."
- },
- "BlockExternalImages": {
- "title": "Externe Bilder blockieren",
- "tooltip": "Wenn die Option \"Externe Bilder blockieren\" aktiviert ist, verhindert die App das Herunterladen von im Internet gehosteten Bildern, die in den Nachrichtentext eingebettet sind. Wird diese Einstellung als nicht konfiguriert festgelegt, lautet die Standardeinstellung für die App \"Aus\"."
- },
- "ConfigureEmail": {
- "title": "E-Mail-Kontoeinstellungen konfigurieren"
- },
- "DefaultAppSignatureSetting": {
- "Tooltip": {
- "android": "Die Standard-App-Signatur gibt an, ob die App \"Outlook für Android herunterladen\" als standardmäßige Signatur beim Verfassen von Nachrichten verwendet wird. Wenn die Einstellung als deaktiviert konfiguriert ist, wird die standardmäßige Signatur nicht verwendet. Benutzer können jedoch ihre eigene Signatur hinzufügen.\r\n\r\nWenn sie als nicht konfiguriert festgelegt wird, ist die Standard-App-Einstellung aktiviert.",
- "iOS": "Die Standard-App-Signatur gibt an, ob die App \"Outlook für iOS herunterladen\" als standardmäßige Signatur beim Verfassen von Nachrichten verwendet wird. Wenn die Einstellung als deaktiviert konfiguriert ist, wird die standardmäßige Signatur nicht verwendet. Benutzer können jedoch ihre eigene Signatur hinzufügen.\r\n\r\nWenn sie als nicht konfiguriert festgelegt wird, ist die Standard-App-Einstellung aktiviert."
- },
- "title": "Standard-App-Signatur"
- },
- "OfficeFeedReplies": {
- "title": "Ermittlungsfeed",
- "tooltip": "Im Ermittlungsfeed werden die Office-Dateien angezeigt, auf die am häufigsten zugegriffen wurde. Standardmäßig ist dieser Feed aktiviert, wenn Delve für den Benutzer aktiviert ist. Wurde die App nicht konfiguriert, lautet die Standard-App-Einstellung \"Ein\"."
- },
- "OrganizeMailByThread": {
- "title": "E-Mails nach Thread organisieren",
- "tooltip": "Das Standardverhalten in Outlook besteht darin, E-Mail-Nachrichten zu bündeln und als Unterhaltungsthread anzuzeigen. Wenn diese Einstellung deaktiviert ist, gruppiert Outlook die E-Mails nicht, sondern zeigt jede E-Mail einzeln an."
- },
- "PlayMyEmails": {
- "title": "Meine E-Mails wiedergeben",
- "tooltip": "Das Feature \"Meine E-Mails wiedergeben\" ist in der App standardmäßig nicht aktiviert, wird aber berechtigten Benutzern über ein Banner im Posteingang angepriesen. Wenn diese Option deaktiviert ist, werden berechtigte Benutzer in der App nicht auf dieses Feature aufmerksam gemacht. Benutzer können \"Meine E-Mails wiedergeben\" auch dann manuell über die App aktivieren, wenn dieses Feature deaktiviert ist. Bei der Einstellung \"Nicht konfiguriert\" ist die App-Einstellung standardmäßig aktiviert, und berechtigte Benutzer werden auf das Feature aufmerksam gemacht."
- },
- "SuggestedReplies": {
- "title": "Vorgeschlagene Antworten",
- "tooltip": "Wenn Sie eine Nachricht öffnen, schlägt Outlook unterhalb der Nachricht möglicherweise Antworten vor. Wenn Sie eine vorgeschlagene Antwort auswählen, können Sie diese vor dem Senden bearbeiten."
- },
- "SyncCalendars": {
- "title": "Kalender synchronisieren",
- "tooltip": "Hiermit wird konfiguriert, ob Benutzer ihren Outlook-Kalender mit der nativen Kalender-App und -datenbank synchronisieren können."
- },
- "TextPredictions": {
- "title": "Textvorhersagen",
- "tooltip": "Während Sie Nachrichten verfassen, kann Outlook Wörter und Ausdrücke vorschlagen. Wischen Sie, um einen von Outlook angebotenen Vorschlag zu akzeptieren. Wenn diese Einstellung auf \"Nicht konfiguriert\" festgelegt ist, wird die standardmäßige App-Einstellung auf EIN festgelegt."
+ "WindowsQualityUpdateProfile": {
+ "Details": {
+ "DaysUntilForcedReboot": {
+ "label": "Wartezeit in Tagen bis zum erzwungenen Neustart"
+ },
+ "Description": {
+ "label": "Beschreibung"
+ },
+ "Name": {
+ "label": "Name"
+ },
+ "QualityUpdateRelease": {
+ "label": "Installation von Qualitätsupdates beschleunigen, wenn die Gerätebetriebssystemversion niedriger ist als:"
+ },
+ "bladeTitle": "Qualitätsupdates Windows 10 und höher (Vorschau)",
+ "loadError": "Fehler beim Laden."
+ },
+ "TabName": {
+ "qualityUpdateSettings": "Einstellungen"
+ },
+ "infoBoxText": "Die einzige dedizierte Qualitätsupdatesteuerung, die derzeit außer der vorhandenen Updateringrichtlinie für Windows 10 und höher verfügbar ist, ist die Möglichkeit, Qualitätsupdates für Geräte zu beschleunigen, die hinter eine bestimmte Patchebene fallen. Weitere Steuerelemente werden in Zukunft verfügbar sein.",
+ "warningBoxText": "Die Beschleunigung von Softwareupdates kann zwar dazu beitragen, bei Bedarf eine schnellere Konformität zu erzielen, sie hat aber einen größeren Einfluss auf die Produktivität der Endbenutzer. Die Wahrscheinlichkeit, dass ein Neustart während der Geschäftszeiten erfolgt, ist deutlich erhöht."
+ },
+ "TermsOfUse": {
+ "Languages": {
+ "addLanguage": "Add language",
+ "af": "Afrikaans",
+ "am": "Amharic",
+ "arSA": "Arabic (Saudi Arabia)",
+ "as": "Assamese",
+ "az": "Azerbaijani",
+ "be": "Belarusian",
+ "bg": "Bulgarian",
+ "bn": "Bangla",
+ "bnIN": "Bangla (India)",
+ "bs": "Bosnian",
+ "ca": "Catalan",
+ "caESvalencia": "Valencian (Spain)",
+ "cs": "Czech",
+ "cy": "Welsh",
+ "da": "Danish",
+ "de": "German",
+ "default": "Default",
+ "defaultDetailsTag": "{0} (Default)",
+ "el": "Greek",
+ "en": "English",
+ "enGB": "English (United Kingdom)",
+ "es": "Spanish",
+ "esMX": "Spanish (Mexico)",
+ "et": "Estonian",
+ "eu": "Basque",
+ "fa": "Persian",
+ "fi": "Finnish",
+ "fil": "Filipino",
+ "fr": "French",
+ "frCA": "French (Canada)",
+ "ga": "Irish",
+ "gd": "Scottish Gaelic",
+ "gl": "Galician",
+ "gu": "Gujarati",
+ "ha": "Hausa",
+ "he": "Hebrew",
+ "hi": "Hindi",
+ "hr": "Croatian",
+ "hu": "Hungarian",
+ "hy": "Armenian",
+ "id": "Indonesian",
+ "ig": "Igbo",
+ "is": "Icelandic",
+ "it": "Italian",
+ "ja": "Japanese",
+ "ka": "Georgian",
+ "kk": "Kazakh",
+ "km": "Khmer",
+ "kn": "Kannada",
+ "ko": "Korean",
+ "kok": "Konkani",
+ "kuArab": "Central Kurdish (Arabic)",
+ "ky": "Kyrgyz",
+ "languageOptions": "Language Options",
+ "lb": "Luxembourgish",
+ "lo": "Lao",
+ "lt": "Lithuanian",
+ "lv": "Latvian",
+ "mi": "Maori",
+ "mk": "Macedonian",
+ "ml": "Malayalam",
+ "mn": "Mongolian",
+ "mr": "Marathi",
+ "ms": "Malay",
+ "mt": "Maltese",
+ "ne": "Nepali",
+ "nl": "Dutch",
+ "nnNO": "Norwegian, Nynorsk (Norway)",
+ "no": "Norwegian",
+ "notSpecified": "Language not specified",
+ "nso": "Sesotho sa Leboa",
+ "or": "Odia",
+ "paArabPK": "Punjabi (Islamic Republic of Pakistan)",
+ "paIN": "Punjabi (India)",
+ "pl": "Polish",
+ "prs": "Dari",
+ "ptBR": "Portuguese (Brazil)",
+ "ptPT": "Portuguese (Portugal)",
+ "quz": "Quechua",
+ "ro": "Romanian",
+ "ru": "Russian",
+ "rw": "Kinyarwanda",
+ "sd": "Sindhi",
+ "si": "Sinhala",
+ "sk": "Slovak",
+ "sl": "Slovenian",
+ "sq": "Albanian",
+ "srCyrlBA": "Serbian (Cyrillic, Bosnia and Herzegovina)",
+ "srCyrlRS": "Serbian (Cyrillic, Serbia)",
+ "srLatnRS": "Serbian (Latin, Serbia)",
+ "sv": "Swedish",
+ "sw": "Kiswahili",
+ "ta": "Tamil",
+ "te": "Telugu",
+ "tg": "Tajik",
+ "th": "Thai",
+ "ti": "Tigrinya",
+ "tk": "Turkmen",
+ "tn": "Setswana",
+ "tr": "Turkish",
+ "tt": "Tatar",
+ "ug": "Uyghur",
+ "uk": "Ukrainian",
+ "ur": "Urdu",
+ "uz": "Uzbek",
+ "vi": "Vietnamese",
+ "wo": "Wolof",
+ "xh": "isiXhosa",
+ "yo": "Yoruba",
+ "zhHans": "Chinese (Simplified)",
+ "zhHant": "Chinese (Traditional)",
+ "zu": "isiZulu"
+ },
+ "AcceptanceExpirationFrequency": {
+ "annually": "Annually",
+ "biannually": "Bi-annually",
+ "monthly": "Monthly",
+ "quarterly": "Quarterly"
},
- "ThemesEnabled": {
- "title": "Designs aktiviert",
- "tooltip": "Geben Sie an, ob der Benutzer ein benutzerdefiniertes visuelles Design verwenden darf."
- }
- },
+ "Wizard": {
+ "AgreementTargetEntityScope": {
+ "NotSelected": {
+ "label": "None selected"
+ },
+ "selectEntityTitle": "Select group",
+ "title": "Select group"
+ },
+ "PolicyFile": {
+ "Languages": {
+ "Empty": {
+ "default": "Select default language",
+ "nonDefault": "Select a language"
+ }
+ },
+ "Validations": {
+ "duplicateLanguage": "Oops, {0} appears to be selected multiple times. Language selection must be unique."
+ }
+ },
+ "PolicyTemplate": {
+ "InfoBox": {
+ "allGuestsAllApps": "A conditional access policy will be created for all guests and all cloud apps. This policy impacts the Azure portal. Once this is created you might be required to sign-out and sign-in.",
+ "allUsersAllApps": "A conditional access policy will be created for all users and all cloud apps. This policy impacts the Azure portal. Once this is created you will be required to sign-out and sign-in.",
+ "custom": "Select the users, groups, and apps that this Terms of Use will be applied to.",
+ "noPolicy": "This terms of use will appear in the grant control list when creating a conditional access policy."
+ }
+ },
+ "Section": {
+ "conditionalAccessSubtitle": "Enforce with conditional access policy templates",
+ "conditionalAccessTitle": "Conditional access",
+ "termsOfUseSubtitle": "Create and upload documents",
+ "termsOfUseTitle": "Terms of use"
+ },
+ "acceptanceDurationInfo": "The terms of use will be enforced immediately and each user will have to re-consent every specified number of days.",
+ "acceptanceDurationLabel": "Duration before re-acceptance required (days)",
+ "acceptanceDurationPlaceholder": "Example: '90'",
+ "acceptanceExpirationFrequencyInfo": "Require users to consent on a recurring basis.",
+ "acceptanceExpirationFrequencyLabel": "Frequency",
+ "acceptanceExpirationStartDateTimeInfo": "The terms of use will be enforced immediately and users will be required to re-consent on this date.",
+ "acceptanceExpirationStartDateTimeLabel": "Expire starting on",
+ "agreementIsPerDeviceAcceptanceRequiredInfo": "The end users will be required to consent to the terms of use on every device.",
+ "agreementIsPerDeviceAcceptanceRequiredLabel": "Require users to consent on every device",
+ "agreementIsViewingBeforeAcceptanceRequiredInfo": "The end users will be required to view the terms of use prior to accepting.",
+ "agreementIsViewingBeforeAcceptanceRequiredLabel": "Require users to expand the terms of use",
+ "agreementNameInfo": "Name will be used to manage the terms of use within the Azure portal.",
+ "agreementNameLabel": "Name",
+ "agreementNamePlaceholderText": "Example: 'All users terms of use'",
+ "agreementRequirmentLabel": "Required Upon",
+ "agreementTargetEntityLabel": "Users targeted",
+ "agreementUploadPolicyLabel": "Terms of use",
+ "agreementUploadPolicyPlaceholderText": "Upload required PDF",
+ "createButtonLabel": "Create",
+ "createPolicyInfo": "In order to enforce the terms of use, a conditional access policy is required. You can create a conditional access policy targeted to specific users and applications later or use one of the predefined templates.",
+ "createPolicyLabel": "Create a policy",
+ "isAcceptanceExpirationEnabledInfo": "The terms of use will be enforced immediately and all users will be forced to re-consent on a schedule.",
+ "isAcceptanceExpirationEnabledLabel": "Expire consents",
+ "pdfValidationInvalidFileFormat": "The file must be in the .pdf format.",
+ "policyFilesInfo": "Upload a PDF file containing the terms of use that your end users must accept. Based on end user preferences they will be shown the appropriate language or if not match the default language will be shown.
For end users agreeing on mobile devices, we recommend the PDF font size to be at least 24 pt.
Display name will be the title of the terms of use that is presented to the end user.",
+ "policyFilesLabel": "Terms of use document",
+ "policyTemplateInfo": "These templates are pre configured conditional access policies that are targeted to specific users and applications.",
+ "policyTemplateLabel": "Policy templates",
+ "title": "New terms of use"
+ }
+ },
+ "TACSettings": {
+ "edgeSettings": "Edge-Konfigurationseinstellungen",
+ "edgeWindowsDataProtectionSettings": "Microsoft Edge-Datenschutzeinstellungen (Windows) – Vorschau",
+ "edgeWindowsSettings": "Microsoft Edge-Konfigurationseinstellungen (Windows) – Vorschau",
+ "generalAppConfig": "Allgemeine App-Konfiguration",
+ "generalSettings": "Allgemeine Konfigurationseinstellungen",
+ "outlookSMIMEConfig": "Outlook-S/MIME-Einstellungen",
+ "outlookSettings": "Outlook-Konfigurationseinstellungen",
+ "sMIME": "S/MIME"
+ },
+ "MicrosoftEdgeChannel": {
+ "beta": "Beta",
+ "dev": "Dev",
+ "stable": "Stable"
+ },
+ "WipPolicySettings": {
+ "addNetworkBoundary": "Netzwerkgrenze hinzufügen",
+ "addNetworkBoundaryButton": "Netzwerkgrenze hinzufügen...",
+ "allowWindowsSearch": "Die Suche nach verschlüsselten Daten und Store-Apps durch Windows Search zulassen",
+ "authoritativeIpRanges": "Liste der Unternehmens-IP-Bereiche ist autoritativ (keine automatische Erkennung)",
+ "authoritativeProxyServers": "Liste der Unternehmensproxyserver ist autoritativ (keine automatische Erkennung)",
+ "boundaryType": "Grenztyp",
+ "cloudResources": "Cloudressourcen",
+ "corporateIdentity": "Unternehmensidentität",
+ "dataRecoveryCert": "Laden Sie ein DRA-Zertifikat hoch, um die Wiederherstellung verschlüsselter Daten zuzulassen.",
+ "editNetworkBoundary": "Netzwerkgrenze bearbeiten",
+ "enrollmentState": "Registrierungsstatus",
+ "iPv4Ranges": "IPv4-Bereiche",
+ "iPv6Ranges": "IPv6-Bereiche",
+ "internalProxyServers": "Interne Proxyserver",
+ "maxInactivityTime": "Die maximal zulässige Zeit (in Minuten) nach dem Wechsel des Gerät in den Leerlauf, bis das Gerät durch die PIN oder ein Kennwort gesperrt wird",
+ "maxPasswordAttempts": "Zulässige Anzahl von Authentifizierungsfehlern, bevor das Gerät zurückgesetzt wird",
+ "mdmDiscoveryUrl": "URL für MDM-Ermittlung",
+ "mdmRequiredSettingsInfo": "Diese Richtlinie gilt nur für die Windows 10 Anniversary-Edition und höher. Diese Richtlinie verwendet Windows Information Protection (WIP) zum Anwenden von Schutz.",
+ "minimumPinLength": "Legen Sie die für die PIN erforderliche Mindestanzahl an Zeichen fest.",
+ "name": "Name",
+ "networkBoundariesGridEmptyText": "Hier werden alle von Ihnen hinzugefügten Netzwerkgrenzen angezeigt.",
+ "networkBoundary": "Netzwerkgrenze",
+ "networkDomainNames": "Netzwerkdomänen",
+ "neutralResources": "Neutrale Ressourcen",
+ "passportForWork": "Verwenden Sie Windows Hello for Business als Methode zum Anmelden bei Windows.",
+ "pinExpiration": "Geben Sie den Zeitraum (in Tagen) an, für den eine PIN verwendet werden kann, bevor das System den Benutzer zur Änderung auffordert.",
+ "pinHistory": "Geben Sie die Anzahl der letzten PINs an, die einem Benutzerkonto zugeordnet und nicht wiederverwendet werden können.",
+ "pinLowercaseLetters": "Konfigurieren Sie die Verwendung von Kleinbuchstaben in der Windows Hello for Business-PIN.",
+ "pinSpecialCharacters": "Konfigurieren Sie die Verwendung von Sonderzeichen in der Windows Hello for Business-PIN.",
+ "pinUppercaseLetters": "Konfigurieren Sie die Verwendung von Großbuchstaben in der Windows Hello for Business-PIN.",
+ "protectUnderLock": "App-Zugriff auf Unternehmensdaten verhindern, wenn das Gerät gesperrt ist (gilt nur für Windows 10 Mobile)",
+ "protectedDomainNames": "Geschützte Domänen",
+ "proxyServers": "Proxyserver",
+ "requireAppPin": "App-PIN deaktivieren, wenn Geräte-PIN verwaltet wird",
+ "requiredSettings": "Erforderliche Einstellungen",
+ "requiredSettingsInfo": "Durch das Ändern des Bereichs oder das Entfernen dieser Richtlinie werden die Unternehmensdaten entschlüsselt.",
+ "revokeOnMdmHandoff": "Zugriff auf geschützte Daten widerrufen, wenn das Gerät bei MDM registriert wird",
+ "revokeOnUnenroll": "Beim Aufheben der Registrierung Verschlüsselungsschlüssel widerrufen",
+ "rmsTemplateForEdp": "Geben Sie die Vorlagen-ID zur Verwendung für Azure RMS an.",
+ "showWipIcon": "Zeigen Sie das Datenschutzsymbol des Unternehmens an.",
+ "type": "Typ",
+ "useRmsForWip": "Verwenden Sie Azure RMS für WIP.",
+ "value": "Wert",
+ "weRequiredSettingsInfo": "Diese Richtlinie gilt nur für Windows 10 Creators Update und höher. Diese Richtlinie verwendet Windows Information Protection (WIP) und Windows MAM zum Anwenden von Schutz.",
+ "wipProtectionMode": "Windows Information Protection-Modus",
+ "withEnrollment": "Mit Registrierung",
+ "withoutEnrollment": "Ohne Registrierung"
+ },
+ "OfficeApplicationAdditionalType": {
+ "projectProRetail": "Projekt Online-Desktopclient",
+ "visioProRetail": "Visio Online-Plan 2"
+ },
+ "Countries": {
+ "ae": "Vereinigte Arabische Emirate",
+ "ag": "Antigua und Barbuda",
+ "ai": "Anguilla",
+ "al": "Albanien",
+ "am": "Armenien",
+ "ao": "Angola",
+ "ar": "Argentinien",
+ "at": "Österreich",
+ "au": "Australien",
+ "az": "Aserbaidschan",
+ "bb": "Barbados",
+ "be": "Belgien",
+ "bf": "Burkina Faso",
+ "bg": "Bulgarien",
+ "bh": "Bahrain",
+ "bj": "Benin",
+ "bm": "Bermuda",
+ "bn": "Brunei Darussalam",
+ "bo": "Bolivien",
+ "br": "Brasilien",
+ "bs": "Bahamas",
+ "bt": "Bhutan",
+ "bw": "Botsuana",
+ "by": "Belarus",
+ "bz": "Belize",
+ "ca": "Kanada",
+ "cg": "Republik Kongo",
+ "ch": "Schweiz",
+ "cl": "Chile",
+ "cn": "China",
+ "co": "Kolumbien",
+ "cr": "Costa Rica",
+ "cv": "Cabo Verde",
+ "cy": "Zypern",
+ "cz": "Tschechische Republik",
+ "de": "Deutschland",
+ "dk": "Dänemark",
+ "dm": "Dominica",
+ "do": "Dominikanische Republik",
+ "dz": "Algerien",
+ "ec": "Ecuador",
+ "ee": "Estland",
+ "eg": "Ägypten",
+ "es": "Spanien",
+ "fi": "Finnland",
+ "fj": "Fidschi",
+ "fm": "Föderierte Staaten von Mikronesien",
+ "fr": "Frankreich",
+ "gb": "Vereinigtes Königreich",
+ "gd": "Grenada",
+ "gh": "Ghana",
+ "gm": "Gambia",
+ "gr": "Griechenland",
+ "gt": "Guatemala",
+ "gw": "Guinea-Bissau",
+ "gy": "Guyana",
+ "hk": "Hongkong",
+ "hn": "Honduras",
+ "hr": "Kroatien",
+ "hu": "Ungarn",
+ "id": "Indonesien",
+ "ie": "Irland",
+ "il": "Israel",
+ "in": "Indien",
+ "is": "Island",
+ "it": "Italien",
+ "jm": "Jamaika",
+ "jo": "Jordanien",
+ "jp": "Japan",
+ "ke": "Kenia",
+ "kg": "Kirgisistan",
+ "kh": "Kambodscha",
+ "kn": "St. Kitts und Nevis",
+ "kr": "Republik Korea",
+ "kw": "Kuwait",
+ "ky": "Kaimaninseln",
+ "kz": "Kasachstan",
+ "la": "Demokratische Volksrepublik Laos",
+ "lb": "Libanon",
+ "lc": "St. Lucia",
+ "lk": "Sri Lanka",
+ "lr": "Liberia",
+ "lt": "Litauen",
+ "lu": "Luxemburg",
+ "lv": "Lettland",
+ "md": "Republik Moldau",
+ "mg": "Madagaskar",
+ "mk": "Nordmazedonien",
+ "ml": "Mali",
+ "mn": "Mongolei",
+ "mo": "Macau",
+ "mr": "Mauretanien",
+ "ms": "Montserrat",
+ "mt": "Malta",
+ "mu": "Mauritius",
+ "mw": "Malawi",
+ "mx": "Mexiko",
+ "my": "Malaysia",
+ "mz": "Mosambik",
+ "na": "Namibia",
+ "ne": "Niger",
+ "ng": "Nigeria",
+ "ni": "Nicaragua",
+ "nl": "Niederlande",
+ "no": "Norwegen",
+ "np": "Nepal",
+ "nz": "Neuseeland",
+ "om": "Oman",
+ "pa": "Panama",
+ "pe": "Peru",
+ "pg": "Papua-Neuguinea",
+ "ph": "Philippinen",
+ "pk": "Pakistan",
+ "pl": "Polen",
+ "pt": "Portugal",
+ "pw": "Palau",
+ "py": "Paraguay",
+ "qa": "Katar",
+ "ro": "Rumänien",
+ "ru": "Russische Föderation",
+ "sa": "Saudi-Arabien",
+ "sb": "Salomonen",
+ "sc": "Seychellen",
+ "se": "Schweden",
+ "sg": "Singapur",
+ "si": "Slowenien",
+ "sk": "Slowakei",
+ "sl": "Sierra Leone",
+ "sn": "Senegal",
+ "sr": "Suriname",
+ "st": "São Tomé und Príncipe",
+ "sv": "El Salvador",
+ "sz": "Swasiland",
+ "tc": "Turks- und Caicosinseln",
+ "td": "Tschad",
+ "th": "Thailand",
+ "tj": "Tadschikistan",
+ "tm": "Turkmenistan",
+ "tn": "Tunesien",
+ "tr": "Türkei",
+ "tt": "Trinidad und Tobago",
+ "tw": "Taiwan",
+ "tz": "Tansania",
+ "ua": "Ukraine",
+ "ug": "Uganda",
+ "us": "Vereinigte Staaten",
+ "uy": "Uruguay",
+ "uz": "Usbekistan",
+ "vc": "St. Vincent und die Grenadinen",
+ "ve": "Venezuela",
+ "vg": "Britische Jungferninseln",
+ "vn": "Vietnam",
+ "ye": "Jemen",
+ "za": "Südafrika",
+ "zw": "Simbabwe"
+ },
+ "OfficeUpdateChannel": {
+ "current": "Aktueller Kanal",
+ "deferred": "Halbjährlicher Enterprise-Kanal",
+ "firstReleaseCurrent": "Aktueller Kanal (Vorschau)",
+ "firstReleaseDeferred": "Halbjährlicher Enterprise-Kanal (Vorschau)",
+ "monthlyEnterprise": "Monatlicher Enterprise-Kanal",
+ "placeHolder": "Eine auswählen"
+ },
+ "AppProtection": {
+ "allAppTypes": "Auf alle App-Typen ausrichten",
+ "androidPlatformLabel": "Android",
+ "appsInAndroidWorkProfile": "Apps in Android for Work-Profil",
+ "appsOnIntuneManagedDevices": "Apps auf durch Intune verwalteten Geräten",
+ "appsOnUnmanagedDevices": "Apps auf nicht verwalteten Geräten",
+ "iOSPlatformLabel": "iOS/iPadOS",
+ "iosAndroidMacPlatformLabel": "iOS, Android, Mac",
+ "iosAndroidPlatformLabel": "iOS, Android",
+ "macPlatformLabel": "Mac",
+ "notAvailable": "Nicht verfügbar",
+ "windows10PlatformLabel": "Windows 10 und höher",
+ "withEnrollment": "Mit Registrierung",
+ "withoutEnrollment": "Ohne Registrierung"
+ },
+ "InstallContextType": {
+ "device": "Gerät",
+ "deviceContext": "Gerätekontext",
+ "user": "Benutzer",
+ "userContext": "Benutzerkontext"
+ },
+ "ProactiveRemediations": {
+ "Create": {
+ "Basics": {
+ "DescriptionMultiLineTextBox": {
+ "label": "Beschreibung",
+ "placeholder": "Beschreibung eingeben"
+ },
+ "NameTextBox": {
+ "label": "Name",
+ "placeholder": "Namen eingeben"
+ },
+ "PublisherTextBox": {
+ "label": "Herausgeber",
+ "placeholder": "Geben Sie einen Herausgeber ein."
+ },
+ "VersionTextBox": {
+ "label": "Version"
+ },
+ "headerDescription": "Erstellen Sie ein neues benutzerdefiniertes Skriptpaket aus von Ihnen geschriebenen Skripts für Erkennung und Wartung."
+ },
+ "ScopeTags": {
+ "headerDescription": "Wählen Sie mindestens eine Gruppe aus, um das Skriptpaket zuzuweisen."
+ },
+ "Settings": {
+ "DetectionScriptMultiLineTextBox": {
+ "label": "Erkennungsskript",
+ "placeholder": "Text für Eingabeskript",
+ "requiredValidationMessage": "Geben Sie das Erkennungsskript ein."
+ },
+ "EnforceScriptSignatureCheckOptionPicker": {
+ "label": "Skriptsignaturprüfung erzwingen"
+ },
+ "LoggedOnCredentialsOptionPicker": {
+ "label": "Dieses Skript mit den Anmeldeinformationen des angemeldeten Benutzers ausführen"
+ },
+ "RemediationScript": {
+ "infoBox": "Dieses Skript wird im reinen Erkennungsmodus ausgeführt, weil kein Wartungsskript vorhanden ist."
+ },
+ "RemediationScriptMultiLineTextBox": {
+ "label": "Wiederherstellungsskript",
+ "placeholder": "Text für Eingabeskript"
+ },
+ "RunIn64BitPSOptionPicker": {
+ "label": "Skript in 64-Bit-PowerShell ausführen"
+ },
+ "ScriptMultiLineTextBox": {
+ "base64EncodingValidationMessage": "Ungültiges Skript. Mindestens ein im Skript verwendetes Zeichen ist ungültig."
+ },
+ "headerDescription": "Erstellen Sie ein benutzerdefiniertes Skriptpaket aus Skripts, die Sie geschrieben haben. Standardmäßig werden Skripts täglich auf zugewiesenen Geräten ausgeführt.",
+ "infoBox": "Dieses Skript ist schreibgeschützt. Einige der Einstellungen für dieses Skript sind möglicherweise deaktiviert."
+ },
+ "title": "Benutzerdefiniertes Skript erstellen",
+ "ScriptProperties": {
+ "GridHeaders": {
+ "interval": "Intervall",
+ "time": "Datum und Uhrzeit"
+ },
+ "Interval": {
+ "day": "Wird jeden Tag wiederholt",
+ "days": "Wird alle {0} Tage wiederholt",
+ "hour": "Wird jede Stunde wiederholt",
+ "hours": "Wird alle {0} Stunden wiederholt",
+ "month": "Wird jeden Monat wiederholt",
+ "months": "Wird alle {0} Monate wiederholt",
+ "week": "Wird jede Woche wiederholt",
+ "weeks": "Wird alle {0} Wochen wiederholt"
+ },
+ "Time": {
+ "utc": "{0} (UTC)",
+ "utcWithDate": "{0} (UTC) am {1}",
+ "withDate": "{0} am {1}"
+ }
+ }
+ },
+ "Edit": {
+ "title": "Bearbeiten: {0}"
+ }
+ },
+ "EdgeAppConfig": {
+ "AllowedURLs": {
+ "title": "Zulässige URLs",
+ "tooltip": "Geben Sie die Websites an, auf die Ihre Benutzer im Arbeitskontext zugreifen dürfen. Andere Websites sind nicht zulässig. Sie können entweder eine Liste der zulässigen oder der blockierten Websites konfigurieren, aber nicht beides."
+ },
+ "ApplicationProxyRedirection": {
+ "header": "Anwendungsproxy",
+ "title": "Anwendungsproxyumleitung",
+ "tooltip": "Hiermit aktivieren Sie die App-Proxyumleitung, um Benutzern den Zugriff auf Unternehmenslinks und lokale Web-Apps zu erteilen."
+ },
+ "BlockedURLs": {
+ "title": "Blockierte URLs",
+ "tooltip": "Geben Sie die Websites an, die für Ihre Benutzer im Arbeitskontext blockiert sind. Alle anderen Websites sind zulässig. Sie können entweder eine Liste der zulässigen oder der blockierten Websites konfigurieren, aber nicht beides."
+ },
+ "Bookmarks": {
+ "header": "Verwaltete Lesezeichen",
+ "tooltip": "Geben Sie eine Liste der mit Lesezeichen versehenen URLs ein, die Ihren Benutzern bei der Verwendung von Microsoft Edge in ihrem Arbeitskontext zur Verfügung stehen.",
+ "uRL": "URL"
+ },
+ "HomepageURL": {
+ "header": "Verwaltete Homepage",
+ "title": "URL-Verknüpfung zur Startseite",
+ "tooltip": "Konfigurieren Sie eine URL-Verknüpfung zur Startseite, die Benutzern als erstes Symbol unterhalb der Suchleiste angezeigt wird, wenn sie in Microsoft Edge eine neue Registerkarte öffnen."
+ },
+ "PersonalContext": {
+ "label": "Eingeschränkte Sites an persönlichen Kontext umleiten",
+ "tooltip": "Konfigurieren Sie, ob Benutzer zu ihrem persönlichen Kontext wechseln dürfen, um eingeschränkte Websites zu öffnen."
+ }
+ },
+ "BooleanActions": {
+ "allow": "Erteilen Sie",
+ "block": "Blockieren",
+ "configured": "Konfiguriert",
+ "disable": "Deaktivieren",
+ "dontRequire": "Nicht anfordern",
+ "enable": "Aktivieren",
+ "hide": "Ausblenden",
+ "limit": "Limit",
+ "notConfigured": "Nicht konfiguriert",
+ "require": "Anfordern",
+ "show": "Anzeigen",
+ "yes": "Ja"
+ },
+ "ArchitectureOptions": {
+ "sixtyFourBit": "64 Bit",
+ "thirtyTwoBit": "32 Bit"
+ },
+ "WindowsQualityUpdateDaysUntilForcedReboot": {
+ "oneDay": "1 Tag",
+ "twoDays": "2 Tage",
+ "zeroDays": "0 Tage"
+ },
"SoftwareUpdates": {
"BladeTitles": {
"overview": "Übersicht"
@@ -10800,66 +10878,732 @@
"notScannedYet": "Noch nicht überprüft",
"outOfDateIosDevices": "Veraltete iOS-Geräte"
},
- "ScheduledAction": {
- "Form": {
- "editBlockActionInfo": "Für alle Konformitätsrichtlinien ist eine Blockierungsaktion erforderlich.",
- "graceperiod": "Zeitplan (Tage nach Inkompatibilität)",
- "graceperiodInfo": "Geben Sie die Anzahl von Tagen nach Feststellen der Inkompatibilität an, nach denen diese Aktion für das Gerät des Benutzers ausgelöst werden soll.",
- "subtitle": "Aktionsparameter angeben",
- "title": "Aktionsparameter"
- },
- "List": {
- "gracePeriodDay": "{0} Tag nach Inkompatibilität",
- "gracePeriodDays": "{0} Tage nach Inkompatibilität",
- "gracePeriodHour": "{0} Stunde nach Nichtkonformität",
- "gracePeriodHours": "{0} Stunden nach Nichtkonformität",
- "gracePeriodMinute": "{0} Minute nach Nichtkonformität",
- "gracePeriodMinutes": "{0} Minuten nach Nichtkonformität",
- "immediately": "Sofort",
- "schedule": "Zeitplan",
- "scheduleInfoBalloon": "Tage nach Nichtkonformität",
- "subtitle": "Aktionsfolge auf nicht kompatiblen Geräte angeben",
- "title": "Aktionen"
- },
- "Notification": {
- "additionalEmailLabel": "Andere",
- "additionalRecipients": "Zusätzliche Empfänger (per E-Mail)",
- "additionalRecipientsBladeTitle": "Zusätzliche Empfänger auswählen",
- "emailAddressPrompt": "E-Mail-Adressen eingeben (durch Kommas getrennt)",
- "invalidEmail": "Ungültige E-Mail-Adresse",
- "messageTemplate": "Nachrichtenvorlage",
- "noneSelected": "Nichts ausgewählt",
- "notSelected": "Nicht ausgewählt",
- "numSelected": "{0} ausgewählt",
- "selected": "Ausgewählt"
+ "ConfigurationTypes": {
+ "Table": {
+ "androidDeviceOwnerGeneral": "Geräteeinschränkungen (Gerätebesitzer)",
+ "androidForWorkGeneral": "Geräteeinschränkungen (Arbeitsprofil)"
+ },
+ "androidCustom": "Benutzerdefiniert",
+ "androidDeviceOwnerGeneral": "Geräteeinschränkungen",
+ "androidDeviceOwnerPkcs": "PKCS-Zertifikat",
+ "androidDeviceOwnerScep": "SCEP-Zertifikat",
+ "androidDeviceOwnerTrustedCertificate": "Vertrauenswürdiges Zertifikat",
+ "androidDeviceOwnerVpn": "VPN",
+ "androidDeviceOwnerWiFi": "WLAN",
+ "androidEmailProfile": "E-Mail (nur Samsung KNOX)",
+ "androidForWorkCustom": "Benutzerdefiniert",
+ "androidForWorkEmailProfile": "E-Mail",
+ "androidForWorkGeneral": "Geräteeinschränkungen",
+ "androidForWorkImportedPFX": "Importiertes PKCS-Zertifikat",
+ "androidForWorkOemConfig": "OEMConfig",
+ "androidForWorkPKCS": "PKCS-Zertifikat",
+ "androidForWorkSCEP": "SCEP-Zertifikat",
+ "androidForWorkTrustedCertificate": "Vertrauenswürdiges Zertifikat",
+ "androidForWorkVpn": "VPN",
+ "androidForWorkWiFi": "WLAN",
+ "androidGeneral": "Geräteeinschränkungen",
+ "androidImportedPFX": "Importiertes PKCS-Zertifikat",
+ "androidPKCS": "PKCS-Zertifikat",
+ "androidSCEP": "SCEP-Zertifikat",
+ "androidTrustedCertificate": "Vertrauenswürdiges Zertifikat",
+ "androidVPN": "VPN",
+ "androidWiFi": "WLAN",
+ "androidZebraMx": "MX-Profil (nur Zebra)",
+ "complianceAndroid": "Android-Kompatibilitätsrichtlinie",
+ "complianceAndroidDeviceOwner": "Vollständig verwaltetes, dediziertes und unternehmenseigenes Arbeitsprofil",
+ "complianceAndroidEnterprise": "Arbeitsprofil \"Persönliches Eigentum\"",
+ "complianceAndroidForWork": "Android for Work-Kompatibilitätsrichtlinie",
+ "complianceIos": "iOS-Konformitätsrichtlinie",
+ "complianceMac": "Mac-Kompatibilitätsrichtlinie",
+ "complianceWindows10": "Compliancerichtlinie für Windows 10 und höher",
+ "complianceWindows10Mobile": "Windows 10 Mobile-Kompatibilitätsrichtlinie",
+ "complianceWindows8": "Windows 8-Kompatibilitätsrichtlinie",
+ "complianceWindowsPhone": "Windows Phone-Kompatibilitätsrichtlinie",
+ "exchangeActiveSync": "Exchange Active Sync",
+ "iosCustom": "Benutzerdefiniert",
+ "iosDerivedCredentialAuthenticationConfiguration": "Abgeleitete PIV-Anmeldeinformationen",
+ "iosDeviceFeatures": "Gerätefunktionen",
+ "iosEDU": "Bildung",
+ "iosEducation": "Bildung",
+ "iosEmailProfile": "E-Mail",
+ "iosGeneral": "Geräteeinschränkungen",
+ "iosImportedPFX": "Importiertes PKCS-Zertifikat",
+ "iosPKCS": "PKCS-Zertifikat",
+ "iosPresets": "Voreinstellungen",
+ "iosSCEP": "SCEP-Zertifikat",
+ "iosTrustedCertificate": "Vertrauenswürdiges Zertifikat",
+ "iosVPN": "VPN",
+ "iosVPNZscaler": "VPN",
+ "iosWiFi": "WLAN",
+ "macCustom": "Benutzerdefiniert",
+ "macDeviceFeatures": "Gerätefunktionen",
+ "macEndpointProtection": "Endpoint Protection",
+ "macExtensions": "Erweiterungen",
+ "macGeneral": "Geräteeinschränkungen",
+ "macImportedPFX": "Importiertes PKCS-Zertifikat",
+ "macSCEP": "SCEP-Zertifikat",
+ "macTrustedCertificate": "Vertrauenswürdiges Zertifikat",
+ "macVPN": "VPN",
+ "macWiFi": "WLAN",
+ "settingsCatalog": "Einstellungskatalog (Vorschau)",
+ "unsupported": "Nicht unterstützt",
+ "windows10AdministrativeTemplate": "Administrative Vorlagen (Vorschau)",
+ "windows10Atp": "Microsoft Defender für Endpunkt (Desktopgeräte, auf denen Windows 10 oder höher ausgeführt wird)",
+ "windows10Custom": "Benutzerdefiniert",
+ "windows10DesktopSoftwareUpdate": "Softwareupdates",
+ "windows10DeviceFirmwareConfigurationInterface": "Schnittstelle zur Konfiguration der Gerätefirmware",
+ "windows10EmailProfile": "E-Mail",
+ "windows10EndpointProtection": "Endpoint Protection",
+ "windows10EnterpriseDataProtection": "Windows Information Protection",
+ "windows10General": "Geräteeinschränkungen",
+ "windows10ImportedPFX": "Importiertes PKCS-Zertifikat",
+ "windows10Kiosk": "Kiosk",
+ "windows10NetworkBoundary": "Netzwerkgrenze",
+ "windows10PKCS": "PKCS-Zertifikat",
+ "windows10PolicyOverride": "Gruppenrichtlinie außer Kraft setzen",
+ "windows10SCEP": "SCEP-Zertifikat",
+ "windows10SecureAssessmentProfile": "Education-Profil",
+ "windows10SharedPC": "Freigegebenes, von mehreren Benutzern verwendetes Gerät",
+ "windows10TeamGeneral": "Geräteeinschränkungen (Windows 10 Team)",
+ "windows10TrustedCertificate": "Vertrauenswürdiges Zertifikat",
+ "windows10VPN": "VPN",
+ "windows10WiFi": "WLAN",
+ "windows10WiFiCustom": "WLAN (benutzerdefiniert)",
+ "windows8General": "Geräteeinschränkungen",
+ "windows8SCEP": "SCEP-Zertifikat",
+ "windows8TrustedCertificate": "Vertrauenswürdiges Zertifikat",
+ "windows8VPN": "VPN",
+ "windows8WiFi": "WLAN (Import)",
+ "windowsDeliveryOptimization": "Übermittlungsoptimierung",
+ "windowsDomainJoin": "Domänenbeitritt",
+ "windowsEditionUpgrade": "Editionsupgrade und Moduswechsel",
+ "windowsIdentityProtection": "Identity Protection",
+ "windowsPhoneCustom": "Benutzerdefiniert",
+ "windowsPhoneEmailProfile": "E-Mail",
+ "windowsPhoneGeneral": "Geräteeinschränkungen",
+ "windowsPhoneImportedPFX": "Importiertes PKCS-Zertifikat",
+ "windowsPhoneSCEP": "SCEP-Zertifikat",
+ "windowsPhoneTrustedCertificate": "Vertrauenswürdiges Zertifikat",
+ "windowsPhoneVPN": "VPN",
+ "IosUpdate": "Richtlinie für iOS-Updates"
+ },
+ "OfficeSuiteAppsTab": {
+ "acceptLicenseOnBehalfOfUsersLabel": "Microsoft-Softwarelizenzbedingungen im Auftrag von Benutzern akzeptieren",
+ "appSuiteConfigurationLabel": "App-Suite-Konfiguration",
+ "appSuiteInformationLabel": "Informationen zur App-Suite",
+ "appsToBeInstalledLabel": "Als Teil der Suite zu installierende Apps",
+ "architectureLabel": "Architektur",
+ "architectureTooltip": "Hiermit wird definiert, ob auf Geräten die 32-Bit- oder die 64-Bit-Edition von Microsoft 365-Apps installiert wird.",
+ "configurationDesignerLabel": "Konfigurations-Designer",
+ "configurationFileLabel": "Konfigurationsdatei",
+ "configurationSettingsFormatLabel": "Format der Konfigurationseinstellungen",
+ "configureAppSuiteLabel": "App-Suite konfigurieren",
+ "configuredLabel": "Konfiguriert",
+ "currentVersionLabel": "Aktuelle Version",
+ "currentVersionTooltip": "Dies ist die aktuelle Office-Version, die in dieser Suite konfiguriert ist. Dieser Wert wird aktualisiert, wenn eine neuere Version konfiguriert und gespeichert wird.",
+ "enableMicrosoftSearchAsDefaultTooltip": "Installiert einen Hintergrunddienst, mit dem Sie ermitteln können, ob eine Microsoft Search in Bing-Erweiterung für Google Chrome auf dem Gerät installiert ist.",
+ "enterXmlDataLabel": "XML-Daten eingeben",
+ "languagesLabel": "Sprachen",
+ "languagesTooltip": "Intune installiert Office per Voreinstellung mit der Standardsprache des Betriebssystems. Wählen Sie zusätzliche Sprachen aus, die Sie installieren möchten.",
+ "learnMoreText": "Weitere Informationen",
+ "newUpdateChannelTooltip": "Definiert, wie oft die App mit neuen Features aktualisiert wird.",
+ "noCurrentVersionText": "Keine aktuelle Version.",
+ "noLanguagesSelectedLabel": "Keine Sprachen ausgewählt",
+ "notConfiguredLabel": "Nicht konfiguriert",
+ "propertiesLabel": "Eigenschaften",
+ "removeOtherVersionsLabel": "Andere Versionen entfernen",
+ "removeOtherVersionsTooltip": "Wählen Sie Ja aus, um andere Office-Versionen (MSI) von Benutzergeräten zu entfernen.",
+ "selectOfficeAppsLabel": "Office-Apps auswählen",
+ "selectOfficeAppsTooltip": "Wählen Sie die Office 365-App aus, die Sie als Teil der Suite installieren möchten.",
+ "selectOtherOfficeAppsLabel": "Andere Office-Apps auswählen (Lizenz erforderlich)",
+ "selectOtherOfficeAppsTooltip": "Wenn Sie Lizenzen für diese zusätzlichen Office-Apps besitzen, können Sie auch diese mit Intune zuweisen.",
+ "specificVersionLabel": "Spezifische Version",
+ "updateChannelLabel": "Updatekanal",
+ "updateChannelTooltip": "Definiert, wie häufig die App mit neuen Features aktualisiert wird.
\r\nMonatlich: Neue Office-Features werden den Benutzern bereitgestellt, sobald sie verfügbar sind.
\r\nMonatlicher Enterprise-Kanal: Neue Office-Features werden den Benutzern monatlich (am zweiten Dienstag im Monat) bereitgestellt.
\r\nMonatlich (gezielt): Bietet eine frühe Vorschau für das bevorstehende Release im monatlichen Kanal. Es handelt sich um einen unterstützten Updatekanal, der in der Regel mindestens eine Woche vorab verfügbar ist, wenn es sich um ein Release mit neuen Features im monatlichen Kanal handelt.
\r\nHalbjährlich: Neue Office-Features werden den Benutzern nur wenige Male im Jahr bereitgestellt.
\r\nHalbjährlich (gezielt): Pilotbenutzer und Anwendungskompatibilitätstester erhalten die Möglichkeit, das nächste halbjährliche Release zu testen.",
+ "useMicrosoftSearchAsDefault": "Hintergrunddienst für Microsoft Search in Bing installieren",
+ "useSharedComputerActivationLabel": "Aktivierung gemeinsam genutzter Computer verwenden",
+ "useSharedComputerActivationTooltip": "Durch das Aktivieren freigegebener Computer können Sie Microsoft 365-Apps auf Computern bereitstellen, die von mehreren Benutzern verwendet werden. Normalerweise können Benutzer Microsoft 365-Apps nur auf einer begrenzten Anzahl von Geräten installieren und aktivieren, z. B. auf 5 PCs. Die Verwendung von Microsoft 365-Apps mit Aktivierung freigegebener Computer wird nicht auf diesen Grenzwert angerechnet.",
+ "versionToInstallLabel": "Zu installierende Version",
+ "versionToInstallTooltip": "Wählen Sie die Office-Version aus, die installiert werden soll.",
+ "xLanguagesSelectedLabel": "{0} Sprache(n) ausgewählt",
+ "xmlConfigurationLabel": "XML-Konfiguration"
+ },
+ "EnrollmentRestrictions": {
+ "DeletePayloadLink": {
+ "content": "\"{0}\" ist in mindestens einem Richtliniensatz enthalten. Wenn Sie \"{0}\" löschen, können Sie das Profil nicht mehr über diese Richtliniensätze zuweisen. Dennoch löschen?",
+ "contentWithError": "\"{0}\" ist möglicherweise in mindestens einem Richtliniensatz enthalten. Wenn Sie \"{0}\" löschen, können Sie sie nicht mehr über diese Richtliniensätze zuweisen. Dennoch löschen?",
+ "header": "Möchten Sie diese Einschränkung löschen?"
+ },
+ "DeviceLimit": {
+ "description": "Legt die maximale Anzahl von Geräten fest, die ein Benutzer registrieren kann.",
+ "header": "Einschränkungen zum Gerätelimit",
+ "info": "Definieren Sie, wie viele Geräte jeder Benutzer registrieren darf."
+ },
+ "DeviceType": {
+ "VersionValidation": {
+ "aOSP": "1.0 oder höher erforderlich.",
+ "android": "Geben Sie eine gültige Versionsnummer ein. Beispiele: 5.0, 5.5.1, 6.0.0.1",
+ "androidForWork": "Geben Sie eine gültige Versionsnummer ein. Beispiele: 5.0, 5.1.1",
+ "iOS": "Geben Sie eine gültige Versionsnummer ein. Beispiele: 9.0, 10.0, 9.0.2",
+ "mac": "Geben Sie eine gültige Versionsnummer ein. Beispiele: 10, 10.10, 10.10.1",
+ "min": "Der Mindestwert darf nicht unter {0} liegen.",
+ "minMax": "Die Mindestversion darf nicht höher als die maximale Version sein.",
+ "windows": "Version 10.0 oder höher erforderlich. Lassen Sie die Einstellung leer, um 8.1-Geräte zuzulassen.",
+ "windowsMobile": "Version 10.0 oder höher erforderlich. Lassen Sie die Einstellung leer, um 8.1-Geräte zuzulassen."
+ },
+ "allPlatformsBlocked": "Alle Geräteplattformen sind blockiert. Lassen Sie die Plattformregistrierung zu, um die Plattformkonfiguration zu aktivieren.",
+ "blockManufacturerPlaceHolder": "Herstellername",
+ "blockManufacturersHeader": "Blockierte Hersteller",
+ "cannotRestrict": "Einschränkung nicht unterstützt",
+ "configurationDescription": "Legt die Einschränkungen in Bezug auf Plattformkonfigurationen fest, die für ein Gerät erfüllt werden müssen, damit das Gerät registriert werden kann. Verwenden Sie Konformitätsrichtlinien, um Geräte nach der Registrierung einzuschränken. Definieren Sie Versionen als \"Hauptversion.Nebenversion.Build\". Versionseinschränkungen gelten nur für Geräte, die beim Unternehmensportal registriert sind. Intune stuft Geräte standardmäßig als privat ein. Um Geräte als unternehmenseigen zu klassifizieren, sind zusätzliche Aktionen erforderlich.",
+ "configurationDescriptionLabel": "Weitere Informationen zum Festlegen von Registrierungseinschränkungen",
+ "configurations": "Plattformen konfigurieren",
+ "deviceManufacturer": "Gerätehersteller",
+ "header": "Einschränkungen zum Gerätetyp",
+ "info": "Definieren Sie, welche Plattformen, Versionen und Verwaltungstypen eine Registrierung durchführen können.",
+ "manufacturer": "Hersteller",
+ "max": "Max.",
+ "maxVersion": "Höchste zulässige Version",
+ "min": "Min",
+ "minVersion": "Mindestversion",
+ "newPlatforms": "Es sind neue zugelassene Plattformen verfügbar. Erwägen Sie eine Aktualisierung der Plattformkonfigurationen.",
+ "personal": "Persönliches Eigentum",
+ "platform": "Plattform",
+ "platformDescription": "Sie können die Registrierung der folgenden Plattformen zulassen. Nur blockierte Plattformen werden nicht unterstützt. Zugelassen Plattformen können mit zusätzlichen Registrierungsbeschränkungen konfiguriert werden.",
+ "platformSettings": "Plattformeinstellungen",
+ "platforms": "Plattformen auswählen",
+ "platformsSelected": "{0} Plattformen ausgewählt",
+ "type": "Typ",
+ "versions": "Versionen",
+ "versionsRange": "Zulässiger Bereich für Mindestversion/maximale Version:",
+ "windowsTooltip": "Schränkt die Registrierung über mobile Geräteverwaltung ein. Schränkt die Installation des PC-Agents nicht ein. Nur Windows 10- und Windows 11-Versionen werden unterstützt. Lassen Sie die Versionen leer, um Windows 8.1 zuzulassen."
+ },
+ "Priority": {
+ "saved": "Die Einschränkungsprioritäten wurden erfolgreich gespeichert."
+ },
+ "Row": {
+ "announce": "Priorität: {0}, Name: {1}, zugewiesen: {2}"
+ },
+ "Table": {
+ "deployed": "Bereitgestellt",
+ "name": "Name",
+ "priority": "Priorität"
},
- "block": "Gerät als nicht konform markieren",
- "lockDevice": "Gerät sperren (lokale Aktion)",
- "lockDeviceWithPasscode": "Gerät sperren (lokale Aktion)",
- "noAction": "Keine Aktion",
- "noActionRow": "Keine Aktionen. Wählen Sie \"Hinzufügen\", um eine Aktion hinzuzufügen.",
- "pushNotification": "Pushbenachrichtigung an Endbenutzer senden",
- "remoteLock": "Nicht konformes Gerät remote sperren",
- "removeSourceAccessProfile": "Quellzugriffsprofil entfernen",
- "retire": "Nicht konformes Gerät zurückziehen",
- "wipe": "Zurücksetzen",
- "emailNotification": "E-Mail an Endbenutzer senden"
- },
- "WIPPinRequirements": {
- "WipLowercaseCharacterPinRequirements": {
- "allow": "Verwendung von Kleinbuchstaben in der PIN zulassen",
- "notAllow": "Verwendung von Kleinbuchstaben in der PIN nicht zulassen",
- "requireAtLeastOne": "Verwendung mindestens eines Kleinbuchstabens in der PIN erforderlich"
- },
- "WipSpecialCharacterPinRequirements": {
- "allow": "Verwendung von Sonderzeichen in der PIN zulassen",
- "notAllow": "Verwendung von Sonderzeichen in der PIN nicht zulassen",
- "requireAtLeastOne": "Verwendung mindestens eines Sonderzeichens in der PIN erforderlich"
- },
- "WipUppercaseCharacterPinRequirements": {
- "allow": "Verwendung von Großbuchstaben in der PIN zulassen",
- "notAllow": "Verwendung von Großbuchstaben in der PIN nicht zulassen",
- "requireAtLeastOne": "Verwendung mindestens eines Großbuchstabens in der PIN erforderlich"
- }
- }
+ "Type": {
+ "limit": "Gerätelimiteinschränkung",
+ "type": "Gerätetypeinschränkung"
+ },
+ "allUsers": "Alle Benutzer",
+ "androidRestrictions": "Android-Einschränkungen",
+ "create": "Einschränkung erstellen",
+ "defaultLimitDescription": "Dies ist die Standardeinschränkung des Gerätelimits, die mit der niedrigsten Priorität unabhängig von der Gruppenmitgliedschaft auf alle Benutzer angewendet wird.",
+ "defaultTypeDescription": "Dies ist die Standardeinschränkung des Gerätetyps, die mit der niedrigsten Priorität unabhängig von der Gruppenmitgliedschaft auf alle Benutzer angewendet wird.",
+ "defaultWhfbDescription": "Dies ist die Windows Hello for Business-Standardkonfiguration, die mit der niedrigsten Priorität unabhängig von der Gruppenmitgliedschaft auf alle Benutzer angewendet wird.",
+ "deleteMessage": "Für betroffene Benutzer gilt die Einschränkung der nächsthöheren Priorität. Wenn keine weitere Einschränkung zugewiesen ist, wird die Standardeinschränkung angewendet.",
+ "deleteTitle": "Möchten Sie die Einschränkung \"{0}\" löschen?",
+ "descriptionHint": "Kurzer Absatz zur Beschreibung der Unternehmensnutzung oder der Einschränkungsebene, die durch die Einstellungen der Einschränkung definiert wird.",
+ "edit": "Einschränkung bearbeiten",
+ "info": "Ein Gerät muss die Registrierungsbeschränkungen mit der höchsten Priorität erfüllen, die dem Benutzer zugeordnet wurden. Sie können eine Gerätebeschränkung ziehen, um ihre Priorität zu ändern. Standardbeschränkungen weisen für alle Benutzer die niedrigste Priorität auf und dienen zur Steuerung benutzerloser Registrierungen. Standardbeschränkungen können bearbeitet, aber nicht gelöscht werden.",
+ "iosRestrictions": "iOS-Einschränkungen",
+ "mDM": "MDM",
+ "macRestrictions": "MacOS-Einschränkungen",
+ "maxVersion": "Maximalversion",
+ "minVersion": "Mindestversion",
+ "nameHint": "Dies ist das primäre Attribut, das zur Identifikation des Einschränkungssatzes angezeigt wird.",
+ "noAssignmentsStatusBar": "Weisen Sie die Einschränkung mindestens einer Gruppe zu. Klicken Sie auf \"Eigenschaften\".",
+ "notFound": "Die Einschränkung wurde nicht gefunden. Möglicherweise wurde es bereits gelöscht.",
+ "personallyOwned": "Geräte im Privatbesitz",
+ "restriction": "Einschränkung",
+ "restrictionLowerCase": "Einschränkung",
+ "restrictionType": "Restriction Type",
+ "selectType": "Einschränkungstyp auswählen",
+ "selectValidation": "Wählen Sie eine Plattform aus.",
+ "typeHint": "Wählen Sie \"Gerätetypeinschränkung\" aus, um Geräteeigenschaften einzuschränken. Wählen Sie \"Gerätelimiteinschränkung\" aus, um die Anzahl von Geräten pro Benutzer einzuschränken.",
+ "typeRequired": "Der Einschränkungstyp ist erforderlich.",
+ "winPhoneRestrictions": "Windows Phone-Einschränkungen",
+ "windowsRestrictions": "Windows-Einschränkungen"
+ },
+ "Titles": {
+ "ChromeOs": {
+ "devices": "Chrome OS-Geräte"
+ },
+ "ManagedDesktop": {
+ "adminContacts": "Administratorkontakte",
+ "appPackaging": "App-Paketierung",
+ "devices": "Geräte",
+ "feedback": "Feedback",
+ "gettingStarted": "Erste Schritte",
+ "messages": "Meldungen",
+ "onlineResources": "Onlineressourcen",
+ "serviceRequests": "Service Requests",
+ "settings": "Einstellungen",
+ "tenantEnrollment": "Mandantenregistrierung"
+ },
+ "actions": "Aktionen bei Inkompatibilität",
+ "advancedExchangeSettings": "Exchange Online-Einstellungen",
+ "advancedThreatProtection": "Microsoft Defender für Endpunkt",
+ "allApps": "Alle Apps",
+ "allDevices": "Alle Geräte",
+ "androidFotaDeployments": "Android FOTA-Bereitstellungen",
+ "appBundles": "App-Bundles",
+ "appCategories": "App-Kategorien",
+ "appConfigPolicies": "App-Konfigurationsrichtlinien",
+ "appInstallStatus": "App-Installationsstatus",
+ "appLicences": "App-Lizenzen",
+ "appProtectionPolicies": "App-Schutzrichtlinien",
+ "appProtectionStatus": "Status des App-Schutzes",
+ "appSelectiveWipe": "Selektive App-Zurücksetzung",
+ "appleVppTokens": "Apple-VPP-Token",
+ "apps": "Apps",
+ "assign": "Zuweisungen",
+ "assignedPermissions": "Zugewiesene Berechtigungen",
+ "assignedRoles": "Zugewiesene Rollen",
+ "autopilotDeploymentReport": "Autopilot-Bereitstellungen (Vorschau)",
+ "brandingAndCustomization": "Anpassung",
+ "cartProfiles": "Warenkorbprofile",
+ "certificateConnectors": "Zertifikatconnectors",
+ "chromeEnterprise": "Chrome Enterprise",
+ "compliancePolicies": "Konformitätsrichtlinien",
+ "complianceScriptManagement": "Skripts",
+ "complianceScriptManagementPreview": "Skripts (Vorschau)",
+ "complianceSettings": "Einstellungen für Kompatibilitätsrichtlinie",
+ "conditionStatements": "Bedingungsaussagen",
+ "conditions": "Speicherorte",
+ "configMgr": "Microsoft Endpoint Configuration Manager",
+ "configurationProfiles": "Konfigurationsprofile",
+ "configurationProfilesPreview": "Konfigurationsprofile (Vorschau)",
+ "connectorsAndTokens": "Connectors und Token",
+ "corporateDeviceIdentifiers": "Bezeichner von Unternehmensgeräten",
+ "customAttributes": "Benutzerdefinierte Attribute",
+ "customNotifications": "Benutzerdefinierte Benachrichtigungen",
+ "deploymentSettings": "Bereitstellungseinstellungen",
+ "derivedCredentials": "Abgeleitete Anmeldeinformationen",
+ "deviceActions": "Geräteaktionen",
+ "deviceCategories": "Gerätekategorien",
+ "deviceCleanUp": "Regeln für die Gerätebereinigung",
+ "deviceEnrollmentManagers": "Geräteregistrierungs-Manager",
+ "deviceExecutionStatus": "Gerätestatus",
+ "deviceLimitEnrollmentRestrictions": "Registrierungseinschränkungen – Gerätelimit",
+ "deviceTypeEnrollmentRestrictions": "Registrierungseinschränkungen – Geräteplattform",
+ "devices": "Geräte",
+ "discoveredApps": "Ermittelte Apps",
+ "embeddedSIM": "eSIM-Mobilfunkprofile (Vorschau)",
+ "enrollDevices": "Geräte registrieren",
+ "enrollmentFailures": "Registrierungsfehler",
+ "enrollmentNotifications": "Registrierungsbenachrichtigungen (Vorschau)",
+ "enrollmentRestrictions": "Registrierungsbeschränkungen",
+ "exchangeActiveSync": "Exchange ActiveSync",
+ "exchangeServiceConnectors": "Exchange-Dienstconnectors",
+ "failuresForFeatureUpdates": "Fehler bei Featureupdate (Vorschau)",
+ "failuresForQualityUpdates": "Fehler bei beschleunigten Windows-Updates (Vorschau)",
+ "featureFlighting": "Feature-Flighting",
+ "featureUpdateDeployments": "Featureupdates für Windows 10 und höher (Vorschau)",
+ "flighting": "Test-Flighting",
+ "fotaUpdate": "Firmware-Over-the-Air-Update",
+ "groupPolicy": "Administrative Vorlagen",
+ "groupPolicyAnalytics": "Analyse von Gruppenrichtlinien",
+ "helpSupport": "Hilfe und Support",
+ "helpSupportReplacement": "Hilfe und Support ({0})",
+ "iOSAppProvisioning": "iOS-App-Bereitstellungsprofile",
+ "incompleteUserEnrollments": "Unvollständige Benutzerregistrierungen",
+ "intuneRemoteAssistance": "Remotehilfe (Vorschau)",
+ "iosUpdates": "Richtlinien für iOS/iPadOS aktualisieren",
+ "legacyPcManagement": "Legacy-PC-Verwaltung",
+ "macOSSoftwareUpdate": "Updaterichtlinien für macOS",
+ "macOSSoftwareUpdateAccountSummaries": "Installationsstatus für macOS-Geräte",
+ "macOSSoftwareUpdateCategorySummaries": "Zusammenfassung der Softwareupdates",
+ "macOSSoftwareUpdateStateSummaries": "Updates",
+ "managedGooglePlay": "Verwaltetes Google Play",
+ "msfb": "Microsoft Store für Unternehmen",
+ "myPermissions": "Meine Berechtigungen",
+ "notifications": "Benachrichtigungen",
+ "officeApps": "Office-Apps",
+ "officeProPlusPolicies": "Richtlinien für Office-Apps",
+ "onPremise": "Lokal",
+ "onPremisesConnector": "Lokaler Connector für Exchange ActiveSync",
+ "onPremisesDeviceAccess": "Exchange ActiveSync-Geräte",
+ "onPremisesManageAccess": "Zugriff auf Exchange lokal",
+ "outOfDateIosDevices": "Installationsfehler für iOS-Geräte",
+ "overview": "Übersicht",
+ "partnerDeviceManagement": "Partnergeräteverwaltung",
+ "perUpdateRingDeploymentState": "Bereitstellungsstatus pro Updatering",
+ "permissions": "Berechtigungen",
+ "platformApps": "{0} Apps",
+ "platformDevices": "{0} Geräte",
+ "platformEnrollment": "{0}-Registrierung",
+ "policies": "Richtlinien",
+ "previewMDMDevices": "Alle verwalteten Geräte (Vorschau)",
+ "profiles": "Profile",
+ "properties": "Eigenschaften",
+ "reports": "Berichte",
+ "retireNoncompliantDevices": "Nicht konforme Geräte abkoppeln",
+ "retireNoncompliantDevicesPreview": "Retire noncompliant devices (preview)",
+ "role": "Rolle",
+ "scriptManagement": "Skripts",
+ "securityBaselines": "Sicherheitsbaselines",
+ "serviceToServiceConnector": "Exchange Online-Connector",
+ "shellScripts": "Shellskripts",
+ "teamViewerConnector": "TeamViewer-Connector",
+ "telecomeExpenseManagement": "Telecom Expense Management",
+ "tenantAdmin": "Mandantenadministrator",
+ "tenantAdministration": "Mandantenverwaltung",
+ "termsAndConditions": "Geschäftsbedingungen",
+ "titles": "Titel",
+ "troubleshootSupport": "Problembehandlung + Support",
+ "user": "Benutzer",
+ "userExecutionStatus": "Benutzerstatus",
+ "warranty": "Garantieanbieter",
+ "wdacSupplementalPolicies": "Zusätzliche S Modus-Richtlinien",
+ "windows10DriverUpdate": "Treiberupdates für Windows 10 und höher (Vorschau)",
+ "windows10QualityUpdate": "Qualitätsupdates für Windows 10 und höher (Vorschau)",
+ "windows10UpdateRings": "Updateringe für Windows 10 und höher",
+ "windows10XPolicyFailures": "Windows 10X-Richtlinienfehler",
+ "windowsEnterpriseCertificate": "Windows Enterprise-Zertifikat",
+ "windowsManagement": "PowerShell-Skripts",
+ "windowsSideLoadingKeys": "Windows-Schlüssel zum Querladen",
+ "windowsSymantecCertificate": "Windows-DigiCert-Zertifikat",
+ "windowsThreatReport": "Status des Bedrohungs-Agents"
+ },
+ "ScopeTypes": {
+ "allDevices": "Alle Geräte",
+ "allUsers": "Alle Benutzer",
+ "allUsersAndDevices": "Alle Benutzer und alle Geräte",
+ "selectedGroups": "Ausgewählte Gruppen"
+ },
+ "OfficeApplicationType": {
+ "access": "Access",
+ "bing": "Microsoft Search als Standard",
+ "excel": "Excel",
+ "groove": "OneDrive (Groove)",
+ "lync": "Skype for Business",
+ "oneDrive": "OneDrive-Desktop",
+ "oneNote": "OneNote",
+ "outlook": "Outlook",
+ "powerPoint": "PowerPoint",
+ "publisher": "Publisher",
+ "teams": "Teams",
+ "word": "Word"
+ },
+ "ApplicableDeviceType": {
+ "iPad": "iPad",
+ "iPhoneAndIPod": "iPhone und iPod"
+ },
+ "Assignment": {
+ "AutoUpdateMode": {
+ "default": "Standard",
+ "header": "Updatepriorität",
+ "postponed": "Zurückgestellt",
+ "priority": "Hohe Priorität"
+ },
+ "DeliveryOptimizationPriority": {
+ "backgroundNormal": "Hintergrund",
+ "displayText": "Inhaltsdownload in {0}",
+ "foreground": "Vordergrund",
+ "header": "Priorität der Bereitstellungsoptimierung"
+ },
+ "RestartGracePeriod": {
+ "allowSnooze": "Dem Benutzer das Aufschieben der Neustartbenachrichtigung gestatten",
+ "countdownDialog": "Wählen Sie aus, wann das Dialogfeld \"Minuten bis zum Neustart\" vor der Durchführung des Neustarts angezeigt wird.",
+ "durationInMinutes": "Kulanzzeitraum für Geräteneustart (Minuten)",
+ "snoozeDurationInMinutes": "Zeitraum bis zur erneuten Erinnerung auswählen (Minuten)"
+ },
+ "SoftwareInstallationTime": {
+ "TimeZone": {
+ "label": "Zeitzone",
+ "local": "Geräte-Zeitzone",
+ "utc": "UTC"
+ },
+ "dateAndTimeLabel": "Datum und Uhrzeit",
+ "deadlineTimeColumnLabel": "Installationsstichtag",
+ "deadlineTimeDatePickerErrorMessage": "Das ausgewählte Datum muss nach dem Verfügbarkeitsdatum liegen.",
+ "deadlineTimeLabel": "Stichtag für App-Installation",
+ "defaultTime": "So bald wie möglich",
+ "infoText": "Diese Anwendung ist gleich nach der Bereitstellung verfügbar, wenn Sie unten keine Verfügbarkeitszeit angeben. Wenn es sich um eine erforderliche Anwendung handelt, können Sie den Installationsstichtag angeben.",
+ "specificTime": "Bestimmtes Datum und bestimmte Uhrzeit",
+ "startTimeColumnLabel": "Verfügbarkeit",
+ "startTimeDatePickerErrorMessage": "Das ausgewählte Datum muss vor dem Stichtag liegen.",
+ "startTimeLabel": "App-Verfügbarkeit"
+ },
+ "restartGracePeriodHeader": "Kulanzzeitraum neu starten",
+ "restartGracePeriodLabel": "Kulanzzeitraum für Geräteneustart",
+ "summaryTitle": "Funktionalität für Endbenutzer"
+ },
+ "EnrollmentType": {
+ "devicesWithEnrollment": "Verwaltete Geräte",
+ "devicesWithoutEnrollment": "Verwaltete Apps"
+ },
+ "PolicySet": {
+ "appManagement": "Anwendungsverwaltung",
+ "assignments": "Zuweisungen",
+ "basics": "Grundlagen",
+ "deviceEnrollment": "Geräteregistrierung",
+ "deviceManagement": "Geräteverwaltung",
+ "scopeTags": "Bereichstags",
+ "appConfigurationTitle": "App-Konfigurationsrichtlinien",
+ "appProtectionTitle": "App-Schutzrichtlinien",
+ "appTitle": "Apps",
+ "iOSAppProvisioningTitle": "iOS-App-Bereitstellungsprofile",
+ "deviceLimitRestrictionTitle": "Einschränkungen zum Gerätelimit",
+ "deviceTypeRestrictionTitle": "Einschränkungen zum Gerätetyp",
+ "enrollmentStatusSettingTitle": "Registrierungsstatusseiten",
+ "windowsAutopilotDeploymentProfileTitle": "Windows Autopilot Deployment-Profile",
+ "deviceComplianceTitle": "Richtlinien zur Gerätekonformität",
+ "deviceConfigurationTitle": "Profile für die Gerätekonfiguration",
+ "powershellScriptTitle": "PowerShell-Skripts"
+ },
+ "AzureIAMCommon": {
+ "CountryNames": {
+ "countryNameNR": "Nauru",
+ "countryNameBH": "Bahrain",
+ "countryNameZA": "Südafrika",
+ "countryNameJO": "Jordanien",
+ "countryNameSD": "Sudan",
+ "countryNameNU": "Niue",
+ "countryNameCZ": "Tschechische Republik",
+ "countryNameLT": "Litauen",
+ "countryNameTK": "Tokelau",
+ "countryNameEC": "Ecuador",
+ "countryNameVU": "Vanuatu",
+ "countryNameUG": "Uganda",
+ "countryNameLI": "Liechtenstein",
+ "countryNameHK": "Hongkong (SAR)",
+ "countryNameGH": "Ghana",
+ "countryNameSA": "Saudi-Arabien",
+ "countryNamePG": "Papua-Neuguinea",
+ "countryNameBW": "Botsuana",
+ "countryNameDG": "Diego Garcia",
+ "countryNameIN": "Indien",
+ "countryNameHN": "Honduras",
+ "countryNameRO": "Rumänien",
+ "countryNameKZ": "Kasachstan",
+ "countryNameLC": "St. Lucia",
+ "countryNameGE": "Georgien",
+ "countryNameTT": "Trinidad und Tobago",
+ "countryNameMP": "Nördliche Marianen",
+ "countryNameMV": "Malediven",
+ "countryNameFI": "Finnland",
+ "countryNameNO": "Norwegen",
+ "countryNameEE": "Estland",
+ "countryNameVE": "Venezuela",
+ "countryNameUZ": "Usbekistan",
+ "countryNameME": "Montenegro",
+ "countryNameTJ": "Tadschikistan",
+ "countryNameAW": "Aruba",
+ "countryNameFR": "Frankreich",
+ "countryNameOM": "Oman",
+ "countryNameAO": "Angola",
+ "countryNameIT": "Italien",
+ "countryNameAZ": "Aserbaidschan",
+ "countryNameKG": "Kirgisistan",
+ "countryNameWF": "Wallis und Futuna",
+ "countryNameTL": "Timor-Leste",
+ "countryNameFK": "Falklandinseln",
+ "countryNameGY": "Guyana",
+ "countryNameSS": "Südsudan",
+ "countryNameMM": "Myanmar",
+ "countryNameHT": "Haiti",
+ "countryNameSY": "Syrien",
+ "countryNameMD": "Republik Moldau",
+ "countryNameVC": "St. Vincent und die Grenadinen",
+ "countryNameID": "Indonesien",
+ "countryNameRE": "Réunion",
+ "countryNameER": "Eritrea",
+ "countryNameMK": "Nordmazedonien",
+ "countryNameTG": "Togo",
+ "countryNamePF": "Französisch-Polynesien",
+ "countryNameKY": "Kaimaninseln",
+ "countryNameIO": "Britisches Territorium im Indischen Ozean",
+ "countryNameRU": "Russland",
+ "countryNameMA": "Marokko",
+ "countryNameAU": "Australien",
+ "countryNameBO": "Bolivien",
+ "countryNameVA": "Heiliger Stuhl (Staat der Vatikanstadt)",
+ "countryNameVG": "Britische Jungferninseln",
+ "countryNameFM": "Mikronesien",
+ "countryNameAQ": "Antarktis",
+ "countryNameZM": "Sambia",
+ "countryNameBR": "Brasilien",
+ "countryNameIS": "Island",
+ "countryNamePE": "Peru",
+ "countryNameBG": "Bulgarien",
+ "countryNamePR": "Puerto Rico",
+ "countryNameGI": "Gibraltar",
+ "countryNameBS": "Bahamas",
+ "countryNameJE": "Jersey",
+ "countryNameMO": "Macau (SAR)",
+ "countryNameRW": "Ruanda",
+ "countryNameAS": "Amerikanisch-Samoa",
+ "countryNameBQ": "Bonaire, St. Eustatius und Saba",
+ "countryNameMF": "St. Martin",
+ "countryNameTM": "Turkmenistan",
+ "countryNameML": "Mali",
+ "countryNameTO": "Tonga",
+ "countryNameNC": "Neukaledonien",
+ "countryNameAC": "Ascension",
+ "countryNameBN": "Brunei Darussalam",
+ "countryNameBD": "Bangladesch",
+ "countryNameMW": "Malawi",
+ "countryNameGM": "Gambia",
+ "countryNameGA": "Gabun",
+ "countryNameCA": "Kanada",
+ "countryNameSH": "St. Helena",
+ "countryNameYT": "Mayotte",
+ "countryNameMN": "Mongolei",
+ "countryNamePA": "Panama",
+ "countryNameCM": "Kamerun",
+ "countryNameNE": "Niger",
+ "countryNameCW": "Curaçao",
+ "countryNameJP": "Japan",
+ "countryNameCY": "Zypern",
+ "countryNameCD": "Kongo, Demokratische Republik",
+ "countryNameTN": "Tunesien",
+ "countryNameTR": "Türkei",
+ "countryNameWS": "Samoa",
+ "countryNameSE": "Schweden",
+ "countryNameXK": "Kosovo",
+ "countryNameKH": "Kambodscha",
+ "countryNamePL": "Polen",
+ "countryNameDZ": "Algerien",
+ "countryNameLR": "Liberia",
+ "countryNameSO": "Somalia",
+ "countryNameDM": "Dominica",
+ "countryNameEG": "Ägypten",
+ "countryNameGF": "Französisch-Guyana",
+ "countryNameNZ": "Neuseeland",
+ "countryNamePS": "Palästinensische Behörde",
+ "countryNameIL": "Israel",
+ "countryNameSL": "Sierra Leone",
+ "countryNameGR": "Griechenland",
+ "countryNameNG": "Nigeria",
+ "countryNameMR": "Mauretanien",
+ "countryNameVI": "Amerikanische Jungferninseln",
+ "countryNameGQ": "Äquatorialguinea",
+ "countryNameMX": "Mexiko",
+ "countryNameDJ": "Dschibuti",
+ "countryNameGN": "Guinea",
+ "countryNameCN": "China",
+ "countryNameMZ": "Mosambik",
+ "countryNameBV": "Bouvetinsel",
+ "countryNameNF": "Norfolkinsel",
+ "countryNameTZ": "Tansania",
+ "countryNameAI": "Anguilla",
+ "countryNameGS": "Südgeorgien und die Südlichen Sandwichinseln",
+ "countryNameRS": "Serbien",
+ "countryNameCC": "Kokosinseln",
+ "countryNameNA": "Namibia",
+ "countryNameDE": "Deutschland",
+ "countryNameCG": "Republik Kongo",
+ "countryNameKW": "Kuwait",
+ "countryNameMH": "Marshallinseln",
+ "countryNameVN": "Vietnam",
+ "countryNameBY": "Belarus",
+ "countryNameMY": "Malaysia",
+ "countryNameST": "São Tomé und Príncipe",
+ "countryNameLS": "Lesotho",
+ "countryNameBI": "Burundi",
+ "countryNameTD": "Tschad",
+ "countryNameCX": "Weihnachtsinsel",
+ "countryNameIR": "Iran",
+ "countryNameTV": "Tuvalu",
+ "countryNameGW": "Guinea-Bissau",
+ "countryNameUA": "Ukraine",
+ "countryNameCU": "Kuba",
+ "countryNameCO": "Kolumbien",
+ "countryNameNI": "Nicaragua",
+ "countryNameHR": "Kroatien",
+ "countryNameSC": "Seychellen",
+ "countryNameNL": "Niederlande",
+ "countryNameUM": "Kleinere Amerikanische Überseeinseln",
+ "countryNameIM": "Insel Man",
+ "countryNameFJ": "Fidschi",
+ "countryNameSR": "Suriname",
+ "countryNameGT": "Guatemala",
+ "countryNameSM": "San Marino",
+ "countryNameLA": "Laos",
+ "countryNameGB": "Vereinigtes Königreich",
+ "countryNameBB": "Barbados",
+ "countryNameSI": "Slowenien",
+ "countryNameAM": "Armenien",
+ "countryNameAR": "Argentinien",
+ "countryNamePM": "St. Pierre und Miquelon",
+ "countryNameTF": "Französische Süd- und Antarktisgebiete",
+ "countryNameDO": "Dominikanische Republik",
+ "countryNameZW": "Simbabwe",
+ "countryNameMQ": "Martinique",
+ "countryNamePT": "Portugal",
+ "countryNameCF": "Zentralafrikanische Republik",
+ "countryNameBE": "Belgien",
+ "countryNameKM": "Komoren",
+ "countryNameLY": "Libyen",
+ "countryNameIE": "Irland",
+ "countryNameKP": "Nordkorea",
+ "countryNameGG": "Guernsey",
+ "countryNameSK": "Slowakei",
+ "countryNameTC": "Turks- und Caicosinseln",
+ "countryNameNP": "Nepal",
+ "countryNameBF": "Burkina Faso",
+ "countryNameYE": "Jemen",
+ "countryNameBA": "Bosnien und Herzegowina",
+ "countryNameGP": "Guadeloupe",
+ "countryNameMS": "Montserrat",
+ "countryNameCL": "Chile",
+ "countryNameIQ": "Irak",
+ "countryNameSJ": "Spitzbergen und Jan Mayen Inseln",
+ "countryNameAX": "Ålandinseln",
+ "countryNameKE": "Kenia",
+ "countryNameGU": "Guam",
+ "countryNameBM": "Bermuda",
+ "countryNameFO": "Färöer",
+ "countryNameBL": "St. Barthélemy",
+ "countryNameLB": "Libanon",
+ "countryNameJM": "Jamaika",
+ "countryNameAF": "Afghanistan",
+ "countryNameES": "Spanien",
+ "countryNameMC": "Monaco",
+ "countryNameSG": "Singapur",
+ "countryNameAL": "Albanien",
+ "countryNameSN": "Senegal",
+ "countryNameSZ": "Swasiland",
+ "countryNameBZ": "Belize",
+ "countryNameCI": "Côte d'Ivoire",
+ "countryNameTW": "Taiwan",
+ "countryNameUY": "Uruguay",
+ "countryNameCK": "Cookinseln",
+ "countryNameTH": "Thailand",
+ "countryNameHM": "Heard und McDonaldinseln",
+ "countryNameGD": "Grenada",
+ "countryNameUS": "Vereinigte Staaten",
+ "countryNameAT": "Österreich",
+ "countryNameKR": "Republik Korea",
+ "countryNamePK": "Pakistan",
+ "countryNameDK": "Dänemark",
+ "countryNameSV": "El Salvador",
+ "countryNamePW": "Palau",
+ "countryNameET": "Äthiopien",
+ "countryNameMG": "Madagaskar",
+ "countryNameCR": "Costa Rica",
+ "countryNameLU": "Luxemburg",
+ "countryNameQA": "Katar",
+ "countryNameBT": "Bhutan",
+ "countryNameSB": "Solomonen",
+ "countryNameAE": "Vereinigte Arabische Emirate",
+ "countryNameAD": "Andorra",
+ "countryNameCV": "Cabo Verde",
+ "countryNameAG": "Antigua und Barbuda",
+ "countryNameMU": "Mauritius",
+ "countryNameHU": "Ungarn",
+ "countryNameSX": "Sint Maarten",
+ "countryNameCH": "Schweiz",
+ "countryNamePN": "Pitcairninseln",
+ "countryNameGL": "Grönland",
+ "countryNamePH": "Philippinen",
+ "countryNameMT": "Malta",
+ "countryNameKN": "St. Kitts und Nevis",
+ "countryNameLK": "Sri Lanka",
+ "countryNameKI": "Kiribati",
+ "countryNameBJ": "Benin",
+ "countryNameLV": "Lettland",
+ "countryNamePY": "Paraguay"
+ }
+ }
}
diff --git a/Documentation/Strings-en.json b/Documentation/Strings-en.json
index 360f961..7341501 100644
--- a/Documentation/Strings-en.json
+++ b/Documentation/Strings-en.json
@@ -1,1842 +1,4 @@
{
- "InstallContextType": {
- "device": "Device",
- "deviceContext": "Device context",
- "user": "User",
- "userContext": "User context"
- },
- "WipPolicySettings": {
- "addNetworkBoundary": "Add network boundary",
- "addNetworkBoundaryButton": "Add network boundary...",
- "allowWindowsSearch": "Allow Windows Search to search encrypted corporate data and Store apps",
- "authoritativeIpRanges": "Enterprise IP Ranges list is authoritative (do not auto-detect)",
- "authoritativeProxyServers": "Enterprise Proxy Servers list is authoritative (do not auto-detect)",
- "boundaryType": "Boundary type",
- "cloudResources": "Cloud resources",
- "corporateIdentity": "Corporate identity",
- "dataRecoveryCert": "Upload a Data Recovery Agent (DRA) certificate to allow recovery of encrypted data",
- "editNetworkBoundary": "Edit network boundary",
- "enrollmentState": "Enrollment state",
- "iPv4Ranges": "IPv4 ranges",
- "iPv6Ranges": "IPv6 ranges",
- "internalProxyServers": "Internal proxy servers",
- "maxInactivityTime": "Maximum amount of time (in minutes) allowed after the device is idle that will cause the device to become PIN or password locked",
- "maxPasswordAttempts": "Number of authentication failures allowed before the device will be wiped",
- "mdmDiscoveryUrl": "MDM discovery URL",
- "mdmRequiredSettingsInfo": "This policy only applies to Windows 10 Anniversary Edition and higher. This policy uses Windows Information Protection (WIP) to apply protection.",
- "minimumPinLength": "Set the minimum number of characters required for the PIN",
- "name": "Name",
- "networkBoundariesGridEmptyText": "Any network boundaries you add will show up here",
- "networkBoundary": "Network boundary",
- "networkDomainNames": "Network domains",
- "neutralResources": "Neutral resources",
- "passportForWork": "Use Windows Hello for Business as a method for signing into Windows",
- "pinExpiration": "Specify the period of time (in days) that a PIN can be used before the system requires the user to change it",
- "pinHistory": "Specify the number of past PINs that can be associated to a user account that can’t be reused",
- "pinLowercaseLetters": "Configure the use of lowercase letters in the Windows Hello for Business PIN",
- "pinSpecialCharacters": "Configure the use of special characters in the Windows Hello for Business PIN",
- "pinUppercaseLetters": "Configure the use of uppercase letters in the Windows Hello for Business PIN",
- "protectUnderLock": "Prevent corporate data from being accessed by apps when the device is locked. Applies only to Windows 10 Mobile",
- "protectedDomainNames": "Protected domains",
- "proxyServers": "Proxy servers",
- "requireAppPin": "Disable app PIN when device PIN is managed",
- "requiredSettings": "Required settings",
- "requiredSettingsInfo": "Changing the scope or removing this policy will decrypt corporate data.",
- "revokeOnMdmHandoff": "Revoke access to protected data when the device enrolls to MDM",
- "revokeOnUnenroll": "Revoke encryption keys on unenroll",
- "rmsTemplateForEdp": "Specify the template ID to use for Azure RMS",
- "showWipIcon": "Show the enterprise data protection icon",
- "type": "Type",
- "useRmsForWip": "Use Azure RMS for WIP",
- "value": "Value",
- "weRequiredSettingsInfo": "This policy only applies to Windows 10 Creators Update and higher. This policy uses Windows Information Protection (WIP) and Windows MAM to apply protection.",
- "wipProtectionMode": "Windows Information Protection mode",
- "withEnrollment": "With enrollment",
- "withoutEnrollment": "Without enrollment"
- },
- "EdgeAppConfig": {
- "AllowedURLs": {
- "title": "Allowed URLs",
- "tooltip": "Specify the sites your users are allowed to access while in their work context. No other sites will be allowed. You may choose to configure either an allowed/blocked list, but not both. "
- },
- "ApplicationProxyRedirection": {
- "header": "Application proxy",
- "title": "Application proxy redirection",
- "tooltip": "Enable App proxy redirection to give users access to corporate links and on-premise web apps."
- },
- "BlockedURLs": {
- "title": "Blocked URLs",
- "tooltip": "Specify the sites that are blocked for your users while in their work context. All other sites will be allowed. You may choose to configure either an allowed/blocked list, but not both. "
- },
- "Bookmarks": {
- "header": "Managed bookmarks",
- "tooltip": "Enter a list of bookmarked URLs for your users to have available when using Microsoft Edge in their work context.",
- "uRL": "URL"
- },
- "HomepageURL": {
- "header": "Managed homepage",
- "title": "Homepage shortcut URL",
- "tooltip": "Configure a homepage shortcut that will appear to users as the first icon beneath the search bar when they open a new tab in Microsoft Edge."
- },
- "PersonalContext": {
- "label": "Redirect restricted sites to personal context",
- "tooltip": "Configure if users should be allowed to transition to their personal context to open restricted sites."
- }
- },
- "AzureIAM": {
- "AdrsUserActionSelectionWarning": {
- "conditions": "Conditions that require device registration are not available with \"Register or join devices\" user action.",
- "message": "Only \"Require multi-factor authentication\" can be used in policies created for the \"Register or join devices\" user action.{0}"
- },
- "AuthContext": {
- "Included": {
- "none": "No cloud apps, actions, or authentication contexts selected",
- "plural": "{0} authentication contexts included",
- "singular": "1 authentication context included"
- },
- "InfoBlade": {
- "createTitle": "Add authentication context",
- "descPlaceholder": "Add description for the authentication context",
- "modifyTitle": "Modify authentication context",
- "namePlaceholder": "Ex. Trusted location, Trusted device, Strong authorization",
- "publishDesc": "Publish to apps will make the authentication context available for apps to use. Publish once you finish configuring Conditional Access policy for the tag. [Learn more][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150966",
- "publishLabel": "Publish to apps",
- "titleDesc": "Configure an authentication context that will be used to protect application data and actions. Use names and descriptions that can be understood by application administrators. [Learn more][1]\n[1]:https://go.microsoft.com/fwlink/?linkid=2150965"
- },
- "Notify": {
- "failure": "Failed to update {0}",
- "modifying": "Modifying {0}",
- "success": "Successfully updated {0}"
- },
- "WhatIf": {
- "selected": "Authentication context included"
- },
- "addNewStepUp": "New authentication context",
- "checkBoxInfo": "Select the authentication contexts this policy will apply to",
- "configure": "Configure authentication contexts",
- "createCA": "Assign Conditional Access policies to the authentication context",
- "dataGrid": "List of authentication contexts",
- "description": "Description",
- "documentation": "Documentation",
- "getStarted": "Get started",
- "label": "Authentication context (preview)",
- "menuLabel": "Authentication context (Preview)",
- "name": "Name",
- "noAuthContextSet": "There are no authentication contexts",
- "noData": "No authentication contexts to display",
- "selectionInfo": "Authentication context is used to secure application data and actions in apps like SharePoint and Microsoft Cloud App Security.",
- "step": "Step",
- "tabDescription": "Manage authentication context to protect data and actions in your apps. [Learn more][1]\n[1]:https://go.microsoft.com/fwlink/?linkid=2150965",
- "tagResources": "Tag resources with an authentication context"
- },
- "AuthenticationStrength": {
- "Mode": {
- "deviceBasedPush": "Microsoft Authenticator (Phone Sign-in)",
- "deviceBasedPushFido2X509Certificate": "Microsoft Authenticator (Phone Sign-in) + Fido 2 + Certificate Based Authentication",
- "deviceBasedPushX509CertificateSingleFactor": "Microsoft Authenticator (Phone Sign-in) + Fido 2 + Certificate Based Authentication (Single Factor)",
- "email": "Email One Time Pass",
- "emailOtp": "Email OTP",
- "federatedMultiFactor": "Federated Multi-Factor",
- "federatedSingleFactor": "Federated single factor",
- "federatedSingleFactorFederatedMultiFactor": "Federated single factor + Federated Multi-Factor",
- "fido2": "FIDO 2 security key",
- "fido2X509CertificateSingleFactor": "FIDO 2 security key + Certificate Based Authentication (Single Factor)",
- "hardwareOath": "Hardware OTP",
- "hardwareOathX509CertificateSingleFactor": "Hardware OTP + Certificate Based Authentication (Single Factor)",
- "microsoftAuthenticatorPSIX509CertificateSingleFactor": "Microsoft Authenticator (Phone Sign-in) + Certificate Based Authentication (Single Factor)",
- "microsoftAuthenticatorPsi": "Microsoft Authenticator (Phone Sign-in)",
- "microsoftAuthenticatorPush": "Microsoft Authenticator (Push Notification)",
- "microsoftAuthenticatorPushX509CertificateSingleFactor": "Microsoft Authenticator (Push Notification) + Certificate Based Authentication (Single Factor)",
- "none": "None",
- "password": "Password",
- "passwordDeviceBasedPush": "Password + Microsoft Authenticator (Phone Sign-in)",
- "passwordFido2": "Password + FIDO 2 security key",
- "passwordHardwareOath": "Password + Hardware OTP",
- "passwordMicrosoftAuthenticatorPSI": "Password + Microsoft Authenticator (Phone Sign-in)",
- "passwordMicrosoftAuthenticatorPush": "Password + Microsoft Authenticator (Push Notification)",
- "passwordSms": "Password + SMS",
- "passwordSoftwareOath": "Password + Software OTP",
- "passwordTemporaryAccessPassMultiUse": "Password + Temporary Access Pass (Multi-use)",
- "passwordTemporaryAccessPassOneTime": "Password + Temporary Access Pass (One-time use)",
- "passwordVoice": "Password + Voice",
- "sms": "SMS",
- "smsSignIn": "SMS sign in",
- "smsX509CertificateSingleFactor": "SMS + Certificate Based Authentication (Single Factor)",
- "softwareOath": "Software OTP",
- "softwareOathX509CertificateSingleFactor": "Software OTP + Certificate Based Authentication (Single Factor)",
- "temporaryAccessPassMultiUse": "Temporary Access Pass (Multi-use)",
- "temporaryAccessPassMultiUseX509CertificateSingleFactor": "Temporary Access Pass (Multi-use) + Certificate Based Authentication (Single Factor)",
- "temporaryAccessPassOneTime": "Temporary Access Pass (One-time use)",
- "temporaryAccessPassOneTimeX509CertificateSingleFactor": "Temporary Access Pass (One-time use) + Certificate Based Authentication (Single Factor)",
- "voice": "Voice",
- "voiceX509CertificateSingleFactor": "Voice + Certificate Based Authentication (Single Factor)",
- "windowsHelloForBusiness": "Windows Hello For Business",
- "x509CertificateMultiFactor": "Certificate Based Authentication (Multi-Factor)",
- "x509CertificateSingleFactor": "Certificate Based Authentication (Single Factor)"
- }
- },
- "CAS": {
- "BuiltinPolicy": {
- "Option": {
- "blockDownloads": "Block downloads (Preview)",
- "monitorOnly": "Monitor only (Preview)",
- "protectDownloads": "Protect downloads (Preview)",
- "useCustomControls": "Use custom policy..."
- },
- "ariaLabel": "Choose the kind of Conditional Access App Control to apply"
- }
- },
- "ChooseApplications": {
- "Grid": {
- "appIdAria": "App ID: {0}"
- },
- "LowerGrid": {
- "ariaLabel": "List of selected cloud apps"
- },
- "UpperGrid": {
- "ariaLabel": "List of cloud apps which match the search term"
- }
- },
- "ChooseLocations": {
- "Validation": {
- "failed": "With \"Selected locations\" you must choose at least one location.",
- "selector": "Choose at least one location"
- }
- },
- "ClientApp": {
- "Clients": {
- "Validation": {
- "failed": "You must select at least one of the following clients"
- }
- }
- },
- "ClientConditionsInfo": {
- "browserAndModern": "This policy only applies to browser and modern authentication apps. To apply the policy to all client apps, enable the client app condition and select all the client apps.",
- "classicExperience": "Since this policy was created, the default client apps configuration has been updated.",
- "legacyAuth": "When not configured, policies now apply to all client apps, including modern and legacy auth."
- },
- "CloudAppFilterBlade": {
- "AssignmentFilter": {
- "header": "Attribute",
- "placeholder": "Choose an attribute"
- },
- "Configure": {
- "infoBalloon": "Configure app filters you want to policy to apply to."
- },
- "NoPermissions": {
- "learnMoreAria": "More about custom security attribute permissions.",
- "message": "You do not have the permissions needed to use custom security attributes."
- },
- "gridHeader": "Using custom security attributes you can use the rule builder or rule syntax text box to create or edit the filter rules. In the preview, only attributes of type String are supported. Attributes of type Integer or Boolean will not be shown.",
- "learnMoreAria": "More information about using the rule builder and syntax text box.",
- "noAttributes": "There are no custom attributes available to filter on. You will need to configure some attributes to employ this filter.",
- "title": "Edit filter (Preview)"
- },
- "CloudAppsUserActions": {
- "any": "Any cloud app or action",
- "infoBalloon": "Cloud app or user action you want to test. For example, 'SharePoint Online'",
- "learnMore": "Control access based on all or specific cloud apps or actions.",
- "learnMoreB2C": "Control access based on all or specific cloud apps.",
- "title": "Cloud apps or actions"
- },
- "CloudappsSelectionBlade": {
- "Excluded": {
- "gridAria": "List of excluded cloud apps"
- },
- "Filter": {
- "configured": "Configured",
- "label": "Edit filter (Preview)",
- "with": "{0} with {1}"
- },
- "Included": {
- "gridAria": "List of included cloud apps"
- },
- "Validation": {
- "authContext": "With \"authentication context\" you must configure at least one sub-item.",
- "selectApps": "\"{0}\" must be configured",
- "selector": "Select at least one app.",
- "userActions": "With \"User actions\" you must configure at least one sub-item."
- }
- },
- "DeviceState": {
- "LearnMore": {
- "message": "Control user access when the device the user is signing-in from is not \"Hybrid Azure AD joined\" or \"marked as compliant\".\n '{0}' has been deprecated. Use '{1}' instead."
- }
- },
- "Errors": {
- "notFound": "The policy was not found or has been deleted.",
- "notFoundDetailed": "The policy \"{0}\" no longer exists. It may have been deleted."
- },
- "NamedLocation": {
- "Form": {
- "CountryLookup": {
- "ariaLabel": "Country lookup method",
- "gps": "Determine location by GPS coordinates",
- "info": "When the location condition of a Conditional Access policy is configured, users will be prompted by the Authenticator app to share their GPS location. ",
- "ip": "Determine location by IP address (IPv4 only)"
- },
- "Header": {
- "new": "New location ({0})",
- "update": "Update location ({0})"
- },
- "IP": {
- "learn": "Configure named location IPv4 and IPv6 ranges.\n[Learn more][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
- },
- "Include": {
- "infoBalloon": "Unknown countries/regions are IP addresses that are not associated with a specific country or region. [Learn more][1]\n\nThis includes:\n* IPv6 addresses\n* IPv4 addresses without a direct mapping\n[1]: https://aka.ms/canamedlocations\n",
- "label": "Include unknown countries/regions"
- },
- "Name": {
- "empty": "Name cannot be empty",
- "placeholder": "Name this location"
- },
- "PrivateLink": {
- "learn": "Create a new named location containing Private Links for Azure AD.\n[Learn more][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
- },
- "Search": {
- "countries": "Search countries",
- "names": "Search names",
- "privateLinks": "Search Private Links"
- },
- "Trusted": {
- "label": "Mark as trusted location"
- },
- "enter": "Enter a new IPv4 or IPv6 range",
- "example": "ex: 40.77.182.32/27 or 2a01:111::/32"
- },
- "Label": {
- "addCountries": "Countries location",
- "addIpRange": "IP ranges location",
- "addPrivateLink": "Azure Private Links"
- },
- "Notification": {
- "Create": {
- "Failed": {
- "description": "Failure in creating new location ({0})",
- "title": "Creation has failed"
- },
- "InProgress": {
- "description": "Creating new location ({0})",
- "title": "Creation in progress"
- },
- "Success": {
- "description": "Success in creating new location ({0})",
- "title": "Creation has succeeded"
- }
- },
- "Delete": {
- "Failed": {
- "description": "Failure in deleting location ({0})",
- "title": "Deletion has failed"
- },
- "InProgress": {
- "description": "Deleting location ({0})",
- "title": "Deletion in progress"
- },
- "Success": {
- "description": "Success in deleting location ({0})",
- "title": "Deletion has succeeded"
- }
- },
- "Update": {
- "Failed": {
- "description": "Failure in updating location ({0})",
- "title": "Updating has failed"
- },
- "InProgress": {
- "description": "Updating location ({0})",
- "title": "Updating in progress"
- },
- "Success": {
- "description": "Success in updating location ({0})",
- "title": "Updating has succeeded"
- }
- }
- },
- "PrivateLinks": {
- "grid": "List of Private Links"
- },
- "Trusted": {
- "title": "Trusted type",
- "trusted": "Trusted"
- },
- "Type": {
- "all": "All types",
- "countries": "Countries",
- "ipRanges": "IP ranges",
- "privateLinks": "Private Links",
- "title": "Location type"
- },
- "iPRangeInvalidError": "Value must be a valid IPv4 or IPv6 range.",
- "iPRangeLinkOrSiteLocalError": "IP network detected as a link local or site local address.",
- "iPRangeOctetError": "IP network must not start with 0 or 255.",
- "iPRangePrefixError": "IP network prefix must be from /{0} to /{1}.",
- "iPRangePrivateError": "IP network detected as a private address."
- },
- "Policies": {
- "Grid": {
- "aria": "List of Conditional Access policies"
- },
- "countText": "{0} out of {1} policies found",
- "countTextSingular": "{0} out of 1 policy found",
- "search": "Search policies"
- },
- "Policy": {
- "Condition": {
- "ServicePrincipalRisk": {
- "description": "Configure service principal risk levels needed for policy to be enforced",
- "infoBalloonContent": "Configure service principal risk to apply the policy to selected risk level(s)",
- "title": "Service principal risk"
- }
- }
- },
- "PolicyControlAuthStrength": {
- "MultiFactorAuthentication": {
- "description": "Combinations of methods that satisfy strong authentication, such as Password + SMS",
- "displayName": "Multi-factor authentication (MFA)"
- },
- "Passwordless": {
- "description": "Passwordless methods that satisfy strong authentication, such as Microsoft Authenticator ",
- "displayName": "Passwordless MFA"
- },
- "PhishingResistant": {
- "description": "Phishing-resistant Passwordless methods for the strongest authentication, such as FIDO2 Security Key",
- "displayName": "Phishing resistant MFA"
- }
- },
- "PolicyControlFedAuthMethod": {
- "certificate": "Certificate authentication",
- "infoBubble": "Specify a required authentication method, that must be satisfied by federation provider, such as ADFS.",
- "multifactor": "Multi-factor authentication",
- "require": "Require federated authentication method (Preview)",
- "whatIfFormat": "{0} - {1}"
- },
- "PolicyState": {
- "off": "Off",
- "on": "On",
- "reportOnly": "Report-only"
- },
- "PolicyTemplates": {
- "Devices": {
- "description": "Select Devices policy template category to gain visibility into devices accessing the network. Ensure compliance and health status before granting access.",
- "name": "Devices"
- },
- "Identities": {
- "description": "Select Identities policy template category to verify and secure each identity with strong authentication across your entire digital estate.",
- "name": "Identities"
- },
- "Summary": {
- "CloudApps": {
- "allCloudApps": "All apps",
- "office365": "Office 365",
- "registerSecurityInfo": "Register security information"
- },
- "Conditions": {
- "androidAndIOS": "Device Platform: Android and IOS",
- "anyDevice": "Any device except Android, IOS, Windows and Mac",
- "anyDeviceStateExceptHybrid": "Any device state except compliant and hybrid Azure AD joined",
- "anyLocation": "Any location except trusted",
- "browserMobileDesktop": "Client apps: Browser, Mobile apps and desktop clients",
- "exchangeActiveSync": "Client Apps: Exchange Active Sync, Other Clients",
- "windowsAndMac": "Device Platform: Windows and Mac"
- },
- "Devices": {
- "anyDevice": "Any Device"
- },
- "Grant": {
- "appProtectionPolicy": "Require app protection policy",
- "approvedClientApp": "Require approved client app",
- "blockAccess": "Block access",
- "mfa": "Require multi-factor authentication",
- "passwordChange": "Require password change",
- "requireCompliantDevice": "Require device to be marked as compliant",
- "requireHybridAzureADDevice": "Require hybrid Azure AD joined device"
- },
- "Session": {
- "appEnforcedRestrictions": "Use app enforced restrictions",
- "signInFrequency": "Sign-in Frequency and never persistent browser session"
- },
- "UsersAndGroups": {
- "allUsers": "All Users",
- "directoryRoles": "Directory roles except current administrator",
- "globalAdmin": "Global Administrator",
- "noGuestAndAdmins": "All Users except Guest and External, Global administrators, Current administrator"
- },
- "azureManagement": "Azure Management",
- "deviceFilters": "Filters for devices",
- "devicePlatforms": "Device Platforms"
- },
- "TemplateId": {
- "AppEnforcedRestrictions": {
- "description": "Block or limit access to SharePoint, OneDrive, and Exchange content from unmanaged devices.",
- "name": "CA014: Use application enforced restrictions for unmanaged devices",
- "title": "Use application enforced restrictions for unmanaged devices"
- },
- "ApprovedClientApps": {
- "description": "To prevent data loss, organizations can restrict access to approved modern auth client apps with Intune app protection.",
- "name": "CA012: Require approved client apps and app protection",
- "title": "Require approved client apps and app protection"
- },
- "BlockAccessOnUnknowns": {
- "description": "Users will be blocked from accessing company resources when the device type is unknown or unsupported.",
- "name": "CA010: Block access for unknown or unsupported device platform",
- "title": "Block access for unknown or unsupported device platform"
- },
- "BlockLegacyAuth": {
- "description": "Block legacy authentication endpoints that can be used to bypass multi-factor authentication. ",
- "name": "CA003: Block legacy authentication",
- "title": "Block legacy authentication"
- },
- "NoPersistentBrowserSession": {
- "description": "Protect user access on unmanaged devices by preventing browser sessions from remaining signed in after the browser is closed and setting a sign-in frequency to 1 hour.",
- "name": "CA011: No persistent browser session",
- "title": "No persistent browser session"
- },
- "RequireCompliantOrHybridADAdmins": {
- "description": "Require privileged administrators to only access resources when using a compliant or hybrid Azure AD joined device.",
- "name": "CA009: Require compliant or hybrid Azure AD joined device for admins",
- "title": "Require compliant or hybrid Azure AD joined device for admins"
- },
- "RequireCompliantOrHybridADAllUsers": {
- "description": "Protect access to company resources by requiring users to use a managed device or perform multi-factor authentication. (macOS or Windows only)",
- "name": "CA013: Require compliant or hybrid Azure AD joined device or multi-factor authentication for all users",
- "title": "Require compliant or hybrid Azure AD joined device or multi-factor authentication for all users"
- },
- "RequireMFAAllUsers": {
- "description": "Require multi-factor authentication for all user accounts to reduce risk of compromise.",
- "name": "CA004: Require multi-factor authentication for all users",
- "title": "Require multi-factor authentication for all users"
- },
- "RequireMFAForAdmins": {
- "description": "Require multi-factor authentication for privileged administrative accounts to reduce risk of compromise. This policy will target the same roles as Security Default.",
- "name": "CA001: Require multi-factor authentication for admins",
- "title": "Require multi-factor authentication for admins"
- },
- "RequireMFAForAzureManagement": {
- "description": "Require multi-factor authentication to protect privileged access to Azure resources.",
- "name": "CA006: Require multi-factor authentication for Azure management",
- "title": "Require multi-factor authentication for Azure management"
- },
- "RequireMFAForGuestAccess": {
- "description": "Require guest users perform multi-factor authentication when accessing your company resources.",
- "name": "CA005: Require multi-factor authentication for guest access",
- "title": "Require multi-factor authentication for guest access"
- },
- "RequireMFAForRiskySignIn": {
- "description": "Require multi-factor authentication if the sign-in risk is detected to be medium or high. (Requires an Azure AD Premium 2 License)",
- "name": "CA007: Require multi-factor authentication for risky sign-ins",
- "title": "Require multi-factor authentication for risky sign-ins"
- },
- "RequirePasswordChangeForHighRiskUsers": {
- "description": "Require the user to change their password if the user risk is detected to be high. (Requires an Azure AD Premium 2 License)",
- "name": "CA008: Require password change for high-risk users",
- "title": "Require password change for high-risk users"
- },
- "RequireSecurityInfo": {
- "description": "Secure when and how users register for Azure AD multi-factor authentication and self-service password. ",
- "name": "CA002: Securing security info registration",
- "title": "Securing security info registration"
- }
- },
- "TemplateState": {
- "BlockAccessOnUnknowns": {
- "title": "Enabling this policy will prevent any access from unknown device type, consider using report only mode to begin with until you have confirmed this will not impact your users."
- },
- "BlockLegacyAuth": {
- "description": "Consider using report only mode to begin with until you have confirmed this will not impact your users.",
- "title": "Enabling this policy will block legacy authentication for all your users."
- },
- "RequireCompliantOrHybridADAdmins": {
- "Description": {
- "on": "Consider using report only mode to begin with until you have confirmed this will not impact your privileged users.",
- "reportOnly": "Policies in report-only mode that require compliant devices may prompt users on Mac, iOS, and Android to select a device certificate during policy evaluation, even though device compliance is not enforced. These prompts may repeat until the device is made compliant."
- },
- "Title": {
- "on": "Enabling this policy will prevent any access for privileged users unless using a managed device such as compliant or hybrid Azure AD joined. Ensure you have configured your compliance policies or enabled hybrid Azure AD configuration before enabling.",
- "reportOnly": "Ensure you have configured your compliance policies or enabled hybrid Azure AD configuration before enabling. "
- }
- },
- "RequireCompliantOrHybridADAllUsers": {
- "Description": {
- "on": "This policy will affect all users except the current logged in Administrator. Consider using report only mode to begin with until you have confirmed this will not impact your users."
- },
- "Title": {
- "on": "Don't lock yourself out! Make sure that your device is compliant, or hybrid Azure AD Joined or you have configured multi-factor authentication. ",
- "reportOnly": "Policies in report-only mode that require compliant devices may prompt users on Mac, iOS, and Android to select a device certificate during policy evaluation, even though device compliance is not enforced. These prompts may repeat untli the device is made compliant."
- }
- },
- "RequireMfa": {
- "description": "If you use emergency access accounts or Azure AD connect to synchronize your on-premises objects, you may need to exclude these accounts from this policy after creation."
- },
- "RequireMfaAdmins": {
- "description": "Please note the current administrator account will automatically be excluded but all others will be protected on policy creation. Consider using report only mode to begin with.",
- "title": "Don't lock yourself out! This policy impacts the Azure portal."
- },
- "RequireMfaAllUsers": {
- "description": "Consider using report only mode to begin with until you have planned and communicated this change to all your users.",
- "title": "Enabling this policy will enforce multi-factor authentication for all your users."
- },
- "RequireSecurityInfo": {
- "description": "Please ensure you review your configuration to protect these accounts based on your company needs.",
- "title": "The following users and roles are excluded from this policy, Guests and External Users, Global Administrators, Current Administrator"
- }
- },
- "basics": "Basics",
- "clientApps": "Client apps",
- "cloudApps": "Cloud apps",
- "cloudAppsOrActions": "Cloud apps or actions ",
- "conditions": "Conditions ",
- "createNewPolicy": "Create new policy from templates (Preview)",
- "createPolicy": "Create Policy",
- "currentUser": "Current user",
- "customizeBuild": "Customize your build",
- "customizeTemplate": "Template lists are customized based on the type of policy you're looking to create",
- "excludedDevicePlatform": "Excluded device platforms",
- "excludedDirectoryRoles": "Excluded directory roles",
- "excludedLocation": "Excluded directory roles",
- "excludedUsers": "Excluded users",
- "grantControl": "Grant control ",
- "includeFilteredDevice": "Include filtered devices in policy",
- "includedDevicePlatform": "Included device platforms",
- "includedDirectoryRoles": "Included directory roles",
- "includedLocation": "Included location",
- "includedUsers": "Included users",
- "legacyAuthenticationClients": "Legacy authentication clients",
- "namePolicy": "Name your policy",
- "next": "Next",
- "policyName": "Policy Name",
- "policyState": "Policy state",
- "policySummary": "Policy summary",
- "policyTemplate": "Policy template",
- "previous": "Previous",
- "reviewAndCreate": "Review + create",
- "riskLevels": "Risk levels",
- "selectATemplate": "Select a Template",
- "selectTemplate": "Select template",
- "selectTemplateCategory": "Select a template category",
- "selectTemplateRecommendation": "We recommend the following templates based on your response",
- "sessionControl": "Session control ",
- "signInFrequency": "Sign-in frequency",
- "signInRisk": "Sign-in risk",
- "template": "Template ",
- "templateCategory": "Template category",
- "userRisk": "User risk",
- "usersAndGroups": "Users and groups ",
- "viewPolicySummary": "View policy summary "
- },
- "SSM": {
- "MemberSelector": {
- "description": "Users and groups"
- },
- "Notification": {
- "Migration": {
- "error": "Failed to migrate Continuous access evaluation settings to Conditional access policies",
- "inProgress": "Migrating Continuous access evaluation settings",
- "success": "Successfully migrated Continuous access evaluation settings to Conditional access policies",
- "successDescription": "Please proceed to Conditional access policies to view the migrated settings in the newly created policy named \"CA policy created from CAE settings\"."
- },
- "error": "Failed to update Continuous access evaluation settings",
- "inProgress": "Updating Continuous access evaluation settings",
- "success": "Successfully updated Continuous access evaluation settings"
- },
- "PreviewOptions": {
- "disable": "Disable preview",
- "enable": "Enable preview"
- },
- "StrictLocationEnforcement": {
- "infoContent1": "Different IPs can be seen by Azure AD and Resource Provider from the same client device due to network partition or IPv4/IPv6 mismatch. Strict Location Enforcement will enforce the Conditional Access policy based on both IP addresses seen by Azure AD and Resource Provider.",
- "infoContent2": "To ensure maximum security, it is recommended to include all IPs that can be seen by both Azure AD and Resource Provider in your Named Location policy and turn on \"Strict Location Enforcement\" mode.",
- "label": "Strict Location Enforcement",
- "title": "Additional enforcement modes"
- },
- "bladeTitle": "Continuous access evaluation",
- "description": "When a user's access is removed or a client IP address changes, Continuous access evaluation automatically blocks access to resources and applications in near real time. ",
- "migrateLabel": "Migrate",
- "migrationError": "Migration failed due to the following error: {0}",
- "migrationInfo": "CAE setting has been moved under Conditional Access UX, please migrate with the “Migrate” button above and configure it with Conditional Access policy going forward. Click here to learn more.",
- "noLicenseMessage": "Manage smart session management settings with Azure AD Premium",
- "optionsPickerTitle": "Enable/Disable Continuous access evaluation",
- "upsellInfo": "You cannot change your settings on this page anymore and any settings here should be disregarded. Your previous setting will be honored. You can configure your CAE settings under Conditional Access going forward. Click here to learn more."
- },
- "SessionLifetime": {
- "PersistentBrowser": {
- "Error": {
- "notAllApps": "Persistent browser session policy only works correctly when \"All cloud apps\" is selected. Please update your cloud apps selection."
- },
- "Option": {
- "always": "Always persistent",
- "help": "A persistent browser session allows users to remain signed in after closing and reopening their browser window.
\n\n- This setting works correctly when \"All cloud apps\" are selected
\n- This does not affect token lifetimes or the sign-in frequency setting.
\n- This will override the \"Show option to stay signed in\" policy in Company Branding.
\n- \"Never persistent\" will override any persistent SSO claims passed in from federated authentication services.
\n- \"Never persistent\" will prevent SSO on mobile devices across applications and between applications and the user's mobile browser.
\n",
- "label": "Persistent browser session",
- "never": "Never persistent"
- },
- "Warning": {
- "allApps": "Persistent browser session only works correctly when All cloud apps is selected. Please change your cloud apps selection. Click here to learn more."
- }
- },
- "SignInFrequency": {
- "Aria": {
- "units": "Hours or days",
- "value": "Frequency"
- },
- "Option": {
- "Day": {
- "plural": "{0} days",
- "singular": "1 day"
- },
- "Hour": {
- "plural": "{0} hours",
- "singular": "1 hour"
- },
- "daysOption": "Days",
- "everytime": "Every time",
- "help": "Time period before a user is asked to sign-in again when attempting to access a resource. The default setting is a rolling window of 90 days, i.e. users will be asked to re-authenticate on the first attempt to access a resource after being inactive on their machine for 90 days or longer.",
- "hoursOption": "Hours",
- "label": "Sign-in frequency",
- "placeholder": "Select units"
- }
- },
- "mainOption": "Modify session lifetime",
- "mainOptionHelp": "Configure how often users will get prompted and whether browser sessions will be persisted. Applications that don't support modern authentication protocols might not honor these policies. In such cases please contact the application developer."
- },
- "SigninRisk": {
- "LearnMore": {
- "message": "Control user access to respond to specific sign-in risk levels."
- }
- },
- "SingleSelectorActive": {
- "failed": "Unable to load this data.",
- "reattempt": "Loading data. Reattempt {0} of {1}."
- },
- "TimeCondition": {
- "Errors": {
- "both": "Invalid \"Include\" or \"Exclude\" time range.",
- "daysOfWeek": "{0} Make sure to specify at least one day of the week.",
- "endBeforeStart": "{0} Make sure start date/time is earlier than end date/time.",
- "exclude": "Invalid \"Exclude\" time range.",
- "generic": "{0} Make sure both days of the week and time zone are set. If \"All day\" is not checked, start time and end time need to be set as well.",
- "include": "Invalid \"Include\" time range.",
- "timeMissing": "{0} Make sure to specify both a start and end time.",
- "timeZone": "{0} Make sure to specify a time zone.",
- "timesAndZone": "{0} Make sure you set start time, end time and time zone."
- }
- },
- "UserActions": {
- "Included": {
- "none": "No cloud apps or actions selected",
- "plural": "{0} user actions included",
- "singular": "1 user action included"
- },
- "accessRequirement1": "Level 1",
- "accessRequirement2": "Level 2",
- "accessRequirement3": "Level 3",
- "accessRequirementsLabel": "Accessing secured app data",
- "appsActionsAuthTitle": "Cloud apps, actions, or authentication context",
- "appsOrActionsSelectorInfoBallonText": "Applications accessed or user actions",
- "appsOrActionsTitle": "Cloud apps or actions",
- "label": "User actions",
- "mainOptionsLabel": "Select what this policy applies to",
- "registerOrJoinDevices": "Register or join devices",
- "registerSecurityInfo": "Register security information",
- "selectionInfo": "Select the action this policy will apply to"
- },
- "UserSelectionBlade": {
- "DirectoryRoles": {
- "ariaLabel": "Choose directory roles"
- },
- "Excluded": {
- "gridAria": "List of excluded users"
- },
- "Included": {
- "gridAria": "List of included users"
- },
- "Validation": {
- "customRoleIncluded": "\"Directory Roles\" includes at least one custom role",
- "customRoleSelected": "At least one custom role is selected",
- "failed": "\"{0}\" must be configured",
- "roles": "Select at least one role",
- "usersGroups": "Select at least one user or group"
- },
- "learnMore": "Control access based on who the policy will apply to, such as users and groups, workload identities, directory roles, or external guests."
- },
- "ValidationResult": {
- "blockEveryonePolicy": "Policy configuration not supported. Review the assignments and controls.",
- "invalidApplicationCondition": "Invalid cloud applications selected",
- "invalidClientTypesCondition": "Invalid client apps selected",
- "invalidConditions": "Assignments are not selected",
- "invalidControls": "Invalid controls selected",
- "invalidDevicePlatformsCondition": "Invalid device platforms selected",
- "invalidDevicesCondition": "Invalid device configuration. Likely an invalid \"{0}\" configuration.",
- "invalidGrantControlPolicy": "Invalid grant control",
- "invalidLocationsCondition": "Invalid locations selected",
- "invalidPolicy": "Assignments are not selected",
- "invalidSessionControlPolicy": "Invalid session control",
- "invalidSignInRisksCondition": "Invalid sign-in risk selected",
- "invalidUserRisksCondition": "Invalid user risk selected",
- "invalidUsersCondition": "Invalid users selected",
- "mamPolicyShouldOnlyTargetAndroidOrIosPlatforms": "MAM policy can only be applied to Android or iOS client platforms.",
- "notSupportedCombination": "Policy configuration is not supported. Learn more about supported policies.",
- "pending": "Validating policy",
- "requireComplianceEveryonePolicy": "Policy configuration will require device compliance for all users. Review the assignments selected.",
- "success": "Valid policy"
- },
- "VpnCert": {
- "Grid": {
- "aria": "List of VPN Certificates"
- }
- },
- "WarningsInfo": {
- "Controls": {
- "compliantDeviceEnabled": "Don't lock yourself out! Make sure that your device is compliant.",
- "domainJoinedDeviceEnabled": "Don't lock yourself out! Make sure that your device is Hybrid Azure AD Joined.",
- "exchangeDisabled": "Exchange ActiveSync only supports \"Compliant device\" and \"Approved client app\" controls. Click to learn more.",
- "exchangeDisabled2": "Exchange ActiveSync only supports \"Compliant device\", \"Approved client app\" and \"Compliant client app\" controls. Click to learn more.",
- "notAvailableForSP": "Some controls are not available due to '{0}' selection in policy assignment",
- "requireAuthOrMfa": "\"{0}\" cannot be used with \"{1}\"",
- "requireMfa": "Consider testing the new \"{0}\" public preview",
- "requirePasswordChangeEnabled": "\"Require password change\" can only be used when policy is assigned to \"All cloud apps\""
- },
- "Policies": {
- "Linux": {
- "devicePlatformsReportOnlyPolicy": "Policies in Report-only mode requiring compliant devices may prompt users on macOS, iOS, Android, and Linux to select a device certificate.",
- "excludeDevicePlatforms": "Exclude device platforms macOS, iOS, Android, and Linux from this policy.",
- "proceedAnywayDevicePlatforms": "Proceed with selected configuration. Users on macOS, iOS, Android, and Linux may receive prompts when the device is checked for compliance."
- },
- "blockCurrentUserPolicy": "Don't lock yourself out! We recommend applying a policy to a small set of users first to verify it behaves as expected. We also recommend excluding at least one administrator from this policy. This ensures that you still have access and can update a policy if a change is required. Please review the affected users and apps.",
- "devicePlatformsReportOnlyPolicy": "Policies in Report-only mode requiring compliant devices may prompt users on macOS, iOS, and Android to select a device certificate.",
- "excludeCurrentUserSelection": "Exclude current user, {0}, from this policy.",
- "excludeDevicePlatforms": "Exclude device platforms macOS, iOS, and Android from this policy.",
- "proceedAnywayDevicePlatforms": "Proceed with selected configuration. Users on macOS, iOS, and Android may receive prompts when the device is checked for compliance.",
- "proceedAnywaySelection": "I understand that my account will be impacted by this policy. Proceed anyway."
- },
- "ServicePrincipals": {
- "blockExchange": "Selecting Office 365 Exchange Online will also affect apps such as OneDrive and Teams.",
- "blockPortal": "Don't lock yourself out! This policy impacts the Azure portal. Before you continue, ensure that you or someone else will be able to get back into the portal.",
- "blockPortalWithSession": "Don't lock yourself out! This policy impacts the Azure portal. Before you continue, ensure that you or someone else will be able to get back into the portal.
Disregard this warning if you are configuring persistent browser session policy that works correctly only if \"All cloud apps\" are selected.",
- "blockSharePoint": "Selecting SharePoint Online will also affect apps such as Microsoft Teams, Planner, Delve, MyAnalytics, and Newsfeed.",
- "blockSkype": "Selecting Skype for Business Online will also affect Microsoft Teams.",
- "includeOrExclude": "You can configure the App Filter for '{0}' or '{1}', but not both.",
- "selectAppsNAForSP": "Individual cloud apps cannot be selected due to '{0}' selection in policy assignment",
- "teamsBlocked": "Microsoft Teams will also be affected when apps such as SharePoint Online and Exchange Online are included in policy."
- },
- "Users": {
- "blockAllUsers": "Don't lock yourself out! This policy will affect all of your users. We recommend applying a policy to a small set of users first to verify it behaves as expected."
- }
- },
- "WhatIf": {
- "Device": {
- "AttributesGrid": {
- "aria": "List of attributes on the device employed during sign-in.",
- "infoBalloon": "List of attributes on the device employed during sign-in."
- }
- }
- },
- "advancedTabText": "Advanced",
- "allCloudAppsErrorBox": "\"All cloud apps\" must be selected when \"Require password change\" grant is selected",
- "allDayCheckboxLabel": "All day",
- "allDevicePlatforms": "Any device",
- "allGuestUserInfoContent": "Includes Azure AD B2B guests, but not SharePoint B2B guests",
- "allGuestUserLabel": "All guest and external users",
- "allRiskLevelsOption": "All risk levels",
- "allTrustedLocationLabel": "All trusted locations",
- "allUserGroupSetSelectorLabel": "All users and groups selected",
- "allUsersString": "All users",
- "and": "{0} AND {1} ",
- "andWithGrouping": "({0}) AND {1} ",
- "androidDisplayName": "Android",
- "anyCloudAppSelection": "Any cloud app",
- "appContextOptionInfoContent": "Requested authentication tag",
- "appContextOptionLabel": "Requested authentication tag (Preview)",
- "appContextUriPlaceholder": "Example: uri:contoso.com:level3",
- "appEnforceInfoBubble": "App enforced restrictions might require additional admin configurations within the cloud apps. The restrictions will only take effect for new sessions.",
- "appNotSetSeletorLabel": "0 cloud apps selected",
- "applyConditionClientAppInfoBalloonContent": "Configure client apps to apply the policy to specific client apps",
- "applyConditionDevicePlatformInfoBalloonContent": "Configure device platforms to apply the policy to specific platforms",
- "applyConditionDeviceStateInfoBalloonContent": "Configure device state to apply the policy to specific device state(s)",
- "applyConditionLocationInfoBalloonContent": "Configure locations to apply the policy to trusted/untrusted locations",
- "applyConditionSigninRiskInfoBalloonContent": "Configure sign-in risk to apply the policy to selected risk level(s)",
- "applyConditionUserRiskInfoBalloonContent": "Configure user risk to apply the policy to selected risk level(s)",
- "applyConditonLabel": "Configure",
- "ariaLabelPolicyDisabled": "Policy is disabled",
- "ariaLabelPolicyEnabled": "Policy is enabled",
- "ariaLabelPolicyReportOnly": "Policy is in Report-only mode",
- "blockAccess": "Block access",
- "builtInDirectoryRoleLabel": "Built-in directory roles",
- "casCustomControlInfo": "Custom policies need to be configured in Cloud App Security portal. This control works instantly for featured apps and can be self onboarded for any app. Click here to learn more about both scenarios.",
- "casInfoBubble": "This control works for various cloud apps.",
- "casPreconfiguredControlInfo": "This control works instantly for featured apps and can be self onboarded for any app. Click here to learn more about both scenarios.",
- "cert64DownloadCol": "Download base64 certificate",
- "cert64Name": "VpnBase64Cert",
- "certDownloadCol": "Download certificate",
- "certDurationCol": "Expiry",
- "certDurationStartCol": "Valid from",
- "certName": "VpnCert",
- "chooseApplicationsBladeSubtitle": "",
- "chooseApplicationsBladeTitle": "Choose Applications",
- "chooseApplicationsCartSubitle": "",
- "chooseApplicationsCartTitle": "Chosen Applications",
- "chooseApplicationsEmpty": "No Applications",
- "chooseApplicationsNone": "None",
- "chooseApplicationsNoneFound": "We didn't find \"{0}\". Try another name or ID.",
- "chooseApplicationsPlural": "{0} and {1} more",
- "chooseApplicationsReAuthEverytimeInfo": "Looking for your app? Some applications cannot be used with \"Require reauthentication – every time\" session control",
- "chooseApplicationsRemove": "Remove",
- "chooseApplicationsReturnedPlural": "{0} applications found",
- "chooseApplicationsReturnedSingular": "1 application found",
- "chooseApplicationsSearchBalloon": "Search for an Application by entering its name or ID.",
- "chooseApplicationsSearchHint": "Search Applications...",
- "chooseApplicationsSearchLabel": "Applications",
- "chooseApplicationsSearching": "Searching...",
- "chooseApplicationsSelect": "Select",
- "chooseApplicationsSelected": "Selected",
- "chooseApplicationsSingular": "{0} and 1 more",
- "chooseApplicationsTooMany": "More results than can be shown. Please filter using the search box.",
- "chooseLocationCorpnetItem": "Corporate network",
- "chooseLocationSelectedLocationsLabel": "Selected locations",
- "chooseLocationTrustedIpsItem": "MFA Trusted IPs",
- "chooseLocationsBladeSubtitle": "",
- "chooseLocationsBladeTitle": "Choose Locations",
- "chooseLocationsCartSubitle": "",
- "chooseLocationsCartTitle": "Chosen Locations",
- "chooseLocationsEmpty": "No Locations",
- "chooseLocationsExcludedSelectorTitle": "Select",
- "chooseLocationsIncludedSelectorTitle": "Select",
- "chooseLocationsNone": "None",
- "chooseLocationsNoneFound": "We didn't find \"{0}\". Try another name or ID.",
- "chooseLocationsPlural": "{0} and {1} more",
- "chooseLocationsRemove": "Remove",
- "chooseLocationsReturnedPlural": "{0} locations found",
- "chooseLocationsReturnedSingular": "1 location found",
- "chooseLocationsSearchBalloon": "Search for a Location by entering its name.",
- "chooseLocationsSearchHint": "Search Locations...",
- "chooseLocationsSearchLabel": "Locations",
- "chooseLocationsSearching": "Searching...",
- "chooseLocationsSelect": "Select",
- "chooseLocationsSelected": "Selected",
- "chooseLocationsSelectionBladeExcludedSelectorTitle": "Select",
- "chooseLocationsSelectionBladeIncludedSelectorTitle": "Select",
- "chooseLocationsSingular": "{0} and 1 more",
- "chooseLocationsTooMany": "More results than can be shown. Please filter using the search box.",
- "claimProviderAddCommandText": "New custom control",
- "claimProviderAddNewBladeTitle": "New custom control",
- "claimProviderDeleteCommand": "Delete",
- "claimProviderDeleteDescription": "Are you sure you want to delete '{0}'? This action cannot be undone.",
- "claimProviderDeleteTitle": "Are you sure?",
- "claimProviderEditInfoText": "Enter the JSON for customized controls given by your claim providers.",
- "claimProviderNotificationCreateDescription": "Creating custom control named '{0}'",
- "claimProviderNotificationCreateFailedDescription": "Creating custom control '{0}' failed. Please try again later.",
- "claimProviderNotificationCreateFailedTitle": "Failed to create custom control",
- "claimProviderNotificationCreateSuccessDescription": "Created custom control named '{0}'",
- "claimProviderNotificationCreateSuccessTitle": "Created '{0}'",
- "claimProviderNotificationCreateTitle": "Creating '{0}'",
- "claimProviderNotificationDeleteDescription": "Deleting custom control named '{0}'",
- "claimProviderNotificationDeleteFailedDescription": "Deleting custom control '{0}' failed. Please try again later.",
- "claimProviderNotificationDeleteFailedTitle": "Failed to delete custom control",
- "claimProviderNotificationDeleteSuccessDescription": "Deleted custom control named '{0}'",
- "claimProviderNotificationDeleteSuccessTitle": "Deleted '{0}'",
- "claimProviderNotificationDeleteTitle": "Deleting '{0}'",
- "claimProviderNotificationUpdateDescription": "Updating custom control named '{0}'",
- "claimProviderNotificationUpdateFailedDescription": "Updating custom control '{0}' failed. Please try again later.",
- "claimProviderNotificationUpdateFailedTitle": "Failed to update custom control",
- "claimProviderNotificationUpdateSuccessDescription": "Updated custom control named '{0}'",
- "claimProviderNotificationUpdateSuccessTitle": "Updated '{0}'",
- "claimProviderNotificationUpdateTitle": "Updating '{0}'",
- "claimProviderValidationAppIdInvalid": "The \"AppId\" value is not valid. Please review and try again.",
- "claimProviderValidationClientIdMissing": "The data is missing a \"ClientId\" value. Please review and try again.",
- "claimProviderValidationControlClaimsRequestedMissing": "The \"Control\" is missing a \"ClaimsRequested\" value. Please review and try again.",
- "claimProviderValidationControlClaimsRequestedTypeMissing": "The \"ClaimsRequested\" item is missing a \"Type\" value. Please review and try again.",
- "claimProviderValidationControlIdAlreadyExists": "The \"Control\" \"Id\" value already exists. Please review and try again.",
- "claimProviderValidationControlIdMissing": "The \"Control\" is missing an \"Id\" value. Please review and try again.",
- "claimProviderValidationControlIdReferencedInExistingPolicy": "The \"Control\" \"Id\" value cannot be removed because it is referenced in an existing policy. Please remove it from the policy first.",
- "claimProviderValidationControlIdTooManyControls": "The \"Control\" property has too many controls. Please review and try again.",
- "claimProviderValidationControlIdValueReserved": "The \"Control\" \"Id\" value is a reserved keyword, please use a different id.",
- "claimProviderValidationControlNameAlreadyExists": "The \"Control\" \"Name\" value already exists. Please review and try again.",
- "claimProviderValidationControlNameMissing": "The \"Control\" is missing a \"Name\" value. Please review and try again.",
- "claimProviderValidationControlsMissing": "The data is missing a \"Controls\" value. Please review and try again.",
- "claimProviderValidationDiscoveryUrlMissing": "The data is missing a \"DiscoveryUrl\" value. Please review and try again.",
- "claimProviderValidationInvalid": "There data provided is not valid. Please review and try again.",
- "claimProviderValidationInvalidJsonDefinition": "Unable to save the custom control. Review the JSON text and try again.",
- "claimProviderValidationNameAlreadyExists": "The \"Name\" value already exists. Please review and try again.",
- "claimProviderValidationNameMissing": "The data is missing a \"Name\" value. Please review and try again.",
- "claimProviderValidationUnknown": "There was an unknown error while validating the data provided. Please review and try again.",
- "claimProvidersNone": "No custom controls",
- "claimProvidersSearchPlaceholder": "Search controls.",
- "classicPoilcyFilterTitle": "Show",
- "classicPolicyAllPlatforms": "All Platforms",
- "classicPolicyClientAppBrowserAndNative": "Browser, mobile apps and desktop clients",
- "classicPolicyCloudAppTitle": "Cloud application",
- "classicPolicyControlAllow": "Allow",
- "classicPolicyControlBlock": "Block",
- "classicPolicyControlBlockWhenNotAtWork": "Block access when not at work",
- "classicPolicyControlRequireCompliantDevice": "Require compliant device",
- "classicPolicyControlRequireDomainJoinedDevice": "Require domain joined device",
- "classicPolicyControlRequireMfa": "Require multi-factor authentication",
- "classicPolicyControlRequireMfaWhenNotAtWork": "Require multi-factor authentication when not at work",
- "classicPolicyDeleteCommand": "Delete",
- "classicPolicyDeleteFailTitle": "Failed to delete classic policy",
- "classicPolicyDeleteInProgressTitle": "Deleting classic policy",
- "classicPolicyDeleteSuccessTitle": "Classic policy deleted",
- "classicPolicyDetailBladeTitle": "Details",
- "classicPolicyDisableCommand": "Disable",
- "classicPolicyDisableConfirmation": "Are you sure you want to disable '{0}'? This action cannot be undone.",
- "classicPolicyDisableFailDescription": "Failed to disable '{0}'",
- "classicPolicyDisableFailTitle": "Failed to disable classic policy",
- "classicPolicyDisableInProgressDescription": "Disabling '{0}'",
- "classicPolicyDisableInProgressTitle": "Disabling classic policy",
- "classicPolicyDisableSuccessDescription": "Successfully disabled '{0}'",
- "classicPolicyDisableSuccessTitle": "Classic policy disabled",
- "classicPolicyEasSupportedPlatforms": "Exchange ActiveSync supported platforms",
- "classicPolicyEasUnsupportedPlatforms": "Exchange ActiveSync unsupported platforms",
- "classicPolicyExcludedPlatformsTitle": "Excluded device platforms",
- "classicPolicyFilterAll": "All policies",
- "classicPolicyFilterDisabled": "Disabled policies",
- "classicPolicyFilterEnabled": "Enabled policies",
- "classicPolicyIncludeExcludeMembersDescription": "By excluding groups, you can perform phased migration of policies.",
- "classicPolicyIncludeExcludeMembersTitle": "Include/exclude groups",
- "classicPolicyIncludedPlatformsTitle": "Included device platforms",
- "classicPolicyManualMigrationMessage": "This policy needs to be migrated manually.",
- "classicPolicyMigrateCommand": "Migrate",
- "classicPolicyMigrateConfirmation": "Are you sure you want to migrate '{0}'? This policy can only be migrated once.",
- "classicPolicyMigrateFailDescription": "Failed to migrate '{0}'",
- "classicPolicyMigrateFailTitle": "Failed to migrate classic policy",
- "classicPolicyMigrateInProgressDescription": "Migrating '{0}'",
- "classicPolicyMigrateInProgressTitle": "Migrating classic policy",
- "classicPolicyMigrateRecommendText": "Recommendation: Migrate to the new Azure portal policies.",
- "classicPolicyMigrateSuccessTitle": "Classic policy migrated successfully",
- "classicPolicyMigratedSuccessDescription": "This classic policy can now be managed under Polices.",
- "classicPolicyMigratedSuccessDescriptionMultiple": "This classic policy is migrated as {0} new policies. New policies can be managed under Policies.",
- "classicPolicyNoEditPermissionMsg": "You don't have permission to edit this policy. Only global administrators and security administrators can edit the policy. Click here for more information.",
- "classicPolicySaveFailDescription": "Failed to save '{0}'",
- "classicPolicySaveFailTitle": "Failed to save classic policy",
- "classicPolicySaveInProgressDescription": "Saving '{0}'",
- "classicPolicySaveInProgressTitle": "Saving classic policy",
- "classicPolicySaveSuccessDescription": "Successfully saved '{0}'",
- "classicPolicySaveSuccessTitle": "Classic policy saved",
- "clientAppBladeLegacyInfoBanner": "Legacy auth is currently not supported",
- "clientAppBladeLegacyUpsellBanner": "Block unsupported client apps (Preview)",
- "clientAppBladeTitle": "Client apps",
- "clientAppDescription": "Select the client apps this policy will apply to",
- "clientAppExchangeActiveSync": "Exchange ActiveSync",
- "clientAppExchangeDisabledInfo": "Exchange ActiveSync is available when Exchange Online is the only cloud app selected. Click to learn more",
- "clientAppExchangeWarning": "Exchange ActiveSync currently does not support all other conditions",
- "clientAppLearnMore": "Control user access to target specific client applications not using modern authentication.",
- "clientAppLegacyHeader": "Legacy authentication clients",
- "clientAppMobileDesktop": "Mobile apps and desktop clients",
- "clientAppModernHeader": "Modern authentication clients",
- "clientAppOnlySupportedPlatforms": "Apply policy only to supported platforms",
- "clientAppSelectSpecificClientApps": "Select client apps",
- "clientAppV2BladeTitle": "Client apps (Preview)",
- "clientAppWebBrowser": "Browser",
- "clientAppsSelectedLabel": "{0} included",
- "clientTypeBrowser": "Browser",
- "clientTypeEas": "Exchange ActiveSync clients",
- "clientTypeEasInfo": "Exchange ActiveSync clients that use legacy authentication only.",
- "clientTypeModernAuth": "Modern authentication clients",
- "clientTypeOtherClients": "Other clients",
- "clientTypeOtherClientsInfo": "This includes older office clients and other mail protocols(POP, IMAP, SMTP, etc). [Learn more][1]\n[1]: https://aka.ms/caclientapps\n",
- "cloudAppCountDiffBannerText": "{0} cloud apps configured in this policy have been deleted from the directory, but this doesn't affect the other apps in the policy. The next time you update the application section of the policy, the deleted apps will be automatically removed from it.",
- "cloudAppsSelectionBladeAllMicrosoftApps": "All Microsoft apps",
- "cloudAppsSelectionExcludeAllMicrosoftClients": "Allow Microsoft cloud, desktop and mobile apps (Preview)",
- "cloudappsSelectionBladeAllCloudapps": "All cloud apps",
- "cloudappsSelectionBladeExcludeDescription": "Select the cloud apps to exempt from the policy",
- "cloudappsSelectionBladeExcludedSelectorTitle": "Select excluded cloud apps",
- "cloudappsSelectionBladeIncludeDescription": "Select the cloud apps this policy will apply to",
- "cloudappsSelectionBladeIncludedSelectorTitle": "Select",
- "cloudappsSelectionBladeSelectedCloudapps": "Select apps",
- "cloudappsSelectorInfoBallonText": "Services which the user accesses to do work. For example, 'Salesforce'",
- "cloudappsSelectorUserPlural": "{0} apps",
- "cloudappsSelectorUserSingular": "1 app",
- "conditionLabelMulti": "{0} conditions selected",
- "conditionLabelOne": "1 condition selected",
- "conditionalAccessBladeTitle": "Conditional Access",
- "conditionsNotSelectedLabel": "Not configured",
- "conditionsReqPwSet": "Some options are not available due to the \"Require password change\" grant currently being selected",
- "configureCasText": "Configure Cloud App Security",
- "configureCustomControlsText": "Configure custom policy",
- "controlLabelMulti": "{0} controls selected",
- "controlLabelOne": "1 control selected",
- "controlValidatorText": "Please select at least one control",
- "controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
- "controlsDeviceComplianceInfoBubble": "Device must be Intune compliant. If the device is non-compliant, the user will be prompted to bring the device under compliance",
- "controlsDomainJoinedInfoBubble": "Devices must be Hybrid Azure AD joined.",
- "controlsMamInfoBubble": "Device must use these approved client applications.",
- "controlsMfaInfoBubble": "User must complete additional security requirements like phone call, text",
- "controlsOrAndInfoBubble": "ControlsOrAndInfoBubble",
- "controlsRequireCompliantAppInfoBubble": "Device must use policy protected apps.",
- "controlsRequirePasswordResetInfoBubble": "Require password change to lower user risk. This option also requires multi-factor authentication. Other controls can't be used.",
- "countriesRadiobuttonInfoBalloonContent": "The country/region a sign-in is coming from is determined by the user's IP address.",
- "createNewVpnCert": "New certificate",
- "createdTimeLabel": "Creation time",
- "customRoleLabel": "Custom roles (not supported)",
- "dateRangeTypeLabel": "Date range",
- "daysOfWeekPlaceholderText": "Filter days of the week",
- "daysOfWeekTypeLabel": "Days of the week",
- "deletePolicyNoLicenseText": "You can delete this policy now. Once deleted you will not be able to recreate it until you have the required licenses.",
- "descriptionContentForControlsAndOr": "For multiple controls",
- "devicePlatform": "Device platform",
- "devicePlatformConditionHelpDescription": "Apply policy to selected device platforms.\n[Learn more][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2044750",
- "devicePlatformInclude": "{0} included",
- "devicePlatformIncludeExclude": "{0} and {1} excluded",
- "devicePlatformNoSelectionError": "Select device platforms requires one sub-item to be selected.",
- "devicePlatformsNone": "None",
- "deviceSelectionBladeExcludeDescription": "Select the platforms to exempt from the policy",
- "deviceSelectionBladeIncludeDescription": "Select the device platforms to include in this policy",
- "deviceStateAll": "All device state",
- "deviceStateCompliant": "Device marked as compliant",
- "deviceStateCompliantInfoContent": "Devices that are Intune compliant will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Intune compliant.",
- "deviceStateConditionConfigureInfoContent": "Configure policy based on device state",
- "deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Hybrid Azure AD joined' or 'marked as compliant'.\n '{0}' has been deprecated. Use '{1}' instead.",
- "deviceStateConditionSelectorLabel": "Device state (Preview)",
- "deviceStateDomainJoined": "Device Hybrid Azure AD joined",
- "deviceStateDomainJoinedInfoContent": "Devices that are Hybrid Azure AD joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Hybrid Azure AD joined.",
- "deviceStateDomainJoinedInfoLinkText": "Learn more.",
- "deviceStateExcludeDescription": "Select the device state condition used to exclude devices from policy.",
- "deviceStateIncludeAndExcludeOneLabel": "{0} and exclude {1}",
- "deviceStateIncludeAndExcludeTwoLabel": "{0} and exclude {1}, {2}",
- "directoryRoleInfoContent": "Assign policy to built-in directory roles.",
- "directoryRolesLabel": "Directory roles",
- "discardbutton": "Discard",
- "downloadDefaultFileName": "IP Ranges",
- "downloadExampleFileName": "Example",
- "downloadExampleHeader": "This is an example file with demonstrations of the kinds of data which can be accepted. Lines starting with # will be ignored.",
- "endDatePickerLabel": "Ends",
- "endTimePickerLabel": "End time",
- "enterCountryText": "IP address and Country are evaluated in a pair. Select the Country.",
- "enterIpText": "IP address and Country are evaluated in a pair. Input the IP address.",
- "enterUserText": "No user is selected. Select a user.",
- "evaluationResult": "Evaluation result",
- "exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
- "exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync with supported platforms only",
- "excludeAllTrustedLocationSelectorText": "all trusted locations",
- "featureRequiresP2": "This feature requires Azure AD Premium 2 license.",
- "friday": "Friday",
- "grantControls": "Grant controls",
- "gridNetworkTrusted": "Trusted",
- "gridPolicyCreatedDateTime": "Creation Date",
- "gridPolicyEnabled": "Enabled",
- "gridPolicyModifiedDateTime": "Modified Date",
- "gridPolicyName": "Policy Name",
- "gridPolicyState": "State",
- "groupSelectionBladeExcludeDescription": "Select the groups to exempt from the policy",
- "groupSelectionBladeExcludedSelectorTitle": "Select excluded groups",
- "groupSelectionBladeSelect": "Select groups",
- "groupSelectorInfoBallonText": "Groups in the directory that the policy applies to. For example, 'Pilot group'",
- "groupsSelectionBladeTitle": "Groups",
- "helpCommonScenariosText": "Interested in common scenarios?",
- "helpCondition1": "When any user is outside the company network",
- "helpCondition2": "When users in the 'Managers' group sign-in",
- "helpConditionsTitle": "Conditions",
- "helpControl1": "They're required to sign in with multi-factor authentication",
- "helpControl2": "They are required be on an Intune compliant or domain-joined device",
- "helpControlsTitle": "Controls",
- "helpIntroText": "Conditional Access gives you the ability to enforce access requirements when specific conditions occur. Let's take a few examples",
- "helpIntroTitle": "What is Conditional Access?",
- "helpLearnMoreText": "Want to learn more about Conditional Access?",
- "helpStartStep1": "Create your first policy by clicking \"+ New policy\"",
- "helpStartStep2": "Specify policy Conditions and Controls",
- "helpStartStep3": "When you are done, don't forget to Enable policy and Create",
- "helpStartTitle": "Get started",
- "highRisk": "High",
- "includeAndExcludeAppsTextFormat": "Include: {0}. Exclude: {1}.",
- "includeAppsTextFormat": "Include: {0}.",
- "includeUnknownAreasCheckboxInfoBalloonContent": "Unknown areas are IP addresses that can't be mapped to a country/region.",
- "includeUnknownAreasCheckboxLabel": "Include unknown areas",
- "infoCommandLabel": "Info",
- "invalidCertDuration": "Invalid cert duration",
- "invalidIpAddress": "Value must be a valid IP address",
- "invalidUriErrorMsg": "Please enter a valid Uri. For example,'uri:contoso.com:acr' ",
- "iosDisplayName": "iOS",
- "linuxDisplayName": "Linux",
- "linuxDisplayNamePreview": "Linux (Preview)",
- "loadAll": "Load all",
- "loading": "Loading...",
- "locationConfigureNamedLocationsText": "Configure all trusted locations",
- "locationConfigureNamedLocationsUri": "{0}/usermanagement/mfasettings.aspx?tenantid={1}&culture={2}",
- "locationNameTooLongError": "Location name is too long. Maximum is 256 characters",
- "locationSelectionBladeExcludeDescription": "Select the locations to exempt from the policy",
- "locationSelectionBladeIncludeDescription": "Select the locations to include in this policy",
- "locationsAllLocationsLabel": "Any location",
- "locationsAllNamedLocationsLabel": "All trusted IPs",
- "locationsAllPrivateLinksLabel": "All Private Links in my tenant",
- "locationsIncludeExcludeLabel": "{0} and exclude all trusted IPs",
- "locationsSelectedPrivateLinksLabel": "Selected Private Links",
- "lowRisk": "Low",
- "macOsDisplayName": "macOS",
- "managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Azure AD Premium P1 or P2.",
- "markAsTrustedCheckboxInfoBalloonContent": "Signing in from a trusted location lowers a user's sign-in risk. Only mark this location as trusted if you know the IP ranges entered are established and credible in your organization.",
- "markAsTrustedCheckboxLabel": "Mark as trusted location",
- "mediumRisk": "Medium",
- "memberSelectionCommandRemove": "Remove",
- "menuItemClaimProviderControls": "Custom controls (Preview)",
- "menuItemClassicPolicies": "Classic policies",
- "menuItemInsightsAndReporting": "Insights and reporting",
- "menuItemManage": "Manage",
- "menuItemNamedLocationsPreview": "Named locations (Preview)",
- "menuItemNamedNetworks": "Named locations",
- "menuItemPolicies": "Policies",
- "menuItemTermsOfUse": "Terms of use",
- "modifiedTimeLabel": "Modified time",
- "monday": "Monday",
- "nameLabel": "Name",
- "namedLocationCountryInfoBanner": "Only IPv4 addresses are mapped to countries/regions. IPv6 addresses are included in unknown countries/regions.",
- "namedLocationTypeCountry": "Countries/Regions",
- "namedLocationTypeLabel": "Define the location using:",
- "namedLocationUpsellBanner": "This view has been deprecated. Go to the new and improved 'Named locations' view.",
- "namedLocationsHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/namedlocationupdate",
- "namedNetworkAddIpRanges": "Add a new IP range (ex: 40.77.182.32/27)",
- "namedNetworkCountryNeeded": "You need to select at least one country",
- "namedNetworkDeleteCommand": "Delete",
- "namedNetworkDeleteDescription": "Are you sure you want to delete '{0}'? This action cannot be undone.",
- "namedNetworkDeleteTitle": "Are you sure?",
- "namedNetworkDownloadIpRange": "Download",
- "namedNetworkInvalidRange": "Value must be a valid IP range.",
- "namedNetworkIpRangeNeeded": "You need at least one valid IP range",
- "namedNetworkIpRangesDescriptionContent": "Configure your organization's IP ranges",
- "namedNetworkIpRangesTab": "IP ranges",
- "namedNetworkListAdd": "New location",
- "namedNetworkListConfigureTrustedIps": "Configure MFA trusted IPs",
- "namedNetworkNameDescription": "Example: 'Redmond office'",
- "namedNetworkNameInvalid": "The supplied name is invalid.",
- "namedNetworkNameRequired": "You must supply a name for this location.",
- "namedNetworkNoIpRanges": "No IP ranges",
- "namedNetworkNotificationCreateDescription": "Creating location named '{0}'",
- "namedNetworkNotificationCreateFailedDescription": "Creating location '{0}' failed. Please try again later.",
- "namedNetworkNotificationCreateFailedTitle": "Failed to create location",
- "namedNetworkNotificationCreateSuccessDescription": "Created location named '{0}'",
- "namedNetworkNotificationCreateSuccessTitle": "Created '{0}'",
- "namedNetworkNotificationCreateTitle": "Creating '{0}'",
- "namedNetworkNotificationDeleteDescription": "Deleting location named '{0}'",
- "namedNetworkNotificationDeleteFailedDescription": "Deleting location '{0}' failed. Please try again later.",
- "namedNetworkNotificationDeleteFailedTitle": "Failed to Delete location",
- "namedNetworkNotificationDeleteSuccessDescription": "Deleted location named '{0}'",
- "namedNetworkNotificationDeleteSuccessTitle": "Deleted '{0}'",
- "namedNetworkNotificationDeleteTitle": "Deleting '{0}'",
- "namedNetworkNotificationUpdateDescription": "Updating location named '{0}'",
- "namedNetworkNotificationUpdateFailedDescription": "Updating location '{0}' failed. Please try again later.",
- "namedNetworkNotificationUpdateFailedTitle": "Failed to Update location",
- "namedNetworkNotificationUpdateSuccessDescription": "Updated location named '{0}'",
- "namedNetworkNotificationUpdateSuccessTitle": "Updated '{0}'",
- "namedNetworkNotificationUpdateTitle": "Updating '{0}'",
- "namedNetworkSearchPlaceholder": "Search locations.",
- "namedNetworkUploadFailedDescription": "There was an error parsing the supplied file. Please make sure to upload a plain-text file with each line in the CIDR format.",
- "namedNetworkUploadFailedTitle": "Failed to parse '{0}'",
- "namedNetworkUploadInProgressDescription": "Attempting to parse valid CIDR values from '{0}'.",
- "namedNetworkUploadInProgressTitle": "Parsing '{0}'",
- "namedNetworkUploadInvalidDescription": "'{0}' is either too large or in an invalid format.",
- "namedNetworkUploadInvalidTitle": "'{0}' Invalid",
- "namedNetworkUploadIpRange": "Upload",
- "namedNetworkUploadSuccessDescription": "{0} lines analyzed. {1} in a bad format. {2} skipped.",
- "namedNetworkUploadSuccessTitle": "Finished parsing '{0}'",
- "namedNetworksAdd": "New named location",
- "namedNetworksConditionHelpDescription": "Control user access based on their physical location.\n[Learn more][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
- "namedNetworksExcludeLabel": "{0} and {1} excluded",
- "namedNetworksHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
- "namedNetworksIncludeLabel": "{0} included",
- "namedNetworksNone": "No named locations found.",
- "namedNetworksTitle": "Configure locations",
- "namednetworkExceedingSizeErrorBladeTitle": "Error details",
- "namednetworkExceedingSizeErrorDetailText": "Click here for more details.",
- "namednetworkExceedingSizeErrorMessage": "You have exceeded the maximum allowed storage for named locations. Try again with a shorter list. Click here to view more details.",
- "newCertName": "new cert",
- "noPolicyRowMessage": "No policies",
- "noSPSelected": "No service principal selected",
- "noUpdatePermissionMessage": "You don't have permissions to update these settings. Please contact your global administrator to get access.",
- "noUserSelected": "No user selected",
- "noneRisk": "No risk",
- "office365Description": "These apps include Microsoft Flow, Microsoft Forms, Microsoft Teams, Office 365 Exchange Online, Office 365 SharePoint Online, Office 365 Yammer, and others.",
- "office365InfoBox": "At least one of the apps selected is part of Office 365. We recommend setting the policy on the Office 365 app instead.",
- "oneUserSelected": "1 user selected",
- "onlyGlobalAdminsCanSaveThisPolicyConfig": "Only global administrators can save this policy.",
- "or": "{0} OR {1} ",
- "pickerDoneCommand": "Done",
- "policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like Cloud apps, Sign-in risk, and Device platforms with Azure AD Premium",
- "policiesBladeTitle": "Policies",
- "policiesBladeTitleWithAppName": "Policies: {0}",
- "policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked sign-on attribute.",
- "policiesHitMaxLimitStatusBarMessage": "You've reached the maximum number of policies for this tenant. Delete some policies before creating more.",
- "policyAssignmentsSection": "Assignments",
- "policyBlockAllInfoBox": "The configured policy will block all users, so it is not supported. Review the assignments and controls. Exclude the current user {0}, if you would like to save this policy.",
- "policyCloudAppsDisplayTextAllApp": "All apps",
- "policyCloudAppsLabel": "Cloud apps",
- "policyConditionClientAppDescription": "Software the user is employing to access the cloud app. For example, 'Browser'",
- "policyConditionClientAppV2Description": "Software the user is employing to access the cloud app. For example, 'Browser'",
- "policyConditionDevicePlatform": "Device platforms",
- "policyConditionDevicePlatformDescription": "Platform the user is signing in from. For example, 'iOS'",
- "policyConditionLocation": "Locations",
- "policyConditionLocationDescription": "Location (determined using IP address range) the user is signing in from",
- "policyConditionSigninRisk": "Sign-in risk",
- "policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Azure AD Premium 2 license.",
- "policyConditionUserRisk": "User risk",
- "policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
- "policyConditioniClientApp": "Client apps",
- "policyConditioniClientAppV2": "Client apps (Preview)",
- "policyControlAllowAccessDisplayedName": "Grant access",
- "policyControlAuthenticationStrengthDisplayedName": "Require authentication strength (Preview)",
- "policyControlBladeTitle": "Grant",
- "policyControlBlockAccessDisplayedName": "Block access",
- "policyControlCompliantDeviceDisplayedName": "Require device to be marked as compliant",
- "policyControlContentDescription": "Control access enforcement to block or grant access.",
- "policyControlInfoBallonText": "Block access or select additional requirements which need to be satisfied to allow access",
- "policyControlMfaChallengeDisplayedName": "Require multi-factor authentication",
- "policyControlRequireCompliantAppDisplayedName": "Require app protection policy",
- "policyControlRequireDomainJoinedDisplayedName": "Require Hybrid Azure AD joined device",
- "policyControlRequireMamDisplayedName": "Require approved client app",
- "policyControlRequiredPasswordChangeDisplayedName": "Require password change",
- "policyControlSelectAuthStrength": "Require authentication strength",
- "policyControlsNoControlsSelected": "0 controls selected",
- "policyControlsSection": "Access controls",
- "policyCreatBladeTitle": "New",
- "policyCreateButton": "Create",
- "policyCreateFailedMessage": "Error: {0}",
- "policyCreateFailedTitle": "Failed to create '{0}'",
- "policyCreateInProgressTitle": "Creating '{0}'",
- "policyCreateSuccessMessage": "Successfully created '{0}'. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
- "policyCreateSuccessTitle": "Successfully created '{0}'",
- "policyDeleteConfirmation": "Are you sure you want to delete '{0}'? This action cannot be undone.",
- "policyDeleteFailTitle": "Failed to delete '{0}'",
- "policyDeleteInProgressTitle": "Deleting '{0}'",
- "policyDeleteSuccessTitle": "Successfully deleted '{0}'",
- "policyEnforceLabel": "Enable policy",
- "policyErrorCannotSetSigninRisk": "You don't have permission to save a policy with a sign-in risk condition.",
- "policyErrorNoPermission": "You don't have permission to save policy. Contact your global admin.",
- "policyErrorUnknown": "Something went wrong, please try again later.",
- "policyFallbackWarningMessage": "Failure to create or update '{0}' using MS Graph resulting in a fallback to AD Graph. Please investigate the following scenario as there is most likely a bug when calling the policy endpoint for MS Graph with an incompatible condition.",
- "policyFallbackWarningTitle": "Creating or updating '{0}' partially successful",
- "policyNameCannotBeEmpty": "Policy name can't be empty",
- "policyNameDevice": "Device policy",
- "policyNameFormat": "[{0}] {1}",
- "policyNameMam": "Mobile App Management policy",
- "policyNameMfaLocation": "MFA and location policy",
- "policyNamePlaceholderText": "Example: 'Device compliance app policy'",
- "policyNameTooLongError": "Policy name is too long. Maximum 256 characters",
- "policyOff": "Off",
- "policyOn": "On",
- "policyReportOnly": "Report-only",
- "policyReviewSection": "Review",
- "policySaveButton": "Save",
- "policyStatusIconDescription": "Policy is Enabled",
- "policyStatusIconEnabled": "Enabled status icon",
- "policyTemplateName1": "Use app enforced restrictions for {0} browser access",
- "policyTemplateName2": "Allow {0} access only on managed devices",
- "policyTemplateName3": "Policy migrated from Continuous Access Evaluation settings",
- "policyTriggerRiskSpecific": "Select specific risk level",
- "policyTriggersInfoBalloonText": "Conditions which define when the policy will apply. For example, 'location'",
- "policyTriggersNoConditionsSelected": "0 conditions selected",
- "policyTriggersSelectorLabel": "Conditions",
- "policyUpdateFailedMessage": "Error: {0}",
- "policyUpdateFailedTitle": "Failed to update {0}",
- "policyUpdateInProgressTitle": "Updating {0}",
- "policyUpdateSuccessMessage": "Successfully updated {0}. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
- "policyUpdateSuccessTitle": "Successfully updated {0}",
- "primaryCol": "Primary",
- "privateLinkLabel": "Azure AD Private Link",
- "reportOnlyInfoBox": "Report-only mode: Policies are evaluated and logged at sign-in but do not impact users.",
- "requireAllControlsText": "Require all the selected controls",
- "requireCompliantDevice": "Require compliant device",
- "requireDomainJoined": "Require domain-joined device",
- "requireMFA": "Require multi-factor authentication ",
- "requireOneControlText": "Require one of the selected controls",
- "resetFilters": "Reset filters",
- "sPRequired": "Service principal required",
- "sPSelectorInfoBalloon": "User or Service Principal you want to test",
- "saturday": "Saturday",
- "searchTextTooLongError": "The search text is too long. Maximum 256 characters",
- "securityDefaultsPolicyName": "Security defaults",
- "securityDefaultsTextMessage": "Security defaults must be disabled to enable Conditional Access policy.",
- "securityDefaultsWarningMessage": "It looks like you're about to manage your organization's security configurations. That's great! You must first disable Security defaults before enabling a Conditional Access policy.",
- "selectDevicePlatforms": "Select device platforms",
- "selectNamedNetworksSubtitle": "",
- "selectNamedNetworksTitle": "Select locations",
- "selectedSP": "Selected Service Principal",
- "servicePrincipalDataGridAria": "List of available service principals",
- "servicePrincipalDropDownLabel": "What does this policy apply to?",
- "servicePrincipalInfoBox": "Some conditions are not available due to '{0}' selection in policy assignment",
- "servicePrincipalRadioAll": "All owned service principals",
- "servicePrincipalRadioSelect": "Select service principals",
- "servicePrincipalSelectionsAria": "Selected service principals grid",
- "servicePrincipalSelectorAria": "List of chosen service principals",
- "servicePrincipalSelectorMultiple": "{0} service principals selected",
- "servicePrincipalSelectorSingle": "1 service principal selected",
- "servicePrincipalSpecificInc": "Specific service principals included",
- "servicePrincipals": "Service principals",
- "sessionControlBladeTitle": "Session",
- "sessionControlDescriptionContent": "Control access based on session controls to enable limited experiences within specific cloud applications.",
- "sessionControlDisableInfo": "This control only works with supported apps. Currently, Office 365, Exchange Online, and SharePoint Online are the only cloud apps that support app enforced restrictions. Click here to learn more.",
- "sessionControlInfoBallonText": "Session controls enable limited experience within a cloud app.",
- "sessionControls": "Session controls",
- "sessionControlsAppEnforcedLabel": "Use app enforced restrictions",
- "sessionControlsCasLabel": "Use Conditional Access App Control",
- "sessionControlsSecureSignInLabel": "Require token binding",
- "sharepointAppName": "SharePoint",
- "signinRiskDescription": "Select the sign-in risk level this policy will apply to",
- "signinRiskInclude": "{0} included",
- "signinRiskTriggerDescriptionContent": "Select the sign-in risk level",
- "singleTenantServicePrincipalInfoBallonText": "Policy only applies to single tenant service principals owned by your organization. Click here to learn more ",
- "specificSigninRiskLevelsOption": "Select specific sign-in risk levels",
- "specificUsersExcluded": "specific users excluded",
- "specificUsersIncluded": "Specific users included",
- "specificUsersIncludedAndExcluded": "Specific users excluded and included",
- "startDatePickerLabel": "Starts",
- "startFreeTrial": "Start a free trial",
- "startTimePickerLabel": "Start time",
- "sunday": "Sunday",
- "testButton": "What If",
- "thumbprintCol": "Thumbprint",
- "thursday": "Thursday",
- "timeConditionAllTimesLabel": "Any time",
- "timeConditionIntroText": "Configure the time this policy will apply to",
- "timeConditionSelectorInfoBallonContent": "When the user is signing in. For example, \"Wednesday 9am-5pm PST\"",
- "timeConditionSelectorLabel": "Time (Preview)",
- "timeConditionSpecificLabel": "Specific times",
- "timeSelectorAllTimesText": "Any time",
- "timeSelectorSpecificTimesText": "Specific times configured",
- "timeZoneDropdownInfoBalloonContent": "Select a time zone that defines the time range. This policy applies to users in all time zones. For example, 'Wednesday 9am - 5pm' for one user would be 'Wednesday 10am - 6pm' for a user in a different time zone.",
- "timeZoneDropdownLabel": "Time zone",
- "timeZoneDropdownPlaceholderText": "Select a time zone",
- "tooManyPoliciesDescription": "Only first 50 policies are being displayed now, click here to view all policies",
- "tooManyPoliciesTitle": "More than 50 policies found",
- "trustedLocationStatusIconDescription": "Location is trusted",
- "trustedLocationStatusIconEnabled": "Trusted status icon",
- "tuesday": "Tuesday",
- "uploadInBadState": "Unable to upload the specified file.",
- "upsellAppsDescription": "Require multi-factor authentication for sensitive applications all the time or only from outside the company network.",
- "upsellAppsTitle": "Secure applications",
- "upsellBannerText": "Get a free Premium trial to use this feature",
- "upsellDataDescription": "Require device to be marked as compliant or Hybrid Azure AD joined to allow access to company resources.",
- "upsellDataTitle": "Secure data",
- "upsellDescription": "Conditional Access provides the control and protection you need to keep your corporate data secure, while giving your people an experience that allows them to do their best work from any device. For instance, you can restrict access from outside the company network or restrict access to devices which meet the compliance policies.",
- "upsellRiskDescription": "Require multi-factor authentication for risk events detected by Microsoft's machine learning system.",
- "upsellRiskTitle": "Protect against risk",
- "upsellTitle": "Conditional Access",
- "upsellWhyTitle": "Why use Conditional Access?",
- "userAppNoneOption": "None",
- "userNamePlaceholderText": "Enter User Name",
- "userNotSetSeletorLabel": "0 users and groups selected",
- "userOnlySelectionBladeExcludeDescription": "Select the users to exempt from the policy",
- "userOrGroupSelectionCountDiffBannerText": "{0} configured in this policy have been deleted from the directory, but this doesn't affect the other users and groups in the policy. The next time you update the policy, the deleted users and/or groups will be automatically removed.",
- "userOrSPNotSetSelectorLabel": "0 users or workload identities selected",
- "userOrSPSelectionBladeTitle": "Users or workload identities",
- "userOrSPSelectorInfoBallonText": "Identities in the directory that the policy applies to, including users, groups, and service principals",
- "userRequired": "User Required",
- "userRiskErrorBox": "\"User risk\" condition must be selected when \"Require password change\" grant is selected",
- "userSPRequired": "User or Service principal required",
- "userSPSelectorTitle": "User or Workload identity",
- "userSelectionBladeAllUsersAndGroups": "All users and groups",
- "userSelectionBladeExcludeDescription": "Select the users and groups to exempt from the policy",
- "userSelectionBladeExcludeTabTitle": "Exclude",
- "userSelectionBladeExcludedSelectorTitle": "Select excluded users",
- "userSelectionBladeIncludeDescription": "Select the users this policy will apply to",
- "userSelectionBladeIncludeTabTitle": "Include",
- "userSelectionBladeIncludedSelectorTitle": "Select",
- "userSelectionBladeSelectUsers": "Select users",
- "userSelectionBladeSelectedUsers": "Select users and groups",
- "userSelectionBladeTitle": "Users and groups",
- "userSelectorBladeTitle": "Users",
- "userSelectorExcluded": "{0} excluded",
- "userSelectorGroupPlural": "{0} groups",
- "userSelectorGroupSingular": "1 group",
- "userSelectorIncluded": "{0} included",
- "userSelectorInfoBallonText": "Users and groups in the directory that the policy applies to. For example, 'Pilot group'",
- "userSelectorSelected": "{0} selected",
- "userSelectorTitle": "User",
- "userSelectorUserAndGroup": "{0}, {1}",
- "userSelectorUserPlural": "{0} users",
- "userSelectorUserSingular": "1 user",
- "userSelectorWithExclusion": "{0} and {1}",
- "usersGroupsLabel": "Users and groups",
- "viewApprovedAppsText": "See list of approved client apps",
- "viewCompliantAppsText": "See list of policy protected client apps",
- "vpnBladeTitle": "VPN connectivity",
- "vpnCertCreateFailedMessage": "Error: {0}",
- "vpnCertCreateFailedTitle": "Failed to create {0}",
- "vpnCertCreateInProgressTitle": "Creating {0}",
- "vpnCertCreateSuccessMessage": "Successfully created {0}.",
- "vpnCertCreateSuccessTitle": "Successfully created {0}",
- "vpnCertNoRowsMessage": "No VPN certificates found",
- "vpnCertUpdateFailedMessage": "Error: {0}",
- "vpnCertUpdateFailedTitle": "Failed to update {0}",
- "vpnCertUpdateInProgressTitle": "Updating {0}",
- "vpnCertUpdateSuccessMessage": "Successfully updated {0}.",
- "vpnCertUpdateSuccessTitle": "Successfully updated {0}",
- "vpnFeatureInfo": "For more information on VPN connectivity and Conditional Access, click here.",
- "vpnFeatureWarning": "Once a VPN certificate is created in the Azure portal, Azure AD will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
- "vpnMenuText": "VPN connectivity",
- "vpncertDropdownDefaultOption": "Duration",
- "vpncertDropdownInfoBalloonContent": "Select the duration for the cert you want to create",
- "vpncertDropdownLabel": "Select duration",
- "vpncertDropdownOneyearOption": "1 year",
- "vpncertDropdownThreeyearOption": "3 years",
- "vpncertDropdownTwoyearOption": "2 years",
- "wednesday": "Wednesday",
- "whatIfAppEnforcedControl": "Use app enforced restrictions",
- "whatIfBladeDescription": "Test the impact of Conditional Access on a user when signing in under certain conditions.",
- "whatIfBladeTitle": "What If",
- "whatIfClassicPoliciesWarning": "Classic policies are not evaluated by this tool.",
- "whatIfClientAppInfo": "The client app the user is signing in from. For example, 'Browser'.",
- "whatIfCountry": "Country",
- "whatIfCountryInfo": "The country the user is signing in from.",
- "whatIfDevicePlatformInfo": "The device platform the user is signing in from.",
- "whatIfDeviceStateInfo": "The device state the user is signing in from",
- "whatIfEnterIpAddress": "Enter IP address (ex: 40.77.182.32)",
- "whatIfErrorInvalidIpAddress": "An invalid IP address was specified.",
- "whatIfEvaResultApplication": "Cloud apps",
- "whatIfEvaResultClientApps": "Client app",
- "whatIfEvaResultDevicePlatform": "Device platform",
- "whatIfEvaResultEmptyPolicy": "Empty policy",
- "whatIfEvaResultInvalidCondition": "Invalid condition",
- "whatIfEvaResultInvalidPolicy": "Invalid policy",
- "whatIfEvaResultLocation": "Location",
- "whatIfEvaResultNotEnoughInformation": "Not enough information",
- "whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
- "whatIfEvaResultSignInRisk": "Sign-in risk",
- "whatIfEvaResultUsers": "Users and groups",
- "whatIfIpAddress": "IP address",
- "whatIfIpAddressInfo": "IP address the user is signing in from.",
- "whatIfIpCountryInfoBoxText": "If using an IP address or Country, both fields will be required and should correctly map together.",
- "whatIfPolicyAppliesTab": "Policies that will apply",
- "whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
- "whatIfReasons": "Reasons why this policy will not apply",
- "whatIfSelectClientApp": "Select a client app...",
- "whatIfSelectCountry": "Select country...",
- "whatIfSelectDevicePlatform": "Select device platform...",
- "whatIfSelectPrivateLink": "Select private link...",
- "whatIfSelectServicePrincipalRisk": "Select service principal risk...",
- "whatIfSelectSignInRisk": "Select sign-in risk...",
- "whatIfSelectType": "Select identity type",
- "whatIfSelectUserRisk": "Select user risk...",
- "whatIfServicePrincipalRiskInfo": "The risk level associated with the service principal",
- "whatIfSignInRisk": "Sign-in risk",
- "whatIfSignInRiskInfo": "The risk level associated with the sign-in",
- "whatIfUnknownAreas": "Unknown Areas",
- "whatIfUserPickerLabel": "Selected user",
- "whatIfUserPickerNoRowsLabel": "No user or service principal selected",
- "whatIfUserRiskInfo": "The risk level associated with the user",
- "whatIfUserSelectorInfo": "User in the directory that you want to test",
- "windows365InfoBox": "Selecting Windows 365 will affect connections to Cloud PCs and Azure Virtual Desktop session hosts. Click here to learn more.",
- "windowsDisplayName": "Windows",
- "windowsPhoneDisplayName": "Windows Phone",
- "workloadIdentities": "Workload identities (Preview)",
- "workloadIdentity": "Workload identity"
- },
- "ApplicableDeviceType": {
- "iPad": "iPad",
- "iPhoneAndIPod": "iPhone and iPod"
- },
- "TAPSettings": {
- "AllowedDataIngestionLocations": {
- "label": "Allow users to open data from selected services",
- "tooltip": "Select the application storage services users can open data from. All other services are blocked. Selecting no services will prevent users from opening data."
- },
- "AndroidBackup": {
- "label": "Backup org data to Android backup services",
- "tooltip": "Select {0} to prevent backup of org data to Android backup services. \nSelect {1} to permit backup of org data to Android backup services. \nPersonal or unmanaged data is not affected."
- },
- "AndroidBiometricAuthentication": {
- "label": "Biometrics instead of PIN for access",
- "tooltip": "Choose which android authentication methods people can use, if any, in place of an app PIN."
- },
- "AndroidFingerprint": {
- "label": "Fingerprint instead of PIN for access (Android 6.0+)",
- "tooltip": "Android OS uses fingerprint scans to authenticate Android-device users. This feature supports the native biometric controls on Android devices. OEM-specific biometric settings, like Samsung Pass, are not supported. If allowed, native biometric controls must be used to access the app on a capable device."
- },
- "AndroidOverrideFingerprint": {
- "label": "Override fingerprint with PIN after timeout"
- },
- "AppPIN": {
- "label": "App PIN when device PIN is set",
- "tooltip": "If not required, an app PIN does not need to be used to access the app if the device PIN is set on an MDM enrolled device.
\n\nNote: Intune cannot detect device enrollment with a third-party EMM solution on Android."
- },
- "BlockDataIngestionIntoOrganizationDocuments": {
- "label": "Open data into Org documents",
- "tooltip1": "Select Block to disable the use of the Open option or other options to share data between accounts in this app. Select Allow if you want to allow the use of Open and other options to share data between accounts in this app.",
- "tooltip2": "When set to Block, you can configure the following setting, Allow user to open data from selected services, to specify which services are allowed for Org data locations.",
- "tooltip3": "Note: This setting is only enforced if the setting \"Receive data from other apps\" is set to \"Policy managed apps\".
\nNote: This setting does not apply to all applications. For more information see {0}.",
- "tooltip4": "Note: This setting is only enforced if the setting \"Receive data from other apps\" is set to \"Policy managed apps\".
\nNote: This setting does not apply to all applications. For more information see {0} or {0}."
- },
- "ConnectToVpnOnLaunch": {
- "label": "Start Microsoft Tunnel connection on app-launch",
- "tooltip": "Allow connection to VPN when app is launch"
- },
- "CredentialsForAccess": {
- "label": "Work or school account credentials for access",
- "tooltip": "If required, work or school credentials must be used to access the policy-managed app. If PIN or biometric methods also required for access to the app, the work or school account credentials will be required on top of those prompts."
- },
- "CustomBrowserDisplayName": {
- "label": "Unmanaged Browser Name",
- "tooltip": "Enter the application name for browser associated with the \"Unmanaged Browser ID\". This name will be displayed to users if the specified browser is not installed."
- },
- "CustomBrowserPackageId": {
- "label": "Unmanaged Browser ID",
- "tooltip": "Enter the application ID for a single browser. Web content (http/s) from policy managed applications will open in the specified browser."
- },
- "CustomBrowserProtocol": {
- "label": "Unmanaged browser protocol",
- "tooltip": "Enter the protocol for a single unmanaged browser. Web content (http/s) from policy managed applications will open in any app that supports this protocol.
\n \nNote: Include only the protocol prefix. If your browser requires links of the form \"mybrowser://www.microsoft.com\", enter \"mybrowser\".
"
- },
- "CustomDialerAppDisplayName": {
- "label": "Dialer App Name"
- },
- "CustomDialerAppPackageId": {
- "label": "Dialer App Package ID"
- },
- "CustomDialerAppProtocol": {
- "label": "Dialer App URL Scheme"
- },
- "Cutcopypaste": {
- "label": "Restrict cut, copy, and paste between other apps",
- "tooltip": "Cut, copy, and paste data between your app and other approved apps installed on the device. Choose to block these actions completely between apps, allow these actions for use with any app, or restrict use to apps that your organization manages.
\n\nPolicy-managed apps with paste in gives you the option to accept incoming content pasted from another app. However, it blocks users from sharing content outwardly, unless sharing with a managed app.
"
- },
- "DialerRestrictionLevel": {
- "iosTooltip": "Typically, when a user selects a hyperlinked phone number in an app, a dialer app will open with the phone number prepopulated and ready to call. For this setting, choose how to handle this type of content transfer when it's initiated from a policy-managed app. Additional steps may be necessary in order for this setting to take effect. First, verify that tel and telprompt have been removed from the Select apps to exempt list. Then, ensure the application is using a newer version of Intune SDK (Version 12.7.0+).",
- "label": "Transfer telecommunication data to",
- "tooltip": "Typically, when a user selects a hyperlinked phone number in an app, a dialer app will open with the phone number prepopulated and ready to call. For this setting, choose how to handle this type of content transfer when it's initiated from a policy-managed app."
- },
- "EncryptData": {
- "label": "Encrypt org data",
- "link": "https://docs.microsoft.com/en-us/intune/app-protection-policy-settings-android#data-relocation-settings",
- "tooltip": "Select {0} to enforce encrypting org data with Intune app layer encryption.\n
\nSelect {1} to not enforce encrypting org data with Intune app layer encryption.\n\n
\nNote: For more information on Intune app layer encryption, see {2}."
- },
- "EncryptDataAndroid": {
- "tooltip": "Choose Require to enable encryption of work or school data in this app. Intune uses an OpenSSL, 256-bit AES encryption scheme along with the Android Keystore system to securely encrypt app data. Data is encrypted synchronously during file I/O tasks. Content on the device storage is always encrypted. The SDK will continue to provide support of 128-bit keys for compatibility with content and apps that use older SDK versions.
\n\nThe encryption method is FIPS 140-2 compliant.
"
- },
- "EncryptDataIos": {
- "tooltip1": "Choose Require to enable encryption of work or school data in this app. Intune enforces iOS/iPadOS device encryption to protect app data while the device is locked. Applications may optionally encrypt app data using Intune APP SDK encryption. Intune APP SDK uses iOS/iPadOS cryptography methods to apply 128-bit AES encryption to app data.",
- "tooltip2": "When you enable this setting, the user may be required to set up and use a PIN to access their device. If there's no device PIN and encryption is required, the user is prompted to set a PIN with the message \"Your organization has required you to first enable a device PIN to access this app.\"",
- "tooltip3": "Go to the official Apple documentation to see which iOS encryption modules are FIPS 140-2 compliant or pending FIPS 140-2 compliance."
- },
- "EncryptDataOnEnrolledDevices": {
- "label": "Encrypt org data on enrolled devices",
- "tooltip": "Select {0} to enforce encrypting org data with Intune app layer encryption on all devices.
\n\nSelect {1} to not enforce encrypting org data with Intune app layer encryption on enrolled devices."
- },
- "IOSBackup": {
- "label": "Backup org data to iTunes and iCloud backups",
- "tooltip": "Select {0} to prevent backup of org data to iTunes or iCloud. \nSelect {1} to permit backup of org data to iTunes or iCloud. \nPersonal or unmanaged data is not affected."
- },
- "IOSFaceID": {
- "label": "Face ID instead of PIN for access (iOS 11+/iPadOS)",
- "tooltip": "Face ID uses facial recognition technology to authenticate users on iOS/iPadOS devices. Intune calls the LocalAuthentication API to authenticate users using Face ID. If allowed, Face ID must be used to access the app on a Face ID capable device."
- },
- "IOSOverrideTouchId": {
- "label": "Override biometrics with PIN after timeout"
- },
- "IOSTouchId": {
- "label": "Touch ID instead of PIN for access (iOS 8+/iPadOS)",
- "tooltip": "Touch ID uses fingerprint recognition technology to authenticate users on iOS devices. Intune calls the LocalAuthentication API to authenticate users using Touch ID. If allowed, Touch ID must be used to access the app on a Touch ID capable device."
- },
- "NotificationRestriction": {
- "label": "Org data notifications",
- "tooltip": "Select one of the following options to specify how notifications for org accounts are shown for this app and any connected devices such as wearables:
\n{0}: Do not share notifications.
\n{1}: Do not share org data in notifications. If not supported by the application, notifications are blocked.
\n{2}: Share all notifications.
\n Android only:\n Note: This setting does not apply to all applications. For more information see {3}
\n \n iOS only:\nNote: This setting does not apply to all applications. For more information see {4}
"
- },
- "OpenLinksManagedBrowser": {
- "label": "Restrict web content transfer with other apps",
- "tooltip": "Select one of the following options to specify the apps that this app can open web content in:
\nEdge: Allow web content to open only in Edge
\nUnmanaged browser: Allow web content to open only in the unmanaged browser defined by \"Unmanaged browser protocol\" setting
\nAny app: Allow web links in any app
"
- },
- "OverrideBiometric": {
- "tooltip": "If required, depending on the timeout (minutes of inactivity), a PIN prompt will override biometric prompts. If this timeout value is not met, the biometric prompt will continue to show. This timeout value should be greater than the value specified under 'Recheck the access requirements after (minutes of inactivity)'. "
- },
- "PinAccess": {
- "label": "PIN for access",
- "tooltip": "If required, a PIN must be used to access the policy-managed app. Users must create an access PIN the first time that they open the app from a work or school account."
- },
- "PinLength": {
- "label": "Select minimum PIN length",
- "tooltip": "This setting specifies the minimum number of digits of a PIN."
- },
- "PinType": {
- "label": "PIN type",
- "tooltip": "Numeric PINs are made up of all numbers. Passcodes are made up of alphanumeric characters and special characters. "
- },
- "Printing": {
- "label": "Printing org data",
- "tooltip": "If blocked, the app cannot print protected data."
- },
- "ReceiveData": {
- "label": "Receive data from other apps",
- "tooltip": "Select one of the following options to specify the apps that this app can receive data from:
\n\nNone: Do not allow receiving data in org documents or accounts from any app
\n\nPolicy managed apps: Only allow receiving data in org documents or accounts from other policy managed apps\n
\nAny app with incoming org data: Allow receiving data in org documents or accounts from from any app and treat all incoming data without an user account as org data
\n\nAll apps: Allow receiving data in org documents or accounts from any app"
- },
- "RecheckAccessAfter": {
- "label": "Recheck the access requirements after (minutes of inactivity)\n\n",
- "tooltip": "If the policy-managed app is inactive for longer than the number of minutes of inactivity specified, the app will prompt the access requirements (i.e PIN, conditional launch settings) to be rechecked after the app is launched."
- },
- "RestrictKeyboards": {
- "duplicatePackageError": "The package ID must be unique.",
- "invalidPackageError": "Invalid package ID",
- "label": "Approved keyboards",
- "select": "Select keyboards to approve",
- "subtitle": "Add all keyboards and input methods that users are allowed to use with targeted apps. Enter the keyboard name as you would like it to appear to the end user.",
- "title": "Add approved keyboards",
- "toolTip": "Select Require and then specify a list of approved keyboards for this policy. Learn more."
- },
- "SaveData": {
- "label": "Save copies of org data",
- "tooltip": "Select {0} to prevent saving a copy of org data to a new location, other than the selected storage services, using \"Save As\".\n Select {1} to permit saving a copy of org data to a new location using \"Save As\".
\n\n\nNote: This setting does not apply to all applications. For more information see {2}.\n"
- },
- "SaveDataToSelected": {
- "label": "Allow user to save copies to selected services",
- "tooltip": "Select the storage services users can save copies of org data to. All other services are blocked. Selecting no services will prevent users from saving a copy of org data."
- },
- "ScreenCaptureAndAndroidAssistant": {
- "label": "Screen capture and Google Assistant\n",
- "tooltip": "If blocked, both screen capture and Google Assistant app scanning capabilities will be disabled when using the policy-managed app. This feature supports the usual Google Assistant app. Third party assistants using Google's Assist API are not supported. Choosing Block will also blur the App-Switcher preview image when using the app with a work or school account."
- },
- "SendData": {
- "label": "Send org data to other apps",
- "tooltip": "Select one of the following options to specify the apps that this app can send org data to:
\n\n\nNone: Do not allow sending org data to any app
\n\n\nPolicy managed apps: Only allow sending org data to other policy managed apps
\n\n\nPolicy managed apps with OS sharing: Only allow sending org data to other policy managed apps and sending org documents to other MDM managed apps on enrolled devices
\n\n\nPolicy managed apps with Open-In/Share filtering: Only allow sending org data to other policy managed apps and filter OS Open-in/Share dialogs to only display policy managed apps\n
\n\nAll apps: Allow sending org data to any app"
- },
- "SimplePin": {
- "label": "Simple PIN",
- "tooltip": "If blocked, users may not create a simple PIN. A simple PIN is a string of consecutive or repetitive digits, such as 1234, ABCD, or 1111. Please note that blocking simple PIN of type 'Passcode' requires the passcode to have at least one number, one letter, and one special character."
- },
- "SyncContacts": {
- "label": "Sync policy managed app data with native apps or add-ins"
- },
- "ThirdPartyKeyboards": {
- "infoBox": "Keyboard restrictions will apply to all areas of an app. Personal accounts for apps that support multiple identities will be affected by this restriction. Learn more.",
- "label": "Third party keyboards"
- },
- "Timeout": {
- "label": "Timeout (minutes of inactivity)"
- },
- "Tap": {
- "numberOfDays": "Number of days",
- "pinResetAfterNumberOfDays": "PIN reset after number of days",
- "previousPinBlockCount": "Select number of previous PIN values to maintain"
- }
- },
- "WindowsFeatureUpdateProfile": {
- "Details": {
- "Description": {
- "label": "Description"
- },
- "FeatureDeploymentSettings": {
- "header": "Feature deployment settings"
- },
- "FeatureUpdateVersion": {
- "infoballoon": "This feature cannot downgrade a device.",
- "label": "Feature update to deploy"
- },
- "GradualRolloutEndDate": {
- "label": "Final group availability"
- },
- "GradualRolloutInterval": {
- "label": "Days between groups"
- },
- "GradualRolloutStartDate": {
- "label": "First group availability"
- },
- "Name": {
- "label": "Name"
- },
- "RolloutOptions": {
- "label": "Rollout options"
- },
- "RolloutSettings": {
- "header": "When would you like to make the update available in Windows Update?"
- },
- "ScopeSettings": {
- "header": "Configure scope tags for this policy."
- },
- "StartDateOnlyStartDate": {
- "label": "First available date"
- },
- "bladeTitle": "Feature update deployments",
- "deploymentSettingsTitle": "Deployment settings",
- "loadError": "Loading failed!",
- "windows11EULA": "By selecting this Feature update to deploy you are agreeing that when applying this operating system to a device either (1) the applicable Windows license was purchased though volume licensing, or (2) that you are authorized to bind your organization and are accepting on its behalf the relevant Microsoft Software License Terms to be found here {0}."
- },
- "Notifications": {
- "deploymentSaved": "\"{0}\" has been saved.",
- "newFeatureUpdateDeploymentCreated": "New feature update deployment created."
- },
- "TabName": {
- "deploymentSettings": "Deployment settings",
- "groupAssignmentSettings": "Assignments",
- "scopeSettings": "Scope tags"
- }
- },
- "OfficeUpdateChannel": {
- "current": "Current Channel",
- "deferred": "Semi-Annual Enterprise Channel",
- "firstReleaseCurrent": "Current Channel (Preview)",
- "firstReleaseDeferred": "Semi-Annual Enterprise Channel (Preview)",
- "monthlyEnterprise": "Monthly Enterprise Channel",
- "placeHolder": "Select one"
- },
- "Win32ReturnCodes": {
- "CodeTypes": {
- "failed": "Failed",
- "hardReboot": "Hard reboot",
- "retry": "Retry",
- "softReboot": "Soft reboot",
- "success": "Success"
- },
- "Columns": {
- "codeType": "Code type",
- "returnCode": "Return code"
- },
- "bladeTitle": "Return codes",
- "gridAriaLabel": "Return codes",
- "header": "Specify return codes to indicate post-installation behavior:",
- "onAddAnnounceMessage": "Return code added item {0} of {1}",
- "onDeleteSuccess": "Return code {0} deleted successfully",
- "returnCodeAlreadyUsedValidation": "Return code is already used.",
- "returnCodeMustBeIntegerValidation": "Return code should be an integer.",
- "returnCodeShouldBeAtLeast": "Return code should be at least {0}.",
- "returnCodeShouldBeAtMost": "Return code should be at most {0}.",
- "selectorLabel": "Return codes"
- },
- "SecurityTemplate": {
- "aSR": "Attack surface reduction",
- "accountProtection": "Account protection",
- "allDevices": "All devices",
- "antivirus": "Antivirus",
- "antivirusReporting": "Antivirus Reporting (Preview)",
- "conditionalAccess": "Conditional access",
- "deviceCompliance": "Device compliance",
- "diskEncryption": "Disk encryption",
- "eDR": "Endpoint detection and response",
- "firewall": "Firewall",
- "helpSupport": "Help and support",
- "setup": "Setup",
- "wdapt": "Microsoft Defender for Endpoint"
- },
- "PolicySet": {
- "appManagement": "Application management",
- "assignments": "Assignments",
- "basics": "Basics",
- "deviceEnrollment": "Device enrollment",
- "deviceManagement": "Device management",
- "scopeTags": "Scope tags",
- "appConfigurationTitle": "App configuration policies",
- "appProtectionTitle": "App protection policies",
- "appTitle": "Apps",
- "iOSAppProvisioningTitle": "iOS app provisioning profiles",
- "deviceLimitRestrictionTitle": "Device limit restrictions",
- "deviceTypeRestrictionTitle": "Device type restrictions",
- "enrollmentStatusSettingTitle": "Enrollment status pages",
- "windowsAutopilotDeploymentProfileTitle": "Windows autopilot deployment profiles",
- "deviceComplianceTitle": "Device compliance policies",
- "deviceConfigurationTitle": "Device configuration profiles",
- "powershellScriptTitle": "Powershell scripts"
- },
- "AssignmentAction": {
- "exclude": "Excluded",
- "include": "Included",
- "includeAllDevicesVirtualGroup": "Included",
- "includeAllUsersVirtualGroup": "Included"
- },
- "WindowsFeatureUpdate": {
- "EndOFSupportStatus": {
- "notSupported": "Not supported",
- "supportEnding": "Support ending",
- "supported": "Supported"
- }
- },
- "InstallIntent": {
- "available": "Available for enrolled devices",
- "availableWithoutEnrollment": "Available with or without enrollment",
- "required": "Required",
- "uninstall": "Uninstall"
- },
"OutlookAppConfig": {
"DataProtectionConfiguration": {
"header": "Data Protection configuration"
@@ -1938,307 +100,864 @@
"themesEnabledTitle": "Themes Enabled",
"themesEnabledTooltip": "Specify if the user is allowed to use a custom visual theme."
},
- "TAP": {
- "AccessRequirements": {
- "infoText": "Configure the PIN and credential requirements that users must meet to access apps in a work context."
- },
- "DataProtection": {
- "infoText": "This group includes the data loss prevention (DLP) controls, like cut, copy, paste, and save-as restrictions. These settings determine how users interact with data in the apps."
- },
- "DeviceTypes": {
- "selectOne": "Select at least one device type."
- },
- "TargetedApps": {
- "TargetToAll": {
- "label": "Target to apps on all device types"
- },
- "infoText": "Choose how you want to apply this policy to apps on different devices. Then add at least one app.",
- "selectOne": "Select at least one app to create a policy."
- }
- },
- "TACSettings": {
- "edgeSettings": "Edge configuration settings",
- "edgeWindowsDataProtectionSettings": "Edge (Windows) data protection settings - Preview",
- "edgeWindowsSettings": "Edge (Windows) configuration settings - Preview",
- "generalAppConfig": "General app configuration",
- "generalSettings": "General configuration settings",
- "outlookSMIMEConfig": "Outlook S/MIME settings",
- "outlookSettings": "Outlook configuration settings",
- "sMIME": "S/MIME"
- },
- "OfficeApplicationAdditionalType": {
- "projectProRetail": "Project Online Desktop Client",
- "visioProRetail": "Visio Online Plan 2"
- },
- "Win32Requirements": {
- "AdditionalRequirements": {
- "File": {
- "fileOrFolderToolTip": "The file or folder as the selected requirement.",
- "pathToolTip": "The complete path of the file or folder to detect.",
- "property": "Property",
- "valueToolTip": "Select a requirement value that matches the selected detection method. Date and time requirement should be entered in your local format."
- },
- "GridColumns": {
- "pathOrScript": "Path/Script",
- "type": "Type"
- },
- "Registry": {
- "keyPath": "Key path",
- "keyPathTooltip": "The full path of the registry entry containing the value as a requirement.",
- "operator": "Operator",
- "operatorTooltip": "Select the operator for the comparison.",
- "registryRequirement": "Registry key requirement",
- "registryRequirementTooltip": "Select the registry key requirement comparison.",
- "valueName": "Value name",
- "valueNameTooltip": "The name of the required registry value."
- },
- "RequirementTypeOptions": {
- "fileType": "File",
- "registry": "Registry",
- "script": "Script"
- },
- "Script": {
- "RequirementMethodOptions": {
- "boolean": "Boolean",
- "dateTime": "Date and Time",
- "float": "Floating Point",
- "integer": "Integer",
- "string": "String",
- "version": "Version"
- },
- "ScriptContent": {
- "emptyMessage": "Script content should not be empty."
- },
- "duplicateName": "Script name {0} has already been used. Please enter a different name.",
- "enforceSignatureCheck": "Enforce script signature check",
- "enforceSignatureCheckTooltip": "Select ‘Yes’ to verify that the script is signed by a trusted publisher, which will allow the script to run without warnings or prompts. The script will run unblocked. Select ‘No’ (default) to run the script with end-user confirmation, but without signature verification.",
- "loggedOnCredentials": "Run this script using the logged on credentials",
- "loggedOnCredentialsTooltip": "Run script using the signed in device credentials.",
- "operatorTooltip": "Select the operator for the requirement comparison.",
- "requirementMethod": "Select output data type",
- "requirementMethodTooltip": "Select the data type used when determining a detection match requirement.",
- "scriptFile": "Script file",
- "scriptFileTooltip": "Select a PowerShell script that will detect the presence of the app on the client. If the app is detected, the requirement process will provide a 0 value exit code and will write a string value to STDOUT.",
- "scriptName": "Script name",
- "value": "Value",
- "valueTooltip": "Select a requirement value that matches the selected detection method. Date and time requirement should be entered in your local format."
- },
- "bladeTitle": "Add a Requirement rule",
- "createRequirementHeader": "Create a requirement.",
- "header": "Configure additional requirement rules",
- "label": "Additional requirement rules",
- "noRequirementsSelectedPlaceholder": "No requirements are specified.",
- "requirementType": "Requirement type",
- "requirementTypeTooltip": "Choose the type of detection method used to determine how a requirement is validated."
- },
- "architectures": "Operating system architecture",
- "architecturesTooltip": "Choose the architectures needed to install the app.",
- "bladeTitle": "Requirements",
- "diskSpace": "Disk space required (MB)",
- "diskSpaceTooltip": "Free disk space needed on the system drive to install the app.",
- "header": "Specify the requirements that devices must meet before the app is installed:",
- "maximumTextFieldValue": "The value must be at most {0}.",
- "minimumCpuSpeed": "Minimum CPU speed required (MHz)",
- "minimumCpuSpeedTooltip": "The minimum CPU speed required to install the app.",
- "minimumLogicalProcessors": "Minimum number of logical processors required",
- "minimumLogicalProcessorsTooltip": "The minimum number of logical processors required to install the app.",
- "minimumOperatingSystem": "Minimum operating system",
- "minimumOperatingSystemTooltip": "Select the minimum operating system needed to install the app.",
- "minumumTextFieldValue": "The value must be at least {0}.",
- "physicalMemory": "Physical memory required (MB)",
- "physicalMemoryTooltip": "Physical memory (RAM) required to install the app.",
- "selectorLabel": "Requirements",
- "validNumber": "Please enter a valid number."
- },
- "ArchitectureOptions": {
- "sixtyFourBit": "64-bit",
- "thirtyTwoBit": "32-bit"
- },
- "Countries": {
- "ae": "United Arab Emirates",
- "ag": "Antigua and Barbuda",
- "ai": "Anguilla",
- "al": "Albania",
- "am": "Armenia",
- "ao": "Angola",
- "ar": "Argentina",
- "at": "Austria",
- "au": "Australia",
- "az": "Azerbaijan",
- "bb": "Barbados",
- "be": "Belgium",
- "bf": "Burkina Faso",
- "bg": "Bulgaria",
- "bh": "Bahrain",
- "bj": "Benin",
- "bm": "Bermuda",
- "bn": "Brunei",
- "bo": "Bolivia",
- "br": "Brazil",
- "bs": "Bahamas",
- "bt": "Bhutan",
- "bw": "Botswana",
- "by": "Belarus",
- "bz": "Belize",
- "ca": "Canada",
- "cg": "Republic Of Congo",
- "ch": "Switzerland",
- "cl": "Chile",
- "cn": "China",
- "co": "Colombia",
- "cr": "Costa Rica",
- "cv": "Cape Verde",
- "cy": "Cyprus",
- "cz": "Czech Republic",
- "de": "Germany",
- "dk": "Denmark",
- "dm": "Dominica",
- "do": "Dominican Republic",
- "dz": "Algeria",
- "ec": "Ecuador",
- "ee": "Estonia",
- "eg": "Egypt",
- "es": "Spain",
- "fi": "Finland",
- "fj": "Fiji",
- "fm": "Federated States Of Micronesia",
- "fr": "France",
- "gb": "United Kingdom",
- "gd": "Grenada",
- "gh": "Ghana",
- "gm": "Gambia",
- "gr": "Greece",
- "gt": "Guatemala",
- "gw": "Guinea-Bissau",
- "gy": "Guyana",
- "hk": "Hong Kong",
- "hn": "Honduras",
- "hr": "Croatia",
- "hu": "Hungary",
- "id": "Indonesia",
- "ie": "Ireland",
- "il": "Israel",
- "in": "India",
- "is": "Iceland",
- "it": "Italy",
- "jm": "Jamaica",
- "jo": "Jordan",
- "jp": "Japan",
- "ke": "Kenya",
- "kg": "Kyrgyzstan",
- "kh": "Cambodia",
- "kn": "St. Kitts and Nevis",
- "kr": "Republic Of Korea",
- "kw": "Kuwait",
- "ky": "Cayman Islands",
- "kz": "Kazakstan",
- "la": "Lao People’s Democratic Republic",
- "lb": "Lebanon",
- "lc": "St. Lucia",
- "lk": "Sri Lanka",
- "lr": "Liberia",
- "lt": "Lithuania",
- "lu": "Luxembourg",
- "lv": "Latvia",
- "md": "Republic Of Moldova",
- "mg": "Madagascar",
- "mk": "North Macedonia",
- "ml": "Mali",
- "mn": "Mongolia",
- "mo": "Macau",
- "mr": "Mauritania",
- "ms": "Montserrat",
- "mt": "Malta",
- "mu": "Mauritius",
- "mw": "Malawi",
- "mx": "Mexico",
- "my": "Malaysia",
- "mz": "Mozambique",
- "na": "Namibia",
- "ne": "Niger",
- "ng": "Nigeria",
- "ni": "Nicaragua",
- "nl": "Netherlands",
- "no": "Norway",
- "np": "Nepal",
- "nz": "New Zealand",
- "om": "Oman",
- "pa": "Panama",
- "pe": "Peru",
- "pg": "Papua New Guinea",
- "ph": "Philippines",
- "pk": "Pakistan",
- "pl": "Poland",
- "pt": "Portugal",
- "pw": "Palau",
- "py": "Paraguay",
- "qa": "Qatar",
- "ro": "Romania",
- "ru": "Russia",
- "sa": "Saudi Arabia",
- "sb": "Solomon Islands",
- "sc": "Seychelles",
- "se": "Sweden",
- "sg": "Singapore",
- "si": "Slovenia",
- "sk": "Slovakia",
- "sl": "Sierra Leone",
- "sn": "Senegal",
- "sr": "Suriname",
- "st": "Sao Tome and Principe",
- "sv": "El Salvador",
- "sz": "Swaziland",
- "tc": "Turks and Caicos",
- "td": "Chad",
- "th": "Thailand",
- "tj": "Tajikistan",
- "tm": "Turkmenistan",
- "tn": "Tunisia",
- "tr": "Turkey",
- "tt": "Trinidad and Tobago",
- "tw": "Taiwan",
- "tz": "Tanzania",
- "ua": "Ukraine",
- "ug": "Uganda",
- "us": "United States",
- "uy": "Uruguay",
- "uz": "Uzbekistan",
- "vc": "St. Vincent and The Grenadines",
- "ve": "Venezuela",
- "vg": "British Virgin Islands",
- "vn": "Vietnam",
- "ye": "Yemen",
- "za": "South Africa",
- "zw": "Zimbabwe"
+ "Languages": {
+ "ar-aE": "Arabic (U.A.E.)",
+ "ar-bH": "Arabic (Bahrain)",
+ "ar-dZ": "Arabic (Algeria)",
+ "ar-eG": "Arabic (Egypt)",
+ "ar-iQ": "Arabic (Iraq)",
+ "ar-jO": "Arabic (Jordan)",
+ "ar-kW": "Arabic (Kuwait)",
+ "ar-lB": "Arabic (Lebanon)",
+ "ar-lY": "Arabic (Libya)",
+ "ar-mA": "Arabic (Morocco)",
+ "ar-oM": "Arabic (Oman)",
+ "ar-qA": "Arabic (Qatar)",
+ "ar-sA": "Arabic (Saudi Arabia)",
+ "ar-sY": "Arabic (Syria)",
+ "ar-tN": "Arabic (Tunisia)",
+ "ar-yE": "Arabic (Yemen)",
+ "az-cyrl": "Azerbaijani (Cyrillic, Azerbaijan)",
+ "az-latn": "Azerbaijani (Latin, Azerbaijan)",
+ "bn-bD": "Bangla (Bangladesh)",
+ "bn-iN": "Bangla (India)",
+ "bs-cyrl": "Bosnian (Cyrillic)",
+ "bs-latn": "Bosnian (Latin)",
+ "zh-cN": "Chinese (PRC)",
+ "zh-hK": "Chinese (Hong Kong S.A.R.)",
+ "zh-mO": "Chinese (Macao S.A.R.)",
+ "zh-sG": "Chinese (Singapore)",
+ "zh-tW": "Chinese (Taiwan)",
+ "hr-bA": "Croatian (Latin)",
+ "hr-hR": "Croatian (Croatia)",
+ "nl-bE": "Dutch (Belgium)",
+ "nl-nL": "Dutch (Netherlands)",
+ "en-aU": "English (Australia)",
+ "en-bZ": "English (Belize)",
+ "en-cA": "English (Canada)",
+ "en-cabn": "English (Caribbean)",
+ "en-iE": "English (Ireland)",
+ "en-iN": "English (India)",
+ "en-jM": "English (Jamaica)",
+ "en-mY": "English (Malaysia)",
+ "en-nZ": "English (New Zealand)",
+ "en-pH": "English (Republic of the Philippines)",
+ "en-sG": "English (Singapore)",
+ "en-tT": "English (Trinidad and Tobago)",
+ "en-uK": "English (United Kingdom)",
+ "en-uS": "English (United States)",
+ "en-zA": "English (South Africa)",
+ "en-zW": "English (Zimbabwe)",
+ "fr-bE": "French (Belgium)",
+ "fr-cA": "French (Canada)",
+ "fr-cH": "French (Switzerland)",
+ "fr-fR": "French (France)",
+ "fr-lU": "French (Luxembourg)",
+ "fr-mC": "French (Monaco)",
+ "de-aT": "German (Austria)",
+ "de-cH": "German (Switzerland)",
+ "de-dE": "German (Germany)",
+ "de-lI": "German (Liechtenstein)",
+ "de-lU": "German (Luxembourg)",
+ "iu-cans": "Inuktitut (Syllabics, Canada)",
+ "iu-latn": "Inuktitut (Latin, Canada)",
+ "it-cH": "Italian (Switzerland)",
+ "it-iT": "Italian (Italy)",
+ "ms-bN": "Malay (Brunei Darussalam)",
+ "ms-mY": "Malay (Malaysia)",
+ "mn-cN": "Mongolian (Traditional Mongolian, PRC)",
+ "mn-mN": "Mongolian (Cyrillic, Mongolia)",
+ "no-nB": "Norwegian, Bokmål (Norway)",
+ "no-nn": "Norwegian, Nynorsk (Norway)",
+ "pt-bR": "Portuguese (Brazil)",
+ "pt-pT": "Portuguese (Portugal)",
+ "quz-bO": "Quechua (Bolivia)",
+ "quz-eC": "Quechua (Ecuador)",
+ "quz-pE": "Quechua (Peru)",
+ "smj-nO": "Sami, Lule (Norway)",
+ "smj-sE": "Sami, Lule (Sweden)",
+ "se-fI": "Sami, Northern (Finland)",
+ "se-nO": "Sami, Northern (Norway)",
+ "se-sE": "Sami, Northern (Sweden)",
+ "sma-nO": "Sami, Southern (Norway)",
+ "sma-sE": "Sami, Southern (Sweden)",
+ "smn": "Sami, Inari (Finland)",
+ "sms": "Sami, Skolt (Finland)",
+ "sr-Cyrl-bA": "Serbian (Cyrillic)",
+ "sr-Cyrl-rS": "Serbian (Cyrillic, Serbia and Montenegro)",
+ "sr-Latn-bA": "Serbian (Latin)",
+ "sr-Latn-rS": "Serbian (Latin, Serbia)",
+ "dsb": "Lower Sorbian (Germany)",
+ "hsb": "Upper Sorbian (Germany)",
+ "es-es-tradnl": "Spanish (Spain, Traditional Sort)",
+ "es-aR": "Spanish (Argentina)",
+ "es-bO": "Spanish (Bolivia)",
+ "es-cL": "Spanish (Chile)",
+ "es-cO": "Spanish (Colombia)",
+ "es-cR": "Spanish (Costa Rica)",
+ "es-dO": "Spanish (Dominican Republic)",
+ "es-eC": "Spanish (Ecuador)",
+ "es-eS": "Spanish (Spain)",
+ "es-gT": "Spanish (Guatemala)",
+ "es-hN": "Spanish (Honduras)",
+ "es-mX": "Spanish (Mexico)",
+ "es-nI": "Spanish (Nicaragua)",
+ "es-pA": "Spanish (Panama)",
+ "es-pE": "Spanish (Peru)",
+ "es-pR": "Spanish (Puerto Rico)",
+ "es-pY": "Spanish (Paraguay)",
+ "es-sV": "Spanish (El Salvador)",
+ "es-uS": "Spanish (United States)",
+ "es-uY": "Spanish (Uruguay)",
+ "es-vE": "Spanish (Venezuela)",
+ "sv-fI": "Swedish (Finland)",
+ "uz-cyrl": "Uzbek (Cyrillic, Uzbekistan)",
+ "uz-latn": "Uzbek (Latin, Uzbekistan)",
+ "af": "Afrikaans (South Africa)",
+ "sq": "Albanian (Albania)",
+ "am": "Amharic (Ethiopia)",
+ "hy": "Armenian (Armenia)",
+ "as": "Assamese (India)",
+ "ba": "Bashkir (Russia)",
+ "eu": "Basque (Basque)",
+ "be": "Belarusian (Belarus)",
+ "br": "Breton (France)",
+ "bg": "Bulgarian (Bulgaria)",
+ "ca": "Catalan (Catalan)",
+ "co": "Corsican (France)",
+ "cs": "Czech (Czech Republic)",
+ "da": "Danish (Denmark)",
+ "prs": "Dari (Afghanistan)",
+ "dv": "Divehi (Maldives)",
+ "et": "Estonian (Estonia)",
+ "fo": "Faroese (Faroe Islands)",
+ "fil": "Filipino (Philippines)",
+ "fi": "Finnish (Finland)",
+ "gl": "Galician (Galician)",
+ "ka": "Georgian (Georgia)",
+ "el": "Greek (Greece)",
+ "gu": "Gujarati (India)",
+ "ha": "Hausa (Latin, Nigeria)",
+ "he": "Hebrew (Israel)",
+ "hi": "Hindi (India)",
+ "hu": "Hungarian (Hungary)",
+ "is": "Icelandic (Iceland)",
+ "ig": "Igbo (Nigeria)",
+ "id": "Indonesian (Indonesia)",
+ "ga": "Irish (Ireland)",
+ "xh": "isiXhosa (South Africa)",
+ "zu": "isiZulu (South Africa)",
+ "ja": "Japanese (Japan)",
+ "kn": "Kannada (India)",
+ "kk": "Kazakh (Kazakhstan)",
+ "km": "Khmer (Cambodia)",
+ "rw": "Kinyarwanda (Rwanda)",
+ "sw": "Kiswahili (Kenya)",
+ "kok": "Konkani (India)",
+ "ko": "Korean (Korea)",
+ "ky": "Kyrgyz (Kyrgyzstan)",
+ "lo": "Lao (Lao P.D.R.)",
+ "lv": "Latvian (Latvia)",
+ "lt": "Lithuanian (Lithuania)",
+ "lb": "Luxembourgish (Luxembourg)",
+ "mk": "Macedonian (North Macedonia)",
+ "ml": "Malayalam (India)",
+ "mt": "Maltese (Malta)",
+ "mi": "Maori (New Zealand)",
+ "mr": "Marathi (India)",
+ "moh": "Mohawk (Mohawk)",
+ "ne": "Nepali (Nepal)",
+ "oc": "Occitan (France)",
+ "or": "Odia (India)",
+ "ps": "Pashto (Afghanistan)",
+ "fa": "Persian",
+ "pl": "Polish (Poland)",
+ "pa": "Punjabi (India)",
+ "ro": "Romanian (Romania)",
+ "rm": "Romansh (Switzerland)",
+ "ru": "Russian (Russia)",
+ "sa": "Sanskrit (India)",
+ "st": "Sesotho sa Leboa (South Africa)",
+ "tn": "Setswana (South Africa)",
+ "si": "Sinhala (Sri Lanka)",
+ "sk": "Slovak (Slovakia)",
+ "sl": "Slovenian (Slovenia)",
+ "sv": "Swedish (Sweden)",
+ "syr": "Syriac (Syria)",
+ "tg": "Tajik (Cyrillic, Tajikistan)",
+ "ta": "Tamil (India)",
+ "tt": "Tatar (Russia)",
+ "te": "Telugu (India)",
+ "th": "Thai (Thailand)",
+ "bo": "Tibetan (PRC)",
+ "tr": "Turkish (Turkey)",
+ "tk": "Turkmen (Turkmenistan)",
+ "uk": "Ukrainian (Ukraine)",
+ "ur": "Urdu (Islamic Republic of Pakistan)",
+ "vi": "Vietnamese (Vietnam)",
+ "cy": "Welsh (United Kingdom)",
+ "wo": "Wolof (Senegal)",
+ "ii": "Yi (PRC)",
+ "yo": "Yoruba (Nigeria)"
+ },
+ "Category": {
+ "airPlay": "AirPlay",
+ "airPrint": "AirPrint",
+ "androidDefenderAtp": "Microsoft Defender for Endpoint",
+ "androidDeviceOwnerApplications": "Applications",
+ "androidForWorkPassword": "Device password",
+ "appManagement": "Allow or Block apps",
+ "applicationGuard": "Microsoft Defender Application Guard",
+ "applicationRestrictions": "Restricted Apps",
+ "applicationVisibility": "Show or Hide Apps",
+ "applications": "App Store",
+ "applicationsAndGames": "App Store, Doc Viewing, Gaming",
+ "applicationsAndGoogle": "Google Play Store",
+ "appsAndExperience": "Apps and experience",
+ "associatedDomains": "Associated domains",
+ "autonomousSingleAppMode": "Autonomous Single App Mode",
+ "azureOperationalInsights": "Azure operational insights",
+ "bitLocker": "Windows Encryption",
+ "browser": "Browser",
+ "builtinApps": "Built-in Apps",
+ "cellular": "Cellular",
+ "cloudAndStorage": "Cloud and Storage",
+ "cloudPrint": "Cloud Printer",
+ "complianceEmailProfile": "Email",
+ "connectedDevices": "Connected Devices",
+ "connectivity": "Cellular and connectivity",
+ "contentCaching": "Content caching",
+ "controlPanelAndSettings": "Control Panel and Settings",
+ "credentialGuard": "Microsoft Defender Credential Guard",
+ "customCompliance": "Custom Compliance",
+ "customCompliancePreview": "Custom Compliance (Preview)",
+ "customConfiguration": "Custom Configuration Profile",
+ "customOMASettings": "Custom OMA-URI Settings",
+ "customPreferences": "Preference file",
+ "defender": "Microsoft Defender Antivirus",
+ "defenderAntivirus": "Microsoft Defender Antivirus",
+ "defenderExploitGuard": "Microsoft Defender Exploit Guard",
+ "defenderFirewall": "Microsoft Defender Firewall",
+ "defenderLocalSecurityOptions": "Local device security options",
+ "defenderSecurityCenter": "Microsoft Defender Security Center",
+ "deliveryOptimization": "Delivery Optimization",
+ "derivedCredentialAuthenticationConfiguration": "Derived credential",
+ "deviceExperience": "Device experience",
+ "deviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
+ "deviceGuard": "Microsoft Defender Application Control",
+ "deviceHealth": "Device Health",
+ "devicePassword": "Device password",
+ "deviceProperties": "Device Properties",
+ "deviceRestrictions": "General",
+ "deviceSecurity": "System security",
+ "display": "Display",
+ "domainJoin": "Domain Join",
+ "domains": "Domains",
+ "edgeBrowser": "Microsoft Edge Legacy (Version 45 and earlier)",
+ "edgeBrowserSmartScreen": "Microsoft Defender SmartScreen",
+ "edgeKiosk": "Microsoft Edge kiosk mode",
+ "editionUpgrade": "Edition Upgrade",
+ "education": "Education",
+ "educationDeviceCerts": "Device certificates",
+ "educationStudentCerts": "Student certificates",
+ "educationTakeATest": "Take a Test",
+ "educationTeacherCerts": "Teacher certificates",
+ "emailProfile": "Email",
+ "enterpriseDataProtection": "Windows Information Protection",
+ "expeditedCheckin": "Mobile device management configuration",
+ "extensibleSingleSignOn": "Single sign-on app extension",
+ "filevault": "FileVault",
+ "firewall": "Firewall",
+ "games": "Games",
+ "gatekeeper": "Gatekeeper",
+ "healthMonitoring": "Health monitoring",
+ "homeScreenLayout": "Home Screen Layout",
+ "iOSWallpaper": "Wallpaper",
+ "importedPFX": "PKCS Imported Certificate",
+ "iosDefenderAtp": "Microsoft Defender for Endpoint",
+ "iosKiosk": "Kiosk",
+ "kernelExtensions": "Kernel extensions",
+ "keyboardAndDictionary": "Keyboard and Dictionary",
+ "kiosk": "Kiosk",
+ "kioskAndroidEnterprise": "Dedicated devices",
+ "kioskConfiguration": "Kiosk",
+ "kioskConfigurationV2": "Kiosk",
+ "kioskWebBrowser": "Kiosk web browser",
+ "lockScreenMessage": "Lock Screen Message",
+ "lockedScreenExperience": "Locked Screen Experience",
+ "logging": "Reporting and Telemetry",
+ "loginItems": "Login items",
+ "loginWindow": "Login window",
+ "macDefenderAtp": "Microsoft Defender for Endpoint",
+ "maintenance": "Maintenance",
+ "malware": "Malware",
+ "messaging": "Messaging",
+ "networkBoundary": "Network boundary",
+ "networkProxy": "Network proxy",
+ "notifications": "App Notifications",
+ "pKCS": "PKCS Certificate",
+ "password": "Password",
+ "personalProfile": "Personal profile",
+ "personalization": "Personalization",
+ "policyOverride": "Override Group Policy",
+ "powerSettings": "Power Settings",
+ "printer": "Printer",
+ "privacy": "Privacy",
+ "privacyPerApp": "Per-app privacy exceptions",
+ "privacyPreferences": "Privacy preferences",
+ "projection": "Projection",
+ "sCCMCompliance": "Configuration Manager Compliance",
+ "sCEP": "SCEP Certificate",
+ "sCEPProperties": "SCEP Certificate",
+ "sMode": "Mode switch (Windows Insider only)",
+ "safari": "Safari",
+ "search": "Search",
+ "session": "Session",
+ "sharedDevice": "Shared iPad",
+ "sharedPCAccountManager": "Shared multi-user device",
+ "singleSignOn": "Single sign-on",
+ "smartScreen": "Microsoft Defender SmartScreen",
+ "softwareUpdates": "Settings",
+ "start": "Start",
+ "systemExtensions": "System extensions",
+ "systemSecurity": "System Security",
+ "trustedCert": "Trusted Certificate",
+ "updates": "Updates",
+ "userRights": "User Rights",
+ "usersAndAccounts": "Users and Accounts",
+ "vPN": "Base VPN",
+ "vPNApps": "Automatic VPN",
+ "vPNAppsAndTrafficRules": "Apps and Traffic Rules",
+ "vPNConditionalAccess": "Conditional Access",
+ "vPNConnectivity": "Connectivity",
+ "vPNDNSTriggers": "DNS Settings",
+ "vPNIKEv2": "IKEv2 settings",
+ "vPNProxy": "Proxy",
+ "vPNSplitTunneling": "Split Tunneling",
+ "vPNTrustedNetwork": "Trusted Network Detection",
+ "webContentFilter": "Web Content Filter",
+ "wiFi": "Wi-Fi",
+ "win10Wifi": "Wi-Fi",
+ "windowsAtp": "Microsoft Defender for Endpoint",
+ "windowsDefenderATP": "Microsoft Defender for Endpoint",
+ "windowsHelloForBusiness": "Windows Hello for Business",
+ "windowsSpotlight": "Windows Spotlight",
+ "wiredNetwork": "Wired network",
+ "wireless": "Wireless",
+ "wirelessProjection": "Wireless projection",
+ "workProfile": "Work profile settings",
+ "workProfilePassword": "Work profile password",
+ "xboxServices": "Xbox services",
+ "zebraMx": "MX profile (Zebra only)",
+ "complianceActionsLabel": "Actions for noncompliance"
+ },
+ "WindowsFeatureUpdateProfile": {
+ "Details": {
+ "Description": {
+ "label": "Description"
+ },
+ "FeatureDeploymentSettings": {
+ "header": "Feature deployment settings"
+ },
+ "FeatureUpdateVersion": {
+ "infoballoon": "This feature cannot downgrade a device.",
+ "label": "Feature update to deploy"
+ },
+ "GradualRolloutEndDate": {
+ "label": "Final group availability"
+ },
+ "GradualRolloutInterval": {
+ "label": "Days between groups"
+ },
+ "GradualRolloutStartDate": {
+ "label": "First group availability"
+ },
+ "Name": {
+ "label": "Name"
+ },
+ "RolloutOptions": {
+ "label": "Rollout options"
+ },
+ "RolloutSettings": {
+ "header": "When would you like to make the update available in Windows Update?"
+ },
+ "ScopeSettings": {
+ "header": "Configure scope tags for this policy."
+ },
+ "StartDateOnlyStartDate": {
+ "label": "First available date"
+ },
+ "bladeTitle": "Feature update deployments",
+ "deploymentSettingsTitle": "Deployment settings",
+ "loadError": "Loading failed!",
+ "windows11EULA": "By selecting this Feature update to deploy you are agreeing that when applying this operating system to a device either (1) the applicable Windows license was purchased though volume licensing, or (2) that you are authorized to bind your organization and are accepting on its behalf the relevant Microsoft Software License Terms to be found here {0}."
+ },
+ "Notifications": {
+ "deploymentSaved": "\"{0}\" has been saved.",
+ "newFeatureUpdateDeploymentCreated": "New feature update deployment created."
+ },
+ "TabName": {
+ "deploymentSettings": "Deployment settings",
+ "groupAssignmentSettings": "Assignments",
+ "scopeSettings": "Scope tags"
+ }
+ },
+ "WIPPinRequirements": {
+ "WipLowercaseCharacterPinRequirements": {
+ "allow": "Allow the use of lowercase letters in PIN",
+ "notAllow": "Do not allow the use of lowercase letters in PIN",
+ "requireAtLeastOne": "Require the use of at least one lowercase letter in PIN"
+ },
+ "WipSpecialCharacterPinRequirements": {
+ "allow": "Allow the use of special characters in PIN",
+ "notAllow": "Do not allow the use of special characters in PIN",
+ "requireAtLeastOne": "Require the use of at least one special character in PIN"
+ },
+ "WipUppercaseCharacterPinRequirements": {
+ "allow": "Allow the use of uppercase letters in PIN",
+ "notAllow": "Do not allow the use of uppercase letters in PIN",
+ "requireAtLeastOne": "Require the use of at least one uppercase letter in PIN"
+ }
+ },
+ "OutlookAppConfigSettings": {
+ "AllowUserToChangeSetting": {
+ "title": "Allow user to change setting",
+ "tooltip": "Specify if the user is allowed to change the setting."
+ },
+ "AllowWorkAccounts": {
+ "title": "Allow only work or school accounts",
+ "tooltip": " By enabling this setting, users will be unable to add personal email and storage accounts within Outlook. If the user has a personal account added to Outlook, the user is prompted to remove the personal account. If the user does not remove the personal account, the work or school account cannot be added."
+ },
+ "BlockExternalImages": {
+ "title": "Block external images",
+ "tooltip": "When block external images is enabled, the app will prevent the download of images hosted on the Internet that are embedded in the message body. When set as not configured, the default app setting is set to Off"
+ },
+ "ConfigureEmail": {
+ "title": "Configure email account settings"
+ },
+ "DefaultAppSignatureSetting": {
+ "Tooltip": {
+ "android": "Default app signature indicates whether the app will use “Get Outlook for Android” as the default signature during message composition. If the setting is configured as Off, the default signature will not be used; however, users can add their own signature.\n\nWhen set as Not Configured, the default app setting is set to On.",
+ "iOS": "Default app signature indicates whether the app will use “Get Outlook for iOS” as the default signature during message composition. If the setting is configured as Off, the default signature will not be used; however, users can add their own signature.\n\nWhen set as Not Configured, the default app setting is set to On."
+ },
+ "title": "Default app signature"
+ },
+ "OfficeFeedReplies": {
+ "title": "Discover Feed",
+ "tooltip": "Discover Feed surfaces your most frequently accessed Office files. By default, this feed is enabled when Delve is enabled for the user. When set as not configured, the default app setting is set to On."
+ },
+ "OrganizeMailByThread": {
+ "title": "Organize mail by thread",
+ "tooltip": "The default behavior in Outlook is to bundle mail conversations into a threaded conversation view. If this setting is disabled Outlook will display each mail individually and will not group them by thread."
+ },
+ "PlayMyEmails": {
+ "title": "Play My Emails",
+ "tooltip": "The Play My Emails feature is not enabled by default in the app, but it is promoted to eligible users via a banner in the inbox. When set to Off, this feature will not be promoted to eligible users in the app. Users can choose to manually enable Play My Emails from within the app, even when this feature is set to Off. When set as Not configured, the default app setting is On and the feature will be promoted to eligible users."
+ },
+ "SuggestedReplies": {
+ "title": "Suggested replies",
+ "tooltip": "When you open a message, Outlook might suggest replies below the message. If you select a suggested reply, you can edit the reply before sending it."
+ },
+ "SyncCalendars": {
+ "title": "Sync Calendars",
+ "tooltip": "Configure whether users can sync their Outlook calendar to the native calendar app and database."
+ },
+ "TextPredictions": {
+ "title": "Text Predictions",
+ "tooltip": "Outlook can suggest words and phrases as you compose messages. When Outlook offers a suggestion, swipe to accept it. When set as not configured, the default app setting is set to On."
+ },
+ "ThemesEnabled": {
+ "title": "Themes enabled",
+ "tooltip": "Specify if the user is allowed to use a custom visual theme."
+ }
+ },
+ "AssignmentFilters": {
+ "assignmentFilterColumnHeader": "Filter",
+ "noFilters": "None"
+ },
+ "Platform": {
+ "all": "All",
+ "android": "Android device administrator",
+ "androidAOSP": "Android (AOSP)",
+ "androidEnterprise": "Android Enterprise",
+ "androidForWork": "Android Enterprise",
+ "androidWorkProfile": "Android enterprise",
+ "common": "Common",
+ "iOS": "iOS/iPadOS",
+ "iosAndAndroidPlatformLabel": "iOS and Android",
+ "iosCommaAndroidPlatformLabel": "iOS, Android",
+ "linux": "Linux",
+ "macOS": "macOS",
+ "unknown": "Unknown",
+ "unsupported": "Unsupported",
+ "windows": "Windows",
+ "windows10": "Windows 10 and later",
+ "windows10CM": "Windows 10 and later (ConfigMgr)",
+ "windows10Holo": "Windows 10 Holographic",
+ "windows10Mobile": "Windows 10 Mobile",
+ "windows10Team": "Windows 10 Team",
+ "windows10X": "Windows 10X",
+ "windows8": "Windows 8.1 and later",
+ "windows8And10": "Windows 8 and 10",
+ "windowsPhone": "Windows Phone 8.1",
+ "windows10AndLater": "Windows 10 and later",
+ "windows10AndWindowsServer": "Windows 10, Windows 11, and Windows Server (ConfigMgr)",
+ "windows10andLaterCM": "Windows 10 and later (ConfigMgr)",
+ "holoLens": "HoloLens",
+ "surfaceHub2": "Surface Hub 2",
+ "surfaceHub2S": "Surface Hub 2S",
+ "windowsPC": "Windows PC"
+ },
+ "AppInformationTab": {
+ "Error": {
+ "multipleChildApps": "A macOS LOB app can only be installed as managed when the uploaded package contains a single app."
+ },
+ "Info": {
+ "AppStoreUrl": {
+ "android": "Enter the link to the app listing in Google Play store. For example:",
+ "androidLink": "https://play.google.com/store/apps/details?id=com.microsoft.office.outlook",
+ "windows": "Enter the link to the app listing in the Microsoft Store. For example:",
+ "windowsLink": "https://www.microsoft.com/en-us/p/microsoft-to-do-lists-tasks-reminders/9nblggh5r558"
+ },
+ "appPackageFile": "A file that contains your app in a format that can be sideloaded on a device. Valid package types include: Android (.apk), iOS (.ipa), macOS (.pkg, .intunemac), Windows (.msi, .appx, .appxbundle, .msix, and .msixbundle).",
+ "applicableDeviceType": "Select the device types that can install this app.",
+ "category": "Categorize the app to make it easier for users to sort and find in Company Portal. You can choose multiple categories.",
+ "categoryLink": "https://docs.microsoft.com/en-us/intune/apps/apps-add#create-and-edit-categories-for-apps",
+ "description": "Help your device users understand what the app is and/or what they can do in the app. This description will be visible to them in Company Portal.",
+ "developer": "The name of the company or Individual that developed the app. This information will be visible to people signed into the admin center.",
+ "displayVersion": "The version of the app. This information will be visible to users in the Company Portal.",
+ "infoUrl": "Link people to a website or documentation that has more information about the app. The information URL will be visible to users in Company Portal.",
+ "isFeatured": "Featured apps are prominently placed in Company Portal so that users can quickly get to them.",
+ "learnMore": "Learn more",
+ "logo": "Upload a logo that's associated with the app. This logo will appear next to the app throughout Company Portal.",
+ "macOSDmgAppPackageFile": "A file that contains your app in a format that can be sideloaded on a device. Valid package type: .dmg.",
+ "minOperatingSystem": "Select the earliest operating system version on which the app can be installed. If you assign the app to a device with an earlier operating system, it will not be installed.",
+ "name": "Add a name for the app. This name will be visible in the Intune apps list and to users in the Company Portal.",
+ "notes": "Add additional notes about the app. Notes will be visible to people signed in to the admin center.",
+ "owner": "The name of the person in your organization who manages licensing or is the point-of-contact for this app. This name will be visible to people signed in to the admin center.",
+ "packageName": "Contact the device manufacturer to get the app's package name. Example package name: com.example.app",
+ "privacyUrl": "Provide a link for people who want to learn more about the app's privacy settings and terms. The privacy URL will be visible to users in Company Portal.",
+ "publisher": "The name of the developer or company that distributes the app. This information will be visible to users in Company Portal.",
+ "selectApp": "Search the App Store for iOS store apps that you want to deploy with Intune.",
+ "useManagedBrowser": "If required, when a user opens the web app, it will open in an Intune-protected browser such as Microsoft Edge or Intune Managed Browser. This setting applies to both iOS and Android devices.",
+ "useManagedBrowserLink": "https://docs.microsoft.com/en-us/intune/apps/app-configuration-managed-browser",
+ "win32AppPackageFile": "A file that contains your app in a format that can be sideloaded on a device. Valid package type: .intunewin."
+ },
+ "descriptionPreview": "Preview",
+ "descriptionRequired": "Description is required.",
+ "editDescription": "Edit Description",
+ "macOSMinOperatingSystemAdditionalInfo": "The minimum operating system for uploading a .pkg file is macOS 10.14. Upload a .intunemac file to select an older minimum operating system.",
+ "name": "App information",
+ "nameForOfficeSuitApp": "App suite information"
+ },
+ "Tooltips": {
+ "PolicySettings": {
+ "TouchId1": {
+ "android": "On Android, you can allow using fingerprint identification instead of a PIN. Users are prompted to provide their fingerprints when they access this app with their work accounts.",
+ "iOS": "On iOS/iPadOS devices, you can allow using fingerprint identification instead of a PIN. Users are prompted to provide their fingerprints when they access this app with their work accounts.",
+ "mac": "On Mac devices, you can allow using fingerprint identification instead of a PIN. Users are prompted to provide their fingerprints when they access this app with their work accounts."
+ },
+ "appSharingFromLevel1": "Select one of the following options to specify the apps that this app can receive data from:",
+ "appSharingFromLevel2": "{0}: Only allow receiving data in org documents or accounts from other policy managed apps",
+ "appSharingFromLevel3": "{0}: Allow receiving data in org documents or accounts from any app",
+ "appSharingFromLevel4": "{0}: Do not allow receiving data in org documents or accounts from any app",
+ "appSharingFromLevel5": "{0}: Allow data transfer from any app and treat all incoming data without an user identity as Org data.",
+ "appSharingToLevel1": "Select one of the following options to specify the apps that this app can send data to:",
+ "appSharingToLevel2": "{0}: Only allow sending org data to other policy managed apps",
+ "appSharingToLevel3": "{0}: Allow sending org data to any app",
+ "appSharingToLevel4": "{0}: Do not allow sending org data to any app",
+ "appSharingToLevel5": "{0}: Only allow transfer only to other policy managed apps and file transfer to other MDM managed apps on enrolled devices",
+ "appSharingToLevel6": "{0}: Allow transfer only to other policy managed apps and filter OS Open-in/Share dialogs to only display policy managed apps",
+ "conditionalEncryption1": "Select {0} to disable app encryption for internal app storage when device encryption is detected on an enrolled device.",
+ "conditionalEncryption2": "Note: Intune can only detect device enrollment with Intune MDM. External app storage will still be encrypted to ensure data cannot be accessed by unmanaged applications.",
+ "contactSyncMac": "If disabled, apps cannot save contacts to the native address book.",
+ "contactsSync": "Choose Block to prevent policy managed apps from saving data to the device's native apps (like Contacts, Calendar and widgets), or to prevent the use of add-ins within the policy managed apps. If you choose Allow, the policy managed app can save data to the native apps or use add-ins, if those features are supported and enabled within the policy managed app.
Apps may provide additional configuration capability with app configuration policies. For more information, see the app's documentation.",
+ "encryptionAndroid1": "For apps that are associated with an Intune mobile application management policy, encryption is provided by Microsoft. Data is encrypted synchronously during file I/O operations according to the setting in the mobile application management policy. Managed apps on Android use AES-128 encryption in CBC mode utilizing the platform cryptography libraries. The encryption method is not FIPS 140-2 compliant. SHA-256 encryption is supported as an explicit instruction using the SigAlg parameter and will only work on devices 4.2 and above. Content on the device storage is always be encrypted.",
+ "encryptionAndroid2": "When you require encryption in your app policy, the end-user is required to setup and use a PIN to access their device. If there is not a PIN set up for device access, the apps will not launch and the end-user will instead see a message, which says, “Your company has required that you must first enable a device PIN to access this application.\"",
+ "encryptionMac1": "For apps that are associated with an Intune mobile application management policy, encryption is provided by Microsoft. Data is encrypted synchronously during file I/O operations according to the setting in the mobile application management policy. Managed apps on Mac use AES-128 encryption in CBC mode utilizing the platform cryptography libraries. The encryption method is not FIPS 140-2 compliant. SHA-256 encryption is supported as an explicit instruction using the SigAlg parameter and will only work on devices 4.2 and above. Content on the device storage is always be encrypted.",
+ "faceId1": "Where applicable, you can allow the use of face identification instead of PIN. Users are prompted to provide face identification when they access this app with their work accounts.",
+ "faceId2": "Select Yes to allow face identification instead of a PIN for app access.",
+ "managementLevelsAndroid1": "Use this option to specify whether this policy applies to Android device administrator devices, Android Enterprise devices, or unmanaged devices.",
+ "managementLevelsAndroid2": "{0}: Unmanaged devices are devices where Intune MDM management has not been detected. This includes 3rd party MDM vendors.",
+ "managementLevelsAndroid3": "{0}: Intune-managed devices using the Android Device Administration API.",
+ "managementLevelsAndroid4": "{0}: Intune-managed devices using Android Enterprise Work Profiles or Android Enterprise Full Device Management.",
+ "managementLevelsIos1": "Use this option to specify whether this policy applies to MDM managed devices or unmanaged devices.",
+ "managementLevelsIos2": "{0}: Unmanaged devices are devices where Intune MDM management has not been detected. This includes 3rd party MDM vendors.",
+ "managementLevelsIos3": "{0}: Managed devices are managed by Intune MDM.",
+ "minAppVersion": "Define the required minimum App version number that a user should have to gain secure access to the app.",
+ "minAppVersionWarning": "Define the recommended minimum App version number that a user should have for secure access to the app.",
+ "minOsVersion": "Define the required minimum OS version number that a user should have to gain secure access to the app.",
+ "minOsVersionWarning": "Define the recommended minimum OS version number that a user should have to gain secure access to the app.",
+ "minPatchVersion": "Define the oldest required Android security patch level a user can have to gain secure access to the app.",
+ "minPatchVersionWarning": "Define the oldest recommended Android security patch level a user can have for secure access to the app.",
+ "minSdkVersion": "Define the required minimum Intune Application Protection Policy SDK version that a user should have to gain secure access to the app.",
+ "requireAppPinDefault": "Select Yes to disable the app PIN when a device lock is detected on an enrolled device.
",
+ "targetAllApps1": "Use this option to target your policy to apps on devices of any management state.",
+ "targetAllApps2": "During policy conflict resolution this setting will be superseded if a user has policy targeted for a specific management state.",
+ "touchId2": "Select {0} to require fingerprint identity instead of a PIN for app access."
+ },
+ "Tap": {
+ "pinResetAfterNumberOfDays": "Specify the number of days that must pass before the user must reset the PIN.",
+ "previousPinBlockCount": "This setting specifies the number of previous PINs that Intune will maintain. Any new PINs must be different from those that Intune is maintaining."
+ },
+ "WipPolicySettings": {
+ "25": "",
+ "allowWindowsSearch": "This will allow Windows Search to continue to search through encrypted data.",
+ "authoritativeIpRanges": "Enable this setting if you want to override Windows auto-detection of IP ranges.",
+ "authoritativeProxyServers": "Enable this setting if you want to override Windows auto-detection of proxy servers.",
+ "checkInput": "Check input for validity",
+ "dataRecoveryCert": "A recovery certificate is a special Encrypting File System (EFS) certificate you can use to recover encrypted files if your encryption key is lost or damaged. You need to create the recovery certificate, and specify it here. More information is here",
+ "enterpriseCloudResources": "Specify cloud resources to be treated as corporate and be protected with Windows Information Protection policy. Multiple resources can be specified by separating individual entries with the '|' character.
If you have a proxy configured in your company, then you can specify the proxy through which traffic to cloud resources you specified will be routed.
URL[,Proxy]|URL[,Proxy]
Without proxy: contoso.sharepoint.com|contoso.visualstudio.com
With proxy: contoso.sharepoint.com,proxy.contoso.com|contoso.visualstudio.com,proxy.contoso.com
",
+ "enterpriseIPv4Ranges": "Specify the IPv4 ranges that form your corporate network. These are used in conjunction with the Enterprise Network Domain Names that you specify to define your corporate network boundary.
This setting is required to have Windows Information Protection enabled.
Multiple ranges can be specified by separating individual entries with a comma.
For example: 3.4.0.1-3.4.255.255,192.168.1.1-192.168.255.255
",
+ "enterpriseIPv6Ranges": "Specify the IPv6 ranges that form your corporate network. These are used in conjunction with the Enterprise Network Domain Names that you specify to define your corporate network boundary.
Multiple ranges can be specified by separating individual entries with a comma.
For example: 2001:4898:dc05::-2001:4898:dc05:ffff:ffff:ffff:ffff:ffff,2a01:110::-2a01:110:7fff:ffff:ffff:ffff:ffff:ffff
",
+ "enterpriseInternalProxyServers": "If you have a proxy configured in your company, then you can specify the proxy through which traffic to cloud resources specified in the Enterprise Cloud Resources settings are to be routed.
Multiple values can be specified by separating individual entries with a semi-colon.
For example: contoso.internalproxy1.com;contoso.internalproxy2.com
",
+ "enterpriseNetworkDomainNames": "Specify the DNS names that form your corporate network. These are used in conjunction with the IP ranges that you specify to define your corporate network boundary. Multiple values can be specified by separating individual entries with a comma.
This setting is required to have Windows Information Protection enabled.
For example: corp.contoso.com,region.contoso.com
",
+ "enterpriseProtectedDomainNames": "Specify the DNS names that form your corporate network. These are used in conjunction with the IP ranges that you specify to define your corporate network boundary. Multiple values can be specified by separating individual entries with a '|'.
This setting is required to have Windows Information Protection enabled.
For example: corp.contoso.com|region.contoso.com
",
+ "enterpriseProxyServers": "If you have external facing proxies in your corporate network, specify them here. When specifying a proxy server address, you should also specify the port through which traffic should be allowed and protected through Windows Information Protection.
Note: This list must not include servers in your Enterprise Internal Proxy Server list. Multiple values can be specified by separating individual entries with a semi-colon.
For example: proxy.contoso.com:80;proxy2.contoso.com:80
",
+ "maxInactivityTime1": "Specifies the maximum amount of time (in minutes) allowed after the device is idle that will cause the device to become PIN or password locked. Users can select any existing timeout value less than the specified maximum time in the Settings app. Note the Lumia 950 and 950XL have a maximum timeout value of 5 minutes, regardless of the value set by this policy.",
+ "maxInactivityTime2": "0 (default) - No timeout is defined. The default of '0' is interpreted as 'No timeout is defined.'",
+ "maxPasswordAttempts1": "This policy has different behaviors on the mobile device and desktop.",
+ "maxPasswordAttempts2": "On a mobile device, when the user reaches the value set by this policy, then the device is wiped.",
+ "maxPasswordAttempts3": "On a desktop, when the user reaches the value set by this policy, it is not wiped.Instead, the desktop is put on BitLocker recovery mode, which makes the data inaccessible but recoverable.If BitLocker is not enabled, then the policy cannot be enforced.",
+ "maxPasswordAttempts4": "Prior to reaching the failed attempts limit, the user is sent to the lock screen and warned that more failed attempts will lock their computer.When the user reaches the limit, the device automatically reboots and shows the BitLocker recovery page.This page prompts the user for the BitLocker recovery key.",
+ "maxPasswordAttempts5": "0 (default) - The device is never wiped after an incorrect PIN or password is entered.",
+ "maxPasswordAttempts6": "Most secure value is 0 if all policy values = 0; otherwise, Min policy value is the most secure value.",
+ "mdmDiscoveryUrl": "Specify the URL for the MDM enrollment endpoint that users who enroll to MDM will use. By default, this is specified for Intune.",
+ "minimumPinLength1": "Integer value that sets the minimum number of characters required for the PIN. Default value is 4. The lowest number you can configure for this policy setting is 4. The largest number you can configure must be less than the number configured in the Maximum PIN length policy setting or the number 127, whichever is the lowest.",
+ "minimumPinLength2": "If you configure this policy setting, the PIN length must be greater than or equal to this number. If you disable or do not configure this policy setting, the PIN length must be greater than or equal to 4.",
+ "name": "The name of this network boundary",
+ "neutralResources": "If you have authentication redirection endpoints in your company, specify those here. The locations specified here are considered to be either personal or corporate depending on the context of the connection prior to the redirection.
Multiple values can be specified by separating individual entries with a comma.
For example: sts.contoso.com,sts.contoso2.com
",
+ "passportForWork1": "Value that sets Windows Hello for Business as a method for signing into Windows.",
+ "passportForWork2": "Default value is true.If you set this policy to false, the user cannot provision Windows Hello for Business except on Azure Active Directory joined mobile phones where provisioning is required.",
+ "pinExpiration": "The largest number you can configure for this policy setting is 730. The lowest number you can configure for this policy setting is 0. If this policy is set to 0, then the user’s PIN will never expire.",
+ "pinHistory1": "The largest number you can configure for this policy setting is 50. The lowest number you can configure for this policy setting is 0. If this policy is set to 0, then storage of previous PINs is not required.",
+ "pinHistory2": "The current PIN of the user is included in the set of PINs associated with the user account. PIN history is not preserved through a PIN reset.",
+ "protectUnderLock": "Protects app content while the device is in a locked state.",
+ "protectionModeBlock": "Block: Blocks enterprise data from leaving protected apps.
",
+ "protectionModeOff": "Off: User is free to relocate data off of protected apps. No actions are logged.
",
+ "protectionModeOverride": "Allow overrides: User is prompted when attempting to relocate data from a protected to a non-protected app. If they choose to override this prompt, the action will be logged.
",
+ "protectionModeSilent": "Silent: User is free to relocate data off of protected apps. These actions are logged.
",
+ "required": "Required",
+ "revokeOnMdmHandoff": "Added in Windows 10, version 1703. This policy controls whether to revoke the WIP keys when a device upgrades from MAM to MDM. If set to “Off”, the keys will not be revoked and the user will continue to have access to protected files after upgrade. This is recommended if the MDM service is configured with the same WIP EnterpriseID as the MAM service.",
+ "revokeOnUnenroll": "This will cause encryption keys to be revoked when a device un-enrolls from this policy.",
+ "rmsTemplateForEdp": "TemplateID GUID to use for RMS encryption. The Azure RMS template allows the IT admin to configure the details about who has access to RMS-protected file and how long they have access.",
+ "showWipIcon": "This will let the user know when they are acting in a corporate context, by overlaying an icon.",
+ "useRmsForWip": "Specifies whether to allow Azure RMS encryption for WIP."
+ },
+ "requireAppPin": "Select Yes to disable the app PIN when a device lock is detected on an enrolled device.
Note: Intune cannot detect device enrollment with a third-party EMM solution on iOS/iPadOS.
"
+ },
+ "Autopilot": {
+ "AssignResourceAccount": {
+ "createNewCommandMenu": "Create new",
+ "createNewResourceAccountInfo": "\nCreate a new resource account during enrollment. The Resource account will be added to the Resource account table right away, but won't be active until the device is enrolled, and the Surface Hub subscription is verified. Learn more about Resource Accounts
\n ",
+ "createNewResourceTitle": "Create new resource account",
+ "deviceNameInvalid": "Device name is in an invalid format",
+ "deviceNameRequired": "A device name is required",
+ "editResourceAccountLabel": "Edit",
+ "selectExistingCommandMenu": "Select existing"
+ },
+ "Device": {
+ "ComputerName": {
+ "validFormat": "Names must be 15 characters or less, and can contain letters (a-z, A-Z), numbers (0-9), and hyphens. Names must not contain only numbers. Names cannot include a blank space."
+ },
+ "Header": {
+ "addressableUserName": "User friendly name",
+ "azureADDevice": "Associated Azure AD device",
+ "batch": "Group tag",
+ "dateAssigned": "Date assigned",
+ "deviceAccountFriendlyName": "Device account friendly name",
+ "deviceAccountPwd": "Device account password",
+ "deviceAccountUpn": "Device account",
+ "deviceDisplayName": "Device name",
+ "deviceName": "Device name",
+ "deviceUseType": "Device-use type",
+ "enrollmentState": "Enrollment state",
+ "intuneDevice": "Associated Intune device",
+ "lastContacted": "Last contacted",
+ "make": "Manufacturer",
+ "model": "Model",
+ "profile": "Assigned profile",
+ "profileStatus": "Profile status",
+ "purchaseOrderId": "Purchase order",
+ "resourceAccount": "Resource account",
+ "serialNumber": "Serial number",
+ "userPrincipalName": "User"
+ },
+ "SurfaceHub": {
+ "friendlyNameRequired": "A friendly name is required",
+ "pwdRequired": "A password is required",
+ "upnRequired": "A device account is required",
+ "upnValidFormat": "Values can contain letters (a-z, A-Z), numbers (0-9), and hyphens. Values cannot include a blank space."
+ }
+ },
+ "DeviceUseType": {
+ "meetingAndPresentation": "Meeting and presentation",
+ "teamCollaboration": "Team collaboration"
+ },
+ "Devices": {
+ "featureDescription": "Windows Autopilot lets you customize the out-of-box experience (OOBE) for your users.",
+ "importErrorStatus": "Some devices were not imported. Click here for more information.",
+ "importPendingStatus": "Import in progress. Elapsed time: {0} min. This process can take up to {1} min."
+ },
+ "DirectoryService": {
+ "activeDirectoryAD": "Hybrid Azure AD joined",
+ "activeDirectoryADLabel": "Hybrid Azure AD width Autopilot",
+ "azureAD": "Azure AD joined",
+ "unknownType": "Unknown Type"
+ },
+ "Filter": {
+ "enrollmentState": "State",
+ "profile": "Profile status"
+ },
+ "OOBE": {
+ "AddressableUserName": {
+ "validateEmpty": "User friendly name cannot be empty."
+ },
+ "ApplyComputerNameTemplate": {
+ "infoBalloon": "Create a naming template to add names to your devices during enrollment.",
+ "label": "Apply device name template"
+ },
+ "ApplyComputerNameTemplateDisabled": {
+ "label": "For Hybrid Azure AD joined type of Autopilot deployment profiles, devices are named using settings specified in Domain Join configuration."
+ },
+ "ComputerNameTemplate": {
+ "emptyValue": "MyCompany-%RAND:4%",
+ "label": "Enter a name",
+ "noDisallowedChars": "Name must only contain alphanumeric characters, hyphens, %SERIAL%, or %RAND:x%",
+ "serialLength": "Cannot use more than 7 characters with %SERIAL%",
+ "validateLessThan15Chars": "Name must be 15 characters or less",
+ "validateNoSpaces": "Computer names cannot contain spaces",
+ "validateNotAllNumbers": "Name must also contain letters and/or hyphens",
+ "validateNotEmpty": "Name cannot be empty",
+ "validateOnlyOneMacro": "Name must only contain one of %SERIAL% or %RAND:x%"
+ },
+ "ConfigureComputerNameTemplate": {
+ "description": "Create a unique name for your devices. Names must be 15 characters or less, and can contain letters (a-z, A-Z), numbers (0-9), and hyphens. Names must not contain only numbers. Names cannot include a blank space. Use the %SERIAL% macro to add a hardware-specific serial number. Alternatively, use the %RAND:x% macro to add a random string of numbers, where x equals the number of digits to add."
+ },
+ "EnableWhiteGlove": {
+ "infoBalloon": "Enable pressing Windows key 5 times to run OOBE without user authentication to enroll device and provision all system-context apps and settings. User-context apps and settings will be delivered when the user signs in.",
+ "label": "Allow pre-provisioned deployment"
+ },
+ "HybridAzureADSkipConnectivityCheck": {
+ "infoBalloon": "The Autopilot Hybrid Azure AD join flow will continue even if it does not establish domain controller connectivity during OOBE.",
+ "label": "Skip AD connectivity check (preview)"
+ },
+ "accountType": "User account type",
+ "accountTypeInfo": "Specify whether users are administrators or standard users on the device. Note that this setting does not apply to Global Administrator or Company Administrator accounts. These accounts cannot be standard users because they have access to all administrative features in Azure AD.",
+ "configOOBEInfo": "\nConfigure the out-of-box experience for your Autopilot devices\n
",
+ "configureDevice": "Deployment mode",
+ "configureDeviceHintForSurfaceHub2": "Autopilot only supports self-deploying mode for Surface Hub 2. This mode doesn't associate the user with the enrolled device, so it doesn't require user credentials.",
+ "configureDeviceHintForWindowsPC": "\n Deployment mode controls if a user needs to provide credentials in order to provision the device.\n
\n \n - \n User-Driven: Devices are associated with the user enrolling the device and user credentials are required to provision the device\n
\n - \n Self-Deploying (preview): Devices are not associated with the user enrolling the device and user credentials are not required to provision the device\n
\n
",
+ "createSurfaceHub2Info": "Configure the Autopilot enrollment settings for your Surface Hub 2 devices. By default Autopilot enables skipping user authentication during OOBE. Learn more about Windows Autopilot for Surface Hub 2.",
+ "createWindowsPCInfo": "\n\nThe following options are automatically enabled for Autopilot devices in self-deploying mode:\n
\n\n - \n Skip Work or Home usage selection\n
\n - \n Skip OEM registration and OneDrive configuration\n
\n - \n Skip user authentication in OOBE\n
\n
",
+ "endUserDevice": "User-Driven",
+ "hideEscapeLink": "Hide change account options",
+ "hideEscapeLinkInfo": "Options to change account and start over with a different account appear, respectively, during initial device setup on the company sign-in page, and on the domain error page. To hide these options, you must configure company branding in Azure Active Directory (requires Windows 10, 1809 or later, or Windows 11).",
+ "info": "Autopilot profile settings define the out-of-box experience users see when starting Windows for the first time. ",
+ "language": "Language (Region)",
+ "languageInfo": "Specify the language and region that will be used.",
+ "licenseAgreement": "Microsoft Software License Terms",
+ "licenseAgreementInfo": "Specify whether to show the EULA to users.",
+ "plugAndForgetDevice": "Self-Deploying (preview)",
+ "plugAndForgetGA": "Self-Deploying",
+ "privacySettingWarning": "The default value for diagnostic data collection has changed for devices running Windows 10, version 1903 and later, or Windows 11. ",
+ "privacySettings": "Privacy settings",
+ "privacySettingsInfo": "Specify whether to show privacy settings to users.",
+ "showCortanaConfigurationPage": "Cortana configuration",
+ "showCortanaConfigurationPageInfo": "Show will enable the Cortana configuration introduction during startup.",
+ "skipEULAWarning": "Important information about hiding license terms",
+ "skipKeyboardSelection": "Automatically configure keyboard",
+ "skipKeyboardSelectionInfo": "If true, skip the keyboard selection page if Language is set.",
+ "subtitle": "Autopilot profiles",
+ "title": "Out-of-box experience (OOBE)",
+ "useOSDefaultLanguage": "Operating system default",
+ "userSelect": "User select"
+ },
+ "Sync": {
+ "lastRequestedLabel": "Last sync request",
+ "lastSuccessfulLabel": "Last successful sync",
+ "syncInProgress": "Sync is in progress. Check back again soon.",
+ "syncInitiated": "Autopilot settings sync initiated.",
+ "syncSettingsTitle": "Sync Autopilot settings"
+ },
+ "Title": {
+ "devices": "Windows Autopilot devices"
+ },
+ "Tooltips": {
+ "addressableUserName": "Greeting name displayed during device setup.",
+ "azureADDevice": "Go to device details for associated device. N/A means that there's no associated device.",
+ "batch": "A string attribute that can be used to identify a group of devices. Intune's group tag field maps to the OrderID attribute on Azure AD devices.",
+ "dateAssigned": "Timestamp of when the profile was assigned to the device.",
+ "deviceAccountFriendlyName": "Device account friendly name for Surface Hub devices",
+ "deviceAccountPwd": "Device account password for Surface Hub devices",
+ "deviceAccountUpn": "Device account email for Surface Hub devices",
+ "deviceDisplayName": "Configure a unique name for a device. This name will be ignored in Hybrid Azure AD joined deployments. Device name still comes from the domain join profile for Hybrid Azure AD devices.",
+ "deviceName": "The name shown when someone tried to discover and connect to the device.",
+ "deviceUseType": " Device would setup based on your choice. You can always change later in settings.\n \n - For meetings and presentations, Windows Hello isn't turned on and data is removed after each session.\n
\n - For team collaboration, Windows Hello is turned on and profiles are saved for quick sign-in
\n
",
+ "enrollmentState": "Specifies if the device has enrolled.",
+ "intuneDevice": "Go to device details for associated device. N/A means that there's no associated device.",
+ "lastContacted": "Timestamp of when the device was last contacted.",
+ "make": "Manufacturer of the selected device.",
+ "model": "Model of the selected device",
+ "profile": "Name of the profile assigned to the device.",
+ "profileStatus": "Specifies if a profile is assigned to the device.",
+ "purchaseOrderId": "Purchase order ID",
+ "resourceAccount": "The device's identity, or user principal name (UPN).",
+ "serialNumber": "Serial number of the selected device.",
+ "userPrincipalName": "User to pre-fill authentication during device setup."
+ },
+ "allDevices": "All devices",
+ "allDevicesAlreadyAssignedError": "An Autopilot profile is already assigned to All Devices.",
+ "assignFailedDescription": "Failed to update assignments for {0}.",
+ "assignFailedTitle": "Failed to update Autopilot profile assignments.",
+ "assignSuccessDescription": "Successfully updated assignments for {0}.",
+ "assignSuccessTitle": "Successfully updated Autopilot profile assignments.",
+ "assignSufaceHub2ProfileNextStep": "Next steps for this deployment",
+ "assignSurfaceHub2ProfileToDeviceGroup": "1. Assign this profile to at least one device group",
+ "assignSurfaceHub2ProfileToResourceAccount": "2. Assign a resource account to each Surface Hub device to which you deploy this profile",
+ "assignedDevicesCount": "Assigned devices",
+ "assignedDevicesResourceAccountDescription": "To deploy this profile to a device, you must assign the device a Resource account. Select one device at a time to assign an existing Resource account or to create a new one. Learn more about Resource Accounts
",
+ "assignedDevicesResourceAccountStatusBarMessage": "This table only lists the Surface Hub 2 devices that have been assigned this profile.",
+ "assigningDescription": "Updating assignments for {0}.",
+ "assigningTitle": "Updating Autopilot profile assignments.",
+ "autoremediationContext": "We've detected a hardware change on this device. We're trying to automatically register the new hardware. You don't need to do anything now; the status will be updated at the next check in with the result. Learn more about resetting the profile.",
+ "autoremediationTitle": "Device {0} has a fix pending",
+ "cannotDeleteMessage": "This profile is assigned to groups. You must unassign all groups from this profile before you can delete it.",
+ "cannotDeleteTitle": "Cannot delete {0}",
+ "createdDateTime": "Created",
+ "deleteMessage": "If you delete this Autopilot profile, any devices assigned to this profile will display Unassigned.",
+ "deleteMessageWithPolicySet": "{0} is included in one more more policy sets. If you delete {0}, you'll no longer be able to assign it via these policy sets.",
+ "deleteTitle": "Are you sure you want to delete this profile?",
+ "description": "Description",
+ "deviceType": "Device type",
+ "deviceUse": "Device use",
+ "directoryServiceHintForSurfaceHub2": " \n Autopilot only supports Azure AD Joined for Surface Hub 2 devices. Specify how devices join Active Directory (AD) in your organization.\n
\n \n - \n Azure AD joined: Cloud-only without an on-premises Windows Server Active Directory.\n
\n
\n ",
+ "directoryServiceHintForWindowsPC": "\n \n Specify how devices join Active Directory (AD) in your organization:\n
\n \n - \n Azure AD joined: Cloud-only without an on-premises Windows Server Active Directory\n
\n
\n ",
+ "getAssignedDevicesCountError": "An error occurred while fetching the assigned devices count.",
+ "getAssignmentsError": "An error occurred while fetching Autopilot profile assignments.",
+ "harvestDeviceId": "Convert all targeted devices to Autopilot",
+ "harvestDeviceIdDescription": "By default, this profile can only be applied to Autopilot devices synced from the Autopilot service.",
+ "harvestDeviceIdInfo": "\n Select Yes to register all targeted devices to Autopilot if they are not already registered. The next time registered devices go through the Windows Out of Box Experience (OOBE), they will go through the assigned Autopilot scenario.\n
\n Please note that certain Autopilot scenarios require specific minimum builds of Windows. Please make sure your device has the required minimum build to go through the scenario.\n
\n Removing this profile won’t remove affected devices from Autopilot. To remove a device from Autopilot, use the Windows Autopilot Devices view.\n ",
+ "harvestDeviceIdWarning": "After conversion, Autopilot devices can only be reverted by deleting them from the Autopilot devices list.",
+ "holoLensCommandMenu": "HoloLens",
+ "info": "Windows Autopilot deployment profiles lets you customize the out-of-box experience for your devices.",
+ "invalidProfileNameMessage": "Character \"{0}\" is not allowed",
+ "joinTypeLabel": "Join Azure AD as",
+ "lastModifiedDateTime": "Last modified:",
+ "manualRemediationContext": "We've detected a hardware change on this device. It won't automatically receive an Autopilot profile when it's reset unless you register the device again. Learn more about resetting the profile.",
+ "manualRemediationTitle": "Device {0} needs your attention",
+ "name": "Name",
+ "noAutopilotProfile": "No Autopilot profiles",
+ "notEnoughPermissionAssignedError": "You don't have enough permissions to assign this profile to one or more of your selected groups. Please contact your administrator.",
+ "profile": "profile",
+ "resourceAccountStatusBarMessage": "A Resource Account is required for each Surface Hub 2 device to which this profile is deployed. Click to learn more.",
+ "selectServices": "Select directory service devices will join",
+ "surfaceHub2CommandMenu": "Surface Hub 2",
+ "surfaceHub2SCommandMenu": "Surface Hub 2S",
+ "userAffinityLabel": "Deployment mode",
+ "windowsPCCommandMenu": "Windows PC",
+ "directoryServiceLabel": "Join to Azure AD as"
},
- "CategoryDescription": {
- "androidGeneralApplicationRestrictions": "Use these settings to stay informed about which users install apps that are not approved for use in your company. Select the type of restricted app list:
\n Prohibited apps - A list of apps that you want to be informed about when users install them.
\n Approved apps - A list of apps that are approved for use in your company. When users install an app that is not in this list, you will be informed.
\n ",
- "androidZebraMxZebraMx": "Configure Zebra devices by uploading a MX profile in XML format.",
- "iosDeviceFeaturesAirprint": "Use these settings to configure iOS devices to automatically connect to AirPrint compatible printers on your network. You'll need the IP address and resource path of your printers.",
- "iosDeviceFeaturesExtensibleSingleSignOn": "Configure an app extension that enables single sign-on (SSO) for devices running iOS 13.0 or later.",
- "iosDeviceFeaturesHomeScreenLayout": "Configure the layout for the dock and Home Screens on iOS devices. Certain devices may have limits to how many items can be displayed.",
- "iosDeviceFeaturesIOSWallpaper": "Display an image that will appear on the Home Screen and/or the lock screen of iOS devices.\n To display a unique image in each location, create one profile with the lock screen image, and one with the Home Screen image.\n Then assign both profiles to your users.\n
\n \n - Max file size: 750 KB
\n - File type: PNG, JPG or JPEG
\n
\n ",
- "iosDeviceFeaturesNotifications": "Specify notification settings for apps. Supports iOS 9.3 and later.",
- "iosDeviceFeaturesSharedDevice": "Specify optional text displayed on the locked screen. It is supported on iOS 9.3 and later. Learn More",
- "iosGeneralApplicationRestrictions": "Use these settings to stay informed about which users install apps that are not approved for use in your company. Select the type of restricted app list:
\n Prohibited apps - A list of apps that you want to be informed about when users install them.
\n Approved apps - A list of apps that are approved for use in your company. When users install an app that is not in this list, you will be informed.
\n ",
- "iosGeneralApplicationVisibility": "Use the show apps list to specify the iOS apps that user can view or launch. Use the hidden apps list to specify the iOS apps that user cannot view or launch.",
- "iosGeneralAutonomousSingleAppMode": "Apps you add to this list and assign to a device can lock the device to run only that app once launched, or lock the device while a certain action is running (for example taking a test). Once the action is complete, or you remove the restriction, the device returns to its normal state.",
- "iosGeneralKiosk": "Kiosk mode locks various settings into a device, or specifies a single app that can be run on a device. This can be useful in environments like a retail store where you want a device to run only a single demo app.",
- "macDeviceFeaturesAirprint": "Use these settings to configure macOS devices to automatically connect to AirPrint compatible printers on your network. You'll need the IP address and resource path of your printers.",
- "macDeviceFeaturesAssociatedDomains": "Configure associated domains to share data and sign-in credentials between your org’s apps and websites. This profile can be applied to devices running macOS 10.15 or later.",
- "macDeviceFeaturesExtensibleSingleSignOn": "Configure an app extension that enables single sign-on (SSO) for devices running macOS 10.15 or later.",
- "macDeviceFeaturesLoginItems": "Choose which apps, files, and folders open when users log in to their devices. If you don't want users to change how the selected apps open, you can hide the app from the user configuration.",
- "macDeviceFeaturesLoginWindow": "Configure the appearance of the macOS login screen and the functions that are available to users before and after they log in.",
- "macExtensionsKernelExtensions": "Use these settings to configure kernel extension policy on macOS devices running 10.13.2 or later.",
- "macGeneralDomains": "Emails that the user sends or receives which don't match the domains you specify here will be marked as untrusted.",
- "windows10EndpointProtectionApplicationGuard": "While using Microsoft Edge, Microsoft Defender Application Guard protects your environment from sites that haven’t been defined as trusted by your organization. When users visit sites that aren’t listed in your isolated network boundary, the sites will be opened in a virtual browsing session in Hyper-V. Trusted sites are defined by a network boundary, which can be configured in Device Configuration. Note this feature is only available for devices running 64-bit Windows 10 or later.",
- "windows10EndpointProtectionCredentialGuard": "Enabling Credential Guard will enable the following required settings:\n
\n \n - Enable Virtualization-based Security: Turns on virtualization-based security (VBS) at next reboot. Virtualization-based security uses the Windows Hypervisor to provide support for security services.
\n
\n - Secure Boot with Direct Memory Access: Turns on VBS with Secure Boot and direct memory access (DMA).
\n
\n ",
- "windows10EndpointProtectionDeviceGuard": "Choose additional apps that either need to be audited by, or can be trusted to run by Microsoft Defender Application Control. Windows components and all apps from Windows store are automatically trusted to run.
\n Applications will not be blocked when running in “audit only” mode. “Audit only” mode logs all events in local client logs.\n ",
- "windows10GeneralPrivacyPerApp": "Add apps that should have a different privacy behavior from what you defined in “Default privacy”.",
- "windows10NetworkBoundaryNetworkBoundary": "The network boundary is the list of enterprise resources, such as cloud-hosted domain and IP address ranges for computers that are on the enterprise network. Define network boundaries to apply policies to protect data that resides in these locations.",
- "windowsHealthMonitoring": "Configure the Windows health monitoring policy.",
- "windowsPhoneGeneralApplicationRestrictions": "Windows Phone can block users from installing or launching apps specified in the prohibited apps list, or apps not specified in the approved apps list. All managed apps must be added to the approved list."
- },
"MinimumOperatingSystem": {
"Android": {
"v10": "Android 10.0",
@@ -2435,6 +1154,304 @@
"excludedGroups": "Excluded Groups",
"licenseType": "License type"
},
+ "TAP": {
+ "AccessRequirements": {
+ "infoText": "Configure the PIN and credential requirements that users must meet to access apps in a work context."
+ },
+ "DataProtection": {
+ "infoText": "This group includes the data loss prevention (DLP) controls, like cut, copy, paste, and save-as restrictions. These settings determine how users interact with data in the apps."
+ },
+ "DeviceTypes": {
+ "selectOne": "Select at least one device type."
+ },
+ "TargetedApps": {
+ "TargetToAll": {
+ "label": "Target to apps on all device types"
+ },
+ "infoText": "Choose how you want to apply this policy to apps on different devices. Then add at least one app.",
+ "selectOne": "Select at least one app to create a policy."
+ }
+ },
+ "AssignmentAction": {
+ "exclude": "Excluded",
+ "include": "Included",
+ "includeAllDevicesVirtualGroup": "Included",
+ "includeAllUsersVirtualGroup": "Included"
+ },
+ "AppType": {
+ "androidEnterpriseSystemApp": "Android Enterprise system app",
+ "androidForWorkApp": "Managed Google Play store app",
+ "androidLobApp": "Android line-of-business app",
+ "androidStoreApp": "Android store app",
+ "builtInAndroid": "Built-In Android app",
+ "builtInApp": "Built-In app",
+ "builtInIos": "Built-In iOS app",
+ "default": "",
+ "iosLobApp": "iOS line-of-business app",
+ "iosStoreApp": "iOS store app",
+ "iosVppApp": "iOS volume purchase program app",
+ "lineOfBusinessApp": "Line-of-business app",
+ "macOSDmgApp": "macOS app (DMG)",
+ "macOSEdgeApp": "Microsoft Edge (macOS)",
+ "macOSLobApp": "macOS line-of-business app",
+ "macOSMdatpApp": "Microsoft Defender ATP (macOS)",
+ "macOSOfficeSuiteApp": "Microsoft 365 Apps (macOS)",
+ "macOsVppApp": "macOS volume purchase program app",
+ "managedAndroidLobApp": "Managed Android line-of-business app",
+ "managedAndroidStoreApp": "Managed Android store app",
+ "managedGooglePlayApp": "Managed Google Play store app",
+ "managedGooglePlayPrivateApp": "Managed Google Play private app",
+ "managedGooglePlayWebApp": "Managed Google Play web link",
+ "managedIosLobApp": "Managed iOS line-of-business app",
+ "managedIosStoreApp": "Managed iOS store app",
+ "microsoftStoreForBusinessApp": "Microsoft Store for Business app",
+ "microsoftStoreForBusinessReleaseManagedApp": "Microsoft Store for Business",
+ "officeSuiteApp": "Microsoft 365 Apps (Windows 10 and later)",
+ "webApp": "Web link",
+ "windowsAppXLobApp": "Windows AppX line-of-business app",
+ "windowsClassicApp": "Windows app (Win32)",
+ "windowsEdgeApp": "Microsoft Edge (Windows 10 and later)",
+ "windowsMobileMsiLobApp": "Windows MSI line-of-business app",
+ "windowsPhone81AppXBundleLobApp": "Windows Phone 8.1 AppX line-of-business app",
+ "windowsPhone81AppXLobApp": "Windows Phone 8.1 AppX line-of-business app",
+ "windowsPhone81StoreApp": "Windows Phone 8.1 store app",
+ "windowsPhoneXapLobApp": "Windows Phone XAP line-of-business app",
+ "windowsStoreApp": "Microsoft Store app",
+ "windowsUniversalAppXLobApp": "Windows Universal AppX line-of-business app",
+ "windowsUniversalLobApp": "Windows Universal line-of-business app"
+ },
+ "TAPSettings": {
+ "AllowedDataIngestionLocations": {
+ "label": "Allow users to open data from selected services",
+ "tooltip": "Select the application storage services users can open data from. All other services are blocked. Selecting no services will prevent users from opening data."
+ },
+ "AndroidBackup": {
+ "label": "Backup org data to Android backup services",
+ "tooltip": "Select {0} to prevent backup of org data to Android backup services. \nSelect {1} to permit backup of org data to Android backup services. \nPersonal or unmanaged data is not affected."
+ },
+ "AndroidBiometricAuthentication": {
+ "label": "Biometrics instead of PIN for access",
+ "tooltip": "Choose which android authentication methods people can use, if any, in place of an app PIN."
+ },
+ "AndroidFingerprint": {
+ "label": "Fingerprint instead of PIN for access (Android 6.0+)",
+ "tooltip": "Android OS uses fingerprint scans to authenticate Android-device users. This feature supports the native biometric controls on Android devices. OEM-specific biometric settings, like Samsung Pass, are not supported. If allowed, native biometric controls must be used to access the app on a capable device."
+ },
+ "AndroidOverrideFingerprint": {
+ "label": "Override fingerprint with PIN after timeout"
+ },
+ "AppPIN": {
+ "label": "App PIN when device PIN is set",
+ "tooltip": "If not required, an app PIN does not need to be used to access the app if the device PIN is set on an MDM enrolled device.
\n\nNote: Intune cannot detect device enrollment with a third-party EMM solution on Android."
+ },
+ "BlockDataIngestionIntoOrganizationDocuments": {
+ "label": "Open data into Org documents",
+ "tooltip1": "Select Block to disable the use of the Open option or other options to share data between accounts in this app. Select Allow if you want to allow the use of Open and other options to share data between accounts in this app.",
+ "tooltip2": "When set to Block, you can configure the following setting, Allow user to open data from selected services, to specify which services are allowed for Org data locations.",
+ "tooltip3": "Note: This setting is only enforced if the setting \"Receive data from other apps\" is set to \"Policy managed apps\".
\nNote: This setting does not apply to all applications. For more information see {0}.",
+ "tooltip4": "Note: This setting is only enforced if the setting \"Receive data from other apps\" is set to \"Policy managed apps\".
\nNote: This setting does not apply to all applications. For more information see {0} or {0}."
+ },
+ "ConnectToVpnOnLaunch": {
+ "label": "Start Microsoft Tunnel connection on app-launch",
+ "tooltip": "Allow connection to VPN when app is launch"
+ },
+ "CredentialsForAccess": {
+ "label": "Work or school account credentials for access",
+ "tooltip": "If required, work or school credentials must be used to access the policy-managed app. If PIN or biometric methods also required for access to the app, the work or school account credentials will be required on top of those prompts."
+ },
+ "CustomBrowserDisplayName": {
+ "label": "Unmanaged Browser Name",
+ "tooltip": "Enter the application name for browser associated with the \"Unmanaged Browser ID\". This name will be displayed to users if the specified browser is not installed."
+ },
+ "CustomBrowserPackageId": {
+ "label": "Unmanaged Browser ID",
+ "tooltip": "Enter the application ID for a single browser. Web content (http/s) from policy managed applications will open in the specified browser."
+ },
+ "CustomBrowserProtocol": {
+ "label": "Unmanaged browser protocol",
+ "tooltip": "Enter the protocol for a single unmanaged browser. Web content (http/s) from policy managed applications will open in any app that supports this protocol.
\n \nNote: Include only the protocol prefix. If your browser requires links of the form \"mybrowser://www.microsoft.com\", enter \"mybrowser\".
"
+ },
+ "CustomDialerAppDisplayName": {
+ "label": "Dialer App Name"
+ },
+ "CustomDialerAppPackageId": {
+ "label": "Dialer App Package ID"
+ },
+ "CustomDialerAppProtocol": {
+ "label": "Dialer App URL Scheme"
+ },
+ "Cutcopypaste": {
+ "label": "Restrict cut, copy, and paste between other apps",
+ "tooltip": "Cut, copy, and paste data between your app and other approved apps installed on the device. Choose to block these actions completely between apps, allow these actions for use with any app, or restrict use to apps that your organization manages.
\n\nPolicy-managed apps with paste in gives you the option to accept incoming content pasted from another app. However, it blocks users from sharing content outwardly, unless sharing with a managed app.
"
+ },
+ "DialerRestrictionLevel": {
+ "iosTooltip": "Typically, when a user selects a hyperlinked phone number in an app, a dialer app will open with the phone number prepopulated and ready to call. For this setting, choose how to handle this type of content transfer when it's initiated from a policy-managed app. Additional steps may be necessary in order for this setting to take effect. First, verify that tel and telprompt have been removed from the Select apps to exempt list. Then, ensure the application is using a newer version of Intune SDK (Version 12.7.0+).",
+ "label": "Transfer telecommunication data to",
+ "tooltip": "Typically, when a user selects a hyperlinked phone number in an app, a dialer app will open with the phone number prepopulated and ready to call. For this setting, choose how to handle this type of content transfer when it's initiated from a policy-managed app."
+ },
+ "EncryptData": {
+ "label": "Encrypt org data",
+ "link": "https://docs.microsoft.com/en-us/intune/app-protection-policy-settings-android#data-relocation-settings",
+ "tooltip": "Select {0} to enforce encrypting org data with Intune app layer encryption.\n
\nSelect {1} to not enforce encrypting org data with Intune app layer encryption.\n\n
\nNote: For more information on Intune app layer encryption, see {2}."
+ },
+ "EncryptDataAndroid": {
+ "tooltip": "Choose Require to enable encryption of work or school data in this app. Intune uses an OpenSSL, 256-bit AES encryption scheme along with the Android Keystore system to securely encrypt app data. Data is encrypted synchronously during file I/O tasks. Content on the device storage is always encrypted. The SDK will continue to provide support of 128-bit keys for compatibility with content and apps that use older SDK versions.
\n\nThe encryption method is FIPS 140-2 compliant.
"
+ },
+ "EncryptDataIos": {
+ "tooltip1": "Choose Require to enable encryption of work or school data in this app. Intune enforces iOS/iPadOS device encryption to protect app data while the device is locked. Applications may optionally encrypt app data using Intune APP SDK encryption. Intune APP SDK uses iOS/iPadOS cryptography methods to apply 128-bit AES encryption to app data.",
+ "tooltip2": "When you enable this setting, the user may be required to set up and use a PIN to access their device. If there's no device PIN and encryption is required, the user is prompted to set a PIN with the message \"Your organization has required you to first enable a device PIN to access this app.\"",
+ "tooltip3": "Go to the official Apple documentation to see which iOS encryption modules are FIPS 140-2 compliant or pending FIPS 140-2 compliance."
+ },
+ "EncryptDataOnEnrolledDevices": {
+ "label": "Encrypt org data on enrolled devices",
+ "tooltip": "Select {0} to enforce encrypting org data with Intune app layer encryption on all devices.
\n\nSelect {1} to not enforce encrypting org data with Intune app layer encryption on enrolled devices."
+ },
+ "IOSBackup": {
+ "label": "Backup org data to iTunes and iCloud backups",
+ "tooltip": "Select {0} to prevent backup of org data to iTunes or iCloud. \nSelect {1} to permit backup of org data to iTunes or iCloud. \nPersonal or unmanaged data is not affected."
+ },
+ "IOSFaceID": {
+ "label": "Face ID instead of PIN for access (iOS 11+/iPadOS)",
+ "tooltip": "Face ID uses facial recognition technology to authenticate users on iOS/iPadOS devices. Intune calls the LocalAuthentication API to authenticate users using Face ID. If allowed, Face ID must be used to access the app on a Face ID capable device."
+ },
+ "IOSOverrideTouchId": {
+ "label": "Override biometrics with PIN after timeout"
+ },
+ "IOSTouchId": {
+ "label": "Touch ID instead of PIN for access (iOS 8+/iPadOS)",
+ "tooltip": "Touch ID uses fingerprint recognition technology to authenticate users on iOS devices. Intune calls the LocalAuthentication API to authenticate users using Touch ID. If allowed, Touch ID must be used to access the app on a Touch ID capable device."
+ },
+ "NotificationRestriction": {
+ "label": "Org data notifications",
+ "tooltip": "Select one of the following options to specify how notifications for org accounts are shown for this app and any connected devices such as wearables:
\n{0}: Do not share notifications.
\n{1}: Do not share org data in notifications. If not supported by the application, notifications are blocked.
\n{2}: Share all notifications.
\n Android only:\n Note: This setting does not apply to all applications. For more information see {3}
\n \n iOS only:\nNote: This setting does not apply to all applications. For more information see {4}
"
+ },
+ "OpenLinksManagedBrowser": {
+ "label": "Restrict web content transfer with other apps",
+ "tooltip": "Select one of the following options to specify the apps that this app can open web content in:
\nEdge: Allow web content to open only in Edge
\nUnmanaged browser: Allow web content to open only in the unmanaged browser defined by \"Unmanaged browser protocol\" setting
\nAny app: Allow web links in any app
"
+ },
+ "OverrideBiometric": {
+ "tooltip": "If required, depending on the timeout (minutes of inactivity), a PIN prompt will override biometric prompts. If this timeout value is not met, the biometric prompt will continue to show. This timeout value should be greater than the value specified under 'Recheck the access requirements after (minutes of inactivity)'. "
+ },
+ "PinAccess": {
+ "label": "PIN for access",
+ "tooltip": "If required, a PIN must be used to access the policy-managed app. Users must create an access PIN the first time that they open the app from a work or school account."
+ },
+ "PinLength": {
+ "label": "Select minimum PIN length",
+ "tooltip": "This setting specifies the minimum number of digits of a PIN."
+ },
+ "PinType": {
+ "label": "PIN type",
+ "tooltip": "Numeric PINs are made up of all numbers. Passcodes are made up of alphanumeric characters and special characters. "
+ },
+ "Printing": {
+ "label": "Printing org data",
+ "tooltip": "If blocked, the app cannot print protected data."
+ },
+ "ReceiveData": {
+ "label": "Receive data from other apps",
+ "tooltip": "Select one of the following options to specify the apps that this app can receive data from:
\n\nNone: Do not allow receiving data in org documents or accounts from any app
\n\nPolicy managed apps: Only allow receiving data in org documents or accounts from other policy managed apps\n
\nAny app with incoming org data: Allow receiving data in org documents or accounts from from any app and treat all incoming data without an user account as org data
\n\nAll apps: Allow receiving data in org documents or accounts from any app"
+ },
+ "RecheckAccessAfter": {
+ "label": "Recheck the access requirements after (minutes of inactivity)\n\n",
+ "tooltip": "If the policy-managed app is inactive for longer than the number of minutes of inactivity specified, the app will prompt the access requirements (i.e PIN, conditional launch settings) to be rechecked after the app is launched."
+ },
+ "RestrictKeyboards": {
+ "duplicatePackageError": "The package ID must be unique.",
+ "invalidPackageError": "Invalid package ID",
+ "label": "Approved keyboards",
+ "select": "Select keyboards to approve",
+ "subtitle": "Add all keyboards and input methods that users are allowed to use with targeted apps. Enter the keyboard name as you would like it to appear to the end user.",
+ "title": "Add approved keyboards",
+ "toolTip": "Select Require and then specify a list of approved keyboards for this policy. Learn more."
+ },
+ "SaveData": {
+ "label": "Save copies of org data",
+ "tooltip": "Select {0} to prevent saving a copy of org data to a new location, other than the selected storage services, using \"Save As\".\n Select {1} to permit saving a copy of org data to a new location using \"Save As\".
\n\n\nNote: This setting does not apply to all applications. For more information see {2}.\n"
+ },
+ "SaveDataToSelected": {
+ "label": "Allow user to save copies to selected services",
+ "tooltip": "Select the storage services users can save copies of org data to. All other services are blocked. Selecting no services will prevent users from saving a copy of org data."
+ },
+ "ScreenCaptureAndAndroidAssistant": {
+ "label": "Screen capture and Google Assistant\n",
+ "tooltip": "If blocked, both screen capture and Google Assistant app scanning capabilities will be disabled when using the policy-managed app. This feature supports the usual Google Assistant app. Third party assistants using Google's Assist API are not supported. Choosing Block will also blur the App-Switcher preview image when using the app with a work or school account."
+ },
+ "SendData": {
+ "label": "Send org data to other apps",
+ "tooltip": "Select one of the following options to specify the apps that this app can send org data to:
\n\n\nNone: Do not allow sending org data to any app
\n\n\nPolicy managed apps: Only allow sending org data to other policy managed apps
\n\n\nPolicy managed apps with OS sharing: Only allow sending org data to other policy managed apps and sending org documents to other MDM managed apps on enrolled devices
\n\n\nPolicy managed apps with Open-In/Share filtering: Only allow sending org data to other policy managed apps and filter OS Open-in/Share dialogs to only display policy managed apps\n
\n\nAll apps: Allow sending org data to any app"
+ },
+ "SimplePin": {
+ "label": "Simple PIN",
+ "tooltip": "If blocked, users may not create a simple PIN. A simple PIN is a string of consecutive or repetitive digits, such as 1234, ABCD, or 1111. Please note that blocking simple PIN of type 'Passcode' requires the passcode to have at least one number, one letter, and one special character."
+ },
+ "SyncContacts": {
+ "label": "Sync policy managed app data with native apps or add-ins"
+ },
+ "ThirdPartyKeyboards": {
+ "infoBox": "Keyboard restrictions will apply to all areas of an app. Personal accounts for apps that support multiple identities will be affected by this restriction. Learn more.",
+ "label": "Third party keyboards"
+ },
+ "Timeout": {
+ "label": "Timeout (minutes of inactivity)"
+ },
+ "Tap": {
+ "numberOfDays": "Number of days",
+ "pinResetAfterNumberOfDays": "PIN reset after number of days",
+ "previousPinBlockCount": "Select number of previous PIN values to maintain"
+ }
+ },
+ "ScheduledAction": {
+ "Form": {
+ "editBlockActionInfo": "One block action is required for all compliance policies.",
+ "graceperiod": "Schedule (days after noncompliance)",
+ "graceperiodInfo": "Specify the number of days after noncompliance after which this action should be triggered for the user's device",
+ "subtitle": "Specify action parameters",
+ "title": "Action parameters"
+ },
+ "List": {
+ "gracePeriodDay": "{0} day after noncompliance",
+ "gracePeriodDays": "{0} days after noncompliance",
+ "gracePeriodHour": "{0} hour after noncompliance",
+ "gracePeriodHours": "{0} hours after noncompliance",
+ "gracePeriodMinute": "{0} minute after noncompliance",
+ "gracePeriodMinutes": "{0} minutes after noncompliance",
+ "immediately": "Immediately",
+ "schedule": "Schedule",
+ "scheduleInfoBalloon": "Days after noncompliance",
+ "subtitle": "Specify the sequence of actions on noncompliant devices",
+ "title": "Actions"
+ },
+ "Notification": {
+ "additionalEmailLabel": "Others",
+ "additionalRecipients": "Additional recipients (via email)",
+ "additionalRecipientsBladeTitle": "Select additional recipients",
+ "emailAddressPrompt": "Enter email addresses (separated by commas)",
+ "invalidEmail": "Invalid email address",
+ "messageTemplate": "Message template",
+ "noneSelected": "None selected",
+ "notSelected": "Not selected",
+ "numSelected": "{0} selected",
+ "selected": "Selected"
+ },
+ "block": "Mark device noncompliant",
+ "lockDevice": "Lock device (local action)",
+ "lockDeviceWithPasscode": "Lock device (local action)",
+ "noAction": "No action",
+ "noActionRow": "No actions, select 'Add' to add an action",
+ "pushNotification": "Send push notification to end user",
+ "remoteLock": "Remotely lock the noncompliant device",
+ "removeSourceAccessProfile": "Remove source access profile",
+ "retire": "Retire the noncompliant device",
+ "wipe": "Wipe",
+ "emailNotification": "Send email to end user"
+ },
+ "InstallIntent": {
+ "available": "Available for enrolled devices",
+ "availableWithoutEnrollment": "Available with or without enrollment",
+ "required": "Required",
+ "uninstall": "Uninstall"
+ },
"EnrollmentStatusScreen": {
"Apps": {
"managedApps": "Managed apps",
@@ -2466,142 +1483,61 @@
"resetToggle": "Allow users to reset device if installation error occurs",
"timeout": "Show an error when installation takes longer than specified number of minutes"
},
- "EnrollmentType": {
- "devicesWithEnrollment": "Managed devices",
- "devicesWithoutEnrollment": "Managed apps"
- },
- "ApplicabilityRules": {
- "GridLabel": {
- "property": "Property",
- "rule": "Rule",
- "ruleDetails": "Rule Details",
- "value": "Value"
- },
- "assignIf": "Assign profile if",
- "deleteWarning": "This will delete the selected Applicability Rule",
- "dontAssignIf": "Don't assign profile if",
- "editionDisplayText": "{0} {1}",
- "editionDisplayTextMore": "and {0} more",
- "instructions": "Specify how to apply this profile within an assigned group. Intune will only apply the profile to devices that meet the combined criteria of these rules.",
- "maxText": "Max",
- "minText": "Min",
- "noActionRow": "No Applicability Rules Specified",
- "oSVersion": "e.g. 1.2.3.4",
- "toText": "to",
- "windows10Education": "Windows 10/11 Education",
- "windows10EducationN": "Windows 10/11 Education N",
- "windows10Enterprise": "Windows 10/11 Enterprise",
- "windows10EnterpriseN": "Windows 10/11 Enterprise N",
- "windows10HolographicEnterprise": "Windows 10 Holographic for Business",
- "windows10Home": "Windows 10/11 Home",
- "windows10HomeChina": "Windows 10 Home China",
- "windows10HomeN": "Windows 10/11 Home N",
- "windows10HomeSingleLanguage": "Windows 10/11 Home Single Language",
- "windows10IoTCore": "Windows 10 IoT Core",
- "windows10IoTCoreCommercial": "Windows 10 IoT Core Commercial",
- "windows10Mobile": "Windows 10 Mobile",
- "windows10MobileEnterprise": "Windows 10 Mobile Enterprise",
- "windows10OsEdition": "OS edition",
- "windows10OsVersion": "OS version",
- "windows10Professional": "Windows 10/11 Professional",
- "windows10ProfessionalEducation": "Windows 10/11 Professional Education",
- "windows10ProfessionalEducationN": "Windows 10/11 Professional Education N",
- "windows10ProfessionalN": "Windows 10 Professional N",
- "windows10ProfessionalWorkstation": "Windows 10/11 Professional Workstation",
- "windows10ProfessionalWorkstationN": "Windows 10/11 Professional Workstation N"
+ "Devices": {
+ "General": {
+ "android": "Android"
+ },
+ "aOSP": "Android open source project",
+ "android": "Android device administrator",
+ "androidWorkProfile": "Android Enterprise (work profile)",
+ "iOS": "iOS/iPadOS",
+ "mac": "macOS",
+ "windows": "Windows (MDM)",
+ "windows10": "Windows 10 and later",
+ "windowsHomeSku": "Windows Home Sku",
+ "windowsMobile": "Windows Mobile"
+ },
+ "AppInfoBalloonText": {
+ "Certificate": {
+ "customSubjectName": "CN={{UserName}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US\nor\nCN={{AAD_Device_ID}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US",
+ "keySize": "Select the number of bits contained in the key.",
+ "keyUsage": "Specify the cryptographic action that is required to exchange the certificate’s public key.",
+ "renewalThreshold": "Enter the percentage (between 1 and 99 percent) of remaining certificate lifetime that is allowed before a device can request renewal of the certificate. The recommended amount in Intune is 20%. (1-99)",
+ "rootCert": "Choose a previously configured and assigned root CA certificate profile. The CA certificate must match the root certificate of the CA that is issuing the certificate for this profile (the one you are currently configuring).",
+ "scepServerUrl": "Enter a URL for the NDES Server that issues certificates through SCEP (Must be HTTPS). e.g. https://contoso.com/certsrv/mscep/mscep.dll",
+ "scepServerUrls": "Add one or more URLs for the NDES Server that issues certificates through SCEP (Must be HTTPS). e.g. https://contoso.com/certsrv/mscep/mscep.dll",
+ "subjectAlternativeName": "Subject alternative name",
+ "subjectNameFormat": "Subject name format",
+ "validityPeriod": "The amount of time remaining before the certificate expires. Enter a value that is equal to or lower than the validity period shown in the certificate template. Default is set at one year."
+ },
+ "appInstallContext": "This specifies the install context to be associated with this app. For dual mode apps, select the desired context for this app. For all other apps, this is pre-selected based on the package and cannot be modified.",
+ "autoUpdateMode": "Configure the update priority for the app. Select Default to require the device to be connected to WiFi, to be charging, and not to be actively in use before updating the app. Select High Priority to update the app as soon as the developer has published the app, regardless of charge status, WiFi capability, or end user activity on the device. Select Postponed to forgo app updates for up to 90 days. High priority and postponed will only take effect on DO devices.",
+ "configurationSettingsFormat": "Configuration settings format text",
+ "ignoreVersionDetection": "Set this to “Yes” for apps that are automatically updated by the app developer (such as Google Chrome).",
+ "ignoreVersionDetectionMacOSLobApp": "Select \"Yes\" for apps that are automatically updated by app developer or to only check for app bundleID before installation. Select \"No\" to check for app bundleID and version number before installation.",
+ "installAsManagedMacOSLobApp": "This setting only applies to macOS 11 and higher. The app will be installed but not managed on macOS 10.15 and lower.",
+ "installContextDropdown": "Select the appropriate install context. User context will install the app only for the targeted user while device context will install the app for all users on the device.",
+ "ldapUrl": "This is the LDAP hostname where clients can get the public encryption keys for email recipients. Emails will be encrypted when a key is available. Supported formats: - ldap.example.com
\n- ldap.example.com:123
\n- ldap://ldap.example.com
- ldap://ldap.example.com:123
- ldaps://ldap.example.com
\n- ldaps://ldap.example.com:123
",
+ "permissionsSettings": "Select runtime permissions for the associated app.",
+ "policyAssociatedApp": "Select the app that this policy will be associated with.",
+ "policyConfigurationSettings": "Select the method you want to use to define configuration settings for this policy.",
+ "policyDescription": "Optionally, enter a description for this configuration policy.",
+ "policyEnrollmentType": "Choose whether these settings are managed through device management or apps made with Intune SDK.",
+ "policyName": "Enter a name for this configuration policy.",
+ "policyPlatform": "Select the platform this app configuration policy will apply to.",
+ "policyProfileType": "Select the device profile types that this app configuration profile will apply to",
+ "policySMime": "Configure S/MIME signing and encryption settings for Outlook.",
+ "sMimeDeployCertsFromIntune": "Specify whether or not S/MIME certificates will be delivered from Intune for use with Outlook.\nIntune can automatically deploy signing and encryption certificates to users through the Company Portal.",
+ "sMimeEnable": "Specify whether or not S/MIME controls are enabled when composing an email",
+ "sMimeEnableAllowChange": "Specify if the user is allowed to change the Enable S/MIME setting.",
+ "sMimeEncryptAllEmails": "Specify whether or not all emails must be encrypted.\nEncrypting converts data to cipher text so that only the intended recipient can read it.",
+ "sMimeEncryptAllEmailsAllowChange": "Specify if the user is allowed to change the Encrypt all emails setting.",
+ "sMimeEncryptionCertProfile": "Specify certificate profile for email encryption.",
+ "sMimeSignAllEmails": "Specify whether or not all emails must be signed.\nA digital signature verifies the authenticity of the email and ensures that the contents are not tampered with in transit.",
+ "sMimeSignAllEmailsAllowChange": "Specify if the user is allowed to change the Sign all emails setting.",
+ "sMimeSigningCertProfile": "Specify certificate profile for email signing.",
+ "sMimeUserNotificationType": "Method to notify users that they must open Company Portal to retrieve S/MIME certificates for Outlook."
},
- "BooleanActions": {
- "allow": "Allow",
- "block": "Block",
- "configured": "Configured",
- "disable": "Disable",
- "dontRequire": "Don't Require",
- "enable": "Enable",
- "hide": "Hide",
- "limit": "Limit",
- "notConfigured": "Not configured",
- "require": "Require",
- "show": "Show",
- "yes": "Yes"
- },
- "ProactiveRemediations": {
- "Create": {
- "Basics": {
- "DescriptionMultiLineTextBox": {
- "label": "Description",
- "placeholder": "Enter a description"
- },
- "NameTextBox": {
- "label": "Name",
- "placeholder": "Enter a name"
- },
- "PublisherTextBox": {
- "label": "Publisher",
- "placeholder": "Enter a publisher"
- },
- "VersionTextBox": {
- "label": "Version"
- },
- "headerDescription": "Create a new custom script package from detection and remediation scripts that you’ve written."
- },
- "ScopeTags": {
- "headerDescription": "Select one or more groups to assign the script package."
- },
- "Settings": {
- "DetectionScriptMultiLineTextBox": {
- "label": "Detection script",
- "placeholder": "Input script text",
- "requiredValidationMessage": "Please enter the detection script"
- },
- "EnforceScriptSignatureCheckOptionPicker": {
- "label": "Enforce script signature check"
- },
- "LoggedOnCredentialsOptionPicker": {
- "label": "Run this script using the logged-on credentials"
- },
- "RemediationScript": {
- "infoBox": "This script will run in detect-only mode because there is no remediation script."
- },
- "RemediationScriptMultiLineTextBox": {
- "label": "Remediation script",
- "placeholder": "Input script text"
- },
- "RunIn64BitPSOptionPicker": {
- "label": "Run script in 64-bit PowerShell"
- },
- "ScriptMultiLineTextBox": {
- "base64EncodingValidationMessage": "Invalid script. One or more characters used in the script is not valid."
- },
- "headerDescription": "Create a custom script package from scripts you've written. By default, scripts will run on assigned devices every day.",
- "infoBox": "This script is read-only. Some of the settings for this script might be disabled."
- },
- "title": "Create custom script",
- "ScriptProperties": {
- "GridHeaders": {
- "interval": "Interval",
- "time": "Date and time"
- },
- "Interval": {
- "day": "Repeats every day",
- "days": "Repeats every {0} days",
- "hour": "Repeats every hour",
- "hours": "Repeats every {0} hours",
- "month": "Repeats every month",
- "months": "Repeats every {0} months",
- "week": "Repeats every week",
- "weeks": "Repeats every {0} weeks"
- },
- "Time": {
- "utc": "{0} (UTC)",
- "utcWithDate": "{0} (UTC) on {1}",
- "withDate": "{0} on {1}"
- }
- }
- },
- "Edit": {
- "title": "Edit - {0}"
- }
- },
"WindowsManagement": {
"Assignment": {
"noAssignmentCustomAttributeDisplayText": "Assign custom attribute to at least one group. Go to Properties to edit assignments.",
@@ -2708,910 +1644,6 @@
"shellScriptObjectName": "Shell script",
"successfullySavedPolicy": "Saved {0}"
},
- "AssignmentFilters": {
- "assignmentFilterColumnHeader": "Filter",
- "noFilters": "None"
- },
- "Category": {
- "airPlay": "AirPlay",
- "airPrint": "AirPrint",
- "androidDefenderAtp": "Microsoft Defender for Endpoint",
- "androidDeviceOwnerApplications": "Applications",
- "androidForWorkPassword": "Device password",
- "appManagement": "Allow or Block apps",
- "applicationGuard": "Microsoft Defender Application Guard",
- "applicationRestrictions": "Restricted Apps",
- "applicationVisibility": "Show or Hide Apps",
- "applications": "App Store",
- "applicationsAndGames": "App Store, Doc Viewing, Gaming",
- "applicationsAndGoogle": "Google Play Store",
- "appsAndExperience": "Apps and experience",
- "associatedDomains": "Associated domains",
- "autonomousSingleAppMode": "Autonomous Single App Mode",
- "azureOperationalInsights": "Azure operational insights",
- "bitLocker": "Windows Encryption",
- "browser": "Browser",
- "builtinApps": "Built-in Apps",
- "cellular": "Cellular",
- "cloudAndStorage": "Cloud and Storage",
- "cloudPrint": "Cloud Printer",
- "complianceEmailProfile": "Email",
- "connectedDevices": "Connected Devices",
- "connectivity": "Cellular and connectivity",
- "contentCaching": "Content caching",
- "controlPanelAndSettings": "Control Panel and Settings",
- "credentialGuard": "Microsoft Defender Credential Guard",
- "customCompliance": "Custom Compliance",
- "customCompliancePreview": "Custom Compliance (Preview)",
- "customConfiguration": "Custom Configuration Profile",
- "customOMASettings": "Custom OMA-URI Settings",
- "customPreferences": "Preference file",
- "defender": "Microsoft Defender Antivirus",
- "defenderAntivirus": "Microsoft Defender Antivirus",
- "defenderExploitGuard": "Microsoft Defender Exploit Guard",
- "defenderFirewall": "Microsoft Defender Firewall",
- "defenderLocalSecurityOptions": "Local device security options",
- "defenderSecurityCenter": "Microsoft Defender Security Center",
- "deliveryOptimization": "Delivery Optimization",
- "derivedCredentialAuthenticationConfiguration": "Derived credential",
- "deviceExperience": "Device experience",
- "deviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
- "deviceGuard": "Microsoft Defender Application Control",
- "deviceHealth": "Device Health",
- "devicePassword": "Device password",
- "deviceProperties": "Device Properties",
- "deviceRestrictions": "General",
- "deviceSecurity": "System security",
- "display": "Display",
- "domainJoin": "Domain Join",
- "domains": "Domains",
- "edgeBrowser": "Microsoft Edge Legacy (Version 45 and earlier)",
- "edgeBrowserSmartScreen": "Microsoft Defender SmartScreen",
- "edgeKiosk": "Microsoft Edge kiosk mode",
- "editionUpgrade": "Edition Upgrade",
- "education": "Education",
- "educationDeviceCerts": "Device certificates",
- "educationStudentCerts": "Student certificates",
- "educationTakeATest": "Take a Test",
- "educationTeacherCerts": "Teacher certificates",
- "emailProfile": "Email",
- "enterpriseDataProtection": "Windows Information Protection",
- "expeditedCheckin": "Mobile device management configuration",
- "extensibleSingleSignOn": "Single sign-on app extension",
- "filevault": "FileVault",
- "firewall": "Firewall",
- "games": "Games",
- "gatekeeper": "Gatekeeper",
- "healthMonitoring": "Health monitoring",
- "homeScreenLayout": "Home Screen Layout",
- "iOSWallpaper": "Wallpaper",
- "importedPFX": "PKCS Imported Certificate",
- "iosDefenderAtp": "Microsoft Defender for Endpoint",
- "iosKiosk": "Kiosk",
- "kernelExtensions": "Kernel extensions",
- "keyboardAndDictionary": "Keyboard and Dictionary",
- "kiosk": "Kiosk",
- "kioskAndroidEnterprise": "Dedicated devices",
- "kioskConfiguration": "Kiosk",
- "kioskConfigurationV2": "Kiosk",
- "kioskWebBrowser": "Kiosk web browser",
- "lockScreenMessage": "Lock Screen Message",
- "lockedScreenExperience": "Locked Screen Experience",
- "logging": "Reporting and Telemetry",
- "loginItems": "Login items",
- "loginWindow": "Login window",
- "macDefenderAtp": "Microsoft Defender for Endpoint",
- "maintenance": "Maintenance",
- "malware": "Malware",
- "messaging": "Messaging",
- "networkBoundary": "Network boundary",
- "networkProxy": "Network proxy",
- "notifications": "App Notifications",
- "pKCS": "PKCS Certificate",
- "password": "Password",
- "personalProfile": "Personal profile",
- "personalization": "Personalization",
- "policyOverride": "Override Group Policy",
- "powerSettings": "Power Settings",
- "printer": "Printer",
- "privacy": "Privacy",
- "privacyPerApp": "Per-app privacy exceptions",
- "privacyPreferences": "Privacy preferences",
- "projection": "Projection",
- "sCCMCompliance": "Configuration Manager Compliance",
- "sCEP": "SCEP Certificate",
- "sCEPProperties": "SCEP Certificate",
- "sMode": "Mode switch (Windows Insider only)",
- "safari": "Safari",
- "search": "Search",
- "session": "Session",
- "sharedDevice": "Shared iPad",
- "sharedPCAccountManager": "Shared multi-user device",
- "singleSignOn": "Single sign-on",
- "smartScreen": "Microsoft Defender SmartScreen",
- "softwareUpdates": "Settings",
- "start": "Start",
- "systemExtensions": "System extensions",
- "systemSecurity": "System Security",
- "trustedCert": "Trusted Certificate",
- "updates": "Updates",
- "userRights": "User Rights",
- "usersAndAccounts": "Users and Accounts",
- "vPN": "Base VPN",
- "vPNApps": "Automatic VPN",
- "vPNAppsAndTrafficRules": "Apps and Traffic Rules",
- "vPNConditionalAccess": "Conditional Access",
- "vPNConnectivity": "Connectivity",
- "vPNDNSTriggers": "DNS Settings",
- "vPNIKEv2": "IKEv2 settings",
- "vPNProxy": "Proxy",
- "vPNSplitTunneling": "Split Tunneling",
- "vPNTrustedNetwork": "Trusted Network Detection",
- "webContentFilter": "Web Content Filter",
- "wiFi": "Wi-Fi",
- "win10Wifi": "Wi-Fi",
- "windowsAtp": "Microsoft Defender for Endpoint",
- "windowsDefenderATP": "Microsoft Defender for Endpoint",
- "windowsHelloForBusiness": "Windows Hello for Business",
- "windowsSpotlight": "Windows Spotlight",
- "wiredNetwork": "Wired network",
- "wireless": "Wireless",
- "wirelessProjection": "Wireless projection",
- "workProfile": "Work profile settings",
- "workProfilePassword": "Work profile password",
- "xboxServices": "Xbox services",
- "zebraMx": "MX profile (Zebra only)",
- "complianceActionsLabel": "Actions for noncompliance"
- },
- "MicrosoftEdgeChannel": {
- "beta": "Beta",
- "dev": "Dev",
- "stable": "Stable"
- },
- "ConfigurationTypes": {
- "Table": {
- "androidDeviceOwnerGeneral": "Device restrictions (device owner)",
- "androidForWorkGeneral": "Device restrictions (work profile)"
- },
- "androidCustom": "Custom",
- "androidDeviceOwnerGeneral": "Device restrictions",
- "androidDeviceOwnerPkcs": "PKCS Certificate",
- "androidDeviceOwnerScep": "SCEP Certificate",
- "androidDeviceOwnerTrustedCertificate": "Trusted Certificate",
- "androidDeviceOwnerVpn": "VPN",
- "androidDeviceOwnerWiFi": "Wi-Fi",
- "androidEmailProfile": "Email (Samsung KNOX only)",
- "androidForWorkCustom": "Custom",
- "androidForWorkEmailProfile": "Email",
- "androidForWorkGeneral": "Device restrictions",
- "androidForWorkImportedPFX": "PKCS imported certificate",
- "androidForWorkOemConfig": "OEMConfig",
- "androidForWorkPKCS": "PKCS certificate",
- "androidForWorkSCEP": "SCEP certificate",
- "androidForWorkTrustedCertificate": "Trusted certificate",
- "androidForWorkVpn": "VPN",
- "androidForWorkWiFi": "Wi-Fi",
- "androidGeneral": "Device restrictions",
- "androidImportedPFX": "PKCS imported certificate",
- "androidPKCS": "PKCS certificate",
- "androidSCEP": "SCEP certificate",
- "androidTrustedCertificate": "Trusted certificate",
- "androidVPN": "VPN",
- "androidWiFi": "Wi-Fi",
- "androidZebraMx": "MX profile (Zebra only)",
- "complianceAndroid": "Android compliance policy",
- "complianceAndroidDeviceOwner": "Fully managed, dedicated, and corporate-owned work profile",
- "complianceAndroidEnterprise": "Personally-owned work profile",
- "complianceAndroidForWork": "Android for Work compliance policy",
- "complianceIos": "iOS compliance policy",
- "complianceMac": "Mac compliance policy",
- "complianceWindows10": "Windows 10 and later compliance policy",
- "complianceWindows10Mobile": "Windows 10 mobile compliance policy",
- "complianceWindows8": "Windows 8 compliance policy",
- "complianceWindowsPhone": "Windows Phone compliance policy",
- "exchangeActiveSync": "Exchange Active Sync",
- "iosCustom": "Custom",
- "iosDerivedCredentialAuthenticationConfiguration": "Derived PIV credential",
- "iosDeviceFeatures": "Device features",
- "iosEDU": "Education",
- "iosEducation": "Education",
- "iosEmailProfile": "Email",
- "iosGeneral": "Device restrictions",
- "iosImportedPFX": "PKCS imported certificate",
- "iosPKCS": "PKCS certificate",
- "iosPresets": "Presets",
- "iosSCEP": "SCEP certificate",
- "iosTrustedCertificate": "Trusted certificate",
- "iosVPN": "VPN",
- "iosVPNZscaler": "VPN",
- "iosWiFi": "Wi-Fi",
- "macCustom": "Custom",
- "macDeviceFeatures": "Device features",
- "macEndpointProtection": "Endpoint protection",
- "macExtensions": "Extensions",
- "macGeneral": "Device restrictions",
- "macImportedPFX": "PKCS imported certificate",
- "macSCEP": "SCEP certificate",
- "macTrustedCertificate": "Trusted certificate",
- "macVPN": "VPN",
- "macWiFi": "Wi-Fi",
- "settingsCatalog": "Settings catalog (preview)",
- "unsupported": "Unsupported",
- "windows10AdministrativeTemplate": "Administrative Templates (Preview)",
- "windows10Atp": "Microsoft Defender for Endpoint (desktop devices running Windows 10 or later)",
- "windows10Custom": "Custom",
- "windows10DesktopSoftwareUpdate": "Software Updates",
- "windows10DeviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
- "windows10EmailProfile": "Email",
- "windows10EndpointProtection": "Endpoint protection",
- "windows10EnterpriseDataProtection": "Windows Information Protection",
- "windows10General": "Device restrictions",
- "windows10ImportedPFX": "PKCS imported certificate",
- "windows10Kiosk": "Kiosk",
- "windows10NetworkBoundary": "Network boundary",
- "windows10PKCS": "PKCS certificate",
- "windows10PolicyOverride": "Override Group Policy",
- "windows10SCEP": "SCEP certificate",
- "windows10SecureAssessmentProfile": "Education profile",
- "windows10SharedPC": "Shared multi-user device",
- "windows10TeamGeneral": "Device restrictions (Windows 10 Team)",
- "windows10TrustedCertificate": "Trusted certificate",
- "windows10VPN": "VPN",
- "windows10WiFi": "Wi-Fi",
- "windows10WiFiCustom": "Wi-Fi custom",
- "windows8General": "Device restrictions",
- "windows8SCEP": "SCEP certificate",
- "windows8TrustedCertificate": "Trusted certificate",
- "windows8VPN": "VPN",
- "windows8WiFi": "Wi-Fi import",
- "windowsDeliveryOptimization": "Delivery Optimization",
- "windowsDomainJoin": "Domain Join",
- "windowsEditionUpgrade": "Edition upgrade and mode switch",
- "windowsIdentityProtection": "Identity protection",
- "windowsPhoneCustom": "Custom",
- "windowsPhoneEmailProfile": "Email",
- "windowsPhoneGeneral": "Device restrictions",
- "windowsPhoneImportedPFX": "PKCS imported certificate",
- "windowsPhoneSCEP": "SCEP certificate",
- "windowsPhoneTrustedCertificate": "Trusted certificate",
- "windowsPhoneVPN": "VPN",
- "IosUpdate": "iOS Update policy"
- },
- "WindowsEnrollment": {
- "coManagementAuthorityDesc": "Configure co-management settings for Configuration Manager integration",
- "coManagementAuthorityTitle": "Co-management Settings ",
- "deploymentProfiles": "Windows Autopilot deployment profiles",
- "description": "Learn about the seven different ways a Windows 10/11 PC can be enrolled into Intune by users or admins.",
- "descriptionLabel": "Windows enrollment methods",
- "enrollmentStatusPage": "Enrollment Status Page"
- },
- "Platform": {
- "all": "All",
- "android": "Android device administrator",
- "androidAOSP": "Android (AOSP)",
- "androidEnterprise": "Android Enterprise",
- "androidForWork": "Android Enterprise",
- "androidWorkProfile": "Android enterprise",
- "common": "Common",
- "iOS": "iOS/iPadOS",
- "iosAndAndroidPlatformLabel": "iOS and Android",
- "iosCommaAndroidPlatformLabel": "iOS, Android",
- "linux": "Linux",
- "macOS": "macOS",
- "unknown": "Unknown",
- "unsupported": "Unsupported",
- "windows": "Windows",
- "windows10": "Windows 10 and later",
- "windows10CM": "Windows 10 and later (ConfigMgr)",
- "windows10Holo": "Windows 10 Holographic",
- "windows10Mobile": "Windows 10 Mobile",
- "windows10Team": "Windows 10 Team",
- "windows10X": "Windows 10X",
- "windows8": "Windows 8.1 and later",
- "windows8And10": "Windows 8 and 10",
- "windowsPhone": "Windows Phone 8.1",
- "windows10AndLater": "Windows 10 and later",
- "windows10AndWindowsServer": "Windows 10, Windows 11, and Windows Server (ConfigMgr)",
- "windows10andLaterCM": "Windows 10 and later (ConfigMgr)",
- "holoLens": "HoloLens",
- "surfaceHub2": "Surface Hub 2",
- "surfaceHub2S": "Surface Hub 2S",
- "windowsPC": "Windows PC"
- },
- "EnrollmentRestrictions": {
- "DeletePayloadLink": {
- "content": "{0} is included in one or more policy sets. If you delete {0}, you'll no longer be able to assign it via these policy sets. Delete anyway?",
- "contentWithError": "{0} might be included in one or more policy sets. If you delete {0}, you'll no longer be able to assign it via these policy sets. Delete anyway?",
- "header": "Are you sure you want to delete this restriction?"
- },
- "DeviceLimit": {
- "description": "Specify the maximum number of devices a user can enroll.",
- "header": "Device limit restrictions",
- "info": "Define how many devices each user can enroll."
- },
- "DeviceType": {
- "VersionValidation": {
- "aOSP": "Must be 1.0 or greater.",
- "android": "Enter a valid version number. Examples: 5.0, 5.5.1, 6.0.0.1",
- "androidForWork": "Enter a valid version number. Examples: 5.0, 5.1.1",
- "iOS": "Enter a valid version number. Examples: 9.0, 10.0, 9.0.2",
- "mac": "Enter a valid version number. Examples: 10, 10.10, 10.10.1",
- "min": "Minimum cannot be lower than {0}",
- "minMax": "Minimum version cannot be greater than maximum version.",
- "windows": "Must be 10.0 or greater. Leave blank to allow 8.1 devices",
- "windowsMobile": "Must be 10.0 or greater. Leave blank to allow 8.1 devices"
- },
- "allPlatformsBlocked": "All device platforms are blocked. Allow platform enrollment to enable platform configuration.",
- "blockManufacturerPlaceHolder": "Manufacturer name",
- "blockManufacturersHeader": "Blocked manufacturers",
- "cannotRestrict": "Restriction not supported",
- "configurationDescription": "Specify the platform configuration restrictions that must be met for a device to enroll. Use compliance policies to restrict devices after enrollment. Define versions as major.minor.build. Version restrictions only apply to devices enrolled with the Company Portal. Intune classifies devices as personally-owned by default. Additional action is required to classify devices as corporate-owned.",
- "configurationDescriptionLabel": "Learn more about setting enrollment restrictions",
- "configurations": "Configure platforms",
- "deviceManufacturer": "Device manufacturer",
- "header": "Device type restrictions",
- "info": "Define which platforms, versions, and management types can enroll.",
- "manufacturer": "Manufacturer",
- "max": "Max",
- "maxVersion": "Maximum version",
- "min": "Min",
- "minVersion": "Minimum version",
- "newPlatforms": "You have allowed new platforms. Consider updating Platform Configurations.",
- "personal": "Personally owned",
- "platform": "Platform",
- "platformDescription": "You can allow enrollment of the following platforms. Only block platforms you will not support. Allowed platforms can be configured with additional enrollment restrictions.",
- "platformSettings": "Platform settings",
- "platforms": "Select platforms",
- "platformsSelected": "{0} platforms selected",
- "type": "Type",
- "versions": "versions",
- "versionsRange": "Allow min/max range:",
- "windowsTooltip": "Restricts enrollment through Mobile Device Management. Does not restrict PC agent installation. Only Windows 10 and Windows 11 versions are supported. Leave versions blank to allow Windows 8.1."
- },
- "Priority": {
- "saved": "Restriction Priorities were successfully saved."
- },
- "Row": {
- "announce": "Priority: {0}, Name: {1}, Assigned: {2}"
- },
- "Table": {
- "deployed": "Deployed",
- "name": "Name",
- "priority": "Priority"
- },
- "Type": {
- "limit": "Device limit restriction",
- "type": "Device type restriction"
- },
- "allUsers": "All Users",
- "androidRestrictions": "Android restrictions",
- "create": "Create restriction",
- "defaultLimitDescription": "This is the default Device Limit Restriction applied with lowest priority to all users regardless of group membership.",
- "defaultTypeDescription": "This is the default Device Type Restriction applied with lowest priority to all users regardless of group membership.",
- "defaultWhfbDescription": "This is the default Windows Hello for Business configuration applied with the lowest priority to all users regardless of group membership.",
- "deleteMessage": "Affected users will be restricted by the next highest priority restriction assigned or the default restriction if no other restriction is assigned.",
- "deleteTitle": "Are you sure you want to delete {0} restriction?",
- "descriptionHint": "Short paragraph describing the business use or restriction level characterized by the restriction's settings.",
- "edit": "Edit restriction",
- "info": "A device must comply with the highest priority enrollment restrictions assigned to its user. You can drag a device restriction to change its priority. Default restrictions are lowest priority for all users and govern userless enrollments. Default restrictions may be edited, but not deleted.",
- "iosRestrictions": "iOS restrictions",
- "mDM": "MDM",
- "macRestrictions": "MacOS restrictions",
- "maxVersion": "Max Version",
- "minVersion": "Min Version",
- "nameHint": "This will be the primary attribute visible for identifying the restriction set.",
- "noAssignmentsStatusBar": "Assign restriction to at least one group. Click Properties.",
- "notFound": "Restriction not found. It may have already been deleted.",
- "personallyOwned": "Personally owned devices",
- "restriction": "Restriction",
- "restrictionLowerCase": "restriction",
- "restrictionType": "Restriction type",
- "selectType": "Select restriction type",
- "selectValidation": "Please select a platform",
- "typeHint": "Choose Device Type Restriction to restrict device properties. Choose Device Limit Restriction to restrict number of devices per-user.",
- "typeRequired": "Restriction type is required.",
- "winPhoneRestrictions": "Windows Phone restrictions",
- "windowsRestrictions": "Windows restrictions"
- },
- "Titles": {
- "ChromeOs": {
- "devices": "Chrome OS devices"
- },
- "ManagedDesktop": {
- "adminContacts": "Admin contacts",
- "appPackaging": "App packaging",
- "devices": "Devices",
- "feedback": "Feedback",
- "gettingStarted": "Getting started",
- "messages": "Messages",
- "onlineResources": "Online resources",
- "serviceRequests": "Service requests",
- "settings": "Settings",
- "tenantEnrollment": "Tenant enrollment"
- },
- "actions": "Actions for Non-Compliance",
- "advancedExchangeSettings": "Exchange online settings",
- "advancedThreatProtection": "Microsoft Defender for Endpoint",
- "allApps": "All apps",
- "allDevices": "All devices",
- "androidFotaDeployments": "Android FOTA deployments",
- "appBundles": "App Bundles",
- "appCategories": "App categories",
- "appConfigPolicies": "App configuration policies",
- "appInstallStatus": "App install status",
- "appLicences": "App licenses",
- "appProtectionPolicies": "App protection policies",
- "appProtectionStatus": "App protection status",
- "appSelectiveWipe": "App selective wipe",
- "appleVppTokens": "Apple VPP Tokens",
- "apps": "Apps",
- "assign": "Assignments",
- "assignedPermissions": "Assigned permissions",
- "assignedRoles": "Assigned roles",
- "autopilotDeploymentReport": "Autopilot deployments (preview)",
- "brandingAndCustomization": "Customization",
- "cartProfiles": "Cart profiles",
- "certificateConnectors": "Certificate connectors",
- "chromeEnterprise": "Chrome Enterprise",
- "compliancePolicies": "Compliance policies",
- "complianceScriptManagement": "Scripts",
- "complianceScriptManagementPreview": "Scripts (Preview)",
- "complianceSettings": "Compliance policy settings",
- "conditionStatements": "Condition statements",
- "conditions": "Locations",
- "configMgr": "Microsoft Endpoint Configuration Manager",
- "configurationProfiles": "Configuration profiles",
- "configurationProfilesPreview": "Configuration profiles (preview)",
- "connectorsAndTokens": "Connectors and tokens",
- "corporateDeviceIdentifiers": "Corporate device identifiers",
- "customAttributes": "Custom attributes",
- "customNotifications": "Custom notifications",
- "deploymentSettings": "Deployment settings",
- "derivedCredentials": "Derived Credentials",
- "deviceActions": "Device actions",
- "deviceCategories": "Device categories",
- "deviceCleanUp": "Device clean-up rules",
- "deviceEnrollmentManagers": "Device enrollment managers",
- "deviceExecutionStatus": "Device status",
- "deviceLimitEnrollmentRestrictions": "Enrollment device limit restrictions",
- "deviceTypeEnrollmentRestrictions": "Enrollment device platform restrictions",
- "devices": "Devices",
- "discoveredApps": "Discovered apps",
- "embeddedSIM": "eSIM cellular profiles (Preview)",
- "enrollDevices": "Enroll devices",
- "enrollmentFailures": "Enrollment failures",
- "enrollmentNotifications": "Enrollment notifications (Preview)",
- "enrollmentRestrictions": "Enrollment restrictions",
- "exchangeActiveSync": "Exchange ActiveSync",
- "exchangeServiceConnectors": "Exchange service connectors",
- "failuresForFeatureUpdates": "Feature update failures (Preview)",
- "failuresForQualityUpdates": "Windows Expedited update failures (Preview)",
- "featureFlighting": "Feature flighting",
- "featureUpdateDeployments": "Feature updates for Windows 10 and later (Preview)",
- "flighting": "Flighting",
- "fotaUpdate": "Firmware over-the-air update",
- "groupPolicy": "Administrative Templates",
- "groupPolicyAnalytics": "Group policy analytics",
- "helpSupport": "Help and support",
- "helpSupportReplacement": "Help and support ({0})",
- "iOSAppProvisioning": "iOS app provisioning profiles",
- "incompleteUserEnrollments": "Incomplete user enrollments",
- "intuneRemoteAssistance": "Remote help (preview)",
- "iosUpdates": "Update policies for iOS/iPadOS",
- "legacyPcManagement": "Legacy PC management",
- "macOSSoftwareUpdate": "Update policies for macOS",
- "macOSSoftwareUpdateAccountSummaries": "Installation status for macOS devices",
- "macOSSoftwareUpdateCategorySummaries": "Software updates summary",
- "macOSSoftwareUpdateStateSummaries": "updates",
- "managedGooglePlay": "Managed Google Play",
- "msfb": "Microsoft Store for Business",
- "myPermissions": "My permissions",
- "notifications": "Notifications",
- "officeApps": "Office apps",
- "officeProPlusPolicies": "Policies for Office apps",
- "onPremise": "On Premise",
- "onPremisesConnector": "Exchange ActiveSync on-premises connector",
- "onPremisesDeviceAccess": "Exchange ActiveSync devices",
- "onPremisesManageAccess": "Exchange on-premises access",
- "outOfDateIosDevices": "Installation failures for iOS devices",
- "overview": "Overview",
- "partnerDeviceManagement": "Partner device management",
- "perUpdateRingDeploymentState": "Per update ring deployment state",
- "permissions": "Permissions",
- "platformApps": "{0} apps",
- "platformDevices": "{0} devices",
- "platformEnrollment": "{0} enrollment",
- "policies": "Policies",
- "previewMDMDevices": "All managed devices (Preview)",
- "profiles": "Profiles",
- "properties": "Properties",
- "reports": "Reports",
- "retireNoncompliantDevices": "Retire noncompliant devices",
- "retireNoncompliantDevicesPreview": "Retire noncompliant devices (preview)",
- "role": "Role",
- "scriptManagement": "Scripts",
- "securityBaselines": "Security baselines",
- "serviceToServiceConnector": "Exchange online connector",
- "shellScripts": "Shell scripts",
- "teamViewerConnector": "TeamViewer connector",
- "telecomeExpenseManagement": "Telecom expense management",
- "tenantAdmin": "Tenant admin",
- "tenantAdministration": "Tenant administration",
- "termsAndConditions": "Terms and conditions",
- "titles": "Titles",
- "troubleshootSupport": "Troubleshooting + support",
- "user": "User",
- "userExecutionStatus": "User status",
- "warranty": "Warranty vendors",
- "wdacSupplementalPolicies": "S mode supplemental policies",
- "windows10DriverUpdate": "Driver updates for Windows 10 and later (Preview)",
- "windows10QualityUpdate": "Quality updates for Windows 10 and later (Preview)",
- "windows10UpdateRings": "Update rings for Windows 10 and later",
- "windows10XPolicyFailures": "Windows 10X policy failures",
- "windowsEnterpriseCertificate": "Windows enterprise certificate",
- "windowsManagement": "PowerShell scripts",
- "windowsSideLoadingKeys": "Windows side loading keys",
- "windowsSymantecCertificate": "Windows DigiCert certificate",
- "windowsThreatReport": "Threat agent status"
- },
- "ScopeTypes": {
- "allDevices": "All Devices",
- "allUsers": "All Users",
- "allUsersAndDevices": "All Users & All Devices",
- "selectedGroups": "Selected Groups"
- },
- "DetectionRules": {
- "ComparisonOperators": {
- "equals": "Equals",
- "greaterThan": "Greater than",
- "greaterThanOrEqualTo": "Greater than or equal to",
- "lessThan": "Less than",
- "lessThanOrEqualTo": "Less than or equal to",
- "notEqualTo": "Not equal to"
- },
- "CustomScript": {
- "enforceSignatureCheck": "Enforce script signature check and run script silently",
- "enforceSignatureCheckTooltip": "Select 'Yes' to verify that the script is signed by a trusted publisher, which will allow the script to run with no warnings or prompts displayed. The script will run unblocked. Select 'No' (default) to run the script with end-user confirmation without signature verification.",
- "header": "Use a custom detection script",
- "runAs32Bit": "Run script as 32-bit process on 64-bit clients",
- "runAs32BitTooltip": "Select 'Yes' to run the script in a 32-bit process on 64-bit clients. Select 'No' (default) to run the script in a 64-bit process on 64-bit clients. 32-bit clients run the script in a 32-bit process.",
- "scriptFile": "Script file",
- "scriptFileNotSelectedValidation": "No script file is selected.",
- "scriptFileTooltip": "Select a PowerShell script that will detect the presence of the app on the client. The app will be detected when the script both returns a 0 value exit code and writes a string value to STDOUT."
- },
- "Manual": {
- "FileRule": {
- "DetectionMethodOptions": {
- "dateCreated": "Date created",
- "dateModified": "Date modified",
- "doesNotExist": "File or folder does not exist",
- "fileOrFolderExists": "File or folder exists",
- "sizeInMB": "Size in MB",
- "version": "String (version)"
- },
- "associatedWith32Bit": "Associated with a 32-bit app on 64-bit clients",
- "associatedWith32BitTooltip": "Select 'Yes' to expand any path environment variables in the 32-bit context on 64-bit clients. Select 'No' (default) to expand any path variables in the 64-bit context on 64-bit clients. 32-bit clients will always use the 32-bit context.",
- "detectionMethod": "Detection method",
- "detectionMethodTooltip": "Select the type of detection method used to validate the presence of the app.",
- "fileOrFolder": "File or folder",
- "fileOrFolderToolTip": "The file or folder to detect.",
- "operator": "Operator",
- "operatorTooltip": "Select the operator for the detection method used to validate the comparison.",
- "path": "Path",
- "pathTooltip": "The full path of the folder containing the file or folder to detect.",
- "value": "Value",
- "valueTooltip": "Select a value that matches the selected detection method. Date detection methods should be entered in local time."
- },
- "GridColumns": {
- "pathOrCode": "Path/Code",
- "type": "Type"
- },
- "MsiRule": {
- "operator": "Operator",
- "operatorTooltip": "Select the operator for the MSI product version validation comparison.",
- "productCode": "MSI product code",
- "productCodeTooltip": "A valid MSI product code for the app.",
- "productVersion": "Value",
- "productVersionCheck": "MSI product version check",
- "productVersionCheckTooltip": "Select 'Yes' to verify the MSI product version in addition to the MSI product code.",
- "productVersionTooltip": "Enter the MSI product version for the app."
- },
- "RegistryRule": {
- "DetectionMethodOptions": {
- "integerComparison": "Integer comparison",
- "keyDoesNotExist": "Key does not exist",
- "keyExists": "Key exists",
- "stringComparison": "String comparison",
- "valueDoesNotExist": "Value does not exist",
- "valueExists": "Value exists",
- "versionComparison": "Version comparison"
- },
- "associatedWith32Bit": "Associated with a 32-bit app on 64-bit clients",
- "associatedWith32BitTooltip": "Select 'Yes' to search the 32-bit registry on 64-bit clients. Select 'No' (default) search the 64-bit registry on 64-bit clients. 32-bit clients will always search the 32-bit registry.",
- "detectionMethod": "Detection method",
- "detectionMethodTooltip": "Select the type of detection method used to validate the presence of the app.",
- "keyPath": "Key path",
- "keyPathTooltip": "The full path of the registry entry containing the value to detect.",
- "operator": "Operator",
- "operatorTooltip": "Select the operator for the detection method used to validate the comparison.",
- "value": "Value",
- "valueName": "Value name",
- "valueNameTooltip": "The name of the registry value to detect.",
- "valueTooltip": "Select a value that matches the selected detection method."
- },
- "RuleTypeOptions": {
- "file": "File",
- "mSI": "MSI",
- "registry": "Registry"
- },
- "gridAriaLabel": "Detection Rules",
- "header": "Create a rule that indicates the presence of the app.",
- "noRulesSelectedPlaceholder": "No rules are specified.",
- "ruleTableLimit": "You can add up to 25 detection rules",
- "ruleType": "Rule type",
- "ruleTypeTooltip": "Choose the type of detection rule to add."
- },
- "RuleConfigurationOptions": {
- "customScript": "Use a custom detection script",
- "manual": "Manually configure detection rules"
- },
- "bladeTitle": "Detection rules",
- "header": "Configure app specific rules used to detect the presence of the app.",
- "rulesFormat": "Rules format",
- "rulesFormatTooltip": "Choose to either manually configure the detection rules or use a custom script to detect the presence of the app.",
- "selectorLabel": "Detection rules"
- },
- "AppType": {
- "androidEnterpriseSystemApp": "Android Enterprise system app",
- "androidForWorkApp": "Managed Google Play store app",
- "androidLobApp": "Android line-of-business app",
- "androidStoreApp": "Android store app",
- "builtInAndroid": "Built-In Android app",
- "builtInApp": "Built-In app",
- "builtInIos": "Built-In iOS app",
- "default": "",
- "iosLobApp": "iOS line-of-business app",
- "iosStoreApp": "iOS store app",
- "iosVppApp": "iOS volume purchase program app",
- "lineOfBusinessApp": "Line-of-business app",
- "macOSDmgApp": "macOS app (DMG)",
- "macOSEdgeApp": "Microsoft Edge (macOS)",
- "macOSLobApp": "macOS line-of-business app",
- "macOSMdatpApp": "Microsoft Defender ATP (macOS)",
- "macOSOfficeSuiteApp": "Microsoft 365 Apps (macOS)",
- "macOsVppApp": "macOS volume purchase program app",
- "managedAndroidLobApp": "Managed Android line-of-business app",
- "managedAndroidStoreApp": "Managed Android store app",
- "managedGooglePlayApp": "Managed Google Play store app",
- "managedGooglePlayPrivateApp": "Managed Google Play private app",
- "managedGooglePlayWebApp": "Managed Google Play web link",
- "managedIosLobApp": "Managed iOS line-of-business app",
- "managedIosStoreApp": "Managed iOS store app",
- "microsoftStoreForBusinessApp": "Microsoft Store for Business app",
- "microsoftStoreForBusinessReleaseManagedApp": "Microsoft Store for Business",
- "officeSuiteApp": "Microsoft 365 Apps (Windows 10 and later)",
- "webApp": "Web link",
- "windowsAppXLobApp": "Windows AppX line-of-business app",
- "windowsClassicApp": "Windows app (Win32)",
- "windowsEdgeApp": "Microsoft Edge (Windows 10 and later)",
- "windowsMobileMsiLobApp": "Windows MSI line-of-business app",
- "windowsPhone81AppXBundleLobApp": "Windows Phone 8.1 AppX line-of-business app",
- "windowsPhone81AppXLobApp": "Windows Phone 8.1 AppX line-of-business app",
- "windowsPhone81StoreApp": "Windows Phone 8.1 store app",
- "windowsPhoneXapLobApp": "Windows Phone XAP line-of-business app",
- "windowsStoreApp": "Microsoft Store app",
- "windowsUniversalAppXLobApp": "Windows Universal AppX line-of-business app",
- "windowsUniversalLobApp": "Windows Universal line-of-business app"
- },
- "PolicyType": {
- "AttackSurfaceReductionRules": {
- "configMgr": "Attack Surface Reduction Rules (ConfigMgr)"
- },
- "EndpointDetectionandResponse": {
- "mDE": "Endpoint detection and response"
- },
- "EndpointSecurityTemplate": {
- "aSRAppBrowserSecurity": "App and browser isolation",
- "aSRApplicationControl": "Application control",
- "aSRAttackSurfaceReduction": "Attack surface reduction rules",
- "aSRDeviceControl": "Device control",
- "aSRExploitProtection": "Exploit protection",
- "aSRWebProtection": "Web protection (Microsoft Edge Legacy)",
- "aVExclusions": "Microsoft Defender Antivirus exclusions",
- "antivirus": "Microsoft Defender Antivirus",
- "cloudPC": "Windows 365 Security Baseline",
- "default": "Endpoint Security",
- "defenderTest": "Microsoft Defender for Endpoint demo",
- "diskEncryption": "BitLocker",
- "eDR": "Endpoint detection and response",
- "edgeSecurityBaseline": "Microsoft Edge baseline",
- "edgeSecurityBaselinePreview": "Preview: Microsoft Edge baseline",
- "editionUpgradeConfiguration": "Edition upgrade and mode switch",
- "firewall": "Microsoft Defender Firewall",
- "firewallRules": "Microsoft Defender Firewall rules",
- "identityProtection": "Account protection",
- "identityProtectionPreview": "Account protection (Preview)",
- "mDMSecurityBaseline1810": "MDM Security Baseline for Windows 10 and later for October 2018",
- "mDMSecurityBaseline1810Preview": "Preview: MDM Security Baseline for Windows 10 and later for October 2018",
- "mDMSecurityBaseline1810PreviewBeta": "Preview: MDM Security Baseline for Windows 10 for October 2018 (beta)",
- "mDMSecurityBaseline1906": "MDM Security Baseline for Windows 10 and later for May 2019",
- "mDMSecurityBaseline2004": "MDM Security Baseline for Windows 10 and later for August 2020",
- "mDMSecurityBaseline2101": "MDM Security Baseline for Windows 10 and later Decemeber 2020",
- "macOSAntivirus": "Antivirus",
- "macOSDiskEncryption": "FileVault",
- "macOSFirewall": "macOS firewall",
- "microsoftDefenderBaseline": "Microsoft Defender for Endpoint baseline",
- "office365Baseline": "Microsoft Office O365 baseline",
- "office365BaselinePreview": "Preview: Microsoft Office O365 baseline",
- "securityBaselines": "Security Baselines",
- "test": "Test Template",
- "testFirewallRulesSecurityTemplateName": "Microsoft Defender Firewall rules (Test)",
- "testIdentityProtectionSecurityTemplateName": "Account protection (Test)",
- "windowsSecurityExperience": "Windows Security experience"
- },
- "Firewall": {
- "mDE": "Microsoft Defender Firewall"
- },
- "FirewallRules": {
- "mDE": "Microsoft Defender Firewall Rules"
- },
- "administrativeTemplates": "Administrative Templates",
- "androidCompliancePolicy": "Android compliance policy",
- "aospDeviceOwnerCompliancePolicy": "Android (AOSP) compliance policy",
- "applicationControl": "Application Control",
- "custom": "Custom",
- "deliveryOptimization": "Delivery Optimization",
- "derivedPersonalIdentityVerificationCredential": "Derived credential",
- "deviceFeatures": "Device features",
- "deviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
- "deviceLock": "Device Lock",
- "deviceOwner": "Fully managed, dedicated, and corporate-owned work profile",
- "deviceRestrictions": "Device restrictions",
- "deviceRestrictionsWindows10Team": "Device restrictions (Windows 10 Team)",
- "domainJoinPreview": "Domain Join",
- "editionUpgradeAndModeSwitch": "Edition upgrade and mode switch",
- "education": "Education",
- "email": "Email",
- "emailSamsungKnoxOnly": "Email (Samsung KNOX only)",
- "endpointProtection": "Endpoint protection",
- "expeditedCheckin": "Mobile device management configuration",
- "exploitProtection": "Exploit Protection",
- "extensions": "Extensions",
- "hardwareConfigurations": "BIOS Configurations",
- "identityProtection": "Identity protection",
- "iosCompliancePolicy": "iOS compliance policy",
- "kiosk": "Kiosk",
- "macCompliancePolicy": "Mac compliance policy",
- "microsoftDefenderAntivirus": "Microsoft Defender Antivirus",
- "microsoftDefenderAntivirusexclusions": "Microsoft Defender Antivirus exclusions",
- "microsoftDefenderAtpWindows10Desktop": "Microsoft Defender for Endpoint (desktop devices running Windows 10 or later)",
- "microsoftDefenderFirewallRules": "Microsoft Defender Firewall Rules",
- "microsoftEdgeBaseline": "Microsoft Edge Baseline",
- "mxProfileZebraOnly": "MX profile (Zebra only)",
- "networkBoundary": "Network boundary",
- "oemConfig": "OEMConfig",
- "overrideGroupPolicy": "Override Group Policy",
- "pkcsCertificate": "PKCS certificate",
- "pkcsImportedCertificate": "PKCS imported certificate",
- "preferenceFile": "Preference file",
- "presets": "Presets",
- "scepCertificate": "SCEP certificate",
- "secureAssessmentEducation": "Secure assessment (Education)",
- "settingsCatalog": "Settings Catalog",
- "sharedMultiUserDevice": "Shared multi-user device",
- "softwareUpdates": "Software Updates",
- "trustedCertificate": "Trusted certificate",
- "unknown": "Unknown",
- "unsupported": "Unsupported",
- "vpn": "VPN",
- "wiFi": "Wi-Fi",
- "wiFiImport": "Wi-Fi import",
- "windows10CompliancePolicy": "Windows 10/11 compliance policy",
- "windows10MobileCompliancePolicy": "Windows 10 mobile compliance policy",
- "windows10XScep": "SCEP certificate - TEST",
- "windows10XTrustedCertificate": "Trusted certificate - TEST",
- "windows10XVPN": "VPN - TEST",
- "windows10XWifi": "WIFI - TEST",
- "windows8CompliancePolicy": "Windows 8 compliance policy",
- "windowsHealthMonitoring": "Windows health monitoring",
- "windowsInformationProtection": "Windows Information Protection",
- "windowsPhoneCompliancePolicy": "Windows Phone compliance policy",
- "windowsUpdateforBusiness": "Windows Update for Business",
- "wiredNetwork": "Wired Network",
- "workProfile": "Personally-owned work profile"
- },
- "OfficeSuiteAppsTab": {
- "acceptLicenseOnBehalfOfUsersLabel": "Accept the Microsoft Software License Terms on behalf of users",
- "appSuiteConfigurationLabel": "App suite configuration",
- "appSuiteInformationLabel": "App suite information",
- "appsToBeInstalledLabel": "Apps to be installed as part of the suite",
- "architectureLabel": "Architecture",
- "architectureTooltip": "Defines whether the 32-bit or 64-bit edition of Microsoft 365 Apps is installed on devices.",
- "configurationDesignerLabel": "Configuration designer",
- "configurationFileLabel": "Configuration file",
- "configurationSettingsFormatLabel": "Configuration settings format",
- "configureAppSuiteLabel": "Configure app suite",
- "configuredLabel": "Configured",
- "currentVersionLabel": "Current version",
- "currentVersionTooltip": "This is the current version of Office that’s configured in this suite. This value will be updated when a newer version is configured and saved.",
- "enableMicrosoftSearchAsDefaultTooltip": "Installs a background service that helps determine whether a Microsoft Search in Bing extension for Google Chrome is installed on the device.",
- "enterXmlDataLabel": "Enter XML data",
- "languagesLabel": "Languages",
- "languagesTooltip": "By default, Intune will install Office with the default language of the operating system. Choose any additional languages that you want to install.",
- "learnMoreText": "Learn more",
- "newUpdateChannelTooltip": "Defines how often the app is updated with new features.",
- "noCurrentVersionText": "No current version",
- "noLanguagesSelectedLabel": "No languages selected",
- "notConfiguredLabel": "Not configured",
- "propertiesLabel": "Properties",
- "removeOtherVersionsLabel": "Remove other versions",
- "removeOtherVersionsTooltip": "Select Yes to remove other versions of Office (MSI) from user devices.",
- "selectOfficeAppsLabel": "Select Office apps",
- "selectOfficeAppsTooltip": "Select the Office 365 apps that you want to install as part of the suite.",
- "selectOtherOfficeAppsLabel": "Select other Office apps (license required)",
- "selectOtherOfficeAppsTooltip": "If you own licenses for these additional Office apps you can also assign them with Intune.",
- "specificVersionLabel": "Specific version",
- "updateChannelLabel": "Update channel",
- "updateChannelTooltip": "Defines how often the app is updated with new features.
\nMonthly - Provide users with the newest features of Office as soon as they're available.
\nMonthly Enterprise Channel - Provide users with the newest features of Office once a month, on the second Tuesday of the month.
\nMonthly (Targeted) – Provide an early look at the upcoming Monthly Channel release. It is a supported update channel, and usually is available at least one week ahead of time when it's a Monthly Channel release that contains new features.
\nSemi-Annual - Provide users with new features of Office only a few times a year.
\nSemi-Annual (Targeted) - Provide pilot users and application compatibility testers the opportunity to test the next Semi-Annual.",
- "useMicrosoftSearchAsDefault": "Install background service for Microsoft Search in Bing",
- "useSharedComputerActivationLabel": "Use shared computer activation",
- "useSharedComputerActivationTooltip": "Shared computer activation lets you deploy Microsoft 365 Apps to computers that are used by multiple users. Normally, users can only install and activate Microsoft 365 Apps on a limited number of devices, such as 5 PCs. Using Microsoft 365 Apps with shared computer activation doesn't count against that limit.",
- "versionToInstallLabel": "Version to install",
- "versionToInstallTooltip": "Select the version of Office that should be installed.",
- "xLanguagesSelectedLabel": "{0} language(s) selected",
- "xmlConfigurationLabel": "XML Configuration"
- },
- "OfficeApplicationType": {
- "access": "Access",
- "bing": "Microsoft Search as default",
- "excel": "Excel",
- "groove": "OneDrive (Groove)",
- "lync": "Skype for Business",
- "oneDrive": "OneDrive Desktop",
- "oneNote": "OneNote",
- "outlook": "Outlook",
- "powerPoint": "PowerPoint",
- "publisher": "Publisher",
- "teams": "Teams",
- "word": "Word"
- },
- "WindowsQualityUpdateProfile": {
- "Details": {
- "DaysUntilForcedReboot": {
- "label": "Number of days to wait before restart is enforced"
- },
- "Description": {
- "label": "Description"
- },
- "Name": {
- "label": "Name"
- },
- "QualityUpdateRelease": {
- "label": "Expedite installation of quality updates if device OS version less than:"
- },
- "bladeTitle": "Quality updates Windows 10 and later (Preview)",
- "loadError": "Loading failed!"
- },
- "TabName": {
- "qualityUpdateSettings": "Settings"
- },
- "infoBoxText": "The only dedicated quality update control currently available other than the existing update rings policy for Windows 10 and later is the ability to expedite quality updates for devices that fall behind a specified patch level. Additional controls will be available in the future.",
- "warningBoxText": "While expediting software updates can help decrease the time to get to compliance when necessary, it has a larger impact on end-user productivity. The chances that they will experience a restart during business hours is significantly increased."
- },
- "Devices": {
- "General": {
- "android": "Android"
- },
- "aOSP": "Android open source project",
- "android": "Android device administrator",
- "androidWorkProfile": "Android Enterprise (work profile)",
- "iOS": "iOS/iPadOS",
- "mac": "macOS",
- "windows": "Windows (MDM)",
- "windows10": "Windows 10 and later",
- "windowsHomeSku": "Windows Home Sku",
- "windowsMobile": "Windows Mobile"
- },
"SettingDetails": {
"CustomPolicyConfigurationProfile": {
"uploadControlPlaceHolderText": "Select a configuration profile file"
@@ -3675,7 +1707,7 @@
"aESGCM128": "AES-128-GCM (16-octet ICV)",
"aESGCM256": "AES-256-GCM (16-octet ICV)",
"aadSharedDeviceDataClearAppsDescription": "Add any app not optimized for shared device mode to the list. The app's local data will be cleared whenever a user signs out of an app that's optimized for shared device mode. Available for dedicated devices enrolled with Shared mode running Android 9 and later.",
- "aadSharedDeviceDataClearAppsName": "Clear local data in apps not optimized for Shared device mode (Public Preview)",
+ "aadSharedDeviceDataClearAppsName": "Clear local data in apps not optimized for Shared device mode",
"accountsPageDescription": "Block access to Accounts in Settings app.",
"accountsPageName": "Accounts",
"accountsSignInAssistantSettingsDescription": "Block the Microsoft Sign-in Assistant service (wlidsvc). When this setting is not cofigured, the wlidsvc NT service is controllable by the user (manual start)",
@@ -5503,7 +3535,7 @@
"enableEndUserAccessToDefenderName": "End-user access to Defender",
"enableEngagedRestartDescription": "Enables settings to allow user switch to engaged restart.",
"enableEngagedRestartName": "Allow user to restart (engaged restart)",
- "enableIdentityPrivacyDescription": "This property masks user names with the text you enter. For example, if you type 'anonymous', each user that authenticates with this Wi-Fi connection using their real user name is displayed as 'anonymous'.",
+ "enableIdentityPrivacyDescription": "This property masks user names with the text you enter. For example, if you type 'anonymous', each user that authenticates with this Wi-Fi connection using their real user name is displayed as 'anonymous'. This may be required if using device-based certificate authentication.",
"enableIdentityPrivacyName": "Identity privacy (outer identity)",
"enableNetworkInspectionSystemDescription": "Block malicious traffic detected by signatures in the Network Inspection System (NIS)",
"enableNetworkInspectionSystemName": "Network Inspection System (NIS)",
@@ -7252,6 +5284,8 @@
"presharedKeyEncodingDescription": "Encode preshared keys using UTF-8.",
"presharedKeyEncodingName": "Pre-shared key encoding",
"preventAny": "Prevent any sharing across boundaries",
+ "primaryAuthenticationMethodName": "Primary authentication method",
+ "primaryAuthenticationMethodTEAPDescription": "Choose the primary way you want users to authenticate. When you select Certificates, select one of the certificate profiles (SCEP or PKCS) that is also deployed to the device. This is the identity certificate that is presented by the device to the server.",
"primarySMTPAddressOption": "Primary SMTP Address",
"printersColumns": "e.g. printer DNS name",
"printersDescription": "Automatically provision printers based on their network host names. This setting does not support shared printers.",
@@ -7663,6 +5697,8 @@
"searchEnableRemoteQueriesName": "Remote queries",
"secondActiveEthernet": "Second active Ethernet",
"secondEthernet": "Second Ethernet",
+ "secondaryAuthenticationMethodName": "Secondary authentication method",
+ "secondaryAuthenticationMethodTEAPDescription": "Choose the secondary way you want users to authenticate. When you select Certificates, select one of the certificate profiles (SCEP or PKCS) that is also deployed to the device. This is the identity certificate that is presented by the device to the server.",
"secretKey": "Secret Key:",
"secureBootEnabledDescription": "Require Secure Boot to be enabled on the device",
"secureBootEnabledName": "Require Secure Boot to be enabled on the device",
@@ -8074,6 +6110,7 @@
"systemUpdateWindow9": "4:30 AM",
"systemWindowsBlockedDescription": "Disable window notifications such as toasts, incoming calls, outgoing calls, system alerts, and system errors.",
"systemWindowsBlockedName": "Notification windows",
+ "tEAPName": "Tunnel EAP (TEAP)",
"tLSMinMax": "TLS minimum version must be less than or equal to TLS maximum version.",
"tLSVersionRangeMaximum": "TLS version range maximum",
"tLSVersionRangeMaximumDescription": "Enter a maximum TLS version of 1.0, 1.1, or 1.2. If left blank, a default value of 1.2 will be used.",
@@ -8126,6 +6163,17 @@
"timeWindowSameStartEndDayTime": "End day/time cannot be the same as the start day/time.",
"timeZoneDescription": "Select the time zone for the targeted devices.",
"timeZoneName": "Time zone",
+ "timeoutFifteenMinutes": "15 minutes",
+ "timeoutFiveMinutes": "5 minutes",
+ "timeoutFourHours": "4 hours",
+ "timeoutNever": "Never timeout",
+ "timeoutOneHour": "1 hour",
+ "timeoutOneMinute": "1 minute",
+ "timeoutTenMinutes": "10 minutes",
+ "timeoutThirtyMinutes": "30 minutes",
+ "timeoutThreeMinutes": "3 minutes",
+ "timeoutTwoHours": "2 hours",
+ "timeoutTwoMinutes": "2 minutes",
"toggleConfigurationPkgDescription": "Upload a signed configuration package that will be used to onboard the Microsoft Defender for Endpoint client",
"toggleConfigurationPkgName": "Microsoft Defender for Endpoint client configuration package type:",
"trafficRuleAppName": "App",
@@ -8824,6 +6872,33 @@
"win10WifiWirelessSecurityTypeName": "Wireless Security Type",
"win10WifiWirelessSecurityTypeOpen": "Open (no authentication)",
"win10WifiWirelessSecurityTypeWPA": "WPA/WPA2-Personal",
+ "win10WiredAuthenticationModeDescription": "Choose whether to authenticate the user, the device, either, or to use guest authentication (none). If you’re using certificate authentication, make sure the certificate type matches the authentication type.",
+ "win10WiredAuthenticationModeName": "Authentication Mode",
+ "win10WiredAuthenticationPeriodDescription": "Number of seconds for the client to wait after an authentication attempt before failing. Choose a number between 1 and 3600. Not specifying a value results in 18 seconds being used.",
+ "win10WiredAuthenticationPeriodName": "Authentication period",
+ "win10WiredAuthenticationRetryDelayPeriodDescription": "Number of seconds between a failed authentication and the next authentication attempt. Choose a value between 1 and 3600. Not specifying a value results in 1 second being used.",
+ "win10WiredAuthenticationRetryDelayPeriodName": "Authentication retry delay period ",
+ "win10WiredFIPSComplianceDescription": "Validation against the FIPS 140-2 standard is required for all US federal government agencies that use cryptography-based security systems to protect sensitive but unclassified information stored digitally.",
+ "win10WiredFIPSComplianceName": "Force wired profile to be compliant with the Federal Information Processing Standard (FIPS)",
+ "win10WiredGuest": "Guest",
+ "win10WiredMachine": "Machine",
+ "win10WiredMachineOrUser": "User or machine",
+ "win10WiredMaximumAuthenticationFailuresDescription": "Enter the maximum number of authentication failures for this set of credentials. Not specifying a value results in 1 attempt being used.",
+ "win10WiredMaximumAuthenticationFailuresName": "Maximum authentication failures",
+ "win10WiredMaximumEAPOLStartMessagesDescription": "Choose a number of EAPOL-Start messages between 1 and 100. Not specifying a value results in a maximum of 3 messages being sent.",
+ "win10WiredMaximumEAPOLStartMessagesName": "Maximum EAPOL-start",
+ "win10WiredNetworkAuthenticationBlockPeriodDescription": "Authentication block period in minutes. Used to specify the duration for which automatic authentication attempts will be blocked from occurring after a failed authentication attempt. Choose a value between 0 and 1440.",
+ "win10WiredNetworkAuthenticationBlockPeriodName": "Block period (minutes)",
+ "win10WiredNetworkAuthenticationModeName": "Authentication Mode",
+ "win10WiredNetworkDoNotEnforceName": "Do not enforce",
+ "win10WiredNetworkEnforce8021XDescription": "Specifies whether the automatic configuration service for wired networks requires the use of 802.1X for port authentication.",
+ "win10WiredNetworkEnforce8021XName": "802.1x",
+ "win10WiredNetworkEnforceName": "Enforce",
+ "win10WiredRememberCredentialsDescription": "Choose whether to cache users' credentials when they enter them the first time they connect to the wired network. Cached credentials are used for subsequent connections and the users don't need to re-enter them. Not configuring this setting is equivalent to setting it to yes.",
+ "win10WiredRememberCredentialsName": "Remember credentials at each logon",
+ "win10WiredStartPeriodDescription": "Number of seconds to wait before sending an EAPOL-Start message. Choose a value between 1 and 3600. Not specifying a value results in 5 seconds being used.",
+ "win10WiredStartPeriodName": "Start period",
+ "win10WiredUser": "User",
"win10appLockerApplicationControlAllowDescription": "These apps will be allowed to run",
"win10appLockerApplicationControlAllowName": "Enforce",
"win10appLockerApplicationControlAuditComponentsAndStoreAppsDescription": "\"Audit Only\" mode logs all events in local client event logs, but does not block any apps from running. Windows components and Microsoft Store apps will be logged as passing security requirements.",
@@ -9165,7 +7240,6 @@
"deviceConditionsInfoParagraph2": "Similar device based settings can be configured for enrolled devices.",
"deviceConditionsInfoParagraph2LinkText": "Learn more about configuring device compliance settings for enrolled devices.",
"deviceId": "Device ID",
- "deviceLockComplexityValidationFailureNotes": "Notes:
\n\n - The device lock can require a password complexity of: LOW, MEDIUM, or HIGH targeted to Android 11+. For devices operating on Android 10 and earlier, setting a complexity value of Low/Medium/High will default to the expected behavior for \"Low Complexity\".
\n - The password definitions below are subject to change. Please refer to DevicePolicyManager|Android Developers for the most updated definitions of the different password complexity levels.
\n
\n\nLow
\n\n - Password can be a pattern or PIN with repeating (4444) or ordered (1234, 4321, 2468) sequences.
\n
\n\nMedium
\n\n - PIN with no repeating (4444) or ordered (1234, 4321, 2468) sequences with a minimum length of at least 4 characters
\n - Alphabetic passwords with a minimum length of at least 4 characters
\n - Alphanumeric passwords with a minimum length of at least 4 characters
\n
\n\nHigh
\n\n - PIN with no repeating (4444) or ordered (1234, 4321, 2468) sequences with a minimum length of at least 8 characters
\n - Alphabetic passwords with a minimum length of at least 6 characters
\n - Alphanumeric passwords with a minimum length of at least 6 characters
\n
\n",
"deviceLockedOpenFilesOptionsText": "When device is locked and there are open files",
"deviceLockedOptionText": "When device is locked",
"deviceManufacturer": "Device manufacturer",
@@ -9463,7 +7537,7 @@
"reporting": "Reporting",
"reports": "Reports",
"require": "Require",
- "requireDeviceLockComplexityOnApps": "Require device lock complexity",
+ "requireDeviceLockOnApps": "Require device lock",
"requireThreatScanOnApps": "Require threat scan on apps",
"requiredField": "This field can't be empty",
"requiredSafetyNetEvaluationType": "Required SafetyNet evaluation type",
@@ -9659,6 +7733,7 @@
"yourDataIsBeingDownloadedEllipsis": "Your data is being downloaded, this can take a while...",
"yourDataIsBeingDownloadedMinutes": "Your data is being downloaded, this can take a few minutes...",
"yourProtectionLevel": "Your protection level",
+ "rules": "Rules",
"basics": "Basics",
"modeTableHeader": "Group mode",
"appAssignmentMsg": "Group",
@@ -9695,221 +7770,2042 @@
"licenseTypeDevice": "Device",
"licenseTypeUser": "User"
},
- "Languages": {
- "ar-aE": "Arabic (U.A.E.)",
- "ar-bH": "Arabic (Bahrain)",
- "ar-dZ": "Arabic (Algeria)",
- "ar-eG": "Arabic (Egypt)",
- "ar-iQ": "Arabic (Iraq)",
- "ar-jO": "Arabic (Jordan)",
- "ar-kW": "Arabic (Kuwait)",
- "ar-lB": "Arabic (Lebanon)",
- "ar-lY": "Arabic (Libya)",
- "ar-mA": "Arabic (Morocco)",
- "ar-oM": "Arabic (Oman)",
- "ar-qA": "Arabic (Qatar)",
- "ar-sA": "Arabic (Saudi Arabia)",
- "ar-sY": "Arabic (Syria)",
- "ar-tN": "Arabic (Tunisia)",
- "ar-yE": "Arabic (Yemen)",
- "az-cyrl": "Azerbaijani (Cyrillic, Azerbaijan)",
- "az-latn": "Azerbaijani (Latin, Azerbaijan)",
- "bn-bD": "Bangla (Bangladesh)",
- "bn-iN": "Bangla (India)",
- "bs-cyrl": "Bosnian (Cyrillic)",
- "bs-latn": "Bosnian (Latin)",
- "zh-cN": "Chinese (PRC)",
- "zh-hK": "Chinese (Hong Kong S.A.R.)",
- "zh-mO": "Chinese (Macao S.A.R.)",
- "zh-sG": "Chinese (Singapore)",
- "zh-tW": "Chinese (Taiwan)",
- "hr-bA": "Croatian (Latin)",
- "hr-hR": "Croatian (Croatia)",
- "nl-bE": "Dutch (Belgium)",
- "nl-nL": "Dutch (Netherlands)",
- "en-aU": "English (Australia)",
- "en-bZ": "English (Belize)",
- "en-cA": "English (Canada)",
- "en-cabn": "English (Caribbean)",
- "en-iE": "English (Ireland)",
- "en-iN": "English (India)",
- "en-jM": "English (Jamaica)",
- "en-mY": "English (Malaysia)",
- "en-nZ": "English (New Zealand)",
- "en-pH": "English (Republic of the Philippines)",
- "en-sG": "English (Singapore)",
- "en-tT": "English (Trinidad and Tobago)",
- "en-uK": "English (United Kingdom)",
- "en-uS": "English (United States)",
- "en-zA": "English (South Africa)",
- "en-zW": "English (Zimbabwe)",
- "fr-bE": "French (Belgium)",
- "fr-cA": "French (Canada)",
- "fr-cH": "French (Switzerland)",
- "fr-fR": "French (France)",
- "fr-lU": "French (Luxembourg)",
- "fr-mC": "French (Monaco)",
- "de-aT": "German (Austria)",
- "de-cH": "German (Switzerland)",
- "de-dE": "German (Germany)",
- "de-lI": "German (Liechtenstein)",
- "de-lU": "German (Luxembourg)",
- "iu-cans": "Inuktitut (Syllabics, Canada)",
- "iu-latn": "Inuktitut (Latin, Canada)",
- "it-cH": "Italian (Switzerland)",
- "it-iT": "Italian (Italy)",
- "ms-bN": "Malay (Brunei Darussalam)",
- "ms-mY": "Malay (Malaysia)",
- "mn-cN": "Mongolian (Traditional Mongolian, PRC)",
- "mn-mN": "Mongolian (Cyrillic, Mongolia)",
- "no-nB": "Norwegian, Bokmål (Norway)",
- "no-nn": "Norwegian, Nynorsk (Norway)",
- "pt-bR": "Portuguese (Brazil)",
- "pt-pT": "Portuguese (Portugal)",
- "quz-bO": "Quechua (Bolivia)",
- "quz-eC": "Quechua (Ecuador)",
- "quz-pE": "Quechua (Peru)",
- "smj-nO": "Sami, Lule (Norway)",
- "smj-sE": "Sami, Lule (Sweden)",
- "se-fI": "Sami, Northern (Finland)",
- "se-nO": "Sami, Northern (Norway)",
- "se-sE": "Sami, Northern (Sweden)",
- "sma-nO": "Sami, Southern (Norway)",
- "sma-sE": "Sami, Southern (Sweden)",
- "smn": "Sami, Inari (Finland)",
- "sms": "Sami, Skolt (Finland)",
- "sr-Cyrl-bA": "Serbian (Cyrillic)",
- "sr-Cyrl-rS": "Serbian (Cyrillic, Serbia and Montenegro)",
- "sr-Latn-bA": "Serbian (Latin)",
- "sr-Latn-rS": "Serbian (Latin, Serbia)",
- "dsb": "Lower Sorbian (Germany)",
- "hsb": "Upper Sorbian (Germany)",
- "es-es-tradnl": "Spanish (Spain, Traditional Sort)",
- "es-aR": "Spanish (Argentina)",
- "es-bO": "Spanish (Bolivia)",
- "es-cL": "Spanish (Chile)",
- "es-cO": "Spanish (Colombia)",
- "es-cR": "Spanish (Costa Rica)",
- "es-dO": "Spanish (Dominican Republic)",
- "es-eC": "Spanish (Ecuador)",
- "es-eS": "Spanish (Spain)",
- "es-gT": "Spanish (Guatemala)",
- "es-hN": "Spanish (Honduras)",
- "es-mX": "Spanish (Mexico)",
- "es-nI": "Spanish (Nicaragua)",
- "es-pA": "Spanish (Panama)",
- "es-pE": "Spanish (Peru)",
- "es-pR": "Spanish (Puerto Rico)",
- "es-pY": "Spanish (Paraguay)",
- "es-sV": "Spanish (El Salvador)",
- "es-uS": "Spanish (United States)",
- "es-uY": "Spanish (Uruguay)",
- "es-vE": "Spanish (Venezuela)",
- "sv-fI": "Swedish (Finland)",
- "uz-cyrl": "Uzbek (Cyrillic, Uzbekistan)",
- "uz-latn": "Uzbek (Latin, Uzbekistan)",
- "af": "Afrikaans (South Africa)",
- "sq": "Albanian (Albania)",
- "am": "Amharic (Ethiopia)",
- "hy": "Armenian (Armenia)",
- "as": "Assamese (India)",
- "ba": "Bashkir (Russia)",
- "eu": "Basque (Basque)",
- "be": "Belarusian (Belarus)",
- "br": "Breton (France)",
- "bg": "Bulgarian (Bulgaria)",
- "ca": "Catalan (Catalan)",
- "co": "Corsican (France)",
- "cs": "Czech (Czech Republic)",
- "da": "Danish (Denmark)",
- "prs": "Dari (Afghanistan)",
- "dv": "Divehi (Maldives)",
- "et": "Estonian (Estonia)",
- "fo": "Faroese (Faroe Islands)",
- "fil": "Filipino (Philippines)",
- "fi": "Finnish (Finland)",
- "gl": "Galician (Galician)",
- "ka": "Georgian (Georgia)",
- "el": "Greek (Greece)",
- "gu": "Gujarati (India)",
- "ha": "Hausa (Latin, Nigeria)",
- "he": "Hebrew (Israel)",
- "hi": "Hindi (India)",
- "hu": "Hungarian (Hungary)",
- "is": "Icelandic (Iceland)",
- "ig": "Igbo (Nigeria)",
- "id": "Indonesian (Indonesia)",
- "ga": "Irish (Ireland)",
- "xh": "isiXhosa (South Africa)",
- "zu": "isiZulu (South Africa)",
- "ja": "Japanese (Japan)",
- "kn": "Kannada (India)",
- "kk": "Kazakh (Kazakhstan)",
- "km": "Khmer (Cambodia)",
- "rw": "Kinyarwanda (Rwanda)",
- "sw": "Kiswahili (Kenya)",
- "kok": "Konkani (India)",
- "ko": "Korean (Korea)",
- "ky": "Kyrgyz (Kyrgyzstan)",
- "lo": "Lao (Lao P.D.R.)",
- "lv": "Latvian (Latvia)",
- "lt": "Lithuanian (Lithuania)",
- "lb": "Luxembourgish (Luxembourg)",
- "mk": "Macedonian (North Macedonia)",
- "ml": "Malayalam (India)",
- "mt": "Maltese (Malta)",
- "mi": "Maori (New Zealand)",
- "mr": "Marathi (India)",
- "moh": "Mohawk (Mohawk)",
- "ne": "Nepali (Nepal)",
- "oc": "Occitan (France)",
- "or": "Odia (India)",
- "ps": "Pashto (Afghanistan)",
- "fa": "Persian",
- "pl": "Polish (Poland)",
- "pa": "Punjabi (India)",
- "ro": "Romanian (Romania)",
- "rm": "Romansh (Switzerland)",
- "ru": "Russian (Russia)",
- "sa": "Sanskrit (India)",
- "st": "Sesotho sa Leboa (South Africa)",
- "tn": "Setswana (South Africa)",
- "si": "Sinhala (Sri Lanka)",
- "sk": "Slovak (Slovakia)",
- "sl": "Slovenian (Slovenia)",
- "sv": "Swedish (Sweden)",
- "syr": "Syriac (Syria)",
- "tg": "Tajik (Cyrillic, Tajikistan)",
- "ta": "Tamil (India)",
- "tt": "Tatar (Russia)",
- "te": "Telugu (India)",
- "th": "Thai (Thailand)",
- "bo": "Tibetan (PRC)",
- "tr": "Turkish (Turkey)",
- "tk": "Turkmen (Turkmenistan)",
- "uk": "Ukrainian (Ukraine)",
- "ur": "Urdu (Islamic Republic of Pakistan)",
- "vi": "Vietnamese (Vietnam)",
- "cy": "Welsh (United Kingdom)",
- "wo": "Wolof (Senegal)",
- "ii": "Yi (PRC)",
- "yo": "Yoruba (Nigeria)"
- },
- "AppProtection": {
- "allAppTypes": "Target to all app types",
- "androidPlatformLabel": "Android",
- "appsInAndroidWorkProfile": "Apps in Android Work Profile",
- "appsOnIntuneManagedDevices": "Apps on Intune managed devices",
- "appsOnUnmanagedDevices": "Apps on unmanaged devices",
- "iOSPlatformLabel": "iOS/iPadOS",
- "iosAndroidMacPlatformLabel": "iOS, Android, Mac",
- "iosAndroidPlatformLabel": "iOS, Android",
- "macPlatformLabel": "Mac",
- "notAvailable": "Not Available",
- "windows10PlatformLabel": "Windows 10 and later",
- "withEnrollment": "With enrollment",
- "withoutEnrollment": "Without enrollment"
- },
+ "ApplicabilityRules": {
+ "GridLabel": {
+ "property": "Property",
+ "rule": "Rule",
+ "ruleDetails": "Rule Details",
+ "value": "Value"
+ },
+ "assignIf": "Assign profile if",
+ "deleteWarning": "This will delete the selected Applicability Rule",
+ "dontAssignIf": "Don't assign profile if",
+ "editionDisplayText": "{0} {1}",
+ "editionDisplayTextMore": "and {0} more",
+ "instructions": "Specify how to apply this profile within an assigned group. Intune will only apply the profile to devices that meet the combined criteria of these rules.",
+ "maxText": "Max",
+ "minText": "Min",
+ "noActionRow": "No Applicability Rules Specified",
+ "oSVersion": "e.g. 1.2.3.4",
+ "toText": "to",
+ "windows10Education": "Windows 10/11 Education",
+ "windows10EducationN": "Windows 10/11 Education N",
+ "windows10Enterprise": "Windows 10/11 Enterprise",
+ "windows10EnterpriseN": "Windows 10/11 Enterprise N",
+ "windows10HolographicEnterprise": "Windows 10 Holographic for Business",
+ "windows10Home": "Windows 10/11 Home",
+ "windows10HomeChina": "Windows 10 Home China",
+ "windows10HomeN": "Windows 10/11 Home N",
+ "windows10HomeSingleLanguage": "Windows 10/11 Home Single Language",
+ "windows10IoTCore": "Windows 10 IoT Core",
+ "windows10IoTCoreCommercial": "Windows 10 IoT Core Commercial",
+ "windows10Mobile": "Windows 10 Mobile",
+ "windows10MobileEnterprise": "Windows 10 Mobile Enterprise",
+ "windows10OsEdition": "OS edition",
+ "windows10OsVersion": "OS version",
+ "windows10Professional": "Windows 10/11 Professional",
+ "windows10ProfessionalEducation": "Windows 10/11 Professional Education",
+ "windows10ProfessionalEducationN": "Windows 10/11 Professional Education N",
+ "windows10ProfessionalN": "Windows 10 Professional N",
+ "windows10ProfessionalWorkstation": "Windows 10/11 Professional Workstation",
+ "windows10ProfessionalWorkstationN": "Windows 10/11 Professional Workstation N"
+ },
+ "DetectionRules": {
+ "ComparisonOperators": {
+ "equals": "Equals",
+ "greaterThan": "Greater than",
+ "greaterThanOrEqualTo": "Greater than or equal to",
+ "lessThan": "Less than",
+ "lessThanOrEqualTo": "Less than or equal to",
+ "notEqualTo": "Not equal to"
+ },
+ "CustomScript": {
+ "enforceSignatureCheck": "Enforce script signature check and run script silently",
+ "enforceSignatureCheckTooltip": "Select 'Yes' to verify that the script is signed by a trusted publisher, which will allow the script to run with no warnings or prompts displayed. The script will run unblocked. Select 'No' (default) to run the script with end-user confirmation without signature verification.",
+ "header": "Use a custom detection script",
+ "runAs32Bit": "Run script as 32-bit process on 64-bit clients",
+ "runAs32BitTooltip": "Select 'Yes' to run the script in a 32-bit process on 64-bit clients. Select 'No' (default) to run the script in a 64-bit process on 64-bit clients. 32-bit clients run the script in a 32-bit process.",
+ "scriptFile": "Script file",
+ "scriptFileNotSelectedValidation": "No script file is selected.",
+ "scriptFileTooltip": "Select a PowerShell script that will detect the presence of the app on the client. The app will be detected when the script both returns a 0 value exit code and writes a string value to STDOUT.",
+ "scriptSizeLimitValidation": "Your detection script exceeds the maximum size allowed. Resolve this by reducing the size of your detection script."
+ },
+ "Manual": {
+ "FileRule": {
+ "DetectionMethodOptions": {
+ "dateCreated": "Date created",
+ "dateModified": "Date modified",
+ "doesNotExist": "File or folder does not exist",
+ "fileOrFolderExists": "File or folder exists",
+ "sizeInMB": "Size in MB",
+ "version": "String (version)"
+ },
+ "associatedWith32Bit": "Associated with a 32-bit app on 64-bit clients",
+ "associatedWith32BitTooltip": "Select 'Yes' to expand any path environment variables in the 32-bit context on 64-bit clients. Select 'No' (default) to expand any path variables in the 64-bit context on 64-bit clients. 32-bit clients will always use the 32-bit context.",
+ "detectionMethod": "Detection method",
+ "detectionMethodTooltip": "Select the type of detection method used to validate the presence of the app.",
+ "fileOrFolder": "File or folder",
+ "fileOrFolderToolTip": "The file or folder to detect.",
+ "operator": "Operator",
+ "operatorTooltip": "Select the operator for the detection method used to validate the comparison.",
+ "path": "Path",
+ "pathTooltip": "The full path of the folder containing the file or folder to detect.",
+ "value": "Value",
+ "valueTooltip": "Select a value that matches the selected detection method. Date detection methods should be entered in local time."
+ },
+ "GridColumns": {
+ "pathOrCode": "Path/Code",
+ "type": "Type"
+ },
+ "MsiRule": {
+ "operator": "Operator",
+ "operatorTooltip": "Select the operator for the MSI product version validation comparison.",
+ "productCode": "MSI product code",
+ "productCodeTooltip": "A valid MSI product code for the app.",
+ "productVersion": "Value",
+ "productVersionCheck": "MSI product version check",
+ "productVersionCheckTooltip": "Select 'Yes' to verify the MSI product version in addition to the MSI product code.",
+ "productVersionTooltip": "Enter the MSI product version for the app."
+ },
+ "RegistryRule": {
+ "DetectionMethodOptions": {
+ "integerComparison": "Integer comparison",
+ "keyDoesNotExist": "Key does not exist",
+ "keyExists": "Key exists",
+ "stringComparison": "String comparison",
+ "valueDoesNotExist": "Value does not exist",
+ "valueExists": "Value exists",
+ "versionComparison": "Version comparison"
+ },
+ "associatedWith32Bit": "Associated with a 32-bit app on 64-bit clients",
+ "associatedWith32BitTooltip": "Select 'Yes' to search the 32-bit registry on 64-bit clients. Select 'No' (default) search the 64-bit registry on 64-bit clients. 32-bit clients will always search the 32-bit registry.",
+ "detectionMethod": "Detection method",
+ "detectionMethodTooltip": "Select the type of detection method used to validate the presence of the app.",
+ "keyPath": "Key path",
+ "keyPathTooltip": "The full path of the registry entry containing the value to detect.",
+ "operator": "Operator",
+ "operatorTooltip": "Select the operator for the detection method used to validate the comparison.",
+ "value": "Value",
+ "valueName": "Value name",
+ "valueNameTooltip": "The name of the registry value to detect.",
+ "valueTooltip": "Select a value that matches the selected detection method."
+ },
+ "RuleTypeOptions": {
+ "file": "File",
+ "mSI": "MSI",
+ "registry": "Registry"
+ },
+ "gridAriaLabel": "Detection Rules",
+ "header": "Create a rule that indicates the presence of the app.",
+ "noRulesSelectedPlaceholder": "No rules are specified.",
+ "ruleTableLimit": "You can add up to 25 detection rules",
+ "ruleType": "Rule type",
+ "ruleTypeTooltip": "Choose the type of detection rule to add."
+ },
+ "RuleConfigurationOptions": {
+ "customScript": "Use a custom detection script",
+ "manual": "Manually configure detection rules"
+ },
+ "bladeTitle": "Detection rules",
+ "header": "Configure app specific rules used to detect the presence of the app.",
+ "rulesFormat": "Rules format",
+ "rulesFormatTooltip": "Choose to either manually configure the detection rules or use a custom script to detect the presence of the app.",
+ "selectorLabel": "Detection rules"
+ },
+ "PolicyType": {
+ "AttackSurfaceReductionRules": {
+ "configMgr": "Attack Surface Reduction Rules (ConfigMgr)"
+ },
+ "EndpointDetectionandResponse": {
+ "mDE": "Endpoint detection and response"
+ },
+ "EndpointSecurityTemplate": {
+ "aSRAppBrowserSecurity": "App and browser isolation",
+ "aSRApplicationControl": "Application control",
+ "aSRAttackSurfaceReduction": "Attack surface reduction rules",
+ "aSRDeviceControl": "Device control",
+ "aSRExploitProtection": "Exploit protection",
+ "aSRWebProtection": "Web protection (Microsoft Edge Legacy)",
+ "aVExclusions": "Microsoft Defender Antivirus exclusions",
+ "antivirus": "Microsoft Defender Antivirus",
+ "cloudPC": "Windows 365 Security Baseline",
+ "default": "Endpoint Security",
+ "defenderTest": "Microsoft Defender for Endpoint demo",
+ "diskEncryption": "BitLocker",
+ "eDR": "Endpoint detection and response",
+ "edgeSecurityBaseline": "Microsoft Edge baseline",
+ "edgeSecurityBaselinePreview": "Preview: Microsoft Edge baseline",
+ "editionUpgradeConfiguration": "Edition upgrade and mode switch",
+ "firewall": "Microsoft Defender Firewall",
+ "firewallRules": "Microsoft Defender Firewall rules",
+ "identityProtection": "Account protection",
+ "identityProtectionPreview": "Account protection (Preview)",
+ "mDMSecurityBaseline1810": "MDM Security Baseline for Windows 10 and later for October 2018",
+ "mDMSecurityBaseline1810Preview": "Preview: MDM Security Baseline for Windows 10 and later for October 2018",
+ "mDMSecurityBaseline1810PreviewBeta": "Preview: MDM Security Baseline for Windows 10 for October 2018 (beta)",
+ "mDMSecurityBaseline1906": "MDM Security Baseline for Windows 10 and later for May 2019",
+ "mDMSecurityBaseline2004": "MDM Security Baseline for Windows 10 and later for August 2020",
+ "mDMSecurityBaseline2101": "MDM Security Baseline for Windows 10 and later Decemeber 2020",
+ "macOSAntivirus": "Antivirus",
+ "macOSDiskEncryption": "FileVault",
+ "macOSFirewall": "macOS firewall",
+ "microsoftDefenderBaseline": "Microsoft Defender for Endpoint baseline",
+ "office365Baseline": "Microsoft Office O365 baseline",
+ "office365BaselinePreview": "Preview: Microsoft Office O365 baseline",
+ "securityBaselines": "Security Baselines",
+ "test": "Test Template",
+ "testFirewallRulesSecurityTemplateName": "Microsoft Defender Firewall rules (Test)",
+ "testIdentityProtectionSecurityTemplateName": "Account protection (Test)",
+ "windowsSecurityExperience": "Windows Security experience"
+ },
+ "Firewall": {
+ "mDE": "Microsoft Defender Firewall"
+ },
+ "FirewallRules": {
+ "mDE": "Microsoft Defender Firewall Rules"
+ },
+ "administrativeTemplates": "Administrative Templates",
+ "androidCompliancePolicy": "Android compliance policy",
+ "aospDeviceOwnerCompliancePolicy": "Android (AOSP) compliance policy",
+ "applicationControl": "Application Control",
+ "custom": "Custom",
+ "deliveryOptimization": "Delivery Optimization",
+ "derivedPersonalIdentityVerificationCredential": "Derived credential",
+ "deviceFeatures": "Device features",
+ "deviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
+ "deviceLock": "Device Lock",
+ "deviceOwner": "Fully managed, dedicated, and corporate-owned work profile",
+ "deviceRestrictions": "Device restrictions",
+ "deviceRestrictionsWindows10Team": "Device restrictions (Windows 10 Team)",
+ "domainJoinPreview": "Domain Join",
+ "editionUpgradeAndModeSwitch": "Edition upgrade and mode switch",
+ "education": "Education",
+ "email": "Email",
+ "emailSamsungKnoxOnly": "Email (Samsung KNOX only)",
+ "endpointProtection": "Endpoint protection",
+ "expeditedCheckin": "Mobile device management configuration",
+ "exploitProtection": "Exploit Protection",
+ "extensions": "Extensions",
+ "hardwareConfigurations": "BIOS Configurations",
+ "identityProtection": "Identity protection",
+ "iosCompliancePolicy": "iOS compliance policy",
+ "kiosk": "Kiosk",
+ "macCompliancePolicy": "Mac compliance policy",
+ "microsoftDefenderAntivirus": "Microsoft Defender Antivirus",
+ "microsoftDefenderAntivirusexclusions": "Microsoft Defender Antivirus exclusions",
+ "microsoftDefenderAtpWindows10Desktop": "Microsoft Defender for Endpoint (desktop devices running Windows 10 or later)",
+ "microsoftDefenderFirewallRules": "Microsoft Defender Firewall Rules",
+ "microsoftEdgeBaseline": "Microsoft Edge Baseline",
+ "mxProfileZebraOnly": "MX profile (Zebra only)",
+ "networkBoundary": "Network boundary",
+ "oemConfig": "OEMConfig",
+ "overrideGroupPolicy": "Override Group Policy",
+ "pkcsCertificate": "PKCS certificate",
+ "pkcsImportedCertificate": "PKCS imported certificate",
+ "preferenceFile": "Preference file",
+ "presets": "Presets",
+ "scepCertificate": "SCEP certificate",
+ "secureAssessmentEducation": "Secure assessment (Education)",
+ "settingsCatalog": "Settings Catalog",
+ "sharedMultiUserDevice": "Shared multi-user device",
+ "softwareUpdates": "Software Updates",
+ "trustedCertificate": "Trusted certificate",
+ "unknown": "Unknown",
+ "unsupported": "Unsupported",
+ "vpn": "VPN",
+ "wiFi": "Wi-Fi",
+ "wiFiImport": "Wi-Fi import",
+ "windows10CompliancePolicy": "Windows 10/11 compliance policy",
+ "windows10MobileCompliancePolicy": "Windows 10 mobile compliance policy",
+ "windows10XScep": "SCEP certificate - TEST",
+ "windows10XTrustedCertificate": "Trusted certificate - TEST",
+ "windows10XVPN": "VPN - TEST",
+ "windows10XWifi": "WIFI - TEST",
+ "windows8CompliancePolicy": "Windows 8 compliance policy",
+ "windowsHealthMonitoring": "Windows health monitoring",
+ "windowsInformationProtection": "Windows Information Protection",
+ "windowsPhoneCompliancePolicy": "Windows Phone compliance policy",
+ "windowsUpdateforBusiness": "Windows Update for Business",
+ "wiredNetwork": "Wired network",
+ "workProfile": "Personally-owned work profile"
+ },
+ "Win32Requirements": {
+ "AdditionalRequirements": {
+ "File": {
+ "fileOrFolderToolTip": "The file or folder as the selected requirement.",
+ "pathToolTip": "The complete path of the file or folder to detect.",
+ "property": "Property",
+ "valueToolTip": "Select a requirement value that matches the selected detection method. Date and time requirement should be entered in your local format."
+ },
+ "GridColumns": {
+ "pathOrScript": "Path/Script",
+ "type": "Type"
+ },
+ "Registry": {
+ "keyPath": "Key path",
+ "keyPathTooltip": "The full path of the registry entry containing the value as a requirement.",
+ "operator": "Operator",
+ "operatorTooltip": "Select the operator for the comparison.",
+ "registryRequirement": "Registry key requirement",
+ "registryRequirementTooltip": "Select the registry key requirement comparison.",
+ "valueName": "Value name",
+ "valueNameTooltip": "The name of the required registry value."
+ },
+ "RequirementTypeOptions": {
+ "fileType": "File",
+ "registry": "Registry",
+ "script": "Script"
+ },
+ "Script": {
+ "RequirementMethodOptions": {
+ "boolean": "Boolean",
+ "dateTime": "Date and Time",
+ "float": "Floating Point",
+ "integer": "Integer",
+ "string": "String",
+ "version": "Version"
+ },
+ "ScriptContent": {
+ "emptyMessage": "Script content should not be empty."
+ },
+ "duplicateName": "Script name {0} has already been used. Please enter a different name.",
+ "enforceSignatureCheck": "Enforce script signature check",
+ "enforceSignatureCheckTooltip": "Select ‘Yes’ to verify that the script is signed by a trusted publisher, which will allow the script to run without warnings or prompts. The script will run unblocked. Select ‘No’ (default) to run the script with end-user confirmation, but without signature verification.",
+ "loggedOnCredentials": "Run this script using the logged on credentials",
+ "loggedOnCredentialsTooltip": "Run script using the signed in device credentials.",
+ "operatorTooltip": "Select the operator for the requirement comparison.",
+ "requirementMethod": "Select output data type",
+ "requirementMethodTooltip": "Select the data type used when determining a detection match requirement.",
+ "scriptFile": "Script file",
+ "scriptFileTooltip": "Select a PowerShell script that will detect the presence of the app on the client. If the app is detected, the requirement process will provide a 0 value exit code and will write a string value to STDOUT.",
+ "scriptName": "Script name",
+ "value": "Value",
+ "valueTooltip": "Select a requirement value that matches the selected detection method. Date and time requirement should be entered in your local format."
+ },
+ "bladeTitle": "Add a Requirement rule",
+ "createRequirementHeader": "Create a requirement.",
+ "header": "Configure additional requirement rules",
+ "label": "Additional requirement rules",
+ "noRequirementsSelectedPlaceholder": "No requirements are specified.",
+ "requirementType": "Requirement type",
+ "requirementTypeTooltip": "Choose the type of detection method used to determine how a requirement is validated."
+ },
+ "architectures": "Operating system architecture",
+ "architecturesTooltip": "Choose the architectures needed to install the app.",
+ "bladeTitle": "Requirements",
+ "diskSpace": "Disk space required (MB)",
+ "diskSpaceTooltip": "Free disk space needed on the system drive to install the app.",
+ "header": "Specify the requirements that devices must meet before the app is installed:",
+ "maximumTextFieldValue": "The value must be at most {0}.",
+ "minimumCpuSpeed": "Minimum CPU speed required (MHz)",
+ "minimumCpuSpeedTooltip": "The minimum CPU speed required to install the app.",
+ "minimumLogicalProcessors": "Minimum number of logical processors required",
+ "minimumLogicalProcessorsTooltip": "The minimum number of logical processors required to install the app.",
+ "minimumOperatingSystem": "Minimum operating system",
+ "minimumOperatingSystemTooltip": "Select the minimum operating system needed to install the app.",
+ "minumumTextFieldValue": "The value must be at least {0}.",
+ "physicalMemory": "Physical memory required (MB)",
+ "physicalMemoryTooltip": "Physical memory (RAM) required to install the app.",
+ "selectorLabel": "Requirements",
+ "validNumber": "Please enter a valid number."
+ },
+ "AzureIAM": {
+ "AdrsUserActionSelectionWarning": {
+ "conditions": "Conditions that require device registration are not available with \"Register or join devices\" user action.",
+ "message": "Only \"Require multi-factor authentication\" can be used in policies created for the \"Register or join devices\" user action.{0}"
+ },
+ "AuthContext": {
+ "Delete": {
+ "failure": "Failed to delete {0}",
+ "failureCa": "Failed to delete {0} because it is referenced by CA policies",
+ "modifying": "Deleting {0}",
+ "success": "Successfully deleted {0}"
+ },
+ "Included": {
+ "none": "No cloud apps, actions, or authentication contexts selected",
+ "plural": "{0} authentication contexts included",
+ "singular": "1 authentication context included"
+ },
+ "InfoBlade": {
+ "createTitle": "Add authentication context",
+ "descPlaceholder": "Add description for the authentication context",
+ "modifyTitle": "Modify authentication context",
+ "namePlaceholder": "Ex. Trusted location, Trusted device, Strong authorization",
+ "publishDesc": "Publish to apps will make the authentication context available for apps to use. Publish once you finish configuring Conditional Access policy for the tag. [Learn more][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150966",
+ "publishLabel": "Publish to apps",
+ "titleDesc": "Configure an authentication context that will be used to protect application data and actions. Use names and descriptions that can be understood by application administrators. [Learn more][1]\n[1]:https://go.microsoft.com/fwlink/?linkid=2150965"
+ },
+ "Notify": {
+ "failure": "Failed to update {0}",
+ "modifying": "Modifying {0}",
+ "success": "Successfully updated {0}"
+ },
+ "WhatIf": {
+ "selected": "Authentication context included"
+ },
+ "addNewStepUp": "New authentication context",
+ "checkBoxInfo": "Select the authentication contexts this policy will apply to",
+ "configure": "Configure authentication contexts",
+ "createCA": "Assign Conditional Access policies to the authentication context",
+ "dataGrid": "List of authentication contexts",
+ "deleteFailedByReference": "You cannot delete this authentication context because it is being referenced by CA policies.",
+ "description": "Description",
+ "documentation": "Documentation",
+ "getStarted": "Get started",
+ "label": "Authentication context (preview)",
+ "menuLabel": "Authentication context (Preview)",
+ "name": "Name",
+ "noAuthContextConfigured": "No authentication contexts have been configured.",
+ "noAuthContextSet": "There are no authentication contexts",
+ "noData": "No authentication contexts to display",
+ "selectionInfo": "Authentication context is used to secure application data and actions in apps like SharePoint and Microsoft Cloud App Security.",
+ "step": "Step",
+ "tabDescription": "Manage authentication context to protect data and actions in your apps. [Learn more][1]\n[1]:https://go.microsoft.com/fwlink/?linkid=2150965",
+ "tagResources": "Tag resources with an authentication context"
+ },
+ "AuthenticationStrength": {
+ "Mode": {
+ "deviceBasedPush": "Microsoft Authenticator (Phone Sign-in)",
+ "deviceBasedPushFido2X509Certificate": "Microsoft Authenticator (Phone Sign-in) + Fido 2 + Certificate Based Authentication",
+ "deviceBasedPushX509CertificateSingleFactor": "Microsoft Authenticator (Phone Sign-in) + Fido 2 + Certificate Based Authentication (Single Factor)",
+ "email": "Email one-time passcode",
+ "emailOtp": "Email one-time passcode",
+ "federatedMultiFactor": "Federated Multi-Factor",
+ "federatedSingleFactor": "Federated single factor",
+ "federatedSingleFactorFederatedMultiFactor": "Federated single factor + Federated Multi-Factor",
+ "fido2": "FIDO 2 security key",
+ "fido2X509CertificateSingleFactor": "FIDO 2 security key + Certificate Based Authentication (Single Factor)",
+ "hardwareOath": "Hardware OATH tokens",
+ "hardwareOathEmail": "Hardware OATH tokens + Email one-time passcode",
+ "hardwareOathX509CertificateSingleFactor": "Hardware OATH tokens + Certificate Based Authentication (Single Factor)",
+ "microsoftAuthenticatorPSIX509CertificateSingleFactor": "Microsoft Authenticator (Phone Sign-in) + Certificate Based Authentication (Single Factor)",
+ "microsoftAuthenticatorPsi": "Microsoft Authenticator (Phone Sign-in)",
+ "microsoftAuthenticatorPush": "Microsoft Authenticator (Push Notification)",
+ "microsoftAuthenticatorPushEmail": "Microsoft Authenticator (Push Notification) + Email one-time passcode",
+ "microsoftAuthenticatorPushX509CertificateSingleFactor": "Microsoft Authenticator (Push Notification) + Certificate Based Authentication (Single Factor)",
+ "none": "None",
+ "password": "Password",
+ "passwordDeviceBasedPush": "Password + Microsoft Authenticator (Phone Sign-in)",
+ "passwordFido2": "Password + FIDO 2 security key",
+ "passwordHardwareOath": "Password + Hardware OATH tokens",
+ "passwordMicrosoftAuthenticatorPSI": "Password + Microsoft Authenticator (Phone Sign-in)",
+ "passwordMicrosoftAuthenticatorPush": "Password + Microsoft Authenticator (Push Notification)",
+ "passwordSms": "Password + SMS",
+ "passwordSoftwareOath": "Password + Software OATH tokens",
+ "passwordTemporaryAccessPassMultiUse": "Password + Temporary Access Pass (Multi-use)",
+ "passwordTemporaryAccessPassOneTime": "Password + Temporary Access Pass (One-time use)",
+ "passwordVoice": "Password + Voice",
+ "sms": "SMS",
+ "smsEmail": "SMS + Email one-time passcode",
+ "smsSignIn": "SMS sign in",
+ "smsX509CertificateSingleFactor": "SMS + Certificate Based Authentication (Single Factor)",
+ "softwareOath": "Software OATH tokens",
+ "softwareOathEmail": "Software OATH tokens + Email one-time passcode",
+ "softwareOathX509CertificateSingleFactor": "Software OATH tokens + Certificate Based Authentication (Single Factor)",
+ "temporaryAccessPassMultiUse": "Temporary Access Pass (Multi-use)",
+ "temporaryAccessPassMultiUseX509CertificateSingleFactor": "Temporary Access Pass (Multi-use) + Certificate Based Authentication (Single Factor)",
+ "temporaryAccessPassOneTime": "Temporary Access Pass (One-time use)",
+ "temporaryAccessPassOneTimeX509CertificateSingleFactor": "Temporary Access Pass (One-time use) + Certificate Based Authentication (Single Factor)",
+ "voice": "Voice",
+ "voiceEmail": "Voice + Email one-time passcode",
+ "voiceX509CertificateSingleFactor": "Voice + Certificate Based Authentication (Single Factor)",
+ "windowsHelloForBusiness": "Windows Hello For Business",
+ "x509CertificateMultiFactor": "Certificate Based Authentication (Multi-Factor)",
+ "x509CertificateSingleFactor": "Certificate Based Authentication (Single Factor)"
+ }
+ },
+ "CAS": {
+ "BuiltinPolicy": {
+ "Option": {
+ "blockDownloads": "Block downloads (Preview)",
+ "monitorOnly": "Monitor only (Preview)",
+ "protectDownloads": "Protect downloads (Preview)",
+ "useCustomControls": "Use custom policy..."
+ },
+ "ariaLabel": "Choose the kind of Conditional Access App Control to apply"
+ }
+ },
+ "ChooseApplications": {
+ "Grid": {
+ "appIdAria": "App ID: {0}"
+ },
+ "LowerGrid": {
+ "ariaLabel": "List of selected cloud apps"
+ },
+ "UpperGrid": {
+ "ariaLabel": "List of cloud apps which match the search term"
+ }
+ },
+ "ChooseLocations": {
+ "Validation": {
+ "failed": "With \"Selected locations\" you must choose at least one location.",
+ "selector": "Choose at least one location"
+ }
+ },
+ "ClientApp": {
+ "Clients": {
+ "Validation": {
+ "failed": "You must select at least one of the following clients"
+ }
+ }
+ },
+ "ClientConditionsInfo": {
+ "browserAndModern": "This policy only applies to browser and modern authentication apps. To apply the policy to all client apps, enable the client app condition and select all the client apps.",
+ "classicExperience": "Since this policy was created, the default client apps configuration has been updated.",
+ "legacyAuth": "When not configured, policies now apply to all client apps, including modern and legacy auth."
+ },
+ "CloudAppFilterBlade": {
+ "AssignmentFilter": {
+ "header": "Attribute",
+ "placeholder": "Choose an attribute"
+ },
+ "Configure": {
+ "infoBalloon": "Configure app filters you want to policy to apply to."
+ },
+ "NoPermissions": {
+ "learnMoreAria": "More about custom security attribute permissions.",
+ "message": "You do not have the permissions needed to use custom security attributes."
+ },
+ "gridHeader": "Using custom security attributes you can use the rule builder or rule syntax text box to create or edit the filter rules. In the preview, only attributes of type String are supported. Attributes of type Integer or Boolean will not be shown.",
+ "learnMoreAria": "More information about using the rule builder and syntax text box.",
+ "noAttributes": "There are no custom attributes available to filter on. You will need to configure some attributes to employ this filter.",
+ "title": "Edit filter (Preview)"
+ },
+ "CloudAppsUserActions": {
+ "any": "Any cloud app or action",
+ "infoBalloon": "Cloud app or user action you want to test. For example, 'SharePoint Online'",
+ "learnMore": "Control access based on all or specific cloud apps or actions.",
+ "learnMoreB2C": "Control access based on all or specific cloud apps.",
+ "title": "Cloud apps or actions"
+ },
+ "CloudappsSelectionBlade": {
+ "Excluded": {
+ "gridAria": "List of excluded cloud apps"
+ },
+ "Filter": {
+ "configured": "Configured",
+ "label": "Edit filter (Preview)",
+ "with": "{0} with {1}"
+ },
+ "Included": {
+ "gridAria": "List of included cloud apps"
+ },
+ "Validation": {
+ "authContext": "With \"authentication context\" you must configure at least one sub-item.",
+ "selectApps": "\"{0}\" must be configured",
+ "selector": "Select at least one app.",
+ "userActions": "With \"User actions\" you must configure at least one sub-item."
+ }
+ },
+ "DeviceState": {
+ "LearnMore": {
+ "message": "Control user access when the device the user is signing-in from is not \"Hybrid Azure AD joined\" or \"marked as compliant\".\n This has been deprecated. Use '{1}' instead."
+ }
+ },
+ "Errors": {
+ "notFound": "The policy was not found or has been deleted.",
+ "notFoundDetailed": "The policy \"{0}\" no longer exists. It may have been deleted."
+ },
+ "GuestsOrExternalUsers": {
+ "allExternalTenantsLabel": "All Azure AD organizations",
+ "b2bCollaborationGuestLabel": "B2B collaboration guest users",
+ "b2bCollaborationMemberLabel": "B2B collaboration member users",
+ "b2bDirectConnectUserLabel": "B2B direct connect users",
+ "enumeratedExternalTenantsError": "Please select at least one external tenant",
+ "enumeratedExternalTenantsLabel": "Select Azure AD organizations",
+ "externalTenantsLabel": "Specify external Azure AD organizations",
+ "externalUserDropdownLabel": "Choose guest or external user types",
+ "externalUsersError": "Select at least one external guest or user type",
+ "guestOrExternalUsersInfoContent": "Includes B2B Collaboration, B2B direct connect and other types of external users.",
+ "guestOrExternalUsersLabel": "Guest or external users",
+ "internalGuestLabel": "Local guest users",
+ "otherExternalUserLabel": "Other external users"
+ },
+ "NamedLocation": {
+ "Form": {
+ "CountryLookup": {
+ "ariaLabel": "Country lookup method",
+ "gps": "Determine location by GPS coordinates",
+ "info": "When the location condition of a Conditional Access policy is configured, users will be prompted by the Authenticator app to share their GPS location. ",
+ "ip": "Determine location by IP address (IPv4 only)"
+ },
+ "Header": {
+ "new": "New location ({0})",
+ "update": "Update location ({0})"
+ },
+ "IP": {
+ "learn": "Configure named location IPv4 and IPv6 ranges.\n[Learn more][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
+ },
+ "Include": {
+ "infoBalloon": "Unknown countries/regions are IP addresses that are not associated with a specific country or region. [Learn more][1]\n\nThis includes:\n* IPv6 addresses\n* IPv4 addresses without a direct mapping\n[1]: https://aka.ms/canamedlocations\n",
+ "label": "Include unknown countries/regions"
+ },
+ "Name": {
+ "empty": "Name cannot be empty",
+ "placeholder": "Name this location"
+ },
+ "PrivateLink": {
+ "learn": "Create a new named location containing Private Links for Azure AD.\n[Learn more][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
+ },
+ "Search": {
+ "countries": "Search countries",
+ "names": "Search names",
+ "privateLinks": "Search Private Links"
+ },
+ "Trusted": {
+ "label": "Mark as trusted location"
+ },
+ "enter": "Enter a new IPv4 or IPv6 range",
+ "example": "ex: 40.77.182.32/27 or 2a01:111::/32"
+ },
+ "Label": {
+ "addCountries": "Countries location",
+ "addIpRange": "IP ranges location",
+ "addPrivateLink": "Azure Private Links"
+ },
+ "Notification": {
+ "Create": {
+ "Failed": {
+ "description": "Failure in creating new location ({0})",
+ "title": "Creation has failed"
+ },
+ "InProgress": {
+ "description": "Creating new location ({0})",
+ "title": "Creation in progress"
+ },
+ "Success": {
+ "description": "Success in creating new location ({0})",
+ "title": "Creation has succeeded"
+ }
+ },
+ "Delete": {
+ "Failed": {
+ "description": "Failure in deleting location ({0})",
+ "title": "Deletion has failed"
+ },
+ "InProgress": {
+ "description": "Deleting location ({0})",
+ "title": "Deletion in progress"
+ },
+ "Success": {
+ "description": "Success in deleting location ({0})",
+ "title": "Deletion has succeeded"
+ }
+ },
+ "Update": {
+ "Failed": {
+ "description": "Failure in updating location ({0})",
+ "title": "Updating has failed"
+ },
+ "InProgress": {
+ "description": "Updating location ({0})",
+ "title": "Updating in progress"
+ },
+ "Success": {
+ "description": "Success in updating location ({0})",
+ "title": "Updating has succeeded"
+ }
+ }
+ },
+ "PrivateLinks": {
+ "grid": "List of Private Links"
+ },
+ "Trusted": {
+ "title": "Trusted type",
+ "trusted": "Trusted"
+ },
+ "Type": {
+ "all": "All types",
+ "countries": "Countries",
+ "ipRanges": "IP ranges",
+ "privateLinks": "Private Links",
+ "title": "Location type"
+ },
+ "iPRangeInvalidError": "Value must be a valid IPv4 or IPv6 range.",
+ "iPRangeLinkOrSiteLocalError": "IP network detected as a link local or site local address.",
+ "iPRangeOctetError": "IP network must not start with 0 or 255.",
+ "iPRangePrefixError": "IP network prefix must be from /{0} to /{1}.",
+ "iPRangePrivateError": "IP network detected as a private address."
+ },
+ "NamedNetwork": {
+ "List": {
+ "gridAria": "List of named locations"
+ }
+ },
+ "Policies": {
+ "Grid": {
+ "aria": "List of Conditional Access policies"
+ },
+ "countText": "{0} out of {1} policies found",
+ "countTextSingular": "{0} out of 1 policy found",
+ "search": "Search policies"
+ },
+ "Policy": {
+ "Condition": {
+ "ServicePrincipalRisk": {
+ "description": "Configure service principal risk levels needed for policy to be enforced",
+ "infoBalloonContent": "Configure service principal risk to apply the policy to selected risk level(s)",
+ "title": "Service principal risk (Preview)"
+ }
+ }
+ },
+ "PolicyControlAuthStrength": {
+ "MultiFactorAuthentication": {
+ "description": "Combinations of methods that satisfy strong authentication, such as Password + SMS",
+ "displayName": "Multi-factor authentication (MFA)"
+ },
+ "Passwordless": {
+ "description": "Passwordless methods that satisfy strong authentication, such as Microsoft Authenticator ",
+ "displayName": "Passwordless MFA"
+ },
+ "PhishingResistant": {
+ "description": "Phishing-resistant Passwordless methods for the strongest authentication, such as FIDO2 Security Key",
+ "displayName": "Phishing resistant MFA"
+ }
+ },
+ "PolicyControlFedAuthMethod": {
+ "ariaLabel": "Learn more about requiring authentication methods satisfied by federation providers.",
+ "certificate": "Certificate authentication",
+ "infoBubble": "Specify a required authentication method, that must be satisfied by federation provider, such as ADFS.",
+ "multifactor": "Multi-factor authentication",
+ "require": "Require federated authentication method (Preview)",
+ "whatIfFormat": "{0} - {1}"
+ },
+ "PolicyState": {
+ "off": "Off",
+ "on": "On",
+ "reportOnly": "Report-only"
+ },
+ "PolicyTemplates": {
+ "Devices": {
+ "description": "Select Devices policy template category to gain visibility into devices accessing the network. Ensure compliance and health status before granting access.",
+ "name": "Devices"
+ },
+ "Identities": {
+ "description": "Select Identities policy template category to verify and secure each identity with strong authentication across your entire digital estate.",
+ "name": "Identities"
+ },
+ "Summary": {
+ "CloudApps": {
+ "allCloudApps": "All apps",
+ "office365": "Office 365",
+ "registerSecurityInfo": "Register security information"
+ },
+ "Conditions": {
+ "androidAndIOS": "Device Platform: Android and IOS",
+ "anyDevice": "Any device except Android, IOS, Windows and Mac",
+ "anyDeviceStateExceptHybrid": "Any device state except compliant and hybrid Azure AD joined",
+ "anyLocation": "Any location except trusted",
+ "browserMobileDesktop": "Client apps: Browser, Mobile apps and desktop clients",
+ "exchangeActiveSync": "Client Apps: Exchange Active Sync, Other Clients",
+ "windowsAndMac": "Device Platform: Windows and Mac"
+ },
+ "Devices": {
+ "anyDevice": "Any Device"
+ },
+ "Grant": {
+ "appProtectionPolicy": "Require app protection policy",
+ "approvedClientApp": "Require approved client app",
+ "blockAccess": "Block access",
+ "mfa": "Require multi-factor authentication",
+ "passwordChange": "Require password change",
+ "requireCompliantDevice": "Require device to be marked as compliant",
+ "requireHybridAzureADDevice": "Require hybrid Azure AD joined device"
+ },
+ "Session": {
+ "appEnforcedRestrictions": "Use app enforced restrictions",
+ "signInFrequency": "Sign-in Frequency and never persistent browser session"
+ },
+ "UsersAndGroups": {
+ "allUsers": "All Users",
+ "directoryRoles": "Directory roles except current administrator",
+ "globalAdmin": "Global Administrator",
+ "noGuestAndAdmins": "All Users except Guest and External, Global administrators, Current administrator"
+ },
+ "azureManagement": "Azure Management",
+ "deviceFilters": "Filters for devices",
+ "devicePlatforms": "Device Platforms"
+ },
+ "TemplateId": {
+ "AppEnforcedRestrictions": {
+ "description": "Block or limit access to SharePoint, OneDrive, and Exchange content from unmanaged devices.",
+ "name": "CA014: Use application enforced restrictions for unmanaged devices",
+ "title": "Use application enforced restrictions for unmanaged devices"
+ },
+ "ApprovedClientApps": {
+ "description": "To prevent data loss, organizations can restrict access to approved modern auth client apps with Intune app protection.",
+ "name": "CA012: Require approved client apps and app protection",
+ "title": "Require approved client apps and app protection"
+ },
+ "BlockAccessOnUnknowns": {
+ "description": "Users will be blocked from accessing company resources when the device type is unknown or unsupported.",
+ "name": "CA010: Block access for unknown or unsupported device platform",
+ "title": "Block access for unknown or unsupported device platform"
+ },
+ "BlockLegacyAuth": {
+ "description": "Block legacy authentication endpoints that can be used to bypass multi-factor authentication. ",
+ "name": "CA003: Block legacy authentication",
+ "title": "Block legacy authentication"
+ },
+ "NoPersistentBrowserSession": {
+ "description": "Protect user access on unmanaged devices by preventing browser sessions from remaining signed in after the browser is closed and setting a sign-in frequency to 1 hour.",
+ "name": "CA011: No persistent browser session",
+ "title": "No persistent browser session"
+ },
+ "RequireCompliantOrHybridADAdmins": {
+ "description": "Require privileged administrators to only access resources when using a compliant or hybrid Azure AD joined device.",
+ "name": "CA009: Require compliant or hybrid Azure AD joined device for admins",
+ "title": "Require compliant or hybrid Azure AD joined device for admins"
+ },
+ "RequireCompliantOrHybridADAllUsers": {
+ "description": "Protect access to company resources by requiring users to use a managed device or perform multi-factor authentication. (macOS or Windows only)",
+ "name": "CA013: Require compliant or hybrid Azure AD joined device or multi-factor authentication for all users",
+ "title": "Require compliant or hybrid Azure AD joined device or multi-factor authentication for all users"
+ },
+ "RequireMFAAllUsers": {
+ "description": "Require multi-factor authentication for all user accounts to reduce risk of compromise.",
+ "name": "CA004: Require multi-factor authentication for all users",
+ "title": "Require multi-factor authentication for all users"
+ },
+ "RequireMFAForAdmins": {
+ "description": "Require multi-factor authentication for privileged administrative accounts to reduce risk of compromise. This policy will target the same roles as Security Default.",
+ "name": "CA001: Require multi-factor authentication for admins",
+ "title": "Require multi-factor authentication for admins"
+ },
+ "RequireMFAForAzureManagement": {
+ "description": "Require multi-factor authentication to protect privileged access to Azure resources.",
+ "name": "CA006: Require multi-factor authentication for Azure management",
+ "title": "Require multi-factor authentication for Azure management"
+ },
+ "RequireMFAForGuestAccess": {
+ "description": "Require guest users perform multi-factor authentication when accessing your company resources.",
+ "name": "CA005: Require multi-factor authentication for guest access",
+ "title": "Require multi-factor authentication for guest access"
+ },
+ "RequireMFAForRiskySignIn": {
+ "description": "Require multi-factor authentication if the sign-in risk is detected to be medium or high. (Requires an Azure AD Premium 2 License)",
+ "name": "CA007: Require multi-factor authentication for risky sign-ins",
+ "title": "Require multi-factor authentication for risky sign-ins"
+ },
+ "RequirePasswordChangeForHighRiskUsers": {
+ "description": "Require the user to change their password if the user risk is detected to be high. (Requires an Azure AD Premium 2 License)",
+ "name": "CA008: Require password change for high-risk users",
+ "title": "Require password change for high-risk users"
+ },
+ "RequireSecurityInfo": {
+ "description": "Secure when and how users register for Azure AD multi-factor authentication and self-service password. ",
+ "name": "CA002: Securing security info registration",
+ "title": "Securing security info registration"
+ }
+ },
+ "TemplateState": {
+ "BlockAccessOnUnknowns": {
+ "title": "Enabling this policy will prevent any access from unknown device type, consider using report only mode to begin with until you have confirmed this will not impact your users."
+ },
+ "BlockLegacyAuth": {
+ "description": "Consider using report only mode to begin with until you have confirmed this will not impact your users.",
+ "title": "Enabling this policy will block legacy authentication for all your users."
+ },
+ "RequireCompliantOrHybridADAdmins": {
+ "Description": {
+ "on": "Consider using report only mode to begin with until you have confirmed this will not impact your privileged users.",
+ "reportOnly": "Policies in report-only mode that require compliant devices may prompt users on Mac, iOS, and Android to select a device certificate during policy evaluation, even though device compliance is not enforced. These prompts may repeat until the device is made compliant."
+ },
+ "Title": {
+ "on": "Enabling this policy will prevent any access for privileged users unless using a managed device such as compliant or hybrid Azure AD joined. Ensure you have configured your compliance policies or enabled hybrid Azure AD configuration before enabling.",
+ "reportOnly": "Ensure you have configured your compliance policies or enabled hybrid Azure AD configuration before enabling. "
+ }
+ },
+ "RequireCompliantOrHybridADAllUsers": {
+ "Description": {
+ "on": "This policy will affect all users except the current logged in Administrator. Consider using report only mode to begin with until you have confirmed this will not impact your users."
+ },
+ "Title": {
+ "on": "Don't lock yourself out! Make sure that your device is compliant, or hybrid Azure AD Joined or you have configured multi-factor authentication. ",
+ "reportOnly": "Policies in report-only mode that require compliant devices may prompt users on Mac, iOS, and Android to select a device certificate during policy evaluation, even though device compliance is not enforced. These prompts may repeat untli the device is made compliant."
+ }
+ },
+ "RequireMfa": {
+ "description": "If you use emergency access accounts or Azure AD connect to synchronize your on-premises objects, you may need to exclude these accounts from this policy after creation."
+ },
+ "RequireMfaAdmins": {
+ "description": "Please note the current administrator account will automatically be excluded but all others will be protected on policy creation. Consider using report only mode to begin with.",
+ "title": "Don't lock yourself out! This policy impacts the Azure portal."
+ },
+ "RequireMfaAllUsers": {
+ "description": "Consider using report only mode to begin with until you have planned and communicated this change to all your users.",
+ "title": "Enabling this policy will enforce multi-factor authentication for all your users."
+ },
+ "RequireSecurityInfo": {
+ "description": "Please ensure you review your configuration to protect these accounts based on your company needs.",
+ "title": "The following users and roles are excluded from this policy, Guests and External Users, Global Administrators, Current Administrator"
+ }
+ },
+ "basics": "Basics",
+ "clientApps": "Client apps",
+ "cloudApps": "Cloud apps",
+ "cloudAppsOrActions": "Cloud apps or actions ",
+ "conditions": "Conditions ",
+ "createNewPolicy": "Create new policy from templates (Preview)",
+ "createPolicy": "Create Policy",
+ "currentUser": "Current user",
+ "customizeBuild": "Customize your build",
+ "customizeTemplate": "Template lists are customized based on the type of policy you're looking to create",
+ "excludedDevicePlatform": "Excluded device platforms",
+ "excludedDirectoryRoles": "Excluded directory roles",
+ "excludedLocation": "Excluded directory roles",
+ "excludedUsers": "Excluded users",
+ "grantControl": "Grant control ",
+ "includeFilteredDevice": "Include filtered devices in policy",
+ "includedDevicePlatform": "Included device platforms",
+ "includedDirectoryRoles": "Included directory roles",
+ "includedLocation": "Included location",
+ "includedUsers": "Included users",
+ "legacyAuthenticationClients": "Legacy authentication clients",
+ "namePolicy": "Name your policy",
+ "next": "Next",
+ "policyName": "Policy Name",
+ "policyState": "Policy state",
+ "policySummary": "Policy summary",
+ "policyTemplate": "Policy template",
+ "previous": "Previous",
+ "reviewAndCreate": "Review + create",
+ "riskLevels": "Risk levels",
+ "selectATemplate": "Select a Template",
+ "selectTemplate": "Select template",
+ "selectTemplateCategory": "Select a template category",
+ "selectTemplateRecommendation": "We recommend the following templates based on your response",
+ "sessionControl": "Session control ",
+ "signInFrequency": "Sign-in frequency",
+ "signInRisk": "Sign-in risk",
+ "template": "Template ",
+ "templateCategory": "Template category",
+ "userRisk": "User risk",
+ "usersAndGroups": "Users and groups ",
+ "viewPolicySummary": "View policy summary "
+ },
+ "SSM": {
+ "MemberSelector": {
+ "description": "Users and groups"
+ },
+ "Notification": {
+ "Migration": {
+ "error": "Failed to migrate Continuous access evaluation settings to Conditional access policies",
+ "inProgress": "Migrating Continuous access evaluation settings",
+ "success": "Successfully migrated Continuous access evaluation settings to Conditional access policies",
+ "successDescription": "Please proceed to Conditional access policies to view the migrated settings in the newly created policy named \"CA policy created from CAE settings\"."
+ },
+ "error": "Failed to update Continuous access evaluation settings",
+ "inProgress": "Updating Continuous access evaluation settings",
+ "success": "Successfully updated Continuous access evaluation settings"
+ },
+ "PreviewOptions": {
+ "disable": "Disable preview",
+ "enable": "Enable preview"
+ },
+ "StrictLocationEnforcement": {
+ "infoContent1": "Different IPs can be seen by Azure AD and Resource Provider from the same client device due to network partition or IPv4/IPv6 mismatch. Strict Location Enforcement will enforce the Conditional Access policy based on both IP addresses seen by Azure AD and Resource Provider.",
+ "infoContent2": "To ensure maximum security, it is recommended to include all IPs that can be seen by both Azure AD and Resource Provider in your Named Location policy and turn on \"Strict Location Enforcement\" mode.",
+ "label": "Strict Location Enforcement",
+ "title": "Additional enforcement modes"
+ },
+ "bladeTitle": "Continuous access evaluation",
+ "description": "When a user's access is removed or a client IP address changes, Continuous access evaluation automatically blocks access to resources and applications in near real time. ",
+ "migrateLabel": "Migrate",
+ "migrationError": "Migration failed due to the following error: {0}",
+ "migrationInfo": "CAE setting has been moved under Conditional Access UX, please migrate with the “Migrate” button above and configure it with Conditional Access policy going forward. Click here to learn more.",
+ "noLicenseMessage": "Manage smart session management settings with Azure AD Premium",
+ "optionsPickerTitle": "Enable/Disable Continuous access evaluation",
+ "upsellInfo": "You cannot change your settings on this page anymore and any settings here should be disregarded. Your previous setting will be honored. You can configure your CAE settings under Conditional Access going forward. Click here to learn more."
+ },
+ "SelectOrganizations": {
+ "Blade": {
+ "Lower": {
+ "gridAria": "List of selected organizations"
+ },
+ "Upper": {
+ "gridAria": "List of available organizations"
+ },
+ "description": "Add an Azure AD organization by typing one of its domain names.",
+ "notFoundResult": "Not found",
+ "searchBoxPlaceholder": "Tenant ID or domain name",
+ "subTitle": "Azure AD organization"
+ },
+ "Selector": {
+ "AdditionalDetails": {
+ "aria": "Organization ID: {0}"
+ },
+ "DisplayText": {
+ "multiple": "{0} Azure AD organizations selected",
+ "single": "1 Azure AD organization selected"
+ },
+ "gridAria": "List of selected organizations"
+ }
+ },
+ "SessionLifetime": {
+ "PersistentBrowser": {
+ "Error": {
+ "notAllApps": "Persistent browser session policy only works correctly when \"All cloud apps\" is selected. Please update your cloud apps selection."
+ },
+ "Option": {
+ "always": "Always persistent",
+ "help": "A persistent browser session allows users to remain signed in after closing and reopening their browser window.
\n\n- This setting works correctly when \"All cloud apps\" are selected
\n- This does not affect token lifetimes or the sign-in frequency setting.
\n- This will override the \"Show option to stay signed in\" policy in Company Branding.
\n- \"Never persistent\" will override any persistent SSO claims passed in from federated authentication services.
\n- \"Never persistent\" will prevent SSO on mobile devices across applications and between applications and the user's mobile browser.
\n",
+ "label": "Persistent browser session",
+ "never": "Never persistent"
+ },
+ "Warning": {
+ "allApps": "Persistent browser session only works correctly when All cloud apps is selected. Please change your cloud apps selection. Click here to learn more."
+ }
+ },
+ "SignInFrequency": {
+ "Aria": {
+ "units": "Hours or days",
+ "value": "Frequency"
+ },
+ "Option": {
+ "Day": {
+ "plural": "{0} days",
+ "singular": "1 day"
+ },
+ "Hour": {
+ "plural": "{0} hours",
+ "singular": "1 hour"
+ },
+ "daysOption": "Days",
+ "everytime": "Every time",
+ "help": "Time period before a user is asked to sign-in again when attempting to access a resource. The default setting is a rolling window of 90 days, i.e. users will be asked to re-authenticate on the first attempt to access a resource after being inactive on their machine for 90 days or longer.",
+ "hoursOption": "Hours",
+ "label": "Sign-in frequency",
+ "placeholder": "Select units"
+ }
+ },
+ "mainOption": "Modify session lifetime",
+ "mainOptionHelp": "Configure how often users will get prompted and whether browser sessions will be persisted. Applications that don't support modern authentication protocols might not honor these policies. In such cases please contact the application developer."
+ },
+ "SigninRisk": {
+ "LearnMore": {
+ "message": "Control user access to respond to specific sign-in risk levels."
+ }
+ },
+ "SingleSelectorActive": {
+ "failed": "Unable to load this data.",
+ "reattempt": "Loading data. Reattempt {0} of {1}."
+ },
+ "TimeCondition": {
+ "Errors": {
+ "both": "Invalid \"Include\" or \"Exclude\" time range.",
+ "daysOfWeek": "{0} Make sure to specify at least one day of the week.",
+ "endBeforeStart": "{0} Make sure start date/time is earlier than end date/time.",
+ "exclude": "Invalid \"Exclude\" time range.",
+ "generic": "{0} Make sure both days of the week and time zone are set. If \"All day\" is not checked, start time and end time need to be set as well.",
+ "include": "Invalid \"Include\" time range.",
+ "timeMissing": "{0} Make sure to specify both a start and end time.",
+ "timeZone": "{0} Make sure to specify a time zone.",
+ "timesAndZone": "{0} Make sure you set start time, end time and time zone."
+ }
+ },
+ "UserActions": {
+ "Included": {
+ "none": "No cloud apps or actions selected",
+ "plural": "{0} user actions included",
+ "singular": "1 user action included"
+ },
+ "accessRequirement1": "Level 1",
+ "accessRequirement2": "Level 2",
+ "accessRequirement3": "Level 3",
+ "accessRequirementsLabel": "Accessing secured app data",
+ "appsActionsAuthTitle": "Cloud apps, actions, or authentication context",
+ "appsOrActionsSelectorInfoBallonText": "Applications accessed or user actions",
+ "appsOrActionsTitle": "Cloud apps or actions",
+ "label": "User actions",
+ "mainOptionsLabel": "Select what this policy applies to",
+ "registerOrJoinDevices": "Register or join devices",
+ "registerSecurityInfo": "Register security information",
+ "selectionInfo": "Select the action this policy will apply to",
+ "whatIf": "User action included"
+ },
+ "UserSelectionBlade": {
+ "DirectoryRoles": {
+ "ariaLabel": "Choose directory roles"
+ },
+ "Excluded": {
+ "gridAria": "List of excluded users"
+ },
+ "Included": {
+ "gridAria": "List of included users"
+ },
+ "Validation": {
+ "customRoleIncluded": "\"Directory Roles\" includes at least one custom role",
+ "customRoleSelected": "At least one custom role is selected",
+ "failed": "\"{0}\" must be configured",
+ "roles": "Select at least one role",
+ "usersGroups": "Select at least one user or group"
+ },
+ "learnMore": "Control access based on who the policy will apply to, such as users and groups, workload identities, directory roles, or external guests."
+ },
+ "ValidationResult": {
+ "blockEveryonePolicy": "Policy configuration not supported. Review the assignments and controls.",
+ "invalidApplicationCondition": "Invalid cloud applications selected",
+ "invalidClientTypesCondition": "Invalid client apps selected",
+ "invalidConditions": "Assignments are not selected",
+ "invalidControls": "Invalid controls selected",
+ "invalidDevicePlatformsCondition": "Invalid device platforms selected",
+ "invalidDevicesCondition": "Invalid device configuration. Likely an invalid \"{0}\" configuration.",
+ "invalidGrantControlPolicy": "Invalid grant control",
+ "invalidLocationsCondition": "Invalid locations selected",
+ "invalidPolicy": "Assignments are not selected",
+ "invalidSessionControlPolicy": "Invalid session control",
+ "invalidSignInRisksCondition": "Invalid sign-in risk selected",
+ "invalidUserRisksCondition": "Invalid user risk selected",
+ "invalidUsersCondition": "Invalid users selected",
+ "mamPolicyShouldOnlyTargetAndroidOrIosPlatforms": "MAM policy can only be applied to Android or iOS client platforms.",
+ "notSupportedCombination": "Policy configuration is not supported. Learn more about supported policies.",
+ "pending": "Validating policy",
+ "requireComplianceEveryonePolicy": "Policy configuration will require device compliance for all users. Review the assignments selected.",
+ "success": "Valid policy"
+ },
+ "VpnCert": {
+ "Grid": {
+ "aria": "List of VPN Certificates"
+ }
+ },
+ "WarningsInfo": {
+ "Controls": {
+ "compliantDeviceEnabled": "Don't lock yourself out! Make sure that your device is compliant.",
+ "domainJoinedDeviceEnabled": "Don't lock yourself out! Make sure that your device is Hybrid Azure AD Joined.",
+ "exchangeDisabled": "Exchange ActiveSync only supports \"Compliant device\" and \"Approved client app\" controls. Click to learn more.",
+ "exchangeDisabled2": "Exchange ActiveSync only supports \"Compliant device\", \"Approved client app\" and \"Compliant client app\" controls. Click to learn more.",
+ "notAvailableForSP": "Some controls are not available due to '{0}' selection in policy assignment",
+ "requireAuthOrMfa": "\"{0}\" cannot be used with \"{1}\"",
+ "requireMfa": "Consider testing the new \"{0}\" public preview",
+ "requirePasswordChangeEnabled": "\"Require password change\" can only be used when policy is assigned to \"All cloud apps\""
+ },
+ "Policies": {
+ "Linux": {
+ "devicePlatformsReportOnlyPolicy": "Policies in Report-only mode requiring compliant devices may prompt users on macOS, iOS, Android, and Linux to select a device certificate.",
+ "excludeDevicePlatforms": "Exclude device platforms macOS, iOS, Android, and Linux from this policy.",
+ "proceedAnywayDevicePlatforms": "Proceed with selected configuration. Users on macOS, iOS, Android, and Linux may receive prompts when the device is checked for compliance."
+ },
+ "blockCurrentUserPolicy": "Don't lock yourself out! We recommend applying a policy to a small set of users first to verify it behaves as expected. We also recommend excluding at least one administrator from this policy. This ensures that you still have access and can update a policy if a change is required. Please review the affected users and apps.",
+ "devicePlatformsReportOnlyPolicy": "Policies in Report-only mode requiring compliant devices may prompt users on macOS, iOS, and Android to select a device certificate.",
+ "excludeCurrentUserSelection": "Exclude current user, {0}, from this policy.",
+ "excludeDevicePlatforms": "Exclude device platforms macOS, iOS, and Android from this policy.",
+ "proceedAnywayDevicePlatforms": "Proceed with selected configuration. Users on macOS, iOS, and Android may receive prompts when the device is checked for compliance.",
+ "proceedAnywaySelection": "I understand that my account will be impacted by this policy. Proceed anyway."
+ },
+ "ServicePrincipals": {
+ "blockExchange": "Selecting Office 365 Exchange Online will also affect apps such as OneDrive and Teams.",
+ "blockPortal": "Don't lock yourself out! This policy impacts the Azure portal. Before you continue, ensure that you or someone else will be able to get back into the portal.",
+ "blockPortalWithSession": "Don't lock yourself out! This policy impacts the Azure portal. Before you continue, ensure that you or someone else will be able to get back into the portal.
Disregard this warning if you are configuring persistent browser session policy that works correctly only if \"All cloud apps\" are selected.",
+ "blockSharePoint": "Selecting SharePoint Online will also affect apps such as Microsoft Teams, Planner, Delve, MyAnalytics, and Newsfeed.",
+ "blockSkype": "Selecting Skype for Business Online will also affect Microsoft Teams.",
+ "includeOrExclude": "You can configure the App Filter for '{0}' or '{1}', but not both.",
+ "selectAppsNAForSP": "Individual cloud apps cannot be selected due to '{0}' selection in policy assignment",
+ "teamsBlocked": "Microsoft Teams will also be affected when apps such as SharePoint Online and Exchange Online are included in policy."
+ },
+ "Users": {
+ "blockAllUsers": "Don't lock yourself out! This policy will affect all of your users. We recommend applying a policy to a small set of users first to verify it behaves as expected."
+ }
+ },
+ "WhatIf": {
+ "Device": {
+ "AttributesGrid": {
+ "aria": "List of attributes on the device employed during sign-in.",
+ "infoBalloon": "List of attributes on the device employed during sign-in."
+ }
+ }
+ },
+ "advancedTabText": "Advanced",
+ "allCloudAppsErrorBox": "\"All cloud apps\" must be selected when \"Require password change\" grant is selected",
+ "allCloudAppsReauth": "\"All cloud apps\" must be selected when \"Sign-in frequency every time\" session control and \"sign-in risk\" condition are selected",
+ "allCloudOrSpecificApps": "The \"sign-in frequency every time\" session control requires \"all cloud apps\" or specifically-supported apps to be selected",
+ "allDayCheckboxLabel": "All day",
+ "allDevicePlatforms": "Any device",
+ "allGuestUserInfoContent": "Includes Azure AD B2B guests, but not SharePoint B2B guests",
+ "allGuestUserLabel": "All guest and external users",
+ "allRiskLevelsOption": "All risk levels",
+ "allTrustedLocationLabel": "All trusted locations",
+ "allUserGroupSetSelectorLabel": "All users and groups selected",
+ "allUsersReauth": "The \"sign-in frequency every time\" session control requires \"All Users\" to be selected",
+ "allUsersString": "All users",
+ "and": "{0} AND {1} ",
+ "andWithGrouping": "({0}) AND {1} ",
+ "androidDisplayName": "Android",
+ "anyCloudAppSelection": "Any cloud app",
+ "appContextOptionInfoContent": "Requested authentication tag",
+ "appContextOptionLabel": "Requested authentication tag (Preview)",
+ "appContextUriPlaceholder": "Example: uri:contoso.com:level3",
+ "appEnforceInfoBubble": "App enforced restrictions might require additional admin configurations within the cloud apps. The restrictions will only take effect for new sessions.",
+ "appNotSetSeletorLabel": "0 cloud apps selected",
+ "applyConditionClientAppInfoBalloonContent": "Configure client apps to apply the policy to specific client apps",
+ "applyConditionDevicePlatformInfoBalloonContent": "Configure device platforms to apply the policy to specific platforms",
+ "applyConditionDeviceStateInfoBalloonContent": "Configure device state to apply the policy to specific device state(s)",
+ "applyConditionLocationInfoBalloonContent": "Configure locations to apply the policy to trusted/untrusted locations",
+ "applyConditionSigninRiskInfoBalloonContent": "Configure sign-in risk to apply the policy to selected risk level(s)",
+ "applyConditionUserRiskInfoBalloonContent": "Configure user risk to apply the policy to selected risk level(s)",
+ "applyConditonLabel": "Configure",
+ "ariaLabelPolicyDisabled": "Policy is disabled",
+ "ariaLabelPolicyEnabled": "Policy is enabled",
+ "ariaLabelPolicyReportOnly": "Policy is in Report-only mode",
+ "blockAccess": "Block access",
+ "builtInDirectoryRoleLabel": "Built-in directory roles",
+ "casCustomControlInfo": "Custom policies need to be configured in Cloud App Security portal. This control works instantly for featured apps and can be self onboarded for any app. Click here to learn more about both scenarios.",
+ "casInfoBubble": "This control works for various cloud apps.",
+ "casPreconfiguredControlInfo": "This control works instantly for featured apps and can be self onboarded for any app. Click here to learn more about both scenarios.",
+ "cert64DownloadCol": "Download base64 certificate",
+ "cert64Name": "VpnBase64Cert",
+ "certDownloadCol": "Download certificate",
+ "certDurationCol": "Expiry",
+ "certDurationStartCol": "Valid from",
+ "certName": "VpnCert",
+ "certainApps": "Only specifically-supported apps are enabled for \"Sign-in frequency every time\" if \"Require multi-factor authentication\" and \"Require password change\" grants are not selected",
+ "chooseApplicationsBladeSubtitle": "",
+ "chooseApplicationsBladeTitle": "Choose Applications",
+ "chooseApplicationsCartSubitle": "",
+ "chooseApplicationsCartTitle": "Chosen Applications",
+ "chooseApplicationsEmpty": "No Applications",
+ "chooseApplicationsNone": "None",
+ "chooseApplicationsNoneFound": "We didn't find \"{0}\". Try another name or ID.",
+ "chooseApplicationsPlural": "{0} and {1} more",
+ "chooseApplicationsReAuthEverytimeInfo": "Looking for your app? Some applications cannot be used with \"Require reauthentication – every time\" session control",
+ "chooseApplicationsRemove": "Remove",
+ "chooseApplicationsReturnedPlural": "{0} applications found",
+ "chooseApplicationsReturnedSingular": "1 application found",
+ "chooseApplicationsSearchBalloon": "Search for an Application by entering its name or ID.",
+ "chooseApplicationsSearchHint": "Search Applications...",
+ "chooseApplicationsSearchLabel": "Applications",
+ "chooseApplicationsSearching": "Searching...",
+ "chooseApplicationsSelect": "Select",
+ "chooseApplicationsSelected": "Selected",
+ "chooseApplicationsSingular": "{0} and 1 more",
+ "chooseApplicationsTooMany": "More results than can be shown. Please filter using the search box.",
+ "chooseLocationCorpnetItem": "Corporate network",
+ "chooseLocationSelectedLocationsLabel": "Selected locations",
+ "chooseLocationTrustedIpsItem": "MFA Trusted IPs",
+ "chooseLocationsBladeSubtitle": "",
+ "chooseLocationsBladeTitle": "Choose Locations",
+ "chooseLocationsCartSubitle": "",
+ "chooseLocationsCartTitle": "Chosen Locations",
+ "chooseLocationsEmpty": "No Locations",
+ "chooseLocationsExcludedSelectorTitle": "Select",
+ "chooseLocationsIncludedSelectorTitle": "Select",
+ "chooseLocationsNone": "None",
+ "chooseLocationsNoneFound": "We didn't find \"{0}\". Try another name or ID.",
+ "chooseLocationsPlural": "{0} and {1} more",
+ "chooseLocationsRemove": "Remove",
+ "chooseLocationsReturnedPlural": "{0} locations found",
+ "chooseLocationsReturnedSingular": "1 location found",
+ "chooseLocationsSearchBalloon": "Search for a Location by entering its name.",
+ "chooseLocationsSearchHint": "Search Locations...",
+ "chooseLocationsSearchLabel": "Locations",
+ "chooseLocationsSearching": "Searching...",
+ "chooseLocationsSelect": "Select",
+ "chooseLocationsSelected": "Selected",
+ "chooseLocationsSelectionBladeExcludedSelectorTitle": "Select",
+ "chooseLocationsSelectionBladeIncludedSelectorTitle": "Select",
+ "chooseLocationsSingular": "{0} and 1 more",
+ "chooseLocationsTooMany": "More results than can be shown. Please filter using the search box.",
+ "claimProviderAddCommandText": "New custom control",
+ "claimProviderAddNewBladeTitle": "New custom control",
+ "claimProviderDeleteCommand": "Delete",
+ "claimProviderDeleteDescription": "Are you sure you want to delete '{0}'? This action cannot be undone.",
+ "claimProviderDeleteTitle": "Are you sure?",
+ "claimProviderEditInfoText": "Enter the JSON for customized controls given by your claim providers.",
+ "claimProviderNotificationCreateDescription": "Creating custom control named '{0}'",
+ "claimProviderNotificationCreateFailedDescription": "Creating custom control '{0}' failed. Please try again later.",
+ "claimProviderNotificationCreateFailedTitle": "Failed to create custom control",
+ "claimProviderNotificationCreateSuccessDescription": "Created custom control named '{0}'",
+ "claimProviderNotificationCreateSuccessTitle": "Created '{0}'",
+ "claimProviderNotificationCreateTitle": "Creating '{0}'",
+ "claimProviderNotificationDeleteDescription": "Deleting custom control named '{0}'",
+ "claimProviderNotificationDeleteFailedDescription": "Deleting custom control '{0}' failed. Please try again later.",
+ "claimProviderNotificationDeleteFailedTitle": "Failed to delete custom control",
+ "claimProviderNotificationDeleteSuccessDescription": "Deleted custom control named '{0}'",
+ "claimProviderNotificationDeleteSuccessTitle": "Deleted '{0}'",
+ "claimProviderNotificationDeleteTitle": "Deleting '{0}'",
+ "claimProviderNotificationUpdateDescription": "Updating custom control named '{0}'",
+ "claimProviderNotificationUpdateFailedDescription": "Updating custom control '{0}' failed. Please try again later.",
+ "claimProviderNotificationUpdateFailedTitle": "Failed to update custom control",
+ "claimProviderNotificationUpdateSuccessDescription": "Updated custom control named '{0}'",
+ "claimProviderNotificationUpdateSuccessTitle": "Updated '{0}'",
+ "claimProviderNotificationUpdateTitle": "Updating '{0}'",
+ "claimProviderValidationAppIdInvalid": "The \"AppId\" value is not valid. Please review and try again.",
+ "claimProviderValidationClientIdMissing": "The data is missing a \"ClientId\" value. Please review and try again.",
+ "claimProviderValidationControlClaimsRequestedMissing": "The \"Control\" is missing a \"ClaimsRequested\" value. Please review and try again.",
+ "claimProviderValidationControlClaimsRequestedTypeMissing": "The \"ClaimsRequested\" item is missing a \"Type\" value. Please review and try again.",
+ "claimProviderValidationControlIdAlreadyExists": "The \"Control\" \"Id\" value already exists. Please review and try again.",
+ "claimProviderValidationControlIdMissing": "The \"Control\" is missing an \"Id\" value. Please review and try again.",
+ "claimProviderValidationControlIdReferencedInExistingPolicy": "The \"Control\" \"Id\" value cannot be removed because it is referenced in an existing policy. Please remove it from the policy first.",
+ "claimProviderValidationControlIdTooManyControls": "The \"Control\" property has too many controls. Please review and try again.",
+ "claimProviderValidationControlIdValueReserved": "The \"Control\" \"Id\" value is a reserved keyword, please use a different id.",
+ "claimProviderValidationControlNameAlreadyExists": "The \"Control\" \"Name\" value already exists. Please review and try again.",
+ "claimProviderValidationControlNameMissing": "The \"Control\" is missing a \"Name\" value. Please review and try again.",
+ "claimProviderValidationControlsMissing": "The data is missing a \"Controls\" value. Please review and try again.",
+ "claimProviderValidationDiscoveryUrlMissing": "The data is missing a \"DiscoveryUrl\" value. Please review and try again.",
+ "claimProviderValidationInvalid": "There data provided is not valid. Please review and try again.",
+ "claimProviderValidationInvalidJsonDefinition": "Unable to save the custom control. Review the JSON text and try again.",
+ "claimProviderValidationNameAlreadyExists": "The \"Name\" value already exists. Please review and try again.",
+ "claimProviderValidationNameMissing": "The data is missing a \"Name\" value. Please review and try again.",
+ "claimProviderValidationUnknown": "There was an unknown error while validating the data provided. Please review and try again.",
+ "claimProvidersNone": "No custom controls",
+ "claimProvidersSearchPlaceholder": "Search controls.",
+ "classicPoilcyFilterTitle": "Show",
+ "classicPolicyAllPlatforms": "All Platforms",
+ "classicPolicyClientAppBrowserAndNative": "Browser, mobile apps and desktop clients",
+ "classicPolicyCloudAppTitle": "Cloud application",
+ "classicPolicyControlAllow": "Allow",
+ "classicPolicyControlBlock": "Block",
+ "classicPolicyControlBlockWhenNotAtWork": "Block access when not at work",
+ "classicPolicyControlRequireCompliantDevice": "Require compliant device",
+ "classicPolicyControlRequireDomainJoinedDevice": "Require domain joined device",
+ "classicPolicyControlRequireMfa": "Require multi-factor authentication",
+ "classicPolicyControlRequireMfaWhenNotAtWork": "Require multi-factor authentication when not at work",
+ "classicPolicyDeleteCommand": "Delete",
+ "classicPolicyDeleteFailTitle": "Failed to delete classic policy",
+ "classicPolicyDeleteInProgressTitle": "Deleting classic policy",
+ "classicPolicyDeleteSuccessTitle": "Classic policy deleted",
+ "classicPolicyDetailBladeTitle": "Details",
+ "classicPolicyDisableCommand": "Disable",
+ "classicPolicyDisableConfirmation": "Are you sure you want to disable '{0}'? This action cannot be undone.",
+ "classicPolicyDisableFailDescription": "Failed to disable '{0}'",
+ "classicPolicyDisableFailTitle": "Failed to disable classic policy",
+ "classicPolicyDisableInProgressDescription": "Disabling '{0}'",
+ "classicPolicyDisableInProgressTitle": "Disabling classic policy",
+ "classicPolicyDisableSuccessDescription": "Successfully disabled '{0}'",
+ "classicPolicyDisableSuccessTitle": "Classic policy disabled",
+ "classicPolicyEasSupportedPlatforms": "Exchange ActiveSync supported platforms",
+ "classicPolicyEasUnsupportedPlatforms": "Exchange ActiveSync unsupported platforms",
+ "classicPolicyExcludedPlatformsTitle": "Excluded device platforms",
+ "classicPolicyFilterAll": "All policies",
+ "classicPolicyFilterDisabled": "Disabled policies",
+ "classicPolicyFilterEnabled": "Enabled policies",
+ "classicPolicyIncludeExcludeMembersDescription": "By excluding groups, you can perform phased migration of policies.",
+ "classicPolicyIncludeExcludeMembersTitle": "Include/exclude groups",
+ "classicPolicyIncludedPlatformsTitle": "Included device platforms",
+ "classicPolicyManualMigrationMessage": "This policy needs to be migrated manually.",
+ "classicPolicyMigrateCommand": "Migrate",
+ "classicPolicyMigrateConfirmation": "Are you sure you want to migrate '{0}'? This policy can only be migrated once.",
+ "classicPolicyMigrateFailDescription": "Failed to migrate '{0}'",
+ "classicPolicyMigrateFailTitle": "Failed to migrate classic policy",
+ "classicPolicyMigrateInProgressDescription": "Migrating '{0}'",
+ "classicPolicyMigrateInProgressTitle": "Migrating classic policy",
+ "classicPolicyMigrateRecommendText": "Recommendation: Migrate to the new Azure portal policies.",
+ "classicPolicyMigrateSuccessTitle": "Classic policy migrated successfully",
+ "classicPolicyMigratedSuccessDescription": "This classic policy can now be managed under Polices.",
+ "classicPolicyMigratedSuccessDescriptionMultiple": "This classic policy is migrated as {0} new policies. New policies can be managed under Policies.",
+ "classicPolicyNoEditPermissionMsg": "You don't have permission to edit this policy. Only global administrators and security administrators can edit the policy. Click here for more information.",
+ "classicPolicySaveFailDescription": "Failed to save '{0}'",
+ "classicPolicySaveFailTitle": "Failed to save classic policy",
+ "classicPolicySaveInProgressDescription": "Saving '{0}'",
+ "classicPolicySaveInProgressTitle": "Saving classic policy",
+ "classicPolicySaveSuccessDescription": "Successfully saved '{0}'",
+ "classicPolicySaveSuccessTitle": "Classic policy saved",
+ "clientAppBladeLegacyInfoBanner": "Legacy auth is currently not supported",
+ "clientAppBladeLegacyUpsellBanner": "Block unsupported client apps (Preview)",
+ "clientAppBladeTitle": "Client apps",
+ "clientAppDescription": "Select the client apps this policy will apply to",
+ "clientAppExchangeActiveSync": "Exchange ActiveSync",
+ "clientAppExchangeDisabledInfo": "Exchange ActiveSync is available when Exchange Online is the only cloud app selected. Click to learn more",
+ "clientAppExchangeWarning": "Exchange ActiveSync currently does not support all other conditions",
+ "clientAppLearnMore": "Control user access to target specific client applications not using modern authentication.",
+ "clientAppLegacyHeader": "Legacy authentication clients",
+ "clientAppMobileDesktop": "Mobile apps and desktop clients",
+ "clientAppModernHeader": "Modern authentication clients",
+ "clientAppOnlySupportedPlatforms": "Apply policy only to supported platforms",
+ "clientAppSelectSpecificClientApps": "Select client apps",
+ "clientAppV2BladeTitle": "Client apps (Preview)",
+ "clientAppWebBrowser": "Browser",
+ "clientAppsSelectedLabel": "{0} included",
+ "clientTypeBrowser": "Browser",
+ "clientTypeEas": "Exchange ActiveSync clients",
+ "clientTypeEasInfo": "Exchange ActiveSync clients that use legacy authentication only.",
+ "clientTypeModernAuth": "Modern authentication clients",
+ "clientTypeOtherClients": "Other clients",
+ "clientTypeOtherClientsInfo": "This includes older office clients and other mail protocols(POP, IMAP, SMTP, etc). [Learn more][1]\n[1]: https://aka.ms/caclientapps\n",
+ "cloudAppCountDiffBannerText": "{0} cloud apps configured in this policy have been deleted from the directory, but this doesn't affect the other apps in the policy. The next time you update the application section of the policy, the deleted apps will be automatically removed from it.",
+ "cloudAppsSelectionBladeAllMicrosoftApps": "All Microsoft apps",
+ "cloudAppsSelectionExcludeAllMicrosoftClients": "Allow Microsoft cloud, desktop and mobile apps (Preview)",
+ "cloudappsSelectionBladeAllCloudapps": "All cloud apps",
+ "cloudappsSelectionBladeExcludeDescription": "Select the cloud apps to exempt from the policy",
+ "cloudappsSelectionBladeExcludedSelectorTitle": "Select excluded cloud apps",
+ "cloudappsSelectionBladeIncludeDescription": "Select the cloud apps this policy will apply to",
+ "cloudappsSelectionBladeIncludedSelectorTitle": "Select",
+ "cloudappsSelectionBladeSelectedCloudapps": "Select apps",
+ "cloudappsSelectorInfoBallonText": "Services which the user accesses to do work. For example, 'Salesforce'",
+ "cloudappsSelectorPluralExcluded": "{0} apps excluded",
+ "cloudappsSelectorPluralIncluded": "{0} apps included",
+ "cloudappsSelectorSingularExcluded": "1 app excluded",
+ "cloudappsSelectorSingularIncluded": "1 app included",
+ "cloudappsSelectorUserPlural": "{0} apps",
+ "cloudappsSelectorUserSingular": "1 app",
+ "conditionLabelMulti": "{0} conditions selected",
+ "conditionLabelOne": "1 condition selected",
+ "conditionalAccessBladeTitle": "Conditional Access",
+ "conditionsNotSelectedLabel": "Not configured",
+ "conditionsReqMfaReauthSet": "Some options are not available due to the \"Require multi-factor authentication\" grant and \"sign-in frequency every time\" session control currently being selected",
+ "conditionsReqPwSet": "Some options are not available due to the \"Require password change\" grant currently being selected",
+ "configureCasText": "Configure Cloud App Security",
+ "configureCustomControlsText": "Configure custom policy",
+ "controlLabelMulti": "{0} controls selected",
+ "controlLabelOne": "1 control selected",
+ "controlValidatorText": "Please select at least one control",
+ "controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
+ "controlsDeviceComplianceAriaLabel": "Learn more about requiring compliant devices.",
+ "controlsDeviceComplianceInfoBubble": "Device must be Intune compliant. If the device is non-compliant, the user will be prompted to bring the device under compliance.",
+ "controlsDomainJoinedAriaLabel": "Learn more about requiring hybrid Azure AD joined devices.",
+ "controlsDomainJoinedInfoBubble": "Devices must be Hybrid Azure AD joined.",
+ "controlsMamAriaLabel": "Learn more about requiring approved client applications.",
+ "controlsMamInfoBubble": "Device must use these approved client applications.",
+ "controlsMfaInfoBubble": "User must complete additional security requirements like phone call, text",
+ "controlsOrAndInfoBubble": "ControlsOrAndInfoBubble",
+ "controlsRequireCompliantAppAriaLabel": "Learn more about requiring policy protected apps.",
+ "controlsRequireCompliantAppInfoBubble": "Device must use policy protected apps.",
+ "controlsRequirePasswordResetAriaLabel": "Learn more about requiring a password change.",
+ "controlsRequirePasswordResetInfoBubble": "Require password change to lower user risk. This option also requires multi-factor authentication. Other controls can't be used.",
+ "countriesRadiobuttonInfoBalloonContent": "The country/region a sign-in is coming from is determined by the user's IP address.",
+ "createNewVpnCert": "New certificate",
+ "createdTimeLabel": "Creation time",
+ "customRoleLabel": "Custom roles (not supported)",
+ "dateRangeTypeLabel": "Date range",
+ "daysOfWeekPlaceholderText": "Filter days of the week",
+ "daysOfWeekTypeLabel": "Days of the week",
+ "deletePolicyNoLicenseText": "You can delete this policy now. Once deleted you will not be able to recreate it until you have the required licenses.",
+ "descriptionContentForControlsAndOr": "For multiple controls",
+ "devicePlatform": "Device platform",
+ "devicePlatformConditionHelpDescription": "Apply policy to selected device platforms.\n[Learn more][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2044750",
+ "devicePlatformInclude": "{0} included",
+ "devicePlatformIncludeExclude": "{0} and {1} excluded",
+ "devicePlatformNoSelectionError": "Select device platforms requires one sub-item to be selected.",
+ "devicePlatformsNone": "None",
+ "deviceSelectionBladeExcludeDescription": "Select the platforms to exempt from the policy",
+ "deviceSelectionBladeIncludeDescription": "Select the device platforms to include in this policy",
+ "deviceStateAll": "All device state",
+ "deviceStateCompliant": "Device marked as compliant",
+ "deviceStateCompliantInfoContent": "Devices that are Intune compliant will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Intune compliant.",
+ "deviceStateConditionConfigureInfoContent": "Configure policy based on device state",
+ "deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Hybrid Azure AD joined' or 'marked as compliant'.\n This has been deprecated. Use '{1}' instead.",
+ "deviceStateConditionSelectorLabel": "Device state (deprecated)",
+ "deviceStateDomainJoined": "Device Hybrid Azure AD joined",
+ "deviceStateDomainJoinedInfoContent": "Devices that are Hybrid Azure AD joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Hybrid Azure AD joined.",
+ "deviceStateDomainJoinedInfoLinkText": "Learn more.",
+ "deviceStateExcludeDescription": "Select the device state condition used to exclude devices from policy.",
+ "deviceStateIncludeAndExcludeOneLabel": "{0} and exclude {1}",
+ "deviceStateIncludeAndExcludeTwoLabel": "{0} and exclude {1}, {2}",
+ "directoryRoleInfoContent": "Assign policy to built-in directory roles.",
+ "directoryRolesLabel": "Directory roles",
+ "discardbutton": "Discard",
+ "downloadDefaultFileName": "IP Ranges",
+ "downloadExampleFileName": "Example",
+ "downloadExampleHeader": "This is an example file with demonstrations of the kinds of data which can be accepted. Lines starting with # will be ignored.",
+ "endDatePickerLabel": "Ends",
+ "endTimePickerLabel": "End time",
+ "enterCountryText": "IP address and Country are evaluated in a pair. Select the Country.",
+ "enterIpText": "IP address and Country are evaluated in a pair. Input the IP address.",
+ "enterUserText": "No user is selected. Select a user.",
+ "evaluationResult": "Evaluation result",
+ "exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
+ "exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync with supported platforms only",
+ "excludeAllTrustedLocationSelectorText": "all trusted locations",
+ "featureRequiresP2": "This feature requires Azure AD Premium 2 license.",
+ "friday": "Friday",
+ "grantControls": "Grant controls",
+ "gridNetworkTrusted": "Trusted",
+ "gridPolicyCreatedDateTime": "Creation Date",
+ "gridPolicyEnabled": "Enabled",
+ "gridPolicyModifiedDateTime": "Modified Date",
+ "gridPolicyName": "Policy Name",
+ "gridPolicyState": "State",
+ "groupSelectionBladeExcludeDescription": "Select the groups to exempt from the policy",
+ "groupSelectionBladeExcludedSelectorTitle": "Select excluded groups",
+ "groupSelectionBladeSelect": "Select groups",
+ "groupSelectorInfoBallonText": "Groups in the directory that the policy applies to. For example, 'Pilot group'",
+ "groupsSelectionBladeTitle": "Groups",
+ "helpCommonScenariosText": "Interested in common scenarios?",
+ "helpCondition1": "When any user is outside the company network",
+ "helpCondition2": "When users in the 'Managers' group sign-in",
+ "helpConditionsTitle": "Conditions",
+ "helpControl1": "They're required to sign in with multi-factor authentication",
+ "helpControl2": "They are required be on an Intune compliant or domain-joined device",
+ "helpControlsTitle": "Controls",
+ "helpIntroText": "Conditional Access gives you the ability to enforce access requirements when specific conditions occur. Let's take a few examples",
+ "helpIntroTitle": "What is Conditional Access?",
+ "helpLearnMoreText": "Want to learn more about Conditional Access?",
+ "helpStartStep1": "Create your first policy by clicking \"+ New policy\"",
+ "helpStartStep2": "Specify policy Conditions and Controls",
+ "helpStartStep3": "When you are done, don't forget to Enable policy and Create",
+ "helpStartTitle": "Get started",
+ "highRisk": "High",
+ "includeAndExcludeAppsTextFormat": "Include: {0}. Exclude: {1}.",
+ "includeAppsTextFormat": "Include: {0}.",
+ "includeUnknownAreasCheckboxInfoBalloonContent": "Unknown areas are IP addresses that can't be mapped to a country/region.",
+ "includeUnknownAreasCheckboxLabel": "Include unknown areas",
+ "infoCommandLabel": "Info",
+ "invalidCertDuration": "Invalid cert duration",
+ "invalidIpAddress": "Value must be a valid IP address",
+ "invalidUriErrorMsg": "Please enter a valid Uri. For example,'uri:contoso.com:acr' ",
+ "iosDisplayName": "iOS",
+ "linuxDisplayName": "Linux",
+ "loadAll": "Load all",
+ "loading": "Loading...",
+ "locationConfigureNamedLocationsText": "Configure all trusted locations",
+ "locationConfigureNamedLocationsUri": "{0}/usermanagement/mfasettings.aspx?tenantid={1}&culture={2}",
+ "locationNameTooLongError": "Location name is too long. Maximum is 256 characters",
+ "locationSelectionBladeExcludeDescription": "Select the locations to exempt from the policy",
+ "locationSelectionBladeIncludeDescription": "Select the locations to include in this policy",
+ "locationsAllLocationsLabel": "Any location",
+ "locationsAllNamedLocationsLabel": "All trusted IPs",
+ "locationsAllPrivateLinksLabel": "All Private Links in my tenant",
+ "locationsIncludeExcludeLabel": "{0} and exclude all trusted IPs",
+ "locationsSelectedPrivateLinksLabel": "Selected Private Links",
+ "lowRisk": "Low",
+ "macOsDisplayName": "macOS",
+ "managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Azure AD Premium P1 or P2.",
+ "markAsTrustedCheckboxInfoBalloonContent": "Signing in from a trusted location lowers a user's sign-in risk. Only mark this location as trusted if you know the IP ranges entered are established and credible in your organization.",
+ "markAsTrustedCheckboxLabel": "Mark as trusted location",
+ "mediumRisk": "Medium",
+ "memberSelectionCommandRemove": "Remove",
+ "menuItemClaimProviderControls": "Custom controls (Preview)",
+ "menuItemClassicPolicies": "Classic policies",
+ "menuItemInsightsAndReporting": "Insights and reporting",
+ "menuItemManage": "Manage",
+ "menuItemNamedLocationsPreview": "Named locations (Preview)",
+ "menuItemNamedNetworks": "Named locations",
+ "menuItemPolicies": "Policies",
+ "menuItemTermsOfUse": "Terms of use",
+ "modifiedTimeLabel": "Modified time",
+ "monday": "Monday",
+ "nameLabel": "Name",
+ "namedLocationCountryInfoBanner": "Only IPv4 addresses are mapped to countries/regions. IPv6 addresses are included in unknown countries/regions.",
+ "namedLocationTypeCountry": "Countries/Regions",
+ "namedLocationTypeLabel": "Define the location using:",
+ "namedLocationUpsellBanner": "This view has been deprecated. Go to the new and improved 'Named locations' view.",
+ "namedLocationsHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/namedlocationupdate",
+ "namedNetworkAddIpRanges": "Add a new IP range (ex: 40.77.182.32/27)",
+ "namedNetworkCountryNeeded": "You need to select at least one country",
+ "namedNetworkDeleteCommand": "Delete",
+ "namedNetworkDeleteDescription": "Are you sure you want to delete '{0}'? This action cannot be undone.",
+ "namedNetworkDeleteTitle": "Are you sure?",
+ "namedNetworkDownloadIpRange": "Download",
+ "namedNetworkInvalidRange": "Value must be a valid IP range.",
+ "namedNetworkIpRangeNeeded": "You need at least one valid IP range",
+ "namedNetworkIpRangesDescriptionContent": "Configure your organization's IP ranges",
+ "namedNetworkIpRangesTab": "IP ranges",
+ "namedNetworkListAdd": "New location",
+ "namedNetworkListConfigureTrustedIps": "Configure MFA trusted IPs",
+ "namedNetworkNameDescription": "Example: 'Redmond office'",
+ "namedNetworkNameInvalid": "The supplied name is invalid.",
+ "namedNetworkNameRequired": "You must supply a name for this location.",
+ "namedNetworkNoIpRanges": "No IP ranges",
+ "namedNetworkNotificationCreateDescription": "Creating location named '{0}'",
+ "namedNetworkNotificationCreateFailedDescription": "Creating location '{0}' failed. Please try again later.",
+ "namedNetworkNotificationCreateFailedTitle": "Failed to create location",
+ "namedNetworkNotificationCreateSuccessDescription": "Created location named '{0}'",
+ "namedNetworkNotificationCreateSuccessTitle": "Created '{0}'",
+ "namedNetworkNotificationCreateTitle": "Creating '{0}'",
+ "namedNetworkNotificationDeleteDescription": "Deleting location named '{0}'",
+ "namedNetworkNotificationDeleteFailedDescription": "Deleting location '{0}' failed. Please try again later.",
+ "namedNetworkNotificationDeleteFailedTitle": "Failed to Delete location",
+ "namedNetworkNotificationDeleteSuccessDescription": "Deleted location named '{0}'",
+ "namedNetworkNotificationDeleteSuccessTitle": "Deleted '{0}'",
+ "namedNetworkNotificationDeleteTitle": "Deleting '{0}'",
+ "namedNetworkNotificationUpdateDescription": "Updating location named '{0}'",
+ "namedNetworkNotificationUpdateFailedDescription": "Updating location '{0}' failed. Please try again later.",
+ "namedNetworkNotificationUpdateFailedTitle": "Failed to Update location",
+ "namedNetworkNotificationUpdateSuccessDescription": "Updated location named '{0}'",
+ "namedNetworkNotificationUpdateSuccessTitle": "Updated '{0}'",
+ "namedNetworkNotificationUpdateTitle": "Updating '{0}'",
+ "namedNetworkSearchPlaceholder": "Search locations.",
+ "namedNetworkUploadFailedDescription": "There was an error parsing the supplied file. Please make sure to upload a plain-text file with each line in the CIDR format.",
+ "namedNetworkUploadFailedTitle": "Failed to parse '{0}'",
+ "namedNetworkUploadInProgressDescription": "Attempting to parse valid CIDR values from '{0}'.",
+ "namedNetworkUploadInProgressTitle": "Parsing '{0}'",
+ "namedNetworkUploadInvalidDescription": "'{0}' is either too large or in an invalid format.",
+ "namedNetworkUploadInvalidTitle": "'{0}' Invalid",
+ "namedNetworkUploadIpRange": "Upload",
+ "namedNetworkUploadSuccessDescription": "{0} lines analyzed. {1} in a bad format. {2} skipped.",
+ "namedNetworkUploadSuccessTitle": "Finished parsing '{0}'",
+ "namedNetworksAdd": "New named location",
+ "namedNetworksConditionHelpDescription": "Control user access based on their physical location.\n[Learn more][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
+ "namedNetworksExcludeLabel": "{0} and {1} excluded",
+ "namedNetworksHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
+ "namedNetworksIncludeLabel": "{0} included",
+ "namedNetworksNone": "No named locations found.",
+ "namedNetworksTitle": "Configure locations",
+ "namednetworkExceedingSizeErrorBladeTitle": "Error details",
+ "namednetworkExceedingSizeErrorDetailText": "Click here for more details.",
+ "namednetworkExceedingSizeErrorMessage": "You have exceeded the maximum allowed storage for named locations. Try again with a shorter list. Click here to view more details.",
+ "needMfaSecondary": "\"Require multi-factor authentication\" must be selected when \"Sign-in frequency every time\" is selected with \"Secondary authentication methods only\"",
+ "newCertName": "new cert",
+ "noAttributePermissionsError": "Insufficient privileges to create or update policy. Attribute definition reader role is required to add/edit dynamic filters.",
+ "noPolicyRowMessage": "No policies",
+ "noSPSelected": "No service principal selected",
+ "noUpdatePermissionMessage": "You don't have permissions to update these settings. Please contact your global administrator to get access.",
+ "noUserSelected": "No user selected",
+ "noneRisk": "No risk",
+ "office365Description": "These apps include Microsoft Flow, Microsoft Forms, Microsoft Teams, Office 365 Exchange Online, Office 365 SharePoint Online, Office 365 Yammer, and others.",
+ "office365InfoBox": "At least one of the apps selected is part of Office 365. We recommend setting the policy on the Office 365 app instead.",
+ "oneUserSelected": "1 user selected",
+ "onlyGlobalAdminsCanSaveThisPolicyConfig": "Only global administrators can save this policy.",
+ "or": "{0} OR {1} ",
+ "pickerDoneCommand": "Done",
+ "policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like Cloud apps, Sign-in risk, and Device platforms with Azure AD Premium",
+ "policiesBladeTitle": "Policies",
+ "policiesBladeTitleWithAppName": "Policies: {0}",
+ "policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked sign-on attribute.",
+ "policiesHitMaxLimitStatusBarMessage": "You've reached the maximum number of policies for this tenant. Delete some policies before creating more.",
+ "policyAssignmentsSection": "Assignments",
+ "policyBlockAllInfoBox": "The configured policy will block all users, so it is not supported. Review the assignments and controls. Exclude the current user {0}, if you would like to save this policy.",
+ "policyCloudAppsDisplayTextAllApp": "All apps",
+ "policyCloudAppsLabel": "Cloud apps",
+ "policyConditionClientAppDescription": "Software the user is employing to access the cloud app. For example, 'Browser'",
+ "policyConditionClientAppV2Description": "Software the user is employing to access the cloud app. For example, 'Browser'",
+ "policyConditionDevicePlatform": "Device platforms",
+ "policyConditionDevicePlatformDescription": "Platform the user is signing in from. For example, 'iOS'",
+ "policyConditionLocation": "Locations",
+ "policyConditionLocationDescription": "Location (determined using IP address range) the user is signing in from",
+ "policyConditionSigninRisk": "Sign-in risk",
+ "policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Azure AD Premium 2 license.",
+ "policyConditionUserRisk": "User risk",
+ "policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
+ "policyConditioniClientApp": "Client apps",
+ "policyConditioniClientAppV2": "Client apps (Preview)",
+ "policyControlAllowAccessDisplayedName": "Grant access",
+ "policyControlAuthenticationStrengthDisplayedName": "Require authentication strength (Preview)",
+ "policyControlBladeTitle": "Grant",
+ "policyControlBlockAccessDisplayedName": "Block access",
+ "policyControlCompliantDeviceDisplayedName": "Require device to be marked as compliant",
+ "policyControlContentDescription": "Control access enforcement to block or grant access.",
+ "policyControlInfoBallonText": "Block access or select additional requirements which need to be satisfied to allow access",
+ "policyControlMfaChallengeDisplayedName": "Require multi-factor authentication",
+ "policyControlRequireCompliantAppDisplayedName": "Require app protection policy",
+ "policyControlRequireDomainJoinedDisplayedName": "Require Hybrid Azure AD joined device",
+ "policyControlRequireMamDisplayedName": "Require approved client app",
+ "policyControlRequiredPasswordChangeDisplayedName": "Require password change",
+ "policyControlSelectAuthStrength": "Require authentication strength",
+ "policyControlsNoControlsSelected": "0 controls selected",
+ "policyControlsSection": "Access controls",
+ "policyCreatBladeTitle": "New",
+ "policyCreateButton": "Create",
+ "policyCreateFailedMessage": "Error: {0}",
+ "policyCreateFailedTitle": "Failed to create '{0}'",
+ "policyCreateInProgressTitle": "Creating '{0}'",
+ "policyCreateSuccessMessage": "Successfully created '{0}'. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
+ "policyCreateSuccessTitle": "Successfully created '{0}'",
+ "policyDeleteConfirmation": "Are you sure you want to delete '{0}'? This action cannot be undone.",
+ "policyDeleteFailTitle": "Failed to delete '{0}'",
+ "policyDeleteInProgressTitle": "Deleting '{0}'",
+ "policyDeleteSuccessTitle": "Successfully deleted '{0}'",
+ "policyEnforceLabel": "Enable policy",
+ "policyErrorCannotSetSigninRisk": "You don't have permission to save a policy with a sign-in risk condition.",
+ "policyErrorNoPermission": "You don't have permission to save policy. Contact your global admin.",
+ "policyErrorUnknown": "Something went wrong, please try again later.",
+ "policyFallbackWarningMessage": "Failure to create or update '{0}' using MS Graph resulting in a fallback to AD Graph. Please investigate the following scenario as there is most likely a bug when calling the policy endpoint for MS Graph with an incompatible condition.",
+ "policyFallbackWarningTitle": "Creating or updating '{0}' partially successful",
+ "policyNameCannotBeEmpty": "Policy name can't be empty",
+ "policyNameDevice": "Device policy",
+ "policyNameFormat": "[{0}] {1}",
+ "policyNameMam": "Mobile App Management policy",
+ "policyNameMfaLocation": "MFA and location policy",
+ "policyNamePlaceholderText": "Example: 'Device compliance app policy'",
+ "policyNameTooLongError": "Policy name is too long. Maximum 256 characters",
+ "policyOff": "Off",
+ "policyOn": "On",
+ "policyReportOnly": "Report-only",
+ "policyReviewSection": "Review",
+ "policySaveButton": "Save",
+ "policyStatusIconDescription": "Policy is Enabled",
+ "policyStatusIconEnabled": "Enabled status icon",
+ "policyTemplateName1": "Use app enforced restrictions for {0} browser access",
+ "policyTemplateName2": "Allow {0} access only on managed devices",
+ "policyTemplateName3": "Policy migrated from Continuous Access Evaluation settings",
+ "policyTriggerRiskSpecific": "Select specific risk level",
+ "policyTriggersInfoBalloonText": "Conditions which define when the policy will apply. For example, 'location'",
+ "policyTriggersNoConditionsSelected": "0 conditions selected",
+ "policyTriggersSelectorLabel": "Conditions",
+ "policyUpdateFailedMessage": "Error: {0}",
+ "policyUpdateFailedTitle": "Failed to update {0}",
+ "policyUpdateInProgressTitle": "Updating {0}",
+ "policyUpdateSuccessMessage": "Successfully updated {0}. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
+ "policyUpdateSuccessTitle": "Successfully updated {0}",
+ "primaryCol": "Primary",
+ "privateLinkLabel": "Azure AD Private Link",
+ "reportOnlyInfoBox": "Report-only mode: Policies are evaluated and logged at sign-in but do not impact users.",
+ "requireAllControlsText": "Require all the selected controls",
+ "requireCompliantDevice": "Require compliant device",
+ "requireDomainJoined": "Require domain-joined device",
+ "requireGrantReauth": "The \"sign-in frequency every time\" session control requires a \"require multi-factor authentication\" or \"require password change\" grant control when \"All cloud apps\" is selected",
+ "requireMFA": "Require multi-factor authentication ",
+ "requireMfaReauth": "The \"sign-in frequency every time\" session control requires the \"require multi-factor authentication\" grant control for \"sign-in risk\"",
+ "requireOneControlText": "Require one of the selected controls",
+ "requirePasswordChangeReauth": "The \"sign-in frequency every time\" session control requires the \"require password change\" grant control for \"user risk\"",
+ "requireRiskReauth": "The \"sign-in frequency every time\" session control requires the \"user risk\" or \"sign-in risk\" session control when \"all cloud apps\" is selected.",
+ "resetFilters": "Reset filters",
+ "sPRequired": "Service principal required",
+ "sPSelectorInfoBalloon": "User or Service Principal you want to test",
+ "saturday": "Saturday",
+ "searchTextTooLongError": "The search text is too long. Maximum 256 characters",
+ "securityDefaultsPolicyName": "Security defaults",
+ "securityDefaultsTextMessage": "Security defaults must be disabled to enable Conditional Access policy.",
+ "securityDefaultsWarningMessage": "It looks like you're about to manage your organization's security configurations. That's great! You must first disable Security defaults before enabling a Conditional Access policy.",
+ "selectDevicePlatforms": "Select device platforms",
+ "selectNamedNetworksSubtitle": "",
+ "selectNamedNetworksTitle": "Select locations",
+ "selectedSP": "Selected Service Principal",
+ "servicePrincipalDataGridAria": "List of available service principals",
+ "servicePrincipalDropDownLabel": "What does this policy apply to?",
+ "servicePrincipalInfoBox": "Some conditions are not available due to '{0}' selection in policy assignment",
+ "servicePrincipalRadioAll": "All owned service principals",
+ "servicePrincipalRadioSelect": "Select service principals",
+ "servicePrincipalSelectionsAria": "Selected service principals grid",
+ "servicePrincipalSelectorAria": "List of chosen service principals",
+ "servicePrincipalSelectorMultiple": "{0} service principals selected",
+ "servicePrincipalSelectorSingle": "1 service principal selected",
+ "servicePrincipalSpecificInc": "Specific service principals included",
+ "servicePrincipals": "Service principals",
+ "sessionControlBladeTitle": "Session",
+ "sessionControlDescriptionContent": "Control access based on session controls to enable limited experiences within specific cloud applications.",
+ "sessionControlDisableInfo": "This control only works with supported apps. Currently, Office 365, Exchange Online, and SharePoint Online are the only cloud apps that support app enforced restrictions. Click here to learn more.",
+ "sessionControlInfoBallonText": "Session controls enable limited experience within a cloud app.",
+ "sessionControls": "Session controls",
+ "sessionControlsAppEnforcedLabel": "Use app enforced restrictions",
+ "sessionControlsCasLabel": "Use Conditional Access App Control",
+ "sessionControlsSecureSignInLabel": "Require token binding",
+ "sharepointAppName": "SharePoint",
+ "signinRiskDescription": "Select the sign-in risk level this policy will apply to",
+ "signinRiskInclude": "{0} included",
+ "signinRiskReauth": "\"Sign-in risk\" condition must be selected when \"Require multi-factor authentication\" grant and \"sign-in frequency every time\" session control are selected",
+ "signinRiskTriggerDescriptionContent": "Select the sign-in risk level",
+ "singleTenantServicePrincipalInfoBallonText": "Policy only applies to single tenant service principals owned by your organization. Click here to learn more ",
+ "specificSigninRiskLevelsOption": "Select specific sign-in risk levels",
+ "specificUsersExcluded": "specific users excluded",
+ "specificUsersIncluded": "Specific users included",
+ "specificUsersIncludedAndExcluded": "Specific users excluded and included",
+ "startDatePickerLabel": "Starts",
+ "startFreeTrial": "Start a free trial",
+ "startTimePickerLabel": "Start time",
+ "sunday": "Sunday",
+ "testButton": "What If",
+ "thumbprintCol": "Thumbprint",
+ "thursday": "Thursday",
+ "timeConditionAllTimesLabel": "Any time",
+ "timeConditionIntroText": "Configure the time this policy will apply to",
+ "timeConditionSelectorInfoBallonContent": "When the user is signing in. For example, \"Wednesday 9am-5pm PST\"",
+ "timeConditionSelectorLabel": "Time (Preview)",
+ "timeConditionSpecificLabel": "Specific times",
+ "timeSelectorAllTimesText": "Any time",
+ "timeSelectorSpecificTimesText": "Specific times configured",
+ "timeZoneDropdownInfoBalloonContent": "Select a time zone that defines the time range. This policy applies to users in all time zones. For example, 'Wednesday 9am - 5pm' for one user would be 'Wednesday 10am - 6pm' for a user in a different time zone.",
+ "timeZoneDropdownLabel": "Time zone",
+ "timeZoneDropdownPlaceholderText": "Select a time zone",
+ "tooManyPoliciesDescription": "Only first 50 policies are being displayed now, click here to view all policies",
+ "tooManyPoliciesTitle": "More than 50 policies found",
+ "trustedLocationStatusIconDescription": "Location is trusted",
+ "trustedLocationStatusIconEnabled": "Trusted status icon",
+ "tuesday": "Tuesday",
+ "uploadInBadState": "Unable to upload the specified file.",
+ "upsellAppsDescription": "Require multi-factor authentication for sensitive applications all the time or only from outside the company network.",
+ "upsellAppsTitle": "Secure applications",
+ "upsellBannerText": "Get a free Premium trial to use this feature",
+ "upsellDataDescription": "Require device to be marked as compliant or Hybrid Azure AD joined to allow access to company resources.",
+ "upsellDataTitle": "Secure data",
+ "upsellDescription": "Conditional Access provides the control and protection you need to keep your corporate data secure, while giving your people an experience that allows them to do their best work from any device. For instance, you can restrict access from outside the company network or restrict access to devices which meet the compliance policies.",
+ "upsellRiskDescription": "Require multi-factor authentication for risk events detected by Microsoft's machine learning system.",
+ "upsellRiskTitle": "Protect against risk",
+ "upsellTitle": "Conditional Access",
+ "upsellWhyTitle": "Why use Conditional Access?",
+ "userAppNoneOption": "None",
+ "userNamePlaceholderText": "Enter User Name",
+ "userNotSetSeletorLabel": "0 users and groups selected",
+ "userOnlySelectionBladeExcludeDescription": "Select the users to exempt from the policy",
+ "userOrGroupSelectionCountDiffBannerText": "{0} configured in this policy have been deleted from the directory, but this doesn't affect the other users and groups in the policy. The next time you update the policy, the deleted users and/or groups will be automatically removed.",
+ "userOrSPNotSetSelectorLabel": "0 users or workload identities selected",
+ "userOrSPSelectionBladeTitle": "Users or workload identities",
+ "userOrSPSelectorInfoBallonText": "Identities in the directory that the policy applies to, including users, groups, and service principals",
+ "userRequired": "User Required",
+ "userRiskErrorBox": "\"User risk\" condition must be selected when \"Require password change\" grant is selected",
+ "userRiskReauth": "\"User risk\" condition and not \"Sign-in risk\" must be selected when \"Require password change\" grant and \"Sign-in frequency every time\" session control are selected",
+ "userSPRequired": "User or Service principal required",
+ "userSPSelectorTitle": "User or Workload identity",
+ "userSelectionBladeAllUsersAndGroups": "All users and groups",
+ "userSelectionBladeExcludeDescription": "Select the users and groups to exempt from the policy",
+ "userSelectionBladeExcludeTabTitle": "Exclude",
+ "userSelectionBladeExcludedSelectorTitle": "Select excluded users",
+ "userSelectionBladeIncludeDescription": "Select the users this policy will apply to",
+ "userSelectionBladeIncludeTabTitle": "Include",
+ "userSelectionBladeIncludedSelectorTitle": "Select",
+ "userSelectionBladeSelectUsers": "Select users",
+ "userSelectionBladeSelectedUsers": "Select users and groups",
+ "userSelectionBladeTitle": "Users and groups",
+ "userSelectorBladeTitle": "Users",
+ "userSelectorExcluded": "{0} excluded",
+ "userSelectorGroupPlural": "{0} groups",
+ "userSelectorGroupSingular": "1 group",
+ "userSelectorIncluded": "{0} included",
+ "userSelectorInfoBallonText": "Users and groups in the directory that the policy applies to. For example, 'Pilot group'",
+ "userSelectorSelected": "{0} selected",
+ "userSelectorTitle": "User",
+ "userSelectorUserAndGroup": "{0}, {1}",
+ "userSelectorUserPlural": "{0} users",
+ "userSelectorUserSingular": "1 user",
+ "userSelectorWithExclusion": "{0} and {1}",
+ "usersGroupsLabel": "Users and groups",
+ "viewApprovedAppsText": "See list of approved client apps",
+ "viewCompliantAppsText": "See list of policy protected client apps",
+ "vpnBladeTitle": "VPN connectivity",
+ "vpnCertCreateFailedMessage": "Error: {0}",
+ "vpnCertCreateFailedTitle": "Failed to create {0}",
+ "vpnCertCreateInProgressTitle": "Creating {0}",
+ "vpnCertCreateSuccessMessage": "Successfully created {0}.",
+ "vpnCertCreateSuccessTitle": "Successfully created {0}",
+ "vpnCertNoRowsMessage": "No VPN certificates found",
+ "vpnCertUpdateFailedMessage": "Error: {0}",
+ "vpnCertUpdateFailedTitle": "Failed to update {0}",
+ "vpnCertUpdateInProgressTitle": "Updating {0}",
+ "vpnCertUpdateSuccessMessage": "Successfully updated {0}.",
+ "vpnCertUpdateSuccessTitle": "Successfully updated {0}",
+ "vpnFeatureInfo": "For more information on VPN connectivity and Conditional Access, click here.",
+ "vpnFeatureWarning": "Once a VPN certificate is created in the Azure portal, Azure AD will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
+ "vpnMenuText": "VPN connectivity",
+ "vpncertDropdownDefaultOption": "Duration",
+ "vpncertDropdownInfoBalloonContent": "Select the duration for the cert you want to create",
+ "vpncertDropdownLabel": "Select duration",
+ "vpncertDropdownOneyearOption": "1 year",
+ "vpncertDropdownThreeyearOption": "3 years",
+ "vpncertDropdownTwoyearOption": "2 years",
+ "wednesday": "Wednesday",
+ "whatIfAppEnforcedControl": "Use app enforced restrictions",
+ "whatIfBladeDescription": "Test the impact of Conditional Access on a user when signing in under certain conditions.",
+ "whatIfBladeTitle": "What If",
+ "whatIfClassicPoliciesWarning": "Classic policies are not evaluated by this tool.",
+ "whatIfClientAppInfo": "The client app the user is signing in from. For example, 'Browser'.",
+ "whatIfCountry": "Country",
+ "whatIfCountryInfo": "The country the user is signing in from.",
+ "whatIfDevicePlatformInfo": "The device platform the user is signing in from.",
+ "whatIfDeviceStateInfo": "The device state the user is signing in from",
+ "whatIfEnterIpAddress": "Enter IP address (ex: 40.77.182.32)",
+ "whatIfErrorInvalidIpAddress": "An invalid IP address was specified.",
+ "whatIfEvaResultApplication": "Cloud apps",
+ "whatIfEvaResultClientApps": "Client app",
+ "whatIfEvaResultDevicePlatform": "Device platform",
+ "whatIfEvaResultEmptyPolicy": "Empty policy",
+ "whatIfEvaResultInvalidCondition": "Invalid condition",
+ "whatIfEvaResultInvalidPolicy": "Invalid policy",
+ "whatIfEvaResultLocation": "Location",
+ "whatIfEvaResultNotEnoughInformation": "Not enough information",
+ "whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
+ "whatIfEvaResultSignInRisk": "Sign-in risk",
+ "whatIfEvaResultUsers": "Users and groups",
+ "whatIfIpAddress": "IP address",
+ "whatIfIpAddressInfo": "IP address the user is signing in from.",
+ "whatIfIpCountryInfoBoxText": "If using an IP address or Country, both fields will be required and should correctly map together.",
+ "whatIfPolicyAppliesTab": "Policies that will apply",
+ "whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
+ "whatIfReasons": "Reasons why this policy will not apply",
+ "whatIfSelectClientApp": "Select a client app...",
+ "whatIfSelectCountry": "Select country...",
+ "whatIfSelectDevicePlatform": "Select device platform...",
+ "whatIfSelectPrivateLink": "Select private link...",
+ "whatIfSelectServicePrincipalRisk": "Select service principal risk...",
+ "whatIfSelectSignInRisk": "Select sign-in risk...",
+ "whatIfSelectType": "Select identity type",
+ "whatIfSelectUserRisk": "Select user risk...",
+ "whatIfServicePrincipalRiskInfo": "The risk level associated with the service principal",
+ "whatIfSignInRisk": "Sign-in risk",
+ "whatIfSignInRiskInfo": "The risk level associated with the sign-in",
+ "whatIfUnknownAreas": "Unknown Areas",
+ "whatIfUserPickerLabel": "Selected user",
+ "whatIfUserPickerNoRowsLabel": "No user or service principal selected",
+ "whatIfUserRiskInfo": "The risk level associated with the user",
+ "whatIfUserSelectorInfo": "User in the directory that you want to test",
+ "windows365InfoBox": "Selecting Windows 365 will affect connections to Cloud PCs and Azure Virtual Desktop session hosts. Click here to learn more.",
+ "windowsDisplayName": "Windows",
+ "windowsPhoneDisplayName": "Windows Phone",
+ "workloadIdentities": "Workload identities (preview)",
+ "workloadIdentity": "Workload identity"
+ },
+ "AppResources": {
+ "AppSettingsUx": {
+ "assignmentFilterColumnHeader": "Filter",
+ "assignmentFilterTypeColumnHeader": "Filter mode",
+ "assignmentToast": "End user notifications",
+ "assignmentTypeTableHeader": "ASSIGNMENT TYPE",
+ "deadlineTimeColumnLabel": "Installation deadline",
+ "deliveryOptimizationPriorityHeader": "Delivery optimization priority",
+ "groupTableHeader": "Group",
+ "installContextLabel": "Install Context",
+ "isRemovable": "Install as removable",
+ "licenseTypeLabel": "License type",
+ "modeTableHeader": "Group mode",
+ "policySet": "Policy Set",
+ "restartGracePeriodHeader": "Restart grace period",
+ "startTimeColumnLabel": "Availability",
+ "tracks": "Tracks",
+ "uninstallOnRemoval": "Uninstall on device removal",
+ "updateMode": "Update Priority",
+ "vPN": "VPN"
+ },
+ "AppType": {
+ "aADWebApp": "AAD web app",
+ "androidEnterpriseSystemApp": "Android Enterprise system app",
+ "androidForWorkApp": "Managed Google Play store app",
+ "androidLobApp": "Android line-of-business app",
+ "androidStoreApp": "Android store app",
+ "builtInAndroid": "Built-In Android app",
+ "builtInApp": "Built-In app",
+ "builtInIos": "Built-In iOS app",
+ "iosLobApp": "iOS line-of-business app",
+ "iosStoreApp": "iOS store app",
+ "iosVppApp": "iOS volume purchase program app",
+ "lineOfBusinessApp": "Line-of-business app",
+ "macOSDmgApp": "macOS app (DMG)",
+ "macOSEdgeApp": "Microsoft Edge (macOS)",
+ "macOSLobApp": "macOS line-of-business app",
+ "macOSMdatpApp": "Microsoft Defender ATP (macOS)",
+ "macOSOfficeSuiteApp": "macOS Office Suite",
+ "macOsVppApp": "macOS volume purchase program app",
+ "managedAndroidLobApp": "Managed Android line-of-business app",
+ "managedAndroidStoreApp": "Managed Android store app",
+ "managedGooglePlayApp": "Managed Google Play store app",
+ "managedGooglePlayPrivateApp": "Managed Google Play private app",
+ "managedGooglePlayWebApp": "Managed Google Play web link",
+ "managedIosLobApp": "Managed iOS line-of-business app",
+ "managedIosStoreApp": "Managed iOS store app",
+ "microsoftStoreForBusinessApp": "Microsoft Store for Business app",
+ "microsoftStoreForBusinessReleaseManagedApp": "Microsoft Store for Business",
+ "officeAddIn": "Office add-in",
+ "officeSuiteApp": "Microsoft 365 Apps (Windows 10 and later)",
+ "sharePointApp": "SharePoint app",
+ "teamsApp": "Teams app",
+ "webApp": "Web link",
+ "windowsAppXLobApp": "Windows AppX line-of-business app",
+ "windowsClassicApp": "Windows app (Win32)",
+ "windowsEdgeApp": "Microsoft Edge (Windows 10 and later)",
+ "windowsMobileMsiLobApp": "Windows MSI line-of-business app",
+ "windowsPhone81AppXBundleLobApp": "Windows Phone 8.1 AppX line-of-business app",
+ "windowsPhone81AppXLobApp": "Windows Phone 8.1 AppX line-of-business app",
+ "windowsPhone81StoreApp": "Windows Phone 8.1 store app",
+ "windowsPhoneXapLobApp": "Windows Phone XAP line-of-business app",
+ "windowsStoreApp": "Microsoft Store app",
+ "windowsUniversalAppXLobApp": "Windows Universal AppX line-of-business app",
+ "windowsUniversalLobApp": "Windows Universal line-of-business app"
+ },
+ "AppTypePlatform": {
+ "android": "Android",
+ "ios": "iOS",
+ "macOs": "macOS",
+ "web": "Web",
+ "windows": "Windows"
+ },
+ "AssignmentAction": {
+ "exclude": "Excluded",
+ "include": "Included",
+ "includeAllDevicesVirtualGroup": "Included",
+ "includeAllUsersVirtualGroup": "Included"
+ },
+ "AssignmentToast": {
+ "hideAll": "Hide all toast notifications",
+ "showAll": "Show all toast notifications",
+ "showReboot": "Show toast notifications for computer restarts"
+ },
+ "DeliveryOptimizationPriority": {
+ "backgroundNormal": "Background",
+ "displayText": "Content download in {0}",
+ "foreground": "Foreground",
+ "header": "Delivery optimization priority"
+ },
+ "DeviceRestartBehaviorOptions": {
+ "allow": "App install may force a device restart",
+ "basedOnReturnCode": "Determine behavior based on return codes",
+ "force": "Intune will force a mandatory device restart",
+ "suppress": "No specific action"
+ },
+ "FilterType": {
+ "exclude": "Exclude",
+ "include": "Include",
+ "none": "None"
+ },
+ "InstallIntent": {
+ "available": "Available for enrolled devices",
+ "availableWithoutEnrollment": "Available with or without enrollment",
+ "notApplicable": "Not applicable",
+ "required": "Required",
+ "uninstall": "Uninstall"
+ },
+ "SettingType": {
+ "assignmentType": "Assignment type",
+ "deviceLicensing": "License type",
+ "installContext": "Uninstall on device removal",
+ "toastSettings": "End user notifications",
+ "vpnConfiguration": "VPN"
+ },
+ "UpdateMode": {
+ "default": "Default",
+ "postponed": "Postponed",
+ "priority": "High Priority"
+ }
+ },
+ "WindowsEnrollment": {
+ "coManagementAuthorityDesc": "Configure co-management settings for Configuration Manager integration",
+ "coManagementAuthorityTitle": "Co-management Settings ",
+ "deploymentProfiles": "Windows Autopilot deployment profiles",
+ "description": "Learn about the seven different ways a Windows 10/11 PC can be enrolled into Intune by users or admins.",
+ "descriptionLabel": "Windows enrollment methods",
+ "enrollmentStatusPage": "Enrollment Status Page"
+ },
+ "Win32Program": {
+ "DeviceRestartBehaviorOptions": {
+ "allow": "App install may force a device restart",
+ "basedOnReturnCode": "Determine behavior based on return codes",
+ "force": "Intune will force a mandatory device restart",
+ "suppress": "No specific action"
+ },
+ "RunAsAccountOptions": {
+ "system": "System",
+ "user": "User"
+ },
+ "bladeTitle": "Program",
+ "deviceRestartBehavior": "Device restart behavior",
+ "deviceRestartBehaviorTooltip": "Select the device restart behavior after the app has successfully installed. Select 'Determine behavior based on return codes' to restart the device based on the return codes configuration settings. Select 'No specific action' to suppress device restarts during the app install for MSI-based apps. Select 'App install may force a device restart' to allow the app install to complete without suppressing restarts. Select 'Intune will force a mandatory device restart' to always restart the device after successful app installation.",
+ "header": "Specify the commands to install and uninstall this app:",
+ "installCommand": "Install command",
+ "installCommandMaxLengthErrorMessage": "Install command cannot exceed the maximum allowed length of 1024 characters.",
+ "installCommandTooltip": "The complete installation command line used to install this app.",
+ "runAs32Bit": "Run install and uninstall commands in a 32-bit process on 64-bit clients",
+ "runAs32BitTooltip": "Select 'Yes' to install and uninstall the app in a 32-bit process on 64-bit clients. Select 'No' (default) to install and uninstall the app in a 64-bit process on 64-bit clients. 32-bit clients will always use a 32-bit process.",
+ "runAsAccount": "Install behavior",
+ "runAsAccountTooltip": "Select 'System' to install this app for all users if supported. Select 'User' to install this app for the logged-in user on the device. For dual-purpose MSI apps, changes will prevent updates and uninstalls from successfully completing until the value applied to the device at the time of the original install is restored.",
+ "selectorLabel": "Program",
+ "uninstallCommand": "Uninstall command",
+ "uninstallCommandTooltip": "The complete uninstallation command line used to uninstall this app."
+ },
+ "CategoryDescription": {
+ "androidGeneralApplicationRestrictions": "Use these settings to stay informed about which users install apps that are not approved for use in your company. Select the type of restricted app list:
\n Prohibited apps - A list of apps that you want to be informed about when users install them.
\n Approved apps - A list of apps that are approved for use in your company. When users install an app that is not in this list, you will be informed.
\n ",
+ "androidZebraMxZebraMx": "Configure Zebra devices by uploading a MX profile in XML format.",
+ "iosDeviceFeaturesAirprint": "Use these settings to configure iOS devices to automatically connect to AirPrint compatible printers on your network. You'll need the IP address and resource path of your printers.",
+ "iosDeviceFeaturesExtensibleSingleSignOn": "Configure an app extension that enables single sign-on (SSO) for devices running iOS 13.0 or later.",
+ "iosDeviceFeaturesHomeScreenLayout": "Configure the layout for the dock and Home Screens on iOS devices. Certain devices may have limits to how many items can be displayed.",
+ "iosDeviceFeaturesIOSWallpaper": "Display an image that will appear on the Home Screen and/or the lock screen of iOS devices.\n To display a unique image in each location, create one profile with the lock screen image, and one with the Home Screen image.\n Then assign both profiles to your users.\n
\n \n - Max file size: 750 KB
\n - File type: PNG, JPG or JPEG
\n
\n ",
+ "iosDeviceFeaturesNotifications": "Specify notification settings for apps. Supports iOS 9.3 and later.",
+ "iosDeviceFeaturesSharedDevice": "Specify optional text displayed on the locked screen. It is supported on iOS 9.3 and later. Learn More",
+ "iosGeneralApplicationRestrictions": "Use these settings to stay informed about which users install apps that are not approved for use in your company. Select the type of restricted app list:
\n Prohibited apps - A list of apps that you want to be informed about when users install them.
\n Approved apps - A list of apps that are approved for use in your company. When users install an app that is not in this list, you will be informed.
\n ",
+ "iosGeneralApplicationVisibility": "Use the show apps list to specify the iOS apps that user can view or launch. Use the hidden apps list to specify the iOS apps that user cannot view or launch.",
+ "iosGeneralAutonomousSingleAppMode": "Apps you add to this list and assign to a device can lock the device to run only that app once launched, or lock the device while a certain action is running (for example taking a test). Once the action is complete, or you remove the restriction, the device returns to its normal state.",
+ "iosGeneralKiosk": "Kiosk mode locks various settings into a device, or specifies a single app that can be run on a device. This can be useful in environments like a retail store where you want a device to run only a single demo app.",
+ "macDeviceFeaturesAirprint": "Use these settings to configure macOS devices to automatically connect to AirPrint compatible printers on your network. You'll need the IP address and resource path of your printers.",
+ "macDeviceFeaturesAssociatedDomains": "Configure associated domains to share data and sign-in credentials between your org’s apps and websites. This profile can be applied to devices running macOS 10.15 or later.",
+ "macDeviceFeaturesExtensibleSingleSignOn": "Configure an app extension that enables single sign-on (SSO) for devices running macOS 10.15 or later.",
+ "macDeviceFeaturesLoginItems": "Choose which apps, files, and folders open when users log in to their devices. If you don't want users to change how the selected apps open, you can hide the app from the user configuration.",
+ "macDeviceFeaturesLoginWindow": "Configure the appearance of the macOS login screen and the functions that are available to users before and after they log in.",
+ "macExtensionsKernelExtensions": "Use these settings to configure kernel extension policy on macOS devices running 10.13.2 or later.",
+ "macGeneralDomains": "Emails that the user sends or receives which don't match the domains you specify here will be marked as untrusted.",
+ "windows10EndpointProtectionApplicationGuard": "While using Microsoft Edge, Microsoft Defender Application Guard protects your environment from sites that haven’t been defined as trusted by your organization. When users visit sites that aren’t listed in your isolated network boundary, the sites will be opened in a virtual browsing session in Hyper-V. Trusted sites are defined by a network boundary, which can be configured in Device Configuration. Note this feature is only available for devices running 64-bit Windows 10 or later.",
+ "windows10EndpointProtectionCredentialGuard": "Enabling Credential Guard will enable the following required settings:\n
\n \n - Enable Virtualization-based Security: Turns on virtualization-based security (VBS) at next reboot. Virtualization-based security uses the Windows Hypervisor to provide support for security services.
\n
\n - Secure Boot with Direct Memory Access: Turns on VBS with Secure Boot and direct memory access (DMA).
\n
\n ",
+ "windows10EndpointProtectionDeviceGuard": "Choose additional apps that either need to be audited by, or can be trusted to run by Microsoft Defender Application Control. Windows components and all apps from Windows store are automatically trusted to run.
\n Applications will not be blocked when running in “audit only” mode. “Audit only” mode logs all events in local client logs.\n ",
+ "windows10GeneralPrivacyPerApp": "Add apps that should have a different privacy behavior from what you defined in “Default privacy”.",
+ "windows10NetworkBoundaryNetworkBoundary": "The network boundary is the list of enterprise resources, such as cloud-hosted domain and IP address ranges for computers that are on the enterprise network. Define network boundaries to apply policies to protect data that resides in these locations.",
+ "windowsHealthMonitoring": "Configure the Windows health monitoring policy.",
+ "windowsPhoneGeneralApplicationRestrictions": "Windows Phone can block users from installing or launching apps specified in the prohibited apps list, or apps not specified in the approved apps list. All managed apps must be added to the approved list."
+ },
"Inputs": {
"accountDomain": "Account domain",
"accountDomainHint": "e.g. contosodomain",
@@ -9962,6 +9858,7 @@
"displayNameLabel": "Name",
"displayVersionHint": "Enter the app version",
"displayVersionLabel": "App Version",
+ "displayVersionLengthCheck": "The length of the display version should be a maximum of 130 characters",
"eBookCategoryNameLabel": "Default name",
"emailAccount": "Email account name",
"emailAccountHint": "e.g. Corporate Email",
@@ -10066,385 +9963,51 @@
"xmlFormatInvalid": "XML policy format is invalid.",
"xmlTooLarge": "Input size must be less than 1 MB."
},
- "Tooltips": {
- "PolicySettings": {
- "TouchId1": {
- "android": "On Android, you can allow using fingerprint identification instead of a PIN. Users are prompted to provide their fingerprints when they access this app with their work accounts.",
- "iOS": "On iOS/iPadOS devices, you can allow using fingerprint identification instead of a PIN. Users are prompted to provide their fingerprints when they access this app with their work accounts.",
- "mac": "On Mac devices, you can allow using fingerprint identification instead of a PIN. Users are prompted to provide their fingerprints when they access this app with their work accounts."
- },
- "appSharingFromLevel1": "Select one of the following options to specify the apps that this app can receive data from:",
- "appSharingFromLevel2": "{0}: Only allow receiving data in org documents or accounts from other policy managed apps",
- "appSharingFromLevel3": "{0}: Allow receiving data in org documents or accounts from any app",
- "appSharingFromLevel4": "{0}: Do not allow receiving data in org documents or accounts from any app",
- "appSharingFromLevel5": "{0}: Allow data transfer from any app and treat all incoming data without an user identity as Org data.",
- "appSharingToLevel1": "Select one of the following options to specify the apps that this app can send data to:",
- "appSharingToLevel2": "{0}: Only allow sending org data to other policy managed apps",
- "appSharingToLevel3": "{0}: Allow sending org data to any app",
- "appSharingToLevel4": "{0}: Do not allow sending org data to any app",
- "appSharingToLevel5": "{0}: Only allow transfer only to other policy managed apps and file transfer to other MDM managed apps on enrolled devices",
- "appSharingToLevel6": "{0}: Allow transfer only to other policy managed apps and filter OS Open-in/Share dialogs to only display policy managed apps",
- "conditionalEncryption1": "Select {0} to disable app encryption for internal app storage when device encryption is detected on an enrolled device.",
- "conditionalEncryption2": "Note: Intune can only detect device enrollment with Intune MDM. External app storage will still be encrypted to ensure data cannot be accessed by unmanaged applications.",
- "contactSyncMac": "If disabled, apps cannot save contacts to the native address book.",
- "contactsSync": "Choose Block to prevent policy managed apps from saving data to the device's native apps (like Contacts, Calendar and widgets), or to prevent the use of add-ins within the policy managed apps. If you choose Allow, the policy managed app can save data to the native apps or use add-ins, if those features are supported and enabled within the policy managed app.
Apps may provide additional configuration capability with app configuration policies. For more information, see the app's documentation.",
- "encryptionAndroid1": "For apps that are associated with an Intune mobile application management policy, encryption is provided by Microsoft. Data is encrypted synchronously during file I/O operations according to the setting in the mobile application management policy. Managed apps on Android use AES-128 encryption in CBC mode utilizing the platform cryptography libraries. The encryption method is not FIPS 140-2 compliant. SHA-256 encryption is supported as an explicit instruction using the SigAlg parameter and will only work on devices 4.2 and above. Content on the device storage is always be encrypted.",
- "encryptionAndroid2": "When you require encryption in your app policy, the end-user is required to setup and use a PIN to access their device. If there is not a PIN set up for device access, the apps will not launch and the end-user will instead see a message, which says, “Your company has required that you must first enable a device PIN to access this application.\"",
- "encryptionMac1": "For apps that are associated with an Intune mobile application management policy, encryption is provided by Microsoft. Data is encrypted synchronously during file I/O operations according to the setting in the mobile application management policy. Managed apps on Mac use AES-128 encryption in CBC mode utilizing the platform cryptography libraries. The encryption method is not FIPS 140-2 compliant. SHA-256 encryption is supported as an explicit instruction using the SigAlg parameter and will only work on devices 4.2 and above. Content on the device storage is always be encrypted.",
- "faceId1": "Where applicable, you can allow the use of face identification instead of PIN. Users are prompted to provide face identification when they access this app with their work accounts.",
- "faceId2": "Select Yes to allow face identification instead of a PIN for app access.",
- "managementLevelsAndroid1": "Use this option to specify whether this policy applies to Android device administrator devices, Android Enterprise devices, or unmanaged devices.",
- "managementLevelsAndroid2": "{0}: Unmanaged devices are devices where Intune MDM management has not been detected. This includes 3rd party MDM vendors.",
- "managementLevelsAndroid3": "{0}: Intune-managed devices using the Android Device Administration API.",
- "managementLevelsAndroid4": "{0}: Intune-managed devices using Android Enterprise Work Profiles or Android Enterprise Full Device Management.",
- "managementLevelsIos1": "Use this option to specify whether this policy applies to MDM managed devices or unmanaged devices.",
- "managementLevelsIos2": "{0}: Unmanaged devices are devices where Intune MDM management has not been detected. This includes 3rd party MDM vendors.",
- "managementLevelsIos3": "{0}: Managed devices are managed by Intune MDM.",
- "minAppVersion": "Define the required minimum App version number that a user should have to gain secure access to the app.",
- "minAppVersionWarning": "Define the recommended minimum App version number that a user should have for secure access to the app.",
- "minOsVersion": "Define the required minimum OS version number that a user should have to gain secure access to the app.",
- "minOsVersionWarning": "Define the recommended minimum OS version number that a user should have to gain secure access to the app.",
- "minPatchVersion": "Define the oldest required Android security patch level a user can have to gain secure access to the app.",
- "minPatchVersionWarning": "Define the oldest recommended Android security patch level a user can have for secure access to the app.",
- "minSdkVersion": "Define the required minimum Intune Application Protection Policy SDK version that a user should have to gain secure access to the app.",
- "requireAppPinDefault": "Select Yes to disable the app PIN when a device lock is detected on an enrolled device.
",
- "targetAllApps1": "Use this option to target your policy to apps on devices of any management state.",
- "targetAllApps2": "During policy conflict resolution this setting will be superseded if a user has policy targeted for a specific management state.",
- "touchId2": "Select {0} to require fingerprint identity instead of a PIN for app access."
- },
- "Tap": {
- "pinResetAfterNumberOfDays": "Specify the number of days that must pass before the user must reset the PIN.",
- "previousPinBlockCount": "This setting specifies the number of previous PINs that Intune will maintain. Any new PINs must be different from those that Intune is maintaining."
+ "WindowsFeatureUpdate": {
+ "EndOFSupportStatus": {
+ "notSupported": "Not supported",
+ "supportEnding": "Support ending",
+ "supported": "Supported"
+ }
},
- "WipPolicySettings": {
- "25": "",
- "allowWindowsSearch": "This will allow Windows Search to continue to search through encrypted data.",
- "authoritativeIpRanges": "Enable this setting if you want to override Windows auto-detection of IP ranges.",
- "authoritativeProxyServers": "Enable this setting if you want to override Windows auto-detection of proxy servers.",
- "checkInput": "Check input for validity",
- "dataRecoveryCert": "A recovery certificate is a special Encrypting File System (EFS) certificate you can use to recover encrypted files if your encryption key is lost or damaged. You need to create the recovery certificate, and specify it here. More information is here",
- "enterpriseCloudResources": "Specify cloud resources to be treated as corporate and be protected with Windows Information Protection policy. Multiple resources can be specified by separating individual entries with the '|' character.
If you have a proxy configured in your company, then you can specify the proxy through which traffic to cloud resources you specified will be routed.
URL[,Proxy]|URL[,Proxy]
Without proxy: contoso.sharepoint.com|contoso.visualstudio.com
With proxy: contoso.sharepoint.com,proxy.contoso.com|contoso.visualstudio.com,proxy.contoso.com
",
- "enterpriseIPv4Ranges": "Specify the IPv4 ranges that form your corporate network. These are used in conjunction with the Enterprise Network Domain Names that you specify to define your corporate network boundary.
This setting is required to have Windows Information Protection enabled.
Multiple ranges can be specified by separating individual entries with a comma.
For example: 3.4.0.1-3.4.255.255,192.168.1.1-192.168.255.255
",
- "enterpriseIPv6Ranges": "Specify the IPv6 ranges that form your corporate network. These are used in conjunction with the Enterprise Network Domain Names that you specify to define your corporate network boundary.
Multiple ranges can be specified by separating individual entries with a comma.
For example: 2001:4898:dc05::-2001:4898:dc05:ffff:ffff:ffff:ffff:ffff,2a01:110::-2a01:110:7fff:ffff:ffff:ffff:ffff:ffff
",
- "enterpriseInternalProxyServers": "If you have a proxy configured in your company, then you can specify the proxy through which traffic to cloud resources specified in the Enterprise Cloud Resources settings are to be routed.
Multiple values can be specified by separating individual entries with a semi-colon.
For example: contoso.internalproxy1.com;contoso.internalproxy2.com
",
- "enterpriseNetworkDomainNames": "Specify the DNS names that form your corporate network. These are used in conjunction with the IP ranges that you specify to define your corporate network boundary. Multiple values can be specified by separating individual entries with a comma.
This setting is required to have Windows Information Protection enabled.
For example: corp.contoso.com,region.contoso.com
",
- "enterpriseProtectedDomainNames": "Specify the DNS names that form your corporate network. These are used in conjunction with the IP ranges that you specify to define your corporate network boundary. Multiple values can be specified by separating individual entries with a '|'.
This setting is required to have Windows Information Protection enabled.
For example: corp.contoso.com|region.contoso.com
",
- "enterpriseProxyServers": "If you have external facing proxies in your corporate network, specify them here. When specifying a proxy server address, you should also specify the port through which traffic should be allowed and protected through Windows Information Protection.
Note: This list must not include servers in your Enterprise Internal Proxy Server list. Multiple values can be specified by separating individual entries with a semi-colon.
For example: proxy.contoso.com:80;proxy2.contoso.com:80
",
- "maxInactivityTime1": "Specifies the maximum amount of time (in minutes) allowed after the device is idle that will cause the device to become PIN or password locked. Users can select any existing timeout value less than the specified maximum time in the Settings app. Note the Lumia 950 and 950XL have a maximum timeout value of 5 minutes, regardless of the value set by this policy.",
- "maxInactivityTime2": "0 (default) - No timeout is defined. The default of '0' is interpreted as 'No timeout is defined.'",
- "maxPasswordAttempts1": "This policy has different behaviors on the mobile device and desktop.",
- "maxPasswordAttempts2": "On a mobile device, when the user reaches the value set by this policy, then the device is wiped.",
- "maxPasswordAttempts3": "On a desktop, when the user reaches the value set by this policy, it is not wiped.Instead, the desktop is put on BitLocker recovery mode, which makes the data inaccessible but recoverable.If BitLocker is not enabled, then the policy cannot be enforced.",
- "maxPasswordAttempts4": "Prior to reaching the failed attempts limit, the user is sent to the lock screen and warned that more failed attempts will lock their computer.When the user reaches the limit, the device automatically reboots and shows the BitLocker recovery page.This page prompts the user for the BitLocker recovery key.",
- "maxPasswordAttempts5": "0 (default) - The device is never wiped after an incorrect PIN or password is entered.",
- "maxPasswordAttempts6": "Most secure value is 0 if all policy values = 0; otherwise, Min policy value is the most secure value.",
- "mdmDiscoveryUrl": "Specify the URL for the MDM enrollment endpoint that users who enroll to MDM will use. By default, this is specified for Intune.",
- "minimumPinLength1": "Integer value that sets the minimum number of characters required for the PIN. Default value is 4. The lowest number you can configure for this policy setting is 4. The largest number you can configure must be less than the number configured in the Maximum PIN length policy setting or the number 127, whichever is the lowest.",
- "minimumPinLength2": "If you configure this policy setting, the PIN length must be greater than or equal to this number. If you disable or do not configure this policy setting, the PIN length must be greater than or equal to 4.",
- "name": "The name of this network boundary",
- "neutralResources": "If you have authentication redirection endpoints in your company, specify those here. The locations specified here are considered to be either personal or corporate depending on the context of the connection prior to the redirection.
Multiple values can be specified by separating individual entries with a comma.
For example: sts.contoso.com,sts.contoso2.com
",
- "passportForWork1": "Value that sets Windows Hello for Business as a method for signing into Windows.",
- "passportForWork2": "Default value is true.If you set this policy to false, the user cannot provision Windows Hello for Business except on Azure Active Directory joined mobile phones where provisioning is required.",
- "pinExpiration": "The largest number you can configure for this policy setting is 730. The lowest number you can configure for this policy setting is 0. If this policy is set to 0, then the user’s PIN will never expire.",
- "pinHistory1": "The largest number you can configure for this policy setting is 50. The lowest number you can configure for this policy setting is 0. If this policy is set to 0, then storage of previous PINs is not required.",
- "pinHistory2": "The current PIN of the user is included in the set of PINs associated with the user account. PIN history is not preserved through a PIN reset.",
- "protectUnderLock": "Protects app content while the device is in a locked state.",
- "protectionModeBlock": "Block: Blocks enterprise data from leaving protected apps.
",
- "protectionModeOff": "Off: User is free to relocate data off of protected apps. No actions are logged.
",
- "protectionModeOverride": "Allow overrides: User is prompted when attempting to relocate data from a protected to a non-protected app. If they choose to override this prompt, the action will be logged.
",
- "protectionModeSilent": "Silent: User is free to relocate data off of protected apps. These actions are logged.
",
- "required": "Required",
- "revokeOnMdmHandoff": "Added in Windows 10, version 1703. This policy controls whether to revoke the WIP keys when a device upgrades from MAM to MDM. If set to “Off”, the keys will not be revoked and the user will continue to have access to protected files after upgrade. This is recommended if the MDM service is configured with the same WIP EnterpriseID as the MAM service.",
- "revokeOnUnenroll": "This will cause encryption keys to be revoked when a device un-enrolls from this policy.",
- "rmsTemplateForEdp": "TemplateID GUID to use for RMS encryption. The Azure RMS template allows the IT admin to configure the details about who has access to RMS-protected file and how long they have access.",
- "showWipIcon": "This will let the user know when they are acting in a corporate context, by overlaying an icon.",
- "useRmsForWip": "Specifies whether to allow Azure RMS encryption for WIP."
+ "SecurityTemplate": {
+ "aSR": "Attack surface reduction",
+ "accountProtection": "Account protection",
+ "allDevices": "All devices",
+ "antivirus": "Antivirus",
+ "antivirusReporting": "Antivirus Reporting (Preview)",
+ "conditionalAccess": "Conditional access",
+ "deviceCompliance": "Device compliance",
+ "diskEncryption": "Disk encryption",
+ "eDR": "Endpoint detection and response",
+ "firewall": "Firewall",
+ "helpSupport": "Help and support",
+ "setup": "Setup",
+ "wdapt": "Microsoft Defender for Endpoint"
+ },
+ "Win32ReturnCodes": {
+ "CodeTypes": {
+ "failed": "Failed",
+ "hardReboot": "Hard reboot",
+ "retry": "Retry",
+ "softReboot": "Soft reboot",
+ "success": "Success"
},
- "requireAppPin": "Select Yes to disable the app PIN when a device lock is detected on an enrolled device.
Note: Intune cannot detect device enrollment with a third-party EMM solution on iOS/iPadOS.
"
- },
- "AppInfoBalloonText": {
- "Certificate": {
- "customSubjectName": "CN={{UserName}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US\nor\nCN={{AAD_Device_ID}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US",
- "keySize": "Select the number of bits contained in the key.",
- "keyUsage": "Specify the cryptographic action that is required to exchange the certificate’s public key.",
- "renewalThreshold": "Enter the percentage (between 1 and 99 percent) of remaining certificate lifetime that is allowed before a device can request renewal of the certificate. The recommended amount in Intune is 20%. (1-99)",
- "rootCert": "Choose a previously configured and assigned root CA certificate profile. The CA certificate must match the root certificate of the CA that is issuing the certificate for this profile (the one you are currently configuring).",
- "scepServerUrl": "Enter a URL for the NDES Server that issues certificates through SCEP (Must be HTTPS). e.g. https://contoso.com/certsrv/mscep/mscep.dll",
- "scepServerUrls": "Add one or more URLs for the NDES Server that issues certificates through SCEP (Must be HTTPS). e.g. https://contoso.com/certsrv/mscep/mscep.dll",
- "subjectAlternativeName": "Subject alternative name",
- "subjectNameFormat": "Subject name format",
- "validityPeriod": "The amount of time remaining before the certificate expires. Enter a value that is equal to or lower than the validity period shown in the certificate template. Default is set at one year."
- },
- "appInstallContext": "This specifies the install context to be associated with this app. For dual mode apps, select the desired context for this app. For all other apps, this is pre-selected based on the package and cannot be modified.",
- "autoUpdateMode": "Configure the update priority for the app. Select Default to require the device to be connected to WiFi, to be charging, and not to be actively in use before updating the app. Select High Priority to update the app as soon as the developer has published the app, regardless of charge status, WiFi capability, or end user activity on the device. High priority will only take effect on DO devices.",
- "configurationSettingsFormat": "Configuration settings format text",
- "ignoreVersionDetection": "Set this to “Yes” for apps that are automatically updated by the app developer (such as Google Chrome).",
- "ignoreVersionDetectionMacOSLobApp": "Select \"Yes\" for apps that are automatically updated by app developer or to only check for app bundleID before installation. Select \"No\" to check for app bundleID and version number before installation.",
- "installAsManagedMacOSLobApp": "This setting only applies to macOS 11 and higher. The app will be installed but not managed on macOS 10.15 and lower.",
- "installContextDropdown": "Select the appropriate install context. User context will install the app only for the targeted user while device context will install the app for all users on the device.",
- "ldapUrl": "This is the LDAP hostname where clients can get the public encryption keys for email recipients. Emails will be encrypted when a key is available. Supported formats: - ldap.example.com
\n- ldap.example.com:123
\n- ldap://ldap.example.com
- ldap://ldap.example.com:123
- ldaps://ldap.example.com
\n- ldaps://ldap.example.com:123
",
- "permissionsSettings": "Select runtime permissions for the associated app.",
- "policyAssociatedApp": "Select the app that this policy will be associated with.",
- "policyConfigurationSettings": "Select the method you want to use to define configuration settings for this policy.",
- "policyDescription": "Optionally, enter a description for this configuration policy.",
- "policyEnrollmentType": "Choose whether these settings are managed through device management or apps made with Intune SDK.",
- "policyName": "Enter a name for this configuration policy.",
- "policyPlatform": "Select the platform this app configuration policy will apply to.",
- "policyProfileType": "Select the device profile types that this app configuration profile will apply to",
- "policySMime": "Configure S/MIME signing and encryption settings for Outlook.",
- "sMimeDeployCertsFromIntune": "Specify whether or not S/MIME certificates will be delivered from Intune for use with Outlook.\nIntune can automatically deploy signing and encryption certificates to users through the Company Portal.",
- "sMimeEnable": "Specify whether or not S/MIME controls are enabled when composing an email",
- "sMimeEnableAllowChange": "Specify if the user is allowed to change the Enable S/MIME setting.",
- "sMimeEncryptAllEmails": "Specify whether or not all emails must be encrypted.\nEncrypting converts data to cipher text so that only the intended recipient can read it.",
- "sMimeEncryptAllEmailsAllowChange": "Specify if the user is allowed to change the Encrypt all emails setting.",
- "sMimeEncryptionCertProfile": "Specify certificate profile for email encryption.",
- "sMimeSignAllEmails": "Specify whether or not all emails must be signed.\nA digital signature verifies the authenticity of the email and ensures that the contents are not tampered with in transit.",
- "sMimeSignAllEmailsAllowChange": "Specify if the user is allowed to change the Sign all emails setting.",
- "sMimeSigningCertProfile": "Specify certificate profile for email signing.",
- "sMimeUserNotificationType": "Method to notify users that they must open Company Portal to retrieve S/MIME certificates for Outlook."
- },
- "WindowsQualityUpdateDaysUntilForcedReboot": {
- "oneDay": "1 day",
- "twoDays": "2 days",
- "zeroDays": "0 days"
- },
- "Autopilot": {
- "AssignResourceAccount": {
- "createNewCommandMenu": "Create new",
- "createNewResourceAccountInfo": "\nCreate a new resource account during enrollment. The Resource account will be added to the Resource account table right away, but won't be active until the device is enrolled, and the Surface Hub subscription is verified. Learn more about Resource Accounts
\n ",
- "createNewResourceTitle": "Create new resource account",
- "deviceNameInvalid": "Device name is in an invalid format",
- "deviceNameRequired": "A device name is required",
- "editResourceAccountLabel": "Edit",
- "selectExistingCommandMenu": "Select existing"
- },
- "Device": {
- "ComputerName": {
- "validFormat": "Names must be 15 characters or less, and can contain letters (a-z, A-Z), numbers (0-9), and hyphens. Names must not contain only numbers. Names cannot include a blank space."
- },
- "Header": {
- "addressableUserName": "User Friendly Name",
- "azureADDevice": "Associated Azure AD device",
- "batch": "Group Tag",
- "dateAssigned": "Date assigned",
- "deviceDisplayName": "Device Name",
- "deviceName": "Device name",
- "deviceUseType": "Device-use type",
- "enrollmentState": "Enrollment state",
- "intuneDevice": "Associated Intune device",
- "lastContacted": "Last contacted",
- "make": "Manufacturer",
- "model": "Model",
- "profile": "Assigned profile",
- "profileStatus": "Profile status",
- "purchaseOrderId": "Purchase order",
- "resourceAccount": "Resource account",
- "serialNumber": "Serial number",
- "userPrincipalName": "User"
- }
- },
- "DeviceUseType": {
- "meetingAndPresentation": "Meeting and presentation",
- "teamCollaboration": "Team collaboration"
- },
- "Devices": {
- "featureDescription": "Windows Autopilot lets you customize the out-of-box experience (OOBE) for your users.",
- "importErrorStatus": "Some devices were not imported. Click here for more information.",
- "importPendingStatus": "Import in progress. Elapsed time: {0} min. This process can take up to {1} min."
- },
- "DirectoryService": {
- "activeDirectoryAD": "Hybrid Azure AD joined",
- "activeDirectoryADLabel": "Hybrid Azure AD width Autopilot",
- "azureAD": "Azure AD joined",
- "unknownType": "Unknown Type"
- },
- "Filter": {
- "enrollmentState": "State",
- "profile": "Profile status"
- },
- "OOBE": {
- "AddressableUserName": {
- "validateEmpty": "User friendly name cannot be empty."
- },
- "ApplyComputerNameTemplate": {
- "infoBalloon": "Create a naming template to add names to your devices during enrollment.",
- "label": "Apply device name template"
- },
- "ApplyComputerNameTemplateDisabled": {
- "label": "For Hybrid Azure AD joined type of Autopilot deployment profiles, devices are named using settings specified in Domain Join configuration."
- },
- "ComputerNameTemplate": {
- "emptyValue": "MyCompany-%RAND:4%",
- "label": "Enter a name",
- "noDisallowedChars": "Name must only contain alphanumeric characters, hyphens, %SERIAL%, or %RAND:x%",
- "serialLength": "Cannot use more than 7 characters with %SERIAL%",
- "validateLessThan15Chars": "Name must be 15 characters or less",
- "validateNoSpaces": "Computer names cannot contain spaces",
- "validateNotAllNumbers": "Name must also contain letters and/or hyphens",
- "validateNotEmpty": "Name cannot be empty",
- "validateOnlyOneMacro": "Name must only contain one of %SERIAL% or %RAND:x%"
- },
- "ConfigureComputerNameTemplate": {
- "description": "Create a unique name for your devices. Names must be 15 characters or less, and can contain letters (a-z, A-Z), numbers (0-9), and hyphens. Names must not contain only numbers. Names cannot include a blank space. Use the %SERIAL% macro to add a hardware-specific serial number. Alternatively, use the %RAND:x% macro to add a random string of numbers, where x equals the number of digits to add."
- },
- "EnableWhiteGlove": {
- "infoBalloon": "Enable pressing Windows key 5 times to run OOBE without user authentication to enroll device and provision all system-context apps and settings. User-context apps and settings will be delivered when the user signs in.",
- "label": "Allow pre-provisioned deployment"
- },
- "HybridAzureADSkipConnectivityCheck": {
- "infoBalloon": "The Autopilot Hybrid Azure AD join flow will continue even if it does not establish domain controller connectivity during OOBE.",
- "label": "Skip AD connectivity check (preview)"
- },
- "accountType": "User account type",
- "accountTypeInfo": "Specify whether users are administrators or standard users on the device. Note that this setting does not apply to Global Administrator or Company Administrator accounts. These accounts cannot be standard users because they have access to all administrative features in Azure AD.",
- "configOOBEInfo": "\nConfigure the out-of-box experience for your Autopilot devices\n
",
- "configureDevice": "Deployment mode",
- "configureDeviceHintForSurfaceHub2": "Autopilot only supports self-deploying mode for Surface Hub 2. This mode doesn't associate the user with the enrolled device, so it doesn't require user credentials.",
- "configureDeviceHintForWindowsPC": "\n Deployment mode controls if a user needs to provide credentials in order to provision the device.\n
\n \n - \n User-Driven: Devices are associated with the user enrolling the device and user credentials are required to provision the device\n
\n - \n Self-Deploying (preview): Devices are not associated with the user enrolling the device and user credentials are not required to provision the device\n
\n
",
- "createSurfaceHub2Info": "Configure the Autopilot enrollment settings for your Surface Hub 2 devices. By default Autopilot enables skipping user authentication during OOBE. Learn more about Windows Autopilot for Surface Hub 2.",
- "createWindowsPCInfo": "\n\nThe following options are automatically enabled for Autopilot devices in self-deploying mode:\n
\n\n - \n Skip Work or Home usage selection\n
\n - \n Skip OEM registration and OneDrive configuration\n
\n - \n Skip user authentication in OOBE\n
\n
",
- "endUserDevice": "User-Driven",
- "hideEscapeLink": "Hide change account options",
- "hideEscapeLinkInfo": "Options to change account and start over with a different account appear, respectively, during initial device setup on the company sign-in page, and on the domain error page. To hide these options, you must configure company branding in Azure Active Directory (requires Windows 10, 1809 or later, or Windows 11).",
- "info": "Autopilot profile settings define the out-of-box experience users see when starting Windows for the first time. ",
- "language": "Language (Region)",
- "languageInfo": "Specify the language and region that will be used.",
- "licenseAgreement": "Microsoft Software License Terms",
- "licenseAgreementInfo": "Specify whether to show the EULA to users.",
- "plugAndForgetDevice": "Self-Deploying (preview)",
- "plugAndForgetGA": "Self-Deploying",
- "privacySettingWarning": "The default value for diagnostic data collection has changed for devices running Windows 10, version 1903 and later, or Windows 11. ",
- "privacySettings": "Privacy settings",
- "privacySettingsInfo": "Specify whether to show privacy settings to users.",
- "showCortanaConfigurationPage": "Cortana configuration",
- "showCortanaConfigurationPageInfo": "Show will enable the Cortana configuration introduction during startup.",
- "skipEULAWarning": "Important information about hiding license terms",
- "skipKeyboardSelection": "Automatically configure keyboard",
- "skipKeyboardSelectionInfo": "If true, skip the keyboard selection page if Language is set.",
- "subtitle": "Autopilot profiles",
- "title": "Out-of-box experience (OOBE)",
- "useOSDefaultLanguage": "Operating system default",
- "userSelect": "User select"
- },
- "Sync": {
- "lastRequestedLabel": "Last sync request",
- "lastSuccessfulLabel": "Last successful sync",
- "syncInProgress": "Sync is in progress. Check back again soon.",
- "syncInitiated": "Autopilot settings sync initiated.",
- "syncSettingsTitle": "Sync Autopilot settings"
- },
- "Title": {
- "devices": "Windows Autopilot devices"
- },
- "Tooltips": {
- "addressableUserName": "Greeting name displayed during device setup.",
- "azureADDevice": "Go to device details for associated device. N/A means that there's no associated device.",
- "batch": "A string attribute that can be used to identify a group of devices. Intune's Group Tag field maps to the OrderID attribute on Azure AD devices.",
- "dateAssigned": "Timestamp of when the profile was assigned to the device.",
- "deviceDisplayName": "Configure a unique name for a device. This name will be ignored in Hybrid Azure AD joined deployments. Device name still comes from the domain join profile for Hybrid Azure AD devices.",
- "deviceName": "The name shown when someone tried to discover and connect to the device.",
- "deviceUseType": " Device would setup based on your choice. You can always change later in settings.\n \n - For meetings and presentations, Windows Hello isn't turned on and data is removed after each session.\n
\n - For team collaboration, Windows Hello is turned on and profiles are saved for quick sign-in
\n
",
- "enrollmentState": "Specifies if the device has enrolled.",
- "intuneDevice": "Go to device details for associated device. N/A means that there's no associated device.",
- "lastContacted": "Timestamp of when the device was last contacted.",
- "make": "Manufacturer of the selected device.",
- "model": "Model of the selected device",
- "profile": "Name of the profile assigned to the device.",
- "profileStatus": "Specifies if a profile is assigned to the device.",
- "purchaseOrderId": "Purchase Order ID",
- "resourceAccount": "The device's identity, or user principal name (UPN).",
- "serialNumber": "Serial number of the selected device.",
- "userPrincipalName": "User to pre-fill authentication during device setup."
- },
- "allDevices": "All devices",
- "allDevicesAlreadyAssignedError": "An Autopilot profile is already assigned to All Devices.",
- "assignFailedDescription": "Failed to update assignments for {0}.",
- "assignFailedTitle": "Failed to update Autopilot profile assignments.",
- "assignSuccessDescription": "Successfully updated assignments for {0}.",
- "assignSuccessTitle": "Successfully updated Autopilot profile assignments.",
- "assignSufaceHub2ProfileNextStep": "Next steps for this deployment",
- "assignSurfaceHub2ProfileToDeviceGroup": "1. Assign this profile to at least one device group",
- "assignSurfaceHub2ProfileToResourceAccount": "2. Assign a resource account to each Surface Hub device to which you deploy this profile",
- "assignedDevicesCount": "Assigned devices",
- "assignedDevicesResourceAccountDescription": "To deploy this profile to a device, you must assign the device a Resource account. Select one device at a time to assign an existing Resource account or to create a new one. Learn more about Resource Accounts
",
- "assignedDevicesResourceAccountStatusBarMessage": "This table only lists the Surface Hub 2 devices that have been assigned this profile.",
- "assigningDescription": "Updating assignments for {0}.",
- "assigningTitle": "Updating Autopilot profile assignments.",
- "cannotDeleteMessage": "This profile is assigned to groups. You must unassign all groups from this profile before you can delete it.",
- "cannotDeleteTitle": "Cannot delete {0}",
- "createdDateTime": "Created",
- "deleteMessage": "If you delete this Autopilot profile, any devices assigned to this profile will display Unassigned.",
- "deleteMessageWithPolicySet": "{0} is included in one more more policy sets. If you delete {0}, you'll no longer be able to assign it via these policy sets.",
- "deleteTitle": "Are you sure you want to delete this profile?",
- "description": "Description",
- "deviceType": "Device type",
- "deviceUse": "Device use",
- "directoryServiceHintForSurfaceHub2": " \n Autopilot only supports Azure AD Joined for Surface Hub 2 devices. Specify how devices join Active Directory (AD) in your organization.\n
\n \n - \n Azure AD joined: Cloud-only without an on-premises Windows Server Active Directory.\n
\n
\n ",
- "directoryServiceHintForWindowsPC": "\n \n Specify how devices join Active Directory (AD) in your organization:\n
\n \n - \n Azure AD joined: Cloud-only without an on-premises Windows Server Active Directory\n
\n
\n ",
- "getAssignedDevicesCountError": "An error occurred while fetching the assigned devices count.",
- "getAssignmentsError": "An error occurred while fetching Autopilot profile assignments.",
- "harvestDeviceId": "Convert all targeted devices to Autopilot",
- "harvestDeviceIdDescription": "By default, this profile can only be applied to Autopilot devices synced from the Autopilot service.",
- "harvestDeviceIdInfo": "\n Select Yes to register all targeted devices to Autopilot if they are not already registered. The next time registered devices go through the Windows Out of Box Experience (OOBE), they will go through the assigned Autopilot scenario.\n
\n Please note that certain Autopilot scenarios require specific minimum builds of Windows. Please make sure your device has the required minimum build to go through the scenario.\n
\n Removing this profile won’t remove affected devices from Autopilot. To remove a device from Autopilot, use the Windows Autopilot Devices view.\n ",
- "harvestDeviceIdWarning": "After conversion, Autopilot devices can only be reverted by deleting them from the Autopilot devices list.",
- "holoLensCommandMenu": "HoloLens",
- "info": "Windows Autopilot deployment profiles lets you customize the out-of-box experience for your devices.",
- "invalidProfileNameMessage": "Character \"{0}\" is not allowed",
- "joinTypeLabel": "Join Azure AD as",
- "lastModifiedDateTime": "Last modified:",
- "name": "Name",
- "noAutopilotProfile": "No Autopilot profiles",
- "notEnoughPermissionAssignedError": "You don't have enough permissions to assign this profile to one or more of your selected groups. Please contact your administrator.",
- "profile": "profile",
- "resourceAccountStatusBarMessage": "A Resource Account is required for each Surface Hub 2 device to which this profile is deployed. Click to learn more.",
- "selectServices": "Select directory service devices will join",
- "surfaceHub2CommandMenu": "Surface Hub 2",
- "surfaceHub2SCommandMenu": "Surface Hub 2S",
- "userAffinityLabel": "Deployment mode",
- "windowsPCCommandMenu": "Windows PC",
- "directoryServiceLabel": "Join to Azure AD as"
- },
- "AppInformationTab": {
- "Error": {
- "multipleChildApps": "A macOS LOB app can only be installed as managed when the uploaded package contains a single app."
- },
- "Info": {
- "AppStoreUrl": {
- "android": "Enter the link to the app listing in Google Play store. For example:",
- "androidLink": "https://play.google.com/store/apps/details?id=com.microsoft.office.outlook",
- "windows": "Enter the link to the app listing in the Microsoft Store. For example:",
- "windowsLink": "https://www.microsoft.com/en-us/p/microsoft-to-do-lists-tasks-reminders/9nblggh5r558"
- },
- "appPackageFile": "A file that contains your app in a format that can be sideloaded on a device. Valid package types include: Android (.apk), iOS (.ipa), macOS (.intunemac), Windows (.msi, .appx, .appxbundle, .msix, and .msixbundle).",
- "applicableDeviceType": "Select the device types that can install this app.",
- "category": "Categorize the app to make it easier for users to sort and find in Company Portal. You can choose multiple categories.",
- "categoryLink": "https://docs.microsoft.com/en-us/intune/apps/apps-add#create-and-edit-categories-for-apps",
- "description": "Help your device users understand what the app is and/or what they can do in the app. This description will be visible to them in Company Portal.",
- "developer": "The name of the company or Individual that developed the app. This information will be visible to people signed into the admin center.",
- "displayVersion": "The version of the app. This information will be visible to users in the Company Portal.",
- "infoUrl": "Link people to a website or documentation that has more information about the app. The information URL will be visible to users in Company Portal.",
- "isFeatured": "Featured apps are prominently placed in Company Portal so that users can quickly get to them.",
- "learnMore": "Learn more",
- "logo": "Upload a logo that's associated with the app. This logo will appear next to the app throughout Company Portal.",
- "macOSDmgAppPackageFile": "A file that contains your app in a format that can be sideloaded on a device. Valid package type: .dmg.",
- "minOperatingSystem": "Select the earliest operating system version on which the app can be installed. If you assign the app to a device with an earlier operating system, it will not be installed.",
- "name": "Add a name for the app. This name will be visible in the Intune apps list and to users in the Company Portal.",
- "notes": "Add additional notes about the app. Notes will be visible to people signed in to the admin center.",
- "owner": "The name of the person in your organization who manages licensing or is the point-of-contact for this app. This name will be visible to people signed in to the admin center.",
- "packageName": "Contact the device manufacturer to get the app's package name. Example package name: com.example.app",
- "privacyUrl": "Provide a link for people who want to learn more about the app's privacy settings and terms. The privacy URL will be visible to users in Company Portal.",
- "publisher": "The name of the developer or company that distributes the app. This information will be visible to users in Company Portal.",
- "selectApp": "Search the App Store for iOS store apps that you want to deploy with Intune.",
- "useManagedBrowser": "If required, when a user opens the web app, it will open in an Intune-protected browser such as Microsoft Edge or Intune Managed Browser. This setting applies to both iOS and Android devices.",
- "useManagedBrowserLink": "https://docs.microsoft.com/en-us/intune/apps/app-configuration-managed-browser",
- "win32AppPackageFile": "A file that contains your app in a format that can be sideloaded on a device. Valid package type: .intunewin."
- },
- "descriptionPreview": "Preview",
- "descriptionRequired": "Description is required.",
- "editDescription": "Edit Description",
- "name": "App information",
- "nameForOfficeSuitApp": "App suite information"
- },
+ "Columns": {
+ "codeType": "Code type",
+ "returnCode": "Return code"
+ },
+ "bladeTitle": "Return codes",
+ "gridAriaLabel": "Return codes",
+ "header": "Specify return codes to indicate post-installation behavior:",
+ "onAddAnnounceMessage": "Return code added item {0} of {1}",
+ "onDeleteSuccess": "Return code {0} deleted successfully",
+ "returnCodeAlreadyUsedValidation": "Return code is already used.",
+ "returnCodeMustBeIntegerValidation": "Return code should be an integer.",
+ "returnCodeShouldBeAtLeast": "Return code should be at least {0}.",
+ "returnCodeShouldBeAtMost": "Return code should be at most {0}.",
+ "selectorLabel": "Return codes"
+ },
"NotificationMessage": {
"NotificationMessageTemplatesTab": {
"arabic": "Arabic",
@@ -10516,84 +10079,599 @@
"localeLabel": "Locale",
"isDefaultLocale": "Is Default"
},
- "Win32Program": {
- "DeviceRestartBehaviorOptions": {
- "allow": "App install may force a device restart",
- "basedOnReturnCode": "Determine behavior based on return codes",
- "force": "Intune will force a mandatory device restart",
- "suppress": "No specific action"
- },
- "RunAsAccountOptions": {
- "system": "System",
- "user": "User"
- },
- "bladeTitle": "Program",
- "deviceRestartBehavior": "Device restart behavior",
- "deviceRestartBehaviorTooltip": "Select the device restart behavior after the app has successfully installed. Select 'Determine behavior based on return codes' to restart the device based on the return codes configuration settings. Select 'No specific action' to suppress device restarts during the app install for MSI-based apps. Select 'App install may force a device restart' to allow the app install to complete without suppressing restarts. Select 'Intune will force a mandatory device restart' to always restart the device after successful app installation.",
- "header": "Specify the commands to install and uninstall this app:",
- "installCommand": "Install command",
- "installCommandMaxLengthErrorMessage": "Install command cannot exceed the maximum allowed length of 1024 characters.",
- "installCommandTooltip": "The complete installation command line used to install this app.",
- "runAs32Bit": "Run install and uninstall commands in a 32-bit process on 64-bit clients",
- "runAs32BitTooltip": "Select 'Yes' to install and uninstall the app in a 32-bit process on 64-bit clients. Select 'No' (default) to install and uninstall the app in a 64-bit process on 64-bit clients. 32-bit clients will always use a 32-bit process.",
- "runAsAccount": "Install behavior",
- "runAsAccountTooltip": "Select 'System' to install this app for all users if supported. Select 'User' to install this app for the logged-in user on the device. For dual-purpose MSI apps, changes will prevent updates and uninstalls from successfully completing until the value applied to the device at the time of the original install is restored.",
- "selectorLabel": "Program",
- "uninstallCommand": "Uninstall command",
- "uninstallCommandTooltip": "The complete uninstallation command line used to uninstall this app."
- },
- "OutlookAppConfigSettings": {
- "AllowUserToChangeSetting": {
- "title": "Allow user to change setting",
- "tooltip": "Specify if the user is allowed to change the setting."
- },
- "AllowWorkAccounts": {
- "title": "Allow only work or school accounts",
- "tooltip": " By enabling this setting, users will be unable to add personal email and storage accounts within Outlook. If the user has a personal account added to Outlook, the user is prompted to remove the personal account. If the user does not remove the personal account, the work or school account cannot be added."
- },
- "BlockExternalImages": {
- "title": "Block external images",
- "tooltip": "When block external images is enabled, the app will prevent the download of images hosted on the Internet that are embedded in the message body. When set as not configured, the default app setting is set to Off"
- },
- "ConfigureEmail": {
- "title": "Configure email account settings"
- },
- "DefaultAppSignatureSetting": {
- "Tooltip": {
- "android": "Default app signature indicates whether the app will use “Get Outlook for Android” as the default signature during message composition. If the setting is configured as Off, the default signature will not be used; however, users can add their own signature.\n\nWhen set as Not Configured, the default app setting is set to On.",
- "iOS": "Default app signature indicates whether the app will use “Get Outlook for iOS” as the default signature during message composition. If the setting is configured as Off, the default signature will not be used; however, users can add their own signature.\n\nWhen set as Not Configured, the default app setting is set to On."
- },
- "title": "Default app signature"
- },
- "OfficeFeedReplies": {
- "title": "Discover Feed",
- "tooltip": "Discover Feed surfaces your most frequently accessed Office files. By default, this feed is enabled when Delve is enabled for the user. When set as not configured, the default app setting is set to On."
- },
- "OrganizeMailByThread": {
- "title": "Organize mail by thread",
- "tooltip": "The default behavior in Outlook is to bundle mail conversations into a threaded conversation view. If this setting is disabled Outlook will display each mail individually and will not group them by thread."
- },
- "PlayMyEmails": {
- "title": "Play My Emails",
- "tooltip": "The Play My Emails feature is not enabled by default in the app, but it is promoted to eligible users via a banner in the inbox. When set to Off, this feature will not be promoted to eligible users in the app. Users can choose to manually enable Play My Emails from within the app, even when this feature is set to Off. When set as Not configured, the default app setting is On and the feature will be promoted to eligible users."
- },
- "SuggestedReplies": {
- "title": "Suggested replies",
- "tooltip": "When you open a message, Outlook might suggest replies below the message. If you select a suggested reply, you can edit the reply before sending it."
- },
- "SyncCalendars": {
- "title": "Sync Calendars",
- "tooltip": "Configure whether users can sync their Outlook calendar to the native calendar app and database."
- },
- "TextPredictions": {
- "title": "Text Predictions",
- "tooltip": "Outlook can suggest words and phrases as you compose messages. When Outlook offers a suggestion, swipe to accept it. When set as not configured, the default app setting is set to On."
+ "WindowsQualityUpdateProfile": {
+ "Details": {
+ "DaysUntilForcedReboot": {
+ "label": "Number of days to wait before restart is enforced"
+ },
+ "Description": {
+ "label": "Description"
+ },
+ "Name": {
+ "label": "Name"
+ },
+ "QualityUpdateRelease": {
+ "label": "Expedite installation of quality updates if device OS version less than:"
+ },
+ "bladeTitle": "Quality updates Windows 10 and later (Preview)",
+ "loadError": "Loading failed!"
+ },
+ "TabName": {
+ "qualityUpdateSettings": "Settings"
+ },
+ "infoBoxText": "The only dedicated quality update control currently available other than the existing update rings policy for Windows 10 and later is the ability to expedite quality updates for devices that fall behind a specified patch level. Additional controls will be available in the future.",
+ "warningBoxText": "While expediting software updates can help decrease the time to get to compliance when necessary, it has a larger impact on end-user productivity. The chances that they will experience a restart during business hours is significantly increased."
+ },
+ "TermsOfUse": {
+ "Languages": {
+ "addLanguage": "Add language",
+ "af": "Afrikaans",
+ "am": "Amharic",
+ "arSA": "Arabic (Saudi Arabia)",
+ "as": "Assamese",
+ "az": "Azerbaijani",
+ "be": "Belarusian",
+ "bg": "Bulgarian",
+ "bn": "Bangla",
+ "bnIN": "Bangla (India)",
+ "bs": "Bosnian",
+ "ca": "Catalan",
+ "caESvalencia": "Valencian (Spain)",
+ "cs": "Czech",
+ "cy": "Welsh",
+ "da": "Danish",
+ "de": "German",
+ "default": "Default",
+ "defaultDetailsTag": "{0} (Default)",
+ "el": "Greek",
+ "en": "English",
+ "enGB": "English (United Kingdom)",
+ "es": "Spanish",
+ "esMX": "Spanish (Mexico)",
+ "et": "Estonian",
+ "eu": "Basque",
+ "fa": "Persian",
+ "fi": "Finnish",
+ "fil": "Filipino",
+ "fr": "French",
+ "frCA": "French (Canada)",
+ "ga": "Irish",
+ "gd": "Scottish Gaelic",
+ "gl": "Galician",
+ "gu": "Gujarati",
+ "ha": "Hausa",
+ "he": "Hebrew",
+ "hi": "Hindi",
+ "hr": "Croatian",
+ "hu": "Hungarian",
+ "hy": "Armenian",
+ "id": "Indonesian",
+ "ig": "Igbo",
+ "is": "Icelandic",
+ "it": "Italian",
+ "ja": "Japanese",
+ "ka": "Georgian",
+ "kk": "Kazakh",
+ "km": "Khmer",
+ "kn": "Kannada",
+ "ko": "Korean",
+ "kok": "Konkani",
+ "kuArab": "Central Kurdish (Arabic)",
+ "ky": "Kyrgyz",
+ "languageOptions": "Language Options",
+ "lb": "Luxembourgish",
+ "lo": "Lao",
+ "lt": "Lithuanian",
+ "lv": "Latvian",
+ "mi": "Maori",
+ "mk": "Macedonian",
+ "ml": "Malayalam",
+ "mn": "Mongolian",
+ "mr": "Marathi",
+ "ms": "Malay",
+ "mt": "Maltese",
+ "ne": "Nepali",
+ "nl": "Dutch",
+ "nnNO": "Norwegian, Nynorsk (Norway)",
+ "no": "Norwegian",
+ "notSpecified": "Language not specified",
+ "nso": "Sesotho sa Leboa",
+ "or": "Odia",
+ "paArabPK": "Punjabi (Islamic Republic of Pakistan)",
+ "paIN": "Punjabi (India)",
+ "pl": "Polish",
+ "prs": "Dari",
+ "ptBR": "Portuguese (Brazil)",
+ "ptPT": "Portuguese (Portugal)",
+ "quz": "Quechua",
+ "ro": "Romanian",
+ "ru": "Russian",
+ "rw": "Kinyarwanda",
+ "sd": "Sindhi",
+ "si": "Sinhala",
+ "sk": "Slovak",
+ "sl": "Slovenian",
+ "sq": "Albanian",
+ "srCyrlBA": "Serbian (Cyrillic, Bosnia and Herzegovina)",
+ "srCyrlRS": "Serbian (Cyrillic, Serbia)",
+ "srLatnRS": "Serbian (Latin, Serbia)",
+ "sv": "Swedish",
+ "sw": "Kiswahili",
+ "ta": "Tamil",
+ "te": "Telugu",
+ "tg": "Tajik",
+ "th": "Thai",
+ "ti": "Tigrinya",
+ "tk": "Turkmen",
+ "tn": "Setswana",
+ "tr": "Turkish",
+ "tt": "Tatar",
+ "ug": "Uyghur",
+ "uk": "Ukrainian",
+ "ur": "Urdu",
+ "uz": "Uzbek",
+ "vi": "Vietnamese",
+ "wo": "Wolof",
+ "xh": "isiXhosa",
+ "yo": "Yoruba",
+ "zhHans": "Chinese (Simplified)",
+ "zhHant": "Chinese (Traditional)",
+ "zu": "isiZulu"
+ },
+ "AcceptanceExpirationFrequency": {
+ "annually": "Annually",
+ "biannually": "Bi-annually",
+ "monthly": "Monthly",
+ "quarterly": "Quarterly"
},
- "ThemesEnabled": {
- "title": "Themes enabled",
- "tooltip": "Specify if the user is allowed to use a custom visual theme."
- }
- },
+ "Wizard": {
+ "AgreementTargetEntityScope": {
+ "NotSelected": {
+ "label": "None selected"
+ },
+ "selectEntityTitle": "Select group",
+ "title": "Select group"
+ },
+ "PolicyFile": {
+ "Languages": {
+ "Empty": {
+ "default": "Select default language",
+ "nonDefault": "Select a language"
+ }
+ },
+ "Validations": {
+ "duplicateLanguage": "Oops, {0} appears to be selected multiple times. Language selection must be unique."
+ }
+ },
+ "PolicyTemplate": {
+ "InfoBox": {
+ "allGuestsAllApps": "A conditional access policy will be created for all guests and all cloud apps. This policy impacts the Azure portal. Once this is created you might be required to sign-out and sign-in.",
+ "allUsersAllApps": "A conditional access policy will be created for all users and all cloud apps. This policy impacts the Azure portal. Once this is created you will be required to sign-out and sign-in.",
+ "custom": "Select the users, groups, and apps that this Terms of Use will be applied to.",
+ "noPolicy": "This terms of use will appear in the grant control list when creating a conditional access policy."
+ }
+ },
+ "Section": {
+ "conditionalAccessSubtitle": "Enforce with conditional access policy templates",
+ "conditionalAccessTitle": "Conditional access",
+ "termsOfUseSubtitle": "Create and upload documents",
+ "termsOfUseTitle": "Terms of use"
+ },
+ "acceptanceDurationInfo": "The terms of use will be enforced immediately and each user will have to re-consent every specified number of days.",
+ "acceptanceDurationLabel": "Duration before re-acceptance required (days)",
+ "acceptanceDurationPlaceholder": "Example: '90'",
+ "acceptanceExpirationFrequencyInfo": "Require users to consent on a recurring basis.",
+ "acceptanceExpirationFrequencyLabel": "Frequency",
+ "acceptanceExpirationStartDateTimeInfo": "The terms of use will be enforced immediately and users will be required to re-consent on this date.",
+ "acceptanceExpirationStartDateTimeLabel": "Expire starting on",
+ "agreementIsPerDeviceAcceptanceRequiredInfo": "The end users will be required to consent to the terms of use on every device.",
+ "agreementIsPerDeviceAcceptanceRequiredLabel": "Require users to consent on every device",
+ "agreementIsViewingBeforeAcceptanceRequiredInfo": "The end users will be required to view the terms of use prior to accepting.",
+ "agreementIsViewingBeforeAcceptanceRequiredLabel": "Require users to expand the terms of use",
+ "agreementNameInfo": "Name will be used to manage the terms of use within the Azure portal.",
+ "agreementNameLabel": "Name",
+ "agreementNamePlaceholderText": "Example: 'All users terms of use'",
+ "agreementRequirmentLabel": "Required Upon",
+ "agreementTargetEntityLabel": "Users targeted",
+ "agreementUploadPolicyLabel": "Terms of use",
+ "agreementUploadPolicyPlaceholderText": "Upload required PDF",
+ "createButtonLabel": "Create",
+ "createPolicyInfo": "In order to enforce the terms of use, a conditional access policy is required. You can create a conditional access policy targeted to specific users and applications later or use one of the predefined templates.",
+ "createPolicyLabel": "Create a policy",
+ "isAcceptanceExpirationEnabledInfo": "The terms of use will be enforced immediately and all users will be forced to re-consent on a schedule.",
+ "isAcceptanceExpirationEnabledLabel": "Expire consents",
+ "pdfValidationInvalidFileFormat": "The file must be in the .pdf format.",
+ "policyFilesInfo": "Upload a PDF file containing the terms of use that your end users must accept. Based on end user preferences they will be shown the appropriate language or if not match the default language will be shown.
For end users agreeing on mobile devices, we recommend the PDF font size to be at least 24 pt.
Display name will be the title of the terms of use that is presented to the end user.",
+ "policyFilesLabel": "Terms of use document",
+ "policyTemplateInfo": "These templates are pre configured conditional access policies that are targeted to specific users and applications.",
+ "policyTemplateLabel": "Policy templates",
+ "title": "New terms of use"
+ }
+ },
+ "TACSettings": {
+ "edgeSettings": "Edge configuration settings",
+ "edgeWindowsDataProtectionSettings": "Edge (Windows) data protection settings - Preview",
+ "edgeWindowsSettings": "Edge (Windows) configuration settings - Preview",
+ "generalAppConfig": "General app configuration",
+ "generalSettings": "General configuration settings",
+ "outlookSMIMEConfig": "Outlook S/MIME settings",
+ "outlookSettings": "Outlook configuration settings",
+ "sMIME": "S/MIME"
+ },
+ "MicrosoftEdgeChannel": {
+ "beta": "Beta",
+ "dev": "Dev",
+ "stable": "Stable"
+ },
+ "WipPolicySettings": {
+ "addNetworkBoundary": "Add network boundary",
+ "addNetworkBoundaryButton": "Add network boundary...",
+ "allowWindowsSearch": "Allow Windows Search to search encrypted corporate data and Store apps",
+ "authoritativeIpRanges": "Enterprise IP Ranges list is authoritative (do not auto-detect)",
+ "authoritativeProxyServers": "Enterprise Proxy Servers list is authoritative (do not auto-detect)",
+ "boundaryType": "Boundary type",
+ "cloudResources": "Cloud resources",
+ "corporateIdentity": "Corporate identity",
+ "dataRecoveryCert": "Upload a Data Recovery Agent (DRA) certificate to allow recovery of encrypted data",
+ "editNetworkBoundary": "Edit network boundary",
+ "enrollmentState": "Enrollment state",
+ "iPv4Ranges": "IPv4 ranges",
+ "iPv6Ranges": "IPv6 ranges",
+ "internalProxyServers": "Internal proxy servers",
+ "maxInactivityTime": "Maximum amount of time (in minutes) allowed after the device is idle that will cause the device to become PIN or password locked",
+ "maxPasswordAttempts": "Number of authentication failures allowed before the device will be wiped",
+ "mdmDiscoveryUrl": "MDM discovery URL",
+ "mdmRequiredSettingsInfo": "This policy only applies to Windows 10 Anniversary Edition and higher. This policy uses Windows Information Protection (WIP) to apply protection.",
+ "minimumPinLength": "Set the minimum number of characters required for the PIN",
+ "name": "Name",
+ "networkBoundariesGridEmptyText": "Any network boundaries you add will show up here",
+ "networkBoundary": "Network boundary",
+ "networkDomainNames": "Network domains",
+ "neutralResources": "Neutral resources",
+ "passportForWork": "Use Windows Hello for Business as a method for signing into Windows",
+ "pinExpiration": "Specify the period of time (in days) that a PIN can be used before the system requires the user to change it",
+ "pinHistory": "Specify the number of past PINs that can be associated to a user account that can’t be reused",
+ "pinLowercaseLetters": "Configure the use of lowercase letters in the Windows Hello for Business PIN",
+ "pinSpecialCharacters": "Configure the use of special characters in the Windows Hello for Business PIN",
+ "pinUppercaseLetters": "Configure the use of uppercase letters in the Windows Hello for Business PIN",
+ "protectUnderLock": "Prevent corporate data from being accessed by apps when the device is locked. Applies only to Windows 10 Mobile",
+ "protectedDomainNames": "Protected domains",
+ "proxyServers": "Proxy servers",
+ "requireAppPin": "Disable app PIN when device PIN is managed",
+ "requiredSettings": "Required settings",
+ "requiredSettingsInfo": "Changing the scope or removing this policy will decrypt corporate data.",
+ "revokeOnMdmHandoff": "Revoke access to protected data when the device enrolls to MDM",
+ "revokeOnUnenroll": "Revoke encryption keys on unenroll",
+ "rmsTemplateForEdp": "Specify the template ID to use for Azure RMS",
+ "showWipIcon": "Show the enterprise data protection icon",
+ "type": "Type",
+ "useRmsForWip": "Use Azure RMS for WIP",
+ "value": "Value",
+ "weRequiredSettingsInfo": "This policy only applies to Windows 10 Creators Update and higher. This policy uses Windows Information Protection (WIP) and Windows MAM to apply protection.",
+ "wipProtectionMode": "Windows Information Protection mode",
+ "withEnrollment": "With enrollment",
+ "withoutEnrollment": "Without enrollment"
+ },
+ "OfficeApplicationAdditionalType": {
+ "projectProRetail": "Project Online Desktop Client",
+ "visioProRetail": "Visio Online Plan 2"
+ },
+ "Countries": {
+ "ae": "United Arab Emirates",
+ "ag": "Antigua and Barbuda",
+ "ai": "Anguilla",
+ "al": "Albania",
+ "am": "Armenia",
+ "ao": "Angola",
+ "ar": "Argentina",
+ "at": "Austria",
+ "au": "Australia",
+ "az": "Azerbaijan",
+ "bb": "Barbados",
+ "be": "Belgium",
+ "bf": "Burkina Faso",
+ "bg": "Bulgaria",
+ "bh": "Bahrain",
+ "bj": "Benin",
+ "bm": "Bermuda",
+ "bn": "Brunei",
+ "bo": "Bolivia",
+ "br": "Brazil",
+ "bs": "Bahamas",
+ "bt": "Bhutan",
+ "bw": "Botswana",
+ "by": "Belarus",
+ "bz": "Belize",
+ "ca": "Canada",
+ "cg": "Republic Of Congo",
+ "ch": "Switzerland",
+ "cl": "Chile",
+ "cn": "China",
+ "co": "Colombia",
+ "cr": "Costa Rica",
+ "cv": "Cape Verde",
+ "cy": "Cyprus",
+ "cz": "Czech Republic",
+ "de": "Germany",
+ "dk": "Denmark",
+ "dm": "Dominica",
+ "do": "Dominican Republic",
+ "dz": "Algeria",
+ "ec": "Ecuador",
+ "ee": "Estonia",
+ "eg": "Egypt",
+ "es": "Spain",
+ "fi": "Finland",
+ "fj": "Fiji",
+ "fm": "Federated States Of Micronesia",
+ "fr": "France",
+ "gb": "United Kingdom",
+ "gd": "Grenada",
+ "gh": "Ghana",
+ "gm": "Gambia",
+ "gr": "Greece",
+ "gt": "Guatemala",
+ "gw": "Guinea-Bissau",
+ "gy": "Guyana",
+ "hk": "Hong Kong",
+ "hn": "Honduras",
+ "hr": "Croatia",
+ "hu": "Hungary",
+ "id": "Indonesia",
+ "ie": "Ireland",
+ "il": "Israel",
+ "in": "India",
+ "is": "Iceland",
+ "it": "Italy",
+ "jm": "Jamaica",
+ "jo": "Jordan",
+ "jp": "Japan",
+ "ke": "Kenya",
+ "kg": "Kyrgyzstan",
+ "kh": "Cambodia",
+ "kn": "St. Kitts and Nevis",
+ "kr": "Republic Of Korea",
+ "kw": "Kuwait",
+ "ky": "Cayman Islands",
+ "kz": "Kazakstan",
+ "la": "Lao People’s Democratic Republic",
+ "lb": "Lebanon",
+ "lc": "St. Lucia",
+ "lk": "Sri Lanka",
+ "lr": "Liberia",
+ "lt": "Lithuania",
+ "lu": "Luxembourg",
+ "lv": "Latvia",
+ "md": "Republic Of Moldova",
+ "mg": "Madagascar",
+ "mk": "North Macedonia",
+ "ml": "Mali",
+ "mn": "Mongolia",
+ "mo": "Macau",
+ "mr": "Mauritania",
+ "ms": "Montserrat",
+ "mt": "Malta",
+ "mu": "Mauritius",
+ "mw": "Malawi",
+ "mx": "Mexico",
+ "my": "Malaysia",
+ "mz": "Mozambique",
+ "na": "Namibia",
+ "ne": "Niger",
+ "ng": "Nigeria",
+ "ni": "Nicaragua",
+ "nl": "Netherlands",
+ "no": "Norway",
+ "np": "Nepal",
+ "nz": "New Zealand",
+ "om": "Oman",
+ "pa": "Panama",
+ "pe": "Peru",
+ "pg": "Papua New Guinea",
+ "ph": "Philippines",
+ "pk": "Pakistan",
+ "pl": "Poland",
+ "pt": "Portugal",
+ "pw": "Palau",
+ "py": "Paraguay",
+ "qa": "Qatar",
+ "ro": "Romania",
+ "ru": "Russia",
+ "sa": "Saudi Arabia",
+ "sb": "Solomon Islands",
+ "sc": "Seychelles",
+ "se": "Sweden",
+ "sg": "Singapore",
+ "si": "Slovenia",
+ "sk": "Slovakia",
+ "sl": "Sierra Leone",
+ "sn": "Senegal",
+ "sr": "Suriname",
+ "st": "Sao Tome and Principe",
+ "sv": "El Salvador",
+ "sz": "Swaziland",
+ "tc": "Turks and Caicos",
+ "td": "Chad",
+ "th": "Thailand",
+ "tj": "Tajikistan",
+ "tm": "Turkmenistan",
+ "tn": "Tunisia",
+ "tr": "Turkey",
+ "tt": "Trinidad and Tobago",
+ "tw": "Taiwan",
+ "tz": "Tanzania",
+ "ua": "Ukraine",
+ "ug": "Uganda",
+ "us": "United States",
+ "uy": "Uruguay",
+ "uz": "Uzbekistan",
+ "vc": "St. Vincent and The Grenadines",
+ "ve": "Venezuela",
+ "vg": "British Virgin Islands",
+ "vn": "Vietnam",
+ "ye": "Yemen",
+ "za": "South Africa",
+ "zw": "Zimbabwe"
+ },
+ "OfficeUpdateChannel": {
+ "current": "Current Channel",
+ "deferred": "Semi-Annual Enterprise Channel",
+ "firstReleaseCurrent": "Current Channel (Preview)",
+ "firstReleaseDeferred": "Semi-Annual Enterprise Channel (Preview)",
+ "monthlyEnterprise": "Monthly Enterprise Channel",
+ "placeHolder": "Select one"
+ },
+ "AppProtection": {
+ "allAppTypes": "Target to all app types",
+ "androidPlatformLabel": "Android",
+ "appsInAndroidWorkProfile": "Apps in Android Work Profile",
+ "appsOnIntuneManagedDevices": "Apps on Intune managed devices",
+ "appsOnUnmanagedDevices": "Apps on unmanaged devices",
+ "iOSPlatformLabel": "iOS/iPadOS",
+ "iosAndroidMacPlatformLabel": "iOS, Android, Mac",
+ "iosAndroidPlatformLabel": "iOS, Android",
+ "macPlatformLabel": "Mac",
+ "notAvailable": "Not Available",
+ "windows10PlatformLabel": "Windows 10 and later",
+ "withEnrollment": "With enrollment",
+ "withoutEnrollment": "Without enrollment"
+ },
+ "InstallContextType": {
+ "device": "Device",
+ "deviceContext": "Device context",
+ "user": "User",
+ "userContext": "User context"
+ },
+ "ProactiveRemediations": {
+ "Create": {
+ "Basics": {
+ "DescriptionMultiLineTextBox": {
+ "label": "Description",
+ "placeholder": "Enter a description"
+ },
+ "NameTextBox": {
+ "label": "Name",
+ "placeholder": "Enter a name"
+ },
+ "PublisherTextBox": {
+ "label": "Publisher",
+ "placeholder": "Enter a publisher"
+ },
+ "VersionTextBox": {
+ "label": "Version"
+ },
+ "headerDescription": "Create a new custom script package from detection and remediation scripts that you’ve written."
+ },
+ "ScopeTags": {
+ "headerDescription": "Select one or more groups to assign the script package."
+ },
+ "Settings": {
+ "DetectionScriptMultiLineTextBox": {
+ "label": "Detection script",
+ "placeholder": "Input script text",
+ "requiredValidationMessage": "Please enter the detection script"
+ },
+ "EnforceScriptSignatureCheckOptionPicker": {
+ "label": "Enforce script signature check"
+ },
+ "LoggedOnCredentialsOptionPicker": {
+ "label": "Run this script using the logged-on credentials"
+ },
+ "RemediationScript": {
+ "infoBox": "This script will run in detect-only mode because there is no remediation script."
+ },
+ "RemediationScriptMultiLineTextBox": {
+ "label": "Remediation script",
+ "placeholder": "Input script text"
+ },
+ "RunIn64BitPSOptionPicker": {
+ "label": "Run script in 64-bit PowerShell"
+ },
+ "ScriptMultiLineTextBox": {
+ "base64EncodingValidationMessage": "Invalid script. One or more characters used in the script is not valid."
+ },
+ "headerDescription": "Create a custom script package from scripts you've written. By default, scripts will run on assigned devices every day.",
+ "infoBox": "This script is read-only. Some of the settings for this script might be disabled."
+ },
+ "title": "Create custom script",
+ "ScriptProperties": {
+ "GridHeaders": {
+ "interval": "Interval",
+ "time": "Date and time"
+ },
+ "Interval": {
+ "day": "Repeats every day",
+ "days": "Repeats every {0} days",
+ "hour": "Repeats every hour",
+ "hours": "Repeats every {0} hours",
+ "month": "Repeats every month",
+ "months": "Repeats every {0} months",
+ "week": "Repeats every week",
+ "weeks": "Repeats every {0} weeks"
+ },
+ "Time": {
+ "utc": "{0} (UTC)",
+ "utcWithDate": "{0} (UTC) on {1}",
+ "withDate": "{0} on {1}"
+ }
+ }
+ },
+ "Edit": {
+ "title": "Edit - {0}"
+ }
+ },
+ "EdgeAppConfig": {
+ "AllowedURLs": {
+ "title": "Allowed URLs",
+ "tooltip": "Specify the sites your users are allowed to access while in their work context. No other sites will be allowed. You may choose to configure either an allowed/blocked list, but not both. "
+ },
+ "ApplicationProxyRedirection": {
+ "header": "Application proxy",
+ "title": "Application proxy redirection",
+ "tooltip": "Enable App proxy redirection to give users access to corporate links and on-premise web apps."
+ },
+ "BlockedURLs": {
+ "title": "Blocked URLs",
+ "tooltip": "Specify the sites that are blocked for your users while in their work context. All other sites will be allowed. You may choose to configure either an allowed/blocked list, but not both. "
+ },
+ "Bookmarks": {
+ "header": "Managed bookmarks",
+ "tooltip": "Enter a list of bookmarked URLs for your users to have available when using Microsoft Edge in their work context.",
+ "uRL": "URL"
+ },
+ "HomepageURL": {
+ "header": "Managed homepage",
+ "title": "Homepage shortcut URL",
+ "tooltip": "Configure a homepage shortcut that will appear to users as the first icon beneath the search bar when they open a new tab in Microsoft Edge."
+ },
+ "PersonalContext": {
+ "label": "Redirect restricted sites to personal context",
+ "tooltip": "Configure if users should be allowed to transition to their personal context to open restricted sites."
+ }
+ },
+ "BooleanActions": {
+ "allow": "Allow",
+ "block": "Block",
+ "configured": "Configured",
+ "disable": "Disable",
+ "dontRequire": "Don't Require",
+ "enable": "Enable",
+ "hide": "Hide",
+ "limit": "Limit",
+ "notConfigured": "Not configured",
+ "require": "Require",
+ "show": "Show",
+ "yes": "Yes"
+ },
+ "ArchitectureOptions": {
+ "sixtyFourBit": "64-bit",
+ "thirtyTwoBit": "32-bit"
+ },
+ "WindowsQualityUpdateDaysUntilForcedReboot": {
+ "oneDay": "1 day",
+ "twoDays": "2 days",
+ "zeroDays": "0 days"
+ },
"SoftwareUpdates": {
"BladeTitles": {
"overview": "Overview"
@@ -10800,66 +10878,732 @@
"notScannedYet": "Not scanned yet",
"outOfDateIosDevices": "Out of Date iOS Devices"
},
- "ScheduledAction": {
- "Form": {
- "editBlockActionInfo": "One block action is required for all compliance policies.",
- "graceperiod": "Schedule (days after noncompliance)",
- "graceperiodInfo": "Specify the number of days after noncompliance after which this action should be triggered for the user's device",
- "subtitle": "Specify action parameters",
- "title": "Action parameters"
- },
- "List": {
- "gracePeriodDay": "{0} day after noncompliance",
- "gracePeriodDays": "{0} days after noncompliance",
- "gracePeriodHour": "{0} hour after noncompliance",
- "gracePeriodHours": "{0} hours after noncompliance",
- "gracePeriodMinute": "{0} minute after noncompliance",
- "gracePeriodMinutes": "{0} minutes after noncompliance",
- "immediately": "Immediately",
- "schedule": "Schedule",
- "scheduleInfoBalloon": "Days after noncompliance",
- "subtitle": "Specify the sequence of actions on noncompliant devices",
- "title": "Actions"
- },
- "Notification": {
- "additionalEmailLabel": "Others",
- "additionalRecipients": "Additional recipients (via email)",
- "additionalRecipientsBladeTitle": "Select additional recipients",
- "emailAddressPrompt": "Enter email addresses (separated by commas)",
- "invalidEmail": "Invalid email address",
- "messageTemplate": "Message template",
- "noneSelected": "None selected",
- "notSelected": "Not selected",
- "numSelected": "{0} selected",
- "selected": "Selected"
+ "ConfigurationTypes": {
+ "Table": {
+ "androidDeviceOwnerGeneral": "Device restrictions (device owner)",
+ "androidForWorkGeneral": "Device restrictions (work profile)"
+ },
+ "androidCustom": "Custom",
+ "androidDeviceOwnerGeneral": "Device restrictions",
+ "androidDeviceOwnerPkcs": "PKCS Certificate",
+ "androidDeviceOwnerScep": "SCEP Certificate",
+ "androidDeviceOwnerTrustedCertificate": "Trusted Certificate",
+ "androidDeviceOwnerVpn": "VPN",
+ "androidDeviceOwnerWiFi": "Wi-Fi",
+ "androidEmailProfile": "Email (Samsung KNOX only)",
+ "androidForWorkCustom": "Custom",
+ "androidForWorkEmailProfile": "Email",
+ "androidForWorkGeneral": "Device restrictions",
+ "androidForWorkImportedPFX": "PKCS imported certificate",
+ "androidForWorkOemConfig": "OEMConfig",
+ "androidForWorkPKCS": "PKCS certificate",
+ "androidForWorkSCEP": "SCEP certificate",
+ "androidForWorkTrustedCertificate": "Trusted certificate",
+ "androidForWorkVpn": "VPN",
+ "androidForWorkWiFi": "Wi-Fi",
+ "androidGeneral": "Device restrictions",
+ "androidImportedPFX": "PKCS imported certificate",
+ "androidPKCS": "PKCS certificate",
+ "androidSCEP": "SCEP certificate",
+ "androidTrustedCertificate": "Trusted certificate",
+ "androidVPN": "VPN",
+ "androidWiFi": "Wi-Fi",
+ "androidZebraMx": "MX profile (Zebra only)",
+ "complianceAndroid": "Android compliance policy",
+ "complianceAndroidDeviceOwner": "Fully managed, dedicated, and corporate-owned work profile",
+ "complianceAndroidEnterprise": "Personally-owned work profile",
+ "complianceAndroidForWork": "Android for Work compliance policy",
+ "complianceIos": "iOS compliance policy",
+ "complianceMac": "Mac compliance policy",
+ "complianceWindows10": "Windows 10 and later compliance policy",
+ "complianceWindows10Mobile": "Windows 10 mobile compliance policy",
+ "complianceWindows8": "Windows 8 compliance policy",
+ "complianceWindowsPhone": "Windows Phone compliance policy",
+ "exchangeActiveSync": "Exchange Active Sync",
+ "iosCustom": "Custom",
+ "iosDerivedCredentialAuthenticationConfiguration": "Derived PIV credential",
+ "iosDeviceFeatures": "Device features",
+ "iosEDU": "Education",
+ "iosEducation": "Education",
+ "iosEmailProfile": "Email",
+ "iosGeneral": "Device restrictions",
+ "iosImportedPFX": "PKCS imported certificate",
+ "iosPKCS": "PKCS certificate",
+ "iosPresets": "Presets",
+ "iosSCEP": "SCEP certificate",
+ "iosTrustedCertificate": "Trusted certificate",
+ "iosVPN": "VPN",
+ "iosVPNZscaler": "VPN",
+ "iosWiFi": "Wi-Fi",
+ "macCustom": "Custom",
+ "macDeviceFeatures": "Device features",
+ "macEndpointProtection": "Endpoint protection",
+ "macExtensions": "Extensions",
+ "macGeneral": "Device restrictions",
+ "macImportedPFX": "PKCS imported certificate",
+ "macSCEP": "SCEP certificate",
+ "macTrustedCertificate": "Trusted certificate",
+ "macVPN": "VPN",
+ "macWiFi": "Wi-Fi",
+ "settingsCatalog": "Settings catalog (preview)",
+ "unsupported": "Unsupported",
+ "windows10AdministrativeTemplate": "Administrative Templates (Preview)",
+ "windows10Atp": "Microsoft Defender for Endpoint (desktop devices running Windows 10 or later)",
+ "windows10Custom": "Custom",
+ "windows10DesktopSoftwareUpdate": "Software Updates",
+ "windows10DeviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
+ "windows10EmailProfile": "Email",
+ "windows10EndpointProtection": "Endpoint protection",
+ "windows10EnterpriseDataProtection": "Windows Information Protection",
+ "windows10General": "Device restrictions",
+ "windows10ImportedPFX": "PKCS imported certificate",
+ "windows10Kiosk": "Kiosk",
+ "windows10NetworkBoundary": "Network boundary",
+ "windows10PKCS": "PKCS certificate",
+ "windows10PolicyOverride": "Override Group Policy",
+ "windows10SCEP": "SCEP certificate",
+ "windows10SecureAssessmentProfile": "Education profile",
+ "windows10SharedPC": "Shared multi-user device",
+ "windows10TeamGeneral": "Device restrictions (Windows 10 Team)",
+ "windows10TrustedCertificate": "Trusted certificate",
+ "windows10VPN": "VPN",
+ "windows10WiFi": "Wi-Fi",
+ "windows10WiFiCustom": "Wi-Fi custom",
+ "windows8General": "Device restrictions",
+ "windows8SCEP": "SCEP certificate",
+ "windows8TrustedCertificate": "Trusted certificate",
+ "windows8VPN": "VPN",
+ "windows8WiFi": "Wi-Fi import",
+ "windowsDeliveryOptimization": "Delivery Optimization",
+ "windowsDomainJoin": "Domain Join",
+ "windowsEditionUpgrade": "Edition upgrade and mode switch",
+ "windowsIdentityProtection": "Identity protection",
+ "windowsPhoneCustom": "Custom",
+ "windowsPhoneEmailProfile": "Email",
+ "windowsPhoneGeneral": "Device restrictions",
+ "windowsPhoneImportedPFX": "PKCS imported certificate",
+ "windowsPhoneSCEP": "SCEP certificate",
+ "windowsPhoneTrustedCertificate": "Trusted certificate",
+ "windowsPhoneVPN": "VPN",
+ "IosUpdate": "iOS Update policy"
+ },
+ "OfficeSuiteAppsTab": {
+ "acceptLicenseOnBehalfOfUsersLabel": "Accept the Microsoft Software License Terms on behalf of users",
+ "appSuiteConfigurationLabel": "App suite configuration",
+ "appSuiteInformationLabel": "App suite information",
+ "appsToBeInstalledLabel": "Apps to be installed as part of the suite",
+ "architectureLabel": "Architecture",
+ "architectureTooltip": "Defines whether the 32-bit or 64-bit edition of Microsoft 365 Apps is installed on devices.",
+ "configurationDesignerLabel": "Configuration designer",
+ "configurationFileLabel": "Configuration file",
+ "configurationSettingsFormatLabel": "Configuration settings format",
+ "configureAppSuiteLabel": "Configure app suite",
+ "configuredLabel": "Configured",
+ "currentVersionLabel": "Current version",
+ "currentVersionTooltip": "This is the current version of Office that’s configured in this suite. This value will be updated when a newer version is configured and saved.",
+ "enableMicrosoftSearchAsDefaultTooltip": "Installs a background service that helps determine whether a Microsoft Search in Bing extension for Google Chrome is installed on the device.",
+ "enterXmlDataLabel": "Enter XML data",
+ "languagesLabel": "Languages",
+ "languagesTooltip": "By default, Intune will install Office with the default language of the operating system. Choose any additional languages that you want to install.",
+ "learnMoreText": "Learn more",
+ "newUpdateChannelTooltip": "Defines how often the app is updated with new features.",
+ "noCurrentVersionText": "No current version",
+ "noLanguagesSelectedLabel": "No languages selected",
+ "notConfiguredLabel": "Not configured",
+ "propertiesLabel": "Properties",
+ "removeOtherVersionsLabel": "Remove other versions",
+ "removeOtherVersionsTooltip": "Select Yes to remove other versions of Office (MSI) from user devices.",
+ "selectOfficeAppsLabel": "Select Office apps",
+ "selectOfficeAppsTooltip": "Select the Office 365 apps that you want to install as part of the suite.",
+ "selectOtherOfficeAppsLabel": "Select other Office apps (license required)",
+ "selectOtherOfficeAppsTooltip": "If you own licenses for these additional Office apps you can also assign them with Intune.",
+ "specificVersionLabel": "Specific version",
+ "updateChannelLabel": "Update channel",
+ "updateChannelTooltip": "Defines how often the app is updated with new features.
\nMonthly - Provide users with the newest features of Office as soon as they're available.
\nMonthly Enterprise Channel - Provide users with the newest features of Office once a month, on the second Tuesday of the month.
\nMonthly (Targeted) – Provide an early look at the upcoming Monthly Channel release. It is a supported update channel, and usually is available at least one week ahead of time when it's a Monthly Channel release that contains new features.
\nSemi-Annual - Provide users with new features of Office only a few times a year.
\nSemi-Annual (Targeted) - Provide pilot users and application compatibility testers the opportunity to test the next Semi-Annual.",
+ "useMicrosoftSearchAsDefault": "Install background service for Microsoft Search in Bing",
+ "useSharedComputerActivationLabel": "Use shared computer activation",
+ "useSharedComputerActivationTooltip": "Shared computer activation lets you deploy Microsoft 365 Apps to computers that are used by multiple users. Normally, users can only install and activate Microsoft 365 Apps on a limited number of devices, such as 5 PCs. Using Microsoft 365 Apps with shared computer activation doesn't count against that limit.",
+ "versionToInstallLabel": "Version to install",
+ "versionToInstallTooltip": "Select the version of Office that should be installed.",
+ "xLanguagesSelectedLabel": "{0} language(s) selected",
+ "xmlConfigurationLabel": "XML Configuration"
+ },
+ "EnrollmentRestrictions": {
+ "DeletePayloadLink": {
+ "content": "{0} is included in one or more policy sets. If you delete {0}, you'll no longer be able to assign it via these policy sets. Delete anyway?",
+ "contentWithError": "{0} might be included in one or more policy sets. If you delete {0}, you'll no longer be able to assign it via these policy sets. Delete anyway?",
+ "header": "Are you sure you want to delete this restriction?"
+ },
+ "DeviceLimit": {
+ "description": "Specify the maximum number of devices a user can enroll.",
+ "header": "Device limit restrictions",
+ "info": "Define how many devices each user can enroll."
+ },
+ "DeviceType": {
+ "VersionValidation": {
+ "aOSP": "Must be 1.0 or greater.",
+ "android": "Enter a valid version number. Examples: 5.0, 5.5.1, 6.0.0.1",
+ "androidForWork": "Enter a valid version number. Examples: 5.0, 5.1.1",
+ "iOS": "Enter a valid version number. Examples: 9.0, 10.0, 9.0.2",
+ "mac": "Enter a valid version number. Examples: 10, 10.10, 10.10.1",
+ "min": "Minimum cannot be lower than {0}",
+ "minMax": "Minimum version cannot be greater than maximum version.",
+ "windows": "Must be 10.0 or greater. Leave blank to allow 8.1 devices",
+ "windowsMobile": "Must be 10.0 or greater. Leave blank to allow 8.1 devices"
+ },
+ "allPlatformsBlocked": "All device platforms are blocked. Allow platform enrollment to enable platform configuration.",
+ "blockManufacturerPlaceHolder": "Manufacturer name",
+ "blockManufacturersHeader": "Blocked manufacturers",
+ "cannotRestrict": "Restriction not supported",
+ "configurationDescription": "Specify the platform configuration restrictions that must be met for a device to enroll. Use compliance policies to restrict devices after enrollment. Define versions as major.minor.build. Version restrictions only apply to devices enrolled with the Company Portal. Intune classifies devices as personally-owned by default. Additional action is required to classify devices as corporate-owned.",
+ "configurationDescriptionLabel": "Learn more about setting enrollment restrictions",
+ "configurations": "Configure platforms",
+ "deviceManufacturer": "Device manufacturer",
+ "header": "Device type restrictions",
+ "info": "Define which platforms, versions, and management types can enroll.",
+ "manufacturer": "Manufacturer",
+ "max": "Max",
+ "maxVersion": "Maximum version",
+ "min": "Min",
+ "minVersion": "Minimum version",
+ "newPlatforms": "You have allowed new platforms. Consider updating Platform Configurations.",
+ "personal": "Personally owned",
+ "platform": "Platform",
+ "platformDescription": "You can allow enrollment of the following platforms. Only block platforms you will not support. Allowed platforms can be configured with additional enrollment restrictions.",
+ "platformSettings": "Platform settings",
+ "platforms": "Select platforms",
+ "platformsSelected": "{0} platforms selected",
+ "type": "Type",
+ "versions": "versions",
+ "versionsRange": "Allow min/max range:",
+ "windowsTooltip": "Restricts enrollment through Mobile Device Management. Does not restrict PC agent installation. Only Windows 10 and Windows 11 versions are supported. Leave versions blank to allow Windows 8.1."
+ },
+ "Priority": {
+ "saved": "Restriction Priorities were successfully saved."
+ },
+ "Row": {
+ "announce": "Priority: {0}, Name: {1}, Assigned: {2}"
+ },
+ "Table": {
+ "deployed": "Deployed",
+ "name": "Name",
+ "priority": "Priority"
},
- "block": "Mark device noncompliant",
- "lockDevice": "Lock device (local action)",
- "lockDeviceWithPasscode": "Lock device (local action)",
- "noAction": "No action",
- "noActionRow": "No actions, select 'Add' to add an action",
- "pushNotification": "Send push notification to end user",
- "remoteLock": "Remotely lock the noncompliant device",
- "removeSourceAccessProfile": "Remove source access profile",
- "retire": "Retire the noncompliant device",
- "wipe": "Wipe",
- "emailNotification": "Send email to end user"
- },
- "WIPPinRequirements": {
- "WipLowercaseCharacterPinRequirements": {
- "allow": "Allow the use of lowercase letters in PIN",
- "notAllow": "Do not allow the use of lowercase letters in PIN",
- "requireAtLeastOne": "Require the use of at least one lowercase letter in PIN"
- },
- "WipSpecialCharacterPinRequirements": {
- "allow": "Allow the use of special characters in PIN",
- "notAllow": "Do not allow the use of special characters in PIN",
- "requireAtLeastOne": "Require the use of at least one special character in PIN"
- },
- "WipUppercaseCharacterPinRequirements": {
- "allow": "Allow the use of uppercase letters in PIN",
- "notAllow": "Do not allow the use of uppercase letters in PIN",
- "requireAtLeastOne": "Require the use of at least one uppercase letter in PIN"
- }
- }
+ "Type": {
+ "limit": "Device limit restriction",
+ "type": "Device type restriction"
+ },
+ "allUsers": "All Users",
+ "androidRestrictions": "Android restrictions",
+ "create": "Create restriction",
+ "defaultLimitDescription": "This is the default Device Limit Restriction applied with lowest priority to all users regardless of group membership.",
+ "defaultTypeDescription": "This is the default Device Type Restriction applied with lowest priority to all users regardless of group membership.",
+ "defaultWhfbDescription": "This is the default Windows Hello for Business configuration applied with the lowest priority to all users regardless of group membership.",
+ "deleteMessage": "Affected users will be restricted by the next highest priority restriction assigned or the default restriction if no other restriction is assigned.",
+ "deleteTitle": "Are you sure you want to delete {0} restriction?",
+ "descriptionHint": "Short paragraph describing the business use or restriction level characterized by the restriction's settings.",
+ "edit": "Edit restriction",
+ "info": "A device must comply with the highest priority enrollment restrictions assigned to its user. You can drag a device restriction to change its priority. Default restrictions are lowest priority for all users and govern userless enrollments. Default restrictions may be edited, but not deleted.",
+ "iosRestrictions": "iOS restrictions",
+ "mDM": "MDM",
+ "macRestrictions": "MacOS restrictions",
+ "maxVersion": "Max Version",
+ "minVersion": "Min Version",
+ "nameHint": "This will be the primary attribute visible for identifying the restriction set.",
+ "noAssignmentsStatusBar": "Assign restriction to at least one group. Click Properties.",
+ "notFound": "Restriction not found. It may have already been deleted.",
+ "personallyOwned": "Personally owned devices",
+ "restriction": "Restriction",
+ "restrictionLowerCase": "restriction",
+ "restrictionType": "Restriction type",
+ "selectType": "Select restriction type",
+ "selectValidation": "Please select a platform",
+ "typeHint": "Choose Device Type Restriction to restrict device properties. Choose Device Limit Restriction to restrict number of devices per-user.",
+ "typeRequired": "Restriction type is required.",
+ "winPhoneRestrictions": "Windows Phone restrictions",
+ "windowsRestrictions": "Windows restrictions"
+ },
+ "Titles": {
+ "ChromeOs": {
+ "devices": "Chrome OS devices"
+ },
+ "ManagedDesktop": {
+ "adminContacts": "Admin contacts",
+ "appPackaging": "App packaging",
+ "devices": "Devices",
+ "feedback": "Feedback",
+ "gettingStarted": "Getting started",
+ "messages": "Messages",
+ "onlineResources": "Online resources",
+ "serviceRequests": "Service requests",
+ "settings": "Settings",
+ "tenantEnrollment": "Tenant enrollment"
+ },
+ "actions": "Actions for Non-Compliance",
+ "advancedExchangeSettings": "Exchange online settings",
+ "advancedThreatProtection": "Microsoft Defender for Endpoint",
+ "allApps": "All apps",
+ "allDevices": "All devices",
+ "androidFotaDeployments": "Android FOTA deployments",
+ "appBundles": "App Bundles",
+ "appCategories": "App categories",
+ "appConfigPolicies": "App configuration policies",
+ "appInstallStatus": "App install status",
+ "appLicences": "App licenses",
+ "appProtectionPolicies": "App protection policies",
+ "appProtectionStatus": "App protection status",
+ "appSelectiveWipe": "App selective wipe",
+ "appleVppTokens": "Apple VPP Tokens",
+ "apps": "Apps",
+ "assign": "Assignments",
+ "assignedPermissions": "Assigned permissions",
+ "assignedRoles": "Assigned roles",
+ "autopilotDeploymentReport": "Autopilot deployments (preview)",
+ "brandingAndCustomization": "Customization",
+ "cartProfiles": "Cart profiles",
+ "certificateConnectors": "Certificate connectors",
+ "chromeEnterprise": "Chrome Enterprise",
+ "compliancePolicies": "Compliance policies",
+ "complianceScriptManagement": "Scripts",
+ "complianceScriptManagementPreview": "Scripts (Preview)",
+ "complianceSettings": "Compliance policy settings",
+ "conditionStatements": "Condition statements",
+ "conditions": "Locations",
+ "configMgr": "Microsoft Endpoint Configuration Manager",
+ "configurationProfiles": "Configuration profiles",
+ "configurationProfilesPreview": "Configuration profiles (preview)",
+ "connectorsAndTokens": "Connectors and tokens",
+ "corporateDeviceIdentifiers": "Corporate device identifiers",
+ "customAttributes": "Custom attributes",
+ "customNotifications": "Custom notifications",
+ "deploymentSettings": "Deployment settings",
+ "derivedCredentials": "Derived Credentials",
+ "deviceActions": "Device actions",
+ "deviceCategories": "Device categories",
+ "deviceCleanUp": "Device clean-up rules",
+ "deviceEnrollmentManagers": "Device enrollment managers",
+ "deviceExecutionStatus": "Device status",
+ "deviceLimitEnrollmentRestrictions": "Enrollment device limit restrictions",
+ "deviceTypeEnrollmentRestrictions": "Enrollment device platform restrictions",
+ "devices": "Devices",
+ "discoveredApps": "Discovered apps",
+ "embeddedSIM": "eSIM cellular profiles (Preview)",
+ "enrollDevices": "Enroll devices",
+ "enrollmentFailures": "Enrollment failures",
+ "enrollmentNotifications": "Enrollment notifications (Preview)",
+ "enrollmentRestrictions": "Enrollment restrictions",
+ "exchangeActiveSync": "Exchange ActiveSync",
+ "exchangeServiceConnectors": "Exchange service connectors",
+ "failuresForFeatureUpdates": "Feature update failures (Preview)",
+ "failuresForQualityUpdates": "Windows Expedited update failures (Preview)",
+ "featureFlighting": "Feature flighting",
+ "featureUpdateDeployments": "Feature updates for Windows 10 and later (Preview)",
+ "flighting": "Flighting",
+ "fotaUpdate": "Firmware over-the-air update",
+ "groupPolicy": "Administrative Templates",
+ "groupPolicyAnalytics": "Group policy analytics",
+ "helpSupport": "Help and support",
+ "helpSupportReplacement": "Help and support ({0})",
+ "iOSAppProvisioning": "iOS app provisioning profiles",
+ "incompleteUserEnrollments": "Incomplete user enrollments",
+ "intuneRemoteAssistance": "Remote help (preview)",
+ "iosUpdates": "Update policies for iOS/iPadOS",
+ "legacyPcManagement": "Legacy PC management",
+ "macOSSoftwareUpdate": "Update policies for macOS",
+ "macOSSoftwareUpdateAccountSummaries": "Installation status for macOS devices",
+ "macOSSoftwareUpdateCategorySummaries": "Software updates summary",
+ "macOSSoftwareUpdateStateSummaries": "updates",
+ "managedGooglePlay": "Managed Google Play",
+ "msfb": "Microsoft Store for Business",
+ "myPermissions": "My permissions",
+ "notifications": "Notifications",
+ "officeApps": "Office apps",
+ "officeProPlusPolicies": "Policies for Office apps",
+ "onPremise": "On Premise",
+ "onPremisesConnector": "Exchange ActiveSync on-premises connector",
+ "onPremisesDeviceAccess": "Exchange ActiveSync devices",
+ "onPremisesManageAccess": "Exchange on-premises access",
+ "outOfDateIosDevices": "Installation failures for iOS devices",
+ "overview": "Overview",
+ "partnerDeviceManagement": "Partner device management",
+ "perUpdateRingDeploymentState": "Per update ring deployment state",
+ "permissions": "Permissions",
+ "platformApps": "{0} apps",
+ "platformDevices": "{0} devices",
+ "platformEnrollment": "{0} enrollment",
+ "policies": "Policies",
+ "previewMDMDevices": "All managed devices (Preview)",
+ "profiles": "Profiles",
+ "properties": "Properties",
+ "reports": "Reports",
+ "retireNoncompliantDevices": "Retire noncompliant devices",
+ "retireNoncompliantDevicesPreview": "Retire noncompliant devices (preview)",
+ "role": "Role",
+ "scriptManagement": "Scripts",
+ "securityBaselines": "Security baselines",
+ "serviceToServiceConnector": "Exchange online connector",
+ "shellScripts": "Shell scripts",
+ "teamViewerConnector": "TeamViewer connector",
+ "telecomeExpenseManagement": "Telecom expense management",
+ "tenantAdmin": "Tenant admin",
+ "tenantAdministration": "Tenant administration",
+ "termsAndConditions": "Terms and conditions",
+ "titles": "Titles",
+ "troubleshootSupport": "Troubleshooting + support",
+ "user": "User",
+ "userExecutionStatus": "User status",
+ "warranty": "Warranty vendors",
+ "wdacSupplementalPolicies": "S mode supplemental policies",
+ "windows10DriverUpdate": "Driver updates for Windows 10 and later (Preview)",
+ "windows10QualityUpdate": "Quality updates for Windows 10 and later (Preview)",
+ "windows10UpdateRings": "Update rings for Windows 10 and later",
+ "windows10XPolicyFailures": "Windows 10X policy failures",
+ "windowsEnterpriseCertificate": "Windows enterprise certificate",
+ "windowsManagement": "PowerShell scripts",
+ "windowsSideLoadingKeys": "Windows side loading keys",
+ "windowsSymantecCertificate": "Windows DigiCert certificate",
+ "windowsThreatReport": "Threat agent status"
+ },
+ "ScopeTypes": {
+ "allDevices": "All Devices",
+ "allUsers": "All Users",
+ "allUsersAndDevices": "All Users & All Devices",
+ "selectedGroups": "Selected Groups"
+ },
+ "OfficeApplicationType": {
+ "access": "Access",
+ "bing": "Microsoft Search as default",
+ "excel": "Excel",
+ "groove": "OneDrive (Groove)",
+ "lync": "Skype for Business",
+ "oneDrive": "OneDrive Desktop",
+ "oneNote": "OneNote",
+ "outlook": "Outlook",
+ "powerPoint": "PowerPoint",
+ "publisher": "Publisher",
+ "teams": "Teams",
+ "word": "Word"
+ },
+ "ApplicableDeviceType": {
+ "iPad": "iPad",
+ "iPhoneAndIPod": "iPhone and iPod"
+ },
+ "Assignment": {
+ "AutoUpdateMode": {
+ "default": "Default",
+ "header": "Update Priority",
+ "postponed": "Postponed",
+ "priority": "High Priority"
+ },
+ "DeliveryOptimizationPriority": {
+ "backgroundNormal": "Background",
+ "displayText": "Content download in {0}",
+ "foreground": "Foreground",
+ "header": "Delivery optimization priority"
+ },
+ "RestartGracePeriod": {
+ "allowSnooze": "Allow user to snooze the restart notification",
+ "countdownDialog": "Select when to display the restart countdown dialog box before the restart occurs (minutes)",
+ "durationInMinutes": "Device restart grace period (minutes)",
+ "snoozeDurationInMinutes": "Select the snooze duration (minutes)"
+ },
+ "SoftwareInstallationTime": {
+ "TimeZone": {
+ "label": "Time zone",
+ "local": "Device time zone",
+ "utc": "UTC"
+ },
+ "dateAndTimeLabel": "Date and time",
+ "deadlineTimeColumnLabel": "Installation deadline",
+ "deadlineTimeDatePickerErrorMessage": "Selected date must be after the available date",
+ "deadlineTimeLabel": "App installation deadline",
+ "defaultTime": "As soon as possible",
+ "infoText": "This application will be available as soon as it has been deployed, unless you specify an availability time below. If this is a required application, you may specify the installation deadline.",
+ "specificTime": "A specific date and time",
+ "startTimeColumnLabel": "Availability",
+ "startTimeDatePickerErrorMessage": "Selected date must be before the deadline date",
+ "startTimeLabel": "App availability"
+ },
+ "restartGracePeriodHeader": "Restart grace period",
+ "restartGracePeriodLabel": "Device restart grace period",
+ "summaryTitle": "End user experience"
+ },
+ "EnrollmentType": {
+ "devicesWithEnrollment": "Managed devices",
+ "devicesWithoutEnrollment": "Managed apps"
+ },
+ "PolicySet": {
+ "appManagement": "Application management",
+ "assignments": "Assignments",
+ "basics": "Basics",
+ "deviceEnrollment": "Device enrollment",
+ "deviceManagement": "Device management",
+ "scopeTags": "Scope tags",
+ "appConfigurationTitle": "App configuration policies",
+ "appProtectionTitle": "App protection policies",
+ "appTitle": "Apps",
+ "iOSAppProvisioningTitle": "iOS app provisioning profiles",
+ "deviceLimitRestrictionTitle": "Device limit restrictions",
+ "deviceTypeRestrictionTitle": "Device type restrictions",
+ "enrollmentStatusSettingTitle": "Enrollment status pages",
+ "windowsAutopilotDeploymentProfileTitle": "Windows autopilot deployment profiles",
+ "deviceComplianceTitle": "Device compliance policies",
+ "deviceConfigurationTitle": "Device configuration profiles",
+ "powershellScriptTitle": "Powershell scripts"
+ },
+ "AzureIAMCommon": {
+ "CountryNames": {
+ "countryNameNR": "Nauru",
+ "countryNameBH": "Bahrain",
+ "countryNameZA": "South Africa",
+ "countryNameJO": "Jordan",
+ "countryNameSD": "Sudan",
+ "countryNameNU": "Niue",
+ "countryNameCZ": "Czech Republic",
+ "countryNameLT": "Lithuania",
+ "countryNameTK": "Tokelau",
+ "countryNameEC": "Ecuador",
+ "countryNameVU": "Vanuatu",
+ "countryNameUG": "Uganda",
+ "countryNameLI": "Liechtenstein",
+ "countryNameHK": "Hong Kong SAR",
+ "countryNameGH": "Ghana",
+ "countryNameSA": "Saudi Arabia",
+ "countryNamePG": "Papua New Guinea",
+ "countryNameBW": "Botswana",
+ "countryNameDG": "Diego Garcia",
+ "countryNameIN": "India",
+ "countryNameHN": "Honduras",
+ "countryNameRO": "Romania",
+ "countryNameKZ": "Kazakhstan",
+ "countryNameLC": "Saint Lucia",
+ "countryNameGE": "Georgia",
+ "countryNameTT": "Trinidad and Tobago",
+ "countryNameMP": "Northern Mariana Islands",
+ "countryNameMV": "Maldives",
+ "countryNameFI": "Finland",
+ "countryNameNO": "Norway",
+ "countryNameEE": "Estonia",
+ "countryNameVE": "Venezuela",
+ "countryNameUZ": "Uzbekistan",
+ "countryNameME": "Montenegro",
+ "countryNameTJ": "Tajikistan",
+ "countryNameAW": "Aruba",
+ "countryNameFR": "France",
+ "countryNameOM": "Oman",
+ "countryNameAO": "Angola",
+ "countryNameIT": "Italy",
+ "countryNameAZ": "Azerbaijan",
+ "countryNameKG": "Kyrgyzstan",
+ "countryNameWF": "Wallis and Futuna",
+ "countryNameTL": "Timor-Leste",
+ "countryNameFK": "Falkland Islands (Islas Malvinas)",
+ "countryNameGY": "Guyana",
+ "countryNameSS": "South Sudan",
+ "countryNameMM": "Myanmar",
+ "countryNameHT": "Haiti",
+ "countryNameSY": "Syria",
+ "countryNameMD": "Moldova",
+ "countryNameVC": "Saint Vincent and the Grenadines",
+ "countryNameID": "Indonesia",
+ "countryNameRE": "Reunion",
+ "countryNameER": "Eritrea",
+ "countryNameMK": "North Macedonia",
+ "countryNameTG": "Togo",
+ "countryNamePF": "French Polynesia",
+ "countryNameKY": "Cayman Islands",
+ "countryNameIO": "British Indian Ocean Territory",
+ "countryNameRU": "Russia",
+ "countryNameMA": "Morocco",
+ "countryNameAU": "Australia",
+ "countryNameBO": "Bolivia",
+ "countryNameVA": "Holy See (Vatican City State)",
+ "countryNameVG": "Virgin Islands, British",
+ "countryNameFM": "Micronesia",
+ "countryNameAQ": "Antarctica",
+ "countryNameZM": "Zambia",
+ "countryNameBR": "Brazil",
+ "countryNameIS": "Iceland",
+ "countryNamePE": "Peru",
+ "countryNameBG": "Bulgaria",
+ "countryNamePR": "Puerto Rico",
+ "countryNameGI": "Gibraltar",
+ "countryNameBS": "Bahamas, The",
+ "countryNameJE": "Jersey",
+ "countryNameMO": "Macao SAR",
+ "countryNameRW": "Rwanda",
+ "countryNameAS": "American Samoa",
+ "countryNameBQ": "Bonaire, Sint Eustatius, and Saba",
+ "countryNameMF": "Saint Martin",
+ "countryNameTM": "Turkmenistan",
+ "countryNameML": "Mali",
+ "countryNameTO": "Tonga",
+ "countryNameNC": "New Caledonia",
+ "countryNameAC": "Ascension Island",
+ "countryNameBN": "Brunei",
+ "countryNameBD": "Bangladesh",
+ "countryNameMW": "Malawi",
+ "countryNameGM": "Gambia, The",
+ "countryNameGA": "Gabon",
+ "countryNameCA": "Canada",
+ "countryNameSH": "Saint Helena",
+ "countryNameYT": "Mayotte",
+ "countryNameMN": "Mongolia",
+ "countryNamePA": "Panama",
+ "countryNameCM": "Cameroon",
+ "countryNameNE": "Niger",
+ "countryNameCW": "Curaçao",
+ "countryNameJP": "Japan",
+ "countryNameCY": "Cyprus",
+ "countryNameCD": "Democratic Republic of Congo",
+ "countryNameTN": "Tunisia",
+ "countryNameTR": "Turkey",
+ "countryNameWS": "Samoa",
+ "countryNameSE": "Sweden",
+ "countryNameXK": "Kosovo",
+ "countryNameKH": "Cambodia",
+ "countryNamePL": "Poland",
+ "countryNameDZ": "Algeria",
+ "countryNameLR": "Liberia",
+ "countryNameSO": "Somalia",
+ "countryNameDM": "Dominica",
+ "countryNameEG": "Egypt",
+ "countryNameGF": "French Guiana",
+ "countryNameNZ": "New Zealand",
+ "countryNamePS": "Palestinian Authority",
+ "countryNameIL": "Israel",
+ "countryNameSL": "Sierra Leone",
+ "countryNameGR": "Greece",
+ "countryNameNG": "Nigeria",
+ "countryNameMR": "Mauritania",
+ "countryNameVI": "Virgin Islands, U.S.",
+ "countryNameGQ": "Equatorial Guinea",
+ "countryNameMX": "Mexico",
+ "countryNameDJ": "Djibouti",
+ "countryNameGN": "Guinea",
+ "countryNameCN": "China",
+ "countryNameMZ": "Mozambique",
+ "countryNameBV": "Bouvet Island",
+ "countryNameNF": "Norfolk Island",
+ "countryNameTZ": "Tanzania",
+ "countryNameAI": "Anguilla",
+ "countryNameGS": "South Georgia and the South Sandwich Islands",
+ "countryNameRS": "Serbia",
+ "countryNameCC": "Cocos (Keeling) Islands",
+ "countryNameNA": "Namibia",
+ "countryNameDE": "Germany",
+ "countryNameCG": "Republic of Congo",
+ "countryNameKW": "Kuwait",
+ "countryNameMH": "Marshall Islands",
+ "countryNameVN": "Vietnam",
+ "countryNameBY": "Belarus",
+ "countryNameMY": "Malaysia",
+ "countryNameST": "São Tomé and Príncipe",
+ "countryNameLS": "Lesotho",
+ "countryNameBI": "Burundi",
+ "countryNameTD": "Chad",
+ "countryNameCX": "Christmas Island",
+ "countryNameIR": "Iran",
+ "countryNameTV": "Tuvalu",
+ "countryNameGW": "Guinea-Bissau",
+ "countryNameUA": "Ukraine",
+ "countryNameCU": "Cuba",
+ "countryNameCO": "Colombia",
+ "countryNameNI": "Nicaragua",
+ "countryNameHR": "Croatia",
+ "countryNameSC": "Seychelles",
+ "countryNameNL": "Netherlands",
+ "countryNameUM": "US Minor Outlying Islands",
+ "countryNameIM": "Isle of Man",
+ "countryNameFJ": "Fiji",
+ "countryNameSR": "Suriname",
+ "countryNameGT": "Guatemala",
+ "countryNameSM": "San Marino",
+ "countryNameLA": "Laos",
+ "countryNameGB": "United Kingdom",
+ "countryNameBB": "Barbados",
+ "countryNameSI": "Slovenia",
+ "countryNameAM": "Armenia",
+ "countryNameAR": "Argentina",
+ "countryNamePM": "Saint Pierre and Miquelon",
+ "countryNameTF": "French Southern and Antarctic Lands",
+ "countryNameDO": "Dominican Republic",
+ "countryNameZW": "Zimbabwe",
+ "countryNameMQ": "Martinique",
+ "countryNamePT": "Portugal",
+ "countryNameCF": "Central African Republic",
+ "countryNameBE": "Belgium",
+ "countryNameKM": "Comoros",
+ "countryNameLY": "Libya",
+ "countryNameIE": "Ireland",
+ "countryNameKP": "North Korea",
+ "countryNameGG": "Guernsey",
+ "countryNameSK": "Slovakia",
+ "countryNameTC": "Turks and Caicos Islands",
+ "countryNameNP": "Nepal",
+ "countryNameBF": "Burkina Faso",
+ "countryNameYE": "Yemen",
+ "countryNameBA": "Bosnia and Herzegovina",
+ "countryNameGP": "Guadeloupe",
+ "countryNameMS": "Montserrat",
+ "countryNameCL": "Chile",
+ "countryNameIQ": "Iraq",
+ "countryNameSJ": "Svalbard and Jan Mayen Island",
+ "countryNameAX": "Åland Islands",
+ "countryNameKE": "Kenya",
+ "countryNameGU": "Guam",
+ "countryNameBM": "Bermuda",
+ "countryNameFO": "Faroe Islands",
+ "countryNameBL": "Saint Barthélemy",
+ "countryNameLB": "Lebanon",
+ "countryNameJM": "Jamaica",
+ "countryNameAF": "Afghanistan",
+ "countryNameES": "Spain",
+ "countryNameMC": "Monaco",
+ "countryNameSG": "Singapore",
+ "countryNameAL": "Albania",
+ "countryNameSN": "Senegal",
+ "countryNameSZ": "Swaziland",
+ "countryNameBZ": "Belize",
+ "countryNameCI": "Côte d’Ivoire",
+ "countryNameTW": "Taiwan",
+ "countryNameUY": "Uruguay",
+ "countryNameCK": "Cook Islands",
+ "countryNameTH": "Thailand",
+ "countryNameHM": "Heard Island and McDonald Islands",
+ "countryNameGD": "Grenada",
+ "countryNameUS": "United States",
+ "countryNameAT": "Austria",
+ "countryNameKR": "Korea, Republic of",
+ "countryNamePK": "Pakistan",
+ "countryNameDK": "Denmark",
+ "countryNameSV": "El Salvador",
+ "countryNamePW": "Palau",
+ "countryNameET": "Ethiopia",
+ "countryNameMG": "Madagascar",
+ "countryNameCR": "Costa Rica",
+ "countryNameLU": "Luxembourg",
+ "countryNameQA": "Qatar",
+ "countryNameBT": "Bhutan",
+ "countryNameSB": "Solomon Islands",
+ "countryNameAE": "United Arab Emirates",
+ "countryNameAD": "Andorra",
+ "countryNameCV": "Cabo Verde",
+ "countryNameAG": "Antigua and Barbuda",
+ "countryNameMU": "Mauritius",
+ "countryNameHU": "Hungary",
+ "countryNameSX": "Sint Maarten",
+ "countryNameCH": "Switzerland",
+ "countryNamePN": "Pitcairn Islands",
+ "countryNameGL": "Greenland",
+ "countryNamePH": "Philippines",
+ "countryNameMT": "Malta",
+ "countryNameKN": "Saint Kitts and Nevis",
+ "countryNameLK": "Sri Lanka",
+ "countryNameKI": "Kiribati",
+ "countryNameBJ": "Benin",
+ "countryNameLV": "Latvia",
+ "countryNamePY": "Paraguay"
+ }
+ }
}
diff --git a/Documentation/Strings-es.json b/Documentation/Strings-es.json
index 2dbbfc9..184f79b 100644
--- a/Documentation/Strings-es.json
+++ b/Documentation/Strings-es.json
@@ -1,1842 +1,4 @@
{
- "InstallContextType": {
- "device": "Dispositivo",
- "deviceContext": "Contexto del dispositivo",
- "user": "Usuario",
- "userContext": "Contexto del usuario"
- },
- "WipPolicySettings": {
- "addNetworkBoundary": "Agregar límite de red",
- "addNetworkBoundaryButton": "Agregar límite de red...",
- "allowWindowsSearch": "Permitir que Windows Search busque datos corporativos cifrados y aplicaciones de la Tienda",
- "authoritativeIpRanges": "La lista de intervalos IP de la empresa es autoritativa (no usar detección automática)",
- "authoritativeProxyServers": "La lista de servidores proxy de la empresa es autoritativa (no usar detección automática)",
- "boundaryType": "Tipo de límite",
- "cloudResources": "Recursos de nube",
- "corporateIdentity": "Identidad corporativa",
- "dataRecoveryCert": "Cargar un certificado del Agente de recuperación de datos (DRA) para poder recuperar datos cifrados",
- "editNetworkBoundary": "Editar límite de red",
- "enrollmentState": "Estado de inscripción",
- "iPv4Ranges": "Intervalos IPv4",
- "iPv6Ranges": "Intervalos IPv6",
- "internalProxyServers": "Servidores proxy internos",
- "maxInactivityTime": "Cantidad máxima de tiempo permitido (en minutos) con el dispositivo inactivo que, una vez transcurrida, causará el bloqueo del dispositivo mediante PIN o contraseña",
- "maxPasswordAttempts": "Número de errores de autenticación permitidos antes de borrar el dispositivo",
- "mdmDiscoveryUrl": "Dirección URL de descubrimiento de MDM",
- "mdmRequiredSettingsInfo": "Esta directiva solo se aplica a Windows 10 Anniversary Edition y versiones posteriores. Además, usa Windows Information Protection (WIP) para aplicar protección.",
- "minimumPinLength": "Establecer el número mínimo de caracteres requeridos para el PIN",
- "name": "Nombre",
- "networkBoundariesGridEmptyText": "Los límites de red que agregue se mostrarán aquí",
- "networkBoundary": "Límite de red",
- "networkDomainNames": "Dominios de red",
- "neutralResources": "Recursos neutros",
- "passportForWork": "Usar Windows Hello para empresas como método para iniciar sesión en Windows",
- "pinExpiration": "Especificar el período de tiempo (en días) que se puede usar un PIN antes de que el sistema solicite al usuario que lo cambie",
- "pinHistory": "Especificar el número de PIN anteriores asociados a una cuenta de usuario que no se pueden volver a usar",
- "pinLowercaseLetters": "Configurar el uso de letras minúsculas en el PIN de Windows Hello para empresas",
- "pinSpecialCharacters": "Configurar el uso de caracteres especiales en el PIN de Windows Hello para empresas",
- "pinUppercaseLetters": "Configurar el uso de letras mayúsculas en el PIN de Windows Hello para empresas",
- "protectUnderLock": "Impedir que las aplicaciones accedan a los datos corporativos cuando el dispositivo está bloqueado. Se aplica únicamente a Windows 10 Mobile.",
- "protectedDomainNames": "Dominios protegidos",
- "proxyServers": "Servidores proxy",
- "requireAppPin": "Deshabilitar PIN de aplicación cuando se administre el PIN del dispositivo",
- "requiredSettings": "Valores obligatorios",
- "requiredSettingsInfo": "Al cambiar el ámbito o quitar esta directiva, se descifrarán los datos corporativos.",
- "revokeOnMdmHandoff": "Revocar el acceso a los datos protegidos cuando el dispositivo se inscriba en MDM",
- "revokeOnUnenroll": "Revocar claves de cifrado al cancelar la inscripción",
- "rmsTemplateForEdp": "Especificar el identificador de la plantilla que se va a usar para Azure RMS",
- "showWipIcon": "Mostrar el icono de protección de datos de empresa",
- "type": "Tipo",
- "useRmsForWip": "Usar Azure RMS para WIP",
- "value": "Valor",
- "weRequiredSettingsInfo": "Esta directiva solo se aplica a Windows 10 Creators Update y versiones posteriores. Además, usa Windows Information Protection (WIP) y Windows MAM para aplicar protección.",
- "wipProtectionMode": "Modo de Windows Information Protection",
- "withEnrollment": "Con inscripción",
- "withoutEnrollment": "Sin inscripción"
- },
- "EdgeAppConfig": {
- "AllowedURLs": {
- "title": "Direcciones URL permitidas",
- "tooltip": "Especifique los sitios a los que los usuarios pueden acceder mientras están en su contexto de trabajo. No se permitirá ningún otro sitio. Puede elegir configurar una lista de sitios permitidos o bloqueados, pero no ambas."
- },
- "ApplicationProxyRedirection": {
- "header": "Proxy de aplicación",
- "title": "Redirección de proxy de aplicación",
- "tooltip": "Habilite la redirección de proxy de aplicación para dar acceso a los usuarios a los vínculos corporativos y a las aplicaciones web locales."
- },
- "BlockedURLs": {
- "title": "URL bloqueadas",
- "tooltip": "Especifique los sitios bloqueados para los usuarios mientras están en su contexto de trabajo. El resto de los sitios estarán permitidos. Puede elegir configurar una lista de sitios permitidos o bloqueados, pero no ambas. "
- },
- "Bookmarks": {
- "header": "Marcadores administrados",
- "tooltip": "Escriba una lista de direcciones URL marcadas que estén disponibles para los usuarios al utilizar Microsoft Edge en su contexto de trabajo.",
- "uRL": "URL"
- },
- "HomepageURL": {
- "header": "Página principal administrada",
- "title": "Dirección URL de acceso directo a la página principal",
- "tooltip": "Configure un acceso directo a la página principal que se mostrará a los usuarios como primer icono debajo de la barra de búsqueda cuando abran una pestaña nueva en Microsoft Edge."
- },
- "PersonalContext": {
- "label": "Redirigir los sitios restringidos a un contexto personal",
- "tooltip": "Configure si se debe permitir a los usuarios realizar la transición a su contexto personal para abrir sitios restringidos."
- }
- },
- "AzureIAM": {
- "AdrsUserActionSelectionWarning": {
- "conditions": "Las condiciones que requieren el registro de dispositivos no están disponibles con la acción de usuario \"Registrar o unir dispositivos\".",
- "message": "En las directivas creadas para la acción de usuario \"Registrar o unir dispositivos\", solo se puede usar \"Requerir autenticación multifactor\".{0}"
- },
- "AuthContext": {
- "Included": {
- "none": "No se ha seleccionado ninguna aplicación o acción ni ningún contexto de autenticación.",
- "plural": "{0} contextos de autenticación incluidos",
- "singular": "1 contexto de autenticación incluido"
- },
- "InfoBlade": {
- "createTitle": "Adición de un contexto de autenticación",
- "descPlaceholder": "Agregue una descripción para el contexto de autenticación.",
- "modifyTitle": "Modificación del contexto de autenticación",
- "namePlaceholder": "Por ejemplo, ubicación de confianza, dispositivo de confianza, autorización segura.",
- "publishDesc": "La publicación en aplicaciones hará que el contexto de autenticación esté disponible para que las aplicaciones lo usen. Efectúe la publicación una vez que haya finalizado la configuración de la directiva de acceso condicional para la etiqueta. [Más información][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150966",
- "publishLabel": "Publicar en aplicaciones",
- "titleDesc": "Configure un contexto de autenticación que se usará para proteger los datos y las acciones de la aplicación. Use nombres y descripciones que puedan entender los administradores de aplicaciones. [Más información][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150965"
- },
- "Notify": {
- "failure": "No se pudo actualizar {0}",
- "modifying": "Modificación de {0} en curso",
- "success": "Actualizadas correctamente: {0}."
- },
- "WhatIf": {
- "selected": "Contexto de autenticación incluido"
- },
- "addNewStepUp": "Nuevo contexto de autenticación",
- "checkBoxInfo": "Seleccione los contextos de autenticación a los que se aplicará esta directiva.",
- "configure": "Configurar contextos de autenticación",
- "createCA": "Asigne directivas de acceso condicional al contexto de autenticación.",
- "dataGrid": "Lista de contextos de autenticación",
- "description": "Descripción",
- "documentation": "Documentación",
- "getStarted": "Introducción",
- "label": "Contexto de autenticación (versión preliminar)",
- "menuLabel": "Contexto de autenticación (versión preliminar)",
- "name": "Nombre",
- "noAuthContextSet": "No hay contextos de trabajo de autenticación",
- "noData": "No hay ningún contexto de autenticación para mostrar.",
- "selectionInfo": "El contexto de autenticación se usa para proteger los datos y las acciones de la aplicación en aplicaciones como SharePoint y Microsoft Cloud App Security.",
- "step": "Paso",
- "tabDescription": "Administre el contexto de autenticación para proteger los datos y las acciones en sus aplicaciones. [Más información][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150965",
- "tagResources": "Etiquete los recursos con un contexto de autenticación."
- },
- "AuthenticationStrength": {
- "Mode": {
- "deviceBasedPush": "Microsoft Authenticator (inicio de sesión en el teléfono)",
- "deviceBasedPushFido2X509Certificate": "Microsoft Authenticator (inicio de sesión en el teléfono) + Fido 2 + Autenticación basada en certificados",
- "deviceBasedPushX509CertificateSingleFactor": "Microsoft Authenticator (inicio de sesión en el teléfono) + Fido 2 + Autenticación basada en certificados (factor único)",
- "email": "Pase de una vez por correo electrónico",
- "emailOtp": "OTP de correo electrónico",
- "federatedMultiFactor": "Multifactor federado",
- "federatedSingleFactor": "Factor único federado",
- "federatedSingleFactorFederatedMultiFactor": "Factor único federado + Multifactor federado",
- "fido2": "Clave de seguridad FIDO 2",
- "fido2X509CertificateSingleFactor": "Clave de seguridad FIDO 2 + Autenticación basada en certificados (factor único)",
- "hardwareOath": "OTP de hardware",
- "hardwareOathX509CertificateSingleFactor": "OTP de hardware + autenticación basada en certificados (factor único)",
- "microsoftAuthenticatorPSIX509CertificateSingleFactor": "Microsoft Authenticator (inicio de sesión en el teléfono) + Autenticación basada en certificados (factor único)",
- "microsoftAuthenticatorPsi": "Microsoft Authenticator (inicio de sesión en el teléfono)",
- "microsoftAuthenticatorPush": "Microsoft Authenticator (notificación push)",
- "microsoftAuthenticatorPushX509CertificateSingleFactor": "Microsoft Authenticator (notificación push) + autenticación basada en certificados (factor único)",
- "none": "Ninguno",
- "password": "Contraseña",
- "passwordDeviceBasedPush": "Contraseña + Microsoft Authenticator (inicio de sesión en el teléfono)",
- "passwordFido2": "Contraseña + clave de seguridad FIDO 2",
- "passwordHardwareOath": "Contraseña + OTP de hardware",
- "passwordMicrosoftAuthenticatorPSI": "Contraseña + Microsoft Authenticator (inicio de sesión en el teléfono)",
- "passwordMicrosoftAuthenticatorPush": "Contraseña + Microsoft Authenticator (notificación push)",
- "passwordSms": "Contraseña + SMS",
- "passwordSoftwareOath": "Contraseña + OTP de software",
- "passwordTemporaryAccessPassMultiUse": "Contraseña + Pase de acceso temporal (multiuso)",
- "passwordTemporaryAccessPassOneTime": "Contraseña + Pase de acceso temporal (uso único)",
- "passwordVoice": "Contraseña + Voz",
- "sms": "SMS",
- "smsSignIn": "Inicio de sesión por SMS",
- "smsX509CertificateSingleFactor": "SMS + autenticación basada en certificados (factor único)",
- "softwareOath": "OTP de software",
- "softwareOathX509CertificateSingleFactor": "OTP de software + autenticación basada en certificados (factor único)",
- "temporaryAccessPassMultiUse": "Pase de acceso temporal (multiuso)",
- "temporaryAccessPassMultiUseX509CertificateSingleFactor": "Pase de acceso temporal (multiuso) + Autenticación basada en certificados (factor único)",
- "temporaryAccessPassOneTime": "Pase de acceso temporal (uso único)",
- "temporaryAccessPassOneTimeX509CertificateSingleFactor": "Pase de acceso temporal (uso único) + Autenticación basada en certificados (factor único)",
- "voice": "Voz",
- "voiceX509CertificateSingleFactor": "Voz + autenticación basada en certificados (factor único)",
- "windowsHelloForBusiness": "Windows Hello para empresas",
- "x509CertificateMultiFactor": "Autenticación basada en certificados (multifactor)",
- "x509CertificateSingleFactor": "Autenticación basada en certificados (factor único)"
- }
- },
- "CAS": {
- "BuiltinPolicy": {
- "Option": {
- "blockDownloads": "Bloqueo de descargas (versión preliminar)",
- "monitorOnly": "Solo supervisión (versión preliminar)",
- "protectDownloads": "Protección de las descargas (versión preliminar)",
- "useCustomControls": "Usar directiva personalizada..."
- },
- "ariaLabel": "Elegir el tipo de Control de aplicaciones de acceso condicional que se aplicará"
- }
- },
- "ChooseApplications": {
- "Grid": {
- "appIdAria": "Id. de la aplicación: {0}"
- },
- "LowerGrid": {
- "ariaLabel": "Lista de aplicaciones en la nube seleccionadas"
- },
- "UpperGrid": {
- "ariaLabel": "Lista de aplicaciones en la nube que coinciden con el término de búsqueda"
- }
- },
- "ChooseLocations": {
- "Validation": {
- "failed": "Con \"Ubicaciones seleccionadas\", debe elegir al menos una ubicación.",
- "selector": "Elija por lo menos una ubicación."
- }
- },
- "ClientApp": {
- "Clients": {
- "Validation": {
- "failed": "Debe seleccionar al menos uno de los clientes que se muestran a continuación."
- }
- }
- },
- "ClientConditionsInfo": {
- "browserAndModern": "Esta directiva solo se aplica al explorador y a aplicaciones de autenticación modernas. Para aplicar la directiva a todas las aplicaciones cliente, habilite la condición de aplicación cliente y selecciónelas todas.",
- "classicExperience": "Tras crear esta directiva, se ha actualizado la configuración predeterminada de las aplicaciones cliente.",
- "legacyAuth": "Si no se configuran, las directivas ahora se aplican a todas las aplicaciones cliente, incluidas la autenticación moderna y la heredada."
- },
- "CloudAppFilterBlade": {
- "AssignmentFilter": {
- "header": "Atributo",
- "placeholder": "Elegir un atributo"
- },
- "Configure": {
- "infoBalloon": "Configure los filtros de aplicación a los que quiere que se aplique la directiva."
- },
- "NoPermissions": {
- "learnMoreAria": "Más información sobre los permisos de atributo de seguridad personalizados.",
- "message": "No tiene los permisos necesarios para usar atributos de seguridad personalizados."
- },
- "gridHeader": "Mediante el uso de atributos de seguridad personalizados, puede usar el generador de reglas o el cuadro de texto de sintaxis de reglas para crear o editar las reglas de filtro. En la versión preliminar, solo se admiten atributos de tipo Cadena. No se mostrarán atributos de tipo Entero o Booleano.",
- "learnMoreAria": "Más información sobre el uso del generador de reglas y el cuadro de texto de sintaxis.",
- "noAttributes": "No hay ningún atributo personalizado disponible para filtrar. Debe configurar algunos atributos para usar este filtro.",
- "title": "Edit filter (Preview)"
- },
- "CloudAppsUserActions": {
- "any": "Cualquier aplicación o acción en la nube",
- "infoBalloon": "Aplicación de nube o acción de usuario que quiere probar. Por ejemplo, \"SharePoint Online\".",
- "learnMore": "Controle el acceso de los usuarios de acuerdo con todas las acciones o con acciones específicas de las aplicaciones en la nube.",
- "learnMoreB2C": "Controle el acceso de los usuarios con base en todas o algunas de las aplicaciones en la nube.",
- "title": "Aplicaciones en la nube o acciones"
- },
- "CloudappsSelectionBlade": {
- "Excluded": {
- "gridAria": "Lista de aplicaciones en la nube excluidas"
- },
- "Filter": {
- "configured": "Configurado",
- "label": "Edit filter (Preview)",
- "with": "{0} con {1}"
- },
- "Included": {
- "gridAria": "Lista de aplicaciones en la nube incluidas"
- },
- "Validation": {
- "authContext": "Con \"contexto de autenticación\", debe configurar al menos un subelemento.",
- "selectApps": "Es necesario configurar \"{0}\".",
- "selector": "Seleccione por lo menos una aplicación.",
- "userActions": "Con \"acciones de usuario\", debe configurar al menos un subelemento."
- }
- },
- "DeviceState": {
- "LearnMore": {
- "message": "Control user access when the device the user is signing-in from is not \"Hybrid Azure AD joined\" or \"marked as compliant\".\n '{0}' has been deprecated. Use '{1}' instead."
- }
- },
- "Errors": {
- "notFound": "La directiva no se encuentra o se ha eliminado.",
- "notFoundDetailed": "La directiva \"{0}\" ya no existe; puede que se haya eliminado."
- },
- "NamedLocation": {
- "Form": {
- "CountryLookup": {
- "ariaLabel": "Método de búsqueda por país",
- "gps": "Determinación de la ubicación por coordenadas de GPS",
- "info": "Si se configura la condición de ubicación de una directiva de acceso condicional, la aplicación de autenticación solicitará a los usuarios que compartan su ubicación de GPS. ",
- "ip": "Determinación de la ubicación por dirección IP (solo IPv4)"
- },
- "Header": {
- "new": "Nueva ubicación ({0})",
- "update": "Actualizar ubicación ({0})"
- },
- "IP": {
- "learn": "Configure intervalos IPv4 e IPv6 de ubicaciones con nombre.\n[Más información][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
- },
- "Include": {
- "infoBalloon": "Los países y regiones desconocidos son direcciones IP que no están asociadas a ningún país ni a ninguna región concretos. [Más información][1]\n\nSe incluye lo siguiente:\n* Direcciones IPv6\n* Direcciones IPv4 sin una asignación directa\n[1]: https://aka.ms/canamedlocations\n",
- "label": "Incluir países o regiones desconocidos"
- },
- "Name": {
- "empty": "El nombre no puede estar vacío",
- "placeholder": "Asigne un nombre a esta ubicación"
- },
- "PrivateLink": {
- "learn": "Crear una nueva ubicación con nombre que contenga Private Links para Azure AD.\n[Learn more][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
- },
- "Search": {
- "countries": "Buscar países",
- "names": "Buscar nombres",
- "privateLinks": "Buscar Private Links"
- },
- "Trusted": {
- "label": "Marcar como ubicación de confianza"
- },
- "enter": "Escriba un nuevo intervalo IPv4 o IPv6",
- "example": "p. ej.: 40.77.182.32/27 o 2a01:111::/32"
- },
- "Label": {
- "addCountries": "Ubicación de los países",
- "addIpRange": "Ubicación de los intervalos de direcciones IP",
- "addPrivateLink": "Azure Private Links"
- },
- "Notification": {
- "Create": {
- "Failed": {
- "description": "Error al crear la nueva ubicación ({0})",
- "title": "Error en la creación"
- },
- "InProgress": {
- "description": "Creando nueva ubicación ({0})",
- "title": "Creación en curso"
- },
- "Success": {
- "description": "Nueva ubicación creada correctamente ({0})",
- "title": "Creación realizada"
- }
- },
- "Delete": {
- "Failed": {
- "description": "Error al eliminar la ubicación ({0})",
- "title": "Error en la eliminación"
- },
- "InProgress": {
- "description": "Eliminando la ubicación ({0})",
- "title": "Eliminación en curso"
- },
- "Success": {
- "description": "Ubicación eliminada correctamente ({0})",
- "title": "Eliminación realizada"
- }
- },
- "Update": {
- "Failed": {
- "description": "Error al actualizar la ubicación ({0})",
- "title": "Error en la actualización"
- },
- "InProgress": {
- "description": "Actualizando la ubicación ({0})",
- "title": "Actualización en curso"
- },
- "Success": {
- "description": "Ubicación actualizada correctamente ({0})",
- "title": "Actualización completada correctamente"
- }
- }
- },
- "PrivateLinks": {
- "grid": "Lista de Private Links"
- },
- "Trusted": {
- "title": "Tipo de confianza",
- "trusted": "De confianza"
- },
- "Type": {
- "all": "Todos los tipos",
- "countries": "Países o regiones",
- "ipRanges": "Intervalos IP",
- "privateLinks": "Private Links",
- "title": "Tipo de ubicación"
- },
- "iPRangeInvalidError": "El valor debe ser un intervalo IPv4 o IPv6 válido.",
- "iPRangeLinkOrSiteLocalError": "Se ha detectado la red IP como una dirección local de sitio o de vínculo.",
- "iPRangeOctetError": "La red IP no puede empezar por 0 ni 255.",
- "iPRangePrefixError": "El prefijo de red IP debe estar comprendido entre /{0} y /{1}.",
- "iPRangePrivateError": "Se ha detectado la red IP como una dirección privada."
- },
- "Policies": {
- "Grid": {
- "aria": "Lista de directivas de acceso condicional"
- },
- "countText": "Se han encontrado {0} de {1} directivas.",
- "countTextSingular": "Se ha encontrado {0} de 1 directiva.",
- "search": "Buscar directivas"
- },
- "Policy": {
- "Condition": {
- "ServicePrincipalRisk": {
- "description": "Configure los niveles de riesgo de entidad de servicio necesarios para que se aplique la directiva",
- "infoBalloonContent": "Configurar riesgo de entidad de servicio para aplicar la directiva a los niveles de riesgo seleccionados",
- "title": "Riesgo de entidad de servicio"
- }
- }
- },
- "PolicyControlAuthStrength": {
- "MultiFactorAuthentication": {
- "description": "Combinaciones de métodos que satisfacen la autenticación segura, como contraseña + SMS",
- "displayName": "Autenticación multifactor (MFA)"
- },
- "Passwordless": {
- "description": "Métodos sin contraseña que satisfacen la autenticación segura, como Microsoft Authenticator ",
- "displayName": "MFA sin contraseña"
- },
- "PhishingResistant": {
- "description": "Métodos sin contraseña resistentes a la suplantación de identidad para la autenticación más sólida, como la clave de seguridad FIDO2",
- "displayName": "MFA resistente a la suplantación de identidad"
- }
- },
- "PolicyControlFedAuthMethod": {
- "certificate": "Autenticación de certificado",
- "infoBubble": "Especifique un método de autenticación necesario, que el proveedor de federación debe satisfacer, como ADFS.",
- "multifactor": "Autenticación multifactor",
- "require": "Requerir método de autenticación federada (versión preliminar)",
- "whatIfFormat": "{0} - {1}"
- },
- "PolicyState": {
- "off": "Desactivado",
- "on": "Activado",
- "reportOnly": "Solo informe"
- },
- "PolicyTemplates": {
- "Devices": {
- "description": "Seleccione la categoría de la plantilla de directiva Dispositivos para obtener visibilidad en los dispositivos que acceden a la red. Antes de conceder el acceso debe garantizar el cumplimiento normativo y el estado de mantenimiento.",
- "name": "Dispositivos"
- },
- "Identities": {
- "description": "Seleccione la categoría de la plantilla de directiva de identidades para comprobar y asegurar cada identidad con una autenticación segura en todo su espacio digital.",
- "name": "Identidades"
- },
- "Summary": {
- "CloudApps": {
- "allCloudApps": "Todas las aplicaciones",
- "office365": "Office 365",
- "registerSecurityInfo": "Registro de la información de seguridad"
- },
- "Conditions": {
- "androidAndIOS": "Plataforma del dispositivo: Android e IOS",
- "anyDevice": "Cualquier dispositivo excepto Android, IOS, Windows y Mac",
- "anyDeviceStateExceptHybrid": "Cualquier estado del dispositivo excepto compatible y unido a Azure AD híbrido",
- "anyLocation": "Cualquier ubicación excepto la de confianza",
- "browserMobileDesktop": "Aplicaciones cliente: explorador, aplicaciones móviles y clientes de escritorio",
- "exchangeActiveSync": "Aplicaciones cliente: Exchange Active Sync, otros clientes",
- "windowsAndMac": "Plataforma de dispositivos: Windows y Mac"
- },
- "Devices": {
- "anyDevice": "Cualquier dispositivo"
- },
- "Grant": {
- "appProtectionPolicy": "Requerir directiva de protección de aplicaciones",
- "approvedClientApp": "Requerir aplicación cliente aprobada",
- "blockAccess": "Bloquear acceso",
- "mfa": "Solicitar autenticación multifactor",
- "passwordChange": "Requerir cambio de contraseña",
- "requireCompliantDevice": "Requerir que el dispositivo esté marcado como compatible",
- "requireHybridAzureADDevice": "Requerir dispositivo unido a Azure AD híbrido"
- },
- "Session": {
- "appEnforcedRestrictions": "Usar restricciones que exige la aplicación",
- "signInFrequency": "Frecuencia de inicio de sesión y nunca sesión persistente del explorador"
- },
- "UsersAndGroups": {
- "allUsers": "Todos los usuarios",
- "directoryRoles": "Roles de directorio excepto el administrador actual",
- "globalAdmin": "Administrador global",
- "noGuestAndAdmins": "Todos los usuarios excepto los invitados y externos, administradores globales, administrador actual"
- },
- "azureManagement": "Administración de Azure",
- "deviceFilters": "Filtros para dispositivos",
- "devicePlatforms": "Plataformas del dispositivo"
- },
- "TemplateId": {
- "AppEnforcedRestrictions": {
- "description": "Bloquee o limite el acceso al contenido de SharePoint, OneDrive y Exchange desde dispositivos no administrados.",
- "name": "CA014: Usar restricciones impuestas por la aplicación para dispositivos no administrados",
- "title": "Uso de restricciones impuestas por la aplicación para dispositivos no administrados"
- },
- "ApprovedClientApps": {
- "description": "Para evitar la pérdida de datos, las organizaciones pueden restringir el acceso a las aplicaciones cliente de autenticación moderna aprobadas con Intune App Protection.",
- "name": "CA012: Requerir aplicaciones cliente aprobadas y protección de aplicaciones",
- "title": "Requerir aplicaciones cliente aprobadas y protección de aplicaciones"
- },
- "BlockAccessOnUnknowns": {
- "description": "Se bloqueará el acceso de los usuarios a los recursos de la empresa cuando el tipo de dispositivo sea desconocido o no compatible.",
- "name": "CA010: Bloquear el acceso para una plataforma de dispositivo desconocida o no compatible",
- "title": "Bloquear el acceso a una plataforma de dispositivo desconocida o no compatible"
- },
- "BlockLegacyAuth": {
- "description": "Bloquee los puntos de conexión de autenticación heredados que se puedan usar para omitir la autenticación multifactor. ",
- "name": "CA003: Bloquear autenticación heredada",
- "title": "Bloquear autenticación heredada"
- },
- "NoPersistentBrowserSession": {
- "description": "Proteja el acceso de usuario en dispositivos no administrados al evitar que las sesiones del explorador permanezcan conectadas después de cerrar el explorador y estableciendo una frecuencia de inicio de sesión de 1 hora.",
- "name": "CA011: Sesión del explorador persistente",
- "title": "No hay ninguna sesión de explorador persistente"
- },
- "RequireCompliantOrHybridADAdmins": {
- "description": "Requiera que los administradores con privilegios solo accedan a los recursos cuando usen un dispositivo compatible o unido a Azure AD híbrido.",
- "name": "CA009: Requerir un dispositivo unido a Azure AD híbrido o conforme para administradores",
- "title": "Requerir un dispositivo unido a Azure AD híbrido o conforme para administradores"
- },
- "RequireCompliantOrHybridADAllUsers": {
- "description": "Proteja el acceso a los recursos de la empresa requiriendo a los usuarios que usen un dispositivo administrado o realicen la autenticación multifactor (solo macOS o Windows).",
- "name": "CA013: Requerir autenticación multifactor o dispositivo unido a Azure AD híbrido o compatible para todos los usuarios",
- "title": "Requerir autenticación multifactor o dispositivo unido a Azure AD híbrido o compatible para todos los usuarios"
- },
- "RequireMFAAllUsers": {
- "description": "Requiera autenticación multifactor para todas las cuentas de usuario con el fin de reducir el riesgo.",
- "name": "CA004: Requerir autenticación multifactor para todos los usuarios",
- "title": "Requerir autenticación multifactor para todos los usuarios"
- },
- "RequireMFAForAdmins": {
- "description": "Requiera autenticación multifactor para las cuentas administrativas con privilegios para reducir el riesgo. Esta directiva tendrá como destino los mismos roles que el valor predeterminado de seguridad.",
- "name": "CA001: Requerir autenticación multifactor para todos los administradores",
- "title": "Requerir autenticación multifactor a los administradores"
- },
- "RequireMFAForAzureManagement": {
- "description": "Requerir autenticación multifactor para proteger el acceso con privilegios a los recursos de Azure.",
- "name": "CA006: Requerir la autenticación multifactor para la administración de Azure",
- "title": "Requerir la autenticación multifactor para la administración de Azure"
- },
- "RequireMFAForGuestAccess": {
- "description": "Requerir que los usuarios invitados realicen la autenticación multifactor al acceder a los recursos de la empresa.",
- "name": "CA005: Requerir autenticación multifactor para el acceso de invitado",
- "title": "Requerir autenticación multifactor para el acceso de invitado"
- },
- "RequireMFAForRiskySignIn": {
- "description": "Requerir autenticación multifactor si se detecta un riesgo de inicio de sesión medio o alto (requiere una licencia de Azure AD Premium 2)",
- "name": "CA007: Requerir una autenticación multifactor para el inicio de sesión de riesgo",
- "title": "Requerir una autenticación multifactor para el inicio de sesión de riesgo"
- },
- "RequirePasswordChangeForHighRiskUsers": {
- "description": "Solicitar al usuario que cambie su contraseña si se detecta que el riesgo del usuario es alto (requiere una licencia de Azure AD Premium 2)",
- "name": "CA008: Requerir cambio de contraseña para los usuarios de alto riesgo",
- "title": "Requerir cambio de contraseña para los usuarios de alto riesgo"
- },
- "RequireSecurityInfo": {
- "description": "Proteja cuándo y cómo se registran los usuarios para la autenticación multifactor de Azure AD y la contraseña de autoservicio. ",
- "name": "CA002: Protección del registro de información de seguridad",
- "title": "Protección del registro de información de seguridad"
- }
- },
- "TemplateState": {
- "BlockAccessOnUnknowns": {
- "title": "La habilitación de esta directiva impedirá el acceso desde un tipo de dispositivo desconocido. Considere la posibilidad de usar el modo de solo informe para comenzar hasta que haya confirmado que esto no afectará a los usuarios."
- },
- "BlockLegacyAuth": {
- "description": "Considere la posibilidad de usar el modo de solo informe para comenzar hasta que haya confirmado que esto no afectará a los usuarios.",
- "title": "Al habilitar esta directiva, se bloqueará la autenticación heredada para todos los usuarios."
- },
- "RequireCompliantOrHybridADAdmins": {
- "Description": {
- "on": "Considere la posibilidad de usar el modo de solo informe para comenzar hasta que haya confirmado que no afectará a los usuarios.",
- "reportOnly": "Las directivas en modo de solo informe que requieren dispositivos compatibles pueden pedir a los usuarios de Mac, iOS y Android que seleccionen un certificado de dispositivo durante la evaluación de directivas, aunque no se aplique el cumplimiento de dispositivos. Estos mensajes pueden repetirse hasta que el dispositivo sea compatible."
- },
- "Title": {
- "on": "Al habilitar esta directiva, se impedirá el acceso de los usuarios con privilegios a menos que se use un dispositivo administrado, como uno compatible o unido a Azure AD híbrido. Asegúrese de haber configurado las directivas de cumplimiento o de habilitar la configuración de Azure AD híbrida antes de implementarla.",
- "reportOnly": "Asegúrese de haber configurado las directivas de cumplimiento o habilitado la configuración de Azure AD híbrida antes de habilitarla. "
- }
- },
- "RequireCompliantOrHybridADAllUsers": {
- "Description": {
- "on": "Esta directiva afectará a todos los usuarios excepto al administrador con la sesión iniciada actualmente. Considere la posibilidad de usar el modo de solo informe para comenzar hasta que haya confirmado que no afectará a los usuarios."
- },
- "Title": {
- "on": "¡No se quede bloqueado! Asegúrese de que el dispositivo sea compatible, esté unido a Azure AD híbrido o tenga configurada la autenticación multifactor. ",
- "reportOnly": "Las directivas en modo de solo informe que requieren dispositivos compatibles pueden pedir a los usuarios de Mac, iOS y Android que seleccionen un certificado de dispositivo durante la evaluación de directivas, aunque no se aplique el cumplimiento de dispositivos. Estos mensajes pueden repetirse hasta que el dispositivo sea compatible."
- }
- },
- "RequireMfa": {
- "description": "Si usa cuentas de acceso de emergencia o Azure AD Connect para sincronizar los objetos locales, es posible que tenga que excluir estas cuentas de esta directiva después de la creación."
- },
- "RequireMfaAdmins": {
- "description": "Considere que la cuenta de administrador actual se excluirá automáticamente pero todas las demás estarán protegidas al crear la directiva. Considere la posibilidad de usar el modo de solo informe para empezar.",
- "title": "¡No se bloquee! Esta directiva afecta a Azure Portal."
- },
- "RequireMfaAllUsers": {
- "description": "Considere la posibilidad de usar el modo de solo informe para comenzar hasta que haya comunicado el cambio a todos los usuarios.",
- "title": "Al habilitar esta directiva, se aplicará la autenticación multifactor a todos los usuarios."
- },
- "RequireSecurityInfo": {
- "description": "Asegúrese de revisar la configuración para proteger estas cuentas en función de las necesidades de su empresa.",
- "title": "Los siguientes usuarios y roles se excluyen de esta directiva, invitados y usuarios externos, administradores globales, administrador actual"
- }
- },
- "basics": "Básico",
- "clientApps": "Aplicaciones cliente",
- "cloudApps": "Aplicaciones en la nube",
- "cloudAppsOrActions": "Acciones o aplicaciones en la nube ",
- "conditions": "Condiciones ",
- "createNewPolicy": "Crear nueva directiva a partir de plantillas (versión preliminar)",
- "createPolicy": "Crear directiva",
- "currentUser": "Usuario actual",
- "customizeBuild": "Personalice las herramientas",
- "customizeTemplate": "Las listas de plantillas se personalizan según el tipo de directiva que se quiere crear",
- "excludedDevicePlatform": "Plataformas del dispositivo excluidas",
- "excludedDirectoryRoles": "Roles de directorio excluidos",
- "excludedLocation": "Roles de directorio excluidos",
- "excludedUsers": "Usuarios excluidos",
- "grantControl": "Conceder control ",
- "includeFilteredDevice": "Incluir los dispositivos filtrados en la directiva",
- "includedDevicePlatform": "Plataformas del dispositivo incluidas",
- "includedDirectoryRoles": "Roles de directorio incluidos",
- "includedLocation": "Ubicación incluida",
- "includedUsers": "Usuarios incluidos",
- "legacyAuthenticationClients": "Clientes de autenticación heredada",
- "namePolicy": "Escriba un nombre para la directiva",
- "next": "Siguiente",
- "policyName": "Nombre de directiva",
- "policyState": "Estado de la directiva",
- "policySummary": "Resumen de la directiva",
- "policyTemplate": "Plantilla de directiva",
- "previous": "Anterior",
- "reviewAndCreate": "Revisar y crear",
- "riskLevels": "Niveles de riesgo",
- "selectATemplate": "Seleccione una plantilla",
- "selectTemplate": "Seleccionar plantilla",
- "selectTemplateCategory": "Seleccionar una categoría de plantilla",
- "selectTemplateRecommendation": "Se recomienda usar las siguientes plantillas en función de la respuesta.",
- "sessionControl": "Control de sesión ",
- "signInFrequency": "Frecuencia de inicio de sesión",
- "signInRisk": "Información de inicio de sesión en riesgo",
- "template": "Plantilla ",
- "templateCategory": "Categoría de plantilla",
- "userRisk": "Riesgo de usuario",
- "usersAndGroups": "Usuarios y grupos ",
- "viewPolicySummary": "Ver resumen de directiva "
- },
- "SSM": {
- "MemberSelector": {
- "description": "Usuarios y grupos"
- },
- "Notification": {
- "Migration": {
- "error": "No se pudo migrar la configuración de evaluación de acceso continuo a directivas de acceso condicional",
- "inProgress": "Migración de la configuración de evaluación de acceso continuo",
- "success": "Se migró la configuración de evaluación de acceso continuo a directivas de acceso condicional",
- "successDescription": "Continúe con las directivas de acceso condicional para ver la configuración migrada en la nueva directiva creada con el nombre \"Directiva de CA creada a partir de la configuración de CAE\"."
- },
- "error": "No se pudo actualizar la configuración de la evaluación continua de acceso.",
- "inProgress": "Se está actualizando la configuración de evaluación continua de acceso.",
- "success": "La configuración de evaluación continua de acceso se ha actualizado correctamente."
- },
- "PreviewOptions": {
- "disable": "Deshabilitar versión preliminar",
- "enable": "Habilitar versión preliminar"
- },
- "StrictLocationEnforcement": {
- "infoContent1": "Azure AD y el proveedor de recursos pueden ver diferentes direcciones IP mediante el mismo dispositivo cliente debido a un error de coincidencia de IPv4/IPv6 o la partición de la red. El cumplimiento estricto de la ubicación aplicará la directiva de acceso condicional con base en ambas direcciones IP que Azure AD y el proveedor de recursos pueden consultar.",
- "infoContent2": "Para garantizar la máxima seguridad, se recomienda incluir todas las direcciones IP que puedan consultar tanto Azure AD como el proveedor de recursos en la directiva de ubicación con nombre y activar el modo \"Cumplimiento estricto de la ubicación\".",
- "label": "Aplicación estricta de la ubicación",
- "title": "Modos de cumplimiento adicionales"
- },
- "bladeTitle": "Evaluación continua de acceso",
- "description": "Cuando se quita el acceso de un usuario o se modifica la dirección IP de un cliente, la evaluación continua de acceso bloquea automáticamente el acceso a los recursos y a las aplicaciones casi en tiempo real. ",
- "migrateLabel": "Migrar",
- "migrationError": "No se pudo realizar la migración debido al siguiente error: {0}",
- "migrationInfo": "La configuración de la CAE se ha movido a la experiencia de usuario de acceso condicional. Migre con el botón \"Migrar\" y establezca la configuración con la directiva de acceso condicional en adelante. Haga clic aquí para obtener más información.",
- "noLicenseMessage": "Administre la configuración de la administración inteligente de sesiones con Azure AD Premium.",
- "optionsPickerTitle": "Habilitación o deshabilitación de la evaluación continua de acceso",
- "upsellInfo": "Ya no puede cambiar la configuración de la página y se deben ignorar todas las opciones que aparecen aquí. Se respetará su configuración anterior. Puede cambiar la configuración de la CAE en Acceso condicional más adelante. Haga clic aquí para obtener más información."
- },
- "SessionLifetime": {
- "PersistentBrowser": {
- "Error": {
- "notAllApps": "La directiva de la sesión de explorador persistente solo funciona correctamente cuando se selecciona la opción \"Todas las aplicaciones en la nube\". Actualice la selección de las aplicaciones en la nube."
- },
- "Option": {
- "always": "Siempre persistente",
- "help": "Una sesión de explorador persistente permite que los usuarios mantengan la sesión iniciada después de cerrar y volver a abrir la ventana del explorador.
\n\n- Esta configuración funciona correctamente cuando se selecciona la opción \"Todas las aplicaciones en nube\".
\n- No afecta a la duración de los tokens ni a la configuración de la frecuencia de inicio de sesión.
\n- Invalidará la directiva \"Show option to stay signed in\" de la personalización de marca de la empresa.
\n- La opción \"Nunca persistente\" invalidará las notificaciones de SSO persistentes pasadas desde los servicios de autenticación federada.
\n- La opción \"Nunca persistente\" impedirá el SSO en los dispositivos móviles para las aplicaciones y entre las aplicaciones y el explorador móvil del usuario.
\n",
- "label": "Sesión del explorador persistente",
- "never": "Nunca persistente"
- },
- "Warning": {
- "allApps": "La sesión de explorador persistente solo funciona correctamente cuando se selecciona la opción \"Todas las aplicaciones en la nube\". Cambie la selección de las aplicaciones en la nube. Haga clic aquí para obtener más información."
- }
- },
- "SignInFrequency": {
- "Aria": {
- "units": "Horas o días",
- "value": "Frecuencia"
- },
- "Option": {
- "Day": {
- "plural": "{0} días",
- "singular": "1 día"
- },
- "Hour": {
- "plural": "{0} horas",
- "singular": "1 hora"
- },
- "daysOption": "Días",
- "everytime": "Cada vez",
- "help": "Período de tiempo antes de que se pida a un usuario que vuelva a iniciar sesión cuando intenta acceder a un recurso. El valor predeterminado es un período acumulado de 90 días, es decir, se pedirá que los usuarios vuelvan a autenticarse la primera vez que intenten acceder a un recurso después de haber estado inactivos en la máquina durante un período de 90 días o superior.",
- "hoursOption": "Horas",
- "label": "Frecuencia de inicio de sesión",
- "placeholder": "Seleccionar unidades"
- }
- },
- "mainOption": "Modificar la duración de la sesión",
- "mainOptionHelp": "Configure la frecuencia con la que se pedirá confirmación a los usuarios y si se conservarán las sesiones del explorador. Es posible que las aplicaciones que no admiten los protocolos de autenticación moderna no cumplan estas directivas. En tal caso, póngase en contacto con el desarrollador de la aplicación."
- },
- "SigninRisk": {
- "LearnMore": {
- "message": "Controle el acceso de los usuarios para responder a niveles de riesgo específicos de inicio de sesión."
- }
- },
- "SingleSelectorActive": {
- "failed": "No se pueden cargar estos datos.",
- "reattempt": "Cargando datos. Reintento {0} de {1}."
- },
- "TimeCondition": {
- "Errors": {
- "both": "El intervalo de tiempo de \"Incluir\" o \"Excluir\" no es válido.",
- "daysOfWeek": "{0} Asegúrese de especificar al menos un día de la semana.",
- "endBeforeStart": "{0} Asegúrese de que la fecha o la hora de inicio sea anterior a la fecha o la hora de finalización.",
- "exclude": "El intervalo de tiempo de \"Excluir\" no es válido.",
- "generic": "{0} Asegúrese de que ha establecido los dos días de la semana y la zona horaria. Si no marca \"Todo el día\", también debe establecer la hora de inicio y la de finalización.",
- "include": "El intervalo de tiempo de \"Incluir\" no es válido.",
- "timeMissing": "{0} Asegúrese de especificar tanto la hora de inicio como la de finalización.",
- "timeZone": "{0} Asegúrese de especificar una zona horaria.",
- "timesAndZone": "{0} Asegúrese de establecer la hora de inicio, la de finalización y la zona horaria."
- }
- },
- "UserActions": {
- "Included": {
- "none": "No hay aplicaciones en la nube o acciones seleccionadas.",
- "plural": "{0} acciones de usuario incluidas",
- "singular": "1 acción de usuario incluida"
- },
- "accessRequirement1": "Nivel 1",
- "accessRequirement2": "Nivel 2",
- "accessRequirement3": "Nivel 3",
- "accessRequirementsLabel": "Acceso a los datos de aplicaciones protegidos",
- "appsActionsAuthTitle": "Aplicaciones en la nube, acciones o contexto de autenticación",
- "appsOrActionsSelectorInfoBallonText": "Aplicaciones a las que se ha accedido o acciones del usuario",
- "appsOrActionsTitle": "Aplicaciones en la nube o acciones",
- "label": "Acciones del usuario",
- "mainOptionsLabel": "Seleccione a qué se aplica esta directiva.",
- "registerOrJoinDevices": "Registrar o unir dispositivos",
- "registerSecurityInfo": "Registro de la información de seguridad",
- "selectionInfo": "Seleccione la acción a la que se aplicará esta directiva."
- },
- "UserSelectionBlade": {
- "DirectoryRoles": {
- "ariaLabel": "Elegir roles de directorio"
- },
- "Excluded": {
- "gridAria": "Lista de usuarios excluidos"
- },
- "Included": {
- "gridAria": "Lista de usuarios incluidos"
- },
- "Validation": {
- "customRoleIncluded": "\"Roles del directorio\" incluye al menos un rol personalizado.",
- "customRoleSelected": "Se ha seleccionado al menos un rol personalizado.",
- "failed": "Es necesario configurar \"{0}\".",
- "roles": "Seleccione por lo menos un rol.",
- "usersGroups": "Seleccione por lo menos un usuario o grupo."
- },
- "learnMore": "Controle el acceso en función de a quién se aplicará la directiva, como usuarios y grupos, identidades de carga de trabajo, roles de directorio o invitados externos."
- },
- "ValidationResult": {
- "blockEveryonePolicy": "La configuración de la directiva no se admite. Revise las asignaciones y los controles.",
- "invalidApplicationCondition": "Las aplicaciones de nube seleccionadas no son válidas.",
- "invalidClientTypesCondition": "Las aplicaciones cliente seleccionadas no son válidas.",
- "invalidConditions": "Las asignaciones no están seleccionadas.",
- "invalidControls": "Los controles seleccionados no son válidos.",
- "invalidDevicePlatformsCondition": "Las plataformas de dispositivo seleccionadas no son válidas.",
- "invalidDevicesCondition": "Configuración de dispositivo no válida. Es probable que la configuración de \"{0}\" no sea válida.",
- "invalidGrantControlPolicy": "Control de concesión no válido",
- "invalidLocationsCondition": "Las ubicaciones seleccionadas no son válidas.",
- "invalidPolicy": "Las asignaciones no están seleccionadas.",
- "invalidSessionControlPolicy": "Control de sesión no válido",
- "invalidSignInRisksCondition": "El riesgo de inicio de sesión no es válido.",
- "invalidUserRisksCondition": "El riesgo de usuario no es válido.",
- "invalidUsersCondition": "Los usuarios seleccionados no son válidos.",
- "mamPolicyShouldOnlyTargetAndroidOrIosPlatforms": "La directiva MAM se puede aplicar solo a las plataformas de cliente de Android o iOS.",
- "notSupportedCombination": "No se admite la configuración de directiva. Más información sobre directivas admitidas.",
- "pending": "Validación de la directiva en curso",
- "requireComplianceEveryonePolicy": "La configuración de directiva requerirá el cumplimiento de dispositivos a todos los usuarios. Revise las asignaciones seleccionadas.",
- "success": "Directiva válida"
- },
- "VpnCert": {
- "Grid": {
- "aria": "Lista de certificados de VPN"
- }
- },
- "WarningsInfo": {
- "Controls": {
- "compliantDeviceEnabled": "¡No se quede fuera! Asegúrese de que su dispositivo sea conforme.",
- "domainJoinedDeviceEnabled": "¡No se quede fuera! Asegúrese de que su dispositivo esté unido a Azure AD híbrido.",
- "exchangeDisabled": "Exchange ActiveSync solo admite los controles \"Dispositivo compatible\" y \"Aplicación cliente aprobada\". Haga clic para obtener más información.",
- "exchangeDisabled2": "Exchange ActiveSync solo admite los controles \"Dispositivo compatible\", \"Aplicación cliente aprobada\" y \"Compliant client app\". Haga clic para obtener más información.",
- "notAvailableForSP": "Algunos controles no están disponibles debido a la selección de \"{0}\" en la asignación de directiva",
- "requireAuthOrMfa": "\"{0}\" no se puede usar con \"{1}\"",
- "requireMfa": "Considere la posibilidad de probar la nueva versión preliminar pública de \"{0}\".",
- "requirePasswordChangeEnabled": "Solo se puede usar \"Requerir cambio de contraseña\" si la directiva está asignada a \"Todas las aplicaciones en la nube\"."
- },
- "Policies": {
- "Linux": {
- "devicePlatformsReportOnlyPolicy": "Las directivas en modo de solo informe que requieren dispositivos compatibles pueden pedir a los usuarios de macOS, iOS, Android y Linux que seleccionen un certificado de dispositivo.",
- "excludeDevicePlatforms": "Excluir las plataformas de dispositivos macOS, iOS, Android y Linux de esta directiva.",
- "proceedAnywayDevicePlatforms": "Continúe con la configuración seleccionada. Los usuarios de macOS, iOS, Android y Linux pueden recibir mensajes cuando se comprueba el cumplimiento del dispositivo."
- },
- "blockCurrentUserPolicy": "No limite sus posibilidades. Recomendamos aplicar primero una directiva a un pequeño conjunto de usuarios para comprobar que el comportamiento sea el esperado. También recomendamos excluir de esta directiva al menos a un administrador. De esta forma, se garantiza que siga teniendo acceso y que pueda actualizar una directiva si se requiere realizar algún cambio. Revise los usuarios y las aplicaciones afectados.",
- "devicePlatformsReportOnlyPolicy": "Es posible que las directivas en el modo de solo informe que requieran dispositivos conformes soliciten a los usuarios de macOS, iOS y Android que seleccionen un certificado de dispositivo.",
- "excludeCurrentUserSelection": "Excluir el usuario actual, {0}, de esta directiva.",
- "excludeDevicePlatforms": "Excluya de esta directiva las plataformas de dispositivos macOS, iOS y Android.",
- "proceedAnywayDevicePlatforms": "Continúe con la configuración seleccionada. Es posible que los usuarios de macOS, iOS y Android reciban solicitudes para comprobar la conformidad del dispositivo.",
- "proceedAnywaySelection": "Entiendo que mi cuenta se verá afectada por esta directiva. Quiero continuar de todas formas."
- },
- "ServicePrincipals": {
- "blockExchange": "El hecho de seleccionar Office 365 Exchange Online también afectará a aplicaciones como OneDrive and Teams.",
- "blockPortal": "¡No se quede fuera! Esta directiva afecta a Azure Portal. Antes de continuar, asegúrese de que usted u otra persona puedan volver a acceder al portal.",
- "blockPortalWithSession": "¡No se quede fuera! Esta directiva afecta a Azure Portal. Antes de continuar, asegúrese de que usted u otra persona puedan volver a acceder al portal.
Si está configurando una directiva de sesión de explorador persistente que requiere seleccionar \"Todas las aplicaciones en la nube\" para funcionar correctamente, descarte esta advertencia.",
- "blockSharePoint": "La selección de SharePoint Online también afectará a aplicaciones como Microsoft Teams, Planner, Delve, MyAnalytics y Newsfeed.",
- "blockSkype": "Si selecciona Skype Empresarial Online, también afectará a Microsoft Teams.",
- "includeOrExclude": "Puede configurar el filtro de aplicación para \"{0}\" o \"{1}\", pero no ambos.",
- "selectAppsNAForSP": "No se pueden seleccionar aplicaciones en la nube individuales debido a la selección '{0}' en la asignación de directivas",
- "teamsBlocked": "Microsoft Teams también se verá afectado cuando se incluyan aplicaciones como SharePoint Online y Exchange Online en la directiva."
- },
- "Users": {
- "blockAllUsers": "No pierda el acceso a la cuenta. Esta directiva afectará a todos los usuarios. Le recomendamos que aplique la directiva a un conjunto reducido de usuarios primero para comprobar que su comportamiento es el esperado."
- }
- },
- "WhatIf": {
- "Device": {
- "AttributesGrid": {
- "aria": "Lista de atributos del dispositivo empleado durante el inicio de sesión.",
- "infoBalloon": "Lista de atributos del dispositivo empleado durante el inicio de sesión."
- }
- }
- },
- "advancedTabText": "Avanzado",
- "allCloudAppsErrorBox": "Se debe seleccionar \"Todas las aplicaciones en la nube\" si se ha seleccionado la concesión \"Requerir cambio de contraseña\".",
- "allDayCheckboxLabel": "Todo el día",
- "allDevicePlatforms": "Cualquier dispositivo",
- "allGuestUserInfoContent": "Incluye los clientes de Azure AD B2B, pero no los de SharePoint B2B.",
- "allGuestUserLabel": "Todos los usuarios externos e invitados",
- "allRiskLevelsOption": "Todos los niveles de riesgo",
- "allTrustedLocationLabel": "Todas las ubicaciones de confianza",
- "allUserGroupSetSelectorLabel": "Todos los usuarios y grupos",
- "allUsersString": "Todos los usuarios",
- "and": "{0} Y {1} ",
- "andWithGrouping": "({0}) Y {1} ",
- "androidDisplayName": "Android",
- "anyCloudAppSelection": "Cualquier aplicación en la nube",
- "appContextOptionInfoContent": "Etiqueta de autenticación solicitada",
- "appContextOptionLabel": "Etiqueta de autenticación solicitada (versión preliminar)",
- "appContextUriPlaceholder": "Ejemplo: uri:contoso.com:level3",
- "appEnforceInfoBubble": "Es posible que las restricciones que exige la aplicación requieran opciones de configuración de administración adicionales dentro de las aplicaciones de nube. Las restricciones solo se aplicarán en sesiones nuevas.",
- "appNotSetSeletorLabel": "0 aplicaciones en la nube seleccionadas",
- "applyConditionClientAppInfoBalloonContent": "Configurar aplicaciones cliente para aplicar la directiva a aplicaciones cliente específicas",
- "applyConditionDevicePlatformInfoBalloonContent": "Configurar plataformas de dispositivo para aplicar la directiva a plataformas específicas",
- "applyConditionDeviceStateInfoBalloonContent": "Configurar estado del dispositivo para aplicar la directiva a estados de dispositivo concretos",
- "applyConditionLocationInfoBalloonContent": "Configurar ubicaciones para aplicar la directiva a ubicaciones de confianza o que no son de confianza",
- "applyConditionSigninRiskInfoBalloonContent": "Configurar riesgo de inicio de sesión para aplicar la directiva a los niveles de riesgo seleccionados",
- "applyConditionUserRiskInfoBalloonContent": "Configurar el riesgo de usuario para aplicar la directiva a los niveles de riesgo seleccionados",
- "applyConditonLabel": "Configurar",
- "ariaLabelPolicyDisabled": "La directiva está deshabilitada",
- "ariaLabelPolicyEnabled": "La directiva está habilitada.",
- "ariaLabelPolicyReportOnly": "La directiva está en modo de solo informe.",
- "blockAccess": "Bloquear acceso",
- "builtInDirectoryRoleLabel": "Roles del directorio integrados",
- "casCustomControlInfo": "Las directivas personalizadas deben configurarse en el portal de Cloud App Security. Este control funciona de forma instantánea para las aplicaciones destacadas y puede incorporarse automáticamente en cualquier aplicación. Haga clic aquí para obtener más información sobre ambos casos.",
- "casInfoBubble": "Este control funciona para diversas aplicaciones en la nube.",
- "casPreconfiguredControlInfo": "Este control funciona de forma instantánea para las aplicaciones destacadas y puede incorporarse automáticamente en cualquier aplicación. Haga clic aquí para obtener más información sobre ambos casos.",
- "cert64DownloadCol": "Descargar certificado Base 64",
- "cert64Name": "VpnBase64Cert",
- "certDownloadCol": "Descargar certificado",
- "certDurationCol": "Expiración",
- "certDurationStartCol": "Válido desde",
- "certName": "VpnCert",
- "chooseApplicationsBladeSubtitle": "",
- "chooseApplicationsBladeTitle": "Elegir aplicaciones",
- "chooseApplicationsCartSubitle": "",
- "chooseApplicationsCartTitle": "Aplicaciones elegidas",
- "chooseApplicationsEmpty": "No hay aplicaciones",
- "chooseApplicationsNone": "Ninguno",
- "chooseApplicationsNoneFound": "No encontramos \"{0}\". Pruebe con otro nombre o id.",
- "chooseApplicationsPlural": "{0} y {1} más",
- "chooseApplicationsReAuthEverytimeInfo": "¿Busca su aplicación? Algunas aplicaciones no se pueden usar con el control de sesión \"Requerir reautenticación cada vez\"",
- "chooseApplicationsRemove": "Quitar",
- "chooseApplicationsReturnedPlural": "Se encontraron {0} aplicaciones.",
- "chooseApplicationsReturnedSingular": "Se encontró 1 aplicación.",
- "chooseApplicationsSearchBalloon": "Escriba el nombre o el id. de una aplicación para buscarla.",
- "chooseApplicationsSearchHint": "Buscar aplicaciones...",
- "chooseApplicationsSearchLabel": "Aplicaciones",
- "chooseApplicationsSearching": "Buscando...",
- "chooseApplicationsSelect": "Seleccionar",
- "chooseApplicationsSelected": "Seleccionados",
- "chooseApplicationsSingular": "{0} y 1 más",
- "chooseApplicationsTooMany": "Se pueden mostrar más resultados. Filtre con el cuadro de búsqueda.",
- "chooseLocationCorpnetItem": "Red corporativa",
- "chooseLocationSelectedLocationsLabel": "Ubicaciones seleccionadas",
- "chooseLocationTrustedIpsItem": "IP de confianza de MFA",
- "chooseLocationsBladeSubtitle": "",
- "chooseLocationsBladeTitle": "Elegir ubicaciones",
- "chooseLocationsCartSubitle": "",
- "chooseLocationsCartTitle": "Ubicaciones elegidas",
- "chooseLocationsEmpty": "No hay ubicaciones",
- "chooseLocationsExcludedSelectorTitle": "Seleccionar",
- "chooseLocationsIncludedSelectorTitle": "Seleccionar",
- "chooseLocationsNone": "Ninguno",
- "chooseLocationsNoneFound": "No encontramos \"{0}\". Pruebe con otro nombre o id.",
- "chooseLocationsPlural": "{0} y {1} más",
- "chooseLocationsRemove": "Quitar",
- "chooseLocationsReturnedPlural": "{0} ubicaciones encontradas",
- "chooseLocationsReturnedSingular": "1 ubicación encontrada",
- "chooseLocationsSearchBalloon": "Escriba el nombre de una ubicación para buscarla.",
- "chooseLocationsSearchHint": "Buscar ubicaciones...",
- "chooseLocationsSearchLabel": "Ubicaciones",
- "chooseLocationsSearching": "Buscando...",
- "chooseLocationsSelect": "Seleccionar",
- "chooseLocationsSelected": "Seleccionado",
- "chooseLocationsSelectionBladeExcludedSelectorTitle": "Seleccionar",
- "chooseLocationsSelectionBladeIncludedSelectorTitle": "Seleccionar",
- "chooseLocationsSingular": "{0} y 1 más",
- "chooseLocationsTooMany": "Se pueden mostrar más resultados. Filtre con el cuadro de búsqueda.",
- "claimProviderAddCommandText": "Nuevo control personalizado",
- "claimProviderAddNewBladeTitle": "Nuevo control personalizado",
- "claimProviderDeleteCommand": "Eliminar",
- "claimProviderDeleteDescription": "¿Está seguro de que quiere eliminar '{0}'? Esta acción no se puede deshacer.",
- "claimProviderDeleteTitle": "¿Está seguro?",
- "claimProviderEditInfoText": "Escriba el archivo JSON de los controles personalizados que especificaron los proveedores de notificaciones.",
- "claimProviderNotificationCreateDescription": "Creando control personalizado con el nombre \"{0}\"",
- "claimProviderNotificationCreateFailedDescription": "Error al crear el control personalizado \"{0}\". Vuelva a intentarlo más tarde.",
- "claimProviderNotificationCreateFailedTitle": "No se pudo crear el control personalizado",
- "claimProviderNotificationCreateSuccessDescription": "Se creó el control personalizado con el nombre \"{0}\".",
- "claimProviderNotificationCreateSuccessTitle": "Se creó {0}.",
- "claimProviderNotificationCreateTitle": "Creando {0}",
- "claimProviderNotificationDeleteDescription": "Eliminando el control personalizado con el nombre \"{0}\"",
- "claimProviderNotificationDeleteFailedDescription": "Error al eliminar el control personalizado \"{0}\". Vuelva a intentarlo más tarde.",
- "claimProviderNotificationDeleteFailedTitle": "No se pudo eliminar el control personalizado",
- "claimProviderNotificationDeleteSuccessDescription": "Se eliminó el control personalizado con el nombre \"{0}\".",
- "claimProviderNotificationDeleteSuccessTitle": "Se eliminó '{0}'.",
- "claimProviderNotificationDeleteTitle": "Eliminando '{0}'",
- "claimProviderNotificationUpdateDescription": "Actualizando el control personalizado con el nombre \"{0}\"",
- "claimProviderNotificationUpdateFailedDescription": "Error al actualizar el control personalizado con el nombre \"{0}\". Vuelva a intentarlo más tarde.",
- "claimProviderNotificationUpdateFailedTitle": "No se pudo actualizar el control personalizado",
- "claimProviderNotificationUpdateSuccessDescription": "Se actualizó el control personalizado con el nombre \"{0}\".",
- "claimProviderNotificationUpdateSuccessTitle": "Se actualizó {0}.",
- "claimProviderNotificationUpdateTitle": "Actualizando '{0}'",
- "claimProviderValidationAppIdInvalid": "El valor \"AppId\" no es válido. Revíselo y vuelva a intentarlo.",
- "claimProviderValidationClientIdMissing": "Falta un valor \"ClientId\" en los datos. Revíselo y vuelva a intentarlo.",
- "claimProviderValidationControlClaimsRequestedMissing": "Falta un valor \"ClaimsRequested\" en \"Control\". Revíselo y vuelva a intentarlo.",
- "claimProviderValidationControlClaimsRequestedTypeMissing": "Falta un valor \"Type\" en el elemento \"ClaimsRequested\". Revíselo y vuelva a intentarlo.",
- "claimProviderValidationControlIdAlreadyExists": "El valor \"Id\" de \"Control\" ya existe. Revíselo y vuelva a intentarlo.",
- "claimProviderValidationControlIdMissing": "Falta un valor \"Id\" en \"Control\". Revíselo y vuelva a intentarlo.",
- "claimProviderValidationControlIdReferencedInExistingPolicy": "El valor \"Id\" de \"Control\" no se puede quitar porque se le hace referencia en una directiva existente. Primero, quítelo de la directiva.",
- "claimProviderValidationControlIdTooManyControls": "La propiedad \"Control\" tiene demasiados controles. Revísela y vuelva a intentarlo.",
- "claimProviderValidationControlIdValueReserved": "El valor \"Id\" de \"Control\" es una palabra clave reservada. Use otro id.",
- "claimProviderValidationControlNameAlreadyExists": "El valor \"Name\" de \"Control\" ya existe. Revíselo y vuelva a intentarlo.",
- "claimProviderValidationControlNameMissing": "Falta un valor \"Name\" en \"Control\". Revíselo y vuelva a intentarlo.",
- "claimProviderValidationControlsMissing": "Falta un valor \"Controls\" en los datos. Revíselo y vuelva a intentarlo.",
- "claimProviderValidationDiscoveryUrlMissing": "Falta un valor \"DiscoveryUrl\" en los datos. Revíselo y vuelva a intentarlo.",
- "claimProviderValidationInvalid": "Los datos proporcionados no son válidos. Revíselos y vuelva a intentarlo.",
- "claimProviderValidationInvalidJsonDefinition": "No se puede guardar el control personalizado. Revise el texto JSON y vuelva a intentarlo.",
- "claimProviderValidationNameAlreadyExists": "El valor \"Name\" ya existe. Revíselo y vuelva a intentarlo.",
- "claimProviderValidationNameMissing": "Falta un valor \"Name\" en los datos. Revíselo y vuelva a intentarlo.",
- "claimProviderValidationUnknown": "Se produjo un error desconocido al validar los datos proporcionados. Revíselo y vuelva a intentarlo.",
- "claimProvidersNone": "No hay controles personalizados.",
- "claimProvidersSearchPlaceholder": "Controles de búsqueda.",
- "classicPoilcyFilterTitle": "Mostrar",
- "classicPolicyAllPlatforms": "Todas las plataformas",
- "classicPolicyClientAppBrowserAndNative": "Explorador, aplicaciones móviles y clientes de escritorio",
- "classicPolicyCloudAppTitle": "Aplicación en la nube",
- "classicPolicyControlAllow": "Permitir",
- "classicPolicyControlBlock": "Bloquear",
- "classicPolicyControlBlockWhenNotAtWork": "Bloquear acceso cuando no está en el trabajo",
- "classicPolicyControlRequireCompliantDevice": "Requerir dispositivo compatible",
- "classicPolicyControlRequireDomainJoinedDevice": "Requerir dispositivo unido al dominio",
- "classicPolicyControlRequireMfa": "Comprobación con MFA",
- "classicPolicyControlRequireMfaWhenNotAtWork": "Requerir autenticación multifactor fuera del trabajo",
- "classicPolicyDeleteCommand": "Eliminar",
- "classicPolicyDeleteFailTitle": "No se pudo eliminar la directiva clásica",
- "classicPolicyDeleteInProgressTitle": "Eliminando la directiva clásica",
- "classicPolicyDeleteSuccessTitle": "Directiva clásica eliminada",
- "classicPolicyDetailBladeTitle": "Detalles",
- "classicPolicyDisableCommand": "Deshabilitar",
- "classicPolicyDisableConfirmation": "¿Seguro que quiere deshabilitar \"{0}\"? Esta acción no se puede deshacer.",
- "classicPolicyDisableFailDescription": "No se pudo deshabilitar \"{0}\".",
- "classicPolicyDisableFailTitle": "No se pudo deshabilitar la directiva clásica",
- "classicPolicyDisableInProgressDescription": "Deshabilitando \"{0}\"",
- "classicPolicyDisableInProgressTitle": "Deshabilitando la directiva clásica",
- "classicPolicyDisableSuccessDescription": "\"{0}\" se deshabilitó correctamente.",
- "classicPolicyDisableSuccessTitle": "Directiva clásica deshabilitada",
- "classicPolicyEasSupportedPlatforms": "Plataformas compatibles con Exchange ActiveSync",
- "classicPolicyEasUnsupportedPlatforms": "Plataformas no compatibles con Exchange ActiveSync",
- "classicPolicyExcludedPlatformsTitle": "Plataformas de dispositivos excluidas",
- "classicPolicyFilterAll": "Todas las directivas",
- "classicPolicyFilterDisabled": "Directivas deshabilitadas",
- "classicPolicyFilterEnabled": "Directivas habilitadas",
- "classicPolicyIncludeExcludeMembersDescription": "Al excluir grupos, puede realizar una migración por fases de las directivas.",
- "classicPolicyIncludeExcludeMembersTitle": "Incluir o excluir grupos",
- "classicPolicyIncludedPlatformsTitle": "Plataformas de dispositivo incluidas",
- "classicPolicyManualMigrationMessage": "Esta directiva debe migrarse manualmente.",
- "classicPolicyMigrateCommand": "Migrar",
- "classicPolicyMigrateConfirmation": "¿Seguro que quiere migrar \"{0}\"? Esta directiva solo se puede migrar una vez.",
- "classicPolicyMigrateFailDescription": "No se pudo migrar \"{0}\".",
- "classicPolicyMigrateFailTitle": "No se pudo migrar la directiva clásica",
- "classicPolicyMigrateInProgressDescription": "Migrando \"{0}\"",
- "classicPolicyMigrateInProgressTitle": "Migrando directiva clásica",
- "classicPolicyMigrateRecommendText": "Recomendación: Migre a las nuevas directivas de Azure Portal.",
- "classicPolicyMigrateSuccessTitle": "La directiva clásica se migró correctamente",
- "classicPolicyMigratedSuccessDescription": "Esta directiva clásica ahora puede administrarse en Directivas.",
- "classicPolicyMigratedSuccessDescriptionMultiple": "Esta directiva clásica se migra en forma de {0} directivas nuevas. Las nuevas directivas pueden administrarse en Directivas.",
- "classicPolicyNoEditPermissionMsg": "No tiene permiso para editar esta directiva. Solo los administradores globales y los administradores de seguridad pueden editarla. Haga clic aquí para obtener más información.",
- "classicPolicySaveFailDescription": "No se pudo guardar \"{0}\".",
- "classicPolicySaveFailTitle": "No se pudo guardar la directiva clásica",
- "classicPolicySaveInProgressDescription": "Guardando \"{0}\"",
- "classicPolicySaveInProgressTitle": "Guardando la directiva clásica",
- "classicPolicySaveSuccessDescription": "\"{0}\" se guardó correctamente.",
- "classicPolicySaveSuccessTitle": "Directiva clásica guardada",
- "clientAppBladeLegacyInfoBanner": "La autenticación heredada no se admite actualmente.",
- "clientAppBladeLegacyUpsellBanner": "Bloqueo de aplicaciones cliente no compatibles (versión preliminar)",
- "clientAppBladeTitle": "Aplicaciones cliente",
- "clientAppDescription": "Seleccionar aplicaciones cliente a las que se aplicará la directiva",
- "clientAppExchangeActiveSync": "Exchange ActiveSync",
- "clientAppExchangeDisabledInfo": "Exchange ActiveSync está disponible cuando Exchange Online es la única aplicación de nube seleccionada. Haga clic para obtener más información.",
- "clientAppExchangeWarning": "Exchange ActiveSync no admite actualmente todas las demás condiciones.",
- "clientAppLearnMore": "Controle el acceso de los usuarios a aplicaciones cliente específicas que no usan la autenticación moderna.",
- "clientAppLegacyHeader": "Clientes de autenticación heredada",
- "clientAppMobileDesktop": "Aplicaciones móviles y aplicaciones de escritorio",
- "clientAppModernHeader": "Clientes de autenticación moderna",
- "clientAppOnlySupportedPlatforms": "Aplicar directiva solo en las plataformas compatibles",
- "clientAppSelectSpecificClientApps": "Seleccionar aplicaciones cliente",
- "clientAppV2BladeTitle": "Aplicaciones cliente (versión preliminar)",
- "clientAppWebBrowser": "Explorador",
- "clientAppsSelectedLabel": "{0} incluido",
- "clientTypeBrowser": "Navegador",
- "clientTypeEas": "Clientes de Exchange ActiveSync",
- "clientTypeEasInfo": "Clientes de Exchange ActiveSync que solo usan la autenticación heredada.",
- "clientTypeModernAuth": "Clientes de autenticación moderna",
- "clientTypeOtherClients": "Otros clientes",
- "clientTypeOtherClientsInfo": "Aquí se incluyen clientes de Office antiguos y otros protocolos de correo (POP, IMAP, SMTP, etc.). [Más información][1]\n[1]: https://aka.ms/caclientapps.\n",
- "cloudAppCountDiffBannerText": "Se han eliminado del directorio {0} aplicaciones en la nube configuradas en la directiva, pero esto no afectará a otras aplicaciones que estén en ella. La próxima vez que actualice la sección de aplicaciones de la directiva, se quitarán automáticamente las aplicaciones que haya eliminado.",
- "cloudAppsSelectionBladeAllMicrosoftApps": "Todas las aplicaciones de Microsoft",
- "cloudAppsSelectionExcludeAllMicrosoftClients": "Permitir aplicaciones móviles, de escritorio y en la nube de Microsoft (versión preliminar)",
- "cloudappsSelectionBladeAllCloudapps": "Todas las aplicaciones en la nube",
- "cloudappsSelectionBladeExcludeDescription": "Seleccionar las aplicaciones en la nube que quedarán exentas de la directiva",
- "cloudappsSelectionBladeExcludedSelectorTitle": "Seleccionar las aplicaciones en la nube excluidas",
- "cloudappsSelectionBladeIncludeDescription": "Seleccionar las aplicaciones en la nube a las que se aplicará esta directiva",
- "cloudappsSelectionBladeIncludedSelectorTitle": "Seleccionar",
- "cloudappsSelectionBladeSelectedCloudapps": "Seleccionar aplicaciones",
- "cloudappsSelectorInfoBallonText": "Servicios a los que el usuario obtiene acceso para hacer trabajos. Por ejemplo, 'Salesforce'.",
- "cloudappsSelectorUserPlural": "{0} aplicaciones",
- "cloudappsSelectorUserSingular": "1 aplicación",
- "conditionLabelMulti": "{0} condiciones seleccionadas",
- "conditionLabelOne": "1 condición seleccionada",
- "conditionalAccessBladeTitle": "Acceso condicional",
- "conditionsNotSelectedLabel": "Sin configurar",
- "conditionsReqPwSet": "Algunas opciones no están disponibles debido a que la concesión \"Requerir cambio de contraseña\" se está seleccionando actualmente.",
- "configureCasText": "Configurar Cloud App Security",
- "configureCustomControlsText": "Configurar una directiva personalizada",
- "controlLabelMulti": "{0} controles seleccionados",
- "controlLabelOne": "1 control seleccionado",
- "controlValidatorText": "Seleccione al menos un control.",
- "controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
- "controlsDeviceComplianceInfoBubble": "El dispositivo debe ser compatible con Intune. Si el dispositivo no es compatible, se pedirá al usuario que lo haga compatible.",
- "controlsDomainJoinedInfoBubble": "Los dispositivos deben estar unidos a Azure AD híbrido.",
- "controlsMamInfoBubble": "El dispositivo debe usar estas aplicaciones cliente aprobadas.",
- "controlsMfaInfoBubble": "El usuario debe completar los requisitos de seguridad adicionales, como llamada de teléfono o mensaje de texto.",
- "controlsOrAndInfoBubble": "ControlsOrAndInfoBubble",
- "controlsRequireCompliantAppInfoBubble": "El dispositivo debe usar las aplicaciones protegidas por directivas.",
- "controlsRequirePasswordResetInfoBubble": "Permite requerir el cambio de la contraseña para reducir el riesgo de usuario. Esta opción también requiere la autenticación multifactor. No se pueden usar otros controles.",
- "countriesRadiobuttonInfoBalloonContent": "El país o la región de procedencia de un inicio de sesión se determina a partir de la dirección IP del usuario.",
- "createNewVpnCert": "Nuevo certificado",
- "createdTimeLabel": "Hora de creación",
- "customRoleLabel": "Roles personalizados (no se admite)",
- "dateRangeTypeLabel": "Intervalo de fechas",
- "daysOfWeekPlaceholderText": "Filtrar días de la semana",
- "daysOfWeekTypeLabel": "Días de la semana",
- "deletePolicyNoLicenseText": "Ya puede eliminar esta directiva. Una vez eliminada, no podrá volver a crearla hasta que disponga de las licencias necesarias.",
- "descriptionContentForControlsAndOr": "Para varios controles",
- "devicePlatform": "Plataforma de dispositivo",
- "devicePlatformConditionHelpDescription": "Permite aplicar la directiva a las plataformas de dispositivos seleccionadas.\n[Más información][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2044750",
- "devicePlatformInclude": "{0} incluido",
- "devicePlatformIncludeExclude": "{0} y {1} excluidos",
- "devicePlatformNoSelectionError": "Para seleccionar plataformas de dispositivo, es necesario seleccionar un elemento secundario.",
- "devicePlatformsNone": "Ninguno",
- "deviceSelectionBladeExcludeDescription": "Seleccionar las plataformas que quedarán exentas de la directiva",
- "deviceSelectionBladeIncludeDescription": "Seleccionar las plataformas de dispositivo que quiere incluir en esta directiva",
- "deviceStateAll": "Todos los estados de dispositivo",
- "deviceStateCompliant": "Dispositivo marcado como compatible",
- "deviceStateCompliantInfoContent": "Los dispositivos compatibles con Intune se excluirán de la evaluación de esta directiva, de modo que si, por ejemplo, la directiva bloquea el acceso, bloqueará todos los dispositivos excepto los compatibles con Intune.",
- "deviceStateConditionConfigureInfoContent": "Configurar directiva basada en el estado del dispositivo",
- "deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Hybrid Azure AD joined' or 'marked as compliant'.\n '{0}' has been deprecated. Use '{1}' instead.",
- "deviceStateConditionSelectorLabel": "Estado del dispositivo (versión preliminar)",
- "deviceStateDomainJoined": "Unido a Azure AD híbrido de dispositivo",
- "deviceStateDomainJoinedInfoContent": "Los dispositivos unidos a Azure AD híbrido se excluirán de la evaluación de esta directiva, de modo que si, por ejemplo, la directiva bloquea el acceso, bloqueará todos los dispositivos excepto los unidos a Azure AD híbrido.",
- "deviceStateDomainJoinedInfoLinkText": "Más información.",
- "deviceStateExcludeDescription": "Seleccione la condición de estado del dispositivo que se usará para excluir dispositivos de la directiva.",
- "deviceStateIncludeAndExcludeOneLabel": "{0} y excluir {1}",
- "deviceStateIncludeAndExcludeTwoLabel": "{0} y excluir {1}, {2}",
- "directoryRoleInfoContent": "Asigne la directiva a roles del directorio integrados.",
- "directoryRolesLabel": "Roles del directorio",
- "discardbutton": "Descartar",
- "downloadDefaultFileName": "Intervalos IP",
- "downloadExampleFileName": "Ejemplo",
- "downloadExampleHeader": "Este es un archivo de ejemplo con demostraciones de los tipos de datos que se pueden aceptar. Se ignorarán las líneas que comiencen por #.",
- "endDatePickerLabel": "Extremos",
- "endTimePickerLabel": "Hora de finalización",
- "enterCountryText": "Dirección IP y País se evalúan en un par. Seleccione el país.",
- "enterIpText": "Dirección IP y País se evalúan en un par. Escriba la dirección IP.",
- "enterUserText": "No hay ningún usuario seleccionado. Seleccione uno.",
- "evaluationResult": "Resultado de la evaluación",
- "exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
- "exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync solo con plataformas admitidas",
- "excludeAllTrustedLocationSelectorText": "todas las ubicaciones de confianza",
- "featureRequiresP2": "Esta característica requiere una licencia de Azure AD Premium 2.",
- "friday": "Viernes",
- "grantControls": "Conceder controles",
- "gridNetworkTrusted": "De confianza",
- "gridPolicyCreatedDateTime": "Fecha de creación",
- "gridPolicyEnabled": "Habilitado",
- "gridPolicyModifiedDateTime": "Fecha de modificación",
- "gridPolicyName": "Nombre de directiva",
- "gridPolicyState": "Estado",
- "groupSelectionBladeExcludeDescription": "Permite seleccionar los grupos que quedarán exentos de la directiva.",
- "groupSelectionBladeExcludedSelectorTitle": "Seleccione los grupos excluidos",
- "groupSelectionBladeSelect": "Seleccionar grupos",
- "groupSelectorInfoBallonText": "Grupos del directorio a los que se aplica la directiva. Por ejemplo, \"Grupo piloto\".",
- "groupsSelectionBladeTitle": "Grupos",
- "helpCommonScenariosText": "¿Le interesan los escenarios comunes?",
- "helpCondition1": "Cuando cualquier usuario está fuera de la red de la compañía",
- "helpCondition2": "Cuando inician sesión usuarios del grupo \"Administradores\"",
- "helpConditionsTitle": "Condiciones",
- "helpControl1": "Es necesario que inicien sesión con la autenticación multifactor.",
- "helpControl2": "Es necesario que dispongan de un dispositivo unido a un dominio o conforme a Intune.",
- "helpControlsTitle": "Controles",
- "helpIntroText": "El acceso condicional le permite aplicar los requisitos de acceso cuando se cumplen determinadas condiciones. Veamos algunos ejemplos.",
- "helpIntroTitle": "¿Qué es el acceso condicional?",
- "helpLearnMoreText": "¿Quiere obtener más información acerca del acceso condicional?",
- "helpStartStep1": "Haga clic en \"+ Nueva directiva\" para crear su primera directiva.",
- "helpStartStep2": "Especifique las condiciones y los controles de la directiva.",
- "helpStartStep3": "Cuando haya terminado, no se olvide de las opciones Habilitar la directiva y Crear.",
- "helpStartTitle": "Introducción",
- "highRisk": "Alta",
- "includeAndExcludeAppsTextFormat": "Incluir: {0}. Excluir: {1}.",
- "includeAppsTextFormat": "Incluir: {0}.",
- "includeUnknownAreasCheckboxInfoBalloonContent": "Las áreas desconocidas son direcciones IP que no se pueden asignar a ningún país o región.",
- "includeUnknownAreasCheckboxLabel": "Incluir áreas desconocidas",
- "infoCommandLabel": "Información",
- "invalidCertDuration": "La duración del certificado no es válida,",
- "invalidIpAddress": "El valor debe ser una dirección IP válida.",
- "invalidUriErrorMsg": "Escriba un URI válido. Por ejemplo: \"uri:contoso.com:acr\". ",
- "iosDisplayName": "iOS",
- "linuxDisplayName": "Linux",
- "linuxDisplayNamePreview": "Linux (versión preliminar)",
- "loadAll": "Cargar todo",
- "loading": "Cargando...",
- "locationConfigureNamedLocationsText": "Configurar todas las ubicaciones de confianza",
- "locationConfigureNamedLocationsUri": "{0}/usermanagement/mfasettings.aspx?tenantid={1}&culture={2}",
- "locationNameTooLongError": "El nombre de la ubicación es demasiado largo. Debe tener 256 caracteres como máximo.",
- "locationSelectionBladeExcludeDescription": "Seleccionar las ubicaciones que quedarán exentas de la directiva",
- "locationSelectionBladeIncludeDescription": "Seleccionar las ubicaciones que se incluirán en la directiva",
- "locationsAllLocationsLabel": "Cualquier ubicación",
- "locationsAllNamedLocationsLabel": "Todas las direcciones IP de confianza",
- "locationsAllPrivateLinksLabel": "Todos los Private Links en mi inquilino",
- "locationsIncludeExcludeLabel": "{0} y excluir todas las IP de confianza",
- "locationsSelectedPrivateLinksLabel": "Private Links seleccionados",
- "lowRisk": "Baja",
- "macOsDisplayName": "macOS",
- "managePoliciesLicenseText": "Para administrar las directivas de acceso condicional, la organización necesita disponer de Azure AD Premium P1 o P2.",
- "markAsTrustedCheckboxInfoBalloonContent": "Iniciar sesión desde una ubicación de confianza reduce el riesgo de inicio de sesión de un usuario. Marque esta ubicación como de confianza solo si sabe que los intervalos IP especificados están establecidos y son confiables en su organización.",
- "markAsTrustedCheckboxLabel": "Marcar como ubicación de confianza",
- "mediumRisk": "Mediana",
- "memberSelectionCommandRemove": "Quitar",
- "menuItemClaimProviderControls": "Controles personalizados (versión preliminar)",
- "menuItemClassicPolicies": "Directivas clásicas",
- "menuItemInsightsAndReporting": "Conclusiones e informes",
- "menuItemManage": "Administrar",
- "menuItemNamedLocationsPreview": "Ubicaciones con nombre (versión preliminar)",
- "menuItemNamedNetworks": "Ubicaciones con nombre",
- "menuItemPolicies": "Directivas",
- "menuItemTermsOfUse": "Términos de uso",
- "modifiedTimeLabel": "Hora de modificación",
- "monday": "Lunes",
- "nameLabel": "Nombre",
- "namedLocationCountryInfoBanner": "A los países o regiones solo se les pueden asignar direcciones IPv4. Las direcciones IPv6 están incluidas en países o regiones desconocidos.",
- "namedLocationTypeCountry": "Países/regiones",
- "namedLocationTypeLabel": "Defina la ubicación con:",
- "namedLocationUpsellBanner": "Esta vista está en desuso. Vaya a la vista nueva y mejorada \"ubicaciones con nombre\".",
- "namedLocationsHelpDescription": "Los informes de seguridad de Azure AD usan ubicaciones con nombre para reducir los falsos positivos. También se usan en las directivas de acceso condicional de Azure AD.\n[Más información][1]\n[1]: https://aka.ms/namedlocationupdate",
- "namedNetworkAddIpRanges": "Agregue un nuevo intervalo IP (p. ej., 40.77.182.32/27).",
- "namedNetworkCountryNeeded": "Debe seleccionar, al menos, un país.",
- "namedNetworkDeleteCommand": "Eliminar",
- "namedNetworkDeleteDescription": "¿Está seguro de que quiere eliminar '{0}'? Esta acción no se puede deshacer.",
- "namedNetworkDeleteTitle": "¿Está seguro?",
- "namedNetworkDownloadIpRange": "Descargar",
- "namedNetworkInvalidRange": "El valor debe ser un intervalo IP válido.",
- "namedNetworkIpRangeNeeded": "Necesita al menos un intervalo IP válido.",
- "namedNetworkIpRangesDescriptionContent": "Configure los intervalos IP de su organización.",
- "namedNetworkIpRangesTab": "Intervalos IP",
- "namedNetworkListAdd": "Nueva ubicación",
- "namedNetworkListConfigureTrustedIps": "Configurar IP de confianza de MFA",
- "namedNetworkNameDescription": "Ejemplo: 'Oficina de Redmond'",
- "namedNetworkNameInvalid": "El nombre proporcionado no es válido.",
- "namedNetworkNameRequired": "Debe proporcionar un nombre para esta ubicación.",
- "namedNetworkNoIpRanges": "No hay intervalos IP",
- "namedNetworkNotificationCreateDescription": "Creando ubicación con el nombre '{0}'",
- "namedNetworkNotificationCreateFailedDescription": "Error al crear la ubicación '{0}'. Vuelva a intentarlo más tarde.",
- "namedNetworkNotificationCreateFailedTitle": "No se puede crear la ubicación.",
- "namedNetworkNotificationCreateSuccessDescription": "Ubicación con el nombre '{0}' creada",
- "namedNetworkNotificationCreateSuccessTitle": "Se creó {0}.",
- "namedNetworkNotificationCreateTitle": "Creando {0}",
- "namedNetworkNotificationDeleteDescription": "Eliminando ubicación con el nombre '{0}'",
- "namedNetworkNotificationDeleteFailedDescription": "Error al eliminar la ubicación '{0}'. Vuelva a intentarlo más tarde.",
- "namedNetworkNotificationDeleteFailedTitle": "No se puede eliminar la ubicación.",
- "namedNetworkNotificationDeleteSuccessDescription": "Ubicación con el nombre '{0}' eliminada",
- "namedNetworkNotificationDeleteSuccessTitle": "Se eliminó '{0}'.",
- "namedNetworkNotificationDeleteTitle": "Eliminando '{0}'",
- "namedNetworkNotificationUpdateDescription": "Actualizando ubicación con el nombre '{0}'",
- "namedNetworkNotificationUpdateFailedDescription": "Error al actualizar la ubicación '{0}'. Vuelva a intentarlo más tarde.",
- "namedNetworkNotificationUpdateFailedTitle": "No se puede actualizar la ubicación.",
- "namedNetworkNotificationUpdateSuccessDescription": "Ubicación con el nombre '{0}' actualizada",
- "namedNetworkNotificationUpdateSuccessTitle": "Se actualizó {0}.",
- "namedNetworkNotificationUpdateTitle": "Actualizando '{0}'",
- "namedNetworkSearchPlaceholder": "Buscar ubicaciones.",
- "namedNetworkUploadFailedDescription": "Se produjo un error al analizar el archivo suministrado. Asegúrese de cargar un archivo sin formato con cada línea en el formato CIDR.",
- "namedNetworkUploadFailedTitle": "No se pudo analizar \"{0}\"",
- "namedNetworkUploadInProgressDescription": "Intentando analizar los valores de CIDR válidos de \"{0}\".",
- "namedNetworkUploadInProgressTitle": "Analizando \"{0}\"",
- "namedNetworkUploadInvalidDescription": "\"{0}\" es demasiado grande o tiene un formato no válido.",
- "namedNetworkUploadInvalidTitle": "\"{0}\" no válido",
- "namedNetworkUploadIpRange": "Cargar",
- "namedNetworkUploadSuccessDescription": "Se analizaron {0} líneas. {1} tienen un formato erróneo y {2} se omitieron.",
- "namedNetworkUploadSuccessTitle": "Se finalizó el análisis de \"{0}\"",
- "namedNetworksAdd": "Nueva ubicación con nombre",
- "namedNetworksConditionHelpDescription": "Controle el acceso del usuario en función de su ubicación física.\n[Más información][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
- "namedNetworksExcludeLabel": "{0} y {1} excluidos",
- "namedNetworksHelpDescription": "Los informes de seguridad de Azure AD usan ubicaciones con nombre para reducir los falsos positivos. También se usan en las directivas de acceso condicional de Azure AD.\n[Más información][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
- "namedNetworksIncludeLabel": "{0} incluido",
- "namedNetworksNone": "No se han encontrado ubicaciones con nombre.",
- "namedNetworksTitle": "Configurar ubicaciones",
- "namednetworkExceedingSizeErrorBladeTitle": "Detalles del error",
- "namednetworkExceedingSizeErrorDetailText": "Haga clic aquí para obtener más detalles.",
- "namednetworkExceedingSizeErrorMessage": "Ha superado el almacenamiento máximo permitido para las ubicaciones con nombre. Vuelva a intentarlo con una lista más corta. Haga clic aquí para ver más detalles.",
- "newCertName": "nuevo certificado",
- "noPolicyRowMessage": "No hay directivas.",
- "noSPSelected": "Ninguna entidad de servicio seleccionada",
- "noUpdatePermissionMessage": "No tiene permiso para actualizar esta configuración. Póngase en contacto con el administrador global para obtener acceso.",
- "noUserSelected": "Ningún usuario seleccionado",
- "noneRisk": "Sin riesgo",
- "office365Description": "Estas aplicaciones incluyen, entre otras, Microsoft Flow, Microsoft Forms, Microsoft Teams, Office 365 Exchange Online, Office 365 SharePoint Online y Office 365 Yammer.",
- "office365InfoBox": "Al menos una de las aplicaciones seleccionadas es parte de Office 365. Se recomienda establecer la directiva en la aplicación de Office 365 en su lugar.",
- "oneUserSelected": "1 usuario seleccionado",
- "onlyGlobalAdminsCanSaveThisPolicyConfig": "Solo los administradores globales pueden guardar esta directiva.",
- "or": "{0} O {1} ",
- "pickerDoneCommand": "Listo",
- "policiesBladeAdPremiumUpsellBannerText": "Cree sus propias directivas y condiciones específicas de destino, como aplicaciones en la nube, el riesgo de inicio de sesión y plataformas de dispositivos con Azure AD Premium.",
- "policiesBladeTitle": "Directivas",
- "policiesBladeTitleWithAppName": "Directivas: {0}",
- "policiesDisabledBannerText": "No se permite crear ni editar directivas para las aplicaciones que tengan un atributo de inicio de sesión vinculado.",
- "policiesHitMaxLimitStatusBarMessage": "Ha alcanzado el número máximo de directivas para este inquilino. Para poder crear más, primero deberá eliminar algunas.",
- "policyAssignmentsSection": "Tareas",
- "policyBlockAllInfoBox": "La directiva configurada bloqueará a todos los usuarios, por lo que no se admite. Revise las asignaciones y los controles. Excluya el usuario actual {0} si desea guardar esta directiva.",
- "policyCloudAppsDisplayTextAllApp": "Todas las aplicaciones",
- "policyCloudAppsLabel": "Aplicaciones en la nube",
- "policyConditionClientAppDescription": "Software que usa el usuario para obtener acceso a la aplicación en la nube. Por ejemplo, 'Navegador'.",
- "policyConditionClientAppV2Description": "Software que usa el usuario para obtener acceso a la aplicación en la nube. Por ejemplo, 'Navegador'.",
- "policyConditionDevicePlatform": "Plataformas de dispositivo",
- "policyConditionDevicePlatformDescription": "Plataforma desde la que inicia sesión el usuario. Por ejemplo, 'iOS'.",
- "policyConditionLocation": "Ubicaciones",
- "policyConditionLocationDescription": "Ubicación (determinada con el intervalo de direcciones IP) desde la que inicia sesión el usuario",
- "policyConditionSigninRisk": "Riesgo de inicio de sesión",
- "policyConditionSigninRiskDescription": "Probabilidad de que el inicio de sesión proceda de alguien que no es el usuario. El nivel de riesgo puede ser alto, medio o bajo. Se necesita una licencia de Azure AD Premium 2.",
- "policyConditionUserRisk": "Riesgo de usuario",
- "policyConditionUserRiskDescription": "Configure los niveles de riesgo de usuario necesarios para aplicar la directiva.",
- "policyConditioniClientApp": "Aplicaciones cliente",
- "policyConditioniClientAppV2": "Aplicaciones cliente (versión preliminar)",
- "policyControlAllowAccessDisplayedName": "Conceder acceso",
- "policyControlAuthenticationStrengthDisplayedName": "Requerir intensidad de autenticación (versión preliminar)",
- "policyControlBladeTitle": "Conceder",
- "policyControlBlockAccessDisplayedName": "Bloquear acceso",
- "policyControlCompliantDeviceDisplayedName": "Requerir que el dispositivo esté marcado como compatible",
- "policyControlContentDescription": "Aplique controles de acceso para bloquear o conceder acceso.",
- "policyControlInfoBallonText": "Bloquear acceso o seleccionar los requisitos adicionales que se deben cumplir para conceder acceso",
- "policyControlMfaChallengeDisplayedName": "Comprobación con MFA",
- "policyControlRequireCompliantAppDisplayedName": "Requerir directiva de protección de aplicaciones",
- "policyControlRequireDomainJoinedDisplayedName": "Requerir dispositivo unido a Azure AD híbrido",
- "policyControlRequireMamDisplayedName": "Requerir aplicación cliente aprobada",
- "policyControlRequiredPasswordChangeDisplayedName": "Requerir cambio de contraseña",
- "policyControlSelectAuthStrength": "Requerir intensidad de autenticación",
- "policyControlsNoControlsSelected": "0 controles seleccionados",
- "policyControlsSection": "Controles de acceso",
- "policyCreatBladeTitle": "Nueva",
- "policyCreateButton": "Crear",
- "policyCreateFailedMessage": "Error: {0}",
- "policyCreateFailedTitle": "No se pudo crear \"{0}\"",
- "policyCreateInProgressTitle": "Creando {0}",
- "policyCreateSuccessMessage": "\"{0}\" se creó correctamente. La directiva se habilitará dentro de unos minutos si tiene la opción \"Habilitar directiva\" establecida en \"Activado\".",
- "policyCreateSuccessTitle": "\"{0}\" se creó correctamente",
- "policyDeleteConfirmation": "¿Está seguro de que quiere eliminar '{0}'? Esta acción no se puede deshacer.",
- "policyDeleteFailTitle": "No se pudo eliminar '{0}'.",
- "policyDeleteInProgressTitle": "Eliminando '{0}'",
- "policyDeleteSuccessTitle": "'{0}' se eliminó correctamente.",
- "policyEnforceLabel": "Habilitar directiva",
- "policyErrorCannotSetSigninRisk": "No tiene permiso para guardar una directiva con una condición de riesgo de inicio de sesión.",
- "policyErrorNoPermission": "No tiene permiso para guardar la directiva. Póngase en contacto con el administrador global.",
- "policyErrorUnknown": "Se ha producido un error; inténtelo de nuevo más tarde.",
- "policyFallbackWarningMessage": "No se pudo crear o actualizar \"{0}\" mediante MS Graph que da lugar a un retorno a AD Graph. Investigue el siguiente escenario, ya que lo más probable es que haya un error al llamar al punto final de la directiva para MS Graph con una condición incompatible.",
- "policyFallbackWarningTitle": "Se realizó correctamente una parte de la creación o actualización de \"{0}\"",
- "policyNameCannotBeEmpty": "El nombre de directiva no puede estar vacío.",
- "policyNameDevice": "Directiva de dispositivo",
- "policyNameFormat": "[{0}] {1}",
- "policyNameMam": "Directiva de administración de aplicaciones móviles",
- "policyNameMfaLocation": "Directiva de ubicación y MFA",
- "policyNamePlaceholderText": "Ejemplo: 'directiva de aplicaciones de cumplimiento de dispositivos'",
- "policyNameTooLongError": "El nombre de la directiva es demasiado largo. Debe tener 256 caracteres como máximo.",
- "policyOff": "Desactivado",
- "policyOn": "Activado",
- "policyReportOnly": "Solo informe",
- "policyReviewSection": "Revisar",
- "policySaveButton": "Guardar",
- "policyStatusIconDescription": "La directiva está habilitada.",
- "policyStatusIconEnabled": "Icono de estado habilitado",
- "policyTemplateName1": "Usar las restricciones que exige la aplicación en el acceso al navegador para {0}",
- "policyTemplateName2": "Permitir que {0} acceda solo a dispositivos administrados",
- "policyTemplateName3": "Directiva migrada desde la configuración de la Evaluación continua de acceso",
- "policyTriggerRiskSpecific": "Seleccionar un nivel de riesgo específico",
- "policyTriggersInfoBalloonText": "Condiciones que definen cuándo se aplicará la directiva. Por ejemplo, 'ubicación'.",
- "policyTriggersNoConditionsSelected": "0 condiciones seleccionadas",
- "policyTriggersSelectorLabel": "Condiciones",
- "policyUpdateFailedMessage": "Error: {0}",
- "policyUpdateFailedTitle": "No se pudo actualizar {0}",
- "policyUpdateInProgressTitle": "Actualizando {0}",
- "policyUpdateSuccessMessage": "{0} se actualizó correctamente. La directiva se habilitará dentro de unos minutos si tiene la opción \"Habilitar directiva\" establecida en \"Activado\".",
- "policyUpdateSuccessTitle": "{0} se ha actualizado correctamente",
- "primaryCol": "Principal",
- "privateLinkLabel": "Private Link de Azure AD",
- "reportOnlyInfoBox": "Modo de solo informe: las directivas se evalúan y se registran al iniciar sesión, pero no afectan a los usuarios.",
- "requireAllControlsText": "Requerir todos los controles seleccionados",
- "requireCompliantDevice": "Requerir dispositivo compatible",
- "requireDomainJoined": "Se necesita un dispositivo unido a un dominio.",
- "requireMFA": "Se necesita autenticación multifactor. ",
- "requireOneControlText": "Requerir uno de los controles seleccionados",
- "resetFilters": "Restablecer filtros",
- "sPRequired": "Se requiere una entidad de servicio",
- "sPSelectorInfoBalloon": "Usuario o entidad de servicio que desea probar",
- "saturday": "Sábado",
- "searchTextTooLongError": "El texto de búsqueda es demasiado largo. No puede tener más de 256 caracteres.",
- "securityDefaultsPolicyName": "Valores predeterminados de seguridad",
- "securityDefaultsTextMessage": "Para habilitar la directiva de acceso condicional, deben deshabilitarse los valores predeterminados de seguridad.",
- "securityDefaultsWarningMessage": "Parece que va a administrar las opciones de configuración de seguridad de su organización. Primero tiene que deshabilitar los valores predeterminados de seguridad antes de habilitar una directiva de acceso condicional.",
- "selectDevicePlatforms": "Seleccionar plataformas de dispositivo",
- "selectNamedNetworksSubtitle": "",
- "selectNamedNetworksTitle": "Seleccionar ubicaciones",
- "selectedSP": "Entidad de servicio seleccionada",
- "servicePrincipalDataGridAria": "Lista de entidades de servicio disponibles",
- "servicePrincipalDropDownLabel": "¿A qué se aplica esta directiva?",
- "servicePrincipalInfoBox": "Algunas condiciones no están disponibles debido a la selección de \"{0}\" en la asignación de directiva",
- "servicePrincipalRadioAll": "Todas las entidades de servicio de las que es propietario",
- "servicePrincipalRadioSelect": "Seleccionar entidades de servicio",
- "servicePrincipalSelectionsAria": "Cuadrícula de entidades de servicio seleccionadas",
- "servicePrincipalSelectorAria": "Lista de entidades de servicio elegidas",
- "servicePrincipalSelectorMultiple": "{0} entidades de servicio seleccionadas",
- "servicePrincipalSelectorSingle": "1 entidad de servicio seleccionada",
- "servicePrincipalSpecificInc": "Entidades de servicio específicas incluidas",
- "servicePrincipals": "Entidades de seguridad",
- "sessionControlBladeTitle": "Sesión",
- "sessionControlDescriptionContent": "Controle el acceso con controles de sesión para habilitar experiencias limitadas en determinadas aplicaciones en la nube.",
- "sessionControlDisableInfo": "Este control solo funciona con aplicaciones compatibles. Actualmente, Office 365, Exchange Online y SharePoint Online son las únicas aplicaciones en la nube compatibles con las restricciones que exige la aplicación. Haga clic aquí para obtener más información.",
- "sessionControlInfoBallonText": "Los controles de sesión proporcionan una experiencia limitada en una aplicación de nube.",
- "sessionControls": "Controles de sesión",
- "sessionControlsAppEnforcedLabel": "Usar restricciones que exige la aplicación",
- "sessionControlsCasLabel": "Utilizar el Control de aplicaciones de acceso condicional",
- "sessionControlsSecureSignInLabel": "Requerir enlace de tokens",
- "sharepointAppName": "SharePoint",
- "signinRiskDescription": "Seleccionar el nivel de riesgo de inicio de sesión al que se aplicará la directiva",
- "signinRiskInclude": "{0} incluido",
- "signinRiskTriggerDescriptionContent": "Seleccionar el nivel de riesgo de inicio de sesión",
- "singleTenantServicePrincipalInfoBallonText": "La directiva solo se aplica a las entidades de servicio de inquilino único que pertenecen a su organización. Haga clic aquí para más información ",
- "specificSigninRiskLevelsOption": "Seleccionar niveles de riesgo de inicio de sesión específicos",
- "specificUsersExcluded": "usuarios específicos excluidos",
- "specificUsersIncluded": "Usuarios específicos incluidos",
- "specificUsersIncludedAndExcluded": "Usuarios específicos excluidos e incluidos",
- "startDatePickerLabel": "Se inicia el",
- "startFreeTrial": "Iniciar prueba gratuita",
- "startTimePickerLabel": "Hora de inicio",
- "sunday": "Domingo",
- "testButton": "What If",
- "thumbprintCol": "Huella digital",
- "thursday": "Jueves",
- "timeConditionAllTimesLabel": "En cualquier momento",
- "timeConditionIntroText": "Configure la hora a la que se aplicará esta directiva.",
- "timeConditionSelectorInfoBallonContent": "Cuando el usuario inicie sesión; por ejemplo, \"Miércoles 9:00 - 17:00 PST\"",
- "timeConditionSelectorLabel": "Hora (versión preliminar)",
- "timeConditionSpecificLabel": "Horas específicas (versión preliminar)",
- "timeSelectorAllTimesText": "En cualquier momento",
- "timeSelectorSpecificTimesText": "Horas concretas configuradas",
- "timeZoneDropdownInfoBalloonContent": "Seleccione una zona horaria que defina el intervalo de tiempo. Esta directiva se aplica a los usuarios de todas las zonas horarias. Por ejemplo, \"Miércoles 9:00 - 17:00\" para un usuario sería \"Miércoles 10:00 - 18:00\" para un usuario de otra zona horaria.",
- "timeZoneDropdownLabel": "Zona horaria",
- "timeZoneDropdownPlaceholderText": "Seleccione una zona horaria.",
- "tooManyPoliciesDescription": "En este momento, solo se muestran las 50 primeras directivas. Haga clic aquí para verlas todas.",
- "tooManyPoliciesTitle": "Se encontraron más de 50 directivas.",
- "trustedLocationStatusIconDescription": "La ubicación es de confianza.",
- "trustedLocationStatusIconEnabled": "Icono de estado de confianza",
- "tuesday": "Martes",
- "uploadInBadState": "No se puede cargar el archivo especificado.",
- "upsellAppsDescription": "Requiera la autenticación multifactor para las aplicaciones confidenciales siempre o solo desde fuera de la red de la empresa.",
- "upsellAppsTitle": "Aplicaciones seguras",
- "upsellBannerText": "Obtener una prueba gratuita Premium para usar esta característica",
- "upsellDataDescription": "Requiere que el dispositivo esté marcado como conforme o unido a Azure AD híbrido para permitir el acceso a los recursos de la empresa.",
- "upsellDataTitle": "Datos seguros",
- "upsellDescription": "El acceso condicional proporciona el control y la protección que necesita para mantener protegidos sus datos corporativos, a la vez que ofrece a los usuarios una experiencia que les permite trabajar de forma óptima desde cualquier dispositivo. Por ejemplo, puede restringir el acceso desde fuera de la red de la empresa o a dispositivos que cumplan determinadas directivas.",
- "upsellRiskDescription": "Permite requerir la autenticación multifactor para los eventos de riesgo que detecte el sistema de aprendizaje automático de Microsoft.",
- "upsellRiskTitle": "Protección frente al riesgo",
- "upsellTitle": "Acceso condicional",
- "upsellWhyTitle": "¿Por qué debe usar el acceso condicional?",
- "userAppNoneOption": "Ninguno",
- "userNamePlaceholderText": "Escribir nombre de usuario",
- "userNotSetSeletorLabel": "0 usuarios y grupos seleccionados",
- "userOnlySelectionBladeExcludeDescription": "Permite seleccionar los usuarios que quedarán exentos de la directiva.",
- "userOrGroupSelectionCountDiffBannerText": "Se han eliminado del directorio {0} configurados en la directiva, pero esto no afectará a otros usuarios y grupos que estén en ella. La próxima vez que actualice la directiva, se quitarán automáticamente los usuarios o grupos que haya eliminado.",
- "userOrSPNotSetSelectorLabel": "0 usuarios o identidades de carga de trabajo seleccionadas",
- "userOrSPSelectionBladeTitle": "Usuarios o identidades de la carga de trabajo",
- "userOrSPSelectorInfoBallonText": "Las identidades en el directorio al que se aplica la directiva, incluidos usuarios, grupos y entidades de servicio",
- "userRequired": "Usuario obligatorio",
- "userRiskErrorBox": "Se debe seleccionar la condición \"Riesgo de usuario\" si se ha seleccionado la concesión \"Requerir cambio de contraseña\".",
- "userSPRequired": "Se requiere un usuario o una entidad de servicio",
- "userSPSelectorTitle": "Identidad del usuario o de la carga de trabajo",
- "userSelectionBladeAllUsersAndGroups": "Todos los usuarios y grupos",
- "userSelectionBladeExcludeDescription": "Seleccionar los usuarios y grupos que quedarán exentos de la directiva",
- "userSelectionBladeExcludeTabTitle": "Excluir",
- "userSelectionBladeExcludedSelectorTitle": "Seleccionar usuarios excluidos",
- "userSelectionBladeIncludeDescription": "Seleccione los usuarios a los que se aplicará esta directiva.",
- "userSelectionBladeIncludeTabTitle": "Incluir",
- "userSelectionBladeIncludedSelectorTitle": "Seleccionar",
- "userSelectionBladeSelectUsers": "Seleccionar usuarios",
- "userSelectionBladeSelectedUsers": "Seleccionar usuarios y grupos",
- "userSelectionBladeTitle": "Usuarios y grupos",
- "userSelectorBladeTitle": "Usuarios",
- "userSelectorExcluded": "{0} excluido",
- "userSelectorGroupPlural": "{0} grupos",
- "userSelectorGroupSingular": "1 grupo",
- "userSelectorIncluded": "{0} incluido",
- "userSelectorInfoBallonText": "Usuarios y grupos del directorio a los que se aplica la directiva. Por ejemplo, 'Grupo piloto'.",
- "userSelectorSelected": "{0} seleccionados",
- "userSelectorTitle": "Usuario",
- "userSelectorUserAndGroup": "{0}, {1}",
- "userSelectorUserPlural": "Usuarios de {0}",
- "userSelectorUserSingular": "1 usuario",
- "userSelectorWithExclusion": "{0} y {1}",
- "usersGroupsLabel": "Usuarios y grupos",
- "viewApprovedAppsText": "Ver la lista de aplicaciones cliente aprobadas",
- "viewCompliantAppsText": "Ver la lista de aplicaciones cliente protegidas por directivas",
- "vpnBladeTitle": "conectividad VPN",
- "vpnCertCreateFailedMessage": "Error: {0}",
- "vpnCertCreateFailedTitle": "No se pudo crear {0}",
- "vpnCertCreateInProgressTitle": "Creando {0}",
- "vpnCertCreateSuccessMessage": "{0} se creó correctamente.",
- "vpnCertCreateSuccessTitle": "{0} se creó correctamente.",
- "vpnCertNoRowsMessage": "No se encontraron certificados VPN.",
- "vpnCertUpdateFailedMessage": "Error: {0}",
- "vpnCertUpdateFailedTitle": "No se pudo actualizar {0}",
- "vpnCertUpdateInProgressTitle": "Actualizando {0}",
- "vpnCertUpdateSuccessMessage": "{0} se actualizó correctamente.",
- "vpnCertUpdateSuccessTitle": "{0} se ha actualizado correctamente",
- "vpnFeatureInfo": "Para obtener más información sobre el acceso condicional y la conectividad VPN, haga clic aquí.",
- "vpnFeatureWarning": "Una vez que se haya creado un certificado VPN en Azure Portal, Azure AD comenzará a usarlo inmediatamente para emitir certificados de corta duración al cliente VPN. Es fundamental que el certificado VPN se implemente inmediatamente en el servidor VPN para evitar problemas con la validación de credenciales del cliente VPN.",
- "vpnMenuText": "conectividad VPN",
- "vpncertDropdownDefaultOption": "Duración",
- "vpncertDropdownInfoBalloonContent": "Seleccione la duración para el certificado que quiere crear.",
- "vpncertDropdownLabel": "Seleccionar duración",
- "vpncertDropdownOneyearOption": "1 año",
- "vpncertDropdownThreeyearOption": "3 años",
- "vpncertDropdownTwoyearOption": "2 años",
- "wednesday": "Miércoles",
- "whatIfAppEnforcedControl": "Usar restricciones que exige la aplicación",
- "whatIfBladeDescription": "Permite probar el impacto del acceso condicional para un usuario cuando inicia sesión en determinadas condiciones.",
- "whatIfBladeTitle": "What If",
- "whatIfClassicPoliciesWarning": "Esta herramienta no evalúa las directivas clásicas.",
- "whatIfClientAppInfo": "Aplicación cliente desde la que el usuario inicia sesión. Por ejemplo, \"Explorador\".",
- "whatIfCountry": "País",
- "whatIfCountryInfo": "País desde el que inicia sesión el usuario.",
- "whatIfDevicePlatformInfo": "Plataforma del dispositivo desde la que inicia sesión el usuario.",
- "whatIfDeviceStateInfo": "Estado del dispositivo desde el que inicia sesión el usuario",
- "whatIfEnterIpAddress": "Escriba la dirección IP (p. ej., 40.77.182.32).",
- "whatIfErrorInvalidIpAddress": "Se ha especificado una dirección IP no válida.",
- "whatIfEvaResultApplication": "Aplicaciones en la nube",
- "whatIfEvaResultClientApps": "Aplicación cliente",
- "whatIfEvaResultDevicePlatform": "Plataforma de dispositivo",
- "whatIfEvaResultEmptyPolicy": "Directiva vacía",
- "whatIfEvaResultInvalidCondition": "Condición no válida",
- "whatIfEvaResultInvalidPolicy": "Directiva no válida",
- "whatIfEvaResultLocation": "Ubicación",
- "whatIfEvaResultNotEnoughInformation": "No hay suficiente información.",
- "whatIfEvaResultPolicyNotEnabled": "Directiva no habilitada",
- "whatIfEvaResultSignInRisk": "Riesgo de inicio de sesión",
- "whatIfEvaResultUsers": "Usuarios y grupos",
- "whatIfIpAddress": "Dirección IP",
- "whatIfIpAddressInfo": "Dirección IP desde la que inicia sesión el usuario.",
- "whatIfIpCountryInfoBoxText": "Si usa Dirección IP o País, ambos campos serán necesarios y deberá asignarlos correctamente al mismo tiempo.",
- "whatIfPolicyAppliesTab": "Directivas que se aplicarán",
- "whatIfPolicyDoesNotApplyTab": "Directivas que no se aplicarán",
- "whatIfReasons": "Motivos por los que no se aplicará esta directiva",
- "whatIfSelectClientApp": "Seleccionar una aplicación cliente...",
- "whatIfSelectCountry": "Seleccionar un país...",
- "whatIfSelectDevicePlatform": "Seleccionar plataforma del dispositivo...",
- "whatIfSelectPrivateLink": "Seleccione un vínculo privado...",
- "whatIfSelectServicePrincipalRisk": "Seleccionar riesgo de la entidad de servicio...",
- "whatIfSelectSignInRisk": "Seleccionar riesgo de inicio de sesión...",
- "whatIfSelectType": "Seleccione el tipo de identidad",
- "whatIfSelectUserRisk": "Seleccionar el riesgo de usuario...",
- "whatIfServicePrincipalRiskInfo": "Nivel de riesgo asociado con la entidad de servicio",
- "whatIfSignInRisk": "Riesgo de inicio de sesión",
- "whatIfSignInRiskInfo": "Nivel de riesgo asociado con el inicio de sesión.",
- "whatIfUnknownAreas": "Áreas desconocidas",
- "whatIfUserPickerLabel": "Usuario seleccionado",
- "whatIfUserPickerNoRowsLabel": "No se ha seleccionado ningún usuario o entidad de servicio",
- "whatIfUserRiskInfo": "Nivel de riesgo asociado con el usuario.",
- "whatIfUserSelectorInfo": "Usuario del directorio que quiere probar.",
- "windows365InfoBox": "Al seleccionar Windows 365, esta acción impactará en las conexiones a los equipos en la nube y los hosts de sesión de Azure Virtual Desktop. Haga clic aquí para obtener más información.",
- "windowsDisplayName": "Windows",
- "windowsPhoneDisplayName": "Windows Phone",
- "workloadIdentities": "Identidades de carga de trabajo (versión preliminar)",
- "workloadIdentity": "Identidad de la carga de trabajo"
- },
- "ApplicableDeviceType": {
- "iPad": "iPad",
- "iPhoneAndIPod": "iPhone y iPod"
- },
- "TAPSettings": {
- "AllowedDataIngestionLocations": {
- "label": "Permitir a los usuarios abrir datos de los servicios seleccionados",
- "tooltip": "Seleccione los servicios de almacenamiento de aplicaciones desde los que los usuarios pueden abrir datos. El resto de servicios se bloquean. Si no se selecciona ningún servicio, los usuarios no podrán abrir datos."
- },
- "AndroidBackup": {
- "label": "Hacer copia de seguridad de los datos de la organización en los servicios correspondientes de Android",
- "tooltip": "Seleccione {0} para impedir la copia de seguridad de datos de la organización en los servicios de copia de seguridad de Android. \r\nSeleccione {1} para permitir la copia de seguridad de datos de la organización en los servicios de copia de seguridad de Android. \r\nLos datos personales o no administrados no se ven afectados."
- },
- "AndroidBiometricAuthentication": {
- "label": "Biometría en lugar de PIN para el acceso",
- "tooltip": "Elija los métodos de autenticación Android que los usuarios pueden utilizar (si los hay) en lugar de un PIN de aplicación."
- },
- "AndroidFingerprint": {
- "label": "Huella digital en lugar de PIN para el acceso (Android 6.0+)",
- "tooltip": "El sistema operativo Android usa exámenes de huella digital para autenticar los usuarios de los dispositivos Android. Esta característica admite los controles biométricos nativos en dispositivos Android. No se admiten las configuraciones biométricas específicas del OEM, como Samsung Pass. En caso de permitirse, los controles biométricos nativos se deben usar para acceder a la aplicación en un dispositivo compatible."
- },
- "AndroidOverrideFingerprint": {
- "label": "Invalidar la huella digital con el PIN después del tiempo de espera"
- },
- "AppPIN": {
- "label": "PIN de aplicación cuando está establecido el PIN del dispositivo",
- "tooltip": "Si no se requiere, no es necesario usar un PIN de aplicación para acceder a esta si hay un PIN de dispositivo establecido en un dispositivo inscrito en MDM.
\r\n\r\nNota: Intune no puede detectar la inscripción de dispositivos con una solución EMM de terceros en Android."
- },
- "BlockDataIngestionIntoOrganizationDocuments": {
- "label": "Abrir datos en documentos de la organización",
- "tooltip1": "Seleccione Bloquear para deshabilitar el uso de la opción Abrir o de otras opciones para compartir datos entre cuentas en la aplicación. Seleccione Permitir si quiere permitir el uso de Abrir y de otras opciones para compartir datos entre cuentas en la aplicación.",
- "tooltip2": "Cuando se establece en Bloquear, puede configurar el valor Permitir a los usuarios abrir datos de los servicios seleccionados a fin de especificar los servicios permitidos para las ubicaciones de datos de la organización.",
- "tooltip3": "Nota: Esta configuración solo se aplica si el valor \"Recibir datos de otras aplicaciones\" está establecido en \"Aplicaciones administradas por directivas\".
\r\nNota: La configuración no es válida para todas las aplicaciones. Para obtener más información, consulte {0}.",
- "tooltip4": "Nota: Esta configuración solo se aplica si el valor \"Recibir datos de otras aplicaciones\" está establecido en \"Aplicaciones administradas por directivas\".
\r\nNota: La configuración no es válida para todas las aplicaciones. Para obtener más información, consulte {0} o {0}."
- },
- "ConnectToVpnOnLaunch": {
- "label": "Iniciar conexión de Microsoft Tunnel al iniciar la aplicación",
- "tooltip": "Permitir la conexión a VPN cuando se inicie la aplicación"
- },
- "CredentialsForAccess": {
- "label": "Credenciales de cuenta profesional o educativa para el acceso",
- "tooltip": "Si se requiere, se deben usar las credenciales profesionales o educativas para acceder a la aplicación administrada por directivas. Si también se requiere un PIN o métodos biométricos para acceder a la aplicación, se solicitarán además las credenciales profesionales o educativas."
- },
- "CustomBrowserDisplayName": {
- "label": "Nombre del explorador no administrado",
- "tooltip": "Escriba el nombre de aplicación del explorador asociado al \"Identificador de explorador no administrado\". Este nombre se mostrará a los usuarios si el explorador especificado no está instalado."
- },
- "CustomBrowserPackageId": {
- "label": "Identificador del explorador no administrado",
- "tooltip": "Escriba el identificador de aplicación de un solo explorador. El contenido web (http/s) de las aplicaciones administradas por directivas se abrirá en el explorador especificado."
- },
- "CustomBrowserProtocol": {
- "label": "Protocolo del explorador no administrado",
- "tooltip": "Especifique el protocolo para un solo explorador no administrado. El contenido web (http/s) de las aplicaciones administradas por directivas se abrirá en cualquier aplicación compatible con el protocolo.
\r\n \r\nNota: Incluya solo el prefijo del protocolo. Si el explorador requiere vínculos con el formato \"miExplorador://www.microsoft.com\", escriba \"miExplorador\".
"
- },
- "CustomDialerAppDisplayName": {
- "label": "Nombre de la aplicación de marcador"
- },
- "CustomDialerAppPackageId": {
- "label": "Identificador de paquete de la aplicación de marcador"
- },
- "CustomDialerAppProtocol": {
- "label": "Esquema de dirección URL de la aplicación de marcador"
- },
- "Cutcopypaste": {
- "label": "Restringir cortar, copiar y pegar entre otras aplicaciones",
- "tooltip": "Corte, copie y pegue datos entre su aplicación y otras aplicaciones aprobadas instaladas en el dispositivo. Opte por bloquear estas acciones completamente entre aplicaciones, permitir que se usen con cualquier aplicación o restringir el uso a las aplicaciones administradas por su organización.
\r\n\r\nAplicaciones administradas por directivas con pegar le ofrece la opción de aceptar contenido entrante que se pega desde otra aplicación. Sin embargo, impide que los usuarios compartan contenido externamente, a menos que sea con una aplicación administrada.
"
- },
- "DialerRestrictionLevel": {
- "iosTooltip": "Normalmente, cuando un usuario selecciona un número de teléfono hipervinculado en una aplicación, se abre una aplicación de marcador con el número de teléfono rellenado previamente y lista para llamar. Para esta configuración, elija cómo administrar este tipo de transferencia de contenido cuando se inicie desde una aplicación administrada por directivas. Puede que sea necesario realizar pasos adicionales para que la configuración tenga efecto. En primer lugar, compruebe que tel y telprompt se hayan quitado de la lista Seleccionar las aplicaciones que quedan exentas. Después, asegúrese de que la aplicación esté usando una versión más reciente del SDK de Intune (versión 12.7.0 o posterior).",
- "label": "Transferir datos de telecomunicaciones a",
- "tooltip": "Normalmente, cuando un usuario selecciona un número de teléfono hipervinculado en una aplicación, se abre una aplicación de marcador con el número de teléfono rellenado y lista para llamar. Para esta configuración, elija cómo tratar este tipo de transferencia de contenido cuando se inicia desde una aplicación administrada por directivas."
- },
- "EncryptData": {
- "label": "Cifrar datos de la organización",
- "link": "https://docs.microsoft.com/en-us/intune/app-protection-policy-settings-android#data-relocation-settings",
- "tooltip": "Seleccione {0} para aplicar el cifrado de datos de la organización con el cifrado de la capa de aplicaciones de Intune.\r\n
\r\nSeleccione {1} para no aplicar el cifrado de datos de la organización con el cifrado de la capa de aplicaciones de Intune.\r\n\r\n
\r\nNota: Para obtener más información sobre el cifrado de la capa de aplicaciones de Intune, consulte {2}."
- },
- "EncryptDataAndroid": {
- "tooltip": "Elija Requerir para habilitar el cifrado de los datos profesionales o educativos en esta aplicación. Intune usa un esquema de cifrado AES de 256 bits OpenSSL junto con el sistema de almacén de claves Android para cifrar los datos de las aplicaciones de forma segura. Los datos se cifran de forma sincrónica durante las tareas de E/S de los archivos. El contenido de almacenamiento del dispositivo está siempre cifrado. El SDK seguirá proporcionando compatibilidad de claves de 128 bits para las aplicaciones y el contenido que usan versiones anteriores del SDK.
\r\n\r\nEl método de cifrado es compatible con FIPS 140-2.
"
- },
- "EncryptDataIos": {
- "tooltip1": "Elija Requerir para habilitar el cifrado de los datos profesionales o educativos en esta aplicación. Intune exige el cifrado de los dispositivos iOS/iPadOS para proteger los datos de las aplicaciones mientras el dispositivo está bloqueado. Las aplicaciones pueden cifrar sus datos, opcionalmente, mediante el cifrado de Intune APP SDK. Intune APP SDK usa métodos criptográficos de iOS/iPadOS para aplicar cifrado AES de 128 bits a los datos de las aplicaciones.",
- "tooltip2": "Cuando habilita esta configuración, puede que se requiera al usuario configurar y usar un PIN para acceder al dispositivo. Si no hay ningún PIN del dispositivo y se requiere el cifrado, se pide al usuario que establezca un PIN con el mensaje \"Your organization has required you to first enable a device PIN to access this app\".",
- "tooltip3": "Vaya a la documentación oficial de Apple para ver los módulos de cifrado de iOS compatibles con FIPS 140-2 o pendientes de este tipo de cumplimiento."
- },
- "EncryptDataOnEnrolledDevices": {
- "label": "Cifrar datos de la organización en los dispositivos inscritos",
- "tooltip": "Seleccione {0} para aplicar el cifrado de datos de la organización con el cifrado de la capa de aplicaciones de Intune en todos los dispositivos.
\r\n\r\nSeleccione {1} para no aplicar el cifrado de datos de la organización con el cifrado de la capa de aplicaciones de Intune en los dispositivos inscritos."
- },
- "IOSBackup": {
- "label": "Hacer copia de seguridad de los datos de la organización en las copias de seguridad de iTunes y iCloud",
- "tooltip": "Seleccione {0} para impedir la copia de seguridad de datos de la organización en iTunes o iCloud. \r\nSeleccione {1} para permitir la copia de seguridad de datos de la organización en iTunes o iCloud. \r\nLos datos personales o no administrados no se ven afectados."
- },
- "IOSFaceID": {
- "label": "Face ID en lugar de PIN para el acceso (iOS 11 y posterior/iPadOS)",
- "tooltip": "Face ID usa la tecnología de reconocimiento facial para autenticar a los usuarios en los dispositivos iOS/iPadOS. Intune llama a la API LocalAuthentication para autenticar a los usuarios con Face ID. Si se permite, Face ID se debe usar para acceder a la aplicación en un dispositivo compatible con esta característica."
- },
- "IOSOverrideTouchId": {
- "label": "Invalidar la información biométrica con un PIN después del tiempo de espera"
- },
- "IOSTouchId": {
- "label": "Touch ID en lugar de PIN para el acceso (iOS 8 y posterior/iPadOS)",
- "tooltip": "Touch ID usa la tecnología de reconocimiento de huellas digitales para autenticar a los usuarios en los dispositivos iOS. Intune llama a la API LocalAuthentication para autenticar a los usuarios con Touch ID. Si se permite, Touch ID se debe usar para acceder a la aplicación en un dispositivo compatible con esta característica."
- },
- "NotificationRestriction": {
- "label": "Notificaciones de datos de la organización",
- "tooltip": "Seleccione una de las opciones siguientes para especificar cómo se muestran las notificaciones de las cuentas de la organización para esta aplicación y cualquier dispositivo conectado, como dispositivos ponibles:
\r\n{0}: no compartir notificaciones.
\r\n{1}: no compartir datos de la organización en las notificaciones. Si la aplicación no lo admite, se bloquean las notificaciones.
\r\n{2}: compartir todas las notificaciones.
\r\n Solo Android:\r\n Nota: Esta configuración no es válida para todas las aplicaciones. Para obtener más información, consulte {3}
\r\n \r\n Solo iOS:\r\nNota: Esta configuración no es válida para todas las aplicaciones. Para obtener más información, consulte {4}
"
- },
- "OpenLinksManagedBrowser": {
- "label": "Restringir la transferencia de contenido web con otras aplicaciones",
- "tooltip": "Seleccione una de las opciones siguientes para especificar las aplicaciones en las que esta aplicación puede abrir contenido web:
\r\nMicrosoft Edge: permite que el contenido web se abra solo en Microsoft Edge.
\r\nExplorador no administrado: permite que el contenido web se abra solo en el explorador no administrado que se defina mediante la opción \"Protocolo del explorador no administrado\".
\r\nCualquier aplicación: permite los vínculos web en cualquier aplicación.
"
- },
- "OverrideBiometric": {
- "tooltip": "Si se requiere, en función del tiempo de espera (minutos de inactividad), una solicitud de PIN invalidará las indicaciones biométricas. Si este valor de tiempo de espera no se cumple, la indicación biométrica seguirá apareciendo. El valor debe ser superior al especificado en \"Volver a comprobar los requisitos de acceso tras (minutos de inactividad)\". "
- },
- "PinAccess": {
- "label": "PIN para acceder",
- "tooltip": "Si se requiere, se debe usar un PIN para acceder a la aplicación administrada por directivas. Los usuarios deben crear un PIN de acceso la primera vez que abran la aplicación desde una cuenta profesional o educativa."
- },
- "PinLength": {
- "label": "Seleccionar la longitud mínima del PIN",
- "tooltip": "Esta configuración especifica el número mínimo de dígitos de un PIN."
- },
- "PinType": {
- "label": "Tipo de PIN",
- "tooltip": "Los PIN numéricos se forman con todos los números. Los códigos de acceso se componen de caracteres alfanuméricos y caracteres especiales. "
- },
- "Printing": {
- "label": "Impresión de datos de la organización",
- "tooltip": "Si esta opción está bloqueada, la aplicación no puede imprimir los datos protegidos."
- },
- "ReceiveData": {
- "label": "Recibir datos de otras aplicaciones",
- "tooltip": "Seleccione una de las opciones siguientes para especificar las aplicaciones de las que esta aplicación puede recibir datos:
\r\n\r\nNinguna: no permitir la recepción de datos en las cuentas o documentos de la organización desde ninguna aplicación.
\r\n\r\nAplicaciones administradas por directivas: permitir solo la recepción de datos en las cuentas o documentos de la organización de otras aplicaciones administradas por directivas.\r\n
\r\nCualquier aplicación con datos entrantes de la organización: permitir la recepción de datos en las cuentas o documentos de la organización desde cualquier aplicación y tratar todos los datos entrantes que no tengan una cuenta de usuario como datos de la organización.
\r\n\r\nTodas las aplicaciones: permitir la recepción de datos en las cuentas o documentos de la organización desde cualquier aplicación"
- },
- "RecheckAccessAfter": {
- "label": "Volver a comprobar los requisitos de acceso tras (minutos de inactividad)\r\n\r\n",
- "tooltip": "Si la aplicación administrada por directivas está inactiva un número de minutos superior al máximo especificado, esta solicitará que se vuelvan a comprobar los requisitos de acceso (por ejemplo, el PIN o la configuración de inicio condicional) después de iniciarse la aplicación."
- },
- "RestrictKeyboards": {
- "duplicatePackageError": "El identificador del paquete debe ser único.",
- "invalidPackageError": "Identificador de paquete no válido",
- "label": "Teclados aprobados",
- "select": "Seleccionar los teclados que se van a aprobar",
- "subtitle": "Agregue todos los teclados y métodos de entrada que se permite utilizar a los usuarios con las aplicaciones de destino. Escriba el nombre del teclado tal y como quiere que se muestre al usuario final.",
- "title": "Agregar teclados aprobados",
- "toolTip": "Seleccione Requerir y, a continuación, especifique una lista de los teclados aprobados para esta directiva. Obtenga más información."
- },
- "SaveData": {
- "label": "Guardar copias de los datos de la organización",
- "tooltip": "Seleccione {0} para impedir que se guarde una copia de los datos de la organización en una nueva ubicación, distinta de los servicios de almacenamiento seleccionados, con la opción \"Guardar como\".\r\n Seleccione {1} para permitir que se guarde una copia de los datos de la organización en una nueva ubicación con la opción \"Guardar como\".
\r\n\r\n\r\nNota: Esta configuración no es válida para todas las aplicaciones. Para obtener más información, consulte {2}.\r\n"
- },
- "SaveDataToSelected": {
- "label": "Permitir al usuario guardar copias en los servicios seleccionados",
- "tooltip": "Seleccione los servicios de almacenamiento en los que los usuarios pueden guardar copias de los datos de la organización. El resto de servicios se bloquean. Si no se selecciona ningún servicio, los usuarios no podrán guardar ninguna copia de los datos de la organización."
- },
- "ScreenCaptureAndAndroidAssistant": {
- "label": "Captura de pantalla y Asistente de Google\r\n",
- "tooltip": "Si la opción se bloquea, las funciones de examen de la aplicación Asistente de Google y captura de pantalla se deshabilitarán al usar la aplicación administrada por directivas. Esta característica es compatible con el Asistente de Google habitual. No se admiten asistentes de terceros que usen la API de ayuda de Google. Si elige Bloquear, también se desenfocará la imagen de vista previa de las últimas aplicaciones al usar la aplicación con una cuenta profesional o educativa."
- },
- "SendData": {
- "label": "Enviar datos de la organización a otras aplicaciones",
- "tooltip": "Seleccione una de las opciones siguientes para especificar las aplicaciones a las que esta aplicación puede enviar datos de la organización:
\r\n\r\n\r\nNinguna: no permitir el envío de datos de la organización a ninguna aplicación.
\r\n\r\n\r\nAplicaciones administradas por directivas: permitir solo el envío de datos de la organización a otras aplicaciones administradas por directivas.
\r\n\r\n\r\nAplicaciones administradas por directiva con uso compartido del SO: permitir solo el envío de datos de la organización a otras aplicaciones administradas por directivas y el envío de documentos de la organización a otras aplicaciones administradas por MDM en los dispositivos inscritos.
\r\n\r\n\r\nFiltrado de aplicaciones administradas por directivas con Abrir en/Compartir: permitir solo el envío de datos de la organización a otras aplicaciones administradas por directivas y filtrar los cuadros de diálogo Abrir en/Compartir del sistema operativo para que muestren solo las aplicaciones administradas por directivas.\r\n
\r\n\r\nTodas las aplicaciones: permitir el envío de datos de la organización a cualquier aplicación"
- },
- "SimplePin": {
- "label": "PIN simple",
- "tooltip": "Si la opción está bloqueada, los usuarios no pueden crear un PIN simple. Un PIN simple es una cadena de dígitos consecutivos o repetitivos, como 1234, ABCD o 1111. Tenga en cuenta que el bloqueo de un PIN simple de tipo \"Código de acceso\" requiere que este tenga al menos un número, una letra y un carácter especial."
- },
- "SyncContacts": {
- "label": "Sincronizar datos de aplicaciones administradas por directivas con aplicaciones o complementos nativos"
- },
- "ThirdPartyKeyboards": {
- "infoBox": "Las restricciones del teclado se aplicarán a todas las áreas de una aplicación. Las cuentas personales de las aplicaciones que admiten varias identidades se verán afectadas por esta restricción. Obtenga más información.",
- "label": "Teclados de terceros"
- },
- "Timeout": {
- "label": "Tiempo de espera (minutos de inactividad)"
- },
- "Tap": {
- "numberOfDays": "Número de días",
- "pinResetAfterNumberOfDays": "Restablecimiento del PIN después de un número de días",
- "previousPinBlockCount": "Seleccionar el número de valores de PIN anteriores que se van a mantener"
- }
- },
- "WindowsFeatureUpdateProfile": {
- "Details": {
- "Description": {
- "label": "Descripción"
- },
- "FeatureDeploymentSettings": {
- "header": "Configuración de implementación de características"
- },
- "FeatureUpdateVersion": {
- "infoballoon": "Esta característica no puede degradar un dispositivo.",
- "label": "Actualización de características para implementar"
- },
- "GradualRolloutEndDate": {
- "label": "Disponibilidad del primer grupo"
- },
- "GradualRolloutInterval": {
- "label": "Días entre grupos"
- },
- "GradualRolloutStartDate": {
- "label": "Disponibilidad del primer grupo"
- },
- "Name": {
- "label": "Nombre"
- },
- "RolloutOptions": {
- "label": "Opciones de lanzamiento"
- },
- "RolloutSettings": {
- "header": "¿Cuándo le gustaría que la actualización estuviera disponible en Windows Update?"
- },
- "ScopeSettings": {
- "header": "Configure etiquetas de ámbito para esta directiva."
- },
- "StartDateOnlyStartDate": {
- "label": "Primera fecha disponible"
- },
- "bladeTitle": "Implementaciones de actualización de características",
- "deploymentSettingsTitle": "Configuración de la implementación",
- "loadError": "Error al cargar.",
- "windows11EULA": "Al seleccionar esta actualización de características para implementar, acepta que al aplicar este sistema operativo a un dispositivo (1) la licencia de Windows correspondiente se adquirió a través de licencias por volumen o (2) que está autorizado para vincular a su organización y está aceptando en su nombre los Términos de licencia del software de Microsoft relevantes que encontrará aquí {0}."
- },
- "Notifications": {
- "deploymentSaved": "\"{0}\" se ha guardado.",
- "newFeatureUpdateDeploymentCreated": "Se ha creado una implementación de actualización de características."
- },
- "TabName": {
- "deploymentSettings": "Configuración de la implementación",
- "groupAssignmentSettings": "Asignaciones",
- "scopeSettings": "Etiquetas de ámbito"
- }
- },
- "OfficeUpdateChannel": {
- "current": "Canal actual",
- "deferred": "Canal semestral para empresas",
- "firstReleaseCurrent": "Canal actual (vista previa)",
- "firstReleaseDeferred": "Canal semestral para empresas (vista previa)",
- "monthlyEnterprise": "Canal de empresa mensual",
- "placeHolder": "Seleccionar una"
- },
- "Win32ReturnCodes": {
- "CodeTypes": {
- "failed": "Error",
- "hardReboot": "Reinicio en frío",
- "retry": "Reintentar",
- "softReboot": "Reinicio en caliente",
- "success": "Correcto"
- },
- "Columns": {
- "codeType": "Tipo de código",
- "returnCode": "Código de retorno"
- },
- "bladeTitle": "Códigos de retorno",
- "gridAriaLabel": "Códigos de retorno",
- "header": "Especifique códigos de retorno para indicar el comportamiento posterior a la instalación:",
- "onAddAnnounceMessage": "El código de retorno agregó el elemento {0} de {1}",
- "onDeleteSuccess": "El código de retorno {0} se ha eliminado correctamente.",
- "returnCodeAlreadyUsedValidation": "El código de retorno ya está en uso.",
- "returnCodeMustBeIntegerValidation": "El código de retorno debe ser un entero.",
- "returnCodeShouldBeAtLeast": "El código de retorno debe ser como mínimo {0}.",
- "returnCodeShouldBeAtMost": "El código de retorno debe ser como máximo {0}.",
- "selectorLabel": "Códigos de retorno"
- },
- "SecurityTemplate": {
- "aSR": "Reducción de la superficie expuesta a ataques",
- "accountProtection": "Protección de cuentas",
- "allDevices": "Todos los dispositivos",
- "antivirus": "Antivirus",
- "antivirusReporting": "Informes de Antivirus (vista previa)",
- "conditionalAccess": "Acceso condicional",
- "deviceCompliance": "Conformidad de dispositivos",
- "diskEncryption": "Cifrado de disco",
- "eDR": "Detección de puntos de conexión y respuesta",
- "firewall": "Firewall",
- "helpSupport": "Ayuda y soporte técnico",
- "setup": "Instalación",
- "wdapt": "Microsoft Defender for Endpoint"
- },
- "PolicySet": {
- "appManagement": "Administración de aplicaciones",
- "assignments": "Asignaciones",
- "basics": "Básico",
- "deviceEnrollment": "Inscripción de dispositivos",
- "deviceManagement": "Administración de dispositivos",
- "scopeTags": "Etiquetas de ámbito",
- "appConfigurationTitle": "Directivas de configuración de aplicaciones",
- "appProtectionTitle": "Directivas de protección de aplicaciones",
- "appTitle": "Aplicaciones",
- "iOSAppProvisioningTitle": "Perfiles de aprovisionamiento de aplicaciones de iOS",
- "deviceLimitRestrictionTitle": "Restricciones de límite de dispositivos",
- "deviceTypeRestrictionTitle": "Restricciones de tipo de dispositivo",
- "enrollmentStatusSettingTitle": "Páginas de estado de la inscripción",
- "windowsAutopilotDeploymentProfileTitle": "Perfiles de Windows Autopilot Deployment",
- "deviceComplianceTitle": "Directivas de cumplimiento de dispositivos",
- "deviceConfigurationTitle": "Perfiles de configuración de dispositivos",
- "powershellScriptTitle": "Scripts de PowerShell"
- },
- "AssignmentAction": {
- "exclude": "Excluido",
- "include": "Incluidos",
- "includeAllDevicesVirtualGroup": "Incluidos",
- "includeAllUsersVirtualGroup": "Incluidos"
- },
- "WindowsFeatureUpdate": {
- "EndOFSupportStatus": {
- "notSupported": "Sin soporte técnico",
- "supportEnding": "Próximo al fin del soporte técnico",
- "supported": "Con soporte técnico"
- }
- },
- "InstallIntent": {
- "available": "Disponible para dispositivos inscritos",
- "availableWithoutEnrollment": "Disponible con o sin inscripción",
- "required": "Requerido",
- "uninstall": "Desinstalar"
- },
"OutlookAppConfig": {
"DataProtectionConfiguration": {
"header": "Configuración de protección de datos"
@@ -1938,307 +100,864 @@
"themesEnabledTitle": "Temas habilitados",
"themesEnabledTooltip": "Especifique si el usuario puede usar un tema visual personalizado."
},
- "TAP": {
- "AccessRequirements": {
- "infoText": "Configure los requisitos de credenciales y PIN que los usuarios deben cumplir para acceder a las aplicaciones en un contexto de trabajo."
- },
- "DataProtection": {
- "infoText": "Este grupo incluye controles de prevención de pérdida de datos (DLP), como restricciones para cortar, copiar, pegar y guardar como. Esta configuración determina la forma en la que los usuarios interactúan con los datos en las aplicaciones."
- },
- "DeviceTypes": {
- "selectOne": "Seleccione al menos un tipo de dispositivo."
- },
- "TargetedApps": {
- "TargetToAll": {
- "label": "Destinar a aplicaciones en todos los tipos de dispositivo"
- },
- "infoText": "Elija cómo quiere aplicar esta directiva a las aplicaciones de otros dispositivos. Después, agregue al menos una aplicación.",
- "selectOne": "Seleccione al menos una aplicación para crear una directiva."
- }
- },
- "TACSettings": {
- "edgeSettings": "Valores de configuración de Edge",
- "edgeWindowsDataProtectionSettings": "Configuración de protección de datos de Microsoft Edge (Windows) - Versión preliminar",
- "edgeWindowsSettings": "Opciones de configuración de Microsoft Edge (Windows) - Versión preliminar",
- "generalAppConfig": "Configuración general de la aplicación",
- "generalSettings": "Opciones de configuración generales",
- "outlookSMIMEConfig": "Configuración de S/MIME de Outlook",
- "outlookSettings": "Valores de configuración de Outlook",
- "sMIME": "S/MIME"
- },
- "OfficeApplicationAdditionalType": {
- "projectProRetail": "Cliente para equipo de escritorio de Project Online",
- "visioProRetail": "Visio Online Plan 2"
- },
- "Win32Requirements": {
- "AdditionalRequirements": {
- "File": {
- "fileOrFolderToolTip": "El archivo o la carpeta como requisito seleccionado.",
- "pathToolTip": "La ruta de acceso completa del archivo o la carpeta que se detectará.",
- "property": "Propiedad",
- "valueToolTip": "Seleccione un valor de requisito que coincida con el método de detección seleccionado. Se debe especificar el requisito de fecha y hora en el formato local."
- },
- "GridColumns": {
- "pathOrScript": "Ruta de acceso o script",
- "type": "Tipo"
- },
- "Registry": {
- "keyPath": "Ruta de acceso de la clave",
- "keyPathTooltip": "La ruta de acceso completa de la entrada del Registro que contiene el valor como un requisito.",
- "operator": "Operator",
- "operatorTooltip": "Seleccione el operador para la comparación.",
- "registryRequirement": "Requisito de clave de registro",
- "registryRequirementTooltip": "Seleccione la comparación de requisitos de clave del Registro.",
- "valueName": "Nombre de valor",
- "valueNameTooltip": "El nombre del valor de Registro necesario."
- },
- "RequirementTypeOptions": {
- "fileType": "Archivo",
- "registry": "Registro",
- "script": "Script"
- },
- "Script": {
- "RequirementMethodOptions": {
- "boolean": "Booleano",
- "dateTime": "Fecha y hora",
- "float": "Punto flotante",
- "integer": "Entero",
- "string": "Cadena",
- "version": "Versión"
- },
- "ScriptContent": {
- "emptyMessage": "El contenido del script no debe estar vacío."
- },
- "duplicateName": "El nombre de script {0} ya se ha usado. Especifique otro nombre.",
- "enforceSignatureCheck": "Exigir comprobación de firma del script",
- "enforceSignatureCheckTooltip": "Seleccione \"Sí\" para comprobar que el script está firmado por un editor de confianza, lo que permite ejecutarlo sin advertencias ni avisos. El script se ejecutará desbloqueado. Seleccione \"No\" (predeterminado) para ejecutarlo con la confirmación del usuario final, pero sin comprobación de firma.",
- "loggedOnCredentials": "Ejecutar este script con las credenciales de inicio de sesión",
- "loggedOnCredentialsTooltip": "Ejecutar script mediante las credenciales del dispositivo que ha iniciado sesión.",
- "operatorTooltip": "Seleccione el operador para la comparación de requisitos.",
- "requirementMethod": "Seleccionar el tipo de datos de salida",
- "requirementMethodTooltip": "Seleccione el tipo de datos usado al determinar un requisito de coincidencia de detección.",
- "scriptFile": "Archivo de script",
- "scriptFileTooltip": "Seleccione un script de PowerShell que detecte la presencia de la aplicación en el cliente. Si se detecta la aplicación, el proceso de requisitos proporcionará un código de salida con un valor de 0 y escribirá un valor de cadena en STDOUT.",
- "scriptName": "Nombre del script",
- "value": "Valor",
- "valueTooltip": "Seleccione un valor de requisito que coincida con el método de detección seleccionado. Se debe especificar el requisito de fecha y hora en el formato local."
- },
- "bladeTitle": "Agregar una regla de requisitos",
- "createRequirementHeader": "Cree un requisito.",
- "header": "Configurar reglas de requisitos adicionales",
- "label": "Reglas de requisitos adicionales",
- "noRequirementsSelectedPlaceholder": "No se ha especificado ningún requisito.",
- "requirementType": "Tipo de requisito",
- "requirementTypeTooltip": "Elija el tipo de método de detección utilizado para determinar cómo se valida un requisito."
- },
- "architectures": "Arquitectura del sistema operativo",
- "architecturesTooltip": "Elija las arquitecturas necesarias para instalar la aplicación.",
- "bladeTitle": "Requisitos",
- "diskSpace": "Espacio en disco necesario (MB)",
- "diskSpaceTooltip": "Espacio en disco libre necesario en la unidad del sistema para instalar la aplicación.",
- "header": "Especifique los requisitos que deben cumplir los dispositivos antes de instalar la aplicación:",
- "maximumTextFieldValue": "El valor debe ser como máximo de {0}.",
- "minimumCpuSpeed": "Velocidad de CPU mínima requerida (MHz)",
- "minimumCpuSpeedTooltip": "La velocidad de CPU mínima necesaria para instalar la aplicación.",
- "minimumLogicalProcessors": "Número mínimo de procesadores lógicos necesarios",
- "minimumLogicalProcessorsTooltip": "El número mínimo de procesadores lógicos necesarios para instalar la aplicación.",
- "minimumOperatingSystem": "Versión mínima del sistema operativo",
- "minimumOperatingSystemTooltip": "Seleccione la versión mínima del sistema operativo necesaria para instalar la aplicación.",
- "minumumTextFieldValue": "El valor debe ser como mínimo de {0}.",
- "physicalMemory": "Memoria física requerida (MB)",
- "physicalMemoryTooltip": "Memoria física (RAM) necesaria para instalar la aplicación.",
- "selectorLabel": "Requisitos",
- "validNumber": "Especifique un número válido."
- },
- "ArchitectureOptions": {
- "sixtyFourBit": "64 bits",
- "thirtyTwoBit": "32 bits"
- },
- "Countries": {
- "ae": "Emiratos Árabes Unidos",
- "ag": "Antigua y Barbuda",
- "ai": "Anguila",
- "al": "Albania",
- "am": "Armenia",
- "ao": "Angola",
- "ar": "Argentina",
- "at": "Austria",
- "au": "Australia",
- "az": "Azerbaiyán",
- "bb": "Barbados",
- "be": "Bélgica",
- "bf": "Burkina Faso",
- "bg": "Bulgaria",
- "bh": "Baréin",
- "bj": "Benín",
- "bm": "Bermudas",
- "bn": "Brunéi",
- "bo": "Bolivia",
- "br": "Brasil",
- "bs": "Bahamas",
- "bt": "Bután",
- "bw": "Botsuana",
- "by": "Belarús",
- "bz": "Belice",
- "ca": "Canadá",
- "cg": "República del Congo",
- "ch": "Suiza",
- "cl": "Chile",
- "cn": "China",
- "co": "Colombia",
- "cr": "Costa Rica",
- "cv": "Cabo Verde",
- "cy": "Chipre",
- "cz": "República Checa",
- "de": "Alemania",
- "dk": "Dinamarca",
- "dm": "Dominica",
- "do": "República Dominicana",
- "dz": "Argelia",
- "ec": "Ecuador",
- "ee": "Estonia",
- "eg": "Egipto",
- "es": "España",
- "fi": "Finlandia",
- "fj": "Fiyi",
- "fm": "Estados Federados de Micronesia",
- "fr": "Francia",
- "gb": "Reino Unido",
- "gd": "Granada",
- "gh": "Ghana",
- "gm": "Gambia",
- "gr": "Grecia",
- "gt": "Guatemala",
- "gw": "Guinea-Bissau",
- "gy": "Guyana",
- "hk": "Hong Kong",
- "hn": "Honduras",
- "hr": "Croacia",
- "hu": "Hungría",
- "id": "Indonesia",
- "ie": "Irlanda",
- "il": "Israel",
- "in": "India",
- "is": "Islandia",
- "it": "Italia",
- "jm": "Jamaica",
- "jo": "Jordania",
- "jp": "Japón",
- "ke": "Kenia",
- "kg": "Kirguistán",
- "kh": "Camboya",
- "kn": "San Cristóbal y Nieves",
- "kr": "República de Corea",
- "kw": "Kuwait",
- "ky": "Islas Caimán",
- "kz": "Kazajistán",
- "la": "República Democrática Popular de Laos",
- "lb": "Líbano",
- "lc": "Santa Lucía",
- "lk": "Sri Lanka",
- "lr": "Liberia",
- "lt": "Lituania",
- "lu": "Luxemburgo",
- "lv": "Letonia",
- "md": "República de Moldova",
- "mg": "Madagascar",
- "mk": "Macedonia del Norte",
- "ml": "Malí",
- "mn": "Mongolia",
- "mo": "Macao",
- "mr": "Mauritania",
- "ms": "Montserrat",
- "mt": "Malta",
- "mu": "Mauricio",
- "mw": "Malaui",
- "mx": "México",
- "my": "Malasia",
- "mz": "Mozambique",
- "na": "Namibia",
- "ne": "Níger",
- "ng": "Nigeria",
- "ni": "Nicaragua",
- "nl": "Países Bajos",
- "no": "Noruega",
- "np": "Nepal",
- "nz": "Nueva Zelanda",
- "om": "Omán",
- "pa": "Panamá",
- "pe": "Perú",
- "pg": "Papúa Nueva Guinea",
- "ph": "Filipinas",
- "pk": "Pakistán",
- "pl": "Polonia",
- "pt": "Portugal",
- "pw": "Palaos",
- "py": "Paraguay",
- "qa": "Qatar",
- "ro": "Rumanía",
- "ru": "Rusia",
- "sa": "Arabia Saudí",
- "sb": "Islas Salomón",
- "sc": "Seychelles",
- "se": "Suecia",
- "sg": "Singapur",
- "si": "Eslovenia",
- "sk": "Eslovaquia",
- "sl": "Sierra Leona",
- "sn": "Senegal",
- "sr": "Surinam",
- "st": "Santo Tomé y Príncipe",
- "sv": "El Salvador",
- "sz": "Suazilandia",
- "tc": "Islas Turcas y Caicos",
- "td": "Chad",
- "th": "Tailandia",
- "tj": "Tayikistán",
- "tm": "Turkmenistán",
- "tn": "Túnez",
- "tr": "Turquía",
- "tt": "Trinidad y Tobago",
- "tw": "Taiwán",
- "tz": "Tanzania",
- "ua": "Ucrania",
- "ug": "Uganda",
- "us": "Estados Unidos",
- "uy": "Uruguay",
- "uz": "Uzbekistán",
- "vc": "San Vicente y las Granadinas",
- "ve": "Venezuela",
- "vg": "Islas Vírgenes Británicas",
- "vn": "Vietnam",
- "ye": "Yemen",
- "za": "Sudáfrica",
- "zw": "Zimbabue"
+ "Languages": {
+ "ar-aE": "Árabe (Emiratos Árabes Unidos)",
+ "ar-bH": "Árabe (Baréin)",
+ "ar-dZ": "Árabe (Argelia)",
+ "ar-eG": "Árabe (Egipto)",
+ "ar-iQ": "Árabe (Irak)",
+ "ar-jO": "Árabe (Jordania)",
+ "ar-kW": "Árabe (Kuwait)",
+ "ar-lB": "Árabe (Líbano)",
+ "ar-lY": "Árabe (Libia)",
+ "ar-mA": "Árabe (Marruecos)",
+ "ar-oM": "Árabe (Omán)",
+ "ar-qA": "Árabe (Qatar)",
+ "ar-sA": "Árabe (Arabia Saudí)",
+ "ar-sY": "Árabe (Siria)",
+ "ar-tN": "Árabe (Túnez)",
+ "ar-yE": "Árabe (Yemen)",
+ "az-cyrl": "Azerbaiyano (cirílico, Azerbaiyán)",
+ "az-latn": "Azerbaiyano (latino, Azerbaiyán)",
+ "bn-bD": "Bengalí (Bangladés)",
+ "bn-iN": "Bengalí (India)",
+ "bs-cyrl": "Bosnio (cirílico)",
+ "bs-latn": "Bosnio (latino)",
+ "zh-cN": "Chino (RPC)",
+ "zh-hK": "Chino (RAE de Hong Kong)",
+ "zh-mO": "Chino (RAE de Macao)",
+ "zh-sG": "Chino (Singapur)",
+ "zh-tW": "Chino (Taiwán)",
+ "hr-bA": "Croata (latino)",
+ "hr-hR": "Croata (Croacia)",
+ "nl-bE": "Neerlandés (Bélgica)",
+ "nl-nL": "Neerlandés (Países Bajos)",
+ "en-aU": "Inglés (Australia)",
+ "en-bZ": "Inglés (Belice)",
+ "en-cA": "Inglés (Canadá)",
+ "en-cabn": "Inglés (Caribe)",
+ "en-iE": "Inglés (Irlanda)",
+ "en-iN": "Inglés (India)",
+ "en-jM": "Inglés (Jamaica)",
+ "en-mY": "Inglés (Malasia)",
+ "en-nZ": "Inglés (Nueva Zelanda)",
+ "en-pH": "Inglés (Filipinas)",
+ "en-sG": "Inglés (Singapur)",
+ "en-tT": "Inglés (Trinidad y Tobago)",
+ "en-uK": "Inglés (Reino Unido)",
+ "en-uS": "Inglés (Estados Unidos)",
+ "en-zA": "Inglés (Sudáfrica)",
+ "en-zW": "Inglés (Zimbabue)",
+ "fr-bE": "Francés (Bélgica)",
+ "fr-cA": "Francés (Canadá)",
+ "fr-cH": "Francés (Suiza)",
+ "fr-fR": "Francés (Francia)",
+ "fr-lU": "Francés (Luxemburgo)",
+ "fr-mC": "Francés (Mónaco)",
+ "de-aT": "Alemán (Austria)",
+ "de-cH": "Alemán (Suiza)",
+ "de-dE": "Alemán (Alemania)",
+ "de-lI": "Alemán (Liechtenstein)",
+ "de-lU": "Alemán (Luxemburgo)",
+ "iu-cans": "Inuktitut (silábico, Canadá)",
+ "iu-latn": "Inuktitut (latino, Canadá)",
+ "it-cH": "Italiano (Suiza)",
+ "it-iT": "Italiano (Italia)",
+ "ms-bN": "Malayo (Brunéi Darussalam)",
+ "ms-mY": "Malayo (Malasia)",
+ "mn-cN": "Mongol (mongol tradicional, RPC)",
+ "mn-mN": "Mongol (cirílico, Mongolia)",
+ "no-nB": "Noruego (Bokmål, Noruega)",
+ "no-nn": "Noruego, Nynorsk (Noruega)",
+ "pt-bR": "Portugués (Brasil)",
+ "pt-pT": "Portugués (Portugal)",
+ "quz-bO": "Quechua (Bolivia)",
+ "quz-eC": "Quechua (Ecuador)",
+ "quz-pE": "Quechua (Perú)",
+ "smj-nO": "Sami lule (Noruega)",
+ "smj-sE": "Sami lule (Suecia)",
+ "se-fI": "Sami, septentrional (Finlandia)",
+ "se-nO": "Sami, septentrional (Noruega)",
+ "se-sE": "Sami septentrional (Suecia)",
+ "sma-nO": "Sami, meridional (Noruega)",
+ "sma-sE": "Sami, meridional (Suecia)",
+ "smn": "Sami, inari (Finlandia)",
+ "sms": "Sami, skolt (Finlandia)",
+ "sr-Cyrl-bA": "Serbio (cirílico)",
+ "sr-Cyrl-rS": "Serbio (cirílico, antigua Serbia y Montenegro)",
+ "sr-Latn-bA": "Serbio (latino)",
+ "sr-Latn-rS": "Serbio (latino, Serbia)",
+ "dsb": "Bajo sorbio (Alemania)",
+ "hsb": "Alto sorbio (Alemania)",
+ "es-es-tradnl": "Español (España, alfabetización tradicional)",
+ "es-aR": "Español (Argentina)",
+ "es-bO": "Español (Bolivia)",
+ "es-cL": "Español (Chile)",
+ "es-cO": "Español (Colombia)",
+ "es-cR": "Español (Costa Rica)",
+ "es-dO": "Español (República Dominicana)",
+ "es-eC": "Español (Ecuador)",
+ "es-eS": "Español (España)",
+ "es-gT": "Español (Guatemala)",
+ "es-hN": "Español (Honduras)",
+ "es-mX": "Español (México)",
+ "es-nI": "Español (Nicaragua)",
+ "es-pA": "Español (Panamá)",
+ "es-pE": "Español (Perú)",
+ "es-pR": "Español (Puerto Rico)",
+ "es-pY": "Español (Paraguay)",
+ "es-sV": "Español (El Salvador)",
+ "es-uS": "Español (Estados Unidos)",
+ "es-uY": "Español (Uruguay)",
+ "es-vE": "Español (Venezuela)",
+ "sv-fI": "Sueco (Finlandia)",
+ "uz-cyrl": "Uzbeko (cirílico, Uzbekistán)",
+ "uz-latn": "Uzbeko (Latino, Uzbekistán)",
+ "af": "Afrikáans (Sudáfrica)",
+ "sq": "Albanés (Albania)",
+ "am": "Amárico (Etiopía)",
+ "hy": "Armenio (Armenia)",
+ "as": "Asamés (India)",
+ "ba": "Baskir (Rusia)",
+ "eu": "Euskera (euskera)",
+ "be": "Bielorruso (Belarús)",
+ "br": "Bretón (Francia)",
+ "bg": "Búlgaro (Bulgaria)",
+ "ca": "Catalán (Catalán)",
+ "co": "Corso (Francia)",
+ "cs": "Checo (República Checa)",
+ "da": "Danés (Dinamarca)",
+ "prs": "Dari (Afganistán)",
+ "dv": "Divehi (Maldivas)",
+ "et": "Estonio (Estonia)",
+ "fo": "Feroés (Islas Feroe)",
+ "fil": "Filipino (Filipinas)",
+ "fi": "Finés (Finlandia)",
+ "gl": "Gallego (gallego)",
+ "ka": "Georgiano (Georgia)",
+ "el": "Griego (Grecia)",
+ "gu": "Guyaratí (India)",
+ "ha": "Hausa (latino, Nigeria)",
+ "he": "Hebreo (Israel)",
+ "hi": "Hindi (India)",
+ "hu": "Húngaro (Hungría)",
+ "is": "Islandés (Islandia)",
+ "ig": "Igbo (Nigeria)",
+ "id": "Indonesio (Indonesia)",
+ "ga": "Irlandés (Irlanda)",
+ "xh": "Xhosa (Sudáfrica)",
+ "zu": "Zulú (Sudáfrica)",
+ "ja": "Japonés (Japón)",
+ "kn": "Canarés (India)",
+ "kk": "Kazajo (Kazajistán)",
+ "km": "Jemer (Camboya)",
+ "rw": "Kinyarwanda (Ruanda)",
+ "sw": "Suajili (Kenia)",
+ "kok": "Konkani (India)",
+ "ko": "Coreano (Corea del Sur)",
+ "ky": "Kirguís (Kirguistán)",
+ "lo": "Lao (R.D.P. de Laos)",
+ "lv": "Letón (Letonia)",
+ "lt": "Lituano (Lituania)",
+ "lb": "Luxemburgués (Luxemburgo)",
+ "mk": "Macedonio (Macedonia del Norte)",
+ "ml": "Malayalam (India)",
+ "mt": "Maltés (Malta)",
+ "mi": "Maorí (Nueva Zelanda)",
+ "mr": "Maratí (India)",
+ "moh": "Mohawk (Mohawk)",
+ "ne": "Nepalí (Nepal)",
+ "oc": "Occitano (Francia)",
+ "or": "Odia (India)",
+ "ps": "Pastún (Afganistán)",
+ "fa": "Persa",
+ "pl": "Polaco (Polonia)",
+ "pa": "Punyabí (India)",
+ "ro": "Rumano (Rumanía)",
+ "rm": "Romanche (Suiza)",
+ "ru": "Ruso (Rusia)",
+ "sa": "Sánscrito (India)",
+ "st": "Sotho septentrional (Sudáfrica)",
+ "tn": "Setsuana (Sudáfrica)",
+ "si": "Cingalés (Sri Lanka)",
+ "sk": "Eslovaco (Eslovaquia)",
+ "sl": "Esloveno (Eslovenia)",
+ "sv": "Sueco (Suecia)",
+ "syr": "Sirio (Siria)",
+ "tg": "Tayiko (cirílico, Tayikistán)",
+ "ta": "Tamil (India)",
+ "tt": "Tártaro (Rusia)",
+ "te": "Telugu (India)",
+ "th": "Tailandés (Tailandia)",
+ "bo": "Tibetano (RPC)",
+ "tr": "Turco (Turquía)",
+ "tk": "Turcomano (Turkmenistán)",
+ "uk": "Ucraniano (Ucrania)",
+ "ur": "Urdú (Pakistán)",
+ "vi": "Vietnamita (Vietnam)",
+ "cy": "Galés (Reino Unido)",
+ "wo": "Wolof (Senegal)",
+ "ii": "Yi (RPC)",
+ "yo": "Yoruba (Nigeria)"
+ },
+ "Category": {
+ "airPlay": "AirPlay",
+ "airPrint": "AirPrint",
+ "androidDefenderAtp": "Microsoft Defender for Endpoint",
+ "androidDeviceOwnerApplications": "Aplicaciones",
+ "androidForWorkPassword": "Contraseña del dispositivo",
+ "appManagement": "Permitir o bloquear aplicaciones",
+ "applicationGuard": "Protección de aplicaciones de Microsoft Defender",
+ "applicationRestrictions": "Aplicaciones restringidas",
+ "applicationVisibility": "Mostrar u ocultar aplicaciones",
+ "applications": "Tienda de aplicaciones",
+ "applicationsAndGames": "App Store, presentación de documentos, juegos",
+ "applicationsAndGoogle": "Google Play Store",
+ "appsAndExperience": "Aplicaciones y experiencia",
+ "associatedDomains": "Dominios asociados",
+ "autonomousSingleAppMode": "Modo de aplicación única autónoma",
+ "azureOperationalInsights": "Azure Operational Insights",
+ "bitLocker": "Cifrado de Windows",
+ "browser": "Explorador",
+ "builtinApps": "Aplicaciones integradas",
+ "cellular": "Red de telefonía móvil",
+ "cloudAndStorage": "Nube y almacenamiento",
+ "cloudPrint": "Impresora en la nube",
+ "complianceEmailProfile": "Correo electrónico",
+ "connectedDevices": "Dispositivos conectados",
+ "connectivity": "Red de telefonía móvil y conectividad",
+ "contentCaching": "Almacenamiento en caché de contenido",
+ "controlPanelAndSettings": "Panel de control y Configuración",
+ "credentialGuard": "Credential Guard de Microsoft Defender",
+ "customCompliance": "Cumplimiento personalizado",
+ "customCompliancePreview": "Cumplimiento personalizado (versión preliminar)",
+ "customConfiguration": "Perfil de configuración personalizada",
+ "customOMASettings": "Configuración OMA-URI personalizada",
+ "customPreferences": "Archivo de preferencias",
+ "defender": "Antivirus de Microsoft Defender",
+ "defenderAntivirus": "Antivirus de Microsoft Defender",
+ "defenderExploitGuard": "Protección contra vulnerabilidades de seguridad de Microsoft Defender",
+ "defenderFirewall": "Firewall de Microsoft Defender",
+ "defenderLocalSecurityOptions": "Opciones de seguridad del dispositivo local",
+ "defenderSecurityCenter": "Centro de seguridad de Microsoft Defender",
+ "deliveryOptimization": "Optimización de entrega",
+ "derivedCredentialAuthenticationConfiguration": "Credencial derivada",
+ "deviceExperience": "Experiencia del dispositivo",
+ "deviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
+ "deviceGuard": "Control de aplicaciones de Microsoft Defender",
+ "deviceHealth": "Estado de dispositivos",
+ "devicePassword": "Contraseña del dispositivo",
+ "deviceProperties": "Propiedades del dispositivo",
+ "deviceRestrictions": "General",
+ "deviceSecurity": "Seguridad del sistema",
+ "display": "Mostrar",
+ "domainJoin": "Unión a un dominio",
+ "domains": "Dominios",
+ "edgeBrowser": "Microsoft Edge (versión anterior), versión 45 y anteriores",
+ "edgeBrowserSmartScreen": "SmartScreen de Microsoft Defender",
+ "edgeKiosk": "Pantalla completa de Microsoft Edge",
+ "editionUpgrade": "Actualización de edición",
+ "education": "Educación",
+ "educationDeviceCerts": "Certificados de dispositivo",
+ "educationStudentCerts": "Certificados de alumno",
+ "educationTakeATest": "Hacer un examen",
+ "educationTeacherCerts": "Certificados de profesor",
+ "emailProfile": "Correo electrónico",
+ "enterpriseDataProtection": "Windows Information Protection",
+ "expeditedCheckin": "Configuración de administración de dispositivos móviles",
+ "extensibleSingleSignOn": "Extensión de aplicación de inicio de sesión único",
+ "filevault": "FileVault",
+ "firewall": "Firewall",
+ "games": "Juegos",
+ "gatekeeper": "Gatekeeper",
+ "healthMonitoring": "Seguimiento de estado",
+ "homeScreenLayout": "Diseño de pantalla principal",
+ "iOSWallpaper": "Papel tapiz",
+ "importedPFX": "Certificado PKCS importado",
+ "iosDefenderAtp": "Microsoft Defender for Endpoint",
+ "iosKiosk": "Pantalla completa",
+ "kernelExtensions": "Extensiones de kernel",
+ "keyboardAndDictionary": "Teclado y diccionario",
+ "kiosk": "Pantalla completa",
+ "kioskAndroidEnterprise": "Dispositivos dedicados",
+ "kioskConfiguration": "Pantalla completa",
+ "kioskConfigurationV2": "Pantalla completa",
+ "kioskWebBrowser": "Kiosk Web Browser",
+ "lockScreenMessage": "Mensaje de bloqueo de pantalla",
+ "lockedScreenExperience": "Experiencia de pantalla de bloqueo",
+ "logging": "Informes y telemetría",
+ "loginItems": "Elementos de inicio de sesión",
+ "loginWindow": "Ventana de inicio de sesión",
+ "macDefenderAtp": "Microsoft Defender for Endpoint",
+ "maintenance": "Mantenimiento",
+ "malware": "Malware",
+ "messaging": "Mensajería",
+ "networkBoundary": "Límite de red",
+ "networkProxy": "Proxy de red",
+ "notifications": "Notificaciones de la aplicación",
+ "pKCS": "Certificado PKCS",
+ "password": "Contraseña",
+ "personalProfile": "Perfil personal",
+ "personalization": "Personalización",
+ "policyOverride": "Reemplazar la directiva de grupo",
+ "powerSettings": "Opciones de energía",
+ "printer": "Impresora",
+ "privacy": "Privacidad",
+ "privacyPerApp": "Excepciones de privacidad por aplicación",
+ "privacyPreferences": "Preferencias de privacidad",
+ "projection": "Proyección",
+ "sCCMCompliance": "Cumplimiento de Configuration Manager",
+ "sCEP": "Certificado SCEP",
+ "sCEPProperties": "Certificado SCEP",
+ "sMode": "Intercambiar modo (solo Windows Insider)",
+ "safari": "Safari",
+ "search": "Buscar",
+ "session": "Sesión",
+ "sharedDevice": "iPad compartido",
+ "sharedPCAccountManager": "Dispositivo multiusuario compartido",
+ "singleSignOn": "Inicio de sesión único",
+ "smartScreen": "SmartScreen de Microsoft Defender",
+ "softwareUpdates": "Configuración",
+ "start": "Inicio",
+ "systemExtensions": "Extensiones del sistema",
+ "systemSecurity": "Seguridad del sistema",
+ "trustedCert": "Certificado de confianza",
+ "updates": "Actualizaciones",
+ "userRights": "Derechos del usuario",
+ "usersAndAccounts": "Usuarios y cuentas",
+ "vPN": "VPN base",
+ "vPNApps": "VPN automática",
+ "vPNAppsAndTrafficRules": "Aplicaciones y reglas de tráfico",
+ "vPNConditionalAccess": "Acceso condicional",
+ "vPNConnectivity": "Conectividad",
+ "vPNDNSTriggers": "Configuración DNS",
+ "vPNIKEv2": "Configuración de IKEv2",
+ "vPNProxy": "Proxy",
+ "vPNSplitTunneling": "Túnel dividido",
+ "vPNTrustedNetwork": "Detección de redes de confianza",
+ "webContentFilter": "Filtro de contenido web",
+ "wiFi": "Wi-Fi",
+ "win10Wifi": "Wi-Fi",
+ "windowsAtp": "Microsoft Defender for Endpoint",
+ "windowsDefenderATP": "Microsoft Defender for Endpoint",
+ "windowsHelloForBusiness": "Windows Hello para empresas",
+ "windowsSpotlight": "Contenido destacado de Windows",
+ "wiredNetwork": "Red cableada",
+ "wireless": "Inalámbrica",
+ "wirelessProjection": "Proyección inalámbrica",
+ "workProfile": "Configuración del perfil profesional",
+ "workProfilePassword": "Contraseña del perfil de trabajo",
+ "xboxServices": "Servicios de Xbox",
+ "zebraMx": "Perfil de MX (solo Zebra)",
+ "complianceActionsLabel": "Acciones en caso de incumplimiento"
+ },
+ "WindowsFeatureUpdateProfile": {
+ "Details": {
+ "Description": {
+ "label": "Descripción"
+ },
+ "FeatureDeploymentSettings": {
+ "header": "Configuración de implementación de características"
+ },
+ "FeatureUpdateVersion": {
+ "infoballoon": "Esta característica no puede degradar un dispositivo.",
+ "label": "Actualización de características para implementar"
+ },
+ "GradualRolloutEndDate": {
+ "label": "Disponibilidad del primer grupo"
+ },
+ "GradualRolloutInterval": {
+ "label": "Días entre grupos"
+ },
+ "GradualRolloutStartDate": {
+ "label": "Disponibilidad del primer grupo"
+ },
+ "Name": {
+ "label": "Nombre"
+ },
+ "RolloutOptions": {
+ "label": "Opciones de lanzamiento"
+ },
+ "RolloutSettings": {
+ "header": "¿Cuándo le gustaría que la actualización estuviera disponible en Windows Update?"
+ },
+ "ScopeSettings": {
+ "header": "Configure etiquetas de ámbito para esta directiva."
+ },
+ "StartDateOnlyStartDate": {
+ "label": "Primera fecha disponible"
+ },
+ "bladeTitle": "Implementaciones de actualización de características",
+ "deploymentSettingsTitle": "Configuración de la implementación",
+ "loadError": "Error al cargar.",
+ "windows11EULA": "Al seleccionar esta actualización de características para implementar, acepta que al aplicar este sistema operativo a un dispositivo (1) la licencia de Windows correspondiente se adquirió a través de licencias por volumen o (2) que está autorizado para vincular a su organización y está aceptando en su nombre los Términos de licencia del software de Microsoft relevantes que encontrará aquí {0}."
+ },
+ "Notifications": {
+ "deploymentSaved": "\"{0}\" se ha guardado.",
+ "newFeatureUpdateDeploymentCreated": "Se ha creado una implementación de actualización de características."
+ },
+ "TabName": {
+ "deploymentSettings": "Configuración de la implementación",
+ "groupAssignmentSettings": "Asignaciones",
+ "scopeSettings": "Etiquetas de ámbito"
+ }
+ },
+ "WIPPinRequirements": {
+ "WipLowercaseCharacterPinRequirements": {
+ "allow": "Permitir el uso de letras minúsculas en el PIN",
+ "notAllow": "No permitir el uso de letras minúsculas en el PIN",
+ "requireAtLeastOne": "Requerir el uso de al menos una letra minúscula en el PIN"
+ },
+ "WipSpecialCharacterPinRequirements": {
+ "allow": "Permitir el uso de caracteres especiales en el PIN",
+ "notAllow": "No permitir el uso de caracteres especiales en el PIN",
+ "requireAtLeastOne": "Requerir el uso de al menos un carácter especial en el PIN"
+ },
+ "WipUppercaseCharacterPinRequirements": {
+ "allow": "Permitir el uso de letras mayúsculas en el PIN",
+ "notAllow": "No permitir el uso de letras mayúsculas en el PIN",
+ "requireAtLeastOne": "Requerir el uso de al menos una letra mayúscula en el PIN"
+ }
+ },
+ "OutlookAppConfigSettings": {
+ "AllowUserToChangeSetting": {
+ "title": "Permitir que el usuario cambie la configuración",
+ "tooltip": "Especifique si el usuario tiene permiso para cambiar la configuración."
+ },
+ "AllowWorkAccounts": {
+ "title": "Permitir solo cuentas profesionales o educativas",
+ "tooltip": " Si se habilita esta opción, los usuarios no pueden agregar cuentas de almacenamiento y de correo electrónico personales a Outlook. Si un usuario tiene una cuenta personal agregada a Outlook, se le pide que la quite y, si no la quita, no se puede agregar la cuenta profesional o educativa."
+ },
+ "BlockExternalImages": {
+ "title": "Bloquear imágenes externas",
+ "tooltip": "Cuando el bloqueo de imágenes externas está habilitado, la aplicación impide la descarga de imágenes hospedadas en Internet que están insertadas en el cuerpo del mensaje. Si se establece como no configurado, la aplicación establece el valor Desactivado de forma predeterminada."
+ },
+ "ConfigureEmail": {
+ "title": "Configurar cuentas de correo electrónico"
+ },
+ "DefaultAppSignatureSetting": {
+ "Tooltip": {
+ "android": "La firma de aplicación predeterminada indica si la aplicación usará \"Obtener Outlook para Android\" como firma predeterminada durante la composición del mensaje. Si la configuración está desactivada, no se usará la firma predeterminada. Sin embargo, los usuarios pueden agregar su propia firma.\r\n\r\nCuando se establece como Sin configurar, la configuración de aplicación predeterminada se establece en Activado.",
+ "iOS": "La firma de aplicación predeterminada indica si la aplicación usará \"Obtener Outlook para iOS\" como firma predeterminada durante la composición del mensaje. Si la configuración está desactivada, no se usará la firma predeterminada. Sin embargo, los usuarios pueden agregar su propia firma.\r\n\r\nCuando se establece como Sin configurar, la configuración de aplicación predeterminada se establece en Activado."
+ },
+ "title": "Firma de aplicación predeterminada"
+ },
+ "OfficeFeedReplies": {
+ "title": "Fuente de detección",
+ "tooltip": "Fuente de detección destaca los archivos de Office a los que accede con más frecuencia. Esta fuente se habilita de forma predeterminada si Delve está habilitado para el usuario. Si está sin configurar, la configuración de la aplicación predeterminada se establece como Activa."
+ },
+ "OrganizeMailByThread": {
+ "title": "Organizar el correo por hilos",
+ "tooltip": "El comportamiento predeterminado de Outlook es agrupar las conversaciones de correo electrónico en una vista de conversaciones por hilos. Si esta opción está deshabilitada, Outlook muestra cada correo electrónico por separado, sin agrupar los mensajes por hilos."
+ },
+ "PlayMyEmails": {
+ "title": "Reproducir mis correos electrónicos",
+ "tooltip": "La característica Reproducir mis correos electrónicos no está habilitada de forma predeterminada en la aplicación, pero se promueve a los usuarios aptos mediante un banner en la bandeja de entrada. Si se establece en Desactivada, no se promociona a los usuarios aptos en la aplicación. Los usuarios pueden optar por habilitar manualmente Reproducir mis correos electrónicos desde la propia aplicación, aunque la característica esté establecida como Desactivada. Si se establece como Sin configurar, la configuración predeterminada de la aplicación es Activada y la característica se promoverá a los usuarios aptos."
+ },
+ "SuggestedReplies": {
+ "title": "Respuestas sugeridas",
+ "tooltip": "Al abrir un mensaje, Outlook puede sugerir respuestas debajo de este. Si selecciona una de las respuestas sugeridas, puede editarla antes de enviarla."
+ },
+ "SyncCalendars": {
+ "title": "Sincronizar calendarios",
+ "tooltip": "Configure si los usuarios pueden sincronizar su calendario de Outlook con la base de datos y la aplicación de calendario nativo."
+ },
+ "TextPredictions": {
+ "title": "Predicciones de texto",
+ "tooltip": "Outlook puede sugerir palabras y frases al redactar mensajes. Cuando Outlook ofrezca una sugerencia, deslice rápidamente el dedo para aceptarla. Cuando se define como no configurada, la configuración de la aplicación predeterminada se establece en Activada."
+ },
+ "ThemesEnabled": {
+ "title": "Temas habilitados",
+ "tooltip": "Especifique si el usuario puede usar un tema visual personalizado."
+ }
+ },
+ "AssignmentFilters": {
+ "assignmentFilterColumnHeader": "Filtrar",
+ "noFilters": "Ninguno"
+ },
+ "Platform": {
+ "all": "Todas",
+ "android": "Administrador de dispositivos Android",
+ "androidAOSP": "Android (AOSP)",
+ "androidEnterprise": "Android Enterprise",
+ "androidForWork": "Android Enterprise",
+ "androidWorkProfile": "Android Enterprise",
+ "common": "Común",
+ "iOS": "iOS/iPadOS",
+ "iosAndAndroidPlatformLabel": "iOS y Android",
+ "iosCommaAndroidPlatformLabel": "iOS, Android",
+ "linux": "Linux",
+ "macOS": "macOS",
+ "unknown": "Desconocido",
+ "unsupported": "No compatible",
+ "windows": "Windows",
+ "windows10": "Windows 10 y versiones posteriores",
+ "windows10CM": "Windows 10 y versiones posteriores (ConfigMgr)",
+ "windows10Holo": "Windows 10 Holographic",
+ "windows10Mobile": "Windows 10 Mobile",
+ "windows10Team": "Windows 10 Team",
+ "windows10X": "Windows 10X",
+ "windows8": "Windows 8.1 y versiones posteriores",
+ "windows8And10": "Windows 8 y 10",
+ "windowsPhone": "Windows Phone 8.1",
+ "windows10AndLater": "Windows 10 y versiones posteriores",
+ "windows10AndWindowsServer": "Windows 10, Windows 11 y Windows Server (ConfigMgr)",
+ "windows10andLaterCM": "Windows 10 y versiones posteriores (ConfigMgr)",
+ "holoLens": "HoloLens",
+ "surfaceHub2": "Surface Hub 2",
+ "surfaceHub2S": "Surface Hub 2S",
+ "windowsPC": "PC Windows"
+ },
+ "AppInformationTab": {
+ "Error": {
+ "multipleChildApps": "Una aplicación de LOB de macOS solo puede instalarse como administrada cuando el paquete cargado contiene una sola aplicación."
+ },
+ "Info": {
+ "AppStoreUrl": {
+ "android": "Escriba el vínculo a la lista de aplicaciones de la tienda Google Play. Por ejemplo:",
+ "androidLink": "https://play.google.com/store/apps/details?id=com.microsoft.office.outlook",
+ "windows": "Escriba el vínculo a la lista de aplicaciones de Microsoft Store. Por ejemplo:",
+ "windowsLink": "https://www.microsoft.com/en-us/p/microsoft-to-do-lists-tasks-reminders/9nblggh5r558"
+ },
+ "appPackageFile": "Un archivo que contiene la aplicación en un formato que se puede transferir localmente en un dispositivo. Los tipos de paquete válidos son: Android (.apk), iOS (.ipa), macOS (.pkg, .intunemac), Windows (.msi, .appx, .appxbundle, .msix y .msixbundle).",
+ "applicableDeviceType": "Seleccione los tipos de dispositivo que pueden instalar esta aplicación.",
+ "category": "Clasifique la aplicación para que los usuarios puedan ordenarla y encontrarla más fácilmente en el Portal de empresa. Puede elegir varias categorías.",
+ "categoryLink": "https://docs.microsoft.com/en-us/intune/apps/apps-add#create-and-edit-categories-for-apps",
+ "description": "Ayuda a los usuarios del dispositivo a comprender qué es la aplicación o qué pueden hacer en ella. Esta descripción se puede ver en el Portal de empresa.",
+ "developer": "Nombre de la empresa o individuo que desarrolló la aplicación. Esta información estará visible para las personas que hayan iniciado sesión en el centro de administración.",
+ "displayVersion": "Versión de la aplicación. Los usuarios pueden ver esta información en el Portal de empresa.",
+ "infoUrl": "Vincula las personas a un sitio web o documentación que tiene más información sobre la aplicación. La dirección URL de información estará visible para los usuarios del Portal de empresa.",
+ "isFeatured": "Las aplicaciones destacadas se colocan de forma visible en el Portal de empresa para que los usuarios puedan acceder rápidamente a ellas.",
+ "learnMore": "Más información",
+ "logo": "Cargue un logotipo asociado a la aplicación. Este logotipo aparecerá junto a la aplicación en el Portal de empresa.",
+ "macOSDmgAppPackageFile": "Un archivo que contiene la aplicación en un formato que se puede transferir localmente en un dispositivo. Tipo de paquete válido: .dmg.",
+ "minOperatingSystem": "Seleccione la versión del sistema operativo más temprana en la que se puede instalar la aplicación. Si asigna la aplicación a un dispositivo con un sistema operativo anterior, no se instalará.",
+ "name": "Agregue un nombre para la aplicación. Este nombre estará visible en la lista de aplicaciones de Intune y para los usuarios del Portal de empresa.",
+ "notes": "Agregue notas adicionales sobre la aplicación, que serán visibles para las personas que hayan iniciado sesión en el centro de administración.",
+ "owner": "El nombre de la persona de su organización que administra licencias o es el punto de contacto de esta aplicación. Este nombre estará visible para las personas que hayan iniciado sesión en el centro de administración.",
+ "packageName": "Póngase en contacto con el fabricante del dispositivo para obtener el nombre del paquete de la aplicación. Nombre de paquete de ejemplo: com.example.app",
+ "privacyUrl": "Proporciona un vínculo para las personas que quieran informarse mejor sobre la configuración y los términos de privacidad de la aplicación. La dirección URL de privacidad estará visible para los usuarios del Portal de empresa.",
+ "publisher": "Nombre del desarrollador o de la empresa que distribuye la aplicación. Los usuarios pueden ver esta información en el Portal de empresa.",
+ "selectApp": "Busque en la tienda App Store para iOS las aplicaciones que quiera implementar con Intune.",
+ "useManagedBrowser": "Si es necesario, cuando un usuario abra la aplicación web, se abrirá en un explorador protegido por Intune, como Microsoft Edge o Intune Managed Browser. Esta configuración se aplica a los dispositivos iOS y Android.",
+ "useManagedBrowserLink": "https://docs.microsoft.com/en-us/intune/apps/app-configuration-managed-browser",
+ "win32AppPackageFile": "Archivo que contiene la aplicación en un formato que puede transferirse localmente en un dispositivo. Tipo de paquete válido: .intunewin."
+ },
+ "descriptionPreview": "Vista previa",
+ "descriptionRequired": "Se requiere la descripción.",
+ "editDescription": "Editar la descripción",
+ "macOSMinOperatingSystemAdditionalInfo": "El sistema operativo mínimo para cargar un archivo .pkg es macOS 10.14. Cargue un archivo .intunemac para seleccionar un sistema operativo mínimo anterior.",
+ "name": "Información de la aplicación",
+ "nameForOfficeSuitApp": "Información del conjunto de aplicaciones"
+ },
+ "Tooltips": {
+ "PolicySettings": {
+ "TouchId1": {
+ "android": "En Android, puede permitir el uso de la identificación de huellas digitales en lugar de un PIN. Se pide a los usuarios que proporcionen sus huellas digitales cuando acceden a esta aplicación con sus cuentas profesionales.",
+ "iOS": "En el caso de los dispositivos iOS/iPadOS, puede permitir la identificación mediante una huella digital, en lugar de con un PIN. Cuando el usuario intente acceder a la aplicación con su cuenta profesional, se le solicitará que proporcione su huella digital.",
+ "mac": "En el caso de los dispositivos Mac, puede permitir la identificación mediante una huella digital, en lugar de con un PIN. Cuando el usuario intente acceder a la aplicación con su cuenta profesional, se le solicitará que proporcione su huella digital."
+ },
+ "appSharingFromLevel1": "Seleccione una de las opciones siguientes para especificar las aplicaciones de las que esta aplicación puede recibir datos:",
+ "appSharingFromLevel2": "{0}: Permitir solo la recepción de datos de otras aplicaciones administradas por directivas en las cuentas o documentos de la organización",
+ "appSharingFromLevel3": "{0}: Permitir la recepción de datos de cualquier aplicación en las cuentas o documentos de la organización",
+ "appSharingFromLevel4": "{0}: No permitir la recepción de datos de ninguna aplicación en las cuentas o documentos de la organización",
+ "appSharingFromLevel5": "{0}: permitir la transferencia de datos desde cualquier aplicación y tratar todos los datos entrantes que no tengan una identidad de usuario como datos de la organización.",
+ "appSharingToLevel1": "Seleccione una de las opciones siguientes para especificar las aplicaciones a las que esta aplicación puede enviar datos:",
+ "appSharingToLevel2": "{0}: Permitir solo el envío de datos de la organización a otras aplicaciones administradas por directivas",
+ "appSharingToLevel3": "{0}: Permitir el envío de datos de la organización a cualquier aplicación",
+ "appSharingToLevel4": "{0}: No permitir el envío de datos de la organización a ninguna aplicación",
+ "appSharingToLevel5": "{0}: permitir solo la transferencia a otras aplicaciones administradas por directivas y la transferencia de archivos a otras aplicaciones administradas por MDM en los dispositivos inscritos.",
+ "appSharingToLevel6": "{0}: permitir solo la transferencia a otras aplicaciones administradas por directivas y filtrar los cuadros de diálogo Abrir en/Compartir del sistema operativo para que solo muestren aplicaciones de este tipo.",
+ "conditionalEncryption1": "Seleccione {0} para deshabilitar el cifrado de aplicaciones para el almacenamiento interno de aplicaciones cuando se detecte el cifrado de dispositivos en un dispositivo inscrito.",
+ "conditionalEncryption2": "Nota: Intune solo puede detectar la inscripción de dispositivos con MDM de Intune. El almacenamiento externo de aplicaciones seguirá siendo cifrado para garantizar que aplicaciones sin administrar puedan acceder a los datos.",
+ "contactSyncMac": "Si esta opción está deshabilitada, las aplicaciones no pueden guardar contactos en la libreta de direcciones nativa.",
+ "contactsSync": "Elija Bloquear para impedir que las aplicaciones administradas por directivas guarden datos en las aplicaciones nativas del dispositivo (como Contactos, Calendario y widgets) o para impedir el uso de complementos dentro de las aplicaciones administradas por directivas. Si elige Permitir, la aplicación administrada por directivas puede guardar datos en las aplicaciones nativas o usar complementos, si esas características se admiten y habilitan en la aplicación administrada por directivas.
Las aplicaciones pueden proporcionar capacidad de configuración adicional con directivas de configuración de aplicaciones. Para obtener más información, consulte la documentación de la aplicación.",
+ "encryptionAndroid1": "En el caso de las aplicaciones asociadas a una directiva de administración de aplicaciones móviles de Intune, el cifrado lo proporciona Microsoft. Los datos se cifran de forma sincrónica durante las operaciones de E/S de archivos, de acuerdo con la configuración de la directiva de administración de aplicaciones móviles. Las aplicaciones administradas en Android usan el cifrado AES-128 en modo CBC mediante las bibliotecas de criptografía de plataformas. El método de cifrado no es compatible con FIPS 140-2. El cifrado SHA-256 se admite como instrucción explícita mediante el parámetro SigAlg y solo funcionará en dispositivos con la versión 4.2 y posteriores. El contenido del almacenamiento del dispositivo siempre estará cifrado.",
+ "encryptionAndroid2": "Si solicita el cifrado en la directiva de aplicación, se le solicitará al usuario final que configure y use un PIN para acceder al dispositivo. Si no hay un PIN configurado para acceder al dispositivo, las aplicaciones no se iniciarán y, en su lugar, el usuario final verá el mensaje siguiente: \"La compañía ha requerido que primero debe habilitar un PIN de dispositivo para tener acceso a esta aplicación\".",
+ "encryptionMac1": "En el caso de las aplicaciones asociadas a una directiva de administración de aplicaciones móviles de Intune, el cifrado lo proporciona Microsoft. Los datos se cifran de forma sincrónica durante las operaciones de E/S de archivos de acuerdo con la configuración de la directiva de administración de aplicaciones móviles. Las aplicaciones administradas en Mac usan el cifrado AES-128 en modo CBC mediante las bibliotecas de criptografía de plataformas. El método de cifrado no es compatible con FIPS 140-2. El cifrado SHA-256 se admite como instrucción explícita mediante el parámetro SigAlg y solo funcionará en dispositivos con la versión 4.2 y posteriores. El contenido del almacenamiento del dispositivo siempre estará cifrado.",
+ "faceId1": "Cuando proceda, puede permitir el uso de la identificación de caras en lugar de un PIN. Se pide a los usuarios que proporcionen identificación de caras al acceder a esta aplicación con sus cuentas profesionales.",
+ "faceId2": "Seleccione Sí para permitir la identificación de caras en lugar de usar un PIN para el acceso a la aplicación.",
+ "managementLevelsAndroid1": "Use esta opción para especificar si la directiva se aplica a los dispositivos del administrador de dispositivos Android, a los dispositivos Android Enterprise o a los dispositivos no administrados.",
+ "managementLevelsAndroid2": "{0}: los dispositivos no administrados son aquellos en los que no se ha detectado la administración MDM de Intune. Esto incluye a los proveedores de MDM de terceros.",
+ "managementLevelsAndroid3": "{0}: dispositivos administrados por Intune que usan la API de administración de dispositivos Android.",
+ "managementLevelsAndroid4": "{0}: dispositivos administrados por Intune que usan perfiles de trabajo de Android Enterprise o la administración de dispositivos completa de Android Enterprise.",
+ "managementLevelsIos1": "Use esta opción para especificar si la directiva se aplica a los dispositivos administrados por MDM o a dispositivos no administrados.",
+ "managementLevelsIos2": "{0}: los dispositivos no administrados son aquellos en los que no se ha detectado la administración MDM de Intune. Esto incluye a los proveedores de MDM de terceros.",
+ "managementLevelsIos3": "{0}: MDM de Intune administra los dispositivos administrados.",
+ "minAppVersion": "Defina el número de versión mínimo de la aplicación que debe tener un usuario para obtener acceso seguro a ella.",
+ "minAppVersionWarning": "Defina el número de versión mínimo recomendado de la aplicación que debe tener un usuario para el acceso seguro a ella.",
+ "minOsVersion": "Defina el número de versión mínimo necesario del sistema operativo que debe tener un usuario para obtener acceso seguro a la aplicación.",
+ "minOsVersionWarning": "Defina el número de versión mínimo recomendado del sistema operativo que debe tener un usuario para obtener acceso seguro a la aplicación.",
+ "minPatchVersion": "Defina el nivel de revisión de seguridad Android más antiguo requerido que el usuario puede tener para conseguir acceso seguro a la aplicación.",
+ "minPatchVersionWarning": "Defina el nivel de revisión de seguridad Android recomendado más antiguo que el usuario puede tener para obtener acceso seguro a la aplicación.",
+ "minSdkVersion": "Defina la versión mínima necesaria del SDK de la directiva de protección de aplicaciones de Intune que debe tener un usuario para obtener acceso seguro a la aplicación.",
+ "requireAppPinDefault": "Seleccione Sí para deshabilitar el PIN de la aplicación cuando se detecte un bloqueo de dispositivo en un dispositivo inscrito.
",
+ "targetAllApps1": "Use esta opción para destinar la directiva a aplicaciones en dispositivos con cualquier estado de administración.",
+ "targetAllApps2": "Esta configuración se reemplaza durante la resolución de conflictos de directivas si un usuario tiene una directiva destinada a un estado de administración específico.",
+ "touchId2": "Seleccione {0} para requerir una huella digital para la identificación y el acceso a la aplicación, en lugar de un PIN."
+ },
+ "Tap": {
+ "pinResetAfterNumberOfDays": "Especifique el número de días que deben transcurrir antes de que el usuario deba restablecer el PIN.",
+ "previousPinBlockCount": "Esta configuración especifica el número de PIN anteriores que Intune va a conservar. Todo PIN nuevo debe ser distinto de los que Intune conserva."
+ },
+ "WipPolicySettings": {
+ "25": "",
+ "allowWindowsSearch": "Esto permite que Windows Search continúe la búsqueda en los datos cifrados.",
+ "authoritativeIpRanges": "Habilite esta configuración si quiere invalidar la detección automática de intervalos IP de Windows.",
+ "authoritativeProxyServers": "Habilite esta configuración si quiere invalidar la detección automática de servidores proxy de Windows.",
+ "checkInput": "Comprobar la validez de las entradas",
+ "dataRecoveryCert": "Un certificado de recuperación es un certificado del Sistema de cifrado de archivos (EFS) que se puede usar para recuperar archivos cifrados si la clave de cifrado se pierde o se daña. Debe crear el certificado de recuperación y especificarlo aquí. Encontrará más información aquí",
+ "enterpriseCloudResources": "Especifique recursos de nube para tratarlos como corporativos y protegerlos con la directiva Windows Information Protection. Se pueden especificar varios recursos separados con el carácter \"|\".
Si tiene un proxy configurado en la empresa, puede especificar el proxy a través del cual se dirigirá el tráfico hacia los recursos de nube especificados.
URL[,Proxy]|URL[,Proxy]
Sin proxy: contoso.sharepoint.com|contoso.visualstudio.com
Con proxy: contoso.sharepoint.com,proxy.contoso.com|contoso.visualstudio.com,proxy.contoso.com
",
+ "enterpriseIPv4Ranges": "Especifique los intervalos IPv4 que conforman su red corporativa. Estos intervalos se usan junto con los nombres de dominio de la red empresarial para definir los límites de su red corporativa.
Esta configuración es necesaria para tener Windows Information Protection habilitado.
Se pueden especificar varios intervalos separados por comas.
Por ejemplo: 3.4.0.1-3.4.255.255,192.168.1.1-192.168.255.255
",
+ "enterpriseIPv6Ranges": "Especifique los intervalos IPv6 que conforman su red corporativa. Estos intervalos se usan junto con los nombres de dominio de la red empresarial que especifique para definir los límites de su red corporativa.
Se pueden especificar varios intervalos separados por comas.
Por ejemplo: 2001:4898:dc05::-2001:4898:dc05:ffff:ffff:ffff:ffff:ffff,2a01:110::-2a01:110:7fff:ffff:ffff:ffff:ffff:ffff
",
+ "enterpriseInternalProxyServers": "Si tiene un proxy configurado en su compañía, puede especificar el proxy a través del cual debe dirigirse el tráfico hacia los recursos de nube especificados en la configuración de Recursos de Enterprise Cloud.
Se pueden especificar varios valores separados con punto y coma.
Por ejemplo: contoso.internalproxy1.com;contoso.internalproxy2.com
",
+ "enterpriseNetworkDomainNames": "Especifique los nombres DNS que conforman su red corporativa. Estos nombres se usan junto con los intervalos IP que especifique para definir los límites de su red corporativa. Se pueden especificar varios valores separados por comas.
Esta configuración es necesaria para tener Windows Information Protection habilitado.
Por ejemplo: corp.contoso.com,region.contoso.com
",
+ "enterpriseProtectedDomainNames": "Especifique los nombres DNS que conforman su red corporativa. Estos nombres se usan con los intervalos de IP que especifique para definir los límites de su red corporativa. Se pueden especificar varios valores separados por \"|\".
Esta configuración es necesaria para habilitar Windows Information Protection.
Por ejemplo: corp.contoso.com|region.contoso.com
",
+ "enterpriseProxyServers": "Si tiene servidores proxy externos en la red corporativa, especifíquelos aquí. Cuando especifique una dirección de servidor proxy, debe especificar también el puerto a través del cual debe permitirse y protegerse el tráfico con Windows Information Protection.
Nota: Esta lista no debe incluir servidores de la lista de servidores proxy internos de la empresa. Se pueden especificar varios valores separados con punto y coma.
Por ejemplo: proxy.contoso.com:80;proxy2.contoso.com:80
",
+ "maxInactivityTime1": "Especifica el tiempo máximo permitido (en minutos) que debe transcurrir con el dispositivo inactivo para que este se bloquee mediante PIN o contraseña. Los usuarios pueden seleccionar cualquier valor existente inferior al tiempo máximo especificado en la aplicación Configuración. Tenga en cuenta que Lumia 950 y 950XL tienen un valor de tiempo de espera máximo de cinco minutos, independientemente del valor establecido por esta directiva.",
+ "maxInactivityTime2": "0 (valor predeterminado): no se define el tiempo de espera. El valor predeterminado \"0\" se interpreta como \"Tiempo de espera no definido\".",
+ "maxPasswordAttempts1": "Esta directiva tiene comportamientos diferentes para los dispositivos móviles y de escritorio.",
+ "maxPasswordAttempts2": "En el dispositivo móvil, cuando el usuario alcanza el valor establecido por la directiva, se borran los datos.",
+ "maxPasswordAttempts3": "Cuando el usuario alcanza el valor establecido por esta directiva en un dispositivo de escritorio, este no se borra. En su lugar, se aplica el modo de recuperación de BitLocker, con el que los datos son inaccesibles pero recuperables. Si BitLocker no está habilitado, la directiva no puede aplicarse.",
+ "maxPasswordAttempts4": "Antes de alcanzar el límite de intentos erróneos, se envía al usuario a la pantalla de bloqueo y se le avisa de que, en caso de más intentos incorrectos, el equipo se bloqueará. Cuando el usuario alcanza el límite, el dispositivo se reinicia automáticamente y muestra la página de recuperación de BitLocker, donde se pide al usuario la clave de recuperación de BitLocker.",
+ "maxPasswordAttempts5": "0 (valor predeterminado): el dispositivo no se borra nunca después de especificarse un PIN o una contraseña incorrectos.",
+ "maxPasswordAttempts6": "El valor más seguro es 0 si todos los valores de la directiva = 0. En caso contrario, el valor más seguro es el valor mínimo de la directiva.",
+ "mdmDiscoveryUrl": "Especifique la dirección URL del punto de conexión de inscripción de MDM para los usuarios que se inscriban en MDM. De forma predeterminada, se especifica para Intune.",
+ "minimumPinLength1": "Valor entero que establece el número mínimo de caracteres requeridos para el PIN. El valor predeterminado es 4. El número más bajo que se puede establecer para esta configuración de directiva es 4. El número más alto que se puede establecer debe ser menor que el número establecido en la configuración de directiva Longitud máxima del PIN o 127, el que sea más bajo.",
+ "minimumPinLength2": "Si define esta configuración de directiva, la longitud del PIN debe ser mayor que o igual a este número. Si la deshabilita o no la configura, entonces la longitud debe ser mayor que o igual a 4.",
+ "name": "Nombre del límite de esta red",
+ "neutralResources": "Si tiene puntos de conexión de redireccionamiento de autenticación en la compañía, especifíquelos aquí. Las ubicaciones que especifique aquí se consideran personales o corporativas en función del contexto de la conexión antes del redireccionamiento.
Se pueden especificar varios valores separados por comas.
Por ejemplo: sts.contoso.com,sts.contoso2.com
",
+ "passportForWork1": "Valor que establece Windows Hello para empresas como método para iniciar sesión en Windows.",
+ "passportForWork2": "El valor predeterminado es true. Si la directiva se establece en false, el usuario no puede aprovisionar Windows Hello para empresas, excepto en los teléfonos móviles unidos a Azure Active Directory donde se requiere el aprovisionamiento.",
+ "pinExpiration": "El número máximo que se puede establecer para esta configuración de directiva es 730 y el número mínimo es 0. Si la directiva se establece en 0, el PIN del usuario no expirará nunca.",
+ "pinHistory1": "El número máximo que se puede establecer para esta configuración de directiva es 50 y el número mínimo es 0. Si la directiva se establece en 0, no se requiere el almacenamiento de los PIN anteriores.",
+ "pinHistory2": "El PIN actual del usuario se incluye en el conjunto de los PIN asociados a su cuenta. En caso de restablecimiento de los PIN, el historial correspondiente no se conserva.",
+ "protectUnderLock": "Protege el contenido de la aplicación mientras el dispositivo está en estado bloqueado.",
+ "protectionModeBlock": "Bloquear: impide que los datos de empresa salgan de las aplicaciones protegidas.
",
+ "protectionModeOff": "Desactivado: el usuario puede reubicar datos fuera de las aplicaciones protegidas. No se registra ninguna acción.
",
+ "protectionModeOverride": "Permitir invalidaciones: se pide confirmación al usuario cuando intenta reubicar datos de una aplicación protegida en otra no protegida. Si decide invalidar este mensaje, la acción se registra.
",
+ "protectionModeSilent": "Silencio: el usuario puede reubicar datos fuera de las aplicaciones protegidas. Estas acciones se registran.
",
+ "required": "Requerido",
+ "revokeOnMdmHandoff": "Agregada en Windows 10, versión 1703. Esta directiva controla si se revocarán las claves WIP cuando un dispositivo se actualice de MAM a MDM. Si está establecida en \"Desactivada\", las claves no se revocarán y el usuario seguirá teniendo acceso a los archivos protegidos después de la actualización. Esta es la opción recomendada si el servicio MDM está configurado con el mismo elemento EnterpriseID de WIP que el servicio MAM.",
+ "revokeOnUnenroll": "Esto hará que las claves de cifrado se revoquen al anularse la inscripción de un dispositivo en esta directiva.",
+ "rmsTemplateForEdp": "GUID de TemplateID que se va a usar para el cifrado RMS. La plantilla de Azure RMS permite al administrador de TI configurar quién tiene acceso al archivo protegido por RMS y durante cuánto tiempo.",
+ "showWipIcon": "Esto permitirá que el usuario sepa cuando se actúa en un contexto corporativo, mediante la superposición de un icono.",
+ "useRmsForWip": "Especifica si se permite el cifrado de Azure RMS para WIP."
+ },
+ "requireAppPin": "Seleccione la opción Sí para deshabilitar el PIN de aplicación cuando se detecte un bloqueo de dispositivo en un dispositivo inscrito.
Nota: Intune no puede detectar la inscripción de dispositivos con una solución EMM de terceros en iOS/iPadOS.
"
+ },
+ "Autopilot": {
+ "AssignResourceAccount": {
+ "createNewCommandMenu": "Crear nuevo",
+ "createNewResourceAccountInfo": "\r\nCree una cuenta de recurso durante la inscripción. La cuenta del recurso se agregará a la tabla de cuentas de recursos inmediatamente, pero no estará activa hasta que el dispositivo se inscriba y se compruebe la suscripción de Surface Hub. Más información sobre las cuentas de recursos
\r\n ",
+ "createNewResourceTitle": "Crear cuenta de recurso",
+ "deviceNameInvalid": "El formato del nombre de dispositivo no es válido.",
+ "deviceNameRequired": "Se requiere el nombre de un dispositivo.",
+ "editResourceAccountLabel": "Editar",
+ "selectExistingCommandMenu": "Seleccionar existente"
+ },
+ "Device": {
+ "ComputerName": {
+ "validFormat": "Los nombres deben tener un máximo de 15 caracteres y pueden contener letras (a-z, A-Z), números (0-9) y guiones. No deben contener solo números y no pueden incluir un espacio en blanco."
+ },
+ "Header": {
+ "addressableUserName": "Nombre descriptivo",
+ "azureADDevice": "Dispositivo de Azure AD asociado",
+ "batch": "Etiqueta de grupo",
+ "dateAssigned": "Fecha de asignación",
+ "deviceAccountFriendlyName": "Nombre descriptivo de la cuenta",
+ "deviceAccountPwd": "Contraseña de la cuenta de dispositivo",
+ "deviceAccountUpn": "Cuenta del dispositivo",
+ "deviceDisplayName": "Nombre de dispositivo",
+ "deviceName": "Nombre de dispositivo",
+ "deviceUseType": "Tipo de uso del dispositivo",
+ "enrollmentState": "Estado de inscripción",
+ "intuneDevice": "Dispositivo de Intune asociado",
+ "lastContacted": "Último contacto",
+ "make": "Fabricante",
+ "model": "Modelo",
+ "profile": "Perfil asignado",
+ "profileStatus": "Estado del perfil",
+ "purchaseOrderId": "Pedido de compra",
+ "resourceAccount": "Cuenta de recurso",
+ "serialNumber": "Número de serie",
+ "userPrincipalName": "Usuario"
+ },
+ "SurfaceHub": {
+ "friendlyNameRequired": "Se necesita un nombre descriptivo",
+ "pwdRequired": "Se requiere una contraseña",
+ "upnRequired": "Se requiere una cuenta de dispositivo",
+ "upnValidFormat": "Los valores pueden contener letras (a-z, A-Z), números (0-9) y guiones. Los valores no pueden incluir un espacio en blanco."
+ }
+ },
+ "DeviceUseType": {
+ "meetingAndPresentation": "Reunión y presentación",
+ "teamCollaboration": "Colaboración en grupo"
+ },
+ "Devices": {
+ "featureDescription": "Windows Autopilot le permite personalizar la experiencia de configuración rápida (OOBE) para sus usuarios.",
+ "importErrorStatus": "Algunos dispositivos no se importaron. Haga clic aquí para obtener más información.",
+ "importPendingStatus": "Importación en curso. Tiempo transcurrido: {0} min. Este proceso puede tardar hasta {1} min."
+ },
+ "DirectoryService": {
+ "activeDirectoryAD": "Unidos a Azure AD híbrido",
+ "activeDirectoryADLabel": "Azure AD híbrido con Autopilot",
+ "azureAD": "Unidos a Azure AD",
+ "unknownType": "Tipo desconocido"
+ },
+ "Filter": {
+ "enrollmentState": "Estado",
+ "profile": "Estado del perfil"
+ },
+ "OOBE": {
+ "AddressableUserName": {
+ "validateEmpty": "El nombre descriptivo de usuario no puede estar vacío."
+ },
+ "ApplyComputerNameTemplate": {
+ "infoBalloon": "Cree una plantilla de asignación de nombres para agregar nombres a los dispositivos durante la inscripción.",
+ "label": "Aplicar plantilla de nombre de dispositivo"
+ },
+ "ApplyComputerNameTemplateDisabled": {
+ "label": "Para los tipos unidos a Azure AD híbrido de perfiles de Autopilot Deployment, los dispositivos reciben un nombre de acuerdo con los valores especificados en la configuración de Unión a un dominio."
+ },
+ "ComputerNameTemplate": {
+ "emptyValue": "MiEmpresa-%RAND:4%",
+ "label": "Escriba un nombre",
+ "noDisallowedChars": "El nombre solo puede contener caracteres alfanuméricos, guiones, %SERIAL% o %RAND:x%",
+ "serialLength": "No se pueden usar más de siete caracteres con %SERIAL%",
+ "validateLessThan15Chars": "El nombre debe tener un máximo de 15 caracteres.",
+ "validateNoSpaces": "Los nombres de equipo no pueden contener espacios",
+ "validateNotAllNumbers": "El nombre también debe contener letras o guiones",
+ "validateNotEmpty": "El nombre no puede estar vacío",
+ "validateOnlyOneMacro": "El nombre solo debe contener una de estas macros: %SERIAL% o %RAND:x%"
+ },
+ "ConfigureComputerNameTemplate": {
+ "description": "Cree un nombre único para los dispositivos. Los nombres deben tener un máximo de 15 caracteres y pueden contener letras (a-z, A-Z), números (0-9) y guiones. No deben contener solo números. Los nombres no pueden incluir un espacio en blanco. Use la macro %SERIAL% para agregar un número de serie específico del hardware. Como alternativa, use la macro %RAND:x% para agregar una cadena aleatoria de números, donde x es igual al número de dígitos que se van a agregar."
+ },
+ "EnableWhiteGlove": {
+ "infoBalloon": "Habilite la opción para presionar la tecla Windows 5 veces y ejecutar OOBE sin autenticación de usuario a fin de inscribir el dispositivo y aprovisionar todas las configuraciones y aplicaciones del contexto del sistema. Las relativas al contexto del usuario se proporcionarán cuando este inicie sesión.",
+ "label": "Permitir implementación aprovisionada previamente"
+ },
+ "HybridAzureADSkipConnectivityCheck": {
+ "infoBalloon": "El flujo Unión a Azure AD híbrido de Autopilot continuará aunque no se establezca conectividad con el controlador de dominio durante la configuración rápida.",
+ "label": "Omitir comprobación de conectividad de AD (vista previa)"
+ },
+ "accountType": "Tipo de cuenta de usuario",
+ "accountTypeInfo": "Especifique si los usuarios son administradores o usuarios estándar en el dispositivo. Tenga en cuenta que esta configuración no se aplica a las cuentas de Administrador global o Administrador de empresa. Estas cuentas no pueden ser usuarios estándar porque tienen acceso a todas las características administrativas en Azure AD.",
+ "configOOBEInfo": "\r\nEstablezca la configuración rápida para los dispositivos Autopilot\r\n
",
+ "configureDevice": "Modo de implementación",
+ "configureDeviceHintForSurfaceHub2": "Autopilot solo admite el modo de implementación automática para Surface Hub 2. Este modo no asocia el usuario al dispositivo inscrito, por lo que no requiere credenciales de usuario.",
+ "configureDeviceHintForWindowsPC": "\r\n El modo de implementación controla si un usuario debe proporcionar credenciales para aprovisionar el dispositivo.\r\n
\r\n \r\n - \r\n Controlado por el usuario: los dispositivos se asocian al usuario que los inscribe y se requieren sus credenciales para el aprovisionamiento.\r\n
\r\n - \r\n Implementación automática (versión preliminar): los dispositivos no se asocian al usuario que los inscribe y no se requieren sus credenciales para el aprovisionamiento.\r\n
\r\n
",
+ "createSurfaceHub2Info": "Establezca la configuración de inscripción de Autopilot para los dispositivos Surface Hub 2. De forma predeterminada, Autopilot habilita la omisión de la autenticación del usuario durante la configuración rápida. Obtenga más información acerca de Windows Autopilot para Surface Hub 2.",
+ "createWindowsPCInfo": "\r\n\r\nLas opciones siguientes se habilitan automáticamente para los dispositivos Autopilot en modo autoimplementable:\r\n
\r\n\r\n - \r\n Omisión de la selección de uso para trabajo o casa\r\n
\r\n - \r\n Omisión de la configuración de OneDrive y el registro de OEM\r\n
\r\n - \r\n Omisión de la autenticación de usuario en OOBE\r\n
\r\n
",
+ "endUserDevice": "Controlado por el usuario",
+ "hideEscapeLink": "Ocultar opciones para cambiar la cuenta",
+ "hideEscapeLinkInfo": "Las opciones para cambiar de cuenta y empezar de nuevo con una cuenta diferente aparecen, respectivamente, durante la configuración inicial del dispositivo en la página de inicio de sesión de la empresa y en la página de error de dominio. Para ocultar estas opciones, debe configurar la marca de la empresa en Azure Active Directory (requiere Windows 10, 1809 o posterior, o Windows 11).",
+ "info": "Al configurar perfiles de AutoPilot, se define la configuración rápida que los usuarios ven al iniciar Windows por primera vez. ",
+ "language": "Idioma (región)",
+ "languageInfo": "Especifique el idioma y la región que se van a usar.",
+ "licenseAgreement": "Términos de licencia del software de Microsoft",
+ "licenseAgreementInfo": "Especifique si se va a mostrar el CLUF a los usuarios.",
+ "plugAndForgetDevice": "Implementación automática (versión preliminar)",
+ "plugAndForgetGA": "Auto implementación",
+ "privacySettingWarning": "El valor predeterminado para la recopilación de datos de diagnóstico ha cambiado para los dispositivos que ejecutan Windows 10, versión 1903 y posteriores, o Windows 11.",
+ "privacySettings": "Configuración de privacidad",
+ "privacySettingsInfo": "Especifique si se va a mostrar la configuración de privacidad a los usuarios.",
+ "showCortanaConfigurationPage": "Configuración de Cortana",
+ "showCortanaConfigurationPageInfo": "Al mostrarla, se habilita la presentación de la configuración de Cortana durante el inicio.",
+ "skipEULAWarning": "Información importante sobre cómo ocultar los términos de licencia",
+ "skipKeyboardSelection": "Configurar el teclado automáticamente",
+ "skipKeyboardSelectionInfo": "Si es true, la página de selección de teclado se omite en caso de haberse establecido el idioma.",
+ "subtitle": "Perfiles de AutoPilot",
+ "title": "Configuración rápida (OOBE)",
+ "useOSDefaultLanguage": "Predeterminado del sistema operativo",
+ "userSelect": "Selección de usuario"
+ },
+ "Sync": {
+ "lastRequestedLabel": "Última solicitud de sincronización",
+ "lastSuccessfulLabel": "Última sincronización correcta",
+ "syncInProgress": "La sincronización está en curso. Vuelva a comprobarlo en breve.",
+ "syncInitiated": "Sincronización de la configuración de AutoPilot iniciada.",
+ "syncSettingsTitle": "Sincronizar configuración de AutoPilot"
+ },
+ "Title": {
+ "devices": "Dispositivos Windows AutoPilot"
+ },
+ "Tooltips": {
+ "addressableUserName": "Nombre de saludo que se muestra durante la instalación del dispositivo.",
+ "azureADDevice": "Ir a los detalles del dispositivo asociado. N/D significa que no hay ningún dispositivo asociado.",
+ "batch": "Atributo de cadena que se puede usar para identificar un grupo de dispositivos. El campo Etiqueta de grupo de Intune se asigna al atributo OrderID en los dispositivos de Azure AD.",
+ "dateAssigned": "Marca de tiempo que indica cuándo se asignó el perfil al dispositivo.",
+ "deviceAccountFriendlyName": "Nombre descriptivo de la cuenta de dispositivo para dispositivos Surface Hub",
+ "deviceAccountPwd": "Contraseña de cuenta de dispositivo para dispositivos Surface Hub",
+ "deviceAccountUpn": "Correo electrónico de cuenta de dispositivo para dispositivos Surface Hub",
+ "deviceDisplayName": "Configure un nombre único para un dispositivo. Este nombre se omitirá en las implementaciones unidas a Azure AD híbrido. El origen del nombre de dispositivo sigue siendo el perfil de unión a un dominio para los dispositivos de Azure AD híbrido.",
+ "deviceName": "Nombre que aparece cuando alguien ha intentado detectar el dispositivo y conectarse a él.",
+ "deviceUseType": " La configuración del dispositivo se basa en las opciones seleccionadas. Siempre puede cambiar más adelante en las opciones de configuración.\r\n \r\n - Para las reuniones y presentaciones, Windows Hello no se activa y los datos se eliminan después de cada sesión.\r\n
\r\n - Para la colaboración en grupo, Windows Hello se activa y los perfiles se guardan para un inicio de sesión rápido
\r\n
",
+ "enrollmentState": "Especifica si el dispositivo se ha inscrito.",
+ "intuneDevice": "Ir a los detalles del dispositivo asociado. N/D significa que no hay ningún dispositivo asociado.",
+ "lastContacted": "Marca de tiempo que indica cuándo se contactó con el dispositivo por última vez.",
+ "make": "Fabricante del dispositivo seleccionado.",
+ "model": "Modelo del dispositivo seleccionado.",
+ "profile": "Nombre del perfil asignado al dispositivo.",
+ "profileStatus": "Especifica si un perfil está asignado al dispositivo.",
+ "purchaseOrderId": "Identificador de pedido de compra",
+ "resourceAccount": "La identidad del dispositivo o el nombre principal de usuario (UPN).",
+ "serialNumber": "Número de serie del dispositivo seleccionado.",
+ "userPrincipalName": "Usuario para el relleno previo de la autenticación durante la instalación del dispositivo."
+ },
+ "allDevices": "Todos los dispositivos",
+ "allDevicesAlreadyAssignedError": "Ya hay un perfil de Autopilot asignado a Todos los dispositivos.",
+ "assignFailedDescription": "No se pudieron actualizar las asignaciones de {0}.",
+ "assignFailedTitle": "No se pudieron actualizar las asignaciones de perfil de AutoPilot.",
+ "assignSuccessDescription": "Las asignaciones de {0} se actualizaron correctamente.",
+ "assignSuccessTitle": "Las asignaciones de perfil de AutoPilot se actualizaron correctamente.",
+ "assignSufaceHub2ProfileNextStep": "Pasos siguientes para esta implementación",
+ "assignSurfaceHub2ProfileToDeviceGroup": "1. Asignar este perfil a al menos un grupo de dispositivos",
+ "assignSurfaceHub2ProfileToResourceAccount": "2. Asignar una cuenta de recursos a cada dispositivo Surface Hub en el que implemente este perfil",
+ "assignedDevicesCount": "Dispositivos asignados",
+ "assignedDevicesResourceAccountDescription": "Para implementar este perfil en un dispositivo, debe asignar una cuenta de recurso al dispositivo. Seleccione un dispositivo cada vez para asignarle una cuenta de recurso existente o crear una. Más información sobre las cuentas de recursos
",
+ "assignedDevicesResourceAccountStatusBarMessage": "En esta tabla solo se enumeran los dispositivos de Surface Hub 2 a los que se les ha asignado este perfil.",
+ "assigningDescription": "Actualizando las asignaciones de {0}.",
+ "assigningTitle": "Actualización de las asignaciones de perfil de AutoPilot",
+ "autoremediationContext": "We've detected a hardware change on this device. We're trying to automatically register the new hardware. You don't need to do anything now; the status will be updated at the next check in with the result. Learn more about resetting the profile.",
+ "autoremediationTitle": "Device {0} has a fix pending",
+ "cannotDeleteMessage": "Este perfil está asignado a grupos. Para poder eliminarlo, antes debe desasignarlo de todos los grupos.",
+ "cannotDeleteTitle": "No se puede eliminar {0}",
+ "createdDateTime": "Creada",
+ "deleteMessage": "Si elimina el perfil de AutoPilot, los dispositivos asignados a este se mostrarán Sin asignar.",
+ "deleteMessageWithPolicySet": "{0} se incluye en uno o más conjuntos de directivas. Si elimina {0}, ya no podrá asignarlo mediante dichos conjuntos.",
+ "deleteTitle": "¿Seguro que desea eliminar este perfil?",
+ "description": "Descripción",
+ "deviceType": "Tipo de dispositivo",
+ "deviceUse": "Uso del dispositivo",
+ "directoryServiceHintForSurfaceHub2": " \r\n AutoPilot solo admite dispositivos unidos a Azure AD para Surface Hub 2. Especifique cómo se unen los dispositivos a Active Directory (AD) en su organización.\r\n
\r\n \r\n - \r\n Unidos a Azure AD: solo en la nube, sin una instancia local de Windows Server Active Directory.\r\n
\r\n
\r\n ",
+ "directoryServiceHintForWindowsPC": "\r\n \r\n Especifique cómo se unen los dispositivos a Active Directory (AD) en su organización:\r\n
\r\n \r\n - \r\n Unido a Azure AD: solo en la nube, sin una instancia local de Windows Server Active Directory\r\n
\r\n
\r\n ",
+ "getAssignedDevicesCountError": "Error al capturar el recuento de dispositivos asignados.",
+ "getAssignmentsError": "Error al capturar las asignaciones de perfiles de AutoPilot.",
+ "harvestDeviceId": "Convertir todos los dispositivos de destino a Autopilot",
+ "harvestDeviceIdDescription": "De forma predeterminada, este perfil solo puede aplicarse a los dispositivos Autopilot sincronizados desde el servicio Autopilot.",
+ "harvestDeviceIdInfo": "\r\n Seleccione Sí para registrar todos los dispositivos de destino en Autopilot, si aún no lo están. La próxima vez que los dispositivos registrados sigan el proceso de configuración rápida (OOBE) de Windows, se les aplicará el escenario de Autopilot asignado.\r\n
\r\n Tenga en cuenta que algunos escenarios de Autopilot requieren una versión de compilación mínima específica de Windows. Asegúrese de que el dispositivo tiene la versión de compilación mínima necesaria para aplicar el escenario.\r\n
\r\n Al eliminar este perfil, no se eliminarán los dispositivos afectados de Autopilot. Para eliminar un dispositivo de Autopilot, use la vista Dispositivos Windows Autopilot.\r\n ",
+ "harvestDeviceIdWarning": "Una vez convertidos, los dispositivos Autopilot solo pueden revertirse si se eliminan de la lista de dispositivos Autopilot.",
+ "holoLensCommandMenu": "HoloLens",
+ "info": "Los perfiles de implementación de Windows AutoPilot permiten personalizar la configuración rápida para sus dispositivos.",
+ "invalidProfileNameMessage": "No se permite el carácter \"{0}\".",
+ "joinTypeLabel": "Unirse a Azure AD como",
+ "lastModifiedDateTime": "Última modificación:",
+ "manualRemediationContext": "We've detected a hardware change on this device. It won't automatically receive an Autopilot profile when it's reset unless you register the device again. Learn more about resetting the profile.",
+ "manualRemediationTitle": "Device {0} needs your attention",
+ "name": "Nombre",
+ "noAutopilotProfile": "No hay perfiles de AutoPilot.",
+ "notEnoughPermissionAssignedError": "No tiene suficientes permisos para asignar este perfil a uno o varios de los grupos seleccionados. Póngase en contacto con el administrador.",
+ "profile": "perfil",
+ "resourceAccountStatusBarMessage": "Se requiere una cuenta de recurso para cada dispositivo Surface Hub 2 en el que se implemente este perfil. Haga clic para obtener más información.",
+ "selectServices": "Seleccionar el servicio de directorio al que se unirán los dispositivos",
+ "surfaceHub2CommandMenu": "Surface Hub 2",
+ "surfaceHub2SCommandMenu": "Surface Hub 2S",
+ "userAffinityLabel": "Modo de implementación",
+ "windowsPCCommandMenu": "PC Windows",
+ "directoryServiceLabel": "Unirse a Azure AD como"
},
- "CategoryDescription": {
- "androidGeneralApplicationRestrictions": "Use estos valores para mantenerse informado acerca de qué usuarios instalan aplicaciones que no están aprobadas para su uso en la empresa. Seleccione el tipo de lista de aplicaciones restringidas:
\r\n Aplicaciones prohibidas: es una lista de las aplicaciones sobre las que desea que se le informe cuando los usuarios las instalan.
\r\n Aplicaciones aprobadas: es una lista de las aplicaciones que están aprobadas para su uso en la empresa. Cuando los usuarios instalan una aplicación que no está en esta lista, se le notifica.
\r\n ",
- "androidZebraMxZebraMx": "Cargue un perfil de MX en formato XML para configurar los dispositivos Zebra.",
- "iosDeviceFeaturesAirprint": "Use estos valores para configurar los dispositivos iOS a fin de conectarse automáticamente a las impresoras compatibles con AirPrint de la red. Necesita la dirección IP y la ruta de acceso de recurso de las impresoras.",
- "iosDeviceFeaturesExtensibleSingleSignOn": "Configure una extensión de la aplicación que habilite el inicio de sesión único (SSO) para los dispositivos que ejecutan iOS 13.0 o versiones posteriores.",
- "iosDeviceFeaturesHomeScreenLayout": "Configure la distribución de las pantallas de inicio y del Dock en los dispositivos iOS. Algunos dispositivos pueden tener límites en cuanto al número de elementos que se pueden mostrar.",
- "iosDeviceFeaturesIOSWallpaper": "Muestra una imagen que aparecerá en la pantalla de inicio o la pantalla de bloqueo de los dispositivos iOS.\r\n Para mostrar una imagen única en cada ubicación, cree un perfil con la imagen de la pantalla de bloqueo y otro con la de la pantalla de inicio.\r\n A continuación, asigne ambos perfiles a sus usuarios.\r\n
\r\n \r\n - Tamaño máximo de archivo: 750 KB
\r\n - Tipo de archivo: PNG, JPG o JPEG
\r\n
\r\n ",
- "iosDeviceFeaturesNotifications": "Especificar la configuración de notificación de las aplicaciones. Compatible con iOS 9.3 y versiones posteriores.",
- "iosDeviceFeaturesSharedDevice": "Especifica el texto opcional que se muestra en la pantalla bloqueada. Se admite en iOS 9.3 y versiones posteriores. Más información",
- "iosGeneralApplicationRestrictions": "Use estos valores para mantenerse informado acerca de qué usuarios instalan aplicaciones que no están aprobadas para su uso en la empresa. Seleccione el tipo de lista de aplicaciones restringidas:
\r\n Aplicaciones prohibidas: es una lista de las aplicaciones sobre las que desea que se le informe cuando los usuarios las instalan.
\r\n Aplicaciones aprobadas: es una lista de las aplicaciones que están aprobadas para su uso en la empresa. Cuando los usuarios instalan una aplicación que no está en esta lista, se le notifica.
\r\n ",
- "iosGeneralApplicationVisibility": "Use la lista Aplicaciones visibles para especificar las aplicaciones de iOS que el usuario puede ver o iniciar. Use la lista Aplicaciones ocultas para especificar las aplicaciones de iOS que el usuario no puede ver ni iniciar.",
- "iosGeneralAutonomousSingleAppMode": "Las aplicaciones que se agregan a esta lista y se asignan a un dispositivo pueden bloquearlo de forma que solo ejecute esa aplicación una vez que se ha iniciado, o bien bloquear el dispositivo mientras se ejecuta una acción determinada (por ejemplo, hacer un examen). Una vez completada la acción, o si se quita la restricción, el dispositivo vuelve a su estado normal.",
- "iosGeneralKiosk": "El modo de pantalla completa bloquea varias configuraciones en un dispositivo o especifica la aplicación que puede ejecutarse en este. Puede ser útil, por ejemplo, en una tienda o entornos similares, en los que un dispositivo debe ejecutar una única aplicación de demostración.",
- "macDeviceFeaturesAirprint": "Use estas opciones para configurar los dispositivos macOS de forma que se conecten automáticamente a impresoras compatibles con AirPrint de su red. Necesitará la dirección IP y la ruta de acceso a los recursos de sus impresoras.",
- "macDeviceFeaturesAssociatedDomains": "Configure los dominios asociados para compartir datos y credenciales de inicio de sesión entre las aplicaciones y los sitios web de su organización. Este perfil se puede aplicar a los dispositivos que ejecutan macOS 10.15 o versiones posteriores.",
- "macDeviceFeaturesExtensibleSingleSignOn": "Configure una extensión de la aplicación que habilite el inicio de sesión único (SSO) para los dispositivos que ejecutan macOS 10.15 o versiones posteriores.",
- "macDeviceFeaturesLoginItems": "Elija qué aplicaciones, archivos y carpetas se abren cuando los usuarios inician sesión en los dispositivos. Si no quiere que los usuarios cambien la forma en que se abren las aplicaciones seleccionadas, puede ocultar la aplicación en la configuración del usuario.",
- "macDeviceFeaturesLoginWindow": "Configure la apariencia de la pantalla de inicio de sesión de macOS y las funciones disponibles para los usuarios antes y después de iniciar sesión.",
- "macExtensionsKernelExtensions": "Use estas opciones para configurar la directiva de extensión de kernel en dispositivos Mac OS que ejecutan 10.13.2 o posterior.",
- "macGeneralDomains": "Los correos electrónicos que el usuario envía o recibe y no coinciden con los dominios que especifique aquí se marcarán como de no confianza.",
- "windows10EndpointProtectionApplicationGuard": "Al utilizar Microsoft Edge, la Protección de aplicaciones de Microsoft Defender protege su entorno de sitios que su organización no ha definido todavía como de confianza. Cuando los usuarios visitan sitios que no figuran en el límite de red aislada, los sitios se abren en una sesión de exploración virtual en Hyper-V. Los sitios de confianza se definen mediante un límite de red, que puede establecerse en Configuración del dispositivo. Tenga en cuenta que esta característica solo está disponible para dispositivos que ejecutan Windows 10 de 64 bits o versiones posteriores.",
- "windows10EndpointProtectionCredentialGuard": "Al habilitar Credential Guard, se habilitan los valores obligatorios siguientes:\r\n
\r\n \r\n - Enable virtualization-based security: activa la seguridad basada en la virtualización (VBS) la próxima vez que se reinicie. Este tipo de seguridad usa el hipervisor de Windows para proporcionar compatibilidad con los servicios de seguridad.
\r\n
\r\n - Secure Boot with Direct Memory Access: activa VBS con arranque seguro y acceso directo a memoria (DMA).
\r\n
\r\n ",
- "windows10EndpointProtectionDeviceGuard": "Elija aplicaciones adicionales que deban auditarse o con confianza para ejecutarse mediante el Control de aplicaciones de Microsoft Defender. Se confía automáticamente en la ejecución de los componentes de Windows y de todas las aplicaciones de Microsoft Store.
\r\n Las aplicaciones no se bloquearán al ejecutarse en modo “Solo auditoría”. Este modo registra todos los eventos en los registros de cliente locales.\r\n ",
- "windows10GeneralPrivacyPerApp": "Agregue las aplicaciones que deben tener un comportamiento de privacidad diferente al establecido en “Privacidad predeterminada”.",
- "windows10NetworkBoundaryNetworkBoundary": "El límite de red es una lista de los recursos de empresa, como los intervalos de direcciones IP y dominios hospedados en la nube de los equipos que se incluyen en la red empresarial. Defina límites de red a fin de aplicar directivas para proteger los datos que residen en estas ubicaciones.",
- "windowsHealthMonitoring": "Configure la directiva de seguimiento de estado de Windows.",
- "windowsPhoneGeneralApplicationRestrictions": "Windows Phone puede bloquear la instalación o el inicio de aplicaciones incluidas en la lista de aplicaciones prohibidas o no especificadas en la lista de aplicaciones aprobadas a los usuarios. Todas las aplicaciones administradas deben agregarse a la lista aprobada."
- },
"MinimumOperatingSystem": {
"Android": {
"v10": "Android 10.0",
@@ -2435,6 +1154,304 @@
"excludedGroups": "Grupos excluidos",
"licenseType": "Tipo de licencia"
},
+ "TAP": {
+ "AccessRequirements": {
+ "infoText": "Configure los requisitos de credenciales y PIN que los usuarios deben cumplir para acceder a las aplicaciones en un contexto de trabajo."
+ },
+ "DataProtection": {
+ "infoText": "Este grupo incluye controles de prevención de pérdida de datos (DLP), como restricciones para cortar, copiar, pegar y guardar como. Esta configuración determina la forma en la que los usuarios interactúan con los datos en las aplicaciones."
+ },
+ "DeviceTypes": {
+ "selectOne": "Seleccione al menos un tipo de dispositivo."
+ },
+ "TargetedApps": {
+ "TargetToAll": {
+ "label": "Destinar a aplicaciones en todos los tipos de dispositivo"
+ },
+ "infoText": "Elija cómo quiere aplicar esta directiva a las aplicaciones de otros dispositivos. Después, agregue al menos una aplicación.",
+ "selectOne": "Seleccione al menos una aplicación para crear una directiva."
+ }
+ },
+ "AssignmentAction": {
+ "exclude": "Excluido",
+ "include": "Incluidos",
+ "includeAllDevicesVirtualGroup": "Incluidos",
+ "includeAllUsersVirtualGroup": "Incluidos"
+ },
+ "AppType": {
+ "androidEnterpriseSystemApp": "Aplicación del sistema Android Enterprise",
+ "androidForWorkApp": "Aplicación de Google Play Store administrado",
+ "androidLobApp": "Aplicación de línea de negocio Android",
+ "androidStoreApp": "Aplicación de la tienda Android",
+ "builtInAndroid": "Aplicación Android integrada",
+ "builtInApp": "Aplicación integrada",
+ "builtInIos": "Aplicación iOS integrada",
+ "default": "",
+ "iosLobApp": "Aplicación de línea de negocio iOS",
+ "iosStoreApp": "Aplicación de la tienda iOS",
+ "iosVppApp": "Aplicación del Programa de Compras por Volumen iOS",
+ "lineOfBusinessApp": "Aplicación de línea de negocio",
+ "macOSDmgApp": "Aplicación macOS (DMG)",
+ "macOSEdgeApp": "Microsoft Edge (macOS)",
+ "macOSLobApp": "Aplicación de línea de negocio de macOS",
+ "macOSMdatpApp": "ATP de Microsoft Defender (macOS)",
+ "macOSOfficeSuiteApp": "Aplicaciones de Microsoft 365 (macOS)",
+ "macOsVppApp": "Aplicación del Programa de Compras por Volumen de macOS",
+ "managedAndroidLobApp": "Aplicación de línea de negocio Android administrada",
+ "managedAndroidStoreApp": "Aplicación de la tienda Android administrada",
+ "managedGooglePlayApp": "Aplicación de Google Play Store administrado",
+ "managedGooglePlayPrivateApp": "Aplicación privada de Google Play administrado",
+ "managedGooglePlayWebApp": "Vínculo web de Google Play administrado",
+ "managedIosLobApp": "Aplicación de línea de negocio iOS administrada",
+ "managedIosStoreApp": "Aplicación de la tienda iOS administrada",
+ "microsoftStoreForBusinessApp": "Aplicación de la Tienda Microsoft para Empresas",
+ "microsoftStoreForBusinessReleaseManagedApp": "Tienda Microsoft para Empresas",
+ "officeSuiteApp": "Aplicaciones de Microsoft 365 (Windows 10 y versiones posteriores)",
+ "webApp": "Vínculo web",
+ "windowsAppXLobApp": "Aplicación de línea de negocio de AppX para Windows",
+ "windowsClassicApp": "Aplicación de Windows (Win32)",
+ "windowsEdgeApp": "Microsoft Edge (Windows 10 y versiones posteriores)",
+ "windowsMobileMsiLobApp": "Aplicación de línea de negocio de MSI para Windows",
+ "windowsPhone81AppXBundleLobApp": "Aplicación de línea de negocio AppX para Windows Phone 8.1",
+ "windowsPhone81AppXLobApp": "Aplicación de línea de negocio AppX para Windows Phone 8.1",
+ "windowsPhone81StoreApp": "Aplicación de la Tienda Windows Phone 8.1",
+ "windowsPhoneXapLobApp": "Aplicación de línea de negocio de XAP para Windows Phone",
+ "windowsStoreApp": "Aplicación de Microsoft Store",
+ "windowsUniversalAppXLobApp": "Aplicación de línea de negocio de AppX para Windows Universal",
+ "windowsUniversalLobApp": "Aplicación de línea de negocio Windows universal"
+ },
+ "TAPSettings": {
+ "AllowedDataIngestionLocations": {
+ "label": "Permitir a los usuarios abrir datos de los servicios seleccionados",
+ "tooltip": "Seleccione los servicios de almacenamiento de aplicaciones desde los que los usuarios pueden abrir datos. El resto de servicios se bloquean. Si no se selecciona ningún servicio, los usuarios no podrán abrir datos."
+ },
+ "AndroidBackup": {
+ "label": "Hacer copia de seguridad de los datos de la organización en los servicios correspondientes de Android",
+ "tooltip": "Seleccione {0} para impedir la copia de seguridad de datos de la organización en los servicios de copia de seguridad de Android. \r\nSeleccione {1} para permitir la copia de seguridad de datos de la organización en los servicios de copia de seguridad de Android. \r\nLos datos personales o no administrados no se ven afectados."
+ },
+ "AndroidBiometricAuthentication": {
+ "label": "Biometría en lugar de PIN para el acceso",
+ "tooltip": "Elija los métodos de autenticación Android que los usuarios pueden utilizar (si los hay) en lugar de un PIN de aplicación."
+ },
+ "AndroidFingerprint": {
+ "label": "Huella digital en lugar de PIN para el acceso (Android 6.0+)",
+ "tooltip": "El sistema operativo Android usa exámenes de huella digital para autenticar los usuarios de los dispositivos Android. Esta característica admite los controles biométricos nativos en dispositivos Android. No se admiten las configuraciones biométricas específicas del OEM, como Samsung Pass. En caso de permitirse, los controles biométricos nativos se deben usar para acceder a la aplicación en un dispositivo compatible."
+ },
+ "AndroidOverrideFingerprint": {
+ "label": "Invalidar la huella digital con el PIN después del tiempo de espera"
+ },
+ "AppPIN": {
+ "label": "PIN de aplicación cuando está establecido el PIN del dispositivo",
+ "tooltip": "Si no se requiere, no es necesario usar un PIN de aplicación para acceder a esta si hay un PIN de dispositivo establecido en un dispositivo inscrito en MDM.
\r\n\r\nNota: Intune no puede detectar la inscripción de dispositivos con una solución EMM de terceros en Android."
+ },
+ "BlockDataIngestionIntoOrganizationDocuments": {
+ "label": "Abrir datos en documentos de la organización",
+ "tooltip1": "Seleccione Bloquear para deshabilitar el uso de la opción Abrir o de otras opciones para compartir datos entre cuentas en la aplicación. Seleccione Permitir si quiere permitir el uso de Abrir y de otras opciones para compartir datos entre cuentas en la aplicación.",
+ "tooltip2": "Cuando se establece en Bloquear, puede configurar el valor Permitir a los usuarios abrir datos de los servicios seleccionados a fin de especificar los servicios permitidos para las ubicaciones de datos de la organización.",
+ "tooltip3": "Nota: Esta configuración solo se aplica si el valor \"Recibir datos de otras aplicaciones\" está establecido en \"Aplicaciones administradas por directivas\".
\r\nNota: La configuración no es válida para todas las aplicaciones. Para obtener más información, consulte {0}.",
+ "tooltip4": "Nota: Esta configuración solo se aplica si el valor \"Recibir datos de otras aplicaciones\" está establecido en \"Aplicaciones administradas por directivas\".
\r\nNota: La configuración no es válida para todas las aplicaciones. Para obtener más información, consulte {0} o {0}."
+ },
+ "ConnectToVpnOnLaunch": {
+ "label": "Iniciar conexión de Microsoft Tunnel al iniciar la aplicación",
+ "tooltip": "Permitir la conexión a VPN cuando se inicie la aplicación"
+ },
+ "CredentialsForAccess": {
+ "label": "Credenciales de cuenta profesional o educativa para el acceso",
+ "tooltip": "Si se requiere, se deben usar las credenciales profesionales o educativas para acceder a la aplicación administrada por directivas. Si también se requiere un PIN o métodos biométricos para acceder a la aplicación, se solicitarán además las credenciales profesionales o educativas."
+ },
+ "CustomBrowserDisplayName": {
+ "label": "Nombre del explorador no administrado",
+ "tooltip": "Escriba el nombre de aplicación del explorador asociado al \"Identificador de explorador no administrado\". Este nombre se mostrará a los usuarios si el explorador especificado no está instalado."
+ },
+ "CustomBrowserPackageId": {
+ "label": "Identificador del explorador no administrado",
+ "tooltip": "Escriba el identificador de aplicación de un solo explorador. El contenido web (http/s) de las aplicaciones administradas por directivas se abrirá en el explorador especificado."
+ },
+ "CustomBrowserProtocol": {
+ "label": "Protocolo del explorador no administrado",
+ "tooltip": "Especifique el protocolo para un solo explorador no administrado. El contenido web (http/s) de las aplicaciones administradas por directivas se abrirá en cualquier aplicación compatible con el protocolo.
\r\n \r\nNota: Incluya solo el prefijo del protocolo. Si el explorador requiere vínculos con el formato \"miExplorador://www.microsoft.com\", escriba \"miExplorador\".
"
+ },
+ "CustomDialerAppDisplayName": {
+ "label": "Nombre de la aplicación de marcador"
+ },
+ "CustomDialerAppPackageId": {
+ "label": "Identificador de paquete de la aplicación de marcador"
+ },
+ "CustomDialerAppProtocol": {
+ "label": "Esquema de dirección URL de la aplicación de marcador"
+ },
+ "Cutcopypaste": {
+ "label": "Restringir cortar, copiar y pegar entre otras aplicaciones",
+ "tooltip": "Corte, copie y pegue datos entre su aplicación y otras aplicaciones aprobadas instaladas en el dispositivo. Opte por bloquear estas acciones completamente entre aplicaciones, permitir que se usen con cualquier aplicación o restringir el uso a las aplicaciones administradas por su organización.
\r\n\r\nAplicaciones administradas por directivas con pegar le ofrece la opción de aceptar contenido entrante que se pega desde otra aplicación. Sin embargo, impide que los usuarios compartan contenido externamente, a menos que sea con una aplicación administrada.
"
+ },
+ "DialerRestrictionLevel": {
+ "iosTooltip": "Normalmente, cuando un usuario selecciona un número de teléfono hipervinculado en una aplicación, se abre una aplicación de marcador con el número de teléfono rellenado previamente y lista para llamar. Para esta configuración, elija cómo administrar este tipo de transferencia de contenido cuando se inicie desde una aplicación administrada por directivas. Puede que sea necesario realizar pasos adicionales para que la configuración tenga efecto. En primer lugar, compruebe que tel y telprompt se hayan quitado de la lista Seleccionar las aplicaciones que quedan exentas. Después, asegúrese de que la aplicación esté usando una versión más reciente del SDK de Intune (versión 12.7.0 o posterior).",
+ "label": "Transferir datos de telecomunicaciones a",
+ "tooltip": "Normalmente, cuando un usuario selecciona un número de teléfono hipervinculado en una aplicación, se abre una aplicación de marcador con el número de teléfono rellenado y lista para llamar. Para esta configuración, elija cómo tratar este tipo de transferencia de contenido cuando se inicia desde una aplicación administrada por directivas."
+ },
+ "EncryptData": {
+ "label": "Cifrar datos de la organización",
+ "link": "https://docs.microsoft.com/en-us/intune/app-protection-policy-settings-android#data-relocation-settings",
+ "tooltip": "Seleccione {0} para aplicar el cifrado de datos de la organización con el cifrado de la capa de aplicaciones de Intune.\r\n
\r\nSeleccione {1} para no aplicar el cifrado de datos de la organización con el cifrado de la capa de aplicaciones de Intune.\r\n\r\n
\r\nNota: Para obtener más información sobre el cifrado de la capa de aplicaciones de Intune, consulte {2}."
+ },
+ "EncryptDataAndroid": {
+ "tooltip": "Elija Requerir para habilitar el cifrado de los datos profesionales o educativos en esta aplicación. Intune usa un esquema de cifrado AES de 256 bits OpenSSL junto con el sistema de almacén de claves Android para cifrar los datos de las aplicaciones de forma segura. Los datos se cifran de forma sincrónica durante las tareas de E/S de los archivos. El contenido de almacenamiento del dispositivo está siempre cifrado. El SDK seguirá proporcionando compatibilidad de claves de 128 bits para las aplicaciones y el contenido que usan versiones anteriores del SDK.
\r\n\r\nEl método de cifrado es compatible con FIPS 140-2.
"
+ },
+ "EncryptDataIos": {
+ "tooltip1": "Elija Requerir para habilitar el cifrado de los datos profesionales o educativos en esta aplicación. Intune exige el cifrado de los dispositivos iOS/iPadOS para proteger los datos de las aplicaciones mientras el dispositivo está bloqueado. Las aplicaciones pueden cifrar sus datos, opcionalmente, mediante el cifrado de Intune APP SDK. Intune APP SDK usa métodos criptográficos de iOS/iPadOS para aplicar cifrado AES de 128 bits a los datos de las aplicaciones.",
+ "tooltip2": "Cuando habilita esta configuración, puede que se requiera al usuario configurar y usar un PIN para acceder al dispositivo. Si no hay ningún PIN del dispositivo y se requiere el cifrado, se pide al usuario que establezca un PIN con el mensaje \"Your organization has required you to first enable a device PIN to access this app\".",
+ "tooltip3": "Vaya a la documentación oficial de Apple para ver los módulos de cifrado de iOS compatibles con FIPS 140-2 o pendientes de este tipo de cumplimiento."
+ },
+ "EncryptDataOnEnrolledDevices": {
+ "label": "Cifrar datos de la organización en los dispositivos inscritos",
+ "tooltip": "Seleccione {0} para aplicar el cifrado de datos de la organización con el cifrado de la capa de aplicaciones de Intune en todos los dispositivos.
\r\n\r\nSeleccione {1} para no aplicar el cifrado de datos de la organización con el cifrado de la capa de aplicaciones de Intune en los dispositivos inscritos."
+ },
+ "IOSBackup": {
+ "label": "Hacer copia de seguridad de los datos de la organización en las copias de seguridad de iTunes y iCloud",
+ "tooltip": "Seleccione {0} para impedir la copia de seguridad de datos de la organización en iTunes o iCloud. \r\nSeleccione {1} para permitir la copia de seguridad de datos de la organización en iTunes o iCloud. \r\nLos datos personales o no administrados no se ven afectados."
+ },
+ "IOSFaceID": {
+ "label": "Face ID en lugar de PIN para el acceso (iOS 11 y posterior/iPadOS)",
+ "tooltip": "Face ID usa la tecnología de reconocimiento facial para autenticar a los usuarios en los dispositivos iOS/iPadOS. Intune llama a la API LocalAuthentication para autenticar a los usuarios con Face ID. Si se permite, Face ID se debe usar para acceder a la aplicación en un dispositivo compatible con esta característica."
+ },
+ "IOSOverrideTouchId": {
+ "label": "Invalidar la información biométrica con un PIN después del tiempo de espera"
+ },
+ "IOSTouchId": {
+ "label": "Touch ID en lugar de PIN para el acceso (iOS 8 y posterior/iPadOS)",
+ "tooltip": "Touch ID usa la tecnología de reconocimiento de huellas digitales para autenticar a los usuarios en los dispositivos iOS. Intune llama a la API LocalAuthentication para autenticar a los usuarios con Touch ID. Si se permite, Touch ID se debe usar para acceder a la aplicación en un dispositivo compatible con esta característica."
+ },
+ "NotificationRestriction": {
+ "label": "Notificaciones de datos de la organización",
+ "tooltip": "Seleccione una de las opciones siguientes para especificar cómo se muestran las notificaciones de las cuentas de la organización para esta aplicación y cualquier dispositivo conectado, como dispositivos ponibles:
\r\n{0}: no compartir notificaciones.
\r\n{1}: no compartir datos de la organización en las notificaciones. Si la aplicación no lo admite, se bloquean las notificaciones.
\r\n{2}: compartir todas las notificaciones.
\r\n Solo Android:\r\n Nota: Esta configuración no es válida para todas las aplicaciones. Para obtener más información, consulte {3}
\r\n \r\n Solo iOS:\r\nNota: Esta configuración no es válida para todas las aplicaciones. Para obtener más información, consulte {4}
"
+ },
+ "OpenLinksManagedBrowser": {
+ "label": "Restringir la transferencia de contenido web con otras aplicaciones",
+ "tooltip": "Seleccione una de las opciones siguientes para especificar las aplicaciones en las que esta aplicación puede abrir contenido web:
\r\nMicrosoft Edge: permite que el contenido web se abra solo en Microsoft Edge.
\r\nExplorador no administrado: permite que el contenido web se abra solo en el explorador no administrado que se defina mediante la opción \"Protocolo del explorador no administrado\".
\r\nCualquier aplicación: permite los vínculos web en cualquier aplicación.
"
+ },
+ "OverrideBiometric": {
+ "tooltip": "Si se requiere, en función del tiempo de espera (minutos de inactividad), una solicitud de PIN invalidará las indicaciones biométricas. Si este valor de tiempo de espera no se cumple, la indicación biométrica seguirá apareciendo. El valor debe ser superior al especificado en \"Volver a comprobar los requisitos de acceso tras (minutos de inactividad)\". "
+ },
+ "PinAccess": {
+ "label": "PIN para acceder",
+ "tooltip": "Si se requiere, se debe usar un PIN para acceder a la aplicación administrada por directivas. Los usuarios deben crear un PIN de acceso la primera vez que abran la aplicación desde una cuenta profesional o educativa."
+ },
+ "PinLength": {
+ "label": "Seleccionar la longitud mínima del PIN",
+ "tooltip": "Esta configuración especifica el número mínimo de dígitos de un PIN."
+ },
+ "PinType": {
+ "label": "Tipo de PIN",
+ "tooltip": "Los PIN numéricos se forman con todos los números. Los códigos de acceso se componen de caracteres alfanuméricos y caracteres especiales. "
+ },
+ "Printing": {
+ "label": "Impresión de datos de la organización",
+ "tooltip": "Si esta opción está bloqueada, la aplicación no puede imprimir los datos protegidos."
+ },
+ "ReceiveData": {
+ "label": "Recibir datos de otras aplicaciones",
+ "tooltip": "Seleccione una de las opciones siguientes para especificar las aplicaciones de las que esta aplicación puede recibir datos:
\r\n\r\nNinguna: no permitir la recepción de datos en las cuentas o documentos de la organización desde ninguna aplicación.
\r\n\r\nAplicaciones administradas por directivas: permitir solo la recepción de datos en las cuentas o documentos de la organización de otras aplicaciones administradas por directivas.\r\n
\r\nCualquier aplicación con datos entrantes de la organización: permitir la recepción de datos en las cuentas o documentos de la organización desde cualquier aplicación y tratar todos los datos entrantes que no tengan una cuenta de usuario como datos de la organización.
\r\n\r\nTodas las aplicaciones: permitir la recepción de datos en las cuentas o documentos de la organización desde cualquier aplicación"
+ },
+ "RecheckAccessAfter": {
+ "label": "Volver a comprobar los requisitos de acceso tras (minutos de inactividad)\r\n\r\n",
+ "tooltip": "Si la aplicación administrada por directivas está inactiva un número de minutos superior al máximo especificado, esta solicitará que se vuelvan a comprobar los requisitos de acceso (por ejemplo, el PIN o la configuración de inicio condicional) después de iniciarse la aplicación."
+ },
+ "RestrictKeyboards": {
+ "duplicatePackageError": "El identificador del paquete debe ser único.",
+ "invalidPackageError": "Identificador de paquete no válido",
+ "label": "Teclados aprobados",
+ "select": "Seleccionar los teclados que se van a aprobar",
+ "subtitle": "Agregue todos los teclados y métodos de entrada que se permite utilizar a los usuarios con las aplicaciones de destino. Escriba el nombre del teclado tal y como quiere que se muestre al usuario final.",
+ "title": "Agregar teclados aprobados",
+ "toolTip": "Seleccione Requerir y, a continuación, especifique una lista de los teclados aprobados para esta directiva. Obtenga más información."
+ },
+ "SaveData": {
+ "label": "Guardar copias de los datos de la organización",
+ "tooltip": "Seleccione {0} para impedir que se guarde una copia de los datos de la organización en una nueva ubicación, distinta de los servicios de almacenamiento seleccionados, con la opción \"Guardar como\".\r\n Seleccione {1} para permitir que se guarde una copia de los datos de la organización en una nueva ubicación con la opción \"Guardar como\".
\r\n\r\n\r\nNota: Esta configuración no es válida para todas las aplicaciones. Para obtener más información, consulte {2}.\r\n"
+ },
+ "SaveDataToSelected": {
+ "label": "Permitir al usuario guardar copias en los servicios seleccionados",
+ "tooltip": "Seleccione los servicios de almacenamiento en los que los usuarios pueden guardar copias de los datos de la organización. El resto de servicios se bloquean. Si no se selecciona ningún servicio, los usuarios no podrán guardar ninguna copia de los datos de la organización."
+ },
+ "ScreenCaptureAndAndroidAssistant": {
+ "label": "Captura de pantalla y Asistente de Google\r\n",
+ "tooltip": "Si la opción se bloquea, las funciones de examen de la aplicación Asistente de Google y captura de pantalla se deshabilitarán al usar la aplicación administrada por directivas. Esta característica es compatible con el Asistente de Google habitual. No se admiten asistentes de terceros que usen la API de ayuda de Google. Si elige Bloquear, también se desenfocará la imagen de vista previa de las últimas aplicaciones al usar la aplicación con una cuenta profesional o educativa."
+ },
+ "SendData": {
+ "label": "Enviar datos de la organización a otras aplicaciones",
+ "tooltip": "Seleccione una de las opciones siguientes para especificar las aplicaciones a las que esta aplicación puede enviar datos de la organización:
\r\n\r\n\r\nNinguna: no permitir el envío de datos de la organización a ninguna aplicación.
\r\n\r\n\r\nAplicaciones administradas por directivas: permitir solo el envío de datos de la organización a otras aplicaciones administradas por directivas.
\r\n\r\n\r\nAplicaciones administradas por directiva con uso compartido del SO: permitir solo el envío de datos de la organización a otras aplicaciones administradas por directivas y el envío de documentos de la organización a otras aplicaciones administradas por MDM en los dispositivos inscritos.
\r\n\r\n\r\nFiltrado de aplicaciones administradas por directivas con Abrir en/Compartir: permitir solo el envío de datos de la organización a otras aplicaciones administradas por directivas y filtrar los cuadros de diálogo Abrir en/Compartir del sistema operativo para que muestren solo las aplicaciones administradas por directivas.\r\n
\r\n\r\nTodas las aplicaciones: permitir el envío de datos de la organización a cualquier aplicación"
+ },
+ "SimplePin": {
+ "label": "PIN simple",
+ "tooltip": "Si la opción está bloqueada, los usuarios no pueden crear un PIN simple. Un PIN simple es una cadena de dígitos consecutivos o repetitivos, como 1234, ABCD o 1111. Tenga en cuenta que el bloqueo de un PIN simple de tipo \"Código de acceso\" requiere que este tenga al menos un número, una letra y un carácter especial."
+ },
+ "SyncContacts": {
+ "label": "Sincronizar datos de aplicaciones administradas por directivas con aplicaciones o complementos nativos"
+ },
+ "ThirdPartyKeyboards": {
+ "infoBox": "Las restricciones del teclado se aplicarán a todas las áreas de una aplicación. Las cuentas personales de las aplicaciones que admiten varias identidades se verán afectadas por esta restricción. Obtenga más información.",
+ "label": "Teclados de terceros"
+ },
+ "Timeout": {
+ "label": "Tiempo de espera (minutos de inactividad)"
+ },
+ "Tap": {
+ "numberOfDays": "Número de días",
+ "pinResetAfterNumberOfDays": "Restablecimiento del PIN después de un número de días",
+ "previousPinBlockCount": "Seleccionar el número de valores de PIN anteriores que se van a mantener"
+ }
+ },
+ "ScheduledAction": {
+ "Form": {
+ "editBlockActionInfo": "Una acción de bloqueo es necesaria para todas las directivas de cumplimiento.",
+ "graceperiod": "Programar (días después del no cumplimiento)",
+ "graceperiodInfo": "Especificar el número de días sin cumplimiento transcurrido el cual debe desencadenarse esta acción para el dispositivo del usuario",
+ "subtitle": "Especificar parámetros de acción",
+ "title": "Parámetros de acción"
+ },
+ "List": {
+ "gracePeriodDay": "{0} día después del no cumplimiento",
+ "gracePeriodDays": "{0} días después del no cumplimiento",
+ "gracePeriodHour": "{0} hora después del incumplimiento",
+ "gracePeriodHours": "{0} horas después del incumplimiento",
+ "gracePeriodMinute": "{0} minuto después del incumplimiento",
+ "gracePeriodMinutes": "{0} minutos después del incumplimiento",
+ "immediately": "Inmediatamente",
+ "schedule": "Programar",
+ "scheduleInfoBalloon": "Días después del incumplimiento",
+ "subtitle": "Especificar la secuencia de acciones en los dispositivos no conformes",
+ "title": "Acciones"
+ },
+ "Notification": {
+ "additionalEmailLabel": "Otros",
+ "additionalRecipients": "Destinatarios adicionales (por correo electrónico)",
+ "additionalRecipientsBladeTitle": "Seleccionar destinatarios adicionales",
+ "emailAddressPrompt": "Escriba direcciones de correo electrónico (separadas por comas)",
+ "invalidEmail": "Dirección de correo electrónico no válida",
+ "messageTemplate": "Plantilla de mensaje",
+ "noneSelected": "No se ha seleccionado ninguno",
+ "notSelected": "No seleccionada",
+ "numSelected": "{0} seleccionados",
+ "selected": "Seleccionado"
+ },
+ "block": "Marcar el dispositivo como no conforme",
+ "lockDevice": "Bloquear dispositivo (acción local)",
+ "lockDeviceWithPasscode": "Bloquear dispositivo (acción local)",
+ "noAction": "No hay ninguna acción",
+ "noActionRow": "No hay ninguna acción, seleccione 'Agregar' para agregar una acción",
+ "pushNotification": "Enviar notificación push al usuario final",
+ "remoteLock": "Bloquear de forma remota el dispositivo no conforme",
+ "removeSourceAccessProfile": "Quitar perfil de acceso de origen",
+ "retire": "Retirar el dispositivo no compatible",
+ "wipe": "Borrar",
+ "emailNotification": "Enviar correo electrónico a usuario final"
+ },
+ "InstallIntent": {
+ "available": "Disponible para dispositivos inscritos",
+ "availableWithoutEnrollment": "Disponible con o sin inscripción",
+ "required": "Requerido",
+ "uninstall": "Desinstalar"
+ },
"EnrollmentStatusScreen": {
"Apps": {
"managedApps": "Aplicaciones administradas",
@@ -2466,142 +1483,61 @@
"resetToggle": "Permitir a los usuarios restablecer el dispositivo si se produce un error de instalación",
"timeout": "Mostrar un error cuando el tiempo de instalación supera el número de minutos especificado"
},
- "EnrollmentType": {
- "devicesWithEnrollment": "Dispositivos administrados",
- "devicesWithoutEnrollment": "Aplicaciones administradas"
- },
- "ApplicabilityRules": {
- "GridLabel": {
- "property": "Propiedad",
- "rule": "Regla",
- "ruleDetails": "Detalles de la regla",
- "value": "Valor"
- },
- "assignIf": "Asignar perfil si",
- "deleteWarning": "Esta acción eliminará la regla de aplicabilidad seleccionada",
- "dontAssignIf": "No asignar perfil si",
- "editionDisplayText": "{0} {1}",
- "editionDisplayTextMore": "y {0} más",
- "instructions": "Especifique cómo aplicar este perfil en un grupo asignado. Intune solo aplicará el perfil a los dispositivos que cumplan los criterios combinados de estas reglas.",
- "maxText": "Máx.",
- "minText": "Mín.",
- "noActionRow": "No hay reglas de aplicabilidad especificadas",
- "oSVersion": "Por ejemplo, 1.2.3.4",
- "toText": "hasta el",
- "windows10Education": "Windows 10/11 Education",
- "windows10EducationN": "Windows 10/11 Education N",
- "windows10Enterprise": "Windows 10/11 Enterprise",
- "windows10EnterpriseN": "Windows 10/11 Enterprise N",
- "windows10HolographicEnterprise": "Windows 10 Holographic for Business",
- "windows10Home": "Windows 10/11 Home",
- "windows10HomeChina": "Windows 10 Home China",
- "windows10HomeN": "Windows 10/11 Home N",
- "windows10HomeSingleLanguage": "Windows 10/11 Home en un solo idioma",
- "windows10IoTCore": "Windows 10 IoT Core",
- "windows10IoTCoreCommercial": "Windows 10 IoT Core Commercial",
- "windows10Mobile": "Windows 10 Mobile",
- "windows10MobileEnterprise": "Windows 10 Mobile Enterprise",
- "windows10OsEdition": "Edición del sistema operativo",
- "windows10OsVersion": "Versión del SO",
- "windows10Professional": "Windows 10/11 Professional",
- "windows10ProfessionalEducation": "Windows 10/11 Professional Education",
- "windows10ProfessionalEducationN": "Windows 10/11 Professional Education N",
- "windows10ProfessionalN": "Windows 10 Professional N",
- "windows10ProfessionalWorkstation": "Windows 10/11 Professional Workstation",
- "windows10ProfessionalWorkstationN": "Windows 10/11 Professional Workstation N"
+ "Devices": {
+ "General": {
+ "android": "Android"
+ },
+ "aOSP": "Proyecto de código abierto de Android",
+ "android": "Administrador de dispositivos Android",
+ "androidWorkProfile": "Android Enterprise (perfil de trabajo)",
+ "iOS": "iOS/iPadOS",
+ "mac": "macOS",
+ "windows": "Windows (MDM)",
+ "windows10": "Windows 10 y versiones posteriores",
+ "windowsHomeSku": "SKU de Windows Home",
+ "windowsMobile": "Windows Mobile"
+ },
+ "AppInfoBalloonText": {
+ "Certificate": {
+ "customSubjectName": "CN={{UserName}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US\r\nor\r\nCN={{AAD_Device_ID}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US",
+ "keySize": "Seleccione el número de bits que contiene la clave.",
+ "keyUsage": "Especifique la acción cifrada que es necesaria para el intercambio de la clave pública del certificado.",
+ "renewalThreshold": "Especifique el porcentaje (entre uno y 99 por ciento) de duración restante del certificado que se permite antes de que un dispositivo pueda solicitar la renovación del certificado. La cantidad recomendada en Intune es el 20 %. (1 a 99)",
+ "rootCert": "Elija un perfil de certificado de CA raíz previamente configurado y asignado. El certificado de CA debe coincidir con el certificado raíz de la CA que emite el certificado para este perfil (el que está configurando actualmente).",
+ "scepServerUrl": "Escriba una dirección URL para el servidor NDES que emite certificados mediante SCEP (debe ser HTTPS). Por ejemplo, https://contoso.com/certsrv/mscep/mscep.dll",
+ "scepServerUrls": "Agregar una o más direcciones URL para el servidor NDES que emite certificados mediante SCEP (debe ser HTTPS). Por ejemplo, https://contoso.com/certsrv/mscep/mscep.dll",
+ "subjectAlternativeName": "Nombre alternativo del firmante",
+ "subjectNameFormat": "Formato de nombre del firmante",
+ "validityPeriod": "La cantidad de tiempo restante antes de que expire el certificado. Escriba un valor que sea igual o inferior al período de validez que se muestra en la plantilla de certificado. El valor predeterminado se establece en un año."
+ },
+ "appInstallContext": "Esta opción especifica el contexto de la instalación que se asociará a la aplicación. Para aplicaciones de modo dual, seleccione el contexto que quiere usar en esta aplicación. Para el resto de aplicaciones, esta opción se selecciona previamente según el paquete y no se puede modificar.",
+ "autoUpdateMode": "Configure la prioridad de actualización de la aplicación. Seleccione Predeterminado para requerir que el dispositivo esté conectado a WiFi, que se cargue y que no se use activamente antes de actualizar la aplicación. Seleccione Prioridad alta para actualizar la aplicación tan pronto como el desarrollador haya publicado la aplicación, independientemente del estado de cargo, la funcionalidad WiFi o la actividad del usuario final en el dispositivo. Seleccione Pospuesto para impedir las actualizaciones de la aplicación durante un máximo de 90 días. La prioridad alta solo surtirá efecto en los dispositivos DO",
+ "configurationSettingsFormat": "Texto de formato de opciones de configuración",
+ "ignoreVersionDetection": "Establezca esta opción en \"Sí\" para las aplicaciones que el desarrollador propio actualiza automáticamente (por ejemplo, Google Chrome).",
+ "ignoreVersionDetectionMacOSLobApp": "Seleccione \"Sí\" para las aplicaciones que el desarrollador de aplicaciones actualiza automáticamente o para comprobar solamente el valor bundleID de la aplicación antes de la instalación. Seleccione \"No\" para comprobar el número de versión y el valor bundleID de la aplicación antes de la instalación.",
+ "installAsManagedMacOSLobApp": "Esta configuración solo se aplica a macOS 11 y versiones posteriores. La aplicación se instalará, pero no se administrará en macOS 10.15 y versiones anteriores.",
+ "installContextDropdown": "Seleccione el contexto de instalación adecuado. En el contexto de usuario la aplicación se instala solo para el usuario de destino, mientras que en el contexto de dispositivo la aplicación se instala para todos los usuarios del dispositivo.",
+ "ldapUrl": "Este es el nombre de host de LDAP en el que los clientes pueden obtener las claves de cifrado públicas para los destinatarios de correo electrónico. Los correos electrónicos se cifrarán cuando haya una clave disponible. Formatos admitidos: - ldap.example.com
\r\n- ldap.example.com:123
\r\n- ldap://ldap.example.com
- ldap://ldap.example.com:123
- ldaps://ldap.example.com
\r\n- ldaps://ldap.example.com:123
",
+ "permissionsSettings": "Seleccione los permisos en tiempo de ejecución de la aplicación asociada.",
+ "policyAssociatedApp": "Seleccione la aplicación a la que se asociará esta directiva.",
+ "policyConfigurationSettings": "Seleccione el método que quiere usar para definir las opciones de configuración de esta directiva.",
+ "policyDescription": "Opcionalmente, escriba una descripción para esta directiva de configuración.",
+ "policyEnrollmentType": "Elija si esta configuración se administra a través de la administración de dispositivos o aplicaciones creadas con el SDK de Intune.",
+ "policyName": "Escriba un nombre para esta directiva de configuración.",
+ "policyPlatform": "Seleccione la plataforma a la que se aplicará esta directiva de configuración de aplicaciones.",
+ "policyProfileType": "Seleccionar los tipos de perfil de dispositivo a los que se aplicará este perfil de configuración de la aplicación",
+ "policySMime": "Configurar las opciones de cifrado y firma S/MIME para Outlook.",
+ "sMimeDeployCertsFromIntune": "Especifique si se van a entregar o no certificados S/MIME de Intune para su uso con Outlook.\r\nIntune puede implementar automáticamente certificados de firma y cifrado para los usuarios a través del Portal de empresa.",
+ "sMimeEnable": "Especificar si los controles S/MIME se habilitan o no al redactar un correo electrónico",
+ "sMimeEnableAllowChange": "Especifique si el usuario tiene permiso para cambiar el valor Habilitar S/MIME.",
+ "sMimeEncryptAllEmails": "Especifique si se deben cifrar o no todos los mensajes de correo electrónico.\r\nEl cifrado convierte los datos en texto cifrado para que solo el destinatario deseado pueda leerlos.",
+ "sMimeEncryptAllEmailsAllowChange": "Especifique si el usuario tiene permiso para cambiar el valor Cifrar todos los correos electrónicos.",
+ "sMimeEncryptionCertProfile": "Especifique el perfil de certificado para el cifrado de correo electrónico.",
+ "sMimeSignAllEmails": "Especifique si se deben firmar o no todos los mensajes de correo electrónico.\r\nCon la firma digital se comprueba la autenticidad del correo electrónico y se garantiza que el contenido no se ha alterado en tránsito.",
+ "sMimeSignAllEmailsAllowChange": "Especifique si el usuario tiene permiso para cambiar el valor Firmar todos los correos electrónicos.",
+ "sMimeSigningCertProfile": "Especifique el perfil de certificado para la firma de correo electrónico.",
+ "sMimeUserNotificationType": "Método para notificar a los usuarios que deben abrir el Portal de empresa a fin de recuperar los certificados S/MIME para Outlook."
},
- "BooleanActions": {
- "allow": "Permitir",
- "block": "Bloquear",
- "configured": "Configurado",
- "disable": "Deshabilitar",
- "dontRequire": "No requerir",
- "enable": "Habilitar",
- "hide": "Ocultar",
- "limit": "Límite",
- "notConfigured": "Sin configurar",
- "require": "Requerir",
- "show": "Mostrar",
- "yes": "Sí"
- },
- "ProactiveRemediations": {
- "Create": {
- "Basics": {
- "DescriptionMultiLineTextBox": {
- "label": "Descripción",
- "placeholder": "Escribir una descripción"
- },
- "NameTextBox": {
- "label": "Nombre",
- "placeholder": "Escriba un nombre"
- },
- "PublisherTextBox": {
- "label": "Editor",
- "placeholder": "Escribir un editor"
- },
- "VersionTextBox": {
- "label": "Versión"
- },
- "headerDescription": "Cree un paquete de scripts personalizado a partir de los scripts de detección y corrección que ha escrito."
- },
- "ScopeTags": {
- "headerDescription": "Seleccione uno o varios grupos para asignar el paquete de scripts."
- },
- "Settings": {
- "DetectionScriptMultiLineTextBox": {
- "label": "Script de detección",
- "placeholder": "Texto del script de entrada",
- "requiredValidationMessage": "Escriba el script de detección."
- },
- "EnforceScriptSignatureCheckOptionPicker": {
- "label": "Exigir comprobación de firma del script"
- },
- "LoggedOnCredentialsOptionPicker": {
- "label": "Ejecutar este script con las credenciales de inicio de sesión"
- },
- "RemediationScript": {
- "infoBox": "El script se ejecutará en modo exclusivo de detección porque no hay ningún script de corrección."
- },
- "RemediationScriptMultiLineTextBox": {
- "label": "Script de corrección",
- "placeholder": "Texto del script de entrada"
- },
- "RunIn64BitPSOptionPicker": {
- "label": "Ejecutar script en PowerShell de 64 bits"
- },
- "ScriptMultiLineTextBox": {
- "base64EncodingValidationMessage": "Script no válido. Uno o varios de los caracteres que se usan en el script no son válidos."
- },
- "headerDescription": "Cree un paquete de scripts personalizado a partir de los scripts que ha escrito. De forma predeterminada, los scripts se ejecutarán en los dispositivos asignados cada día.",
- "infoBox": "Este script es de solo lectura. Es posible que algunos de los valores de este script estén deshabilitados."
- },
- "title": "Crear un script personalizado",
- "ScriptProperties": {
- "GridHeaders": {
- "interval": "Intervalo",
- "time": "Fecha y hora"
- },
- "Interval": {
- "day": "Se repite cada día",
- "days": "Se repite cada {0} días",
- "hour": "Se repite cada hora",
- "hours": "Se repite cada {0} horas",
- "month": "Se repite cada mes",
- "months": "Se repite cada {0} meses",
- "week": "Se repite cada semana",
- "weeks": "Se repite cada {0} semanas"
- },
- "Time": {
- "utc": "{0} (UTC)",
- "utcWithDate": "{0} (UTC) el {1}",
- "withDate": "{0} el {1}"
- }
- }
- },
- "Edit": {
- "title": "Editar: {0}"
- }
- },
"WindowsManagement": {
"Assignment": {
"noAssignmentCustomAttributeDisplayText": "Asigne un atributo personalizado al menos a un grupo. Vaya a Propiedades para editar las asignaciones.",
@@ -2708,910 +1644,6 @@
"shellScriptObjectName": "Script de shell",
"successfullySavedPolicy": "Se guardó {0}"
},
- "AssignmentFilters": {
- "assignmentFilterColumnHeader": "Filtrar",
- "noFilters": "Ninguno"
- },
- "Category": {
- "airPlay": "AirPlay",
- "airPrint": "AirPrint",
- "androidDefenderAtp": "Microsoft Defender for Endpoint",
- "androidDeviceOwnerApplications": "Aplicaciones",
- "androidForWorkPassword": "Contraseña del dispositivo",
- "appManagement": "Permitir o bloquear aplicaciones",
- "applicationGuard": "Protección de aplicaciones de Microsoft Defender",
- "applicationRestrictions": "Aplicaciones restringidas",
- "applicationVisibility": "Mostrar u ocultar aplicaciones",
- "applications": "Tienda de aplicaciones",
- "applicationsAndGames": "App Store, presentación de documentos, juegos",
- "applicationsAndGoogle": "Google Play Store",
- "appsAndExperience": "Aplicaciones y experiencia",
- "associatedDomains": "Dominios asociados",
- "autonomousSingleAppMode": "Modo de aplicación única autónoma",
- "azureOperationalInsights": "Azure Operational Insights",
- "bitLocker": "Cifrado de Windows",
- "browser": "Explorador",
- "builtinApps": "Aplicaciones integradas",
- "cellular": "Red de telefonía móvil",
- "cloudAndStorage": "Nube y almacenamiento",
- "cloudPrint": "Impresora en la nube",
- "complianceEmailProfile": "Correo electrónico",
- "connectedDevices": "Dispositivos conectados",
- "connectivity": "Red de telefonía móvil y conectividad",
- "contentCaching": "Almacenamiento en caché de contenido",
- "controlPanelAndSettings": "Panel de control y Configuración",
- "credentialGuard": "Credential Guard de Microsoft Defender",
- "customCompliance": "Cumplimiento personalizado",
- "customCompliancePreview": "Cumplimiento personalizado (versión preliminar)",
- "customConfiguration": "Perfil de configuración personalizada",
- "customOMASettings": "Configuración OMA-URI personalizada",
- "customPreferences": "Archivo de preferencias",
- "defender": "Antivirus de Microsoft Defender",
- "defenderAntivirus": "Antivirus de Microsoft Defender",
- "defenderExploitGuard": "Protección contra vulnerabilidades de seguridad de Microsoft Defender",
- "defenderFirewall": "Firewall de Microsoft Defender",
- "defenderLocalSecurityOptions": "Opciones de seguridad del dispositivo local",
- "defenderSecurityCenter": "Centro de seguridad de Microsoft Defender",
- "deliveryOptimization": "Optimización de entrega",
- "derivedCredentialAuthenticationConfiguration": "Credencial derivada",
- "deviceExperience": "Experiencia del dispositivo",
- "deviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
- "deviceGuard": "Control de aplicaciones de Microsoft Defender",
- "deviceHealth": "Estado de dispositivos",
- "devicePassword": "Contraseña del dispositivo",
- "deviceProperties": "Propiedades del dispositivo",
- "deviceRestrictions": "General",
- "deviceSecurity": "Seguridad del sistema",
- "display": "Mostrar",
- "domainJoin": "Unión a un dominio",
- "domains": "Dominios",
- "edgeBrowser": "Microsoft Edge (versión anterior), versión 45 y anteriores",
- "edgeBrowserSmartScreen": "SmartScreen de Microsoft Defender",
- "edgeKiosk": "Pantalla completa de Microsoft Edge",
- "editionUpgrade": "Actualización de edición",
- "education": "Educación",
- "educationDeviceCerts": "Certificados de dispositivo",
- "educationStudentCerts": "Certificados de alumno",
- "educationTakeATest": "Hacer un examen",
- "educationTeacherCerts": "Certificados de profesor",
- "emailProfile": "Correo electrónico",
- "enterpriseDataProtection": "Windows Information Protection",
- "expeditedCheckin": "Configuración de administración de dispositivos móviles",
- "extensibleSingleSignOn": "Extensión de aplicación de inicio de sesión único",
- "filevault": "FileVault",
- "firewall": "Firewall",
- "games": "Juegos",
- "gatekeeper": "Gatekeeper",
- "healthMonitoring": "Seguimiento de estado",
- "homeScreenLayout": "Diseño de pantalla principal",
- "iOSWallpaper": "Papel tapiz",
- "importedPFX": "Certificado PKCS importado",
- "iosDefenderAtp": "Microsoft Defender for Endpoint",
- "iosKiosk": "Pantalla completa",
- "kernelExtensions": "Extensiones de kernel",
- "keyboardAndDictionary": "Teclado y diccionario",
- "kiosk": "Pantalla completa",
- "kioskAndroidEnterprise": "Dispositivos dedicados",
- "kioskConfiguration": "Pantalla completa",
- "kioskConfigurationV2": "Pantalla completa",
- "kioskWebBrowser": "Kiosk Web Browser",
- "lockScreenMessage": "Mensaje de bloqueo de pantalla",
- "lockedScreenExperience": "Experiencia de pantalla de bloqueo",
- "logging": "Informes y telemetría",
- "loginItems": "Elementos de inicio de sesión",
- "loginWindow": "Ventana de inicio de sesión",
- "macDefenderAtp": "Microsoft Defender for Endpoint",
- "maintenance": "Mantenimiento",
- "malware": "Malware",
- "messaging": "Mensajería",
- "networkBoundary": "Límite de red",
- "networkProxy": "Proxy de red",
- "notifications": "Notificaciones de la aplicación",
- "pKCS": "Certificado PKCS",
- "password": "Contraseña",
- "personalProfile": "Perfil personal",
- "personalization": "Personalización",
- "policyOverride": "Reemplazar la directiva de grupo",
- "powerSettings": "Opciones de energía",
- "printer": "Impresora",
- "privacy": "Privacidad",
- "privacyPerApp": "Excepciones de privacidad por aplicación",
- "privacyPreferences": "Preferencias de privacidad",
- "projection": "Proyección",
- "sCCMCompliance": "Cumplimiento de Configuration Manager",
- "sCEP": "Certificado SCEP",
- "sCEPProperties": "Certificado SCEP",
- "sMode": "Intercambiar modo (solo Windows Insider)",
- "safari": "Safari",
- "search": "Buscar",
- "session": "Sesión",
- "sharedDevice": "iPad compartido",
- "sharedPCAccountManager": "Dispositivo multiusuario compartido",
- "singleSignOn": "Inicio de sesión único",
- "smartScreen": "SmartScreen de Microsoft Defender",
- "softwareUpdates": "Configuración",
- "start": "Inicio",
- "systemExtensions": "Extensiones del sistema",
- "systemSecurity": "Seguridad del sistema",
- "trustedCert": "Certificado de confianza",
- "updates": "Actualizaciones",
- "userRights": "Derechos del usuario",
- "usersAndAccounts": "Usuarios y cuentas",
- "vPN": "VPN base",
- "vPNApps": "VPN automática",
- "vPNAppsAndTrafficRules": "Aplicaciones y reglas de tráfico",
- "vPNConditionalAccess": "Acceso condicional",
- "vPNConnectivity": "Conectividad",
- "vPNDNSTriggers": "Configuración DNS",
- "vPNIKEv2": "Configuración de IKEv2",
- "vPNProxy": "Proxy",
- "vPNSplitTunneling": "Túnel dividido",
- "vPNTrustedNetwork": "Detección de redes de confianza",
- "webContentFilter": "Filtro de contenido web",
- "wiFi": "Wi-Fi",
- "win10Wifi": "Wi-Fi",
- "windowsAtp": "Microsoft Defender for Endpoint",
- "windowsDefenderATP": "Microsoft Defender for Endpoint",
- "windowsHelloForBusiness": "Windows Hello para empresas",
- "windowsSpotlight": "Contenido destacado de Windows",
- "wiredNetwork": "Red cableada",
- "wireless": "Inalámbrica",
- "wirelessProjection": "Proyección inalámbrica",
- "workProfile": "Configuración del perfil profesional",
- "workProfilePassword": "Contraseña del perfil de trabajo",
- "xboxServices": "Servicios de Xbox",
- "zebraMx": "Perfil de MX (solo Zebra)",
- "complianceActionsLabel": "Acciones en caso de incumplimiento"
- },
- "MicrosoftEdgeChannel": {
- "beta": "Beta",
- "dev": "Dev",
- "stable": "Stable"
- },
- "ConfigurationTypes": {
- "Table": {
- "androidDeviceOwnerGeneral": "Restricciones de dispositivos (propietario del dispositivo)",
- "androidForWorkGeneral": "Restricciones de dispositivos (perfil de trabajo)"
- },
- "androidCustom": "Personalizada",
- "androidDeviceOwnerGeneral": "Restricciones de dispositivos",
- "androidDeviceOwnerPkcs": "Certificado PKCS",
- "androidDeviceOwnerScep": "Certificado SCEP",
- "androidDeviceOwnerTrustedCertificate": "Certificado de confianza",
- "androidDeviceOwnerVpn": "VPN",
- "androidDeviceOwnerWiFi": "Wi-Fi",
- "androidEmailProfile": "Correo electrónico (solo Samsung KNOX)",
- "androidForWorkCustom": "Personalizada",
- "androidForWorkEmailProfile": "Correo electrónico",
- "androidForWorkGeneral": "Restricciones de dispositivos",
- "androidForWorkImportedPFX": "Certificado PKCS importado",
- "androidForWorkOemConfig": "OEMConfig",
- "androidForWorkPKCS": "Certificado PKCS",
- "androidForWorkSCEP": "Certificado SCEP",
- "androidForWorkTrustedCertificate": "Certificado de confianza",
- "androidForWorkVpn": "VPN",
- "androidForWorkWiFi": "Wi-Fi",
- "androidGeneral": "Restricciones de dispositivos",
- "androidImportedPFX": "Certificado PKCS importado",
- "androidPKCS": "Certificado PKCS",
- "androidSCEP": "Certificado SCEP",
- "androidTrustedCertificate": "Certificado de confianza",
- "androidVPN": "VPN",
- "androidWiFi": "Wi-Fi",
- "androidZebraMx": "Perfil de MX (solo Zebra)",
- "complianceAndroid": "Directiva de cumplimiento de Android",
- "complianceAndroidDeviceOwner": "Perfil de trabajo de propiedad corporativa, dedicado y totalmente administrado",
- "complianceAndroidEnterprise": "Perfil de trabajo de propiedad personal",
- "complianceAndroidForWork": "Directiva de cumplimiento de Android for Work",
- "complianceIos": "Directiva de cumplimiento de iOS",
- "complianceMac": "Directiva de cumplimiento de Mac",
- "complianceWindows10": "Directiva de cumplimiento de Windows 10 y versiones posteriores",
- "complianceWindows10Mobile": "Directiva de cumplimiento de Windows 10 Mobile",
- "complianceWindows8": "Directiva de cumplimiento de Windows 8",
- "complianceWindowsPhone": "Directiva de cumplimiento de Windows Phone",
- "exchangeActiveSync": "Exchange Active Sync",
- "iosCustom": "Personalizada",
- "iosDerivedCredentialAuthenticationConfiguration": "Credencial PIV derivada",
- "iosDeviceFeatures": "Características del dispositivo",
- "iosEDU": "Educación",
- "iosEducation": "Educación",
- "iosEmailProfile": "Correo electrónico",
- "iosGeneral": "Restricciones de dispositivos",
- "iosImportedPFX": "Certificado PKCS importado",
- "iosPKCS": "Certificado PKCS",
- "iosPresets": "Valores preestablecidos",
- "iosSCEP": "Certificado SCEP",
- "iosTrustedCertificate": "Certificado de confianza",
- "iosVPN": "VPN",
- "iosVPNZscaler": "VPN",
- "iosWiFi": "Wi-Fi",
- "macCustom": "Personalizada",
- "macDeviceFeatures": "Características del dispositivo",
- "macEndpointProtection": "Endpoint Protection",
- "macExtensions": "Extensiones",
- "macGeneral": "Restricciones de dispositivos",
- "macImportedPFX": "Certificado PKCS importado",
- "macSCEP": "Certificado SCEP",
- "macTrustedCertificate": "Certificado de confianza",
- "macVPN": "VPN",
- "macWiFi": "Wi-Fi",
- "settingsCatalog": "Catálogo de configuración (vista previa)",
- "unsupported": "No compatible",
- "windows10AdministrativeTemplate": "Plantillas administrativas (vista previa)",
- "windows10Atp": "Microsoft Defender para punto de conexión (dispositivos de escritorio que ejecutan Windows 10 o versiones posteriores)",
- "windows10Custom": "Personalizada",
- "windows10DesktopSoftwareUpdate": "Actualizaciones de software",
- "windows10DeviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
- "windows10EmailProfile": "Correo electrónico",
- "windows10EndpointProtection": "Endpoint Protection",
- "windows10EnterpriseDataProtection": "Windows Information Protection",
- "windows10General": "Restricciones de dispositivos",
- "windows10ImportedPFX": "Certificado PKCS importado",
- "windows10Kiosk": "Pantalla completa",
- "windows10NetworkBoundary": "Límite de red",
- "windows10PKCS": "Certificado PKCS",
- "windows10PolicyOverride": "Reemplazar la directiva de grupo",
- "windows10SCEP": "Certificado SCEP",
- "windows10SecureAssessmentProfile": "Perfil educativo",
- "windows10SharedPC": "Dispositivo multiusuario compartido",
- "windows10TeamGeneral": "Restricciones de dispositivos (Windows 10 Team)",
- "windows10TrustedCertificate": "Certificado de confianza",
- "windows10VPN": "VPN",
- "windows10WiFi": "Wi-Fi",
- "windows10WiFiCustom": "Wi-Fi personalizada",
- "windows8General": "Restricciones de dispositivos",
- "windows8SCEP": "Certificado SCEP",
- "windows8TrustedCertificate": "Certificado de confianza",
- "windows8VPN": "VPN",
- "windows8WiFi": "Importación de Wi-Fi",
- "windowsDeliveryOptimization": "Optimización de entrega",
- "windowsDomainJoin": "Unión a un dominio",
- "windowsEditionUpgrade": "Actualización de edición y cambio de modo",
- "windowsIdentityProtection": "Identity Protection",
- "windowsPhoneCustom": "Personalizada",
- "windowsPhoneEmailProfile": "Correo electrónico",
- "windowsPhoneGeneral": "Restricciones de dispositivos",
- "windowsPhoneImportedPFX": "Certificado PKCS importado",
- "windowsPhoneSCEP": "Certificado SCEP",
- "windowsPhoneTrustedCertificate": "Certificado de confianza",
- "windowsPhoneVPN": "VPN",
- "IosUpdate": "Directiva de actualización de iOS"
- },
- "WindowsEnrollment": {
- "coManagementAuthorityDesc": "Establezca la configuración de administración conjunta para la integración de Configuration Manager.",
- "coManagementAuthorityTitle": "Configuración de administración conjunta ",
- "deploymentProfiles": "Perfiles de Windows AutoPilot Deployment",
- "description": "Obtenga información sobre las siete formas diferentes en que los usuarios o administradores pueden inscribir una PC con Windows 10/11 en Intune.",
- "descriptionLabel": "Métodos de inscripción de Windows",
- "enrollmentStatusPage": "Página de estado de inscripción"
- },
- "Platform": {
- "all": "Todas",
- "android": "Administrador de dispositivos Android",
- "androidAOSP": "Android (AOSP)",
- "androidEnterprise": "Android Enterprise",
- "androidForWork": "Android Enterprise",
- "androidWorkProfile": "Android Enterprise",
- "common": "Común",
- "iOS": "iOS/iPadOS",
- "iosAndAndroidPlatformLabel": "iOS y Android",
- "iosCommaAndroidPlatformLabel": "iOS, Android",
- "linux": "Linux",
- "macOS": "macOS",
- "unknown": "Desconocido",
- "unsupported": "No compatible",
- "windows": "Windows",
- "windows10": "Windows 10 y versiones posteriores",
- "windows10CM": "Windows 10 y versiones posteriores (ConfigMgr)",
- "windows10Holo": "Windows 10 Holographic",
- "windows10Mobile": "Windows 10 Mobile",
- "windows10Team": "Windows 10 Team",
- "windows10X": "Windows 10X",
- "windows8": "Windows 8.1 y versiones posteriores",
- "windows8And10": "Windows 8 y 10",
- "windowsPhone": "Windows Phone 8.1",
- "windows10AndLater": "Windows 10 y versiones posteriores",
- "windows10AndWindowsServer": "Windows 10, Windows 11 y Windows Server (ConfigMgr)",
- "windows10andLaterCM": "Windows 10 y versiones posteriores (ConfigMgr)",
- "holoLens": "HoloLens",
- "surfaceHub2": "Surface Hub 2",
- "surfaceHub2S": "Surface Hub 2S",
- "windowsPC": "PC Windows"
- },
- "EnrollmentRestrictions": {
- "DeletePayloadLink": {
- "content": "{0} se incluye en uno o más conjuntos de directivas. Si elimina {0}, ya no se podrá asignar mediante dichos conjuntos. ¿Quiere eliminarla de todas formas?",
- "contentWithError": "{0} puede estar incluida en uno o varios conjuntos de directivas. Si elimina {0}, ya no se podrá asignar mediante dichos conjuntos. ¿Quiere eliminarla de todos modos?",
- "header": "¿Seguro que quiere eliminar esta restricción?"
- },
- "DeviceLimit": {
- "description": "Especifique el número máximo de dispositivos que un usuario puede inscribir.",
- "header": "Restricciones de límite de dispositivos",
- "info": "Define cuántos dispositivos puede inscribir cada usuario."
- },
- "DeviceType": {
- "VersionValidation": {
- "aOSP": "Debe ser 1.0 o posterior.",
- "android": "Escriba un número de versión válido. Ejemplos: 5.0, 5.5.1, 6.0.0.1",
- "androidForWork": "Escriba un número de versión válido. Ejemplos: 5.0, 5.1.1",
- "iOS": "Escriba un número de versión válido. Ejemplos: 9.0, 10.0, 9.0.2",
- "mac": "Escriba un número de versión válido. Ejemplos: 10, 10.10, 10.10.1",
- "min": "El valor mínimo no puede ser inferior a {0}",
- "minMax": "La versión mínima no puede ser superior a la versión máxima.",
- "windows": "Debe ser 10.0 o superior. Déjela en blanco para permitir dispositivos 8.1",
- "windowsMobile": "Debe ser 10.0 o superior. Déjela en blanco para permitir dispositivos 8.1"
- },
- "allPlatformsBlocked": "Todas las plataformas de dispositivos están bloqueadas. Permita que la inscripción de la plataforma habilite la configuración de la plataforma.",
- "blockManufacturerPlaceHolder": "Nombre del fabricante",
- "blockManufacturersHeader": "Fabricantes bloqueados",
- "cannotRestrict": "No se admite la restricción.",
- "configurationDescription": "Especifica las restricciones de configuración de plataforma que deben cumplirse para inscribir un dispositivo. Use directivas de cumplimiento para restringir los dispositivos una vez inscritos. Defina las versiones como principal.secundaria.compilación. Las restricciones de versión solo se aplican a los dispositivos inscritos en el Portal de empresa. Intune clasifica los dispositivos como propiedad personal de forma predeterminada. Para clasificarlos como propiedad corporativa, se deben tomar medidas adicionales.",
- "configurationDescriptionLabel": "Más información sobre cómo establecer restricciones de inscripción",
- "configurations": "Configurar plataformas",
- "deviceManufacturer": "Fabricante del dispositivo",
- "header": "Restricciones de tipo de dispositivo",
- "info": "Define qué plataformas, versiones y tipos de administración pueden inscribirse.",
- "manufacturer": "Fabricante",
- "max": "Máx.",
- "maxVersion": "Versión máxima",
- "min": "Mín.",
- "minVersion": "Versión mínima",
- "newPlatforms": "Ha permitido nuevas plataformas. Considere la posibilidad de actualizar Configuraciones de plataforma.",
- "personal": "Propiedad personal",
- "platform": "Plataforma",
- "platformDescription": "Puede permitir la inscripción de las plataformas siguientes. Bloquee simplemente las plataformas que no vaya a admitir. Las plataformas permitidas pueden configurarse con restricciones de inscripción adicionales.",
- "platformSettings": "Configuración de plataforma",
- "platforms": "Seleccionar plataformas",
- "platformsSelected": "{0} plataformas seleccionadas",
- "type": "Tipo",
- "versions": "versiones",
- "versionsRange": "Permitir intervalo mín./máx.:",
- "windowsTooltip": "Restringe la inscripción a través de la administración de dispositivos móviles. No restringe la instalación del agente de PC. Solo se admiten las versiones de Windows 10 y Windows 11. Deje las versiones en blanco para permitir Windows 8.1."
- },
- "Priority": {
- "saved": "Las prioridades de restricción se guardaron correctamente."
- },
- "Row": {
- "announce": "Prioridad: {0}. Nombre: {1}. Asignadο: {2}"
- },
- "Table": {
- "deployed": "Implementada",
- "name": "Nombre",
- "priority": "Prioridad"
- },
- "Type": {
- "limit": "Restricción de límite de dispositivos",
- "type": "Restricción de tipo de dispositivo"
- },
- "allUsers": "Todos los usuarios",
- "androidRestrictions": "Restricciones de Android",
- "create": "Crear restricción",
- "defaultLimitDescription": "Esta es la restricción de límite de dispositivos predeterminada aplicada con la prioridad más baja a todos los usuarios, independientemente de la pertenencia a grupos.",
- "defaultTypeDescription": "Esta es la restricción de tipo de dispositivo predeterminada aplicada con la prioridad más baja a todos los usuarios, independientemente de la pertenencia a grupos.",
- "defaultWhfbDescription": "Esta es la configuración de Windows Hello para empresas predeterminada que se aplica con la prioridad más baja a todos los usuarios, independientemente de la pertenencia a grupos.",
- "deleteMessage": "Los usuarios afectados se verán restringidos por la siguiente restricción de prioridad más alta asignada o la predeterminada, si no se asigna ninguna otra.",
- "deleteTitle": "¿Está seguro de que quiere eliminar la restricción {0}?",
- "descriptionHint": "Párrafo breve que describe el nivel de restricción o uso corporativo que caracteriza la configuración de la restricción.",
- "edit": "Editar restricción",
- "info": "Un dispositivo debe cumplir las restricciones de inscripción de prioridad más alta asignadas a su usuario. Puede arrastrar una restricción de dispositivo para cambiar su prioridad. Las restricciones predeterminadas tienen la prioridad más baja y se aplican a las inscripciones sin usuario. Además, se pueden editar, pero no eliminarse.",
- "iosRestrictions": "Restricciones de iOS",
- "mDM": "MDM",
- "macRestrictions": "Restricciones de macOS",
- "maxVersion": "Versión máxima",
- "minVersion": "Versión mínima",
- "nameHint": "Este será el primer atributo principal visible para identificar el conjunto de restricciones.",
- "noAssignmentsStatusBar": "Asigne la restricción al menos a un grupo. Haga clic en Propiedades.",
- "notFound": "La restricción no se ha encontrado. Puede que ya se haya eliminado.",
- "personallyOwned": "Dispositivos de propiedad personal",
- "restriction": "Restricción",
- "restrictionLowerCase": "restricción",
- "restrictionType": "Restriction type",
- "selectType": "Seleccionar el tipo de restricción",
- "selectValidation": "Seleccione una plataforma.",
- "typeHint": "Elija Restricción de tipo de dispositivo para restringir las propiedades del dispositivo. Elija Restricción de límite de dispositivos para restringir el número de dispositivos por usuario.",
- "typeRequired": "Se requiere el tipo de restricción.",
- "winPhoneRestrictions": "Restricciones de Windows Phone",
- "windowsRestrictions": "Restricciones de Windows"
- },
- "Titles": {
- "ChromeOs": {
- "devices": "Dispositivos con Chrome OS"
- },
- "ManagedDesktop": {
- "adminContacts": "Contactos del administrador",
- "appPackaging": "Empaquetado de aplicaciones",
- "devices": "Dispositivos",
- "feedback": "Comentarios",
- "gettingStarted": "Introducción",
- "messages": "Mensajes",
- "onlineResources": "Recursos en línea",
- "serviceRequests": "Solicitudes de servicio",
- "settings": "Configuración",
- "tenantEnrollment": "Inscripción de inquilinos"
- },
- "actions": "Acciones en caso de incumplimiento",
- "advancedExchangeSettings": "Configuración de Exchange Online",
- "advancedThreatProtection": "Microsoft Defender for Endpoint",
- "allApps": "Todas las aplicaciones",
- "allDevices": "Todos los dispositivos",
- "androidFotaDeployments": "Implementaciones de Android FOTA",
- "appBundles": "Lotes de aplicaciones",
- "appCategories": "Categorías de aplicaciones",
- "appConfigPolicies": "Directivas de configuración de aplicaciones",
- "appInstallStatus": "Estado de instalación de la aplicación",
- "appLicences": "Licencias de aplicación",
- "appProtectionPolicies": "Directivas de protección de aplicaciones",
- "appProtectionStatus": "Estado de protección de la aplicación",
- "appSelectiveWipe": "Borrado selectivo de aplicaciones",
- "appleVppTokens": "Tokens de VPP de Apple",
- "apps": "Aplicaciones",
- "assign": "Asignaciones",
- "assignedPermissions": "Permisos asignados",
- "assignedRoles": "Roles asignados",
- "autopilotDeploymentReport": "Implementaciones de Autopilot (versión preliminar)",
- "brandingAndCustomization": "Personalización",
- "cartProfiles": "Perfiles de carro",
- "certificateConnectors": "Conectores de certificados",
- "chromeEnterprise": "Chrome Enterprise",
- "compliancePolicies": "Directivas de cumplimiento",
- "complianceScriptManagement": "Scripts",
- "complianceScriptManagementPreview": "Scripts (versión preliminar)",
- "complianceSettings": "Configuración de directivas de cumplimiento",
- "conditionStatements": "Instrucciones de condición",
- "conditions": "Ubicaciones",
- "configMgr": "Microsoft Endpoint Configuration Manager",
- "configurationProfiles": "Perfiles de configuración",
- "configurationProfilesPreview": "Perfiles de configuración (versión preliminar)",
- "connectorsAndTokens": "Conectores y tokens",
- "corporateDeviceIdentifiers": "Identificadores de dispositivo corporativos",
- "customAttributes": "Atributos personalizados",
- "customNotifications": "Notificaciones personalizadas",
- "deploymentSettings": "Configuración de la implementación",
- "derivedCredentials": "Credenciales derivadas",
- "deviceActions": "Acciones de dispositivo",
- "deviceCategories": "Categorías de dispositivo",
- "deviceCleanUp": "Reglas de limpieza de dispositivos",
- "deviceEnrollmentManagers": "Administradores de inscripción de dispositivos",
- "deviceExecutionStatus": "Estado del dispositivo",
- "deviceLimitEnrollmentRestrictions": "Restricciones de límite de dispositivos inscritos",
- "deviceTypeEnrollmentRestrictions": "Restricciones de la plataforma de dispositivos inscritos",
- "devices": "Dispositivos",
- "discoveredApps": "Aplicaciones detectadas",
- "embeddedSIM": "Perfiles de telefonía móvil eSIM (versión preliminar)",
- "enrollDevices": "Inscribir dispositivos",
- "enrollmentFailures": "Errores de inscripción",
- "enrollmentNotifications": "Notificaciones de inscripción (vista previa)",
- "enrollmentRestrictions": "Restricciones de inscripción",
- "exchangeActiveSync": "Exchange ActiveSync",
- "exchangeServiceConnectors": "Conectores de servicio de Exchange",
- "failuresForFeatureUpdates": "Errores de actualización de características (vista previa)",
- "failuresForQualityUpdates": "Errores de actualización acelerada de Windows (versión preliminar)",
- "featureFlighting": "Alternancia de características",
- "featureUpdateDeployments": "Actualizaciones de características para Windows 10 y versiones posteriores (versión preliminar)",
- "flighting": "Distribución de paquetes piloto",
- "fotaUpdate": "Actualización de firmware por vía inalámbrica",
- "groupPolicy": "Plantillas administrativas",
- "groupPolicyAnalytics": "Análisis de directiva de grupo",
- "helpSupport": "Ayuda y soporte técnico",
- "helpSupportReplacement": "Ayuda y soporte técnico ({0})",
- "iOSAppProvisioning": "Perfiles de aprovisionamiento de aplicaciones de iOS",
- "incompleteUserEnrollments": "Inscripciones de usuario incompletas",
- "intuneRemoteAssistance": "Ayuda remota (versión preliminar)",
- "iosUpdates": "Directivas de actualización para iOS/iPadOS",
- "legacyPcManagement": "Administración de equipos heredados",
- "macOSSoftwareUpdate": "Directivas de actualización para macOS",
- "macOSSoftwareUpdateAccountSummaries": "Estado de instalación de los dispositivos macOS",
- "macOSSoftwareUpdateCategorySummaries": "Resumen de actualizaciones de software",
- "macOSSoftwareUpdateStateSummaries": "actualizaciones",
- "managedGooglePlay": "Google Play administrado",
- "msfb": "Tienda Microsoft para Empresas",
- "myPermissions": "Mis permisos",
- "notifications": "Notificaciones",
- "officeApps": "Aplicaciones de Office",
- "officeProPlusPolicies": "Directivas para las aplicaciones de Office",
- "onPremise": "Local",
- "onPremisesConnector": "Exchange ActiveSync Connector local",
- "onPremisesDeviceAccess": "Dispositivos de Exchange ActiveSync",
- "onPremisesManageAccess": "Acceso a Exchange local",
- "outOfDateIosDevices": "Errores de instalación para dispositivos iOS",
- "overview": "Información general",
- "partnerDeviceManagement": "Administración de dispositivos de socio",
- "perUpdateRingDeploymentState": "Estado de implementación por anillo de actualización",
- "permissions": "Permisos",
- "platformApps": "{0} aplicaciones",
- "platformDevices": "{0} dispositivos",
- "platformEnrollment": "Inscripción de {0}",
- "policies": "Directivas",
- "previewMDMDevices": "Todos los dispositivos administrados (vista previa)",
- "profiles": "Perfiles",
- "properties": "Propiedades",
- "reports": "Informes",
- "retireNoncompliantDevices": "Retirar dispositivos no conformes",
- "retireNoncompliantDevicesPreview": "Retire noncompliant devices (preview)",
- "role": "Rol",
- "scriptManagement": "Scripts",
- "securityBaselines": "Líneas base de seguridad",
- "serviceToServiceConnector": "Conector de Exchange Online",
- "shellScripts": "Scripts de Shell",
- "teamViewerConnector": "Conector de TeamViewer",
- "telecomeExpenseManagement": "Administración de gastos de telecomunicaciones",
- "tenantAdmin": "Administrador de inquilinos",
- "tenantAdministration": "Administración de inquilinos",
- "termsAndConditions": "Términos y condiciones",
- "titles": "Títulos",
- "troubleshootSupport": "Solución de problemas + soporte técnico",
- "user": "Usuario",
- "userExecutionStatus": "Estado del usuario",
- "warranty": "Proveedores de garantía",
- "wdacSupplementalPolicies": "Directivas complementarias del modo S",
- "windows10DriverUpdate": "Actualizaciones de controladores para Windows 10 y versiones posteriores (versión preliminar)",
- "windows10QualityUpdate": "Actualizaciones de calidad para Windows 10 y versiones posteriores (versión preliminar)",
- "windows10UpdateRings": "Anillos de actualización para Windows 10 y versiones posteriores",
- "windows10XPolicyFailures": "Errores de directiva de Windows 10X",
- "windowsEnterpriseCertificate": "Certificado de Windows Enterprise",
- "windowsManagement": "Scripts de PowerShell",
- "windowsSideLoadingKeys": "Claves de instalación de prueba de Windows",
- "windowsSymantecCertificate": "Certificado DigiCert de Windows",
- "windowsThreatReport": "Estado del agente de amenazas"
- },
- "ScopeTypes": {
- "allDevices": "Todos los dispositivos",
- "allUsers": "Todos los usuarios",
- "allUsersAndDevices": "Todos los usuarios y todos los dispositivos",
- "selectedGroups": "Grupos seleccionados"
- },
- "DetectionRules": {
- "ComparisonOperators": {
- "equals": "Es igual a",
- "greaterThan": "Mayor que",
- "greaterThanOrEqualTo": "Mayor o igual que",
- "lessThan": "Menor que",
- "lessThanOrEqualTo": "Menor o igual que",
- "notEqualTo": "No igual a"
- },
- "CustomScript": {
- "enforceSignatureCheck": "Exigir comprobación de firma del script y ejecutarlo silenciosamente",
- "enforceSignatureCheckTooltip": "Seleccione \"Sí\" para comprobar que el script está firmado por un editor de confianza, lo que permite ejecutarlo sin que se muestren advertencias ni avisos. El script se ejecutará sin bloqueos. Seleccione \"No\" (predeterminado) para ejecutarlo con la confirmación del usuario final sin comprobación de la firma.",
- "header": "Usar un script de detección personalizado",
- "runAs32Bit": "Ejecutar script como proceso de 32 bits en clientes de 64 bits",
- "runAs32BitTooltip": "Seleccione \"Sí\" para ejecutar el script en un proceso de 32 bits en clientes de 64 bits. Seleccione \"No\" (predeterminado) para ejecutarlo en un proceso de 64 bits en clientes de 64 bits. Los clientes de 32 bits ejecutan el script en un proceso de 32 bits.",
- "scriptFile": "Archivo de script",
- "scriptFileNotSelectedValidation": "No hay ningún archivo de script seleccionado.",
- "scriptFileTooltip": "Seleccione un script de PowerShell que detecte la presencia de la aplicación en el cliente. La aplicación se detectará cuando el script devuelva un código de salida de valor 0 y escriba un valor de cadena en STDOUT."
- },
- "Manual": {
- "FileRule": {
- "DetectionMethodOptions": {
- "dateCreated": "Fecha de creación",
- "dateModified": "Fecha de modificación",
- "doesNotExist": "El archivo o la carpeta no existe.",
- "fileOrFolderExists": "El archivo o la carpeta existe",
- "sizeInMB": "Tamaño en MB",
- "version": "Cadena (versión)"
- },
- "associatedWith32Bit": "Asociado a una aplicación de 32 bits en clientes de 64 bits",
- "associatedWith32BitTooltip": "Seleccione \"Sí\" para expandir las variables de entorno de ruta de acceso en el contexto de 32 bits en clientes de 64 bits. Seleccione \"No\" (predeterminado) para expandir las variables de ruta de acceso en el contexto de 64 bits en clientes de 64 bits. Los clientes de 32 bits siempre usan el contexto de 32 bits.",
- "detectionMethod": "Método de detección",
- "detectionMethodTooltip": "Seleccione el tipo de método de detección que se usa para validar la presencia de la aplicación.",
- "fileOrFolder": "Archivo o carpeta",
- "fileOrFolderToolTip": "El archivo o la carpeta para detectar.",
- "operator": "Operador",
- "operatorTooltip": "Seleccione el operador para el método de detección que se usa para validar la comparación.",
- "path": "Ruta de acceso",
- "pathTooltip": "Ruta de acceso completa de la carpeta que contiene el archivo o la carpeta para detectar.",
- "value": "Valor",
- "valueTooltip": "Seleccione un valor que coincida con el método de detección seleccionado. Los métodos de detección de fecha deben especificarse en la hora local."
- },
- "GridColumns": {
- "pathOrCode": "Ruta o código",
- "type": "Tipo"
- },
- "MsiRule": {
- "operator": "Operador",
- "operatorTooltip": "Seleccione el operador para la comparación de validación de versión del producto MSI.",
- "productCode": "Código de producto MSI",
- "productCodeTooltip": "Código de producto MSI válido para la aplicación.",
- "productVersion": "Valor",
- "productVersionCheck": "Comprobación de versión del producto MSI",
- "productVersionCheckTooltip": "Seleccione \"Sí\" para comprobar la versión del producto MSI junto con su código correspondiente.",
- "productVersionTooltip": "Especifique la versión del producto MSI para la aplicación."
- },
- "RegistryRule": {
- "DetectionMethodOptions": {
- "integerComparison": "Comparación de enteros",
- "keyDoesNotExist": "La clave no existe",
- "keyExists": "La clave existe",
- "stringComparison": "Comparación de cadena",
- "valueDoesNotExist": "El valor no existe",
- "valueExists": "El valor existe",
- "versionComparison": "Comparación de versiones"
- },
- "associatedWith32Bit": "Asociado a una aplicación de 32 bits en clientes de 64 bits",
- "associatedWith32BitTooltip": "Seleccione \"Sí\" para buscar en el Registro de 32 bits en clientes de 64 bits. Seleccione \"No\" (predeterminado) para buscar en el Registro de 64 bits en clientes de 64 bits. Los clientes de 32 bits siempre buscan en el Registro de 32 bits.",
- "detectionMethod": "Método de detección",
- "detectionMethodTooltip": "Seleccione el tipo de método de detección que se usa para validar la presencia de la aplicación.",
- "keyPath": "Ruta de acceso de la clave",
- "keyPathTooltip": "La ruta de acceso completa de la entrada del Registro que contiene el valor para detectar.",
- "operator": "Operador",
- "operatorTooltip": "Seleccione el operador para el método de detección que se usa para validar la comparación.",
- "value": "Valor",
- "valueName": "Nombre de valor",
- "valueNameTooltip": "El nombre del valor de Registro para detectar.",
- "valueTooltip": "Seleccione un valor que coincida con el método de detección elegido."
- },
- "RuleTypeOptions": {
- "file": "Archivo",
- "mSI": "MSI",
- "registry": "Registro"
- },
- "gridAriaLabel": "Reglas de detección",
- "header": "Cree una regla que indique la presencia de la aplicación.",
- "noRulesSelectedPlaceholder": "No se ha especificado ninguna regla.",
- "ruleTableLimit": "Puede agregar hasta 25 reglas de detección.",
- "ruleType": "Tipo de regla",
- "ruleTypeTooltip": "Elija el tipo de regla de detección que se va a agregar."
- },
- "RuleConfigurationOptions": {
- "customScript": "Usar un script de detección personalizado",
- "manual": "Configurar manualmente las reglas de detección"
- },
- "bladeTitle": "Reglas de detección",
- "header": "Configure reglas específicas de la aplicación que se usen para detectar la presencia de esta.",
- "rulesFormat": "Formato de las reglas",
- "rulesFormatTooltip": "Elija configurar manualmente las reglas de detección o use un script personalizado para detectar la presencia de la aplicación.",
- "selectorLabel": "Reglas de detección"
- },
- "AppType": {
- "androidEnterpriseSystemApp": "Aplicación del sistema Android Enterprise",
- "androidForWorkApp": "Aplicación de Google Play Store administrado",
- "androidLobApp": "Aplicación de línea de negocio Android",
- "androidStoreApp": "Aplicación de la tienda Android",
- "builtInAndroid": "Aplicación Android integrada",
- "builtInApp": "Aplicación integrada",
- "builtInIos": "Aplicación iOS integrada",
- "default": "",
- "iosLobApp": "Aplicación de línea de negocio iOS",
- "iosStoreApp": "Aplicación de la tienda iOS",
- "iosVppApp": "Aplicación del Programa de Compras por Volumen iOS",
- "lineOfBusinessApp": "Aplicación de línea de negocio",
- "macOSDmgApp": "Aplicación macOS (DMG)",
- "macOSEdgeApp": "Microsoft Edge (macOS)",
- "macOSLobApp": "Aplicación de línea de negocio de macOS",
- "macOSMdatpApp": "ATP de Microsoft Defender (macOS)",
- "macOSOfficeSuiteApp": "Aplicaciones de Microsoft 365 (macOS)",
- "macOsVppApp": "Aplicación del Programa de Compras por Volumen de macOS",
- "managedAndroidLobApp": "Aplicación de línea de negocio Android administrada",
- "managedAndroidStoreApp": "Aplicación de la tienda Android administrada",
- "managedGooglePlayApp": "Aplicación de Google Play Store administrado",
- "managedGooglePlayPrivateApp": "Aplicación privada de Google Play administrado",
- "managedGooglePlayWebApp": "Vínculo web de Google Play administrado",
- "managedIosLobApp": "Aplicación de línea de negocio iOS administrada",
- "managedIosStoreApp": "Aplicación de la tienda iOS administrada",
- "microsoftStoreForBusinessApp": "Aplicación de la Tienda Microsoft para Empresas",
- "microsoftStoreForBusinessReleaseManagedApp": "Tienda Microsoft para Empresas",
- "officeSuiteApp": "Aplicaciones de Microsoft 365 (Windows 10 y versiones posteriores)",
- "webApp": "Vínculo web",
- "windowsAppXLobApp": "Aplicación de línea de negocio de AppX para Windows",
- "windowsClassicApp": "Aplicación de Windows (Win32)",
- "windowsEdgeApp": "Microsoft Edge (Windows 10 y versiones posteriores)",
- "windowsMobileMsiLobApp": "Aplicación de línea de negocio de MSI para Windows",
- "windowsPhone81AppXBundleLobApp": "Aplicación de línea de negocio AppX para Windows Phone 8.1",
- "windowsPhone81AppXLobApp": "Aplicación de línea de negocio AppX para Windows Phone 8.1",
- "windowsPhone81StoreApp": "Aplicación de la Tienda Windows Phone 8.1",
- "windowsPhoneXapLobApp": "Aplicación de línea de negocio de XAP para Windows Phone",
- "windowsStoreApp": "Aplicación de Microsoft Store",
- "windowsUniversalAppXLobApp": "Aplicación de línea de negocio de AppX para Windows Universal",
- "windowsUniversalLobApp": "Aplicación de línea de negocio Windows universal"
- },
- "PolicyType": {
- "AttackSurfaceReductionRules": {
- "configMgr": "Reglas de reducción de la superficie expuesta a ataques (ConfigMgr)"
- },
- "EndpointDetectionandResponse": {
- "mDE": "Detección de puntos de conexión y respuesta"
- },
- "EndpointSecurityTemplate": {
- "aSRAppBrowserSecurity": "Aislamiento de aplicaciones y navegador",
- "aSRApplicationControl": "Control de aplicaciones",
- "aSRAttackSurfaceReduction": "Reglas de reducción de la superficie expuesta a ataques",
- "aSRDeviceControl": "Control de dispositivos",
- "aSRExploitProtection": "Protección contra vulnerabilidades",
- "aSRWebProtection": "Protección web (Microsoft Edge, versión anterior)",
- "aVExclusions": "Exclusiones del Antivirus de Microsoft Defender",
- "antivirus": "Antivirus de Microsoft Defender",
- "cloudPC": "Línea base de seguridad de Windows 365",
- "default": "Seguridad de los puntos de conexión",
- "defenderTest": "Demostración de Microsoft Defender para punto de conexión",
- "diskEncryption": "BitLocker",
- "eDR": "Detección de puntos de conexión y respuesta",
- "edgeSecurityBaseline": "Línea base de Microsoft Edge",
- "edgeSecurityBaselinePreview": "Versión preliminar: línea base de Microsoft Edge",
- "editionUpgradeConfiguration": "Actualización de edición y cambio de modo",
- "firewall": "Firewall de Microsoft Defender",
- "firewallRules": "Reglas del Firewall de Microsoft Defender",
- "identityProtection": "Protección de cuentas",
- "identityProtectionPreview": "Protección de cuentas (vista previa)",
- "mDMSecurityBaseline1810": "Línea base de seguridad de MDM para Windows 10 y versiones posteriores a octubre de 2018",
- "mDMSecurityBaseline1810Preview": "Versión preliminar: Línea base de seguridad de MDM para Windows 10 y versiones posteriores a octubre de 2018",
- "mDMSecurityBaseline1810PreviewBeta": "Versión preliminar: Línea base de seguridad de MDM para Windows 10 para octubre de 2018 (beta)",
- "mDMSecurityBaseline1906": "Línea base de seguridad de MDM para Windows 10 y versiones posteriores a mayo de 2019",
- "mDMSecurityBaseline2004": "Línea base de seguridad de MDM para Windows 10 y versiones posteriores para agosto de 2020",
- "mDMSecurityBaseline2101": "Línea base de seguridad de MDM para Windows 10 y versiones posteriores para diciembre de 2020",
- "macOSAntivirus": "Antivirus",
- "macOSDiskEncryption": "FileVault",
- "macOSFirewall": "Firewall de macOS",
- "microsoftDefenderBaseline": "Línea de base de Microsoft Defender para punto de conexión",
- "office365Baseline": "Línea de base de Microsoft Office O365",
- "office365BaselinePreview": "Versión preliminar: Línea de base de Microsoft Office O365",
- "securityBaselines": "Líneas base de seguridad",
- "test": "Plantilla de prueba",
- "testFirewallRulesSecurityTemplateName": "Reglas del Firewall de Microsoft Defender (prueba)",
- "testIdentityProtectionSecurityTemplateName": "Protección de cuentas (prueba)",
- "windowsSecurityExperience": "Experiencia de Seguridad de Windows"
- },
- "Firewall": {
- "mDE": "Firewall de Microsoft Defender"
- },
- "FirewallRules": {
- "mDE": "Reglas del Firewall de Microsoft Defender"
- },
- "administrativeTemplates": "Plantillas administrativas",
- "androidCompliancePolicy": "Directiva de cumplimiento de Android",
- "aospDeviceOwnerCompliancePolicy": "Directiva de cumplimiento de Android (AOSP)",
- "applicationControl": "Control de aplicaciones",
- "custom": "Personalizado",
- "deliveryOptimization": "Optimización de entrega",
- "derivedPersonalIdentityVerificationCredential": "Credencial derivada",
- "deviceFeatures": "Características del dispositivo",
- "deviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
- "deviceLock": "Bloqueo de dispositivos",
- "deviceOwner": "Perfil de trabajo de propiedad corporativa, dedicado y totalmente administrado",
- "deviceRestrictions": "Restricciones de dispositivos",
- "deviceRestrictionsWindows10Team": "Restricciones de dispositivos (Windows 10 Team)",
- "domainJoinPreview": "Unión a un dominio",
- "editionUpgradeAndModeSwitch": "Actualización de edición y cambio de modo",
- "education": "Educación",
- "email": "Correo electrónico",
- "emailSamsungKnoxOnly": "Correo electrónico (solo Samsung KNOX)",
- "endpointProtection": "Endpoint Protection",
- "expeditedCheckin": "Configuración de administración de dispositivos móviles",
- "exploitProtection": "Protección contra vulnerabilidades",
- "extensions": "Extensiones",
- "hardwareConfigurations": "Configuraciones del BIOS",
- "identityProtection": "Identity Protection",
- "iosCompliancePolicy": "Directiva de cumplimiento de iOS",
- "kiosk": "Pantalla completa",
- "macCompliancePolicy": "Directiva de cumplimiento de Mac",
- "microsoftDefenderAntivirus": "Antivirus de Microsoft Defender",
- "microsoftDefenderAntivirusexclusions": "Exclusiones del Antivirus de Microsoft Defender",
- "microsoftDefenderAtpWindows10Desktop": "Microsoft Defender para punto de conexión (dispositivos de escritorio que ejecutan Windows 10 o versiones posteriores)",
- "microsoftDefenderFirewallRules": "Reglas del Firewall de Microsoft Defender",
- "microsoftEdgeBaseline": "Línea base de Microsoft Edge",
- "mxProfileZebraOnly": "Perfil de MX (solo Zebra)",
- "networkBoundary": "Límite de red",
- "oemConfig": "OEMConfig",
- "overrideGroupPolicy": "Reemplazar la directiva de grupo",
- "pkcsCertificate": "Certificado PKCS",
- "pkcsImportedCertificate": "Certificado PKCS importado",
- "preferenceFile": "Archivo de preferencias",
- "presets": "Valores preestablecidos",
- "scepCertificate": "Certificado SCEP",
- "secureAssessmentEducation": "Evaluación segura (Educación)",
- "settingsCatalog": "Catálogo de configuración",
- "sharedMultiUserDevice": "Dispositivo multiusuario compartido",
- "softwareUpdates": "Actualizaciones de software",
- "trustedCertificate": "Certificado de confianza",
- "unknown": "Desconocido",
- "unsupported": "No compatible",
- "vpn": "VPN",
- "wiFi": "Wi-Fi",
- "wiFiImport": "Importación de Wi-Fi",
- "windows10CompliancePolicy": "Directiva de cumplimiento de Windows 10/11",
- "windows10MobileCompliancePolicy": "Directiva de cumplimiento de Windows 10 Mobile",
- "windows10XScep": "Certificado SCEP: PRUEBA",
- "windows10XTrustedCertificate": "Certificado de confianza: PRUEBA",
- "windows10XVPN": "VPN: PRUEBA",
- "windows10XWifi": "WiFi: PRUEBA",
- "windows8CompliancePolicy": "Directiva de cumplimiento de Windows 8",
- "windowsHealthMonitoring": "Seguimiento de estado de Windows",
- "windowsInformationProtection": "Windows Information Protection",
- "windowsPhoneCompliancePolicy": "Directiva de cumplimiento de Windows Phone",
- "windowsUpdateforBusiness": "Windows Update para empresas",
- "wiredNetwork": "Red cableada",
- "workProfile": "Perfil de trabajo de propiedad personal"
- },
- "OfficeSuiteAppsTab": {
- "acceptLicenseOnBehalfOfUsersLabel": "Aceptar los términos de licencia de software de Microsoft en nombre de los usuarios",
- "appSuiteConfigurationLabel": "Configuración del conjunto de aplicaciones",
- "appSuiteInformationLabel": "Información del conjunto de aplicaciones",
- "appsToBeInstalledLabel": "Aplicaciones que se instalarán como parte del conjunto",
- "architectureLabel": "Arquitectura",
- "architectureTooltip": "Define si se ha instalado en los dispositivos la edición de 32 o 64 bits de las aplicaciones de Microsoft 365.",
- "configurationDesignerLabel": "Diseñador de configuraciones",
- "configurationFileLabel": "Archivo de configuración",
- "configurationSettingsFormatLabel": "Formato de opciones de configuración",
- "configureAppSuiteLabel": "Configurar conjunto de aplicaciones",
- "configuredLabel": "Configurado",
- "currentVersionLabel": "Versión actual",
- "currentVersionTooltip": "Esta es la versión actual de Office que está configurada en este conjunto. Este valor se actualizará cuando se configure y guarde una versión más reciente.",
- "enableMicrosoftSearchAsDefaultTooltip": "Instala un servicio en segundo plano que ayuda a determinar si hay una extensión de Búsqueda de Microsoft en Bing para Google Chrome instalada en el dispositivo.",
- "enterXmlDataLabel": "Especificar datos XML",
- "languagesLabel": "Idiomas",
- "languagesTooltip": "De forma predeterminada, Intune instalará Office con el idioma predeterminado del sistema operativo. Elija otros idiomas que quiera instalar.",
- "learnMoreText": "Más información",
- "newUpdateChannelTooltip": "Define la frecuencia de actualización de la aplicación con nuevas características.",
- "noCurrentVersionText": "No hay ninguna versión actual.",
- "noLanguagesSelectedLabel": "No hay ningún idioma seleccionado",
- "notConfiguredLabel": "Sin configurar",
- "propertiesLabel": "Propiedades",
- "removeOtherVersionsLabel": "Quitar otras versiones",
- "removeOtherVersionsTooltip": "Seleccione Sí para quitar otras versiones de Office (MSI) de los dispositivos de usuario.",
- "selectOfficeAppsLabel": "Seleccionar aplicaciones de Office",
- "selectOfficeAppsTooltip": "Seleccione las aplicaciones de Office 365 que quiere instalar como parte del conjunto correspondiente.",
- "selectOtherOfficeAppsLabel": "Seleccionar otras aplicaciones de Office (se requiere licencia)",
- "selectOtherOfficeAppsTooltip": "Si posee licencias para estas aplicaciones de Office adicionales, también puede asignarlas con Intune.",
- "specificVersionLabel": "Versión específica",
- "updateChannelLabel": "Canal de actualización",
- "updateChannelTooltip": "Define la frecuencia de actualización de la aplicación con nuevas características.
\r\nMensual: proporciona a los usuarios las características más recientes de Office en cuanto están disponibles.
\r\nCanal mensual para empresas: proporciona a los usuarios las características más recientes de Office una vez al mes, el segundo martes de cada mes.
\r\nMensual (dirigido): ofrece una vista anticipada de la próxima versión del canal mensual. Se trata de un canal de actualización admitido y suele estar disponible por lo menos una semana antes de que se publique una versión del canal mensual que contiene nuevas características.
\r\nSemestral: proporciona a los usuarios las nuevas características de Office solo unas pocas veces al año.
\r\nSemestral (dirigido): proporciona a los usuarios piloto y a los evaluadores de compatibilidad de aplicaciones la oportunidad de probar los próximos semestres.",
- "useMicrosoftSearchAsDefault": "Instalar servicio en segundo plano para la Búsqueda de Microsoft en Bing",
- "useSharedComputerActivationLabel": "Usar activación en equipos compartidos",
- "useSharedComputerActivationTooltip": "La activación de equipos compartidos permite implementar aplicaciones de Microsoft 365 en equipos que utilizan varios usuarios. Normalmente, los usuarios solo pueden instalar y activar aplicaciones de Microsoft 365 en un número limitado de dispositivos, como cinco equipos. El uso de aplicaciones de Microsoft 365 con la activación de equipos compartidos no tiene en cuenta ese límite.",
- "versionToInstallLabel": "Versión para instalar",
- "versionToInstallTooltip": "Seleccione la versión de Office que debe instalarse.",
- "xLanguagesSelectedLabel": "Idiomas seleccionados: {0}",
- "xmlConfigurationLabel": "Configuración de XML"
- },
- "OfficeApplicationType": {
- "access": "Access",
- "bing": "Búsqueda de Microsoft como opción predeterminada",
- "excel": "Excel",
- "groove": "OneDrive (Groove)",
- "lync": "Skype Empresarial",
- "oneDrive": "OneDrive Escritorio",
- "oneNote": "OneNote",
- "outlook": "Outlook",
- "powerPoint": "PowerPoint",
- "publisher": "Publisher",
- "teams": "Teams",
- "word": "Word"
- },
- "WindowsQualityUpdateProfile": {
- "Details": {
- "DaysUntilForcedReboot": {
- "label": "Número de días que debe esperarse antes de aplicar el reinicio"
- },
- "Description": {
- "label": "Descripción"
- },
- "Name": {
- "label": "Nombre"
- },
- "QualityUpdateRelease": {
- "label": "Acelere la instalación de las actualizaciones de calidad si la versión del sistema operativo del dispositivo es anterior a:"
- },
- "bladeTitle": "Actualizaciones de calidad para Windows 10 y versiones posteriores (versión preliminar)",
- "loadError": "Error al cargar."
- },
- "TabName": {
- "qualityUpdateSettings": "Configuración"
- },
- "infoBoxText": "El único control de actualización de calidad dedicado disponible, aparte de la directiva de anillos de actualización de Windows 10 y posteriores, es la capacidad de acelerar las actualizaciones de calidad de los dispositivos que se encuentran en un nivel de revisión especificado. Habrá controles adicionales disponibles en el futuro.",
- "warningBoxText": "Aunque acelerar las actualizaciones de software puede ayudar a reducir el tiempo necesario para lograr el cumplimiento, su impacto en la productividad del usuario final es mayor. Las posibilidades de experimentar un reinicio durante el horario laboral aumentan considerablemente."
- },
- "Devices": {
- "General": {
- "android": "Android"
- },
- "aOSP": "Proyecto de código abierto de Android",
- "android": "Administrador de dispositivos Android",
- "androidWorkProfile": "Android Enterprise (perfil de trabajo)",
- "iOS": "iOS/iPadOS",
- "mac": "macOS",
- "windows": "Windows (MDM)",
- "windows10": "Windows 10 y versiones posteriores",
- "windowsHomeSku": "SKU de Windows Home",
- "windowsMobile": "Windows Mobile"
- },
"SettingDetails": {
"CustomPolicyConfigurationProfile": {
"uploadControlPlaceHolderText": "Seleccionar un archivo de perfil de configuración"
@@ -3675,7 +1707,7 @@
"aESGCM128": "AES-128-GCM (ICV de 16 octetos)",
"aESGCM256": "AES-256-GCM (ICV de 16 octetos)",
"aadSharedDeviceDataClearAppsDescription": "Agregue a la lista cualquier aplicación no optimizada para el modo de dispositivo compartido. Los datos locales de la aplicación se borrarán cada vez que un usuario cierra sesión en una aplicación optimizada para el modo de dispositivo compartido. Disponible para dispositivos dedicados inscritos en el modo compartido que ejecutan Android 9 y versiones posteriores.",
- "aadSharedDeviceDataClearAppsName": "Borrar datos locales en aplicaciones no optimizadas para el modo de dispositivo compartido (versión preliminar pública)",
+ "aadSharedDeviceDataClearAppsName": "Borrar datos locales en aplicaciones no optimizadas para el modo de dispositivo compartido",
"accountsPageDescription": "Impide el acceso a Cuentas en la aplicación Configuración.",
"accountsPageName": "Cuentas",
"accountsSignInAssistantSettingsDescription": "Bloquea el servicio Asistente para inicio de sesión de Microsoft (wlidsvc). Si este valor no está configurado, el usuario controla el servicio wlidsvc NT (inicio manual).",
@@ -5503,7 +3535,7 @@
"enableEndUserAccessToDefenderName": "Acceso de usuario final a Defender",
"enableEngagedRestartDescription": "Habilita la configuración que permite al usuario cambiar al reinicio establecido.",
"enableEngagedRestartName": "Permitir al usuario que reinicie (reinicio establecido)",
- "enableIdentityPrivacyDescription": "Esta propiedad enmascara los nombres de usuario con el texto que especifique. Por ejemplo, si escribe \"anónimo\", cada usuario que se autentica con esta conexión Wi-Fi con su nombre de usuario real se muestra como \"anónimo\".",
+ "enableIdentityPrivacyDescription": "Esta propiedad enmascara los nombres de usuario con el texto que escriba. Por ejemplo, si escribe \"anónimo\", cada usuario que se autentique con esta conexión Wi-Fi con su nombre de usuario real se mostrará como \"anónimo\". Esto puede ser necesario si se usa la autenticación de certificados basada en dispositivos.",
"enableIdentityPrivacyName": "Privacidad de identidad (identidad externa)",
"enableNetworkInspectionSystemDescription": "Bloquea el tráfico malintencionado detectado por las signaturas en el Sistema de inspección de red (NIS).",
"enableNetworkInspectionSystemName": "Sistema de inspección de red (NIS)",
@@ -7252,6 +5284,8 @@
"presharedKeyEncodingDescription": "Codifica las claves previamente compartidas con UTF-8.",
"presharedKeyEncodingName": "Codificación de clave previamente compartida",
"preventAny": "Impedir uso compartido más allá de los límites",
+ "primaryAuthenticationMethodName": "Método de autenticación principal",
+ "primaryAuthenticationMethodTEAPDescription": "Elija la forma principal en la que desea que los usuarios se autentiquen. Al seleccionar Certificados, seleccione uno de los perfiles de certificado (SCEP o PKCS) que también se implementa en el dispositivo. Este es el certificado de identidad que presenta el dispositivo al servidor.",
"primarySMTPAddressOption": "Dirección SMTP principal",
"printersColumns": "por ejemplo, nombre DNS de la impresora",
"printersDescription": "Aprovisiona automáticamente las impresoras según sus nombres de host de red. Esta configuración no admite impresoras compartidas.",
@@ -7663,6 +5697,8 @@
"searchEnableRemoteQueriesName": "Consultas remotas",
"secondActiveEthernet": "Segunda Ethernet activa",
"secondEthernet": "Segunda Ethernet",
+ "secondaryAuthenticationMethodName": "Método de autenticación secundario",
+ "secondaryAuthenticationMethodTEAPDescription": "Elija la forma secundaria en la que desea que los usuarios se autentiquen. Al seleccionar Certificados, seleccione uno de los perfiles de certificado (SCEP o PKCS) que también se implementa en el dispositivo. Este es el certificado de identidad que presenta el dispositivo al servidor.",
"secretKey": "Clave secreta:",
"secureBootEnabledDescription": "Debe estar habilitado el arranque seguro en el dispositivo",
"secureBootEnabledName": "Debe estar habilitado el arranque seguro en el dispositivo",
@@ -8074,6 +6110,7 @@
"systemUpdateWindow9": "4:30",
"systemWindowsBlockedDescription": "Deshabilita las notificaciones en ventanas, por ejemplo, notificaciones del sistema, alertas y errores del sistema, llamadas entrantes y llamadas salientes.",
"systemWindowsBlockedName": "Ventanas de notificación",
+ "tEAPName": "EAP de Tunnel (TEAP)",
"tLSMinMax": "La versión mínima de TLS debe ser menor o igual que la versión máxima de TLS.",
"tLSVersionRangeMaximum": "Intervalo máximo de versiones de TLS",
"tLSVersionRangeMaximumDescription": "Escriba una versión de TLS máxima entre 1.0, 1.1 o 1.2. Si se deja en blanco, se usará el valor predeterminado 1.2.",
@@ -8126,6 +6163,17 @@
"timeWindowSameStartEndDayTime": "El día y la hora de finalización no pueden coincidir con el día y la hora de inicio.",
"timeZoneDescription": "Seleccione la zona horaria de los dispositivos de destino.",
"timeZoneName": "Zona horaria",
+ "timeoutFifteenMinutes": "15 minutos",
+ "timeoutFiveMinutes": "5 minutos",
+ "timeoutFourHours": "4 horas",
+ "timeoutNever": "No utilizar tiempo de espera",
+ "timeoutOneHour": "1 hora",
+ "timeoutOneMinute": "1 minuto",
+ "timeoutTenMinutes": "10 minutos",
+ "timeoutThirtyMinutes": "30 minutos",
+ "timeoutThreeMinutes": "3 minutos",
+ "timeoutTwoHours": "2 horas",
+ "timeoutTwoMinutes": "2 minutos",
"toggleConfigurationPkgDescription": "Cargue un paquete de configuración firmado que se usará para incorporar el cliente de Microsoft Defender para punto de conexión.",
"toggleConfigurationPkgName": "Tipo de paquete de configuración de cliente de Microsoft Defender para punto de conexión:",
"trafficRuleAppName": "Aplicación",
@@ -8824,6 +6872,33 @@
"win10WifiWirelessSecurityTypeName": "Tipo de seguridad inalámbrica",
"win10WifiWirelessSecurityTypeOpen": "Open (sin autenticación)",
"win10WifiWirelessSecurityTypeWPA": "WPA/WPA2: personal",
+ "win10WiredAuthenticationModeDescription": "Elija si se va a autenticar el usuario o el dispositivo, o bien se va a usar la autenticación de invitados (ninguna). Si está usando la autenticación de certificado, asegúrese de que el tipo de certificado coincide con el tipo de autenticación.",
+ "win10WiredAuthenticationModeName": "Modo de autenticación",
+ "win10WiredAuthenticationPeriodDescription": "Número de segundos que debe esperar el cliente después de un intento de autenticación antes de producirse un error. Elija un número entre uno y 3600. Si no se especifica nada, se usa un valor de 18 segundos.",
+ "win10WiredAuthenticationPeriodName": "Período de autenticación",
+ "win10WiredAuthenticationRetryDelayPeriodDescription": "Número de segundos entre una autenticación incorrecta y el intento de autenticación siguiente. Elija un valor entre uno y 3600. Si no se especifica nada, se usa un valor de un segundo.",
+ "win10WiredAuthenticationRetryDelayPeriodName": "Período de intervalo entre reintentos de autenticación ",
+ "win10WiredFIPSComplianceDescription": "La validación con el estándar FIPS 140-2 es obligatoria para todas las agencias del gobierno federal de Estados Unidos que usan sistemas de seguridad basados en criptografía para proteger la información confidencial no clasificada que se almacena digitalmente.",
+ "win10WiredFIPSComplianceName": "Forzar que el perfil cableado sea compatible con el Estándar federal de procesamiento de información (FIPS)",
+ "win10WiredGuest": "Invitado",
+ "win10WiredMachine": "Máquina",
+ "win10WiredMachineOrUser": "Usuario o máquina",
+ "win10WiredMaximumAuthenticationFailuresDescription": "Escriba el número máximo de errores de autenticación para este conjunto de credenciales. Si no se especifica nada, se usa un intento.",
+ "win10WiredMaximumAuthenticationFailuresName": "Máximo de errores de autenticación",
+ "win10WiredMaximumEAPOLStartMessagesDescription": "Elija un número de mensajes EAPOL-Start entre uno y 100. Si no se especifica nada, se envía un máximo de tres mensajes.",
+ "win10WiredMaximumEAPOLStartMessagesName": "Máximo de EAPOL-Start",
+ "win10WiredNetworkAuthenticationBlockPeriodDescription": "Período de bloqueo de autenticación en minutos. Se usa para especificar la duración durante la que se bloquearán los intentos de autenticación automática después de un intento de autenticación erróneo. Elija un valor entre 0 y 1440.",
+ "win10WiredNetworkAuthenticationBlockPeriodName": "Período de bloqueo (minutos)",
+ "win10WiredNetworkAuthenticationModeName": "Modo de autenticación",
+ "win10WiredNetworkDoNotEnforceName": "No aplicar",
+ "win10WiredNetworkEnforce8021XDescription": "Especifica si el servicio de configuración automática para redes cableadas requiere el uso de 802.1X para la autenticación de puertos.",
+ "win10WiredNetworkEnforce8021XName": "802.1x",
+ "win10WiredNetworkEnforceName": "Aplicar",
+ "win10WiredRememberCredentialsDescription": "Elija si quiere almacenar en caché las credenciales de los usuarios cuando las escriban la primera vez que se conecten a la red cableada. Las credenciales almacenadas en caché se usan para las conexiones posteriores y los usuarios no tienen que volver a escribirlas. No configurar esta opción es equivalente a establecerla en Sí.",
+ "win10WiredRememberCredentialsName": "Recordar credenciales en cada inicio de sesión",
+ "win10WiredStartPeriodDescription": "Número de segundos que debe esperarse antes de enviar un mensaje EAPOL-Start. Elija un valor entre uno y 3600. Si no se especifica nada, se usa un valor de cinco segundos.",
+ "win10WiredStartPeriodName": "Período de inicio",
+ "win10WiredUser": "Usuario",
"win10appLockerApplicationControlAllowDescription": "Estas aplicaciones tendrán permiso para ejecutarse",
"win10appLockerApplicationControlAllowName": "Forzar",
"win10appLockerApplicationControlAuditComponentsAndStoreAppsDescription": "El modo \"Solo auditoría\" registra todos los eventos en registros de eventos de cliente locales, pero no bloquea la ejecución de ninguna aplicación. Para los componentes de Windows y las aplicaciones de Microsoft Store, se registrará que cumplen los requisitos de seguridad.",
@@ -9165,7 +7240,6 @@
"deviceConditionsInfoParagraph2": "Pueden configurarse valores similares basados en el dispositivo para los dispositivos inscritos.",
"deviceConditionsInfoParagraph2LinkText": "Obtenga más información acerca de cómo establecer la configuración de cumplimiento de los dispositivos inscritos.",
"deviceId": "Id. de dispositivo",
- "deviceLockComplexityValidationFailureNotes": "Notas:
\r\n\r\n - El bloqueo del dispositivo puede requerir una complejidad de la contraseña de: BAJA, MEDIA o ALTA destinada a Android 11+. Para los dispositivos que funcionan en Android 10 y versiones anteriores, si se establece un valor de complejidad bajo, medio o alto, se usará de forma predeterminada el comportamiento esperado para \"Complejidad baja\".
\r\n - Las definiciones de contraseña siguientes están sujetas a cambios. Consulte DevicePolicyManager| Desarrolladores de Android para obtener las definiciones más actualizadas de los distintos niveles de complejidad de contraseña.
\r\n
\r\n\r\nBaja
\r\n\r\n - La contraseña puede ser un patrón o PIN con repetición (4444) o secuencias ordenadas (1234, 4321, 2468).
\r\n
\r\n\r\nMedia
\r\n\r\n - PIN sin repeticiones (4444) ni secuencias ordenadas (1234, 4321, 2468) con una longitud mínima de al menos 4 caracteres
\r\n - Contraseñas alfabéticas con una longitud mínima de al menos 4 caracteres
\r\n - Contraseñas alfanuméricas con una longitud mínima de al menos 4 caracteres
\r\n
\r\n\r\nAlta
\r\n\r\n - PIN sin repeticiones (4444) ni secuencias ordenadas (1234, 4321, 2468) con una longitud mínima de al menos 8 caracteres
\r\n - Contraseñas alfabéticas con una longitud mínima de al menos 6 caracteres
\r\n - Contraseñas alfanuméricas con una longitud mínima de al menos 6 caracteres
\r\n
\r\n",
"deviceLockedOpenFilesOptionsText": "Cuando el dispositivo esté bloqueado y haya archivos abiertos",
"deviceLockedOptionText": "Cuando el dispositivo esté bloqueado",
"deviceManufacturer": "Fabricante del dispositivo",
@@ -9463,7 +7537,7 @@
"reporting": "Informes",
"reports": "Informes",
"require": "Requerir",
- "requireDeviceLockComplexityOnApps": "Requerir complejidad de bloqueo de dispositivo",
+ "requireDeviceLockOnApps": "Require device lock",
"requireThreatScanOnApps": "Requerir examen de amenazas en las aplicaciones",
"requiredField": "Este campo no puede estar vacío.",
"requiredSafetyNetEvaluationType": "Tipo de evaluación de SafetyNet que se requiere",
@@ -9659,6 +7733,7 @@
"yourDataIsBeingDownloadedEllipsis": "Se están descargando sus datos. Este proceso puede tardar unos minutos...",
"yourDataIsBeingDownloadedMinutes": "Se están descargando los datos. Este proceso puede tardar unos minutos...",
"yourProtectionLevel": "Su nivel de protección",
+ "rules": "Reglas",
"basics": "Datos básicos",
"modeTableHeader": "Modo de grupo",
"appAssignmentMsg": "Grupo",
@@ -9695,221 +7770,2042 @@
"licenseTypeDevice": "Dispositivo",
"licenseTypeUser": "Usuario"
},
- "Languages": {
- "ar-aE": "Árabe (Emiratos Árabes Unidos)",
- "ar-bH": "Árabe (Baréin)",
- "ar-dZ": "Árabe (Argelia)",
- "ar-eG": "Árabe (Egipto)",
- "ar-iQ": "Árabe (Irak)",
- "ar-jO": "Árabe (Jordania)",
- "ar-kW": "Árabe (Kuwait)",
- "ar-lB": "Árabe (Líbano)",
- "ar-lY": "Árabe (Libia)",
- "ar-mA": "Árabe (Marruecos)",
- "ar-oM": "Árabe (Omán)",
- "ar-qA": "Árabe (Qatar)",
- "ar-sA": "Árabe (Arabia Saudí)",
- "ar-sY": "Árabe (Siria)",
- "ar-tN": "Árabe (Túnez)",
- "ar-yE": "Árabe (Yemen)",
- "az-cyrl": "Azerbaiyano (cirílico, Azerbaiyán)",
- "az-latn": "Azerbaiyano (latino, Azerbaiyán)",
- "bn-bD": "Bengalí (Bangladés)",
- "bn-iN": "Bengalí (India)",
- "bs-cyrl": "Bosnio (cirílico)",
- "bs-latn": "Bosnio (latino)",
- "zh-cN": "Chino (RPC)",
- "zh-hK": "Chino (RAE de Hong Kong)",
- "zh-mO": "Chino (RAE de Macao)",
- "zh-sG": "Chino (Singapur)",
- "zh-tW": "Chino (Taiwán)",
- "hr-bA": "Croata (latino)",
- "hr-hR": "Croata (Croacia)",
- "nl-bE": "Neerlandés (Bélgica)",
- "nl-nL": "Neerlandés (Países Bajos)",
- "en-aU": "Inglés (Australia)",
- "en-bZ": "Inglés (Belice)",
- "en-cA": "Inglés (Canadá)",
- "en-cabn": "Inglés (Caribe)",
- "en-iE": "Inglés (Irlanda)",
- "en-iN": "Inglés (India)",
- "en-jM": "Inglés (Jamaica)",
- "en-mY": "Inglés (Malasia)",
- "en-nZ": "Inglés (Nueva Zelanda)",
- "en-pH": "Inglés (Filipinas)",
- "en-sG": "Inglés (Singapur)",
- "en-tT": "Inglés (Trinidad y Tobago)",
- "en-uK": "Inglés (Reino Unido)",
- "en-uS": "Inglés (Estados Unidos)",
- "en-zA": "Inglés (Sudáfrica)",
- "en-zW": "Inglés (Zimbabue)",
- "fr-bE": "Francés (Bélgica)",
- "fr-cA": "Francés (Canadá)",
- "fr-cH": "Francés (Suiza)",
- "fr-fR": "Francés (Francia)",
- "fr-lU": "Francés (Luxemburgo)",
- "fr-mC": "Francés (Mónaco)",
- "de-aT": "Alemán (Austria)",
- "de-cH": "Alemán (Suiza)",
- "de-dE": "Alemán (Alemania)",
- "de-lI": "Alemán (Liechtenstein)",
- "de-lU": "Alemán (Luxemburgo)",
- "iu-cans": "Inuktitut (silábico, Canadá)",
- "iu-latn": "Inuktitut (latino, Canadá)",
- "it-cH": "Italiano (Suiza)",
- "it-iT": "Italiano (Italia)",
- "ms-bN": "Malayo (Brunéi Darussalam)",
- "ms-mY": "Malayo (Malasia)",
- "mn-cN": "Mongol (mongol tradicional, RPC)",
- "mn-mN": "Mongol (cirílico, Mongolia)",
- "no-nB": "Noruego (Bokmål, Noruega)",
- "no-nn": "Noruego, Nynorsk (Noruega)",
- "pt-bR": "Portugués (Brasil)",
- "pt-pT": "Portugués (Portugal)",
- "quz-bO": "Quechua (Bolivia)",
- "quz-eC": "Quechua (Ecuador)",
- "quz-pE": "Quechua (Perú)",
- "smj-nO": "Sami lule (Noruega)",
- "smj-sE": "Sami lule (Suecia)",
- "se-fI": "Sami, septentrional (Finlandia)",
- "se-nO": "Sami, septentrional (Noruega)",
- "se-sE": "Sami septentrional (Suecia)",
- "sma-nO": "Sami, meridional (Noruega)",
- "sma-sE": "Sami, meridional (Suecia)",
- "smn": "Sami, inari (Finlandia)",
- "sms": "Sami, skolt (Finlandia)",
- "sr-Cyrl-bA": "Serbio (cirílico)",
- "sr-Cyrl-rS": "Serbio (cirílico, antigua Serbia y Montenegro)",
- "sr-Latn-bA": "Serbio (latino)",
- "sr-Latn-rS": "Serbio (latino, Serbia)",
- "dsb": "Bajo sorbio (Alemania)",
- "hsb": "Alto sorbio (Alemania)",
- "es-es-tradnl": "Español (España, alfabetización tradicional)",
- "es-aR": "Español (Argentina)",
- "es-bO": "Español (Bolivia)",
- "es-cL": "Español (Chile)",
- "es-cO": "Español (Colombia)",
- "es-cR": "Español (Costa Rica)",
- "es-dO": "Español (República Dominicana)",
- "es-eC": "Español (Ecuador)",
- "es-eS": "Español (España)",
- "es-gT": "Español (Guatemala)",
- "es-hN": "Español (Honduras)",
- "es-mX": "Español (México)",
- "es-nI": "Español (Nicaragua)",
- "es-pA": "Español (Panamá)",
- "es-pE": "Español (Perú)",
- "es-pR": "Español (Puerto Rico)",
- "es-pY": "Español (Paraguay)",
- "es-sV": "Español (El Salvador)",
- "es-uS": "Español (Estados Unidos)",
- "es-uY": "Español (Uruguay)",
- "es-vE": "Español (Venezuela)",
- "sv-fI": "Sueco (Finlandia)",
- "uz-cyrl": "Uzbeko (cirílico, Uzbekistán)",
- "uz-latn": "Uzbeko (Latino, Uzbekistán)",
- "af": "Afrikáans (Sudáfrica)",
- "sq": "Albanés (Albania)",
- "am": "Amárico (Etiopía)",
- "hy": "Armenio (Armenia)",
- "as": "Asamés (India)",
- "ba": "Baskir (Rusia)",
- "eu": "Euskera (euskera)",
- "be": "Bielorruso (Belarús)",
- "br": "Bretón (Francia)",
- "bg": "Búlgaro (Bulgaria)",
- "ca": "Catalán (Catalán)",
- "co": "Corso (Francia)",
- "cs": "Checo (República Checa)",
- "da": "Danés (Dinamarca)",
- "prs": "Dari (Afganistán)",
- "dv": "Divehi (Maldivas)",
- "et": "Estonio (Estonia)",
- "fo": "Feroés (Islas Feroe)",
- "fil": "Filipino (Filipinas)",
- "fi": "Finés (Finlandia)",
- "gl": "Gallego (gallego)",
- "ka": "Georgiano (Georgia)",
- "el": "Griego (Grecia)",
- "gu": "Guyaratí (India)",
- "ha": "Hausa (latino, Nigeria)",
- "he": "Hebreo (Israel)",
- "hi": "Hindi (India)",
- "hu": "Húngaro (Hungría)",
- "is": "Islandés (Islandia)",
- "ig": "Igbo (Nigeria)",
- "id": "Indonesio (Indonesia)",
- "ga": "Irlandés (Irlanda)",
- "xh": "Xhosa (Sudáfrica)",
- "zu": "Zulú (Sudáfrica)",
- "ja": "Japonés (Japón)",
- "kn": "Canarés (India)",
- "kk": "Kazajo (Kazajistán)",
- "km": "Jemer (Camboya)",
- "rw": "Kinyarwanda (Ruanda)",
- "sw": "Suajili (Kenia)",
- "kok": "Konkani (India)",
- "ko": "Coreano (Corea del Sur)",
- "ky": "Kirguís (Kirguistán)",
- "lo": "Lao (R.D.P. de Laos)",
- "lv": "Letón (Letonia)",
- "lt": "Lituano (Lituania)",
- "lb": "Luxemburgués (Luxemburgo)",
- "mk": "Macedonio (Macedonia del Norte)",
- "ml": "Malayalam (India)",
- "mt": "Maltés (Malta)",
- "mi": "Maorí (Nueva Zelanda)",
- "mr": "Maratí (India)",
- "moh": "Mohawk (Mohawk)",
- "ne": "Nepalí (Nepal)",
- "oc": "Occitano (Francia)",
- "or": "Odia (India)",
- "ps": "Pastún (Afganistán)",
- "fa": "Persa",
- "pl": "Polaco (Polonia)",
- "pa": "Punyabí (India)",
- "ro": "Rumano (Rumanía)",
- "rm": "Romanche (Suiza)",
- "ru": "Ruso (Rusia)",
- "sa": "Sánscrito (India)",
- "st": "Sotho septentrional (Sudáfrica)",
- "tn": "Setsuana (Sudáfrica)",
- "si": "Cingalés (Sri Lanka)",
- "sk": "Eslovaco (Eslovaquia)",
- "sl": "Esloveno (Eslovenia)",
- "sv": "Sueco (Suecia)",
- "syr": "Sirio (Siria)",
- "tg": "Tayiko (cirílico, Tayikistán)",
- "ta": "Tamil (India)",
- "tt": "Tártaro (Rusia)",
- "te": "Telugu (India)",
- "th": "Tailandés (Tailandia)",
- "bo": "Tibetano (RPC)",
- "tr": "Turco (Turquía)",
- "tk": "Turcomano (Turkmenistán)",
- "uk": "Ucraniano (Ucrania)",
- "ur": "Urdú (Pakistán)",
- "vi": "Vietnamita (Vietnam)",
- "cy": "Galés (Reino Unido)",
- "wo": "Wolof (Senegal)",
- "ii": "Yi (RPC)",
- "yo": "Yoruba (Nigeria)"
- },
- "AppProtection": {
- "allAppTypes": "Destinar a todos los tipos de aplicaciones",
- "androidPlatformLabel": "Android",
- "appsInAndroidWorkProfile": "Aplicaciones en el perfil de trabajo Android",
- "appsOnIntuneManagedDevices": "Aplicaciones en dispositivos administrados de Intune",
- "appsOnUnmanagedDevices": "Aplicaciones en dispositivos no administrados",
- "iOSPlatformLabel": "iOS/iPadOS",
- "iosAndroidMacPlatformLabel": "iOS, Android, Mac",
- "iosAndroidPlatformLabel": "iOS, Android",
- "macPlatformLabel": "MAC",
- "notAvailable": "No disponible",
- "windows10PlatformLabel": "Windows 10 y versiones posteriores",
- "withEnrollment": "Con inscripción",
- "withoutEnrollment": "Sin inscripción"
- },
+ "ApplicabilityRules": {
+ "GridLabel": {
+ "property": "Propiedad",
+ "rule": "Regla",
+ "ruleDetails": "Detalles de la regla",
+ "value": "Valor"
+ },
+ "assignIf": "Asignar perfil si",
+ "deleteWarning": "Esta acción eliminará la regla de aplicabilidad seleccionada",
+ "dontAssignIf": "No asignar perfil si",
+ "editionDisplayText": "{0} {1}",
+ "editionDisplayTextMore": "y {0} más",
+ "instructions": "Especifique cómo aplicar este perfil en un grupo asignado. Intune solo aplicará el perfil a los dispositivos que cumplan los criterios combinados de estas reglas.",
+ "maxText": "Máx.",
+ "minText": "Mín.",
+ "noActionRow": "No hay reglas de aplicabilidad especificadas",
+ "oSVersion": "Por ejemplo, 1.2.3.4",
+ "toText": "hasta el",
+ "windows10Education": "Windows 10/11 Education",
+ "windows10EducationN": "Windows 10/11 Education N",
+ "windows10Enterprise": "Windows 10/11 Enterprise",
+ "windows10EnterpriseN": "Windows 10/11 Enterprise N",
+ "windows10HolographicEnterprise": "Windows 10 Holographic for Business",
+ "windows10Home": "Windows 10/11 Home",
+ "windows10HomeChina": "Windows 10 Home China",
+ "windows10HomeN": "Windows 10/11 Home N",
+ "windows10HomeSingleLanguage": "Windows 10/11 Home en un solo idioma",
+ "windows10IoTCore": "Windows 10 IoT Core",
+ "windows10IoTCoreCommercial": "Windows 10 IoT Core Commercial",
+ "windows10Mobile": "Windows 10 Mobile",
+ "windows10MobileEnterprise": "Windows 10 Mobile Enterprise",
+ "windows10OsEdition": "Edición del sistema operativo",
+ "windows10OsVersion": "Versión del SO",
+ "windows10Professional": "Windows 10/11 Professional",
+ "windows10ProfessionalEducation": "Windows 10/11 Professional Education",
+ "windows10ProfessionalEducationN": "Windows 10/11 Professional Education N",
+ "windows10ProfessionalN": "Windows 10 Professional N",
+ "windows10ProfessionalWorkstation": "Windows 10/11 Professional Workstation",
+ "windows10ProfessionalWorkstationN": "Windows 10/11 Professional Workstation N"
+ },
+ "DetectionRules": {
+ "ComparisonOperators": {
+ "equals": "Es igual a",
+ "greaterThan": "Mayor que",
+ "greaterThanOrEqualTo": "Mayor o igual que",
+ "lessThan": "Menor que",
+ "lessThanOrEqualTo": "Menor o igual que",
+ "notEqualTo": "No igual a"
+ },
+ "CustomScript": {
+ "enforceSignatureCheck": "Exigir comprobación de firma del script y ejecutarlo silenciosamente",
+ "enforceSignatureCheckTooltip": "Seleccione \"Sí\" para comprobar que el script está firmado por un editor de confianza, lo que permite ejecutarlo sin que se muestren advertencias ni avisos. El script se ejecutará sin bloqueos. Seleccione \"No\" (predeterminado) para ejecutarlo con la confirmación del usuario final sin comprobación de la firma.",
+ "header": "Usar un script de detección personalizado",
+ "runAs32Bit": "Ejecutar script como proceso de 32 bits en clientes de 64 bits",
+ "runAs32BitTooltip": "Seleccione \"Sí\" para ejecutar el script en un proceso de 32 bits en clientes de 64 bits. Seleccione \"No\" (predeterminado) para ejecutarlo en un proceso de 64 bits en clientes de 64 bits. Los clientes de 32 bits ejecutan el script en un proceso de 32 bits.",
+ "scriptFile": "Archivo de script",
+ "scriptFileNotSelectedValidation": "No hay ningún archivo de script seleccionado.",
+ "scriptFileTooltip": "Seleccione un script de PowerShell que detecte la presencia de la aplicación en el cliente. La aplicación se detectará cuando el script devuelva un código de salida de valor 0 y escriba un valor de cadena en STDOUT.",
+ "scriptSizeLimitValidation": "El script de detección supera el tamaño máximo permitido. Para resolverlo, reduzca el tamaño del script de detección."
+ },
+ "Manual": {
+ "FileRule": {
+ "DetectionMethodOptions": {
+ "dateCreated": "Fecha de creación",
+ "dateModified": "Fecha de modificación",
+ "doesNotExist": "El archivo o la carpeta no existe.",
+ "fileOrFolderExists": "El archivo o la carpeta existe",
+ "sizeInMB": "Tamaño en MB",
+ "version": "Cadena (versión)"
+ },
+ "associatedWith32Bit": "Asociado a una aplicación de 32 bits en clientes de 64 bits",
+ "associatedWith32BitTooltip": "Seleccione \"Sí\" para expandir las variables de entorno de ruta de acceso en el contexto de 32 bits en clientes de 64 bits. Seleccione \"No\" (predeterminado) para expandir las variables de ruta de acceso en el contexto de 64 bits en clientes de 64 bits. Los clientes de 32 bits siempre usan el contexto de 32 bits.",
+ "detectionMethod": "Método de detección",
+ "detectionMethodTooltip": "Seleccione el tipo de método de detección que se usa para validar la presencia de la aplicación.",
+ "fileOrFolder": "Archivo o carpeta",
+ "fileOrFolderToolTip": "El archivo o la carpeta para detectar.",
+ "operator": "Operador",
+ "operatorTooltip": "Seleccione el operador para el método de detección que se usa para validar la comparación.",
+ "path": "Ruta de acceso",
+ "pathTooltip": "Ruta de acceso completa de la carpeta que contiene el archivo o la carpeta para detectar.",
+ "value": "Valor",
+ "valueTooltip": "Seleccione un valor que coincida con el método de detección seleccionado. Los métodos de detección de fecha deben especificarse en la hora local."
+ },
+ "GridColumns": {
+ "pathOrCode": "Ruta o código",
+ "type": "Tipo"
+ },
+ "MsiRule": {
+ "operator": "Operador",
+ "operatorTooltip": "Seleccione el operador para la comparación de validación de versión del producto MSI.",
+ "productCode": "Código de producto MSI",
+ "productCodeTooltip": "Código de producto MSI válido para la aplicación.",
+ "productVersion": "Valor",
+ "productVersionCheck": "Comprobación de versión del producto MSI",
+ "productVersionCheckTooltip": "Seleccione \"Sí\" para comprobar la versión del producto MSI junto con su código correspondiente.",
+ "productVersionTooltip": "Especifique la versión del producto MSI para la aplicación."
+ },
+ "RegistryRule": {
+ "DetectionMethodOptions": {
+ "integerComparison": "Comparación de enteros",
+ "keyDoesNotExist": "La clave no existe",
+ "keyExists": "La clave existe",
+ "stringComparison": "Comparación de cadena",
+ "valueDoesNotExist": "El valor no existe",
+ "valueExists": "El valor existe",
+ "versionComparison": "Comparación de versiones"
+ },
+ "associatedWith32Bit": "Asociado a una aplicación de 32 bits en clientes de 64 bits",
+ "associatedWith32BitTooltip": "Seleccione \"Sí\" para buscar en el Registro de 32 bits en clientes de 64 bits. Seleccione \"No\" (predeterminado) para buscar en el Registro de 64 bits en clientes de 64 bits. Los clientes de 32 bits siempre buscan en el Registro de 32 bits.",
+ "detectionMethod": "Método de detección",
+ "detectionMethodTooltip": "Seleccione el tipo de método de detección que se usa para validar la presencia de la aplicación.",
+ "keyPath": "Ruta de acceso de la clave",
+ "keyPathTooltip": "La ruta de acceso completa de la entrada del Registro que contiene el valor para detectar.",
+ "operator": "Operador",
+ "operatorTooltip": "Seleccione el operador para el método de detección que se usa para validar la comparación.",
+ "value": "Valor",
+ "valueName": "Nombre de valor",
+ "valueNameTooltip": "El nombre del valor de Registro para detectar.",
+ "valueTooltip": "Seleccione un valor que coincida con el método de detección elegido."
+ },
+ "RuleTypeOptions": {
+ "file": "Archivo",
+ "mSI": "MSI",
+ "registry": "Registro"
+ },
+ "gridAriaLabel": "Reglas de detección",
+ "header": "Cree una regla que indique la presencia de la aplicación.",
+ "noRulesSelectedPlaceholder": "No se ha especificado ninguna regla.",
+ "ruleTableLimit": "Puede agregar hasta 25 reglas de detección.",
+ "ruleType": "Tipo de regla",
+ "ruleTypeTooltip": "Elija el tipo de regla de detección que se va a agregar."
+ },
+ "RuleConfigurationOptions": {
+ "customScript": "Usar un script de detección personalizado",
+ "manual": "Configurar manualmente las reglas de detección"
+ },
+ "bladeTitle": "Reglas de detección",
+ "header": "Configure reglas específicas de la aplicación que se usen para detectar la presencia de esta.",
+ "rulesFormat": "Formato de las reglas",
+ "rulesFormatTooltip": "Elija configurar manualmente las reglas de detección o use un script personalizado para detectar la presencia de la aplicación.",
+ "selectorLabel": "Reglas de detección"
+ },
+ "PolicyType": {
+ "AttackSurfaceReductionRules": {
+ "configMgr": "Reglas de reducción de la superficie expuesta a ataques (ConfigMgr)"
+ },
+ "EndpointDetectionandResponse": {
+ "mDE": "Detección de puntos de conexión y respuesta"
+ },
+ "EndpointSecurityTemplate": {
+ "aSRAppBrowserSecurity": "Aislamiento de aplicaciones y navegador",
+ "aSRApplicationControl": "Control de aplicaciones",
+ "aSRAttackSurfaceReduction": "Reglas de reducción de la superficie expuesta a ataques",
+ "aSRDeviceControl": "Control de dispositivos",
+ "aSRExploitProtection": "Protección contra vulnerabilidades",
+ "aSRWebProtection": "Protección web (Microsoft Edge, versión anterior)",
+ "aVExclusions": "Exclusiones del Antivirus de Microsoft Defender",
+ "antivirus": "Antivirus de Microsoft Defender",
+ "cloudPC": "Línea base de seguridad de Windows 365",
+ "default": "Seguridad de los puntos de conexión",
+ "defenderTest": "Demostración de Microsoft Defender para punto de conexión",
+ "diskEncryption": "BitLocker",
+ "eDR": "Detección de puntos de conexión y respuesta",
+ "edgeSecurityBaseline": "Línea base de Microsoft Edge",
+ "edgeSecurityBaselinePreview": "Versión preliminar: línea base de Microsoft Edge",
+ "editionUpgradeConfiguration": "Actualización de edición y cambio de modo",
+ "firewall": "Firewall de Microsoft Defender",
+ "firewallRules": "Reglas del Firewall de Microsoft Defender",
+ "identityProtection": "Protección de cuentas",
+ "identityProtectionPreview": "Protección de cuentas (vista previa)",
+ "mDMSecurityBaseline1810": "Línea base de seguridad de MDM para Windows 10 y versiones posteriores a octubre de 2018",
+ "mDMSecurityBaseline1810Preview": "Versión preliminar: Línea base de seguridad de MDM para Windows 10 y versiones posteriores a octubre de 2018",
+ "mDMSecurityBaseline1810PreviewBeta": "Versión preliminar: Línea base de seguridad de MDM para Windows 10 para octubre de 2018 (beta)",
+ "mDMSecurityBaseline1906": "Línea base de seguridad de MDM para Windows 10 y versiones posteriores a mayo de 2019",
+ "mDMSecurityBaseline2004": "Línea base de seguridad de MDM para Windows 10 y versiones posteriores para agosto de 2020",
+ "mDMSecurityBaseline2101": "Línea base de seguridad de MDM para Windows 10 y versiones posteriores para diciembre de 2020",
+ "macOSAntivirus": "Antivirus",
+ "macOSDiskEncryption": "FileVault",
+ "macOSFirewall": "Firewall de macOS",
+ "microsoftDefenderBaseline": "Línea de base de Microsoft Defender para punto de conexión",
+ "office365Baseline": "Línea de base de Microsoft Office O365",
+ "office365BaselinePreview": "Versión preliminar: Línea de base de Microsoft Office O365",
+ "securityBaselines": "Líneas base de seguridad",
+ "test": "Plantilla de prueba",
+ "testFirewallRulesSecurityTemplateName": "Reglas del Firewall de Microsoft Defender (prueba)",
+ "testIdentityProtectionSecurityTemplateName": "Protección de cuentas (prueba)",
+ "windowsSecurityExperience": "Experiencia de Seguridad de Windows"
+ },
+ "Firewall": {
+ "mDE": "Firewall de Microsoft Defender"
+ },
+ "FirewallRules": {
+ "mDE": "Reglas del Firewall de Microsoft Defender"
+ },
+ "administrativeTemplates": "Plantillas administrativas",
+ "androidCompliancePolicy": "Directiva de cumplimiento de Android",
+ "aospDeviceOwnerCompliancePolicy": "Directiva de cumplimiento de Android (AOSP)",
+ "applicationControl": "Control de aplicaciones",
+ "custom": "Personalizado",
+ "deliveryOptimization": "Optimización de entrega",
+ "derivedPersonalIdentityVerificationCredential": "Credencial derivada",
+ "deviceFeatures": "Características del dispositivo",
+ "deviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
+ "deviceLock": "Bloqueo de dispositivos",
+ "deviceOwner": "Perfil de trabajo de propiedad corporativa, dedicado y totalmente administrado",
+ "deviceRestrictions": "Restricciones de dispositivos",
+ "deviceRestrictionsWindows10Team": "Restricciones de dispositivos (Windows 10 Team)",
+ "domainJoinPreview": "Unión a un dominio",
+ "editionUpgradeAndModeSwitch": "Actualización de edición y cambio de modo",
+ "education": "Educación",
+ "email": "Correo electrónico",
+ "emailSamsungKnoxOnly": "Correo electrónico (solo Samsung KNOX)",
+ "endpointProtection": "Endpoint Protection",
+ "expeditedCheckin": "Configuración de administración de dispositivos móviles",
+ "exploitProtection": "Protección contra vulnerabilidades",
+ "extensions": "Extensiones",
+ "hardwareConfigurations": "Configuraciones del BIOS",
+ "identityProtection": "Identity Protection",
+ "iosCompliancePolicy": "Directiva de cumplimiento de iOS",
+ "kiosk": "Pantalla completa",
+ "macCompliancePolicy": "Directiva de cumplimiento de Mac",
+ "microsoftDefenderAntivirus": "Antivirus de Microsoft Defender",
+ "microsoftDefenderAntivirusexclusions": "Exclusiones del Antivirus de Microsoft Defender",
+ "microsoftDefenderAtpWindows10Desktop": "Microsoft Defender para punto de conexión (dispositivos de escritorio que ejecutan Windows 10 o versiones posteriores)",
+ "microsoftDefenderFirewallRules": "Reglas del Firewall de Microsoft Defender",
+ "microsoftEdgeBaseline": "Línea base de Microsoft Edge",
+ "mxProfileZebraOnly": "Perfil de MX (solo Zebra)",
+ "networkBoundary": "Límite de red",
+ "oemConfig": "OEMConfig",
+ "overrideGroupPolicy": "Reemplazar la directiva de grupo",
+ "pkcsCertificate": "Certificado PKCS",
+ "pkcsImportedCertificate": "Certificado PKCS importado",
+ "preferenceFile": "Archivo de preferencias",
+ "presets": "Valores preestablecidos",
+ "scepCertificate": "Certificado SCEP",
+ "secureAssessmentEducation": "Evaluación segura (Educación)",
+ "settingsCatalog": "Catálogo de configuración",
+ "sharedMultiUserDevice": "Dispositivo multiusuario compartido",
+ "softwareUpdates": "Actualizaciones de software",
+ "trustedCertificate": "Certificado de confianza",
+ "unknown": "Desconocido",
+ "unsupported": "No compatible",
+ "vpn": "VPN",
+ "wiFi": "Wi-Fi",
+ "wiFiImport": "Importación de Wi-Fi",
+ "windows10CompliancePolicy": "Directiva de cumplimiento de Windows 10/11",
+ "windows10MobileCompliancePolicy": "Directiva de cumplimiento de Windows 10 Mobile",
+ "windows10XScep": "Certificado SCEP: PRUEBA",
+ "windows10XTrustedCertificate": "Certificado de confianza: PRUEBA",
+ "windows10XVPN": "VPN: PRUEBA",
+ "windows10XWifi": "WiFi: PRUEBA",
+ "windows8CompliancePolicy": "Directiva de cumplimiento de Windows 8",
+ "windowsHealthMonitoring": "Seguimiento de estado de Windows",
+ "windowsInformationProtection": "Windows Information Protection",
+ "windowsPhoneCompliancePolicy": "Directiva de cumplimiento de Windows Phone",
+ "windowsUpdateforBusiness": "Windows Update para empresas",
+ "wiredNetwork": "Red cableada",
+ "workProfile": "Perfil de trabajo de propiedad personal"
+ },
+ "Win32Requirements": {
+ "AdditionalRequirements": {
+ "File": {
+ "fileOrFolderToolTip": "El archivo o la carpeta como requisito seleccionado.",
+ "pathToolTip": "La ruta de acceso completa del archivo o la carpeta que se detectará.",
+ "property": "Propiedad",
+ "valueToolTip": "Seleccione un valor de requisito que coincida con el método de detección seleccionado. Se debe especificar el requisito de fecha y hora en el formato local."
+ },
+ "GridColumns": {
+ "pathOrScript": "Ruta de acceso o script",
+ "type": "Tipo"
+ },
+ "Registry": {
+ "keyPath": "Ruta de acceso de la clave",
+ "keyPathTooltip": "La ruta de acceso completa de la entrada del Registro que contiene el valor como un requisito.",
+ "operator": "Operator",
+ "operatorTooltip": "Seleccione el operador para la comparación.",
+ "registryRequirement": "Requisito de clave de registro",
+ "registryRequirementTooltip": "Seleccione la comparación de requisitos de clave del Registro.",
+ "valueName": "Nombre de valor",
+ "valueNameTooltip": "El nombre del valor de Registro necesario."
+ },
+ "RequirementTypeOptions": {
+ "fileType": "Archivo",
+ "registry": "Registro",
+ "script": "Script"
+ },
+ "Script": {
+ "RequirementMethodOptions": {
+ "boolean": "Booleano",
+ "dateTime": "Fecha y hora",
+ "float": "Punto flotante",
+ "integer": "Entero",
+ "string": "Cadena",
+ "version": "Versión"
+ },
+ "ScriptContent": {
+ "emptyMessage": "El contenido del script no debe estar vacío."
+ },
+ "duplicateName": "El nombre de script {0} ya se ha usado. Especifique otro nombre.",
+ "enforceSignatureCheck": "Exigir comprobación de firma del script",
+ "enforceSignatureCheckTooltip": "Seleccione \"Sí\" para comprobar que el script está firmado por un editor de confianza, lo que permite ejecutarlo sin advertencias ni avisos. El script se ejecutará desbloqueado. Seleccione \"No\" (predeterminado) para ejecutarlo con la confirmación del usuario final, pero sin comprobación de firma.",
+ "loggedOnCredentials": "Ejecutar este script con las credenciales de inicio de sesión",
+ "loggedOnCredentialsTooltip": "Ejecutar script mediante las credenciales del dispositivo que ha iniciado sesión.",
+ "operatorTooltip": "Seleccione el operador para la comparación de requisitos.",
+ "requirementMethod": "Seleccionar el tipo de datos de salida",
+ "requirementMethodTooltip": "Seleccione el tipo de datos usado al determinar un requisito de coincidencia de detección.",
+ "scriptFile": "Archivo de script",
+ "scriptFileTooltip": "Seleccione un script de PowerShell que detecte la presencia de la aplicación en el cliente. Si se detecta la aplicación, el proceso de requisitos proporcionará un código de salida con un valor de 0 y escribirá un valor de cadena en STDOUT.",
+ "scriptName": "Nombre del script",
+ "value": "Valor",
+ "valueTooltip": "Seleccione un valor de requisito que coincida con el método de detección seleccionado. Se debe especificar el requisito de fecha y hora en el formato local."
+ },
+ "bladeTitle": "Agregar una regla de requisitos",
+ "createRequirementHeader": "Cree un requisito.",
+ "header": "Configurar reglas de requisitos adicionales",
+ "label": "Reglas de requisitos adicionales",
+ "noRequirementsSelectedPlaceholder": "No se ha especificado ningún requisito.",
+ "requirementType": "Tipo de requisito",
+ "requirementTypeTooltip": "Elija el tipo de método de detección utilizado para determinar cómo se valida un requisito."
+ },
+ "architectures": "Arquitectura del sistema operativo",
+ "architecturesTooltip": "Elija las arquitecturas necesarias para instalar la aplicación.",
+ "bladeTitle": "Requisitos",
+ "diskSpace": "Espacio en disco necesario (MB)",
+ "diskSpaceTooltip": "Espacio en disco libre necesario en la unidad del sistema para instalar la aplicación.",
+ "header": "Especifique los requisitos que deben cumplir los dispositivos antes de instalar la aplicación:",
+ "maximumTextFieldValue": "El valor debe ser como máximo de {0}.",
+ "minimumCpuSpeed": "Velocidad de CPU mínima requerida (MHz)",
+ "minimumCpuSpeedTooltip": "La velocidad de CPU mínima necesaria para instalar la aplicación.",
+ "minimumLogicalProcessors": "Número mínimo de procesadores lógicos necesarios",
+ "minimumLogicalProcessorsTooltip": "El número mínimo de procesadores lógicos necesarios para instalar la aplicación.",
+ "minimumOperatingSystem": "Versión mínima del sistema operativo",
+ "minimumOperatingSystemTooltip": "Seleccione la versión mínima del sistema operativo necesaria para instalar la aplicación.",
+ "minumumTextFieldValue": "El valor debe ser como mínimo de {0}.",
+ "physicalMemory": "Memoria física requerida (MB)",
+ "physicalMemoryTooltip": "Memoria física (RAM) necesaria para instalar la aplicación.",
+ "selectorLabel": "Requisitos",
+ "validNumber": "Especifique un número válido."
+ },
+ "AzureIAM": {
+ "AdrsUserActionSelectionWarning": {
+ "conditions": "Las condiciones que requieren el registro de dispositivos no están disponibles con la acción de usuario \"Registrar o unir dispositivos\".",
+ "message": "En las directivas creadas para la acción de usuario \"Registrar o unir dispositivos\", solo se puede usar \"Requerir autenticación multifactor\".{0}"
+ },
+ "AuthContext": {
+ "Delete": {
+ "failure": "No se pudo eliminar {0}.",
+ "failureCa": "No se pudo eliminar {0} porque las directivas de CA hacen referencia a él",
+ "modifying": "Eliminando {0}",
+ "success": "{0} se eliminó correctamente"
+ },
+ "Included": {
+ "none": "No se ha seleccionado ninguna aplicación o acción ni ningún contexto de autenticación.",
+ "plural": "{0} contextos de autenticación incluidos",
+ "singular": "1 contexto de autenticación incluido"
+ },
+ "InfoBlade": {
+ "createTitle": "Adición de un contexto de autenticación",
+ "descPlaceholder": "Agregue una descripción para el contexto de autenticación.",
+ "modifyTitle": "Modificación del contexto de autenticación",
+ "namePlaceholder": "Por ejemplo, ubicación de confianza, dispositivo de confianza, autorización segura.",
+ "publishDesc": "La publicación en aplicaciones hará que el contexto de autenticación esté disponible para que las aplicaciones lo usen. Efectúe la publicación una vez que haya finalizado la configuración de la directiva de acceso condicional para la etiqueta. [Más información][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150966",
+ "publishLabel": "Publicar en aplicaciones",
+ "titleDesc": "Configure un contexto de autenticación que se usará para proteger los datos y las acciones de la aplicación. Use nombres y descripciones que puedan entender los administradores de aplicaciones. [Más información][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150965"
+ },
+ "Notify": {
+ "failure": "No se pudo actualizar {0}",
+ "modifying": "Modificación de {0} en curso",
+ "success": "Actualizadas correctamente: {0}."
+ },
+ "WhatIf": {
+ "selected": "Contexto de autenticación incluido"
+ },
+ "addNewStepUp": "Nuevo contexto de autenticación",
+ "checkBoxInfo": "Seleccione los contextos de autenticación a los que se aplicará esta directiva.",
+ "configure": "Configurar contextos de autenticación",
+ "createCA": "Asigne directivas de acceso condicional al contexto de autenticación.",
+ "dataGrid": "Lista de contextos de autenticación",
+ "deleteFailedByReference": "You cannot delete this authentication context because it is being referenced by CA policies.",
+ "description": "Descripción",
+ "documentation": "Documentación",
+ "getStarted": "Introducción",
+ "label": "Contexto de autenticación (versión preliminar)",
+ "menuLabel": "Contexto de autenticación (versión preliminar)",
+ "name": "Nombre",
+ "noAuthContextConfigured": "No se ha configurado ningún contexto de autenticación.",
+ "noAuthContextSet": "No hay contextos de trabajo de autenticación",
+ "noData": "No hay ningún contexto de autenticación para mostrar.",
+ "selectionInfo": "El contexto de autenticación se usa para proteger los datos y las acciones de la aplicación en aplicaciones como SharePoint y Microsoft Cloud App Security.",
+ "step": "Paso",
+ "tabDescription": "Administre el contexto de autenticación para proteger los datos y las acciones en sus aplicaciones. [Más información][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150965",
+ "tagResources": "Etiquete los recursos con un contexto de autenticación."
+ },
+ "AuthenticationStrength": {
+ "Mode": {
+ "deviceBasedPush": "Microsoft Authenticator (inicio de sesión en el teléfono)",
+ "deviceBasedPushFido2X509Certificate": "Microsoft Authenticator (inicio de sesión en el teléfono) + Fido 2 + Autenticación basada en certificados",
+ "deviceBasedPushX509CertificateSingleFactor": "Microsoft Authenticator (inicio de sesión en el teléfono) + Fido 2 + Autenticación basada en certificados (factor único)",
+ "email": "Código de acceso de un solo uso de correo electrónico",
+ "emailOtp": "Código de acceso de un solo uso de correo electrónico",
+ "federatedMultiFactor": "Multifactor federado",
+ "federatedSingleFactor": "Factor único federado",
+ "federatedSingleFactorFederatedMultiFactor": "Factor único federado + Multifactor federado",
+ "fido2": "Clave de seguridad FIDO 2",
+ "fido2X509CertificateSingleFactor": "Clave de seguridad FIDO 2 + Autenticación basada en certificados (factor único)",
+ "hardwareOath": "Tokens OATH de hardware",
+ "hardwareOathEmail": "Tokens OATH de hardware y código de acceso de un solo uso de correo electrónico",
+ "hardwareOathX509CertificateSingleFactor": "Tokens OATH de hardware y autenticación basada en certificados (factor único)",
+ "microsoftAuthenticatorPSIX509CertificateSingleFactor": "Microsoft Authenticator (inicio de sesión en el teléfono) + Autenticación basada en certificados (factor único)",
+ "microsoftAuthenticatorPsi": "Microsoft Authenticator (inicio de sesión en el teléfono)",
+ "microsoftAuthenticatorPush": "Microsoft Authenticator (notificación push)",
+ "microsoftAuthenticatorPushEmail": "Microsoft Authenticator (notificación push) y código de acceso de un solo uso de correo electrónico",
+ "microsoftAuthenticatorPushX509CertificateSingleFactor": "Microsoft Authenticator (notificación push) + autenticación basada en certificados (factor único)",
+ "none": "Ninguno",
+ "password": "Contraseña",
+ "passwordDeviceBasedPush": "Contraseña + Microsoft Authenticator (inicio de sesión en el teléfono)",
+ "passwordFido2": "Contraseña + clave de seguridad FIDO 2",
+ "passwordHardwareOath": "Contraseña y tokens OATH de hardware",
+ "passwordMicrosoftAuthenticatorPSI": "Contraseña + Microsoft Authenticator (inicio de sesión en el teléfono)",
+ "passwordMicrosoftAuthenticatorPush": "Contraseña + Microsoft Authenticator (notificación push)",
+ "passwordSms": "Contraseña + SMS",
+ "passwordSoftwareOath": "Contraseña y tokens OATH de software",
+ "passwordTemporaryAccessPassMultiUse": "Contraseña + Pase de acceso temporal (multiuso)",
+ "passwordTemporaryAccessPassOneTime": "Contraseña + Pase de acceso temporal (uso único)",
+ "passwordVoice": "Contraseña + Voz",
+ "sms": "SMS",
+ "smsEmail": "SMS y código de acceso de un solo uso de correo electrónico",
+ "smsSignIn": "Inicio de sesión por SMS",
+ "smsX509CertificateSingleFactor": "SMS + autenticación basada en certificados (factor único)",
+ "softwareOath": "Tokens OATH de software",
+ "softwareOathEmail": "Tokens OATH de software y código de acceso de un solo uso de correo electrónico",
+ "softwareOathX509CertificateSingleFactor": "Tokens OATH de software y autenticación basada en certificados (factor único)",
+ "temporaryAccessPassMultiUse": "Pase de acceso temporal (multiuso)",
+ "temporaryAccessPassMultiUseX509CertificateSingleFactor": "Pase de acceso temporal (multiuso) + Autenticación basada en certificados (factor único)",
+ "temporaryAccessPassOneTime": "Pase de acceso temporal (uso único)",
+ "temporaryAccessPassOneTimeX509CertificateSingleFactor": "Pase de acceso temporal (uso único) + Autenticación basada en certificados (factor único)",
+ "voice": "Voz",
+ "voiceEmail": "Voz y código de acceso de un solo uso de correo electrónico",
+ "voiceX509CertificateSingleFactor": "Voz + autenticación basada en certificados (factor único)",
+ "windowsHelloForBusiness": "Windows Hello para empresas",
+ "x509CertificateMultiFactor": "Autenticación basada en certificados (multifactor)",
+ "x509CertificateSingleFactor": "Autenticación basada en certificados (factor único)"
+ }
+ },
+ "CAS": {
+ "BuiltinPolicy": {
+ "Option": {
+ "blockDownloads": "Bloqueo de descargas (versión preliminar)",
+ "monitorOnly": "Solo supervisión (versión preliminar)",
+ "protectDownloads": "Protección de las descargas (versión preliminar)",
+ "useCustomControls": "Usar directiva personalizada..."
+ },
+ "ariaLabel": "Elegir el tipo de Control de aplicaciones de acceso condicional que se aplicará"
+ }
+ },
+ "ChooseApplications": {
+ "Grid": {
+ "appIdAria": "Id. de la aplicación: {0}"
+ },
+ "LowerGrid": {
+ "ariaLabel": "Lista de aplicaciones en la nube seleccionadas"
+ },
+ "UpperGrid": {
+ "ariaLabel": "Lista de aplicaciones en la nube que coinciden con el término de búsqueda"
+ }
+ },
+ "ChooseLocations": {
+ "Validation": {
+ "failed": "Con \"Ubicaciones seleccionadas\", debe elegir al menos una ubicación.",
+ "selector": "Elija por lo menos una ubicación."
+ }
+ },
+ "ClientApp": {
+ "Clients": {
+ "Validation": {
+ "failed": "Debe seleccionar al menos uno de los clientes que se muestran a continuación."
+ }
+ }
+ },
+ "ClientConditionsInfo": {
+ "browserAndModern": "Esta directiva solo se aplica al explorador y a aplicaciones de autenticación modernas. Para aplicar la directiva a todas las aplicaciones cliente, habilite la condición de aplicación cliente y selecciónelas todas.",
+ "classicExperience": "Tras crear esta directiva, se ha actualizado la configuración predeterminada de las aplicaciones cliente.",
+ "legacyAuth": "Si no se configuran, las directivas ahora se aplican a todas las aplicaciones cliente, incluidas la autenticación moderna y la heredada."
+ },
+ "CloudAppFilterBlade": {
+ "AssignmentFilter": {
+ "header": "Atributo",
+ "placeholder": "Elegir un atributo"
+ },
+ "Configure": {
+ "infoBalloon": "Configure los filtros de aplicación a los que quiere que se aplique la directiva."
+ },
+ "NoPermissions": {
+ "learnMoreAria": "Más información sobre los permisos de atributo de seguridad personalizados.",
+ "message": "No tiene los permisos necesarios para usar atributos de seguridad personalizados."
+ },
+ "gridHeader": "Mediante el uso de atributos de seguridad personalizados, puede usar el generador de reglas o el cuadro de texto de sintaxis de reglas para crear o editar las reglas de filtro. En la versión preliminar, solo se admiten atributos de tipo Cadena. No se mostrarán atributos de tipo Entero o Booleano.",
+ "learnMoreAria": "Más información sobre el uso del generador de reglas y el cuadro de texto de sintaxis.",
+ "noAttributes": "No hay ningún atributo personalizado disponible para filtrar. Debe configurar algunos atributos para usar este filtro.",
+ "title": "Editar filtro (versión preliminar)"
+ },
+ "CloudAppsUserActions": {
+ "any": "Cualquier aplicación o acción en la nube",
+ "infoBalloon": "Aplicación de nube o acción de usuario que quiere probar. Por ejemplo, \"SharePoint Online\".",
+ "learnMore": "Controle el acceso de los usuarios de acuerdo con todas las acciones o con acciones específicas de las aplicaciones en la nube.",
+ "learnMoreB2C": "Controle el acceso de los usuarios con base en todas o algunas de las aplicaciones en la nube.",
+ "title": "Aplicaciones en la nube o acciones"
+ },
+ "CloudappsSelectionBlade": {
+ "Excluded": {
+ "gridAria": "Lista de aplicaciones en la nube excluidas"
+ },
+ "Filter": {
+ "configured": "Configurado",
+ "label": "Editar filtro (versión preliminar)",
+ "with": "{0} con {1}"
+ },
+ "Included": {
+ "gridAria": "Lista de aplicaciones en la nube incluidas"
+ },
+ "Validation": {
+ "authContext": "Con \"contexto de autenticación\", debe configurar al menos un subelemento.",
+ "selectApps": "Es necesario configurar \"{0}\".",
+ "selector": "Seleccione por lo menos una aplicación.",
+ "userActions": "Con \"acciones de usuario\", debe configurar al menos un subelemento."
+ }
+ },
+ "DeviceState": {
+ "LearnMore": {
+ "message": "Controlar el acceso de usuario cuando el dispositivo desde el que el usuario inicia sesión está \\\"unido a Azure AD híbrido\\\" o \\\"marcado como conforme\\\".\n Esto ha quedado en desuso. Use en su lugar \\\"{1}\\\"."
+ }
+ },
+ "Errors": {
+ "notFound": "La directiva no se encuentra o se ha eliminado.",
+ "notFoundDetailed": "La directiva \"{0}\" ya no existe; puede que se haya eliminado."
+ },
+ "GuestsOrExternalUsers": {
+ "allExternalTenantsLabel": "Todas las organizaciones Azure AD",
+ "b2bCollaborationGuestLabel": "Usuarios invitados de colaboración B2B",
+ "b2bCollaborationMemberLabel": "Usuarios miembros de la colaboración B2B",
+ "b2bDirectConnectUserLabel": "Usuarios de conexión directa B2B",
+ "enumeratedExternalTenantsError": "Seleccione al menos un inquilino externo",
+ "enumeratedExternalTenantsLabel": "Seleccione las organizaciones de Azure AD",
+ "externalTenantsLabel": "Especificar organizaciones externas de Azure AD",
+ "externalUserDropdownLabel": "Elegir los tipos de usuario invitados o externos",
+ "externalUsersError": "Seleccionar al menos un tipo de usuario o invitado externo",
+ "guestOrExternalUsersInfoContent": "Incluye Colaboración B2B, conexión directa B2B y otros tipos de usuarios externos.",
+ "guestOrExternalUsersLabel": "Usuarios invitados o externos",
+ "internalGuestLabel": "Usuarios invitados locales",
+ "otherExternalUserLabel": "Otros usuarios externos"
+ },
+ "NamedLocation": {
+ "Form": {
+ "CountryLookup": {
+ "ariaLabel": "Método de búsqueda por país",
+ "gps": "Determinación de la ubicación por coordenadas de GPS",
+ "info": "Si se configura la condición de ubicación de una directiva de acceso condicional, la aplicación de autenticación solicitará a los usuarios que compartan su ubicación de GPS. ",
+ "ip": "Determinación de la ubicación por dirección IP (solo IPv4)"
+ },
+ "Header": {
+ "new": "Nueva ubicación ({0})",
+ "update": "Actualizar ubicación ({0})"
+ },
+ "IP": {
+ "learn": "Configure intervalos IPv4 e IPv6 de ubicaciones con nombre.\n[Más información][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
+ },
+ "Include": {
+ "infoBalloon": "Los países y regiones desconocidos son direcciones IP que no están asociadas a ningún país ni a ninguna región concretos. [Más información][1]\n\nSe incluye lo siguiente:\n* Direcciones IPv6\n* Direcciones IPv4 sin una asignación directa\n[1]: https://aka.ms/canamedlocations\n",
+ "label": "Incluir países o regiones desconocidos"
+ },
+ "Name": {
+ "empty": "El nombre no puede estar vacío",
+ "placeholder": "Asigne un nombre a esta ubicación"
+ },
+ "PrivateLink": {
+ "learn": "Crear una nueva ubicación con nombre que contenga Private Links para Azure AD.\n[Learn more][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
+ },
+ "Search": {
+ "countries": "Buscar países",
+ "names": "Buscar nombres",
+ "privateLinks": "Buscar Private Links"
+ },
+ "Trusted": {
+ "label": "Marcar como ubicación de confianza"
+ },
+ "enter": "Escriba un nuevo intervalo IPv4 o IPv6",
+ "example": "p. ej.: 40.77.182.32/27 o 2a01:111::/32"
+ },
+ "Label": {
+ "addCountries": "Ubicación de los países",
+ "addIpRange": "Ubicación de los intervalos de direcciones IP",
+ "addPrivateLink": "Azure Private Links"
+ },
+ "Notification": {
+ "Create": {
+ "Failed": {
+ "description": "Error al crear la nueva ubicación ({0})",
+ "title": "Error en la creación"
+ },
+ "InProgress": {
+ "description": "Creando nueva ubicación ({0})",
+ "title": "Creación en curso"
+ },
+ "Success": {
+ "description": "Nueva ubicación creada correctamente ({0})",
+ "title": "Creación realizada"
+ }
+ },
+ "Delete": {
+ "Failed": {
+ "description": "Error al eliminar la ubicación ({0})",
+ "title": "Error en la eliminación"
+ },
+ "InProgress": {
+ "description": "Eliminando la ubicación ({0})",
+ "title": "Eliminación en curso"
+ },
+ "Success": {
+ "description": "Ubicación eliminada correctamente ({0})",
+ "title": "Eliminación realizada"
+ }
+ },
+ "Update": {
+ "Failed": {
+ "description": "Error al actualizar la ubicación ({0})",
+ "title": "Error en la actualización"
+ },
+ "InProgress": {
+ "description": "Actualizando la ubicación ({0})",
+ "title": "Actualización en curso"
+ },
+ "Success": {
+ "description": "Ubicación actualizada correctamente ({0})",
+ "title": "Actualización completada correctamente"
+ }
+ }
+ },
+ "PrivateLinks": {
+ "grid": "Lista de Private Links"
+ },
+ "Trusted": {
+ "title": "Tipo de confianza",
+ "trusted": "De confianza"
+ },
+ "Type": {
+ "all": "Todos los tipos",
+ "countries": "Países o regiones",
+ "ipRanges": "Intervalos IP",
+ "privateLinks": "Private Links",
+ "title": "Tipo de ubicación"
+ },
+ "iPRangeInvalidError": "El valor debe ser un intervalo IPv4 o IPv6 válido.",
+ "iPRangeLinkOrSiteLocalError": "Se ha detectado la red IP como una dirección local de sitio o de vínculo.",
+ "iPRangeOctetError": "La red IP no puede empezar por 0 ni 255.",
+ "iPRangePrefixError": "El prefijo de red IP debe estar comprendido entre /{0} y /{1}.",
+ "iPRangePrivateError": "Se ha detectado la red IP como una dirección privada."
+ },
+ "NamedNetwork": {
+ "List": {
+ "gridAria": "Lista de ubicaciones con nombre"
+ }
+ },
+ "Policies": {
+ "Grid": {
+ "aria": "Lista de directivas de acceso condicional"
+ },
+ "countText": "Se han encontrado {0} de {1} directivas.",
+ "countTextSingular": "Se ha encontrado {0} de 1 directiva.",
+ "search": "Buscar directivas"
+ },
+ "Policy": {
+ "Condition": {
+ "ServicePrincipalRisk": {
+ "description": "Configure los niveles de riesgo de entidad de servicio necesarios para que se aplique la directiva",
+ "infoBalloonContent": "Configurar riesgo de entidad de servicio para aplicar la directiva a los niveles de riesgo seleccionados",
+ "title": "Riesgo de entidad de servicio (versión preliminar)"
+ }
+ }
+ },
+ "PolicyControlAuthStrength": {
+ "MultiFactorAuthentication": {
+ "description": "Combinaciones de métodos que satisfacen la autenticación segura, como contraseña + SMS",
+ "displayName": "Autenticación multifactor (MFA)"
+ },
+ "Passwordless": {
+ "description": "Métodos sin contraseña que satisfacen la autenticación segura, como Microsoft Authenticator ",
+ "displayName": "MFA sin contraseña"
+ },
+ "PhishingResistant": {
+ "description": "Métodos sin contraseña resistentes a la suplantación de identidad para la autenticación más sólida, como la clave de seguridad FIDO2",
+ "displayName": "MFA resistente a la suplantación de identidad"
+ }
+ },
+ "PolicyControlFedAuthMethod": {
+ "ariaLabel": "Obtenga más información sobre cómo solicitar métodos de autenticación satisfechos por los proveedores de federación.",
+ "certificate": "Autenticación de certificado",
+ "infoBubble": "Especifique un método de autenticación necesario, que el proveedor de federación debe satisfacer, como ADFS.",
+ "multifactor": "Autenticación multifactor",
+ "require": "Requerir método de autenticación federada (versión preliminar)",
+ "whatIfFormat": "{0} - {1}"
+ },
+ "PolicyState": {
+ "off": "Desactivado",
+ "on": "Activado",
+ "reportOnly": "Solo informe"
+ },
+ "PolicyTemplates": {
+ "Devices": {
+ "description": "Seleccione la categoría de la plantilla de directiva Dispositivos para obtener visibilidad en los dispositivos que acceden a la red. Antes de conceder el acceso debe garantizar el cumplimiento normativo y el estado de mantenimiento.",
+ "name": "Dispositivos"
+ },
+ "Identities": {
+ "description": "Seleccione la categoría de la plantilla de directiva de identidades para comprobar y asegurar cada identidad con una autenticación segura en todo su espacio digital.",
+ "name": "Identidades"
+ },
+ "Summary": {
+ "CloudApps": {
+ "allCloudApps": "Todas las aplicaciones",
+ "office365": "Office 365",
+ "registerSecurityInfo": "Registro de la información de seguridad"
+ },
+ "Conditions": {
+ "androidAndIOS": "Plataforma del dispositivo: Android e IOS",
+ "anyDevice": "Cualquier dispositivo excepto Android, IOS, Windows y Mac",
+ "anyDeviceStateExceptHybrid": "Cualquier estado del dispositivo excepto compatible y unido a Azure AD híbrido",
+ "anyLocation": "Cualquier ubicación excepto la de confianza",
+ "browserMobileDesktop": "Aplicaciones cliente: explorador, aplicaciones móviles y clientes de escritorio",
+ "exchangeActiveSync": "Aplicaciones cliente: Exchange Active Sync, otros clientes",
+ "windowsAndMac": "Plataforma de dispositivos: Windows y Mac"
+ },
+ "Devices": {
+ "anyDevice": "Cualquier dispositivo"
+ },
+ "Grant": {
+ "appProtectionPolicy": "Requerir directiva de protección de aplicaciones",
+ "approvedClientApp": "Requerir aplicación cliente aprobada",
+ "blockAccess": "Bloquear acceso",
+ "mfa": "Solicitar autenticación multifactor",
+ "passwordChange": "Requerir cambio de contraseña",
+ "requireCompliantDevice": "Requerir que el dispositivo esté marcado como compatible",
+ "requireHybridAzureADDevice": "Requerir dispositivo unido a Azure AD híbrido"
+ },
+ "Session": {
+ "appEnforcedRestrictions": "Usar restricciones que exige la aplicación",
+ "signInFrequency": "Frecuencia de inicio de sesión y nunca sesión persistente del explorador"
+ },
+ "UsersAndGroups": {
+ "allUsers": "Todos los usuarios",
+ "directoryRoles": "Roles de directorio excepto el administrador actual",
+ "globalAdmin": "Administrador global",
+ "noGuestAndAdmins": "Todos los usuarios excepto los invitados y externos, administradores globales, administrador actual"
+ },
+ "azureManagement": "Administración de Azure",
+ "deviceFilters": "Filtros para dispositivos",
+ "devicePlatforms": "Plataformas del dispositivo"
+ },
+ "TemplateId": {
+ "AppEnforcedRestrictions": {
+ "description": "Bloquee o limite el acceso al contenido de SharePoint, OneDrive y Exchange desde dispositivos no administrados.",
+ "name": "CA014: Usar restricciones impuestas por la aplicación para dispositivos no administrados",
+ "title": "Uso de restricciones impuestas por la aplicación para dispositivos no administrados"
+ },
+ "ApprovedClientApps": {
+ "description": "Para evitar la pérdida de datos, las organizaciones pueden restringir el acceso a las aplicaciones cliente de autenticación moderna aprobadas con Intune App Protection.",
+ "name": "CA012: Requerir aplicaciones cliente aprobadas y protección de aplicaciones",
+ "title": "Requerir aplicaciones cliente aprobadas y protección de aplicaciones"
+ },
+ "BlockAccessOnUnknowns": {
+ "description": "Se bloqueará el acceso de los usuarios a los recursos de la empresa cuando el tipo de dispositivo sea desconocido o no compatible.",
+ "name": "CA010: Bloquear el acceso para una plataforma de dispositivo desconocida o no compatible",
+ "title": "Bloquear el acceso a una plataforma de dispositivo desconocida o no compatible"
+ },
+ "BlockLegacyAuth": {
+ "description": "Bloquee los puntos de conexión de autenticación heredados que se puedan usar para omitir la autenticación multifactor. ",
+ "name": "CA003: Bloquear autenticación heredada",
+ "title": "Bloquear autenticación heredada"
+ },
+ "NoPersistentBrowserSession": {
+ "description": "Proteja el acceso de usuario en dispositivos no administrados al evitar que las sesiones del explorador permanezcan conectadas después de cerrar el explorador y estableciendo una frecuencia de inicio de sesión de 1 hora.",
+ "name": "CA011: Sesión del explorador persistente",
+ "title": "No hay ninguna sesión de explorador persistente"
+ },
+ "RequireCompliantOrHybridADAdmins": {
+ "description": "Requiera que los administradores con privilegios solo accedan a los recursos cuando usen un dispositivo compatible o unido a Azure AD híbrido.",
+ "name": "CA009: Requerir un dispositivo unido a Azure AD híbrido o conforme para administradores",
+ "title": "Requerir un dispositivo unido a Azure AD híbrido o conforme para administradores"
+ },
+ "RequireCompliantOrHybridADAllUsers": {
+ "description": "Proteja el acceso a los recursos de la empresa requiriendo a los usuarios que usen un dispositivo administrado o realicen la autenticación multifactor (solo macOS o Windows).",
+ "name": "CA013: Requerir autenticación multifactor o dispositivo unido a Azure AD híbrido o compatible para todos los usuarios",
+ "title": "Requerir autenticación multifactor o dispositivo unido a Azure AD híbrido o compatible para todos los usuarios"
+ },
+ "RequireMFAAllUsers": {
+ "description": "Requiera autenticación multifactor para todas las cuentas de usuario con el fin de reducir el riesgo.",
+ "name": "CA004: Requerir autenticación multifactor para todos los usuarios",
+ "title": "Requerir autenticación multifactor para todos los usuarios"
+ },
+ "RequireMFAForAdmins": {
+ "description": "Requiera autenticación multifactor para las cuentas administrativas con privilegios para reducir el riesgo. Esta directiva tendrá como destino los mismos roles que el valor predeterminado de seguridad.",
+ "name": "CA001: Requerir autenticación multifactor para todos los administradores",
+ "title": "Requerir autenticación multifactor a los administradores"
+ },
+ "RequireMFAForAzureManagement": {
+ "description": "Requerir autenticación multifactor para proteger el acceso con privilegios a los recursos de Azure.",
+ "name": "CA006: Requerir la autenticación multifactor para la administración de Azure",
+ "title": "Requerir la autenticación multifactor para la administración de Azure"
+ },
+ "RequireMFAForGuestAccess": {
+ "description": "Requerir que los usuarios invitados realicen la autenticación multifactor al acceder a los recursos de la empresa.",
+ "name": "CA005: Requerir autenticación multifactor para el acceso de invitado",
+ "title": "Requerir autenticación multifactor para el acceso de invitado"
+ },
+ "RequireMFAForRiskySignIn": {
+ "description": "Requerir autenticación multifactor si se detecta un riesgo de inicio de sesión medio o alto (requiere una licencia de Azure AD Premium 2)",
+ "name": "CA007: Requerir una autenticación multifactor para el inicio de sesión de riesgo",
+ "title": "Requerir una autenticación multifactor para el inicio de sesión de riesgo"
+ },
+ "RequirePasswordChangeForHighRiskUsers": {
+ "description": "Solicitar al usuario que cambie su contraseña si se detecta que el riesgo del usuario es alto (requiere una licencia de Azure AD Premium 2)",
+ "name": "CA008: Requerir cambio de contraseña para los usuarios de alto riesgo",
+ "title": "Requerir cambio de contraseña para los usuarios de alto riesgo"
+ },
+ "RequireSecurityInfo": {
+ "description": "Proteja cuándo y cómo se registran los usuarios para la autenticación multifactor de Azure AD y la contraseña de autoservicio. ",
+ "name": "CA002: Protección del registro de información de seguridad",
+ "title": "Protección del registro de información de seguridad"
+ }
+ },
+ "TemplateState": {
+ "BlockAccessOnUnknowns": {
+ "title": "La habilitación de esta directiva impedirá el acceso desde un tipo de dispositivo desconocido. Considere la posibilidad de usar el modo de solo informe para comenzar hasta que haya confirmado que esto no afectará a los usuarios."
+ },
+ "BlockLegacyAuth": {
+ "description": "Considere la posibilidad de usar el modo de solo informe para comenzar hasta que haya confirmado que esto no afectará a los usuarios.",
+ "title": "Al habilitar esta directiva, se bloqueará la autenticación heredada para todos los usuarios."
+ },
+ "RequireCompliantOrHybridADAdmins": {
+ "Description": {
+ "on": "Considere la posibilidad de usar el modo de solo informe para comenzar hasta que haya confirmado que no afectará a los usuarios.",
+ "reportOnly": "Las directivas en modo de solo informe que requieren dispositivos compatibles pueden pedir a los usuarios de Mac, iOS y Android que seleccionen un certificado de dispositivo durante la evaluación de directivas, aunque no se aplique el cumplimiento de dispositivos. Estos mensajes pueden repetirse hasta que el dispositivo sea compatible."
+ },
+ "Title": {
+ "on": "Al habilitar esta directiva, se impedirá el acceso de los usuarios con privilegios a menos que se use un dispositivo administrado, como uno compatible o unido a Azure AD híbrido. Asegúrese de haber configurado las directivas de cumplimiento o de habilitar la configuración de Azure AD híbrida antes de implementarla.",
+ "reportOnly": "Asegúrese de haber configurado las directivas de cumplimiento o habilitado la configuración de Azure AD híbrida antes de habilitarla. "
+ }
+ },
+ "RequireCompliantOrHybridADAllUsers": {
+ "Description": {
+ "on": "Esta directiva afectará a todos los usuarios excepto al administrador con la sesión iniciada actualmente. Considere la posibilidad de usar el modo de solo informe para comenzar hasta que haya confirmado que no afectará a los usuarios."
+ },
+ "Title": {
+ "on": "¡No se quede bloqueado! Asegúrese de que el dispositivo sea compatible, esté unido a Azure AD híbrido o tenga configurada la autenticación multifactor. ",
+ "reportOnly": "Las directivas en modo de solo informe que requieren dispositivos compatibles pueden pedir a los usuarios de Mac, iOS y Android que seleccionen un certificado de dispositivo durante la evaluación de directivas, aunque no se aplique el cumplimiento de dispositivos. Estos mensajes pueden repetirse hasta que el dispositivo sea compatible."
+ }
+ },
+ "RequireMfa": {
+ "description": "Si usa cuentas de acceso de emergencia o Azure AD Connect para sincronizar los objetos locales, es posible que tenga que excluir estas cuentas de esta directiva después de la creación."
+ },
+ "RequireMfaAdmins": {
+ "description": "Considere que la cuenta de administrador actual se excluirá automáticamente pero todas las demás estarán protegidas al crear la directiva. Considere la posibilidad de usar el modo de solo informe para empezar.",
+ "title": "¡No se bloquee! Esta directiva afecta a Azure Portal."
+ },
+ "RequireMfaAllUsers": {
+ "description": "Considere la posibilidad de usar el modo de solo informe para comenzar hasta que haya comunicado el cambio a todos los usuarios.",
+ "title": "Al habilitar esta directiva, se aplicará la autenticación multifactor a todos los usuarios."
+ },
+ "RequireSecurityInfo": {
+ "description": "Asegúrese de revisar la configuración para proteger estas cuentas en función de las necesidades de su empresa.",
+ "title": "Los siguientes usuarios y roles se excluyen de esta directiva, invitados y usuarios externos, administradores globales, administrador actual"
+ }
+ },
+ "basics": "Básico",
+ "clientApps": "Aplicaciones cliente",
+ "cloudApps": "Aplicaciones en la nube",
+ "cloudAppsOrActions": "Acciones o aplicaciones en la nube ",
+ "conditions": "Condiciones ",
+ "createNewPolicy": "Crear nueva directiva a partir de plantillas (versión preliminar)",
+ "createPolicy": "Crear directiva",
+ "currentUser": "Usuario actual",
+ "customizeBuild": "Personalice las herramientas",
+ "customizeTemplate": "Las listas de plantillas se personalizan según el tipo de directiva que se quiere crear",
+ "excludedDevicePlatform": "Plataformas del dispositivo excluidas",
+ "excludedDirectoryRoles": "Roles de directorio excluidos",
+ "excludedLocation": "Roles de directorio excluidos",
+ "excludedUsers": "Usuarios excluidos",
+ "grantControl": "Conceder control ",
+ "includeFilteredDevice": "Incluir los dispositivos filtrados en la directiva",
+ "includedDevicePlatform": "Plataformas del dispositivo incluidas",
+ "includedDirectoryRoles": "Roles de directorio incluidos",
+ "includedLocation": "Ubicación incluida",
+ "includedUsers": "Usuarios incluidos",
+ "legacyAuthenticationClients": "Clientes de autenticación heredada",
+ "namePolicy": "Escriba un nombre para la directiva",
+ "next": "Siguiente",
+ "policyName": "Nombre de directiva",
+ "policyState": "Estado de la directiva",
+ "policySummary": "Resumen de la directiva",
+ "policyTemplate": "Plantilla de directiva",
+ "previous": "Anterior",
+ "reviewAndCreate": "Revisar y crear",
+ "riskLevels": "Niveles de riesgo",
+ "selectATemplate": "Seleccione una plantilla",
+ "selectTemplate": "Seleccionar plantilla",
+ "selectTemplateCategory": "Seleccionar una categoría de plantilla",
+ "selectTemplateRecommendation": "Se recomienda usar las siguientes plantillas en función de la respuesta.",
+ "sessionControl": "Control de sesión ",
+ "signInFrequency": "Frecuencia de inicio de sesión",
+ "signInRisk": "Información de inicio de sesión en riesgo",
+ "template": "Plantilla ",
+ "templateCategory": "Categoría de plantilla",
+ "userRisk": "Riesgo de usuario",
+ "usersAndGroups": "Usuarios y grupos ",
+ "viewPolicySummary": "Ver resumen de directiva "
+ },
+ "SSM": {
+ "MemberSelector": {
+ "description": "Usuarios y grupos"
+ },
+ "Notification": {
+ "Migration": {
+ "error": "No se pudo migrar la configuración de evaluación de acceso continuo a directivas de acceso condicional",
+ "inProgress": "Migración de la configuración de evaluación de acceso continuo",
+ "success": "Se migró la configuración de evaluación de acceso continuo a directivas de acceso condicional",
+ "successDescription": "Continúe con las directivas de acceso condicional para ver la configuración migrada en la nueva directiva creada con el nombre \"Directiva de CA creada a partir de la configuración de CAE\"."
+ },
+ "error": "No se pudo actualizar la configuración de la evaluación continua de acceso.",
+ "inProgress": "Se está actualizando la configuración de evaluación continua de acceso.",
+ "success": "La configuración de evaluación continua de acceso se ha actualizado correctamente."
+ },
+ "PreviewOptions": {
+ "disable": "Deshabilitar versión preliminar",
+ "enable": "Habilitar versión preliminar"
+ },
+ "StrictLocationEnforcement": {
+ "infoContent1": "Azure AD y el proveedor de recursos pueden ver diferentes direcciones IP mediante el mismo dispositivo cliente debido a un error de coincidencia de IPv4/IPv6 o la partición de la red. El cumplimiento estricto de la ubicación aplicará la directiva de acceso condicional con base en ambas direcciones IP que Azure AD y el proveedor de recursos pueden consultar.",
+ "infoContent2": "Para garantizar la máxima seguridad, se recomienda incluir todas las direcciones IP que puedan consultar tanto Azure AD como el proveedor de recursos en la directiva de ubicación con nombre y activar el modo \"Cumplimiento estricto de la ubicación\".",
+ "label": "Aplicación estricta de la ubicación",
+ "title": "Modos de cumplimiento adicionales"
+ },
+ "bladeTitle": "Evaluación continua de acceso",
+ "description": "Cuando se quita el acceso de un usuario o se modifica la dirección IP de un cliente, la evaluación continua de acceso bloquea automáticamente el acceso a los recursos y a las aplicaciones casi en tiempo real. ",
+ "migrateLabel": "Migrar",
+ "migrationError": "No se pudo realizar la migración debido al siguiente error: {0}",
+ "migrationInfo": "La configuración de la CAE se ha movido a la experiencia de usuario de acceso condicional. Migre con el botón \"Migrar\" y establezca la configuración con la directiva de acceso condicional en adelante. Haga clic aquí para obtener más información.",
+ "noLicenseMessage": "Administre la configuración de la administración inteligente de sesiones con Azure AD Premium.",
+ "optionsPickerTitle": "Habilitación o deshabilitación de la evaluación continua de acceso",
+ "upsellInfo": "Ya no puede cambiar la configuración de la página y se deben ignorar todas las opciones que aparecen aquí. Se respetará su configuración anterior. Puede cambiar la configuración de la CAE en Acceso condicional más adelante. Haga clic aquí para obtener más información."
+ },
+ "SelectOrganizations": {
+ "Blade": {
+ "Lower": {
+ "gridAria": "Lista de organizaciones seleccionadas"
+ },
+ "Upper": {
+ "gridAria": "Lista de organizaciones disponibles"
+ },
+ "description": "Agregue una organización de Azure AD escribiendo uno de sus nombres de dominio.",
+ "notFoundResult": "No se encontró",
+ "searchBoxPlaceholder": "Id. de inquilino o nombre de dominio",
+ "subTitle": "Organización de Azure AD"
+ },
+ "Selector": {
+ "AdditionalDetails": {
+ "aria": "Id. de la organización: {0}"
+ },
+ "DisplayText": {
+ "multiple": "{0} organizaciones de Azure AD seleccionadas",
+ "single": "1 organización de Azure AD seleccionada"
+ },
+ "gridAria": "Lista de organizaciones seleccionadas"
+ }
+ },
+ "SessionLifetime": {
+ "PersistentBrowser": {
+ "Error": {
+ "notAllApps": "La directiva de la sesión de explorador persistente solo funciona correctamente cuando se selecciona la opción \"Todas las aplicaciones en la nube\". Actualice la selección de las aplicaciones en la nube."
+ },
+ "Option": {
+ "always": "Siempre persistente",
+ "help": "Una sesión de explorador persistente permite que los usuarios mantengan la sesión iniciada después de cerrar y volver a abrir la ventana del explorador.
\n\n- Esta configuración funciona correctamente cuando se selecciona la opción \"Todas las aplicaciones en nube\".
\n- No afecta a la duración de los tokens ni a la configuración de la frecuencia de inicio de sesión.
\n- Invalidará la directiva \"Show option to stay signed in\" de la personalización de marca de la empresa.
\n- La opción \"Nunca persistente\" invalidará las notificaciones de SSO persistentes pasadas desde los servicios de autenticación federada.
\n- La opción \"Nunca persistente\" impedirá el SSO en los dispositivos móviles para las aplicaciones y entre las aplicaciones y el explorador móvil del usuario.
\n",
+ "label": "Sesión del explorador persistente",
+ "never": "Nunca persistente"
+ },
+ "Warning": {
+ "allApps": "La sesión de explorador persistente solo funciona correctamente cuando se selecciona la opción \"Todas las aplicaciones en la nube\". Cambie la selección de las aplicaciones en la nube. Haga clic aquí para obtener más información."
+ }
+ },
+ "SignInFrequency": {
+ "Aria": {
+ "units": "Horas o días",
+ "value": "Frecuencia"
+ },
+ "Option": {
+ "Day": {
+ "plural": "{0} días",
+ "singular": "1 día"
+ },
+ "Hour": {
+ "plural": "{0} horas",
+ "singular": "1 hora"
+ },
+ "daysOption": "Días",
+ "everytime": "Cada vez",
+ "help": "Período de tiempo antes de que se pida a un usuario que vuelva a iniciar sesión cuando intenta acceder a un recurso. El valor predeterminado es un período acumulado de 90 días, es decir, se pedirá que los usuarios vuelvan a autenticarse la primera vez que intenten acceder a un recurso después de haber estado inactivos en la máquina durante un período de 90 días o superior.",
+ "hoursOption": "Horas",
+ "label": "Frecuencia de inicio de sesión",
+ "placeholder": "Seleccionar unidades"
+ }
+ },
+ "mainOption": "Modificar la duración de la sesión",
+ "mainOptionHelp": "Configure la frecuencia con la que se pedirá confirmación a los usuarios y si se conservarán las sesiones del explorador. Es posible que las aplicaciones que no admiten los protocolos de autenticación moderna no cumplan estas directivas. En tal caso, póngase en contacto con el desarrollador de la aplicación."
+ },
+ "SigninRisk": {
+ "LearnMore": {
+ "message": "Controle el acceso de los usuarios para responder a niveles de riesgo específicos de inicio de sesión."
+ }
+ },
+ "SingleSelectorActive": {
+ "failed": "No se pueden cargar estos datos.",
+ "reattempt": "Cargando datos. Reintento {0} de {1}."
+ },
+ "TimeCondition": {
+ "Errors": {
+ "both": "El intervalo de tiempo de \"Incluir\" o \"Excluir\" no es válido.",
+ "daysOfWeek": "{0} Asegúrese de especificar al menos un día de la semana.",
+ "endBeforeStart": "{0} Asegúrese de que la fecha o la hora de inicio sea anterior a la fecha o la hora de finalización.",
+ "exclude": "El intervalo de tiempo de \"Excluir\" no es válido.",
+ "generic": "{0} Asegúrese de que ha establecido los dos días de la semana y la zona horaria. Si no marca \"Todo el día\", también debe establecer la hora de inicio y la de finalización.",
+ "include": "El intervalo de tiempo de \"Incluir\" no es válido.",
+ "timeMissing": "{0} Asegúrese de especificar tanto la hora de inicio como la de finalización.",
+ "timeZone": "{0} Asegúrese de especificar una zona horaria.",
+ "timesAndZone": "{0} Asegúrese de establecer la hora de inicio, la de finalización y la zona horaria."
+ }
+ },
+ "UserActions": {
+ "Included": {
+ "none": "No hay aplicaciones en la nube o acciones seleccionadas.",
+ "plural": "{0} acciones de usuario incluidas",
+ "singular": "1 acción de usuario incluida"
+ },
+ "accessRequirement1": "Nivel 1",
+ "accessRequirement2": "Nivel 2",
+ "accessRequirement3": "Nivel 3",
+ "accessRequirementsLabel": "Acceso a los datos de aplicaciones protegidos",
+ "appsActionsAuthTitle": "Aplicaciones en la nube, acciones o contexto de autenticación",
+ "appsOrActionsSelectorInfoBallonText": "Aplicaciones a las que se ha accedido o acciones del usuario",
+ "appsOrActionsTitle": "Aplicaciones en la nube o acciones",
+ "label": "Acciones del usuario",
+ "mainOptionsLabel": "Seleccione a qué se aplica esta directiva.",
+ "registerOrJoinDevices": "Registrar o unir dispositivos",
+ "registerSecurityInfo": "Registro de la información de seguridad",
+ "selectionInfo": "Seleccione la acción a la que se aplicará esta directiva.",
+ "whatIf": "Acción del usuario incluida"
+ },
+ "UserSelectionBlade": {
+ "DirectoryRoles": {
+ "ariaLabel": "Elegir roles de directorio"
+ },
+ "Excluded": {
+ "gridAria": "Lista de usuarios excluidos"
+ },
+ "Included": {
+ "gridAria": "Lista de usuarios incluidos"
+ },
+ "Validation": {
+ "customRoleIncluded": "\"Roles del directorio\" incluye al menos un rol personalizado.",
+ "customRoleSelected": "Se ha seleccionado al menos un rol personalizado.",
+ "failed": "Es necesario configurar \"{0}\".",
+ "roles": "Seleccione por lo menos un rol.",
+ "usersGroups": "Seleccione por lo menos un usuario o grupo."
+ },
+ "learnMore": "Controle el acceso en función de a quién se aplicará la directiva, como usuarios y grupos, identidades de carga de trabajo, roles de directorio o invitados externos."
+ },
+ "ValidationResult": {
+ "blockEveryonePolicy": "La configuración de la directiva no se admite. Revise las asignaciones y los controles.",
+ "invalidApplicationCondition": "Las aplicaciones de nube seleccionadas no son válidas.",
+ "invalidClientTypesCondition": "Las aplicaciones cliente seleccionadas no son válidas.",
+ "invalidConditions": "Las asignaciones no están seleccionadas.",
+ "invalidControls": "Los controles seleccionados no son válidos.",
+ "invalidDevicePlatformsCondition": "Las plataformas de dispositivo seleccionadas no son válidas.",
+ "invalidDevicesCondition": "Configuración de dispositivo no válida. Es probable que la configuración de \"{0}\" no sea válida.",
+ "invalidGrantControlPolicy": "Control de concesión no válido",
+ "invalidLocationsCondition": "Las ubicaciones seleccionadas no son válidas.",
+ "invalidPolicy": "Las asignaciones no están seleccionadas.",
+ "invalidSessionControlPolicy": "Control de sesión no válido",
+ "invalidSignInRisksCondition": "El riesgo de inicio de sesión no es válido.",
+ "invalidUserRisksCondition": "El riesgo de usuario no es válido.",
+ "invalidUsersCondition": "Los usuarios seleccionados no son válidos.",
+ "mamPolicyShouldOnlyTargetAndroidOrIosPlatforms": "La directiva MAM se puede aplicar solo a las plataformas de cliente de Android o iOS.",
+ "notSupportedCombination": "No se admite la configuración de directiva. Más información sobre directivas admitidas.",
+ "pending": "Validación de la directiva en curso",
+ "requireComplianceEveryonePolicy": "La configuración de directiva requerirá el cumplimiento de dispositivos a todos los usuarios. Revise las asignaciones seleccionadas.",
+ "success": "Directiva válida"
+ },
+ "VpnCert": {
+ "Grid": {
+ "aria": "Lista de certificados de VPN"
+ }
+ },
+ "WarningsInfo": {
+ "Controls": {
+ "compliantDeviceEnabled": "¡No se quede fuera! Asegúrese de que su dispositivo sea conforme.",
+ "domainJoinedDeviceEnabled": "¡No se quede fuera! Asegúrese de que su dispositivo esté unido a Azure AD híbrido.",
+ "exchangeDisabled": "Exchange ActiveSync solo admite los controles \"Dispositivo compatible\" y \"Aplicación cliente aprobada\". Haga clic para obtener más información.",
+ "exchangeDisabled2": "Exchange ActiveSync solo admite los controles \"Dispositivo compatible\", \"Aplicación cliente aprobada\" y \"Compliant client app\". Haga clic para obtener más información.",
+ "notAvailableForSP": "Algunos controles no están disponibles debido a la selección de \"{0}\" en la asignación de directiva",
+ "requireAuthOrMfa": "\"{0}\" no se puede usar con \"{1}\"",
+ "requireMfa": "Considere la posibilidad de probar la nueva versión preliminar pública de \"{0}\".",
+ "requirePasswordChangeEnabled": "Solo se puede usar \"Requerir cambio de contraseña\" si la directiva está asignada a \"Todas las aplicaciones en la nube\"."
+ },
+ "Policies": {
+ "Linux": {
+ "devicePlatformsReportOnlyPolicy": "Las directivas en modo de solo informe que requieren dispositivos compatibles pueden pedir a los usuarios de macOS, iOS, Android y Linux que seleccionen un certificado de dispositivo.",
+ "excludeDevicePlatforms": "Excluir las plataformas de dispositivos macOS, iOS, Android y Linux de esta directiva.",
+ "proceedAnywayDevicePlatforms": "Continúe con la configuración seleccionada. Los usuarios de macOS, iOS, Android y Linux pueden recibir mensajes cuando se comprueba el cumplimiento del dispositivo."
+ },
+ "blockCurrentUserPolicy": "No limite sus posibilidades. Recomendamos aplicar primero una directiva a un pequeño conjunto de usuarios para comprobar que el comportamiento sea el esperado. También recomendamos excluir de esta directiva al menos a un administrador. De esta forma, se garantiza que siga teniendo acceso y que pueda actualizar una directiva si se requiere realizar algún cambio. Revise los usuarios y las aplicaciones afectados.",
+ "devicePlatformsReportOnlyPolicy": "Es posible que las directivas en el modo de solo informe que requieran dispositivos conformes soliciten a los usuarios de macOS, iOS y Android que seleccionen un certificado de dispositivo.",
+ "excludeCurrentUserSelection": "Excluir el usuario actual, {0}, de esta directiva.",
+ "excludeDevicePlatforms": "Excluya de esta directiva las plataformas de dispositivos macOS, iOS y Android.",
+ "proceedAnywayDevicePlatforms": "Continúe con la configuración seleccionada. Es posible que los usuarios de macOS, iOS y Android reciban solicitudes para comprobar la conformidad del dispositivo.",
+ "proceedAnywaySelection": "Entiendo que mi cuenta se verá afectada por esta directiva. Quiero continuar de todas formas."
+ },
+ "ServicePrincipals": {
+ "blockExchange": "El hecho de seleccionar Office 365 Exchange Online también afectará a aplicaciones como OneDrive and Teams.",
+ "blockPortal": "¡No se quede fuera! Esta directiva afecta a Azure Portal. Antes de continuar, asegúrese de que usted u otra persona puedan volver a acceder al portal.",
+ "blockPortalWithSession": "¡No se quede fuera! Esta directiva afecta a Azure Portal. Antes de continuar, asegúrese de que usted u otra persona puedan volver a acceder al portal.
Si está configurando una directiva de sesión de explorador persistente que requiere seleccionar \"Todas las aplicaciones en la nube\" para funcionar correctamente, descarte esta advertencia.",
+ "blockSharePoint": "La selección de SharePoint Online también afectará a aplicaciones como Microsoft Teams, Planner, Delve, MyAnalytics y Newsfeed.",
+ "blockSkype": "Si selecciona Skype Empresarial Online, también afectará a Microsoft Teams.",
+ "includeOrExclude": "Puede configurar el filtro de aplicación para \"{0}\" o \"{1}\", pero no ambos.",
+ "selectAppsNAForSP": "No se pueden seleccionar aplicaciones en la nube individuales debido a la selección '{0}' en la asignación de directivas",
+ "teamsBlocked": "Microsoft Teams también se verá afectado cuando se incluyan aplicaciones como SharePoint Online y Exchange Online en la directiva."
+ },
+ "Users": {
+ "blockAllUsers": "No pierda el acceso a la cuenta. Esta directiva afectará a todos los usuarios. Le recomendamos que aplique la directiva a un conjunto reducido de usuarios primero para comprobar que su comportamiento es el esperado."
+ }
+ },
+ "WhatIf": {
+ "Device": {
+ "AttributesGrid": {
+ "aria": "Lista de atributos del dispositivo empleado durante el inicio de sesión.",
+ "infoBalloon": "Lista de atributos del dispositivo empleado durante el inicio de sesión."
+ }
+ }
+ },
+ "advancedTabText": "Avanzado",
+ "allCloudAppsErrorBox": "Se debe seleccionar \"Todas las aplicaciones en la nube\" si se ha seleccionado la concesión \"Requerir cambio de contraseña\".",
+ "allCloudAppsReauth": "Se debe seleccionar \"Todas las aplicaciones en la nube\" cuando se seleccionen el control de sesión \"Frecuencia de inicio de sesión (cada vez)\" y la condición \"Riesgo de inicio de sesión\"",
+ "allCloudOrSpecificApps": "El control de sesión \"Frecuencia de inicio de sesión cada vez\" requiere que se seleccionen \"todas las aplicaciones en la nube\" o aplicaciones admitidas específicamente.",
+ "allDayCheckboxLabel": "Todo el día",
+ "allDevicePlatforms": "Cualquier dispositivo",
+ "allGuestUserInfoContent": "Incluye los clientes de Azure AD B2B, pero no los de SharePoint B2B.",
+ "allGuestUserLabel": "Todos los usuarios externos e invitados",
+ "allRiskLevelsOption": "Todos los niveles de riesgo",
+ "allTrustedLocationLabel": "Todas las ubicaciones de confianza",
+ "allUserGroupSetSelectorLabel": "Todos los usuarios y grupos",
+ "allUsersReauth": "El control de sesión \"Frecuencia de inicio de sesión cada vez\" requiere que se seleccione \"Todos los usuarios\"",
+ "allUsersString": "Todos los usuarios",
+ "and": "{0} Y {1} ",
+ "andWithGrouping": "({0}) Y {1} ",
+ "androidDisplayName": "Android",
+ "anyCloudAppSelection": "Cualquier aplicación en la nube",
+ "appContextOptionInfoContent": "Etiqueta de autenticación solicitada",
+ "appContextOptionLabel": "Etiqueta de autenticación solicitada (versión preliminar)",
+ "appContextUriPlaceholder": "Ejemplo: uri:contoso.com:level3",
+ "appEnforceInfoBubble": "Es posible que las restricciones que exige la aplicación requieran opciones de configuración de administración adicionales dentro de las aplicaciones de nube. Las restricciones solo se aplicarán en sesiones nuevas.",
+ "appNotSetSeletorLabel": "0 aplicaciones en la nube seleccionadas",
+ "applyConditionClientAppInfoBalloonContent": "Configurar aplicaciones cliente para aplicar la directiva a aplicaciones cliente específicas",
+ "applyConditionDevicePlatformInfoBalloonContent": "Configurar plataformas de dispositivo para aplicar la directiva a plataformas específicas",
+ "applyConditionDeviceStateInfoBalloonContent": "Configurar estado del dispositivo para aplicar la directiva a estados de dispositivo concretos",
+ "applyConditionLocationInfoBalloonContent": "Configurar ubicaciones para aplicar la directiva a ubicaciones de confianza o que no son de confianza",
+ "applyConditionSigninRiskInfoBalloonContent": "Configurar riesgo de inicio de sesión para aplicar la directiva a los niveles de riesgo seleccionados",
+ "applyConditionUserRiskInfoBalloonContent": "Configurar el riesgo de usuario para aplicar la directiva a los niveles de riesgo seleccionados",
+ "applyConditonLabel": "Configurar",
+ "ariaLabelPolicyDisabled": "La directiva está deshabilitada",
+ "ariaLabelPolicyEnabled": "La directiva está habilitada.",
+ "ariaLabelPolicyReportOnly": "La directiva está en modo de solo informe.",
+ "blockAccess": "Bloquear acceso",
+ "builtInDirectoryRoleLabel": "Roles del directorio integrados",
+ "casCustomControlInfo": "Las directivas personalizadas deben configurarse en el portal de Cloud App Security. Este control funciona de forma instantánea para las aplicaciones destacadas y puede incorporarse automáticamente en cualquier aplicación. Haga clic aquí para obtener más información sobre ambos casos.",
+ "casInfoBubble": "Este control funciona para diversas aplicaciones en la nube.",
+ "casPreconfiguredControlInfo": "Este control funciona de forma instantánea para las aplicaciones destacadas y puede incorporarse automáticamente en cualquier aplicación. Haga clic aquí para obtener más información sobre ambos casos.",
+ "cert64DownloadCol": "Descargar certificado Base 64",
+ "cert64Name": "VpnBase64Cert",
+ "certDownloadCol": "Descargar certificado",
+ "certDurationCol": "Expiración",
+ "certDurationStartCol": "Válido desde",
+ "certName": "VpnCert",
+ "certainApps": "Solo se admiten determinadas aplicaciones para \"Frecuencia de inicio de sesión cada vez\" si no se seleccionan las concesiones \"Requerir autenticación multifactor\" y \"Requerir cambio de contraseña\"",
+ "chooseApplicationsBladeSubtitle": "",
+ "chooseApplicationsBladeTitle": "Elegir aplicaciones",
+ "chooseApplicationsCartSubitle": "",
+ "chooseApplicationsCartTitle": "Aplicaciones elegidas",
+ "chooseApplicationsEmpty": "No hay aplicaciones",
+ "chooseApplicationsNone": "Ninguno",
+ "chooseApplicationsNoneFound": "No encontramos \"{0}\". Pruebe con otro nombre o id.",
+ "chooseApplicationsPlural": "{0} y {1} más",
+ "chooseApplicationsReAuthEverytimeInfo": "¿Busca su aplicación? Algunas aplicaciones no se pueden usar con el control de sesión \"Requerir reautenticación cada vez\"",
+ "chooseApplicationsRemove": "Quitar",
+ "chooseApplicationsReturnedPlural": "Se encontraron {0} aplicaciones.",
+ "chooseApplicationsReturnedSingular": "Se encontró 1 aplicación.",
+ "chooseApplicationsSearchBalloon": "Escriba el nombre o el id. de una aplicación para buscarla.",
+ "chooseApplicationsSearchHint": "Buscar aplicaciones...",
+ "chooseApplicationsSearchLabel": "Aplicaciones",
+ "chooseApplicationsSearching": "Buscando...",
+ "chooseApplicationsSelect": "Seleccionar",
+ "chooseApplicationsSelected": "Seleccionados",
+ "chooseApplicationsSingular": "{0} y 1 más",
+ "chooseApplicationsTooMany": "Se pueden mostrar más resultados. Filtre con el cuadro de búsqueda.",
+ "chooseLocationCorpnetItem": "Red corporativa",
+ "chooseLocationSelectedLocationsLabel": "Ubicaciones seleccionadas",
+ "chooseLocationTrustedIpsItem": "IP de confianza de MFA",
+ "chooseLocationsBladeSubtitle": "",
+ "chooseLocationsBladeTitle": "Elegir ubicaciones",
+ "chooseLocationsCartSubitle": "",
+ "chooseLocationsCartTitle": "Ubicaciones elegidas",
+ "chooseLocationsEmpty": "No hay ubicaciones",
+ "chooseLocationsExcludedSelectorTitle": "Seleccionar",
+ "chooseLocationsIncludedSelectorTitle": "Seleccionar",
+ "chooseLocationsNone": "Ninguno",
+ "chooseLocationsNoneFound": "No encontramos \"{0}\". Pruebe con otro nombre o id.",
+ "chooseLocationsPlural": "{0} y {1} más",
+ "chooseLocationsRemove": "Quitar",
+ "chooseLocationsReturnedPlural": "{0} ubicaciones encontradas",
+ "chooseLocationsReturnedSingular": "1 ubicación encontrada",
+ "chooseLocationsSearchBalloon": "Escriba el nombre de una ubicación para buscarla.",
+ "chooseLocationsSearchHint": "Buscar ubicaciones...",
+ "chooseLocationsSearchLabel": "Ubicaciones",
+ "chooseLocationsSearching": "Buscando...",
+ "chooseLocationsSelect": "Seleccionar",
+ "chooseLocationsSelected": "Seleccionado",
+ "chooseLocationsSelectionBladeExcludedSelectorTitle": "Seleccionar",
+ "chooseLocationsSelectionBladeIncludedSelectorTitle": "Seleccionar",
+ "chooseLocationsSingular": "{0} y 1 más",
+ "chooseLocationsTooMany": "Se pueden mostrar más resultados. Filtre con el cuadro de búsqueda.",
+ "claimProviderAddCommandText": "Nuevo control personalizado",
+ "claimProviderAddNewBladeTitle": "Nuevo control personalizado",
+ "claimProviderDeleteCommand": "Eliminar",
+ "claimProviderDeleteDescription": "¿Está seguro de que quiere eliminar '{0}'? Esta acción no se puede deshacer.",
+ "claimProviderDeleteTitle": "¿Está seguro?",
+ "claimProviderEditInfoText": "Escriba el archivo JSON de los controles personalizados que especificaron los proveedores de notificaciones.",
+ "claimProviderNotificationCreateDescription": "Creando control personalizado con el nombre \"{0}\"",
+ "claimProviderNotificationCreateFailedDescription": "Error al crear el control personalizado \"{0}\". Vuelva a intentarlo más tarde.",
+ "claimProviderNotificationCreateFailedTitle": "No se pudo crear el control personalizado",
+ "claimProviderNotificationCreateSuccessDescription": "Se creó el control personalizado con el nombre \"{0}\".",
+ "claimProviderNotificationCreateSuccessTitle": "Se creó {0}.",
+ "claimProviderNotificationCreateTitle": "Creando {0}",
+ "claimProviderNotificationDeleteDescription": "Eliminando el control personalizado con el nombre \"{0}\"",
+ "claimProviderNotificationDeleteFailedDescription": "Error al eliminar el control personalizado \"{0}\". Vuelva a intentarlo más tarde.",
+ "claimProviderNotificationDeleteFailedTitle": "No se pudo eliminar el control personalizado",
+ "claimProviderNotificationDeleteSuccessDescription": "Se eliminó el control personalizado con el nombre \"{0}\".",
+ "claimProviderNotificationDeleteSuccessTitle": "Se eliminó '{0}'.",
+ "claimProviderNotificationDeleteTitle": "Eliminando '{0}'",
+ "claimProviderNotificationUpdateDescription": "Actualizando el control personalizado con el nombre \"{0}\"",
+ "claimProviderNotificationUpdateFailedDescription": "Error al actualizar el control personalizado con el nombre \"{0}\". Vuelva a intentarlo más tarde.",
+ "claimProviderNotificationUpdateFailedTitle": "No se pudo actualizar el control personalizado",
+ "claimProviderNotificationUpdateSuccessDescription": "Se actualizó el control personalizado con el nombre \"{0}\".",
+ "claimProviderNotificationUpdateSuccessTitle": "Se actualizó {0}.",
+ "claimProviderNotificationUpdateTitle": "Actualizando '{0}'",
+ "claimProviderValidationAppIdInvalid": "El valor \"AppId\" no es válido. Revíselo y vuelva a intentarlo.",
+ "claimProviderValidationClientIdMissing": "Falta un valor \"ClientId\" en los datos. Revíselo y vuelva a intentarlo.",
+ "claimProviderValidationControlClaimsRequestedMissing": "Falta un valor \"ClaimsRequested\" en \"Control\". Revíselo y vuelva a intentarlo.",
+ "claimProviderValidationControlClaimsRequestedTypeMissing": "Falta un valor \"Type\" en el elemento \"ClaimsRequested\". Revíselo y vuelva a intentarlo.",
+ "claimProviderValidationControlIdAlreadyExists": "El valor \"Id\" de \"Control\" ya existe. Revíselo y vuelva a intentarlo.",
+ "claimProviderValidationControlIdMissing": "Falta un valor \"Id\" en \"Control\". Revíselo y vuelva a intentarlo.",
+ "claimProviderValidationControlIdReferencedInExistingPolicy": "El valor \"Id\" de \"Control\" no se puede quitar porque se le hace referencia en una directiva existente. Primero, quítelo de la directiva.",
+ "claimProviderValidationControlIdTooManyControls": "La propiedad \"Control\" tiene demasiados controles. Revísela y vuelva a intentarlo.",
+ "claimProviderValidationControlIdValueReserved": "El valor \"Id\" de \"Control\" es una palabra clave reservada. Use otro id.",
+ "claimProviderValidationControlNameAlreadyExists": "El valor \"Name\" de \"Control\" ya existe. Revíselo y vuelva a intentarlo.",
+ "claimProviderValidationControlNameMissing": "Falta un valor \"Name\" en \"Control\". Revíselo y vuelva a intentarlo.",
+ "claimProviderValidationControlsMissing": "Falta un valor \"Controls\" en los datos. Revíselo y vuelva a intentarlo.",
+ "claimProviderValidationDiscoveryUrlMissing": "Falta un valor \"DiscoveryUrl\" en los datos. Revíselo y vuelva a intentarlo.",
+ "claimProviderValidationInvalid": "Los datos proporcionados no son válidos. Revíselos y vuelva a intentarlo.",
+ "claimProviderValidationInvalidJsonDefinition": "No se puede guardar el control personalizado. Revise el texto JSON y vuelva a intentarlo.",
+ "claimProviderValidationNameAlreadyExists": "El valor \"Name\" ya existe. Revíselo y vuelva a intentarlo.",
+ "claimProviderValidationNameMissing": "Falta un valor \"Name\" en los datos. Revíselo y vuelva a intentarlo.",
+ "claimProviderValidationUnknown": "Se produjo un error desconocido al validar los datos proporcionados. Revíselo y vuelva a intentarlo.",
+ "claimProvidersNone": "No hay controles personalizados.",
+ "claimProvidersSearchPlaceholder": "Controles de búsqueda.",
+ "classicPoilcyFilterTitle": "Mostrar",
+ "classicPolicyAllPlatforms": "Todas las plataformas",
+ "classicPolicyClientAppBrowserAndNative": "Explorador, aplicaciones móviles y clientes de escritorio",
+ "classicPolicyCloudAppTitle": "Aplicación en la nube",
+ "classicPolicyControlAllow": "Permitir",
+ "classicPolicyControlBlock": "Bloquear",
+ "classicPolicyControlBlockWhenNotAtWork": "Bloquear acceso cuando no está en el trabajo",
+ "classicPolicyControlRequireCompliantDevice": "Requerir dispositivo compatible",
+ "classicPolicyControlRequireDomainJoinedDevice": "Requerir dispositivo unido al dominio",
+ "classicPolicyControlRequireMfa": "Comprobación con MFA",
+ "classicPolicyControlRequireMfaWhenNotAtWork": "Requerir autenticación multifactor fuera del trabajo",
+ "classicPolicyDeleteCommand": "Eliminar",
+ "classicPolicyDeleteFailTitle": "No se pudo eliminar la directiva clásica",
+ "classicPolicyDeleteInProgressTitle": "Eliminando la directiva clásica",
+ "classicPolicyDeleteSuccessTitle": "Directiva clásica eliminada",
+ "classicPolicyDetailBladeTitle": "Detalles",
+ "classicPolicyDisableCommand": "Deshabilitar",
+ "classicPolicyDisableConfirmation": "¿Seguro que quiere deshabilitar \"{0}\"? Esta acción no se puede deshacer.",
+ "classicPolicyDisableFailDescription": "No se pudo deshabilitar \"{0}\".",
+ "classicPolicyDisableFailTitle": "No se pudo deshabilitar la directiva clásica",
+ "classicPolicyDisableInProgressDescription": "Deshabilitando \"{0}\"",
+ "classicPolicyDisableInProgressTitle": "Deshabilitando la directiva clásica",
+ "classicPolicyDisableSuccessDescription": "\"{0}\" se deshabilitó correctamente.",
+ "classicPolicyDisableSuccessTitle": "Directiva clásica deshabilitada",
+ "classicPolicyEasSupportedPlatforms": "Plataformas compatibles con Exchange ActiveSync",
+ "classicPolicyEasUnsupportedPlatforms": "Plataformas no compatibles con Exchange ActiveSync",
+ "classicPolicyExcludedPlatformsTitle": "Plataformas de dispositivos excluidas",
+ "classicPolicyFilterAll": "Todas las directivas",
+ "classicPolicyFilterDisabled": "Directivas deshabilitadas",
+ "classicPolicyFilterEnabled": "Directivas habilitadas",
+ "classicPolicyIncludeExcludeMembersDescription": "Al excluir grupos, puede realizar una migración por fases de las directivas.",
+ "classicPolicyIncludeExcludeMembersTitle": "Incluir o excluir grupos",
+ "classicPolicyIncludedPlatformsTitle": "Plataformas de dispositivo incluidas",
+ "classicPolicyManualMigrationMessage": "Esta directiva debe migrarse manualmente.",
+ "classicPolicyMigrateCommand": "Migrar",
+ "classicPolicyMigrateConfirmation": "¿Seguro que quiere migrar \"{0}\"? Esta directiva solo se puede migrar una vez.",
+ "classicPolicyMigrateFailDescription": "No se pudo migrar \"{0}\".",
+ "classicPolicyMigrateFailTitle": "No se pudo migrar la directiva clásica",
+ "classicPolicyMigrateInProgressDescription": "Migrando \"{0}\"",
+ "classicPolicyMigrateInProgressTitle": "Migrando directiva clásica",
+ "classicPolicyMigrateRecommendText": "Recomendación: Migre a las nuevas directivas de Azure Portal.",
+ "classicPolicyMigrateSuccessTitle": "La directiva clásica se migró correctamente",
+ "classicPolicyMigratedSuccessDescription": "Esta directiva clásica ahora puede administrarse en Directivas.",
+ "classicPolicyMigratedSuccessDescriptionMultiple": "Esta directiva clásica se migra en forma de {0} directivas nuevas. Las nuevas directivas pueden administrarse en Directivas.",
+ "classicPolicyNoEditPermissionMsg": "No tiene permiso para editar esta directiva. Solo los administradores globales y los administradores de seguridad pueden editarla. Haga clic aquí para obtener más información.",
+ "classicPolicySaveFailDescription": "No se pudo guardar \"{0}\".",
+ "classicPolicySaveFailTitle": "No se pudo guardar la directiva clásica",
+ "classicPolicySaveInProgressDescription": "Guardando \"{0}\"",
+ "classicPolicySaveInProgressTitle": "Guardando la directiva clásica",
+ "classicPolicySaveSuccessDescription": "\"{0}\" se guardó correctamente.",
+ "classicPolicySaveSuccessTitle": "Directiva clásica guardada",
+ "clientAppBladeLegacyInfoBanner": "La autenticación heredada no se admite actualmente.",
+ "clientAppBladeLegacyUpsellBanner": "Bloqueo de aplicaciones cliente no compatibles (versión preliminar)",
+ "clientAppBladeTitle": "Aplicaciones cliente",
+ "clientAppDescription": "Seleccionar aplicaciones cliente a las que se aplicará la directiva",
+ "clientAppExchangeActiveSync": "Exchange ActiveSync",
+ "clientAppExchangeDisabledInfo": "Exchange ActiveSync está disponible cuando Exchange Online es la única aplicación de nube seleccionada. Haga clic para obtener más información.",
+ "clientAppExchangeWarning": "Exchange ActiveSync no admite actualmente todas las demás condiciones.",
+ "clientAppLearnMore": "Controle el acceso de los usuarios a aplicaciones cliente específicas que no usan la autenticación moderna.",
+ "clientAppLegacyHeader": "Clientes de autenticación heredada",
+ "clientAppMobileDesktop": "Aplicaciones móviles y aplicaciones de escritorio",
+ "clientAppModernHeader": "Clientes de autenticación moderna",
+ "clientAppOnlySupportedPlatforms": "Aplicar directiva solo en las plataformas compatibles",
+ "clientAppSelectSpecificClientApps": "Seleccionar aplicaciones cliente",
+ "clientAppV2BladeTitle": "Aplicaciones cliente (versión preliminar)",
+ "clientAppWebBrowser": "Explorador",
+ "clientAppsSelectedLabel": "{0} incluido",
+ "clientTypeBrowser": "Navegador",
+ "clientTypeEas": "Clientes de Exchange ActiveSync",
+ "clientTypeEasInfo": "Clientes de Exchange ActiveSync que solo usan la autenticación heredada.",
+ "clientTypeModernAuth": "Clientes de autenticación moderna",
+ "clientTypeOtherClients": "Otros clientes",
+ "clientTypeOtherClientsInfo": "Aquí se incluyen clientes de Office antiguos y otros protocolos de correo (POP, IMAP, SMTP, etc.). [Más información][1]\n[1]: https://aka.ms/caclientapps.\n",
+ "cloudAppCountDiffBannerText": "Se han eliminado del directorio {0} aplicaciones en la nube configuradas en la directiva, pero esto no afectará a otras aplicaciones que estén en ella. La próxima vez que actualice la sección de aplicaciones de la directiva, se quitarán automáticamente las aplicaciones que haya eliminado.",
+ "cloudAppsSelectionBladeAllMicrosoftApps": "Todas las aplicaciones de Microsoft",
+ "cloudAppsSelectionExcludeAllMicrosoftClients": "Permitir aplicaciones móviles, de escritorio y en la nube de Microsoft (versión preliminar)",
+ "cloudappsSelectionBladeAllCloudapps": "Todas las aplicaciones en la nube",
+ "cloudappsSelectionBladeExcludeDescription": "Seleccionar las aplicaciones en la nube que quedarán exentas de la directiva",
+ "cloudappsSelectionBladeExcludedSelectorTitle": "Seleccionar las aplicaciones en la nube excluidas",
+ "cloudappsSelectionBladeIncludeDescription": "Seleccionar las aplicaciones en la nube a las que se aplicará esta directiva",
+ "cloudappsSelectionBladeIncludedSelectorTitle": "Seleccionar",
+ "cloudappsSelectionBladeSelectedCloudapps": "Seleccionar aplicaciones",
+ "cloudappsSelectorInfoBallonText": "Servicios a los que el usuario obtiene acceso para hacer trabajos. Por ejemplo, 'Salesforce'.",
+ "cloudappsSelectorPluralExcluded": "{0} aplicaciones excluidas",
+ "cloudappsSelectorPluralIncluded": "{0} aplicaciones incluidas",
+ "cloudappsSelectorSingularExcluded": "1 aplicación excluida",
+ "cloudappsSelectorSingularIncluded": "1 aplicación incluida",
+ "cloudappsSelectorUserPlural": "{0} aplicaciones",
+ "cloudappsSelectorUserSingular": "1 aplicación",
+ "conditionLabelMulti": "{0} condiciones seleccionadas",
+ "conditionLabelOne": "1 condición seleccionada",
+ "conditionalAccessBladeTitle": "Acceso condicional",
+ "conditionsNotSelectedLabel": "Sin configurar",
+ "conditionsReqMfaReauthSet": "Algunas opciones no están disponibles debido a la concesión \"Requerir autenticación multifactor\" y el control de sesión \"Frecuencia de inicio de sesión (cada vez)\" que se están seleccionando actualmente",
+ "conditionsReqPwSet": "Algunas opciones no están disponibles debido a que la concesión \"Requerir cambio de contraseña\" se está seleccionando actualmente.",
+ "configureCasText": "Configurar Cloud App Security",
+ "configureCustomControlsText": "Configurar una directiva personalizada",
+ "controlLabelMulti": "{0} controles seleccionados",
+ "controlLabelOne": "1 control seleccionado",
+ "controlValidatorText": "Seleccione al menos un control.",
+ "controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
+ "controlsDeviceComplianceAriaLabel": "Obtenga más información sobre cómo solicitar dispositivos compatibles.",
+ "controlsDeviceComplianceInfoBubble": "El dispositivo debe ser compatible con Intune. Si el dispositivo no es compatible, se pedirá al usuario que lo haga compatible.",
+ "controlsDomainJoinedAriaLabel": "Obtenga más información sobre cómo solicitar dispositivos unidos a Azure AD híbridos.",
+ "controlsDomainJoinedInfoBubble": "Los dispositivos deben estar unidos a Azure AD híbrido.",
+ "controlsMamAriaLabel": "Obtenga más información sobre cómo solicitar aplicaciones cliente aprobadas.",
+ "controlsMamInfoBubble": "El dispositivo debe usar estas aplicaciones cliente aprobadas.",
+ "controlsMfaInfoBubble": "El usuario debe completar los requisitos de seguridad adicionales, como llamada de teléfono o mensaje de texto.",
+ "controlsOrAndInfoBubble": "ControlsOrAndInfoBubble",
+ "controlsRequireCompliantAppAriaLabel": "Obtenga más información sobre cómo solicitar aplicaciones protegidas por directivas.",
+ "controlsRequireCompliantAppInfoBubble": "El dispositivo debe usar las aplicaciones protegidas por directivas.",
+ "controlsRequirePasswordResetAriaLabel": "Obtenga más información sobre cómo solicitar un cambio de contraseña.",
+ "controlsRequirePasswordResetInfoBubble": "Permite requerir el cambio de la contraseña para reducir el riesgo de usuario. Esta opción también requiere la autenticación multifactor. No se pueden usar otros controles.",
+ "countriesRadiobuttonInfoBalloonContent": "El país o la región de procedencia de un inicio de sesión se determina a partir de la dirección IP del usuario.",
+ "createNewVpnCert": "Nuevo certificado",
+ "createdTimeLabel": "Hora de creación",
+ "customRoleLabel": "Roles personalizados (no se admite)",
+ "dateRangeTypeLabel": "Intervalo de fechas",
+ "daysOfWeekPlaceholderText": "Filtrar días de la semana",
+ "daysOfWeekTypeLabel": "Días de la semana",
+ "deletePolicyNoLicenseText": "Ya puede eliminar esta directiva. Una vez eliminada, no podrá volver a crearla hasta que disponga de las licencias necesarias.",
+ "descriptionContentForControlsAndOr": "Para varios controles",
+ "devicePlatform": "Plataforma de dispositivo",
+ "devicePlatformConditionHelpDescription": "Permite aplicar la directiva a las plataformas de dispositivos seleccionadas.\n[Más información][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2044750",
+ "devicePlatformInclude": "{0} incluido",
+ "devicePlatformIncludeExclude": "{0} y {1} excluidos",
+ "devicePlatformNoSelectionError": "Para seleccionar plataformas de dispositivo, es necesario seleccionar un elemento secundario.",
+ "devicePlatformsNone": "Ninguno",
+ "deviceSelectionBladeExcludeDescription": "Seleccionar las plataformas que quedarán exentas de la directiva",
+ "deviceSelectionBladeIncludeDescription": "Seleccionar las plataformas de dispositivo que quiere incluir en esta directiva",
+ "deviceStateAll": "Todos los estados de dispositivo",
+ "deviceStateCompliant": "Dispositivo marcado como compatible",
+ "deviceStateCompliantInfoContent": "Los dispositivos compatibles con Intune se excluirán de la evaluación de esta directiva, de modo que si, por ejemplo, la directiva bloquea el acceso, bloqueará todos los dispositivos excepto los compatibles con Intune.",
+ "deviceStateConditionConfigureInfoContent": "Configurar directiva basada en el estado del dispositivo",
+ "deviceStateConditionSelectorInfoContent": "Indica si el dispositivo desde el que inicia sesión el usuario está \\\"Unido a Azure AD híbrido\\\" o \\\"marcado como compatible\\\".\n Esto ha quedado en desuso. Use en su lugar \\\"{1}\\\".",
+ "deviceStateConditionSelectorLabel": "Estado del dispositivo (en desuso)",
+ "deviceStateDomainJoined": "Unido a Azure AD híbrido de dispositivo",
+ "deviceStateDomainJoinedInfoContent": "Los dispositivos unidos a Azure AD híbrido se excluirán de la evaluación de esta directiva, de modo que si, por ejemplo, la directiva bloquea el acceso, bloqueará todos los dispositivos excepto los unidos a Azure AD híbrido.",
+ "deviceStateDomainJoinedInfoLinkText": "Más información.",
+ "deviceStateExcludeDescription": "Seleccione la condición de estado del dispositivo que se usará para excluir dispositivos de la directiva.",
+ "deviceStateIncludeAndExcludeOneLabel": "{0} y excluir {1}",
+ "deviceStateIncludeAndExcludeTwoLabel": "{0} y excluir {1}, {2}",
+ "directoryRoleInfoContent": "Asigne la directiva a roles del directorio integrados.",
+ "directoryRolesLabel": "Roles del directorio",
+ "discardbutton": "Descartar",
+ "downloadDefaultFileName": "Intervalos IP",
+ "downloadExampleFileName": "Ejemplo",
+ "downloadExampleHeader": "Este es un archivo de ejemplo con demostraciones de los tipos de datos que se pueden aceptar. Se ignorarán las líneas que comiencen por #.",
+ "endDatePickerLabel": "Extremos",
+ "endTimePickerLabel": "Hora de finalización",
+ "enterCountryText": "Dirección IP y País se evalúan en un par. Seleccione el país.",
+ "enterIpText": "Dirección IP y País se evalúan en un par. Escriba la dirección IP.",
+ "enterUserText": "No hay ningún usuario seleccionado. Seleccione uno.",
+ "evaluationResult": "Resultado de la evaluación",
+ "exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
+ "exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync solo con plataformas admitidas",
+ "excludeAllTrustedLocationSelectorText": "todas las ubicaciones de confianza",
+ "featureRequiresP2": "Esta característica requiere una licencia de Azure AD Premium 2.",
+ "friday": "Viernes",
+ "grantControls": "Conceder controles",
+ "gridNetworkTrusted": "De confianza",
+ "gridPolicyCreatedDateTime": "Fecha de creación",
+ "gridPolicyEnabled": "Habilitado",
+ "gridPolicyModifiedDateTime": "Fecha de modificación",
+ "gridPolicyName": "Nombre de directiva",
+ "gridPolicyState": "Estado",
+ "groupSelectionBladeExcludeDescription": "Permite seleccionar los grupos que quedarán exentos de la directiva.",
+ "groupSelectionBladeExcludedSelectorTitle": "Seleccione los grupos excluidos",
+ "groupSelectionBladeSelect": "Seleccionar grupos",
+ "groupSelectorInfoBallonText": "Grupos del directorio a los que se aplica la directiva. Por ejemplo, \"Grupo piloto\".",
+ "groupsSelectionBladeTitle": "Grupos",
+ "helpCommonScenariosText": "¿Le interesan los escenarios comunes?",
+ "helpCondition1": "Cuando cualquier usuario está fuera de la red de la compañía",
+ "helpCondition2": "Cuando inician sesión usuarios del grupo \"Administradores\"",
+ "helpConditionsTitle": "Condiciones",
+ "helpControl1": "Es necesario que inicien sesión con la autenticación multifactor.",
+ "helpControl2": "Es necesario que dispongan de un dispositivo unido a un dominio o conforme a Intune.",
+ "helpControlsTitle": "Controles",
+ "helpIntroText": "El acceso condicional le permite aplicar los requisitos de acceso cuando se cumplen determinadas condiciones. Veamos algunos ejemplos.",
+ "helpIntroTitle": "¿Qué es el acceso condicional?",
+ "helpLearnMoreText": "¿Quiere obtener más información acerca del acceso condicional?",
+ "helpStartStep1": "Haga clic en \"+ Nueva directiva\" para crear su primera directiva.",
+ "helpStartStep2": "Especifique las condiciones y los controles de la directiva.",
+ "helpStartStep3": "Cuando haya terminado, no se olvide de las opciones Habilitar la directiva y Crear.",
+ "helpStartTitle": "Introducción",
+ "highRisk": "Alta",
+ "includeAndExcludeAppsTextFormat": "Incluir: {0}. Excluir: {1}.",
+ "includeAppsTextFormat": "Incluir: {0}.",
+ "includeUnknownAreasCheckboxInfoBalloonContent": "Las áreas desconocidas son direcciones IP que no se pueden asignar a ningún país o región.",
+ "includeUnknownAreasCheckboxLabel": "Incluir áreas desconocidas",
+ "infoCommandLabel": "Información",
+ "invalidCertDuration": "La duración del certificado no es válida,",
+ "invalidIpAddress": "El valor debe ser una dirección IP válida.",
+ "invalidUriErrorMsg": "Escriba un URI válido. Por ejemplo: \"uri:contoso.com:acr\". ",
+ "iosDisplayName": "iOS",
+ "linuxDisplayName": "Linux",
+ "loadAll": "Cargar todo",
+ "loading": "Cargando...",
+ "locationConfigureNamedLocationsText": "Configurar todas las ubicaciones de confianza",
+ "locationConfigureNamedLocationsUri": "{0}/usermanagement/mfasettings.aspx?tenantid={1}&culture={2}",
+ "locationNameTooLongError": "El nombre de la ubicación es demasiado largo. Debe tener 256 caracteres como máximo.",
+ "locationSelectionBladeExcludeDescription": "Seleccionar las ubicaciones que quedarán exentas de la directiva",
+ "locationSelectionBladeIncludeDescription": "Seleccionar las ubicaciones que se incluirán en la directiva",
+ "locationsAllLocationsLabel": "Cualquier ubicación",
+ "locationsAllNamedLocationsLabel": "Todas las direcciones IP de confianza",
+ "locationsAllPrivateLinksLabel": "Todos los Private Links en mi inquilino",
+ "locationsIncludeExcludeLabel": "{0} y excluir todas las IP de confianza",
+ "locationsSelectedPrivateLinksLabel": "Private Links seleccionados",
+ "lowRisk": "Baja",
+ "macOsDisplayName": "macOS",
+ "managePoliciesLicenseText": "Para administrar las directivas de acceso condicional, la organización necesita disponer de Azure AD Premium P1 o P2.",
+ "markAsTrustedCheckboxInfoBalloonContent": "Iniciar sesión desde una ubicación de confianza reduce el riesgo de inicio de sesión de un usuario. Marque esta ubicación como de confianza solo si sabe que los intervalos IP especificados están establecidos y son confiables en su organización.",
+ "markAsTrustedCheckboxLabel": "Marcar como ubicación de confianza",
+ "mediumRisk": "Mediana",
+ "memberSelectionCommandRemove": "Quitar",
+ "menuItemClaimProviderControls": "Controles personalizados (versión preliminar)",
+ "menuItemClassicPolicies": "Directivas clásicas",
+ "menuItemInsightsAndReporting": "Conclusiones e informes",
+ "menuItemManage": "Administrar",
+ "menuItemNamedLocationsPreview": "Ubicaciones con nombre (versión preliminar)",
+ "menuItemNamedNetworks": "Ubicaciones con nombre",
+ "menuItemPolicies": "Directivas",
+ "menuItemTermsOfUse": "Términos de uso",
+ "modifiedTimeLabel": "Hora de modificación",
+ "monday": "Lunes",
+ "nameLabel": "Nombre",
+ "namedLocationCountryInfoBanner": "A los países o regiones solo se les pueden asignar direcciones IPv4. Las direcciones IPv6 están incluidas en países o regiones desconocidos.",
+ "namedLocationTypeCountry": "Países/regiones",
+ "namedLocationTypeLabel": "Defina la ubicación con:",
+ "namedLocationUpsellBanner": "Esta vista está en desuso. Vaya a la vista nueva y mejorada \"ubicaciones con nombre\".",
+ "namedLocationsHelpDescription": "Los informes de seguridad de Azure AD usan ubicaciones con nombre para reducir los falsos positivos. También se usan en las directivas de acceso condicional de Azure AD.\n[Más información][1]\n[1]: https://aka.ms/namedlocationupdate",
+ "namedNetworkAddIpRanges": "Agregue un nuevo intervalo IP (p. ej., 40.77.182.32/27).",
+ "namedNetworkCountryNeeded": "Debe seleccionar, al menos, un país.",
+ "namedNetworkDeleteCommand": "Eliminar",
+ "namedNetworkDeleteDescription": "¿Está seguro de que quiere eliminar '{0}'? Esta acción no se puede deshacer.",
+ "namedNetworkDeleteTitle": "¿Está seguro?",
+ "namedNetworkDownloadIpRange": "Descargar",
+ "namedNetworkInvalidRange": "El valor debe ser un intervalo IP válido.",
+ "namedNetworkIpRangeNeeded": "Necesita al menos un intervalo IP válido.",
+ "namedNetworkIpRangesDescriptionContent": "Configure los intervalos IP de su organización.",
+ "namedNetworkIpRangesTab": "Intervalos IP",
+ "namedNetworkListAdd": "Nueva ubicación",
+ "namedNetworkListConfigureTrustedIps": "Configurar IP de confianza de MFA",
+ "namedNetworkNameDescription": "Ejemplo: 'Oficina de Redmond'",
+ "namedNetworkNameInvalid": "El nombre proporcionado no es válido.",
+ "namedNetworkNameRequired": "Debe proporcionar un nombre para esta ubicación.",
+ "namedNetworkNoIpRanges": "No hay intervalos IP",
+ "namedNetworkNotificationCreateDescription": "Creando ubicación con el nombre '{0}'",
+ "namedNetworkNotificationCreateFailedDescription": "Error al crear la ubicación '{0}'. Vuelva a intentarlo más tarde.",
+ "namedNetworkNotificationCreateFailedTitle": "No se puede crear la ubicación.",
+ "namedNetworkNotificationCreateSuccessDescription": "Ubicación con el nombre '{0}' creada",
+ "namedNetworkNotificationCreateSuccessTitle": "Se creó {0}.",
+ "namedNetworkNotificationCreateTitle": "Creando {0}",
+ "namedNetworkNotificationDeleteDescription": "Eliminando ubicación con el nombre '{0}'",
+ "namedNetworkNotificationDeleteFailedDescription": "Error al eliminar la ubicación '{0}'. Vuelva a intentarlo más tarde.",
+ "namedNetworkNotificationDeleteFailedTitle": "No se puede eliminar la ubicación.",
+ "namedNetworkNotificationDeleteSuccessDescription": "Ubicación con el nombre '{0}' eliminada",
+ "namedNetworkNotificationDeleteSuccessTitle": "Se eliminó '{0}'.",
+ "namedNetworkNotificationDeleteTitle": "Eliminando '{0}'",
+ "namedNetworkNotificationUpdateDescription": "Actualizando ubicación con el nombre '{0}'",
+ "namedNetworkNotificationUpdateFailedDescription": "Error al actualizar la ubicación '{0}'. Vuelva a intentarlo más tarde.",
+ "namedNetworkNotificationUpdateFailedTitle": "No se puede actualizar la ubicación.",
+ "namedNetworkNotificationUpdateSuccessDescription": "Ubicación con el nombre '{0}' actualizada",
+ "namedNetworkNotificationUpdateSuccessTitle": "Se actualizó {0}.",
+ "namedNetworkNotificationUpdateTitle": "Actualizando '{0}'",
+ "namedNetworkSearchPlaceholder": "Buscar ubicaciones.",
+ "namedNetworkUploadFailedDescription": "Se produjo un error al analizar el archivo suministrado. Asegúrese de cargar un archivo sin formato con cada línea en el formato CIDR.",
+ "namedNetworkUploadFailedTitle": "No se pudo analizar \"{0}\"",
+ "namedNetworkUploadInProgressDescription": "Intentando analizar los valores de CIDR válidos de \"{0}\".",
+ "namedNetworkUploadInProgressTitle": "Analizando \"{0}\"",
+ "namedNetworkUploadInvalidDescription": "\"{0}\" es demasiado grande o tiene un formato no válido.",
+ "namedNetworkUploadInvalidTitle": "\"{0}\" no válido",
+ "namedNetworkUploadIpRange": "Cargar",
+ "namedNetworkUploadSuccessDescription": "Se analizaron {0} líneas. {1} tienen un formato erróneo y {2} se omitieron.",
+ "namedNetworkUploadSuccessTitle": "Se finalizó el análisis de \"{0}\"",
+ "namedNetworksAdd": "Nueva ubicación con nombre",
+ "namedNetworksConditionHelpDescription": "Controle el acceso del usuario en función de su ubicación física.\n[Más información][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
+ "namedNetworksExcludeLabel": "{0} y {1} excluidos",
+ "namedNetworksHelpDescription": "Los informes de seguridad de Azure AD usan ubicaciones con nombre para reducir los falsos positivos. También se usan en las directivas de acceso condicional de Azure AD.\n[Más información][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
+ "namedNetworksIncludeLabel": "{0} incluido",
+ "namedNetworksNone": "No se han encontrado ubicaciones con nombre.",
+ "namedNetworksTitle": "Configurar ubicaciones",
+ "namednetworkExceedingSizeErrorBladeTitle": "Detalles del error",
+ "namednetworkExceedingSizeErrorDetailText": "Haga clic aquí para obtener más detalles.",
+ "namednetworkExceedingSizeErrorMessage": "Ha superado el almacenamiento máximo permitido para las ubicaciones con nombre. Vuelva a intentarlo con una lista más corta. Haga clic aquí para ver más detalles.",
+ "needMfaSecondary": "Se tiene que seleccionar \"Requerir autenticación multifactor\" cuando se seleccione \"Frecuencia de inicio de sesión (cada vez)\" con \"Solo métodos de autenticación secundarios\"",
+ "newCertName": "nuevo certificado",
+ "noAttributePermissionsError": "Privilegios insuficientes para crear o actualizar la directiva. El rol lector de definición de atributos es necesario para agregar o editar filtros dinámicos.",
+ "noPolicyRowMessage": "No hay directivas.",
+ "noSPSelected": "Ninguna entidad de servicio seleccionada",
+ "noUpdatePermissionMessage": "No tiene permiso para actualizar esta configuración. Póngase en contacto con el administrador global para obtener acceso.",
+ "noUserSelected": "Ningún usuario seleccionado",
+ "noneRisk": "Sin riesgo",
+ "office365Description": "Estas aplicaciones incluyen, entre otras, Microsoft Flow, Microsoft Forms, Microsoft Teams, Office 365 Exchange Online, Office 365 SharePoint Online y Office 365 Yammer.",
+ "office365InfoBox": "Al menos una de las aplicaciones seleccionadas es parte de Office 365. Se recomienda establecer la directiva en la aplicación de Office 365 en su lugar.",
+ "oneUserSelected": "1 usuario seleccionado",
+ "onlyGlobalAdminsCanSaveThisPolicyConfig": "Solo los administradores globales pueden guardar esta directiva.",
+ "or": "{0} O {1} ",
+ "pickerDoneCommand": "Listo",
+ "policiesBladeAdPremiumUpsellBannerText": "Cree sus propias directivas y condiciones específicas de destino, como aplicaciones en la nube, el riesgo de inicio de sesión y plataformas de dispositivos con Azure AD Premium.",
+ "policiesBladeTitle": "Directivas",
+ "policiesBladeTitleWithAppName": "Directivas: {0}",
+ "policiesDisabledBannerText": "No se permite crear ni editar directivas para las aplicaciones que tengan un atributo de inicio de sesión vinculado.",
+ "policiesHitMaxLimitStatusBarMessage": "Ha alcanzado el número máximo de directivas para este inquilino. Para poder crear más, primero deberá eliminar algunas.",
+ "policyAssignmentsSection": "Tareas",
+ "policyBlockAllInfoBox": "La directiva configurada bloqueará a todos los usuarios, por lo que no se admite. Revise las asignaciones y los controles. Excluya el usuario actual {0} si desea guardar esta directiva.",
+ "policyCloudAppsDisplayTextAllApp": "Todas las aplicaciones",
+ "policyCloudAppsLabel": "Aplicaciones en la nube",
+ "policyConditionClientAppDescription": "Software que usa el usuario para obtener acceso a la aplicación en la nube. Por ejemplo, 'Navegador'.",
+ "policyConditionClientAppV2Description": "Software que usa el usuario para obtener acceso a la aplicación en la nube. Por ejemplo, 'Navegador'.",
+ "policyConditionDevicePlatform": "Plataformas de dispositivo",
+ "policyConditionDevicePlatformDescription": "Plataforma desde la que inicia sesión el usuario. Por ejemplo, 'iOS'.",
+ "policyConditionLocation": "Ubicaciones",
+ "policyConditionLocationDescription": "Ubicación (determinada con el intervalo de direcciones IP) desde la que inicia sesión el usuario",
+ "policyConditionSigninRisk": "Riesgo de inicio de sesión",
+ "policyConditionSigninRiskDescription": "Probabilidad de que el inicio de sesión proceda de alguien que no es el usuario. El nivel de riesgo puede ser alto, medio o bajo. Se necesita una licencia de Azure AD Premium 2.",
+ "policyConditionUserRisk": "Riesgo de usuario",
+ "policyConditionUserRiskDescription": "Configure los niveles de riesgo de usuario necesarios para aplicar la directiva.",
+ "policyConditioniClientApp": "Aplicaciones cliente",
+ "policyConditioniClientAppV2": "Aplicaciones cliente (versión preliminar)",
+ "policyControlAllowAccessDisplayedName": "Conceder acceso",
+ "policyControlAuthenticationStrengthDisplayedName": "Requerir intensidad de autenticación (versión preliminar)",
+ "policyControlBladeTitle": "Conceder",
+ "policyControlBlockAccessDisplayedName": "Bloquear acceso",
+ "policyControlCompliantDeviceDisplayedName": "Requerir que el dispositivo esté marcado como compatible",
+ "policyControlContentDescription": "Aplique controles de acceso para bloquear o conceder acceso.",
+ "policyControlInfoBallonText": "Bloquear acceso o seleccionar los requisitos adicionales que se deben cumplir para conceder acceso",
+ "policyControlMfaChallengeDisplayedName": "Comprobación con MFA",
+ "policyControlRequireCompliantAppDisplayedName": "Requerir directiva de protección de aplicaciones",
+ "policyControlRequireDomainJoinedDisplayedName": "Requerir dispositivo unido a Azure AD híbrido",
+ "policyControlRequireMamDisplayedName": "Requerir aplicación cliente aprobada",
+ "policyControlRequiredPasswordChangeDisplayedName": "Requerir cambio de contraseña",
+ "policyControlSelectAuthStrength": "Requerir intensidad de autenticación",
+ "policyControlsNoControlsSelected": "0 controles seleccionados",
+ "policyControlsSection": "Controles de acceso",
+ "policyCreatBladeTitle": "Nueva",
+ "policyCreateButton": "Crear",
+ "policyCreateFailedMessage": "Error: {0}",
+ "policyCreateFailedTitle": "No se pudo crear \"{0}\"",
+ "policyCreateInProgressTitle": "Creando {0}",
+ "policyCreateSuccessMessage": "\"{0}\" se creó correctamente. La directiva se habilitará dentro de unos minutos si tiene la opción \"Habilitar directiva\" establecida en \"Activado\".",
+ "policyCreateSuccessTitle": "\"{0}\" se creó correctamente",
+ "policyDeleteConfirmation": "¿Está seguro de que quiere eliminar '{0}'? Esta acción no se puede deshacer.",
+ "policyDeleteFailTitle": "No se pudo eliminar '{0}'.",
+ "policyDeleteInProgressTitle": "Eliminando '{0}'",
+ "policyDeleteSuccessTitle": "'{0}' se eliminó correctamente.",
+ "policyEnforceLabel": "Habilitar directiva",
+ "policyErrorCannotSetSigninRisk": "No tiene permiso para guardar una directiva con una condición de riesgo de inicio de sesión.",
+ "policyErrorNoPermission": "No tiene permiso para guardar la directiva. Póngase en contacto con el administrador global.",
+ "policyErrorUnknown": "Se ha producido un error; inténtelo de nuevo más tarde.",
+ "policyFallbackWarningMessage": "No se pudo crear o actualizar \"{0}\" mediante MS Graph que da lugar a un retorno a AD Graph. Investigue el siguiente escenario, ya que lo más probable es que haya un error al llamar al punto final de la directiva para MS Graph con una condición incompatible.",
+ "policyFallbackWarningTitle": "Se realizó correctamente una parte de la creación o actualización de \"{0}\"",
+ "policyNameCannotBeEmpty": "El nombre de directiva no puede estar vacío.",
+ "policyNameDevice": "Directiva de dispositivo",
+ "policyNameFormat": "[{0}] {1}",
+ "policyNameMam": "Directiva de administración de aplicaciones móviles",
+ "policyNameMfaLocation": "Directiva de ubicación y MFA",
+ "policyNamePlaceholderText": "Ejemplo: 'directiva de aplicaciones de cumplimiento de dispositivos'",
+ "policyNameTooLongError": "El nombre de la directiva es demasiado largo. Debe tener 256 caracteres como máximo.",
+ "policyOff": "Desactivado",
+ "policyOn": "Activado",
+ "policyReportOnly": "Solo informe",
+ "policyReviewSection": "Revisar",
+ "policySaveButton": "Guardar",
+ "policyStatusIconDescription": "La directiva está habilitada.",
+ "policyStatusIconEnabled": "Icono de estado habilitado",
+ "policyTemplateName1": "Usar las restricciones que exige la aplicación en el acceso al navegador para {0}",
+ "policyTemplateName2": "Permitir que {0} acceda solo a dispositivos administrados",
+ "policyTemplateName3": "Directiva migrada desde la configuración de la Evaluación continua de acceso",
+ "policyTriggerRiskSpecific": "Seleccionar un nivel de riesgo específico",
+ "policyTriggersInfoBalloonText": "Condiciones que definen cuándo se aplicará la directiva. Por ejemplo, 'ubicación'.",
+ "policyTriggersNoConditionsSelected": "0 condiciones seleccionadas",
+ "policyTriggersSelectorLabel": "Condiciones",
+ "policyUpdateFailedMessage": "Error: {0}",
+ "policyUpdateFailedTitle": "No se pudo actualizar {0}",
+ "policyUpdateInProgressTitle": "Actualizando {0}",
+ "policyUpdateSuccessMessage": "{0} se actualizó correctamente. La directiva se habilitará dentro de unos minutos si tiene la opción \"Habilitar directiva\" establecida en \"Activado\".",
+ "policyUpdateSuccessTitle": "{0} se ha actualizado correctamente",
+ "primaryCol": "Principal",
+ "privateLinkLabel": "Private Link de Azure AD",
+ "reportOnlyInfoBox": "Modo de solo informe: las directivas se evalúan y se registran al iniciar sesión, pero no afectan a los usuarios.",
+ "requireAllControlsText": "Requerir todos los controles seleccionados",
+ "requireCompliantDevice": "Requerir dispositivo compatible",
+ "requireDomainJoined": "Se necesita un dispositivo unido a un dominio.",
+ "requireGrantReauth": "El control de sesión \"Frecuencia de inicio de sesión cada vez\" requiere un control de concesión \"Requerir autenticación multifactor\" o \"Requerir cambio de contraseña\" cuando se selecciona \"Todas las aplicaciones en la nube\".",
+ "requireMFA": "Se necesita autenticación multifactor. ",
+ "requireMfaReauth": "El control de sesión \"Frecuencia de inicio de sesión cada vez\" requiere el control de concesión \"Requerir autenticación multifactor\" para \"riesgo de inicio de sesión\"",
+ "requireOneControlText": "Requerir uno de los controles seleccionados",
+ "requirePasswordChangeReauth": "El control de sesión \"Frecuencia de inicio de sesión cada vez\" requiere el control de concesión \"requerir cambio de contraseña\" para \"riesgo de usuario\".",
+ "requireRiskReauth": "El control de sesión \"frecuencia de inicio de sesión cada vez\" requiere el control de sesión \"riesgo de usuario\" o \"riesgo de inicio de sesión\" cuando se selecciona \"todas las aplicaciones en la nube\".",
+ "resetFilters": "Restablecer filtros",
+ "sPRequired": "Se requiere una entidad de servicio",
+ "sPSelectorInfoBalloon": "Usuario o entidad de servicio que desea probar",
+ "saturday": "Sábado",
+ "searchTextTooLongError": "El texto de búsqueda es demasiado largo. No puede tener más de 256 caracteres.",
+ "securityDefaultsPolicyName": "Valores predeterminados de seguridad",
+ "securityDefaultsTextMessage": "Para habilitar la directiva de acceso condicional, deben deshabilitarse los valores predeterminados de seguridad.",
+ "securityDefaultsWarningMessage": "Parece que va a administrar las opciones de configuración de seguridad de su organización. Primero tiene que deshabilitar los valores predeterminados de seguridad antes de habilitar una directiva de acceso condicional.",
+ "selectDevicePlatforms": "Seleccionar plataformas de dispositivo",
+ "selectNamedNetworksSubtitle": "",
+ "selectNamedNetworksTitle": "Seleccionar ubicaciones",
+ "selectedSP": "Entidad de servicio seleccionada",
+ "servicePrincipalDataGridAria": "Lista de entidades de servicio disponibles",
+ "servicePrincipalDropDownLabel": "¿A qué se aplica esta directiva?",
+ "servicePrincipalInfoBox": "Algunas condiciones no están disponibles debido a la selección de \"{0}\" en la asignación de directiva",
+ "servicePrincipalRadioAll": "Todas las entidades de servicio de las que es propietario",
+ "servicePrincipalRadioSelect": "Seleccionar entidades de servicio",
+ "servicePrincipalSelectionsAria": "Cuadrícula de entidades de servicio seleccionadas",
+ "servicePrincipalSelectorAria": "Lista de entidades de servicio elegidas",
+ "servicePrincipalSelectorMultiple": "{0} entidades de servicio seleccionadas",
+ "servicePrincipalSelectorSingle": "1 entidad de servicio seleccionada",
+ "servicePrincipalSpecificInc": "Entidades de servicio específicas incluidas",
+ "servicePrincipals": "Entidades de seguridad",
+ "sessionControlBladeTitle": "Sesión",
+ "sessionControlDescriptionContent": "Controle el acceso con controles de sesión para habilitar experiencias limitadas en determinadas aplicaciones en la nube.",
+ "sessionControlDisableInfo": "Este control solo funciona con aplicaciones compatibles. Actualmente, Office 365, Exchange Online y SharePoint Online son las únicas aplicaciones en la nube compatibles con las restricciones que exige la aplicación. Haga clic aquí para obtener más información.",
+ "sessionControlInfoBallonText": "Los controles de sesión proporcionan una experiencia limitada en una aplicación de nube.",
+ "sessionControls": "Controles de sesión",
+ "sessionControlsAppEnforcedLabel": "Usar restricciones que exige la aplicación",
+ "sessionControlsCasLabel": "Utilizar el Control de aplicaciones de acceso condicional",
+ "sessionControlsSecureSignInLabel": "Requerir enlace de tokens",
+ "sharepointAppName": "SharePoint",
+ "signinRiskDescription": "Seleccionar el nivel de riesgo de inicio de sesión al que se aplicará la directiva",
+ "signinRiskInclude": "{0} incluido",
+ "signinRiskReauth": "Se tiene que seleccionar la condición \"Riesgo de inicio de sesión\" cuando se seleccione el control de sesión \"Requerir autenticación multifactor\" y \"Frecuencia de inicio de sesión (cada vez)\"",
+ "signinRiskTriggerDescriptionContent": "Seleccionar el nivel de riesgo de inicio de sesión",
+ "singleTenantServicePrincipalInfoBallonText": "La directiva solo se aplica a las entidades de servicio de inquilino único que pertenecen a su organización. Haga clic aquí para más información ",
+ "specificSigninRiskLevelsOption": "Seleccionar niveles de riesgo de inicio de sesión específicos",
+ "specificUsersExcluded": "usuarios específicos excluidos",
+ "specificUsersIncluded": "Usuarios específicos incluidos",
+ "specificUsersIncludedAndExcluded": "Usuarios específicos excluidos e incluidos",
+ "startDatePickerLabel": "Se inicia el",
+ "startFreeTrial": "Iniciar prueba gratuita",
+ "startTimePickerLabel": "Hora de inicio",
+ "sunday": "Domingo",
+ "testButton": "What If",
+ "thumbprintCol": "Huella digital",
+ "thursday": "Jueves",
+ "timeConditionAllTimesLabel": "En cualquier momento",
+ "timeConditionIntroText": "Configure la hora a la que se aplicará esta directiva.",
+ "timeConditionSelectorInfoBallonContent": "Cuando el usuario inicie sesión; por ejemplo, \"Miércoles 9:00 - 17:00 PST\"",
+ "timeConditionSelectorLabel": "Hora (versión preliminar)",
+ "timeConditionSpecificLabel": "Horas específicas (versión preliminar)",
+ "timeSelectorAllTimesText": "En cualquier momento",
+ "timeSelectorSpecificTimesText": "Horas concretas configuradas",
+ "timeZoneDropdownInfoBalloonContent": "Seleccione una zona horaria que defina el intervalo de tiempo. Esta directiva se aplica a los usuarios de todas las zonas horarias. Por ejemplo, \"Miércoles 9:00 - 17:00\" para un usuario sería \"Miércoles 10:00 - 18:00\" para un usuario de otra zona horaria.",
+ "timeZoneDropdownLabel": "Zona horaria",
+ "timeZoneDropdownPlaceholderText": "Seleccione una zona horaria.",
+ "tooManyPoliciesDescription": "En este momento, solo se muestran las 50 primeras directivas. Haga clic aquí para verlas todas.",
+ "tooManyPoliciesTitle": "Se encontraron más de 50 directivas.",
+ "trustedLocationStatusIconDescription": "La ubicación es de confianza.",
+ "trustedLocationStatusIconEnabled": "Icono de estado de confianza",
+ "tuesday": "Martes",
+ "uploadInBadState": "No se puede cargar el archivo especificado.",
+ "upsellAppsDescription": "Requiera la autenticación multifactor para las aplicaciones confidenciales siempre o solo desde fuera de la red de la empresa.",
+ "upsellAppsTitle": "Aplicaciones seguras",
+ "upsellBannerText": "Obtener una prueba gratuita Premium para usar esta característica",
+ "upsellDataDescription": "Requiere que el dispositivo esté marcado como conforme o unido a Azure AD híbrido para permitir el acceso a los recursos de la empresa.",
+ "upsellDataTitle": "Datos seguros",
+ "upsellDescription": "El acceso condicional proporciona el control y la protección que necesita para mantener protegidos sus datos corporativos, a la vez que ofrece a los usuarios una experiencia que les permite trabajar de forma óptima desde cualquier dispositivo. Por ejemplo, puede restringir el acceso desde fuera de la red de la empresa o a dispositivos que cumplan determinadas directivas.",
+ "upsellRiskDescription": "Permite requerir la autenticación multifactor para los eventos de riesgo que detecte el sistema de aprendizaje automático de Microsoft.",
+ "upsellRiskTitle": "Protección frente al riesgo",
+ "upsellTitle": "Acceso condicional",
+ "upsellWhyTitle": "¿Por qué debe usar el acceso condicional?",
+ "userAppNoneOption": "Ninguno",
+ "userNamePlaceholderText": "Escribir nombre de usuario",
+ "userNotSetSeletorLabel": "0 usuarios y grupos seleccionados",
+ "userOnlySelectionBladeExcludeDescription": "Permite seleccionar los usuarios que quedarán exentos de la directiva.",
+ "userOrGroupSelectionCountDiffBannerText": "Se han eliminado del directorio {0} configurados en la directiva, pero esto no afectará a otros usuarios y grupos que estén en ella. La próxima vez que actualice la directiva, se quitarán automáticamente los usuarios o grupos que haya eliminado.",
+ "userOrSPNotSetSelectorLabel": "0 usuarios o identidades de carga de trabajo seleccionadas",
+ "userOrSPSelectionBladeTitle": "Usuarios o identidades de la carga de trabajo",
+ "userOrSPSelectorInfoBallonText": "Las identidades en el directorio al que se aplica la directiva, incluidos usuarios, grupos y entidades de servicio",
+ "userRequired": "Usuario obligatorio",
+ "userRiskErrorBox": "Se debe seleccionar la condición \"Riesgo de usuario\" si se ha seleccionado la concesión \"Requerir cambio de contraseña\".",
+ "userRiskReauth": "Se debe seleccionar la condición \"Riesgo de usuario\" y no \"Riesgo de inicio de sesión\" cuando se seleccione la concesión \"Requerir cambio de contraseña\" y el control de sesión \"Frecuencia de inicio de sesión (cada vez)\"",
+ "userSPRequired": "Se requiere un usuario o una entidad de servicio",
+ "userSPSelectorTitle": "Identidad del usuario o de la carga de trabajo",
+ "userSelectionBladeAllUsersAndGroups": "Todos los usuarios y grupos",
+ "userSelectionBladeExcludeDescription": "Seleccionar los usuarios y grupos que quedarán exentos de la directiva",
+ "userSelectionBladeExcludeTabTitle": "Excluir",
+ "userSelectionBladeExcludedSelectorTitle": "Seleccionar usuarios excluidos",
+ "userSelectionBladeIncludeDescription": "Seleccione los usuarios a los que se aplicará esta directiva.",
+ "userSelectionBladeIncludeTabTitle": "Incluir",
+ "userSelectionBladeIncludedSelectorTitle": "Seleccionar",
+ "userSelectionBladeSelectUsers": "Seleccionar usuarios",
+ "userSelectionBladeSelectedUsers": "Seleccionar usuarios y grupos",
+ "userSelectionBladeTitle": "Usuarios y grupos",
+ "userSelectorBladeTitle": "Usuarios",
+ "userSelectorExcluded": "{0} excluido",
+ "userSelectorGroupPlural": "{0} grupos",
+ "userSelectorGroupSingular": "1 grupo",
+ "userSelectorIncluded": "{0} incluido",
+ "userSelectorInfoBallonText": "Usuarios y grupos del directorio a los que se aplica la directiva. Por ejemplo, 'Grupo piloto'.",
+ "userSelectorSelected": "{0} seleccionados",
+ "userSelectorTitle": "Usuario",
+ "userSelectorUserAndGroup": "{0}, {1}",
+ "userSelectorUserPlural": "Usuarios de {0}",
+ "userSelectorUserSingular": "1 usuario",
+ "userSelectorWithExclusion": "{0} y {1}",
+ "usersGroupsLabel": "Usuarios y grupos",
+ "viewApprovedAppsText": "Ver la lista de aplicaciones cliente aprobadas",
+ "viewCompliantAppsText": "Ver la lista de aplicaciones cliente protegidas por directivas",
+ "vpnBladeTitle": "conectividad VPN",
+ "vpnCertCreateFailedMessage": "Error: {0}",
+ "vpnCertCreateFailedTitle": "No se pudo crear {0}",
+ "vpnCertCreateInProgressTitle": "Creando {0}",
+ "vpnCertCreateSuccessMessage": "{0} se creó correctamente.",
+ "vpnCertCreateSuccessTitle": "{0} se creó correctamente.",
+ "vpnCertNoRowsMessage": "No se encontraron certificados VPN.",
+ "vpnCertUpdateFailedMessage": "Error: {0}",
+ "vpnCertUpdateFailedTitle": "No se pudo actualizar {0}",
+ "vpnCertUpdateInProgressTitle": "Actualizando {0}",
+ "vpnCertUpdateSuccessMessage": "{0} se actualizó correctamente.",
+ "vpnCertUpdateSuccessTitle": "{0} se ha actualizado correctamente",
+ "vpnFeatureInfo": "Para obtener más información sobre el acceso condicional y la conectividad VPN, haga clic aquí.",
+ "vpnFeatureWarning": "Una vez que se haya creado un certificado VPN en Azure Portal, Azure AD comenzará a usarlo inmediatamente para emitir certificados de corta duración al cliente VPN. Es fundamental que el certificado VPN se implemente inmediatamente en el servidor VPN para evitar problemas con la validación de credenciales del cliente VPN.",
+ "vpnMenuText": "conectividad VPN",
+ "vpncertDropdownDefaultOption": "Duración",
+ "vpncertDropdownInfoBalloonContent": "Seleccione la duración para el certificado que quiere crear.",
+ "vpncertDropdownLabel": "Seleccionar duración",
+ "vpncertDropdownOneyearOption": "1 año",
+ "vpncertDropdownThreeyearOption": "3 años",
+ "vpncertDropdownTwoyearOption": "2 años",
+ "wednesday": "Miércoles",
+ "whatIfAppEnforcedControl": "Usar restricciones que exige la aplicación",
+ "whatIfBladeDescription": "Permite probar el impacto del acceso condicional para un usuario cuando inicia sesión en determinadas condiciones.",
+ "whatIfBladeTitle": "What If",
+ "whatIfClassicPoliciesWarning": "Esta herramienta no evalúa las directivas clásicas.",
+ "whatIfClientAppInfo": "Aplicación cliente desde la que el usuario inicia sesión. Por ejemplo, \"Explorador\".",
+ "whatIfCountry": "País",
+ "whatIfCountryInfo": "País desde el que inicia sesión el usuario.",
+ "whatIfDevicePlatformInfo": "Plataforma del dispositivo desde la que inicia sesión el usuario.",
+ "whatIfDeviceStateInfo": "Estado del dispositivo desde el que inicia sesión el usuario",
+ "whatIfEnterIpAddress": "Escriba la dirección IP (p. ej., 40.77.182.32).",
+ "whatIfErrorInvalidIpAddress": "Se ha especificado una dirección IP no válida.",
+ "whatIfEvaResultApplication": "Aplicaciones en la nube",
+ "whatIfEvaResultClientApps": "Aplicación cliente",
+ "whatIfEvaResultDevicePlatform": "Plataforma de dispositivo",
+ "whatIfEvaResultEmptyPolicy": "Directiva vacía",
+ "whatIfEvaResultInvalidCondition": "Condición no válida",
+ "whatIfEvaResultInvalidPolicy": "Directiva no válida",
+ "whatIfEvaResultLocation": "Ubicación",
+ "whatIfEvaResultNotEnoughInformation": "No hay suficiente información.",
+ "whatIfEvaResultPolicyNotEnabled": "Directiva no habilitada",
+ "whatIfEvaResultSignInRisk": "Riesgo de inicio de sesión",
+ "whatIfEvaResultUsers": "Usuarios y grupos",
+ "whatIfIpAddress": "Dirección IP",
+ "whatIfIpAddressInfo": "Dirección IP desde la que inicia sesión el usuario.",
+ "whatIfIpCountryInfoBoxText": "Si usa Dirección IP o País, ambos campos serán necesarios y deberá asignarlos correctamente al mismo tiempo.",
+ "whatIfPolicyAppliesTab": "Directivas que se aplicarán",
+ "whatIfPolicyDoesNotApplyTab": "Directivas que no se aplicarán",
+ "whatIfReasons": "Motivos por los que no se aplicará esta directiva",
+ "whatIfSelectClientApp": "Seleccionar una aplicación cliente...",
+ "whatIfSelectCountry": "Seleccionar un país...",
+ "whatIfSelectDevicePlatform": "Seleccionar plataforma del dispositivo...",
+ "whatIfSelectPrivateLink": "Seleccione un vínculo privado...",
+ "whatIfSelectServicePrincipalRisk": "Seleccionar riesgo de la entidad de servicio...",
+ "whatIfSelectSignInRisk": "Seleccionar riesgo de inicio de sesión...",
+ "whatIfSelectType": "Seleccione el tipo de identidad",
+ "whatIfSelectUserRisk": "Seleccionar el riesgo de usuario...",
+ "whatIfServicePrincipalRiskInfo": "Nivel de riesgo asociado con la entidad de servicio",
+ "whatIfSignInRisk": "Riesgo de inicio de sesión",
+ "whatIfSignInRiskInfo": "Nivel de riesgo asociado con el inicio de sesión.",
+ "whatIfUnknownAreas": "Áreas desconocidas",
+ "whatIfUserPickerLabel": "Usuario seleccionado",
+ "whatIfUserPickerNoRowsLabel": "No se ha seleccionado ningún usuario o entidad de servicio",
+ "whatIfUserRiskInfo": "Nivel de riesgo asociado con el usuario.",
+ "whatIfUserSelectorInfo": "Usuario del directorio que quiere probar.",
+ "windows365InfoBox": "Al seleccionar Windows 365, esta acción impactará en las conexiones a los equipos en la nube y los hosts de sesión de Azure Virtual Desktop. Haga clic aquí para obtener más información.",
+ "windowsDisplayName": "Windows",
+ "windowsPhoneDisplayName": "Windows Phone",
+ "workloadIdentities": "Identidades de carga de trabajo (versión preliminar)",
+ "workloadIdentity": "Identidad de la carga de trabajo"
+ },
+ "AppResources": {
+ "AppSettingsUx": {
+ "assignmentFilterColumnHeader": "Filtro",
+ "assignmentFilterTypeColumnHeader": "Modo de filtro",
+ "assignmentToast": "Notificaciones del usuario final",
+ "assignmentTypeTableHeader": "TIPO DE ASIGNACIÓN",
+ "deadlineTimeColumnLabel": "Fecha límite de instalación",
+ "deliveryOptimizationPriorityHeader": "Prioridad de optimización de distribución",
+ "groupTableHeader": "Grupo",
+ "installContextLabel": "Contexto de instalación",
+ "isRemovable": "Instalar como extraíble",
+ "licenseTypeLabel": "Tipo de licencia",
+ "modeTableHeader": "Modo de grupo",
+ "policySet": "Conjunto de directivas",
+ "restartGracePeriodHeader": "Período de gracia de reinicio",
+ "startTimeColumnLabel": "Disponibilidad",
+ "tracks": "Seguimientos",
+ "uninstallOnRemoval": "Desinstalar al eliminar el dispositivo",
+ "updateMode": "Prioridad de actualización",
+ "vPN": "VPN"
+ },
+ "AppType": {
+ "aADWebApp": "Aplicación web de AAD",
+ "androidEnterpriseSystemApp": "Aplicación del sistema Android Enterprise",
+ "androidForWorkApp": "Aplicación de Google Play Store administrado",
+ "androidLobApp": "Aplicación de línea de negocio Android",
+ "androidStoreApp": "Aplicación de la tienda Android",
+ "builtInAndroid": "Aplicación Android integrada",
+ "builtInApp": "Aplicación integrada",
+ "builtInIos": "Aplicación iOS integrada",
+ "iosLobApp": "Aplicación de línea de negocio iOS",
+ "iosStoreApp": "Aplicación de la tienda iOS",
+ "iosVppApp": "Aplicación del Programa de Compras por Volumen iOS",
+ "lineOfBusinessApp": "Aplicación de línea de negocio",
+ "macOSDmgApp": "Aplicación macOS (DMG)",
+ "macOSEdgeApp": "Microsoft Edge (macOS)",
+ "macOSLobApp": "Aplicación de línea de negocio de macOS",
+ "macOSMdatpApp": "ATP de Microsoft Defender (macOS)",
+ "macOSOfficeSuiteApp": "Conjunto de programas Office para macOS",
+ "macOsVppApp": "Aplicación del Programa de Compras por Volumen de macOS",
+ "managedAndroidLobApp": "Aplicación de línea de negocio Android administrada",
+ "managedAndroidStoreApp": "Aplicación de la tienda Android administrada",
+ "managedGooglePlayApp": "Aplicación de Google Play Store administrado",
+ "managedGooglePlayPrivateApp": "Aplicación privada de Google Play administrado",
+ "managedGooglePlayWebApp": "Vínculo web de Google Play administrado",
+ "managedIosLobApp": "Aplicación de línea de negocio iOS administrada",
+ "managedIosStoreApp": "Aplicación de la tienda iOS administrada",
+ "microsoftStoreForBusinessApp": "Aplicación de la Tienda Microsoft para Empresas",
+ "microsoftStoreForBusinessReleaseManagedApp": "Tienda Microsoft para Empresas",
+ "officeAddIn": "Complemento de Office",
+ "officeSuiteApp": "Aplicaciones de Microsoft 365 (Windows 10 y versiones posteriores)",
+ "sharePointApp": "Aplicación de SharePoint",
+ "teamsApp": "Aplicación Teams",
+ "webApp": "Vínculo web",
+ "windowsAppXLobApp": "Aplicación de línea de negocio de AppX para Windows",
+ "windowsClassicApp": "Aplicación de Windows (Win32)",
+ "windowsEdgeApp": "Microsoft Edge (Windows 10 y versiones posteriores)",
+ "windowsMobileMsiLobApp": "Aplicación de línea de negocio de MSI para Windows",
+ "windowsPhone81AppXBundleLobApp": "Aplicación de línea de negocio AppX para Windows Phone 8.1",
+ "windowsPhone81AppXLobApp": "Aplicación de línea de negocio AppX para Windows Phone 8.1",
+ "windowsPhone81StoreApp": "Aplicación de la Tienda Windows Phone 8.1",
+ "windowsPhoneXapLobApp": "Aplicación de línea de negocio de XAP para Windows Phone",
+ "windowsStoreApp": "Aplicación de Microsoft Store",
+ "windowsUniversalAppXLobApp": "Aplicación de línea de negocio de AppX para Windows Universal",
+ "windowsUniversalLobApp": "Aplicación de línea de negocio Windows universal"
+ },
+ "AppTypePlatform": {
+ "android": "Android",
+ "ios": "iOS",
+ "macOs": "macOS",
+ "web": "Web",
+ "windows": "Windows"
+ },
+ "AssignmentAction": {
+ "exclude": "Excluida",
+ "include": "Incluido",
+ "includeAllDevicesVirtualGroup": "Incluido",
+ "includeAllUsersVirtualGroup": "Incluido"
+ },
+ "AssignmentToast": {
+ "hideAll": "Ocultar todas las notificaciones del sistema",
+ "showAll": "Mostrar todas las notificaciones del sistema",
+ "showReboot": "Mostrar notificaciones del sistema para reinicios de equipo"
+ },
+ "DeliveryOptimizationPriority": {
+ "backgroundNormal": "Segundo plano",
+ "displayText": "Descarga de contenido en {0}",
+ "foreground": "Primer plano",
+ "header": "Prioridad de optimización de distribución"
+ },
+ "DeviceRestartBehaviorOptions": {
+ "allow": "La instalación de la aplicación puede forzar el reinicio del dispositivo",
+ "basedOnReturnCode": "Determinar comportamiento en función de códigos de retorno",
+ "force": "Intune forzará un reinicio obligatorio del dispositivo",
+ "suppress": "Ninguna acción específica"
+ },
+ "FilterType": {
+ "exclude": "Excluir",
+ "include": "Incluir",
+ "none": "Ninguno"
+ },
+ "InstallIntent": {
+ "available": "Disponible para dispositivos inscritos",
+ "availableWithoutEnrollment": "Disponible con o sin inscripción",
+ "notApplicable": "No aplicable",
+ "required": "Requerido",
+ "uninstall": "Desinstalar"
+ },
+ "SettingType": {
+ "assignmentType": "Tipo de asignación",
+ "deviceLicensing": "Tipo de licencia",
+ "installContext": "Desinstalar al eliminar el dispositivo",
+ "toastSettings": "Notificaciones del usuario final",
+ "vpnConfiguration": "VPN"
+ },
+ "UpdateMode": {
+ "default": "Predeterminado",
+ "postponed": "Pospuesto",
+ "priority": "Prioridad alta"
+ }
+ },
+ "WindowsEnrollment": {
+ "coManagementAuthorityDesc": "Establezca la configuración de administración conjunta para la integración de Configuration Manager.",
+ "coManagementAuthorityTitle": "Configuración de administración conjunta ",
+ "deploymentProfiles": "Perfiles de Windows AutoPilot Deployment",
+ "description": "Obtenga información sobre las siete formas diferentes en que los usuarios o administradores pueden inscribir una PC con Windows 10/11 en Intune.",
+ "descriptionLabel": "Métodos de inscripción de Windows",
+ "enrollmentStatusPage": "Página de estado de inscripción"
+ },
+ "Win32Program": {
+ "DeviceRestartBehaviorOptions": {
+ "allow": "La instalación de la aplicación puede forzar el reinicio del dispositivo",
+ "basedOnReturnCode": "Determinar comportamiento en función de códigos de retorno",
+ "force": "Intune forzará un reinicio obligatorio del dispositivo",
+ "suppress": "Ninguna acción específica"
+ },
+ "RunAsAccountOptions": {
+ "system": "Sistema",
+ "user": "Usuario"
+ },
+ "bladeTitle": "Programa",
+ "deviceRestartBehavior": "Comportamiento de reinicio de dispositivo",
+ "deviceRestartBehaviorTooltip": "Seleccione el comportamiento de reinicio del dispositivo después de que la aplicación se haya instalado correctamente. Seleccione \"Determinar comportamiento en función de códigos de retorno\" para reiniciar el dispositivo según los valores de configuración de los códigos de retorno. Seleccione \"Ninguna acción específica\" para suprimir los reinicios del dispositivo durante la instalación de aplicaciones basadas en MSI. Seleccione \"La instalación de la aplicación puede forzar el reinicio del dispositivo\" para permitir que se complete la instalación de la aplicación sin suprimir los reinicios. Seleccione \"Intune forzará un reinicio obligatorio del dispositivo\" para reiniciar siempre el dispositivo después de que la instalación de la aplicación se haya realizado correctamente.",
+ "header": "Especifique los comandos para instalar y desinstalar la aplicación:",
+ "installCommand": "Comando de instalación",
+ "installCommandMaxLengthErrorMessage": "El comando de instalación no puede superar la longitud máxima permitida de 1024 caracteres.",
+ "installCommandTooltip": "La línea de comandos de instalación completa que se usa para instalar la aplicación.",
+ "runAs32Bit": "Ejecutar comandos de instalación y desinstalación en un proceso de 32 bits en clientes de 64 bits",
+ "runAs32BitTooltip": "Seleccione \"Sí\" para instalar y desinstalar la aplicación en un proceso de 32 bits en clientes de 64 bits. Seleccione \"No\" (predeterminado) para instalarla y desinstalarla en un proceso de 64 bits en clientes de 64 bits. Los clientes de 32 bits siempre usan un proceso de 32 bits.",
+ "runAsAccount": "Comportamiento de instalación",
+ "runAsAccountTooltip": "Seleccione \"Sistema\" para instalar esta aplicación para todos los usuarios si se admite. Seleccione \"Usuario\" para instalar esta aplicación para el usuario que ha iniciado sesión en el dispositivo. En las aplicaciones MSI de doble propósito, los cambios evitarán que las actualizaciones y desinstalaciones finalicen correctamente hasta que se restaure el valor aplicado al dispositivo en el momento de la instalación original.",
+ "selectorLabel": "Programa",
+ "uninstallCommand": "Comando de desinstalación",
+ "uninstallCommandTooltip": "La línea de comandos de desinstalación completa que se usa para desinstalar la aplicación."
+ },
+ "CategoryDescription": {
+ "androidGeneralApplicationRestrictions": "Use estos valores para mantenerse informado acerca de qué usuarios instalan aplicaciones que no están aprobadas para su uso en la empresa. Seleccione el tipo de lista de aplicaciones restringidas:
\r\n Aplicaciones prohibidas: es una lista de las aplicaciones sobre las que desea que se le informe cuando los usuarios las instalan.
\r\n Aplicaciones aprobadas: es una lista de las aplicaciones que están aprobadas para su uso en la empresa. Cuando los usuarios instalan una aplicación que no está en esta lista, se le notifica.
\r\n ",
+ "androidZebraMxZebraMx": "Cargue un perfil de MX en formato XML para configurar los dispositivos Zebra.",
+ "iosDeviceFeaturesAirprint": "Use estos valores para configurar los dispositivos iOS a fin de conectarse automáticamente a las impresoras compatibles con AirPrint de la red. Necesita la dirección IP y la ruta de acceso de recurso de las impresoras.",
+ "iosDeviceFeaturesExtensibleSingleSignOn": "Configure una extensión de la aplicación que habilite el inicio de sesión único (SSO) para los dispositivos que ejecutan iOS 13.0 o versiones posteriores.",
+ "iosDeviceFeaturesHomeScreenLayout": "Configure la distribución de las pantallas de inicio y del Dock en los dispositivos iOS. Algunos dispositivos pueden tener límites en cuanto al número de elementos que se pueden mostrar.",
+ "iosDeviceFeaturesIOSWallpaper": "Muestra una imagen que aparecerá en la pantalla de inicio o la pantalla de bloqueo de los dispositivos iOS.\r\n Para mostrar una imagen única en cada ubicación, cree un perfil con la imagen de la pantalla de bloqueo y otro con la de la pantalla de inicio.\r\n A continuación, asigne ambos perfiles a sus usuarios.\r\n
\r\n \r\n - Tamaño máximo de archivo: 750 KB
\r\n - Tipo de archivo: PNG, JPG o JPEG
\r\n
\r\n ",
+ "iosDeviceFeaturesNotifications": "Especificar la configuración de notificación de las aplicaciones. Compatible con iOS 9.3 y versiones posteriores.",
+ "iosDeviceFeaturesSharedDevice": "Especifica el texto opcional que se muestra en la pantalla bloqueada. Se admite en iOS 9.3 y versiones posteriores. Más información",
+ "iosGeneralApplicationRestrictions": "Use estos valores para mantenerse informado acerca de qué usuarios instalan aplicaciones que no están aprobadas para su uso en la empresa. Seleccione el tipo de lista de aplicaciones restringidas:
\r\n Aplicaciones prohibidas: es una lista de las aplicaciones sobre las que desea que se le informe cuando los usuarios las instalan.
\r\n Aplicaciones aprobadas: es una lista de las aplicaciones que están aprobadas para su uso en la empresa. Cuando los usuarios instalan una aplicación que no está en esta lista, se le notifica.
\r\n ",
+ "iosGeneralApplicationVisibility": "Use la lista Aplicaciones visibles para especificar las aplicaciones de iOS que el usuario puede ver o iniciar. Use la lista Aplicaciones ocultas para especificar las aplicaciones de iOS que el usuario no puede ver ni iniciar.",
+ "iosGeneralAutonomousSingleAppMode": "Las aplicaciones que se agregan a esta lista y se asignan a un dispositivo pueden bloquearlo de forma que solo ejecute esa aplicación una vez que se ha iniciado, o bien bloquear el dispositivo mientras se ejecuta una acción determinada (por ejemplo, hacer un examen). Una vez completada la acción, o si se quita la restricción, el dispositivo vuelve a su estado normal.",
+ "iosGeneralKiosk": "El modo de pantalla completa bloquea varias configuraciones en un dispositivo o especifica la aplicación que puede ejecutarse en este. Puede ser útil, por ejemplo, en una tienda o entornos similares, en los que un dispositivo debe ejecutar una única aplicación de demostración.",
+ "macDeviceFeaturesAirprint": "Use estas opciones para configurar los dispositivos macOS de forma que se conecten automáticamente a impresoras compatibles con AirPrint de su red. Necesitará la dirección IP y la ruta de acceso a los recursos de sus impresoras.",
+ "macDeviceFeaturesAssociatedDomains": "Configure los dominios asociados para compartir datos y credenciales de inicio de sesión entre las aplicaciones y los sitios web de su organización. Este perfil se puede aplicar a los dispositivos que ejecutan macOS 10.15 o versiones posteriores.",
+ "macDeviceFeaturesExtensibleSingleSignOn": "Configure una extensión de la aplicación que habilite el inicio de sesión único (SSO) para los dispositivos que ejecutan macOS 10.15 o versiones posteriores.",
+ "macDeviceFeaturesLoginItems": "Elija qué aplicaciones, archivos y carpetas se abren cuando los usuarios inician sesión en los dispositivos. Si no quiere que los usuarios cambien la forma en que se abren las aplicaciones seleccionadas, puede ocultar la aplicación en la configuración del usuario.",
+ "macDeviceFeaturesLoginWindow": "Configure la apariencia de la pantalla de inicio de sesión de macOS y las funciones disponibles para los usuarios antes y después de iniciar sesión.",
+ "macExtensionsKernelExtensions": "Use estas opciones para configurar la directiva de extensión de kernel en dispositivos Mac OS que ejecutan 10.13.2 o posterior.",
+ "macGeneralDomains": "Los correos electrónicos que el usuario envía o recibe y no coinciden con los dominios que especifique aquí se marcarán como de no confianza.",
+ "windows10EndpointProtectionApplicationGuard": "Al utilizar Microsoft Edge, la Protección de aplicaciones de Microsoft Defender protege su entorno de sitios que su organización no ha definido todavía como de confianza. Cuando los usuarios visitan sitios que no figuran en el límite de red aislada, los sitios se abren en una sesión de exploración virtual en Hyper-V. Los sitios de confianza se definen mediante un límite de red, que puede establecerse en Configuración del dispositivo. Tenga en cuenta que esta característica solo está disponible para dispositivos que ejecutan Windows 10 de 64 bits o versiones posteriores.",
+ "windows10EndpointProtectionCredentialGuard": "Al habilitar Credential Guard, se habilitan los valores obligatorios siguientes:\r\n
\r\n \r\n - Enable virtualization-based security: activa la seguridad basada en la virtualización (VBS) la próxima vez que se reinicie. Este tipo de seguridad usa el hipervisor de Windows para proporcionar compatibilidad con los servicios de seguridad.
\r\n
\r\n - Secure Boot with Direct Memory Access: activa VBS con arranque seguro y acceso directo a memoria (DMA).
\r\n
\r\n ",
+ "windows10EndpointProtectionDeviceGuard": "Elija aplicaciones adicionales que deban auditarse o con confianza para ejecutarse mediante el Control de aplicaciones de Microsoft Defender. Se confía automáticamente en la ejecución de los componentes de Windows y de todas las aplicaciones de Microsoft Store.
\r\n Las aplicaciones no se bloquearán al ejecutarse en modo “Solo auditoría”. Este modo registra todos los eventos en los registros de cliente locales.\r\n ",
+ "windows10GeneralPrivacyPerApp": "Agregue las aplicaciones que deben tener un comportamiento de privacidad diferente al establecido en “Privacidad predeterminada”.",
+ "windows10NetworkBoundaryNetworkBoundary": "El límite de red es una lista de los recursos de empresa, como los intervalos de direcciones IP y dominios hospedados en la nube de los equipos que se incluyen en la red empresarial. Defina límites de red a fin de aplicar directivas para proteger los datos que residen en estas ubicaciones.",
+ "windowsHealthMonitoring": "Configure la directiva de seguimiento de estado de Windows.",
+ "windowsPhoneGeneralApplicationRestrictions": "Windows Phone puede bloquear la instalación o el inicio de aplicaciones incluidas en la lista de aplicaciones prohibidas o no especificadas en la lista de aplicaciones aprobadas a los usuarios. Todas las aplicaciones administradas deben agregarse a la lista aprobada."
+ },
"Inputs": {
"accountDomain": "Dominio de cuenta",
"accountDomainHint": "por ejemplo, contosodomain",
@@ -9962,6 +9858,7 @@
"displayNameLabel": "Nombre",
"displayVersionHint": "Escribir la versión de la aplicación",
"displayVersionLabel": "Versión de la aplicación",
+ "displayVersionLengthCheck": "La longitud de la versión de visualización debe ser de 130 caracteres como máximo.",
"eBookCategoryNameLabel": "Nombre predeterminado",
"emailAccount": "Nombre de la cuenta de correo electrónico",
"emailAccountHint": "Por ejemplo, Correo electrónico corporativo.",
@@ -10066,385 +9963,51 @@
"xmlFormatInvalid": "El formato de la directiva XML no es válido.",
"xmlTooLarge": "El tamaño de entrada debe ser inferior a 1 MB."
},
- "Tooltips": {
- "PolicySettings": {
- "TouchId1": {
- "android": "En Android, puede permitir el uso de la identificación de huellas digitales en lugar de un PIN. Se pide a los usuarios que proporcionen sus huellas digitales cuando acceden a esta aplicación con sus cuentas profesionales.",
- "iOS": "En el caso de los dispositivos iOS/iPadOS, puede permitir la identificación mediante una huella digital, en lugar de con un PIN. Cuando el usuario intente acceder a la aplicación con su cuenta profesional, se le solicitará que proporcione su huella digital.",
- "mac": "En el caso de los dispositivos Mac, puede permitir la identificación mediante una huella digital, en lugar de con un PIN. Cuando el usuario intente acceder a la aplicación con su cuenta profesional, se le solicitará que proporcione su huella digital."
- },
- "appSharingFromLevel1": "Seleccione una de las opciones siguientes para especificar las aplicaciones de las que esta aplicación puede recibir datos:",
- "appSharingFromLevel2": "{0}: Permitir solo la recepción de datos de otras aplicaciones administradas por directivas en las cuentas o documentos de la organización",
- "appSharingFromLevel3": "{0}: Permitir la recepción de datos de cualquier aplicación en las cuentas o documentos de la organización",
- "appSharingFromLevel4": "{0}: No permitir la recepción de datos de ninguna aplicación en las cuentas o documentos de la organización",
- "appSharingFromLevel5": "{0}: permitir la transferencia de datos desde cualquier aplicación y tratar todos los datos entrantes que no tengan una identidad de usuario como datos de la organización.",
- "appSharingToLevel1": "Seleccione una de las opciones siguientes para especificar las aplicaciones a las que esta aplicación puede enviar datos:",
- "appSharingToLevel2": "{0}: Permitir solo el envío de datos de la organización a otras aplicaciones administradas por directivas",
- "appSharingToLevel3": "{0}: Permitir el envío de datos de la organización a cualquier aplicación",
- "appSharingToLevel4": "{0}: No permitir el envío de datos de la organización a ninguna aplicación",
- "appSharingToLevel5": "{0}: permitir solo la transferencia a otras aplicaciones administradas por directivas y la transferencia de archivos a otras aplicaciones administradas por MDM en los dispositivos inscritos.",
- "appSharingToLevel6": "{0}: permitir solo la transferencia a otras aplicaciones administradas por directivas y filtrar los cuadros de diálogo Abrir en/Compartir del sistema operativo para que solo muestren aplicaciones de este tipo.",
- "conditionalEncryption1": "Seleccione {0} para deshabilitar el cifrado de aplicaciones para el almacenamiento interno de aplicaciones cuando se detecte el cifrado de dispositivos en un dispositivo inscrito.",
- "conditionalEncryption2": "Nota: Intune solo puede detectar la inscripción de dispositivos con MDM de Intune. El almacenamiento externo de aplicaciones seguirá siendo cifrado para garantizar que aplicaciones sin administrar puedan acceder a los datos.",
- "contactSyncMac": "Si esta opción está deshabilitada, las aplicaciones no pueden guardar contactos en la libreta de direcciones nativa.",
- "contactsSync": "Elija Bloquear para impedir que las aplicaciones administradas por directivas guarden datos en las aplicaciones nativas del dispositivo (como Contactos, Calendario y widgets) o para impedir el uso de complementos dentro de las aplicaciones administradas por directivas. Si elige Permitir, la aplicación administrada por directivas puede guardar datos en las aplicaciones nativas o usar complementos, si esas características se admiten y habilitan en la aplicación administrada por directivas.
Las aplicaciones pueden proporcionar capacidad de configuración adicional con directivas de configuración de aplicaciones. Para obtener más información, consulte la documentación de la aplicación.",
- "encryptionAndroid1": "En el caso de las aplicaciones asociadas a una directiva de administración de aplicaciones móviles de Intune, el cifrado lo proporciona Microsoft. Los datos se cifran de forma sincrónica durante las operaciones de E/S de archivos, de acuerdo con la configuración de la directiva de administración de aplicaciones móviles. Las aplicaciones administradas en Android usan el cifrado AES-128 en modo CBC mediante las bibliotecas de criptografía de plataformas. El método de cifrado no es compatible con FIPS 140-2. El cifrado SHA-256 se admite como instrucción explícita mediante el parámetro SigAlg y solo funcionará en dispositivos con la versión 4.2 y posteriores. El contenido del almacenamiento del dispositivo siempre estará cifrado.",
- "encryptionAndroid2": "Si solicita el cifrado en la directiva de aplicación, se le solicitará al usuario final que configure y use un PIN para acceder al dispositivo. Si no hay un PIN configurado para acceder al dispositivo, las aplicaciones no se iniciarán y, en su lugar, el usuario final verá el mensaje siguiente: \"La compañía ha requerido que primero debe habilitar un PIN de dispositivo para tener acceso a esta aplicación\".",
- "encryptionMac1": "En el caso de las aplicaciones asociadas a una directiva de administración de aplicaciones móviles de Intune, el cifrado lo proporciona Microsoft. Los datos se cifran de forma sincrónica durante las operaciones de E/S de archivos de acuerdo con la configuración de la directiva de administración de aplicaciones móviles. Las aplicaciones administradas en Mac usan el cifrado AES-128 en modo CBC mediante las bibliotecas de criptografía de plataformas. El método de cifrado no es compatible con FIPS 140-2. El cifrado SHA-256 se admite como instrucción explícita mediante el parámetro SigAlg y solo funcionará en dispositivos con la versión 4.2 y posteriores. El contenido del almacenamiento del dispositivo siempre estará cifrado.",
- "faceId1": "Cuando proceda, puede permitir el uso de la identificación de caras en lugar de un PIN. Se pide a los usuarios que proporcionen identificación de caras al acceder a esta aplicación con sus cuentas profesionales.",
- "faceId2": "Seleccione Sí para permitir la identificación de caras en lugar de usar un PIN para el acceso a la aplicación.",
- "managementLevelsAndroid1": "Use esta opción para especificar si la directiva se aplica a los dispositivos del administrador de dispositivos Android, a los dispositivos Android Enterprise o a los dispositivos no administrados.",
- "managementLevelsAndroid2": "{0}: los dispositivos no administrados son aquellos en los que no se ha detectado la administración MDM de Intune. Esto incluye a los proveedores de MDM de terceros.",
- "managementLevelsAndroid3": "{0}: dispositivos administrados por Intune que usan la API de administración de dispositivos Android.",
- "managementLevelsAndroid4": "{0}: dispositivos administrados por Intune que usan perfiles de trabajo de Android Enterprise o la administración de dispositivos completa de Android Enterprise.",
- "managementLevelsIos1": "Use esta opción para especificar si la directiva se aplica a los dispositivos administrados por MDM o a dispositivos no administrados.",
- "managementLevelsIos2": "{0}: los dispositivos no administrados son aquellos en los que no se ha detectado la administración MDM de Intune. Esto incluye a los proveedores de MDM de terceros.",
- "managementLevelsIos3": "{0}: MDM de Intune administra los dispositivos administrados.",
- "minAppVersion": "Defina el número de versión mínimo de la aplicación que debe tener un usuario para obtener acceso seguro a ella.",
- "minAppVersionWarning": "Defina el número de versión mínimo recomendado de la aplicación que debe tener un usuario para el acceso seguro a ella.",
- "minOsVersion": "Defina el número de versión mínimo necesario del sistema operativo que debe tener un usuario para obtener acceso seguro a la aplicación.",
- "minOsVersionWarning": "Defina el número de versión mínimo recomendado del sistema operativo que debe tener un usuario para obtener acceso seguro a la aplicación.",
- "minPatchVersion": "Defina el nivel de revisión de seguridad Android más antiguo requerido que el usuario puede tener para conseguir acceso seguro a la aplicación.",
- "minPatchVersionWarning": "Defina el nivel de revisión de seguridad Android recomendado más antiguo que el usuario puede tener para obtener acceso seguro a la aplicación.",
- "minSdkVersion": "Defina la versión mínima necesaria del SDK de la directiva de protección de aplicaciones de Intune que debe tener un usuario para obtener acceso seguro a la aplicación.",
- "requireAppPinDefault": "Seleccione Sí para deshabilitar el PIN de la aplicación cuando se detecte un bloqueo de dispositivo en un dispositivo inscrito.
",
- "targetAllApps1": "Use esta opción para destinar la directiva a aplicaciones en dispositivos con cualquier estado de administración.",
- "targetAllApps2": "Esta configuración se reemplaza durante la resolución de conflictos de directivas si un usuario tiene una directiva destinada a un estado de administración específico.",
- "touchId2": "Seleccione {0} para requerir una huella digital para la identificación y el acceso a la aplicación, en lugar de un PIN."
- },
- "Tap": {
- "pinResetAfterNumberOfDays": "Especifique el número de días que deben transcurrir antes de que el usuario deba restablecer el PIN.",
- "previousPinBlockCount": "Esta configuración especifica el número de PIN anteriores que Intune va a conservar. Todo PIN nuevo debe ser distinto de los que Intune conserva."
+ "WindowsFeatureUpdate": {
+ "EndOFSupportStatus": {
+ "notSupported": "Sin soporte técnico",
+ "supportEnding": "Próximo al fin del soporte técnico",
+ "supported": "Con soporte técnico"
+ }
},
- "WipPolicySettings": {
- "25": "",
- "allowWindowsSearch": "Esto permite que Windows Search continúe la búsqueda en los datos cifrados.",
- "authoritativeIpRanges": "Habilite esta configuración si quiere invalidar la detección automática de intervalos IP de Windows.",
- "authoritativeProxyServers": "Habilite esta configuración si quiere invalidar la detección automática de servidores proxy de Windows.",
- "checkInput": "Comprobar la validez de las entradas",
- "dataRecoveryCert": "Un certificado de recuperación es un certificado del Sistema de cifrado de archivos (EFS) que se puede usar para recuperar archivos cifrados si la clave de cifrado se pierde o se daña. Debe crear el certificado de recuperación y especificarlo aquí. Encontrará más información aquí",
- "enterpriseCloudResources": "Especifique recursos de nube para tratarlos como corporativos y protegerlos con la directiva Windows Information Protection. Se pueden especificar varios recursos separados con el carácter \"|\".
Si tiene un proxy configurado en la empresa, puede especificar el proxy a través del cual se dirigirá el tráfico hacia los recursos de nube especificados.
URL[,Proxy]|URL[,Proxy]
Sin proxy: contoso.sharepoint.com|contoso.visualstudio.com
Con proxy: contoso.sharepoint.com,proxy.contoso.com|contoso.visualstudio.com,proxy.contoso.com
",
- "enterpriseIPv4Ranges": "Especifique los intervalos IPv4 que conforman su red corporativa. Estos intervalos se usan junto con los nombres de dominio de la red empresarial para definir los límites de su red corporativa.
Esta configuración es necesaria para tener Windows Information Protection habilitado.
Se pueden especificar varios intervalos separados por comas.
Por ejemplo: 3.4.0.1-3.4.255.255,192.168.1.1-192.168.255.255
",
- "enterpriseIPv6Ranges": "Especifique los intervalos IPv6 que conforman su red corporativa. Estos intervalos se usan junto con los nombres de dominio de la red empresarial que especifique para definir los límites de su red corporativa.
Se pueden especificar varios intervalos separados por comas.
Por ejemplo: 2001:4898:dc05::-2001:4898:dc05:ffff:ffff:ffff:ffff:ffff,2a01:110::-2a01:110:7fff:ffff:ffff:ffff:ffff:ffff
",
- "enterpriseInternalProxyServers": "Si tiene un proxy configurado en su compañía, puede especificar el proxy a través del cual debe dirigirse el tráfico hacia los recursos de nube especificados en la configuración de Recursos de Enterprise Cloud.
Se pueden especificar varios valores separados con punto y coma.
Por ejemplo: contoso.internalproxy1.com;contoso.internalproxy2.com
",
- "enterpriseNetworkDomainNames": "Especifique los nombres DNS que conforman su red corporativa. Estos nombres se usan junto con los intervalos IP que especifique para definir los límites de su red corporativa. Se pueden especificar varios valores separados por comas.
Esta configuración es necesaria para tener Windows Information Protection habilitado.
Por ejemplo: corp.contoso.com,region.contoso.com
",
- "enterpriseProtectedDomainNames": "Especifique los nombres DNS que conforman su red corporativa. Estos nombres se usan con los intervalos de IP que especifique para definir los límites de su red corporativa. Se pueden especificar varios valores separados por \"|\".
Esta configuración es necesaria para habilitar Windows Information Protection.
Por ejemplo: corp.contoso.com|region.contoso.com
",
- "enterpriseProxyServers": "Si tiene servidores proxy externos en la red corporativa, especifíquelos aquí. Cuando especifique una dirección de servidor proxy, debe especificar también el puerto a través del cual debe permitirse y protegerse el tráfico con Windows Information Protection.
Nota: Esta lista no debe incluir servidores de la lista de servidores proxy internos de la empresa. Se pueden especificar varios valores separados con punto y coma.
Por ejemplo: proxy.contoso.com:80;proxy2.contoso.com:80
",
- "maxInactivityTime1": "Especifica el tiempo máximo permitido (en minutos) que debe transcurrir con el dispositivo inactivo para que este se bloquee mediante PIN o contraseña. Los usuarios pueden seleccionar cualquier valor existente inferior al tiempo máximo especificado en la aplicación Configuración. Tenga en cuenta que Lumia 950 y 950XL tienen un valor de tiempo de espera máximo de cinco minutos, independientemente del valor establecido por esta directiva.",
- "maxInactivityTime2": "0 (valor predeterminado): no se define el tiempo de espera. El valor predeterminado \"0\" se interpreta como \"Tiempo de espera no definido\".",
- "maxPasswordAttempts1": "Esta directiva tiene comportamientos diferentes para los dispositivos móviles y de escritorio.",
- "maxPasswordAttempts2": "En el dispositivo móvil, cuando el usuario alcanza el valor establecido por la directiva, se borran los datos.",
- "maxPasswordAttempts3": "Cuando el usuario alcanza el valor establecido por esta directiva en un dispositivo de escritorio, este no se borra. En su lugar, se aplica el modo de recuperación de BitLocker, con el que los datos son inaccesibles pero recuperables. Si BitLocker no está habilitado, la directiva no puede aplicarse.",
- "maxPasswordAttempts4": "Antes de alcanzar el límite de intentos erróneos, se envía al usuario a la pantalla de bloqueo y se le avisa de que, en caso de más intentos incorrectos, el equipo se bloqueará. Cuando el usuario alcanza el límite, el dispositivo se reinicia automáticamente y muestra la página de recuperación de BitLocker, donde se pide al usuario la clave de recuperación de BitLocker.",
- "maxPasswordAttempts5": "0 (valor predeterminado): el dispositivo no se borra nunca después de especificarse un PIN o una contraseña incorrectos.",
- "maxPasswordAttempts6": "El valor más seguro es 0 si todos los valores de la directiva = 0. En caso contrario, el valor más seguro es el valor mínimo de la directiva.",
- "mdmDiscoveryUrl": "Especifique la dirección URL del punto de conexión de inscripción de MDM para los usuarios que se inscriban en MDM. De forma predeterminada, se especifica para Intune.",
- "minimumPinLength1": "Valor entero que establece el número mínimo de caracteres requeridos para el PIN. El valor predeterminado es 4. El número más bajo que se puede establecer para esta configuración de directiva es 4. El número más alto que se puede establecer debe ser menor que el número establecido en la configuración de directiva Longitud máxima del PIN o 127, el que sea más bajo.",
- "minimumPinLength2": "Si define esta configuración de directiva, la longitud del PIN debe ser mayor que o igual a este número. Si la deshabilita o no la configura, entonces la longitud debe ser mayor que o igual a 4.",
- "name": "Nombre del límite de esta red",
- "neutralResources": "Si tiene puntos de conexión de redireccionamiento de autenticación en la compañía, especifíquelos aquí. Las ubicaciones que especifique aquí se consideran personales o corporativas en función del contexto de la conexión antes del redireccionamiento.
Se pueden especificar varios valores separados por comas.
Por ejemplo: sts.contoso.com,sts.contoso2.com
",
- "passportForWork1": "Valor que establece Windows Hello para empresas como método para iniciar sesión en Windows.",
- "passportForWork2": "El valor predeterminado es true. Si la directiva se establece en false, el usuario no puede aprovisionar Windows Hello para empresas, excepto en los teléfonos móviles unidos a Azure Active Directory donde se requiere el aprovisionamiento.",
- "pinExpiration": "El número máximo que se puede establecer para esta configuración de directiva es 730 y el número mínimo es 0. Si la directiva se establece en 0, el PIN del usuario no expirará nunca.",
- "pinHistory1": "El número máximo que se puede establecer para esta configuración de directiva es 50 y el número mínimo es 0. Si la directiva se establece en 0, no se requiere el almacenamiento de los PIN anteriores.",
- "pinHistory2": "El PIN actual del usuario se incluye en el conjunto de los PIN asociados a su cuenta. En caso de restablecimiento de los PIN, el historial correspondiente no se conserva.",
- "protectUnderLock": "Protege el contenido de la aplicación mientras el dispositivo está en estado bloqueado.",
- "protectionModeBlock": "Bloquear: impide que los datos de empresa salgan de las aplicaciones protegidas.
",
- "protectionModeOff": "Desactivado: el usuario puede reubicar datos fuera de las aplicaciones protegidas. No se registra ninguna acción.
",
- "protectionModeOverride": "Permitir invalidaciones: se pide confirmación al usuario cuando intenta reubicar datos de una aplicación protegida en otra no protegida. Si decide invalidar este mensaje, la acción se registra.
",
- "protectionModeSilent": "Silencio: el usuario puede reubicar datos fuera de las aplicaciones protegidas. Estas acciones se registran.
",
- "required": "Requerido",
- "revokeOnMdmHandoff": "Agregada en Windows 10, versión 1703. Esta directiva controla si se revocarán las claves WIP cuando un dispositivo se actualice de MAM a MDM. Si está establecida en \"Desactivada\", las claves no se revocarán y el usuario seguirá teniendo acceso a los archivos protegidos después de la actualización. Esta es la opción recomendada si el servicio MDM está configurado con el mismo elemento EnterpriseID de WIP que el servicio MAM.",
- "revokeOnUnenroll": "Esto hará que las claves de cifrado se revoquen al anularse la inscripción de un dispositivo en esta directiva.",
- "rmsTemplateForEdp": "GUID de TemplateID que se va a usar para el cifrado RMS. La plantilla de Azure RMS permite al administrador de TI configurar quién tiene acceso al archivo protegido por RMS y durante cuánto tiempo.",
- "showWipIcon": "Esto permitirá que el usuario sepa cuando se actúa en un contexto corporativo, mediante la superposición de un icono.",
- "useRmsForWip": "Especifica si se permite el cifrado de Azure RMS para WIP."
+ "SecurityTemplate": {
+ "aSR": "Reducción de la superficie expuesta a ataques",
+ "accountProtection": "Protección de cuentas",
+ "allDevices": "Todos los dispositivos",
+ "antivirus": "Antivirus",
+ "antivirusReporting": "Informes de Antivirus (vista previa)",
+ "conditionalAccess": "Acceso condicional",
+ "deviceCompliance": "Conformidad de dispositivos",
+ "diskEncryption": "Cifrado de disco",
+ "eDR": "Detección de puntos de conexión y respuesta",
+ "firewall": "Firewall",
+ "helpSupport": "Ayuda y soporte técnico",
+ "setup": "Instalación",
+ "wdapt": "Microsoft Defender for Endpoint"
+ },
+ "Win32ReturnCodes": {
+ "CodeTypes": {
+ "failed": "Error",
+ "hardReboot": "Reinicio en frío",
+ "retry": "Reintentar",
+ "softReboot": "Reinicio en caliente",
+ "success": "Correcto"
},
- "requireAppPin": "Seleccione la opción Sí para deshabilitar el PIN de aplicación cuando se detecte un bloqueo de dispositivo en un dispositivo inscrito.
Nota: Intune no puede detectar la inscripción de dispositivos con una solución EMM de terceros en iOS/iPadOS.
"
- },
- "AppInfoBalloonText": {
- "Certificate": {
- "customSubjectName": "CN={{UserName}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US\r\nor\r\nCN={{AAD_Device_ID}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US",
- "keySize": "Seleccione el número de bits que contiene la clave.",
- "keyUsage": "Especifique la acción cifrada que es necesaria para el intercambio de la clave pública del certificado.",
- "renewalThreshold": "Especifique el porcentaje (entre uno y 99 por ciento) de duración restante del certificado que se permite antes de que un dispositivo pueda solicitar la renovación del certificado. La cantidad recomendada en Intune es el 20 %. (1 a 99)",
- "rootCert": "Elija un perfil de certificado de CA raíz previamente configurado y asignado. El certificado de CA debe coincidir con el certificado raíz de la CA que emite el certificado para este perfil (el que está configurando actualmente).",
- "scepServerUrl": "Escriba una dirección URL para el servidor NDES que emite certificados mediante SCEP (debe ser HTTPS). Por ejemplo, https://contoso.com/certsrv/mscep/mscep.dll",
- "scepServerUrls": "Agregar una o más direcciones URL para el servidor NDES que emite certificados mediante SCEP (debe ser HTTPS). Por ejemplo, https://contoso.com/certsrv/mscep/mscep.dll",
- "subjectAlternativeName": "Nombre alternativo del firmante",
- "subjectNameFormat": "Formato de nombre del firmante",
- "validityPeriod": "La cantidad de tiempo restante antes de que expire el certificado. Escriba un valor que sea igual o inferior al período de validez que se muestra en la plantilla de certificado. El valor predeterminado se establece en un año."
- },
- "appInstallContext": "Esta opción especifica el contexto de la instalación que se asociará a la aplicación. Para aplicaciones de modo dual, seleccione el contexto que quiere usar en esta aplicación. Para el resto de aplicaciones, esta opción se selecciona previamente según el paquete y no se puede modificar.",
- "autoUpdateMode": "Configure la prioridad de actualización de la aplicación. Seleccione Predeterminado para requerir que el dispositivo esté conectado a WiFi, que se cargue y que no se use activamente antes de actualizar la aplicación. Seleccione Prioridad alta para actualizar la aplicación tan pronto como el desarrollador haya publicado la aplicación, independientemente del estado de cargo, la funcionalidad WiFi o la actividad del usuario final en el dispositivo. La prioridad alta solo surtirá efecto en los dispositivos DO",
- "configurationSettingsFormat": "Texto de formato de opciones de configuración",
- "ignoreVersionDetection": "Establezca esta opción en \"Sí\" para las aplicaciones que el desarrollador propio actualiza automáticamente (por ejemplo, Google Chrome).",
- "ignoreVersionDetectionMacOSLobApp": "Seleccione \"Sí\" para las aplicaciones que el desarrollador de aplicaciones actualiza automáticamente o para comprobar solamente el valor bundleID de la aplicación antes de la instalación. Seleccione \"No\" para comprobar el número de versión y el valor bundleID de la aplicación antes de la instalación.",
- "installAsManagedMacOSLobApp": "Esta configuración solo se aplica a macOS 11 y versiones posteriores. La aplicación se instalará, pero no se administrará en macOS 10.15 y versiones anteriores.",
- "installContextDropdown": "Seleccione el contexto de instalación adecuado. En el contexto de usuario la aplicación se instala solo para el usuario de destino, mientras que en el contexto de dispositivo la aplicación se instala para todos los usuarios del dispositivo.",
- "ldapUrl": "Este es el nombre de host de LDAP en el que los clientes pueden obtener las claves de cifrado públicas para los destinatarios de correo electrónico. Los correos electrónicos se cifrarán cuando haya una clave disponible. Formatos admitidos: - ldap.example.com
\r\n- ldap.example.com:123
\r\n- ldap://ldap.example.com
- ldap://ldap.example.com:123
- ldaps://ldap.example.com
\r\n- ldaps://ldap.example.com:123
",
- "permissionsSettings": "Seleccione los permisos en tiempo de ejecución de la aplicación asociada.",
- "policyAssociatedApp": "Seleccione la aplicación a la que se asociará esta directiva.",
- "policyConfigurationSettings": "Seleccione el método que quiere usar para definir las opciones de configuración de esta directiva.",
- "policyDescription": "Opcionalmente, escriba una descripción para esta directiva de configuración.",
- "policyEnrollmentType": "Elija si esta configuración se administra a través de la administración de dispositivos o aplicaciones creadas con el SDK de Intune.",
- "policyName": "Escriba un nombre para esta directiva de configuración.",
- "policyPlatform": "Seleccione la plataforma a la que se aplicará esta directiva de configuración de aplicaciones.",
- "policyProfileType": "Seleccionar los tipos de perfil de dispositivo a los que se aplicará este perfil de configuración de la aplicación",
- "policySMime": "Configurar las opciones de cifrado y firma S/MIME para Outlook.",
- "sMimeDeployCertsFromIntune": "Especifique si se van a entregar o no certificados S/MIME de Intune para su uso con Outlook.\r\nIntune puede implementar automáticamente certificados de firma y cifrado para los usuarios a través del Portal de empresa.",
- "sMimeEnable": "Especificar si los controles S/MIME se habilitan o no al redactar un correo electrónico",
- "sMimeEnableAllowChange": "Especifique si el usuario tiene permiso para cambiar el valor Habilitar S/MIME.",
- "sMimeEncryptAllEmails": "Especifique si se deben cifrar o no todos los mensajes de correo electrónico.\r\nEl cifrado convierte los datos en texto cifrado para que solo el destinatario deseado pueda leerlos.",
- "sMimeEncryptAllEmailsAllowChange": "Especifique si el usuario tiene permiso para cambiar el valor Cifrar todos los correos electrónicos.",
- "sMimeEncryptionCertProfile": "Especifique el perfil de certificado para el cifrado de correo electrónico.",
- "sMimeSignAllEmails": "Especifique si se deben firmar o no todos los mensajes de correo electrónico.\r\nCon la firma digital se comprueba la autenticidad del correo electrónico y se garantiza que el contenido no se ha alterado en tránsito.",
- "sMimeSignAllEmailsAllowChange": "Especifique si el usuario tiene permiso para cambiar el valor Firmar todos los correos electrónicos.",
- "sMimeSigningCertProfile": "Especifique el perfil de certificado para la firma de correo electrónico.",
- "sMimeUserNotificationType": "Método para notificar a los usuarios que deben abrir el Portal de empresa a fin de recuperar los certificados S/MIME para Outlook."
- },
- "WindowsQualityUpdateDaysUntilForcedReboot": {
- "oneDay": "1 día",
- "twoDays": "2 días",
- "zeroDays": "0 días"
- },
- "Autopilot": {
- "AssignResourceAccount": {
- "createNewCommandMenu": "Crear nuevo",
- "createNewResourceAccountInfo": "\r\nCree una cuenta de recurso durante la inscripción. La cuenta del recurso se agregará a la tabla de cuentas de recursos inmediatamente, pero no estará activa hasta que el dispositivo se inscriba y se compruebe la suscripción de Surface Hub. Más información sobre las cuentas de recursos
\r\n ",
- "createNewResourceTitle": "Crear cuenta de recurso",
- "deviceNameInvalid": "El formato del nombre de dispositivo no es válido.",
- "deviceNameRequired": "Se requiere el nombre de un dispositivo.",
- "editResourceAccountLabel": "Editar",
- "selectExistingCommandMenu": "Seleccionar existente"
- },
- "Device": {
- "ComputerName": {
- "validFormat": "Los nombres deben tener un máximo de 15 caracteres y pueden contener letras (a-z, A-Z), números (0-9) y guiones. No deben contener solo números y no pueden incluir un espacio en blanco."
- },
- "Header": {
- "addressableUserName": "Nombre descriptivo",
- "azureADDevice": "Dispositivo de Azure AD asociado",
- "batch": "Etiqueta de grupo",
- "dateAssigned": "Fecha de asignación",
- "deviceDisplayName": "Nombre de dispositivo",
- "deviceName": "Nombre de dispositivo",
- "deviceUseType": "Tipo de uso del dispositivo",
- "enrollmentState": "Estado de inscripción",
- "intuneDevice": "Dispositivo de Intune asociado",
- "lastContacted": "Último contacto",
- "make": "Fabricante",
- "model": "Modelo",
- "profile": "Perfil asignado",
- "profileStatus": "Estado del perfil",
- "purchaseOrderId": "Pedido de compra",
- "resourceAccount": "Cuenta de recurso",
- "serialNumber": "Número de serie",
- "userPrincipalName": "Usuario"
- }
- },
- "DeviceUseType": {
- "meetingAndPresentation": "Reunión y presentación",
- "teamCollaboration": "Colaboración en grupo"
- },
- "Devices": {
- "featureDescription": "Windows Autopilot le permite personalizar la experiencia de configuración rápida (OOBE) para sus usuarios.",
- "importErrorStatus": "Algunos dispositivos no se importaron. Haga clic aquí para obtener más información.",
- "importPendingStatus": "Importación en curso. Tiempo transcurrido: {0} min. Este proceso puede tardar hasta {1} min."
- },
- "DirectoryService": {
- "activeDirectoryAD": "Unidos a Azure AD híbrido",
- "activeDirectoryADLabel": "Azure AD híbrido con Autopilot",
- "azureAD": "Unidos a Azure AD",
- "unknownType": "Tipo desconocido"
- },
- "Filter": {
- "enrollmentState": "Estado",
- "profile": "Estado del perfil"
- },
- "OOBE": {
- "AddressableUserName": {
- "validateEmpty": "El nombre descriptivo de usuario no puede estar vacío."
- },
- "ApplyComputerNameTemplate": {
- "infoBalloon": "Cree una plantilla de asignación de nombres para agregar nombres a los dispositivos durante la inscripción.",
- "label": "Aplicar plantilla de nombre de dispositivo"
- },
- "ApplyComputerNameTemplateDisabled": {
- "label": "Para los tipos unidos a Azure AD híbrido de perfiles de Autopilot Deployment, los dispositivos reciben un nombre de acuerdo con los valores especificados en la configuración de Unión a un dominio."
- },
- "ComputerNameTemplate": {
- "emptyValue": "MiEmpresa-%RAND:4%",
- "label": "Escriba un nombre",
- "noDisallowedChars": "El nombre solo puede contener caracteres alfanuméricos, guiones, %SERIAL% o %RAND:x%",
- "serialLength": "No se pueden usar más de siete caracteres con %SERIAL%",
- "validateLessThan15Chars": "El nombre debe tener un máximo de 15 caracteres.",
- "validateNoSpaces": "Los nombres de equipo no pueden contener espacios",
- "validateNotAllNumbers": "El nombre también debe contener letras o guiones",
- "validateNotEmpty": "El nombre no puede estar vacío",
- "validateOnlyOneMacro": "El nombre solo debe contener una de estas macros: %SERIAL% o %RAND:x%"
- },
- "ConfigureComputerNameTemplate": {
- "description": "Cree un nombre único para los dispositivos. Los nombres deben tener un máximo de 15 caracteres y pueden contener letras (a-z, A-Z), números (0-9) y guiones. No deben contener solo números. Los nombres no pueden incluir un espacio en blanco. Use la macro %SERIAL% para agregar un número de serie específico del hardware. Como alternativa, use la macro %RAND:x% para agregar una cadena aleatoria de números, donde x es igual al número de dígitos que se van a agregar."
- },
- "EnableWhiteGlove": {
- "infoBalloon": "Habilite la opción para presionar la tecla Windows 5 veces y ejecutar OOBE sin autenticación de usuario a fin de inscribir el dispositivo y aprovisionar todas las configuraciones y aplicaciones del contexto del sistema. Las relativas al contexto del usuario se proporcionarán cuando este inicie sesión.",
- "label": "Permitir implementación aprovisionada previamente"
- },
- "HybridAzureADSkipConnectivityCheck": {
- "infoBalloon": "El flujo Unión a Azure AD híbrido de Autopilot continuará aunque no se establezca conectividad con el controlador de dominio durante la configuración rápida.",
- "label": "Omitir comprobación de conectividad de AD (vista previa)"
- },
- "accountType": "Tipo de cuenta de usuario",
- "accountTypeInfo": "Especifique si los usuarios son administradores o usuarios estándar en el dispositivo. Tenga en cuenta que esta configuración no se aplica a las cuentas de Administrador global o Administrador de empresa. Estas cuentas no pueden ser usuarios estándar porque tienen acceso a todas las características administrativas en Azure AD.",
- "configOOBEInfo": "\r\nEstablezca la configuración rápida para los dispositivos Autopilot\r\n
",
- "configureDevice": "Modo de implementación",
- "configureDeviceHintForSurfaceHub2": "Autopilot solo admite el modo de implementación automática para Surface Hub 2. Este modo no asocia el usuario al dispositivo inscrito, por lo que no requiere credenciales de usuario.",
- "configureDeviceHintForWindowsPC": "\r\n El modo de implementación controla si un usuario debe proporcionar credenciales para aprovisionar el dispositivo.\r\n
\r\n \r\n - \r\n Controlado por el usuario: los dispositivos se asocian al usuario que los inscribe y se requieren sus credenciales para el aprovisionamiento.\r\n
\r\n - \r\n Implementación automática (versión preliminar): los dispositivos no se asocian al usuario que los inscribe y no se requieren sus credenciales para el aprovisionamiento.\r\n
\r\n
",
- "createSurfaceHub2Info": "Establezca la configuración de inscripción de Autopilot para los dispositivos Surface Hub 2. De forma predeterminada, Autopilot habilita la omisión de la autenticación del usuario durante la configuración rápida. Obtenga más información acerca de Windows Autopilot para Surface Hub 2.",
- "createWindowsPCInfo": "\r\n\r\nLas opciones siguientes se habilitan automáticamente para los dispositivos Autopilot en modo autoimplementable:\r\n
\r\n\r\n - \r\n Omisión de la selección de uso para trabajo o casa\r\n
\r\n - \r\n Omisión de la configuración de OneDrive y el registro de OEM\r\n
\r\n - \r\n Omisión de la autenticación de usuario en OOBE\r\n
\r\n
",
- "endUserDevice": "Controlado por el usuario",
- "hideEscapeLink": "Ocultar opciones para cambiar la cuenta",
- "hideEscapeLinkInfo": "Las opciones para cambiar de cuenta y empezar de nuevo con una cuenta diferente aparecen, respectivamente, durante la configuración inicial del dispositivo en la página de inicio de sesión de la empresa y en la página de error de dominio. Para ocultar estas opciones, debe configurar la marca de la empresa en Azure Active Directory (requiere Windows 10, 1809 o posterior, o Windows 11).",
- "info": "Al configurar perfiles de AutoPilot, se define la configuración rápida que los usuarios ven al iniciar Windows por primera vez. ",
- "language": "Idioma (región)",
- "languageInfo": "Especifique el idioma y la región que se van a usar.",
- "licenseAgreement": "Términos de licencia del software de Microsoft",
- "licenseAgreementInfo": "Especifique si se va a mostrar el CLUF a los usuarios.",
- "plugAndForgetDevice": "Implementación automática (versión preliminar)",
- "plugAndForgetGA": "Auto implementación",
- "privacySettingWarning": "El valor predeterminado para la recopilación de datos de diagnóstico ha cambiado para los dispositivos que ejecutan Windows 10, versión 1903 y posteriores, o Windows 11.",
- "privacySettings": "Configuración de privacidad",
- "privacySettingsInfo": "Especifique si se va a mostrar la configuración de privacidad a los usuarios.",
- "showCortanaConfigurationPage": "Configuración de Cortana",
- "showCortanaConfigurationPageInfo": "Al mostrarla, se habilita la presentación de la configuración de Cortana durante el inicio.",
- "skipEULAWarning": "Información importante sobre cómo ocultar los términos de licencia",
- "skipKeyboardSelection": "Configurar el teclado automáticamente",
- "skipKeyboardSelectionInfo": "Si es true, la página de selección de teclado se omite en caso de haberse establecido el idioma.",
- "subtitle": "Perfiles de AutoPilot",
- "title": "Configuración rápida (OOBE)",
- "useOSDefaultLanguage": "Predeterminado del sistema operativo",
- "userSelect": "Selección de usuario"
- },
- "Sync": {
- "lastRequestedLabel": "Última solicitud de sincronización",
- "lastSuccessfulLabel": "Última sincronización correcta",
- "syncInProgress": "La sincronización está en curso. Vuelva a comprobarlo en breve.",
- "syncInitiated": "Sincronización de la configuración de AutoPilot iniciada.",
- "syncSettingsTitle": "Sincronizar configuración de AutoPilot"
- },
- "Title": {
- "devices": "Dispositivos Windows AutoPilot"
- },
- "Tooltips": {
- "addressableUserName": "Nombre de saludo que se muestra durante la instalación del dispositivo.",
- "azureADDevice": "Ir a los detalles del dispositivo asociado. N/D significa que no hay ningún dispositivo asociado.",
- "batch": "Atributo de cadena que se puede usar para identificar un grupo de dispositivos. El campo Etiqueta de grupo de Intune se asigna al atributo OrderID en los dispositivos de Azure AD.",
- "dateAssigned": "Marca de tiempo que indica cuándo se asignó el perfil al dispositivo.",
- "deviceDisplayName": "Configure un nombre único para un dispositivo. Este nombre se omitirá en las implementaciones unidas a Azure AD híbrido. El origen del nombre de dispositivo sigue siendo el perfil de unión a un dominio para los dispositivos de Azure AD híbrido.",
- "deviceName": "Nombre que aparece cuando alguien ha intentado detectar el dispositivo y conectarse a él.",
- "deviceUseType": " La configuración del dispositivo se basa en las opciones seleccionadas. Siempre puede cambiar más adelante en las opciones de configuración.\r\n \r\n - Para las reuniones y presentaciones, Windows Hello no se activa y los datos se eliminan después de cada sesión.\r\n
\r\n - Para la colaboración en grupo, Windows Hello se activa y los perfiles se guardan para un inicio de sesión rápido
\r\n
",
- "enrollmentState": "Especifica si el dispositivo se ha inscrito.",
- "intuneDevice": "Ir a los detalles del dispositivo asociado. N/D significa que no hay ningún dispositivo asociado.",
- "lastContacted": "Marca de tiempo que indica cuándo se contactó con el dispositivo por última vez.",
- "make": "Fabricante del dispositivo seleccionado.",
- "model": "Modelo del dispositivo seleccionado.",
- "profile": "Nombre del perfil asignado al dispositivo.",
- "profileStatus": "Especifica si un perfil está asignado al dispositivo.",
- "purchaseOrderId": "Identificador de pedido de compra",
- "resourceAccount": "La identidad del dispositivo o el nombre principal de usuario (UPN).",
- "serialNumber": "Número de serie del dispositivo seleccionado.",
- "userPrincipalName": "Usuario para el relleno previo de la autenticación durante la instalación del dispositivo."
- },
- "allDevices": "Todos los dispositivos",
- "allDevicesAlreadyAssignedError": "Ya hay un perfil de Autopilot asignado a Todos los dispositivos.",
- "assignFailedDescription": "No se pudieron actualizar las asignaciones de {0}.",
- "assignFailedTitle": "No se pudieron actualizar las asignaciones de perfil de AutoPilot.",
- "assignSuccessDescription": "Las asignaciones de {0} se actualizaron correctamente.",
- "assignSuccessTitle": "Las asignaciones de perfil de AutoPilot se actualizaron correctamente.",
- "assignSufaceHub2ProfileNextStep": "Pasos siguientes para esta implementación",
- "assignSurfaceHub2ProfileToDeviceGroup": "1. Asignar este perfil a al menos un grupo de dispositivos",
- "assignSurfaceHub2ProfileToResourceAccount": "2. Asignar una cuenta de recursos a cada dispositivo Surface Hub en el que implemente este perfil",
- "assignedDevicesCount": "Dispositivos asignados",
- "assignedDevicesResourceAccountDescription": "Para implementar este perfil en un dispositivo, debe asignar una cuenta de recurso al dispositivo. Seleccione un dispositivo cada vez para asignarle una cuenta de recurso existente o crear una. Más información sobre las cuentas de recursos
",
- "assignedDevicesResourceAccountStatusBarMessage": "En esta tabla solo se enumeran los dispositivos de Surface Hub 2 a los que se les ha asignado este perfil.",
- "assigningDescription": "Actualizando las asignaciones de {0}.",
- "assigningTitle": "Actualización de las asignaciones de perfil de AutoPilot",
- "cannotDeleteMessage": "Este perfil está asignado a grupos. Para poder eliminarlo, antes debe desasignarlo de todos los grupos.",
- "cannotDeleteTitle": "No se puede eliminar {0}",
- "createdDateTime": "Creada",
- "deleteMessage": "Si elimina el perfil de AutoPilot, los dispositivos asignados a este se mostrarán Sin asignar.",
- "deleteMessageWithPolicySet": "{0} se incluye en uno o más conjuntos de directivas. Si elimina {0}, ya no podrá asignarlo mediante dichos conjuntos.",
- "deleteTitle": "¿Seguro que desea eliminar este perfil?",
- "description": "Descripción",
- "deviceType": "Tipo de dispositivo",
- "deviceUse": "Uso del dispositivo",
- "directoryServiceHintForSurfaceHub2": " \r\n AutoPilot solo admite dispositivos unidos a Azure AD para Surface Hub 2. Especifique cómo se unen los dispositivos a Active Directory (AD) en su organización.\r\n
\r\n \r\n - \r\n Unidos a Azure AD: solo en la nube, sin una instancia local de Windows Server Active Directory.\r\n
\r\n
\r\n ",
- "directoryServiceHintForWindowsPC": "\r\n \r\n Especifique cómo se unen los dispositivos a Active Directory (AD) en su organización:\r\n
\r\n \r\n - \r\n Unido a Azure AD: solo en la nube, sin una instancia local de Windows Server Active Directory\r\n
\r\n
\r\n ",
- "getAssignedDevicesCountError": "Error al capturar el recuento de dispositivos asignados.",
- "getAssignmentsError": "Error al capturar las asignaciones de perfiles de AutoPilot.",
- "harvestDeviceId": "Convertir todos los dispositivos de destino a Autopilot",
- "harvestDeviceIdDescription": "De forma predeterminada, este perfil solo puede aplicarse a los dispositivos Autopilot sincronizados desde el servicio Autopilot.",
- "harvestDeviceIdInfo": "\r\n Seleccione Sí para registrar todos los dispositivos de destino en Autopilot, si aún no lo están. La próxima vez que los dispositivos registrados sigan el proceso de configuración rápida (OOBE) de Windows, se les aplicará el escenario de Autopilot asignado.\r\n
\r\n Tenga en cuenta que algunos escenarios de Autopilot requieren una versión de compilación mínima específica de Windows. Asegúrese de que el dispositivo tiene la versión de compilación mínima necesaria para aplicar el escenario.\r\n
\r\n Al eliminar este perfil, no se eliminarán los dispositivos afectados de Autopilot. Para eliminar un dispositivo de Autopilot, use la vista Dispositivos Windows Autopilot.\r\n ",
- "harvestDeviceIdWarning": "Una vez convertidos, los dispositivos Autopilot solo pueden revertirse si se eliminan de la lista de dispositivos Autopilot.",
- "holoLensCommandMenu": "HoloLens",
- "info": "Los perfiles de implementación de Windows AutoPilot permiten personalizar la configuración rápida para sus dispositivos.",
- "invalidProfileNameMessage": "No se permite el carácter \"{0}\".",
- "joinTypeLabel": "Unirse a Azure AD como",
- "lastModifiedDateTime": "Última modificación:",
- "name": "Nombre",
- "noAutopilotProfile": "No hay perfiles de AutoPilot.",
- "notEnoughPermissionAssignedError": "No tiene suficientes permisos para asignar este perfil a uno o varios de los grupos seleccionados. Póngase en contacto con el administrador.",
- "profile": "perfil",
- "resourceAccountStatusBarMessage": "Se requiere una cuenta de recurso para cada dispositivo Surface Hub 2 en el que se implemente este perfil. Haga clic para obtener más información.",
- "selectServices": "Seleccionar el servicio de directorio al que se unirán los dispositivos",
- "surfaceHub2CommandMenu": "Surface Hub 2",
- "surfaceHub2SCommandMenu": "Surface Hub 2S",
- "userAffinityLabel": "Modo de implementación",
- "windowsPCCommandMenu": "PC Windows",
- "directoryServiceLabel": "Unirse a Azure AD como"
- },
- "AppInformationTab": {
- "Error": {
- "multipleChildApps": "Una aplicación de LOB de macOS solo puede instalarse como administrada cuando el paquete cargado contiene una sola aplicación."
- },
- "Info": {
- "AppStoreUrl": {
- "android": "Escriba el vínculo a la lista de aplicaciones de la tienda Google Play. Por ejemplo:",
- "androidLink": "https://play.google.com/store/apps/details?id=com.microsoft.office.outlook",
- "windows": "Escriba el vínculo a la lista de aplicaciones de Microsoft Store. Por ejemplo:",
- "windowsLink": "https://www.microsoft.com/en-us/p/microsoft-to-do-lists-tasks-reminders/9nblggh5r558"
- },
- "appPackageFile": "Archivo que contiene la aplicación en un formato que se puede instalar como prueba en un dispositivo. Los tipos de paquete válidos son: Android (.apk), iOS (.ipa), macOS (.intunemac), Windows (.msi, .appx., .appxbundle, .msix y .msixbundle).",
- "applicableDeviceType": "Seleccione los tipos de dispositivo que pueden instalar esta aplicación.",
- "category": "Clasifique la aplicación para que los usuarios puedan ordenarla y encontrarla más fácilmente en el Portal de empresa. Puede elegir varias categorías.",
- "categoryLink": "https://docs.microsoft.com/en-us/intune/apps/apps-add#create-and-edit-categories-for-apps",
- "description": "Ayuda a los usuarios del dispositivo a comprender qué es la aplicación o qué pueden hacer en ella. Esta descripción se puede ver en el Portal de empresa.",
- "developer": "Nombre de la empresa o individuo que desarrolló la aplicación. Esta información estará visible para las personas que hayan iniciado sesión en el centro de administración.",
- "displayVersion": "Versión de la aplicación. Los usuarios pueden ver esta información en el Portal de empresa.",
- "infoUrl": "Vincula las personas a un sitio web o documentación que tiene más información sobre la aplicación. La dirección URL de información estará visible para los usuarios del Portal de empresa.",
- "isFeatured": "Las aplicaciones destacadas se colocan de forma visible en el Portal de empresa para que los usuarios puedan acceder rápidamente a ellas.",
- "learnMore": "Más información",
- "logo": "Cargue un logotipo asociado a la aplicación. Este logotipo aparecerá junto a la aplicación en el Portal de empresa.",
- "macOSDmgAppPackageFile": "Un archivo que contiene la aplicación en un formato que se puede transferir localmente en un dispositivo. Tipo de paquete válido: .dmg.",
- "minOperatingSystem": "Seleccione la versión del sistema operativo más temprana en la que se puede instalar la aplicación. Si asigna la aplicación a un dispositivo con un sistema operativo anterior, no se instalará.",
- "name": "Agregue un nombre para la aplicación. Este nombre estará visible en la lista de aplicaciones de Intune y para los usuarios del Portal de empresa.",
- "notes": "Agregue notas adicionales sobre la aplicación, que serán visibles para las personas que hayan iniciado sesión en el centro de administración.",
- "owner": "El nombre de la persona de su organización que administra licencias o es el punto de contacto de esta aplicación. Este nombre estará visible para las personas que hayan iniciado sesión en el centro de administración.",
- "packageName": "Póngase en contacto con el fabricante del dispositivo para obtener el nombre del paquete de la aplicación. Nombre de paquete de ejemplo: com.example.app",
- "privacyUrl": "Proporciona un vínculo para las personas que quieran informarse mejor sobre la configuración y los términos de privacidad de la aplicación. La dirección URL de privacidad estará visible para los usuarios del Portal de empresa.",
- "publisher": "Nombre del desarrollador o de la empresa que distribuye la aplicación. Los usuarios pueden ver esta información en el Portal de empresa.",
- "selectApp": "Busque en la tienda App Store para iOS las aplicaciones que quiera implementar con Intune.",
- "useManagedBrowser": "Si es necesario, cuando un usuario abra la aplicación web, se abrirá en un explorador protegido por Intune, como Microsoft Edge o Intune Managed Browser. Esta configuración se aplica a los dispositivos iOS y Android.",
- "useManagedBrowserLink": "https://docs.microsoft.com/en-us/intune/apps/app-configuration-managed-browser",
- "win32AppPackageFile": "Archivo que contiene la aplicación en un formato que puede transferirse localmente en un dispositivo. Tipo de paquete válido: .intunewin."
- },
- "descriptionPreview": "Vista previa",
- "descriptionRequired": "Se requiere la descripción.",
- "editDescription": "Editar la descripción",
- "name": "Información de la aplicación",
- "nameForOfficeSuitApp": "Información del conjunto de aplicaciones"
- },
+ "Columns": {
+ "codeType": "Tipo de código",
+ "returnCode": "Código de retorno"
+ },
+ "bladeTitle": "Códigos de retorno",
+ "gridAriaLabel": "Códigos de retorno",
+ "header": "Especifique códigos de retorno para indicar el comportamiento posterior a la instalación:",
+ "onAddAnnounceMessage": "El código de retorno agregó el elemento {0} de {1}",
+ "onDeleteSuccess": "El código de retorno {0} se ha eliminado correctamente.",
+ "returnCodeAlreadyUsedValidation": "El código de retorno ya está en uso.",
+ "returnCodeMustBeIntegerValidation": "El código de retorno debe ser un entero.",
+ "returnCodeShouldBeAtLeast": "El código de retorno debe ser como mínimo {0}.",
+ "returnCodeShouldBeAtMost": "El código de retorno debe ser como máximo {0}.",
+ "selectorLabel": "Códigos de retorno"
+ },
"NotificationMessage": {
"NotificationMessageTemplatesTab": {
"arabic": "Árabe",
@@ -10516,84 +10079,599 @@
"localeLabel": "Configuración regional",
"isDefaultLocale": "Predeterminado"
},
- "Win32Program": {
- "DeviceRestartBehaviorOptions": {
- "allow": "La instalación de la aplicación puede forzar el reinicio del dispositivo",
- "basedOnReturnCode": "Determinar comportamiento en función de códigos de retorno",
- "force": "Intune forzará un reinicio obligatorio del dispositivo",
- "suppress": "Ninguna acción específica"
- },
- "RunAsAccountOptions": {
- "system": "Sistema",
- "user": "Usuario"
- },
- "bladeTitle": "Programa",
- "deviceRestartBehavior": "Comportamiento de reinicio de dispositivo",
- "deviceRestartBehaviorTooltip": "Seleccione el comportamiento de reinicio del dispositivo después de que la aplicación se haya instalado correctamente. Seleccione \"Determinar comportamiento en función de códigos de retorno\" para reiniciar el dispositivo según los valores de configuración de los códigos de retorno. Seleccione \"Ninguna acción específica\" para suprimir los reinicios del dispositivo durante la instalación de aplicaciones basadas en MSI. Seleccione \"La instalación de la aplicación puede forzar el reinicio del dispositivo\" para permitir que se complete la instalación de la aplicación sin suprimir los reinicios. Seleccione \"Intune forzará un reinicio obligatorio del dispositivo\" para reiniciar siempre el dispositivo después de que la instalación de la aplicación se haya realizado correctamente.",
- "header": "Especifique los comandos para instalar y desinstalar la aplicación:",
- "installCommand": "Comando de instalación",
- "installCommandMaxLengthErrorMessage": "El comando de instalación no puede superar la longitud máxima permitida de 1024 caracteres.",
- "installCommandTooltip": "La línea de comandos de instalación completa que se usa para instalar la aplicación.",
- "runAs32Bit": "Ejecutar comandos de instalación y desinstalación en un proceso de 32 bits en clientes de 64 bits",
- "runAs32BitTooltip": "Seleccione \"Sí\" para instalar y desinstalar la aplicación en un proceso de 32 bits en clientes de 64 bits. Seleccione \"No\" (predeterminado) para instalarla y desinstalarla en un proceso de 64 bits en clientes de 64 bits. Los clientes de 32 bits siempre usan un proceso de 32 bits.",
- "runAsAccount": "Comportamiento de instalación",
- "runAsAccountTooltip": "Seleccione \"Sistema\" para instalar esta aplicación para todos los usuarios si se admite. Seleccione \"Usuario\" para instalar esta aplicación para el usuario que ha iniciado sesión en el dispositivo. En las aplicaciones MSI de doble propósito, los cambios evitarán que las actualizaciones y desinstalaciones finalicen correctamente hasta que se restaure el valor aplicado al dispositivo en el momento de la instalación original.",
- "selectorLabel": "Programa",
- "uninstallCommand": "Comando de desinstalación",
- "uninstallCommandTooltip": "La línea de comandos de desinstalación completa que se usa para desinstalar la aplicación."
- },
- "OutlookAppConfigSettings": {
- "AllowUserToChangeSetting": {
- "title": "Permitir que el usuario cambie la configuración",
- "tooltip": "Especifique si el usuario tiene permiso para cambiar la configuración."
- },
- "AllowWorkAccounts": {
- "title": "Permitir solo cuentas profesionales o educativas",
- "tooltip": " Si se habilita esta opción, los usuarios no pueden agregar cuentas de almacenamiento y de correo electrónico personales a Outlook. Si un usuario tiene una cuenta personal agregada a Outlook, se le pide que la quite y, si no la quita, no se puede agregar la cuenta profesional o educativa."
- },
- "BlockExternalImages": {
- "title": "Bloquear imágenes externas",
- "tooltip": "Cuando el bloqueo de imágenes externas está habilitado, la aplicación impide la descarga de imágenes hospedadas en Internet que están insertadas en el cuerpo del mensaje. Si se establece como no configurado, la aplicación establece el valor Desactivado de forma predeterminada."
- },
- "ConfigureEmail": {
- "title": "Configurar cuentas de correo electrónico"
- },
- "DefaultAppSignatureSetting": {
- "Tooltip": {
- "android": "La firma de aplicación predeterminada indica si la aplicación usará \"Obtener Outlook para Android\" como firma predeterminada durante la composición del mensaje. Si la configuración está desactivada, no se usará la firma predeterminada. Sin embargo, los usuarios pueden agregar su propia firma.\r\n\r\nCuando se establece como Sin configurar, la configuración de aplicación predeterminada se establece en Activado.",
- "iOS": "La firma de aplicación predeterminada indica si la aplicación usará \"Obtener Outlook para iOS\" como firma predeterminada durante la composición del mensaje. Si la configuración está desactivada, no se usará la firma predeterminada. Sin embargo, los usuarios pueden agregar su propia firma.\r\n\r\nCuando se establece como Sin configurar, la configuración de aplicación predeterminada se establece en Activado."
- },
- "title": "Firma de aplicación predeterminada"
- },
- "OfficeFeedReplies": {
- "title": "Fuente de detección",
- "tooltip": "Fuente de detección destaca los archivos de Office a los que accede con más frecuencia. Esta fuente se habilita de forma predeterminada si Delve está habilitado para el usuario. Si está sin configurar, la configuración de la aplicación predeterminada se establece como Activa."
- },
- "OrganizeMailByThread": {
- "title": "Organizar el correo por hilos",
- "tooltip": "El comportamiento predeterminado de Outlook es agrupar las conversaciones de correo electrónico en una vista de conversaciones por hilos. Si esta opción está deshabilitada, Outlook muestra cada correo electrónico por separado, sin agrupar los mensajes por hilos."
- },
- "PlayMyEmails": {
- "title": "Reproducir mis correos electrónicos",
- "tooltip": "La característica Reproducir mis correos electrónicos no está habilitada de forma predeterminada en la aplicación, pero se promueve a los usuarios aptos mediante un banner en la bandeja de entrada. Si se establece en Desactivada, no se promociona a los usuarios aptos en la aplicación. Los usuarios pueden optar por habilitar manualmente Reproducir mis correos electrónicos desde la propia aplicación, aunque la característica esté establecida como Desactivada. Si se establece como Sin configurar, la configuración predeterminada de la aplicación es Activada y la característica se promoverá a los usuarios aptos."
- },
- "SuggestedReplies": {
- "title": "Respuestas sugeridas",
- "tooltip": "Al abrir un mensaje, Outlook puede sugerir respuestas debajo de este. Si selecciona una de las respuestas sugeridas, puede editarla antes de enviarla."
- },
- "SyncCalendars": {
- "title": "Sincronizar calendarios",
- "tooltip": "Configure si los usuarios pueden sincronizar su calendario de Outlook con la base de datos y la aplicación de calendario nativo."
- },
- "TextPredictions": {
- "title": "Predicciones de texto",
- "tooltip": "Outlook puede sugerir palabras y frases al redactar mensajes. Cuando Outlook ofrezca una sugerencia, deslice rápidamente el dedo para aceptarla. Cuando se define como no configurada, la configuración de la aplicación predeterminada se establece en Activada."
+ "WindowsQualityUpdateProfile": {
+ "Details": {
+ "DaysUntilForcedReboot": {
+ "label": "Número de días que debe esperarse antes de aplicar el reinicio"
+ },
+ "Description": {
+ "label": "Descripción"
+ },
+ "Name": {
+ "label": "Nombre"
+ },
+ "QualityUpdateRelease": {
+ "label": "Acelere la instalación de las actualizaciones de calidad si la versión del sistema operativo del dispositivo es anterior a:"
+ },
+ "bladeTitle": "Actualizaciones de calidad para Windows 10 y versiones posteriores (versión preliminar)",
+ "loadError": "Error al cargar."
+ },
+ "TabName": {
+ "qualityUpdateSettings": "Configuración"
+ },
+ "infoBoxText": "El único control de actualización de calidad dedicado disponible, aparte de la directiva de anillos de actualización de Windows 10 y posteriores, es la capacidad de acelerar las actualizaciones de calidad de los dispositivos que se encuentran en un nivel de revisión especificado. Habrá controles adicionales disponibles en el futuro.",
+ "warningBoxText": "Aunque acelerar las actualizaciones de software puede ayudar a reducir el tiempo necesario para lograr el cumplimiento, su impacto en la productividad del usuario final es mayor. Las posibilidades de experimentar un reinicio durante el horario laboral aumentan considerablemente."
+ },
+ "TermsOfUse": {
+ "Languages": {
+ "addLanguage": "Add language",
+ "af": "Afrikaans",
+ "am": "Amharic",
+ "arSA": "Arabic (Saudi Arabia)",
+ "as": "Assamese",
+ "az": "Azerbaijani",
+ "be": "Belarusian",
+ "bg": "Bulgarian",
+ "bn": "Bangla",
+ "bnIN": "Bangla (India)",
+ "bs": "Bosnian",
+ "ca": "Catalan",
+ "caESvalencia": "Valencian (Spain)",
+ "cs": "Czech",
+ "cy": "Welsh",
+ "da": "Danish",
+ "de": "German",
+ "default": "Default",
+ "defaultDetailsTag": "{0} (Default)",
+ "el": "Greek",
+ "en": "English",
+ "enGB": "English (United Kingdom)",
+ "es": "Spanish",
+ "esMX": "Spanish (Mexico)",
+ "et": "Estonian",
+ "eu": "Basque",
+ "fa": "Persian",
+ "fi": "Finnish",
+ "fil": "Filipino",
+ "fr": "French",
+ "frCA": "French (Canada)",
+ "ga": "Irish",
+ "gd": "Scottish Gaelic",
+ "gl": "Galician",
+ "gu": "Gujarati",
+ "ha": "Hausa",
+ "he": "Hebrew",
+ "hi": "Hindi",
+ "hr": "Croatian",
+ "hu": "Hungarian",
+ "hy": "Armenian",
+ "id": "Indonesian",
+ "ig": "Igbo",
+ "is": "Icelandic",
+ "it": "Italian",
+ "ja": "Japanese",
+ "ka": "Georgian",
+ "kk": "Kazakh",
+ "km": "Khmer",
+ "kn": "Kannada",
+ "ko": "Korean",
+ "kok": "Konkani",
+ "kuArab": "Central Kurdish (Arabic)",
+ "ky": "Kyrgyz",
+ "languageOptions": "Language Options",
+ "lb": "Luxembourgish",
+ "lo": "Lao",
+ "lt": "Lithuanian",
+ "lv": "Latvian",
+ "mi": "Maori",
+ "mk": "Macedonian",
+ "ml": "Malayalam",
+ "mn": "Mongolian",
+ "mr": "Marathi",
+ "ms": "Malay",
+ "mt": "Maltese",
+ "ne": "Nepali",
+ "nl": "Dutch",
+ "nnNO": "Norwegian, Nynorsk (Norway)",
+ "no": "Norwegian",
+ "notSpecified": "Language not specified",
+ "nso": "Sesotho sa Leboa",
+ "or": "Odia",
+ "paArabPK": "Punjabi (Islamic Republic of Pakistan)",
+ "paIN": "Punjabi (India)",
+ "pl": "Polish",
+ "prs": "Dari",
+ "ptBR": "Portuguese (Brazil)",
+ "ptPT": "Portuguese (Portugal)",
+ "quz": "Quechua",
+ "ro": "Romanian",
+ "ru": "Russian",
+ "rw": "Kinyarwanda",
+ "sd": "Sindhi",
+ "si": "Sinhala",
+ "sk": "Slovak",
+ "sl": "Slovenian",
+ "sq": "Albanian",
+ "srCyrlBA": "Serbian (Cyrillic, Bosnia and Herzegovina)",
+ "srCyrlRS": "Serbian (Cyrillic, Serbia)",
+ "srLatnRS": "Serbian (Latin, Serbia)",
+ "sv": "Swedish",
+ "sw": "Kiswahili",
+ "ta": "Tamil",
+ "te": "Telugu",
+ "tg": "Tajik",
+ "th": "Thai",
+ "ti": "Tigrinya",
+ "tk": "Turkmen",
+ "tn": "Setswana",
+ "tr": "Turkish",
+ "tt": "Tatar",
+ "ug": "Uyghur",
+ "uk": "Ukrainian",
+ "ur": "Urdu",
+ "uz": "Uzbek",
+ "vi": "Vietnamese",
+ "wo": "Wolof",
+ "xh": "isiXhosa",
+ "yo": "Yoruba",
+ "zhHans": "Chinese (Simplified)",
+ "zhHant": "Chinese (Traditional)",
+ "zu": "isiZulu"
+ },
+ "AcceptanceExpirationFrequency": {
+ "annually": "Annually",
+ "biannually": "Bi-annually",
+ "monthly": "Monthly",
+ "quarterly": "Quarterly"
},
- "ThemesEnabled": {
- "title": "Temas habilitados",
- "tooltip": "Especifique si el usuario puede usar un tema visual personalizado."
- }
- },
+ "Wizard": {
+ "AgreementTargetEntityScope": {
+ "NotSelected": {
+ "label": "None selected"
+ },
+ "selectEntityTitle": "Select group",
+ "title": "Select group"
+ },
+ "PolicyFile": {
+ "Languages": {
+ "Empty": {
+ "default": "Select default language",
+ "nonDefault": "Select a language"
+ }
+ },
+ "Validations": {
+ "duplicateLanguage": "Oops, {0} appears to be selected multiple times. Language selection must be unique."
+ }
+ },
+ "PolicyTemplate": {
+ "InfoBox": {
+ "allGuestsAllApps": "A conditional access policy will be created for all guests and all cloud apps. This policy impacts the Azure portal. Once this is created you might be required to sign-out and sign-in.",
+ "allUsersAllApps": "A conditional access policy will be created for all users and all cloud apps. This policy impacts the Azure portal. Once this is created you will be required to sign-out and sign-in.",
+ "custom": "Select the users, groups, and apps that this Terms of Use will be applied to.",
+ "noPolicy": "This terms of use will appear in the grant control list when creating a conditional access policy."
+ }
+ },
+ "Section": {
+ "conditionalAccessSubtitle": "Enforce with conditional access policy templates",
+ "conditionalAccessTitle": "Conditional access",
+ "termsOfUseSubtitle": "Create and upload documents",
+ "termsOfUseTitle": "Terms of use"
+ },
+ "acceptanceDurationInfo": "The terms of use will be enforced immediately and each user will have to re-consent every specified number of days.",
+ "acceptanceDurationLabel": "Duration before re-acceptance required (days)",
+ "acceptanceDurationPlaceholder": "Example: '90'",
+ "acceptanceExpirationFrequencyInfo": "Require users to consent on a recurring basis.",
+ "acceptanceExpirationFrequencyLabel": "Frequency",
+ "acceptanceExpirationStartDateTimeInfo": "The terms of use will be enforced immediately and users will be required to re-consent on this date.",
+ "acceptanceExpirationStartDateTimeLabel": "Expire starting on",
+ "agreementIsPerDeviceAcceptanceRequiredInfo": "The end users will be required to consent to the terms of use on every device.",
+ "agreementIsPerDeviceAcceptanceRequiredLabel": "Require users to consent on every device",
+ "agreementIsViewingBeforeAcceptanceRequiredInfo": "The end users will be required to view the terms of use prior to accepting.",
+ "agreementIsViewingBeforeAcceptanceRequiredLabel": "Require users to expand the terms of use",
+ "agreementNameInfo": "Name will be used to manage the terms of use within the Azure portal.",
+ "agreementNameLabel": "Name",
+ "agreementNamePlaceholderText": "Example: 'All users terms of use'",
+ "agreementRequirmentLabel": "Required Upon",
+ "agreementTargetEntityLabel": "Users targeted",
+ "agreementUploadPolicyLabel": "Terms of use",
+ "agreementUploadPolicyPlaceholderText": "Upload required PDF",
+ "createButtonLabel": "Create",
+ "createPolicyInfo": "In order to enforce the terms of use, a conditional access policy is required. You can create a conditional access policy targeted to specific users and applications later or use one of the predefined templates.",
+ "createPolicyLabel": "Create a policy",
+ "isAcceptanceExpirationEnabledInfo": "The terms of use will be enforced immediately and all users will be forced to re-consent on a schedule.",
+ "isAcceptanceExpirationEnabledLabel": "Expire consents",
+ "pdfValidationInvalidFileFormat": "The file must be in the .pdf format.",
+ "policyFilesInfo": "Upload a PDF file containing the terms of use that your end users must accept. Based on end user preferences they will be shown the appropriate language or if not match the default language will be shown.
For end users agreeing on mobile devices, we recommend the PDF font size to be at least 24 pt.
Display name will be the title of the terms of use that is presented to the end user.",
+ "policyFilesLabel": "Terms of use document",
+ "policyTemplateInfo": "These templates are pre configured conditional access policies that are targeted to specific users and applications.",
+ "policyTemplateLabel": "Policy templates",
+ "title": "New terms of use"
+ }
+ },
+ "TACSettings": {
+ "edgeSettings": "Valores de configuración de Edge",
+ "edgeWindowsDataProtectionSettings": "Configuración de protección de datos de Microsoft Edge (Windows) - Versión preliminar",
+ "edgeWindowsSettings": "Opciones de configuración de Microsoft Edge (Windows) - Versión preliminar",
+ "generalAppConfig": "Configuración general de la aplicación",
+ "generalSettings": "Opciones de configuración generales",
+ "outlookSMIMEConfig": "Configuración de S/MIME de Outlook",
+ "outlookSettings": "Valores de configuración de Outlook",
+ "sMIME": "S/MIME"
+ },
+ "MicrosoftEdgeChannel": {
+ "beta": "Beta",
+ "dev": "Dev",
+ "stable": "Stable"
+ },
+ "WipPolicySettings": {
+ "addNetworkBoundary": "Agregar límite de red",
+ "addNetworkBoundaryButton": "Agregar límite de red...",
+ "allowWindowsSearch": "Permitir que Windows Search busque datos corporativos cifrados y aplicaciones de la Tienda",
+ "authoritativeIpRanges": "La lista de intervalos IP de la empresa es autoritativa (no usar detección automática)",
+ "authoritativeProxyServers": "La lista de servidores proxy de la empresa es autoritativa (no usar detección automática)",
+ "boundaryType": "Tipo de límite",
+ "cloudResources": "Recursos de nube",
+ "corporateIdentity": "Identidad corporativa",
+ "dataRecoveryCert": "Cargar un certificado del Agente de recuperación de datos (DRA) para poder recuperar datos cifrados",
+ "editNetworkBoundary": "Editar límite de red",
+ "enrollmentState": "Estado de inscripción",
+ "iPv4Ranges": "Intervalos IPv4",
+ "iPv6Ranges": "Intervalos IPv6",
+ "internalProxyServers": "Servidores proxy internos",
+ "maxInactivityTime": "Cantidad máxima de tiempo permitido (en minutos) con el dispositivo inactivo que, una vez transcurrida, causará el bloqueo del dispositivo mediante PIN o contraseña",
+ "maxPasswordAttempts": "Número de errores de autenticación permitidos antes de borrar el dispositivo",
+ "mdmDiscoveryUrl": "Dirección URL de descubrimiento de MDM",
+ "mdmRequiredSettingsInfo": "Esta directiva solo se aplica a Windows 10 Anniversary Edition y versiones posteriores. Además, usa Windows Information Protection (WIP) para aplicar protección.",
+ "minimumPinLength": "Establecer el número mínimo de caracteres requeridos para el PIN",
+ "name": "Nombre",
+ "networkBoundariesGridEmptyText": "Los límites de red que agregue se mostrarán aquí",
+ "networkBoundary": "Límite de red",
+ "networkDomainNames": "Dominios de red",
+ "neutralResources": "Recursos neutros",
+ "passportForWork": "Usar Windows Hello para empresas como método para iniciar sesión en Windows",
+ "pinExpiration": "Especificar el período de tiempo (en días) que se puede usar un PIN antes de que el sistema solicite al usuario que lo cambie",
+ "pinHistory": "Especificar el número de PIN anteriores asociados a una cuenta de usuario que no se pueden volver a usar",
+ "pinLowercaseLetters": "Configurar el uso de letras minúsculas en el PIN de Windows Hello para empresas",
+ "pinSpecialCharacters": "Configurar el uso de caracteres especiales en el PIN de Windows Hello para empresas",
+ "pinUppercaseLetters": "Configurar el uso de letras mayúsculas en el PIN de Windows Hello para empresas",
+ "protectUnderLock": "Impedir que las aplicaciones accedan a los datos corporativos cuando el dispositivo está bloqueado. Se aplica únicamente a Windows 10 Mobile.",
+ "protectedDomainNames": "Dominios protegidos",
+ "proxyServers": "Servidores proxy",
+ "requireAppPin": "Deshabilitar PIN de aplicación cuando se administre el PIN del dispositivo",
+ "requiredSettings": "Valores obligatorios",
+ "requiredSettingsInfo": "Al cambiar el ámbito o quitar esta directiva, se descifrarán los datos corporativos.",
+ "revokeOnMdmHandoff": "Revocar el acceso a los datos protegidos cuando el dispositivo se inscriba en MDM",
+ "revokeOnUnenroll": "Revocar claves de cifrado al cancelar la inscripción",
+ "rmsTemplateForEdp": "Especificar el identificador de la plantilla que se va a usar para Azure RMS",
+ "showWipIcon": "Mostrar el icono de protección de datos de empresa",
+ "type": "Tipo",
+ "useRmsForWip": "Usar Azure RMS para WIP",
+ "value": "Valor",
+ "weRequiredSettingsInfo": "Esta directiva solo se aplica a Windows 10 Creators Update y versiones posteriores. Además, usa Windows Information Protection (WIP) y Windows MAM para aplicar protección.",
+ "wipProtectionMode": "Modo de Windows Information Protection",
+ "withEnrollment": "Con inscripción",
+ "withoutEnrollment": "Sin inscripción"
+ },
+ "OfficeApplicationAdditionalType": {
+ "projectProRetail": "Cliente para equipo de escritorio de Project Online",
+ "visioProRetail": "Visio Online Plan 2"
+ },
+ "Countries": {
+ "ae": "Emiratos Árabes Unidos",
+ "ag": "Antigua y Barbuda",
+ "ai": "Anguila",
+ "al": "Albania",
+ "am": "Armenia",
+ "ao": "Angola",
+ "ar": "Argentina",
+ "at": "Austria",
+ "au": "Australia",
+ "az": "Azerbaiyán",
+ "bb": "Barbados",
+ "be": "Bélgica",
+ "bf": "Burkina Faso",
+ "bg": "Bulgaria",
+ "bh": "Baréin",
+ "bj": "Benín",
+ "bm": "Bermudas",
+ "bn": "Brunéi",
+ "bo": "Bolivia",
+ "br": "Brasil",
+ "bs": "Bahamas",
+ "bt": "Bután",
+ "bw": "Botsuana",
+ "by": "Belarús",
+ "bz": "Belice",
+ "ca": "Canadá",
+ "cg": "República del Congo",
+ "ch": "Suiza",
+ "cl": "Chile",
+ "cn": "China",
+ "co": "Colombia",
+ "cr": "Costa Rica",
+ "cv": "Cabo Verde",
+ "cy": "Chipre",
+ "cz": "República Checa",
+ "de": "Alemania",
+ "dk": "Dinamarca",
+ "dm": "Dominica",
+ "do": "República Dominicana",
+ "dz": "Argelia",
+ "ec": "Ecuador",
+ "ee": "Estonia",
+ "eg": "Egipto",
+ "es": "España",
+ "fi": "Finlandia",
+ "fj": "Fiyi",
+ "fm": "Estados Federados de Micronesia",
+ "fr": "Francia",
+ "gb": "Reino Unido",
+ "gd": "Granada",
+ "gh": "Ghana",
+ "gm": "Gambia",
+ "gr": "Grecia",
+ "gt": "Guatemala",
+ "gw": "Guinea-Bissau",
+ "gy": "Guyana",
+ "hk": "Hong Kong",
+ "hn": "Honduras",
+ "hr": "Croacia",
+ "hu": "Hungría",
+ "id": "Indonesia",
+ "ie": "Irlanda",
+ "il": "Israel",
+ "in": "India",
+ "is": "Islandia",
+ "it": "Italia",
+ "jm": "Jamaica",
+ "jo": "Jordania",
+ "jp": "Japón",
+ "ke": "Kenia",
+ "kg": "Kirguistán",
+ "kh": "Camboya",
+ "kn": "San Cristóbal y Nieves",
+ "kr": "República de Corea",
+ "kw": "Kuwait",
+ "ky": "Islas Caimán",
+ "kz": "Kazajistán",
+ "la": "República Democrática Popular de Laos",
+ "lb": "Líbano",
+ "lc": "Santa Lucía",
+ "lk": "Sri Lanka",
+ "lr": "Liberia",
+ "lt": "Lituania",
+ "lu": "Luxemburgo",
+ "lv": "Letonia",
+ "md": "República de Moldova",
+ "mg": "Madagascar",
+ "mk": "Macedonia del Norte",
+ "ml": "Malí",
+ "mn": "Mongolia",
+ "mo": "Macao",
+ "mr": "Mauritania",
+ "ms": "Montserrat",
+ "mt": "Malta",
+ "mu": "Mauricio",
+ "mw": "Malaui",
+ "mx": "México",
+ "my": "Malasia",
+ "mz": "Mozambique",
+ "na": "Namibia",
+ "ne": "Níger",
+ "ng": "Nigeria",
+ "ni": "Nicaragua",
+ "nl": "Países Bajos",
+ "no": "Noruega",
+ "np": "Nepal",
+ "nz": "Nueva Zelanda",
+ "om": "Omán",
+ "pa": "Panamá",
+ "pe": "Perú",
+ "pg": "Papúa Nueva Guinea",
+ "ph": "Filipinas",
+ "pk": "Pakistán",
+ "pl": "Polonia",
+ "pt": "Portugal",
+ "pw": "Palaos",
+ "py": "Paraguay",
+ "qa": "Qatar",
+ "ro": "Rumanía",
+ "ru": "Rusia",
+ "sa": "Arabia Saudí",
+ "sb": "Islas Salomón",
+ "sc": "Seychelles",
+ "se": "Suecia",
+ "sg": "Singapur",
+ "si": "Eslovenia",
+ "sk": "Eslovaquia",
+ "sl": "Sierra Leona",
+ "sn": "Senegal",
+ "sr": "Surinam",
+ "st": "Santo Tomé y Príncipe",
+ "sv": "El Salvador",
+ "sz": "Suazilandia",
+ "tc": "Islas Turcas y Caicos",
+ "td": "Chad",
+ "th": "Tailandia",
+ "tj": "Tayikistán",
+ "tm": "Turkmenistán",
+ "tn": "Túnez",
+ "tr": "Turquía",
+ "tt": "Trinidad y Tobago",
+ "tw": "Taiwán",
+ "tz": "Tanzania",
+ "ua": "Ucrania",
+ "ug": "Uganda",
+ "us": "Estados Unidos",
+ "uy": "Uruguay",
+ "uz": "Uzbekistán",
+ "vc": "San Vicente y las Granadinas",
+ "ve": "Venezuela",
+ "vg": "Islas Vírgenes Británicas",
+ "vn": "Vietnam",
+ "ye": "Yemen",
+ "za": "Sudáfrica",
+ "zw": "Zimbabue"
+ },
+ "OfficeUpdateChannel": {
+ "current": "Canal actual",
+ "deferred": "Canal semestral para empresas",
+ "firstReleaseCurrent": "Canal actual (vista previa)",
+ "firstReleaseDeferred": "Canal semestral para empresas (vista previa)",
+ "monthlyEnterprise": "Canal de empresa mensual",
+ "placeHolder": "Seleccionar una"
+ },
+ "AppProtection": {
+ "allAppTypes": "Destinar a todos los tipos de aplicaciones",
+ "androidPlatformLabel": "Android",
+ "appsInAndroidWorkProfile": "Aplicaciones en el perfil de trabajo Android",
+ "appsOnIntuneManagedDevices": "Aplicaciones en dispositivos administrados de Intune",
+ "appsOnUnmanagedDevices": "Aplicaciones en dispositivos no administrados",
+ "iOSPlatformLabel": "iOS/iPadOS",
+ "iosAndroidMacPlatformLabel": "iOS, Android, Mac",
+ "iosAndroidPlatformLabel": "iOS, Android",
+ "macPlatformLabel": "MAC",
+ "notAvailable": "No disponible",
+ "windows10PlatformLabel": "Windows 10 y versiones posteriores",
+ "withEnrollment": "Con inscripción",
+ "withoutEnrollment": "Sin inscripción"
+ },
+ "InstallContextType": {
+ "device": "Dispositivo",
+ "deviceContext": "Contexto del dispositivo",
+ "user": "Usuario",
+ "userContext": "Contexto del usuario"
+ },
+ "ProactiveRemediations": {
+ "Create": {
+ "Basics": {
+ "DescriptionMultiLineTextBox": {
+ "label": "Descripción",
+ "placeholder": "Escribir una descripción"
+ },
+ "NameTextBox": {
+ "label": "Nombre",
+ "placeholder": "Escriba un nombre"
+ },
+ "PublisherTextBox": {
+ "label": "Editor",
+ "placeholder": "Escribir un editor"
+ },
+ "VersionTextBox": {
+ "label": "Versión"
+ },
+ "headerDescription": "Cree un paquete de scripts personalizado a partir de los scripts de detección y corrección que ha escrito."
+ },
+ "ScopeTags": {
+ "headerDescription": "Seleccione uno o varios grupos para asignar el paquete de scripts."
+ },
+ "Settings": {
+ "DetectionScriptMultiLineTextBox": {
+ "label": "Script de detección",
+ "placeholder": "Texto del script de entrada",
+ "requiredValidationMessage": "Escriba el script de detección."
+ },
+ "EnforceScriptSignatureCheckOptionPicker": {
+ "label": "Exigir comprobación de firma del script"
+ },
+ "LoggedOnCredentialsOptionPicker": {
+ "label": "Ejecutar este script con las credenciales de inicio de sesión"
+ },
+ "RemediationScript": {
+ "infoBox": "El script se ejecutará en modo exclusivo de detección porque no hay ningún script de corrección."
+ },
+ "RemediationScriptMultiLineTextBox": {
+ "label": "Script de corrección",
+ "placeholder": "Texto del script de entrada"
+ },
+ "RunIn64BitPSOptionPicker": {
+ "label": "Ejecutar script en PowerShell de 64 bits"
+ },
+ "ScriptMultiLineTextBox": {
+ "base64EncodingValidationMessage": "Script no válido. Uno o varios de los caracteres que se usan en el script no son válidos."
+ },
+ "headerDescription": "Cree un paquete de scripts personalizado a partir de los scripts que ha escrito. De forma predeterminada, los scripts se ejecutarán en los dispositivos asignados cada día.",
+ "infoBox": "Este script es de solo lectura. Es posible que algunos de los valores de este script estén deshabilitados."
+ },
+ "title": "Crear un script personalizado",
+ "ScriptProperties": {
+ "GridHeaders": {
+ "interval": "Intervalo",
+ "time": "Fecha y hora"
+ },
+ "Interval": {
+ "day": "Se repite cada día",
+ "days": "Se repite cada {0} días",
+ "hour": "Se repite cada hora",
+ "hours": "Se repite cada {0} horas",
+ "month": "Se repite cada mes",
+ "months": "Se repite cada {0} meses",
+ "week": "Se repite cada semana",
+ "weeks": "Se repite cada {0} semanas"
+ },
+ "Time": {
+ "utc": "{0} (UTC)",
+ "utcWithDate": "{0} (UTC) el {1}",
+ "withDate": "{0} el {1}"
+ }
+ }
+ },
+ "Edit": {
+ "title": "Editar: {0}"
+ }
+ },
+ "EdgeAppConfig": {
+ "AllowedURLs": {
+ "title": "Direcciones URL permitidas",
+ "tooltip": "Especifique los sitios a los que los usuarios pueden acceder mientras están en su contexto de trabajo. No se permitirá ningún otro sitio. Puede elegir configurar una lista de sitios permitidos o bloqueados, pero no ambas."
+ },
+ "ApplicationProxyRedirection": {
+ "header": "Proxy de aplicación",
+ "title": "Redirección de proxy de aplicación",
+ "tooltip": "Habilite la redirección de proxy de aplicación para dar acceso a los usuarios a los vínculos corporativos y a las aplicaciones web locales."
+ },
+ "BlockedURLs": {
+ "title": "URL bloqueadas",
+ "tooltip": "Especifique los sitios bloqueados para los usuarios mientras están en su contexto de trabajo. El resto de los sitios estarán permitidos. Puede elegir configurar una lista de sitios permitidos o bloqueados, pero no ambas. "
+ },
+ "Bookmarks": {
+ "header": "Marcadores administrados",
+ "tooltip": "Escriba una lista de direcciones URL marcadas que estén disponibles para los usuarios al utilizar Microsoft Edge en su contexto de trabajo.",
+ "uRL": "URL"
+ },
+ "HomepageURL": {
+ "header": "Página principal administrada",
+ "title": "Dirección URL de acceso directo a la página principal",
+ "tooltip": "Configure un acceso directo a la página principal que se mostrará a los usuarios como primer icono debajo de la barra de búsqueda cuando abran una pestaña nueva en Microsoft Edge."
+ },
+ "PersonalContext": {
+ "label": "Redirigir los sitios restringidos a un contexto personal",
+ "tooltip": "Configure si se debe permitir a los usuarios realizar la transición a su contexto personal para abrir sitios restringidos."
+ }
+ },
+ "BooleanActions": {
+ "allow": "Permitir",
+ "block": "Bloquear",
+ "configured": "Configurado",
+ "disable": "Deshabilitar",
+ "dontRequire": "No requerir",
+ "enable": "Habilitar",
+ "hide": "Ocultar",
+ "limit": "Límite",
+ "notConfigured": "Sin configurar",
+ "require": "Requerir",
+ "show": "Mostrar",
+ "yes": "Sí"
+ },
+ "ArchitectureOptions": {
+ "sixtyFourBit": "64 bits",
+ "thirtyTwoBit": "32 bits"
+ },
+ "WindowsQualityUpdateDaysUntilForcedReboot": {
+ "oneDay": "1 día",
+ "twoDays": "2 días",
+ "zeroDays": "0 días"
+ },
"SoftwareUpdates": {
"BladeTitles": {
"overview": "Información general"
@@ -10800,66 +10878,732 @@
"notScannedYet": "Todavía sin detectar",
"outOfDateIosDevices": "Dispositivos iOS no actualizados"
},
- "ScheduledAction": {
- "Form": {
- "editBlockActionInfo": "Una acción de bloqueo es necesaria para todas las directivas de cumplimiento.",
- "graceperiod": "Programar (días después del no cumplimiento)",
- "graceperiodInfo": "Especificar el número de días sin cumplimiento transcurrido el cual debe desencadenarse esta acción para el dispositivo del usuario",
- "subtitle": "Especificar parámetros de acción",
- "title": "Parámetros de acción"
- },
- "List": {
- "gracePeriodDay": "{0} día después del no cumplimiento",
- "gracePeriodDays": "{0} días después del no cumplimiento",
- "gracePeriodHour": "{0} hora después del incumplimiento",
- "gracePeriodHours": "{0} horas después del incumplimiento",
- "gracePeriodMinute": "{0} minuto después del incumplimiento",
- "gracePeriodMinutes": "{0} minutos después del incumplimiento",
- "immediately": "Inmediatamente",
- "schedule": "Programar",
- "scheduleInfoBalloon": "Días después del incumplimiento",
- "subtitle": "Especificar la secuencia de acciones en los dispositivos no conformes",
- "title": "Acciones"
- },
- "Notification": {
- "additionalEmailLabel": "Otros",
- "additionalRecipients": "Destinatarios adicionales (por correo electrónico)",
- "additionalRecipientsBladeTitle": "Seleccionar destinatarios adicionales",
- "emailAddressPrompt": "Escriba direcciones de correo electrónico (separadas por comas)",
- "invalidEmail": "Dirección de correo electrónico no válida",
- "messageTemplate": "Plantilla de mensaje",
- "noneSelected": "No se ha seleccionado ninguno",
- "notSelected": "No seleccionada",
- "numSelected": "{0} seleccionados",
- "selected": "Seleccionado"
+ "ConfigurationTypes": {
+ "Table": {
+ "androidDeviceOwnerGeneral": "Restricciones de dispositivos (propietario del dispositivo)",
+ "androidForWorkGeneral": "Restricciones de dispositivos (perfil de trabajo)"
+ },
+ "androidCustom": "Personalizada",
+ "androidDeviceOwnerGeneral": "Restricciones de dispositivos",
+ "androidDeviceOwnerPkcs": "Certificado PKCS",
+ "androidDeviceOwnerScep": "Certificado SCEP",
+ "androidDeviceOwnerTrustedCertificate": "Certificado de confianza",
+ "androidDeviceOwnerVpn": "VPN",
+ "androidDeviceOwnerWiFi": "Wi-Fi",
+ "androidEmailProfile": "Correo electrónico (solo Samsung KNOX)",
+ "androidForWorkCustom": "Personalizada",
+ "androidForWorkEmailProfile": "Correo electrónico",
+ "androidForWorkGeneral": "Restricciones de dispositivos",
+ "androidForWorkImportedPFX": "Certificado PKCS importado",
+ "androidForWorkOemConfig": "OEMConfig",
+ "androidForWorkPKCS": "Certificado PKCS",
+ "androidForWorkSCEP": "Certificado SCEP",
+ "androidForWorkTrustedCertificate": "Certificado de confianza",
+ "androidForWorkVpn": "VPN",
+ "androidForWorkWiFi": "Wi-Fi",
+ "androidGeneral": "Restricciones de dispositivos",
+ "androidImportedPFX": "Certificado PKCS importado",
+ "androidPKCS": "Certificado PKCS",
+ "androidSCEP": "Certificado SCEP",
+ "androidTrustedCertificate": "Certificado de confianza",
+ "androidVPN": "VPN",
+ "androidWiFi": "Wi-Fi",
+ "androidZebraMx": "Perfil de MX (solo Zebra)",
+ "complianceAndroid": "Directiva de cumplimiento de Android",
+ "complianceAndroidDeviceOwner": "Perfil de trabajo de propiedad corporativa, dedicado y totalmente administrado",
+ "complianceAndroidEnterprise": "Perfil de trabajo de propiedad personal",
+ "complianceAndroidForWork": "Directiva de cumplimiento de Android for Work",
+ "complianceIos": "Directiva de cumplimiento de iOS",
+ "complianceMac": "Directiva de cumplimiento de Mac",
+ "complianceWindows10": "Directiva de cumplimiento de Windows 10 y versiones posteriores",
+ "complianceWindows10Mobile": "Directiva de cumplimiento de Windows 10 Mobile",
+ "complianceWindows8": "Directiva de cumplimiento de Windows 8",
+ "complianceWindowsPhone": "Directiva de cumplimiento de Windows Phone",
+ "exchangeActiveSync": "Exchange Active Sync",
+ "iosCustom": "Personalizada",
+ "iosDerivedCredentialAuthenticationConfiguration": "Credencial PIV derivada",
+ "iosDeviceFeatures": "Características del dispositivo",
+ "iosEDU": "Educación",
+ "iosEducation": "Educación",
+ "iosEmailProfile": "Correo electrónico",
+ "iosGeneral": "Restricciones de dispositivos",
+ "iosImportedPFX": "Certificado PKCS importado",
+ "iosPKCS": "Certificado PKCS",
+ "iosPresets": "Valores preestablecidos",
+ "iosSCEP": "Certificado SCEP",
+ "iosTrustedCertificate": "Certificado de confianza",
+ "iosVPN": "VPN",
+ "iosVPNZscaler": "VPN",
+ "iosWiFi": "Wi-Fi",
+ "macCustom": "Personalizada",
+ "macDeviceFeatures": "Características del dispositivo",
+ "macEndpointProtection": "Endpoint Protection",
+ "macExtensions": "Extensiones",
+ "macGeneral": "Restricciones de dispositivos",
+ "macImportedPFX": "Certificado PKCS importado",
+ "macSCEP": "Certificado SCEP",
+ "macTrustedCertificate": "Certificado de confianza",
+ "macVPN": "VPN",
+ "macWiFi": "Wi-Fi",
+ "settingsCatalog": "Catálogo de configuración (vista previa)",
+ "unsupported": "No compatible",
+ "windows10AdministrativeTemplate": "Plantillas administrativas (vista previa)",
+ "windows10Atp": "Microsoft Defender para punto de conexión (dispositivos de escritorio que ejecutan Windows 10 o versiones posteriores)",
+ "windows10Custom": "Personalizada",
+ "windows10DesktopSoftwareUpdate": "Actualizaciones de software",
+ "windows10DeviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
+ "windows10EmailProfile": "Correo electrónico",
+ "windows10EndpointProtection": "Endpoint Protection",
+ "windows10EnterpriseDataProtection": "Windows Information Protection",
+ "windows10General": "Restricciones de dispositivos",
+ "windows10ImportedPFX": "Certificado PKCS importado",
+ "windows10Kiosk": "Pantalla completa",
+ "windows10NetworkBoundary": "Límite de red",
+ "windows10PKCS": "Certificado PKCS",
+ "windows10PolicyOverride": "Reemplazar la directiva de grupo",
+ "windows10SCEP": "Certificado SCEP",
+ "windows10SecureAssessmentProfile": "Perfil educativo",
+ "windows10SharedPC": "Dispositivo multiusuario compartido",
+ "windows10TeamGeneral": "Restricciones de dispositivos (Windows 10 Team)",
+ "windows10TrustedCertificate": "Certificado de confianza",
+ "windows10VPN": "VPN",
+ "windows10WiFi": "Wi-Fi",
+ "windows10WiFiCustom": "Wi-Fi personalizada",
+ "windows8General": "Restricciones de dispositivos",
+ "windows8SCEP": "Certificado SCEP",
+ "windows8TrustedCertificate": "Certificado de confianza",
+ "windows8VPN": "VPN",
+ "windows8WiFi": "Importación de Wi-Fi",
+ "windowsDeliveryOptimization": "Optimización de entrega",
+ "windowsDomainJoin": "Unión a un dominio",
+ "windowsEditionUpgrade": "Actualización de edición y cambio de modo",
+ "windowsIdentityProtection": "Identity Protection",
+ "windowsPhoneCustom": "Personalizada",
+ "windowsPhoneEmailProfile": "Correo electrónico",
+ "windowsPhoneGeneral": "Restricciones de dispositivos",
+ "windowsPhoneImportedPFX": "Certificado PKCS importado",
+ "windowsPhoneSCEP": "Certificado SCEP",
+ "windowsPhoneTrustedCertificate": "Certificado de confianza",
+ "windowsPhoneVPN": "VPN",
+ "IosUpdate": "Directiva de actualización de iOS"
+ },
+ "OfficeSuiteAppsTab": {
+ "acceptLicenseOnBehalfOfUsersLabel": "Aceptar los términos de licencia de software de Microsoft en nombre de los usuarios",
+ "appSuiteConfigurationLabel": "Configuración del conjunto de aplicaciones",
+ "appSuiteInformationLabel": "Información del conjunto de aplicaciones",
+ "appsToBeInstalledLabel": "Aplicaciones que se instalarán como parte del conjunto",
+ "architectureLabel": "Arquitectura",
+ "architectureTooltip": "Define si se ha instalado en los dispositivos la edición de 32 o 64 bits de las aplicaciones de Microsoft 365.",
+ "configurationDesignerLabel": "Diseñador de configuraciones",
+ "configurationFileLabel": "Archivo de configuración",
+ "configurationSettingsFormatLabel": "Formato de opciones de configuración",
+ "configureAppSuiteLabel": "Configurar conjunto de aplicaciones",
+ "configuredLabel": "Configurado",
+ "currentVersionLabel": "Versión actual",
+ "currentVersionTooltip": "Esta es la versión actual de Office que está configurada en este conjunto. Este valor se actualizará cuando se configure y guarde una versión más reciente.",
+ "enableMicrosoftSearchAsDefaultTooltip": "Instala un servicio en segundo plano que ayuda a determinar si hay una extensión de Búsqueda de Microsoft en Bing para Google Chrome instalada en el dispositivo.",
+ "enterXmlDataLabel": "Especificar datos XML",
+ "languagesLabel": "Idiomas",
+ "languagesTooltip": "De forma predeterminada, Intune instalará Office con el idioma predeterminado del sistema operativo. Elija otros idiomas que quiera instalar.",
+ "learnMoreText": "Más información",
+ "newUpdateChannelTooltip": "Define la frecuencia de actualización de la aplicación con nuevas características.",
+ "noCurrentVersionText": "No hay ninguna versión actual.",
+ "noLanguagesSelectedLabel": "No hay ningún idioma seleccionado",
+ "notConfiguredLabel": "Sin configurar",
+ "propertiesLabel": "Propiedades",
+ "removeOtherVersionsLabel": "Quitar otras versiones",
+ "removeOtherVersionsTooltip": "Seleccione Sí para quitar otras versiones de Office (MSI) de los dispositivos de usuario.",
+ "selectOfficeAppsLabel": "Seleccionar aplicaciones de Office",
+ "selectOfficeAppsTooltip": "Seleccione las aplicaciones de Office 365 que quiere instalar como parte del conjunto correspondiente.",
+ "selectOtherOfficeAppsLabel": "Seleccionar otras aplicaciones de Office (se requiere licencia)",
+ "selectOtherOfficeAppsTooltip": "Si posee licencias para estas aplicaciones de Office adicionales, también puede asignarlas con Intune.",
+ "specificVersionLabel": "Versión específica",
+ "updateChannelLabel": "Canal de actualización",
+ "updateChannelTooltip": "Define la frecuencia de actualización de la aplicación con nuevas características.
\r\nMensual: proporciona a los usuarios las características más recientes de Office en cuanto están disponibles.
\r\nCanal mensual para empresas: proporciona a los usuarios las características más recientes de Office una vez al mes, el segundo martes de cada mes.
\r\nMensual (dirigido): ofrece una vista anticipada de la próxima versión del canal mensual. Se trata de un canal de actualización admitido y suele estar disponible por lo menos una semana antes de que se publique una versión del canal mensual que contiene nuevas características.
\r\nSemestral: proporciona a los usuarios las nuevas características de Office solo unas pocas veces al año.
\r\nSemestral (dirigido): proporciona a los usuarios piloto y a los evaluadores de compatibilidad de aplicaciones la oportunidad de probar los próximos semestres.",
+ "useMicrosoftSearchAsDefault": "Instalar servicio en segundo plano para la Búsqueda de Microsoft en Bing",
+ "useSharedComputerActivationLabel": "Usar activación en equipos compartidos",
+ "useSharedComputerActivationTooltip": "La activación de equipos compartidos permite implementar aplicaciones de Microsoft 365 en equipos que utilizan varios usuarios. Normalmente, los usuarios solo pueden instalar y activar aplicaciones de Microsoft 365 en un número limitado de dispositivos, como cinco equipos. El uso de aplicaciones de Microsoft 365 con la activación de equipos compartidos no tiene en cuenta ese límite.",
+ "versionToInstallLabel": "Versión para instalar",
+ "versionToInstallTooltip": "Seleccione la versión de Office que debe instalarse.",
+ "xLanguagesSelectedLabel": "Idiomas seleccionados: {0}",
+ "xmlConfigurationLabel": "Configuración de XML"
+ },
+ "EnrollmentRestrictions": {
+ "DeletePayloadLink": {
+ "content": "{0} se incluye en uno o más conjuntos de directivas. Si elimina {0}, ya no se podrá asignar mediante dichos conjuntos. ¿Quiere eliminarla de todas formas?",
+ "contentWithError": "{0} puede estar incluida en uno o varios conjuntos de directivas. Si elimina {0}, ya no se podrá asignar mediante dichos conjuntos. ¿Quiere eliminarla de todos modos?",
+ "header": "¿Seguro que quiere eliminar esta restricción?"
+ },
+ "DeviceLimit": {
+ "description": "Especifique el número máximo de dispositivos que un usuario puede inscribir.",
+ "header": "Restricciones de límite de dispositivos",
+ "info": "Define cuántos dispositivos puede inscribir cada usuario."
+ },
+ "DeviceType": {
+ "VersionValidation": {
+ "aOSP": "Debe ser 1.0 o posterior.",
+ "android": "Escriba un número de versión válido. Ejemplos: 5.0, 5.5.1, 6.0.0.1",
+ "androidForWork": "Escriba un número de versión válido. Ejemplos: 5.0, 5.1.1",
+ "iOS": "Escriba un número de versión válido. Ejemplos: 9.0, 10.0, 9.0.2",
+ "mac": "Escriba un número de versión válido. Ejemplos: 10, 10.10, 10.10.1",
+ "min": "El valor mínimo no puede ser inferior a {0}",
+ "minMax": "La versión mínima no puede ser superior a la versión máxima.",
+ "windows": "Debe ser 10.0 o superior. Déjela en blanco para permitir dispositivos 8.1",
+ "windowsMobile": "Debe ser 10.0 o superior. Déjela en blanco para permitir dispositivos 8.1"
+ },
+ "allPlatformsBlocked": "Todas las plataformas de dispositivos están bloqueadas. Permita que la inscripción de la plataforma habilite la configuración de la plataforma.",
+ "blockManufacturerPlaceHolder": "Nombre del fabricante",
+ "blockManufacturersHeader": "Fabricantes bloqueados",
+ "cannotRestrict": "No se admite la restricción.",
+ "configurationDescription": "Especifica las restricciones de configuración de plataforma que deben cumplirse para inscribir un dispositivo. Use directivas de cumplimiento para restringir los dispositivos una vez inscritos. Defina las versiones como principal.secundaria.compilación. Las restricciones de versión solo se aplican a los dispositivos inscritos en el Portal de empresa. Intune clasifica los dispositivos como propiedad personal de forma predeterminada. Para clasificarlos como propiedad corporativa, se deben tomar medidas adicionales.",
+ "configurationDescriptionLabel": "Más información sobre cómo establecer restricciones de inscripción",
+ "configurations": "Configurar plataformas",
+ "deviceManufacturer": "Fabricante del dispositivo",
+ "header": "Restricciones de tipo de dispositivo",
+ "info": "Define qué plataformas, versiones y tipos de administración pueden inscribirse.",
+ "manufacturer": "Fabricante",
+ "max": "Máx.",
+ "maxVersion": "Versión máxima",
+ "min": "Mín.",
+ "minVersion": "Versión mínima",
+ "newPlatforms": "Ha permitido nuevas plataformas. Considere la posibilidad de actualizar Configuraciones de plataforma.",
+ "personal": "Propiedad personal",
+ "platform": "Plataforma",
+ "platformDescription": "Puede permitir la inscripción de las plataformas siguientes. Bloquee simplemente las plataformas que no vaya a admitir. Las plataformas permitidas pueden configurarse con restricciones de inscripción adicionales.",
+ "platformSettings": "Configuración de plataforma",
+ "platforms": "Seleccionar plataformas",
+ "platformsSelected": "{0} plataformas seleccionadas",
+ "type": "Tipo",
+ "versions": "versiones",
+ "versionsRange": "Permitir intervalo mín./máx.:",
+ "windowsTooltip": "Restringe la inscripción a través de la administración de dispositivos móviles. No restringe la instalación del agente de PC. Solo se admiten las versiones de Windows 10 y Windows 11. Deje las versiones en blanco para permitir Windows 8.1."
+ },
+ "Priority": {
+ "saved": "Las prioridades de restricción se guardaron correctamente."
+ },
+ "Row": {
+ "announce": "Prioridad: {0}. Nombre: {1}. Asignadο: {2}"
+ },
+ "Table": {
+ "deployed": "Implementada",
+ "name": "Nombre",
+ "priority": "Prioridad"
},
- "block": "Marcar el dispositivo como no conforme",
- "lockDevice": "Bloquear dispositivo (acción local)",
- "lockDeviceWithPasscode": "Bloquear dispositivo (acción local)",
- "noAction": "No hay ninguna acción",
- "noActionRow": "No hay ninguna acción, seleccione 'Agregar' para agregar una acción",
- "pushNotification": "Enviar notificación push al usuario final",
- "remoteLock": "Bloquear de forma remota el dispositivo no conforme",
- "removeSourceAccessProfile": "Quitar perfil de acceso de origen",
- "retire": "Retirar el dispositivo no compatible",
- "wipe": "Borrar",
- "emailNotification": "Enviar correo electrónico a usuario final"
- },
- "WIPPinRequirements": {
- "WipLowercaseCharacterPinRequirements": {
- "allow": "Permitir el uso de letras minúsculas en el PIN",
- "notAllow": "No permitir el uso de letras minúsculas en el PIN",
- "requireAtLeastOne": "Requerir el uso de al menos una letra minúscula en el PIN"
- },
- "WipSpecialCharacterPinRequirements": {
- "allow": "Permitir el uso de caracteres especiales en el PIN",
- "notAllow": "No permitir el uso de caracteres especiales en el PIN",
- "requireAtLeastOne": "Requerir el uso de al menos un carácter especial en el PIN"
- },
- "WipUppercaseCharacterPinRequirements": {
- "allow": "Permitir el uso de letras mayúsculas en el PIN",
- "notAllow": "No permitir el uso de letras mayúsculas en el PIN",
- "requireAtLeastOne": "Requerir el uso de al menos una letra mayúscula en el PIN"
- }
- }
+ "Type": {
+ "limit": "Restricción de límite de dispositivos",
+ "type": "Restricción de tipo de dispositivo"
+ },
+ "allUsers": "Todos los usuarios",
+ "androidRestrictions": "Restricciones de Android",
+ "create": "Crear restricción",
+ "defaultLimitDescription": "Esta es la restricción de límite de dispositivos predeterminada aplicada con la prioridad más baja a todos los usuarios, independientemente de la pertenencia a grupos.",
+ "defaultTypeDescription": "Esta es la restricción de tipo de dispositivo predeterminada aplicada con la prioridad más baja a todos los usuarios, independientemente de la pertenencia a grupos.",
+ "defaultWhfbDescription": "Esta es la configuración de Windows Hello para empresas predeterminada que se aplica con la prioridad más baja a todos los usuarios, independientemente de la pertenencia a grupos.",
+ "deleteMessage": "Los usuarios afectados se verán restringidos por la siguiente restricción de prioridad más alta asignada o la predeterminada, si no se asigna ninguna otra.",
+ "deleteTitle": "¿Está seguro de que quiere eliminar la restricción {0}?",
+ "descriptionHint": "Párrafo breve que describe el nivel de restricción o uso corporativo que caracteriza la configuración de la restricción.",
+ "edit": "Editar restricción",
+ "info": "Un dispositivo debe cumplir las restricciones de inscripción de prioridad más alta asignadas a su usuario. Puede arrastrar una restricción de dispositivo para cambiar su prioridad. Las restricciones predeterminadas tienen la prioridad más baja y se aplican a las inscripciones sin usuario. Además, se pueden editar, pero no eliminarse.",
+ "iosRestrictions": "Restricciones de iOS",
+ "mDM": "MDM",
+ "macRestrictions": "Restricciones de macOS",
+ "maxVersion": "Versión máxima",
+ "minVersion": "Versión mínima",
+ "nameHint": "Este será el primer atributo principal visible para identificar el conjunto de restricciones.",
+ "noAssignmentsStatusBar": "Asigne la restricción al menos a un grupo. Haga clic en Propiedades.",
+ "notFound": "La restricción no se ha encontrado. Puede que ya se haya eliminado.",
+ "personallyOwned": "Dispositivos de propiedad personal",
+ "restriction": "Restricción",
+ "restrictionLowerCase": "restricción",
+ "restrictionType": "Restriction type",
+ "selectType": "Seleccionar el tipo de restricción",
+ "selectValidation": "Seleccione una plataforma.",
+ "typeHint": "Elija Restricción de tipo de dispositivo para restringir las propiedades del dispositivo. Elija Restricción de límite de dispositivos para restringir el número de dispositivos por usuario.",
+ "typeRequired": "Se requiere el tipo de restricción.",
+ "winPhoneRestrictions": "Restricciones de Windows Phone",
+ "windowsRestrictions": "Restricciones de Windows"
+ },
+ "Titles": {
+ "ChromeOs": {
+ "devices": "Dispositivos con Chrome OS"
+ },
+ "ManagedDesktop": {
+ "adminContacts": "Contactos del administrador",
+ "appPackaging": "Empaquetado de aplicaciones",
+ "devices": "Dispositivos",
+ "feedback": "Comentarios",
+ "gettingStarted": "Introducción",
+ "messages": "Mensajes",
+ "onlineResources": "Recursos en línea",
+ "serviceRequests": "Solicitudes de servicio",
+ "settings": "Configuración",
+ "tenantEnrollment": "Inscripción de inquilinos"
+ },
+ "actions": "Acciones en caso de incumplimiento",
+ "advancedExchangeSettings": "Configuración de Exchange Online",
+ "advancedThreatProtection": "Microsoft Defender for Endpoint",
+ "allApps": "Todas las aplicaciones",
+ "allDevices": "Todos los dispositivos",
+ "androidFotaDeployments": "Implementaciones de Android FOTA",
+ "appBundles": "Lotes de aplicaciones",
+ "appCategories": "Categorías de aplicaciones",
+ "appConfigPolicies": "Directivas de configuración de aplicaciones",
+ "appInstallStatus": "Estado de instalación de la aplicación",
+ "appLicences": "Licencias de aplicación",
+ "appProtectionPolicies": "Directivas de protección de aplicaciones",
+ "appProtectionStatus": "Estado de protección de la aplicación",
+ "appSelectiveWipe": "Borrado selectivo de aplicaciones",
+ "appleVppTokens": "Tokens de VPP de Apple",
+ "apps": "Aplicaciones",
+ "assign": "Asignaciones",
+ "assignedPermissions": "Permisos asignados",
+ "assignedRoles": "Roles asignados",
+ "autopilotDeploymentReport": "Implementaciones de Autopilot (versión preliminar)",
+ "brandingAndCustomization": "Personalización",
+ "cartProfiles": "Perfiles de carro",
+ "certificateConnectors": "Conectores de certificados",
+ "chromeEnterprise": "Chrome Enterprise",
+ "compliancePolicies": "Directivas de cumplimiento",
+ "complianceScriptManagement": "Scripts",
+ "complianceScriptManagementPreview": "Scripts (versión preliminar)",
+ "complianceSettings": "Configuración de directivas de cumplimiento",
+ "conditionStatements": "Instrucciones de condición",
+ "conditions": "Ubicaciones",
+ "configMgr": "Microsoft Endpoint Configuration Manager",
+ "configurationProfiles": "Perfiles de configuración",
+ "configurationProfilesPreview": "Perfiles de configuración (versión preliminar)",
+ "connectorsAndTokens": "Conectores y tokens",
+ "corporateDeviceIdentifiers": "Identificadores de dispositivo corporativos",
+ "customAttributes": "Atributos personalizados",
+ "customNotifications": "Notificaciones personalizadas",
+ "deploymentSettings": "Configuración de la implementación",
+ "derivedCredentials": "Credenciales derivadas",
+ "deviceActions": "Acciones de dispositivo",
+ "deviceCategories": "Categorías de dispositivo",
+ "deviceCleanUp": "Reglas de limpieza de dispositivos",
+ "deviceEnrollmentManagers": "Administradores de inscripción de dispositivos",
+ "deviceExecutionStatus": "Estado del dispositivo",
+ "deviceLimitEnrollmentRestrictions": "Restricciones de límite de dispositivos inscritos",
+ "deviceTypeEnrollmentRestrictions": "Restricciones de la plataforma de dispositivos inscritos",
+ "devices": "Dispositivos",
+ "discoveredApps": "Aplicaciones detectadas",
+ "embeddedSIM": "Perfiles de telefonía móvil eSIM (versión preliminar)",
+ "enrollDevices": "Inscribir dispositivos",
+ "enrollmentFailures": "Errores de inscripción",
+ "enrollmentNotifications": "Notificaciones de inscripción (vista previa)",
+ "enrollmentRestrictions": "Restricciones de inscripción",
+ "exchangeActiveSync": "Exchange ActiveSync",
+ "exchangeServiceConnectors": "Conectores de servicio de Exchange",
+ "failuresForFeatureUpdates": "Errores de actualización de características (vista previa)",
+ "failuresForQualityUpdates": "Errores de actualización acelerada de Windows (versión preliminar)",
+ "featureFlighting": "Alternancia de características",
+ "featureUpdateDeployments": "Actualizaciones de características para Windows 10 y versiones posteriores (versión preliminar)",
+ "flighting": "Distribución de paquetes piloto",
+ "fotaUpdate": "Actualización de firmware por vía inalámbrica",
+ "groupPolicy": "Plantillas administrativas",
+ "groupPolicyAnalytics": "Análisis de directiva de grupo",
+ "helpSupport": "Ayuda y soporte técnico",
+ "helpSupportReplacement": "Ayuda y soporte técnico ({0})",
+ "iOSAppProvisioning": "Perfiles de aprovisionamiento de aplicaciones de iOS",
+ "incompleteUserEnrollments": "Inscripciones de usuario incompletas",
+ "intuneRemoteAssistance": "Ayuda remota (versión preliminar)",
+ "iosUpdates": "Directivas de actualización para iOS/iPadOS",
+ "legacyPcManagement": "Administración de equipos heredados",
+ "macOSSoftwareUpdate": "Directivas de actualización para macOS",
+ "macOSSoftwareUpdateAccountSummaries": "Estado de instalación de los dispositivos macOS",
+ "macOSSoftwareUpdateCategorySummaries": "Resumen de actualizaciones de software",
+ "macOSSoftwareUpdateStateSummaries": "actualizaciones",
+ "managedGooglePlay": "Google Play administrado",
+ "msfb": "Tienda Microsoft para Empresas",
+ "myPermissions": "Mis permisos",
+ "notifications": "Notificaciones",
+ "officeApps": "Aplicaciones de Office",
+ "officeProPlusPolicies": "Directivas para las aplicaciones de Office",
+ "onPremise": "Local",
+ "onPremisesConnector": "Exchange ActiveSync Connector local",
+ "onPremisesDeviceAccess": "Dispositivos de Exchange ActiveSync",
+ "onPremisesManageAccess": "Acceso a Exchange local",
+ "outOfDateIosDevices": "Errores de instalación para dispositivos iOS",
+ "overview": "Información general",
+ "partnerDeviceManagement": "Administración de dispositivos de socio",
+ "perUpdateRingDeploymentState": "Estado de implementación por anillo de actualización",
+ "permissions": "Permisos",
+ "platformApps": "{0} aplicaciones",
+ "platformDevices": "{0} dispositivos",
+ "platformEnrollment": "Inscripción de {0}",
+ "policies": "Directivas",
+ "previewMDMDevices": "Todos los dispositivos administrados (vista previa)",
+ "profiles": "Perfiles",
+ "properties": "Propiedades",
+ "reports": "Informes",
+ "retireNoncompliantDevices": "Retirar dispositivos no conformes",
+ "retireNoncompliantDevicesPreview": "Retire noncompliant devices (preview)",
+ "role": "Rol",
+ "scriptManagement": "Scripts",
+ "securityBaselines": "Líneas base de seguridad",
+ "serviceToServiceConnector": "Conector de Exchange Online",
+ "shellScripts": "Scripts de Shell",
+ "teamViewerConnector": "Conector de TeamViewer",
+ "telecomeExpenseManagement": "Administración de gastos de telecomunicaciones",
+ "tenantAdmin": "Administrador de inquilinos",
+ "tenantAdministration": "Administración de inquilinos",
+ "termsAndConditions": "Términos y condiciones",
+ "titles": "Títulos",
+ "troubleshootSupport": "Solución de problemas + soporte técnico",
+ "user": "Usuario",
+ "userExecutionStatus": "Estado del usuario",
+ "warranty": "Proveedores de garantía",
+ "wdacSupplementalPolicies": "Directivas complementarias del modo S",
+ "windows10DriverUpdate": "Actualizaciones de controladores para Windows 10 y versiones posteriores (versión preliminar)",
+ "windows10QualityUpdate": "Actualizaciones de calidad para Windows 10 y versiones posteriores (versión preliminar)",
+ "windows10UpdateRings": "Anillos de actualización para Windows 10 y versiones posteriores",
+ "windows10XPolicyFailures": "Errores de directiva de Windows 10X",
+ "windowsEnterpriseCertificate": "Certificado de Windows Enterprise",
+ "windowsManagement": "Scripts de PowerShell",
+ "windowsSideLoadingKeys": "Claves de instalación de prueba de Windows",
+ "windowsSymantecCertificate": "Certificado DigiCert de Windows",
+ "windowsThreatReport": "Estado del agente de amenazas"
+ },
+ "ScopeTypes": {
+ "allDevices": "Todos los dispositivos",
+ "allUsers": "Todos los usuarios",
+ "allUsersAndDevices": "Todos los usuarios y todos los dispositivos",
+ "selectedGroups": "Grupos seleccionados"
+ },
+ "OfficeApplicationType": {
+ "access": "Access",
+ "bing": "Búsqueda de Microsoft como opción predeterminada",
+ "excel": "Excel",
+ "groove": "OneDrive (Groove)",
+ "lync": "Skype Empresarial",
+ "oneDrive": "OneDrive Escritorio",
+ "oneNote": "OneNote",
+ "outlook": "Outlook",
+ "powerPoint": "PowerPoint",
+ "publisher": "Publisher",
+ "teams": "Teams",
+ "word": "Word"
+ },
+ "ApplicableDeviceType": {
+ "iPad": "iPad",
+ "iPhoneAndIPod": "iPhone y iPod"
+ },
+ "Assignment": {
+ "AutoUpdateMode": {
+ "default": "Predeterminado",
+ "header": "Prioridad de actualización",
+ "postponed": "Pospuesto",
+ "priority": "Prioridad alta"
+ },
+ "DeliveryOptimizationPriority": {
+ "backgroundNormal": "Fondo",
+ "displayText": "Descarga de contenido en {0}",
+ "foreground": "Primer plano",
+ "header": "Prioridad de optimización de distribución"
+ },
+ "RestartGracePeriod": {
+ "allowSnooze": "Permitir al usuario posponer la notificación de reinicio",
+ "countdownDialog": "Seleccionar cuándo debe mostrarse el cuadro de diálogo de cuenta regresiva de reinicio antes de producirse el reinicio (minutos)",
+ "durationInMinutes": "Período de gracia de reinicio del dispositivo (minutos)",
+ "snoozeDurationInMinutes": "Seleccionar la duración del aplazamiento (minutos)"
+ },
+ "SoftwareInstallationTime": {
+ "TimeZone": {
+ "label": "Zona horaria",
+ "local": "Zona horaria del dispositivo",
+ "utc": "UTC"
+ },
+ "dateAndTimeLabel": "Fecha y hora",
+ "deadlineTimeColumnLabel": "Fecha límite de instalación",
+ "deadlineTimeDatePickerErrorMessage": "La fecha seleccionada debe ser posterior a la fecha de disponibilidad.",
+ "deadlineTimeLabel": "Fecha límite de instalación de la aplicación",
+ "defaultTime": "Lo antes posible",
+ "infoText": "Esta aplicación estará disponible tan pronto como se haya implementado, a menos que especifique un tiempo de disponibilidad a continuación. Si se trata de una aplicación necesaria, puede especificar la fecha límite de instalación.",
+ "specificTime": "Fecha y hora específicas",
+ "startTimeColumnLabel": "Disponibilidad",
+ "startTimeDatePickerErrorMessage": "La fecha seleccionada debe ser anterior a la fecha límite.",
+ "startTimeLabel": "Disponibilidad de la aplicación"
+ },
+ "restartGracePeriodHeader": "Período de gracia de reinicio",
+ "restartGracePeriodLabel": "Período de gracia de reinicio del dispositivo",
+ "summaryTitle": "Experiencia del usuario final"
+ },
+ "EnrollmentType": {
+ "devicesWithEnrollment": "Dispositivos administrados",
+ "devicesWithoutEnrollment": "Aplicaciones administradas"
+ },
+ "PolicySet": {
+ "appManagement": "Administración de aplicaciones",
+ "assignments": "Asignaciones",
+ "basics": "Básico",
+ "deviceEnrollment": "Inscripción de dispositivos",
+ "deviceManagement": "Administración de dispositivos",
+ "scopeTags": "Etiquetas de ámbito",
+ "appConfigurationTitle": "Directivas de configuración de aplicaciones",
+ "appProtectionTitle": "Directivas de protección de aplicaciones",
+ "appTitle": "Aplicaciones",
+ "iOSAppProvisioningTitle": "Perfiles de aprovisionamiento de aplicaciones de iOS",
+ "deviceLimitRestrictionTitle": "Restricciones de límite de dispositivos",
+ "deviceTypeRestrictionTitle": "Restricciones de tipo de dispositivo",
+ "enrollmentStatusSettingTitle": "Páginas de estado de la inscripción",
+ "windowsAutopilotDeploymentProfileTitle": "Perfiles de Windows Autopilot Deployment",
+ "deviceComplianceTitle": "Directivas de cumplimiento de dispositivos",
+ "deviceConfigurationTitle": "Perfiles de configuración de dispositivos",
+ "powershellScriptTitle": "Scripts de PowerShell"
+ },
+ "AzureIAMCommon": {
+ "CountryNames": {
+ "countryNameNR": "Nauru",
+ "countryNameBH": "Baréin",
+ "countryNameZA": "Sudáfrica",
+ "countryNameJO": "Jordania",
+ "countryNameSD": "Sudán",
+ "countryNameNU": "Niue",
+ "countryNameCZ": "República Checa",
+ "countryNameLT": "Lituania",
+ "countryNameTK": "Tokelau",
+ "countryNameEC": "Ecuador",
+ "countryNameVU": "Vanuatu",
+ "countryNameUG": "Uganda",
+ "countryNameLI": "Liechtenstein",
+ "countryNameHK": "RAE de Hong Kong",
+ "countryNameGH": "Ghana",
+ "countryNameSA": "Arabia Saudí",
+ "countryNamePG": "Papúa Nueva Guinea",
+ "countryNameBW": "Botsuana",
+ "countryNameDG": "Diego García",
+ "countryNameIN": "India",
+ "countryNameHN": "Honduras",
+ "countryNameRO": "Rumanía",
+ "countryNameKZ": "Kazajistán",
+ "countryNameLC": "Santa Lucía",
+ "countryNameGE": "Georgia",
+ "countryNameTT": "Trinidad y Tobago",
+ "countryNameMP": "Islas Marianas del Norte",
+ "countryNameMV": "Maldivas",
+ "countryNameFI": "Finlandia",
+ "countryNameNO": "Noruega",
+ "countryNameEE": "Estonia",
+ "countryNameVE": "Venezuela",
+ "countryNameUZ": "Uzbekistán",
+ "countryNameME": "Montenegro",
+ "countryNameTJ": "Tayikistán",
+ "countryNameAW": "Aruba",
+ "countryNameFR": "Francia",
+ "countryNameOM": "Omán",
+ "countryNameAO": "Angola",
+ "countryNameIT": "Italia",
+ "countryNameAZ": "Azerbaiyán",
+ "countryNameKG": "Kirguistán",
+ "countryNameWF": "Wallis y Futuna",
+ "countryNameTL": "Timor-Leste",
+ "countryNameFK": "Islas Malvinas",
+ "countryNameGY": "Guyana",
+ "countryNameSS": "Sudán del Sur",
+ "countryNameMM": "Myanmar",
+ "countryNameHT": "Haití",
+ "countryNameSY": "Siria",
+ "countryNameMD": "Moldova",
+ "countryNameVC": "San Vicente y las Granadinas",
+ "countryNameID": "Indonesia",
+ "countryNameRE": "Reunión",
+ "countryNameER": "Eritrea",
+ "countryNameMK": "Macedonia del Norte",
+ "countryNameTG": "Togo",
+ "countryNamePF": "Polinesia Francesa",
+ "countryNameKY": "Islas Caimán",
+ "countryNameIO": "Territorio Británico del Océano Índico",
+ "countryNameRU": "Rusia",
+ "countryNameMA": "Marruecos",
+ "countryNameAU": "Australia",
+ "countryNameBO": "Bolivia",
+ "countryNameVA": "La Santa Sede (Estado de la Ciudad del Vaticano)",
+ "countryNameVG": "Islas Vírgenes Británicas",
+ "countryNameFM": "Micronesia",
+ "countryNameAQ": "Antártida",
+ "countryNameZM": "Zambia",
+ "countryNameBR": "Brasil",
+ "countryNameIS": "Islandia",
+ "countryNamePE": "Perú",
+ "countryNameBG": "Bulgaria",
+ "countryNamePR": "Puerto Rico",
+ "countryNameGI": "Gibraltar",
+ "countryNameBS": "Bahamas, Las",
+ "countryNameJE": "Jersey",
+ "countryNameMO": "Macao RAE",
+ "countryNameRW": "Ruanda",
+ "countryNameAS": "Samoa Americana",
+ "countryNameBQ": "Bonaire, San Eustaquio y Saba",
+ "countryNameMF": "San Martín",
+ "countryNameTM": "Turkmenistán",
+ "countryNameML": "Malí",
+ "countryNameTO": "Tonga",
+ "countryNameNC": "Nueva Caledonia",
+ "countryNameAC": "Isla Ascensión",
+ "countryNameBN": "Brunéi",
+ "countryNameBD": "Bangladés",
+ "countryNameMW": "Malaui",
+ "countryNameGM": "Gambia",
+ "countryNameGA": "Gabón",
+ "countryNameCA": "Canadá",
+ "countryNameSH": "Santa Elena",
+ "countryNameYT": "Mayotte",
+ "countryNameMN": "Mongolia",
+ "countryNamePA": "Panamá",
+ "countryNameCM": "Camerún",
+ "countryNameNE": "Níger",
+ "countryNameCW": "Curazao",
+ "countryNameJP": "Japón",
+ "countryNameCY": "Chipre",
+ "countryNameCD": "República Democrática del Congo",
+ "countryNameTN": "Túnez",
+ "countryNameTR": "Turquía",
+ "countryNameWS": "Samoa",
+ "countryNameSE": "Suecia",
+ "countryNameXK": "Kosovo",
+ "countryNameKH": "Camboya",
+ "countryNamePL": "Polonia",
+ "countryNameDZ": "Argelia",
+ "countryNameLR": "Liberia",
+ "countryNameSO": "Somalia",
+ "countryNameDM": "Dominica",
+ "countryNameEG": "Egipto",
+ "countryNameGF": "Guayana Francesa",
+ "countryNameNZ": "Nueva Zelanda",
+ "countryNamePS": "Autoridad Palestina",
+ "countryNameIL": "Israel",
+ "countryNameSL": "Sierra Leona",
+ "countryNameGR": "Grecia",
+ "countryNameNG": "Nigeria",
+ "countryNameMR": "Mauritania",
+ "countryNameVI": "Islas Vírgenes de EE. UU.",
+ "countryNameGQ": "Guinea Ecuatorial",
+ "countryNameMX": "México",
+ "countryNameDJ": "Yibuti",
+ "countryNameGN": "Guinea",
+ "countryNameCN": "China",
+ "countryNameMZ": "Mozambique",
+ "countryNameBV": "Isla Bouvet",
+ "countryNameNF": "Isla Norfolk",
+ "countryNameTZ": "Tanzania",
+ "countryNameAI": "Anguila",
+ "countryNameGS": "Georgia del Sur e Islas Sandwich del Sur",
+ "countryNameRS": "Serbia",
+ "countryNameCC": "Islas Cocos",
+ "countryNameNA": "Namibia",
+ "countryNameDE": "Alemania",
+ "countryNameCG": "República del Congo",
+ "countryNameKW": "Kuwait",
+ "countryNameMH": "Islas Marshall",
+ "countryNameVN": "Vietnam",
+ "countryNameBY": "Belarús",
+ "countryNameMY": "Malasia",
+ "countryNameST": "Santo Tomé y Príncipe",
+ "countryNameLS": "Lesoto",
+ "countryNameBI": "Burundi",
+ "countryNameTD": "Chad",
+ "countryNameCX": "Isla de Navidad",
+ "countryNameIR": "Irán",
+ "countryNameTV": "Tuvalu",
+ "countryNameGW": "Guinea-Bisáu",
+ "countryNameUA": "Ucrania",
+ "countryNameCU": "Cuba",
+ "countryNameCO": "Colombia",
+ "countryNameNI": "Nicaragua",
+ "countryNameHR": "Croacia",
+ "countryNameSC": "Seychelles",
+ "countryNameNL": "Países bajos",
+ "countryNameUM": "Islas Ultramarinas Menores de Estados Unidos",
+ "countryNameIM": "Isla de Man",
+ "countryNameFJ": "Fiyi",
+ "countryNameSR": "Surinam",
+ "countryNameGT": "Guatemala",
+ "countryNameSM": "San Marino",
+ "countryNameLA": "Laos",
+ "countryNameGB": "Reino Unido",
+ "countryNameBB": "Barbados",
+ "countryNameSI": "Eslovenia",
+ "countryNameAM": "Armenia",
+ "countryNameAR": "Argentina",
+ "countryNamePM": "San Pedro y Miquelón",
+ "countryNameTF": "Tierras Australes y Antárticas Francesas",
+ "countryNameDO": "República Dominicana",
+ "countryNameZW": "Zimbabue",
+ "countryNameMQ": "Martinica",
+ "countryNamePT": "Portugal",
+ "countryNameCF": "República Centroafricana",
+ "countryNameBE": "Bélgica",
+ "countryNameKM": "Comoras",
+ "countryNameLY": "Libia",
+ "countryNameIE": "Irlanda",
+ "countryNameKP": "Corea del Norte",
+ "countryNameGG": "Guernsey",
+ "countryNameSK": "Eslovaquia",
+ "countryNameTC": "Islas Turcas y Caicos",
+ "countryNameNP": "Nepal",
+ "countryNameBF": "Burkina Faso",
+ "countryNameYE": "Yemen",
+ "countryNameBA": "Bosnia y Herzegovina",
+ "countryNameGP": "Guadalupe",
+ "countryNameMS": "Montserrat",
+ "countryNameCL": "Chile",
+ "countryNameIQ": "Irak",
+ "countryNameSJ": "Islas Svalbard y Jan Mayen",
+ "countryNameAX": "Islas Åland",
+ "countryNameKE": "Kenia",
+ "countryNameGU": "Guam",
+ "countryNameBM": "Bermudas",
+ "countryNameFO": "Islas Feroe",
+ "countryNameBL": "San Bartolomé",
+ "countryNameLB": "Líbano",
+ "countryNameJM": "Jamaica",
+ "countryNameAF": "Afganistán",
+ "countryNameES": "España",
+ "countryNameMC": "Mónaco",
+ "countryNameSG": "Singapur",
+ "countryNameAL": "Albania",
+ "countryNameSN": "Senegal",
+ "countryNameSZ": "Suazilandia",
+ "countryNameBZ": "Belice",
+ "countryNameCI": "Côte d’Ivoire",
+ "countryNameTW": "Taiwán",
+ "countryNameUY": "Uruguay",
+ "countryNameCK": "Islas Cook",
+ "countryNameTH": "Tailandia",
+ "countryNameHM": "Islas Heard y McDonald",
+ "countryNameGD": "Granada",
+ "countryNameUS": "Estados Unidos",
+ "countryNameAT": "Austria",
+ "countryNameKR": "República de Corea",
+ "countryNamePK": "Pakistán",
+ "countryNameDK": "Dinamarca",
+ "countryNameSV": "El Salvador",
+ "countryNamePW": "Palaos",
+ "countryNameET": "Etiopía",
+ "countryNameMG": "Madagascar",
+ "countryNameCR": "Costa Rica",
+ "countryNameLU": "Luxemburgo",
+ "countryNameQA": "Catar",
+ "countryNameBT": "Bután",
+ "countryNameSB": "Islas Salomón",
+ "countryNameAE": "Emiratos Árabes Unidos",
+ "countryNameAD": "Andorra",
+ "countryNameCV": "Cabo Verde",
+ "countryNameAG": "Antigua y Barbuda",
+ "countryNameMU": "Mauricio",
+ "countryNameHU": "Hungría",
+ "countryNameSX": "Sint Maarten",
+ "countryNameCH": "Suiza",
+ "countryNamePN": "Islas Pitcairn",
+ "countryNameGL": "Groenlandia",
+ "countryNamePH": "Filipinas",
+ "countryNameMT": "Malta",
+ "countryNameKN": "San Cristóbal y Nieves",
+ "countryNameLK": "Sri Lanka",
+ "countryNameKI": "Kiribati",
+ "countryNameBJ": "Benín",
+ "countryNameLV": "Letonia",
+ "countryNamePY": "Paraguay"
+ }
+ }
}
diff --git a/Documentation/Strings-fr.json b/Documentation/Strings-fr.json
index cc876fa..c74c5f6 100644
--- a/Documentation/Strings-fr.json
+++ b/Documentation/Strings-fr.json
@@ -1,1842 +1,4 @@
{
- "InstallContextType": {
- "device": "Appareil",
- "deviceContext": "Contexte d'appareil",
- "user": "Utilisateur",
- "userContext": "Contexte utilisateur"
- },
- "WipPolicySettings": {
- "addNetworkBoundary": "Ajouter une limite réseau",
- "addNetworkBoundaryButton": "Ajouter une limite réseau...",
- "allowWindowsSearch": "Autoriser Windows Search à rechercher dans les données d'entreprise chiffrées et dans les applications du Windows Store",
- "authoritativeIpRanges": "La liste Plages IP de l'entreprise fait autorité (ne pas détecter automatiquement)",
- "authoritativeProxyServers": "La liste Serveurs proxy de l'entreprise fait autorité (ne pas détecter automatiquement)",
- "boundaryType": "Type de limite",
- "cloudResources": "Ressources cloud",
- "corporateIdentity": "Identité d'entreprise",
- "dataRecoveryCert": "Charger un certificat d'agent de récupération de données pour autoriser la récupération de données chiffrées",
- "editNetworkBoundary": "Modifier la limite réseau",
- "enrollmentState": "État de l'inscription",
- "iPv4Ranges": "Plages d'adresses IPv4",
- "iPv6Ranges": "Plages d'adresses IPv6",
- "internalProxyServers": "Serveurs proxy internes",
- "maxInactivityTime": "Durée maximale (en minutes) autorisée pendant laquelle l'appareil peut rester inactif avant d'être verrouillé par un mot de passe ou un code PIN",
- "maxPasswordAttempts": "Nombre d'échecs d'authentification autorisés avant la réinitialisation de l'appareil",
- "mdmDiscoveryUrl": "URL de détection MDM",
- "mdmRequiredSettingsInfo": "Cette stratégie s'applique uniquement à Windows 10 Édition anniversaire et supérieure. Cette stratégie utilise la Protection des informations Windows pour appliquer la protection.",
- "minimumPinLength": "Définir le nombre minimal de caractères obligatoires dans le code PIN",
- "name": "Nom",
- "networkBoundariesGridEmptyText": "Les limites réseau que vous ajoutez apparaissent ici",
- "networkBoundary": "Limite réseau",
- "networkDomainNames": "Domaines réseau",
- "neutralResources": "Ressources neutres",
- "passportForWork": "Utiliser Windows Hello Entreprise comme mode de connexion à Windows",
- "pinExpiration": "Spécifier la durée (en jours) pendant laquelle un code PIN peut être utilisé avant que le système demande à l'utilisateur de le changer",
- "pinHistory": "Spécifier le nombre d'anciens codes PIN associés à un compte d'utilisateur qui peuvent être réutilisés",
- "pinLowercaseLetters": "Configurer l'utilisation des lettres minuscules dans le code PIN Windows Hello Entreprise",
- "pinSpecialCharacters": "Configurer l'utilisation des caractères spéciaux dans le code PIN Windows Hello Entreprise",
- "pinUppercaseLetters": "Configurer l'utilisation des lettres majuscules dans le code PIN Windows Hello Entreprise",
- "protectUnderLock": "Empêcher les applications d'accéder aux données d'entreprise quand l'appareil est verrouillé. S'applique uniquement à Windows 10 Mobile",
- "protectedDomainNames": "Domaines protégés",
- "proxyServers": "Serveurs proxy",
- "requireAppPin": "Désactiver le code PIN de l'application quand le code PIN de l'appareil est géré",
- "requiredSettings": "Paramètres obligatoires",
- "requiredSettingsInfo": "Le changement d'étendue ou la suppression de cette stratégie entraîne le déchiffrement des données d'entreprise.",
- "revokeOnMdmHandoff": "Révoquer l'accès aux données protégées quand l'appareil s'inscrit à MDM",
- "revokeOnUnenroll": "Révoquer les clés de chiffrement lors de la désinscription",
- "rmsTemplateForEdp": "Spécifier l'ID de modèle à utiliser pour Azure RMS",
- "showWipIcon": "Afficher l'icône de protection des données d'entreprise",
- "type": "Type",
- "useRmsForWip": "Utiliser Azure RMS pour WIP",
- "value": "Valeur",
- "weRequiredSettingsInfo": "Cette stratégie s'applique uniquement à Windows 10 Creators Update et ultérieur. Cette stratégie utilise la Protection des informations Windows et la gestion des applications mobiles Windows pour appliquer la protection.",
- "wipProtectionMode": "Mode Protection des informations Windows",
- "withEnrollment": "Avec inscription",
- "withoutEnrollment": "Sans inscription"
- },
- "EdgeAppConfig": {
- "AllowedURLs": {
- "title": "URL autorisées",
- "tooltip": "Spécifiez les sites auxquels vos utilisateurs peuvent accéder dans leur contexte de travail. Aucun autre site n'est autorisé. Vous pouvez choisir de configurer une liste autorisée ou bloquée, mais pas les deux."
- },
- "ApplicationProxyRedirection": {
- "header": "Proxy d'application",
- "title": "Redirection du proxy d'application",
- "tooltip": "Activez la redirection du proxy d'application pour permettre aux utilisateurs d'accéder aux liens d'entreprise et aux applications web locales."
- },
- "BlockedURLs": {
- "title": "URL bloquées",
- "tooltip": "Spécifiez les sites auxquels vos utilisateurs ne peuvent pas accéder dans leur contexte de travail. Tous les autres sites sont autorisés. Vous pouvez choisir de configurer une liste autorisée ou bloquée, mais pas les deux. "
- },
- "Bookmarks": {
- "header": "Signets gérés",
- "tooltip": "Entrez une liste d'URL avec signet que vos utilisateurs peuvent utiliser dans Microsoft Edge dans leur contexte de travail.",
- "uRL": "URL"
- },
- "HomepageURL": {
- "header": "Page d'accueil gérée",
- "title": "URL du raccourci de page d'accueil",
- "tooltip": "Configurez un raccourci de page d'accueil représenté par la première icône sous la barre de recherche quand les utilisateurs ouvrent un nouvel onglet dans Microsoft Edge."
- },
- "PersonalContext": {
- "label": "Rediriger les sites restreints vers un contexte personnel",
- "tooltip": "Configurez s'il faut autoriser les utilisateurs à basculer sur leur contexte personnel pour ouvrir les sites restreints."
- }
- },
- "AzureIAM": {
- "AdrsUserActionSelectionWarning": {
- "conditions": "Les conditions nécessitant l’inscription de l’appareil ne sont pas disponibles avec l’action utilisateur « Inscrire ou joindre des appareils ».",
- "message": "Seule l’action Exiger l’authentification multifacteur peut être utilisée dans les stratégies créées pour l’action utilisateur Inscrire ou joindre des appareils.{0}"
- },
- "AuthContext": {
- "Included": {
- "none": "Aucun(e) application cloud, action ou contexte d’authentification sélectionné(e)",
- "plural": "{0} contextes d’authentification inclus",
- "singular": "1 contexte d’authentification inclus"
- },
- "InfoBlade": {
- "createTitle": "Ajouter un contexte d’authentification",
- "descPlaceholder": "Ajouter une description pour le contexte d’authentification",
- "modifyTitle": "Modifier le contexte d’authentification",
- "namePlaceholder": "Ex. : emplacement approuvé, appareil approuvé, autorisation forte",
- "publishDesc": "La publication dans les applications va rendre le contexte d'authentification disponible pour les applications. Publiez une fois que vous avez terminé la configuration de la stratégie d'accès conditionnel pour l'étiquette. [En savoir plus][1]\n[1] : https://go.microsoft.com/fwlink/?linkid=2150966",
- "publishLabel": "Publier sur des applications",
- "titleDesc": "Configurez un contexte d’authentification qui sera utilisé pour protéger les données et les actions de l’application. Utilisez des noms et des descriptions que les administrateurs d’applications peuvent comprendre. [En savoir plus][1]\n[1] : https://go.microsoft.com/fwlink/?linkid=2150965"
- },
- "Notify": {
- "failure": "Échec de la mise à jour de {0}",
- "modifying": "Modification de {0}",
- "success": "{0} mis à jour"
- },
- "WhatIf": {
- "selected": "Contexte d’authentification inclus"
- },
- "addNewStepUp": "Nouveau contexte d’authentification",
- "checkBoxInfo": "Sélectionner les contextes d'authentification auxquels cette stratégie s'applique",
- "configure": "Configurer les contextes d’authentification",
- "createCA": "Attribuer des stratégies d’accès conditionnel au contexte d’authentification",
- "dataGrid": "Liste des contextes d’authentification",
- "description": "Description",
- "documentation": "Documentation",
- "getStarted": "Démarrer",
- "label": "Contexte d’authentification (préversion)",
- "menuLabel": "Contexte d’authentification (préversion)",
- "name": "Nom",
- "noAuthContextSet": "Il n'existe pas de contextes d'authentification",
- "noData": "Aucun contexte d’authentification à afficher",
- "selectionInfo": "Le contexte d’authentification permet de sécuriser les données et les actions d’une application dans des applications comme SharePoint et Microsoft Cloud App Security.",
- "step": "Étape",
- "tabDescription": "Gérez le contexte d’authentification pour protéger les données et les actions dans vos applications. [En savoir plus][1]\n[1] : https://go.microsoft.com/fwlink/?linkid=2150965",
- "tagResources": "Étiqueter les ressources avec un contexte d’authentification"
- },
- "AuthenticationStrength": {
- "Mode": {
- "deviceBasedPush": "Microsoft Authenticator (connexion par téléphone)",
- "deviceBasedPushFido2X509Certificate": "Microsoft Authenticator (connexion par téléphone) + Fido 2 + Authentification par certificat",
- "deviceBasedPushX509CertificateSingleFactor": "Microsoft Authenticator (connexion par téléphone) + Fido 2 + Authentification par certificat (facteur unique)",
- "email": "Envoyer un e-mail à usage unique",
- "emailOtp": "Mot de passe à usage unique par e-mail",
- "federatedMultiFactor": "Multifacteur fédéré",
- "federatedSingleFactor": "Facteur unique fédéré",
- "federatedSingleFactorFederatedMultiFactor": "Facteur unique fédéré + multifacteur fédéré",
- "fido2": "Clé de sécurité FIDO 2",
- "fido2X509CertificateSingleFactor": "Clé de sécurité FIDO 2 + Authentification basée sur un certificat (facteur unique)",
- "hardwareOath": "Mot de passe à usage unique matériel",
- "hardwareOathX509CertificateSingleFactor": "Mot de passe à usage unique matériel + Authentification par certificat (facteur unique)",
- "microsoftAuthenticatorPSIX509CertificateSingleFactor": "Microsoft Authenticator (connexion par téléphone) + Authentification par certificat (facteur unique)",
- "microsoftAuthenticatorPsi": "Microsoft Authenticator (connexion par téléphone)",
- "microsoftAuthenticatorPush": "Microsoft Authenticator (notification Push)",
- "microsoftAuthenticatorPushX509CertificateSingleFactor": "Microsoft Authenticator (notification Push) + Authentification basée sur un certificat (facteur unique)",
- "none": "Aucun",
- "password": "Mot de passe",
- "passwordDeviceBasedPush": "Mot de passe + Microsoft Authenticator (connexion par téléphone)",
- "passwordFido2": "Mot de passe + clé de sécurité FIDO 2",
- "passwordHardwareOath": "Mot de passe + mot de passe à usage unique matériel",
- "passwordMicrosoftAuthenticatorPSI": "Mot de passe + Microsoft Authenticator (connexion par téléphone)",
- "passwordMicrosoftAuthenticatorPush": "Mot de passe + Microsoft Authenticator (notification Push)",
- "passwordSms": "Mot de passe + SMS",
- "passwordSoftwareOath": "Mot de passe + mot de passe à usage unique logiciel",
- "passwordTemporaryAccessPassMultiUse": "Mot de passe + Passe d'accès temporaire (multi-utilisation)",
- "passwordTemporaryAccessPassOneTime": "Mot de passe + Passe d'accès temporaire (utilisation unique)",
- "passwordVoice": "Mot de passe + voix",
- "sms": "SMS",
- "smsSignIn": "Connexion par SMS",
- "smsX509CertificateSingleFactor": "SMS + Authentification par certificat (facteur unique)",
- "softwareOath": "Mot de passe à usage unique du logiciel",
- "softwareOathX509CertificateSingleFactor": "Mot de passe à usage unique logiciel + Authentification par certificat (facteur unique)",
- "temporaryAccessPassMultiUse": "Passe d'accès temporaire (multi-utilisation)",
- "temporaryAccessPassMultiUseX509CertificateSingleFactor": "Passe d'accès temporaire (multi-utilisation) + Authentification par certificat (facteur unique)",
- "temporaryAccessPassOneTime": "Passe d'accès temporaire (utilisation unique)",
- "temporaryAccessPassOneTimeX509CertificateSingleFactor": "Passe d'accès temporaire (utilisation unique) + Authentification par certificat (facteur unique)",
- "voice": "Voix",
- "voiceX509CertificateSingleFactor": "Voix + Authentification basée sur un certificat (facteur unique)",
- "windowsHelloForBusiness": "Windows Hello Entreprise",
- "x509CertificateMultiFactor": "Authentification basée sur un certificat (multifacteur)",
- "x509CertificateSingleFactor": "Authentification basée sur un certificat (facteur unique)"
- }
- },
- "CAS": {
- "BuiltinPolicy": {
- "Option": {
- "blockDownloads": "Bloquer les téléchargements (préversion)",
- "monitorOnly": "Surveiller uniquement (préversion)",
- "protectDownloads": "Protéger les téléchargements (préversion)",
- "useCustomControls": "Utiliser une stratégie personnalisée..."
- },
- "ariaLabel": "Choisir le type de contrôle d’application par accès conditionnel à appliquer"
- }
- },
- "ChooseApplications": {
- "Grid": {
- "appIdAria": "ID d'application : {0}"
- },
- "LowerGrid": {
- "ariaLabel": "Liste des applications cloud sélectionnées"
- },
- "UpperGrid": {
- "ariaLabel": "Liste des applications cloud qui correspondent au terme de recherche"
- }
- },
- "ChooseLocations": {
- "Validation": {
- "failed": "Avec « Emplacements sélectionnés », vous devez choisir au moins un emplacement.",
- "selector": "Choisir au moins un emplacement"
- }
- },
- "ClientApp": {
- "Clients": {
- "Validation": {
- "failed": "Vous devez sélectionner au moins un des clients suivants"
- }
- }
- },
- "ClientConditionsInfo": {
- "browserAndModern": "Cette stratégie s'applique uniquement aux navigateurs et aux applications d'authentification modernes. Pour appliquer la stratégie à toutes les applications clientes, activez la condition d'application cliente et sélectionnez toutes les applications clientes.",
- "classicExperience": "Depuis la création de cette stratégie, la configuration des applications clientes par défaut a été mise à jour.",
- "legacyAuth": "Quand elle ne sont pas configurées, les stratégies s’appliquent désormais à toutes les applications clientes, notamment l’authentification moderne et héritée."
- },
- "CloudAppFilterBlade": {
- "AssignmentFilter": {
- "header": "Attribut",
- "placeholder": "Choisir un attribut"
- },
- "Configure": {
- "infoBalloon": "Configurez les filtres d'application auxquels vous voulez appliquer la stratégie."
- },
- "NoPermissions": {
- "learnMoreAria": "En savoir plus sur les autorisations d’attribut de sécurité personnalisées.",
- "message": "Vous ne disposez pas des autorisations nécessaires pour utiliser des attributs de sécurité personnalisés."
- },
- "gridHeader": "À l’aide d’attributs de sécurité personnalisés, vous pouvez utiliser le générateur de règles ou la zone de texte de syntaxe de la règle pour créer ou modifier un filtre de règle. Dans l’aperçu, seuls les attributs de type Chaîne sont pris en charge. Les attributs de type Entier ou Boolean ne seront pas affichés.",
- "learnMoreAria": "Plus d’informations sur l’utilisation du générateur de règles et de la zone de texte de syntaxe.",
- "noAttributes": "Aucun attribut personnalisé n’est disponible pour filtrer. Vous devez configurer certains attributs pour utiliser ce filtre.",
- "title": "Edit filter (Preview)"
- },
- "CloudAppsUserActions": {
- "any": "Toute action ou application cloud",
- "infoBalloon": "Action utilisateur ou application cloud que vous voulez tester. Par exemple, 'SharePoint Online'",
- "learnMore": "Contrôlez l’accès en fonction des actions ou applications cloud globales ou spécifiques.",
- "learnMoreB2C": "Contrôlez l'accès en fonction de toutes les applications ou d'applications cloud spécifiques.",
- "title": "Applications ou actions cloud"
- },
- "CloudappsSelectionBlade": {
- "Excluded": {
- "gridAria": "Liste des applications cloud exclues"
- },
- "Filter": {
- "configured": "Configuré",
- "label": "Edit filter (Preview)",
- "with": "{0} avec {1}"
- },
- "Included": {
- "gridAria": "Liste des applications cloud incluses"
- },
- "Validation": {
- "authContext": "Avec « contexte d'authentification », vous devez configurer au moins un sous-élément.",
- "selectApps": "« {0} » doit être configuré",
- "selector": "Sélectionnez au moins une application.",
- "userActions": "Avec « Actions utilisateur », vous devez configurer au moins un sous-élément."
- }
- },
- "DeviceState": {
- "LearnMore": {
- "message": "Control user access when the device the user is signing-in from is not \"Hybrid Azure AD joined\" or \"marked as compliant\".\n '{0}' has been deprecated. Use '{1}' instead."
- }
- },
- "Errors": {
- "notFound": "La stratégie est introuvable ou a été supprimée.",
- "notFoundDetailed": "La stratégie « {0} » n’existe plus. Elle a peut-être été supprimée."
- },
- "NamedLocation": {
- "Form": {
- "CountryLookup": {
- "ariaLabel": "Méthode de recherche de pays",
- "gps": "Déterminer l’emplacement avec les coordonnées GPS",
- "info": "Quand la condition d’emplacement d’une stratégie d’accès conditionnel est configurée, les utilisateurs sont invités par l’application Authenticator à partager leur emplacement GPS.",
- "ip": "Déterminer l'emplacement avec l'adresse IP (IPv4 uniquement)"
- },
- "Header": {
- "new": "Nouvel emplacement ({0})",
- "update": "Mettre à jour l'emplacement ({0})"
- },
- "IP": {
- "learn": "Configurez les plages IPv4 et IPv6 d’emplacements nommés.\n[En savoir plus][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
- },
- "Include": {
- "infoBalloon": "Les pays/régions inconnus sont des adresses IP qui ne sont pas associées à un pays ou une région spécifique. [En savoir plus][1]\n\nCeci inclut :\n* Adresses IPv6\n* Adresses IPv4 sans mappage direct\n[1] : https://aka.ms/canamedlocations\n",
- "label": "Inclure des pays/régions inconnus"
- },
- "Name": {
- "empty": "Le nom ne peut pas être vide",
- "placeholder": "Nommer cet emplacement"
- },
- "PrivateLink": {
- "learn": "Créez un emplacement nommé contenant des liaisons privées pour Azure AD.\n[En savoir plus][1]\n[1] : https://go.microsoft.com/fwlink/?linkid=2084753"
- },
- "Search": {
- "countries": "Rechercher dans les pays",
- "names": "Rechercher dans les noms",
- "privateLinks": "Rechercher des liaisons privées"
- },
- "Trusted": {
- "label": "Marquer comme emplacement approuvé"
- },
- "enter": "Entrer une nouvelle plage IPv4 ou IPv6",
- "example": "ex : 40.77.182.32/27 ou 2a01:111::/32"
- },
- "Label": {
- "addCountries": "Emplacement des pays",
- "addIpRange": "Emplacement des plages IP",
- "addPrivateLink": "Liaisons privées Azure"
- },
- "Notification": {
- "Create": {
- "Failed": {
- "description": "Échec de création du nouvel emplacement ({0})",
- "title": "Échec de la création"
- },
- "InProgress": {
- "description": "Création d'un nouvel emplacement ({0})",
- "title": "Création en cours"
- },
- "Success": {
- "description": "Réussite de la création du nouvel emplacement ({0})",
- "title": "Création réussie"
- }
- },
- "Delete": {
- "Failed": {
- "description": "Échec de suppression de l'emplacement ({0})",
- "title": "Échec de la suppression"
- },
- "InProgress": {
- "description": "Suppression de l'emplacement ({0})",
- "title": "Suppression en cours"
- },
- "Success": {
- "description": "Réussite de la suppression de l'emplacement ({0})",
- "title": "Suppression réussie"
- }
- },
- "Update": {
- "Failed": {
- "description": "Échec de mise à jour de l'emplacement ({0})",
- "title": "Échec de la mise à jour"
- },
- "InProgress": {
- "description": "Mise à jour de l'emplacement ({0})",
- "title": "Mise à jour en cours"
- },
- "Success": {
- "description": "Réussite de la mise à jour de l'emplacement ({0})",
- "title": "Mise à jour réussie"
- }
- }
- },
- "PrivateLinks": {
- "grid": "Liste des liaisons privées"
- },
- "Trusted": {
- "title": "Type approuvé",
- "trusted": "Approuvé"
- },
- "Type": {
- "all": "Tous les types",
- "countries": "Pays",
- "ipRanges": "Plages d'adresses IP",
- "privateLinks": "Liaisons privées",
- "title": "Type d'emplacement"
- },
- "iPRangeInvalidError": "La valeur doit être une plage IPv4 ou IPv6 valide.",
- "iPRangeLinkOrSiteLocalError": "Réseau IP détecté en tant que liaison locale ou adresse locale de site.",
- "iPRangeOctetError": "Le réseau IP ne doit pas commencer par 0 ou 255.",
- "iPRangePrefixError": "Le préfixe réseau IP doit être compris entre /{0} et /{1}.",
- "iPRangePrivateError": "Réseau IP détecté en tant qu’adresse privée."
- },
- "Policies": {
- "Grid": {
- "aria": "Liste des stratégies d’accès conditionnel"
- },
- "countText": "{0} sur {1} stratégies trouvées",
- "countTextSingular": "{0} sur 1 stratégie trouvée",
- "search": "Rechercher des stratégies"
- },
- "Policy": {
- "Condition": {
- "ServicePrincipalRisk": {
- "description": "Configurez les niveaux de risque du principal de service nécessaires à l’application de la stratégie",
- "infoBalloonContent": "Configurer le risque de principal de service pour appliquer la stratégie aux niveaux de risque sélectionnés",
- "title": "Risque de principal de service"
- }
- }
- },
- "PolicyControlAuthStrength": {
- "MultiFactorAuthentication": {
- "description": "Combinaisons de méthodes qui répondent à une authentification forte, telles que Mot de passe + SMS",
- "displayName": "Authentification multifacteur (MFA)"
- },
- "Passwordless": {
- "description": "Méthodes sans mot de passe qui répondent à une authentification forte, comme Microsoft Authenticator ",
- "displayName": "Authentification multifacteur sans mot de passe"
- },
- "PhishingResistant": {
- "description": "Méthodes sans mot de passe sans hameçonnage pour l’authentification la plus forte, comme la clé de sécurité FIDO2",
- "displayName": "MFA anti-hameçonnage"
- }
- },
- "PolicyControlFedAuthMethod": {
- "certificate": "Authentification par certificat",
- "infoBubble": "Spécifiez la méthode d'authentification requise, qui doit être suivie par le fournisseur de fédération, tel qu'ADFS.",
- "multifactor": "Authentification multifacteur",
- "require": "Exiger la méthode d'authentification fédérée (préversion)",
- "whatIfFormat": "{0} - {1}"
- },
- "PolicyState": {
- "off": "Désactivé",
- "on": "Activé",
- "reportOnly": "Rapport uniquement"
- },
- "PolicyTemplates": {
- "Devices": {
- "description": "Sélectionnez la catégorie de modèle de stratégie Appareils pour obtenir une visibilité sur les appareils qui accèdent au réseau. Vérifiez la conformité et l’état d’intégrité avant d’accorder l’accès.",
- "name": "Appareils"
- },
- "Identities": {
- "description": "Sélectionnez la catégorie de modèle de stratégie Identités pour vérifier et sécuriser chaque identité avec une authentification forte sur l’ensemble de votre patrimoine numérique.",
- "name": "Identités"
- },
- "Summary": {
- "CloudApps": {
- "allCloudApps": "Toutes les applications",
- "office365": "Office 365",
- "registerSecurityInfo": "Enregistrer les informations de sécurité"
- },
- "Conditions": {
- "androidAndIOS": "Plateforme de l’appareil : Android et IOS",
- "anyDevice": "Tous les appareils à l’exception d’Android, IOS, Windows et Mac",
- "anyDeviceStateExceptHybrid": "Tout état d’appareil sauf conforme et jointure hybride Azure AD",
- "anyLocation": "Tout emplacement sauf approuvé",
- "browserMobileDesktop": "Applications clientes : navigateur, applications mobiles et clients de bureau",
- "exchangeActiveSync": "Applications clientes : Exchange Active Sync, autres clients",
- "windowsAndMac": "Plateforme d’appareil : Windows et Mac"
- },
- "Devices": {
- "anyDevice": "N'importe quel périphérique"
- },
- "Grant": {
- "appProtectionPolicy": "Exiger une stratégie de protection des applications",
- "approvedClientApp": "Demander une application cliente approuvée",
- "blockAccess": "Bloquer l'accès",
- "mfa": "Exiger une authentification multifacteur",
- "passwordChange": "Demander une modification du mot de passe",
- "requireCompliantDevice": "Exiger que l'appareil soit marqué comme conforme",
- "requireHybridAzureADDevice": "Exiger un appareil joint Azure AD hybride"
- },
- "Session": {
- "appEnforcedRestrictions": "Utiliser les restrictions appliquées par l'application",
- "signInFrequency": "Fréquence de connexion et session de navigateur jamais persistante"
- },
- "UsersAndGroups": {
- "allUsers": "Tous les utilisateurs",
- "directoryRoles": "Rôles d’annuaire à l’exception de l’administrateur actuel",
- "globalAdmin": "Administrateur général",
- "noGuestAndAdmins": "Tous les utilisateurs à l’exception des administrateurs généraux, invités et externes, administrateur actuel"
- },
- "azureManagement": "Gestion Azure",
- "deviceFilters": "Filtres pour les appareils",
- "devicePlatforms": "Plates-formes de périphériques"
- },
- "TemplateId": {
- "AppEnforcedRestrictions": {
- "description": "Bloquez ou limitez l’accès à du contenu SharePoint, OneDrive et Exchange à partir d’appareils non gérés.",
- "name": "CA014 : utiliser les restrictions appliquées par l’application pour les appareils non gérés",
- "title": "Utiliser les restrictions appliquées par l’application pour les appareils non gérés"
- },
- "ApprovedClientApps": {
- "description": "Pour éviter la perte de données, les organisations peuvent restreindre l’accès aux applications clientes d’authentification modernes approuvées avec Intune App Protection.",
- "name": "CA012 : exiger des applications clientes approuvées et une protection des applications",
- "title": "Exiger des applications clientes approuvées et une protection des applications"
- },
- "BlockAccessOnUnknowns": {
- "description": "Les utilisateurs ne pourront pas accéder aux ressources de l’entreprise lorsque le type de l’appareil est inconnu ou n’est pas pris en charge.",
- "name": "CA010 : bloquer l’accès pour une plateforme d’appareils inconnue ou non prise en charge",
- "title": "Bloquer l’accès pour une plateforme d’appareils inconnue ou non prise en charge"
- },
- "BlockLegacyAuth": {
- "description": "Bloquez les points de terminaison d’authentification hérités qui peuvent être utilisés pour contourner l’authentification multifacteur. ",
- "name": "CA003 : Bloquer l’authentification héritée",
- "title": "Bloquer l’authentification héritée"
- },
- "NoPersistentBrowserSession": {
- "description": "Protégez l’accès utilisateur sur les appareils non gérés en empêchant les sessions de navigateur de rester connectées une fois que le navigateur est fermé et en définissant une fréquence de connexion à 1 heure.",
- "name": "CA011 : aucune session de navigateur persistante",
- "title": "Aucune session de navigateur persistante"
- },
- "RequireCompliantOrHybridADAdmins": {
- "description": "Exiger que les administrateurs privilégiés accèdent aux ressources uniquement lorsqu'ils utilisent un appareil conforme ou jointure hybride Azure AD.",
- "name": "CA009 : exiger un appareil conforme ou jointure hybride Azure AD pour les administrateurs",
- "title": "Exiger un appareil conforme ou jointure hybride Azure AD pour les administrateurs"
- },
- "RequireCompliantOrHybridADAllUsers": {
- "description": "Protégez l’accès aux ressources de l’entreprise en demandant aux utilisateurs d’utiliser un appareil géré ou d’effectuer une authentification multifacteur. (macOS ou Windows uniquement)",
- "name": "CA013 : exiger une authentification multifacteur ou un appareil conforme ou jointure hybride Azure AD pour tous les utilisateurs",
- "title": "Exiger un appareil conforme ou jointure hybride Azure AD ou une authentification multifacteur pour tous les utilisateurs"
- },
- "RequireMFAAllUsers": {
- "description": "Exigez l’authentification multifacteur pour tous les comptes d’utilisateur afin de réduire le risque de compromission.",
- "name": "CA004 : exiger l’authentification multifacteur pour tous les utilisateurs",
- "title": "Exiger l’authentification multifacteur pour tous les utilisateurs"
- },
- "RequireMFAForAdmins": {
- "description": "Exigez une authentification multifacteur pour les comptes d'administration privilégiés afin de réduire le risque de compromission. Cette stratégie va cibler les mêmes rôles que la valeur par défaut de sécurité.",
- "name": "CA001 : exiger l’authentification multifacteur pour les administrateurs",
- "title": "Exigez l’authentification multifacteur pour les administrateurs"
- },
- "RequireMFAForAzureManagement": {
- "description": "Exiger l’authentification multifacteur pour protéger l’accès privilégié aux ressources Azure.",
- "name": "CA006 : exiger l’authentification multifacteur pour la gestion Azure",
- "title": "Exiger l’authentification multifacteur pour la gestion Azure"
- },
- "RequireMFAForGuestAccess": {
- "description": "Exiger que les utilisateurs invités exécutent Multi-Factor Authentication lors de l’accès aux ressources de votre entreprise.",
- "name": "CA005 : exiger l’authentification multifacteur pour l’accès invité",
- "title": "Exiger l’authentification multifacteur pour l’accès invité"
- },
- "RequireMFAForRiskySignIn": {
- "description": "Exiger l’authentification multifacteur si le risque de connexion est détecté comme étant moyen ou élevé. (Nécessite une licence Azure AD Premium 2)",
- "name": "CA007 : exiger l’authentification multifacteur pour les connexions à risque",
- "title": "Exiger l’authentification multifacteur pour les connexions à risque"
- },
- "RequirePasswordChangeForHighRiskUsers": {
- "description": "Obliger l’utilisateur à modifier son mot de passe si le risque utilisateur est détecté comme étant élevé. (Nécessite une licence Azure AD Premium 2)",
- "name": "CA008 : exiger une modification du mot de passe pour les utilisateurs à haut risque",
- "title": "Exiger la modification du mot de passe pour les utilisateurs à haut risque"
- },
- "RequireSecurityInfo": {
- "description": "Sécurisez quand et comment les utilisateurs s'inscrivent à l'authentification multifacteur Azure AD et au mot de passe en libre-service. ",
- "name": "CA002 : sécurisation de l’inscription des informations de sécurité",
- "title": "Sécurisation de l’inscription des informations de sécurité"
- }
- },
- "TemplateState": {
- "BlockAccessOnUnknowns": {
- "title": "L’activation de cette stratégie empêche tout accès à partir d’un type d’appareil inconnu, envisagez d’utiliser le mode rapport uniquement pour commencer, jusqu’à ce que vous ayez confirmé cela n’aura pas d’impact sur vos utilisateurs."
- },
- "BlockLegacyAuth": {
- "description": "Envisagez d’utiliser le mode rapport uniquement pour commencer avant d’avoir confirmé que cela n’aura pas d’impact sur vos utilisateurs.",
- "title": "L’activation de cette stratégie empêche l’authentification héritée pour tous vos utilisateurs."
- },
- "RequireCompliantOrHybridADAdmins": {
- "Description": {
- "on": "Envisagez d’utiliser le mode rapport uniquement pour commencer avant d’avoir confirmé que cela n’aura pas d’impact sur vos utilisateurs privilégiés.",
- "reportOnly": "Les stratégies en mode rapport uniquement qui requièrent des appareils conformes peuvent inviter les utilisateurs de Mac, iOS et Android à sélectionner un certificat d’appareil lors de l’évaluation de la stratégie, même si la conformité des appareils n’est pas appliquée. Ces invites peuvent se répéter jusqu'à ce que l’appareil est rendu conforme."
- },
- "Title": {
- "on": "L’activation de cette stratégie empêche tout accès aux utilisateurs privilégiés, sauf en cas d’utilisation d’un appareil géré tel que conforme ou jointure hybride Azure AD. Vérifiez que vous avez configuré vos stratégies de conformité ou que vous avez activé la configuration de Azure AD hybrides avant de l’activer.",
- "reportOnly": "Vérifiez que vous avez configuré vos stratégies de conformité ou que vous avez activé la configuration de Azure AD hybrides avant de l’activer. "
- }
- },
- "RequireCompliantOrHybridADAllUsers": {
- "Description": {
- "on": "Cette stratégie affecte tous les utilisateurs à l’exception de l’administrateur actuellement connecté. Envisagez d’utiliser le mode rapport uniquement pour commencer avant d’avoir confirmé que cela n’aura pas d’impact sur vos utilisateurs."
- },
- "Title": {
- "on": "Ne boquez pas votre accès ! Assurez-vous que votre appareil est conforme ou jointure hybride Azure AD ou que vous avez configuré l’authentification multifacteur.",
- "reportOnly": "Les stratégies en mode rapport uniquement qui requièrent des appareils conformes peuvent inviter les utilisateurs de Mac, iOS et Android à sélectionner un certificat d’appareil lors de l’évaluation de la stratégie, même si la conformité des appareils n’est pas appliquée. Ces invites peuvent se répéter jusqu'à ce que l’appareil est rendu conforme."
- }
- },
- "RequireMfa": {
- "description": "Si vous utilisez des comptes d’accès d’urgence ou Azure AD vous connecter pour synchroniser vos objets locaux, vous devrez peut-être exclure ces comptes de cette stratégie après la création."
- },
- "RequireMfaAdmins": {
- "description": "Notez que le compte d’administrateur actuel sera automatiquement exclu, mais tous les autres seront protégés lors de la création de la stratégie. Envisagez d’utiliser le mode rapport uniquement pour commencer.",
- "title": "Ne boquez pas votre accès ! Cette stratégie a un impact sur le Portail Azure."
- },
- "RequireMfaAllUsers": {
- "description": "Envisagez d’utiliser le mode rapport uniquement pour commencer jusqu’à ce que vous ayez planifié et communiqué cette modification à tous vos utilisateurs.",
- "title": "L’activation de cette stratégie appliquera l’authentification multifacteur pour tous vos utilisateurs."
- },
- "RequireSecurityInfo": {
- "description": "Vérifiez votre configuration pour protéger ces comptes en fonction des besoins de votre entreprise.",
- "title": "Les utilisateurs et les rôles suivants sont exclus de cette stratégie, des invités et des utilisateurs externes, des administrateurs généraux, administrateur actuel"
- }
- },
- "basics": "Informations de base",
- "clientApps": "Applications clientes",
- "cloudApps": "Applications cloud",
- "cloudAppsOrActions": "Applications ou actions cloud ",
- "conditions": "Conditions ",
- "createNewPolicy": "Créer une stratégie à partir de modèles (Préversion)",
- "createPolicy": "Créer une stratégie",
- "currentUser": "Utilisateur actuel",
- "customizeBuild": "Personnaliser votre build",
- "customizeTemplate": "Les listes de modèles sont personnalisées en fonction du type de stratégie que vous souhaitez créer",
- "excludedDevicePlatform": "Plateformes d'appareils exclues",
- "excludedDirectoryRoles": "Rôles d’annuaire exclus",
- "excludedLocation": "Rôles d’annuaire exclus",
- "excludedUsers": "Utilisateurs exclus",
- "grantControl": "Accorder le contrôle ",
- "includeFilteredDevice": "Inclure les appareils filtrés dans la stratégie",
- "includedDevicePlatform": "Plates-formes d'appareils inclus",
- "includedDirectoryRoles": "Rôles d’annuaire inclus",
- "includedLocation": "Emplacement inclus",
- "includedUsers": "Utilisateurs inclus",
- "legacyAuthenticationClients": "Clients d’authentification hérités",
- "namePolicy": "Nommer votre stratégie",
- "next": "Suivant",
- "policyName": "Nom de la stratégie",
- "policyState": "État de la stratégie",
- "policySummary": "Résumé de la stratégie",
- "policyTemplate": "Modèle de stratégie",
- "previous": "Précédent",
- "reviewAndCreate": "Vérifier + créer",
- "riskLevels": "Niveaux de risque",
- "selectATemplate": "Sélectionner un modèle",
- "selectTemplate": "Sélectionner un modèle",
- "selectTemplateCategory": "Sélectionner une catégorie de modèle",
- "selectTemplateRecommendation": "Nous vous recommandons les modèles suivants d’après votre réponse",
- "sessionControl": "Contrôle de session ",
- "signInFrequency": "Fréquence de connexion",
- "signInRisk": "Risque de connexion",
- "template": " modèle",
- "templateCategory": "Catégorie de modèles",
- "userRisk": "Risque utilisateur",
- "usersAndGroups": "Utilisateurs et groupes ",
- "viewPolicySummary": "Afficher le résumé de la stratégie "
- },
- "SSM": {
- "MemberSelector": {
- "description": "Utilisateurs et groupes"
- },
- "Notification": {
- "Migration": {
- "error": "Échec de la migration des paramètres d’évaluation continue de l’accès vers des stratégies d’accès conditionnel",
- "inProgress": "Migration des paramètres d’évaluation continue de l’accès",
- "success": "Réussite de la migration des paramètres d’évaluation continue de l’accès vers des stratégies d’accès conditionnel",
- "successDescription": "Veuillez passer aux stratégies d’accès conditionnel pour afficher les paramètres migrés dans la stratégie nouvellement créée nommée « Stratégie d’autorité de certification créée à partir des paramètres d’autorité de certification »."
- },
- "error": "Échec de la mise à jour des paramètres de l'évaluation continue de l'accès",
- "inProgress": "Mise à jour des paramètres de l’évaluation continue de l’accès",
- "success": "Les paramètres d’évaluation continue de l’accès ont été mis à jour"
- },
- "PreviewOptions": {
- "disable": "Désactiver la préversion",
- "enable": "Activer la préversion"
- },
- "StrictLocationEnforcement": {
- "infoContent1": "Des adresses IP différentes peuvent être vues par Azure AD et le fournisseur de ressources à partir du même appareil client en raison de la partition réseau ou d'une non-concordance entre IPv4 et IPv6. L'application stricte de l'emplacement applique la stratégie d'accès conditionnel en fonction des deux adresses IP vues par Azure AD et le fournisseur de ressources.",
- "infoContent2": "Pour garantir une sécurité maximale, il est recommandé d'ajouter toutes les adresses IP visibles par Azure AD et le fournisseur de ressources dans votre stratégie Emplacement nommé, et d'activer le mode « Application stricte de l'emplacement ».",
- "label": "Application stricte de l’emplacement",
- "title": "Modes d’application supplémentaires"
- },
- "bladeTitle": "Évaluation continue de l’accès",
- "description": "Quand l'accès d'un utilisateur est supprimé ou que l'adresse IP d'un client est modifiée, l'évaluation continue de l'accès bloque automatiquement l'accès aux ressources et aux applications en temps quasi réel. ",
- "migrateLabel": "Migrer",
- "migrationError": "La migration a échoué en raison de l’erreur suivante : {0}",
- "migrationInfo": "Le paramètre d’évaluation continue de l’accès a été déplacé sous l’expérience d’accès conditionnel, effectuez une migration avec le bouton Migrer ci-dessus et configurez-le avec une stratégie d’accès conditionnel à l’avenir. Cliquez ici pour en savoir plus.",
- "noLicenseMessage": "Gérer les paramètres d'administration de session intelligente avec Azure AD Premium",
- "optionsPickerTitle": "Activer/désactiver l’évaluation continue de l’accès",
- "upsellInfo": "Vous ne pouvez plus modifier vos paramètres sur cette page et tous les paramètres définis ici doivent être ignorés. Votre paramètre précédent sera respecté. Vous pouvez configurer vos paramètres d’autorité de certification sous Accès conditionnel à l’avenir. Cliquez ici pour en savoir plus."
- },
- "SessionLifetime": {
- "PersistentBrowser": {
- "Error": {
- "notAllApps": "La stratégie de session de navigateur persistante ne fonctionne correctement que lorsque l'option « Toutes les applications cloud » est sélectionnée. Mettez à jour votre sélection d’applications cloud."
- },
- "Option": {
- "always": "Toujours persistant",
- "help": "Une session de navigateur persistante autorise les utilisateurs à rester connectés après fermeture et réouverture de la fenêtre du navigateur.
\n\n- Ce paramètre fonctionne correctement lorsque l'option « Toutes les applications cloud » est sélectionnée
\n- Cela n’affecte pas la durée de vie des jetons ou le paramètre de fréquence de connexion.
\n- Cela remplace la stratégie « Afficher l'option pour rester connecté » dans la personnalisation de l'entreprise.
\n- L'option « Jamais persistant » remplace toute réclamation d'authentification unique persistante en provenance de services d’authentification fédérée.
\n- L'option « Jamais persistant » empêche l’authentification unique sur les appareils mobiles entre différentes applications, et entre les applications et le navigateur mobile de l’utilisateur.
\n",
- "label": "Session de navigateur persistante",
- "never": "Jamais persistant"
- },
- "Warning": {
- "allApps": "La stratégie de session de navigateur persistante ne fonctionne correctement que lorsque l'option « Toutes les applications cloud » est sélectionnée. Modifiez votre sélection d’applications cloud. Cliquez ici pour en savoir plus."
- }
- },
- "SignInFrequency": {
- "Aria": {
- "units": "Heures ou jours",
- "value": "Fréquence"
- },
- "Option": {
- "Day": {
- "plural": "{0} jours",
- "singular": "1 jour"
- },
- "Hour": {
- "plural": "{0} heures",
- "singular": "1 heure"
- },
- "daysOption": "Jours",
- "everytime": "À chaque fois",
- "help": "Durée avant qu’un utilisateur soit invité à se reconnecter lors de la tentative d’accès à une ressource. Le paramètre par défaut est une fenêtre dynamique de 90 jours, c’est-à-dire que les utilisateurs doivent s’authentifier à nouveau à la première tentative d’accès à une ressource après un temps d'inactivité de 90 jours ou plus sur leur ordinateur.",
- "hoursOption": "Heures",
- "label": "Fréquence de connexion",
- "placeholder": "Sélectionner les unités"
- }
- },
- "mainOption": "Modifier la durée de vie de la session",
- "mainOptionHelp": "Configurer la fréquence à laquelle les utilisateurs seront invités et indiquer si les sessions de navigateur seront persistantes. Les applications qui ne prennent pas en charge les protocoles d’authentification modernes ne pourront pas honorer ces stratégies. Dans ce cas, contactez le développeur d’applications."
- },
- "SigninRisk": {
- "LearnMore": {
- "message": "Contrôlez l’accès utilisateur pour répondre à des niveaux de risque de connexion spécifiques."
- }
- },
- "SingleSelectorActive": {
- "failed": "Désolé... Nous n’avons pas pu charger ces données.",
- "reattempt": "Chargement des données. Retentez l' {0} sur {1}."
- },
- "TimeCondition": {
- "Errors": {
- "both": "Plage horaire « Inclure » ou « Exclure » non valide.",
- "daysOfWeek": "{0} Veillez à spécifier au moins un jour de la semaine.",
- "endBeforeStart": "{0} Vérifiez que la date et l'heure de début sont antérieures à la date et à l'heure de fin.",
- "exclude": "Plage horaire « Exclure » non valide.",
- "generic": "{0} Vérifiez que les jours de la semaine et le fuseau horaire sont définis. Si l'option « Toute la journée » n’est pas cochée, vous devez également définir l’heure de début et l’heure de fin.",
- "include": "Plage horaire « Inclure » non valide.",
- "timeMissing": "{0} Veillez à spécifier à la fois une heure de début et une heure de fin.",
- "timeZone": "{0} Spécifiez un fuseau horaire.",
- "timesAndZone": "{0} Veillez à définir l’heure de début, l’heure de fin et le fuseau horaire."
- }
- },
- "UserActions": {
- "Included": {
- "none": "Aucune application cloud ou action sélectionnée",
- "plural": "{0} actions utilisateur incluses",
- "singular": "1 action utilisateur incluse"
- },
- "accessRequirement1": "Niveau 1",
- "accessRequirement2": "Niveau 2",
- "accessRequirement3": "Niveau 3",
- "accessRequirementsLabel": "Accès aux données de l'application sécurisée",
- "appsActionsAuthTitle": "Applications cloud, actions ou contexte d’authentification",
- "appsOrActionsSelectorInfoBallonText": "Applications consultées ou actions de l’utilisateur",
- "appsOrActionsTitle": "Applications ou actions cloud",
- "label": "Actions de l'utilisateur",
- "mainOptionsLabel": "Sélectionner ce à quoi cette stratégie s’applique",
- "registerOrJoinDevices": "Inscrire ou joindre des appareils",
- "registerSecurityInfo": "Enregistrer les informations de sécurité",
- "selectionInfo": "Sélectionner l'action à laquelle cette stratégie s’applique"
- },
- "UserSelectionBlade": {
- "DirectoryRoles": {
- "ariaLabel": "Choisir des rôles d’annuaire"
- },
- "Excluded": {
- "gridAria": "Liste des utilisateurs exclus"
- },
- "Included": {
- "gridAria": "Liste des utilisateurs inclus"
- },
- "Validation": {
- "customRoleIncluded": "« Rôles d'annuaire » : inclut au moins un rôle personnalisé",
- "customRoleSelected": "Au moins un rôle personnalisé est sélectionné",
- "failed": "« {0} » doit être configuré",
- "roles": "Sélectionner au moins un rôle",
- "usersGroups": "Sélectionner au moins un utilisateur ou un groupe"
- },
- "learnMore": "Contrôlez l’accès en fonction des personnes auxquelles la stratégie s’applique, telles que des utilisateurs et des groupes, des identités de charge de travail, des rôles d’annuaire ou des invités externes."
- },
- "ValidationResult": {
- "blockEveryonePolicy": "La configuration de stratégie n'est pas prise en charge. Passez en revue les affectations et les contrôles.",
- "invalidApplicationCondition": "Applications cloud non valides sélectionnées",
- "invalidClientTypesCondition": "Applications clientes non valides sélectionnées",
- "invalidConditions": "Les attributions ne sont pas sélectionnées",
- "invalidControls": "Contrôles non valides sélectionnés",
- "invalidDevicePlatformsCondition": "Plateformes d'appareils non valides sélectionnées",
- "invalidDevicesCondition": "Configuration d’appareil non valide. Probablement une configuration non valide du « {0} ».",
- "invalidGrantControlPolicy": "Contrôle d'octroi non valide",
- "invalidLocationsCondition": "Emplacements non valides sélectionnés",
- "invalidPolicy": "Les attributions ne sont pas sélectionnées",
- "invalidSessionControlPolicy": "Contrôle de session non valide",
- "invalidSignInRisksCondition": "Risque de connexion non valide sélectionné",
- "invalidUserRisksCondition": "Risque utilisateur non valide sélectionné",
- "invalidUsersCondition": "Utilisateurs non valides sélectionnés",
- "mamPolicyShouldOnlyTargetAndroidOrIosPlatforms": "La stratégie MAM ne peut être appliquée qu'aux plateformes clientes Android ou iOS.",
- "notSupportedCombination": "La configuration de stratégie n'est pas prise en charge. En savoir plus sur les stratégies prises en charge.",
- "pending": "Validation de la stratégie",
- "requireComplianceEveryonePolicy": "La configuration de stratégie exige la conformité des appareils pour tous les utilisateurs. Passez en revue les attributions sélectionnées.",
- "success": "Stratégie valide"
- },
- "VpnCert": {
- "Grid": {
- "aria": "Liste des certificats VPN"
- }
- },
- "WarningsInfo": {
- "Controls": {
- "compliantDeviceEnabled": "Ne bloquez pas votre accès ! Assurez-vous que votre appareil est conforme.",
- "domainJoinedDeviceEnabled": "Ne boquez pas votre accès ! Assurez-vous que votre appareil est joint Azure AD hybride.",
- "exchangeDisabled": "Exchange ActiveSync prend uniquement en charge les contrôles « Appareil conforme » et « Application cliente approuvée ». Cliquez ici pour en savoir plus.",
- "exchangeDisabled2": "Exchange ActiveSync prend uniquement en charge les contrôles « Appareil conforme », « Application cliente approuvée » et « Application cliente conforme ». Cliquez ici pour en savoir plus.",
- "notAvailableForSP": "Certaines contrôles ne sont pas disponibles en raison de la sélection de « {0} » dans l’affectation de la stratégie",
- "requireAuthOrMfa": "« {0} » ne peut pas s'utiliser avec « {1} »",
- "requireMfa": "Envisagez de tester la nouvelle préversion publique « {0} »",
- "requirePasswordChangeEnabled": "L'option « Exiger la modification du mot de passe » ne peut être utilisée que lorsque la stratégie est affectée à « Toutes les applications cloud »"
- },
- "Policies": {
- "Linux": {
- "devicePlatformsReportOnlyPolicy": "Les stratégies en mode Rapport uniquement nécessitant des appareils conformes peuvent inviter les utilisateurs sur macOS, iOS, Android et Linux à sélectionner un certificat d’appareil.",
- "excludeDevicePlatforms": "Excluez les plateformes d’appareils macOS, iOS, Android et Linux de cette stratégie.",
- "proceedAnywayDevicePlatforms": "Passez à la configuration sélectionnée. Les utilisateurs sur macOS, iOS, Android et Linux peuvent recevoir des invites lorsque la conformité de l’appareil est vérifiée."
- },
- "blockCurrentUserPolicy": "Ne bloquez pas votre accès ! Nous vous recommandons d'appliquer d'abord une stratégie à un petit ensemble d'utilisateurs pour vérifier qu'elle se comporte comme prévu. Nous vous recommandons également d'exclure au moins un administrateur de cette stratégie. Cela garantit que vous avez toujours accès et pouvez mettre à jour une stratégie si une modification est nécessaire. Passez en revue les utilisateurs et les applications concernés.",
- "devicePlatformsReportOnlyPolicy": "Les stratégies en mode rapport uniquement nécessitant des appareils compatibles peuvent inviter des utilisateurs sur macOS, iOS et Android à sélectionner un certificat d’appareil.",
- "excludeCurrentUserSelection": "Exclure l'utilisateur actuel, {0}, de cette stratégie.",
- "excludeDevicePlatforms": "Excluez les plateformes d’appareils macOS, iOS et Android de cette stratégie.",
- "proceedAnywayDevicePlatforms": "Exécutez la configuration sélectionnée. Les utilisateurs sur macOS, iOS et Android peuvent recevoir des invites lors de la vérification de la conformité de l’appareil.",
- "proceedAnywaySelection": "Je comprends que mon compte sera affecté par cette stratégie. Continuer malgré tout."
- },
- "ServicePrincipals": {
- "blockExchange": "La sélection d'Office 365 Exchange Online affectera également les applications comme OneDrive et Teams.",
- "blockPortal": "Ne bloquez pas votre accès ! Cette stratégie a un impact sur le portail Azure. Avant de continuer, assurez-vous que vous ou quelqu'un d'autre pourra revenir au portail.",
- "blockPortalWithSession": "Ne bloquez pas votre accès ! Cette stratégie a un impact sur le portail Azure. Avant de continuer, assurez-vous que vous ou quelqu'un d'autre sera en mesure de revenir au portail.
Ignorez cet avertissement si vous configurez une stratégie de session de navigateur persistante qui ne fonctionne correctement que si l'option « Toutes les applications cloud » est sélectionnée.",
- "blockSharePoint": "La sélection de SharePoint Online affectera également les applications comme Microsoft Teams, Planner, Delve, MyAnalytics et Newsfeed.",
- "blockSkype": "La sélection de Skype Entreprise Online affecte également Microsoft Teams.",
- "includeOrExclude": "Vous pouvez configurer le filtre d’application pour « {0} » ou « {1} », mais pas les deux.",
- "selectAppsNAForSP": "Impossible de sélectionner des applications cloud individuelles en raison de la sélection « {0} » dans l’attribution de stratégie",
- "teamsBlocked": "Microsoft Teams est également affecté quand des applications telles que SharePoint Online et Exchange Online sont incluses dans la stratégie."
- },
- "Users": {
- "blockAllUsers": "Ne bloquez pas votre accès ! Cette stratégie aura une incidence sur tous vos utilisateurs. Nous vous recommandons d'appliquer d'abord une stratégie à un petit ensemble d'utilisateurs pour vérifier qu'elle se comporte comme prévu."
- }
- },
- "WhatIf": {
- "Device": {
- "AttributesGrid": {
- "aria": "Liste des attributs sur l’appareil utilisé lors de la connexion.",
- "infoBalloon": "Liste des attributs sur l’appareil utilisé lors de la connexion."
- }
- }
- },
- "advancedTabText": "Avancé",
- "allCloudAppsErrorBox": "L'option « Toutes les applications cloud » doit être sélectionnée quand l’autorisation « Exiger une modification du mot de passe » est sélectionnée",
- "allDayCheckboxLabel": "Toute la journée",
- "allDevicePlatforms": "N'importe quel périphérique",
- "allGuestUserInfoContent": "Inclut les invités Azure AD B2B, mais pas les invités SharePoint B2B",
- "allGuestUserLabel": "Tous les utilisateurs invités et externes",
- "allRiskLevelsOption": "Tous niveaux de risque",
- "allTrustedLocationLabel": "Tous les emplacements approuvés",
- "allUserGroupSetSelectorLabel": "Tous les utilisateurs et groupes sélectionnés",
- "allUsersString": "Tous les utilisateurs",
- "and": "{0} ET {1}",
- "andWithGrouping": "({0}) ET {1} ",
- "androidDisplayName": "Android",
- "anyCloudAppSelection": "N’importe quelle application cloud",
- "appContextOptionInfoContent": "Balise d'authentification demandée",
- "appContextOptionLabel": "Balise d'authentification demandée (préversion)",
- "appContextUriPlaceholder": "Exemple : uri:contoso.com:level3",
- "appEnforceInfoBubble": "Les restrictions appliquées par l'application peuvent nécessiter des configurations supplémentaires de la part de l'administrateur au sein des applications cloud. Celles-ci ne seront valides que pour les nouvelles sessions.",
- "appNotSetSeletorLabel": "0 application cloud sélectionnée",
- "applyConditionClientAppInfoBalloonContent": "Configurer les applications clientes pour appliquer la stratégie à des applications clientes spécifiques",
- "applyConditionDevicePlatformInfoBalloonContent": "Configurer les plateformes d'appareils pour appliquer la stratégie à des plateformes spécifiques",
- "applyConditionDeviceStateInfoBalloonContent": "Configurer l'état des appareils pour appliquer la stratégie à des états d'appareils spécifiques",
- "applyConditionLocationInfoBalloonContent": "Configurer les emplacements pour appliquer la stratégie aux emplacements approuvés/non approuvés",
- "applyConditionSigninRiskInfoBalloonContent": "Configurer le risque de connexion pour appliquer la stratégie aux niveaux de risque sélectionnés",
- "applyConditionUserRiskInfoBalloonContent": "Configurer le risque utilisateur pour appliquer la stratégie aux niveaux de risque sélectionnés",
- "applyConditonLabel": "Configurer",
- "ariaLabelPolicyDisabled": "La stratégie est désactivée",
- "ariaLabelPolicyEnabled": "La stratégie est activée",
- "ariaLabelPolicyReportOnly": "La stratégie est en mode Rapport uniquement",
- "blockAccess": "Bloquer l'accès",
- "builtInDirectoryRoleLabel": "Rôles d’annuaire intégrés",
- "casCustomControlInfo": "Les stratégies personnalisées doivent être configurées dans le portail Cloud App Security. Ce contrôle fonctionne instantanément pour les applications disponibles et peut être intégré automatiquement pour n'importe quelle application. Cliquez ici pour en savoir plus sur les deux scénarios.",
- "casInfoBubble": "Ce contrôle fonctionne pour différentes applications cloud.",
- "casPreconfiguredControlInfo": "Ce contrôle fonctionne instantanément pour les applications disponibles et peut être intégré automatiquement pour n'importe quelle application. Cliquez ici pour en savoir plus sur les deux scénarios.",
- "cert64DownloadCol": "Télécharger un certificat en base64",
- "cert64Name": "VpnBase64Cert",
- "certDownloadCol": "Télécharger le certificat",
- "certDurationCol": "Expiration",
- "certDurationStartCol": "Valide depuis",
- "certName": "VpnCert",
- "chooseApplicationsBladeSubtitle": "",
- "chooseApplicationsBladeTitle": "Choisir les applications",
- "chooseApplicationsCartSubitle": "",
- "chooseApplicationsCartTitle": "Applications choisies",
- "chooseApplicationsEmpty": "Aucune application",
- "chooseApplicationsNone": "Aucun",
- "chooseApplicationsNoneFound": "« {0} » est introuvable. Essayez un autre nom ou identifiant.",
- "chooseApplicationsPlural": "{0} et {1} autres ",
- "chooseApplicationsReAuthEverytimeInfo": "Vous recherchez votre application ? Certaines applications ne peuvent pas être utilisées avec le contrôle de session « Exiger une réauthentification – à chaque fois »",
- "chooseApplicationsRemove": "Supprimer",
- "chooseApplicationsReturnedPlural": "{0} applications trouvées",
- "chooseApplicationsReturnedSingular": "1 application trouvée",
- "chooseApplicationsSearchBalloon": "Recherchez une application en entrant son nom ou identifiant.",
- "chooseApplicationsSearchHint": "Rechercher des applications...",
- "chooseApplicationsSearchLabel": "Applications",
- "chooseApplicationsSearching": "Recherche en cours...",
- "chooseApplicationsSelect": "Sélectionner",
- "chooseApplicationsSelected": "Sélectionné",
- "chooseApplicationsSingular": "{0} et 1 autre",
- "chooseApplicationsTooMany": "Impossible d'afficher tous les résultats. Filtrez à l’aide de la zone de recherche.",
- "chooseLocationCorpnetItem": "Réseau d'entreprise",
- "chooseLocationSelectedLocationsLabel": "Emplacements sélectionnés",
- "chooseLocationTrustedIpsItem": "Adresses IP approuvées MFA",
- "chooseLocationsBladeSubtitle": "",
- "chooseLocationsBladeTitle": "Choisir les emplacements",
- "chooseLocationsCartSubitle": "",
- "chooseLocationsCartTitle": "Emplacements choisis",
- "chooseLocationsEmpty": "Aucun emplacement",
- "chooseLocationsExcludedSelectorTitle": "Sélectionner",
- "chooseLocationsIncludedSelectorTitle": "Sélectionner",
- "chooseLocationsNone": "Aucun",
- "chooseLocationsNoneFound": "« {0} » est introuvable. Essayez un autre nom ou identifiant.",
- "chooseLocationsPlural": "{0} et {1} autres ",
- "chooseLocationsRemove": "Supprimer",
- "chooseLocationsReturnedPlural": "{0} emplacements trouvés",
- "chooseLocationsReturnedSingular": "1 emplacement trouvé",
- "chooseLocationsSearchBalloon": "Recherchez un emplacement en entrant son nom.",
- "chooseLocationsSearchHint": "Rechercher des emplacements...",
- "chooseLocationsSearchLabel": "Emplacements",
- "chooseLocationsSearching": "Recherche en cours...",
- "chooseLocationsSelect": "Sélectionner",
- "chooseLocationsSelected": "Sélectionné",
- "chooseLocationsSelectionBladeExcludedSelectorTitle": "Sélectionner",
- "chooseLocationsSelectionBladeIncludedSelectorTitle": "Sélectionner",
- "chooseLocationsSingular": "{0} et 1 autre",
- "chooseLocationsTooMany": "Impossible d'afficher tous les résultats. Filtrez à l’aide de la zone de recherche.",
- "claimProviderAddCommandText": "Nouveau contrôle personnalisé",
- "claimProviderAddNewBladeTitle": "Nouveau contrôle personnalisé",
- "claimProviderDeleteCommand": "Supprimer",
- "claimProviderDeleteDescription": "Êtes-vous sûr de vouloir supprimer « {0} » ? Cette action ne peut pas être annulée.",
- "claimProviderDeleteTitle": "Êtes-vous sûr ?",
- "claimProviderEditInfoText": "Entrez le JSON pour les contrôles personnalisés donnés par vos fournisseurs de revendication.",
- "claimProviderNotificationCreateDescription": "Création du contrôle personnalisé nommé « {0} »",
- "claimProviderNotificationCreateFailedDescription": "La création du contrôle personnalisé « {0} » a échoué. Réessayez ultérieurement.",
- "claimProviderNotificationCreateFailedTitle": "Impossible de créer le contrôle personnalisé",
- "claimProviderNotificationCreateSuccessDescription": "Le contrôle personnalisé nommé « {0} » a été créé",
- "claimProviderNotificationCreateSuccessTitle": "« {0} » créé",
- "claimProviderNotificationCreateTitle": "Création de « {0} »",
- "claimProviderNotificationDeleteDescription": "Suppression du contrôle personnalisé nommé « {0} »",
- "claimProviderNotificationDeleteFailedDescription": "La suppression du contrôle personnalisé « {0} » a échoué. Réessayez ultérieurement.",
- "claimProviderNotificationDeleteFailedTitle": "Impossible de supprimer le contrôle personnalisé",
- "claimProviderNotificationDeleteSuccessDescription": "Le contrôle personnalisé nommé « {0} » a été supprimé",
- "claimProviderNotificationDeleteSuccessTitle": "« {0} » supprimé",
- "claimProviderNotificationDeleteTitle": "Suppression de « {0} »",
- "claimProviderNotificationUpdateDescription": "Mise à jour du contrôle personnalisé nommé « {0} »",
- "claimProviderNotificationUpdateFailedDescription": "La mise à jour du contrôle personnalisé « {0} » a échoué. Réessayez ultérieurement.",
- "claimProviderNotificationUpdateFailedTitle": "Impossible de mettre à jour le contrôle personnalisé",
- "claimProviderNotificationUpdateSuccessDescription": "Le contrôle personnalisé nommé « {0} » a été mis à jour",
- "claimProviderNotificationUpdateSuccessTitle": "« {0} » mis à jour",
- "claimProviderNotificationUpdateTitle": "Mise à jour de « {0} »",
- "claimProviderValidationAppIdInvalid": "La valeur « AppId » n'est pas valide. Vérifiez et réessayez.",
- "claimProviderValidationClientIdMissing": "Il manque une valeur « ClientId » dans les données. Vérifiez et réessayez.",
- "claimProviderValidationControlClaimsRequestedMissing": "Il manque une valeur « ClaimsRequested » dans le contrôle. Vérifiez et réessayez.",
- "claimProviderValidationControlClaimsRequestedTypeMissing": "Il manque une valeur « Type » dans l'élément « ClaimsRequested ». Vérifiez et réessayez.",
- "claimProviderValidationControlIdAlreadyExists": "La valeur « Control » « ID » existe déjà. Vérifiez et réessayez.",
- "claimProviderValidationControlIdMissing": "Il manque une valeur « Id » dans le contrôle. Vérifiez et réessayez.",
- "claimProviderValidationControlIdReferencedInExistingPolicy": "La valeur « Control » « ID » ne peut pas être supprimée, car elle est référencée dans une stratégie existante. Supprimez-la de la stratégie.",
- "claimProviderValidationControlIdTooManyControls": "La propriété « control » contient trop de contrôles. Vérifiez et réessayez.",
- "claimProviderValidationControlIdValueReserved": "La valeur « Control » « ID » est un mot clé réservé. Utilisez un autre ID.",
- "claimProviderValidationControlNameAlreadyExists": "La valeur « Control » « Name » existe déjà. Vérifiez et réessayez.",
- "claimProviderValidationControlNameMissing": "Il manque une valeur « Name » dans le contrôle. Vérifiez et réessayez.",
- "claimProviderValidationControlsMissing": "Il manque une valeur « Controls » dans les données. Vérifiez et réessayez.",
- "claimProviderValidationDiscoveryUrlMissing": "Il manque une valeur « DiscoveryUrl » dans les données. Vérifiez et réessayez.",
- "claimProviderValidationInvalid": "Les données fournies ne sont pas valides. Vérifiez et réessayez.",
- "claimProviderValidationInvalidJsonDefinition": "Impossible d'enregistrer le contrôle personnalisé. Vérifiez le texte JSON et réessayez.",
- "claimProviderValidationNameAlreadyExists": "La valeur « Name » existe déjà. Vérifiez et réessayez.",
- "claimProviderValidationNameMissing": "Il manque une valeur « Name » dans les données. Vérifiez et réessayez.",
- "claimProviderValidationUnknown": "Une erreur inconnue s'est produite lors de la validation des données fournies. Vérifiez et réessayez.",
- "claimProvidersNone": "Aucun contrôle personnalisé",
- "claimProvidersSearchPlaceholder": "Recherchez des contrôles.",
- "classicPoilcyFilterTitle": "Afficher",
- "classicPolicyAllPlatforms": "Toutes les plateformes",
- "classicPolicyClientAppBrowserAndNative": "Navigateur, applications mobiles et clients de bureau",
- "classicPolicyCloudAppTitle": "Application cloud",
- "classicPolicyControlAllow": "Autoriser",
- "classicPolicyControlBlock": "Bloquer",
- "classicPolicyControlBlockWhenNotAtWork": "Bloquer l'accès quand l'utilisateur n'est pas au travail",
- "classicPolicyControlRequireCompliantDevice": "Exiger un appareil conforme",
- "classicPolicyControlRequireDomainJoinedDevice": "Exiger un appareil joint au domaine",
- "classicPolicyControlRequireMfa": "Exiger une authentification multifacteur",
- "classicPolicyControlRequireMfaWhenNotAtWork": "Exiger l'authentification multifacteur à l'extérieur de l'entreprise",
- "classicPolicyDeleteCommand": "Supprimer",
- "classicPolicyDeleteFailTitle": "Échec de la suppression de la stratégie classique",
- "classicPolicyDeleteInProgressTitle": "Suppression de la stratégie classique",
- "classicPolicyDeleteSuccessTitle": "Stratégie classique supprimée",
- "classicPolicyDetailBladeTitle": "Détails",
- "classicPolicyDisableCommand": "Désactiver",
- "classicPolicyDisableConfirmation": "Êtes-vous sûr de vouloir désactiver « {0} » ? Cette action ne peut pas être annulée.",
- "classicPolicyDisableFailDescription": "Échec de la désactivation de « {0} »",
- "classicPolicyDisableFailTitle": "Échec de la désactivation de la stratégie classique",
- "classicPolicyDisableInProgressDescription": "Désactivation de « {0} »",
- "classicPolicyDisableInProgressTitle": "Désactivation de la stratégie classique",
- "classicPolicyDisableSuccessDescription": "« {0} » désactivée",
- "classicPolicyDisableSuccessTitle": "Stratégie classique désactivée",
- "classicPolicyEasSupportedPlatforms": "Plateformes prises en charge Exchange ActiveSync",
- "classicPolicyEasUnsupportedPlatforms": "Plateformes non prises en charge Exchange ActiveSync",
- "classicPolicyExcludedPlatformsTitle": "Plateformes d'appareils exclues",
- "classicPolicyFilterAll": "Toutes les stratégies",
- "classicPolicyFilterDisabled": "Stratégies désactivées",
- "classicPolicyFilterEnabled": "Stratégies activées",
- "classicPolicyIncludeExcludeMembersDescription": "En excluant des groupes, vous pouvez effectuer une migration progressive de stratégies.",
- "classicPolicyIncludeExcludeMembersTitle": "Inclure/exclure des groupes",
- "classicPolicyIncludedPlatformsTitle": "Plates-formes d'appareils inclus",
- "classicPolicyManualMigrationMessage": "Cette stratégie doit être migrée manuellement.",
- "classicPolicyMigrateCommand": "Migrer",
- "classicPolicyMigrateConfirmation": "Êtes-vous sûr de vouloir migrer « {0} » ? Cette stratégie ne peut être migrée qu’une seule fois.",
- "classicPolicyMigrateFailDescription": "Échec de la migration de « {0} »",
- "classicPolicyMigrateFailTitle": "Échec de la migration de la stratégie classique",
- "classicPolicyMigrateInProgressDescription": "Migration de « {0} » en cours...",
- "classicPolicyMigrateInProgressTitle": "Migration de la stratégie classique",
- "classicPolicyMigrateRecommendText": "Recommandation : migrez vers les nouvelles stratégies du portail Azure.",
- "classicPolicyMigrateSuccessTitle": "Stratégie classique migrée",
- "classicPolicyMigratedSuccessDescription": "Cette stratégie classique peut désormais être gérée sous Stratégies.",
- "classicPolicyMigratedSuccessDescriptionMultiple": "Cette stratégie classique est migrée sous la forme de {0} nouvelles stratégies. Les nouvelles stratégies peuvent être gérés sous Stratégies.",
- "classicPolicyNoEditPermissionMsg": "Vous n'êtes pas autorisé à modifier cette stratégie. Seuls les administrateurs généraux et les administrateurs de la sécurité peuvent modifier la stratégie. Pour plus d'informations, cliquez ici.",
- "classicPolicySaveFailDescription": "Échec de l'enregistrement de « {0} »",
- "classicPolicySaveFailTitle": "Échec de l’enregistrement de la stratégie classique",
- "classicPolicySaveInProgressDescription": "Enregistrement de « {0} »",
- "classicPolicySaveInProgressTitle": "Enregistrement de la stratégie classique",
- "classicPolicySaveSuccessDescription": "« {0} » enregistrée",
- "classicPolicySaveSuccessTitle": "Stratégie classique enregistrée",
- "clientAppBladeLegacyInfoBanner": "L'authentification héritée n'est pas prise en charge actuellement.",
- "clientAppBladeLegacyUpsellBanner": "Bloquer les applications clientes non prises en charge (préversion)",
- "clientAppBladeTitle": "Applications clientes",
- "clientAppDescription": "Sélectionner les applications clientes auxquelles cette stratégie s'applique",
- "clientAppExchangeActiveSync": "Exchange ActiveSync",
- "clientAppExchangeDisabledInfo": "Exchange ActiveSync est disponible lorsque Exchange Online est la seule application cloud sélectionnée. Cliquez ici pour en savoir plus.",
- "clientAppExchangeWarning": "Exchange ActiveSync ne prend pas actuellement en charge toutes les autres conditions.",
- "clientAppLearnMore": "Contrôlez l’accès utilisateur à des applications clientes spécifiques cibles qui n’utilisent pas l’authentification moderne.",
- "clientAppLegacyHeader": "Clients d’authentification hérités",
- "clientAppMobileDesktop": "Applications mobiles et clients de bureau",
- "clientAppModernHeader": "Clients d'authentification modernes",
- "clientAppOnlySupportedPlatforms": "Appliquer la stratégie uniquement aux plateformes prises en charge",
- "clientAppSelectSpecificClientApps": "Sélectionner des applications clientes",
- "clientAppV2BladeTitle": "Applications clientes (préversion)",
- "clientAppWebBrowser": "Navigateur",
- "clientAppsSelectedLabel": "{0} inclus",
- "clientTypeBrowser": "Navigateur",
- "clientTypeEas": "Clients Exchange ActiveSync",
- "clientTypeEasInfo": "Clients Exchange ActiveSync qui utilisent uniquement l’authentification héritée.",
- "clientTypeModernAuth": "Clients d'authentification moderne",
- "clientTypeOtherClients": "Autres clients",
- "clientTypeOtherClientsInfo": "Cela inclut les anciens clients Office et autres protocoles de messagerie (POP, IMAP, SMTP, etc.). [En savoir plus][1]\n[1] : https://aka.ms/caclientapps\n ",
- "cloudAppCountDiffBannerText": "{0} applications cloud configurées dans cette stratégie ont été supprimées de l'annuaire, mais cela n'affecte pas les autres applications dans la stratégie. La prochaine fois que vous mettrez à jour la section Application de la stratégie, les applications supprimées seront supprimées automatiquement de celle-ci.",
- "cloudAppsSelectionBladeAllMicrosoftApps": "Toutes les applications Microsoft",
- "cloudAppsSelectionExcludeAllMicrosoftClients": "Autoriser les applications mobiles, de bureau et cloud Microsoft (préversion)",
- "cloudappsSelectionBladeAllCloudapps": "Toutes les applications cloud",
- "cloudappsSelectionBladeExcludeDescription": "Sélectionner les applications cloud à exclure de la stratégie",
- "cloudappsSelectionBladeExcludedSelectorTitle": "Sélectionner les applications cloud exclues",
- "cloudappsSelectionBladeIncludeDescription": "Sélectionner les applications cloud auxquelles cette stratégie s'applique",
- "cloudappsSelectionBladeIncludedSelectorTitle": "Sélectionner",
- "cloudappsSelectionBladeSelectedCloudapps": "Sélectionner les applications",
- "cloudappsSelectorInfoBallonText": "Services auxquels l'utilisateur accède pour son travail. Par exemple « Salesforce »",
- "cloudappsSelectorUserPlural": "{0} applications",
- "cloudappsSelectorUserSingular": "1 application",
- "conditionLabelMulti": "{0} conditions sélectionnées",
- "conditionLabelOne": "1 condition sélectionnée",
- "conditionalAccessBladeTitle": "Accès conditionnel",
- "conditionsNotSelectedLabel": "Non configuré",
- "conditionsReqPwSet": "Certaines options ne sont pas disponibles en raison de l’autorisation « Exiger une modification du mot de passe » en cours de sélection",
- "configureCasText": "Configurer Cloud App Security",
- "configureCustomControlsText": "Configurer une stratégie personnalisée",
- "controlLabelMulti": "{0} contrôles sélectionnés",
- "controlLabelOne": "1 contrôle sélectionné",
- "controlValidatorText": "Sélectionnez au moins un contrôle.",
- "controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
- "controlsDeviceComplianceInfoBubble": "L'appareil doit être compatible avec Intune. Si ce n'est pas le cas, l'utilisateur est invité à le rendre conforme.",
- "controlsDomainJoinedInfoBubble": "Les appareils doivent être joints Azure AD hybride.",
- "controlsMamInfoBubble": "L'appareil doit utiliser ces applications clientes approuvées.",
- "controlsMfaInfoBubble": "L'utilisateur doit répondre à des exigences de sécurité supplémentaires, telles qu'un appel téléphonique ou un SMS",
- "controlsOrAndInfoBubble": "ControlsOrAndInfoBubble",
- "controlsRequireCompliantAppInfoBubble": "L’appareil doit utiliser des applications protégées par une stratégie.",
- "controlsRequirePasswordResetInfoBubble": "Exigez la modification du mot de passe pour réduire le risque utilisateur. Cette option nécessite également l’authentification multifacteur. Impossible d’utiliser d’autres commandes.",
- "countriesRadiobuttonInfoBalloonContent": "Le pays ou la région d'où provient la connexion est déterminé par l'adresse IP de l'utilisateur.",
- "createNewVpnCert": "Nouveau certificat",
- "createdTimeLabel": "Heure de création",
- "customRoleLabel": "Rôles personnalisés (non pris en charge)",
- "dateRangeTypeLabel": "Plage de dates",
- "daysOfWeekPlaceholderText": "Filtrer les jours de la semaine",
- "daysOfWeekTypeLabel": "Jours de la semaine",
- "deletePolicyNoLicenseText": "Vous pouvez supprimer cette stratégie maintenant. Une fois supprimée, vous ne pourrez pas la recréer avant d'avoir les licences requises.",
- "descriptionContentForControlsAndOr": "Pour plusieurs contrôles",
- "devicePlatform": "Plateforme de l'appareil",
- "devicePlatformConditionHelpDescription": "Appliquez la stratégie aux plateformes d’appareils sélectionnées.\n[En savoir plus][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2044750",
- "devicePlatformInclude": "{0} inclus",
- "devicePlatformIncludeExclude": "{0} et {1} exclus",
- "devicePlatformNoSelectionError": "Les plateformes d’appareils sélectionnées nécessitent la sélection d’un sous-élément.",
- "devicePlatformsNone": "Aucun",
- "deviceSelectionBladeExcludeDescription": "Sélectionner les plateformes à exclure de la stratégie",
- "deviceSelectionBladeIncludeDescription": "Sélectionner les plateformes d'appareil à inclure dans cette stratégie",
- "deviceStateAll": "Tous les états d'appareils",
- "deviceStateCompliant": "Appareil marqué comme conforme",
- "deviceStateCompliantInfoContent": "Les appareils compatibles avec Intune sont exclus de l'évaluation de cette stratégie. Ainsi, par exemple, si la stratégie bloque l'accès, elle bloque tous les appareils à l'exception des appareils compatibles avec Intune.",
- "deviceStateConditionConfigureInfoContent": "Configurer la stratégie en fonction de l'état de l'appareil",
- "deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Hybrid Azure AD joined' or 'marked as compliant'.\n '{0}' has been deprecated. Use '{1}' instead.",
- "deviceStateConditionSelectorLabel": "État de l'appareil (préversion)",
- "deviceStateDomainJoined": "Appareil joint Azure AD hybride",
- "deviceStateDomainJoinedInfoContent": "Les appareils joints Azure AD hybride sont exclus de l'évaluation de cette stratégie. Ainsi, par exemple, si la stratégie bloque l'accès à cette dernière, elle bloque tous les appareils, à l'exception des appareils joints Azure AD hybride.",
- "deviceStateDomainJoinedInfoLinkText": "En savoir plus.",
- "deviceStateExcludeDescription": "Sélectionnez la condition d'état d'appareil utilisée pour exclure des appareils de la stratégie.",
- "deviceStateIncludeAndExcludeOneLabel": "{0} et exclusion de {1}",
- "deviceStateIncludeAndExcludeTwoLabel": "{0} et exclusion de {1}, {2}",
- "directoryRoleInfoContent": "Attribuez une stratégie à des rôles d’annuaire intégrés.",
- "directoryRolesLabel": "Rôles d'annuaire",
- "discardbutton": "Ignorer",
- "downloadDefaultFileName": "Plages d'adresses IP",
- "downloadExampleFileName": "Exemple",
- "downloadExampleHeader": "Il s'agit d'un exemple de fichier avec des démonstrations relatives aux types de données qui peuvent être acceptés. Les lignes commençant par # sont ignorées.",
- "endDatePickerLabel": "Terminaisons",
- "endTimePickerLabel": "Heure de fin",
- "enterCountryText": "L'adresse IP et le pays sont évalués dans une paire. Sélectionnez le pays.",
- "enterIpText": "Le pays et l'adresse IP sont évalués dans une paire. Entrez l'adresse IP.",
- "enterUserText": "Aucun utilisateur n'est sélectionné. Sélectionnez-en un.",
- "evaluationResult": "Résultat de l'évaluation",
- "exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
- "exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync avec plateformes prises en charge uniquement",
- "excludeAllTrustedLocationSelectorText": "tous les emplacements approuvés",
- "featureRequiresP2": "Cette fonctionnalité nécessite une licence Azure AD Premium 2.",
- "friday": "Vendredi",
- "grantControls": "Contrôles d'octroi",
- "gridNetworkTrusted": "Approuvé",
- "gridPolicyCreatedDateTime": "Date de création",
- "gridPolicyEnabled": "Activé",
- "gridPolicyModifiedDateTime": "Date de modification",
- "gridPolicyName": "Nom de la stratégie",
- "gridPolicyState": "État",
- "groupSelectionBladeExcludeDescription": "Sélectionner les groupes à exclure de la stratégie",
- "groupSelectionBladeExcludedSelectorTitle": "Sélectionner les groupes exclus",
- "groupSelectionBladeSelect": "Sélectionner des groupes",
- "groupSelectorInfoBallonText": "Groupes du répertoire auquel la stratégie s'applique. Par exemple « groupe pilote »",
- "groupsSelectionBladeTitle": "Groupes",
- "helpCommonScenariosText": "Vous êtes intéressé par les scénarios courants ?",
- "helpCondition1": "Quand un utilisateur est en dehors du réseau de société",
- "helpCondition2": "Quand des utilisateurs du groupe 'Responsables' se connectent",
- "helpConditionsTitle": "Conditions",
- "helpControl1": "Ils doivent se connecter avec l'authentification multifacteur",
- "helpControl2": "Ils doivent être sur un appareil Intune ou joint au domaine",
- "helpControlsTitle": "Contrôle ",
- "helpIntroText": "L’accès conditionnel vous donne la possibilité d’appliquer des exigences d’accès quand des conditions spécifiques se produisent. Examinons quelques exemples",
- "helpIntroTitle": "Qu'est-ce que l'accès conditionnel ?",
- "helpLearnMoreText": "Vous voulez en savoir plus sur l'accès conditionnel ?",
- "helpStartStep1": "Créer votre première stratégie en cliquant sur « + Nouvelle stratégie »",
- "helpStartStep2": "Spécifier les conditions et contrôles de la stratégie",
- "helpStartStep3": "Quand vous avez terminé, n'oubliez pas d'activer la stratégie et de la créer",
- "helpStartTitle": "Démarrer",
- "highRisk": "Haute",
- "includeAndExcludeAppsTextFormat": "Inclure : {0}. Exclure : {1}.",
- "includeAppsTextFormat": "Inclure : {0}.",
- "includeUnknownAreasCheckboxInfoBalloonContent": "Les zones inconnues sont des adresses IP qui ne peuvent pas être mappées à un pays ou une région.",
- "includeUnknownAreasCheckboxLabel": "Inclure les zones inconnues",
- "infoCommandLabel": "Informations",
- "invalidCertDuration": "Durée de certificat non valide",
- "invalidIpAddress": "La valeur doit être une adresse IP valide",
- "invalidUriErrorMsg": "Entrez un URI valide. Par exemple uri:contoso.com:acr",
- "iosDisplayName": "iOS",
- "linuxDisplayName": "Linux",
- "linuxDisplayNamePreview": "Linux (préversion)",
- "loadAll": "Charger tout",
- "loading": "Chargement...",
- "locationConfigureNamedLocationsText": "Configurer tous les emplacements approuvés",
- "locationConfigureNamedLocationsUri": "{0}/usermanagement/mfasettings.aspx?tenantid={1}&culture={2}",
- "locationNameTooLongError": "Le nom de l'emplacement est trop long. Il doit comprendre 256 caractères maximum",
- "locationSelectionBladeExcludeDescription": "Sélectionner les emplacements à exclure de la stratégie",
- "locationSelectionBladeIncludeDescription": "Sélectionnez les emplacements à inclure dans cette stratégie",
- "locationsAllLocationsLabel": "Tous les emplacements",
- "locationsAllNamedLocationsLabel": "Toutes les adresses IP approuvées",
- "locationsAllPrivateLinksLabel": "Tous les liens privés dans mon locataire",
- "locationsIncludeExcludeLabel": "{0} et exclure toutes les adresses IP approuvées",
- "locationsSelectedPrivateLinksLabel": "Liaisons privées sélectionnées",
- "lowRisk": "Bas",
- "macOsDisplayName": "Mac OS",
- "managePoliciesLicenseText": "Pour gérer les stratégies d'accès conditionnel, votre organisation doit avoir Azure AD Premium P1 ou P2.",
- "markAsTrustedCheckboxInfoBalloonContent": "La connexion à partir d'un emplacement approuvé réduit le risque de connexion d'un utilisateur. Marquez uniquement cet emplacement comme approuvé si vous savez que les plages d'adresses IP entrées sont établies et crédibles dans votre organisation.",
- "markAsTrustedCheckboxLabel": "Marquer comme emplacement approuvé",
- "mediumRisk": "Moyen",
- "memberSelectionCommandRemove": "Supprimer",
- "menuItemClaimProviderControls": "Contrôles personnalisés (préversion)",
- "menuItemClassicPolicies": "Stratégies classiques",
- "menuItemInsightsAndReporting": "Insights et rapports",
- "menuItemManage": "Gérer",
- "menuItemNamedLocationsPreview": "Emplacements nommés (préversion)",
- "menuItemNamedNetworks": "Emplacements nommés",
- "menuItemPolicies": "Stratégies",
- "menuItemTermsOfUse": "Conditions d'utilisation",
- "modifiedTimeLabel": "Heure de modification",
- "monday": "Lundi",
- "nameLabel": "Nom",
- "namedLocationCountryInfoBanner": "Seules les adresses IPv4 sont mappées à des pays/régions. Les adresses IPv6 sont incluses dans des pays/régions inconnu(e)s.",
- "namedLocationTypeCountry": "Pays ou régions",
- "namedLocationTypeLabel": "Définir l'emplacement à l'aide de :",
- "namedLocationUpsellBanner": "Cette vue est déconseillée. Accédez à la nouvelle vue améliorée vue « Emplacements nommés ».",
- "namedLocationsHelpDescription": "Les emplacements nommés sont utilisés par les rapports de sécurité Azure AD afin de réduire les faux positifs et par les stratégies d'accès conditionnel Azure AD.\n[En savoir plus][1]\n[1] : https://aka.ms/namedlocationupdate",
- "namedNetworkAddIpRanges": "Ajouter une nouvelle plage IP (ex : 40.77.182.32/27)",
- "namedNetworkCountryNeeded": "Vous devez sélectionner au moins un pays",
- "namedNetworkDeleteCommand": "Supprimer",
- "namedNetworkDeleteDescription": "Êtes-vous sûr de vouloir supprimer « {0} » ? Cette action ne peut pas être annulée.",
- "namedNetworkDeleteTitle": "Êtes-vous sûr ?",
- "namedNetworkDownloadIpRange": "Télécharger",
- "namedNetworkInvalidRange": "La valeur doit être une plage d'adresses IP valide.",
- "namedNetworkIpRangeNeeded": "Vous devez avoir au moins une plage d'adresses IP valide.",
- "namedNetworkIpRangesDescriptionContent": "Configurer les plages d'adresses IP de votre organisation",
- "namedNetworkIpRangesTab": "Plages d'adresses IP",
- "namedNetworkListAdd": "Nouvel emplacement",
- "namedNetworkListConfigureTrustedIps": "Configurer des adresses IP approuvées MFA",
- "namedNetworkNameDescription": "Exemple : « Bureau de Paris »",
- "namedNetworkNameInvalid": "Le nom fourni n'est pas valide.",
- "namedNetworkNameRequired": "Vous devez fournir un nom pour cet emplacement.",
- "namedNetworkNoIpRanges": "Aucune plage d'adresses IP",
- "namedNetworkNotificationCreateDescription": "Création de l'emplacement nommé « {0} »",
- "namedNetworkNotificationCreateFailedDescription": "La création de l'emplacement « {0} » a échoué. Réessayez plus tard.",
- "namedNetworkNotificationCreateFailedTitle": "Impossible de créer l'emplacement",
- "namedNetworkNotificationCreateSuccessDescription": "Emplacement nommé « {0} » créé",
- "namedNetworkNotificationCreateSuccessTitle": "« {0} » créé",
- "namedNetworkNotificationCreateTitle": "Création de « {0} »",
- "namedNetworkNotificationDeleteDescription": "Suppression de l'emplacement nommé « {0} »",
- "namedNetworkNotificationDeleteFailedDescription": "La suppression de l'emplacement « {0} » a échoué. Réessayez plus tard.",
- "namedNetworkNotificationDeleteFailedTitle": "Impossible de supprimer l'emplacement",
- "namedNetworkNotificationDeleteSuccessDescription": "Emplacement nommé « {0} » supprimé",
- "namedNetworkNotificationDeleteSuccessTitle": "« {0} » supprimé",
- "namedNetworkNotificationDeleteTitle": "Suppression de « {0} »",
- "namedNetworkNotificationUpdateDescription": "Mise à jour de l'emplacement nommé « {0} »",
- "namedNetworkNotificationUpdateFailedDescription": "La mise à jour de l'emplacement « {0} » a échoué. Réessayez plus tard.",
- "namedNetworkNotificationUpdateFailedTitle": "Impossible de mettre à jour l'emplacement",
- "namedNetworkNotificationUpdateSuccessDescription": "Emplacement nommé « {0} » mis à jour",
- "namedNetworkNotificationUpdateSuccessTitle": "« {0} » mis à jour",
- "namedNetworkNotificationUpdateTitle": "Mise à jour de « {0} »",
- "namedNetworkSearchPlaceholder": "Recherchez des emplacements.",
- "namedNetworkUploadFailedDescription": "Une erreur s'est produite lors de l'analyse du fichier fourni. Veillez à charger un fichier en texte brut avec chaque ligne au format CIDR.",
- "namedNetworkUploadFailedTitle": "Échec de l'analyse de '{0}'",
- "namedNetworkUploadInProgressDescription": "Tentative d'analyse des valeurs CIDR valides à partir de « {0} ».",
- "namedNetworkUploadInProgressTitle": "Analyse de « {0} »",
- "namedNetworkUploadInvalidDescription": "« {0} » est trop volumineux ou son format n'est pas valide.",
- "namedNetworkUploadInvalidTitle": "« {0} » non valide",
- "namedNetworkUploadIpRange": "Charger",
- "namedNetworkUploadSuccessDescription": "{0} lignes analysées. {1} lignes au format incorrect. {2} ignorées.",
- "namedNetworkUploadSuccessTitle": "Fin de l'analyse de « {0} »",
- "namedNetworksAdd": "Nouvel emplacement nommé",
- "namedNetworksConditionHelpDescription": "Contrôlez l'accès des utilisateurs en fonction de leur emplacement physique.\n[En savoir plus][1]\n[1] : http://aka.ms/ux_ca_locationcondition",
- "namedNetworksExcludeLabel": "{0} et {1} exclus",
- "namedNetworksHelpDescription": "Les emplacements nommés sont utilisés par les rapports de sécurité Azure AD afin de réduire les faux positifs et par les stratégies d'accès conditionnel Azure AD.\n[En savoir plus][1]\n[1] : https://aka.ms/ux_ca_namedlocations",
- "namedNetworksIncludeLabel": "{0} inclus",
- "namedNetworksNone": "Aucun emplacement nommé trouvé.",
- "namedNetworksTitle": "Configurer les emplacements",
- "namednetworkExceedingSizeErrorBladeTitle": "Détails de l'erreur",
- "namednetworkExceedingSizeErrorDetailText": "Cliquez ici pour plus de détails.",
- "namednetworkExceedingSizeErrorMessage": "Vous avez dépassé la quantité de stockage maximale autorisée pour les emplacements nommés. Réessayez avec une liste plus courte. Cliquez ici pour afficher plus de détails.",
- "newCertName": "Nouveau certificat",
- "noPolicyRowMessage": "Aucune stratégie",
- "noSPSelected": "Aucun principal du service sélectionné",
- "noUpdatePermissionMessage": "Vous n'êtes pas autorisé à mettre à jour ces paramètres. Veuillez contacter votre administrateur général pour obtenir l'accès.",
- "noUserSelected": "Aucun utilisateur sélectionné",
- "noneRisk": "Aucun risque",
- "office365Description": "Ces applications incluent Microsoft Flow, Microsoft Forms, Microsoft Teams, Office 365 Exchange Online, Office 365 SharePoint Online, Office 365 Yammer et d'autres.",
- "office365InfoBox": "Au moins l'une des applications sélectionnées fait partie d'Office 365. Nous vous recommandons de définir la stratégie sur l'application Office 365 à la place.",
- "oneUserSelected": "1 utilisateur sélectionné",
- "onlyGlobalAdminsCanSaveThisPolicyConfig": "Seuls les administrateurs généraux peuvent enregistrer cette stratégie.",
- "or": "{0} OU {1}",
- "pickerDoneCommand": "Terminé",
- "policiesBladeAdPremiumUpsellBannerText": "Créez vos propres stratégies et ciblez des conditions spécifiques telles que Applications cloud, Connexion à risque et Plateformes d'appareils avec Azure AD Premium",
- "policiesBladeTitle": "Stratégies",
- "policiesBladeTitleWithAppName": "Stratégies : {0}",
- "policiesDisabledBannerText": "La création et la modification des stratégies sont interdites pour les applications avec un attribut d'authentification lié.",
- "policiesHitMaxLimitStatusBarMessage": "Vous avez atteint le nombre maximal de stratégies pour ce locataire. Supprimez des stratégies avant d'en créer d'autres.",
- "policyAssignmentsSection": "Affectations",
- "policyBlockAllInfoBox": "La stratégie configurée bloque tous les utilisateurs. Elle n’est donc pas prise en charge. Passez en revue les affectations et les contrôles. Excluez l’utilisateur actuel {0}, si vous souhaitez enregistrer cette stratégie.",
- "policyCloudAppsDisplayTextAllApp": "Toutes les applications",
- "policyCloudAppsLabel": "Applications cloud",
- "policyConditionClientAppDescription": "Logiciel dont l'utilisateur se sert pour accéder à l'application cloud. Par exemple « Navigateur »",
- "policyConditionClientAppV2Description": "Logiciel dont l'utilisateur se sert pour accéder à l'application cloud. Par exemple « Navigateur »",
- "policyConditionDevicePlatform": "Plateformes d’appareils",
- "policyConditionDevicePlatformDescription": "Plateforme sur laquelle l'utilisateur se connecte. Par exemple iOS",
- "policyConditionLocation": "Emplacements",
- "policyConditionLocationDescription": "Emplacement (déterminé à l'aide de la plage d'adresses IP) à partir duquel l'utilisateur se connecte",
- "policyConditionSigninRisk": "Risque de connexion",
- "policyConditionSigninRiskDescription": "Probabilité pour que la connexion provienne d'une autre personne que l'utilisateur. Le niveau de risque peut être élevé, moyen ou faible. Nécessite une licence Azure AD Premium 2.",
- "policyConditionUserRisk": "Risque de l’utilisateur",
- "policyConditionUserRiskDescription": "Configurez les niveaux de risque utilisateur nécessaires à l’application de la stratégie",
- "policyConditioniClientApp": "Applications clientes",
- "policyConditioniClientAppV2": "Applications clientes (préversion)",
- "policyControlAllowAccessDisplayedName": "Accorder l'accès",
- "policyControlAuthenticationStrengthDisplayedName": "Exiger la force de l’authentification (préversion)",
- "policyControlBladeTitle": "Octroyer",
- "policyControlBlockAccessDisplayedName": "Bloquer l'accès",
- "policyControlCompliantDeviceDisplayedName": "Exiger que l'appareil soit marqué comme conforme",
- "policyControlContentDescription": "Contrôlez l’application de l’accès pour bloquer ou accorder l’accès.",
- "policyControlInfoBallonText": "Bloquer l'accès ou sélectionner des exigences supplémentaires à satisfaire avant d'autoriser l'accès",
- "policyControlMfaChallengeDisplayedName": "Exiger une authentification multifacteur",
- "policyControlRequireCompliantAppDisplayedName": "Exiger une stratégie de protection des applications",
- "policyControlRequireDomainJoinedDisplayedName": "Exiger un appareil joint Azure AD hybride",
- "policyControlRequireMamDisplayedName": "Demander une application cliente approuvée",
- "policyControlRequiredPasswordChangeDisplayedName": "Nécessite une modification du mot de passe",
- "policyControlSelectAuthStrength": "Exiger la force de l’authentification",
- "policyControlsNoControlsSelected": "0 contrôles sélectionnés",
- "policyControlsSection": "Contrôles d'accès",
- "policyCreatBladeTitle": "Nouveau",
- "policyCreateButton": "Créer",
- "policyCreateFailedMessage": "Erreur : {0}",
- "policyCreateFailedTitle": "Échec de la création de « {0} »",
- "policyCreateInProgressTitle": "Création de « {0} »",
- "policyCreateSuccessMessage": "« {0} » créée. La stratégie sera activée dans quelques minutes si vous avez défini « Activer la stratégie » sur « Activé ».",
- "policyCreateSuccessTitle": "« {0} » créée",
- "policyDeleteConfirmation": "Êtes-vous sûr de vouloir supprimer « {0} » ? Cette action ne peut pas être annulée.",
- "policyDeleteFailTitle": "Échec de la suppression de « {0} »",
- "policyDeleteInProgressTitle": "Suppression de « {0} »",
- "policyDeleteSuccessTitle": "« {0} » correctement supprimé",
- "policyEnforceLabel": "Activer une stratégie",
- "policyErrorCannotSetSigninRisk": "Vous n’êtes pas autorisé à enregistrer une stratégie avec une condition de risque de connexion.",
- "policyErrorNoPermission": "Vous n'avez pas l'autorisation d'enregistrer la stratégie. Contactez votre administrateur général.",
- "policyErrorUnknown": "Une erreur s'est produite. Réessayez plus tard.",
- "policyFallbackWarningMessage": "Échec de la création ou de la mise à jour de « {0} » avec MS Graph, ce qui se traduit par un repli sur AD Graph. Examinez le scénario suivant, car il existe probablement un bogue lors de l’appel du point de terminaison de stratégie pour MS Graph avec une condition incompatible.",
- "policyFallbackWarningTitle": "Création ou mise à jour de « {0} » partiellement réussie",
- "policyNameCannotBeEmpty": "Le nom de stratégie ne peut pas être vide.",
- "policyNameDevice": "Stratégie de l'appareil",
- "policyNameFormat": "[{0}] {1}",
- "policyNameMam": "Stratégie de gestion des applications mobiles",
- "policyNameMfaLocation": "Stratégie MFA et emplacement",
- "policyNamePlaceholderText": "Exemple : « stratégie d'application de conformité d'appareil »",
- "policyNameTooLongError": "Le nom de la stratégie est trop long. 256 caractères maximum",
- "policyOff": "Désactivé",
- "policyOn": "Activé",
- "policyReportOnly": "Rapport uniquement",
- "policyReviewSection": "Vérifier",
- "policySaveButton": "Enregistrer",
- "policyStatusIconDescription": "La stratégie est activée",
- "policyStatusIconEnabled": "Icône d'état activée",
- "policyTemplateName1": "Utilisez les restrictions appliquées par l'application pour l'accès au navigateur {0}",
- "policyTemplateName2": "Autoriser l'accès à {0} seulement sur les appareils managés",
- "policyTemplateName3": "Stratégie migrée à partir des paramètres d’évaluation de l’accès continu",
- "policyTriggerRiskSpecific": "Sélectionner un niveau de risque spécifique",
- "policyTriggersInfoBalloonText": "Conditions qui définissent à quel moment la stratégie s'applique. Par exemple « emplacement »",
- "policyTriggersNoConditionsSelected": "0 conditions sélectionnées",
- "policyTriggersSelectorLabel": "Conditions",
- "policyUpdateFailedMessage": "Erreur : {0}",
- "policyUpdateFailedTitle": "Échec de la mise à jour de {0}",
- "policyUpdateInProgressTitle": "Mise à jour de {0}",
- "policyUpdateSuccessMessage": "{0} correctement mise à jour. La stratégie sera activée dans quelques minutes si vous avez défini « Activer la stratégie » sur « Activé ».",
- "policyUpdateSuccessTitle": "{0} mis à jour avec succès",
- "primaryCol": "Principal",
- "privateLinkLabel": "Lien privé de Azure AD",
- "reportOnlyInfoBox": "Mode rapport uniquement : les stratégies sont évaluées et consignées lors de la connexion, mais n’ont pas d’impact sur les utilisateurs.",
- "requireAllControlsText": "Demander tous les contrôles sélectionnés",
- "requireCompliantDevice": "Exiger un appareil conforme",
- "requireDomainJoined": "Exiger un appareil joint au domaine",
- "requireMFA": "Exiger l'authentification multifacteur",
- "requireOneControlText": "Demander un des contrôles sélectionnés",
- "resetFilters": "Réinitialiser les filtres",
- "sPRequired": "Le principal du service est obligatoire",
- "sPSelectorInfoBalloon": "Utilisateur ou principal du service que vous souhaitez tester",
- "saturday": "Samedi",
- "searchTextTooLongError": "Le texte de la recherche est trop long. Maximum 256 caractères",
- "securityDefaultsPolicyName": "Paramètres de sécurité par défaut",
- "securityDefaultsTextMessage": "Les paramètres de sécurité par défaut doivent être désactivés pour activer la stratégie d’accès conditionnel.",
- "securityDefaultsWarningMessage": "Il semble que vous êtes sur le point de gérer les configurations de sécurité de votre organisation. Excellent ! Vous devez d’abord désactiver les paramètres de sécurité par défaut avant d’activer une stratégie d’accès conditionnel.",
- "selectDevicePlatforms": "Sélectionner des plateformes d'appareil",
- "selectNamedNetworksSubtitle": "",
- "selectNamedNetworksTitle": "Sélectionner les emplacements",
- "selectedSP": "Principal du service sélectionné",
- "servicePrincipalDataGridAria": "Liste des principaux du service disponibles",
- "servicePrincipalDropDownLabel": "À quoi cette stratégie s’applique-t-elle ?",
- "servicePrincipalInfoBox": "Certaines conditions ne sont pas disponibles en raison de la sélection de « {0} » dans l’affectation de la stratégie",
- "servicePrincipalRadioAll": "Tous les principaux du service détenus",
- "servicePrincipalRadioSelect": "Sélectionner des principaux du service",
- "servicePrincipalSelectionsAria": "Grille des principaux du service sélectionnés",
- "servicePrincipalSelectorAria": "Liste des principaux du service choisis",
- "servicePrincipalSelectorMultiple": "{0} principaux du service sélectionnés",
- "servicePrincipalSelectorSingle": "1 principal du service sélectionné",
- "servicePrincipalSpecificInc": "Principaux du service spécifiques inclus",
- "servicePrincipals": "Principaux du service",
- "sessionControlBladeTitle": "Session",
- "sessionControlDescriptionContent": "Contrôlez l’accès en fonction des contrôles de session pour activer des expériences limitées au sein d’applications cloud spécifiques.",
- "sessionControlDisableInfo": "Ce contrôle fonctionne uniquement avec les applications prises en charge. Office 365, Exchange Online et SharePoint Online sont actuellement les seules applications cloud qui prennent en charge les restrictions appliquées par l’application. Cliquez ici pour en savoir plus.",
- "sessionControlInfoBallonText": "Les contrôles de session permettent une expérience limitée au sein d'une application cloud.",
- "sessionControls": "Contrôles de session",
- "sessionControlsAppEnforcedLabel": "Utiliser les restrictions appliquées par l'application",
- "sessionControlsCasLabel": "Utiliser le contrôle d'application par accès conditionnel",
- "sessionControlsSecureSignInLabel": "Exiger une liaison de jeton",
- "sharepointAppName": "SharePoint",
- "signinRiskDescription": "Sélectionner le niveau de risque de connexion auquel cette stratégie s'applique",
- "signinRiskInclude": "{0} inclus",
- "signinRiskTriggerDescriptionContent": "Sélectionner le niveau de risque de connexion",
- "singleTenantServicePrincipalInfoBallonText": "La stratégie s’applique uniquement aux principaux de service à locataire unique appartenant à votre organisation. Cliquez ici pour en savoir plus ",
- "specificSigninRiskLevelsOption": "Sélectionner des niveaux de risque de connexion spécifiques",
- "specificUsersExcluded": "utilisateurs spécifiques exclus",
- "specificUsersIncluded": "Utilisateurs spécifiques inclus",
- "specificUsersIncludedAndExcluded": "Utilisateurs spécifiques exclus et inclus",
- "startDatePickerLabel": "Démarrages",
- "startFreeTrial": "Démarrer un essai gratuit",
- "startTimePickerLabel": "Heure de début",
- "sunday": "Dimanche",
- "testButton": "What If",
- "thumbprintCol": "Empreinte numérique",
- "thursday": "Jeudi",
- "timeConditionAllTimesLabel": "À tout moment",
- "timeConditionIntroText": "Configurer l'heure à laquelle cette stratégie s'applique",
- "timeConditionSelectorInfoBallonContent": "Quand l'utilisateur se connecte. Par exemple, le « mercredi de 9 h à 17 h »",
- "timeConditionSelectorLabel": "Heure (préversion)",
- "timeConditionSpecificLabel": "Heures spécifiques",
- "timeSelectorAllTimesText": "À tout moment",
- "timeSelectorSpecificTimesText": "Heures spécifiques configurées",
- "timeZoneDropdownInfoBalloonContent": "Sélectionnez un fuseau horaire qui définit l'intervalle de temps. Cette stratégie s'applique aux utilisateurs de tous les fuseaux horaires. Par exemple, le « mercredi de 9 h à 17 h » pour un utilisateur correspond au « mercredi de 10 h à 18 h » pour un utilisateur d'un autre fuseau horaire.",
- "timeZoneDropdownLabel": "Fuseau horaire",
- "timeZoneDropdownPlaceholderText": "Sélectionner un fuseau horaire",
- "tooManyPoliciesDescription": "Seules les 50 premières stratégies sont affichées. Cliquez ici pour afficher toutes les stratégies.",
- "tooManyPoliciesTitle": "Plus de 50 stratégies trouvées",
- "trustedLocationStatusIconDescription": "L'emplacement est approuvé",
- "trustedLocationStatusIconEnabled": "Icône d'état Approuvé",
- "tuesday": "Mardi",
- "uploadInBadState": "Impossible de charger le fichier spécifié.",
- "upsellAppsDescription": "Exigez l'authentification multifacteur pour les applications sensibles tout le temps ou seulement à partir de l'extérieur du réseau de société.",
- "upsellAppsTitle": "Sécuriser les applications",
- "upsellBannerText": "Obtenir une version d’évaluation Premium gratuite pour utiliser cette fonctionnalité",
- "upsellDataDescription": "Exigez que l'appareil soit marqué comme conforme ou joint Azure AD hybride pour autoriser l'accès aux ressources de l'entreprise.",
- "upsellDataTitle": "Sécuriser les données",
- "upsellDescription": "L’accès conditionnel fournit le contrôle et la protection dont vous avez besoin pour protéger les données de votre entreprise, tout en offrant à vos utilisateurs une expérience qui leur permet de mieux travailler à partir de n’importe quel appareil. Par exemple, vous pouvez limiter l’accès depuis l’extérieur du réseau de société ou restreindre l’accès aux appareils qui répondent aux stratégies de conformité.",
- "upsellRiskDescription": "Exigez l'authentification multifacteur pour les événements à risque détectés par le système Machine Learning de Microsoft.",
- "upsellRiskTitle": "Protéger contre les risques",
- "upsellTitle": "Accès conditionnel",
- "upsellWhyTitle": "Pourquoi utiliser l'accès conditionnel ?",
- "userAppNoneOption": "Aucun",
- "userNamePlaceholderText": "Entrez le nom d'utilisateur.",
- "userNotSetSeletorLabel": "0 utilisateurs et groupes sélectionnés",
- "userOnlySelectionBladeExcludeDescription": "Sélectionner les utilisateurs à exclure de la stratégie",
- "userOrGroupSelectionCountDiffBannerText": "{0} configuré(s) dans cette stratégie a/ont été supprimé(s) du répertoire, mais cela n'affecte pas les autres utilisateurs et groupes dans la stratégie. La prochaine fois que vous mettrez à jour la stratégie, les utilisateurs et/ou les groupes supprimés seront supprimés automatiquement.",
- "userOrSPNotSetSelectorLabel": "0 utilisateurs ou identités de charge de travail sélectionnés",
- "userOrSPSelectionBladeTitle": "Utilisateurs ou identités de charge de travail",
- "userOrSPSelectorInfoBallonText": "Identités de l’annuaire auxquelles s’applique la stratégie, notamment les utilisateurs, les groupes et les principaux du service",
- "userRequired": "Utilisateur requis",
- "userRiskErrorBox": "La condition « Risque utilisateur » doit être sélectionnée lorsque l’option « Exiger la modification du mot de passe » est sélectionnée",
- "userSPRequired": "Utilisateur ou principal de service requis",
- "userSPSelectorTitle": "Identité de l’utilisateur ou de la charge de travail",
- "userSelectionBladeAllUsersAndGroups": "Tous les utilisateurs et groupes",
- "userSelectionBladeExcludeDescription": "Sélectionner les utilisateurs et groupes à exclure de la stratégie",
- "userSelectionBladeExcludeTabTitle": "Exclure",
- "userSelectionBladeExcludedSelectorTitle": "Sélectionner les utilisateurs exclus",
- "userSelectionBladeIncludeDescription": "Sélectionner les utilisateurs auxquels cette stratégie s’applique",
- "userSelectionBladeIncludeTabTitle": "Inclure",
- "userSelectionBladeIncludedSelectorTitle": "Sélectionner",
- "userSelectionBladeSelectUsers": "Sélectionner les utilisateurs",
- "userSelectionBladeSelectedUsers": "Sélectionner des utilisateurs et des groupes",
- "userSelectionBladeTitle": "Utilisateurs et groupes",
- "userSelectorBladeTitle": "Utilisateurs",
- "userSelectorExcluded": "{0} exclu",
- "userSelectorGroupPlural": "{0} groupes",
- "userSelectorGroupSingular": "1 groupe",
- "userSelectorIncluded": "{0} inclus",
- "userSelectorInfoBallonText": "Utilisateurs et groupes du répertoire auquel la stratégie s'applique. Par exemple « groupe pilote »",
- "userSelectorSelected": "{0} sélectionné(s)",
- "userSelectorTitle": "Utilisateur",
- "userSelectorUserAndGroup": "{0}, {1}",
- "userSelectorUserPlural": "{0} utilisateurs",
- "userSelectorUserSingular": "1 utilisateur",
- "userSelectorWithExclusion": "{0} et {1}",
- "usersGroupsLabel": "Utilisateurs et groupes",
- "viewApprovedAppsText": "Voir la liste des applications clientes approuvées",
- "viewCompliantAppsText": "Voir la liste des applications clientes protégées par une stratégie",
- "vpnBladeTitle": "Connectivité VPN",
- "vpnCertCreateFailedMessage": "Erreur : {0}",
- "vpnCertCreateFailedTitle": "Impossible de créer {0}",
- "vpnCertCreateInProgressTitle": "Création de {0}",
- "vpnCertCreateSuccessMessage": "{0} créé avec succès.",
- "vpnCertCreateSuccessTitle": "{0} créé avec succès",
- "vpnCertNoRowsMessage": "Aucun certificat VPN n'a été trouvé",
- "vpnCertUpdateFailedMessage": "Erreur : {0}",
- "vpnCertUpdateFailedTitle": "Échec de la mise à jour de {0}",
- "vpnCertUpdateInProgressTitle": "Mise à jour de {0}",
- "vpnCertUpdateSuccessMessage": "{0} mis à jour avec succès.",
- "vpnCertUpdateSuccessTitle": "{0} mis à jour avec succès",
- "vpnFeatureInfo": "Pour plus d’informations sur la connectivité VPN et l'accès conditionnel, cliquez ici.",
- "vpnFeatureWarning": "Une fois qu'un certificat VPN a été créé dans le portail Azure, Azure AD commence à l'utiliser immédiatement pour émettre des certificats à courte durée vers le client VPN. Il est essentiel que le certificat VPN soit immédiatement déployé sur le serveur VPN pour éviter tout problème de validation des informations d'identification du client VPN.",
- "vpnMenuText": "Connectivité VPN",
- "vpncertDropdownDefaultOption": "Durée",
- "vpncertDropdownInfoBalloonContent": "Sélectionnez la durée du certificat que vous souhaitez créer",
- "vpncertDropdownLabel": "Sélectionner une durée",
- "vpncertDropdownOneyearOption": "1 année",
- "vpncertDropdownThreeyearOption": "3 années",
- "vpncertDropdownTwoyearOption": "2 années",
- "wednesday": "Mercredi",
- "whatIfAppEnforcedControl": "Utiliser les restrictions appliquées par l'application",
- "whatIfBladeDescription": "Testez l'impact de l'accès conditionnel sur un utilisateur lorsqu'il se connecte sous certaines conditions.",
- "whatIfBladeTitle": "What If",
- "whatIfClassicPoliciesWarning": "Les stratégies classiques ne sont pas évaluées par cet outil.",
- "whatIfClientAppInfo": "Application cliente à partir de laquelle l'utilisateur se connecte. Par exemple, « navigateur ».",
- "whatIfCountry": "Pays",
- "whatIfCountryInfo": "Pays d'où l'utilisateur se connecte.",
- "whatIfDevicePlatformInfo": "Plateforme d'appareil depuis laquelle l'utilisateur se connecte.",
- "whatIfDeviceStateInfo": "État de l’appareil depuis lequel l’utilisateur se connecte",
- "whatIfEnterIpAddress": "Entrer l'adresse IP (par ex. : 40.77.182.32)",
- "whatIfErrorInvalidIpAddress": "Une adresse IP non valide a été spécifiée.",
- "whatIfEvaResultApplication": "Applications cloud",
- "whatIfEvaResultClientApps": "Application cliente",
- "whatIfEvaResultDevicePlatform": "Plateforme de l'appareil",
- "whatIfEvaResultEmptyPolicy": "Stratégie vide",
- "whatIfEvaResultInvalidCondition": "Condition non valide",
- "whatIfEvaResultInvalidPolicy": "Stratégie non valide",
- "whatIfEvaResultLocation": "Emplacement",
- "whatIfEvaResultNotEnoughInformation": "Informations insuffisantes",
- "whatIfEvaResultPolicyNotEnabled": "Stratégie non activée",
- "whatIfEvaResultSignInRisk": "Risque de connexion",
- "whatIfEvaResultUsers": "Utilisateurs et groupes",
- "whatIfIpAddress": "Adresse IP",
- "whatIfIpAddressInfo": "Adresse IP à partir de laquelle l'utilisateur se connecte.",
- "whatIfIpCountryInfoBoxText": "Si vous utilisez l'adresse IP ou le pays, les deux champs sont nécessaires et doivent être correctement mappés ensemble.",
- "whatIfPolicyAppliesTab": "Stratégies qui vont s'appliquer",
- "whatIfPolicyDoesNotApplyTab": "Stratégies qui ne vont pas s'appliquer",
- "whatIfReasons": "Raisons pour lesquelles cette stratégie ne va pas s'appliquer",
- "whatIfSelectClientApp": "Sélectionner une application cliente...",
- "whatIfSelectCountry": "Sélectionner un pays...",
- "whatIfSelectDevicePlatform": "Sélectionner la plateforme d'appareil...",
- "whatIfSelectPrivateLink": "Sélectionner un lien privé...",
- "whatIfSelectServicePrincipalRisk": "Sélectionner le risque de principal de service...",
- "whatIfSelectSignInRisk": "Sélectionner le risque de connexion...",
- "whatIfSelectType": "Sélectionner le type d’identité",
- "whatIfSelectUserRisk": "Sélectionner le risque utilisateur...",
- "whatIfServicePrincipalRiskInfo": "Niveau de risque associé au principal du service",
- "whatIfSignInRisk": "Risque de connexion",
- "whatIfSignInRiskInfo": "Niveau de risque associé à la connexion",
- "whatIfUnknownAreas": "Zones inconnues",
- "whatIfUserPickerLabel": "Utilisateur sélectionné",
- "whatIfUserPickerNoRowsLabel": "Aucun utilisateur ou principal de service sélectionné",
- "whatIfUserRiskInfo": "Niveau de risque associé à l'utilisateur",
- "whatIfUserSelectorInfo": "Utilisateur du répertoire que vous voulez tester",
- "windows365InfoBox": "La sélection de Windows 365 va affecter les connexions aux PC Cloud et aux hôtes de session de bureau virtuel Azure. Cliquez ici pour en savoir plus.",
- "windowsDisplayName": "Windows",
- "windowsPhoneDisplayName": "Windows Phone",
- "workloadIdentities": "Identités de charge de travail (préversion)",
- "workloadIdentity": "Identité de la charge de travail"
- },
- "ApplicableDeviceType": {
- "iPad": "iPad",
- "iPhoneAndIPod": "iPhone et iPod"
- },
- "TAPSettings": {
- "AllowedDataIngestionLocations": {
- "label": "Autoriser les utilisateurs à ouvrir des données à partir des services sélectionnés",
- "tooltip": "Sélectionnez les services de stockage d'application depuis lesquels les utilisateurs peuvent ouvrir des données. Tous les autres services sont bloqués. Si aucun service n'est sélectionné, les utilisateurs ne pourront pas ouvrir de données."
- },
- "AndroidBackup": {
- "label": "Sauvegarder les données d'organisation sur les services de sauvegarde Android",
- "tooltip": "Sélectionnez {0} pour empêcher la sauvegarde des données d'organisation sur les services de sauvegarde Android. \r\nSélectionnez {1} pour autoriser la sauvegarde des données d'organisation sur les services de sauvegarde Android. \r\nLes données personnelles ou non gérées ne sont pas affectées."
- },
- "AndroidBiometricAuthentication": {
- "label": "Accès par biométrie plutôt que par code confidentiel",
- "tooltip": "Choisissez les méthodes d’authentification Android que les personnes peuvent utiliser, le cas échéant, à la place d’un code confidentiel d’application."
- },
- "AndroidFingerprint": {
- "label": "Accès par empreinte digitale plutôt que par code PIN (Android 6.0+)",
- "tooltip": "Le système d'exploitation Android utilise les scanneurs d'empreintes digitales pour authentifier les utilisateurs d'appareils Android. Cette fonctionnalité prend en charge les contrôles biométriques natifs des appareils Android. Les paramètres biométriques propres aux OEM, comme Samsung Pass, ne sont pas pris en charge. S'ils sont autorisés, les contrôles biométriques natifs doivent être utilisés pour accéder à l'application sur un appareil compatible."
- },
- "AndroidOverrideFingerprint": {
- "label": "Remplacer l'empreinte digitale par le code PIN au terme du délai d'attente"
- },
- "AppPIN": {
- "label": "Code PIN de l'application quand le code PIN de l'appareil est défini",
- "tooltip": "S'il n'est pas obligatoire, le code PIN d'application n'est pas nécessaire pour accéder à l'application si le code PIN d'appareil est défini sur un appareil inscrit à MDM.
\r\n\r\nRemarque : Intune ne peut pas détecter l'inscription d'appareils à une solution EMM tierce sur Android."
- },
- "BlockDataIngestionIntoOrganizationDocuments": {
- "label": "Ouvrir les données dans les documents d’organisation",
- "tooltip1": "Sélectionnez Bloquer pour désactiver l’utilisation de l’option Ouvrir ou d’autres options de partage de données entre les comptes de cette application. Sélectionnez Autoriser si vous souhaitez autoriser l’utilisation de l'option Ouvrir et d’autres options pour partager des données entre les comptes de cette application.",
- "tooltip2": "Lorsque la valeur Bloquer est sélectionnée, vous pouvez configurer le paramètre suivant, Autoriser l’utilisateur à ouvrir des données à partir des services sélectionnés, pour spécifier les services autorisés pour les emplacements de données d’organisation.",
- "tooltip3": "Remarque : ce paramètre est appliqué uniquement si le paramètre « Recevoir des données d'autres applications » est défini sur « Applications gérées par la stratégie ».
\r\nRemarque : ce paramètre ne s’applique pas à toutes les applications. Pour plus d’informations, consultez {0}.",
- "tooltip4": "Remarque : ce paramètre est appliqué uniquement si le paramètre « x00a0Recevoir des données d'autres applications » est défini sur « Applications gérées par la stratégie ».
\r\nRemarque : ce paramètre ne s’applique pas à toutes les applications. Pour plus d’informations, consultez {0} ou {0}."
- },
- "ConnectToVpnOnLaunch": {
- "label": "Démarrer la connexion Microsoft Tunnel au lancement de l'application",
- "tooltip": "Autoriser la connexion au VPN au lancement de l'application"
- },
- "CredentialsForAccess": {
- "label": "Informations d'identification du compte professionnel ou scolaire pour l'accès",
- "tooltip": "Si vous choisissez cette option, vous devez fournir des informations d'identification professionnelles ou scolaires pour accéder à l'application gérée par stratégie. Si un code PIN ou des méthodes biométriques sont également nécessaires pour accéder à l'application, les informations d'identification du compte professionnel ou scolaire doivent être fournies en plus de ces invites."
- },
- "CustomBrowserDisplayName": {
- "label": "Nom du navigateur non géré",
- "tooltip": "Entrez le nom d'application du navigateur associé à l'« ID de navigateur non géré ». Ce nom est montré aux utilisateurs si le navigateur spécifié n'est pas installé."
- },
- "CustomBrowserPackageId": {
- "label": "ID de navigateur non géré",
- "tooltip": "Entrez l'ID d’application d'un seul navigateur. Le contenu web (http/s) des applications gérées par la stratégie s'ouvre dans le navigateur spécifié."
- },
- "CustomBrowserProtocol": {
- "label": "Protocole de navigateur non géré",
- "tooltip": "Entrez le protocole d'un seul navigateur non géré. Le contenu web (http/s) des applications gérées par la stratégie s'ouvre dans toutes les applications qui prennent en charge ce protocole.
\r\n \r\nRemarque : Spécifiez uniquement le préfixe du protocole. Si votre navigateur nécessitent des liens au format « mybrowser://www.microsoft.com », entrez « mybrowser ».
"
- },
- "CustomDialerAppDisplayName": {
- "label": "Nom de l’application de numérotation"
- },
- "CustomDialerAppPackageId": {
- "label": "ID du package de l’application de numérotation"
- },
- "CustomDialerAppProtocol": {
- "label": "Modèle d’URL de l’application de numérotation"
- },
- "Cutcopypaste": {
- "label": "Limiter les opérations couper, copier et coller entre les autres applications",
- "tooltip": "Coupez, copiez et collez des données entre votre application et d'autres applications approuvées installées sur l'appareil. Choisissez de bloquer complètement ces actions entre applications, d'autoriser leur utilisation avec n'importe quelle application ou de limiter leur utilisation aux applications gérées par votre organisation.
\r\n\r\nL'option Applications gérées par une stratégie avec Coller dans permet d'accepter le contenu entrant collé à partir d'une autre application. Toutefois, les utilisateurs ne peuvent pas partager le contenu à l'extérieur, sauf avec une application gérée.
"
- },
- "DialerRestrictionLevel": {
- "iosTooltip": "En général, quand un utilisateur sélectionne un numéro de téléphone cliquable dans une application, une application de numérotation s’ouvre avec le numéro de téléphone prérempli et prêt à appeler. Pour ce paramètre, choisissez comment gérer ce type de transfert de contenu lorsqu’il est lancé à partir d’une application gérée par une stratégie. Des étapes supplémentaires peuvent être nécessaires pour que ce paramètre prenne effet. Vérifiez d’abord que tel et telprompt ont été supprimés de la liste Sélectionner des applications à exclure. Vérifiez ensuite que l’application utilise une version plus récente du kit de développement logiciel (SDK) Intune (version 12.7.0+).",
- "label": "Transférer les données de télécommunications vers",
- "tooltip": "En général, quand un utilisateur sélectionne un numéro de téléphone associé à un lien dans une application, une application de numéroteur s’ouvre avec le numéro de téléphone prérempli et prêt à appeler. Pour ce paramètre, choisissez comment gérer ce type de transfert de contenu lorsqu’il est lancé à partir d’une application gérée par une stratégie."
- },
- "EncryptData": {
- "label": "Chiffrer les données d'organisation",
- "link": "https://docs.microsoft.com/en-us/intune/app-protection-policy-settings-android#data-relocation-settings",
- "tooltip": "Sélectionnez {0} pour appliquer le chiffrement de couche application Intune aux données d'organisation.\r\n
\r\nSélectionnez {1} pour ne pas appliquer le chiffrement de couche application Intune aux données d'organisation.\r\n\r\n
\r\nRemarque : Pour plus d'informations sur le chiffrement de couche application Intune, consultez {2}."
- },
- "EncryptDataAndroid": {
- "tooltip": "Choisissez Exiger pour activer le chiffrement des données professionnelles ou scolaires dans cette application. Intune utilise un schéma de chiffrement AES 256 bits OpenSSL avec le système du magasin de clés Android pour chiffrer de manière sécurisée les données d'application. Les données sont chiffrées de manière synchrone pendant les tâches d'E/S de fichier. Le contenu dans le stockage de l'appareil est toujours chiffré. Le SDK continue à prendre en charge les clés 128 bits pour assurer la compatibilité avec le contenu et les applications qui utilisent les anciennes versions du SDK.
\r\n\r\nLa méthode de chiffrement est pas conforme à FIPS 140-2.
"
- },
- "EncryptDataIos": {
- "tooltip1": "Choisissez Exiger pour activer le chiffrement des données professionnelles ou scolaires dans cette application. Intune applique le chiffrement des appareils iOS/iPadOS pour protéger les données d’application quand l’appareil est verrouillé. Les applications peuvent éventuellement chiffrer les données d’application à l’aide du chiffrement du SDK Intune APP. Le SDK Intune APP utilise les méthodes de chiffrement iOS/iPadOS pour appliquer un chiffrement AES 128 bits aux données d’application.",
- "tooltip2": "Quand vous activez ce paramètre, l'utilisateur peut être invité à configurer et utiliser un code PIN pour accéder à son appareil. Si aucun code PIN ni chiffrement de l'appareil n'est demandé, l'utilisateur est invité à définir un code PIN avec le message « Votre organisation vous demande d'activer un code PIN de l'appareil pour pouvoir accéder à cette application. »",
- "tooltip3": "Accédez à la documentation Apple officielle pour voir les modules de chiffrement iOS qui sont conformes à FIPS 140-2 ou dans l'attente d'une mise en conformité à FIPS 140-2."
- },
- "EncryptDataOnEnrolledDevices": {
- "label": "Chiffrer les données d'organisation sur les appareils inscrits",
- "tooltip": "Sélectionnez {0} pour appliquer le chiffrement de couche application Intune aux données d'organisation sur tous les appareils.
\r\n\r\nSélectionnez {1} pour ne pas appliquer le chiffrement de couche application Intune aux données d'organisation sur les appareils inscrits."
- },
- "IOSBackup": {
- "label": "Sauvegarder les données d'organisation sur les sauvegardes iTunes et iCloud",
- "tooltip": "Sélectionnez {0} pour empêcher la sauvegarde des données d'organisation sur iTunes ou iCloud. \r\nSélectionnez {1} pour autoriser la sauvegarde des données d'organisation sur iTunes ou iCloud. \r\nLes données personnelles ou non gérées ne sont pas affectées."
- },
- "IOSFaceID": {
- "label": "Accès par Face ID plutôt que par code PIN (iOS 11+/iPadOS)",
- "tooltip": "Face ID utilise la technologie de reconnaissance faciale pour authentifier les utilisateurs sur les appareils iOS/iPadOS. Intune appelle l’API LocalAuthentication pour authentifier les utilisateurs se servant de Face ID. S’il est autorisé, Face ID doit être utilisé pour accéder à l’application sur les appareils compatibles."
- },
- "IOSOverrideTouchId": {
- "label": "Remplacer la biométrie par le code PIN au terme du délai d'attente"
- },
- "IOSTouchId": {
- "label": "Accès par Touch ID plutôt que par code PIN (iOS 8+/iPadOS)",
- "tooltip": "Touch ID utilise la technologie de reconnaissance des empreintes digitales pour authentifier les utilisateurs sur les appareils iOS. Intune appelle l'API LocalAuthentication pour authentifier les utilisateurs se servant de Touch ID. S'il est autorisé, Touch ID doit être utilisé pour accéder à l'application sur un appareil compatible."
- },
- "NotificationRestriction": {
- "label": "Notifications de données d'organisation",
- "tooltip": "Sélectionnez l'une des options suivantes pour spécifier comment sont affichées les notifications des comptes d'organisation dans cette application et sur tous les appareils connectés de type wearable :
\r\n{0} : Ne pas partager les notifications.
\r\n{1} : Ne pas partager de données d'organisation dans les notifications. Si cette option n'est pas prise en charge par l'application, les notifications sont bloquées.
\r\n{2} : Partager toutes les notifications.
\r\n Android uniquement :\r\n Remarque : Ce paramètre ne s'applique pas à toutes les applications. Pour plus d'informations, consultez {3}
\r\n \r\n iOS uniquement :\r\nRemarque : Ce paramètre ne s'applique pas à toutes les applications. Pour plus d'informations, consultez {4}
"
- },
- "OpenLinksManagedBrowser": {
- "label": "Restreindre le transfert de contenu web à d'autres applications",
- "tooltip": "Sélectionnez l'une des options suivantes pour spécifier les applications dans lesquelles cette application peut ouvrir du contenu Web :
\r\nEdge : Autoriser le contenu Web à s'ouvrir uniquement dans Edge
\r\nNavigateur non géré : Autoriser le contenu Web à s'ouvrir uniquement dans le navigateur non géré défini par le paramètre \"Protocole de navigateur non géré\"
\r\nToute application : Autoriser le Web liens dans n'importe quelle application
"
- },
- "OverrideBiometric": {
- "tooltip": "Si vous choisissez cette option, une invite de code PIN remplace les invites biométriques au terme du délai d'attente (minutes d'inactivité). Si le délai d'attente n'arrive pas à son terme, l'invite biométrique continue de s'afficher. La valeur de délai d'attente doit être supérieure à la valeur spécifiée sous « Revérifier les exigences d'accès après (minutes d'inactivité) »."
- },
- "PinAccess": {
- "label": "Accès par code PIN",
- "tooltip": "Si vous choisissez cette option, un code PIN doit être utilisé pour accéder à l'application gérée par stratégie. Les utilisateurs doivent créer un code PIN d'accès la première fois qu'ils ouvrent l'application à partir d'un compte professionnel ou scolaire."
- },
- "PinLength": {
- "label": "Sélectionner la longueur minimale du code PIN",
- "tooltip": "Ce paramètre indique le nombre minimal de chiffres d'un code PIN."
- },
- "PinType": {
- "label": "Type de code PIN",
- "tooltip": "Les codes PIN numériques sont constitués entièrement de chiffres. Les codes secrets sont composés de caractères alphanumériques et de caractères spéciaux."
- },
- "Printing": {
- "label": "Impression des données d'organisation",
- "tooltip": "Si cette option est bloquée, l'application ne peut pas imprimer les données protégées."
- },
- "ReceiveData": {
- "label": "Recevoir des données d'autres applications",
- "tooltip": "Sélectionnez l'une des options suivantes pour spécifier les applications dont les données peuvent être reçues par cette application :
\r\n\r\nAucune : n'autorise pas la réception de données de documents ou comptes d'organisation provenant d'une autre application
\r\n\r\nApplications gérées par stratégie : autorise uniquement la réception de données de documents ou comptes d'organisation provenant d'autres applications gérées par stratégie\r\n
\r\nToutes les applications avec des données d'organisation entrantes : autorise la réception de données de documents ou comptes d'organisation provenant de n'importe quelle application et traite toutes les données entrantes sans compte d'utilisateur comme données d'organisation
\r\n\r\nToutes les applications : autorise la réception de données de documents ou comptes d'organisation provenant de n'importe quelle application"
- },
- "RecheckAccessAfter": {
- "label": "Revérifier les exigences d'accès après (minutes d'inactivité)\r\n\r\n",
- "tooltip": "Si l'application gérée par stratégie est inactive pendant une durée supérieure au nombre de minutes d'inactivité spécifié, l'application demande la revérification des conditions d'accès (p. ex. : code PIN, paramètres de lancement conditionnel) après le lancement de l'application."
- },
- "RestrictKeyboards": {
- "duplicatePackageError": "L’ID de package doit être unique.",
- "invalidPackageError": "ID de package non valide",
- "label": "Claviers approuvés",
- "select": "Sélectionner les claviers à approuver",
- "subtitle": "Ajoutez tous les claviers et méthodes d’entrée que les utilisateurs sont autorisés à utiliser avec les applications ciblées. Entrez le nom du clavier tel que vous voulez qu’il apparaisse à l’utilisateur final.",
- "title": "Ajouter des claviers approuvés",
- "toolTip": "Sélectionnez l’option Exiger, puis spécifiez une liste de claviers approuvés pour cette stratégie. En savoir plus"
- },
- "SaveData": {
- "label": "Enregistrer des copies des données d'organisation",
- "tooltip": "Sélectionnez {0} pour empêcher l'enregistrement, à l'aide de l'option « Enregistrer sous », d'une copie des données d'organisation dans un emplacement autre que celui des services de stockage sélectionnés.\r\n Sélectionnez {1} pour autoriser l'enregistrement, à l'aide de l'option « Enregistrer sous », d'une copie des données d'organisation dans un nouvel emplacement.
\r\n\r\n\r\nRemarque : Ce paramètre ne s'applique pas à toutes les applications. Pour plus d'informations, consultez {2}.\r\n"
- },
- "SaveDataToSelected": {
- "label": "Autoriser l'utilisateur à enregistrer des copies dans une sélection de services",
- "tooltip": "Sélectionnez les services de stockage où les utilisateurs peuvent enregistrer des copies des données d'organisation. Tous les autres services sont bloqués. Si aucun service n'est sélectionné, les utilisateurs ne peuvent pas enregistrer de copie des données d'organisation."
- },
- "ScreenCaptureAndAndroidAssistant": {
- "label": "Capture d'écran et Google Assistant\r\n",
- "tooltip": "Si cette option est bloquée, les fonctions de capture d’écran et d’analyse d’application de Google Assistant sont désactivées lors de l’utilisation de l’application gérée par les stratégies. Cette fonctionnalité prend en charge l’application Google Assistant habituelle. Les assistants tiers utilisant l’API Assist de Google ne sont pas pris en charge. Si vous choisissez Bloquer, l’image d’aperçu du multitâche visuel devient floue quand l’application est utilisée avec un compte professionnel ou scolaire."
- },
- "SendData": {
- "label": "Envoyer les données d'organisation à d'autres applications",
- "tooltip": "Sélectionnez l'une des options suivantes pour spécifier les applications auxquelles cette application peut envoyer des données d'organisation :
\r\n\r\n\r\nAucune : n'autorise pas l'envoi de données d'organisation à une autre application
\r\n\r\n\r\nApplications gérées par stratégie : autorise uniquement l'envoi de données d'organisation à d'autres applications gérées par stratégie
\r\n\r\n\r\nApplications gérées par une stratégie avec partage du système d'exploitation : autorise uniquement l'envoi de données d'organisation à d'autres applications gérées par stratégie et l'envoi de documents d'organisation à d'autres applications gérées par MDM sur des appareils inscrits
\r\n\r\n\r\nApplications gérées par une stratégie avec filtrage d'ouverture et de partage : autorise uniquement l'envoi de données d'organisation à d'autres applications gérées par stratégie et filtre les boîtes de dialogue Ouvrir dans/Partager du système d'exploitation pour afficher uniquement les applications gérées par stratégie\r\n
\r\n\r\nToutes les applications : autorise l'envoi de données d'organisation à n'importe quelle application"
- },
- "SimplePin": {
- "label": "Code PIN simple",
- "tooltip": "Si cette option est bloquée, les utilisateurs ne peuvent pas créer de code PIN simple. Un code PIN simple est une chaîne de chiffres consécutifs ou répétitifs comme 1234, ABCD ou 1111. Notez que si vous bloquez les codes PIN simples de type « Code secret », un code secret doit contenir au moins un chiffre, une lettre et un caractère spécial."
- },
- "SyncContacts": {
- "label": "Synchroniser les données des applications gérées par la stratégie avec les applications natives ou des compléments"
- },
- "ThirdPartyKeyboards": {
- "infoBox": "Les restrictions de clavier s'appliqueront à toutes les zones d'une application. Les comptes personnels des applications prenant en charge plusieurs identités seront affectés par cette restriction. En savoir plus .",
- "label": "Claviers tiers"
- },
- "Timeout": {
- "label": "Délai d'attente (minutes d'inactivité)"
- },
- "Tap": {
- "numberOfDays": "Nombre de jours",
- "pinResetAfterNumberOfDays": "Réinitialisation du code PIN au bout d'un nombre de jours",
- "previousPinBlockCount": "Sélectionner le nombre de valeurs de code secret précédentes à maintenir"
- }
- },
- "WindowsFeatureUpdateProfile": {
- "Details": {
- "Description": {
- "label": "Description"
- },
- "FeatureDeploymentSettings": {
- "header": "Paramètres de déploiement de fonctionnalités"
- },
- "FeatureUpdateVersion": {
- "infoballoon": "Cette fonctionnalité ne peut pas passer un appareil à la version antérieure.",
- "label": "Mise à jour de fonctionnalités à déployer"
- },
- "GradualRolloutEndDate": {
- "label": "Disponibilité du groupe final"
- },
- "GradualRolloutInterval": {
- "label": "Nombre de jours entre les groupes"
- },
- "GradualRolloutStartDate": {
- "label": "Disponibilité du premier groupe"
- },
- "Name": {
- "label": "Nom"
- },
- "RolloutOptions": {
- "label": "Options de déploiement"
- },
- "RolloutSettings": {
- "header": "Quand voulez-vous que la mise à jour soit disponible dans Windows Update?"
- },
- "ScopeSettings": {
- "header": "Configurer des balises d'étendue pour cette stratégie."
- },
- "StartDateOnlyStartDate": {
- "label": "Première date de disponibilité"
- },
- "bladeTitle": "Déploiements de mises à jour de fonctionnalités",
- "deploymentSettingsTitle": "Paramètres de déploiement",
- "loadError": "Échec du chargement !",
- "windows11EULA": "En sélectionnant cette mise à jour de fonctionnalité à déployer, vous acceptez que lors de l'application de ce système d'exploitation à un appareil, soit (1) la licence Windows applicable a été achetée via une licence en volume, soit (2) que vous êtes autorisé à lier votre organisation et acceptez sur son au nom des Termes du contrat de licence logiciel Microsoft pertinents qui se trouvent ici {0}."
- },
- "Notifications": {
- "deploymentSaved": "« {0} » a été enregistré.",
- "newFeatureUpdateDeploymentCreated": "Déploiement des mises à jour des fonctionnalités créé."
- },
- "TabName": {
- "deploymentSettings": "Paramètres de déploiement",
- "groupAssignmentSettings": "Affectations",
- "scopeSettings": "Balises d'étendue"
- }
- },
- "OfficeUpdateChannel": {
- "current": "Canal actuel",
- "deferred": "Canal Entreprise semi-annuel",
- "firstReleaseCurrent": "Canal actuel (préversion)",
- "firstReleaseDeferred": "Canal Entreprise biannuel (préversion)",
- "monthlyEnterprise": "Canal d’entreprise mensuel",
- "placeHolder": "Sélectionner un élément"
- },
- "Win32ReturnCodes": {
- "CodeTypes": {
- "failed": "Échec",
- "hardReboot": "Redémarrage matériel",
- "retry": "Réessayer",
- "softReboot": "Redémarrage logiciel",
- "success": "Opération réussie"
- },
- "Columns": {
- "codeType": "Type de code",
- "returnCode": "Code de retour"
- },
- "bladeTitle": "Codes de retour",
- "gridAriaLabel": "Codes de retour",
- "header": "Spécifier des codes de retour pour indiquer le comportement postinstallation :",
- "onAddAnnounceMessage": "Le code de retour a ajouté l'élément {0} sur {1}",
- "onDeleteSuccess": "Le code de retour {0} a été correctement supprimé",
- "returnCodeAlreadyUsedValidation": "Code de retour déjà utilisé.",
- "returnCodeMustBeIntegerValidation": "Le code de retour doit être un entier.",
- "returnCodeShouldBeAtLeast": "Le code de retour doit être au moins {0}.",
- "returnCodeShouldBeAtMost": "Le code de retour doit être au plus {0}.",
- "selectorLabel": "Codes de retour"
- },
- "SecurityTemplate": {
- "aSR": "Réduction de la surface d'attaque",
- "accountProtection": "Protection de compte",
- "allDevices": "Tous les appareils",
- "antivirus": "Antivirus",
- "antivirusReporting": "Rapports de l’antivirus (préversion)",
- "conditionalAccess": "Accès conditionnel",
- "deviceCompliance": "Conformité de l'appareil",
- "diskEncryption": "Chiffrement de disque",
- "eDR": "Détection de point de terminaison et réponse",
- "firewall": "Pare-feu",
- "helpSupport": "Aide et support",
- "setup": "Installation",
- "wdapt": "Microsoft Defender pour point de terminaison"
- },
- "PolicySet": {
- "appManagement": "Gestion des applications",
- "assignments": "Attributions",
- "basics": "De base",
- "deviceEnrollment": "Inscription de l'appareil",
- "deviceManagement": "Gestion des appareils",
- "scopeTags": "Balises d'étendue",
- "appConfigurationTitle": "Stratégies de configuration des applications",
- "appProtectionTitle": "Stratégies de protection des applications",
- "appTitle": "Applications",
- "iOSAppProvisioningTitle": "Profils de provisionnement d'application iOS",
- "deviceLimitRestrictionTitle": "Restrictions de limite d'appareils",
- "deviceTypeRestrictionTitle": "Restrictions de type d'appareil",
- "enrollmentStatusSettingTitle": "Pages d'état d'inscription",
- "windowsAutopilotDeploymentProfileTitle": "Profils Windows AutoPilot Deployment",
- "deviceComplianceTitle": "Stratégies de conformité d'appareil",
- "deviceConfigurationTitle": "Profils de configuration d'appareil",
- "powershellScriptTitle": "Scripts PowerShell"
- },
- "AssignmentAction": {
- "exclude": "Exclu",
- "include": "Inclus",
- "includeAllDevicesVirtualGroup": "Inclus",
- "includeAllUsersVirtualGroup": "Inclus"
- },
- "WindowsFeatureUpdate": {
- "EndOFSupportStatus": {
- "notSupported": "Non pris en charge",
- "supportEnding": "Fin du support",
- "supported": "Pris en charge"
- }
- },
- "InstallIntent": {
- "available": "Disponible pour les appareils inscrits",
- "availableWithoutEnrollment": "Disponible avec ou sans inscription",
- "required": "Obligatoire",
- "uninstall": "Désinstaller"
- },
"OutlookAppConfig": {
"DataProtectionConfiguration": {
"header": "Configuration de la protection des données"
@@ -1938,307 +100,864 @@
"themesEnabledTitle": "Thèmes activés",
"themesEnabledTooltip": "Spécifie si l’utilisateur est autorisé à utiliser un thème visuel personnalisé."
},
- "TAP": {
- "AccessRequirements": {
- "infoText": "Configurez les critères de code PIN et d'informations d'identification que les utilisateurs doivent respecter pour pouvoir accéder aux applications dans un contexte de travail."
- },
- "DataProtection": {
- "infoText": "Ce groupe comprend les contrôles de protection contre la perte de données (DLP), par exemple, les restrictions des opérations couper, copier, coller et enregistrer sous. Ces paramètres déterminent comment les utilisateurs interagissent avec les données dans l'application."
- },
- "DeviceTypes": {
- "selectOne": "Sélectionnez au moins un type de périphérique."
- },
- "TargetedApps": {
- "TargetToAll": {
- "label": "Cibler les applications sur tous les types d'appareil"
- },
- "infoText": "Choisissez la façon dont vous souhaitez appliquer cette stratégie aux applications sur différents appareils. Ensuite, ajoutez au moins une application.",
- "selectOne": "Sélectionnez au moins une application pour créer une stratégie."
- }
- },
- "TACSettings": {
- "edgeSettings": "Paramètres de configuration Edge",
- "edgeWindowsDataProtectionSettings": "Paramètres de protection des données Microsoft Edge (Windows) - Préversion",
- "edgeWindowsSettings": "Paramètres de configuration Microsoft Edge (Windows) - Préversion",
- "generalAppConfig": "Configuration générale de l'application",
- "generalSettings": "Paramètres de configuration généraux",
- "outlookSMIMEConfig": "Paramètres S/MIME Outlook",
- "outlookSettings": "Paramètres de configuration Outlook",
- "sMIME": "S/MIME"
- },
- "OfficeApplicationAdditionalType": {
- "projectProRetail": "Client de bureau Project Online",
- "visioProRetail": "Visio Online Plan 2"
- },
- "Win32Requirements": {
- "AdditionalRequirements": {
- "File": {
- "fileOrFolderToolTip": "Fichier ou dossier comme spécification sélectionnée.",
- "pathToolTip": "Chemin complet du fichier ou dossier à détecter.",
- "property": "Propriété",
- "valueToolTip": "Sélectionnez une valeur de spécification qui correspond à la méthode de détection sélectionnée. La spécification de date et d'heure doit être entrée dans votre format local."
- },
- "GridColumns": {
- "pathOrScript": "Chemin/script",
- "type": "Type"
- },
- "Registry": {
- "keyPath": "Chemin de la clé",
- "keyPathTooltip": "Chemin complet de l'entrée de Registre contenant la valeur de la spécification.",
- "operator": "Opérateur",
- "operatorTooltip": "Sélectionnez l'opérateur de la comparaison.",
- "registryRequirement": "Spécification de clé de Registre",
- "registryRequirementTooltip": "Sélectionnez la comparaison des spécifications de clé de Registre.",
- "valueName": "Nom de valeur",
- "valueNameTooltip": "Nom de la valeur de Registre obligatoire."
- },
- "RequirementTypeOptions": {
- "fileType": "Fichier",
- "registry": "Registre",
- "script": "Script"
- },
- "Script": {
- "RequirementMethodOptions": {
- "boolean": "Booléen",
- "dateTime": "Date et heure",
- "float": "Virgule flottante",
- "integer": "Entier",
- "string": "Chaîne",
- "version": "Version"
- },
- "ScriptContent": {
- "emptyMessage": "Le contenu du script ne doit pas être vide."
- },
- "duplicateName": "Le nom de script {0} est déjà utilisé. Entrez un autre nom.",
- "enforceSignatureCheck": "Appliquer la vérification de la signature du script",
- "enforceSignatureCheckTooltip": "Sélectionnez « Oui » pour vérifier que le script est signé par un éditeur approuvé, ce qui permet de l'exécuter sans avertissement ni invite. Le script s'exécute sans blocage. Sélectionnez « Non » (par défaut) pour exécuter le script avec confirmation de l'utilisateur final, mais sans vérification de signature.",
- "loggedOnCredentials": "Exécuter ce script en utilisant les informations d'identification de l'utilisateur connecté",
- "loggedOnCredentialsTooltip": "Exécutez le script à l'aide des informations d'identification connectées sur l'appareil.",
- "operatorTooltip": "Sélectionnez l'opérateur de la comparaison de spécifications.",
- "requirementMethod": "Sélectionner un type de données de sortie",
- "requirementMethodTooltip": "Sélectionnez le type de données utilisé pour déterminer une spécification de correspondance de détection.",
- "scriptFile": "Fichier de script",
- "scriptFileTooltip": "Sélectionnez un script PowerShell qui détecte la présence de l'application sur le client. Si l'application est détectée, le processus de spécification fournit un code de sortie de valeur 0 et écrit une valeur de chaîne dans STDOUT.",
- "scriptName": "Nom du script",
- "value": "Valeur",
- "valueTooltip": "Sélectionnez une valeur de spécification qui correspond à la méthode de détection sélectionnée. La spécification de date et d'heure doit être entrée dans votre format local."
- },
- "bladeTitle": "Ajouter une règle de spécification",
- "createRequirementHeader": "Créez une spécification.",
- "header": "Configurer d'autres règles de spécification",
- "label": "Règles de spécification supplémentaires",
- "noRequirementsSelectedPlaceholder": "Aucune spécification spécifiée.",
- "requirementType": "Type de spécification",
- "requirementTypeTooltip": "Choisissez le type de méthode de détection utilisé pour déterminer comment valider une spécification."
- },
- "architectures": "Architecture du système d'exploitation",
- "architecturesTooltip": "Choisissez les architectures nécessaires pour installer l'application.",
- "bladeTitle": "Spécifications",
- "diskSpace": "Espace disque nécessaire (Mo)",
- "diskSpaceTooltip": "Espace disque nécessaire sur le lecteur système pour installer l'application.",
- "header": "Spécifiez les conditions que les appareils doivent remplir avant l'installation de l'application :",
- "maximumTextFieldValue": "La valeur doit être de {0} maximum.",
- "minimumCpuSpeed": "Vitesse de processeur minimale nécessaire (MHz)",
- "minimumCpuSpeedTooltip": "Vitesse de processeur minimale nécessaire pour installer l'application.",
- "minimumLogicalProcessors": "Nombre minimal de processeurs logiques nécessaires",
- "minimumLogicalProcessorsTooltip": "Nombre minimal de processeurs logiques nécessaires pour installer l'application.",
- "minimumOperatingSystem": "Système d'exploitation minimal",
- "minimumOperatingSystemTooltip": "Sélectionnez le système d'exploitation minimum nécessaire pour installer l'application.",
- "minumumTextFieldValue": "La valeur doit correspondre au moins à {0}.",
- "physicalMemory": "Mémoire physique nécessaire (Mo)",
- "physicalMemoryTooltip": "Mémoire physique (RAM) nécessaire pour installer l'application.",
- "selectorLabel": "Spécifications",
- "validNumber": "Entrez un nombre valide."
- },
- "ArchitectureOptions": {
- "sixtyFourBit": "64 bits",
- "thirtyTwoBit": "32 bits"
- },
- "Countries": {
- "ae": "Émirats arabes unis",
- "ag": "Antigua-et-Barbuda",
- "ai": "Anguilla",
- "al": "Albanie",
- "am": "Arménie",
- "ao": "Angola",
- "ar": "Argentine",
- "at": "Autriche",
- "au": "Australie",
- "az": "Azerbaïdjan",
- "bb": "Barbade",
- "be": "Belgique",
- "bf": "Burkina Faso",
- "bg": "Bulgarie",
- "bh": "Bahreïn",
- "bj": "Bénin",
- "bm": "Bermudes",
- "bn": "Brunéi Darussalam",
- "bo": "Bolivie",
- "br": "Brésil",
- "bs": "Bahamas",
- "bt": "Bhoutan",
- "bw": "Botswana",
- "by": "Bélarus",
- "bz": "Belize",
- "ca": "Canada",
- "cg": "République du Congo",
- "ch": "Suisse",
- "cl": "Chili",
- "cn": "Chine",
- "co": "Colombie",
- "cr": "Costa Rica",
- "cv": "Cabo Verde",
- "cy": "Chypre",
- "cz": "République tchèque",
- "de": "Allemagne",
- "dk": "Danemark",
- "dm": "Dominique",
- "do": "République dominicaine",
- "dz": "Algérie",
- "ec": "Équateur",
- "ee": "Estonie",
- "eg": "Égypte",
- "es": "Espagne",
- "fi": "Finlande",
- "fj": "Fidji",
- "fm": "États fédérés de Micronésie",
- "fr": "France",
- "gb": "Royaume-Uni",
- "gd": "Grenade",
- "gh": "Ghana",
- "gm": "Gambie",
- "gr": "Grèce",
- "gt": "Guatemala",
- "gw": "Guinée-Bissau",
- "gy": "Guyana",
- "hk": "Hong Kong",
- "hn": "Honduras",
- "hr": "Croatie",
- "hu": "Hongrie",
- "id": "Indonésie",
- "ie": "Irlande",
- "il": "Israël",
- "in": "Inde",
- "is": "Islande",
- "it": "Italie",
- "jm": "Jamaïque",
- "jo": "Jordanie",
- "jp": "Japon",
- "ke": "Kenya",
- "kg": "Kirghizistan",
- "kh": "Cambodge",
- "kn": "Saint-Christophe-et-Niévès",
- "kr": "République de Corée",
- "kw": "Koweït",
- "ky": "Cayman (îles)",
- "kz": "Kazakhstan",
- "la": "République démocratique populaire lao",
- "lb": "Liban",
- "lc": "Sainte-Lucie",
- "lk": "Sri Lanka",
- "lr": "Libéria",
- "lt": "Lituanie",
- "lu": "Luxembourg",
- "lv": "Lettonie",
- "md": "République de Moldova",
- "mg": "Madagascar",
- "mk": "Macédoine du Nord",
- "ml": "Mali",
- "mn": "Mongolie",
- "mo": "Macao",
- "mr": "Mauritanie",
- "ms": "Montserrat",
- "mt": "Malte",
- "mu": "Maurice",
- "mw": "Malawi",
- "mx": "Mexique",
- "my": "Malaisie",
- "mz": "Mozambique",
- "na": "Namibie",
- "ne": "Niger",
- "ng": "Nigéria",
- "ni": "Nicaragua",
- "nl": "Pays-Bas",
- "no": "Norvège",
- "np": "Népal",
- "nz": "Nouvelle-Zélande",
- "om": "Oman",
- "pa": "Panama",
- "pe": "Pérou",
- "pg": "Papouasie-Nouvelle-Guinée",
- "ph": "Philippines",
- "pk": "Pakistan",
- "pl": "Pologne",
- "pt": "Portugal",
- "pw": "Palaos",
- "py": "Paraguay",
- "qa": "Qatar",
- "ro": "Roumanie",
- "ru": "Russie",
- "sa": "Arabie saoudite",
- "sb": "Salomon (îles)",
- "sc": "Seychelles",
- "se": "Suède",
- "sg": "Singapour",
- "si": "Slovénie",
- "sk": "Slovaquie",
- "sl": "Sierra Leone",
- "sn": "Sénégal",
- "sr": "Suriname",
- "st": "Sao Tomé-et-Principe",
- "sv": "El Salvador",
- "sz": "Swaziland",
- "tc": "Turques-et-Caïques",
- "td": "Tchad",
- "th": "Thaïlande",
- "tj": "Tadjikistan",
- "tm": "Turkménistan",
- "tn": "Tunisie",
- "tr": "Turquie",
- "tt": "Trinité-et-Tobago",
- "tw": "Taïwan",
- "tz": "Tanzanie",
- "ua": "Ukraine",
- "ug": "Ouganda",
- "us": "États-Unis",
- "uy": "Uruguay",
- "uz": "Ouzbékistan",
- "vc": "Saint-Vincent-et-les-Grenadines",
- "ve": "Venezuela",
- "vg": "Îles Vierges britanniques",
- "vn": "Vietnam",
- "ye": "Yémen",
- "za": "Afrique du Sud",
- "zw": "Zimbabwe"
+ "Languages": {
+ "ar-aE": "Arabe (E.A.U.)",
+ "ar-bH": "Arabe (Bahreïn)",
+ "ar-dZ": "Arabe (Algérie)",
+ "ar-eG": "Arabe (Égypte)",
+ "ar-iQ": "Arabe (Irak)",
+ "ar-jO": "Arabe (Jordanie)",
+ "ar-kW": "Arabe (Koweït)",
+ "ar-lB": "Arabe (Liban)",
+ "ar-lY": "Arabe (Libye)",
+ "ar-mA": "Arabe (Maroc)",
+ "ar-oM": "Arabe (Oman)",
+ "ar-qA": "Arabe (Qatar)",
+ "ar-sA": "Arabe (Arabie saoudite)",
+ "ar-sY": "Arabe (Syrie)",
+ "ar-tN": "Arabe (Tunisie)",
+ "ar-yE": "Arabe (Yémen)",
+ "az-cyrl": "Azéri (cyrillique, Azerbaïdjan)",
+ "az-latn": "Azéri (latin, Azerbaïdjan)",
+ "bn-bD": "Bengali (Bangladesh)",
+ "bn-iN": "Bengali (Inde)",
+ "bs-cyrl": "Bosniaque (cyrillique)",
+ "bs-latn": "Bosniaque (latin)",
+ "zh-cN": "Chinois (République populaire de Chine)",
+ "zh-hK": "Chinois (R.A.S. de Hong-Kong)",
+ "zh-mO": "Chinois (Macao R.A.S.)",
+ "zh-sG": "Chinois (Singapour)",
+ "zh-tW": "Chinois (Taïwan)",
+ "hr-bA": "Croate (Latin)",
+ "hr-hR": "Croate (Croatie)",
+ "nl-bE": "Néerlandais (Belgique)",
+ "nl-nL": "Néerlandais (Pays-Bas)",
+ "en-aU": "Anglais (Australie)",
+ "en-bZ": "Anglais (Belize)",
+ "en-cA": "Anglais (Canada)",
+ "en-cabn": "Anglais (Caraïbes)",
+ "en-iE": "Anglais (Irlande)",
+ "en-iN": "Anglais (Inde)",
+ "en-jM": "Anglais (Jamaïque)",
+ "en-mY": "Anglais (Malaisie)",
+ "en-nZ": "Anglais (Nouvelle-Zélande)",
+ "en-pH": "Anglais (Philippines)",
+ "en-sG": "Anglais (Singapour)",
+ "en-tT": "Anglais (Trinité-et-Tobago)",
+ "en-uK": "Anglais (Royaume-Uni)",
+ "en-uS": "Anglais (États-Unis)",
+ "en-zA": "Anglais (Afrique du Sud)",
+ "en-zW": "Anglais (Zimbabwe)",
+ "fr-bE": "Français (Belgique)",
+ "fr-cA": "Français (Canada)",
+ "fr-cH": "Français (Suisse)",
+ "fr-fR": "Français (France)",
+ "fr-lU": "Français (Luxembourg)",
+ "fr-mC": "Français (Monaco)",
+ "de-aT": "Allemand (Autriche)",
+ "de-cH": "Allemand (Suisse)",
+ "de-dE": "Allemand (Allemagne)",
+ "de-lI": "Allemand (Liechtenstein)",
+ "de-lU": "Allemand (Luxembourg)",
+ "iu-cans": "Inuktitut (syllabique, Canada)",
+ "iu-latn": "Inuktitut (latin, Canada)",
+ "it-cH": "Italien (Suisse)",
+ "it-iT": "Italien (Italie)",
+ "ms-bN": "Malais (Brunéi Darussalam)",
+ "ms-mY": "Malais (Malaisie)",
+ "mn-cN": "Mongol (mongol traditionnel, RPC)",
+ "mn-mN": "Mongol (cyrillique, Mongolie)",
+ "no-nB": "Norvégien, Bokmål (Norvège)",
+ "no-nn": "Norvégien, Nynorsk (Norvège)",
+ "pt-bR": "Portugais (Brésil)",
+ "pt-pT": "Portugais (Portugal)",
+ "quz-bO": "Quechua (Bolivie)",
+ "quz-eC": "Quechua (Équateur)",
+ "quz-pE": "Quechua (Pérou)",
+ "smj-nO": "Same de Lule (Norvège)",
+ "smj-sE": "Same de Lule (Suède)",
+ "se-fI": "Same du Nord (Finlande)",
+ "se-nO": "Same du Nord (Norvège)",
+ "se-sE": "Same du Nord (Suède)",
+ "sma-nO": "Same du Sud (Norvège)",
+ "sma-sE": "Same du Sud (Suède)",
+ "smn": "Same d'Inari (Finlande)",
+ "sms": "Same de Skolt (Finlande)",
+ "sr-Cyrl-bA": "Serbe (cyrillique)",
+ "sr-Cyrl-rS": "Serbe (Cyrillique, Serbie et Monténégro (anciennement))",
+ "sr-Latn-bA": "Serbe (Latin)",
+ "sr-Latn-rS": "Serbe (latin, Serbie)",
+ "dsb": "Bas-sorabe (Allemagne)",
+ "hsb": "Haut-sorabe (Allemagne)",
+ "es-es-tradnl": "Espagnol (Espagne, Traditionnel)",
+ "es-aR": "Espagnol (Argentine)",
+ "es-bO": "Espagnol (Bolivie)",
+ "es-cL": "Espagnol (Chili)",
+ "es-cO": "Espagnol (Colombie)",
+ "es-cR": "Espagnol (Costa Rica)",
+ "es-dO": "Espagnol (République dominicaine)",
+ "es-eC": "Espagnol (Équateur)",
+ "es-eS": "Espagnol (Espagne)",
+ "es-gT": "Espagnol (Guatemala)",
+ "es-hN": "Espagnol (Honduras)",
+ "es-mX": "Espagnol (Mexique)",
+ "es-nI": "Espagnol (Nicaragua)",
+ "es-pA": "Espagnol (Panama)",
+ "es-pE": "Espagnol (Pérou)",
+ "es-pR": "Espagnol (Porto Rico)",
+ "es-pY": "Espagnol (Paraguay)",
+ "es-sV": "Espagnol (Salvador)",
+ "es-uS": "Espagnol (États-Unis)",
+ "es-uY": "Espagnol (Uruguay)",
+ "es-vE": "Espagnol (Venezuela)",
+ "sv-fI": "Suédois (Finlande)",
+ "uz-cyrl": "Ouzbek (cyrillique, Ouzbékistan)",
+ "uz-latn": "Ouzbek (latin, Ouzbékistan)",
+ "af": "Afrikaans (Afrique du Sud)",
+ "sq": "Albanais (Albanie)",
+ "am": "Amharique (Éthiopie)",
+ "hy": "Arménien (Arménie)",
+ "as": "Assamais (Inde)",
+ "ba": "Bachkir (Russie)",
+ "eu": "Basque (Basque)",
+ "be": "Biélorusse (Bélarus)",
+ "br": "Breton (France)",
+ "bg": "Bulgare (Bulgarie)",
+ "ca": "Catalan (Catalan)",
+ "co": "Corse (France)",
+ "cs": "Tchèque (République tchèque)",
+ "da": "Danois (Danemark)",
+ "prs": "Dari (Afghanistan)",
+ "dv": "Maldivien (Maldives)",
+ "et": "Estonien (Estonie)",
+ "fo": "Féroïen (Îles Féroé)",
+ "fil": "Filipino (Philippines)",
+ "fi": "Finnois (Finlande)",
+ "gl": "Galicien (Galicien)",
+ "ka": "Géorgien (Géorgie)",
+ "el": "Grec (Grèce)",
+ "gu": "Goudjrati (Inde)",
+ "ha": "Haoussa (latin, Nigéria)",
+ "he": "Hébreu (Israël)",
+ "hi": "Hindi (Inde)",
+ "hu": "Hongrois (Hongrie)",
+ "is": "Islandais (Islande)",
+ "ig": "Igbo (Nigéria)",
+ "id": "Indonésien (Indonésie)",
+ "ga": "Irlandais (Irlande)",
+ "xh": "Xhosa (Afrique du Sud)",
+ "zu": "Zoulou (Afrique du Sud)",
+ "ja": "Japonais (Japon)",
+ "kn": "Kannada (Inde)",
+ "kk": "Kazakh (Kazakhstan)",
+ "km": "Khmer (Cambodge)",
+ "rw": "Kinyarwanda (Rwanda)",
+ "sw": "Swahili (Kenya)",
+ "kok": "Konkani (Inde)",
+ "ko": "Coréen (Corée)",
+ "ky": "Kirghize (Kirghizistan)",
+ "lo": "Lao (RDP Lao)",
+ "lv": "Letton (Lettonie)",
+ "lt": "Lituanien (Lituanie)",
+ "lb": "Luxembourgeois (Luxembourg)",
+ "mk": "Macédonien (Macédoine du Nord)",
+ "ml": "Malayalam (Inde)",
+ "mt": "Maltais (Malte)",
+ "mi": "Maori (Nouvelle-Zélande)",
+ "mr": "Marathi (Inde)",
+ "moh": "Mohawk (Mohawk)",
+ "ne": "Népalais (Népal)",
+ "oc": "Occitan (France)",
+ "or": "Odia (Inde)",
+ "ps": "Pachto (Afghanistan)",
+ "fa": "Persan",
+ "pl": "Polonais (Pologne)",
+ "pa": "Pendjabi (Inde)",
+ "ro": "Roumain (Roumanie)",
+ "rm": "Romanche (Suisse)",
+ "ru": "Russe (Russe)",
+ "sa": "Sanscrit (Inde)",
+ "st": "Sotho du Nord (Afrique du Sud)",
+ "tn": "Setswana (Afrique du Sud)",
+ "si": "Cingalais (Sri Lanka)",
+ "sk": "Slovaque (Slovaquie)",
+ "sl": "Slovène (Slovénie)",
+ "sv": "Suédois (Suède)",
+ "syr": "Syriaque (Syrie)",
+ "tg": "Tadjik (cyrillique, Tadjikistan)",
+ "ta": "Tamoul (Inde)",
+ "tt": "Tatar (Russie)",
+ "te": "Télougou (Inde)",
+ "th": "Thaï (Thaïlande)",
+ "bo": "Tibétain (RPC)",
+ "tr": "Turc (Turquie)",
+ "tk": "Turkmène (Turkménistan)",
+ "uk": "Ukrainien (Ukraine)",
+ "ur": "Ourdou (Pakistan)",
+ "vi": "Vietnamien (Vietnam)",
+ "cy": "Gallois (Royaume-Uni)",
+ "wo": "Wolof (Sénégal)",
+ "ii": "Yi (RPC)",
+ "yo": "Yoruba (Nigéria)"
+ },
+ "Category": {
+ "airPlay": "AirPlay",
+ "airPrint": "AirPrint",
+ "androidDefenderAtp": "Microsoft Defender pour point de terminaison",
+ "androidDeviceOwnerApplications": "Applications",
+ "androidForWorkPassword": "Mot de passe de l'appareil",
+ "appManagement": "Autoriser ou bloquer des applications",
+ "applicationGuard": "Microsoft Defender Application Guard",
+ "applicationRestrictions": "Applications restreintes",
+ "applicationVisibility": "Afficher ou masquer des applications",
+ "applications": "Magasin d'applications",
+ "applicationsAndGames": "App Store, affichage de documents, jeux",
+ "applicationsAndGoogle": "Google Play Store",
+ "appsAndExperience": "Applications et expérience",
+ "associatedDomains": "Domaines associés",
+ "autonomousSingleAppMode": "Mode App individuelle autonome",
+ "azureOperationalInsights": "Azure Operational Insights",
+ "bitLocker": "Chiffrement Windows",
+ "browser": "Navigateur",
+ "builtinApps": "Applications intégrées",
+ "cellular": "Cellulaire",
+ "cloudAndStorage": "Cloud et stockage",
+ "cloudPrint": "Imprimante cloud",
+ "complianceEmailProfile": "E-mail",
+ "connectedDevices": "Appareils connectés",
+ "connectivity": "Mobile et connectivité",
+ "contentCaching": "Mise en cache du contenu",
+ "controlPanelAndSettings": "Panneau de configuration et paramètres",
+ "credentialGuard": "Microsoft Defender Credential Guard",
+ "customCompliance": "Conformité personnalisée",
+ "customCompliancePreview": "Conformité personnalisée (préversion)",
+ "customConfiguration": "Profil de configuration personnalisé",
+ "customOMASettings": "Paramètres OMA-URI personnalisés",
+ "customPreferences": "Fichier de préférences",
+ "defender": "Antivirus Microsoft Defender",
+ "defenderAntivirus": "Antivirus Microsoft Defender",
+ "defenderExploitGuard": "Microsoft Defender Exploit Guard",
+ "defenderFirewall": "Pare-feu Microsoft Defender",
+ "defenderLocalSecurityOptions": "Options de sécurité locales de l'appareil",
+ "defenderSecurityCenter": "Centre de sécurité Microsoft Defender",
+ "deliveryOptimization": "Optimisation de livraison",
+ "derivedCredentialAuthenticationConfiguration": "Information d’identification dérivée",
+ "deviceExperience": "Expérience de l’appareil",
+ "deviceFirmwareConfigurationInterface": "Interface de configuration du microprogramme d'appareil",
+ "deviceGuard": "Microsoft Defender Application Control",
+ "deviceHealth": "Intégrité de l'appareil",
+ "devicePassword": "Mot de passe de l’appareil",
+ "deviceProperties": "Propriétés de l'appareil",
+ "deviceRestrictions": "Général",
+ "deviceSecurity": "Sécurité système",
+ "display": "Affichage",
+ "domainJoin": "Jonction de domaine",
+ "domains": "Domaines",
+ "edgeBrowser": "Ancienne version de Microsoft Edge (version 45 et antérieure)",
+ "edgeBrowserSmartScreen": "Microsoft Defender SmartScreen",
+ "edgeKiosk": "Mode kiosque Microsoft Edge",
+ "editionUpgrade": "Mise à niveau d'édition",
+ "education": "Éducation",
+ "educationDeviceCerts": "Certificats d'appareil",
+ "educationStudentCerts": "Certificats d'étudiant",
+ "educationTakeATest": "Passer un test",
+ "educationTeacherCerts": "Certificats d'enseignant",
+ "emailProfile": "E-mail",
+ "enterpriseDataProtection": "Protection des informations Windows",
+ "expeditedCheckin": "Configuration de la gestion des périphériques mobiles",
+ "extensibleSingleSignOn": "Extension d’application d’authentification unique",
+ "filevault": "FileVault",
+ "firewall": "Pare-feu",
+ "games": "Jeux",
+ "gatekeeper": "Gatekeeper",
+ "healthMonitoring": "Monitoring de l’intégrité",
+ "homeScreenLayout": "Disposition de l’écran d’accueil",
+ "iOSWallpaper": "Papier peint",
+ "importedPFX": "Certificat PKCS importé",
+ "iosDefenderAtp": "Microsoft Defender pour point de terminaison",
+ "iosKiosk": "Kiosque",
+ "kernelExtensions": "Extensions de noyau",
+ "keyboardAndDictionary": "Clavier et dictionnaire",
+ "kiosk": "Kiosque",
+ "kioskAndroidEnterprise": "Appareils dédiés",
+ "kioskConfiguration": "Kiosque",
+ "kioskConfigurationV2": "Kiosque",
+ "kioskWebBrowser": "Navigateur web kiosque",
+ "lockScreenMessage": "Message d’écran de verrouillage",
+ "lockedScreenExperience": "Expérience d'écran verrouillé",
+ "logging": "Création de rapports et télémétrie",
+ "loginItems": "Éléments de connexion",
+ "loginWindow": "Fenêtre de connexion",
+ "macDefenderAtp": "Microsoft Defender pour point de terminaison",
+ "maintenance": "Maintenance",
+ "malware": "Programme malveillant",
+ "messaging": "Messagerie",
+ "networkBoundary": "Limite réseau",
+ "networkProxy": "Proxy réseau",
+ "notifications": "Notifications de l’application",
+ "pKCS": "Certificat PKCS",
+ "password": "Mot de passe",
+ "personalProfile": "Profil personnel",
+ "personalization": "Personnalisation",
+ "policyOverride": "Remplacer la stratégie de groupe",
+ "powerSettings": "Paramètres d'alimentation",
+ "printer": "Imprimante",
+ "privacy": "Confidentialité",
+ "privacyPerApp": "Exceptions de confidentialité par application",
+ "privacyPreferences": "Préférences de confidentialité",
+ "projection": "Projection",
+ "sCCMCompliance": "Conformité de Configuration Manager",
+ "sCEP": "Certificat SCEP",
+ "sCEPProperties": "Certificat SCEP",
+ "sMode": "Changement de mode (Windows Insider uniquement)",
+ "safari": "Safari",
+ "search": "Rechercher",
+ "session": "Session",
+ "sharedDevice": "iPad partagé",
+ "sharedPCAccountManager": "Appareil multi-utilisateur partagé",
+ "singleSignOn": "Authentification unique",
+ "smartScreen": "Microsoft Defender SmartScreen",
+ "softwareUpdates": "Paramètres",
+ "start": "Démarrer",
+ "systemExtensions": "Extensions système",
+ "systemSecurity": "Sécurité système",
+ "trustedCert": "Certificat approuvé",
+ "updates": "Mises à jour",
+ "userRights": "Droits de l'utilisateur",
+ "usersAndAccounts": "Utilisateurs et comptes",
+ "vPN": "VPN de base",
+ "vPNApps": "VPN automatique",
+ "vPNAppsAndTrafficRules": "Règles de trafic et d'applications",
+ "vPNConditionalAccess": "Accès conditionnel",
+ "vPNConnectivity": "Connectivité",
+ "vPNDNSTriggers": "Paramètres DNS",
+ "vPNIKEv2": "Paramètres IKEv2",
+ "vPNProxy": "Proxy",
+ "vPNSplitTunneling": "Tunneling fractionné",
+ "vPNTrustedNetwork": "Détection des réseaux approuvés",
+ "webContentFilter": "Filtre de contenu web",
+ "wiFi": "Wi-Fi",
+ "win10Wifi": "Wi-Fi",
+ "windowsAtp": "Microsoft Defender pour point de terminaison",
+ "windowsDefenderATP": "Microsoft Defender pour point de terminaison",
+ "windowsHelloForBusiness": "Windows Hello Entreprise",
+ "windowsSpotlight": "Windows à la une",
+ "wiredNetwork": "Réseau câblé",
+ "wireless": "Sans fil",
+ "wirelessProjection": "Projection sans fil",
+ "workProfile": "Paramètres du profil professionnel",
+ "workProfilePassword": "Mot de passe du profil professionnel",
+ "xboxServices": "Services Xbox",
+ "zebraMx": "Profil MX (Zebra uniquement)",
+ "complianceActionsLabel": "Actions en cas de non-conformité"
+ },
+ "WindowsFeatureUpdateProfile": {
+ "Details": {
+ "Description": {
+ "label": "Description"
+ },
+ "FeatureDeploymentSettings": {
+ "header": "Paramètres de déploiement de fonctionnalités"
+ },
+ "FeatureUpdateVersion": {
+ "infoballoon": "Cette fonctionnalité ne peut pas passer un appareil à la version antérieure.",
+ "label": "Mise à jour de fonctionnalités à déployer"
+ },
+ "GradualRolloutEndDate": {
+ "label": "Disponibilité du groupe final"
+ },
+ "GradualRolloutInterval": {
+ "label": "Nombre de jours entre les groupes"
+ },
+ "GradualRolloutStartDate": {
+ "label": "Disponibilité du premier groupe"
+ },
+ "Name": {
+ "label": "Nom"
+ },
+ "RolloutOptions": {
+ "label": "Options de déploiement"
+ },
+ "RolloutSettings": {
+ "header": "Quand voulez-vous que la mise à jour soit disponible dans Windows Update?"
+ },
+ "ScopeSettings": {
+ "header": "Configurer des balises d'étendue pour cette stratégie."
+ },
+ "StartDateOnlyStartDate": {
+ "label": "Première date de disponibilité"
+ },
+ "bladeTitle": "Déploiements de mises à jour de fonctionnalités",
+ "deploymentSettingsTitle": "Paramètres de déploiement",
+ "loadError": "Échec du chargement !",
+ "windows11EULA": "En sélectionnant cette mise à jour de fonctionnalité à déployer, vous acceptez que lors de l'application de ce système d'exploitation à un appareil, soit (1) la licence Windows applicable a été achetée via une licence en volume, soit (2) que vous êtes autorisé à lier votre organisation et acceptez sur son au nom des Termes du contrat de licence logiciel Microsoft pertinents qui se trouvent ici {0}."
+ },
+ "Notifications": {
+ "deploymentSaved": "« {0} » a été enregistré.",
+ "newFeatureUpdateDeploymentCreated": "Déploiement des mises à jour des fonctionnalités créé."
+ },
+ "TabName": {
+ "deploymentSettings": "Paramètres de déploiement",
+ "groupAssignmentSettings": "Affectations",
+ "scopeSettings": "Balises d'étendue"
+ }
+ },
+ "WIPPinRequirements": {
+ "WipLowercaseCharacterPinRequirements": {
+ "allow": "Autoriser l'utilisation de lettres minuscules dans le code PIN",
+ "notAllow": "Ne pas autoriser l'utilisation de lettres minuscules dans le code PIN",
+ "requireAtLeastOne": "Exiger l'utilisation d'au moins une lettre minuscule dans le code PIN"
+ },
+ "WipSpecialCharacterPinRequirements": {
+ "allow": "Autoriser l'utilisation de caractères spéciaux dans le code PIN",
+ "notAllow": "Ne pas autoriser l'utilisation de caractères spéciaux dans le code PIN",
+ "requireAtLeastOne": "Exiger l'utilisation d'au moins un caractère spécial dans le code PIN"
+ },
+ "WipUppercaseCharacterPinRequirements": {
+ "allow": "Autoriser l'utilisation de lettres majuscules dans le code PIN",
+ "notAllow": "Ne pas autoriser l'utilisation de lettres majuscules dans le code PIN",
+ "requireAtLeastOne": "Exiger l'utilisation d'au moins une lettre majuscule dans le code PIN"
+ }
+ },
+ "OutlookAppConfigSettings": {
+ "AllowUserToChangeSetting": {
+ "title": "Autoriser l'utilisateur à changer le paramètre",
+ "tooltip": "Indiquez si l'utilisateur est autorisé à changer le paramètre."
+ },
+ "AllowWorkAccounts": {
+ "title": "Autoriser uniquement les comptes professionnels ou scolaires",
+ "tooltip": " Si ce paramètre est activé, les utilisateurs ne peuvent pas ajouter de comptes e-mail et de stockage personnels dans Outlook. Si un utilisateur ajoute un compte personnel dans Outlook, il est invité à le supprimer. S'il ne le supprime pas, l'ajout du compte professionnel ou scolaire échoue."
+ },
+ "BlockExternalImages": {
+ "title": "Bloquer les images externes",
+ "tooltip": "Si le blocage des images externes est activé, l'application empêche le téléchargement des images hébergées sur Internet qui sont incorporées dans le corps du message. S'il n'est pas configuré, le paramètre d'application par défaut a la valeur Désactivé"
+ },
+ "ConfigureEmail": {
+ "title": "Configurer les paramètres du compte e-mail"
+ },
+ "DefaultAppSignatureSetting": {
+ "Tooltip": {
+ "android": "La signature d'application par défaut indique si l'application utilise « Obtenir Outlook pour Android » comme signature par défaut pendant la composition du message. Si le paramètre est désactivé, la signature par défaut n'est pas utilisée. Toutefois, les utilisateurs peuvent ajouter leur propre signature.\r\n\r\nS'il est défini sur Non configuré, le paramètre d'application par défaut est activé.",
+ "iOS": "La signature d'application par défaut indique si l'application utilise « Obtenir Outlook pour iOS » comme signature par défaut pendant la composition du message. Si le paramètre est désactivé, la signature par défaut n'est pas utilisée. Toutefois, les utilisateurs peuvent ajouter leur propre signature.\r\n\r\nS'il est défini sur Non configuré, le paramètre d'application par défaut est activé."
+ },
+ "title": "Signature d'application par défaut"
+ },
+ "OfficeFeedReplies": {
+ "title": "Flux Discover",
+ "tooltip": "Le flux Discover couvre vos fichiers Office les plus fréquemment consultés. Par défaut, ce flux est activé quand Delve est activé pour l'utilisateur. Si l'option n'est pas configurée, le paramètre d'application par défaut est défini sur Activé."
+ },
+ "OrganizeMailByThread": {
+ "title": "Organiser le courrier par conversation",
+ "tooltip": "Le comportement par défaut dans Outlook consiste à regrouper les conversations dans une vue par conversation. Si ce paramètre est désactivé, Outlook affiche les courriers individuellement et ne les regroupe pas par conversation."
+ },
+ "PlayMyEmails": {
+ "title": "Lire mes e-mails",
+ "tooltip": "La fonctionnalité Lire mes e-mails n’est pas activée par défaut dans l’application, mais elle est promue aux utilisateurs éligibles via une bannière dans la boîte de réception. Quand la valeur est Désactivé, cette fonctionnalité n’est pas promue aux utilisateurs éligibles dans l’application. Les utilisateurs peuvent choisir d’activer manuellement Lire mes e-mails à partir de l’application, même si cette fonctionnalité est désactivée. Quand la valeur n’est pas configurée, le paramètre d’application par défaut est activé et la fonctionnalité est promue aux utilisateurs éligibles."
+ },
+ "SuggestedReplies": {
+ "title": "Réponses suggérées",
+ "tooltip": "Quand vous ouvrez un message, Outlook peut suggérer des réponses sous le message. Si vous sélectionnez une réponse suggérée, vous pouvez la modifier avant de l'envoyer."
+ },
+ "SyncCalendars": {
+ "title": "Synchroniser les calendriers",
+ "tooltip": "Spécifie si les utilisateurs peuvent synchroniser leur calendrier Outlook avec la base de données et l’application du calendrier natif."
+ },
+ "TextPredictions": {
+ "title": "Prédictions de texte",
+ "tooltip": "Outlook peut suggérer des mots et des expressions quand vous composez des messages. Quand Outlook propose une suggestion, faites un balayage pour l’accepter. Quand l’option n’est pas configurée, le paramètre de l’application par défaut est défini sur Activé."
+ },
+ "ThemesEnabled": {
+ "title": "Thèmes activés",
+ "tooltip": "Spécifie si l’utilisateur est autorisé à utiliser un thème visuel personnalisé."
+ }
+ },
+ "AssignmentFilters": {
+ "assignmentFilterColumnHeader": "Filtrer",
+ "noFilters": "Aucun"
+ },
+ "Platform": {
+ "all": "Tout",
+ "android": "Administrateur d'appareil Android",
+ "androidAOSP": "Android (AOSP)",
+ "androidEnterprise": "Android Enterprise",
+ "androidForWork": "Android Enterprise",
+ "androidWorkProfile": "Android Enterprise",
+ "common": "Commune",
+ "iOS": "iOS/iPadOS",
+ "iosAndAndroidPlatformLabel": "iOS et Android",
+ "iosCommaAndroidPlatformLabel": "iOS, Android",
+ "linux": "Linux",
+ "macOS": "Mac OS",
+ "unknown": "Inconnu",
+ "unsupported": "Non pris en charge",
+ "windows": "Windows",
+ "windows10": "Windows 10 et ultérieur",
+ "windows10CM": "Windows 10 et ultérieur (ConfigMgr)",
+ "windows10Holo": "Windows 10 Holographique",
+ "windows10Mobile": "Windows 10 Mobile",
+ "windows10Team": "Windows 10 Collaboration",
+ "windows10X": "Windows 10X",
+ "windows8": "Windows 8.1 et ultérieur",
+ "windows8And10": "Windows 8 et 10",
+ "windowsPhone": "Windows Phone 8.1",
+ "windows10AndLater": "Windows 10 et ultérieur",
+ "windows10AndWindowsServer": "Windows 10, Windows 11, et Windows Server (ConfigMgr)",
+ "windows10andLaterCM": "Windows 10 et ultérieur (ConfigMgr)",
+ "holoLens": "HoloLens",
+ "surfaceHub2": "Surface Hub 2",
+ "surfaceHub2S": "Surface Hub 2S",
+ "windowsPC": "PC Windows"
+ },
+ "AppInformationTab": {
+ "Error": {
+ "multipleChildApps": "Une application métier macOS peut uniquement être installée comme étant gérée lorsque le package chargé contient une seule application."
+ },
+ "Info": {
+ "AppStoreUrl": {
+ "android": "Entrez le lien vers la liste des applications dans Google Play Store. Par exemple :",
+ "androidLink": "https://play.google.com/store/apps/details?id=com.microsoft.office.outlook",
+ "windows": "Entrez le lien vers la liste des applications dans le Microsoft Store. Par exemple :",
+ "windowsLink": "https://www.microsoft.com/en-us/p/microsoft-to-do-lists-tasks-reminders/9nblggh5r558"
+ },
+ "appPackageFile": "Un fichier qui contient votre application dans un format qui peut être chargé sur un appareil. Les types de packages valides incluent : Android (.apk), iOS (.ipa), macOS (.pkg, .intunemac), Windows (.msi, .appx, .appxbundle, .msix et .msixbundle).",
+ "applicableDeviceType": "Sélectionnez les types d’appareils qui peuvent installer cette application.",
+ "category": "Catégorisez l’application pour faciliter le tri et la recherche dans Portail d’entreprise. Vous pouvez choisir plusieurs catégories.",
+ "categoryLink": "https://docs.microsoft.com/en-us/intune/apps/apps-add#create-and-edit-categories-for-apps",
+ "description": "Aidez vos utilisateurs d’appareils à comprendre la nature de l’application et/ou les actions qu’ils peuvent faire dans l’application. Cette description sera visible dans Portail d’entreprise.",
+ "developer": "Nom de l’entreprise ou de la personne qui a développé l’application. Ces informations seront visibles par les personnes connectées au centre d’administration.",
+ "displayVersion": "Version de l’application. Ces informations seront visibles par les utilisateurs dans le Portail d’entreprise.",
+ "infoUrl": "Liez des personnes à un site web ou à une documentation qui contient plus d’informations sur l’application. L’URL d’informations sera visible pour les utilisateurs de Portail d’entreprise.",
+ "isFeatured": "Les applications à la une sont placées en évidence dans Portail d’entreprise pour que les utilisateurs puissent y accéder rapidement.",
+ "learnMore": "En savoir plus",
+ "logo": "Chargez un logo associé à l’application. Ce logo s’affiche en regard de l’application dans Portail d’entreprise.",
+ "macOSDmgAppPackageFile": "Fichier qui contient votre application dans un format qui peut être chargé indépendamment sur un appareil. Type de package valide : .dmg.",
+ "minOperatingSystem": "Sélectionnez la version du système d’exploitation la plus ancienne sur laquelle l’application peut être installée. Si vous affectez l’application à un appareil avec un système d’exploitation antérieur, elle ne sera pas installée.",
+ "name": "Ajoutez un nom pour l’application. Ce nom sera visible dans la liste des applications Intune et pour les utilisateurs dans le Portail d’entreprise.",
+ "notes": "Ajoutez des notes supplémentaires sur l’application. Les notes seront visibles par les personnes connectées au centre d’administration.",
+ "owner": "Nom de la personne dans votre organisation qui gère les licences ou est le point de contact pour cette application. Ce nom sera visible pour les personnes connectées au centre d’administration.",
+ "packageName": "Contactez le constructeur de l’appareil pour obtenir le nom du package de l’application. Exemple de nom de package : com.exemple.app",
+ "privacyUrl": "Indiquez un lien pour les personnes qui souhaitent en savoir plus sur les paramètres et les conditions de confidentialité de l’application. L’URL de confidentialité sera visible par les utilisateurs dans Portail d’entreprise.",
+ "publisher": "Nom du développeur ou de la société qui distribue l’application. Ces informations seront visibles par les utilisateurs dans Portail d’entreprise.",
+ "selectApp": "Recherchez dans l’App Store les applications de l'iOS Store que vous voulez déployer avec Intune.",
+ "useManagedBrowser": "Le cas échéant, lorsqu'un utilisateur ouvre l’application web, celle-ci apparaît dans un navigateur protégé par Intune, tel que Microsoft Edge ou Intune Managed Browser. Ce paramètre s’applique aux appareils iOS et Android.",
+ "useManagedBrowserLink": "https://docs.microsoft.com/en-us/intune/apps/app-configuration-managed-browser",
+ "win32AppPackageFile": "Fichier qui contient votre application dans un format pouvant être chargé indépendamment sur un appareil. Type de package valide : .intunewin."
+ },
+ "descriptionPreview": "Préversion",
+ "descriptionRequired": "Une description est requise.",
+ "editDescription": "Modifier la description",
+ "macOSMinOperatingSystemAdditionalInfo": "Le système d’exploitation minimum pour télécharger un fichier .pkg est macOS 10.14. Téléchargez un fichier .intunemac pour sélectionner un système d’exploitation minimum plus ancien.",
+ "name": "Informations sur l'application",
+ "nameForOfficeSuitApp": "Informations sur la suite d'applications"
+ },
+ "Tooltips": {
+ "PolicySettings": {
+ "TouchId1": {
+ "android": "Sur Android, vous pouvez autoriser l'utilisation de l'identification par empreintes digitales au lieu d'un code confidentiel. Les utilisateurs sont invités à fournir leurs empreintes digitales lorsqu'ils accèdent à cette application avec leurs comptes professionnels.",
+ "iOS": "Sur les appareils iOS/iPadOS, vous pouvez autoriser l’identification par empreinte digitale au lieu du code confidentiel. Les utilisateurs sont alors invités à fournir leur empreinte digitale quand ils accèdent à cette application avec leur compte professionnel.",
+ "mac": "Sur les appareils Mac, vous pouvez autoriser une empreinte digitale à la place d'un code PIN pour s'identifier. Les utilisateurs sont alors invités à fournir leur empreinte digitale quand ils accèdent à cette application avec leur compte professionnel."
+ },
+ "appSharingFromLevel1": "Sélectionnez l'une des options suivantes pour spécifier les applications à partir desquelles cette application peut recevoir des données :",
+ "appSharingFromLevel2": "{0} : Autoriser uniquement la réception de données de documents ou comptes d'organisation provenant d'autres applications gérées par stratégie",
+ "appSharingFromLevel3": "{0} : Autoriser la réception de données de documents ou comptes d'organisation provenant de n'importe quelle application",
+ "appSharingFromLevel4": "{0} : Ne pas autoriser la réception de données de documents ou comptes d'organisation provenant d'une autre application",
+ "appSharingFromLevel5": "{0} : Autoriser le transfert de données à partir de n'importe quelle application et traiter toutes les données entrantes sans identité utilisateur comme données de l'organisation.",
+ "appSharingToLevel1": "Sélectionnez l'une des options suivantes pour spécifier les applications auxquelles cette application peut envoyer des données :",
+ "appSharingToLevel2": "{0} : Autoriser uniquement l'envoi de données d'organisation à d'autres applications gérées par stratégie",
+ "appSharingToLevel3": "{0} : Autoriser l'envoi de données d'organisation à n'importe quelle application",
+ "appSharingToLevel4": "{0} : Ne pas autoriser l'envoi de données d'organisation à une autre application",
+ "appSharingToLevel5": "{0} : Autoriser le transfert uniquement vers d'autres applications gérées par une stratégie et le transfert de fichiers vers d'autres applications gérées par MDM sur des appareils inscrits",
+ "appSharingToLevel6": "{0} : Autoriser le transfert uniquement vers d'autres applications gérées par une stratégie et filtrer les boîtes de dialogue Ouvrir dans/Partager pour afficher uniquement les applications gérées par une stratégie",
+ "conditionalEncryption1": "Sélectionnez {0} pour désactiver le chiffrement de l'application pour le stockage d'applications interne quand le chiffrement de l'appareil est détecté sur un appareil inscrit.",
+ "conditionalEncryption2": "Remarque : Intune peut détecter l'inscription des appareils uniquement avec Intune MDM. Le stockage d'applications externe reste chiffré pour que les applications non gérées ne puissent pas accéder aux données.",
+ "contactSyncMac": "Si cette option est désactivée, les applications ne peuvent pas enregistrer de contacts dans le carnet d'adresses natif.",
+ "contactsSync": "Choisissez Bloquer pour empêcher les applications gérées par la stratégie d’enregistrer des données dans les applications natives de l’appareil (comme les contacts, le calendrier et les widgets) ou pour empêcher l’utilisation de compléments dans les applications gérées par la stratégie. Si vous choisissez Autoriser, l’application gérée par stratégie peut enregistrer des données dans les applications natives ou utiliser des compléments, si ces fonctionnalités sont prises en charge et activées dans l’application gérée par stratégie.
Les applications peuvent fournir une capacité de configuration supplémentaire avec des stratégies de configuration d’application. Pour plus d’informations, consultez la documentation de l’application.",
+ "encryptionAndroid1": "Pour les applications associées à une stratégie de gestion des applications mobiles Intune, le chiffrement est fourni par Microsoft. Les données sont chiffrées de manière synchrone pendant les opérations d'E/S selon le paramètre de la stratégie de gestion des applications mobiles. Les applications gérées sur Android utilisent le chiffrement AES-128 en mode CBC qui utilise les bibliothèques de chiffrement de la plateforme. La méthode de chiffrement n'est pas conforme à FIPS 140-2. Le chiffrement SHA-256 est pris en charge sous forme d'instruction explicite à l'aide du paramètre SigAlg et fonctionne uniquement sur des appareils version 4.2 ou ultérieure. Le contenu stocké sur l'appareil est toujours chiffré.",
+ "encryptionAndroid2": "Quand vous demandez le chiffrement dans votre stratégie d'application, l'utilisateur final est invité à configurer et utiliser un code confidentiel pour accéder à son appareil. Si aucun code confidentiel n'est configuré pour accéder à l'appareil, les applications ne sont pas lancées et un message s'affiche indiquant à l'utilisateur final : « Votre entreprise exige que vous activiez d'abord un code confidentiel sur l'appareil pour accéder à cette application ».",
+ "encryptionMac1": "Pour les applications associées à une stratégie de gestion des applications mobiles Intune, le chiffrement est fourni par Microsoft. Les données sont chiffrées de manière synchrone pendant les opérations d'E/S selon le paramètre de la stratégie de gestion des applications mobiles. Les applications gérées sur Mac utilisent le chiffrement AES-128 en mode CBC qui utilise les bibliothèques de chiffrement de la plateforme. La méthode de chiffrement n'est pas conforme à FIPS 140-2. Le chiffrement SHA-256 est pris en charge sous forme d'instruction explicite à l'aide du paramètre SigAlg et fonctionne uniquement sur des appareils version 4.2 et ultérieure. Le contenu stocké sur l'appareil est toujours chiffré.",
+ "faceId1": "Dans certains cas, vous pouvez utiliser l'identification du visage à la place d'un code PIN. Quand les utilisateurs accèdent à cette application à l'aide de leur compte professionnel, ils sont invités à fournir une identification de leur visage.",
+ "faceId2": "Sélectionnez Oui pour utiliser l'identification du visage à la place d'un code PIN afin d'accéder aux applications.",
+ "managementLevelsAndroid1": "Utilisez cette option pour indiquer si cette stratégie s’applique aux appareils des administrateurs d’appareils Android, aux appareils professionnels Android ou aux appareils non gérés.",
+ "managementLevelsAndroid2": "{0} : Les appareils non gérés sont des appareils sur lesquels la gestion Intune MDM n'a pas été détectée. Inclut les fournisseurs MDM tiers.",
+ "managementLevelsAndroid3": "{0} : appareils gérés par Intune utilisant l’API d’administration d’appareils Android.",
+ "managementLevelsAndroid4": "{0} : appareils gérés par Intune utilisant les profils de travail Android Enterprise ou la gestion complète des appareils Android Enterprise.",
+ "managementLevelsIos1": "Utilisez cette option pour spécifier si cette stratégie s'applique aux appareils gérés par MDM ou aux appareils non gérés.",
+ "managementLevelsIos2": "{0} : Les appareils non gérés sont des appareils sur lesquels la gestion Intune MDM n'a pas été détectée. Inclut les fournisseurs MDM tiers.",
+ "managementLevelsIos3": "{0} : Les appareils gérés sont gérés par Intune MDM.",
+ "minAppVersion": "Définissez le numéro de version d'application minimal requis qu'un utilisateur doit avoir pour profiter d'un accès sécurisé à l'application.",
+ "minAppVersionWarning": "Définissez le numéro de version d'application minimal conseillé qu'un utilisateur doit avoir pour un accès sécurisé à l'application.",
+ "minOsVersion": "Définissez le numéro de version de système d'exploitation minimal requis qu'un utilisateur doit avoir pour profiter d'un accès sécurisé à l'application.",
+ "minOsVersionWarning": "Définissez le numéro de version de système d'exploitation minimal conseillé qu'un utilisateur doit avoir pour profiter d'un accès sécurisé à l'application.",
+ "minPatchVersion": "Définissez le niveau le plus ancien de correctif de sécurité Android obligatoire qu'un utilisateur doit avoir pour obtenir un accès sécurisé à l'application.",
+ "minPatchVersionWarning": "Définissez le niveau le plus ancien de correctif de sécurité Android recommandé qu'un utilisateur doit avoir pour obtenir un accès sécurisé à l'application.",
+ "minSdkVersion": "Définissez la version du SDK Stratégie de protection des applications minimale requise qu'un utilisateur doit avoir pour profiter d'un accès sécurisé à l'application.",
+ "requireAppPinDefault": "Sélectionnez Oui pour désactiver le code PIN de l'application quand un verrouillage d'appareil est détecté sur un appareil inscrit.
",
+ "targetAllApps1": "Utilisez cette option pour cibler votre stratégie aux applications sur les appareils, peu importe leur état de gestion.",
+ "targetAllApps2": "Durant la résolution des conflits de stratégie, ce paramètre est remplacé si une stratégie d'utilisateur cible un état de gestion spécifique.",
+ "touchId2": "Sélectionnez {0} pour demander une identification par empreinte digitale au lieu d'un code confidentiel pour accéder à l'application."
+ },
+ "Tap": {
+ "pinResetAfterNumberOfDays": "Spécifiez le nombre de jours avant la réinitialisation obligatoire du code PIN par l'utilisateur.",
+ "previousPinBlockCount": "Ce paramètre spécifie le nombre de codes secrets précédents que Intune va maintenir. Les nouveaux codes secrets doivent être différents de ceux que Intune maintient actuellement."
+ },
+ "WipPolicySettings": {
+ "25": "",
+ "allowWindowsSearch": "Cela permet à Windows Search de continuer la recherche dans les données chiffrées.",
+ "authoritativeIpRanges": "Activez ce paramètre si vous souhaitez substituer la détection automatique Windows des plages IP.",
+ "authoritativeProxyServers": "Activez ce paramètre si vous souhaitez substituer la détection automatique Windows des serveurs proxy.",
+ "checkInput": "Vérifier la validité de l'entrée",
+ "dataRecoveryCert": "Un certificat de récupération est un certificat spécial du système de fichiers EFS que vous pouvez utiliser pour récupérer des fichiers chiffrés si votre clé de chiffrement est perdue ou endommagée. Vous devez créer le certificat de récupération et le spécifier ici. En savoir plus",
+ "enterpriseCloudResources": "Spécifiez les ressources cloud à traiter comme ressources d'entreprise et à protéger avec une stratégie Windows Information Protection. Vous pouvez spécifier plusieurs ressources en séparant les entrées individuelles avec le caractère « | ».
Si un proxy est configuré dans votre entreprise, vous pouvez spécifier le proxy à travers lequel les ressources cloud que vous avez spécifiées seront routées.
URL[,Proxy]|URL[,Proxy]
Sans proxy : contoso.sharepoint.com|contoso.visualstudio.com
Avec proxy : contoso.sharepoint.com,proxy.contoso.com|contoso.visualstudio.com,proxy.contoso.com
",
+ "enterpriseIPv4Ranges": "Spécifiez les plages d'adresses IPv4 qui constituent votre réseau d'entreprise. Elles sont utilisées conjointement avec les noms de domaine de réseau d'entreprise que vous spécifiez pour définir les limites de votre réseau d'entreprise.
Ce paramètre est obligatoire pour l'activation de Windows Information Protection.
Vous pouvez spécifier plusieurs plages en séparant les entrées individuelles par une virgule.
Par exemple : 3.4.0.1-3.4.255.255,192.168.1.1-192.168.255.255
",
+ "enterpriseIPv6Ranges": "Spécifiez les plages d'adresses IPv6 qui constituent votre réseau d'entreprise. Elles sont utilisées conjointement avec les noms de domaine de réseau d'entreprise que vous spécifiez pour définir les limites de votre réseau d'entreprise.
Vous pouvez spécifier plusieurs plages en séparant les entrées individuelles par une virgule.
Par exemple : 2001:4898:dc05::-2001:4898:dc05:ffff:ffff:ffff:ffff:ffff,2a01:110::-2a01:110:7fff:ffff:ffff:ffff:ffff:ffff
",
+ "enterpriseInternalProxyServers": "Si un proxy est configuré dans votre entreprise, vous pouvez spécifier le proxy à travers lequel le trafic vers les ressources cloud spécifiées dans les paramètres des ressources cloud d'entreprise doit être routé.
Vous pouvez spécifier plusieurs valeurs en séparant les entrées individuelles par un point-virgule.
Par exemple : contoso.internalproxy1.com;contoso.internalproxy2.com
",
+ "enterpriseNetworkDomainNames": "Spécifiez les noms DNS qui constituent votre réseau d'entreprise. Ils sont utilisés conjointement avec les plages d'adresses IP que vous spécifiez pour définir les limites de votre réseau d'entreprise. Vous pouvez spécifier plusieurs valeurs en séparant les entrées individuelles par une virgule.
Ce paramètre est obligatoire pour l'activation de Windows Information Protection.
Par exemple : corp.contoso.com,region.contoso.com
",
+ "enterpriseProtectedDomainNames": "Spécifiez les noms DNS qui constituent votre réseau d'entreprise. Ils sont utilisés conjointement avec les plages d'adresses IP que vous spécifiez pour définir les limites de votre réseau d'entreprise. Vous pouvez spécifier plusieurs valeurs en les séparant par « | ».
Ce paramètre est obligatoire pour l'activation de Protection des informations Windows.
Par exemple : corp.contoso.com|region.contoso.com
",
+ "enterpriseProxyServers": "Si vous avez des proxys accessibles en externe dans votre réseau d'entreprise, spécifiez-les ici. Quand vous spécifiez une adresse de serveur proxy, vous devez également spécifier le port à travers lequel le trafic doit être autorisé et protégé via Windows Information Protection.
Remarque : Cette liste ne doit pas inclure de serveurs de votre liste de serveurs proxy internes de l'entreprise. Vous pouvez spécifier plusieurs valeurs en séparant les entrées individuelles par un point-virgule.
Par exemple : proxy.contoso.com:80;proxy2.contoso.com:80
",
+ "maxInactivityTime1": "Spécifie la durée maximale (en minutes) autorisée pendant laquelle l'appareil peut rester inactif avant d'être verrouillé par un mot de passe ou un code PIN. Les utilisateurs peuvent choisir toute valeur de délai d'expiration existante qui est inférieure à la durée maximale spécifiée dans l'application Paramètres. Notez que les appareils Lumia 950 et 950XL ont une valeur de délai d'expiration maximale de 5 minutes, quelle que soit la valeur définie par cette stratégie.",
+ "maxInactivityTime2": "0 (par défaut) - Aucun délai d'expiration n'est défini. La valeur par défaut « 0 » est interprétée comme « Aucun délai d'expiration n'est défini ».",
+ "maxPasswordAttempts1": "Cette stratégie a un comportement différent sur un appareil mobile et un poste de travail.",
+ "maxPasswordAttempts2": "Sur un appareil mobile, quand l'utilisateur atteint la valeur définie par cette stratégie, l'appareil est réinitialisé.",
+ "maxPasswordAttempts3": "Sur un poste de travail, quand l'utilisateur atteint la valeur définie par cette stratégie, l'appareil n'est pas réinitialisé. Au lieu de cela, le poste de travail est mis en mode de récupération BitLocker, qui rend les données inaccessibles, mais récupérables. Si BitLocker n'est pas activé, la stratégie ne peut pas être appliquée.",
+ "maxPasswordAttempts4": "Avant d'atteindre la limite de tentatives infructueuses, l'utilisateur est redirigé vers l'écran de verrouillage et averti que l'ordinateur sera verrouillé à la prochaine tentative infructueuse. Quand l'utilisateur atteint la limite, l'appareil redémarre automatiquement et affiche la page de récupération BitLocker. Cette page invite l'utilisateur à entrer la clé de récupération BitLocker.",
+ "maxPasswordAttempts5": "0 (par défaut) - L'appareil n'est jamais réinitialisé après la saisie d'un code PIN ou d'un mot de passe incorrect.",
+ "maxPasswordAttempts6": "Si toutes les valeurs de stratégie sont égales à 0, 0 est la valeur la plus sûre. Sinon, la valeur de stratégie Min est la valeur la plus sûre.",
+ "mdmDiscoveryUrl": "Spécifiez l'URL du point de terminaison d'inscription MDM à utiliser par les utilisateurs pour s'inscrire au service MDM. Par défaut, cela est spécifié pour Intune.",
+ "minimumPinLength1": "Valeur entière qui définit le nombre minimal de caractères obligatoires dans le code PIN. La valeur par défaut est 4. Le plus petit nombre que vous pouvez spécifier pour ce paramètre de stratégie est 4. Le plus grand nombre que vous pouvez spécifier doit être inférieur au nombre défini dans le paramètre de stratégie Longueur maximale du code PIN ou au nombre 127, selon le plus petit des deux.",
+ "minimumPinLength2": "Si vous définissez ce paramètre de stratégie, la longueur du code PIN doit être supérieure ou égale à ce nombre. Si vous désactivez ou ne définissez pas ce paramètre de stratégie, la longueur du code PIN doit être supérieure ou égale à 4.",
+ "name": "Nom de cette limite réseau",
+ "neutralResources": "Si vous avez des points de terminaison de redirection d'authentification dans votre entreprise, spécifiez-les ici. Les emplacements spécifiés ici sont considérés comme étant personnels ou d'entreprise en fonction du contexte de la connexion avant la redirection.
Vous pouvez spécifier plusieurs valeurs en séparant les entrées individuelles par une virgule.
Par exemple : sts.contoso.com,sts.contoso2.com
",
+ "passportForWork1": "Valeur qui définit Windows Hello Entreprise comme mode de connexion à Windows.",
+ "passportForWork2": "La valeur par défaut est true. Si vous définissez cette stratégie sur false, l'utilisateur ne peut pas configurer Windows Hello Entreprise, sauf sur les téléphones mobiles joints à Azure Active Directory qui nécessitent la configuration.",
+ "pinExpiration": "Le plus grand nombre que vous pouvez spécifier pour ce paramètre de stratégie est 730. Le plus petit nombre que vous pouvez spécifier pour ce paramètre de stratégie est 0. Si cette stratégie est définie sur 0, le code PIN de l'utilisateur n'expire jamais.",
+ "pinHistory1": "Le plus grand nombre que vous pouvez spécifier pour ce paramètre de stratégie est 50. Le plus petit nombre que vous pouvez spécifier pour ce paramètre de stratégie est 0. Si cette stratégie est définie sur 0, la conservation des codes PIN précédents n'est pas nécessaire.",
+ "pinHistory2": "Le code PIN actuel de l'utilisateur fait partie de l'ensemble des codes PIN associés au compte de l'utilisateur. L'historique des codes PIN n'est pas conservé après la réinitialisation d'un code PIN.",
+ "protectUnderLock": "Protège le contenu de l'application quand l'appareil est dans l'état verrouillé.",
+ "protectionModeBlock": "Bloquer : Bloque le déplacement des données d'entreprise hors des applications protégées.
",
+ "protectionModeOff": "Désactivé : L'utilisateur est autorisé à déplacer les données hors des applications protégées. Ces actions ne sont pas consignées.
",
+ "protectionModeOverride": "Autoriser l'utilisateur à ignorer les avertissements : L'utilisateur est invité à confirmer son action quand il essaie de déplacer des données d'une application protégée vers une application non protégée. S'il choisit d'ignorer cet avertissement, l'action est consignée.
",
+ "protectionModeSilent": "Aucun avertissement : L'utilisateur est autorisé à déplacer les données hors des applications protégées. Ces actions sont consignées.
",
+ "required": "Nécessaire",
+ "revokeOnMdmHandoff": "Ajouté dans Windows 10, version 1703. Cette stratégie contrôle s'il faut révoquer les clés WIP quand un appareil passe de GAM à MDM. Si elle est définie sur « Désactivé », les clés ne sont pas révoquées et l'utilisateur continue d'avoir accès aux fichiers protégés après la mise à niveau. Ceci est recommandé si le service MDM est configuré avec le même ID d'entreprise WIP que le service GAM.",
+ "revokeOnUnenroll": "Cela entraîne la révocation des clés de chiffrement quand l'inscription d'un appareil à cette stratégie est annulée.",
+ "rmsTemplateForEdp": "GUID TemplateID à utiliser pour le chiffrement RMS. Le modèle Azure RMS permet à l'administrateur informatique de configurer les détails de chaque utilisateur ayant accès au fichier protégé par RMS, et la durée de cet accès.",
+ "showWipIcon": "L'affichage d'une icône en superposition indique à l'utilisateur qu'il se trouve dans un contexte d'entreprise.",
+ "useRmsForWip": "Spécifie si le chiffrement Azure RMS est autorisé pour WIP."
+ },
+ "requireAppPin": "Sélectionnez Oui pour désactiver le code PIN de l’application quand un verrouillage d’appareil est détecté sur un appareil inscrit.
Remarque : Intune ne peut pas détecter l’inscription d’un appareil avec une solution EMM tierce sur iOS/iPadOS.
"
+ },
+ "Autopilot": {
+ "AssignResourceAccount": {
+ "createNewCommandMenu": "Créer",
+ "createNewResourceAccountInfo": "\r\nCréez un compte de ressource pendant l'inscription. Le compte de ressource est ajouté immédiatement aux tableaux de comptes de ressource, mais n'est pas actif tant que l'appareil n'est pas inscrit et que l'abonnement Surface Hub n'est pas vérifié. En savoir plus sur les comptes de ressource
\r\n ",
+ "createNewResourceTitle": "Créer un compte de ressource",
+ "deviceNameInvalid": "Format du nom d'appareil non valide",
+ "deviceNameRequired": "Nom de l'appareil obligatoire",
+ "editResourceAccountLabel": "Modifier",
+ "selectExistingCommandMenu": "Sélectionner"
+ },
+ "Device": {
+ "ComputerName": {
+ "validFormat": "Les noms doivent avoir 15 caractères maximum et peuvent contenir des lettres (a-z, A-Z), des chiffres (0-9) et des traits d'union. Ils ne doivent pas contenir uniquement des chiffres et ne doivent pas contenir d'espace."
+ },
+ "Header": {
+ "addressableUserName": "Nom convivial",
+ "azureADDevice": "Appareil Azure AD associé",
+ "batch": "Étiquette de groupe",
+ "dateAssigned": "Date d'attribution",
+ "deviceAccountFriendlyName": "Nom convivial du compte de l’appareil",
+ "deviceAccountPwd": "Mot de passe du compte de l’appareil",
+ "deviceAccountUpn": "Compte d’appareil",
+ "deviceDisplayName": "Nom de l’appareil",
+ "deviceName": "Nom de l'appareil",
+ "deviceUseType": "Type d'utilisation de l'appareil",
+ "enrollmentState": "État de l'inscription",
+ "intuneDevice": "Appareil Intune associé",
+ "lastContacted": "Dernier contact",
+ "make": "Fabricant",
+ "model": "Modèle",
+ "profile": "Profil affecté",
+ "profileStatus": "État du profil",
+ "purchaseOrderId": "Bon de commande",
+ "resourceAccount": "Compte de ressource",
+ "serialNumber": "Numéro de série",
+ "userPrincipalName": "Utilisateur"
+ },
+ "SurfaceHub": {
+ "friendlyNameRequired": "Un nom convivial est requis",
+ "pwdRequired": "Un mot de passe est requis",
+ "upnRequired": "Un compte d’appareil est requis",
+ "upnValidFormat": "Les valeurs peuvent contenir des lettres (a-z, A-Z), des chiffres (0-9) et des traits d’union. Les valeurs ne peuvent pas inclure d’espace vide."
+ }
+ },
+ "DeviceUseType": {
+ "meetingAndPresentation": "Réunion et présentation",
+ "teamCollaboration": "Collaboration en équipe"
+ },
+ "Devices": {
+ "featureDescription": "Windows Autopilot vous permet de personnaliser l'expérience OOBE pour vos utilisateurs.",
+ "importErrorStatus": "Certains appareils n'ont pas été importés. Cliquez ici pour plus d'informations.",
+ "importPendingStatus": "Importation en cours. Temps écoulé : {0} min. Ce processus peut prendre jusqu'à {1} min."
+ },
+ "DirectoryService": {
+ "activeDirectoryAD": "Jointure hybride Azure AD",
+ "activeDirectoryADLabel": "Azure AD Hybride avec Autopilot",
+ "azureAD": "Joint à Azure AD",
+ "unknownType": "Type inconnu"
+ },
+ "Filter": {
+ "enrollmentState": "État",
+ "profile": "État du profil"
+ },
+ "OOBE": {
+ "AddressableUserName": {
+ "validateEmpty": "Le nom convivial d'utilisateur ne peut pas être vide."
+ },
+ "ApplyComputerNameTemplate": {
+ "infoBalloon": "Créez un modèle de nommage pour ajouter des noms à vos appareils pendant l'inscription.",
+ "label": "Appliquer le modèle de nom d'appareil"
+ },
+ "ApplyComputerNameTemplateDisabled": {
+ "label": "Pour le type de profils de déploiement Autopilot avec jointure hybride Azure AD, les appareils sont nommés en utilisant les paramètres spécifiés dans la configuration de jonction de domaine."
+ },
+ "ComputerNameTemplate": {
+ "emptyValue": "MyCompany-%RAND:4%",
+ "label": "Entrer un nom",
+ "noDisallowedChars": "Le nom doit contenir uniquement des caractères alphanumériques, des traits d'union, %SERIAL% ou %RAND:x%",
+ "serialLength": "Impossible d'utiliser plus de 7 caractères avec %SERIAL%",
+ "validateLessThan15Chars": "Le nom doit avoir 15 caractères maximum",
+ "validateNoSpaces": "Les noms d'ordinateur ne peuvent pas contenir d'espace",
+ "validateNotAllNumbers": "Le nom doit également contenir des lettres et/ou des traits d'union",
+ "validateNotEmpty": "Le nom ne peut pas être vide",
+ "validateOnlyOneMacro": "Le nom doit contenir uniquement une %SERIAL% ou une %RAND:x%"
+ },
+ "ConfigureComputerNameTemplate": {
+ "description": "Créez un nom unique pour vos appareils. Les noms doivent avoir 15 caractères maximum et peuvent contenir des lettres (a-z, A-Z), des chiffres (0-9) et des traits d'union. Ils ne doivent pas contenir uniquement des chiffres. Les noms ne peuvent pas contenir d'espace vide. Utilisez la macro %SERIAL% pour ajouter un numéro de série propre au matériel. Vous pouvez également utiliser la macro %RAND:x% pour ajouter une chaîne aléatoire de chiffres, où x est égal au nombre de chiffres à ajouter."
+ },
+ "EnableWhiteGlove": {
+ "infoBalloon": "Autoriser l'exécution d'OOBE sans authentification utilisateur pour inscrire l'appareil et provisionner tous les paramètres et applications du contexte système en appuyant 5 fois sur la touche Windows. Les applications et paramètres du contexte utilisateur seront remis au moment de la connexion de l'utilisateur.",
+ "label": "Autoriser le déploiement préconfiguré"
+ },
+ "HybridAzureADSkipConnectivityCheck": {
+ "infoBalloon": "Le flux AutoPilot Azure AD Hybride joint se poursuivra même s’il n’établit pas de connectivité aucontrôleur de domaine lors de l’installation de OOBE.",
+ "label": "Ignorer la vérification de connectivité AD (préversion)"
+ },
+ "accountType": "Type de compte d'utilisateur",
+ "accountTypeInfo": "Spécifie si les utilisateurs sont des administrateurs ou des utilisateurs standard sur l'appareil. Notez que ce paramètre ne s'applique pas aux comptes d'administrateur général ou d'administrateur de la société. Ces comptes ne peuvent pas être des utilisateurs standard, car ils ont accès à toutes les fonctionnalités d'administration dans Azure AD.",
+ "configOOBEInfo": "\r\nConfigurer l'expérience par défaut (out-of-box) pour vos appareils Autopilot\r\n
",
+ "configureDevice": "Mode de déploiement",
+ "configureDeviceHintForSurfaceHub2": "Autopilot prend uniquement en charge le mode de déploiement automatique pour Surface Hub 2. Ce mode n'associe pas l'utilisateur à l'appareil inscrit et n'a donc pas besoin des informations d'identification de l'utilisateur.",
+ "configureDeviceHintForWindowsPC": "\r\n Le mode de déploiement contrôle si un utilisateur doit fournir des informations d'identification pour provisionner l'appareil.\r\n
\r\n \r\n - \r\n Géré par l'utilisateur : L'appareil est associé à l'utilisateur qui effectue l'inscription et doit fournir ses informations d'identification pour provisionner l'appareil\r\n
\r\n - \r\n Auto-déploiement (préversion) : L'appareil n'est pas associé à l'utilisateur qui effectue l'inscription et les informations d'identification de l'utilisateur ne sont pas nécessaires pour provisionner l'appareil\r\n
\r\n
",
+ "createSurfaceHub2Info": "Configurez les paramètres d'inscription Autopilot pour vos appareils Surface Hub 2. Par défaut, Autopilot permet d'ignorer l'authentification utilisateur pendant l'expérience OOBE. Découvrez-en plus sur Windows Autopilot pour Surface Hub 2.",
+ "createWindowsPCInfo": "\r\n\r\nLes options suivantes sont automatiquement activées pour les appareils Autopilot en mode de déploiement automatique :\r\n
\r\n\r\n - \r\n Ignorer la sélection d'utilisation professionnelle ou personnelle\r\n
\r\n - \r\n Ignorer l'inscription OEM et la configuration de OneDrive\r\n
\r\n - \r\n Ignorer l'authentification de l'utilisateur dans OOBE\r\n
\r\n
",
+ "endUserDevice": "Géré par l'utilisateur",
+ "hideEscapeLink": "Masquer les options de changement de compte",
+ "hideEscapeLinkInfo": "Les options permettant de changer de compte et de recommencer avec un autre compte apparaissent, respectivement, pendant l'installation initiale de l'appareil dans la page de connexion de l'entreprise et dans la page des erreurs de domaine. Pour masquer ces options, vous devez configurer la personnalisation de l'entreprise dans Azure Active Directory (nécessite Windows 10, 1809 ou version ultérieure ou Windows 11).",
+ "info": "Les paramètres du profil AutoPilot définissent l'expérience OOBE (Out-of-Box Experience) que les utilisateurs voient au premier démarrage de Windows. ",
+ "language": "Langue (région)",
+ "languageInfo": "Spécifiez la langue et la région à utiliser.",
+ "licenseAgreement": "Termes du contrat de licence logiciel Microsoft",
+ "licenseAgreementInfo": "Indiquez si le CLUF est présenté aux utilisateurs.",
+ "plugAndForgetDevice": "Auto-déploiement (préversion)",
+ "plugAndForgetGA": "Déploiement automatique",
+ "privacySettingWarning": "La valeur par défaut pour la collecte des données de diagnostic a changé pour les appareils exécutant Windows 10, version 1903 ou ultérieure ou Windows 11. ",
+ "privacySettings": "Paramètres de confidentialité",
+ "privacySettingsInfo": "Indiquez si les paramètres de confidentialité sont présentés aux utilisateurs.",
+ "showCortanaConfigurationPage": "Configuration de Cortana",
+ "showCortanaConfigurationPageInfo": "L'option Afficher active l'introduction de la configuration de Cortana au démarrage.",
+ "skipEULAWarning": "Informations importantes sur le masquage des termes du contrat de licence",
+ "skipKeyboardSelection": "Configurer automatiquement le clavier",
+ "skipKeyboardSelectionInfo": "Si la valeur est true, ignorez la page de sélection du clavier quand la langue est définie.",
+ "subtitle": "Profils AutoPilot",
+ "title": "OOBE (Out-Of-Box Experience)",
+ "useOSDefaultLanguage": "Système d'exploitation par défaut",
+ "userSelect": "Sélection de l’utilisateur"
+ },
+ "Sync": {
+ "lastRequestedLabel": "Dernière demande de synchronisation",
+ "lastSuccessfulLabel": "Dernière synchronisation effectuée",
+ "syncInProgress": "La synchronisation est en cours. Revenez un peu plus tard.",
+ "syncInitiated": "Synchronisation des paramètres AutoPilot lancée.",
+ "syncSettingsTitle": "Synchroniser les paramètres AutoPilot"
+ },
+ "Title": {
+ "devices": "Appareils Windows AutoPilot"
+ },
+ "Tooltips": {
+ "addressableUserName": "Nom de bienvenue affiché lors de l'installation de l'appareil.",
+ "azureADDevice": "Accédez aux détails de l'appareil associé. N/A signifie qu'aucun appareil n'est associé.",
+ "batch": "Attribut de chaîne qui permet d'identifier un groupe d’appareils. Le champ de balise de groupe de Intune est associé à l’attribut OrderID sur les appareils Azure AD.",
+ "dateAssigned": "Horodatage de l'affectation du profil à l'appareil.",
+ "deviceAccountFriendlyName": "Nom convivial du compte d’appareil pour les appareils Surface Hub",
+ "deviceAccountPwd": "Mot de passe du compte d’appareil pour les appareils Surface Hub",
+ "deviceAccountUpn": "E-mail de compte d’appareil pour les appareils Surface Hub",
+ "deviceDisplayName": "Configurez un nom unique pour un appareil. Ce nom sera ignoré dans les déploiements avec jointure hybride Azure AD. Le nom de l’appareil est toujours issu du profil de jonction de domaine pour les appareils Azure AD Hybride.",
+ "deviceName": "Nom affiché quand un utilisateur tente de découvrir l'appareil et de s'y connecter.",
+ "deviceUseType": " L'appareil est configuré en fonction de votre choix. Vous pouvez toujours changer la configuration par la suite dans les paramètres.\r\n \r\n - Pour les réunions et les présentations, Windows Hello n'est pas activé et les données sont supprimées après chaque session.\r\n
\r\n - Pour la collaboration en équipe, Windows Hello est activé et les profils sont enregistrés pour une connexion rapide
\r\n
",
+ "enrollmentState": "Spécifie si l'appareil est inscrit.",
+ "intuneDevice": "Accédez aux détails de l'appareil associé. N/A signifie qu'aucun appareil n'est associé.",
+ "lastContacted": "Horodatage de la dernière fois où l'appareil a été contacté.",
+ "make": "Fabricant de l'appareil sélectionné.",
+ "model": "Modèle de l'appareil sélectionné",
+ "profile": "Nom du profil affecté à l'appareil.",
+ "profileStatus": "Spécifie si un profil est affecté à l'appareil.",
+ "purchaseOrderId": "ID de bon de commande",
+ "resourceAccount": "Identité de l'appareil ou nom d'utilisateur principal (UPN).",
+ "serialNumber": "Numéro de série de l'appareil sélectionné.",
+ "userPrincipalName": "Utilisateur pour prérenseigner l'authentification pendant l'installation de l'appareil."
+ },
+ "allDevices": "Tous les appareils",
+ "allDevicesAlreadyAssignedError": "Un profil Autopilot est déjà affecté à tous les appareils.",
+ "assignFailedDescription": "Échec de mise à jour des affectations de {0}.",
+ "assignFailedTitle": "Échec de mise à jour des affectations de profil AutoPilot.",
+ "assignSuccessDescription": "Affectations mises à jour pour {0}.",
+ "assignSuccessTitle": "Affectations de profil AutoPilot mises à jour.",
+ "assignSufaceHub2ProfileNextStep": "Étapes suivantes pour ce déploiement",
+ "assignSurfaceHub2ProfileToDeviceGroup": "1. Affecter ce profil à au moins un groupe d'appareils",
+ "assignSurfaceHub2ProfileToResourceAccount": "2. Affecter un compte de ressource à chaque appareil Surface Hub sur lequel vous déployez ce profil",
+ "assignedDevicesCount": "Appareils attribués",
+ "assignedDevicesResourceAccountDescription": "Pour déployer ce profil sur un appareil, vous devez attribuer un compte de ressource à l'appareil. Sélectionnez un appareil à la fois pour lui attribuer un compte de ressource existant ou pour en créer un. En savoir plus sur les comptes de ressource
",
+ "assignedDevicesResourceAccountStatusBarMessage": "Ce tableau liste uniquement les appareils Surface Hub 2 auxquels ce profil a été attribué.",
+ "assigningDescription": "Mise à jour des affectations de {0}.",
+ "assigningTitle": "Mise à jour des affectations de profil AutoPilot.",
+ "autoremediationContext": "We've detected a hardware change on this device. We're trying to automatically register the new hardware. You don't need to do anything now; the status will be updated at the next check in with the result. Learn more about resetting the profile.",
+ "autoremediationTitle": "Device {0} has a fix pending",
+ "cannotDeleteMessage": "Ce profil est affecté à des groupes. Vous devez annuler l'affectation de tous les groupes de ce profil pour pouvoir le supprimer.",
+ "cannotDeleteTitle": "Impossible de supprimer {0}",
+ "createdDateTime": "Création",
+ "deleteMessage": "Si vous supprimez ce profil AutoPilot, tous les appareils affectés à ce profil apparaîtront avec l'état « Non affecté ».",
+ "deleteMessageWithPolicySet": "{0} est incluse dans un ou plusieurs ensembles de stratégies. Si vous supprimez {0}, vous ne serez plus en mesure de l'affecter par l'intermédiaire de ces ensembles de stratégies.",
+ "deleteTitle": "Voulez-vous vraiment supprimer ce profil ?",
+ "description": "Description",
+ "deviceType": "Type de périphérique",
+ "deviceUse": "Utilisation de l'appareil",
+ "directoryServiceHintForSurfaceHub2": " \r\n Autopilot prend en charge uniquement une jonction à Azure AD pour les appareils Surface Hub 2. Spécifiez le type de jonction Active Directory (AD) pour les appareils de votre organisation.\r\n
\r\n \r\n - \r\n Joint à Azure AD : Cloud uniquement sans instance locale de Windows Server Active Directory.\r\n
\r\n
\r\n ",
+ "directoryServiceHintForWindowsPC": "\r\n \r\n Spécifiez le mode de jonction des appareils à Active Directory (AD) dans votre organisation :\r\n
\r\n \r\n - \r\n Joint à Azure AD : cloud uniquement sans Windows Server Active Directory local\r\n
\r\n
\r\n ",
+ "getAssignedDevicesCountError": "Une erreur s'est produite pendant la récupération du nombre d'appareils affectés.",
+ "getAssignmentsError": "Une erreur s'est produite pendant la récupération des affectations de profil AutoPilot.",
+ "harvestDeviceId": "Convertir tous les appareils ciblés en Autopilot",
+ "harvestDeviceIdDescription": "Par défaut, ce profil est applicable seulement aux appareils Autopilot synchronisés à partir du service Autopilot.",
+ "harvestDeviceIdInfo": "\r\n Sélectionnez Oui pour inscrire tous les appareils ciblés à Autopilot s'ils ne le sont pas déjà. La prochaine fois que les appareils inscrits utilisent l'expérience OOBE, ils sont dirigés vers le scénario Autopilot affecté.\r\n
\r\n Notez que certains scénarios Autopilot nécessitent des builds minimales spécifiques. Vérifiez que votre appareil dispose de la build minimale nécessaire pour utiliser le scénario.\r\n
\r\n La suppression de ce profil ne supprime pas les appareils concernés dans Autopilot. Pour supprimer un appareil dans Autopilot, utilisez la vue Appareils Windows Autopilot.\r\n ",
+ "harvestDeviceIdWarning": "Pour rétablir des appareils après la conversion, vous devez les supprimer de la liste des appareils Autopilot.",
+ "holoLensCommandMenu": "HoloLens",
+ "info": "Les profils Windows AutoPilot Deployment vous permettent de personnaliser l'expérience OOBE (Out-of-Box Experience) sur vos appareils.",
+ "invalidProfileNameMessage": "Le caractère « {0} » n'est pas autorisé",
+ "joinTypeLabel": "Joindre Azure AD comme",
+ "lastModifiedDateTime": "Dernière modification le :",
+ "manualRemediationContext": "We've detected a hardware change on this device. It won't automatically receive an Autopilot profile when it's reset unless you register the device again. Learn more about resetting the profile.",
+ "manualRemediationTitle": "Device {0} needs your attention",
+ "name": "Nom",
+ "noAutopilotProfile": "Aucun profil AutoPilot",
+ "notEnoughPermissionAssignedError": "Vous n'avez pas les autorisations suffisantes pour affecter ce profil à un ou plusieurs groupes sélectionnés. Contactez votre administrateur.",
+ "profile": "profil",
+ "resourceAccountStatusBarMessage": "Un compte de ressource est obligatoire pour chaque appareil Surface Hub 2 sur lequel ce profil est déployé. Cliquez pour en savoir plus.",
+ "selectServices": "Sélectionner le service d'annuaire que joindront les appareils",
+ "surfaceHub2CommandMenu": "Surface Hub 2",
+ "surfaceHub2SCommandMenu": "Surface Hub 2S",
+ "userAffinityLabel": "Mode de déploiement",
+ "windowsPCCommandMenu": "PC Windows",
+ "directoryServiceLabel": "Joindre à Azure AD comme"
},
- "CategoryDescription": {
- "androidGeneralApplicationRestrictions": "Utilisez ces paramètres pour savoir quels utilisateurs installent des applications dont l'utilisation n'est pas approuvée dans votre entreprise. Sélectionnez le type de liste d'applications restreintes :
\r\n Applications interdites - Liste des applications pour lesquelles vous voulez être informé quand elles sont installées par les utilisateurs.
\r\n Applications approuvées - Liste des applications dont l'utilisation est approuvée dans votre entreprise. Quand les utilisateurs installent une application qui n'est pas dans cette liste, vous en êtes informé.
\r\n ",
- "androidZebraMxZebraMx": "Configurez les appareils Zebra en chargeant un profil MX au format XML.",
- "iosDeviceFeaturesAirprint": "Utilisez ces paramètres pour configurer la connexion automatique des appareils iOS aux imprimantes compatibles AirPrint sur votre réseau. Vous devrez indiquer l'adresse IP et le chemin de ressource de vos imprimantes.",
- "iosDeviceFeaturesExtensibleSingleSignOn": "Configurez une extension d’application qui active l’authentification unique (SSO) pour les appareils exécutant iOS 13.0 ou version ultérieure.",
- "iosDeviceFeaturesHomeScreenLayout": "Configurez la disposition du dock et des écrans d’accueil sur les appareils iOS. Certains appareils peuvent limiter le nombre d’éléments affichables.",
- "iosDeviceFeaturesIOSWallpaper": "Affichez une image destinée à l’écran d’accueil et/ou l’écran de verrouillage des appareils iOS.\r\n Pour afficher une image unique dans chaque emplacement, créez un profil avec l’image de l’écran de verrouillage et un autre avec l’image de l’écran d’accueil.\r\n Affectez ensuite les deux profils à vos utilisateurs.\r\n
\r\n \r\n - Taille de fichier max. : 750 Ko
\r\n - Type de fichier : PNG, JPG ou JPEG
\r\n
\r\n ",
- "iosDeviceFeaturesNotifications": "Spécifiez les paramètres de notification pour les applications. Prend en charge iOS 9.3 et ultérieur.",
- "iosDeviceFeaturesSharedDevice": "Spécifiez le texte facultatif affiché sur l'écran verrouillé. Il est pris en charge sur iOS 9.3 et ultérieur. En savoir plus",
- "iosGeneralApplicationRestrictions": "Utilisez ces paramètres pour savoir quels utilisateurs installent des applications dont l'utilisation n'est pas approuvée dans votre entreprise. Sélectionnez le type de liste d'applications restreintes :
\r\n Applications interdites - Liste des applications pour lesquelles vous voulez être informé quand elles sont installées par les utilisateurs.
\r\n Applications approuvées - Liste des applications dont l'utilisation est approuvée dans votre entreprise. Quand les utilisateurs installent une application qui n'est pas dans cette liste, vous en êtes informé.
\r\n ",
- "iosGeneralApplicationVisibility": "Utilisez la liste des applications affichées pour spécifier les applications iOS que l'utilisateur peut afficher ou lancer. Utilisez la liste des applications masquées pour spécifier les applications iOS que l'utilisateur ne peut pas afficher ou lancer.",
- "iosGeneralAutonomousSingleAppMode": "Les applications que vous ajoutez à cette liste et que vous affectez à un appareil peuvent verrouiller l'appareil pour qu'il exécute uniquement cette application au démarrage, ou verrouiller l'appareil quand une action spécifique est exécutée (par exemple, un test). Quand l'action est terminée, ou si vous annulez la restriction, l'appareil retourne à l'état normal.",
- "iosGeneralKiosk": "Le mode kiosque verrouille plusieurs paramètres sur un appareil ou spécifie l'application unique que les utilisateurs peuvent exécuter sur un appareil. Ce mode est utile dans certains environnements, par exemple, un magasin où vous présentez un appareil sur lequel doit s'exécuter uniquement une application de démonstration.",
- "macDeviceFeaturesAirprint": "Utilisez ces paramètres pour configurer la connexion automatique des appareils macOS aux imprimantes compatibles AirPrint sur votre réseau. Vous aurez besoin de l'adresse IP et du chemin de ressource de vos imprimantes.",
- "macDeviceFeaturesAssociatedDomains": "Configurez les domaines associés pour qu’ils partagent les données et les informations d’identification de connexion entre les applications et sites web de votre organisation. Ce profil peut être appliqué aux appareils qui exécutent macOS 10.15 ou version ultérieure.",
- "macDeviceFeaturesExtensibleSingleSignOn": "Configurez une extension d’application qui active l’authentification unique (SSO) pour les appareils qui exécutent macOS 10.15 ou version ultérieure.",
- "macDeviceFeaturesLoginItems": "Choisissez les applications, les fichiers et les dossiers à ouvrir quand les utilisateurs se connectent à leurs appareils. Si vous ne voulez pas que les utilisateurs changent le mode d'ouverture des applications sélectionnées, vous pouvez masquer l'application dans la configuration utilisateur.",
- "macDeviceFeaturesLoginWindow": "Configurez l'apparence de l'écran de connexion macOS et les fonctions disponibles pour les utilisateurs avant et après leur connexion.",
- "macExtensionsKernelExtensions": "Utilisez ces paramètres pour configurer la stratégie d'extension du noyau sur les appareils macOS exécutant la version 10.13.2 ou ultérieure.",
- "macGeneralDomains": "Les e-mails reçus ou envoyés par l'utilisateur qui ne correspondent pas aux domaines que vous spécifiez ici sont marqués comme non approuvés.",
- "windows10EndpointProtectionApplicationGuard": "Pendant l'utilisation de Microsoft Edge, Microsoft Defender Application Guard protège votre environnement des sites qui n'ont pas été définis comme approuvés par votre organisation. Quand des utilisateurs visitent des sites non listés dans les limites de votre réseau isolé, les sites sont ouverts dans une session de navigation virtuelle dans Hyper-V. Les sites approuvés sont définis par une limite réseau, qui peut être configurée dans Configuration de l'appareil. Notez que cette fonctionnalité est disponible seulement pour les appareils exécutant Windows 10,64 bits ou une version ultérieure.",
- "windows10EndpointProtectionCredentialGuard": "L'activation de Credential Guard active les paramètres obligatoires suivants :\r\n
\r\n \r\n - Activer la sécurité basée sur la virtualisation : active la sécurité basée sur la virtualisation (VBS) au prochain redémarrage. La sécurité basée sur la virtualisation utilise l'hyperviseur Windows pour prendre en charge les services de sécurité.
\r\n
\r\n - Démarrage sécurisé avec accès direct à la mémoire : active VBS avec le démarrage sécurisé et l'accès direct à la mémoire (DMA).
\r\n
\r\n ",
- "windows10EndpointProtectionDeviceGuard": "Choisissez d'autres applications devant être auditées ou dont l'exécution peut être approuvée par Microsoft Defender Application Control. L'exécution des composants Windows et de toutes les applications du Windows Store est automatiquement approuvée.
\r\n Les applications ne sont pas bloquées quand elles s'exécutent en mode « Audit uniquement ». Le mode « Audit uniquement » journalise tous les événements dans les journaux du client local.\r\n ",
- "windows10GeneralPrivacyPerApp": "Ajoutez des applications qui doivent avoir un comportement de confidentialité différent de celui défini dans « Confidentialité par défaut ».",
- "windows10NetworkBoundaryNetworkBoundary": "La limite réseau correspond à la liste des ressources d'entreprise, comme le domaine hébergé dans le cloud et les plages d'adresses IP, accessibles aux ordinateurs du réseau d'entreprise. Définissez des limites réseau pour appliquer des stratégies visant à protéger les données dans ces emplacements.",
- "windowsHealthMonitoring": "Configurez la stratégie de monitoring de l’intégrité de Windows.",
- "windowsPhoneGeneralApplicationRestrictions": "Windows Phone peut empêcher les utilisateurs d'installer ou de lancer les applications spécifiées dans la liste des applications interdites ou celles non spécifiées dans la liste des applications approuvées. Toutes les applications gérées doivent être ajoutées à la liste approuvée."
- },
"MinimumOperatingSystem": {
"Android": {
"v10": "Android 10.0",
@@ -2435,6 +1154,304 @@
"excludedGroups": "Groupes exclus",
"licenseType": "Type de licence"
},
+ "TAP": {
+ "AccessRequirements": {
+ "infoText": "Configurez les critères de code PIN et d'informations d'identification que les utilisateurs doivent respecter pour pouvoir accéder aux applications dans un contexte de travail."
+ },
+ "DataProtection": {
+ "infoText": "Ce groupe comprend les contrôles de protection contre la perte de données (DLP), par exemple, les restrictions des opérations couper, copier, coller et enregistrer sous. Ces paramètres déterminent comment les utilisateurs interagissent avec les données dans l'application."
+ },
+ "DeviceTypes": {
+ "selectOne": "Sélectionnez au moins un type de périphérique."
+ },
+ "TargetedApps": {
+ "TargetToAll": {
+ "label": "Cibler les applications sur tous les types d'appareil"
+ },
+ "infoText": "Choisissez la façon dont vous souhaitez appliquer cette stratégie aux applications sur différents appareils. Ensuite, ajoutez au moins une application.",
+ "selectOne": "Sélectionnez au moins une application pour créer une stratégie."
+ }
+ },
+ "AssignmentAction": {
+ "exclude": "Exclu",
+ "include": "Inclus",
+ "includeAllDevicesVirtualGroup": "Inclus",
+ "includeAllUsersVirtualGroup": "Inclus"
+ },
+ "AppType": {
+ "androidEnterpriseSystemApp": "Application système Android Enterprise",
+ "androidForWorkApp": "Application du store Google Play géré",
+ "androidLobApp": "Application métier Android",
+ "androidStoreApp": "Application de l'Android Store",
+ "builtInAndroid": "Application Android intégrée",
+ "builtInApp": "Application intégrée",
+ "builtInIos": "Application iOS intégrée",
+ "default": "",
+ "iosLobApp": "Application métier iOS",
+ "iosStoreApp": "Application de l'App Store iOS",
+ "iosVppApp": "Application du programme d'achat en volume (VPP) iOS",
+ "lineOfBusinessApp": "Application métier",
+ "macOSDmgApp": "macOS app (.DMG)",
+ "macOSEdgeApp": "Microsoft Edge (macOS)",
+ "macOSLobApp": "Application métier macOS",
+ "macOSMdatpApp": "Microsoft Defender ATP (macOS)",
+ "macOSOfficeSuiteApp": "Applications Microsoft 365 (macOS)",
+ "macOsVppApp": "Application du programme d'achat en volume macOS",
+ "managedAndroidLobApp": "Application métier Android gérée",
+ "managedAndroidStoreApp": "Application de l'Android Store gérée",
+ "managedGooglePlayApp": "Application du store Google Play géré",
+ "managedGooglePlayPrivateApp": "Application privée Google Play géré",
+ "managedGooglePlayWebApp": "Lien web à Google Play géré",
+ "managedIosLobApp": "Application métier iOS gérée",
+ "managedIosStoreApp": "Application de l'App Store iOS gérée",
+ "microsoftStoreForBusinessApp": "Application du Microsoft Store pour Entreprises",
+ "microsoftStoreForBusinessReleaseManagedApp": "Microsoft Store pour Entreprises",
+ "officeSuiteApp": "Applications Microsoft 365 (Windows 10 et versions ultérieures)",
+ "webApp": "Lien web",
+ "windowsAppXLobApp": "Application métier appx Windows",
+ "windowsClassicApp": "Application Windows (Win32)",
+ "windowsEdgeApp": "Microsoft Edge (Windows 10 et versions ultérieures)",
+ "windowsMobileMsiLobApp": "Application métier MSI Windows",
+ "windowsPhone81AppXBundleLobApp": "Application métier appx Windows Phone 8.1",
+ "windowsPhone81AppXLobApp": "Application métier appx Windows Phone 8.1",
+ "windowsPhone81StoreApp": "Application du Windows Phone 8.1 Store",
+ "windowsPhoneXapLobApp": "Application métier XAP Windows Phone",
+ "windowsStoreApp": "Application de Microsoft Store",
+ "windowsUniversalAppXLobApp": "Application métier appx Windows Universal",
+ "windowsUniversalLobApp": "Application métier Windows universelle"
+ },
+ "TAPSettings": {
+ "AllowedDataIngestionLocations": {
+ "label": "Autoriser les utilisateurs à ouvrir des données à partir des services sélectionnés",
+ "tooltip": "Sélectionnez les services de stockage d'application depuis lesquels les utilisateurs peuvent ouvrir des données. Tous les autres services sont bloqués. Si aucun service n'est sélectionné, les utilisateurs ne pourront pas ouvrir de données."
+ },
+ "AndroidBackup": {
+ "label": "Sauvegarder les données d'organisation sur les services de sauvegarde Android",
+ "tooltip": "Sélectionnez {0} pour empêcher la sauvegarde des données d'organisation sur les services de sauvegarde Android. \r\nSélectionnez {1} pour autoriser la sauvegarde des données d'organisation sur les services de sauvegarde Android. \r\nLes données personnelles ou non gérées ne sont pas affectées."
+ },
+ "AndroidBiometricAuthentication": {
+ "label": "Accès par biométrie plutôt que par code confidentiel",
+ "tooltip": "Choisissez les méthodes d’authentification Android que les personnes peuvent utiliser, le cas échéant, à la place d’un code confidentiel d’application."
+ },
+ "AndroidFingerprint": {
+ "label": "Accès par empreinte digitale plutôt que par code PIN (Android 6.0+)",
+ "tooltip": "Le système d'exploitation Android utilise les scanneurs d'empreintes digitales pour authentifier les utilisateurs d'appareils Android. Cette fonctionnalité prend en charge les contrôles biométriques natifs des appareils Android. Les paramètres biométriques propres aux OEM, comme Samsung Pass, ne sont pas pris en charge. S'ils sont autorisés, les contrôles biométriques natifs doivent être utilisés pour accéder à l'application sur un appareil compatible."
+ },
+ "AndroidOverrideFingerprint": {
+ "label": "Remplacer l'empreinte digitale par le code PIN au terme du délai d'attente"
+ },
+ "AppPIN": {
+ "label": "Code PIN de l'application quand le code PIN de l'appareil est défini",
+ "tooltip": "S'il n'est pas obligatoire, le code PIN d'application n'est pas nécessaire pour accéder à l'application si le code PIN d'appareil est défini sur un appareil inscrit à MDM.
\r\n\r\nRemarque : Intune ne peut pas détecter l'inscription d'appareils à une solution EMM tierce sur Android."
+ },
+ "BlockDataIngestionIntoOrganizationDocuments": {
+ "label": "Ouvrir les données dans les documents d’organisation",
+ "tooltip1": "Sélectionnez Bloquer pour désactiver l’utilisation de l’option Ouvrir ou d’autres options de partage de données entre les comptes de cette application. Sélectionnez Autoriser si vous souhaitez autoriser l’utilisation de l'option Ouvrir et d’autres options pour partager des données entre les comptes de cette application.",
+ "tooltip2": "Lorsque la valeur Bloquer est sélectionnée, vous pouvez configurer le paramètre suivant, Autoriser l’utilisateur à ouvrir des données à partir des services sélectionnés, pour spécifier les services autorisés pour les emplacements de données d’organisation.",
+ "tooltip3": "Remarque : ce paramètre est appliqué uniquement si le paramètre « Recevoir des données d'autres applications » est défini sur « Applications gérées par la stratégie ».
\r\nRemarque : ce paramètre ne s’applique pas à toutes les applications. Pour plus d’informations, consultez {0}.",
+ "tooltip4": "Remarque : ce paramètre est appliqué uniquement si le paramètre « x00a0Recevoir des données d'autres applications » est défini sur « Applications gérées par la stratégie ».
\r\nRemarque : ce paramètre ne s’applique pas à toutes les applications. Pour plus d’informations, consultez {0} ou {0}."
+ },
+ "ConnectToVpnOnLaunch": {
+ "label": "Démarrer la connexion Microsoft Tunnel au lancement de l'application",
+ "tooltip": "Autoriser la connexion au VPN au lancement de l'application"
+ },
+ "CredentialsForAccess": {
+ "label": "Informations d'identification du compte professionnel ou scolaire pour l'accès",
+ "tooltip": "Si vous choisissez cette option, vous devez fournir des informations d'identification professionnelles ou scolaires pour accéder à l'application gérée par stratégie. Si un code PIN ou des méthodes biométriques sont également nécessaires pour accéder à l'application, les informations d'identification du compte professionnel ou scolaire doivent être fournies en plus de ces invites."
+ },
+ "CustomBrowserDisplayName": {
+ "label": "Nom du navigateur non géré",
+ "tooltip": "Entrez le nom d'application du navigateur associé à l'« ID de navigateur non géré ». Ce nom est montré aux utilisateurs si le navigateur spécifié n'est pas installé."
+ },
+ "CustomBrowserPackageId": {
+ "label": "ID de navigateur non géré",
+ "tooltip": "Entrez l'ID d’application d'un seul navigateur. Le contenu web (http/s) des applications gérées par la stratégie s'ouvre dans le navigateur spécifié."
+ },
+ "CustomBrowserProtocol": {
+ "label": "Protocole de navigateur non géré",
+ "tooltip": "Entrez le protocole d'un seul navigateur non géré. Le contenu web (http/s) des applications gérées par la stratégie s'ouvre dans toutes les applications qui prennent en charge ce protocole.
\r\n \r\nRemarque : Spécifiez uniquement le préfixe du protocole. Si votre navigateur nécessitent des liens au format « mybrowser://www.microsoft.com », entrez « mybrowser ».
"
+ },
+ "CustomDialerAppDisplayName": {
+ "label": "Nom de l’application de numérotation"
+ },
+ "CustomDialerAppPackageId": {
+ "label": "ID du package de l’application de numérotation"
+ },
+ "CustomDialerAppProtocol": {
+ "label": "Modèle d’URL de l’application de numérotation"
+ },
+ "Cutcopypaste": {
+ "label": "Limiter les opérations couper, copier et coller entre les autres applications",
+ "tooltip": "Coupez, copiez et collez des données entre votre application et d'autres applications approuvées installées sur l'appareil. Choisissez de bloquer complètement ces actions entre applications, d'autoriser leur utilisation avec n'importe quelle application ou de limiter leur utilisation aux applications gérées par votre organisation.
\r\n\r\nL'option Applications gérées par une stratégie avec Coller dans permet d'accepter le contenu entrant collé à partir d'une autre application. Toutefois, les utilisateurs ne peuvent pas partager le contenu à l'extérieur, sauf avec une application gérée.
"
+ },
+ "DialerRestrictionLevel": {
+ "iosTooltip": "En général, quand un utilisateur sélectionne un numéro de téléphone cliquable dans une application, une application de numérotation s’ouvre avec le numéro de téléphone prérempli et prêt à appeler. Pour ce paramètre, choisissez comment gérer ce type de transfert de contenu lorsqu’il est lancé à partir d’une application gérée par une stratégie. Des étapes supplémentaires peuvent être nécessaires pour que ce paramètre prenne effet. Vérifiez d’abord que tel et telprompt ont été supprimés de la liste Sélectionner des applications à exclure. Vérifiez ensuite que l’application utilise une version plus récente du kit de développement logiciel (SDK) Intune (version 12.7.0+).",
+ "label": "Transférer les données de télécommunications vers",
+ "tooltip": "En général, quand un utilisateur sélectionne un numéro de téléphone associé à un lien dans une application, une application de numéroteur s’ouvre avec le numéro de téléphone prérempli et prêt à appeler. Pour ce paramètre, choisissez comment gérer ce type de transfert de contenu lorsqu’il est lancé à partir d’une application gérée par une stratégie."
+ },
+ "EncryptData": {
+ "label": "Chiffrer les données d'organisation",
+ "link": "https://docs.microsoft.com/en-us/intune/app-protection-policy-settings-android#data-relocation-settings",
+ "tooltip": "Sélectionnez {0} pour appliquer le chiffrement de couche application Intune aux données d'organisation.\r\n
\r\nSélectionnez {1} pour ne pas appliquer le chiffrement de couche application Intune aux données d'organisation.\r\n\r\n
\r\nRemarque : Pour plus d'informations sur le chiffrement de couche application Intune, consultez {2}."
+ },
+ "EncryptDataAndroid": {
+ "tooltip": "Choisissez Exiger pour activer le chiffrement des données professionnelles ou scolaires dans cette application. Intune utilise un schéma de chiffrement AES 256 bits OpenSSL avec le système du magasin de clés Android pour chiffrer de manière sécurisée les données d'application. Les données sont chiffrées de manière synchrone pendant les tâches d'E/S de fichier. Le contenu dans le stockage de l'appareil est toujours chiffré. Le SDK continue à prendre en charge les clés 128 bits pour assurer la compatibilité avec le contenu et les applications qui utilisent les anciennes versions du SDK.
\r\n\r\nLa méthode de chiffrement est pas conforme à FIPS 140-2.
"
+ },
+ "EncryptDataIos": {
+ "tooltip1": "Choisissez Exiger pour activer le chiffrement des données professionnelles ou scolaires dans cette application. Intune applique le chiffrement des appareils iOS/iPadOS pour protéger les données d’application quand l’appareil est verrouillé. Les applications peuvent éventuellement chiffrer les données d’application à l’aide du chiffrement du SDK Intune APP. Le SDK Intune APP utilise les méthodes de chiffrement iOS/iPadOS pour appliquer un chiffrement AES 128 bits aux données d’application.",
+ "tooltip2": "Quand vous activez ce paramètre, l'utilisateur peut être invité à configurer et utiliser un code PIN pour accéder à son appareil. Si aucun code PIN ni chiffrement de l'appareil n'est demandé, l'utilisateur est invité à définir un code PIN avec le message « Votre organisation vous demande d'activer un code PIN de l'appareil pour pouvoir accéder à cette application. »",
+ "tooltip3": "Accédez à la documentation Apple officielle pour voir les modules de chiffrement iOS qui sont conformes à FIPS 140-2 ou dans l'attente d'une mise en conformité à FIPS 140-2."
+ },
+ "EncryptDataOnEnrolledDevices": {
+ "label": "Chiffrer les données d'organisation sur les appareils inscrits",
+ "tooltip": "Sélectionnez {0} pour appliquer le chiffrement de couche application Intune aux données d'organisation sur tous les appareils.
\r\n\r\nSélectionnez {1} pour ne pas appliquer le chiffrement de couche application Intune aux données d'organisation sur les appareils inscrits."
+ },
+ "IOSBackup": {
+ "label": "Sauvegarder les données d'organisation sur les sauvegardes iTunes et iCloud",
+ "tooltip": "Sélectionnez {0} pour empêcher la sauvegarde des données d'organisation sur iTunes ou iCloud. \r\nSélectionnez {1} pour autoriser la sauvegarde des données d'organisation sur iTunes ou iCloud. \r\nLes données personnelles ou non gérées ne sont pas affectées."
+ },
+ "IOSFaceID": {
+ "label": "Accès par Face ID plutôt que par code PIN (iOS 11+/iPadOS)",
+ "tooltip": "Face ID utilise la technologie de reconnaissance faciale pour authentifier les utilisateurs sur les appareils iOS/iPadOS. Intune appelle l’API LocalAuthentication pour authentifier les utilisateurs se servant de Face ID. S’il est autorisé, Face ID doit être utilisé pour accéder à l’application sur les appareils compatibles."
+ },
+ "IOSOverrideTouchId": {
+ "label": "Remplacer la biométrie par le code PIN au terme du délai d'attente"
+ },
+ "IOSTouchId": {
+ "label": "Accès par Touch ID plutôt que par code PIN (iOS 8+/iPadOS)",
+ "tooltip": "Touch ID utilise la technologie de reconnaissance des empreintes digitales pour authentifier les utilisateurs sur les appareils iOS. Intune appelle l'API LocalAuthentication pour authentifier les utilisateurs se servant de Touch ID. S'il est autorisé, Touch ID doit être utilisé pour accéder à l'application sur un appareil compatible."
+ },
+ "NotificationRestriction": {
+ "label": "Notifications de données d'organisation",
+ "tooltip": "Sélectionnez l'une des options suivantes pour spécifier comment sont affichées les notifications des comptes d'organisation dans cette application et sur tous les appareils connectés de type wearable :
\r\n{0} : Ne pas partager les notifications.
\r\n{1} : Ne pas partager de données d'organisation dans les notifications. Si cette option n'est pas prise en charge par l'application, les notifications sont bloquées.
\r\n{2} : Partager toutes les notifications.
\r\n Android uniquement :\r\n Remarque : Ce paramètre ne s'applique pas à toutes les applications. Pour plus d'informations, consultez {3}
\r\n \r\n iOS uniquement :\r\nRemarque : Ce paramètre ne s'applique pas à toutes les applications. Pour plus d'informations, consultez {4}
"
+ },
+ "OpenLinksManagedBrowser": {
+ "label": "Restreindre le transfert de contenu web à d'autres applications",
+ "tooltip": "Sélectionnez l'une des options suivantes pour spécifier les applications dans lesquelles cette application peut ouvrir du contenu Web :
\r\nEdge : Autoriser le contenu Web à s'ouvrir uniquement dans Edge
\r\nNavigateur non géré : Autoriser le contenu Web à s'ouvrir uniquement dans le navigateur non géré défini par le paramètre \"Protocole de navigateur non géré\"
\r\nToute application : Autoriser le Web liens dans n'importe quelle application
"
+ },
+ "OverrideBiometric": {
+ "tooltip": "Si vous choisissez cette option, une invite de code PIN remplace les invites biométriques au terme du délai d'attente (minutes d'inactivité). Si le délai d'attente n'arrive pas à son terme, l'invite biométrique continue de s'afficher. La valeur de délai d'attente doit être supérieure à la valeur spécifiée sous « Revérifier les exigences d'accès après (minutes d'inactivité) »."
+ },
+ "PinAccess": {
+ "label": "Accès par code PIN",
+ "tooltip": "Si vous choisissez cette option, un code PIN doit être utilisé pour accéder à l'application gérée par stratégie. Les utilisateurs doivent créer un code PIN d'accès la première fois qu'ils ouvrent l'application à partir d'un compte professionnel ou scolaire."
+ },
+ "PinLength": {
+ "label": "Sélectionner la longueur minimale du code PIN",
+ "tooltip": "Ce paramètre indique le nombre minimal de chiffres d'un code PIN."
+ },
+ "PinType": {
+ "label": "Type de code PIN",
+ "tooltip": "Les codes PIN numériques sont constitués entièrement de chiffres. Les codes secrets sont composés de caractères alphanumériques et de caractères spéciaux."
+ },
+ "Printing": {
+ "label": "Impression des données d'organisation",
+ "tooltip": "Si cette option est bloquée, l'application ne peut pas imprimer les données protégées."
+ },
+ "ReceiveData": {
+ "label": "Recevoir des données d'autres applications",
+ "tooltip": "Sélectionnez l'une des options suivantes pour spécifier les applications dont les données peuvent être reçues par cette application :
\r\n\r\nAucune : n'autorise pas la réception de données de documents ou comptes d'organisation provenant d'une autre application
\r\n\r\nApplications gérées par stratégie : autorise uniquement la réception de données de documents ou comptes d'organisation provenant d'autres applications gérées par stratégie\r\n
\r\nToutes les applications avec des données d'organisation entrantes : autorise la réception de données de documents ou comptes d'organisation provenant de n'importe quelle application et traite toutes les données entrantes sans compte d'utilisateur comme données d'organisation
\r\n\r\nToutes les applications : autorise la réception de données de documents ou comptes d'organisation provenant de n'importe quelle application"
+ },
+ "RecheckAccessAfter": {
+ "label": "Revérifier les exigences d'accès après (minutes d'inactivité)\r\n\r\n",
+ "tooltip": "Si l'application gérée par stratégie est inactive pendant une durée supérieure au nombre de minutes d'inactivité spécifié, l'application demande la revérification des conditions d'accès (p. ex. : code PIN, paramètres de lancement conditionnel) après le lancement de l'application."
+ },
+ "RestrictKeyboards": {
+ "duplicatePackageError": "L’ID de package doit être unique.",
+ "invalidPackageError": "ID de package non valide",
+ "label": "Claviers approuvés",
+ "select": "Sélectionner les claviers à approuver",
+ "subtitle": "Ajoutez tous les claviers et méthodes d’entrée que les utilisateurs sont autorisés à utiliser avec les applications ciblées. Entrez le nom du clavier tel que vous voulez qu’il apparaisse à l’utilisateur final.",
+ "title": "Ajouter des claviers approuvés",
+ "toolTip": "Sélectionnez l’option Exiger, puis spécifiez une liste de claviers approuvés pour cette stratégie. En savoir plus"
+ },
+ "SaveData": {
+ "label": "Enregistrer des copies des données d'organisation",
+ "tooltip": "Sélectionnez {0} pour empêcher l'enregistrement, à l'aide de l'option « Enregistrer sous », d'une copie des données d'organisation dans un emplacement autre que celui des services de stockage sélectionnés.\r\n Sélectionnez {1} pour autoriser l'enregistrement, à l'aide de l'option « Enregistrer sous », d'une copie des données d'organisation dans un nouvel emplacement.
\r\n\r\n\r\nRemarque : Ce paramètre ne s'applique pas à toutes les applications. Pour plus d'informations, consultez {2}.\r\n"
+ },
+ "SaveDataToSelected": {
+ "label": "Autoriser l'utilisateur à enregistrer des copies dans une sélection de services",
+ "tooltip": "Sélectionnez les services de stockage où les utilisateurs peuvent enregistrer des copies des données d'organisation. Tous les autres services sont bloqués. Si aucun service n'est sélectionné, les utilisateurs ne peuvent pas enregistrer de copie des données d'organisation."
+ },
+ "ScreenCaptureAndAndroidAssistant": {
+ "label": "Capture d'écran et Google Assistant\r\n",
+ "tooltip": "Si cette option est bloquée, les fonctions de capture d’écran et d’analyse d’application de Google Assistant sont désactivées lors de l’utilisation de l’application gérée par les stratégies. Cette fonctionnalité prend en charge l’application Google Assistant habituelle. Les assistants tiers utilisant l’API Assist de Google ne sont pas pris en charge. Si vous choisissez Bloquer, l’image d’aperçu du multitâche visuel devient floue quand l’application est utilisée avec un compte professionnel ou scolaire."
+ },
+ "SendData": {
+ "label": "Envoyer les données d'organisation à d'autres applications",
+ "tooltip": "Sélectionnez l'une des options suivantes pour spécifier les applications auxquelles cette application peut envoyer des données d'organisation :
\r\n\r\n\r\nAucune : n'autorise pas l'envoi de données d'organisation à une autre application
\r\n\r\n\r\nApplications gérées par stratégie : autorise uniquement l'envoi de données d'organisation à d'autres applications gérées par stratégie
\r\n\r\n\r\nApplications gérées par une stratégie avec partage du système d'exploitation : autorise uniquement l'envoi de données d'organisation à d'autres applications gérées par stratégie et l'envoi de documents d'organisation à d'autres applications gérées par MDM sur des appareils inscrits
\r\n\r\n\r\nApplications gérées par une stratégie avec filtrage d'ouverture et de partage : autorise uniquement l'envoi de données d'organisation à d'autres applications gérées par stratégie et filtre les boîtes de dialogue Ouvrir dans/Partager du système d'exploitation pour afficher uniquement les applications gérées par stratégie\r\n
\r\n\r\nToutes les applications : autorise l'envoi de données d'organisation à n'importe quelle application"
+ },
+ "SimplePin": {
+ "label": "Code PIN simple",
+ "tooltip": "Si cette option est bloquée, les utilisateurs ne peuvent pas créer de code PIN simple. Un code PIN simple est une chaîne de chiffres consécutifs ou répétitifs comme 1234, ABCD ou 1111. Notez que si vous bloquez les codes PIN simples de type « Code secret », un code secret doit contenir au moins un chiffre, une lettre et un caractère spécial."
+ },
+ "SyncContacts": {
+ "label": "Synchroniser les données des applications gérées par la stratégie avec les applications natives ou des compléments"
+ },
+ "ThirdPartyKeyboards": {
+ "infoBox": "Les restrictions de clavier s'appliqueront à toutes les zones d'une application. Les comptes personnels des applications prenant en charge plusieurs identités seront affectés par cette restriction. En savoir plus .",
+ "label": "Claviers tiers"
+ },
+ "Timeout": {
+ "label": "Délai d'attente (minutes d'inactivité)"
+ },
+ "Tap": {
+ "numberOfDays": "Nombre de jours",
+ "pinResetAfterNumberOfDays": "Réinitialisation du code PIN au bout d'un nombre de jours",
+ "previousPinBlockCount": "Sélectionner le nombre de valeurs de code secret précédentes à maintenir"
+ }
+ },
+ "ScheduledAction": {
+ "Form": {
+ "editBlockActionInfo": "Une action de blocage est obligatoire pour toutes les stratégies de conformité.",
+ "graceperiod": "Planification (jours après la non-conformité)",
+ "graceperiodInfo": "Spécifier le nombre de jours de non-conformité après lesquels cette action doit être déclenchée pour l'appareil de l'utilisateur",
+ "subtitle": "Spécifier les paramètres d'action",
+ "title": "Paramètres d'action"
+ },
+ "List": {
+ "gracePeriodDay": "{0} jour après la non-conformité",
+ "gracePeriodDays": "{0} jours après la non-conformité",
+ "gracePeriodHour": "{0} heure après la non-conformité",
+ "gracePeriodHours": "{0} heures après la non-conformité",
+ "gracePeriodMinute": "{0} minute après la non-conformité",
+ "gracePeriodMinutes": "{0} minutes après la non-conformité",
+ "immediately": "Immédiatement",
+ "schedule": "Planification",
+ "scheduleInfoBalloon": "Jours après la non-conformité",
+ "subtitle": "Spécifier la séquence d'actions sur les appareils non conformes",
+ "title": "Actions"
+ },
+ "Notification": {
+ "additionalEmailLabel": "Autres",
+ "additionalRecipients": "Destinataires supplémentaires (via e-mail)",
+ "additionalRecipientsBladeTitle": "Sélectionner des destinataires supplémentaires",
+ "emailAddressPrompt": "Entrer des adresses e-mail (séparées par des virgules)",
+ "invalidEmail": "Adresse e-mail non valide",
+ "messageTemplate": "Modèle de message",
+ "noneSelected": "Aucun utilisateur sélectionné",
+ "notSelected": "Non sélectionné",
+ "numSelected": "{0} sélectionné(s)",
+ "selected": "Sélectionnée"
+ },
+ "block": "Marquer l'appareil comme non conforme",
+ "lockDevice": "Verrouiller l'appareil (action locale)",
+ "lockDeviceWithPasscode": "Verrouiller l'appareil (action locale)",
+ "noAction": "Aucune action",
+ "noActionRow": "Aucune action, sélectionnez « Ajouter » pour ajouter une action",
+ "pushNotification": "Envoyer des notifications Push à l'utilisateur final",
+ "remoteLock": "Verrouiller à distance l'appareil non conforme",
+ "removeSourceAccessProfile": "Supprimer le profil d'accès source",
+ "retire": "Mettre l’appareil non conforme hors service",
+ "wipe": "Réinitialiser",
+ "emailNotification": "Envoyer un e-mail à l'utilisateur final"
+ },
+ "InstallIntent": {
+ "available": "Disponible pour les appareils inscrits",
+ "availableWithoutEnrollment": "Disponible avec ou sans inscription",
+ "required": "Obligatoire",
+ "uninstall": "Désinstaller"
+ },
"EnrollmentStatusScreen": {
"Apps": {
"managedApps": "Applications gérées",
@@ -2466,142 +1483,61 @@
"resetToggle": "Autoriser les utilisateurs à réinitialiser l'appareil en cas d'erreur d'installation",
"timeout": "Afficher une erreur quand la durée de l'installation est supérieure au nombre de minutes spécifié"
},
- "EnrollmentType": {
- "devicesWithEnrollment": "Appareils gérés",
- "devicesWithoutEnrollment": "Applications gérées"
- },
- "ApplicabilityRules": {
- "GridLabel": {
- "property": "Propriété",
- "rule": "Règle",
- "ruleDetails": "Détails de la règle",
- "value": "Valeur"
- },
- "assignIf": "Attribuer le profil si",
- "deleteWarning": "Cette opération supprime la règle d'applicabilité sélectionnée",
- "dontAssignIf": "Ne pas attribuer le profil si",
- "editionDisplayText": "{0} {1}",
- "editionDisplayTextMore": "et {0} de plus",
- "instructions": "Spécifiez comment appliquer ce profil dans un groupe affecté. Intune applique seulement le profil aux appareils qui répondent aux critères combinés de ces règles.",
- "maxText": "Max",
- "minText": "Min",
- "noActionRow": "Aucune règle d'applicabilité spécifiée",
- "oSVersion": "Par ex., 1.2.3.4",
- "toText": "jusqu'au",
- "windows10Education": "Windows 10/11 Éducation",
- "windows10EducationN": "Windows 10/11 Éducation N",
- "windows10Enterprise": "Windows 10/11 Entreprise",
- "windows10EnterpriseN": "Windows 10/11 Entreprise N",
- "windows10HolographicEnterprise": "Windows 10 Holographic for Business",
- "windows10Home": "Windows 10/11 Famille",
- "windows10HomeChina": "Windows 10 Famille Chine",
- "windows10HomeN": "Windows 10/11 Famille N",
- "windows10HomeSingleLanguage": "Windows 10/11 Famille Unilingue",
- "windows10IoTCore": "Windows 10 IoT Core",
- "windows10IoTCoreCommercial": "Windows 10 IoT Standard Commercial",
- "windows10Mobile": "Windows 10 Mobile",
- "windows10MobileEnterprise": "Windows 10 Mobile Entreprise",
- "windows10OsEdition": "Édition du système d'exploitation",
- "windows10OsVersion": "Version du système d'exploitation",
- "windows10Professional": "Windows 10/11 Professionnel",
- "windows10ProfessionalEducation": "Windows 10/11 Professionnel Éducation",
- "windows10ProfessionalEducationN": "Windows 10/11 Professionnel Éducation N",
- "windows10ProfessionalN": "Windows 10 Professionnel N",
- "windows10ProfessionalWorkstation": "Station de travail Windows 10/11 Professionnel",
- "windows10ProfessionalWorkstationN": "Windows 10/11 Professionnel Station de travail N"
+ "Devices": {
+ "General": {
+ "android": "Android"
+ },
+ "aOSP": "Projet open source Android",
+ "android": "Administrateur d'appareil Android",
+ "androidWorkProfile": "Android Enterprise (profil professionnel)",
+ "iOS": "iOS/iPadOS",
+ "mac": "Mac OS",
+ "windows": "Windows (MDM)",
+ "windows10": "Windows 10 et ultérieur",
+ "windowsHomeSku": "Référence Windows Famille",
+ "windowsMobile": "Windows Mobile"
+ },
+ "AppInfoBalloonText": {
+ "Certificate": {
+ "customSubjectName": "CN={{UserName}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US\r\nor\r\nCN={{AAD_Device_ID}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US",
+ "keySize": "Sélectionnez le nombre de bits contenus dans la clé.",
+ "keyUsage": "Spécifiez l'action de chiffrement obligatoire pour échanger la clé publique du certificat.",
+ "renewalThreshold": "Entrez le pourcentage (entre 1 et 99) de durée de vie restante du certificat avant qu'un appareil demande le renouvellement du certificat. La valeur recommandée dans Intune est 20 %. (1-99)",
+ "rootCert": "Choisissez un profil de certificat d'autorité de certification racine précédemment configuré et affecté. Le certificat d'autorité de certification doit correspondre au certificat racine de l'autorité de certification qui émet le certificat pour ce profil (celui que vous configurez).",
+ "scepServerUrl": "Entrez l’URL du serveur NDES qui émet les certificats via SCEP (Doit être HTTPS). Par ex., https://contoso.com/certsrv/mscep/mscep.dll",
+ "scepServerUrls": "Ajoutez une ou plusieurs URL pour le serveur NDES qui émet des certificats par SCEP (doit être en HTTPS). Par ex. https://contoso.com/certsrv/mscep/mscep.dll",
+ "subjectAlternativeName": "Autre nom de l'objet",
+ "subjectNameFormat": "Format du nom de l'objet",
+ "validityPeriod": "Quantité de temps restante avant l'expiration du certificat. Entrez une valeur égale ou inférieure à la période de validité affichée dans le modèle de certificat. La valeur par défaut est égale à un an."
+ },
+ "appInstallContext": "Cette option spécifie le contexte d'installation à associer à cette application. Pour les applications en mode double, sélectionnez le contexte souhaité pour l'application. Pour toutes les autres applications, le contexte est présélectionné selon le package et n'est pas modifiable.",
+ "autoUpdateMode": "Configurez la priorité de mise à jour de l’application. Sélectionnez Par défaut pour exiger que l’appareil soit connecté au Wi-Fi, qu’il soit en charge et qu’il ne soit pas activement utilisé avant la mise à jour de l’application. Sélectionnez Priorité élevée pour mettre à jour l’application dès que le développeur a publié l’application, quel que soit l’état de charge, la capacité Wi-Fi ou l’activité de l’utilisateur final sur l’appareil. Sélectionnez Reporté pour renoncer aux mises à jour de l’application pendant 90 jours maximum. La haute priorité et le différé ne prendront effet que sur les appareils DO.",
+ "configurationSettingsFormat": "Texte du format des paramètres de configuration",
+ "ignoreVersionDetection": "Définissez cette valeur sur \"Oui\" pour les applications automatiquement mises à jour par le développeur de l'application (comme Google Chrome).",
+ "ignoreVersionDetectionMacOSLobApp": "Sélectionnez « Oui » pour les applications qui sont automatiquement mises à jour par le développeur d’applications ou pour vérifier uniquement l’ID de bundle d’application avant l’installation. Sélectionnez « Non » pour vérifier l’ID de bundle d’application et le numéro de version avant l’installation.",
+ "installAsManagedMacOSLobApp": "Ce paramètre s’applique uniquement à macOS 11 et versions ultérieures. L’application sera installée, mais elle ne sera pas managée sur macOS 10.15 et versions antérieures.",
+ "installContextDropdown": "Sélectionnez le contexte d'installation approprié. Le contexte utilisateur installe l'application uniquement pour l'utilisateur ciblé, alors que le contexte d'appareil installe l'application pour tous les utilisateurs sur l'appareil.",
+ "ldapUrl": "Il s’agit du nom d’hôte LDAP où les clients peuvent obtenir les clés de chiffrement publiques pour les destinataires des e-mails. Les e-mails seront chiffrés quand une clé sera disponible. Formats pris en charge : - ldap.example.com
\r\n- ldap.example.com:123
\r\n- ldap://ldap.example.com
- ldap://ldap.example.com:123
- ldaps://ldap.example.com
\r\n- ldaps://ldap.example.com:123
",
+ "permissionsSettings": "Sélectionnez les autorisations d'exécution pour l'application associée.",
+ "policyAssociatedApp": "Sélectionnez l'application à laquelle cette stratégie va être associée.",
+ "policyConfigurationSettings": "Sélectionnez la méthode à utiliser pour définir les paramètres de configuration de cette stratégie.",
+ "policyDescription": "Éventuellement, entrez une description pour cette stratégie de configuration.",
+ "policyEnrollmentType": "Indiquez si ces paramètres sont gérés par le biais de la gestion des appareils ou d'applications créées avec le SDK Intune.",
+ "policyName": "Entrez un nom pour cette stratégie de configuration.",
+ "policyPlatform": "Sélectionnez la plateforme à laquelle cette stratégie de configuration d'application va être appliquée.",
+ "policyProfileType": "Sélectionnez les types de profils d’appareil auxquels ce profil de configuration d’application doit s’appliquer",
+ "policySMime": "Configurez les paramètres de chiffrement et de signature S/MIME pour Outlook.",
+ "sMimeDeployCertsFromIntune": "Spécifiez si les certificats S/MIME seront fournis par Intune pour une utilisation avec Outlook.\r\nIntune peut déployer automatiquement les certificats de signature et de chiffrement aux utilisateurs par le biais du portail d'entreprise.",
+ "sMimeEnable": "Indiquer si les contrôles S/MIME sont activés au moment de la composition d'un e-mail",
+ "sMimeEnableAllowChange": "Indiquez si l'utilisateur est autorisé à changer le paramètre Activer S/MIME.",
+ "sMimeEncryptAllEmails": "Spécifiez si tous les e-mails doivent être chiffrés.\r\nLe chiffrement convertit les données en texte chiffré que seul le destinataire visé peut lire.",
+ "sMimeEncryptAllEmailsAllowChange": "Indiquez si l'utilisateur est autorisé à changer le paramètre Chiffrer tous les e-mails.",
+ "sMimeEncryptionCertProfile": "Spécifiez le profil de certificat pour le chiffrement d'e-mail.",
+ "sMimeSignAllEmails": "Spécifiez si tous les e-mails doivent être signés.\r\nUne signature numérique vérifie l'authenticité de l'e-mail et garantit que le contenu n'est pas falsifié en transit.",
+ "sMimeSignAllEmailsAllowChange": "Indiquez si l'utilisateur est autorisé à changer le paramètre Signer tous les e-mails.",
+ "sMimeSigningCertProfile": "Spécifiez le profil de certificat pour la signature d'e-mail.",
+ "sMimeUserNotificationType": "Méthode notifiant les utilisateurs qu'ils doivent ouvrir le portail d'entreprise pour récupérer les certificats S/MIME pour Outlook."
},
- "BooleanActions": {
- "allow": "Accorder",
- "block": "Bloquer",
- "configured": "Configuré",
- "disable": "Désactiver",
- "dontRequire": "N'exigent pas",
- "enable": "Activer",
- "hide": "Masquer",
- "limit": "Limite",
- "notConfigured": "Non configuré",
- "require": "Exiger",
- "show": "Afficher",
- "yes": "Oui"
- },
- "ProactiveRemediations": {
- "Create": {
- "Basics": {
- "DescriptionMultiLineTextBox": {
- "label": "Description",
- "placeholder": "Entrer une description"
- },
- "NameTextBox": {
- "label": "Nom",
- "placeholder": "Entrer un nom"
- },
- "PublisherTextBox": {
- "label": "Éditeur",
- "placeholder": "Entrer un éditeur"
- },
- "VersionTextBox": {
- "label": "Version"
- },
- "headerDescription": "Créez un package de script personnalisé à partir des scripts de détection et de correction que vous avez écrits."
- },
- "ScopeTags": {
- "headerDescription": "Sélectionnez un ou plusieurs groupes pour attribuer le package de script."
- },
- "Settings": {
- "DetectionScriptMultiLineTextBox": {
- "label": "Script de détection",
- "placeholder": "Texte du script d’entrée",
- "requiredValidationMessage": "Entrez le script de détection"
- },
- "EnforceScriptSignatureCheckOptionPicker": {
- "label": "Appliquer la vérification de la signature du script"
- },
- "LoggedOnCredentialsOptionPicker": {
- "label": "Exécuter ce script en utilisant les informations d’identification de l’utilisateur connecté"
- },
- "RemediationScript": {
- "infoBox": "Ce script s’exécute en mode détection seule, car il n’existe pas de script de correction."
- },
- "RemediationScriptMultiLineTextBox": {
- "label": "Script de correction",
- "placeholder": "Texte du script d’entrée"
- },
- "RunIn64BitPSOptionPicker": {
- "label": "Exécuter le script dans PowerShell 64 bits"
- },
- "ScriptMultiLineTextBox": {
- "base64EncodingValidationMessage": "Script non valide. Un ou plusieurs caractères utilisés dans le script ne sont pas valides."
- },
- "headerDescription": "Créez un package de script personnalisé à partir des scripts que vous avez écrits. Par défaut, les scripts s’exécuteront tous les jours sur les appareils concernés.",
- "infoBox": "Ce script est en lecture seule. Certains paramètres de ce script sont peut-être désactivés."
- },
- "title": "Créer un script personnalisé",
- "ScriptProperties": {
- "GridHeaders": {
- "interval": "Intervalle",
- "time": "Date et heure"
- },
- "Interval": {
- "day": "Se répète chaque jour",
- "days": "Se répète tous les {0} jours",
- "hour": "Se répète toutes les heures",
- "hours": "Se répète toutes les {0} heures",
- "month": "Se répète tous les mois",
- "months": "Se répète tous les {0} mois",
- "week": "Se répète chaque semaine",
- "weeks": "Se répète toutes les {0} semaines"
- },
- "Time": {
- "utc": "{0} (UTC)",
- "utcWithDate": "{0} (UTC) le {1}",
- "withDate": "{0} le {1}"
- }
- }
- },
- "Edit": {
- "title": "Modifier - {0}"
- }
- },
"WindowsManagement": {
"Assignment": {
"noAssignmentCustomAttributeDisplayText": "Attribuez un attribut personnalisé à au moins un groupe. Accédez à Propriétés pour modifier les attributions.",
@@ -2708,910 +1644,6 @@
"shellScriptObjectName": "script shell",
"successfullySavedPolicy": "« {0} » a été enregistré"
},
- "AssignmentFilters": {
- "assignmentFilterColumnHeader": "Filtrer",
- "noFilters": "Aucun"
- },
- "Category": {
- "airPlay": "AirPlay",
- "airPrint": "AirPrint",
- "androidDefenderAtp": "Microsoft Defender pour point de terminaison",
- "androidDeviceOwnerApplications": "Applications",
- "androidForWorkPassword": "Mot de passe de l'appareil",
- "appManagement": "Autoriser ou bloquer des applications",
- "applicationGuard": "Microsoft Defender Application Guard",
- "applicationRestrictions": "Applications restreintes",
- "applicationVisibility": "Afficher ou masquer des applications",
- "applications": "Magasin d'applications",
- "applicationsAndGames": "App Store, affichage de documents, jeux",
- "applicationsAndGoogle": "Google Play Store",
- "appsAndExperience": "Applications et expérience",
- "associatedDomains": "Domaines associés",
- "autonomousSingleAppMode": "Mode App individuelle autonome",
- "azureOperationalInsights": "Azure Operational Insights",
- "bitLocker": "Chiffrement Windows",
- "browser": "Navigateur",
- "builtinApps": "Applications intégrées",
- "cellular": "Cellulaire",
- "cloudAndStorage": "Cloud et stockage",
- "cloudPrint": "Imprimante cloud",
- "complianceEmailProfile": "E-mail",
- "connectedDevices": "Appareils connectés",
- "connectivity": "Mobile et connectivité",
- "contentCaching": "Mise en cache du contenu",
- "controlPanelAndSettings": "Panneau de configuration et paramètres",
- "credentialGuard": "Microsoft Defender Credential Guard",
- "customCompliance": "Conformité personnalisée",
- "customCompliancePreview": "Conformité personnalisée (préversion)",
- "customConfiguration": "Profil de configuration personnalisé",
- "customOMASettings": "Paramètres OMA-URI personnalisés",
- "customPreferences": "Fichier de préférences",
- "defender": "Antivirus Microsoft Defender",
- "defenderAntivirus": "Antivirus Microsoft Defender",
- "defenderExploitGuard": "Microsoft Defender Exploit Guard",
- "defenderFirewall": "Pare-feu Microsoft Defender",
- "defenderLocalSecurityOptions": "Options de sécurité locales de l'appareil",
- "defenderSecurityCenter": "Centre de sécurité Microsoft Defender",
- "deliveryOptimization": "Optimisation de livraison",
- "derivedCredentialAuthenticationConfiguration": "Information d’identification dérivée",
- "deviceExperience": "Expérience de l’appareil",
- "deviceFirmwareConfigurationInterface": "Interface de configuration du microprogramme d'appareil",
- "deviceGuard": "Microsoft Defender Application Control",
- "deviceHealth": "Intégrité de l'appareil",
- "devicePassword": "Mot de passe de l’appareil",
- "deviceProperties": "Propriétés de l'appareil",
- "deviceRestrictions": "Général",
- "deviceSecurity": "Sécurité système",
- "display": "Affichage",
- "domainJoin": "Jonction de domaine",
- "domains": "Domaines",
- "edgeBrowser": "Ancienne version de Microsoft Edge (version 45 et antérieure)",
- "edgeBrowserSmartScreen": "Microsoft Defender SmartScreen",
- "edgeKiosk": "Mode kiosque Microsoft Edge",
- "editionUpgrade": "Mise à niveau d'édition",
- "education": "Éducation",
- "educationDeviceCerts": "Certificats d'appareil",
- "educationStudentCerts": "Certificats d'étudiant",
- "educationTakeATest": "Passer un test",
- "educationTeacherCerts": "Certificats d'enseignant",
- "emailProfile": "E-mail",
- "enterpriseDataProtection": "Protection des informations Windows",
- "expeditedCheckin": "Configuration de la gestion des périphériques mobiles",
- "extensibleSingleSignOn": "Extension d’application d’authentification unique",
- "filevault": "FileVault",
- "firewall": "Pare-feu",
- "games": "Jeux",
- "gatekeeper": "Gatekeeper",
- "healthMonitoring": "Monitoring de l’intégrité",
- "homeScreenLayout": "Disposition de l’écran d’accueil",
- "iOSWallpaper": "Papier peint",
- "importedPFX": "Certificat PKCS importé",
- "iosDefenderAtp": "Microsoft Defender pour point de terminaison",
- "iosKiosk": "Kiosque",
- "kernelExtensions": "Extensions de noyau",
- "keyboardAndDictionary": "Clavier et dictionnaire",
- "kiosk": "Kiosque",
- "kioskAndroidEnterprise": "Appareils dédiés",
- "kioskConfiguration": "Kiosque",
- "kioskConfigurationV2": "Kiosque",
- "kioskWebBrowser": "Navigateur web kiosque",
- "lockScreenMessage": "Message d’écran de verrouillage",
- "lockedScreenExperience": "Expérience d'écran verrouillé",
- "logging": "Création de rapports et télémétrie",
- "loginItems": "Éléments de connexion",
- "loginWindow": "Fenêtre de connexion",
- "macDefenderAtp": "Microsoft Defender pour point de terminaison",
- "maintenance": "Maintenance",
- "malware": "Programme malveillant",
- "messaging": "Messagerie",
- "networkBoundary": "Limite réseau",
- "networkProxy": "Proxy réseau",
- "notifications": "Notifications de l’application",
- "pKCS": "Certificat PKCS",
- "password": "Mot de passe",
- "personalProfile": "Profil personnel",
- "personalization": "Personnalisation",
- "policyOverride": "Remplacer la stratégie de groupe",
- "powerSettings": "Paramètres d'alimentation",
- "printer": "Imprimante",
- "privacy": "Confidentialité",
- "privacyPerApp": "Exceptions de confidentialité par application",
- "privacyPreferences": "Préférences de confidentialité",
- "projection": "Projection",
- "sCCMCompliance": "Conformité de Configuration Manager",
- "sCEP": "Certificat SCEP",
- "sCEPProperties": "Certificat SCEP",
- "sMode": "Changement de mode (Windows Insider uniquement)",
- "safari": "Safari",
- "search": "Rechercher",
- "session": "Session",
- "sharedDevice": "iPad partagé",
- "sharedPCAccountManager": "Appareil multi-utilisateur partagé",
- "singleSignOn": "Authentification unique",
- "smartScreen": "Microsoft Defender SmartScreen",
- "softwareUpdates": "Paramètres",
- "start": "Démarrer",
- "systemExtensions": "Extensions système",
- "systemSecurity": "Sécurité système",
- "trustedCert": "Certificat approuvé",
- "updates": "Mises à jour",
- "userRights": "Droits de l'utilisateur",
- "usersAndAccounts": "Utilisateurs et comptes",
- "vPN": "VPN de base",
- "vPNApps": "VPN automatique",
- "vPNAppsAndTrafficRules": "Règles de trafic et d'applications",
- "vPNConditionalAccess": "Accès conditionnel",
- "vPNConnectivity": "Connectivité",
- "vPNDNSTriggers": "Paramètres DNS",
- "vPNIKEv2": "Paramètres IKEv2",
- "vPNProxy": "Proxy",
- "vPNSplitTunneling": "Tunneling fractionné",
- "vPNTrustedNetwork": "Détection des réseaux approuvés",
- "webContentFilter": "Filtre de contenu web",
- "wiFi": "Wi-Fi",
- "win10Wifi": "Wi-Fi",
- "windowsAtp": "Microsoft Defender pour point de terminaison",
- "windowsDefenderATP": "Microsoft Defender pour point de terminaison",
- "windowsHelloForBusiness": "Windows Hello Entreprise",
- "windowsSpotlight": "Windows à la une",
- "wiredNetwork": "Réseau câblé",
- "wireless": "Sans fil",
- "wirelessProjection": "Projection sans fil",
- "workProfile": "Paramètres du profil professionnel",
- "workProfilePassword": "Mot de passe du profil professionnel",
- "xboxServices": "Services Xbox",
- "zebraMx": "Profil MX (Zebra uniquement)",
- "complianceActionsLabel": "Actions en cas de non-conformité"
- },
- "MicrosoftEdgeChannel": {
- "beta": "Beta",
- "dev": "Dev",
- "stable": "Stable"
- },
- "ConfigurationTypes": {
- "Table": {
- "androidDeviceOwnerGeneral": "Restrictions d'appareil (propriétaire de l'appareil)",
- "androidForWorkGeneral": "Restrictions d'appareil (profil professionnel)"
- },
- "androidCustom": "Personnalisé",
- "androidDeviceOwnerGeneral": "Restrictions sur l'appareil",
- "androidDeviceOwnerPkcs": "Certificat PKCS",
- "androidDeviceOwnerScep": "Certificat SCEP",
- "androidDeviceOwnerTrustedCertificate": "Certificat approuvé",
- "androidDeviceOwnerVpn": "VPN",
- "androidDeviceOwnerWiFi": "Wi-Fi",
- "androidEmailProfile": "E-mail (Samsung KNOX uniquement)",
- "androidForWorkCustom": "Personnalisé",
- "androidForWorkEmailProfile": "Courrier",
- "androidForWorkGeneral": "Restrictions sur l'appareil",
- "androidForWorkImportedPFX": "Certificat PKCS importé",
- "androidForWorkOemConfig": "OEMConfig",
- "androidForWorkPKCS": "Certificat PKCS",
- "androidForWorkSCEP": "Certificat SCEP",
- "androidForWorkTrustedCertificate": "Certificat approuvé",
- "androidForWorkVpn": "VPN",
- "androidForWorkWiFi": "Wi-Fi",
- "androidGeneral": "Restrictions sur l'appareil",
- "androidImportedPFX": "Certificat PKCS importé",
- "androidPKCS": "Certificat PKCS",
- "androidSCEP": "Certificat SCEP",
- "androidTrustedCertificate": "Certificat approuvé",
- "androidVPN": "VPN",
- "androidWiFi": "Wi-Fi",
- "androidZebraMx": "Profil MX (Zebra uniquement)",
- "complianceAndroid": "Stratégie de conformité Android",
- "complianceAndroidDeviceOwner": "Profil professionnel complètement managé, dédié et appartenant à l’entreprise",
- "complianceAndroidEnterprise": "Profil de travail personnel",
- "complianceAndroidForWork": "Stratégie de conformité d'Android for Work",
- "complianceIos": "Stratégie de conformité iOS",
- "complianceMac": "Stratégie de conformité Mac",
- "complianceWindows10": "Stratégie de conformité Windows 10 et versions ultérieures",
- "complianceWindows10Mobile": "Stratégie de conformité Windows 10 Mobile",
- "complianceWindows8": "Stratégie de conformité Windows 8",
- "complianceWindowsPhone": "Stratégie de conformité Windows Phone",
- "exchangeActiveSync": "Exchange Active Sync",
- "iosCustom": "Personnalisé",
- "iosDerivedCredentialAuthenticationConfiguration": "Informations d'identification PIV dérivées",
- "iosDeviceFeatures": "Fonctionnalités de l'appareil",
- "iosEDU": "Éducation",
- "iosEducation": "Éducation",
- "iosEmailProfile": "Courrier",
- "iosGeneral": "Restrictions sur l'appareil",
- "iosImportedPFX": "Certificat PKCS importé",
- "iosPKCS": "Certificat PKCS",
- "iosPresets": "Présélections",
- "iosSCEP": "Certificat SCEP",
- "iosTrustedCertificate": "Certificat approuvé",
- "iosVPN": "VPN",
- "iosVPNZscaler": "VPN",
- "iosWiFi": "Wi-Fi",
- "macCustom": "Personnalisé",
- "macDeviceFeatures": "Fonctionnalités de l'appareil",
- "macEndpointProtection": "Endpoint protection",
- "macExtensions": "Extensions",
- "macGeneral": "Restrictions sur l'appareil",
- "macImportedPFX": "Certificat PKCS importé",
- "macSCEP": "Certificat SCEP",
- "macTrustedCertificate": "Certificat approuvé",
- "macVPN": "VPN",
- "macWiFi": "Wi-Fi",
- "settingsCatalog": "Catalogue des paramètres (préversion)",
- "unsupported": "Non pris en charge",
- "windows10AdministrativeTemplate": "Modèles d'administration (préversion)",
- "windows10Atp": "Microsoft Defender pour point de terminaison (appareils de bureau exécutant Windows 10 ou versions ultérieures)",
- "windows10Custom": "Personnalisé",
- "windows10DesktopSoftwareUpdate": "Mises à jour logicielles",
- "windows10DeviceFirmwareConfigurationInterface": "Interface de configuration du microprogramme d'appareil",
- "windows10EmailProfile": "Courrier",
- "windows10EndpointProtection": "Endpoint protection",
- "windows10EnterpriseDataProtection": "Protection des informations Windows",
- "windows10General": "Restrictions sur l'appareil",
- "windows10ImportedPFX": "Certificat PKCS importé",
- "windows10Kiosk": "Kiosque",
- "windows10NetworkBoundary": "Limite réseau",
- "windows10PKCS": "Certificat PKCS",
- "windows10PolicyOverride": "Remplacer la stratégie de groupe",
- "windows10SCEP": "Certificat SCEP",
- "windows10SecureAssessmentProfile": "Profil Éducation",
- "windows10SharedPC": "Appareil multi-utilisateur partagé",
- "windows10TeamGeneral": "Restrictions sur les appareils (Windows 10 Collaboration)",
- "windows10TrustedCertificate": "Certificat approuvé",
- "windows10VPN": "VPN",
- "windows10WiFi": "Wi-Fi",
- "windows10WiFiCustom": "Wi-Fi personnalisé",
- "windows8General": "Restrictions sur l'appareil",
- "windows8SCEP": "Certificat SCEP",
- "windows8TrustedCertificate": "Certificat approuvé",
- "windows8VPN": "VPN",
- "windows8WiFi": "Importation Wi-Fi",
- "windowsDeliveryOptimization": "Optimisation de livraison",
- "windowsDomainJoin": "Jonction de domaine",
- "windowsEditionUpgrade": "Mise à niveau de l'édition et changement de mode",
- "windowsIdentityProtection": "Identity Protection",
- "windowsPhoneCustom": "Personnalisé",
- "windowsPhoneEmailProfile": "Courrier",
- "windowsPhoneGeneral": "Restrictions sur l'appareil",
- "windowsPhoneImportedPFX": "Certificat PKCS importé",
- "windowsPhoneSCEP": "Certificat SCEP",
- "windowsPhoneTrustedCertificate": "Certificat approuvé",
- "windowsPhoneVPN": "VPN",
- "IosUpdate": "Stratégie de mise à jour iOS"
- },
- "WindowsEnrollment": {
- "coManagementAuthorityDesc": "Configurer les paramètres de cogestion pour l’intégration Configuration Manager",
- "coManagementAuthorityTitle": "Paramètres de cogestion ",
- "deploymentProfiles": "Profils Windows AutoPilot Deployment",
- "description": "Découvrez les sept différentes façons d'inscrire un PC Windows 10/11 dans Intune par les utilisateurs ou les administrateurs.",
- "descriptionLabel": "Méthodes d’inscription Windows",
- "enrollmentStatusPage": "Page d'état de l'inscription"
- },
- "Platform": {
- "all": "Tout",
- "android": "Administrateur d'appareil Android",
- "androidAOSP": "Android (AOSP)",
- "androidEnterprise": "Android Enterprise",
- "androidForWork": "Android Enterprise",
- "androidWorkProfile": "Android Enterprise",
- "common": "Commune",
- "iOS": "iOS/iPadOS",
- "iosAndAndroidPlatformLabel": "iOS et Android",
- "iosCommaAndroidPlatformLabel": "iOS, Android",
- "linux": "Linux",
- "macOS": "Mac OS",
- "unknown": "Inconnu",
- "unsupported": "Non pris en charge",
- "windows": "Windows",
- "windows10": "Windows 10 et ultérieur",
- "windows10CM": "Windows 10 et ultérieur (ConfigMgr)",
- "windows10Holo": "Windows 10 Holographique",
- "windows10Mobile": "Windows 10 Mobile",
- "windows10Team": "Windows 10 Collaboration",
- "windows10X": "Windows 10X",
- "windows8": "Windows 8.1 et ultérieur",
- "windows8And10": "Windows 8 et 10",
- "windowsPhone": "Windows Phone 8.1",
- "windows10AndLater": "Windows 10 et ultérieur",
- "windows10AndWindowsServer": "Windows 10, Windows 11, et Windows Server (ConfigMgr)",
- "windows10andLaterCM": "Windows 10 et ultérieur (ConfigMgr)",
- "holoLens": "HoloLens",
- "surfaceHub2": "Surface Hub 2",
- "surfaceHub2S": "Surface Hub 2S",
- "windowsPC": "PC Windows"
- },
- "EnrollmentRestrictions": {
- "DeletePayloadLink": {
- "content": "{0} est inclus dans un ou plusieurs ensembles de stratégies. Si vous supprimez {0}, vous ne serez plus en mesure de l'affecter par l'intermédiaire de ces ensembles de stratégies. Supprimer quand même ?",
- "contentWithError": "{0} est peut-être inclus dans un ou plusieurs ensembles de stratégies. Si vous supprimez {0}, vous ne serez plus en mesure de l'affecter par l'intermédiaire de ces ensembles de stratégies. Supprimer quand même ?",
- "header": "Voulez-vous vraiment supprimer cette restriction ?"
- },
- "DeviceLimit": {
- "description": "Spécifiez le nombre maximal d'appareils qu'un utilisateur peut inscrire.",
- "header": "Restrictions de limite d'appareils",
- "info": "Définissez le nombre d'appareils que chaque utilisateur peut inscrire."
- },
- "DeviceType": {
- "VersionValidation": {
- "aOSP": "Doit être supérieur ou égal à 1.0.",
- "android": "Entrez un numéro de version valide. Exemples : 5.0, 5.5.1, 6.0.0.1",
- "androidForWork": "Entrez un numéro de version valide. Par exemple : 5.0, 5.1.1",
- "iOS": "Entrez un numéro de version valide. Exemples : 9.0, 10.0, 9.0.2",
- "mac": "Entrez un numéro de version valide. Exemples : 10, 10.10, 10.10.1",
- "min": "La valeur minimale ne peut pas être inférieure à {0}",
- "minMax": "La version minimale ne peut pas être supérieure à la version maximale.",
- "windows": "Doit être la version 10.0 ou ultérieur. Laisser vide pour autoriser les appareils Windows 8.1",
- "windowsMobile": "Doit être la version 10.0 ou ultérieur. Laisser vide pour autoriser les appareils Windows 8.1"
- },
- "allPlatformsBlocked": "Toutes les plateformes d'appareils sont bloquées. Autorisez l'inscription des plateformes pour permettre leur configuration.",
- "blockManufacturerPlaceHolder": "Nom du fabricant",
- "blockManufacturersHeader": "Fabricants bloqués",
- "cannotRestrict": "Restriction non prise en charge",
- "configurationDescription": "Spécifiez les restrictions de configuration de plateforme que doit respecter un appareil pour l'inscription. Utilisez des stratégies de conformité pour restreindre les appareils après l'inscription. Définissez des versions au format major.minor.build. Les restrictions de version s'appliquent uniquement aux appareils inscrits avec le portail d'entreprise. Intune classe les appareils comme personnels par défaut. Une action supplémentaire est nécessaire pour classer les appareils comme appartenant à l'entreprise.",
- "configurationDescriptionLabel": "En savoir plus sur la définition de restrictions d’inscription",
- "configurations": "Configurer des plateformes",
- "deviceManufacturer": "Fabricant du périphérique",
- "header": "Restrictions de type d'appareil",
- "info": "Définissez les types de plateforme, de version et de gestion qui peuvent être inscrits.",
- "manufacturer": "Fabricant",
- "max": "Max",
- "maxVersion": "Version maximale",
- "min": "Min",
- "minVersion": "Version minimale",
- "newPlatforms": "Vous avez autorisé de nouvelles plateformes. Mettez à jour les configurations de plateforme.",
- "personal": "Propriété personnelle",
- "platform": "Plateforme",
- "platformDescription": "Vous pouvez autoriser l'inscription des plateformes suivantes. Bloquez seulement les plateformes que vous ne pouvez pas prendre en charge. Les plateformes autorisées peuvent être configurées avec des restrictions d'inscription supplémentaires.",
- "platformSettings": "Paramètres de plateforme",
- "platforms": "Sélectionner des plateformes",
- "platformsSelected": "{0} plateformes sélectionnées",
- "type": "Type",
- "versions": "versions",
- "versionsRange": "Autoriser des valeurs min./max. :",
- "windowsTooltip": "Restreint l'inscription par le biais de la gestion des appareils mobiles (MDM). Ne restreint pas l'installation de l'agent de PC. Seules les versions Windows 10 et Windows 11 sont prises en charge. N'indiquez pas de version afin d'autoriser Windows 8.1."
- },
- "Priority": {
- "saved": "Les priorités de restriction ont été enregistrées."
- },
- "Row": {
- "announce": "Priorité : {0}. Nom : {1}. Attribué : {2}"
- },
- "Table": {
- "deployed": "Déployées",
- "name": "Nom",
- "priority": "Priorité"
- },
- "Type": {
- "limit": "Restriction du nombre limite d'appareils",
- "type": "Restriction du type d'appareil"
- },
- "allUsers": "Tous les utilisateurs",
- "androidRestrictions": "Restrictions Android",
- "create": "Créer une restriction",
- "defaultLimitDescription": "Il s'agit de la restriction de limite d'appareils par défaut appliquée avec la priorité la plus basse à tous les utilisateurs, quelle que soit leur appartenance à un groupe.",
- "defaultTypeDescription": "Il s'agit de la restriction de type d'appareil par défaut appliquée avec la priorité la plus basse à tous les utilisateurs, quelle que soit leur appartenance à un groupe.",
- "defaultWhfbDescription": "Il s'agit de la configuration par défaut de Windows Hello Entreprise appliquée avec la priorité la plus basse à tous les utilisateurs, quelle que soit leur appartenance à un groupe.",
- "deleteMessage": "Les utilisateurs impactés seront limités par la restriction de priorité la plus élevée suivante qui a été affectée, ou par la restriction par défaut si aucune autre restriction n'est affectée.",
- "deleteTitle": "Voulez-vous vraiment supprimer la restriction {0} ?",
- "descriptionHint": "Court paragraphe décrivant l'utilisation professionnelle ou le niveau de restriction caractérisé par les paramètres de restriction.",
- "edit": "Modifier la restriction",
- "info": "Un appareil doit respecter les restrictions d'inscription affectées à l'utilisateur qui ont la priorité la plus haute. Vous pouvez faire glisser une restriction d'appareil pour changer sa priorité. Les restrictions par défaut ont la priorité la plus basse pour tous les utilisateurs et régissent les inscriptions sans utilisateur. Les restrictions par défaut peuvent être modifiées, mais pas supprimées.",
- "iosRestrictions": "Restrictions iOS",
- "mDM": "GPM",
- "macRestrictions": "Restrictions MacOS",
- "maxVersion": "Version maximale",
- "minVersion": "Version minimale",
- "nameHint": "Il s'agit de l'attribut principal visible pour identifier le jeu de restrictions.",
- "noAssignmentsStatusBar": "Affectez une restriction à au moins un groupe. Cliquez sur Propriétés.",
- "notFound": "Restriction introuvable.Elle a peut-être déjà été supprimée.",
- "personallyOwned": "Appareils personnels",
- "restriction": "Restriction",
- "restrictionLowerCase": "restriction",
- "restrictionType": "Restriction Type",
- "selectType": "Sélectionner le type de restriction",
- "selectValidation": "Sélectionnez une plateforme",
- "typeHint": "Choisissez Restriction de type d'appareil pour restreindre les propriétés de l'appareil. Choisissez Restriction de limite d'appareils pour limiter le nombre d'appareils par utilisateur.",
- "typeRequired": "Le type de restriction est obligatoire.",
- "winPhoneRestrictions": "Restrictions Windows Phone",
- "windowsRestrictions": "Restrictions Windows"
- },
- "Titles": {
- "ChromeOs": {
- "devices": "Appareils avec SE Chrome"
- },
- "ManagedDesktop": {
- "adminContacts": "Contacts de l’administrateur",
- "appPackaging": "Empaquetage d’applications",
- "devices": "Appareils",
- "feedback": "Commentaires",
- "gettingStarted": "Mise en route",
- "messages": "Messages",
- "onlineResources": "Ressources en ligne",
- "serviceRequests": "Demandes de service",
- "settings": "Paramètres",
- "tenantEnrollment": "Inscription des locataires"
- },
- "actions": "Actions en cas de non-conformité",
- "advancedExchangeSettings": "Paramètres Exchange Online",
- "advancedThreatProtection": "Microsoft Defender pour point de terminaison",
- "allApps": "Toutes les applications",
- "allDevices": "Tous les appareils",
- "androidFotaDeployments": "Déploiements d’Android FOTA",
- "appBundles": "Offres groupées d’applications",
- "appCategories": "Catégories d'applications",
- "appConfigPolicies": "Stratégies de configuration des applications",
- "appInstallStatus": "État de l'installation de l'application",
- "appLicences": "Licences d'application",
- "appProtectionPolicies": "Stratégies de protection des applications",
- "appProtectionStatus": "État de protection de l'application",
- "appSelectiveWipe": "Réinitialisation sélective des applications",
- "appleVppTokens": "Jetons VPP Apple",
- "apps": "Applications",
- "assign": "Affectations",
- "assignedPermissions": "Autorisations attribuées",
- "assignedRoles": "Rôles affectés",
- "autopilotDeploymentReport": "Déploiements AutoPilot (préversion)",
- "brandingAndCustomization": "Personnalisation",
- "cartProfiles": "Profils de panier",
- "certificateConnectors": "Connecteurs de certificat",
- "chromeEnterprise": "Chrome Enterprise",
- "compliancePolicies": "Stratégies de conformité",
- "complianceScriptManagement": "Scripts",
- "complianceScriptManagementPreview": "Scripts (préversion)",
- "complianceSettings": "Paramètres de stratégie de conformité",
- "conditionStatements": "Énoncés des conditions",
- "conditions": "Emplacements",
- "configMgr": "Microsoft Endpoint Configuration Manager",
- "configurationProfiles": "Profils de configuration",
- "configurationProfilesPreview": "Profils de configuration (aperçu)",
- "connectorsAndTokens": "Connecteurs et jetons",
- "corporateDeviceIdentifiers": "Identificateurs d'appareil d'entreprise",
- "customAttributes": "Attributs personnalisés",
- "customNotifications": "Notifications personnalisées",
- "deploymentSettings": "Paramètres de déploiement",
- "derivedCredentials": "Informations d’identification dérivées",
- "deviceActions": "Actions de l'appareil",
- "deviceCategories": "Catégories d'appareils",
- "deviceCleanUp": "Règles de nettoyage d'appareil",
- "deviceEnrollmentManagers": "Gestionnaires d'inscription d'appareil",
- "deviceExecutionStatus": "État de l'appareil",
- "deviceLimitEnrollmentRestrictions": "Restriction du nombre limite d’appareils lors de l’inscription",
- "deviceTypeEnrollmentRestrictions": "Restriction du type de plateforme d’appareil lors de l’inscription",
- "devices": "Appareils",
- "discoveredApps": "Applications découvertes",
- "embeddedSIM": "Profils cellulaires eSIM (préversion)",
- "enrollDevices": "Inscrire des appareils",
- "enrollmentFailures": "Échecs d'inscription",
- "enrollmentNotifications": "Notifications d’inscription (préversion)",
- "enrollmentRestrictions": "Restrictions d'inscription",
- "exchangeActiveSync": "Exchange ActiveSync",
- "exchangeServiceConnectors": "Connecteurs de services Exchange",
- "failuresForFeatureUpdates": "Échecs des mises à jour de fonctionnalités (préversion)",
- "failuresForQualityUpdates": "Échecs de la mise à jour accélérée de Windows (préversion)",
- "featureFlighting": "Version d'évaluation des fonctionnalités",
- "featureUpdateDeployments": "Mises à jour des fonctionnalités pour Windows 10 et versions ultérieures (préversion)",
- "flighting": "Distribution de version d'évaluation",
- "fotaUpdate": "Mise à jour de microprogramme en l’air",
- "groupPolicy": "Modèles d'administration",
- "groupPolicyAnalytics": "Analytique de la stratégie de groupe",
- "helpSupport": "Aide et support",
- "helpSupportReplacement": "Aide et support ({0})",
- "iOSAppProvisioning": "Profils de provisionnement d'application iOS",
- "incompleteUserEnrollments": "Inscriptions d'utilisateur incomplètes",
- "intuneRemoteAssistance": "Aide à distance (préversion)",
- "iosUpdates": "Mettre à jour les stratégies pour iOS/iPadOS",
- "legacyPcManagement": "Gestion des PC existants",
- "macOSSoftwareUpdate": "Stratégies de mise à jour pour macOS",
- "macOSSoftwareUpdateAccountSummaries": "État d'installation des appareils macOS",
- "macOSSoftwareUpdateCategorySummaries": "Récapitulatif des mises à jour logicielles",
- "macOSSoftwareUpdateStateSummaries": "modifications",
- "managedGooglePlay": "Google Play géré",
- "msfb": "Microsoft Store pour Entreprises",
- "myPermissions": "Mes autorisations",
- "notifications": "Notifications",
- "officeApps": "Applications Office",
- "officeProPlusPolicies": "Stratégies pour les applications Office",
- "onPremise": "Local",
- "onPremisesConnector": "Connecteur local Exchange ActiveSync",
- "onPremisesDeviceAccess": "Appareils Exchange ActiveSync",
- "onPremisesManageAccess": "Accès à Exchange sur site",
- "outOfDateIosDevices": "Échecs d'installation pour les appareils iOS",
- "overview": "Vue d'ensemble",
- "partnerDeviceManagement": "Gestion des appareils partenaires",
- "perUpdateRingDeploymentState": "Par état d'anneau de déploiement de mises à jour",
- "permissions": "Autorisations",
- "platformApps": "{0} applications",
- "platformDevices": "{0} appareils",
- "platformEnrollment": "Inscription {0}",
- "policies": "Stratégies",
- "previewMDMDevices": "Tous les appareils gérés (préversion)",
- "profiles": "Profils",
- "properties": "Propriétés",
- "reports": "Rapports",
- "retireNoncompliantDevices": "Mettre hors service les appareils non conformes",
- "retireNoncompliantDevicesPreview": "Retire noncompliant devices (preview)",
- "role": "Rôle",
- "scriptManagement": "Scripts",
- "securityBaselines": "Bases de référence de sécurité",
- "serviceToServiceConnector": "Connecteur Exchange Online",
- "shellScripts": "Scripts shell",
- "teamViewerConnector": "Connecteur TeamViewer",
- "telecomeExpenseManagement": "Gestion des dépenses de télécommunication",
- "tenantAdmin": "Administrateur de locataire",
- "tenantAdministration": "Administration de locataire",
- "termsAndConditions": "Conditions générales",
- "titles": "Titres",
- "troubleshootSupport": "Dépannage + support",
- "user": "Utilisateur",
- "userExecutionStatus": "État de l'utilisateur",
- "warranty": "Fournisseurs de garantie",
- "wdacSupplementalPolicies": "Stratégies supplémentaires en mode S",
- "windows10DriverUpdate": "Mises à jour des pilotes pour Windows 10 et versions ultérieures (aperçu)",
- "windows10QualityUpdate": "Mises à jour qualité pour Windows 10 et versions ultérieures (préversion)",
- "windows10UpdateRings": "Mettre à jour les anneaux pour Windows 10 et versions ultérieures",
- "windows10XPolicyFailures": "Échecs de stratégie Windows 10X",
- "windowsEnterpriseCertificate": "Certificat d'entreprise Windows",
- "windowsManagement": "Scripts PowerShell",
- "windowsSideLoadingKeys": "Clés de chargement indépendant Windows",
- "windowsSymantecCertificate": "Certificat Windows DigiCert",
- "windowsThreatReport": "État de l'agent de menace"
- },
- "ScopeTypes": {
- "allDevices": "Tous les appareils",
- "allUsers": "Tous les utilisateurs",
- "allUsersAndDevices": "Tous les utilisateurs et tous les appareils",
- "selectedGroups": "Groupes sélectionnés"
- },
- "DetectionRules": {
- "ComparisonOperators": {
- "equals": "Est égal à",
- "greaterThan": "Supérieur à",
- "greaterThanOrEqualTo": "Supérieur ou égal à",
- "lessThan": "Inférieur à",
- "lessThanOrEqualTo": "Inférieur ou égal à",
- "notEqualTo": "Différent de"
- },
- "CustomScript": {
- "enforceSignatureCheck": "Appliquer la vérification de signature de script et exécuter le script sans avertissement",
- "enforceSignatureCheckTooltip": "Sélectionnez 'Oui' pour vérifier que le script est signé par un éditeur approuvé, ce qui permet de l'exécuter sans afficher d'avertissements ni d'invites. Le script s'exécute sans blocage. Sélectionnez 'Non' (par défaut) pour exécuter le script avec confirmation de l'utilisateur final sans vérification de signature.",
- "header": "Utiliser un script de détection personnalisé",
- "runAs32Bit": "Exécuter le script comme processus 32 bits sur des clients 64 bits",
- "runAs32BitTooltip": "Sélectionnez 'Oui' pour exécuter le script dans un processus 32 bits sur des clients 64 bits. Sélectionnez 'Non' (par défaut) pour exécuter le script dans un processus 64 bits sur des clients 64 bits. Les clients 32 bits exécutent le script dans un processus 32 bits.",
- "scriptFile": "Fichier de script",
- "scriptFileNotSelectedValidation": "Aucun fichier de script sélectionné.",
- "scriptFileTooltip": "Sélectionnez un script PowerShell qui détecte la présence de l'application sur le client. L'application est détectée quand le script retourne un code de sortie de valeur 0 et écrit une valeur de chaîne dans STDOUT."
- },
- "Manual": {
- "FileRule": {
- "DetectionMethodOptions": {
- "dateCreated": "Date de création",
- "dateModified": "Date de modification",
- "doesNotExist": "Le fichier ou dossier n'existe pas",
- "fileOrFolderExists": "Le fichier ou le dossier existe",
- "sizeInMB": "Taille en Mo",
- "version": "Chaîne (version)"
- },
- "associatedWith32Bit": "Associé à une application 32 bits sur des clients 64 bits",
- "associatedWith32BitTooltip": "Sélectionnez 'Oui' pour développer des variables d'environnement path dans le contexte 32 bits sur des clients 64 bits. Sélectionnez 'Non' (par défaut) pour développer des variables path dans le contexte 64 bits sur des clients 64 bits. Les clients 32 bits utilisent toujours le contexte 32 bits.",
- "detectionMethod": "Méthode de détection",
- "detectionMethodTooltip": "Sélectionnez le type de méthode de détection utilisé pour valider la présence de l'application.",
- "fileOrFolder": "Fichier ou dossier",
- "fileOrFolderToolTip": "Fichier ou dossier à détecter.",
- "operator": "Opérateur",
- "operatorTooltip": "Sélectionnez l'opérateur de la méthode de détection utilisée pour valider la comparaison.",
- "path": "Chemin d'accès",
- "pathTooltip": "Chemin complet du dossier contenant le fichier ou le dossier à détecter.",
- "value": "Valeur",
- "valueTooltip": "Sélectionnez une valeur correspondant à la méthode de détection sélectionnée. Les méthodes de détection de date doivent être entrées en heure locale."
- },
- "GridColumns": {
- "pathOrCode": "Chemin/Code",
- "type": "Type"
- },
- "MsiRule": {
- "operator": "Opérateur",
- "operatorTooltip": "Sélectionnez l'opérateur de la comparaison de validation de version de produit MSI.",
- "productCode": "Code de produit MSI",
- "productCodeTooltip": "Code de produit MSI valide pour l'application.",
- "productVersion": "Valeur",
- "productVersionCheck": "Vérification de la version de produit MSI",
- "productVersionCheckTooltip": "Sélectionnez 'Oui' pour vérifier la version de produit MSI en plus du code de produit MSI.",
- "productVersionTooltip": "Entrez la version de produit MSI de l'application."
- },
- "RegistryRule": {
- "DetectionMethodOptions": {
- "integerComparison": "Comparaison d'entiers",
- "keyDoesNotExist": "La clé n'existe pas",
- "keyExists": "La clé existe",
- "stringComparison": "Comparaison de chaînes",
- "valueDoesNotExist": "La valeur n'existe pas",
- "valueExists": "La valeur existe",
- "versionComparison": "Comparaison de versions"
- },
- "associatedWith32Bit": "Associé à une application 32 bits sur des clients 64 bits",
- "associatedWith32BitTooltip": "Sélectionnez 'Oui' pour rechercher dans le Registre 32 bits sur des clients 64 bits. Sélectionnez 'Non' (par défaut) pour rechercher dans le Registre 64 bits sur des clients 64 bits. Les clients 32 bits recherchent toujours dans le Registre 32 bits.",
- "detectionMethod": "Méthode de détection",
- "detectionMethodTooltip": "Sélectionnez le type de méthode de détection utilisé pour valider la présence de l'application.",
- "keyPath": "Chemin de la clé",
- "keyPathTooltip": "Chemin complet de l'entrée de Registre contenant la valeur à détecter.",
- "operator": "Opérateur",
- "operatorTooltip": "Sélectionnez l'opérateur de la méthode de détection utilisée pour valider la comparaison.",
- "value": "Valeur",
- "valueName": "Nom de valeur",
- "valueNameTooltip": "Nom de la valeur de Registre à détecter.",
- "valueTooltip": "Sélectionnez une valeur correspondant à la méthode de détection sélectionnée."
- },
- "RuleTypeOptions": {
- "file": "Fichier",
- "mSI": "MSI",
- "registry": "Registre"
- },
- "gridAriaLabel": "Règles de détection",
- "header": "Créez une règle qui indique la présence de l'application.",
- "noRulesSelectedPlaceholder": "Aucune règle spécifiée.",
- "ruleTableLimit": "Vous pouvez ajouter jusqu’à 25 règles de détection",
- "ruleType": "Type de règle",
- "ruleTypeTooltip": "Choisissez le type de règle de détection à ajouter."
- },
- "RuleConfigurationOptions": {
- "customScript": "Utiliser un script de détection personnalisé",
- "manual": "Configurer manuellement les règles de détection"
- },
- "bladeTitle": "Règles de détection",
- "header": "Configurez des règles propres à l'application pour détecter la présence de l'application.",
- "rulesFormat": "Format des règles",
- "rulesFormatTooltip": "Choisissez de configurer les règles de détection manuellement ou utilisez un script personnalisé pour détecter la présence de l'application.",
- "selectorLabel": "Règles de détection"
- },
- "AppType": {
- "androidEnterpriseSystemApp": "Application système Android Enterprise",
- "androidForWorkApp": "Application du store Google Play géré",
- "androidLobApp": "Application métier Android",
- "androidStoreApp": "Application de l'Android Store",
- "builtInAndroid": "Application Android intégrée",
- "builtInApp": "Application intégrée",
- "builtInIos": "Application iOS intégrée",
- "default": "",
- "iosLobApp": "Application métier iOS",
- "iosStoreApp": "Application de l'App Store iOS",
- "iosVppApp": "Application du programme d'achat en volume (VPP) iOS",
- "lineOfBusinessApp": "Application métier",
- "macOSDmgApp": "macOS app (.DMG)",
- "macOSEdgeApp": "Microsoft Edge (macOS)",
- "macOSLobApp": "Application métier macOS",
- "macOSMdatpApp": "Microsoft Defender ATP (macOS)",
- "macOSOfficeSuiteApp": "Applications Microsoft 365 (macOS)",
- "macOsVppApp": "Application du programme d'achat en volume macOS",
- "managedAndroidLobApp": "Application métier Android gérée",
- "managedAndroidStoreApp": "Application de l'Android Store gérée",
- "managedGooglePlayApp": "Application du store Google Play géré",
- "managedGooglePlayPrivateApp": "Application privée Google Play géré",
- "managedGooglePlayWebApp": "Lien web à Google Play géré",
- "managedIosLobApp": "Application métier iOS gérée",
- "managedIosStoreApp": "Application de l'App Store iOS gérée",
- "microsoftStoreForBusinessApp": "Application du Microsoft Store pour Entreprises",
- "microsoftStoreForBusinessReleaseManagedApp": "Microsoft Store pour Entreprises",
- "officeSuiteApp": "Applications Microsoft 365 (Windows 10 et versions ultérieures)",
- "webApp": "Lien web",
- "windowsAppXLobApp": "Application métier appx Windows",
- "windowsClassicApp": "Application Windows (Win32)",
- "windowsEdgeApp": "Microsoft Edge (Windows 10 et versions ultérieures)",
- "windowsMobileMsiLobApp": "Application métier MSI Windows",
- "windowsPhone81AppXBundleLobApp": "Application métier appx Windows Phone 8.1",
- "windowsPhone81AppXLobApp": "Application métier appx Windows Phone 8.1",
- "windowsPhone81StoreApp": "Application du Windows Phone 8.1 Store",
- "windowsPhoneXapLobApp": "Application métier XAP Windows Phone",
- "windowsStoreApp": "Application de Microsoft Store",
- "windowsUniversalAppXLobApp": "Application métier appx Windows Universal",
- "windowsUniversalLobApp": "Application métier Windows universelle"
- },
- "PolicyType": {
- "AttackSurfaceReductionRules": {
- "configMgr": "Règles de réduction de la surface d'attaque (ConfigMgr)"
- },
- "EndpointDetectionandResponse": {
- "mDE": "Détection de point de terminaison et réponse"
- },
- "EndpointSecurityTemplate": {
- "aSRAppBrowserSecurity": "Isolement des applications et du navigateur",
- "aSRApplicationControl": "Contrôle de l’application",
- "aSRAttackSurfaceReduction": "Règles de réduction de la surface d'attaque",
- "aSRDeviceControl": "Contrôle de l’appareil",
- "aSRExploitProtection": "Protection contre le code malveillant",
- "aSRWebProtection": "Protection web (ancienne version de Microsoft Edge)",
- "aVExclusions": "Exclusions de l’antivirus Microsoft Defender",
- "antivirus": "Antivirus Microsoft Defender",
- "cloudPC": "Base de référence de sécurité Windows 365",
- "default": "Sécurité du point de terminaison",
- "defenderTest": "Démonstration Microsoft Defender pour point de terminaison",
- "diskEncryption": "BitLocker",
- "eDR": "Détection de point de terminaison et réponse",
- "edgeSecurityBaseline": "Base de référence Microsoft Edge",
- "edgeSecurityBaselinePreview": "Préversion : base de référence Microsoft Edge",
- "editionUpgradeConfiguration": "Mise à niveau de l'édition et changement de mode",
- "firewall": "Pare-feu Microsoft Defender",
- "firewallRules": "Règles de pare-feu Microsoft Defender",
- "identityProtection": "Protection du compte",
- "identityProtectionPreview": "Protection du compte (préversion)",
- "mDMSecurityBaseline1810": "Base de référence de sécurité MDM pour Windows 10 et versions ultérieures pour octobre 2018",
- "mDMSecurityBaseline1810Preview": "Préversion : base de référence de sécurité MDM pour Windows 10 et versions ultérieures pour octobre 2018",
- "mDMSecurityBaseline1810PreviewBeta": "Préversion : base de référence de sécurité MDM pour Windows 10 pour octobre 2018 (bêta)",
- "mDMSecurityBaseline1906": "Base de référence de sécurité MDM pour Windows 10 et versions ultérieures pour mai 2019",
- "mDMSecurityBaseline2004": "Base de référence de sécurité MDM pour Windows 10 et versions ultérieures pour août 2020",
- "mDMSecurityBaseline2101": "Base de référence de sécurité MDM pour Windows 10 et versions ultérieures de décembre 2020",
- "macOSAntivirus": "Antivirus",
- "macOSDiskEncryption": "FileVault",
- "macOSFirewall": "Pare-feu macOS",
- "microsoftDefenderBaseline": "Base de référence Microsoft Defender pour point de terminaison",
- "office365Baseline": "Base de référence Microsoft Office 365",
- "office365BaselinePreview": "Préversion : base de référence Microsoft Office 365",
- "securityBaselines": "Bases de référence de sécurité",
- "test": "Modèle de test",
- "testFirewallRulesSecurityTemplateName": "Règles de pare-feu Microsoft Defender (test)",
- "testIdentityProtectionSecurityTemplateName": "Protection du compte (test)",
- "windowsSecurityExperience": "Expérience de sécurité Windows"
- },
- "Firewall": {
- "mDE": "Pare-feu Microsoft Defender"
- },
- "FirewallRules": {
- "mDE": "Règles de pare-feu Microsoft Defender"
- },
- "administrativeTemplates": "Modèles d'administration",
- "androidCompliancePolicy": "Stratégie de conformité Android",
- "aospDeviceOwnerCompliancePolicy": "Stratégie de conformité Android (AOSP)",
- "applicationControl": "Contrôle d’application",
- "custom": "Personnalisé",
- "deliveryOptimization": "Optimisation de livraison",
- "derivedPersonalIdentityVerificationCredential": "Information d’identification dérivée",
- "deviceFeatures": "Fonctionnalités de l'appareil",
- "deviceFirmwareConfigurationInterface": "Interface de configuration du microprogramme d'appareil",
- "deviceLock": "Verrouillage de l’appareil",
- "deviceOwner": "Profil professionnel complètement managé, dédié et appartenant à l’entreprise",
- "deviceRestrictions": "Restrictions sur l'appareil",
- "deviceRestrictionsWindows10Team": "Restrictions sur les appareils (Windows 10 Collaboration)",
- "domainJoinPreview": "Jonction de domaine",
- "editionUpgradeAndModeSwitch": "Mise à niveau de l'édition et changement de mode",
- "education": "Éducation",
- "email": "E-mail",
- "emailSamsungKnoxOnly": "E-mail (Samsung KNOX uniquement)",
- "endpointProtection": "Endpoint protection",
- "expeditedCheckin": "Configuration de la gestion des périphériques mobiles",
- "exploitProtection": "Protection Exploit",
- "extensions": "Extensions",
- "hardwareConfigurations": "Configurations du BIOS",
- "identityProtection": "Identity Protection",
- "iosCompliancePolicy": "Stratégie de conformité iOS",
- "kiosk": "Kiosque",
- "macCompliancePolicy": "Stratégie de conformité Mac",
- "microsoftDefenderAntivirus": "Antivirus Microsoft Defender",
- "microsoftDefenderAntivirusexclusions": "Exclusions de l’antivirus Microsoft Defender",
- "microsoftDefenderAtpWindows10Desktop": "Microsoft Defender pour point de terminaison (appareils de bureau exécutant Windows 10 ou versions ultérieures)",
- "microsoftDefenderFirewallRules": "Règles de pare-feu Microsoft Defender",
- "microsoftEdgeBaseline": "Base de référence Microsoft Edge",
- "mxProfileZebraOnly": "Profil MX (Zebra uniquement)",
- "networkBoundary": "Limite réseau",
- "oemConfig": "OEMConfig",
- "overrideGroupPolicy": "Remplacer la stratégie de groupe",
- "pkcsCertificate": "Certificat PKCS",
- "pkcsImportedCertificate": "Certificat PKCS importé",
- "preferenceFile": "Fichier de préférences",
- "presets": "Présélections",
- "scepCertificate": "Certificat SCEP",
- "secureAssessmentEducation": "Évaluation sécurisée (éducation)",
- "settingsCatalog": "Catalogue des paramètres",
- "sharedMultiUserDevice": "Appareil multi-utilisateur partagé",
- "softwareUpdates": "Mises à jour logicielles",
- "trustedCertificate": "Certificat approuvé",
- "unknown": "Inconnu",
- "unsupported": "Non pris en charge",
- "vpn": "VPN",
- "wiFi": "Wi-Fi",
- "wiFiImport": "Importation Wi-Fi",
- "windows10CompliancePolicy": "Stratégie de conformité Windows 10/11",
- "windows10MobileCompliancePolicy": "Stratégie de conformité Windows 10 Mobile",
- "windows10XScep": "Certificat SCEP - TEST",
- "windows10XTrustedCertificate": "Certificat approuvé - TEST",
- "windows10XVPN": "VPN - TEST",
- "windows10XWifi": "WIFI - TEST",
- "windows8CompliancePolicy": "Stratégie de conformité Windows 8",
- "windowsHealthMonitoring": "Monitoring de l’intégrité Windows",
- "windowsInformationProtection": "Protection des informations Windows",
- "windowsPhoneCompliancePolicy": "Stratégie de conformité Windows Phone",
- "windowsUpdateforBusiness": "Windows Update pour Entreprise",
- "wiredNetwork": "Réseau câblé",
- "workProfile": "Profil de travail personnel"
- },
- "OfficeSuiteAppsTab": {
- "acceptLicenseOnBehalfOfUsersLabel": "Accepter les termes du contrat de licence logiciel Microsoft au nom des utilisateurs",
- "appSuiteConfigurationLabel": "Configuration de la suite d'applications",
- "appSuiteInformationLabel": "Informations sur la suite d'applications",
- "appsToBeInstalledLabel": "Applications à installer dans le cadre de la suite logicielle",
- "architectureLabel": "Architecture",
- "architectureTooltip": "Détermine si l’édition 32 bits ou 64 bits de Applications Microsoft 365 est installée sur les appareils.",
- "configurationDesignerLabel": "Concepteur de configuration",
- "configurationFileLabel": "Fichier config",
- "configurationSettingsFormatLabel": "Format des paramètres de configuration",
- "configureAppSuiteLabel": "Configurer la suite d'applications",
- "configuredLabel": "Configuré",
- "currentVersionLabel": "Version actuelle",
- "currentVersionTooltip": "Il s’agit de la version actuelle d’Office qui est configurée dans cette suite. Cette valeur est mise à jour lors de la configuration et de l’enregistrement d’une version plus récente.",
- "enableMicrosoftSearchAsDefaultTooltip": "Installe un service en arrière-plan qui permet de déterminer si une extension Recherche Microsoft dans Bing pour Google Chrome est installée sur l’appareil.",
- "enterXmlDataLabel": "Entrer des données XML",
- "languagesLabel": "Langues",
- "languagesTooltip": "Par défaut, Intune installe Office avec la langue par défaut du système d’exploitation. Choisissez les langues supplémentaires que vous souhaitez installer.",
- "learnMoreText": "En savoir plus",
- "newUpdateChannelTooltip": "Définit la fréquence de mise à jour de l’application avec de nouvelles fonctionnalités.",
- "noCurrentVersionText": "Aucune version actuelle",
- "noLanguagesSelectedLabel": "Aucune langue sélectionnée",
- "notConfiguredLabel": "Non configuré",
- "propertiesLabel": "Propriétés",
- "removeOtherVersionsLabel": "Supprimer les autres versions",
- "removeOtherVersionsTooltip": "Sélectionnez Oui pour supprimer les autres versions d’Office (MSI) des appareils utilisateur.",
- "selectOfficeAppsLabel": "Sélectionner les applications Office",
- "selectOfficeAppsTooltip": "Sélectionnez les applications Office 365 à installer comme partie de la suite.",
- "selectOtherOfficeAppsLabel": "Sélectionner d’autres applications Office (licence obligatoire)",
- "selectOtherOfficeAppsTooltip": "Si vous avez des licences pour ces applications Office supplémentaires, vous pouvez également les affecter avec Intune.",
- "specificVersionLabel": "Version spécifique",
- "updateChannelLabel": "Canal de mise à jour",
- "updateChannelTooltip": "Définit la fréquence de mise à jour de l’application avec de nouvelles fonctionnalités.
\r\nTous les mois- Fournissez les dernières fonctionnalités d’Office aux utilisateurs dès qu’elles sont disponibles.
\r\nCanal d’entreprise mensuel - Fournissez les dernières fonctionnalités d’Office aux utilisateurs une fois par mois, le deuxième mardi du mois.
\r\nTous les mois (ciblé) - Fournissez un aperçu de la sortie du Canal mensuel à venir. Il s’agit d’un canal de mise à jour pris en charge, qui est généralement disponible au moins une semaine à l’avance quand il s’agit de la sortie d’un Canal mensuel qui contient de nouvelles fonctionnalités.
\r\nSemi-Annuel - Fournissez les nouvelles fonctionnalités d’Office aux utilisateurs plusieurs fois par an seulement.
\r\nSemi-annuel (ciblé) - Fournissez l’opportunité de tester le prochain canal semi-annuel aux utilisateurs pilotes et aux testeurs de compatibilité des applications.",
- "useMicrosoftSearchAsDefault": "Installer le service en arrière-plan pour Recherche Microsoft dans Bing",
- "useSharedComputerActivationLabel": "Utiliser l'activation de l'ordinateur partagé",
- "useSharedComputerActivationTooltip": "L’activation d’ordinateurs partagés vous permet de déployer Applications Microsoft 365 sur des ordinateurs utilisés par plusieurs utilisateurs. En principe, les utilisateurs peuvent uniquement installer et activer Applications Microsoft 365 sur un nombre limité d’appareils (5 PC, p. ex.). L’utilisation d’Applications Microsoft 365 avec activation d’un ordinateur partagé n’est pas prise en compte dans cette limite.",
- "versionToInstallLabel": "Version à installer",
- "versionToInstallTooltip": "Sélectionnez la version d’Office qui doit être installée.",
- "xLanguagesSelectedLabel": "{0} langue(s) sélectionnée(s)",
- "xmlConfigurationLabel": "Configuration XML"
- },
- "OfficeApplicationType": {
- "access": "Access",
- "bing": "Recherche Microsoft en tant que valeur par défaut",
- "excel": "Excel",
- "groove": "OneDrive (Groove)",
- "lync": "Skype Entreprise",
- "oneDrive": "OneDrive Desktop",
- "oneNote": "OneNote",
- "outlook": "Outlook",
- "powerPoint": "PowerPoint",
- "publisher": "Publisher",
- "teams": "Teams",
- "word": "Word"
- },
- "WindowsQualityUpdateProfile": {
- "Details": {
- "DaysUntilForcedReboot": {
- "label": "Nombre de jours à attendre avant l’application du redémarrage"
- },
- "Description": {
- "label": "Description"
- },
- "Name": {
- "label": "Nom"
- },
- "QualityUpdateRelease": {
- "label": "Accélérez l’installation des mises à jour qualité si la version du système d’exploitation de l’appareil est inférieure à :"
- },
- "bladeTitle": "Mises à jour qualité Windows 10 et versions ultérieures (préversion)",
- "loadError": "Échec du chargement !"
- },
- "TabName": {
- "qualityUpdateSettings": "Paramètres"
- },
- "infoBoxText": "Le seul contrôle de mise à jour qualité dédié, qui n’est actuellement pas la stratégie d’anneau de mise à jour existante pour Windows 10 et versions ultérieures, permet d’accélérer les mises à jour qualité pour les appareils qui sont au-dessus d’un niveau de correctif spécifié. Des contrôles supplémentaires seront disponibles à l’avenir.",
- "warningBoxText": "Alors que l’accélération des mises à jour logicielles peut contribuer à réduire la durée de la mise en conformité lorsque cela est nécessaire, cela a un impact plus grand sur la productivité de l’utilisateur final. La probabilité que ce dernier subisse un redémarrage pendant les heures de bureau est considérablement plus élevée."
- },
- "Devices": {
- "General": {
- "android": "Android"
- },
- "aOSP": "Projet open source Android",
- "android": "Administrateur d'appareil Android",
- "androidWorkProfile": "Android Enterprise (profil professionnel)",
- "iOS": "iOS/iPadOS",
- "mac": "Mac OS",
- "windows": "Windows (MDM)",
- "windows10": "Windows 10 et ultérieur",
- "windowsHomeSku": "Référence Windows Famille",
- "windowsMobile": "Windows Mobile"
- },
"SettingDetails": {
"CustomPolicyConfigurationProfile": {
"uploadControlPlaceHolderText": "Sélectionner un fichier de profil de configuration"
@@ -3675,7 +1707,7 @@
"aESGCM128": "AES-128-GCM (ICV 16 octets)",
"aESGCM256": "AES-256-GCM (ICV 16 octets)",
"aadSharedDeviceDataClearAppsDescription": "Ajoutez à la liste toute application non optimisée pour le mode appareil partagé. Les données locales de l'application seront effacées chaque fois qu'un utilisateur se déconnecte d'une application optimisée pour le mode appareil partagé. Disponible pour les appareils dédiés inscrits en mode partagé exécutant Android 9 et versions ultérieures.",
- "aadSharedDeviceDataClearAppsName": "Effacer les données locales dans les applications non optimisées pour le mode Appareil partagé (Public Preview)",
+ "aadSharedDeviceDataClearAppsName": "Effacer les données locales dans les applications non optimisées pour le mode Appareil partagé",
"accountsPageDescription": "Bloque l'accès à Comptes dans l'application Paramètres.",
"accountsPageName": "Comptes",
"accountsSignInAssistantSettingsDescription": "Bloque le service de l'Assistant de connexion Microsoft (wlidsvc). Lorsque ce paramètre n’est pas configuré, le service NT wlidsvc peut est contrôlé par l'utilisateur (démarrage manuel)",
@@ -5503,7 +3535,7 @@
"enableEndUserAccessToDefenderName": "Accès de l'utilisateur final à Defender",
"enableEngagedRestartDescription": "Active les paramètres qui autorisent l'utilisateur à basculer sur un redémarrage commencé.",
"enableEngagedRestartName": "Autoriser l'utilisateur à redémarrer (redémarrage commencé)",
- "enableIdentityPrivacyDescription": "Cette propriété masque les noms d'utilisateur avec le texte que vous entrez. Par exemple, si vous tapez « anonyme », chaque utilisateur qui s'authentifie auprès de cette connexion Wi-Fi avec son nom d'utilisateur réel est affiché comme « anonyme ».",
+ "enableIdentityPrivacyDescription": "Cette propriété masque les noms d’utilisateurs avec le texte que vous entrez. Par exemple, si vous tapez « anonyme », chaque utilisateur qui s’authentifie auprès de cette Wi-Fi connexion à l’aide de son nom d’utilisateur réel est affiché comme « anonyme ». Cela peut être nécessaire si vous utilisez l’authentification par certificat basée sur un appareil.",
"enableIdentityPrivacyName": "Confidentialité de l'identité (identité externe)",
"enableNetworkInspectionSystemDescription": "Bloquer le trafic malveillant détecté par des signatures dans le système NIS (Network Inspection System)",
"enableNetworkInspectionSystemName": "Système NIS (Network Inspection System)",
@@ -7252,6 +5284,8 @@
"presharedKeyEncodingDescription": "Code les clés prépartagées avec UTF-8.",
"presharedKeyEncodingName": "Codage des clés prépartagées",
"preventAny": "Empêcher tout partage en dehors des limites",
+ "primaryAuthenticationMethodName": "Authentification principale",
+ "primaryAuthenticationMethodTEAPDescription": "Choisissez le mode d’authentification principal des utilisateurs. Lorsque vous sélectionnez Certificats, sélectionnez l’un des profils de certificat (SCEP ou PKCS) qui est également déployé sur l’appareil. Il s’agit du certificat d’identité présenté par l’appareil au serveur.",
"primarySMTPAddressOption": "Adresse SMTP principale",
"printersColumns": "par exemple, le nom DNS de l'imprimante",
"printersDescription": "Provisionner automatiquement les imprimantes en fonction de leurs noms d'hôte réseau. Ce paramètre ne prend pas en charge les imprimantes partagées.",
@@ -7663,6 +5697,8 @@
"searchEnableRemoteQueriesName": "Requêtes distantes",
"secondActiveEthernet": "Deuxième port Ethernet actif",
"secondEthernet": "Deuxième port Ethernet",
+ "secondaryAuthenticationMethodName": "Méthode d’authentification secondaire",
+ "secondaryAuthenticationMethodTEAPDescription": "Choisissez le mode d’authentification secondaire des utilisateurs. Lorsque vous sélectionnez Certificats, sélectionnez l’un des profils de certificat (SCEP ou PKCS) qui est également déployé sur l’appareil. Il s’agit du certificat d’identité présenté par l’appareil au serveur.",
"secretKey": "Clé secrète :",
"secureBootEnabledDescription": "Exiger l'activation du démarrage sécurisé sur l'appareil",
"secureBootEnabledName": "Exiger l'activation du démarrage sécurisé sur l'appareil",
@@ -8074,6 +6110,7 @@
"systemUpdateWindow9": "4:30",
"systemWindowsBlockedDescription": "Désactive les fenêtres de notification telles que les toasts, les appels entrants, les appels sortants, les alertes système et les erreurs système.",
"systemWindowsBlockedName": "Fenêtres de notification",
+ "tEAPName": "Tunnel EAP (TEAP)",
"tLSMinMax": "La version TLS minimale doit être inférieure ou égale à la version TLS maximale.",
"tLSVersionRangeMaximum": "Maximum de la plage de versions TLS",
"tLSVersionRangeMaximumDescription": "Entrez une version TLS maximale (1.0, 1.1 ou 1.2). Si aucune valeur n'est spécifiée, la valeur par défaut 1.2 est utilisée.",
@@ -8126,6 +6163,17 @@
"timeWindowSameStartEndDayTime": "La date et l'heure de fin ne peuvent pas être identiques à la date et l'heure de début.",
"timeZoneDescription": "Sélectionnez le fuseau horaire pour les appareils ciblés.",
"timeZoneName": "Fuseau horaire",
+ "timeoutFifteenMinutes": "15 minutes",
+ "timeoutFiveMinutes": "5 minutes",
+ "timeoutFourHours": "4 heures",
+ "timeoutNever": "Jamais de délai d’expiration",
+ "timeoutOneHour": "1 heure",
+ "timeoutOneMinute": "1 minute",
+ "timeoutTenMinutes": "10 minutes",
+ "timeoutThirtyMinutes": "30 minutes",
+ "timeoutThreeMinutes": "3 minutes",
+ "timeoutTwoHours": "2 heures",
+ "timeoutTwoMinutes": "2 minutes",
"toggleConfigurationPkgDescription": "Charger un package de configuration signé à utiliser pour intégrer le client Microsoft Defender pour point de terminaison",
"toggleConfigurationPkgName": "Type de package de configuration du client Microsoft Defender pour point de terminaison :",
"trafficRuleAppName": "Application",
@@ -8824,6 +6872,33 @@
"win10WifiWirelessSecurityTypeName": "Type de sécurité sans fil",
"win10WifiWirelessSecurityTypeOpen": "Ouvrir (pas d'authentification)",
"win10WifiWirelessSecurityTypeWPA": "WPA/WPA2-Personnel",
+ "win10WiredAuthenticationModeDescription": "Choisissez si vous voulez authentifier l’utilisateur et/ou l’appareil ou utiliser l’authentification d’invité (aucun). Si vous utilisez l’authentification par certificat, vérifiez que le type de certificat correspond au type d’authentification.",
+ "win10WiredAuthenticationModeName": "Mode d'authentification",
+ "win10WiredAuthenticationPeriodDescription": "Durée en secondes pendant laquelle le client doit attendre une fois que sa tentative d’authentification a échoué. Choisissez un nombre compris entre 1 et 3600. Sans spécification de valeur, la durée prise en compte est de 18 secondes.",
+ "win10WiredAuthenticationPeriodName": "Période d’authentification",
+ "win10WiredAuthenticationRetryDelayPeriodDescription": "Nombre de secondes entre l’échec de l’authentification et la prochaine tentative d’authentification. Choisissez une valeur comprise entre 1 et 3600. Sans spécification de valeur, la durée prise en compte est de 1 seconde.",
+ "win10WiredAuthenticationRetryDelayPeriodName": "Délai avant une nouvelle tentative d’authentification ",
+ "win10WiredFIPSComplianceDescription": "La validation par rapport à la norme FIPS 140-2 est obligatoire pour toutes les agences de l'état fédéral des États-Unis qui utilisent des systèmes de sécurité basés sur le chiffrement afin de protéger les informations sensibles, mais non classifiées, stockées numériquement.",
+ "win10WiredFIPSComplianceName": "Forcer la conformité du profil câblé avec le normes FIPS (Federal Information Processing Standard) (FIPS)",
+ "win10WiredGuest": "Invité",
+ "win10WiredMachine": "Machine",
+ "win10WiredMachineOrUser": "Utilisateur ou machine",
+ "win10WiredMaximumAuthenticationFailuresDescription": "Entrez le nombre maximal d’échecs d’authentification pour cet ensemble d’informations d’identification. Sans spécification de valeur, 1 tentative est utilisée.",
+ "win10WiredMaximumAuthenticationFailuresName": "Nombre maximal d’échecs d’authentification",
+ "win10WiredMaximumEAPOLStartMessagesDescription": "Choisissez un nombre de messages EAPOL-Start entre 1 et 100. Si vous ne spécifiez pas de valeur, 3 messages sont envoyés au maximum.",
+ "win10WiredMaximumEAPOLStartMessagesName": "Nombre maximum de messages EAPOL-Start",
+ "win10WiredNetworkAuthenticationBlockPeriodDescription": "Période de blocage de l'authentification en minutes. Permet de spécifier la durée pendant laquelle les tentatives d'authentification automatique seront bloquées après l'échec d'une tentative d'authentification. Choisissez une valeur entre 0 et 1440.",
+ "win10WiredNetworkAuthenticationBlockPeriodName": "Période de blocage (minutes)",
+ "win10WiredNetworkAuthenticationModeName": "Mode d'authentification",
+ "win10WiredNetworkDoNotEnforceName": "Ne pas appliquer",
+ "win10WiredNetworkEnforce8021XDescription": "Spécifie si le service de configuration automatique pour les réseaux câblés nécessite l’utilisation de 802.1X pour l’authentification de port.",
+ "win10WiredNetworkEnforce8021XName": "802.1x",
+ "win10WiredNetworkEnforceName": "Appliquer",
+ "win10WiredRememberCredentialsDescription": "Indiquez s’il faut mettre en cache les informations d’identification des utilisateurs lorsqu’ils les entrent la première fois qu’ils se connectent au réseau câblé. Les informations d’identification mises en cache sont utilisées pour les connexions suivantes et les utilisateurs n’ont pas besoin de les entrer à nouveau. Si vous ne configurez pas ce paramètre, cela revient à le définir sur Oui.",
+ "win10WiredRememberCredentialsName": "Mémoriser les informations d'identification à chaque ouverture de session",
+ "win10WiredStartPeriodDescription": "Délai d’attente (en secondes) avant l’envoi d’un message EAPOL-Start. Choisissez une valeur comprise entre 1 et 3600. Sans spécification de valeur, le délai pris en compte est de 5 secondes.",
+ "win10WiredStartPeriodName": "Période de début",
+ "win10WiredUser": "Utilisateur",
"win10appLockerApplicationControlAllowDescription": "Ces applications sont autorisées à s'exécuter",
"win10appLockerApplicationControlAllowName": "Appliquer",
"win10appLockerApplicationControlAuditComponentsAndStoreAppsDescription": "Le mode « Audit uniquement » journalise tous les événements dans les journaux des événements du client local, mais n'empêche pas les applications de s'exécuter. Les composants Windows et les applications du Microsoft Store sont journalisés quand ils passent le contrôle des critères de sécurité.",
@@ -9165,7 +7240,6 @@
"deviceConditionsInfoParagraph2": "Vous pouvez configurer des paramètres similaires basés sur l'appareil pour les appareils inscrits.",
"deviceConditionsInfoParagraph2LinkText": "Découvrez-en plus sur la configuration des paramètres de conformité d'appareil pour les appareils inscrits.",
"deviceId": "ID de l'appareil",
- "deviceLockComplexityValidationFailureNotes": "Remarques :
\r\n\r\n - Le verrouillage de l’appareil peut nécessiter une complexité de mot de passe de : LOW, MEDIUM ou HIGH ciblé sur Android 11+. Pour les appareils fonctionnant sur Android 10 et les versions antérieures, la définition d’une valeur de complexité Faible/Moyenne/Élevée correspond par défaut au comportement attendu pour « Complexité faible ».
\r\n - Les définitions de mot de passe ci-dessous sont susceptibles d’être modifiées. Consultez DevicePolicyManager| Développeurs Android pour les définitions les plus mises à jour des différents niveaux de complexité du mot de passe.
\r\n
\r\n\r\nLe mot de passe à faible
\r\n\r\n - peut être un modèle ou un code PIN avec répétition (4444) ou ordonné (1234, 4321, 2468) sequences.
\r\n
\r\n\r\ncode PIN moyen
\r\n\r\n - sans répétition (4444) ou ordonné (1234, 4321, 2468) séquences avec une longueur minimale de 4 caractères
\r\n - mots de passe alphabétiques avec une longueur minimale de 4 caractères
\r\n - Mots de passe alphanumériques d’une longueur minimale de 4 caractères au moins 4 caractères
\r\n
\r\n\r\ndes séquences de code PIN à
\r\n\r\n - élevé sans répétition (4444) ou ordonnées (1234, 4321, 2468) avec une longueur minimale d’au moins 8 caractères
\r\n - mots de passe alphabétiques d’une longueur minimale de 6 caractères
\r\n - mots de passe alphanumériques d’une longueur minimale d’au moins 6 caractères
\r\n
\r\n",
"deviceLockedOpenFilesOptionsText": "Quand l'appareil est verrouillé et que des fichiers sont ouverts",
"deviceLockedOptionText": "Quand l'appareil est verrouillé",
"deviceManufacturer": "Fabricant du périphérique",
@@ -9463,7 +7537,7 @@
"reporting": "Rapports",
"reports": "Rapports",
"require": "Exiger",
- "requireDeviceLockComplexityOnApps": "Exiger la complexité du verrouillage de l’appareil",
+ "requireDeviceLockOnApps": "Require device lock",
"requireThreatScanOnApps": "Exiger l'analyse des menaces sur les applications",
"requiredField": "Ce champ ne peut pas être vide",
"requiredSafetyNetEvaluationType": "Type d’évaluation SafetyNet obligatoire",
@@ -9659,6 +7733,7 @@
"yourDataIsBeingDownloadedEllipsis": "Le téléchargement de vos données est en cours. Cette opération peut prendre un certain temps...",
"yourDataIsBeingDownloadedMinutes": "Le téléchargement de vos données est en cours. Cette opération peut prendre quelques minutes...",
"yourProtectionLevel": "Votre niveau de protection",
+ "rules": "Règles",
"basics": "De base",
"modeTableHeader": "Mode groupe",
"appAssignmentMsg": "Groupe",
@@ -9695,221 +7770,2042 @@
"licenseTypeDevice": "Appareil",
"licenseTypeUser": "Utilisateur"
},
- "Languages": {
- "ar-aE": "Arabe (E.A.U.)",
- "ar-bH": "Arabe (Bahreïn)",
- "ar-dZ": "Arabe (Algérie)",
- "ar-eG": "Arabe (Égypte)",
- "ar-iQ": "Arabe (Irak)",
- "ar-jO": "Arabe (Jordanie)",
- "ar-kW": "Arabe (Koweït)",
- "ar-lB": "Arabe (Liban)",
- "ar-lY": "Arabe (Libye)",
- "ar-mA": "Arabe (Maroc)",
- "ar-oM": "Arabe (Oman)",
- "ar-qA": "Arabe (Qatar)",
- "ar-sA": "Arabe (Arabie saoudite)",
- "ar-sY": "Arabe (Syrie)",
- "ar-tN": "Arabe (Tunisie)",
- "ar-yE": "Arabe (Yémen)",
- "az-cyrl": "Azéri (cyrillique, Azerbaïdjan)",
- "az-latn": "Azéri (latin, Azerbaïdjan)",
- "bn-bD": "Bengali (Bangladesh)",
- "bn-iN": "Bengali (Inde)",
- "bs-cyrl": "Bosniaque (cyrillique)",
- "bs-latn": "Bosniaque (latin)",
- "zh-cN": "Chinois (République populaire de Chine)",
- "zh-hK": "Chinois (R.A.S. de Hong-Kong)",
- "zh-mO": "Chinois (Macao R.A.S.)",
- "zh-sG": "Chinois (Singapour)",
- "zh-tW": "Chinois (Taïwan)",
- "hr-bA": "Croate (Latin)",
- "hr-hR": "Croate (Croatie)",
- "nl-bE": "Néerlandais (Belgique)",
- "nl-nL": "Néerlandais (Pays-Bas)",
- "en-aU": "Anglais (Australie)",
- "en-bZ": "Anglais (Belize)",
- "en-cA": "Anglais (Canada)",
- "en-cabn": "Anglais (Caraïbes)",
- "en-iE": "Anglais (Irlande)",
- "en-iN": "Anglais (Inde)",
- "en-jM": "Anglais (Jamaïque)",
- "en-mY": "Anglais (Malaisie)",
- "en-nZ": "Anglais (Nouvelle-Zélande)",
- "en-pH": "Anglais (Philippines)",
- "en-sG": "Anglais (Singapour)",
- "en-tT": "Anglais (Trinité-et-Tobago)",
- "en-uK": "Anglais (Royaume-Uni)",
- "en-uS": "Anglais (États-Unis)",
- "en-zA": "Anglais (Afrique du Sud)",
- "en-zW": "Anglais (Zimbabwe)",
- "fr-bE": "Français (Belgique)",
- "fr-cA": "Français (Canada)",
- "fr-cH": "Français (Suisse)",
- "fr-fR": "Français (France)",
- "fr-lU": "Français (Luxembourg)",
- "fr-mC": "Français (Monaco)",
- "de-aT": "Allemand (Autriche)",
- "de-cH": "Allemand (Suisse)",
- "de-dE": "Allemand (Allemagne)",
- "de-lI": "Allemand (Liechtenstein)",
- "de-lU": "Allemand (Luxembourg)",
- "iu-cans": "Inuktitut (syllabique, Canada)",
- "iu-latn": "Inuktitut (latin, Canada)",
- "it-cH": "Italien (Suisse)",
- "it-iT": "Italien (Italie)",
- "ms-bN": "Malais (Brunéi Darussalam)",
- "ms-mY": "Malais (Malaisie)",
- "mn-cN": "Mongol (mongol traditionnel, RPC)",
- "mn-mN": "Mongol (cyrillique, Mongolie)",
- "no-nB": "Norvégien, Bokmål (Norvège)",
- "no-nn": "Norvégien, Nynorsk (Norvège)",
- "pt-bR": "Portugais (Brésil)",
- "pt-pT": "Portugais (Portugal)",
- "quz-bO": "Quechua (Bolivie)",
- "quz-eC": "Quechua (Équateur)",
- "quz-pE": "Quechua (Pérou)",
- "smj-nO": "Same de Lule (Norvège)",
- "smj-sE": "Same de Lule (Suède)",
- "se-fI": "Same du Nord (Finlande)",
- "se-nO": "Same du Nord (Norvège)",
- "se-sE": "Same du Nord (Suède)",
- "sma-nO": "Same du Sud (Norvège)",
- "sma-sE": "Same du Sud (Suède)",
- "smn": "Same d'Inari (Finlande)",
- "sms": "Same de Skolt (Finlande)",
- "sr-Cyrl-bA": "Serbe (cyrillique)",
- "sr-Cyrl-rS": "Serbe (Cyrillique, Serbie et Monténégro (anciennement))",
- "sr-Latn-bA": "Serbe (Latin)",
- "sr-Latn-rS": "Serbe (latin, Serbie)",
- "dsb": "Bas-sorabe (Allemagne)",
- "hsb": "Haut-sorabe (Allemagne)",
- "es-es-tradnl": "Espagnol (Espagne, Traditionnel)",
- "es-aR": "Espagnol (Argentine)",
- "es-bO": "Espagnol (Bolivie)",
- "es-cL": "Espagnol (Chili)",
- "es-cO": "Espagnol (Colombie)",
- "es-cR": "Espagnol (Costa Rica)",
- "es-dO": "Espagnol (République dominicaine)",
- "es-eC": "Espagnol (Équateur)",
- "es-eS": "Espagnol (Espagne)",
- "es-gT": "Espagnol (Guatemala)",
- "es-hN": "Espagnol (Honduras)",
- "es-mX": "Espagnol (Mexique)",
- "es-nI": "Espagnol (Nicaragua)",
- "es-pA": "Espagnol (Panama)",
- "es-pE": "Espagnol (Pérou)",
- "es-pR": "Espagnol (Porto Rico)",
- "es-pY": "Espagnol (Paraguay)",
- "es-sV": "Espagnol (Salvador)",
- "es-uS": "Espagnol (États-Unis)",
- "es-uY": "Espagnol (Uruguay)",
- "es-vE": "Espagnol (Venezuela)",
- "sv-fI": "Suédois (Finlande)",
- "uz-cyrl": "Ouzbek (cyrillique, Ouzbékistan)",
- "uz-latn": "Ouzbek (latin, Ouzbékistan)",
- "af": "Afrikaans (Afrique du Sud)",
- "sq": "Albanais (Albanie)",
- "am": "Amharique (Éthiopie)",
- "hy": "Arménien (Arménie)",
- "as": "Assamais (Inde)",
- "ba": "Bachkir (Russie)",
- "eu": "Basque (Basque)",
- "be": "Biélorusse (Bélarus)",
- "br": "Breton (France)",
- "bg": "Bulgare (Bulgarie)",
- "ca": "Catalan (Catalan)",
- "co": "Corse (France)",
- "cs": "Tchèque (République tchèque)",
- "da": "Danois (Danemark)",
- "prs": "Dari (Afghanistan)",
- "dv": "Maldivien (Maldives)",
- "et": "Estonien (Estonie)",
- "fo": "Féroïen (Îles Féroé)",
- "fil": "Filipino (Philippines)",
- "fi": "Finnois (Finlande)",
- "gl": "Galicien (Galicien)",
- "ka": "Géorgien (Géorgie)",
- "el": "Grec (Grèce)",
- "gu": "Goudjrati (Inde)",
- "ha": "Haoussa (latin, Nigéria)",
- "he": "Hébreu (Israël)",
- "hi": "Hindi (Inde)",
- "hu": "Hongrois (Hongrie)",
- "is": "Islandais (Islande)",
- "ig": "Igbo (Nigéria)",
- "id": "Indonésien (Indonésie)",
- "ga": "Irlandais (Irlande)",
- "xh": "Xhosa (Afrique du Sud)",
- "zu": "Zoulou (Afrique du Sud)",
- "ja": "Japonais (Japon)",
- "kn": "Kannada (Inde)",
- "kk": "Kazakh (Kazakhstan)",
- "km": "Khmer (Cambodge)",
- "rw": "Kinyarwanda (Rwanda)",
- "sw": "Swahili (Kenya)",
- "kok": "Konkani (Inde)",
- "ko": "Coréen (Corée)",
- "ky": "Kirghize (Kirghizistan)",
- "lo": "Lao (RDP Lao)",
- "lv": "Letton (Lettonie)",
- "lt": "Lituanien (Lituanie)",
- "lb": "Luxembourgeois (Luxembourg)",
- "mk": "Macédonien (Macédoine du Nord)",
- "ml": "Malayalam (Inde)",
- "mt": "Maltais (Malte)",
- "mi": "Maori (Nouvelle-Zélande)",
- "mr": "Marathi (Inde)",
- "moh": "Mohawk (Mohawk)",
- "ne": "Népalais (Népal)",
- "oc": "Occitan (France)",
- "or": "Odia (Inde)",
- "ps": "Pachto (Afghanistan)",
- "fa": "Persan",
- "pl": "Polonais (Pologne)",
- "pa": "Pendjabi (Inde)",
- "ro": "Roumain (Roumanie)",
- "rm": "Romanche (Suisse)",
- "ru": "Russe (Russe)",
- "sa": "Sanscrit (Inde)",
- "st": "Sotho du Nord (Afrique du Sud)",
- "tn": "Setswana (Afrique du Sud)",
- "si": "Cingalais (Sri Lanka)",
- "sk": "Slovaque (Slovaquie)",
- "sl": "Slovène (Slovénie)",
- "sv": "Suédois (Suède)",
- "syr": "Syriaque (Syrie)",
- "tg": "Tadjik (cyrillique, Tadjikistan)",
- "ta": "Tamoul (Inde)",
- "tt": "Tatar (Russie)",
- "te": "Télougou (Inde)",
- "th": "Thaï (Thaïlande)",
- "bo": "Tibétain (RPC)",
- "tr": "Turc (Turquie)",
- "tk": "Turkmène (Turkménistan)",
- "uk": "Ukrainien (Ukraine)",
- "ur": "Ourdou (Pakistan)",
- "vi": "Vietnamien (Vietnam)",
- "cy": "Gallois (Royaume-Uni)",
- "wo": "Wolof (Sénégal)",
- "ii": "Yi (RPC)",
- "yo": "Yoruba (Nigéria)"
- },
- "AppProtection": {
- "allAppTypes": "Cibler sur tous les types d'application",
- "androidPlatformLabel": "Android",
- "appsInAndroidWorkProfile": "Applications dans le profil professionnel Android",
- "appsOnIntuneManagedDevices": "Applications sur les appareils gérés par Intune",
- "appsOnUnmanagedDevices": "Applications sur les appareils non gérés",
- "iOSPlatformLabel": "iOS/iPadOS",
- "iosAndroidMacPlatformLabel": "iOS, Android, Mac",
- "iosAndroidPlatformLabel": "iOS, Android",
- "macPlatformLabel": "Mac",
- "notAvailable": "Indisponible",
- "windows10PlatformLabel": "Windows 10 et ultérieur",
- "withEnrollment": "Avec inscription",
- "withoutEnrollment": "Sans inscription"
- },
+ "ApplicabilityRules": {
+ "GridLabel": {
+ "property": "Propriété",
+ "rule": "Règle",
+ "ruleDetails": "Détails de la règle",
+ "value": "Valeur"
+ },
+ "assignIf": "Attribuer le profil si",
+ "deleteWarning": "Cette opération supprime la règle d'applicabilité sélectionnée",
+ "dontAssignIf": "Ne pas attribuer le profil si",
+ "editionDisplayText": "{0} {1}",
+ "editionDisplayTextMore": "et {0} de plus",
+ "instructions": "Spécifiez comment appliquer ce profil dans un groupe affecté. Intune applique seulement le profil aux appareils qui répondent aux critères combinés de ces règles.",
+ "maxText": "Max",
+ "minText": "Min",
+ "noActionRow": "Aucune règle d'applicabilité spécifiée",
+ "oSVersion": "Par ex., 1.2.3.4",
+ "toText": "jusqu'au",
+ "windows10Education": "Windows 10/11 Éducation",
+ "windows10EducationN": "Windows 10/11 Éducation N",
+ "windows10Enterprise": "Windows 10/11 Entreprise",
+ "windows10EnterpriseN": "Windows 10/11 Entreprise N",
+ "windows10HolographicEnterprise": "Windows 10 Holographic for Business",
+ "windows10Home": "Windows 10/11 Famille",
+ "windows10HomeChina": "Windows 10 Famille Chine",
+ "windows10HomeN": "Windows 10/11 Famille N",
+ "windows10HomeSingleLanguage": "Windows 10/11 Famille Unilingue",
+ "windows10IoTCore": "Windows 10 IoT Core",
+ "windows10IoTCoreCommercial": "Windows 10 IoT Standard Commercial",
+ "windows10Mobile": "Windows 10 Mobile",
+ "windows10MobileEnterprise": "Windows 10 Mobile Entreprise",
+ "windows10OsEdition": "Édition du système d'exploitation",
+ "windows10OsVersion": "Version du système d'exploitation",
+ "windows10Professional": "Windows 10/11 Professionnel",
+ "windows10ProfessionalEducation": "Windows 10/11 Professionnel Éducation",
+ "windows10ProfessionalEducationN": "Windows 10/11 Professionnel Éducation N",
+ "windows10ProfessionalN": "Windows 10 Professionnel N",
+ "windows10ProfessionalWorkstation": "Station de travail Windows 10/11 Professionnel",
+ "windows10ProfessionalWorkstationN": "Windows 10/11 Professionnel Station de travail N"
+ },
+ "DetectionRules": {
+ "ComparisonOperators": {
+ "equals": "Est égal à",
+ "greaterThan": "Supérieur à",
+ "greaterThanOrEqualTo": "Supérieur ou égal à",
+ "lessThan": "Inférieur à",
+ "lessThanOrEqualTo": "Inférieur ou égal à",
+ "notEqualTo": "Différent de"
+ },
+ "CustomScript": {
+ "enforceSignatureCheck": "Appliquer la vérification de signature de script et exécuter le script sans avertissement",
+ "enforceSignatureCheckTooltip": "Sélectionnez 'Oui' pour vérifier que le script est signé par un éditeur approuvé, ce qui permet de l'exécuter sans afficher d'avertissements ni d'invites. Le script s'exécute sans blocage. Sélectionnez 'Non' (par défaut) pour exécuter le script avec confirmation de l'utilisateur final sans vérification de signature.",
+ "header": "Utiliser un script de détection personnalisé",
+ "runAs32Bit": "Exécuter le script comme processus 32 bits sur des clients 64 bits",
+ "runAs32BitTooltip": "Sélectionnez 'Oui' pour exécuter le script dans un processus 32 bits sur des clients 64 bits. Sélectionnez 'Non' (par défaut) pour exécuter le script dans un processus 64 bits sur des clients 64 bits. Les clients 32 bits exécutent le script dans un processus 32 bits.",
+ "scriptFile": "Fichier de script",
+ "scriptFileNotSelectedValidation": "Aucun fichier de script sélectionné.",
+ "scriptFileTooltip": "Sélectionnez un script PowerShell qui détecte la présence de l'application sur le client. L'application est détectée quand le script retourne un code de sortie de valeur 0 et écrit une valeur de chaîne dans STDOUT.",
+ "scriptSizeLimitValidation": "Votre script de détection dépasse la taille maximale autorisée. Résolvez ce problème en réduisant la taille de votre script de détection."
+ },
+ "Manual": {
+ "FileRule": {
+ "DetectionMethodOptions": {
+ "dateCreated": "Date de création",
+ "dateModified": "Date de modification",
+ "doesNotExist": "Le fichier ou dossier n'existe pas",
+ "fileOrFolderExists": "Le fichier ou le dossier existe",
+ "sizeInMB": "Taille en Mo",
+ "version": "Chaîne (version)"
+ },
+ "associatedWith32Bit": "Associé à une application 32 bits sur des clients 64 bits",
+ "associatedWith32BitTooltip": "Sélectionnez 'Oui' pour développer des variables d'environnement path dans le contexte 32 bits sur des clients 64 bits. Sélectionnez 'Non' (par défaut) pour développer des variables path dans le contexte 64 bits sur des clients 64 bits. Les clients 32 bits utilisent toujours le contexte 32 bits.",
+ "detectionMethod": "Méthode de détection",
+ "detectionMethodTooltip": "Sélectionnez le type de méthode de détection utilisé pour valider la présence de l'application.",
+ "fileOrFolder": "Fichier ou dossier",
+ "fileOrFolderToolTip": "Fichier ou dossier à détecter.",
+ "operator": "Opérateur",
+ "operatorTooltip": "Sélectionnez l'opérateur de la méthode de détection utilisée pour valider la comparaison.",
+ "path": "Chemin d'accès",
+ "pathTooltip": "Chemin complet du dossier contenant le fichier ou le dossier à détecter.",
+ "value": "Valeur",
+ "valueTooltip": "Sélectionnez une valeur correspondant à la méthode de détection sélectionnée. Les méthodes de détection de date doivent être entrées en heure locale."
+ },
+ "GridColumns": {
+ "pathOrCode": "Chemin/Code",
+ "type": "Type"
+ },
+ "MsiRule": {
+ "operator": "Opérateur",
+ "operatorTooltip": "Sélectionnez l'opérateur de la comparaison de validation de version de produit MSI.",
+ "productCode": "Code de produit MSI",
+ "productCodeTooltip": "Code de produit MSI valide pour l'application.",
+ "productVersion": "Valeur",
+ "productVersionCheck": "Vérification de la version de produit MSI",
+ "productVersionCheckTooltip": "Sélectionnez 'Oui' pour vérifier la version de produit MSI en plus du code de produit MSI.",
+ "productVersionTooltip": "Entrez la version de produit MSI de l'application."
+ },
+ "RegistryRule": {
+ "DetectionMethodOptions": {
+ "integerComparison": "Comparaison d'entiers",
+ "keyDoesNotExist": "La clé n'existe pas",
+ "keyExists": "La clé existe",
+ "stringComparison": "Comparaison de chaînes",
+ "valueDoesNotExist": "La valeur n'existe pas",
+ "valueExists": "La valeur existe",
+ "versionComparison": "Comparaison de versions"
+ },
+ "associatedWith32Bit": "Associé à une application 32 bits sur des clients 64 bits",
+ "associatedWith32BitTooltip": "Sélectionnez 'Oui' pour rechercher dans le Registre 32 bits sur des clients 64 bits. Sélectionnez 'Non' (par défaut) pour rechercher dans le Registre 64 bits sur des clients 64 bits. Les clients 32 bits recherchent toujours dans le Registre 32 bits.",
+ "detectionMethod": "Méthode de détection",
+ "detectionMethodTooltip": "Sélectionnez le type de méthode de détection utilisé pour valider la présence de l'application.",
+ "keyPath": "Chemin de la clé",
+ "keyPathTooltip": "Chemin complet de l'entrée de Registre contenant la valeur à détecter.",
+ "operator": "Opérateur",
+ "operatorTooltip": "Sélectionnez l'opérateur de la méthode de détection utilisée pour valider la comparaison.",
+ "value": "Valeur",
+ "valueName": "Nom de valeur",
+ "valueNameTooltip": "Nom de la valeur de Registre à détecter.",
+ "valueTooltip": "Sélectionnez une valeur correspondant à la méthode de détection sélectionnée."
+ },
+ "RuleTypeOptions": {
+ "file": "Fichier",
+ "mSI": "MSI",
+ "registry": "Registre"
+ },
+ "gridAriaLabel": "Règles de détection",
+ "header": "Créez une règle qui indique la présence de l'application.",
+ "noRulesSelectedPlaceholder": "Aucune règle spécifiée.",
+ "ruleTableLimit": "Vous pouvez ajouter jusqu’à 25 règles de détection",
+ "ruleType": "Type de règle",
+ "ruleTypeTooltip": "Choisissez le type de règle de détection à ajouter."
+ },
+ "RuleConfigurationOptions": {
+ "customScript": "Utiliser un script de détection personnalisé",
+ "manual": "Configurer manuellement les règles de détection"
+ },
+ "bladeTitle": "Règles de détection",
+ "header": "Configurez des règles propres à l'application pour détecter la présence de l'application.",
+ "rulesFormat": "Format des règles",
+ "rulesFormatTooltip": "Choisissez de configurer les règles de détection manuellement ou utilisez un script personnalisé pour détecter la présence de l'application.",
+ "selectorLabel": "Règles de détection"
+ },
+ "PolicyType": {
+ "AttackSurfaceReductionRules": {
+ "configMgr": "Règles de réduction de la surface d'attaque (ConfigMgr)"
+ },
+ "EndpointDetectionandResponse": {
+ "mDE": "Détection de point de terminaison et réponse"
+ },
+ "EndpointSecurityTemplate": {
+ "aSRAppBrowserSecurity": "Isolement des applications et du navigateur",
+ "aSRApplicationControl": "Contrôle de l’application",
+ "aSRAttackSurfaceReduction": "Règles de réduction de la surface d'attaque",
+ "aSRDeviceControl": "Contrôle de l’appareil",
+ "aSRExploitProtection": "Protection contre le code malveillant",
+ "aSRWebProtection": "Protection web (ancienne version de Microsoft Edge)",
+ "aVExclusions": "Exclusions de l’antivirus Microsoft Defender",
+ "antivirus": "Antivirus Microsoft Defender",
+ "cloudPC": "Base de référence de sécurité Windows 365",
+ "default": "Sécurité du point de terminaison",
+ "defenderTest": "Démonstration Microsoft Defender pour point de terminaison",
+ "diskEncryption": "BitLocker",
+ "eDR": "Détection de point de terminaison et réponse",
+ "edgeSecurityBaseline": "Base de référence Microsoft Edge",
+ "edgeSecurityBaselinePreview": "Préversion : base de référence Microsoft Edge",
+ "editionUpgradeConfiguration": "Mise à niveau de l'édition et changement de mode",
+ "firewall": "Pare-feu Microsoft Defender",
+ "firewallRules": "Règles de pare-feu Microsoft Defender",
+ "identityProtection": "Protection du compte",
+ "identityProtectionPreview": "Protection du compte (préversion)",
+ "mDMSecurityBaseline1810": "Base de référence de sécurité MDM pour Windows 10 et versions ultérieures pour octobre 2018",
+ "mDMSecurityBaseline1810Preview": "Préversion : base de référence de sécurité MDM pour Windows 10 et versions ultérieures pour octobre 2018",
+ "mDMSecurityBaseline1810PreviewBeta": "Préversion : base de référence de sécurité MDM pour Windows 10 pour octobre 2018 (bêta)",
+ "mDMSecurityBaseline1906": "Base de référence de sécurité MDM pour Windows 10 et versions ultérieures pour mai 2019",
+ "mDMSecurityBaseline2004": "Base de référence de sécurité MDM pour Windows 10 et versions ultérieures pour août 2020",
+ "mDMSecurityBaseline2101": "Base de référence de sécurité MDM pour Windows 10 et versions ultérieures de décembre 2020",
+ "macOSAntivirus": "Antivirus",
+ "macOSDiskEncryption": "FileVault",
+ "macOSFirewall": "Pare-feu macOS",
+ "microsoftDefenderBaseline": "Base de référence Microsoft Defender pour point de terminaison",
+ "office365Baseline": "Base de référence Microsoft Office 365",
+ "office365BaselinePreview": "Préversion : base de référence Microsoft Office 365",
+ "securityBaselines": "Bases de référence de sécurité",
+ "test": "Modèle de test",
+ "testFirewallRulesSecurityTemplateName": "Règles de pare-feu Microsoft Defender (test)",
+ "testIdentityProtectionSecurityTemplateName": "Protection du compte (test)",
+ "windowsSecurityExperience": "Expérience de sécurité Windows"
+ },
+ "Firewall": {
+ "mDE": "Pare-feu Microsoft Defender"
+ },
+ "FirewallRules": {
+ "mDE": "Règles de pare-feu Microsoft Defender"
+ },
+ "administrativeTemplates": "Modèles d'administration",
+ "androidCompliancePolicy": "Stratégie de conformité Android",
+ "aospDeviceOwnerCompliancePolicy": "Stratégie de conformité Android (AOSP)",
+ "applicationControl": "Contrôle d’application",
+ "custom": "Personnalisé",
+ "deliveryOptimization": "Optimisation de livraison",
+ "derivedPersonalIdentityVerificationCredential": "Information d’identification dérivée",
+ "deviceFeatures": "Fonctionnalités de l'appareil",
+ "deviceFirmwareConfigurationInterface": "Interface de configuration du microprogramme d'appareil",
+ "deviceLock": "Verrouillage de l’appareil",
+ "deviceOwner": "Profil professionnel complètement managé, dédié et appartenant à l’entreprise",
+ "deviceRestrictions": "Restrictions sur l'appareil",
+ "deviceRestrictionsWindows10Team": "Restrictions sur les appareils (Windows 10 Collaboration)",
+ "domainJoinPreview": "Jonction de domaine",
+ "editionUpgradeAndModeSwitch": "Mise à niveau de l'édition et changement de mode",
+ "education": "Éducation",
+ "email": "E-mail",
+ "emailSamsungKnoxOnly": "E-mail (Samsung KNOX uniquement)",
+ "endpointProtection": "Endpoint protection",
+ "expeditedCheckin": "Configuration de la gestion des périphériques mobiles",
+ "exploitProtection": "Protection Exploit",
+ "extensions": "Extensions",
+ "hardwareConfigurations": "Configurations du BIOS",
+ "identityProtection": "Identity Protection",
+ "iosCompliancePolicy": "Stratégie de conformité iOS",
+ "kiosk": "Kiosque",
+ "macCompliancePolicy": "Stratégie de conformité Mac",
+ "microsoftDefenderAntivirus": "Antivirus Microsoft Defender",
+ "microsoftDefenderAntivirusexclusions": "Exclusions de l’antivirus Microsoft Defender",
+ "microsoftDefenderAtpWindows10Desktop": "Microsoft Defender pour point de terminaison (appareils de bureau exécutant Windows 10 ou versions ultérieures)",
+ "microsoftDefenderFirewallRules": "Règles de pare-feu Microsoft Defender",
+ "microsoftEdgeBaseline": "Base de référence Microsoft Edge",
+ "mxProfileZebraOnly": "Profil MX (Zebra uniquement)",
+ "networkBoundary": "Limite réseau",
+ "oemConfig": "OEMConfig",
+ "overrideGroupPolicy": "Remplacer la stratégie de groupe",
+ "pkcsCertificate": "Certificat PKCS",
+ "pkcsImportedCertificate": "Certificat PKCS importé",
+ "preferenceFile": "Fichier de préférences",
+ "presets": "Présélections",
+ "scepCertificate": "Certificat SCEP",
+ "secureAssessmentEducation": "Évaluation sécurisée (éducation)",
+ "settingsCatalog": "Catalogue des paramètres",
+ "sharedMultiUserDevice": "Appareil multi-utilisateur partagé",
+ "softwareUpdates": "Mises à jour logicielles",
+ "trustedCertificate": "Certificat approuvé",
+ "unknown": "Inconnu",
+ "unsupported": "Non pris en charge",
+ "vpn": "VPN",
+ "wiFi": "Wi-Fi",
+ "wiFiImport": "Importation Wi-Fi",
+ "windows10CompliancePolicy": "Stratégie de conformité Windows 10/11",
+ "windows10MobileCompliancePolicy": "Stratégie de conformité Windows 10 Mobile",
+ "windows10XScep": "Certificat SCEP - TEST",
+ "windows10XTrustedCertificate": "Certificat approuvé - TEST",
+ "windows10XVPN": "VPN - TEST",
+ "windows10XWifi": "WIFI - TEST",
+ "windows8CompliancePolicy": "Stratégie de conformité Windows 8",
+ "windowsHealthMonitoring": "Monitoring de l’intégrité Windows",
+ "windowsInformationProtection": "Protection des informations Windows",
+ "windowsPhoneCompliancePolicy": "Stratégie de conformité Windows Phone",
+ "windowsUpdateforBusiness": "Windows Update pour Entreprise",
+ "wiredNetwork": "Réseau câblé",
+ "workProfile": "Profil de travail personnel"
+ },
+ "Win32Requirements": {
+ "AdditionalRequirements": {
+ "File": {
+ "fileOrFolderToolTip": "Fichier ou dossier comme spécification sélectionnée.",
+ "pathToolTip": "Chemin complet du fichier ou dossier à détecter.",
+ "property": "Propriété",
+ "valueToolTip": "Sélectionnez une valeur de spécification qui correspond à la méthode de détection sélectionnée. La spécification de date et d'heure doit être entrée dans votre format local."
+ },
+ "GridColumns": {
+ "pathOrScript": "Chemin/script",
+ "type": "Type"
+ },
+ "Registry": {
+ "keyPath": "Chemin de la clé",
+ "keyPathTooltip": "Chemin complet de l'entrée de Registre contenant la valeur de la spécification.",
+ "operator": "Opérateur",
+ "operatorTooltip": "Sélectionnez l'opérateur de la comparaison.",
+ "registryRequirement": "Spécification de clé de Registre",
+ "registryRequirementTooltip": "Sélectionnez la comparaison des spécifications de clé de Registre.",
+ "valueName": "Nom de valeur",
+ "valueNameTooltip": "Nom de la valeur de Registre obligatoire."
+ },
+ "RequirementTypeOptions": {
+ "fileType": "Fichier",
+ "registry": "Registre",
+ "script": "Script"
+ },
+ "Script": {
+ "RequirementMethodOptions": {
+ "boolean": "Booléen",
+ "dateTime": "Date et heure",
+ "float": "Virgule flottante",
+ "integer": "Entier",
+ "string": "Chaîne",
+ "version": "Version"
+ },
+ "ScriptContent": {
+ "emptyMessage": "Le contenu du script ne doit pas être vide."
+ },
+ "duplicateName": "Le nom de script {0} est déjà utilisé. Entrez un autre nom.",
+ "enforceSignatureCheck": "Appliquer la vérification de la signature du script",
+ "enforceSignatureCheckTooltip": "Sélectionnez « Oui » pour vérifier que le script est signé par un éditeur approuvé, ce qui permet de l'exécuter sans avertissement ni invite. Le script s'exécute sans blocage. Sélectionnez « Non » (par défaut) pour exécuter le script avec confirmation de l'utilisateur final, mais sans vérification de signature.",
+ "loggedOnCredentials": "Exécuter ce script en utilisant les informations d'identification de l'utilisateur connecté",
+ "loggedOnCredentialsTooltip": "Exécutez le script à l'aide des informations d'identification connectées sur l'appareil.",
+ "operatorTooltip": "Sélectionnez l'opérateur de la comparaison de spécifications.",
+ "requirementMethod": "Sélectionner un type de données de sortie",
+ "requirementMethodTooltip": "Sélectionnez le type de données utilisé pour déterminer une spécification de correspondance de détection.",
+ "scriptFile": "Fichier de script",
+ "scriptFileTooltip": "Sélectionnez un script PowerShell qui détecte la présence de l'application sur le client. Si l'application est détectée, le processus de spécification fournit un code de sortie de valeur 0 et écrit une valeur de chaîne dans STDOUT.",
+ "scriptName": "Nom du script",
+ "value": "Valeur",
+ "valueTooltip": "Sélectionnez une valeur de spécification qui correspond à la méthode de détection sélectionnée. La spécification de date et d'heure doit être entrée dans votre format local."
+ },
+ "bladeTitle": "Ajouter une règle de spécification",
+ "createRequirementHeader": "Créez une spécification.",
+ "header": "Configurer d'autres règles de spécification",
+ "label": "Règles de spécification supplémentaires",
+ "noRequirementsSelectedPlaceholder": "Aucune spécification spécifiée.",
+ "requirementType": "Type de spécification",
+ "requirementTypeTooltip": "Choisissez le type de méthode de détection utilisé pour déterminer comment valider une spécification."
+ },
+ "architectures": "Architecture du système d'exploitation",
+ "architecturesTooltip": "Choisissez les architectures nécessaires pour installer l'application.",
+ "bladeTitle": "Spécifications",
+ "diskSpace": "Espace disque nécessaire (Mo)",
+ "diskSpaceTooltip": "Espace disque nécessaire sur le lecteur système pour installer l'application.",
+ "header": "Spécifiez les conditions que les appareils doivent remplir avant l'installation de l'application :",
+ "maximumTextFieldValue": "La valeur doit être de {0} maximum.",
+ "minimumCpuSpeed": "Vitesse de processeur minimale nécessaire (MHz)",
+ "minimumCpuSpeedTooltip": "Vitesse de processeur minimale nécessaire pour installer l'application.",
+ "minimumLogicalProcessors": "Nombre minimal de processeurs logiques nécessaires",
+ "minimumLogicalProcessorsTooltip": "Nombre minimal de processeurs logiques nécessaires pour installer l'application.",
+ "minimumOperatingSystem": "Système d'exploitation minimal",
+ "minimumOperatingSystemTooltip": "Sélectionnez le système d'exploitation minimum nécessaire pour installer l'application.",
+ "minumumTextFieldValue": "La valeur doit correspondre au moins à {0}.",
+ "physicalMemory": "Mémoire physique nécessaire (Mo)",
+ "physicalMemoryTooltip": "Mémoire physique (RAM) nécessaire pour installer l'application.",
+ "selectorLabel": "Spécifications",
+ "validNumber": "Entrez un nombre valide."
+ },
+ "AzureIAM": {
+ "AdrsUserActionSelectionWarning": {
+ "conditions": "Les conditions nécessitant l’inscription de l’appareil ne sont pas disponibles avec l’action utilisateur « Inscrire ou joindre des appareils ».",
+ "message": "Seule l’action Exiger l’authentification multifacteur peut être utilisée dans les stratégies créées pour l’action utilisateur Inscrire ou joindre des appareils.{0}"
+ },
+ "AuthContext": {
+ "Delete": {
+ "failure": "Échec de la suppression de {0}",
+ "failureCa": "Échec de la suppression de {0}, car elle est référencée par des stratégies d’autorité de certification",
+ "modifying": "Suppression de {0}",
+ "success": "{0} supprimé"
+ },
+ "Included": {
+ "none": "Aucun(e) application cloud, action ou contexte d’authentification sélectionné(e)",
+ "plural": "{0} contextes d’authentification inclus",
+ "singular": "1 contexte d’authentification inclus"
+ },
+ "InfoBlade": {
+ "createTitle": "Ajouter un contexte d’authentification",
+ "descPlaceholder": "Ajouter une description pour le contexte d’authentification",
+ "modifyTitle": "Modifier le contexte d’authentification",
+ "namePlaceholder": "Ex. : emplacement approuvé, appareil approuvé, autorisation forte",
+ "publishDesc": "La publication dans les applications va rendre le contexte d'authentification disponible pour les applications. Publiez une fois que vous avez terminé la configuration de la stratégie d'accès conditionnel pour l'étiquette. [En savoir plus][1]\n[1] : https://go.microsoft.com/fwlink/?linkid=2150966",
+ "publishLabel": "Publier sur des applications",
+ "titleDesc": "Configurez un contexte d’authentification qui sera utilisé pour protéger les données et les actions de l’application. Utilisez des noms et des descriptions que les administrateurs d’applications peuvent comprendre. [En savoir plus][1]\n[1] : https://go.microsoft.com/fwlink/?linkid=2150965"
+ },
+ "Notify": {
+ "failure": "Échec de la mise à jour de {0}",
+ "modifying": "Modification de {0}",
+ "success": "{0} mis à jour"
+ },
+ "WhatIf": {
+ "selected": "Contexte d’authentification inclus"
+ },
+ "addNewStepUp": "Nouveau contexte d’authentification",
+ "checkBoxInfo": "Sélectionner les contextes d'authentification auxquels cette stratégie s'applique",
+ "configure": "Configurer les contextes d’authentification",
+ "createCA": "Attribuer des stratégies d’accès conditionnel au contexte d’authentification",
+ "dataGrid": "Liste des contextes d’authentification",
+ "deleteFailedByReference": "You cannot delete this authentication context because it is being referenced by CA policies.",
+ "description": "Description",
+ "documentation": "Documentation",
+ "getStarted": "Démarrer",
+ "label": "Contexte d’authentification (préversion)",
+ "menuLabel": "Contexte d’authentification (préversion)",
+ "name": "Nom",
+ "noAuthContextConfigured": "Aucun contexte d’authentification n’a été configuré.",
+ "noAuthContextSet": "Il n'existe pas de contextes d'authentification",
+ "noData": "Aucun contexte d’authentification à afficher",
+ "selectionInfo": "Le contexte d’authentification permet de sécuriser les données et les actions d’une application dans des applications comme SharePoint et Microsoft Cloud App Security.",
+ "step": "Étape",
+ "tabDescription": "Gérez le contexte d’authentification pour protéger les données et les actions dans vos applications. [En savoir plus][1]\n[1] : https://go.microsoft.com/fwlink/?linkid=2150965",
+ "tagResources": "Étiqueter les ressources avec un contexte d’authentification"
+ },
+ "AuthenticationStrength": {
+ "Mode": {
+ "deviceBasedPush": "Microsoft Authenticator (connexion par téléphone)",
+ "deviceBasedPushFido2X509Certificate": "Microsoft Authenticator (connexion par téléphone) + Fido 2 + Authentification par certificat",
+ "deviceBasedPushX509CertificateSingleFactor": "Microsoft Authenticator (connexion par téléphone) + Fido 2 + Authentification par certificat (facteur unique)",
+ "email": "Envoyer un code secret à usage unique par e-mail",
+ "emailOtp": "Envoyer un code secret à usage unique par e-mail",
+ "federatedMultiFactor": "Multifacteur fédéré",
+ "federatedSingleFactor": "Facteur unique fédéré",
+ "federatedSingleFactorFederatedMultiFactor": "Facteur unique fédéré + multifacteur fédéré",
+ "fido2": "Clé de sécurité FIDO 2",
+ "fido2X509CertificateSingleFactor": "Clé de sécurité FIDO 2 + Authentification basée sur un certificat (facteur unique)",
+ "hardwareOath": "Jetons OATH matériels",
+ "hardwareOathEmail": "Jetons OATH matériels + Code secret à usage unique par e-mail",
+ "hardwareOathX509CertificateSingleFactor": "Jetons OATH matériels+ Authentification par certificat (facteur unique)",
+ "microsoftAuthenticatorPSIX509CertificateSingleFactor": "Microsoft Authenticator (connexion par téléphone) + Authentification par certificat (facteur unique)",
+ "microsoftAuthenticatorPsi": "Microsoft Authenticator (connexion par téléphone)",
+ "microsoftAuthenticatorPush": "Microsoft Authenticator (notification Push)",
+ "microsoftAuthenticatorPushEmail": "Microsoft Authenticator (notification Push) + Code secret à usage unique par e-mail",
+ "microsoftAuthenticatorPushX509CertificateSingleFactor": "Microsoft Authenticator (notification Push) + Authentification basée sur un certificat (facteur unique)",
+ "none": "Aucun",
+ "password": "Mot de passe",
+ "passwordDeviceBasedPush": "Mot de passe + Microsoft Authenticator (connexion par téléphone)",
+ "passwordFido2": "Mot de passe + clé de sécurité FIDO 2",
+ "passwordHardwareOath": "Mot de passe + jetons OATH matériels",
+ "passwordMicrosoftAuthenticatorPSI": "Mot de passe + Microsoft Authenticator (connexion par téléphone)",
+ "passwordMicrosoftAuthenticatorPush": "Mot de passe + Microsoft Authenticator (notification Push)",
+ "passwordSms": "Mot de passe + SMS",
+ "passwordSoftwareOath": "Mot de passe + jetons OATH logiciels",
+ "passwordTemporaryAccessPassMultiUse": "Mot de passe + Passe d'accès temporaire (multi-utilisation)",
+ "passwordTemporaryAccessPassOneTime": "Mot de passe + Passe d'accès temporaire (utilisation unique)",
+ "passwordVoice": "Mot de passe + voix",
+ "sms": "SMS",
+ "smsEmail": "SMS + Envoyer un code secret à usage unique par e-mail",
+ "smsSignIn": "Connexion par SMS",
+ "smsX509CertificateSingleFactor": "SMS + Authentification par certificat (facteur unique)",
+ "softwareOath": "Jetons OATH logiciels",
+ "softwareOathEmail": "Jetons OATH logiciels + Code secret à usage unique par e-mail",
+ "softwareOathX509CertificateSingleFactor": "Jetons OATH logiciels + Authentification par certificat (facteur unique)",
+ "temporaryAccessPassMultiUse": "Passe d'accès temporaire (multi-utilisation)",
+ "temporaryAccessPassMultiUseX509CertificateSingleFactor": "Passe d'accès temporaire (multi-utilisation) + Authentification par certificat (facteur unique)",
+ "temporaryAccessPassOneTime": "Passe d'accès temporaire (utilisation unique)",
+ "temporaryAccessPassOneTimeX509CertificateSingleFactor": "Passe d'accès temporaire (utilisation unique) + Authentification par certificat (facteur unique)",
+ "voice": "Voix",
+ "voiceEmail": "Voice + Envoyer un code secret à usage unique par e-mail",
+ "voiceX509CertificateSingleFactor": "Voix + Authentification basée sur un certificat (facteur unique)",
+ "windowsHelloForBusiness": "Windows Hello Entreprise",
+ "x509CertificateMultiFactor": "Authentification basée sur un certificat (multifacteur)",
+ "x509CertificateSingleFactor": "Authentification basée sur un certificat (facteur unique)"
+ }
+ },
+ "CAS": {
+ "BuiltinPolicy": {
+ "Option": {
+ "blockDownloads": "Bloquer les téléchargements (préversion)",
+ "monitorOnly": "Surveiller uniquement (préversion)",
+ "protectDownloads": "Protéger les téléchargements (préversion)",
+ "useCustomControls": "Utiliser une stratégie personnalisée..."
+ },
+ "ariaLabel": "Choisir le type de contrôle d’application par accès conditionnel à appliquer"
+ }
+ },
+ "ChooseApplications": {
+ "Grid": {
+ "appIdAria": "ID d'application : {0}"
+ },
+ "LowerGrid": {
+ "ariaLabel": "Liste des applications cloud sélectionnées"
+ },
+ "UpperGrid": {
+ "ariaLabel": "Liste des applications cloud qui correspondent au terme de recherche"
+ }
+ },
+ "ChooseLocations": {
+ "Validation": {
+ "failed": "Avec « Emplacements sélectionnés », vous devez choisir au moins un emplacement.",
+ "selector": "Choisir au moins un emplacement"
+ }
+ },
+ "ClientApp": {
+ "Clients": {
+ "Validation": {
+ "failed": "Vous devez sélectionner au moins un des clients suivants"
+ }
+ }
+ },
+ "ClientConditionsInfo": {
+ "browserAndModern": "Cette stratégie s'applique uniquement aux navigateurs et aux applications d'authentification modernes. Pour appliquer la stratégie à toutes les applications clientes, activez la condition d'application cliente et sélectionnez toutes les applications clientes.",
+ "classicExperience": "Depuis la création de cette stratégie, la configuration des applications clientes par défaut a été mise à jour.",
+ "legacyAuth": "Quand elle ne sont pas configurées, les stratégies s’appliquent désormais à toutes les applications clientes, notamment l’authentification moderne et héritée."
+ },
+ "CloudAppFilterBlade": {
+ "AssignmentFilter": {
+ "header": "Attribut",
+ "placeholder": "Choisir un attribut"
+ },
+ "Configure": {
+ "infoBalloon": "Configurez les filtres d'application auxquels vous voulez appliquer la stratégie."
+ },
+ "NoPermissions": {
+ "learnMoreAria": "En savoir plus sur les autorisations d’attribut de sécurité personnalisées.",
+ "message": "Vous ne disposez pas des autorisations nécessaires pour utiliser des attributs de sécurité personnalisés."
+ },
+ "gridHeader": "À l’aide d’attributs de sécurité personnalisés, vous pouvez utiliser le générateur de règles ou la zone de texte de syntaxe de la règle pour créer ou modifier un filtre de règle. Dans l’aperçu, seuls les attributs de type Chaîne sont pris en charge. Les attributs de type Entier ou Boolean ne seront pas affichés.",
+ "learnMoreAria": "Plus d’informations sur l’utilisation du générateur de règles et de la zone de texte de syntaxe.",
+ "noAttributes": "Aucun attribut personnalisé n’est disponible pour filtrer. Vous devez configurer certains attributs pour utiliser ce filtre.",
+ "title": "Modifier le filtre (préversion)"
+ },
+ "CloudAppsUserActions": {
+ "any": "Toute action ou application cloud",
+ "infoBalloon": "Action utilisateur ou application cloud que vous voulez tester. Par exemple, 'SharePoint Online'",
+ "learnMore": "Contrôlez l’accès en fonction des actions ou applications cloud globales ou spécifiques.",
+ "learnMoreB2C": "Contrôlez l'accès en fonction de toutes les applications ou d'applications cloud spécifiques.",
+ "title": "Applications ou actions cloud"
+ },
+ "CloudappsSelectionBlade": {
+ "Excluded": {
+ "gridAria": "Liste des applications cloud exclues"
+ },
+ "Filter": {
+ "configured": "Configuré",
+ "label": "Modifier le filtre (préversion)",
+ "with": "{0} avec {1}"
+ },
+ "Included": {
+ "gridAria": "Liste des applications cloud incluses"
+ },
+ "Validation": {
+ "authContext": "Avec « contexte d'authentification », vous devez configurer au moins un sous-élément.",
+ "selectApps": "« {0} » doit être configuré",
+ "selector": "Sélectionnez au moins une application.",
+ "userActions": "Avec « Actions utilisateur », vous devez configurer au moins un sous-élément."
+ }
+ },
+ "DeviceState": {
+ "LearnMore": {
+ "message": "Contrôlez l’accès utilisateur lorsque l’appareil à partir duquel l’utilisateur se connecte n’est pas « jointure hybride Azure AD » ou « marqué comme conforme ».\n Cela est déprécié. Utilisez « {1} » à la place."
+ }
+ },
+ "Errors": {
+ "notFound": "La stratégie est introuvable ou a été supprimée.",
+ "notFoundDetailed": "La stratégie « {0} » n’existe plus. Elle a peut-être été supprimée."
+ },
+ "GuestsOrExternalUsers": {
+ "allExternalTenantsLabel": "Toutes les organisations Azure AD",
+ "b2bCollaborationGuestLabel": "Utilisateurs invités B2B Collaboration",
+ "b2bCollaborationMemberLabel": "Utilisateurs membres de B2B Collaboration",
+ "b2bDirectConnectUserLabel": "Utilisateurs de connexion directe B2B",
+ "enumeratedExternalTenantsError": "Sélectionnez au moins un locataire externe",
+ "enumeratedExternalTenantsLabel": "Sélectionner les organisations Azure AD",
+ "externalTenantsLabel": "Spécifier des organisations Azure AD externes",
+ "externalUserDropdownLabel": "Choisir les types d’utilisateurs invités ou externes",
+ "externalUsersError": "Sélectionner au moins un type d’invité ou d’utilisateur externe",
+ "guestOrExternalUsersInfoContent": "Inclut B2B Collaboration, B2B Direct Connect et d’autres types d’utilisateurs externes.",
+ "guestOrExternalUsersLabel": "Utilisateurs invités ou externes",
+ "internalGuestLabel": "Utilisateurs invités locaux",
+ "otherExternalUserLabel": "Autres utilisateurs externes"
+ },
+ "NamedLocation": {
+ "Form": {
+ "CountryLookup": {
+ "ariaLabel": "Méthode de recherche de pays",
+ "gps": "Déterminer l’emplacement avec les coordonnées GPS",
+ "info": "Quand la condition d’emplacement d’une stratégie d’accès conditionnel est configurée, les utilisateurs sont invités par l’application Authenticator à partager leur emplacement GPS.",
+ "ip": "Déterminer l'emplacement avec l'adresse IP (IPv4 uniquement)"
+ },
+ "Header": {
+ "new": "Nouvel emplacement ({0})",
+ "update": "Mettre à jour l'emplacement ({0})"
+ },
+ "IP": {
+ "learn": "Configurez les plages IPv4 et IPv6 d’emplacements nommés.\n[En savoir plus][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
+ },
+ "Include": {
+ "infoBalloon": "Les pays/régions inconnus sont des adresses IP qui ne sont pas associées à un pays ou une région spécifique. [En savoir plus][1]\n\nCeci inclut :\n* Adresses IPv6\n* Adresses IPv4 sans mappage direct\n[1] : https://aka.ms/canamedlocations\n",
+ "label": "Inclure des pays/régions inconnus"
+ },
+ "Name": {
+ "empty": "Le nom ne peut pas être vide",
+ "placeholder": "Nommer cet emplacement"
+ },
+ "PrivateLink": {
+ "learn": "Créez un emplacement nommé contenant des liaisons privées pour Azure AD.\n[En savoir plus][1]\n[1] : https://go.microsoft.com/fwlink/?linkid=2084753"
+ },
+ "Search": {
+ "countries": "Rechercher dans les pays",
+ "names": "Rechercher dans les noms",
+ "privateLinks": "Rechercher des liaisons privées"
+ },
+ "Trusted": {
+ "label": "Marquer comme emplacement approuvé"
+ },
+ "enter": "Entrer une nouvelle plage IPv4 ou IPv6",
+ "example": "ex : 40.77.182.32/27 ou 2a01:111::/32"
+ },
+ "Label": {
+ "addCountries": "Emplacement des pays",
+ "addIpRange": "Emplacement des plages IP",
+ "addPrivateLink": "Liaisons privées Azure"
+ },
+ "Notification": {
+ "Create": {
+ "Failed": {
+ "description": "Échec de création du nouvel emplacement ({0})",
+ "title": "Échec de la création"
+ },
+ "InProgress": {
+ "description": "Création d'un nouvel emplacement ({0})",
+ "title": "Création en cours"
+ },
+ "Success": {
+ "description": "Réussite de la création du nouvel emplacement ({0})",
+ "title": "Création réussie"
+ }
+ },
+ "Delete": {
+ "Failed": {
+ "description": "Échec de suppression de l'emplacement ({0})",
+ "title": "Échec de la suppression"
+ },
+ "InProgress": {
+ "description": "Suppression de l'emplacement ({0})",
+ "title": "Suppression en cours"
+ },
+ "Success": {
+ "description": "Réussite de la suppression de l'emplacement ({0})",
+ "title": "Suppression réussie"
+ }
+ },
+ "Update": {
+ "Failed": {
+ "description": "Échec de mise à jour de l'emplacement ({0})",
+ "title": "Échec de la mise à jour"
+ },
+ "InProgress": {
+ "description": "Mise à jour de l'emplacement ({0})",
+ "title": "Mise à jour en cours"
+ },
+ "Success": {
+ "description": "Réussite de la mise à jour de l'emplacement ({0})",
+ "title": "Mise à jour réussie"
+ }
+ }
+ },
+ "PrivateLinks": {
+ "grid": "Liste des liaisons privées"
+ },
+ "Trusted": {
+ "title": "Type approuvé",
+ "trusted": "Approuvé"
+ },
+ "Type": {
+ "all": "Tous les types",
+ "countries": "Pays",
+ "ipRanges": "Plages d'adresses IP",
+ "privateLinks": "Liaisons privées",
+ "title": "Type d'emplacement"
+ },
+ "iPRangeInvalidError": "La valeur doit être une plage IPv4 ou IPv6 valide.",
+ "iPRangeLinkOrSiteLocalError": "Réseau IP détecté en tant que liaison locale ou adresse locale de site.",
+ "iPRangeOctetError": "Le réseau IP ne doit pas commencer par 0 ou 255.",
+ "iPRangePrefixError": "Le préfixe réseau IP doit être compris entre /{0} et /{1}.",
+ "iPRangePrivateError": "Réseau IP détecté en tant qu’adresse privée."
+ },
+ "NamedNetwork": {
+ "List": {
+ "gridAria": "Liste des emplacements nommés"
+ }
+ },
+ "Policies": {
+ "Grid": {
+ "aria": "Liste des stratégies d’accès conditionnel"
+ },
+ "countText": "{0} sur {1} stratégies trouvées",
+ "countTextSingular": "{0} sur 1 stratégie trouvée",
+ "search": "Rechercher des stratégies"
+ },
+ "Policy": {
+ "Condition": {
+ "ServicePrincipalRisk": {
+ "description": "Configurez les niveaux de risque du principal de service nécessaires à l’application de la stratégie",
+ "infoBalloonContent": "Configurer le risque de principal de service pour appliquer la stratégie aux niveaux de risque sélectionnés",
+ "title": "Risque de principal de service (préversion)"
+ }
+ }
+ },
+ "PolicyControlAuthStrength": {
+ "MultiFactorAuthentication": {
+ "description": "Combinaisons de méthodes qui répondent à une authentification forte, telles que Mot de passe + SMS",
+ "displayName": "Authentification multifacteur (MFA)"
+ },
+ "Passwordless": {
+ "description": "Méthodes sans mot de passe qui répondent à une authentification forte, comme Microsoft Authenticator ",
+ "displayName": "Authentification multifacteur sans mot de passe"
+ },
+ "PhishingResistant": {
+ "description": "Méthodes sans mot de passe sans hameçonnage pour l’authentification la plus forte, comme la clé de sécurité FIDO2",
+ "displayName": "MFA anti-hameçonnage"
+ }
+ },
+ "PolicyControlFedAuthMethod": {
+ "ariaLabel": "En savoir plus sur l’obligation de méthodes d’authentification satisfaites par les fournisseurs de fédération.",
+ "certificate": "Authentification par certificat",
+ "infoBubble": "Spécifiez la méthode d'authentification requise, qui doit être suivie par le fournisseur de fédération, tel qu'ADFS.",
+ "multifactor": "Authentification multifacteur",
+ "require": "Exiger la méthode d'authentification fédérée (préversion)",
+ "whatIfFormat": "{0} - {1}"
+ },
+ "PolicyState": {
+ "off": "Désactivé",
+ "on": "Activé",
+ "reportOnly": "Rapport uniquement"
+ },
+ "PolicyTemplates": {
+ "Devices": {
+ "description": "Sélectionnez la catégorie de modèle de stratégie Appareils pour obtenir une visibilité sur les appareils qui accèdent au réseau. Vérifiez la conformité et l’état d’intégrité avant d’accorder l’accès.",
+ "name": "Appareils"
+ },
+ "Identities": {
+ "description": "Sélectionnez la catégorie de modèle de stratégie Identités pour vérifier et sécuriser chaque identité avec une authentification forte sur l’ensemble de votre patrimoine numérique.",
+ "name": "Identités"
+ },
+ "Summary": {
+ "CloudApps": {
+ "allCloudApps": "Toutes les applications",
+ "office365": "Office 365",
+ "registerSecurityInfo": "Enregistrer les informations de sécurité"
+ },
+ "Conditions": {
+ "androidAndIOS": "Plateforme de l’appareil : Android et IOS",
+ "anyDevice": "Tous les appareils à l’exception d’Android, IOS, Windows et Mac",
+ "anyDeviceStateExceptHybrid": "Tout état d’appareil sauf conforme et jointure hybride Azure AD",
+ "anyLocation": "Tout emplacement sauf approuvé",
+ "browserMobileDesktop": "Applications clientes : navigateur, applications mobiles et clients de bureau",
+ "exchangeActiveSync": "Applications clientes : Exchange Active Sync, autres clients",
+ "windowsAndMac": "Plateforme d’appareil : Windows et Mac"
+ },
+ "Devices": {
+ "anyDevice": "N'importe quel périphérique"
+ },
+ "Grant": {
+ "appProtectionPolicy": "Exiger une stratégie de protection des applications",
+ "approvedClientApp": "Demander une application cliente approuvée",
+ "blockAccess": "Bloquer l'accès",
+ "mfa": "Exiger une authentification multifacteur",
+ "passwordChange": "Demander une modification du mot de passe",
+ "requireCompliantDevice": "Exiger que l'appareil soit marqué comme conforme",
+ "requireHybridAzureADDevice": "Exiger un appareil joint Azure AD hybride"
+ },
+ "Session": {
+ "appEnforcedRestrictions": "Utiliser les restrictions appliquées par l'application",
+ "signInFrequency": "Fréquence de connexion et session de navigateur jamais persistante"
+ },
+ "UsersAndGroups": {
+ "allUsers": "Tous les utilisateurs",
+ "directoryRoles": "Rôles d’annuaire à l’exception de l’administrateur actuel",
+ "globalAdmin": "Administrateur général",
+ "noGuestAndAdmins": "Tous les utilisateurs à l’exception des administrateurs généraux, invités et externes, administrateur actuel"
+ },
+ "azureManagement": "Gestion Azure",
+ "deviceFilters": "Filtres pour les appareils",
+ "devicePlatforms": "Plates-formes de périphériques"
+ },
+ "TemplateId": {
+ "AppEnforcedRestrictions": {
+ "description": "Bloquez ou limitez l’accès à du contenu SharePoint, OneDrive et Exchange à partir d’appareils non gérés.",
+ "name": "CA014 : utiliser les restrictions appliquées par l’application pour les appareils non gérés",
+ "title": "Utiliser les restrictions appliquées par l’application pour les appareils non gérés"
+ },
+ "ApprovedClientApps": {
+ "description": "Pour éviter la perte de données, les organisations peuvent restreindre l’accès aux applications clientes d’authentification modernes approuvées avec Intune App Protection.",
+ "name": "CA012 : exiger des applications clientes approuvées et une protection des applications",
+ "title": "Exiger des applications clientes approuvées et une protection des applications"
+ },
+ "BlockAccessOnUnknowns": {
+ "description": "Les utilisateurs ne pourront pas accéder aux ressources de l’entreprise lorsque le type de l’appareil est inconnu ou n’est pas pris en charge.",
+ "name": "CA010 : bloquer l’accès pour une plateforme d’appareils inconnue ou non prise en charge",
+ "title": "Bloquer l’accès pour une plateforme d’appareils inconnue ou non prise en charge"
+ },
+ "BlockLegacyAuth": {
+ "description": "Bloquez les points de terminaison d’authentification hérités qui peuvent être utilisés pour contourner l’authentification multifacteur. ",
+ "name": "CA003 : Bloquer l’authentification héritée",
+ "title": "Bloquer l’authentification héritée"
+ },
+ "NoPersistentBrowserSession": {
+ "description": "Protégez l’accès utilisateur sur les appareils non gérés en empêchant les sessions de navigateur de rester connectées une fois que le navigateur est fermé et en définissant une fréquence de connexion à 1 heure.",
+ "name": "CA011 : aucune session de navigateur persistante",
+ "title": "Aucune session de navigateur persistante"
+ },
+ "RequireCompliantOrHybridADAdmins": {
+ "description": "Exiger que les administrateurs privilégiés accèdent aux ressources uniquement lorsqu'ils utilisent un appareil conforme ou jointure hybride Azure AD.",
+ "name": "CA009 : exiger un appareil conforme ou jointure hybride Azure AD pour les administrateurs",
+ "title": "Exiger un appareil conforme ou jointure hybride Azure AD pour les administrateurs"
+ },
+ "RequireCompliantOrHybridADAllUsers": {
+ "description": "Protégez l’accès aux ressources de l’entreprise en demandant aux utilisateurs d’utiliser un appareil géré ou d’effectuer une authentification multifacteur. (macOS ou Windows uniquement)",
+ "name": "CA013 : exiger une authentification multifacteur ou un appareil conforme ou jointure hybride Azure AD pour tous les utilisateurs",
+ "title": "Exiger un appareil conforme ou jointure hybride Azure AD ou une authentification multifacteur pour tous les utilisateurs"
+ },
+ "RequireMFAAllUsers": {
+ "description": "Exigez l’authentification multifacteur pour tous les comptes d’utilisateur afin de réduire le risque de compromission.",
+ "name": "CA004 : exiger l’authentification multifacteur pour tous les utilisateurs",
+ "title": "Exiger l’authentification multifacteur pour tous les utilisateurs"
+ },
+ "RequireMFAForAdmins": {
+ "description": "Exigez une authentification multifacteur pour les comptes d'administration privilégiés afin de réduire le risque de compromission. Cette stratégie va cibler les mêmes rôles que la valeur par défaut de sécurité.",
+ "name": "CA001 : exiger l’authentification multifacteur pour les administrateurs",
+ "title": "Exigez l’authentification multifacteur pour les administrateurs"
+ },
+ "RequireMFAForAzureManagement": {
+ "description": "Exiger l’authentification multifacteur pour protéger l’accès privilégié aux ressources Azure.",
+ "name": "CA006 : exiger l’authentification multifacteur pour la gestion Azure",
+ "title": "Exiger l’authentification multifacteur pour la gestion Azure"
+ },
+ "RequireMFAForGuestAccess": {
+ "description": "Exiger que les utilisateurs invités exécutent Multi-Factor Authentication lors de l’accès aux ressources de votre entreprise.",
+ "name": "CA005 : exiger l’authentification multifacteur pour l’accès invité",
+ "title": "Exiger l’authentification multifacteur pour l’accès invité"
+ },
+ "RequireMFAForRiskySignIn": {
+ "description": "Exiger l’authentification multifacteur si le risque de connexion est détecté comme étant moyen ou élevé. (Nécessite une licence Azure AD Premium 2)",
+ "name": "CA007 : exiger l’authentification multifacteur pour les connexions à risque",
+ "title": "Exiger l’authentification multifacteur pour les connexions à risque"
+ },
+ "RequirePasswordChangeForHighRiskUsers": {
+ "description": "Obliger l’utilisateur à modifier son mot de passe si le risque utilisateur est détecté comme étant élevé. (Nécessite une licence Azure AD Premium 2)",
+ "name": "CA008 : exiger une modification du mot de passe pour les utilisateurs à haut risque",
+ "title": "Exiger la modification du mot de passe pour les utilisateurs à haut risque"
+ },
+ "RequireSecurityInfo": {
+ "description": "Sécurisez quand et comment les utilisateurs s'inscrivent à l'authentification multifacteur Azure AD et au mot de passe en libre-service. ",
+ "name": "CA002 : sécurisation de l’inscription des informations de sécurité",
+ "title": "Sécurisation de l’inscription des informations de sécurité"
+ }
+ },
+ "TemplateState": {
+ "BlockAccessOnUnknowns": {
+ "title": "L’activation de cette stratégie empêche tout accès à partir d’un type d’appareil inconnu, envisagez d’utiliser le mode rapport uniquement pour commencer, jusqu’à ce que vous ayez confirmé cela n’aura pas d’impact sur vos utilisateurs."
+ },
+ "BlockLegacyAuth": {
+ "description": "Envisagez d’utiliser le mode rapport uniquement pour commencer avant d’avoir confirmé que cela n’aura pas d’impact sur vos utilisateurs.",
+ "title": "L’activation de cette stratégie empêche l’authentification héritée pour tous vos utilisateurs."
+ },
+ "RequireCompliantOrHybridADAdmins": {
+ "Description": {
+ "on": "Envisagez d’utiliser le mode rapport uniquement pour commencer avant d’avoir confirmé que cela n’aura pas d’impact sur vos utilisateurs privilégiés.",
+ "reportOnly": "Les stratégies en mode rapport uniquement qui requièrent des appareils conformes peuvent inviter les utilisateurs de Mac, iOS et Android à sélectionner un certificat d’appareil lors de l’évaluation de la stratégie, même si la conformité des appareils n’est pas appliquée. Ces invites peuvent se répéter jusqu'à ce que l’appareil est rendu conforme."
+ },
+ "Title": {
+ "on": "L’activation de cette stratégie empêche tout accès aux utilisateurs privilégiés, sauf en cas d’utilisation d’un appareil géré tel que conforme ou jointure hybride Azure AD. Vérifiez que vous avez configuré vos stratégies de conformité ou que vous avez activé la configuration de Azure AD hybrides avant de l’activer.",
+ "reportOnly": "Vérifiez que vous avez configuré vos stratégies de conformité ou que vous avez activé la configuration de Azure AD hybrides avant de l’activer. "
+ }
+ },
+ "RequireCompliantOrHybridADAllUsers": {
+ "Description": {
+ "on": "Cette stratégie affecte tous les utilisateurs à l’exception de l’administrateur actuellement connecté. Envisagez d’utiliser le mode rapport uniquement pour commencer avant d’avoir confirmé que cela n’aura pas d’impact sur vos utilisateurs."
+ },
+ "Title": {
+ "on": "Ne boquez pas votre accès ! Assurez-vous que votre appareil est conforme ou jointure hybride Azure AD ou que vous avez configuré l’authentification multifacteur.",
+ "reportOnly": "Les stratégies en mode rapport uniquement qui requièrent des appareils conformes peuvent inviter les utilisateurs de Mac, iOS et Android à sélectionner un certificat d’appareil lors de l’évaluation de la stratégie, même si la conformité des appareils n’est pas appliquée. Ces invites peuvent se répéter jusqu'à ce que l’appareil est rendu conforme."
+ }
+ },
+ "RequireMfa": {
+ "description": "Si vous utilisez des comptes d’accès d’urgence ou Azure AD vous connecter pour synchroniser vos objets locaux, vous devrez peut-être exclure ces comptes de cette stratégie après la création."
+ },
+ "RequireMfaAdmins": {
+ "description": "Notez que le compte d’administrateur actuel sera automatiquement exclu, mais tous les autres seront protégés lors de la création de la stratégie. Envisagez d’utiliser le mode rapport uniquement pour commencer.",
+ "title": "Ne boquez pas votre accès ! Cette stratégie a un impact sur le Portail Azure."
+ },
+ "RequireMfaAllUsers": {
+ "description": "Envisagez d’utiliser le mode rapport uniquement pour commencer jusqu’à ce que vous ayez planifié et communiqué cette modification à tous vos utilisateurs.",
+ "title": "L’activation de cette stratégie appliquera l’authentification multifacteur pour tous vos utilisateurs."
+ },
+ "RequireSecurityInfo": {
+ "description": "Vérifiez votre configuration pour protéger ces comptes en fonction des besoins de votre entreprise.",
+ "title": "Les utilisateurs et les rôles suivants sont exclus de cette stratégie, des invités et des utilisateurs externes, des administrateurs généraux, administrateur actuel"
+ }
+ },
+ "basics": "Informations de base",
+ "clientApps": "Applications clientes",
+ "cloudApps": "Applications cloud",
+ "cloudAppsOrActions": "Applications ou actions cloud ",
+ "conditions": "Conditions ",
+ "createNewPolicy": "Créer une stratégie à partir de modèles (Préversion)",
+ "createPolicy": "Créer une stratégie",
+ "currentUser": "Utilisateur actuel",
+ "customizeBuild": "Personnaliser votre build",
+ "customizeTemplate": "Les listes de modèles sont personnalisées en fonction du type de stratégie que vous souhaitez créer",
+ "excludedDevicePlatform": "Plateformes d'appareils exclues",
+ "excludedDirectoryRoles": "Rôles d’annuaire exclus",
+ "excludedLocation": "Rôles d’annuaire exclus",
+ "excludedUsers": "Utilisateurs exclus",
+ "grantControl": "Accorder le contrôle ",
+ "includeFilteredDevice": "Inclure les appareils filtrés dans la stratégie",
+ "includedDevicePlatform": "Plates-formes d'appareils inclus",
+ "includedDirectoryRoles": "Rôles d’annuaire inclus",
+ "includedLocation": "Emplacement inclus",
+ "includedUsers": "Utilisateurs inclus",
+ "legacyAuthenticationClients": "Clients d’authentification hérités",
+ "namePolicy": "Nommer votre stratégie",
+ "next": "Suivant",
+ "policyName": "Nom de la stratégie",
+ "policyState": "État de la stratégie",
+ "policySummary": "Résumé de la stratégie",
+ "policyTemplate": "Modèle de stratégie",
+ "previous": "Précédent",
+ "reviewAndCreate": "Vérifier + créer",
+ "riskLevels": "Niveaux de risque",
+ "selectATemplate": "Sélectionner un modèle",
+ "selectTemplate": "Sélectionner un modèle",
+ "selectTemplateCategory": "Sélectionner une catégorie de modèle",
+ "selectTemplateRecommendation": "Nous vous recommandons les modèles suivants d’après votre réponse",
+ "sessionControl": "Contrôle de session ",
+ "signInFrequency": "Fréquence de connexion",
+ "signInRisk": "Risque de connexion",
+ "template": " modèle",
+ "templateCategory": "Catégorie de modèles",
+ "userRisk": "Risque utilisateur",
+ "usersAndGroups": "Utilisateurs et groupes ",
+ "viewPolicySummary": "Afficher le résumé de la stratégie "
+ },
+ "SSM": {
+ "MemberSelector": {
+ "description": "Utilisateurs et groupes"
+ },
+ "Notification": {
+ "Migration": {
+ "error": "Échec de la migration des paramètres d’évaluation continue de l’accès vers des stratégies d’accès conditionnel",
+ "inProgress": "Migration des paramètres d’évaluation continue de l’accès",
+ "success": "Réussite de la migration des paramètres d’évaluation continue de l’accès vers des stratégies d’accès conditionnel",
+ "successDescription": "Veuillez passer aux stratégies d’accès conditionnel pour afficher les paramètres migrés dans la stratégie nouvellement créée nommée « Stratégie d’autorité de certification créée à partir des paramètres d’autorité de certification »."
+ },
+ "error": "Échec de la mise à jour des paramètres de l'évaluation continue de l'accès",
+ "inProgress": "Mise à jour des paramètres de l’évaluation continue de l’accès",
+ "success": "Les paramètres d’évaluation continue de l’accès ont été mis à jour"
+ },
+ "PreviewOptions": {
+ "disable": "Désactiver la préversion",
+ "enable": "Activer la préversion"
+ },
+ "StrictLocationEnforcement": {
+ "infoContent1": "Des adresses IP différentes peuvent être vues par Azure AD et le fournisseur de ressources à partir du même appareil client en raison de la partition réseau ou d'une non-concordance entre IPv4 et IPv6. L'application stricte de l'emplacement applique la stratégie d'accès conditionnel en fonction des deux adresses IP vues par Azure AD et le fournisseur de ressources.",
+ "infoContent2": "Pour garantir une sécurité maximale, il est recommandé d'ajouter toutes les adresses IP visibles par Azure AD et le fournisseur de ressources dans votre stratégie Emplacement nommé, et d'activer le mode « Application stricte de l'emplacement ».",
+ "label": "Application stricte de l’emplacement",
+ "title": "Modes d’application supplémentaires"
+ },
+ "bladeTitle": "Évaluation continue de l’accès",
+ "description": "Quand l'accès d'un utilisateur est supprimé ou que l'adresse IP d'un client est modifiée, l'évaluation continue de l'accès bloque automatiquement l'accès aux ressources et aux applications en temps quasi réel. ",
+ "migrateLabel": "Migrer",
+ "migrationError": "La migration a échoué en raison de l’erreur suivante : {0}",
+ "migrationInfo": "Le paramètre d’évaluation continue de l’accès a été déplacé sous l’expérience d’accès conditionnel, effectuez une migration avec le bouton Migrer ci-dessus et configurez-le avec une stratégie d’accès conditionnel à l’avenir. Cliquez ici pour en savoir plus.",
+ "noLicenseMessage": "Gérer les paramètres d'administration de session intelligente avec Azure AD Premium",
+ "optionsPickerTitle": "Activer/désactiver l’évaluation continue de l’accès",
+ "upsellInfo": "Vous ne pouvez plus modifier vos paramètres sur cette page et tous les paramètres définis ici doivent être ignorés. Votre paramètre précédent sera respecté. Vous pouvez configurer vos paramètres d’autorité de certification sous Accès conditionnel à l’avenir. Cliquez ici pour en savoir plus."
+ },
+ "SelectOrganizations": {
+ "Blade": {
+ "Lower": {
+ "gridAria": "Liste des organisations sélectionnées"
+ },
+ "Upper": {
+ "gridAria": "Liste des organisations disponibles"
+ },
+ "description": "Ajoutez une organisation Azure AD en tapant l’un de ses noms de domaine.",
+ "notFoundResult": "Introuvable",
+ "searchBoxPlaceholder": "ID client ou nom de domaine",
+ "subTitle": "Azure AD organisation"
+ },
+ "Selector": {
+ "AdditionalDetails": {
+ "aria": "ID de l’organisation : {0}"
+ },
+ "DisplayText": {
+ "multiple": "{0} organisations Azure AD sélectionnées",
+ "single": "1 organisation Azure AD sélectionnée"
+ },
+ "gridAria": "Liste des organisations sélectionnées"
+ }
+ },
+ "SessionLifetime": {
+ "PersistentBrowser": {
+ "Error": {
+ "notAllApps": "La stratégie de session de navigateur persistante ne fonctionne correctement que lorsque l'option « Toutes les applications cloud » est sélectionnée. Mettez à jour votre sélection d’applications cloud."
+ },
+ "Option": {
+ "always": "Toujours persistant",
+ "help": "Une session de navigateur persistante autorise les utilisateurs à rester connectés après fermeture et réouverture de la fenêtre du navigateur.
\n\n- Ce paramètre fonctionne correctement lorsque l'option « Toutes les applications cloud » est sélectionnée
\n- Cela n’affecte pas la durée de vie des jetons ou le paramètre de fréquence de connexion.
\n- Cela remplace la stratégie « Afficher l'option pour rester connecté » dans la personnalisation de l'entreprise.
\n- L'option « Jamais persistant » remplace toute réclamation d'authentification unique persistante en provenance de services d’authentification fédérée.
\n- L'option « Jamais persistant » empêche l’authentification unique sur les appareils mobiles entre différentes applications, et entre les applications et le navigateur mobile de l’utilisateur.
\n",
+ "label": "Session de navigateur persistante",
+ "never": "Jamais persistant"
+ },
+ "Warning": {
+ "allApps": "La stratégie de session de navigateur persistante ne fonctionne correctement que lorsque l'option « Toutes les applications cloud » est sélectionnée. Modifiez votre sélection d’applications cloud. Cliquez ici pour en savoir plus."
+ }
+ },
+ "SignInFrequency": {
+ "Aria": {
+ "units": "Heures ou jours",
+ "value": "Fréquence"
+ },
+ "Option": {
+ "Day": {
+ "plural": "{0} jours",
+ "singular": "1 jour"
+ },
+ "Hour": {
+ "plural": "{0} heures",
+ "singular": "1 heure"
+ },
+ "daysOption": "Jours",
+ "everytime": "À chaque fois",
+ "help": "Durée avant qu’un utilisateur soit invité à se reconnecter lors de la tentative d’accès à une ressource. Le paramètre par défaut est une fenêtre dynamique de 90 jours, c’est-à-dire que les utilisateurs doivent s’authentifier à nouveau à la première tentative d’accès à une ressource après un temps d'inactivité de 90 jours ou plus sur leur ordinateur.",
+ "hoursOption": "Heures",
+ "label": "Fréquence de connexion",
+ "placeholder": "Sélectionner les unités"
+ }
+ },
+ "mainOption": "Modifier la durée de vie de la session",
+ "mainOptionHelp": "Configurer la fréquence à laquelle les utilisateurs seront invités et indiquer si les sessions de navigateur seront persistantes. Les applications qui ne prennent pas en charge les protocoles d’authentification modernes ne pourront pas honorer ces stratégies. Dans ce cas, contactez le développeur d’applications."
+ },
+ "SigninRisk": {
+ "LearnMore": {
+ "message": "Contrôlez l’accès utilisateur pour répondre à des niveaux de risque de connexion spécifiques."
+ }
+ },
+ "SingleSelectorActive": {
+ "failed": "Désolé... Nous n’avons pas pu charger ces données.",
+ "reattempt": "Chargement des données. Retentez l' {0} sur {1}."
+ },
+ "TimeCondition": {
+ "Errors": {
+ "both": "Plage horaire « Inclure » ou « Exclure » non valide.",
+ "daysOfWeek": "{0} Veillez à spécifier au moins un jour de la semaine.",
+ "endBeforeStart": "{0} Vérifiez que la date et l'heure de début sont antérieures à la date et à l'heure de fin.",
+ "exclude": "Plage horaire « Exclure » non valide.",
+ "generic": "{0} Vérifiez que les jours de la semaine et le fuseau horaire sont définis. Si l'option « Toute la journée » n’est pas cochée, vous devez également définir l’heure de début et l’heure de fin.",
+ "include": "Plage horaire « Inclure » non valide.",
+ "timeMissing": "{0} Veillez à spécifier à la fois une heure de début et une heure de fin.",
+ "timeZone": "{0} Spécifiez un fuseau horaire.",
+ "timesAndZone": "{0} Veillez à définir l’heure de début, l’heure de fin et le fuseau horaire."
+ }
+ },
+ "UserActions": {
+ "Included": {
+ "none": "Aucune application cloud ou action sélectionnée",
+ "plural": "{0} actions utilisateur incluses",
+ "singular": "1 action utilisateur incluse"
+ },
+ "accessRequirement1": "Niveau 1",
+ "accessRequirement2": "Niveau 2",
+ "accessRequirement3": "Niveau 3",
+ "accessRequirementsLabel": "Accès aux données de l'application sécurisée",
+ "appsActionsAuthTitle": "Applications cloud, actions ou contexte d’authentification",
+ "appsOrActionsSelectorInfoBallonText": "Applications consultées ou actions de l’utilisateur",
+ "appsOrActionsTitle": "Applications ou actions cloud",
+ "label": "Actions de l'utilisateur",
+ "mainOptionsLabel": "Sélectionner ce à quoi cette stratégie s’applique",
+ "registerOrJoinDevices": "Inscrire ou joindre des appareils",
+ "registerSecurityInfo": "Enregistrer les informations de sécurité",
+ "selectionInfo": "Sélectionner l'action à laquelle cette stratégie s’applique",
+ "whatIf": "Action utilisateur incluse"
+ },
+ "UserSelectionBlade": {
+ "DirectoryRoles": {
+ "ariaLabel": "Choisir des rôles d’annuaire"
+ },
+ "Excluded": {
+ "gridAria": "Liste des utilisateurs exclus"
+ },
+ "Included": {
+ "gridAria": "Liste des utilisateurs inclus"
+ },
+ "Validation": {
+ "customRoleIncluded": "« Rôles d'annuaire » : inclut au moins un rôle personnalisé",
+ "customRoleSelected": "Au moins un rôle personnalisé est sélectionné",
+ "failed": "« {0} » doit être configuré",
+ "roles": "Sélectionner au moins un rôle",
+ "usersGroups": "Sélectionner au moins un utilisateur ou un groupe"
+ },
+ "learnMore": "Contrôlez l’accès en fonction des personnes auxquelles la stratégie s’applique, telles que des utilisateurs et des groupes, des identités de charge de travail, des rôles d’annuaire ou des invités externes."
+ },
+ "ValidationResult": {
+ "blockEveryonePolicy": "La configuration de stratégie n'est pas prise en charge. Passez en revue les affectations et les contrôles.",
+ "invalidApplicationCondition": "Applications cloud non valides sélectionnées",
+ "invalidClientTypesCondition": "Applications clientes non valides sélectionnées",
+ "invalidConditions": "Les attributions ne sont pas sélectionnées",
+ "invalidControls": "Contrôles non valides sélectionnés",
+ "invalidDevicePlatformsCondition": "Plateformes d'appareils non valides sélectionnées",
+ "invalidDevicesCondition": "Configuration d’appareil non valide. Probablement une configuration non valide du « {0} ».",
+ "invalidGrantControlPolicy": "Contrôle d'octroi non valide",
+ "invalidLocationsCondition": "Emplacements non valides sélectionnés",
+ "invalidPolicy": "Les attributions ne sont pas sélectionnées",
+ "invalidSessionControlPolicy": "Contrôle de session non valide",
+ "invalidSignInRisksCondition": "Risque de connexion non valide sélectionné",
+ "invalidUserRisksCondition": "Risque utilisateur non valide sélectionné",
+ "invalidUsersCondition": "Utilisateurs non valides sélectionnés",
+ "mamPolicyShouldOnlyTargetAndroidOrIosPlatforms": "La stratégie MAM ne peut être appliquée qu'aux plateformes clientes Android ou iOS.",
+ "notSupportedCombination": "La configuration de stratégie n'est pas prise en charge. En savoir plus sur les stratégies prises en charge.",
+ "pending": "Validation de la stratégie",
+ "requireComplianceEveryonePolicy": "La configuration de stratégie exige la conformité des appareils pour tous les utilisateurs. Passez en revue les attributions sélectionnées.",
+ "success": "Stratégie valide"
+ },
+ "VpnCert": {
+ "Grid": {
+ "aria": "Liste des certificats VPN"
+ }
+ },
+ "WarningsInfo": {
+ "Controls": {
+ "compliantDeviceEnabled": "Ne bloquez pas votre accès ! Assurez-vous que votre appareil est conforme.",
+ "domainJoinedDeviceEnabled": "Ne boquez pas votre accès ! Assurez-vous que votre appareil est joint Azure AD hybride.",
+ "exchangeDisabled": "Exchange ActiveSync prend uniquement en charge les contrôles « Appareil conforme » et « Application cliente approuvée ». Cliquez ici pour en savoir plus.",
+ "exchangeDisabled2": "Exchange ActiveSync prend uniquement en charge les contrôles « Appareil conforme », « Application cliente approuvée » et « Application cliente conforme ». Cliquez ici pour en savoir plus.",
+ "notAvailableForSP": "Certaines contrôles ne sont pas disponibles en raison de la sélection de « {0} » dans l’affectation de la stratégie",
+ "requireAuthOrMfa": "« {0} » ne peut pas s'utiliser avec « {1} »",
+ "requireMfa": "Envisagez de tester la nouvelle préversion publique « {0} »",
+ "requirePasswordChangeEnabled": "L'option « Exiger la modification du mot de passe » ne peut être utilisée que lorsque la stratégie est affectée à « Toutes les applications cloud »"
+ },
+ "Policies": {
+ "Linux": {
+ "devicePlatformsReportOnlyPolicy": "Les stratégies en mode Rapport uniquement nécessitant des appareils conformes peuvent inviter les utilisateurs sur macOS, iOS, Android et Linux à sélectionner un certificat d’appareil.",
+ "excludeDevicePlatforms": "Excluez les plateformes d’appareils macOS, iOS, Android et Linux de cette stratégie.",
+ "proceedAnywayDevicePlatforms": "Passez à la configuration sélectionnée. Les utilisateurs sur macOS, iOS, Android et Linux peuvent recevoir des invites lorsque la conformité de l’appareil est vérifiée."
+ },
+ "blockCurrentUserPolicy": "Ne bloquez pas votre accès ! Nous vous recommandons d'appliquer d'abord une stratégie à un petit ensemble d'utilisateurs pour vérifier qu'elle se comporte comme prévu. Nous vous recommandons également d'exclure au moins un administrateur de cette stratégie. Cela garantit que vous avez toujours accès et pouvez mettre à jour une stratégie si une modification est nécessaire. Passez en revue les utilisateurs et les applications concernés.",
+ "devicePlatformsReportOnlyPolicy": "Les stratégies en mode rapport uniquement nécessitant des appareils compatibles peuvent inviter des utilisateurs sur macOS, iOS et Android à sélectionner un certificat d’appareil.",
+ "excludeCurrentUserSelection": "Exclure l'utilisateur actuel, {0}, de cette stratégie.",
+ "excludeDevicePlatforms": "Excluez les plateformes d’appareils macOS, iOS et Android de cette stratégie.",
+ "proceedAnywayDevicePlatforms": "Exécutez la configuration sélectionnée. Les utilisateurs sur macOS, iOS et Android peuvent recevoir des invites lors de la vérification de la conformité de l’appareil.",
+ "proceedAnywaySelection": "Je comprends que mon compte sera affecté par cette stratégie. Continuer malgré tout."
+ },
+ "ServicePrincipals": {
+ "blockExchange": "La sélection d'Office 365 Exchange Online affectera également les applications comme OneDrive et Teams.",
+ "blockPortal": "Ne bloquez pas votre accès ! Cette stratégie a un impact sur le portail Azure. Avant de continuer, assurez-vous que vous ou quelqu'un d'autre pourra revenir au portail.",
+ "blockPortalWithSession": "Ne bloquez pas votre accès ! Cette stratégie a un impact sur le portail Azure. Avant de continuer, assurez-vous que vous ou quelqu'un d'autre sera en mesure de revenir au portail.
Ignorez cet avertissement si vous configurez une stratégie de session de navigateur persistante qui ne fonctionne correctement que si l'option « Toutes les applications cloud » est sélectionnée.",
+ "blockSharePoint": "La sélection de SharePoint Online affectera également les applications comme Microsoft Teams, Planner, Delve, MyAnalytics et Newsfeed.",
+ "blockSkype": "La sélection de Skype Entreprise Online affecte également Microsoft Teams.",
+ "includeOrExclude": "Vous pouvez configurer le filtre d’application pour « {0} » ou « {1} », mais pas les deux.",
+ "selectAppsNAForSP": "Impossible de sélectionner des applications cloud individuelles en raison de la sélection « {0} » dans l’attribution de stratégie",
+ "teamsBlocked": "Microsoft Teams est également affecté quand des applications telles que SharePoint Online et Exchange Online sont incluses dans la stratégie."
+ },
+ "Users": {
+ "blockAllUsers": "Ne bloquez pas votre accès ! Cette stratégie aura une incidence sur tous vos utilisateurs. Nous vous recommandons d'appliquer d'abord une stratégie à un petit ensemble d'utilisateurs pour vérifier qu'elle se comporte comme prévu."
+ }
+ },
+ "WhatIf": {
+ "Device": {
+ "AttributesGrid": {
+ "aria": "Liste des attributs sur l’appareil utilisé lors de la connexion.",
+ "infoBalloon": "Liste des attributs sur l’appareil utilisé lors de la connexion."
+ }
+ }
+ },
+ "advancedTabText": "Avancé",
+ "allCloudAppsErrorBox": "L'option « Toutes les applications cloud » doit être sélectionnée quand l’autorisation « Exiger une modification du mot de passe » est sélectionnée",
+ "allCloudAppsReauth": "« Toutes les applications cloud » doivent être sélectionnées lorsque le contrôle de session « Fréquence de connexion à chaque fois » et la condition « Risque de connexion » sont sélectionnés",
+ "allCloudOrSpecificApps": "Le contrôle de session « Fréquence de connexion à chaque fois » nécessite la sélection de « toutes les applications cloud » ou d’applications spécifiquement prises en charge",
+ "allDayCheckboxLabel": "Toute la journée",
+ "allDevicePlatforms": "N'importe quel périphérique",
+ "allGuestUserInfoContent": "Inclut les invités Azure AD B2B, mais pas les invités SharePoint B2B",
+ "allGuestUserLabel": "Tous les utilisateurs invités et externes",
+ "allRiskLevelsOption": "Tous niveaux de risque",
+ "allTrustedLocationLabel": "Tous les emplacements approuvés",
+ "allUserGroupSetSelectorLabel": "Tous les utilisateurs et groupes sélectionnés",
+ "allUsersReauth": "Le contrôle de session « Fréquence de connexion à chaque fois » nécessite la sélection de « Tous les utilisateurs »",
+ "allUsersString": "Tous les utilisateurs",
+ "and": "{0} ET {1}",
+ "andWithGrouping": "({0}) ET {1} ",
+ "androidDisplayName": "Android",
+ "anyCloudAppSelection": "N’importe quelle application cloud",
+ "appContextOptionInfoContent": "Balise d'authentification demandée",
+ "appContextOptionLabel": "Balise d'authentification demandée (préversion)",
+ "appContextUriPlaceholder": "Exemple : uri:contoso.com:level3",
+ "appEnforceInfoBubble": "Les restrictions appliquées par l'application peuvent nécessiter des configurations supplémentaires de la part de l'administrateur au sein des applications cloud. Celles-ci ne seront valides que pour les nouvelles sessions.",
+ "appNotSetSeletorLabel": "0 application cloud sélectionnée",
+ "applyConditionClientAppInfoBalloonContent": "Configurer les applications clientes pour appliquer la stratégie à des applications clientes spécifiques",
+ "applyConditionDevicePlatformInfoBalloonContent": "Configurer les plateformes d'appareils pour appliquer la stratégie à des plateformes spécifiques",
+ "applyConditionDeviceStateInfoBalloonContent": "Configurer l'état des appareils pour appliquer la stratégie à des états d'appareils spécifiques",
+ "applyConditionLocationInfoBalloonContent": "Configurer les emplacements pour appliquer la stratégie aux emplacements approuvés/non approuvés",
+ "applyConditionSigninRiskInfoBalloonContent": "Configurer le risque de connexion pour appliquer la stratégie aux niveaux de risque sélectionnés",
+ "applyConditionUserRiskInfoBalloonContent": "Configurer le risque utilisateur pour appliquer la stratégie aux niveaux de risque sélectionnés",
+ "applyConditonLabel": "Configurer",
+ "ariaLabelPolicyDisabled": "La stratégie est désactivée",
+ "ariaLabelPolicyEnabled": "La stratégie est activée",
+ "ariaLabelPolicyReportOnly": "La stratégie est en mode Rapport uniquement",
+ "blockAccess": "Bloquer l'accès",
+ "builtInDirectoryRoleLabel": "Rôles d’annuaire intégrés",
+ "casCustomControlInfo": "Les stratégies personnalisées doivent être configurées dans le portail Cloud App Security. Ce contrôle fonctionne instantanément pour les applications disponibles et peut être intégré automatiquement pour n'importe quelle application. Cliquez ici pour en savoir plus sur les deux scénarios.",
+ "casInfoBubble": "Ce contrôle fonctionne pour différentes applications cloud.",
+ "casPreconfiguredControlInfo": "Ce contrôle fonctionne instantanément pour les applications disponibles et peut être intégré automatiquement pour n'importe quelle application. Cliquez ici pour en savoir plus sur les deux scénarios.",
+ "cert64DownloadCol": "Télécharger un certificat en base64",
+ "cert64Name": "VpnBase64Cert",
+ "certDownloadCol": "Télécharger le certificat",
+ "certDurationCol": "Expiration",
+ "certDurationStartCol": "Valide depuis",
+ "certName": "VpnCert",
+ "certainApps": "Seules certaines applications sont prises en charge pour « Fréquence de connexion à chaque fois » si les octrois « Exiger l’authentification multifacteur » et « Exiger une modification du mot de passe » ne sont pas sélectionnés",
+ "chooseApplicationsBladeSubtitle": "",
+ "chooseApplicationsBladeTitle": "Choisir les applications",
+ "chooseApplicationsCartSubitle": "",
+ "chooseApplicationsCartTitle": "Applications choisies",
+ "chooseApplicationsEmpty": "Aucune application",
+ "chooseApplicationsNone": "Aucun",
+ "chooseApplicationsNoneFound": "« {0} » est introuvable. Essayez un autre nom ou identifiant.",
+ "chooseApplicationsPlural": "{0} et {1} autres ",
+ "chooseApplicationsReAuthEverytimeInfo": "Vous recherchez votre application ? Certaines applications ne peuvent pas être utilisées avec le contrôle de session « Exiger une réauthentification – à chaque fois »",
+ "chooseApplicationsRemove": "Supprimer",
+ "chooseApplicationsReturnedPlural": "{0} applications trouvées",
+ "chooseApplicationsReturnedSingular": "1 application trouvée",
+ "chooseApplicationsSearchBalloon": "Recherchez une application en entrant son nom ou identifiant.",
+ "chooseApplicationsSearchHint": "Rechercher des applications...",
+ "chooseApplicationsSearchLabel": "Applications",
+ "chooseApplicationsSearching": "Recherche en cours...",
+ "chooseApplicationsSelect": "Sélectionner",
+ "chooseApplicationsSelected": "Sélectionné",
+ "chooseApplicationsSingular": "{0} et 1 autre",
+ "chooseApplicationsTooMany": "Impossible d'afficher tous les résultats. Filtrez à l’aide de la zone de recherche.",
+ "chooseLocationCorpnetItem": "Réseau d'entreprise",
+ "chooseLocationSelectedLocationsLabel": "Emplacements sélectionnés",
+ "chooseLocationTrustedIpsItem": "Adresses IP approuvées MFA",
+ "chooseLocationsBladeSubtitle": "",
+ "chooseLocationsBladeTitle": "Choisir les emplacements",
+ "chooseLocationsCartSubitle": "",
+ "chooseLocationsCartTitle": "Emplacements choisis",
+ "chooseLocationsEmpty": "Aucun emplacement",
+ "chooseLocationsExcludedSelectorTitle": "Sélectionner",
+ "chooseLocationsIncludedSelectorTitle": "Sélectionner",
+ "chooseLocationsNone": "Aucun",
+ "chooseLocationsNoneFound": "« {0} » est introuvable. Essayez un autre nom ou identifiant.",
+ "chooseLocationsPlural": "{0} et {1} autres ",
+ "chooseLocationsRemove": "Supprimer",
+ "chooseLocationsReturnedPlural": "{0} emplacements trouvés",
+ "chooseLocationsReturnedSingular": "1 emplacement trouvé",
+ "chooseLocationsSearchBalloon": "Recherchez un emplacement en entrant son nom.",
+ "chooseLocationsSearchHint": "Rechercher des emplacements...",
+ "chooseLocationsSearchLabel": "Emplacements",
+ "chooseLocationsSearching": "Recherche en cours...",
+ "chooseLocationsSelect": "Sélectionner",
+ "chooseLocationsSelected": "Sélectionné",
+ "chooseLocationsSelectionBladeExcludedSelectorTitle": "Sélectionner",
+ "chooseLocationsSelectionBladeIncludedSelectorTitle": "Sélectionner",
+ "chooseLocationsSingular": "{0} et 1 autre",
+ "chooseLocationsTooMany": "Impossible d'afficher tous les résultats. Filtrez à l’aide de la zone de recherche.",
+ "claimProviderAddCommandText": "Nouveau contrôle personnalisé",
+ "claimProviderAddNewBladeTitle": "Nouveau contrôle personnalisé",
+ "claimProviderDeleteCommand": "Supprimer",
+ "claimProviderDeleteDescription": "Êtes-vous sûr de vouloir supprimer « {0} » ? Cette action ne peut pas être annulée.",
+ "claimProviderDeleteTitle": "Êtes-vous sûr ?",
+ "claimProviderEditInfoText": "Entrez le JSON pour les contrôles personnalisés donnés par vos fournisseurs de revendication.",
+ "claimProviderNotificationCreateDescription": "Création du contrôle personnalisé nommé « {0} »",
+ "claimProviderNotificationCreateFailedDescription": "La création du contrôle personnalisé « {0} » a échoué. Réessayez ultérieurement.",
+ "claimProviderNotificationCreateFailedTitle": "Impossible de créer le contrôle personnalisé",
+ "claimProviderNotificationCreateSuccessDescription": "Le contrôle personnalisé nommé « {0} » a été créé",
+ "claimProviderNotificationCreateSuccessTitle": "« {0} » créé",
+ "claimProviderNotificationCreateTitle": "Création de « {0} »",
+ "claimProviderNotificationDeleteDescription": "Suppression du contrôle personnalisé nommé « {0} »",
+ "claimProviderNotificationDeleteFailedDescription": "La suppression du contrôle personnalisé « {0} » a échoué. Réessayez ultérieurement.",
+ "claimProviderNotificationDeleteFailedTitle": "Impossible de supprimer le contrôle personnalisé",
+ "claimProviderNotificationDeleteSuccessDescription": "Le contrôle personnalisé nommé « {0} » a été supprimé",
+ "claimProviderNotificationDeleteSuccessTitle": "« {0} » supprimé",
+ "claimProviderNotificationDeleteTitle": "Suppression de « {0} »",
+ "claimProviderNotificationUpdateDescription": "Mise à jour du contrôle personnalisé nommé « {0} »",
+ "claimProviderNotificationUpdateFailedDescription": "La mise à jour du contrôle personnalisé « {0} » a échoué. Réessayez ultérieurement.",
+ "claimProviderNotificationUpdateFailedTitle": "Impossible de mettre à jour le contrôle personnalisé",
+ "claimProviderNotificationUpdateSuccessDescription": "Le contrôle personnalisé nommé « {0} » a été mis à jour",
+ "claimProviderNotificationUpdateSuccessTitle": "« {0} » mis à jour",
+ "claimProviderNotificationUpdateTitle": "Mise à jour de « {0} »",
+ "claimProviderValidationAppIdInvalid": "La valeur « AppId » n'est pas valide. Vérifiez et réessayez.",
+ "claimProviderValidationClientIdMissing": "Il manque une valeur « ClientId » dans les données. Vérifiez et réessayez.",
+ "claimProviderValidationControlClaimsRequestedMissing": "Il manque une valeur « ClaimsRequested » dans le contrôle. Vérifiez et réessayez.",
+ "claimProviderValidationControlClaimsRequestedTypeMissing": "Il manque une valeur « Type » dans l'élément « ClaimsRequested ». Vérifiez et réessayez.",
+ "claimProviderValidationControlIdAlreadyExists": "La valeur « Control » « ID » existe déjà. Vérifiez et réessayez.",
+ "claimProviderValidationControlIdMissing": "Il manque une valeur « Id » dans le contrôle. Vérifiez et réessayez.",
+ "claimProviderValidationControlIdReferencedInExistingPolicy": "La valeur « Control » « ID » ne peut pas être supprimée, car elle est référencée dans une stratégie existante. Supprimez-la de la stratégie.",
+ "claimProviderValidationControlIdTooManyControls": "La propriété « control » contient trop de contrôles. Vérifiez et réessayez.",
+ "claimProviderValidationControlIdValueReserved": "La valeur « Control » « ID » est un mot clé réservé. Utilisez un autre ID.",
+ "claimProviderValidationControlNameAlreadyExists": "La valeur « Control » « Name » existe déjà. Vérifiez et réessayez.",
+ "claimProviderValidationControlNameMissing": "Il manque une valeur « Name » dans le contrôle. Vérifiez et réessayez.",
+ "claimProviderValidationControlsMissing": "Il manque une valeur « Controls » dans les données. Vérifiez et réessayez.",
+ "claimProviderValidationDiscoveryUrlMissing": "Il manque une valeur « DiscoveryUrl » dans les données. Vérifiez et réessayez.",
+ "claimProviderValidationInvalid": "Les données fournies ne sont pas valides. Vérifiez et réessayez.",
+ "claimProviderValidationInvalidJsonDefinition": "Impossible d'enregistrer le contrôle personnalisé. Vérifiez le texte JSON et réessayez.",
+ "claimProviderValidationNameAlreadyExists": "La valeur « Name » existe déjà. Vérifiez et réessayez.",
+ "claimProviderValidationNameMissing": "Il manque une valeur « Name » dans les données. Vérifiez et réessayez.",
+ "claimProviderValidationUnknown": "Une erreur inconnue s'est produite lors de la validation des données fournies. Vérifiez et réessayez.",
+ "claimProvidersNone": "Aucun contrôle personnalisé",
+ "claimProvidersSearchPlaceholder": "Recherchez des contrôles.",
+ "classicPoilcyFilterTitle": "Afficher",
+ "classicPolicyAllPlatforms": "Toutes les plateformes",
+ "classicPolicyClientAppBrowserAndNative": "Navigateur, applications mobiles et clients de bureau",
+ "classicPolicyCloudAppTitle": "Application cloud",
+ "classicPolicyControlAllow": "Autoriser",
+ "classicPolicyControlBlock": "Bloquer",
+ "classicPolicyControlBlockWhenNotAtWork": "Bloquer l'accès quand l'utilisateur n'est pas au travail",
+ "classicPolicyControlRequireCompliantDevice": "Exiger un appareil conforme",
+ "classicPolicyControlRequireDomainJoinedDevice": "Exiger un appareil joint au domaine",
+ "classicPolicyControlRequireMfa": "Exiger une authentification multifacteur",
+ "classicPolicyControlRequireMfaWhenNotAtWork": "Exiger l'authentification multifacteur à l'extérieur de l'entreprise",
+ "classicPolicyDeleteCommand": "Supprimer",
+ "classicPolicyDeleteFailTitle": "Échec de la suppression de la stratégie classique",
+ "classicPolicyDeleteInProgressTitle": "Suppression de la stratégie classique",
+ "classicPolicyDeleteSuccessTitle": "Stratégie classique supprimée",
+ "classicPolicyDetailBladeTitle": "Détails",
+ "classicPolicyDisableCommand": "Désactiver",
+ "classicPolicyDisableConfirmation": "Êtes-vous sûr de vouloir désactiver « {0} » ? Cette action ne peut pas être annulée.",
+ "classicPolicyDisableFailDescription": "Échec de la désactivation de « {0} »",
+ "classicPolicyDisableFailTitle": "Échec de la désactivation de la stratégie classique",
+ "classicPolicyDisableInProgressDescription": "Désactivation de « {0} »",
+ "classicPolicyDisableInProgressTitle": "Désactivation de la stratégie classique",
+ "classicPolicyDisableSuccessDescription": "« {0} » désactivée",
+ "classicPolicyDisableSuccessTitle": "Stratégie classique désactivée",
+ "classicPolicyEasSupportedPlatforms": "Plateformes prises en charge Exchange ActiveSync",
+ "classicPolicyEasUnsupportedPlatforms": "Plateformes non prises en charge Exchange ActiveSync",
+ "classicPolicyExcludedPlatformsTitle": "Plateformes d'appareils exclues",
+ "classicPolicyFilterAll": "Toutes les stratégies",
+ "classicPolicyFilterDisabled": "Stratégies désactivées",
+ "classicPolicyFilterEnabled": "Stratégies activées",
+ "classicPolicyIncludeExcludeMembersDescription": "En excluant des groupes, vous pouvez effectuer une migration progressive de stratégies.",
+ "classicPolicyIncludeExcludeMembersTitle": "Inclure/exclure des groupes",
+ "classicPolicyIncludedPlatformsTitle": "Plates-formes d'appareils inclus",
+ "classicPolicyManualMigrationMessage": "Cette stratégie doit être migrée manuellement.",
+ "classicPolicyMigrateCommand": "Migrer",
+ "classicPolicyMigrateConfirmation": "Êtes-vous sûr de vouloir migrer « {0} » ? Cette stratégie ne peut être migrée qu’une seule fois.",
+ "classicPolicyMigrateFailDescription": "Échec de la migration de « {0} »",
+ "classicPolicyMigrateFailTitle": "Échec de la migration de la stratégie classique",
+ "classicPolicyMigrateInProgressDescription": "Migration de « {0} » en cours...",
+ "classicPolicyMigrateInProgressTitle": "Migration de la stratégie classique",
+ "classicPolicyMigrateRecommendText": "Recommandation : migrez vers les nouvelles stratégies du portail Azure.",
+ "classicPolicyMigrateSuccessTitle": "Stratégie classique migrée",
+ "classicPolicyMigratedSuccessDescription": "Cette stratégie classique peut désormais être gérée sous Stratégies.",
+ "classicPolicyMigratedSuccessDescriptionMultiple": "Cette stratégie classique est migrée sous la forme de {0} nouvelles stratégies. Les nouvelles stratégies peuvent être gérés sous Stratégies.",
+ "classicPolicyNoEditPermissionMsg": "Vous n'êtes pas autorisé à modifier cette stratégie. Seuls les administrateurs généraux et les administrateurs de la sécurité peuvent modifier la stratégie. Pour plus d'informations, cliquez ici.",
+ "classicPolicySaveFailDescription": "Échec de l'enregistrement de « {0} »",
+ "classicPolicySaveFailTitle": "Échec de l’enregistrement de la stratégie classique",
+ "classicPolicySaveInProgressDescription": "Enregistrement de « {0} »",
+ "classicPolicySaveInProgressTitle": "Enregistrement de la stratégie classique",
+ "classicPolicySaveSuccessDescription": "« {0} » enregistrée",
+ "classicPolicySaveSuccessTitle": "Stratégie classique enregistrée",
+ "clientAppBladeLegacyInfoBanner": "L'authentification héritée n'est pas prise en charge actuellement.",
+ "clientAppBladeLegacyUpsellBanner": "Bloquer les applications clientes non prises en charge (préversion)",
+ "clientAppBladeTitle": "Applications clientes",
+ "clientAppDescription": "Sélectionner les applications clientes auxquelles cette stratégie s'applique",
+ "clientAppExchangeActiveSync": "Exchange ActiveSync",
+ "clientAppExchangeDisabledInfo": "Exchange ActiveSync est disponible lorsque Exchange Online est la seule application cloud sélectionnée. Cliquez ici pour en savoir plus.",
+ "clientAppExchangeWarning": "Exchange ActiveSync ne prend pas actuellement en charge toutes les autres conditions.",
+ "clientAppLearnMore": "Contrôlez l’accès utilisateur à des applications clientes spécifiques cibles qui n’utilisent pas l’authentification moderne.",
+ "clientAppLegacyHeader": "Clients d’authentification hérités",
+ "clientAppMobileDesktop": "Applications mobiles et clients de bureau",
+ "clientAppModernHeader": "Clients d'authentification modernes",
+ "clientAppOnlySupportedPlatforms": "Appliquer la stratégie uniquement aux plateformes prises en charge",
+ "clientAppSelectSpecificClientApps": "Sélectionner des applications clientes",
+ "clientAppV2BladeTitle": "Applications clientes (préversion)",
+ "clientAppWebBrowser": "Navigateur",
+ "clientAppsSelectedLabel": "{0} inclus",
+ "clientTypeBrowser": "Navigateur",
+ "clientTypeEas": "Clients Exchange ActiveSync",
+ "clientTypeEasInfo": "Clients Exchange ActiveSync qui utilisent uniquement l’authentification héritée.",
+ "clientTypeModernAuth": "Clients d'authentification moderne",
+ "clientTypeOtherClients": "Autres clients",
+ "clientTypeOtherClientsInfo": "Cela inclut les anciens clients Office et autres protocoles de messagerie (POP, IMAP, SMTP, etc.). [En savoir plus][1]\n[1] : https://aka.ms/caclientapps\n ",
+ "cloudAppCountDiffBannerText": "{0} applications cloud configurées dans cette stratégie ont été supprimées de l'annuaire, mais cela n'affecte pas les autres applications dans la stratégie. La prochaine fois que vous mettrez à jour la section Application de la stratégie, les applications supprimées seront supprimées automatiquement de celle-ci.",
+ "cloudAppsSelectionBladeAllMicrosoftApps": "Toutes les applications Microsoft",
+ "cloudAppsSelectionExcludeAllMicrosoftClients": "Autoriser les applications mobiles, de bureau et cloud Microsoft (préversion)",
+ "cloudappsSelectionBladeAllCloudapps": "Toutes les applications cloud",
+ "cloudappsSelectionBladeExcludeDescription": "Sélectionner les applications cloud à exclure de la stratégie",
+ "cloudappsSelectionBladeExcludedSelectorTitle": "Sélectionner les applications cloud exclues",
+ "cloudappsSelectionBladeIncludeDescription": "Sélectionner les applications cloud auxquelles cette stratégie s'applique",
+ "cloudappsSelectionBladeIncludedSelectorTitle": "Sélectionner",
+ "cloudappsSelectionBladeSelectedCloudapps": "Sélectionner les applications",
+ "cloudappsSelectorInfoBallonText": "Services auxquels l'utilisateur accède pour son travail. Par exemple « Salesforce »",
+ "cloudappsSelectorPluralExcluded": "{0} applications exclues",
+ "cloudappsSelectorPluralIncluded": "{0} applications incluses",
+ "cloudappsSelectorSingularExcluded": "1 application exclue",
+ "cloudappsSelectorSingularIncluded": "1 application incluse",
+ "cloudappsSelectorUserPlural": "{0} applications",
+ "cloudappsSelectorUserSingular": "1 application",
+ "conditionLabelMulti": "{0} conditions sélectionnées",
+ "conditionLabelOne": "1 condition sélectionnée",
+ "conditionalAccessBladeTitle": "Accès conditionnel",
+ "conditionsNotSelectedLabel": "Non configuré",
+ "conditionsReqMfaReauthSet": "Certaines options ne sont pas disponibles en raison de l’octroi « Exiger l’authentification multifacteur » et du contrôle de session « Fréquence de connexion à chaque fois » actuellement sélectionnés",
+ "conditionsReqPwSet": "Certaines options ne sont pas disponibles en raison de l’autorisation « Exiger une modification du mot de passe » en cours de sélection",
+ "configureCasText": "Configurer Cloud App Security",
+ "configureCustomControlsText": "Configurer une stratégie personnalisée",
+ "controlLabelMulti": "{0} contrôles sélectionnés",
+ "controlLabelOne": "1 contrôle sélectionné",
+ "controlValidatorText": "Sélectionnez au moins un contrôle.",
+ "controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
+ "controlsDeviceComplianceAriaLabel": "En savoir plus sur l’obligation d’appareils conformes.",
+ "controlsDeviceComplianceInfoBubble": "L'appareil doit être compatible avec Intune. Si ce n'est pas le cas, l'utilisateur est invité à le rendre conforme.",
+ "controlsDomainJoinedAriaLabel": "En savoir plus sur la nécessité d’appareils hybrides Azure AD joints.",
+ "controlsDomainJoinedInfoBubble": "Les appareils doivent être joints Azure AD hybride.",
+ "controlsMamAriaLabel": "En savoir plus sur l’exigence d’applications clientes approuvées.",
+ "controlsMamInfoBubble": "L'appareil doit utiliser ces applications clientes approuvées.",
+ "controlsMfaInfoBubble": "L'utilisateur doit répondre à des exigences de sécurité supplémentaires, telles qu'un appel téléphonique ou un SMS",
+ "controlsOrAndInfoBubble": "ControlsOrAndInfoBubble",
+ "controlsRequireCompliantAppAriaLabel": "En savoir plus sur la nécessité d’applications protégées par une stratégie.",
+ "controlsRequireCompliantAppInfoBubble": "L’appareil doit utiliser des applications protégées par une stratégie.",
+ "controlsRequirePasswordResetAriaLabel": "En savoir plus sur l’obligation de modifier le mot de passe.",
+ "controlsRequirePasswordResetInfoBubble": "Exigez la modification du mot de passe pour réduire le risque utilisateur. Cette option nécessite également l’authentification multifacteur. Impossible d’utiliser d’autres commandes.",
+ "countriesRadiobuttonInfoBalloonContent": "Le pays ou la région d'où provient la connexion est déterminé par l'adresse IP de l'utilisateur.",
+ "createNewVpnCert": "Nouveau certificat",
+ "createdTimeLabel": "Heure de création",
+ "customRoleLabel": "Rôles personnalisés (non pris en charge)",
+ "dateRangeTypeLabel": "Plage de dates",
+ "daysOfWeekPlaceholderText": "Filtrer les jours de la semaine",
+ "daysOfWeekTypeLabel": "Jours de la semaine",
+ "deletePolicyNoLicenseText": "Vous pouvez supprimer cette stratégie maintenant. Une fois supprimée, vous ne pourrez pas la recréer avant d'avoir les licences requises.",
+ "descriptionContentForControlsAndOr": "Pour plusieurs contrôles",
+ "devicePlatform": "Plateforme de l'appareil",
+ "devicePlatformConditionHelpDescription": "Appliquez la stratégie aux plateformes d’appareils sélectionnées.\n[En savoir plus][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2044750",
+ "devicePlatformInclude": "{0} inclus",
+ "devicePlatformIncludeExclude": "{0} et {1} exclus",
+ "devicePlatformNoSelectionError": "Les plateformes d’appareils sélectionnées nécessitent la sélection d’un sous-élément.",
+ "devicePlatformsNone": "Aucun",
+ "deviceSelectionBladeExcludeDescription": "Sélectionner les plateformes à exclure de la stratégie",
+ "deviceSelectionBladeIncludeDescription": "Sélectionner les plateformes d'appareil à inclure dans cette stratégie",
+ "deviceStateAll": "Tous les états d'appareils",
+ "deviceStateCompliant": "Appareil marqué comme conforme",
+ "deviceStateCompliantInfoContent": "Les appareils compatibles avec Intune sont exclus de l'évaluation de cette stratégie. Ainsi, par exemple, si la stratégie bloque l'accès, elle bloque tous les appareils à l'exception des appareils compatibles avec Intune.",
+ "deviceStateConditionConfigureInfoContent": "Configurer la stratégie en fonction de l'état de l'appareil",
+ "deviceStateConditionSelectorInfoContent": "Si l’appareil à partir duquel l’utilisateur se connecte est « Jointure hybride Azure AD » ou « marqué comme conforme ».\n Cela a été déconseillé. Utilisez « {1} » à la place.",
+ "deviceStateConditionSelectorLabel": "État de l’appareil (déconseillé)",
+ "deviceStateDomainJoined": "Appareil joint Azure AD hybride",
+ "deviceStateDomainJoinedInfoContent": "Les appareils joints Azure AD hybride sont exclus de l'évaluation de cette stratégie. Ainsi, par exemple, si la stratégie bloque l'accès à cette dernière, elle bloque tous les appareils, à l'exception des appareils joints Azure AD hybride.",
+ "deviceStateDomainJoinedInfoLinkText": "En savoir plus.",
+ "deviceStateExcludeDescription": "Sélectionnez la condition d'état d'appareil utilisée pour exclure des appareils de la stratégie.",
+ "deviceStateIncludeAndExcludeOneLabel": "{0} et exclusion de {1}",
+ "deviceStateIncludeAndExcludeTwoLabel": "{0} et exclusion de {1}, {2}",
+ "directoryRoleInfoContent": "Attribuez une stratégie à des rôles d’annuaire intégrés.",
+ "directoryRolesLabel": "Rôles d'annuaire",
+ "discardbutton": "Ignorer",
+ "downloadDefaultFileName": "Plages d'adresses IP",
+ "downloadExampleFileName": "Exemple",
+ "downloadExampleHeader": "Il s'agit d'un exemple de fichier avec des démonstrations relatives aux types de données qui peuvent être acceptés. Les lignes commençant par # sont ignorées.",
+ "endDatePickerLabel": "Terminaisons",
+ "endTimePickerLabel": "Heure de fin",
+ "enterCountryText": "L'adresse IP et le pays sont évalués dans une paire. Sélectionnez le pays.",
+ "enterIpText": "Le pays et l'adresse IP sont évalués dans une paire. Entrez l'adresse IP.",
+ "enterUserText": "Aucun utilisateur n'est sélectionné. Sélectionnez-en un.",
+ "evaluationResult": "Résultat de l'évaluation",
+ "exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
+ "exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync avec plateformes prises en charge uniquement",
+ "excludeAllTrustedLocationSelectorText": "tous les emplacements approuvés",
+ "featureRequiresP2": "Cette fonctionnalité nécessite une licence Azure AD Premium 2.",
+ "friday": "Vendredi",
+ "grantControls": "Contrôles d'octroi",
+ "gridNetworkTrusted": "Approuvé",
+ "gridPolicyCreatedDateTime": "Date de création",
+ "gridPolicyEnabled": "Activé",
+ "gridPolicyModifiedDateTime": "Date de modification",
+ "gridPolicyName": "Nom de la stratégie",
+ "gridPolicyState": "État",
+ "groupSelectionBladeExcludeDescription": "Sélectionner les groupes à exclure de la stratégie",
+ "groupSelectionBladeExcludedSelectorTitle": "Sélectionner les groupes exclus",
+ "groupSelectionBladeSelect": "Sélectionner des groupes",
+ "groupSelectorInfoBallonText": "Groupes du répertoire auquel la stratégie s'applique. Par exemple « groupe pilote »",
+ "groupsSelectionBladeTitle": "Groupes",
+ "helpCommonScenariosText": "Vous êtes intéressé par les scénarios courants ?",
+ "helpCondition1": "Quand un utilisateur est en dehors du réseau de société",
+ "helpCondition2": "Quand des utilisateurs du groupe 'Responsables' se connectent",
+ "helpConditionsTitle": "Conditions",
+ "helpControl1": "Ils doivent se connecter avec l'authentification multifacteur",
+ "helpControl2": "Ils doivent être sur un appareil Intune ou joint au domaine",
+ "helpControlsTitle": "Contrôle ",
+ "helpIntroText": "L’accès conditionnel vous donne la possibilité d’appliquer des exigences d’accès quand des conditions spécifiques se produisent. Examinons quelques exemples",
+ "helpIntroTitle": "Qu'est-ce que l'accès conditionnel ?",
+ "helpLearnMoreText": "Vous voulez en savoir plus sur l'accès conditionnel ?",
+ "helpStartStep1": "Créer votre première stratégie en cliquant sur « + Nouvelle stratégie »",
+ "helpStartStep2": "Spécifier les conditions et contrôles de la stratégie",
+ "helpStartStep3": "Quand vous avez terminé, n'oubliez pas d'activer la stratégie et de la créer",
+ "helpStartTitle": "Démarrer",
+ "highRisk": "Haute",
+ "includeAndExcludeAppsTextFormat": "Inclure : {0}. Exclure : {1}.",
+ "includeAppsTextFormat": "Inclure : {0}.",
+ "includeUnknownAreasCheckboxInfoBalloonContent": "Les zones inconnues sont des adresses IP qui ne peuvent pas être mappées à un pays ou une région.",
+ "includeUnknownAreasCheckboxLabel": "Inclure les zones inconnues",
+ "infoCommandLabel": "Informations",
+ "invalidCertDuration": "Durée de certificat non valide",
+ "invalidIpAddress": "La valeur doit être une adresse IP valide",
+ "invalidUriErrorMsg": "Entrez un URI valide. Par exemple uri:contoso.com:acr",
+ "iosDisplayName": "iOS",
+ "linuxDisplayName": "Linux",
+ "loadAll": "Charger tout",
+ "loading": "Chargement...",
+ "locationConfigureNamedLocationsText": "Configurer tous les emplacements approuvés",
+ "locationConfigureNamedLocationsUri": "{0}/usermanagement/mfasettings.aspx?tenantid={1}&culture={2}",
+ "locationNameTooLongError": "Le nom de l'emplacement est trop long. Il doit comprendre 256 caractères maximum",
+ "locationSelectionBladeExcludeDescription": "Sélectionner les emplacements à exclure de la stratégie",
+ "locationSelectionBladeIncludeDescription": "Sélectionnez les emplacements à inclure dans cette stratégie",
+ "locationsAllLocationsLabel": "Tous les emplacements",
+ "locationsAllNamedLocationsLabel": "Toutes les adresses IP approuvées",
+ "locationsAllPrivateLinksLabel": "Tous les liens privés dans mon locataire",
+ "locationsIncludeExcludeLabel": "{0} et exclure toutes les adresses IP approuvées",
+ "locationsSelectedPrivateLinksLabel": "Liaisons privées sélectionnées",
+ "lowRisk": "Bas",
+ "macOsDisplayName": "Mac OS",
+ "managePoliciesLicenseText": "Pour gérer les stratégies d'accès conditionnel, votre organisation doit avoir Azure AD Premium P1 ou P2.",
+ "markAsTrustedCheckboxInfoBalloonContent": "La connexion à partir d'un emplacement approuvé réduit le risque de connexion d'un utilisateur. Marquez uniquement cet emplacement comme approuvé si vous savez que les plages d'adresses IP entrées sont établies et crédibles dans votre organisation.",
+ "markAsTrustedCheckboxLabel": "Marquer comme emplacement approuvé",
+ "mediumRisk": "Moyen",
+ "memberSelectionCommandRemove": "Supprimer",
+ "menuItemClaimProviderControls": "Contrôles personnalisés (préversion)",
+ "menuItemClassicPolicies": "Stratégies classiques",
+ "menuItemInsightsAndReporting": "Insights et rapports",
+ "menuItemManage": "Gérer",
+ "menuItemNamedLocationsPreview": "Emplacements nommés (préversion)",
+ "menuItemNamedNetworks": "Emplacements nommés",
+ "menuItemPolicies": "Stratégies",
+ "menuItemTermsOfUse": "Conditions d'utilisation",
+ "modifiedTimeLabel": "Heure de modification",
+ "monday": "Lundi",
+ "nameLabel": "Nom",
+ "namedLocationCountryInfoBanner": "Seules les adresses IPv4 sont mappées à des pays/régions. Les adresses IPv6 sont incluses dans des pays/régions inconnu(e)s.",
+ "namedLocationTypeCountry": "Pays ou régions",
+ "namedLocationTypeLabel": "Définir l'emplacement à l'aide de :",
+ "namedLocationUpsellBanner": "Cette vue est déconseillée. Accédez à la nouvelle vue améliorée vue « Emplacements nommés ».",
+ "namedLocationsHelpDescription": "Les emplacements nommés sont utilisés par les rapports de sécurité Azure AD afin de réduire les faux positifs et par les stratégies d'accès conditionnel Azure AD.\n[En savoir plus][1]\n[1] : https://aka.ms/namedlocationupdate",
+ "namedNetworkAddIpRanges": "Ajouter une nouvelle plage IP (ex : 40.77.182.32/27)",
+ "namedNetworkCountryNeeded": "Vous devez sélectionner au moins un pays",
+ "namedNetworkDeleteCommand": "Supprimer",
+ "namedNetworkDeleteDescription": "Êtes-vous sûr de vouloir supprimer « {0} » ? Cette action ne peut pas être annulée.",
+ "namedNetworkDeleteTitle": "Êtes-vous sûr ?",
+ "namedNetworkDownloadIpRange": "Télécharger",
+ "namedNetworkInvalidRange": "La valeur doit être une plage d'adresses IP valide.",
+ "namedNetworkIpRangeNeeded": "Vous devez avoir au moins une plage d'adresses IP valide.",
+ "namedNetworkIpRangesDescriptionContent": "Configurer les plages d'adresses IP de votre organisation",
+ "namedNetworkIpRangesTab": "Plages d'adresses IP",
+ "namedNetworkListAdd": "Nouvel emplacement",
+ "namedNetworkListConfigureTrustedIps": "Configurer des adresses IP approuvées MFA",
+ "namedNetworkNameDescription": "Exemple : « Bureau de Paris »",
+ "namedNetworkNameInvalid": "Le nom fourni n'est pas valide.",
+ "namedNetworkNameRequired": "Vous devez fournir un nom pour cet emplacement.",
+ "namedNetworkNoIpRanges": "Aucune plage d'adresses IP",
+ "namedNetworkNotificationCreateDescription": "Création de l'emplacement nommé « {0} »",
+ "namedNetworkNotificationCreateFailedDescription": "La création de l'emplacement « {0} » a échoué. Réessayez plus tard.",
+ "namedNetworkNotificationCreateFailedTitle": "Impossible de créer l'emplacement",
+ "namedNetworkNotificationCreateSuccessDescription": "Emplacement nommé « {0} » créé",
+ "namedNetworkNotificationCreateSuccessTitle": "« {0} » créé",
+ "namedNetworkNotificationCreateTitle": "Création de « {0} »",
+ "namedNetworkNotificationDeleteDescription": "Suppression de l'emplacement nommé « {0} »",
+ "namedNetworkNotificationDeleteFailedDescription": "La suppression de l'emplacement « {0} » a échoué. Réessayez plus tard.",
+ "namedNetworkNotificationDeleteFailedTitle": "Impossible de supprimer l'emplacement",
+ "namedNetworkNotificationDeleteSuccessDescription": "Emplacement nommé « {0} » supprimé",
+ "namedNetworkNotificationDeleteSuccessTitle": "« {0} » supprimé",
+ "namedNetworkNotificationDeleteTitle": "Suppression de « {0} »",
+ "namedNetworkNotificationUpdateDescription": "Mise à jour de l'emplacement nommé « {0} »",
+ "namedNetworkNotificationUpdateFailedDescription": "La mise à jour de l'emplacement « {0} » a échoué. Réessayez plus tard.",
+ "namedNetworkNotificationUpdateFailedTitle": "Impossible de mettre à jour l'emplacement",
+ "namedNetworkNotificationUpdateSuccessDescription": "Emplacement nommé « {0} » mis à jour",
+ "namedNetworkNotificationUpdateSuccessTitle": "« {0} » mis à jour",
+ "namedNetworkNotificationUpdateTitle": "Mise à jour de « {0} »",
+ "namedNetworkSearchPlaceholder": "Recherchez des emplacements.",
+ "namedNetworkUploadFailedDescription": "Une erreur s'est produite lors de l'analyse du fichier fourni. Veillez à charger un fichier en texte brut avec chaque ligne au format CIDR.",
+ "namedNetworkUploadFailedTitle": "Échec de l'analyse de '{0}'",
+ "namedNetworkUploadInProgressDescription": "Tentative d'analyse des valeurs CIDR valides à partir de « {0} ».",
+ "namedNetworkUploadInProgressTitle": "Analyse de « {0} »",
+ "namedNetworkUploadInvalidDescription": "« {0} » est trop volumineux ou son format n'est pas valide.",
+ "namedNetworkUploadInvalidTitle": "« {0} » non valide",
+ "namedNetworkUploadIpRange": "Charger",
+ "namedNetworkUploadSuccessDescription": "{0} lignes analysées. {1} lignes au format incorrect. {2} ignorées.",
+ "namedNetworkUploadSuccessTitle": "Fin de l'analyse de « {0} »",
+ "namedNetworksAdd": "Nouvel emplacement nommé",
+ "namedNetworksConditionHelpDescription": "Contrôlez l'accès des utilisateurs en fonction de leur emplacement physique.\n[En savoir plus][1]\n[1] : http://aka.ms/ux_ca_locationcondition",
+ "namedNetworksExcludeLabel": "{0} et {1} exclus",
+ "namedNetworksHelpDescription": "Les emplacements nommés sont utilisés par les rapports de sécurité Azure AD afin de réduire les faux positifs et par les stratégies d'accès conditionnel Azure AD.\n[En savoir plus][1]\n[1] : https://aka.ms/ux_ca_namedlocations",
+ "namedNetworksIncludeLabel": "{0} inclus",
+ "namedNetworksNone": "Aucun emplacement nommé trouvé.",
+ "namedNetworksTitle": "Configurer les emplacements",
+ "namednetworkExceedingSizeErrorBladeTitle": "Détails de l'erreur",
+ "namednetworkExceedingSizeErrorDetailText": "Cliquez ici pour plus de détails.",
+ "namednetworkExceedingSizeErrorMessage": "Vous avez dépassé la quantité de stockage maximale autorisée pour les emplacements nommés. Réessayez avec une liste plus courte. Cliquez ici pour afficher plus de détails.",
+ "needMfaSecondary": "« Exiger l’authentification multifacteur » doit être sélectionné lorsque « Fréquence de connexion à chaque fois » est sélectionné avec « Méthodes d’authentification secondaires uniquement »",
+ "newCertName": "Nouveau certificat",
+ "noAttributePermissionsError": "Privilèges insuffisants pour créer ou mettre à jour la stratégie. Le rôle de lecteur de définition d’attribut est obligatoire pour ajouter/modifier des filtres dynamiques.",
+ "noPolicyRowMessage": "Aucune stratégie",
+ "noSPSelected": "Aucun principal du service sélectionné",
+ "noUpdatePermissionMessage": "Vous n'êtes pas autorisé à mettre à jour ces paramètres. Veuillez contacter votre administrateur général pour obtenir l'accès.",
+ "noUserSelected": "Aucun utilisateur sélectionné",
+ "noneRisk": "Aucun risque",
+ "office365Description": "Ces applications incluent Microsoft Flow, Microsoft Forms, Microsoft Teams, Office 365 Exchange Online, Office 365 SharePoint Online, Office 365 Yammer et d'autres.",
+ "office365InfoBox": "Au moins l'une des applications sélectionnées fait partie d'Office 365. Nous vous recommandons de définir la stratégie sur l'application Office 365 à la place.",
+ "oneUserSelected": "1 utilisateur sélectionné",
+ "onlyGlobalAdminsCanSaveThisPolicyConfig": "Seuls les administrateurs généraux peuvent enregistrer cette stratégie.",
+ "or": "{0} OU {1}",
+ "pickerDoneCommand": "Terminé",
+ "policiesBladeAdPremiumUpsellBannerText": "Créez vos propres stratégies et ciblez des conditions spécifiques telles que Applications cloud, Connexion à risque et Plateformes d'appareils avec Azure AD Premium",
+ "policiesBladeTitle": "Stratégies",
+ "policiesBladeTitleWithAppName": "Stratégies : {0}",
+ "policiesDisabledBannerText": "La création et la modification des stratégies sont interdites pour les applications avec un attribut d'authentification lié.",
+ "policiesHitMaxLimitStatusBarMessage": "Vous avez atteint le nombre maximal de stratégies pour ce locataire. Supprimez des stratégies avant d'en créer d'autres.",
+ "policyAssignmentsSection": "Affectations",
+ "policyBlockAllInfoBox": "La stratégie configurée bloque tous les utilisateurs. Elle n’est donc pas prise en charge. Passez en revue les affectations et les contrôles. Excluez l’utilisateur actuel {0}, si vous souhaitez enregistrer cette stratégie.",
+ "policyCloudAppsDisplayTextAllApp": "Toutes les applications",
+ "policyCloudAppsLabel": "Applications cloud",
+ "policyConditionClientAppDescription": "Logiciel dont l'utilisateur se sert pour accéder à l'application cloud. Par exemple « Navigateur »",
+ "policyConditionClientAppV2Description": "Logiciel dont l'utilisateur se sert pour accéder à l'application cloud. Par exemple « Navigateur »",
+ "policyConditionDevicePlatform": "Plateformes d’appareils",
+ "policyConditionDevicePlatformDescription": "Plateforme sur laquelle l'utilisateur se connecte. Par exemple iOS",
+ "policyConditionLocation": "Emplacements",
+ "policyConditionLocationDescription": "Emplacement (déterminé à l'aide de la plage d'adresses IP) à partir duquel l'utilisateur se connecte",
+ "policyConditionSigninRisk": "Risque de connexion",
+ "policyConditionSigninRiskDescription": "Probabilité pour que la connexion provienne d'une autre personne que l'utilisateur. Le niveau de risque peut être élevé, moyen ou faible. Nécessite une licence Azure AD Premium 2.",
+ "policyConditionUserRisk": "Risque de l’utilisateur",
+ "policyConditionUserRiskDescription": "Configurez les niveaux de risque utilisateur nécessaires à l’application de la stratégie",
+ "policyConditioniClientApp": "Applications clientes",
+ "policyConditioniClientAppV2": "Applications clientes (préversion)",
+ "policyControlAllowAccessDisplayedName": "Accorder l'accès",
+ "policyControlAuthenticationStrengthDisplayedName": "Exiger la force de l’authentification (préversion)",
+ "policyControlBladeTitle": "Octroyer",
+ "policyControlBlockAccessDisplayedName": "Bloquer l'accès",
+ "policyControlCompliantDeviceDisplayedName": "Exiger que l'appareil soit marqué comme conforme",
+ "policyControlContentDescription": "Contrôlez l’application de l’accès pour bloquer ou accorder l’accès.",
+ "policyControlInfoBallonText": "Bloquer l'accès ou sélectionner des exigences supplémentaires à satisfaire avant d'autoriser l'accès",
+ "policyControlMfaChallengeDisplayedName": "Exiger une authentification multifacteur",
+ "policyControlRequireCompliantAppDisplayedName": "Exiger une stratégie de protection des applications",
+ "policyControlRequireDomainJoinedDisplayedName": "Exiger un appareil joint Azure AD hybride",
+ "policyControlRequireMamDisplayedName": "Demander une application cliente approuvée",
+ "policyControlRequiredPasswordChangeDisplayedName": "Nécessite une modification du mot de passe",
+ "policyControlSelectAuthStrength": "Exiger la force de l’authentification",
+ "policyControlsNoControlsSelected": "0 contrôles sélectionnés",
+ "policyControlsSection": "Contrôles d'accès",
+ "policyCreatBladeTitle": "Nouveau",
+ "policyCreateButton": "Créer",
+ "policyCreateFailedMessage": "Erreur : {0}",
+ "policyCreateFailedTitle": "Échec de la création de « {0} »",
+ "policyCreateInProgressTitle": "Création de « {0} »",
+ "policyCreateSuccessMessage": "« {0} » créée. La stratégie sera activée dans quelques minutes si vous avez défini « Activer la stratégie » sur « Activé ».",
+ "policyCreateSuccessTitle": "« {0} » créée",
+ "policyDeleteConfirmation": "Êtes-vous sûr de vouloir supprimer « {0} » ? Cette action ne peut pas être annulée.",
+ "policyDeleteFailTitle": "Échec de la suppression de « {0} »",
+ "policyDeleteInProgressTitle": "Suppression de « {0} »",
+ "policyDeleteSuccessTitle": "« {0} » correctement supprimé",
+ "policyEnforceLabel": "Activer une stratégie",
+ "policyErrorCannotSetSigninRisk": "Vous n’êtes pas autorisé à enregistrer une stratégie avec une condition de risque de connexion.",
+ "policyErrorNoPermission": "Vous n'avez pas l'autorisation d'enregistrer la stratégie. Contactez votre administrateur général.",
+ "policyErrorUnknown": "Une erreur s'est produite. Réessayez plus tard.",
+ "policyFallbackWarningMessage": "Échec de la création ou de la mise à jour de « {0} » avec MS Graph, ce qui se traduit par un repli sur AD Graph. Examinez le scénario suivant, car il existe probablement un bogue lors de l’appel du point de terminaison de stratégie pour MS Graph avec une condition incompatible.",
+ "policyFallbackWarningTitle": "Création ou mise à jour de « {0} » partiellement réussie",
+ "policyNameCannotBeEmpty": "Le nom de stratégie ne peut pas être vide.",
+ "policyNameDevice": "Stratégie de l'appareil",
+ "policyNameFormat": "[{0}] {1}",
+ "policyNameMam": "Stratégie de gestion des applications mobiles",
+ "policyNameMfaLocation": "Stratégie MFA et emplacement",
+ "policyNamePlaceholderText": "Exemple : « stratégie d'application de conformité d'appareil »",
+ "policyNameTooLongError": "Le nom de la stratégie est trop long. 256 caractères maximum",
+ "policyOff": "Désactivé",
+ "policyOn": "Activé",
+ "policyReportOnly": "Rapport uniquement",
+ "policyReviewSection": "Vérifier",
+ "policySaveButton": "Enregistrer",
+ "policyStatusIconDescription": "La stratégie est activée",
+ "policyStatusIconEnabled": "Icône d'état activée",
+ "policyTemplateName1": "Utilisez les restrictions appliquées par l'application pour l'accès au navigateur {0}",
+ "policyTemplateName2": "Autoriser l'accès à {0} seulement sur les appareils managés",
+ "policyTemplateName3": "Stratégie migrée à partir des paramètres d’évaluation de l’accès continu",
+ "policyTriggerRiskSpecific": "Sélectionner un niveau de risque spécifique",
+ "policyTriggersInfoBalloonText": "Conditions qui définissent à quel moment la stratégie s'applique. Par exemple « emplacement »",
+ "policyTriggersNoConditionsSelected": "0 conditions sélectionnées",
+ "policyTriggersSelectorLabel": "Conditions",
+ "policyUpdateFailedMessage": "Erreur : {0}",
+ "policyUpdateFailedTitle": "Échec de la mise à jour de {0}",
+ "policyUpdateInProgressTitle": "Mise à jour de {0}",
+ "policyUpdateSuccessMessage": "{0} correctement mise à jour. La stratégie sera activée dans quelques minutes si vous avez défini « Activer la stratégie » sur « Activé ».",
+ "policyUpdateSuccessTitle": "{0} mis à jour avec succès",
+ "primaryCol": "Principal",
+ "privateLinkLabel": "Lien privé de Azure AD",
+ "reportOnlyInfoBox": "Mode rapport uniquement : les stratégies sont évaluées et consignées lors de la connexion, mais n’ont pas d’impact sur les utilisateurs.",
+ "requireAllControlsText": "Demander tous les contrôles sélectionnés",
+ "requireCompliantDevice": "Exiger un appareil conforme",
+ "requireDomainJoined": "Exiger un appareil joint au domaine",
+ "requireGrantReauth": "Le contrôle de session « Fréquence de connexion à chaque fois » nécessite un contrôle d’octroi « exiger une authentification multifacteur » ou « exiger une modification du mot de passe » lorsque « Toutes les applications cloud » est sélectionné",
+ "requireMFA": "Exiger l'authentification multifacteur",
+ "requireMfaReauth": "Le contrôle de session « Fréquence de connexion à chaque fois » requiert le contrôle d’octroi « exiger l’authentification multifacteur » pour « risque de connexion »",
+ "requireOneControlText": "Demander un des contrôles sélectionnés",
+ "requirePasswordChangeReauth": "Le contrôle de session « Fréquence de connexion à chaque fois » nécessite le contrôle d’octroi « exiger une modification du mot de passe » pour « risque utilisateur »",
+ "requireRiskReauth": "Le contrôle de session « Fréquence de connexion à chaque fois » requiert le contrôle de session « Risque utilisateur » ou « Risque de connexion » lorsque « toutes les applications cloud » sont sélectionnées.",
+ "resetFilters": "Réinitialiser les filtres",
+ "sPRequired": "Le principal du service est obligatoire",
+ "sPSelectorInfoBalloon": "Utilisateur ou principal du service que vous souhaitez tester",
+ "saturday": "Samedi",
+ "searchTextTooLongError": "Le texte de la recherche est trop long. Maximum 256 caractères",
+ "securityDefaultsPolicyName": "Paramètres de sécurité par défaut",
+ "securityDefaultsTextMessage": "Les paramètres de sécurité par défaut doivent être désactivés pour activer la stratégie d’accès conditionnel.",
+ "securityDefaultsWarningMessage": "Il semble que vous êtes sur le point de gérer les configurations de sécurité de votre organisation. Excellent ! Vous devez d’abord désactiver les paramètres de sécurité par défaut avant d’activer une stratégie d’accès conditionnel.",
+ "selectDevicePlatforms": "Sélectionner des plateformes d'appareil",
+ "selectNamedNetworksSubtitle": "",
+ "selectNamedNetworksTitle": "Sélectionner les emplacements",
+ "selectedSP": "Principal du service sélectionné",
+ "servicePrincipalDataGridAria": "Liste des principaux du service disponibles",
+ "servicePrincipalDropDownLabel": "À quoi cette stratégie s’applique-t-elle ?",
+ "servicePrincipalInfoBox": "Certaines conditions ne sont pas disponibles en raison de la sélection de « {0} » dans l’affectation de la stratégie",
+ "servicePrincipalRadioAll": "Tous les principaux du service détenus",
+ "servicePrincipalRadioSelect": "Sélectionner des principaux du service",
+ "servicePrincipalSelectionsAria": "Grille des principaux du service sélectionnés",
+ "servicePrincipalSelectorAria": "Liste des principaux du service choisis",
+ "servicePrincipalSelectorMultiple": "{0} principaux du service sélectionnés",
+ "servicePrincipalSelectorSingle": "1 principal du service sélectionné",
+ "servicePrincipalSpecificInc": "Principaux du service spécifiques inclus",
+ "servicePrincipals": "Principaux du service",
+ "sessionControlBladeTitle": "Session",
+ "sessionControlDescriptionContent": "Contrôlez l’accès en fonction des contrôles de session pour activer des expériences limitées au sein d’applications cloud spécifiques.",
+ "sessionControlDisableInfo": "Ce contrôle fonctionne uniquement avec les applications prises en charge. Office 365, Exchange Online et SharePoint Online sont actuellement les seules applications cloud qui prennent en charge les restrictions appliquées par l’application. Cliquez ici pour en savoir plus.",
+ "sessionControlInfoBallonText": "Les contrôles de session permettent une expérience limitée au sein d'une application cloud.",
+ "sessionControls": "Contrôles de session",
+ "sessionControlsAppEnforcedLabel": "Utiliser les restrictions appliquées par l'application",
+ "sessionControlsCasLabel": "Utiliser le contrôle d'application par accès conditionnel",
+ "sessionControlsSecureSignInLabel": "Exiger une liaison de jeton",
+ "sharepointAppName": "SharePoint",
+ "signinRiskDescription": "Sélectionner le niveau de risque de connexion auquel cette stratégie s'applique",
+ "signinRiskInclude": "{0} inclus",
+ "signinRiskReauth": "La condition « Risque de connexion » doit être sélectionnée quand le contrôle de session « Exiger l’authentification multifacteur » et « Fréquence de connexion à chaque fois » sont sélectionnés",
+ "signinRiskTriggerDescriptionContent": "Sélectionner le niveau de risque de connexion",
+ "singleTenantServicePrincipalInfoBallonText": "La stratégie s’applique uniquement aux principaux de service à locataire unique appartenant à votre organisation. Cliquez ici pour en savoir plus ",
+ "specificSigninRiskLevelsOption": "Sélectionner des niveaux de risque de connexion spécifiques",
+ "specificUsersExcluded": "utilisateurs spécifiques exclus",
+ "specificUsersIncluded": "Utilisateurs spécifiques inclus",
+ "specificUsersIncludedAndExcluded": "Utilisateurs spécifiques exclus et inclus",
+ "startDatePickerLabel": "Démarrages",
+ "startFreeTrial": "Démarrer un essai gratuit",
+ "startTimePickerLabel": "Heure de début",
+ "sunday": "Dimanche",
+ "testButton": "What If",
+ "thumbprintCol": "Empreinte numérique",
+ "thursday": "Jeudi",
+ "timeConditionAllTimesLabel": "À tout moment",
+ "timeConditionIntroText": "Configurer l'heure à laquelle cette stratégie s'applique",
+ "timeConditionSelectorInfoBallonContent": "Quand l'utilisateur se connecte. Par exemple, le « mercredi de 9 h à 17 h »",
+ "timeConditionSelectorLabel": "Heure (préversion)",
+ "timeConditionSpecificLabel": "Heures spécifiques",
+ "timeSelectorAllTimesText": "À tout moment",
+ "timeSelectorSpecificTimesText": "Heures spécifiques configurées",
+ "timeZoneDropdownInfoBalloonContent": "Sélectionnez un fuseau horaire qui définit l'intervalle de temps. Cette stratégie s'applique aux utilisateurs de tous les fuseaux horaires. Par exemple, le « mercredi de 9 h à 17 h » pour un utilisateur correspond au « mercredi de 10 h à 18 h » pour un utilisateur d'un autre fuseau horaire.",
+ "timeZoneDropdownLabel": "Fuseau horaire",
+ "timeZoneDropdownPlaceholderText": "Sélectionner un fuseau horaire",
+ "tooManyPoliciesDescription": "Seules les 50 premières stratégies sont affichées. Cliquez ici pour afficher toutes les stratégies.",
+ "tooManyPoliciesTitle": "Plus de 50 stratégies trouvées",
+ "trustedLocationStatusIconDescription": "L'emplacement est approuvé",
+ "trustedLocationStatusIconEnabled": "Icône d'état Approuvé",
+ "tuesday": "Mardi",
+ "uploadInBadState": "Impossible de charger le fichier spécifié.",
+ "upsellAppsDescription": "Exigez l'authentification multifacteur pour les applications sensibles tout le temps ou seulement à partir de l'extérieur du réseau de société.",
+ "upsellAppsTitle": "Sécuriser les applications",
+ "upsellBannerText": "Obtenir une version d’évaluation Premium gratuite pour utiliser cette fonctionnalité",
+ "upsellDataDescription": "Exigez que l'appareil soit marqué comme conforme ou joint Azure AD hybride pour autoriser l'accès aux ressources de l'entreprise.",
+ "upsellDataTitle": "Sécuriser les données",
+ "upsellDescription": "L’accès conditionnel fournit le contrôle et la protection dont vous avez besoin pour protéger les données de votre entreprise, tout en offrant à vos utilisateurs une expérience qui leur permet de mieux travailler à partir de n’importe quel appareil. Par exemple, vous pouvez limiter l’accès depuis l’extérieur du réseau de société ou restreindre l’accès aux appareils qui répondent aux stratégies de conformité.",
+ "upsellRiskDescription": "Exigez l'authentification multifacteur pour les événements à risque détectés par le système Machine Learning de Microsoft.",
+ "upsellRiskTitle": "Protéger contre les risques",
+ "upsellTitle": "Accès conditionnel",
+ "upsellWhyTitle": "Pourquoi utiliser l'accès conditionnel ?",
+ "userAppNoneOption": "Aucun",
+ "userNamePlaceholderText": "Entrez le nom d'utilisateur.",
+ "userNotSetSeletorLabel": "0 utilisateurs et groupes sélectionnés",
+ "userOnlySelectionBladeExcludeDescription": "Sélectionner les utilisateurs à exclure de la stratégie",
+ "userOrGroupSelectionCountDiffBannerText": "{0} configuré(s) dans cette stratégie a/ont été supprimé(s) du répertoire, mais cela n'affecte pas les autres utilisateurs et groupes dans la stratégie. La prochaine fois que vous mettrez à jour la stratégie, les utilisateurs et/ou les groupes supprimés seront supprimés automatiquement.",
+ "userOrSPNotSetSelectorLabel": "0 utilisateurs ou identités de charge de travail sélectionnés",
+ "userOrSPSelectionBladeTitle": "Utilisateurs ou identités de charge de travail",
+ "userOrSPSelectorInfoBallonText": "Identités de l’annuaire auxquelles s’applique la stratégie, notamment les utilisateurs, les groupes et les principaux du service",
+ "userRequired": "Utilisateur requis",
+ "userRiskErrorBox": "La condition « Risque utilisateur » doit être sélectionnée lorsque l’option « Exiger la modification du mot de passe » est sélectionnée",
+ "userRiskReauth": "La condition « Risque utilisateur » et non « Risque de connexion » doit être sélectionnée lorsque le contrôle de session « Exiger une modification du mot de passe » et « Fréquence de connexion à chaque fois » sont sélectionnés",
+ "userSPRequired": "Utilisateur ou principal de service requis",
+ "userSPSelectorTitle": "Identité de l’utilisateur ou de la charge de travail",
+ "userSelectionBladeAllUsersAndGroups": "Tous les utilisateurs et groupes",
+ "userSelectionBladeExcludeDescription": "Sélectionner les utilisateurs et groupes à exclure de la stratégie",
+ "userSelectionBladeExcludeTabTitle": "Exclure",
+ "userSelectionBladeExcludedSelectorTitle": "Sélectionner les utilisateurs exclus",
+ "userSelectionBladeIncludeDescription": "Sélectionner les utilisateurs auxquels cette stratégie s’applique",
+ "userSelectionBladeIncludeTabTitle": "Inclure",
+ "userSelectionBladeIncludedSelectorTitle": "Sélectionner",
+ "userSelectionBladeSelectUsers": "Sélectionner les utilisateurs",
+ "userSelectionBladeSelectedUsers": "Sélectionner des utilisateurs et des groupes",
+ "userSelectionBladeTitle": "Utilisateurs et groupes",
+ "userSelectorBladeTitle": "Utilisateurs",
+ "userSelectorExcluded": "{0} exclu",
+ "userSelectorGroupPlural": "{0} groupes",
+ "userSelectorGroupSingular": "1 groupe",
+ "userSelectorIncluded": "{0} inclus",
+ "userSelectorInfoBallonText": "Utilisateurs et groupes du répertoire auquel la stratégie s'applique. Par exemple « groupe pilote »",
+ "userSelectorSelected": "{0} sélectionné(s)",
+ "userSelectorTitle": "Utilisateur",
+ "userSelectorUserAndGroup": "{0}, {1}",
+ "userSelectorUserPlural": "{0} utilisateurs",
+ "userSelectorUserSingular": "1 utilisateur",
+ "userSelectorWithExclusion": "{0} et {1}",
+ "usersGroupsLabel": "Utilisateurs et groupes",
+ "viewApprovedAppsText": "Voir la liste des applications clientes approuvées",
+ "viewCompliantAppsText": "Voir la liste des applications clientes protégées par une stratégie",
+ "vpnBladeTitle": "Connectivité VPN",
+ "vpnCertCreateFailedMessage": "Erreur : {0}",
+ "vpnCertCreateFailedTitle": "Impossible de créer {0}",
+ "vpnCertCreateInProgressTitle": "Création de {0}",
+ "vpnCertCreateSuccessMessage": "{0} créé avec succès.",
+ "vpnCertCreateSuccessTitle": "{0} créé avec succès",
+ "vpnCertNoRowsMessage": "Aucun certificat VPN n'a été trouvé",
+ "vpnCertUpdateFailedMessage": "Erreur : {0}",
+ "vpnCertUpdateFailedTitle": "Échec de la mise à jour de {0}",
+ "vpnCertUpdateInProgressTitle": "Mise à jour de {0}",
+ "vpnCertUpdateSuccessMessage": "{0} mis à jour avec succès.",
+ "vpnCertUpdateSuccessTitle": "{0} mis à jour avec succès",
+ "vpnFeatureInfo": "Pour plus d’informations sur la connectivité VPN et l'accès conditionnel, cliquez ici.",
+ "vpnFeatureWarning": "Une fois qu'un certificat VPN a été créé dans le portail Azure, Azure AD commence à l'utiliser immédiatement pour émettre des certificats à courte durée vers le client VPN. Il est essentiel que le certificat VPN soit immédiatement déployé sur le serveur VPN pour éviter tout problème de validation des informations d'identification du client VPN.",
+ "vpnMenuText": "Connectivité VPN",
+ "vpncertDropdownDefaultOption": "Durée",
+ "vpncertDropdownInfoBalloonContent": "Sélectionnez la durée du certificat que vous souhaitez créer",
+ "vpncertDropdownLabel": "Sélectionner une durée",
+ "vpncertDropdownOneyearOption": "1 année",
+ "vpncertDropdownThreeyearOption": "3 années",
+ "vpncertDropdownTwoyearOption": "2 années",
+ "wednesday": "Mercredi",
+ "whatIfAppEnforcedControl": "Utiliser les restrictions appliquées par l'application",
+ "whatIfBladeDescription": "Testez l'impact de l'accès conditionnel sur un utilisateur lorsqu'il se connecte sous certaines conditions.",
+ "whatIfBladeTitle": "What If",
+ "whatIfClassicPoliciesWarning": "Les stratégies classiques ne sont pas évaluées par cet outil.",
+ "whatIfClientAppInfo": "Application cliente à partir de laquelle l'utilisateur se connecte. Par exemple, « navigateur ».",
+ "whatIfCountry": "Pays",
+ "whatIfCountryInfo": "Pays d'où l'utilisateur se connecte.",
+ "whatIfDevicePlatformInfo": "Plateforme d'appareil depuis laquelle l'utilisateur se connecte.",
+ "whatIfDeviceStateInfo": "État de l’appareil depuis lequel l’utilisateur se connecte",
+ "whatIfEnterIpAddress": "Entrer l'adresse IP (par ex. : 40.77.182.32)",
+ "whatIfErrorInvalidIpAddress": "Une adresse IP non valide a été spécifiée.",
+ "whatIfEvaResultApplication": "Applications cloud",
+ "whatIfEvaResultClientApps": "Application cliente",
+ "whatIfEvaResultDevicePlatform": "Plateforme de l'appareil",
+ "whatIfEvaResultEmptyPolicy": "Stratégie vide",
+ "whatIfEvaResultInvalidCondition": "Condition non valide",
+ "whatIfEvaResultInvalidPolicy": "Stratégie non valide",
+ "whatIfEvaResultLocation": "Emplacement",
+ "whatIfEvaResultNotEnoughInformation": "Informations insuffisantes",
+ "whatIfEvaResultPolicyNotEnabled": "Stratégie non activée",
+ "whatIfEvaResultSignInRisk": "Risque de connexion",
+ "whatIfEvaResultUsers": "Utilisateurs et groupes",
+ "whatIfIpAddress": "Adresse IP",
+ "whatIfIpAddressInfo": "Adresse IP à partir de laquelle l'utilisateur se connecte.",
+ "whatIfIpCountryInfoBoxText": "Si vous utilisez l'adresse IP ou le pays, les deux champs sont nécessaires et doivent être correctement mappés ensemble.",
+ "whatIfPolicyAppliesTab": "Stratégies qui vont s'appliquer",
+ "whatIfPolicyDoesNotApplyTab": "Stratégies qui ne vont pas s'appliquer",
+ "whatIfReasons": "Raisons pour lesquelles cette stratégie ne va pas s'appliquer",
+ "whatIfSelectClientApp": "Sélectionner une application cliente...",
+ "whatIfSelectCountry": "Sélectionner un pays...",
+ "whatIfSelectDevicePlatform": "Sélectionner la plateforme d'appareil...",
+ "whatIfSelectPrivateLink": "Sélectionner un lien privé...",
+ "whatIfSelectServicePrincipalRisk": "Sélectionner le risque de principal de service...",
+ "whatIfSelectSignInRisk": "Sélectionner le risque de connexion...",
+ "whatIfSelectType": "Sélectionner le type d’identité",
+ "whatIfSelectUserRisk": "Sélectionner le risque utilisateur...",
+ "whatIfServicePrincipalRiskInfo": "Niveau de risque associé au principal du service",
+ "whatIfSignInRisk": "Risque de connexion",
+ "whatIfSignInRiskInfo": "Niveau de risque associé à la connexion",
+ "whatIfUnknownAreas": "Zones inconnues",
+ "whatIfUserPickerLabel": "Utilisateur sélectionné",
+ "whatIfUserPickerNoRowsLabel": "Aucun utilisateur ou principal de service sélectionné",
+ "whatIfUserRiskInfo": "Niveau de risque associé à l'utilisateur",
+ "whatIfUserSelectorInfo": "Utilisateur du répertoire que vous voulez tester",
+ "windows365InfoBox": "La sélection de Windows 365 va affecter les connexions aux PC Cloud et aux hôtes de session de bureau virtuel Azure. Cliquez ici pour en savoir plus.",
+ "windowsDisplayName": "Windows",
+ "windowsPhoneDisplayName": "Windows Phone",
+ "workloadIdentities": "Identités de charge de travail (préversion)",
+ "workloadIdentity": "Identité de la charge de travail"
+ },
+ "AppResources": {
+ "AppSettingsUx": {
+ "assignmentFilterColumnHeader": "Filtrer",
+ "assignmentFilterTypeColumnHeader": "Mode Filtrer",
+ "assignmentToast": "Notifications de l’utilisateur final",
+ "assignmentTypeTableHeader": "TYPE D’AFFECTATION",
+ "deadlineTimeColumnLabel": "Échéance de l’installation",
+ "deliveryOptimizationPriorityHeader": "Priorité d’optimisation de la distribution",
+ "groupTableHeader": "Groupe",
+ "installContextLabel": "Contexte d’installation",
+ "isRemovable": "Installer comme amovible",
+ "licenseTypeLabel": "Type de licence",
+ "modeTableHeader": "Mode Groupe",
+ "policySet": "Ensemble de stratégies",
+ "restartGracePeriodHeader": "Période de grâce de redémarrage",
+ "startTimeColumnLabel": "Disponibilité",
+ "tracks": "Suivis",
+ "uninstallOnRemoval": "Désinstaller lors de la suppression de l'appareil",
+ "updateMode": "Priorité de mise à jour",
+ "vPN": "VPN"
+ },
+ "AppType": {
+ "aADWebApp": "Application Web AAD",
+ "androidEnterpriseSystemApp": "Application système Android Enterprise",
+ "androidForWorkApp": "Application du store Google Play géré",
+ "androidLobApp": "Application métier Android",
+ "androidStoreApp": "Application de l'Android Store",
+ "builtInAndroid": "Application Android intégrée",
+ "builtInApp": "Application intégrée",
+ "builtInIos": "Application iOS intégrée",
+ "iosLobApp": "Application métier iOS",
+ "iosStoreApp": "Application de l'App Store iOS",
+ "iosVppApp": "Application du programme d'achat en volume (VPP) iOS",
+ "lineOfBusinessApp": "Application métier",
+ "macOSDmgApp": "macOS app (.DMG)",
+ "macOSEdgeApp": "Microsoft Edge (macOS)",
+ "macOSLobApp": "Application métier macOS",
+ "macOSMdatpApp": "Microsoft Defender ATP (macOS)",
+ "macOSOfficeSuiteApp": "Suite Office pour macOS",
+ "macOsVppApp": "Application du programme d'achat en volume macOS",
+ "managedAndroidLobApp": "Application métier Android gérée",
+ "managedAndroidStoreApp": "Application de l'Android Store gérée",
+ "managedGooglePlayApp": "Application du store Google Play géré",
+ "managedGooglePlayPrivateApp": "Application privée Google Play géré",
+ "managedGooglePlayWebApp": "Lien web à Google Play géré",
+ "managedIosLobApp": "Application métier iOS gérée",
+ "managedIosStoreApp": "Application de l'App Store iOS gérée",
+ "microsoftStoreForBusinessApp": "Application du Microsoft Store pour Entreprises",
+ "microsoftStoreForBusinessReleaseManagedApp": "Microsoft Store pour Entreprises",
+ "officeAddIn": "Complément Office",
+ "officeSuiteApp": "Applications Microsoft 365 (Windows 10 et versions ultérieures)",
+ "sharePointApp": "Application SharePoint",
+ "teamsApp": "Application Teams",
+ "webApp": "Lien web",
+ "windowsAppXLobApp": "Application métier appx Windows",
+ "windowsClassicApp": "Application Windows (Win32)",
+ "windowsEdgeApp": "Microsoft Edge (Windows 10 et versions ultérieures)",
+ "windowsMobileMsiLobApp": "Application métier MSI Windows",
+ "windowsPhone81AppXBundleLobApp": "Application métier appx Windows Phone 8.1",
+ "windowsPhone81AppXLobApp": "Application métier appx Windows Phone 8.1",
+ "windowsPhone81StoreApp": "Application du Windows Phone 8.1 Store",
+ "windowsPhoneXapLobApp": "Application métier XAP Windows Phone",
+ "windowsStoreApp": "Application de Microsoft Store",
+ "windowsUniversalAppXLobApp": "Application métier appx Windows Universal",
+ "windowsUniversalLobApp": "Application métier Windows universelle"
+ },
+ "AppTypePlatform": {
+ "android": "Android",
+ "ios": "iOS",
+ "macOs": "macOS",
+ "web": "Web",
+ "windows": "Windows"
+ },
+ "AssignmentAction": {
+ "exclude": "Exclu",
+ "include": "Inclus",
+ "includeAllDevicesVirtualGroup": "Inclus",
+ "includeAllUsersVirtualGroup": "Inclus"
+ },
+ "AssignmentToast": {
+ "hideAll": "Masquer toutes les notifications toast",
+ "showAll": "Afficher toutes les notifications toast",
+ "showReboot": "Afficher les notifications toast pour les redémarrages d'ordinateur"
+ },
+ "DeliveryOptimizationPriority": {
+ "backgroundNormal": "Arrière-plan",
+ "displayText": "Téléchargement de contenu dans {0}",
+ "foreground": "Premier plan",
+ "header": "Priorité d’optimisation de la distribution"
+ },
+ "DeviceRestartBehaviorOptions": {
+ "allow": "L'installation de l'application peut forcer le redémarrage de l'appareil",
+ "basedOnReturnCode": "Déterminer le comportement en fonction des codes de retour",
+ "force": "Intune force le redémarrage obligatoire de l'appareil",
+ "suppress": "Aucune action spécifique"
+ },
+ "FilterType": {
+ "exclude": "Exclure",
+ "include": "Inclure",
+ "none": "Aucun"
+ },
+ "InstallIntent": {
+ "available": "Disponible pour les appareils inscrits",
+ "availableWithoutEnrollment": "Disponible avec ou sans inscription",
+ "notApplicable": "Non applicable",
+ "required": "Obligatoire",
+ "uninstall": "Désinstaller"
+ },
+ "SettingType": {
+ "assignmentType": "Type d'attribution",
+ "deviceLicensing": "Type de licence",
+ "installContext": "Désinstaller lors de la suppression de l'appareil",
+ "toastSettings": "Notifications de l'utilisateur final",
+ "vpnConfiguration": "VPN"
+ },
+ "UpdateMode": {
+ "default": "Par défaut",
+ "postponed": "Différé",
+ "priority": "Haute priorité"
+ }
+ },
+ "WindowsEnrollment": {
+ "coManagementAuthorityDesc": "Configurer les paramètres de cogestion pour l’intégration Configuration Manager",
+ "coManagementAuthorityTitle": "Paramètres de cogestion ",
+ "deploymentProfiles": "Profils Windows AutoPilot Deployment",
+ "description": "Découvrez les sept différentes façons d'inscrire un PC Windows 10/11 dans Intune par les utilisateurs ou les administrateurs.",
+ "descriptionLabel": "Méthodes d’inscription Windows",
+ "enrollmentStatusPage": "Page d'état de l'inscription"
+ },
+ "Win32Program": {
+ "DeviceRestartBehaviorOptions": {
+ "allow": "L'installation de l'application peut forcer le redémarrage de l'appareil",
+ "basedOnReturnCode": "Déterminer le comportement en fonction des codes de retour",
+ "force": "Intune force le redémarrage obligatoire de l'appareil",
+ "suppress": "Aucune action spécifique"
+ },
+ "RunAsAccountOptions": {
+ "system": "Système",
+ "user": "Utilisateur"
+ },
+ "bladeTitle": "Programme",
+ "deviceRestartBehavior": "Comportement de redémarrage du périphérique",
+ "deviceRestartBehaviorTooltip": "Sélectionnez le comportement de redémarrage de l'appareil une fois l'application installée. Sélectionnez « Déterminer le comportement en fonction des codes de retour » pour redémarrer l'appareil en fonction des paramètres de configuration des codes de retour. Sélectionnez « Aucune action spécifique » pour supprimer les redémarrages de l'appareil durant l'installation des applications MSI. Sélectionnez « L'installation de l'application peut forcer le redémarrage de l'appareil » pour permettre l'installation de l'application sans supprimer les redémarrages. Sélectionnez « Intune force le redémarrage obligatoire de l'appareil » pour toujours redémarrer l'appareil après l'installation de l'application.",
+ "header": "Spécifiez les commandes pour installer et désinstaller cette application :",
+ "installCommand": "Commande d'installation",
+ "installCommandMaxLengthErrorMessage": "La commande d’installation ne peut pas dépasser la longueur maximale autorisée de 1024 caractères.",
+ "installCommandTooltip": "Ligne de commande d'installation complète pour installer cette application.",
+ "runAs32Bit": "Exécuter les commandes d'installation et de désinstallation dans un processus 32 bits sur des clients 64 bits",
+ "runAs32BitTooltip": "Sélectionnez 'Oui' pour installer et désinstaller l'application dans un processus 32 bits sur des clients 64 bits. Sélectionnez 'Non' (par défaut) pour installer et désinstaller l'application dans un processus 64 bits sur des clients 64 bits. Les clients 32 bits utilisent toujours un processus 32 bits.",
+ "runAsAccount": "Comportement à l'installation",
+ "runAsAccountTooltip": "Sélectionnez Système pour installer cette application pour tous les utilisateurs (si elle est prise en charge). Sélectionnez Utilisateur pour l'installer pour l'utilisateur connecté sur l'appareil. Pour les applications MSI à double objectif, tout changement empêche l'exécution des mises à jour et des désinstallations jusqu'à la restauration de la valeur appliquée à l'appareil au moment de l'installation d'origine.",
+ "selectorLabel": "Programme",
+ "uninstallCommand": "Commande de désinstallation",
+ "uninstallCommandTooltip": "Ligne de commande de désinstallation complète pour désinstaller cette application."
+ },
+ "CategoryDescription": {
+ "androidGeneralApplicationRestrictions": "Utilisez ces paramètres pour savoir quels utilisateurs installent des applications dont l'utilisation n'est pas approuvée dans votre entreprise. Sélectionnez le type de liste d'applications restreintes :
\r\n Applications interdites - Liste des applications pour lesquelles vous voulez être informé quand elles sont installées par les utilisateurs.
\r\n Applications approuvées - Liste des applications dont l'utilisation est approuvée dans votre entreprise. Quand les utilisateurs installent une application qui n'est pas dans cette liste, vous en êtes informé.
\r\n ",
+ "androidZebraMxZebraMx": "Configurez les appareils Zebra en chargeant un profil MX au format XML.",
+ "iosDeviceFeaturesAirprint": "Utilisez ces paramètres pour configurer la connexion automatique des appareils iOS aux imprimantes compatibles AirPrint sur votre réseau. Vous devrez indiquer l'adresse IP et le chemin de ressource de vos imprimantes.",
+ "iosDeviceFeaturesExtensibleSingleSignOn": "Configurez une extension d’application qui active l’authentification unique (SSO) pour les appareils exécutant iOS 13.0 ou version ultérieure.",
+ "iosDeviceFeaturesHomeScreenLayout": "Configurez la disposition du dock et des écrans d’accueil sur les appareils iOS. Certains appareils peuvent limiter le nombre d’éléments affichables.",
+ "iosDeviceFeaturesIOSWallpaper": "Affichez une image destinée à l’écran d’accueil et/ou l’écran de verrouillage des appareils iOS.\r\n Pour afficher une image unique dans chaque emplacement, créez un profil avec l’image de l’écran de verrouillage et un autre avec l’image de l’écran d’accueil.\r\n Affectez ensuite les deux profils à vos utilisateurs.\r\n
\r\n \r\n - Taille de fichier max. : 750 Ko
\r\n - Type de fichier : PNG, JPG ou JPEG
\r\n
\r\n ",
+ "iosDeviceFeaturesNotifications": "Spécifiez les paramètres de notification pour les applications. Prend en charge iOS 9.3 et ultérieur.",
+ "iosDeviceFeaturesSharedDevice": "Spécifiez le texte facultatif affiché sur l'écran verrouillé. Il est pris en charge sur iOS 9.3 et ultérieur. En savoir plus",
+ "iosGeneralApplicationRestrictions": "Utilisez ces paramètres pour savoir quels utilisateurs installent des applications dont l'utilisation n'est pas approuvée dans votre entreprise. Sélectionnez le type de liste d'applications restreintes :
\r\n Applications interdites - Liste des applications pour lesquelles vous voulez être informé quand elles sont installées par les utilisateurs.
\r\n Applications approuvées - Liste des applications dont l'utilisation est approuvée dans votre entreprise. Quand les utilisateurs installent une application qui n'est pas dans cette liste, vous en êtes informé.
\r\n ",
+ "iosGeneralApplicationVisibility": "Utilisez la liste des applications affichées pour spécifier les applications iOS que l'utilisateur peut afficher ou lancer. Utilisez la liste des applications masquées pour spécifier les applications iOS que l'utilisateur ne peut pas afficher ou lancer.",
+ "iosGeneralAutonomousSingleAppMode": "Les applications que vous ajoutez à cette liste et que vous affectez à un appareil peuvent verrouiller l'appareil pour qu'il exécute uniquement cette application au démarrage, ou verrouiller l'appareil quand une action spécifique est exécutée (par exemple, un test). Quand l'action est terminée, ou si vous annulez la restriction, l'appareil retourne à l'état normal.",
+ "iosGeneralKiosk": "Le mode kiosque verrouille plusieurs paramètres sur un appareil ou spécifie l'application unique que les utilisateurs peuvent exécuter sur un appareil. Ce mode est utile dans certains environnements, par exemple, un magasin où vous présentez un appareil sur lequel doit s'exécuter uniquement une application de démonstration.",
+ "macDeviceFeaturesAirprint": "Utilisez ces paramètres pour configurer la connexion automatique des appareils macOS aux imprimantes compatibles AirPrint sur votre réseau. Vous aurez besoin de l'adresse IP et du chemin de ressource de vos imprimantes.",
+ "macDeviceFeaturesAssociatedDomains": "Configurez les domaines associés pour qu’ils partagent les données et les informations d’identification de connexion entre les applications et sites web de votre organisation. Ce profil peut être appliqué aux appareils qui exécutent macOS 10.15 ou version ultérieure.",
+ "macDeviceFeaturesExtensibleSingleSignOn": "Configurez une extension d’application qui active l’authentification unique (SSO) pour les appareils qui exécutent macOS 10.15 ou version ultérieure.",
+ "macDeviceFeaturesLoginItems": "Choisissez les applications, les fichiers et les dossiers à ouvrir quand les utilisateurs se connectent à leurs appareils. Si vous ne voulez pas que les utilisateurs changent le mode d'ouverture des applications sélectionnées, vous pouvez masquer l'application dans la configuration utilisateur.",
+ "macDeviceFeaturesLoginWindow": "Configurez l'apparence de l'écran de connexion macOS et les fonctions disponibles pour les utilisateurs avant et après leur connexion.",
+ "macExtensionsKernelExtensions": "Utilisez ces paramètres pour configurer la stratégie d'extension du noyau sur les appareils macOS exécutant la version 10.13.2 ou ultérieure.",
+ "macGeneralDomains": "Les e-mails reçus ou envoyés par l'utilisateur qui ne correspondent pas aux domaines que vous spécifiez ici sont marqués comme non approuvés.",
+ "windows10EndpointProtectionApplicationGuard": "Pendant l'utilisation de Microsoft Edge, Microsoft Defender Application Guard protège votre environnement des sites qui n'ont pas été définis comme approuvés par votre organisation. Quand des utilisateurs visitent des sites non listés dans les limites de votre réseau isolé, les sites sont ouverts dans une session de navigation virtuelle dans Hyper-V. Les sites approuvés sont définis par une limite réseau, qui peut être configurée dans Configuration de l'appareil. Notez que cette fonctionnalité est disponible seulement pour les appareils exécutant Windows 10,64 bits ou une version ultérieure.",
+ "windows10EndpointProtectionCredentialGuard": "L'activation de Credential Guard active les paramètres obligatoires suivants :\r\n
\r\n \r\n - Activer la sécurité basée sur la virtualisation : active la sécurité basée sur la virtualisation (VBS) au prochain redémarrage. La sécurité basée sur la virtualisation utilise l'hyperviseur Windows pour prendre en charge les services de sécurité.
\r\n
\r\n - Démarrage sécurisé avec accès direct à la mémoire : active VBS avec le démarrage sécurisé et l'accès direct à la mémoire (DMA).
\r\n
\r\n ",
+ "windows10EndpointProtectionDeviceGuard": "Choisissez d'autres applications devant être auditées ou dont l'exécution peut être approuvée par Microsoft Defender Application Control. L'exécution des composants Windows et de toutes les applications du Windows Store est automatiquement approuvée.
\r\n Les applications ne sont pas bloquées quand elles s'exécutent en mode « Audit uniquement ». Le mode « Audit uniquement » journalise tous les événements dans les journaux du client local.\r\n ",
+ "windows10GeneralPrivacyPerApp": "Ajoutez des applications qui doivent avoir un comportement de confidentialité différent de celui défini dans « Confidentialité par défaut ».",
+ "windows10NetworkBoundaryNetworkBoundary": "La limite réseau correspond à la liste des ressources d'entreprise, comme le domaine hébergé dans le cloud et les plages d'adresses IP, accessibles aux ordinateurs du réseau d'entreprise. Définissez des limites réseau pour appliquer des stratégies visant à protéger les données dans ces emplacements.",
+ "windowsHealthMonitoring": "Configurez la stratégie de monitoring de l’intégrité de Windows.",
+ "windowsPhoneGeneralApplicationRestrictions": "Windows Phone peut empêcher les utilisateurs d'installer ou de lancer les applications spécifiées dans la liste des applications interdites ou celles non spécifiées dans la liste des applications approuvées. Toutes les applications gérées doivent être ajoutées à la liste approuvée."
+ },
"Inputs": {
"accountDomain": "Domaine du compte",
"accountDomainHint": "Exemple : contosodomain",
@@ -9962,6 +9858,7 @@
"displayNameLabel": "Nom",
"displayVersionHint": "Entrer la version de l’application",
"displayVersionLabel": "Version de l’application",
+ "displayVersionLengthCheck": "La longueur de la version d’affichage doit être de 130 caractères maximum",
"eBookCategoryNameLabel": "Nom par défaut",
"emailAccount": "Nom du compte e-mail",
"emailAccountHint": "par exemple, e-mail de l'entreprise",
@@ -10066,385 +9963,51 @@
"xmlFormatInvalid": "Le format de la stratégie XML n'est pas valide.",
"xmlTooLarge": "La taille d'entrée doit être inférieure à 1 Mo."
},
- "Tooltips": {
- "PolicySettings": {
- "TouchId1": {
- "android": "Sur Android, vous pouvez autoriser l'utilisation de l'identification par empreintes digitales au lieu d'un code confidentiel. Les utilisateurs sont invités à fournir leurs empreintes digitales lorsqu'ils accèdent à cette application avec leurs comptes professionnels.",
- "iOS": "Sur les appareils iOS/iPadOS, vous pouvez autoriser l’identification par empreinte digitale au lieu du code confidentiel. Les utilisateurs sont alors invités à fournir leur empreinte digitale quand ils accèdent à cette application avec leur compte professionnel.",
- "mac": "Sur les appareils Mac, vous pouvez autoriser une empreinte digitale à la place d'un code PIN pour s'identifier. Les utilisateurs sont alors invités à fournir leur empreinte digitale quand ils accèdent à cette application avec leur compte professionnel."
- },
- "appSharingFromLevel1": "Sélectionnez l'une des options suivantes pour spécifier les applications à partir desquelles cette application peut recevoir des données :",
- "appSharingFromLevel2": "{0} : Autoriser uniquement la réception de données de documents ou comptes d'organisation provenant d'autres applications gérées par stratégie",
- "appSharingFromLevel3": "{0} : Autoriser la réception de données de documents ou comptes d'organisation provenant de n'importe quelle application",
- "appSharingFromLevel4": "{0} : Ne pas autoriser la réception de données de documents ou comptes d'organisation provenant d'une autre application",
- "appSharingFromLevel5": "{0} : Autoriser le transfert de données à partir de n'importe quelle application et traiter toutes les données entrantes sans identité utilisateur comme données de l'organisation.",
- "appSharingToLevel1": "Sélectionnez l'une des options suivantes pour spécifier les applications auxquelles cette application peut envoyer des données :",
- "appSharingToLevel2": "{0} : Autoriser uniquement l'envoi de données d'organisation à d'autres applications gérées par stratégie",
- "appSharingToLevel3": "{0} : Autoriser l'envoi de données d'organisation à n'importe quelle application",
- "appSharingToLevel4": "{0} : Ne pas autoriser l'envoi de données d'organisation à une autre application",
- "appSharingToLevel5": "{0} : Autoriser le transfert uniquement vers d'autres applications gérées par une stratégie et le transfert de fichiers vers d'autres applications gérées par MDM sur des appareils inscrits",
- "appSharingToLevel6": "{0} : Autoriser le transfert uniquement vers d'autres applications gérées par une stratégie et filtrer les boîtes de dialogue Ouvrir dans/Partager pour afficher uniquement les applications gérées par une stratégie",
- "conditionalEncryption1": "Sélectionnez {0} pour désactiver le chiffrement de l'application pour le stockage d'applications interne quand le chiffrement de l'appareil est détecté sur un appareil inscrit.",
- "conditionalEncryption2": "Remarque : Intune peut détecter l'inscription des appareils uniquement avec Intune MDM. Le stockage d'applications externe reste chiffré pour que les applications non gérées ne puissent pas accéder aux données.",
- "contactSyncMac": "Si cette option est désactivée, les applications ne peuvent pas enregistrer de contacts dans le carnet d'adresses natif.",
- "contactsSync": "Choisissez Bloquer pour empêcher les applications gérées par la stratégie d’enregistrer des données dans les applications natives de l’appareil (comme les contacts, le calendrier et les widgets) ou pour empêcher l’utilisation de compléments dans les applications gérées par la stratégie. Si vous choisissez Autoriser, l’application gérée par stratégie peut enregistrer des données dans les applications natives ou utiliser des compléments, si ces fonctionnalités sont prises en charge et activées dans l’application gérée par stratégie.
Les applications peuvent fournir une capacité de configuration supplémentaire avec des stratégies de configuration d’application. Pour plus d’informations, consultez la documentation de l’application.",
- "encryptionAndroid1": "Pour les applications associées à une stratégie de gestion des applications mobiles Intune, le chiffrement est fourni par Microsoft. Les données sont chiffrées de manière synchrone pendant les opérations d'E/S selon le paramètre de la stratégie de gestion des applications mobiles. Les applications gérées sur Android utilisent le chiffrement AES-128 en mode CBC qui utilise les bibliothèques de chiffrement de la plateforme. La méthode de chiffrement n'est pas conforme à FIPS 140-2. Le chiffrement SHA-256 est pris en charge sous forme d'instruction explicite à l'aide du paramètre SigAlg et fonctionne uniquement sur des appareils version 4.2 ou ultérieure. Le contenu stocké sur l'appareil est toujours chiffré.",
- "encryptionAndroid2": "Quand vous demandez le chiffrement dans votre stratégie d'application, l'utilisateur final est invité à configurer et utiliser un code confidentiel pour accéder à son appareil. Si aucun code confidentiel n'est configuré pour accéder à l'appareil, les applications ne sont pas lancées et un message s'affiche indiquant à l'utilisateur final : « Votre entreprise exige que vous activiez d'abord un code confidentiel sur l'appareil pour accéder à cette application ».",
- "encryptionMac1": "Pour les applications associées à une stratégie de gestion des applications mobiles Intune, le chiffrement est fourni par Microsoft. Les données sont chiffrées de manière synchrone pendant les opérations d'E/S selon le paramètre de la stratégie de gestion des applications mobiles. Les applications gérées sur Mac utilisent le chiffrement AES-128 en mode CBC qui utilise les bibliothèques de chiffrement de la plateforme. La méthode de chiffrement n'est pas conforme à FIPS 140-2. Le chiffrement SHA-256 est pris en charge sous forme d'instruction explicite à l'aide du paramètre SigAlg et fonctionne uniquement sur des appareils version 4.2 et ultérieure. Le contenu stocké sur l'appareil est toujours chiffré.",
- "faceId1": "Dans certains cas, vous pouvez utiliser l'identification du visage à la place d'un code PIN. Quand les utilisateurs accèdent à cette application à l'aide de leur compte professionnel, ils sont invités à fournir une identification de leur visage.",
- "faceId2": "Sélectionnez Oui pour utiliser l'identification du visage à la place d'un code PIN afin d'accéder aux applications.",
- "managementLevelsAndroid1": "Utilisez cette option pour indiquer si cette stratégie s’applique aux appareils des administrateurs d’appareils Android, aux appareils professionnels Android ou aux appareils non gérés.",
- "managementLevelsAndroid2": "{0} : Les appareils non gérés sont des appareils sur lesquels la gestion Intune MDM n'a pas été détectée. Inclut les fournisseurs MDM tiers.",
- "managementLevelsAndroid3": "{0} : appareils gérés par Intune utilisant l’API d’administration d’appareils Android.",
- "managementLevelsAndroid4": "{0} : appareils gérés par Intune utilisant les profils de travail Android Enterprise ou la gestion complète des appareils Android Enterprise.",
- "managementLevelsIos1": "Utilisez cette option pour spécifier si cette stratégie s'applique aux appareils gérés par MDM ou aux appareils non gérés.",
- "managementLevelsIos2": "{0} : Les appareils non gérés sont des appareils sur lesquels la gestion Intune MDM n'a pas été détectée. Inclut les fournisseurs MDM tiers.",
- "managementLevelsIos3": "{0} : Les appareils gérés sont gérés par Intune MDM.",
- "minAppVersion": "Définissez le numéro de version d'application minimal requis qu'un utilisateur doit avoir pour profiter d'un accès sécurisé à l'application.",
- "minAppVersionWarning": "Définissez le numéro de version d'application minimal conseillé qu'un utilisateur doit avoir pour un accès sécurisé à l'application.",
- "minOsVersion": "Définissez le numéro de version de système d'exploitation minimal requis qu'un utilisateur doit avoir pour profiter d'un accès sécurisé à l'application.",
- "minOsVersionWarning": "Définissez le numéro de version de système d'exploitation minimal conseillé qu'un utilisateur doit avoir pour profiter d'un accès sécurisé à l'application.",
- "minPatchVersion": "Définissez le niveau le plus ancien de correctif de sécurité Android obligatoire qu'un utilisateur doit avoir pour obtenir un accès sécurisé à l'application.",
- "minPatchVersionWarning": "Définissez le niveau le plus ancien de correctif de sécurité Android recommandé qu'un utilisateur doit avoir pour obtenir un accès sécurisé à l'application.",
- "minSdkVersion": "Définissez la version du SDK Stratégie de protection des applications minimale requise qu'un utilisateur doit avoir pour profiter d'un accès sécurisé à l'application.",
- "requireAppPinDefault": "Sélectionnez Oui pour désactiver le code PIN de l'application quand un verrouillage d'appareil est détecté sur un appareil inscrit.
",
- "targetAllApps1": "Utilisez cette option pour cibler votre stratégie aux applications sur les appareils, peu importe leur état de gestion.",
- "targetAllApps2": "Durant la résolution des conflits de stratégie, ce paramètre est remplacé si une stratégie d'utilisateur cible un état de gestion spécifique.",
- "touchId2": "Sélectionnez {0} pour demander une identification par empreinte digitale au lieu d'un code confidentiel pour accéder à l'application."
- },
- "Tap": {
- "pinResetAfterNumberOfDays": "Spécifiez le nombre de jours avant la réinitialisation obligatoire du code PIN par l'utilisateur.",
- "previousPinBlockCount": "Ce paramètre spécifie le nombre de codes secrets précédents que Intune va maintenir. Les nouveaux codes secrets doivent être différents de ceux que Intune maintient actuellement."
+ "WindowsFeatureUpdate": {
+ "EndOFSupportStatus": {
+ "notSupported": "Non pris en charge",
+ "supportEnding": "Fin du support",
+ "supported": "Pris en charge"
+ }
},
- "WipPolicySettings": {
- "25": "",
- "allowWindowsSearch": "Cela permet à Windows Search de continuer la recherche dans les données chiffrées.",
- "authoritativeIpRanges": "Activez ce paramètre si vous souhaitez substituer la détection automatique Windows des plages IP.",
- "authoritativeProxyServers": "Activez ce paramètre si vous souhaitez substituer la détection automatique Windows des serveurs proxy.",
- "checkInput": "Vérifier la validité de l'entrée",
- "dataRecoveryCert": "Un certificat de récupération est un certificat spécial du système de fichiers EFS que vous pouvez utiliser pour récupérer des fichiers chiffrés si votre clé de chiffrement est perdue ou endommagée. Vous devez créer le certificat de récupération et le spécifier ici. En savoir plus",
- "enterpriseCloudResources": "Spécifiez les ressources cloud à traiter comme ressources d'entreprise et à protéger avec une stratégie Windows Information Protection. Vous pouvez spécifier plusieurs ressources en séparant les entrées individuelles avec le caractère « | ».
Si un proxy est configuré dans votre entreprise, vous pouvez spécifier le proxy à travers lequel les ressources cloud que vous avez spécifiées seront routées.
URL[,Proxy]|URL[,Proxy]
Sans proxy : contoso.sharepoint.com|contoso.visualstudio.com
Avec proxy : contoso.sharepoint.com,proxy.contoso.com|contoso.visualstudio.com,proxy.contoso.com
",
- "enterpriseIPv4Ranges": "Spécifiez les plages d'adresses IPv4 qui constituent votre réseau d'entreprise. Elles sont utilisées conjointement avec les noms de domaine de réseau d'entreprise que vous spécifiez pour définir les limites de votre réseau d'entreprise.
Ce paramètre est obligatoire pour l'activation de Windows Information Protection.
Vous pouvez spécifier plusieurs plages en séparant les entrées individuelles par une virgule.
Par exemple : 3.4.0.1-3.4.255.255,192.168.1.1-192.168.255.255
",
- "enterpriseIPv6Ranges": "Spécifiez les plages d'adresses IPv6 qui constituent votre réseau d'entreprise. Elles sont utilisées conjointement avec les noms de domaine de réseau d'entreprise que vous spécifiez pour définir les limites de votre réseau d'entreprise.
Vous pouvez spécifier plusieurs plages en séparant les entrées individuelles par une virgule.
Par exemple : 2001:4898:dc05::-2001:4898:dc05:ffff:ffff:ffff:ffff:ffff,2a01:110::-2a01:110:7fff:ffff:ffff:ffff:ffff:ffff
",
- "enterpriseInternalProxyServers": "Si un proxy est configuré dans votre entreprise, vous pouvez spécifier le proxy à travers lequel le trafic vers les ressources cloud spécifiées dans les paramètres des ressources cloud d'entreprise doit être routé.
Vous pouvez spécifier plusieurs valeurs en séparant les entrées individuelles par un point-virgule.
Par exemple : contoso.internalproxy1.com;contoso.internalproxy2.com
",
- "enterpriseNetworkDomainNames": "Spécifiez les noms DNS qui constituent votre réseau d'entreprise. Ils sont utilisés conjointement avec les plages d'adresses IP que vous spécifiez pour définir les limites de votre réseau d'entreprise. Vous pouvez spécifier plusieurs valeurs en séparant les entrées individuelles par une virgule.
Ce paramètre est obligatoire pour l'activation de Windows Information Protection.
Par exemple : corp.contoso.com,region.contoso.com
",
- "enterpriseProtectedDomainNames": "Spécifiez les noms DNS qui constituent votre réseau d'entreprise. Ils sont utilisés conjointement avec les plages d'adresses IP que vous spécifiez pour définir les limites de votre réseau d'entreprise. Vous pouvez spécifier plusieurs valeurs en les séparant par « | ».
Ce paramètre est obligatoire pour l'activation de Protection des informations Windows.
Par exemple : corp.contoso.com|region.contoso.com
",
- "enterpriseProxyServers": "Si vous avez des proxys accessibles en externe dans votre réseau d'entreprise, spécifiez-les ici. Quand vous spécifiez une adresse de serveur proxy, vous devez également spécifier le port à travers lequel le trafic doit être autorisé et protégé via Windows Information Protection.
Remarque : Cette liste ne doit pas inclure de serveurs de votre liste de serveurs proxy internes de l'entreprise. Vous pouvez spécifier plusieurs valeurs en séparant les entrées individuelles par un point-virgule.
Par exemple : proxy.contoso.com:80;proxy2.contoso.com:80
",
- "maxInactivityTime1": "Spécifie la durée maximale (en minutes) autorisée pendant laquelle l'appareil peut rester inactif avant d'être verrouillé par un mot de passe ou un code PIN. Les utilisateurs peuvent choisir toute valeur de délai d'expiration existante qui est inférieure à la durée maximale spécifiée dans l'application Paramètres. Notez que les appareils Lumia 950 et 950XL ont une valeur de délai d'expiration maximale de 5 minutes, quelle que soit la valeur définie par cette stratégie.",
- "maxInactivityTime2": "0 (par défaut) - Aucun délai d'expiration n'est défini. La valeur par défaut « 0 » est interprétée comme « Aucun délai d'expiration n'est défini ».",
- "maxPasswordAttempts1": "Cette stratégie a un comportement différent sur un appareil mobile et un poste de travail.",
- "maxPasswordAttempts2": "Sur un appareil mobile, quand l'utilisateur atteint la valeur définie par cette stratégie, l'appareil est réinitialisé.",
- "maxPasswordAttempts3": "Sur un poste de travail, quand l'utilisateur atteint la valeur définie par cette stratégie, l'appareil n'est pas réinitialisé. Au lieu de cela, le poste de travail est mis en mode de récupération BitLocker, qui rend les données inaccessibles, mais récupérables. Si BitLocker n'est pas activé, la stratégie ne peut pas être appliquée.",
- "maxPasswordAttempts4": "Avant d'atteindre la limite de tentatives infructueuses, l'utilisateur est redirigé vers l'écran de verrouillage et averti que l'ordinateur sera verrouillé à la prochaine tentative infructueuse. Quand l'utilisateur atteint la limite, l'appareil redémarre automatiquement et affiche la page de récupération BitLocker. Cette page invite l'utilisateur à entrer la clé de récupération BitLocker.",
- "maxPasswordAttempts5": "0 (par défaut) - L'appareil n'est jamais réinitialisé après la saisie d'un code PIN ou d'un mot de passe incorrect.",
- "maxPasswordAttempts6": "Si toutes les valeurs de stratégie sont égales à 0, 0 est la valeur la plus sûre. Sinon, la valeur de stratégie Min est la valeur la plus sûre.",
- "mdmDiscoveryUrl": "Spécifiez l'URL du point de terminaison d'inscription MDM à utiliser par les utilisateurs pour s'inscrire au service MDM. Par défaut, cela est spécifié pour Intune.",
- "minimumPinLength1": "Valeur entière qui définit le nombre minimal de caractères obligatoires dans le code PIN. La valeur par défaut est 4. Le plus petit nombre que vous pouvez spécifier pour ce paramètre de stratégie est 4. Le plus grand nombre que vous pouvez spécifier doit être inférieur au nombre défini dans le paramètre de stratégie Longueur maximale du code PIN ou au nombre 127, selon le plus petit des deux.",
- "minimumPinLength2": "Si vous définissez ce paramètre de stratégie, la longueur du code PIN doit être supérieure ou égale à ce nombre. Si vous désactivez ou ne définissez pas ce paramètre de stratégie, la longueur du code PIN doit être supérieure ou égale à 4.",
- "name": "Nom de cette limite réseau",
- "neutralResources": "Si vous avez des points de terminaison de redirection d'authentification dans votre entreprise, spécifiez-les ici. Les emplacements spécifiés ici sont considérés comme étant personnels ou d'entreprise en fonction du contexte de la connexion avant la redirection.
Vous pouvez spécifier plusieurs valeurs en séparant les entrées individuelles par une virgule.
Par exemple : sts.contoso.com,sts.contoso2.com
",
- "passportForWork1": "Valeur qui définit Windows Hello Entreprise comme mode de connexion à Windows.",
- "passportForWork2": "La valeur par défaut est true. Si vous définissez cette stratégie sur false, l'utilisateur ne peut pas configurer Windows Hello Entreprise, sauf sur les téléphones mobiles joints à Azure Active Directory qui nécessitent la configuration.",
- "pinExpiration": "Le plus grand nombre que vous pouvez spécifier pour ce paramètre de stratégie est 730. Le plus petit nombre que vous pouvez spécifier pour ce paramètre de stratégie est 0. Si cette stratégie est définie sur 0, le code PIN de l'utilisateur n'expire jamais.",
- "pinHistory1": "Le plus grand nombre que vous pouvez spécifier pour ce paramètre de stratégie est 50. Le plus petit nombre que vous pouvez spécifier pour ce paramètre de stratégie est 0. Si cette stratégie est définie sur 0, la conservation des codes PIN précédents n'est pas nécessaire.",
- "pinHistory2": "Le code PIN actuel de l'utilisateur fait partie de l'ensemble des codes PIN associés au compte de l'utilisateur. L'historique des codes PIN n'est pas conservé après la réinitialisation d'un code PIN.",
- "protectUnderLock": "Protège le contenu de l'application quand l'appareil est dans l'état verrouillé.",
- "protectionModeBlock": "Bloquer : Bloque le déplacement des données d'entreprise hors des applications protégées.
",
- "protectionModeOff": "Désactivé : L'utilisateur est autorisé à déplacer les données hors des applications protégées. Ces actions ne sont pas consignées.
",
- "protectionModeOverride": "Autoriser l'utilisateur à ignorer les avertissements : L'utilisateur est invité à confirmer son action quand il essaie de déplacer des données d'une application protégée vers une application non protégée. S'il choisit d'ignorer cet avertissement, l'action est consignée.
",
- "protectionModeSilent": "Aucun avertissement : L'utilisateur est autorisé à déplacer les données hors des applications protégées. Ces actions sont consignées.
",
- "required": "Nécessaire",
- "revokeOnMdmHandoff": "Ajouté dans Windows 10, version 1703. Cette stratégie contrôle s'il faut révoquer les clés WIP quand un appareil passe de GAM à MDM. Si elle est définie sur « Désactivé », les clés ne sont pas révoquées et l'utilisateur continue d'avoir accès aux fichiers protégés après la mise à niveau. Ceci est recommandé si le service MDM est configuré avec le même ID d'entreprise WIP que le service GAM.",
- "revokeOnUnenroll": "Cela entraîne la révocation des clés de chiffrement quand l'inscription d'un appareil à cette stratégie est annulée.",
- "rmsTemplateForEdp": "GUID TemplateID à utiliser pour le chiffrement RMS. Le modèle Azure RMS permet à l'administrateur informatique de configurer les détails de chaque utilisateur ayant accès au fichier protégé par RMS, et la durée de cet accès.",
- "showWipIcon": "L'affichage d'une icône en superposition indique à l'utilisateur qu'il se trouve dans un contexte d'entreprise.",
- "useRmsForWip": "Spécifie si le chiffrement Azure RMS est autorisé pour WIP."
+ "SecurityTemplate": {
+ "aSR": "Réduction de la surface d'attaque",
+ "accountProtection": "Protection de compte",
+ "allDevices": "Tous les appareils",
+ "antivirus": "Antivirus",
+ "antivirusReporting": "Rapports de l’antivirus (préversion)",
+ "conditionalAccess": "Accès conditionnel",
+ "deviceCompliance": "Conformité de l'appareil",
+ "diskEncryption": "Chiffrement de disque",
+ "eDR": "Détection de point de terminaison et réponse",
+ "firewall": "Pare-feu",
+ "helpSupport": "Aide et support",
+ "setup": "Installation",
+ "wdapt": "Microsoft Defender pour point de terminaison"
+ },
+ "Win32ReturnCodes": {
+ "CodeTypes": {
+ "failed": "Échec",
+ "hardReboot": "Redémarrage matériel",
+ "retry": "Réessayer",
+ "softReboot": "Redémarrage logiciel",
+ "success": "Opération réussie"
},
- "requireAppPin": "Sélectionnez Oui pour désactiver le code PIN de l’application quand un verrouillage d’appareil est détecté sur un appareil inscrit.
Remarque : Intune ne peut pas détecter l’inscription d’un appareil avec une solution EMM tierce sur iOS/iPadOS.
"
- },
- "AppInfoBalloonText": {
- "Certificate": {
- "customSubjectName": "CN={{UserName}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US\r\nor\r\nCN={{AAD_Device_ID}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US",
- "keySize": "Sélectionnez le nombre de bits contenus dans la clé.",
- "keyUsage": "Spécifiez l'action de chiffrement obligatoire pour échanger la clé publique du certificat.",
- "renewalThreshold": "Entrez le pourcentage (entre 1 et 99) de durée de vie restante du certificat avant qu'un appareil demande le renouvellement du certificat. La valeur recommandée dans Intune est 20 %. (1-99)",
- "rootCert": "Choisissez un profil de certificat d'autorité de certification racine précédemment configuré et affecté. Le certificat d'autorité de certification doit correspondre au certificat racine de l'autorité de certification qui émet le certificat pour ce profil (celui que vous configurez).",
- "scepServerUrl": "Entrez l’URL du serveur NDES qui émet les certificats via SCEP (Doit être HTTPS). Par ex., https://contoso.com/certsrv/mscep/mscep.dll",
- "scepServerUrls": "Ajoutez une ou plusieurs URL pour le serveur NDES qui émet des certificats par SCEP (doit être en HTTPS). Par ex. https://contoso.com/certsrv/mscep/mscep.dll",
- "subjectAlternativeName": "Autre nom de l'objet",
- "subjectNameFormat": "Format du nom de l'objet",
- "validityPeriod": "Quantité de temps restante avant l'expiration du certificat. Entrez une valeur égale ou inférieure à la période de validité affichée dans le modèle de certificat. La valeur par défaut est égale à un an."
- },
- "appInstallContext": "Cette option spécifie le contexte d'installation à associer à cette application. Pour les applications en mode double, sélectionnez le contexte souhaité pour l'application. Pour toutes les autres applications, le contexte est présélectionné selon le package et n'est pas modifiable.",
- "autoUpdateMode": "Configurez la priorité de mise à jour de l'application. Sélectionnez Par défaut pour exiger que l'appareil soit connecté au WiFi, qu'il soit en charge et qu'il ne soit pas activement utilisé avant la mise à jour de l'application. Sélectionnez Haute priorité pour mettre à jour l'application dès que le développeur a publié l'application, quel que soit l'état de charge, la capacité WiFi ou l'activité de l'utilisateur final sur l'appareil. La priorité élevée ne prendra effet que sur les appareils DO.",
- "configurationSettingsFormat": "Texte du format des paramètres de configuration",
- "ignoreVersionDetection": "Définissez cette valeur sur \"Oui\" pour les applications automatiquement mises à jour par le développeur de l'application (comme Google Chrome).",
- "ignoreVersionDetectionMacOSLobApp": "Sélectionnez « Oui » pour les applications qui sont automatiquement mises à jour par le développeur d’applications ou pour vérifier uniquement l’ID de bundle d’application avant l’installation. Sélectionnez « Non » pour vérifier l’ID de bundle d’application et le numéro de version avant l’installation.",
- "installAsManagedMacOSLobApp": "Ce paramètre s’applique uniquement à macOS 11 et versions ultérieures. L’application sera installée, mais elle ne sera pas managée sur macOS 10.15 et versions antérieures.",
- "installContextDropdown": "Sélectionnez le contexte d'installation approprié. Le contexte utilisateur installe l'application uniquement pour l'utilisateur ciblé, alors que le contexte d'appareil installe l'application pour tous les utilisateurs sur l'appareil.",
- "ldapUrl": "Il s’agit du nom d’hôte LDAP où les clients peuvent obtenir les clés de chiffrement publiques pour les destinataires des e-mails. Les e-mails seront chiffrés quand une clé sera disponible. Formats pris en charge : - ldap.example.com
\r\n- ldap.example.com:123
\r\n- ldap://ldap.example.com
- ldap://ldap.example.com:123
- ldaps://ldap.example.com
\r\n- ldaps://ldap.example.com:123
",
- "permissionsSettings": "Sélectionnez les autorisations d'exécution pour l'application associée.",
- "policyAssociatedApp": "Sélectionnez l'application à laquelle cette stratégie va être associée.",
- "policyConfigurationSettings": "Sélectionnez la méthode à utiliser pour définir les paramètres de configuration de cette stratégie.",
- "policyDescription": "Éventuellement, entrez une description pour cette stratégie de configuration.",
- "policyEnrollmentType": "Indiquez si ces paramètres sont gérés par le biais de la gestion des appareils ou d'applications créées avec le SDK Intune.",
- "policyName": "Entrez un nom pour cette stratégie de configuration.",
- "policyPlatform": "Sélectionnez la plateforme à laquelle cette stratégie de configuration d'application va être appliquée.",
- "policyProfileType": "Sélectionnez les types de profils d’appareil auxquels ce profil de configuration d’application doit s’appliquer",
- "policySMime": "Configurez les paramètres de chiffrement et de signature S/MIME pour Outlook.",
- "sMimeDeployCertsFromIntune": "Spécifiez si les certificats S/MIME seront fournis par Intune pour une utilisation avec Outlook.\r\nIntune peut déployer automatiquement les certificats de signature et de chiffrement aux utilisateurs par le biais du portail d'entreprise.",
- "sMimeEnable": "Indiquer si les contrôles S/MIME sont activés au moment de la composition d'un e-mail",
- "sMimeEnableAllowChange": "Indiquez si l'utilisateur est autorisé à changer le paramètre Activer S/MIME.",
- "sMimeEncryptAllEmails": "Spécifiez si tous les e-mails doivent être chiffrés.\r\nLe chiffrement convertit les données en texte chiffré que seul le destinataire visé peut lire.",
- "sMimeEncryptAllEmailsAllowChange": "Indiquez si l'utilisateur est autorisé à changer le paramètre Chiffrer tous les e-mails.",
- "sMimeEncryptionCertProfile": "Spécifiez le profil de certificat pour le chiffrement d'e-mail.",
- "sMimeSignAllEmails": "Spécifiez si tous les e-mails doivent être signés.\r\nUne signature numérique vérifie l'authenticité de l'e-mail et garantit que le contenu n'est pas falsifié en transit.",
- "sMimeSignAllEmailsAllowChange": "Indiquez si l'utilisateur est autorisé à changer le paramètre Signer tous les e-mails.",
- "sMimeSigningCertProfile": "Spécifiez le profil de certificat pour la signature d'e-mail.",
- "sMimeUserNotificationType": "Méthode notifiant les utilisateurs qu'ils doivent ouvrir le portail d'entreprise pour récupérer les certificats S/MIME pour Outlook."
- },
- "WindowsQualityUpdateDaysUntilForcedReboot": {
- "oneDay": "1 jour",
- "twoDays": "2 jours",
- "zeroDays": "0 jour"
- },
- "Autopilot": {
- "AssignResourceAccount": {
- "createNewCommandMenu": "Créer",
- "createNewResourceAccountInfo": "\r\nCréez un compte de ressource pendant l'inscription. Le compte de ressource est ajouté immédiatement aux tableaux de comptes de ressource, mais n'est pas actif tant que l'appareil n'est pas inscrit et que l'abonnement Surface Hub n'est pas vérifié. En savoir plus sur les comptes de ressource
\r\n ",
- "createNewResourceTitle": "Créer un compte de ressource",
- "deviceNameInvalid": "Format du nom d'appareil non valide",
- "deviceNameRequired": "Nom de l'appareil obligatoire",
- "editResourceAccountLabel": "Modifier",
- "selectExistingCommandMenu": "Sélectionner"
- },
- "Device": {
- "ComputerName": {
- "validFormat": "Les noms doivent avoir 15 caractères maximum et peuvent contenir des lettres (a-z, A-Z), des chiffres (0-9) et des traits d'union. Ils ne doivent pas contenir uniquement des chiffres et ne doivent pas contenir d'espace."
- },
- "Header": {
- "addressableUserName": "Nom convivial",
- "azureADDevice": "Appareil Azure AD associé",
- "batch": "Balise de groupe",
- "dateAssigned": "Date d'attribution",
- "deviceDisplayName": "Nom de l'appareil",
- "deviceName": "Nom de l'appareil",
- "deviceUseType": "Type d'utilisation de l'appareil",
- "enrollmentState": "État de l'inscription",
- "intuneDevice": "Appareil Intune associé",
- "lastContacted": "Dernier contact",
- "make": "Fabricant",
- "model": "Modèle",
- "profile": "Profil affecté",
- "profileStatus": "État du profil",
- "purchaseOrderId": "Bon de commande",
- "resourceAccount": "Compte de ressource",
- "serialNumber": "Numéro de série",
- "userPrincipalName": "Utilisateur"
- }
- },
- "DeviceUseType": {
- "meetingAndPresentation": "Réunion et présentation",
- "teamCollaboration": "Collaboration en équipe"
- },
- "Devices": {
- "featureDescription": "Windows Autopilot vous permet de personnaliser l'expérience OOBE pour vos utilisateurs.",
- "importErrorStatus": "Certains appareils n'ont pas été importés. Cliquez ici pour plus d'informations.",
- "importPendingStatus": "Importation en cours. Temps écoulé : {0} min. Ce processus peut prendre jusqu'à {1} min."
- },
- "DirectoryService": {
- "activeDirectoryAD": "Jointure hybride Azure AD",
- "activeDirectoryADLabel": "Azure AD Hybride avec Autopilot",
- "azureAD": "Joint à Azure AD",
- "unknownType": "Type inconnu"
- },
- "Filter": {
- "enrollmentState": "État",
- "profile": "État du profil"
- },
- "OOBE": {
- "AddressableUserName": {
- "validateEmpty": "Le nom convivial d'utilisateur ne peut pas être vide."
- },
- "ApplyComputerNameTemplate": {
- "infoBalloon": "Créez un modèle de nommage pour ajouter des noms à vos appareils pendant l'inscription.",
- "label": "Appliquer le modèle de nom d'appareil"
- },
- "ApplyComputerNameTemplateDisabled": {
- "label": "Pour le type de profils de déploiement Autopilot avec jointure hybride Azure AD, les appareils sont nommés en utilisant les paramètres spécifiés dans la configuration de jonction de domaine."
- },
- "ComputerNameTemplate": {
- "emptyValue": "MyCompany-%RAND:4%",
- "label": "Entrer un nom",
- "noDisallowedChars": "Le nom doit contenir uniquement des caractères alphanumériques, des traits d'union, %SERIAL% ou %RAND:x%",
- "serialLength": "Impossible d'utiliser plus de 7 caractères avec %SERIAL%",
- "validateLessThan15Chars": "Le nom doit avoir 15 caractères maximum",
- "validateNoSpaces": "Les noms d'ordinateur ne peuvent pas contenir d'espace",
- "validateNotAllNumbers": "Le nom doit également contenir des lettres et/ou des traits d'union",
- "validateNotEmpty": "Le nom ne peut pas être vide",
- "validateOnlyOneMacro": "Le nom doit contenir uniquement une %SERIAL% ou une %RAND:x%"
- },
- "ConfigureComputerNameTemplate": {
- "description": "Créez un nom unique pour vos appareils. Les noms doivent avoir 15 caractères maximum et peuvent contenir des lettres (a-z, A-Z), des chiffres (0-9) et des traits d'union. Ils ne doivent pas contenir uniquement des chiffres. Les noms ne peuvent pas contenir d'espace vide. Utilisez la macro %SERIAL% pour ajouter un numéro de série propre au matériel. Vous pouvez également utiliser la macro %RAND:x% pour ajouter une chaîne aléatoire de chiffres, où x est égal au nombre de chiffres à ajouter."
- },
- "EnableWhiteGlove": {
- "infoBalloon": "Autoriser l'exécution d'OOBE sans authentification utilisateur pour inscrire l'appareil et provisionner tous les paramètres et applications du contexte système en appuyant 5 fois sur la touche Windows. Les applications et paramètres du contexte utilisateur seront remis au moment de la connexion de l'utilisateur.",
- "label": "Autoriser le déploiement préconfiguré"
- },
- "HybridAzureADSkipConnectivityCheck": {
- "infoBalloon": "Le flux AutoPilot Azure AD Hybride joint se poursuivra même s’il n’établit pas de connectivité aucontrôleur de domaine lors de l’installation de OOBE.",
- "label": "Ignorer la vérification de connectivité AD (préversion)"
- },
- "accountType": "Type de compte d'utilisateur",
- "accountTypeInfo": "Spécifie si les utilisateurs sont des administrateurs ou des utilisateurs standard sur l'appareil. Notez que ce paramètre ne s'applique pas aux comptes d'administrateur général ou d'administrateur de la société. Ces comptes ne peuvent pas être des utilisateurs standard, car ils ont accès à toutes les fonctionnalités d'administration dans Azure AD.",
- "configOOBEInfo": "\r\nConfigurer l'expérience par défaut (out-of-box) pour vos appareils Autopilot\r\n
",
- "configureDevice": "Mode de déploiement",
- "configureDeviceHintForSurfaceHub2": "Autopilot prend uniquement en charge le mode de déploiement automatique pour Surface Hub 2. Ce mode n'associe pas l'utilisateur à l'appareil inscrit et n'a donc pas besoin des informations d'identification de l'utilisateur.",
- "configureDeviceHintForWindowsPC": "\r\n Le mode de déploiement contrôle si un utilisateur doit fournir des informations d'identification pour provisionner l'appareil.\r\n
\r\n \r\n - \r\n Géré par l'utilisateur : L'appareil est associé à l'utilisateur qui effectue l'inscription et doit fournir ses informations d'identification pour provisionner l'appareil\r\n
\r\n - \r\n Auto-déploiement (préversion) : L'appareil n'est pas associé à l'utilisateur qui effectue l'inscription et les informations d'identification de l'utilisateur ne sont pas nécessaires pour provisionner l'appareil\r\n
\r\n
",
- "createSurfaceHub2Info": "Configurez les paramètres d'inscription Autopilot pour vos appareils Surface Hub 2. Par défaut, Autopilot permet d'ignorer l'authentification utilisateur pendant l'expérience OOBE. Découvrez-en plus sur Windows Autopilot pour Surface Hub 2.",
- "createWindowsPCInfo": "\r\n\r\nLes options suivantes sont automatiquement activées pour les appareils Autopilot en mode de déploiement automatique :\r\n
\r\n\r\n - \r\n Ignorer la sélection d'utilisation professionnelle ou personnelle\r\n
\r\n - \r\n Ignorer l'inscription OEM et la configuration de OneDrive\r\n
\r\n - \r\n Ignorer l'authentification de l'utilisateur dans OOBE\r\n
\r\n
",
- "endUserDevice": "Géré par l'utilisateur",
- "hideEscapeLink": "Masquer les options de changement de compte",
- "hideEscapeLinkInfo": "Les options permettant de changer de compte et de recommencer avec un autre compte apparaissent, respectivement, pendant l'installation initiale de l'appareil dans la page de connexion de l'entreprise et dans la page des erreurs de domaine. Pour masquer ces options, vous devez configurer la personnalisation de l'entreprise dans Azure Active Directory (nécessite Windows 10, 1809 ou version ultérieure ou Windows 11).",
- "info": "Les paramètres du profil AutoPilot définissent l'expérience OOBE (Out-of-Box Experience) que les utilisateurs voient au premier démarrage de Windows. ",
- "language": "Langue (région)",
- "languageInfo": "Spécifiez la langue et la région à utiliser.",
- "licenseAgreement": "Termes du contrat de licence logiciel Microsoft",
- "licenseAgreementInfo": "Indiquez si le CLUF est présenté aux utilisateurs.",
- "plugAndForgetDevice": "Auto-déploiement (préversion)",
- "plugAndForgetGA": "Déploiement automatique",
- "privacySettingWarning": "La valeur par défaut pour la collecte des données de diagnostic a changé pour les appareils exécutant Windows 10, version 1903 ou ultérieure ou Windows 11. ",
- "privacySettings": "Paramètres de confidentialité",
- "privacySettingsInfo": "Indiquez si les paramètres de confidentialité sont présentés aux utilisateurs.",
- "showCortanaConfigurationPage": "Configuration de Cortana",
- "showCortanaConfigurationPageInfo": "L'option Afficher active l'introduction de la configuration de Cortana au démarrage.",
- "skipEULAWarning": "Informations importantes sur le masquage des termes du contrat de licence",
- "skipKeyboardSelection": "Configurer automatiquement le clavier",
- "skipKeyboardSelectionInfo": "Si la valeur est true, ignorez la page de sélection du clavier quand la langue est définie.",
- "subtitle": "Profils AutoPilot",
- "title": "OOBE (Out-Of-Box Experience)",
- "useOSDefaultLanguage": "Système d'exploitation par défaut",
- "userSelect": "Sélection de l’utilisateur"
- },
- "Sync": {
- "lastRequestedLabel": "Dernière demande de synchronisation",
- "lastSuccessfulLabel": "Dernière synchronisation effectuée",
- "syncInProgress": "La synchronisation est en cours. Revenez un peu plus tard.",
- "syncInitiated": "Synchronisation des paramètres AutoPilot lancée.",
- "syncSettingsTitle": "Synchroniser les paramètres AutoPilot"
- },
- "Title": {
- "devices": "Appareils Windows AutoPilot"
- },
- "Tooltips": {
- "addressableUserName": "Nom de bienvenue affiché lors de l'installation de l'appareil.",
- "azureADDevice": "Accédez aux détails de l'appareil associé. N/A signifie qu'aucun appareil n'est associé.",
- "batch": "Attribut de chaîne qui permet d'identifier un groupe d’appareils. Le champ de balise de groupe de Intune est associé à l’attribut OrderID sur les appareils Azure AD.",
- "dateAssigned": "Horodatage de l'affectation du profil à l'appareil.",
- "deviceDisplayName": "Configurez un nom unique pour un appareil. Ce nom sera ignoré dans les déploiements avec jointure hybride Azure AD. Le nom de l’appareil est toujours issu du profil de jonction de domaine pour les appareils Azure AD Hybride.",
- "deviceName": "Nom affiché quand un utilisateur tente de découvrir l'appareil et de s'y connecter.",
- "deviceUseType": " L'appareil est configuré en fonction de votre choix. Vous pouvez toujours changer la configuration par la suite dans les paramètres.\r\n \r\n - Pour les réunions et les présentations, Windows Hello n'est pas activé et les données sont supprimées après chaque session.\r\n
\r\n - Pour la collaboration en équipe, Windows Hello est activé et les profils sont enregistrés pour une connexion rapide
\r\n
",
- "enrollmentState": "Spécifie si l'appareil est inscrit.",
- "intuneDevice": "Accédez aux détails de l'appareil associé. N/A signifie qu'aucun appareil n'est associé.",
- "lastContacted": "Horodatage de la dernière fois où l'appareil a été contacté.",
- "make": "Fabricant de l'appareil sélectionné.",
- "model": "Modèle de l'appareil sélectionné",
- "profile": "Nom du profil affecté à l'appareil.",
- "profileStatus": "Spécifie si un profil est affecté à l'appareil.",
- "purchaseOrderId": "ID de commande fournisseur",
- "resourceAccount": "Identité de l'appareil ou nom d'utilisateur principal (UPN).",
- "serialNumber": "Numéro de série de l'appareil sélectionné.",
- "userPrincipalName": "Utilisateur pour prérenseigner l'authentification pendant l'installation de l'appareil."
- },
- "allDevices": "Tous les appareils",
- "allDevicesAlreadyAssignedError": "Un profil Autopilot est déjà affecté à tous les appareils.",
- "assignFailedDescription": "Échec de mise à jour des affectations de {0}.",
- "assignFailedTitle": "Échec de mise à jour des affectations de profil AutoPilot.",
- "assignSuccessDescription": "Affectations mises à jour pour {0}.",
- "assignSuccessTitle": "Affectations de profil AutoPilot mises à jour.",
- "assignSufaceHub2ProfileNextStep": "Étapes suivantes pour ce déploiement",
- "assignSurfaceHub2ProfileToDeviceGroup": "1. Affecter ce profil à au moins un groupe d'appareils",
- "assignSurfaceHub2ProfileToResourceAccount": "2. Affecter un compte de ressource à chaque appareil Surface Hub sur lequel vous déployez ce profil",
- "assignedDevicesCount": "Appareils attribués",
- "assignedDevicesResourceAccountDescription": "Pour déployer ce profil sur un appareil, vous devez attribuer un compte de ressource à l'appareil. Sélectionnez un appareil à la fois pour lui attribuer un compte de ressource existant ou pour en créer un. En savoir plus sur les comptes de ressource
",
- "assignedDevicesResourceAccountStatusBarMessage": "Ce tableau liste uniquement les appareils Surface Hub 2 auxquels ce profil a été attribué.",
- "assigningDescription": "Mise à jour des affectations de {0}.",
- "assigningTitle": "Mise à jour des affectations de profil AutoPilot.",
- "cannotDeleteMessage": "Ce profil est affecté à des groupes. Vous devez annuler l'affectation de tous les groupes de ce profil pour pouvoir le supprimer.",
- "cannotDeleteTitle": "Impossible de supprimer {0}",
- "createdDateTime": "Création",
- "deleteMessage": "Si vous supprimez ce profil AutoPilot, tous les appareils affectés à ce profil apparaîtront avec l'état « Non affecté ».",
- "deleteMessageWithPolicySet": "{0} est incluse dans un ou plusieurs ensembles de stratégies. Si vous supprimez {0}, vous ne serez plus en mesure de l'affecter par l'intermédiaire de ces ensembles de stratégies.",
- "deleteTitle": "Voulez-vous vraiment supprimer ce profil ?",
- "description": "Description",
- "deviceType": "Type de périphérique",
- "deviceUse": "Utilisation de l'appareil",
- "directoryServiceHintForSurfaceHub2": " \r\n Autopilot prend en charge uniquement une jonction à Azure AD pour les appareils Surface Hub 2. Spécifiez le type de jonction Active Directory (AD) pour les appareils de votre organisation.\r\n
\r\n \r\n - \r\n Joint à Azure AD : Cloud uniquement sans instance locale de Windows Server Active Directory.\r\n
\r\n
\r\n ",
- "directoryServiceHintForWindowsPC": "\r\n \r\n Spécifiez le mode de jonction des appareils à Active Directory (AD) dans votre organisation :\r\n
\r\n \r\n - \r\n Joint à Azure AD : cloud uniquement sans Windows Server Active Directory local\r\n
\r\n
\r\n ",
- "getAssignedDevicesCountError": "Une erreur s'est produite pendant la récupération du nombre d'appareils affectés.",
- "getAssignmentsError": "Une erreur s'est produite pendant la récupération des affectations de profil AutoPilot.",
- "harvestDeviceId": "Convertir tous les appareils ciblés en Autopilot",
- "harvestDeviceIdDescription": "Par défaut, ce profil est applicable seulement aux appareils Autopilot synchronisés à partir du service Autopilot.",
- "harvestDeviceIdInfo": "\r\n Sélectionnez Oui pour inscrire tous les appareils ciblés à Autopilot s'ils ne le sont pas déjà. La prochaine fois que les appareils inscrits utilisent l'expérience OOBE, ils sont dirigés vers le scénario Autopilot affecté.\r\n
\r\n Notez que certains scénarios Autopilot nécessitent des builds minimales spécifiques. Vérifiez que votre appareil dispose de la build minimale nécessaire pour utiliser le scénario.\r\n
\r\n La suppression de ce profil ne supprime pas les appareils concernés dans Autopilot. Pour supprimer un appareil dans Autopilot, utilisez la vue Appareils Windows Autopilot.\r\n ",
- "harvestDeviceIdWarning": "Pour rétablir des appareils après la conversion, vous devez les supprimer de la liste des appareils Autopilot.",
- "holoLensCommandMenu": "HoloLens",
- "info": "Les profils Windows AutoPilot Deployment vous permettent de personnaliser l'expérience OOBE (Out-of-Box Experience) sur vos appareils.",
- "invalidProfileNameMessage": "Le caractère « {0} » n'est pas autorisé",
- "joinTypeLabel": "Joindre Azure AD comme",
- "lastModifiedDateTime": "Dernière modification le :",
- "name": "Nom",
- "noAutopilotProfile": "Aucun profil AutoPilot",
- "notEnoughPermissionAssignedError": "Vous n'avez pas les autorisations suffisantes pour affecter ce profil à un ou plusieurs groupes sélectionnés. Contactez votre administrateur.",
- "profile": "profil",
- "resourceAccountStatusBarMessage": "Un compte de ressource est obligatoire pour chaque appareil Surface Hub 2 sur lequel ce profil est déployé. Cliquez pour en savoir plus.",
- "selectServices": "Sélectionner le service d'annuaire que joindront les appareils",
- "surfaceHub2CommandMenu": "Surface Hub 2",
- "surfaceHub2SCommandMenu": "Surface Hub 2S",
- "userAffinityLabel": "Mode de déploiement",
- "windowsPCCommandMenu": "PC Windows",
- "directoryServiceLabel": "Joindre à Azure AD comme"
- },
- "AppInformationTab": {
- "Error": {
- "multipleChildApps": "Une application métier macOS peut uniquement être installée comme étant gérée lorsque le package chargé contient une seule application."
- },
- "Info": {
- "AppStoreUrl": {
- "android": "Entrez le lien vers la liste des applications dans Google Play Store. Par exemple :",
- "androidLink": "https://play.google.com/store/apps/details?id=com.microsoft.office.outlook",
- "windows": "Entrez le lien vers la liste des applications dans le Microsoft Store. Par exemple :",
- "windowsLink": "https://www.microsoft.com/en-us/p/microsoft-to-do-lists-tasks-reminders/9nblggh5r558"
- },
- "appPackageFile": "Fichier qui contient votre application dans un format pouvant être chargé indépendamment sur un appareil. Les types de packages valides sont : Android (.apk), iOS (.ipa), macOS (.intunemac), Windows (.msi, .appx, .appxbundle, .msix et .msixbundle)",
- "applicableDeviceType": "Sélectionnez les types d’appareils qui peuvent installer cette application.",
- "category": "Catégorisez l’application pour faciliter le tri et la recherche dans Portail d’entreprise. Vous pouvez choisir plusieurs catégories.",
- "categoryLink": "https://docs.microsoft.com/en-us/intune/apps/apps-add#create-and-edit-categories-for-apps",
- "description": "Aidez vos utilisateurs d’appareils à comprendre la nature de l’application et/ou les actions qu’ils peuvent faire dans l’application. Cette description sera visible dans Portail d’entreprise.",
- "developer": "Nom de l’entreprise ou de la personne qui a développé l’application. Ces informations seront visibles par les personnes connectées au centre d’administration.",
- "displayVersion": "Version de l’application. Ces informations seront visibles par les utilisateurs dans le Portail d’entreprise.",
- "infoUrl": "Liez des personnes à un site web ou à une documentation qui contient plus d’informations sur l’application. L’URL d’informations sera visible pour les utilisateurs de Portail d’entreprise.",
- "isFeatured": "Les applications à la une sont placées en évidence dans Portail d’entreprise pour que les utilisateurs puissent y accéder rapidement.",
- "learnMore": "En savoir plus",
- "logo": "Chargez un logo associé à l’application. Ce logo s’affiche en regard de l’application dans Portail d’entreprise.",
- "macOSDmgAppPackageFile": "Fichier qui contient votre application dans un format qui peut être chargé indépendamment sur un appareil. Type de package valide : .dmg.",
- "minOperatingSystem": "Sélectionnez la version du système d’exploitation la plus ancienne sur laquelle l’application peut être installée. Si vous affectez l’application à un appareil avec un système d’exploitation antérieur, elle ne sera pas installée.",
- "name": "Ajoutez un nom pour l’application. Ce nom sera visible dans la liste des applications Intune et pour les utilisateurs dans le Portail d’entreprise.",
- "notes": "Ajoutez des notes supplémentaires sur l’application. Les notes seront visibles par les personnes connectées au centre d’administration.",
- "owner": "Nom de la personne dans votre organisation qui gère les licences ou est le point de contact pour cette application. Ce nom sera visible pour les personnes connectées au centre d’administration.",
- "packageName": "Contactez le constructeur de l’appareil pour obtenir le nom du package de l’application. Exemple de nom de package : com.exemple.app",
- "privacyUrl": "Indiquez un lien pour les personnes qui souhaitent en savoir plus sur les paramètres et les conditions de confidentialité de l’application. L’URL de confidentialité sera visible par les utilisateurs dans Portail d’entreprise.",
- "publisher": "Nom du développeur ou de la société qui distribue l’application. Ces informations seront visibles par les utilisateurs dans Portail d’entreprise.",
- "selectApp": "Recherchez dans l’App Store les applications de l'iOS Store que vous voulez déployer avec Intune.",
- "useManagedBrowser": "Le cas échéant, lorsqu'un utilisateur ouvre l’application web, celle-ci apparaît dans un navigateur protégé par Intune, tel que Microsoft Edge ou Intune Managed Browser. Ce paramètre s’applique aux appareils iOS et Android.",
- "useManagedBrowserLink": "https://docs.microsoft.com/en-us/intune/apps/app-configuration-managed-browser",
- "win32AppPackageFile": "Fichier qui contient votre application dans un format pouvant être chargé indépendamment sur un appareil. Type de package valide : .intunewin."
- },
- "descriptionPreview": "Préversion",
- "descriptionRequired": "Une description est requise.",
- "editDescription": "Modifier la description",
- "name": "Informations sur l'application",
- "nameForOfficeSuitApp": "Informations sur la suite d'applications"
- },
+ "Columns": {
+ "codeType": "Type de code",
+ "returnCode": "Code de retour"
+ },
+ "bladeTitle": "Codes de retour",
+ "gridAriaLabel": "Codes de retour",
+ "header": "Spécifier des codes de retour pour indiquer le comportement postinstallation :",
+ "onAddAnnounceMessage": "Le code de retour a ajouté l'élément {0} sur {1}",
+ "onDeleteSuccess": "Le code de retour {0} a été correctement supprimé",
+ "returnCodeAlreadyUsedValidation": "Code de retour déjà utilisé.",
+ "returnCodeMustBeIntegerValidation": "Le code de retour doit être un entier.",
+ "returnCodeShouldBeAtLeast": "Le code de retour doit être au moins {0}.",
+ "returnCodeShouldBeAtMost": "Le code de retour doit être au plus {0}.",
+ "selectorLabel": "Codes de retour"
+ },
"NotificationMessage": {
"NotificationMessageTemplatesTab": {
"arabic": "Arabe",
@@ -10516,84 +10079,599 @@
"localeLabel": "Paramètres régionaux",
"isDefaultLocale": "Est par défaut"
},
- "Win32Program": {
- "DeviceRestartBehaviorOptions": {
- "allow": "L'installation de l'application peut forcer le redémarrage de l'appareil",
- "basedOnReturnCode": "Déterminer le comportement en fonction des codes de retour",
- "force": "Intune force le redémarrage obligatoire de l'appareil",
- "suppress": "Aucune action spécifique"
- },
- "RunAsAccountOptions": {
- "system": "Système",
- "user": "Utilisateur"
- },
- "bladeTitle": "Programme",
- "deviceRestartBehavior": "Comportement de redémarrage du périphérique",
- "deviceRestartBehaviorTooltip": "Sélectionnez le comportement de redémarrage de l'appareil une fois l'application installée. Sélectionnez « Déterminer le comportement en fonction des codes de retour » pour redémarrer l'appareil en fonction des paramètres de configuration des codes de retour. Sélectionnez « Aucune action spécifique » pour supprimer les redémarrages de l'appareil durant l'installation des applications MSI. Sélectionnez « L'installation de l'application peut forcer le redémarrage de l'appareil » pour permettre l'installation de l'application sans supprimer les redémarrages. Sélectionnez « Intune force le redémarrage obligatoire de l'appareil » pour toujours redémarrer l'appareil après l'installation de l'application.",
- "header": "Spécifiez les commandes pour installer et désinstaller cette application :",
- "installCommand": "Commande d'installation",
- "installCommandMaxLengthErrorMessage": "La commande d’installation ne peut pas dépasser la longueur maximale autorisée de 1024 caractères.",
- "installCommandTooltip": "Ligne de commande d'installation complète pour installer cette application.",
- "runAs32Bit": "Exécuter les commandes d'installation et de désinstallation dans un processus 32 bits sur des clients 64 bits",
- "runAs32BitTooltip": "Sélectionnez 'Oui' pour installer et désinstaller l'application dans un processus 32 bits sur des clients 64 bits. Sélectionnez 'Non' (par défaut) pour installer et désinstaller l'application dans un processus 64 bits sur des clients 64 bits. Les clients 32 bits utilisent toujours un processus 32 bits.",
- "runAsAccount": "Comportement à l'installation",
- "runAsAccountTooltip": "Sélectionnez Système pour installer cette application pour tous les utilisateurs (si elle est prise en charge). Sélectionnez Utilisateur pour l'installer pour l'utilisateur connecté sur l'appareil. Pour les applications MSI à double objectif, tout changement empêche l'exécution des mises à jour et des désinstallations jusqu'à la restauration de la valeur appliquée à l'appareil au moment de l'installation d'origine.",
- "selectorLabel": "Programme",
- "uninstallCommand": "Commande de désinstallation",
- "uninstallCommandTooltip": "Ligne de commande de désinstallation complète pour désinstaller cette application."
- },
- "OutlookAppConfigSettings": {
- "AllowUserToChangeSetting": {
- "title": "Autoriser l'utilisateur à changer le paramètre",
- "tooltip": "Indiquez si l'utilisateur est autorisé à changer le paramètre."
- },
- "AllowWorkAccounts": {
- "title": "Autoriser uniquement les comptes professionnels ou scolaires",
- "tooltip": " Si ce paramètre est activé, les utilisateurs ne peuvent pas ajouter de comptes e-mail et de stockage personnels dans Outlook. Si un utilisateur ajoute un compte personnel dans Outlook, il est invité à le supprimer. S'il ne le supprime pas, l'ajout du compte professionnel ou scolaire échoue."
- },
- "BlockExternalImages": {
- "title": "Bloquer les images externes",
- "tooltip": "Si le blocage des images externes est activé, l'application empêche le téléchargement des images hébergées sur Internet qui sont incorporées dans le corps du message. S'il n'est pas configuré, le paramètre d'application par défaut a la valeur Désactivé"
- },
- "ConfigureEmail": {
- "title": "Configurer les paramètres du compte e-mail"
- },
- "DefaultAppSignatureSetting": {
- "Tooltip": {
- "android": "La signature d'application par défaut indique si l'application utilise « Obtenir Outlook pour Android » comme signature par défaut pendant la composition du message. Si le paramètre est désactivé, la signature par défaut n'est pas utilisée. Toutefois, les utilisateurs peuvent ajouter leur propre signature.\r\n\r\nS'il est défini sur Non configuré, le paramètre d'application par défaut est activé.",
- "iOS": "La signature d'application par défaut indique si l'application utilise « Obtenir Outlook pour iOS » comme signature par défaut pendant la composition du message. Si le paramètre est désactivé, la signature par défaut n'est pas utilisée. Toutefois, les utilisateurs peuvent ajouter leur propre signature.\r\n\r\nS'il est défini sur Non configuré, le paramètre d'application par défaut est activé."
- },
- "title": "Signature d'application par défaut"
- },
- "OfficeFeedReplies": {
- "title": "Flux Discover",
- "tooltip": "Le flux Discover couvre vos fichiers Office les plus fréquemment consultés. Par défaut, ce flux est activé quand Delve est activé pour l'utilisateur. Si l'option n'est pas configurée, le paramètre d'application par défaut est défini sur Activé."
- },
- "OrganizeMailByThread": {
- "title": "Organiser le courrier par conversation",
- "tooltip": "Le comportement par défaut dans Outlook consiste à regrouper les conversations dans une vue par conversation. Si ce paramètre est désactivé, Outlook affiche les courriers individuellement et ne les regroupe pas par conversation."
- },
- "PlayMyEmails": {
- "title": "Lire mes e-mails",
- "tooltip": "La fonctionnalité Lire mes e-mails n’est pas activée par défaut dans l’application, mais elle est promue aux utilisateurs éligibles via une bannière dans la boîte de réception. Quand la valeur est Désactivé, cette fonctionnalité n’est pas promue aux utilisateurs éligibles dans l’application. Les utilisateurs peuvent choisir d’activer manuellement Lire mes e-mails à partir de l’application, même si cette fonctionnalité est désactivée. Quand la valeur n’est pas configurée, le paramètre d’application par défaut est activé et la fonctionnalité est promue aux utilisateurs éligibles."
- },
- "SuggestedReplies": {
- "title": "Réponses suggérées",
- "tooltip": "Quand vous ouvrez un message, Outlook peut suggérer des réponses sous le message. Si vous sélectionnez une réponse suggérée, vous pouvez la modifier avant de l'envoyer."
- },
- "SyncCalendars": {
- "title": "Synchroniser les calendriers",
- "tooltip": "Spécifie si les utilisateurs peuvent synchroniser leur calendrier Outlook avec la base de données et l’application du calendrier natif."
- },
- "TextPredictions": {
- "title": "Prédictions de texte",
- "tooltip": "Outlook peut suggérer des mots et des expressions quand vous composez des messages. Quand Outlook propose une suggestion, faites un balayage pour l’accepter. Quand l’option n’est pas configurée, le paramètre de l’application par défaut est défini sur Activé."
+ "WindowsQualityUpdateProfile": {
+ "Details": {
+ "DaysUntilForcedReboot": {
+ "label": "Nombre de jours à attendre avant l’application du redémarrage"
+ },
+ "Description": {
+ "label": "Description"
+ },
+ "Name": {
+ "label": "Nom"
+ },
+ "QualityUpdateRelease": {
+ "label": "Accélérez l’installation des mises à jour qualité si la version du système d’exploitation de l’appareil est inférieure à :"
+ },
+ "bladeTitle": "Mises à jour qualité Windows 10 et versions ultérieures (préversion)",
+ "loadError": "Échec du chargement !"
+ },
+ "TabName": {
+ "qualityUpdateSettings": "Paramètres"
+ },
+ "infoBoxText": "Le seul contrôle de mise à jour qualité dédié, qui n’est actuellement pas la stratégie d’anneau de mise à jour existante pour Windows 10 et versions ultérieures, permet d’accélérer les mises à jour qualité pour les appareils qui sont au-dessus d’un niveau de correctif spécifié. Des contrôles supplémentaires seront disponibles à l’avenir.",
+ "warningBoxText": "Alors que l’accélération des mises à jour logicielles peut contribuer à réduire la durée de la mise en conformité lorsque cela est nécessaire, cela a un impact plus grand sur la productivité de l’utilisateur final. La probabilité que ce dernier subisse un redémarrage pendant les heures de bureau est considérablement plus élevée."
+ },
+ "TermsOfUse": {
+ "Languages": {
+ "addLanguage": "Add language",
+ "af": "Afrikaans",
+ "am": "Amharic",
+ "arSA": "Arabic (Saudi Arabia)",
+ "as": "Assamese",
+ "az": "Azerbaijani",
+ "be": "Belarusian",
+ "bg": "Bulgarian",
+ "bn": "Bangla",
+ "bnIN": "Bangla (India)",
+ "bs": "Bosnian",
+ "ca": "Catalan",
+ "caESvalencia": "Valencian (Spain)",
+ "cs": "Czech",
+ "cy": "Welsh",
+ "da": "Danish",
+ "de": "German",
+ "default": "Default",
+ "defaultDetailsTag": "{0} (Default)",
+ "el": "Greek",
+ "en": "English",
+ "enGB": "English (United Kingdom)",
+ "es": "Spanish",
+ "esMX": "Spanish (Mexico)",
+ "et": "Estonian",
+ "eu": "Basque",
+ "fa": "Persian",
+ "fi": "Finnish",
+ "fil": "Filipino",
+ "fr": "French",
+ "frCA": "French (Canada)",
+ "ga": "Irish",
+ "gd": "Scottish Gaelic",
+ "gl": "Galician",
+ "gu": "Gujarati",
+ "ha": "Hausa",
+ "he": "Hebrew",
+ "hi": "Hindi",
+ "hr": "Croatian",
+ "hu": "Hungarian",
+ "hy": "Armenian",
+ "id": "Indonesian",
+ "ig": "Igbo",
+ "is": "Icelandic",
+ "it": "Italian",
+ "ja": "Japanese",
+ "ka": "Georgian",
+ "kk": "Kazakh",
+ "km": "Khmer",
+ "kn": "Kannada",
+ "ko": "Korean",
+ "kok": "Konkani",
+ "kuArab": "Central Kurdish (Arabic)",
+ "ky": "Kyrgyz",
+ "languageOptions": "Language Options",
+ "lb": "Luxembourgish",
+ "lo": "Lao",
+ "lt": "Lithuanian",
+ "lv": "Latvian",
+ "mi": "Maori",
+ "mk": "Macedonian",
+ "ml": "Malayalam",
+ "mn": "Mongolian",
+ "mr": "Marathi",
+ "ms": "Malay",
+ "mt": "Maltese",
+ "ne": "Nepali",
+ "nl": "Dutch",
+ "nnNO": "Norwegian, Nynorsk (Norway)",
+ "no": "Norwegian",
+ "notSpecified": "Language not specified",
+ "nso": "Sesotho sa Leboa",
+ "or": "Odia",
+ "paArabPK": "Punjabi (Islamic Republic of Pakistan)",
+ "paIN": "Punjabi (India)",
+ "pl": "Polish",
+ "prs": "Dari",
+ "ptBR": "Portuguese (Brazil)",
+ "ptPT": "Portuguese (Portugal)",
+ "quz": "Quechua",
+ "ro": "Romanian",
+ "ru": "Russian",
+ "rw": "Kinyarwanda",
+ "sd": "Sindhi",
+ "si": "Sinhala",
+ "sk": "Slovak",
+ "sl": "Slovenian",
+ "sq": "Albanian",
+ "srCyrlBA": "Serbian (Cyrillic, Bosnia and Herzegovina)",
+ "srCyrlRS": "Serbian (Cyrillic, Serbia)",
+ "srLatnRS": "Serbian (Latin, Serbia)",
+ "sv": "Swedish",
+ "sw": "Kiswahili",
+ "ta": "Tamil",
+ "te": "Telugu",
+ "tg": "Tajik",
+ "th": "Thai",
+ "ti": "Tigrinya",
+ "tk": "Turkmen",
+ "tn": "Setswana",
+ "tr": "Turkish",
+ "tt": "Tatar",
+ "ug": "Uyghur",
+ "uk": "Ukrainian",
+ "ur": "Urdu",
+ "uz": "Uzbek",
+ "vi": "Vietnamese",
+ "wo": "Wolof",
+ "xh": "isiXhosa",
+ "yo": "Yoruba",
+ "zhHans": "Chinese (Simplified)",
+ "zhHant": "Chinese (Traditional)",
+ "zu": "isiZulu"
+ },
+ "AcceptanceExpirationFrequency": {
+ "annually": "Annually",
+ "biannually": "Bi-annually",
+ "monthly": "Monthly",
+ "quarterly": "Quarterly"
},
- "ThemesEnabled": {
- "title": "Thèmes activés",
- "tooltip": "Spécifie si l’utilisateur est autorisé à utiliser un thème visuel personnalisé."
- }
- },
+ "Wizard": {
+ "AgreementTargetEntityScope": {
+ "NotSelected": {
+ "label": "None selected"
+ },
+ "selectEntityTitle": "Select group",
+ "title": "Select group"
+ },
+ "PolicyFile": {
+ "Languages": {
+ "Empty": {
+ "default": "Select default language",
+ "nonDefault": "Select a language"
+ }
+ },
+ "Validations": {
+ "duplicateLanguage": "Oops, {0} appears to be selected multiple times. Language selection must be unique."
+ }
+ },
+ "PolicyTemplate": {
+ "InfoBox": {
+ "allGuestsAllApps": "A conditional access policy will be created for all guests and all cloud apps. This policy impacts the Azure portal. Once this is created you might be required to sign-out and sign-in.",
+ "allUsersAllApps": "A conditional access policy will be created for all users and all cloud apps. This policy impacts the Azure portal. Once this is created you will be required to sign-out and sign-in.",
+ "custom": "Select the users, groups, and apps that this Terms of Use will be applied to.",
+ "noPolicy": "This terms of use will appear in the grant control list when creating a conditional access policy."
+ }
+ },
+ "Section": {
+ "conditionalAccessSubtitle": "Enforce with conditional access policy templates",
+ "conditionalAccessTitle": "Conditional access",
+ "termsOfUseSubtitle": "Create and upload documents",
+ "termsOfUseTitle": "Terms of use"
+ },
+ "acceptanceDurationInfo": "The terms of use will be enforced immediately and each user will have to re-consent every specified number of days.",
+ "acceptanceDurationLabel": "Duration before re-acceptance required (days)",
+ "acceptanceDurationPlaceholder": "Example: '90'",
+ "acceptanceExpirationFrequencyInfo": "Require users to consent on a recurring basis.",
+ "acceptanceExpirationFrequencyLabel": "Frequency",
+ "acceptanceExpirationStartDateTimeInfo": "The terms of use will be enforced immediately and users will be required to re-consent on this date.",
+ "acceptanceExpirationStartDateTimeLabel": "Expire starting on",
+ "agreementIsPerDeviceAcceptanceRequiredInfo": "The end users will be required to consent to the terms of use on every device.",
+ "agreementIsPerDeviceAcceptanceRequiredLabel": "Require users to consent on every device",
+ "agreementIsViewingBeforeAcceptanceRequiredInfo": "The end users will be required to view the terms of use prior to accepting.",
+ "agreementIsViewingBeforeAcceptanceRequiredLabel": "Require users to expand the terms of use",
+ "agreementNameInfo": "Name will be used to manage the terms of use within the Azure portal.",
+ "agreementNameLabel": "Name",
+ "agreementNamePlaceholderText": "Example: 'All users terms of use'",
+ "agreementRequirmentLabel": "Required Upon",
+ "agreementTargetEntityLabel": "Users targeted",
+ "agreementUploadPolicyLabel": "Terms of use",
+ "agreementUploadPolicyPlaceholderText": "Upload required PDF",
+ "createButtonLabel": "Create",
+ "createPolicyInfo": "In order to enforce the terms of use, a conditional access policy is required. You can create a conditional access policy targeted to specific users and applications later or use one of the predefined templates.",
+ "createPolicyLabel": "Create a policy",
+ "isAcceptanceExpirationEnabledInfo": "The terms of use will be enforced immediately and all users will be forced to re-consent on a schedule.",
+ "isAcceptanceExpirationEnabledLabel": "Expire consents",
+ "pdfValidationInvalidFileFormat": "The file must be in the .pdf format.",
+ "policyFilesInfo": "Upload a PDF file containing the terms of use that your end users must accept. Based on end user preferences they will be shown the appropriate language or if not match the default language will be shown.
For end users agreeing on mobile devices, we recommend the PDF font size to be at least 24 pt.
Display name will be the title of the terms of use that is presented to the end user.",
+ "policyFilesLabel": "Terms of use document",
+ "policyTemplateInfo": "These templates are pre configured conditional access policies that are targeted to specific users and applications.",
+ "policyTemplateLabel": "Policy templates",
+ "title": "New terms of use"
+ }
+ },
+ "TACSettings": {
+ "edgeSettings": "Paramètres de configuration Edge",
+ "edgeWindowsDataProtectionSettings": "Paramètres de protection des données Microsoft Edge (Windows) - Préversion",
+ "edgeWindowsSettings": "Paramètres de configuration Microsoft Edge (Windows) - Préversion",
+ "generalAppConfig": "Configuration générale de l'application",
+ "generalSettings": "Paramètres de configuration généraux",
+ "outlookSMIMEConfig": "Paramètres S/MIME Outlook",
+ "outlookSettings": "Paramètres de configuration Outlook",
+ "sMIME": "S/MIME"
+ },
+ "MicrosoftEdgeChannel": {
+ "beta": "Beta",
+ "dev": "Dev",
+ "stable": "Stable"
+ },
+ "WipPolicySettings": {
+ "addNetworkBoundary": "Ajouter une limite réseau",
+ "addNetworkBoundaryButton": "Ajouter une limite réseau...",
+ "allowWindowsSearch": "Autoriser Windows Search à rechercher dans les données d'entreprise chiffrées et dans les applications du Windows Store",
+ "authoritativeIpRanges": "La liste Plages IP de l'entreprise fait autorité (ne pas détecter automatiquement)",
+ "authoritativeProxyServers": "La liste Serveurs proxy de l'entreprise fait autorité (ne pas détecter automatiquement)",
+ "boundaryType": "Type de limite",
+ "cloudResources": "Ressources cloud",
+ "corporateIdentity": "Identité d'entreprise",
+ "dataRecoveryCert": "Charger un certificat d'agent de récupération de données pour autoriser la récupération de données chiffrées",
+ "editNetworkBoundary": "Modifier la limite réseau",
+ "enrollmentState": "État de l'inscription",
+ "iPv4Ranges": "Plages d'adresses IPv4",
+ "iPv6Ranges": "Plages d'adresses IPv6",
+ "internalProxyServers": "Serveurs proxy internes",
+ "maxInactivityTime": "Durée maximale (en minutes) autorisée pendant laquelle l'appareil peut rester inactif avant d'être verrouillé par un mot de passe ou un code PIN",
+ "maxPasswordAttempts": "Nombre d'échecs d'authentification autorisés avant la réinitialisation de l'appareil",
+ "mdmDiscoveryUrl": "URL de détection MDM",
+ "mdmRequiredSettingsInfo": "Cette stratégie s'applique uniquement à Windows 10 Édition anniversaire et supérieure. Cette stratégie utilise la Protection des informations Windows pour appliquer la protection.",
+ "minimumPinLength": "Définir le nombre minimal de caractères obligatoires dans le code PIN",
+ "name": "Nom",
+ "networkBoundariesGridEmptyText": "Les limites réseau que vous ajoutez apparaissent ici",
+ "networkBoundary": "Limite réseau",
+ "networkDomainNames": "Domaines réseau",
+ "neutralResources": "Ressources neutres",
+ "passportForWork": "Utiliser Windows Hello Entreprise comme mode de connexion à Windows",
+ "pinExpiration": "Spécifier la durée (en jours) pendant laquelle un code PIN peut être utilisé avant que le système demande à l'utilisateur de le changer",
+ "pinHistory": "Spécifier le nombre d'anciens codes PIN associés à un compte d'utilisateur qui peuvent être réutilisés",
+ "pinLowercaseLetters": "Configurer l'utilisation des lettres minuscules dans le code PIN Windows Hello Entreprise",
+ "pinSpecialCharacters": "Configurer l'utilisation des caractères spéciaux dans le code PIN Windows Hello Entreprise",
+ "pinUppercaseLetters": "Configurer l'utilisation des lettres majuscules dans le code PIN Windows Hello Entreprise",
+ "protectUnderLock": "Empêcher les applications d'accéder aux données d'entreprise quand l'appareil est verrouillé. S'applique uniquement à Windows 10 Mobile",
+ "protectedDomainNames": "Domaines protégés",
+ "proxyServers": "Serveurs proxy",
+ "requireAppPin": "Désactiver le code PIN de l'application quand le code PIN de l'appareil est géré",
+ "requiredSettings": "Paramètres obligatoires",
+ "requiredSettingsInfo": "Le changement d'étendue ou la suppression de cette stratégie entraîne le déchiffrement des données d'entreprise.",
+ "revokeOnMdmHandoff": "Révoquer l'accès aux données protégées quand l'appareil s'inscrit à MDM",
+ "revokeOnUnenroll": "Révoquer les clés de chiffrement lors de la désinscription",
+ "rmsTemplateForEdp": "Spécifier l'ID de modèle à utiliser pour Azure RMS",
+ "showWipIcon": "Afficher l'icône de protection des données d'entreprise",
+ "type": "Type",
+ "useRmsForWip": "Utiliser Azure RMS pour WIP",
+ "value": "Valeur",
+ "weRequiredSettingsInfo": "Cette stratégie s'applique uniquement à Windows 10 Creators Update et ultérieur. Cette stratégie utilise la Protection des informations Windows et la gestion des applications mobiles Windows pour appliquer la protection.",
+ "wipProtectionMode": "Mode Protection des informations Windows",
+ "withEnrollment": "Avec inscription",
+ "withoutEnrollment": "Sans inscription"
+ },
+ "OfficeApplicationAdditionalType": {
+ "projectProRetail": "Client de bureau Project Online",
+ "visioProRetail": "Visio Online Plan 2"
+ },
+ "Countries": {
+ "ae": "Émirats arabes unis",
+ "ag": "Antigua-et-Barbuda",
+ "ai": "Anguilla",
+ "al": "Albanie",
+ "am": "Arménie",
+ "ao": "Angola",
+ "ar": "Argentine",
+ "at": "Autriche",
+ "au": "Australie",
+ "az": "Azerbaïdjan",
+ "bb": "Barbade",
+ "be": "Belgique",
+ "bf": "Burkina Faso",
+ "bg": "Bulgarie",
+ "bh": "Bahreïn",
+ "bj": "Bénin",
+ "bm": "Bermudes",
+ "bn": "Brunéi Darussalam",
+ "bo": "Bolivie",
+ "br": "Brésil",
+ "bs": "Bahamas",
+ "bt": "Bhoutan",
+ "bw": "Botswana",
+ "by": "Bélarus",
+ "bz": "Belize",
+ "ca": "Canada",
+ "cg": "République du Congo",
+ "ch": "Suisse",
+ "cl": "Chili",
+ "cn": "Chine",
+ "co": "Colombie",
+ "cr": "Costa Rica",
+ "cv": "Cabo Verde",
+ "cy": "Chypre",
+ "cz": "République tchèque",
+ "de": "Allemagne",
+ "dk": "Danemark",
+ "dm": "Dominique",
+ "do": "République dominicaine",
+ "dz": "Algérie",
+ "ec": "Équateur",
+ "ee": "Estonie",
+ "eg": "Égypte",
+ "es": "Espagne",
+ "fi": "Finlande",
+ "fj": "Fidji",
+ "fm": "États fédérés de Micronésie",
+ "fr": "France",
+ "gb": "Royaume-Uni",
+ "gd": "Grenade",
+ "gh": "Ghana",
+ "gm": "Gambie",
+ "gr": "Grèce",
+ "gt": "Guatemala",
+ "gw": "Guinée-Bissau",
+ "gy": "Guyana",
+ "hk": "Hong Kong",
+ "hn": "Honduras",
+ "hr": "Croatie",
+ "hu": "Hongrie",
+ "id": "Indonésie",
+ "ie": "Irlande",
+ "il": "Israël",
+ "in": "Inde",
+ "is": "Islande",
+ "it": "Italie",
+ "jm": "Jamaïque",
+ "jo": "Jordanie",
+ "jp": "Japon",
+ "ke": "Kenya",
+ "kg": "Kirghizistan",
+ "kh": "Cambodge",
+ "kn": "Saint-Christophe-et-Niévès",
+ "kr": "République de Corée",
+ "kw": "Koweït",
+ "ky": "Cayman (îles)",
+ "kz": "Kazakhstan",
+ "la": "République démocratique populaire lao",
+ "lb": "Liban",
+ "lc": "Sainte-Lucie",
+ "lk": "Sri Lanka",
+ "lr": "Libéria",
+ "lt": "Lituanie",
+ "lu": "Luxembourg",
+ "lv": "Lettonie",
+ "md": "République de Moldova",
+ "mg": "Madagascar",
+ "mk": "Macédoine du Nord",
+ "ml": "Mali",
+ "mn": "Mongolie",
+ "mo": "Macao",
+ "mr": "Mauritanie",
+ "ms": "Montserrat",
+ "mt": "Malte",
+ "mu": "Maurice",
+ "mw": "Malawi",
+ "mx": "Mexique",
+ "my": "Malaisie",
+ "mz": "Mozambique",
+ "na": "Namibie",
+ "ne": "Niger",
+ "ng": "Nigéria",
+ "ni": "Nicaragua",
+ "nl": "Pays-Bas",
+ "no": "Norvège",
+ "np": "Népal",
+ "nz": "Nouvelle-Zélande",
+ "om": "Oman",
+ "pa": "Panama",
+ "pe": "Pérou",
+ "pg": "Papouasie-Nouvelle-Guinée",
+ "ph": "Philippines",
+ "pk": "Pakistan",
+ "pl": "Pologne",
+ "pt": "Portugal",
+ "pw": "Palaos",
+ "py": "Paraguay",
+ "qa": "Qatar",
+ "ro": "Roumanie",
+ "ru": "Russie",
+ "sa": "Arabie saoudite",
+ "sb": "Salomon (îles)",
+ "sc": "Seychelles",
+ "se": "Suède",
+ "sg": "Singapour",
+ "si": "Slovénie",
+ "sk": "Slovaquie",
+ "sl": "Sierra Leone",
+ "sn": "Sénégal",
+ "sr": "Suriname",
+ "st": "Sao Tomé-et-Principe",
+ "sv": "El Salvador",
+ "sz": "Swaziland",
+ "tc": "Turques-et-Caïques",
+ "td": "Tchad",
+ "th": "Thaïlande",
+ "tj": "Tadjikistan",
+ "tm": "Turkménistan",
+ "tn": "Tunisie",
+ "tr": "Turquie",
+ "tt": "Trinité-et-Tobago",
+ "tw": "Taïwan",
+ "tz": "Tanzanie",
+ "ua": "Ukraine",
+ "ug": "Ouganda",
+ "us": "États-Unis",
+ "uy": "Uruguay",
+ "uz": "Ouzbékistan",
+ "vc": "Saint-Vincent-et-les-Grenadines",
+ "ve": "Venezuela",
+ "vg": "Îles Vierges britanniques",
+ "vn": "Vietnam",
+ "ye": "Yémen",
+ "za": "Afrique du Sud",
+ "zw": "Zimbabwe"
+ },
+ "OfficeUpdateChannel": {
+ "current": "Canal actuel",
+ "deferred": "Canal Entreprise semi-annuel",
+ "firstReleaseCurrent": "Canal actuel (préversion)",
+ "firstReleaseDeferred": "Canal Entreprise biannuel (préversion)",
+ "monthlyEnterprise": "Canal d’entreprise mensuel",
+ "placeHolder": "Sélectionner un élément"
+ },
+ "AppProtection": {
+ "allAppTypes": "Cibler sur tous les types d'application",
+ "androidPlatformLabel": "Android",
+ "appsInAndroidWorkProfile": "Applications dans le profil professionnel Android",
+ "appsOnIntuneManagedDevices": "Applications sur les appareils gérés par Intune",
+ "appsOnUnmanagedDevices": "Applications sur les appareils non gérés",
+ "iOSPlatformLabel": "iOS/iPadOS",
+ "iosAndroidMacPlatformLabel": "iOS, Android, Mac",
+ "iosAndroidPlatformLabel": "iOS, Android",
+ "macPlatformLabel": "Mac",
+ "notAvailable": "Indisponible",
+ "windows10PlatformLabel": "Windows 10 et ultérieur",
+ "withEnrollment": "Avec inscription",
+ "withoutEnrollment": "Sans inscription"
+ },
+ "InstallContextType": {
+ "device": "Appareil",
+ "deviceContext": "Contexte d'appareil",
+ "user": "Utilisateur",
+ "userContext": "Contexte utilisateur"
+ },
+ "ProactiveRemediations": {
+ "Create": {
+ "Basics": {
+ "DescriptionMultiLineTextBox": {
+ "label": "Description",
+ "placeholder": "Entrer une description"
+ },
+ "NameTextBox": {
+ "label": "Nom",
+ "placeholder": "Entrer un nom"
+ },
+ "PublisherTextBox": {
+ "label": "Éditeur",
+ "placeholder": "Entrer un éditeur"
+ },
+ "VersionTextBox": {
+ "label": "Version"
+ },
+ "headerDescription": "Créez un package de script personnalisé à partir des scripts de détection et de correction que vous avez écrits."
+ },
+ "ScopeTags": {
+ "headerDescription": "Sélectionnez un ou plusieurs groupes pour attribuer le package de script."
+ },
+ "Settings": {
+ "DetectionScriptMultiLineTextBox": {
+ "label": "Script de détection",
+ "placeholder": "Texte du script d’entrée",
+ "requiredValidationMessage": "Entrez le script de détection"
+ },
+ "EnforceScriptSignatureCheckOptionPicker": {
+ "label": "Appliquer la vérification de la signature du script"
+ },
+ "LoggedOnCredentialsOptionPicker": {
+ "label": "Exécuter ce script en utilisant les informations d’identification de l’utilisateur connecté"
+ },
+ "RemediationScript": {
+ "infoBox": "Ce script s’exécute en mode détection seule, car il n’existe pas de script de correction."
+ },
+ "RemediationScriptMultiLineTextBox": {
+ "label": "Script de correction",
+ "placeholder": "Texte du script d’entrée"
+ },
+ "RunIn64BitPSOptionPicker": {
+ "label": "Exécuter le script dans PowerShell 64 bits"
+ },
+ "ScriptMultiLineTextBox": {
+ "base64EncodingValidationMessage": "Script non valide. Un ou plusieurs caractères utilisés dans le script ne sont pas valides."
+ },
+ "headerDescription": "Créez un package de script personnalisé à partir des scripts que vous avez écrits. Par défaut, les scripts s’exécuteront tous les jours sur les appareils concernés.",
+ "infoBox": "Ce script est en lecture seule. Certains paramètres de ce script sont peut-être désactivés."
+ },
+ "title": "Créer un script personnalisé",
+ "ScriptProperties": {
+ "GridHeaders": {
+ "interval": "Intervalle",
+ "time": "Date et heure"
+ },
+ "Interval": {
+ "day": "Se répète chaque jour",
+ "days": "Se répète tous les {0} jours",
+ "hour": "Se répète toutes les heures",
+ "hours": "Se répète toutes les {0} heures",
+ "month": "Se répète tous les mois",
+ "months": "Se répète tous les {0} mois",
+ "week": "Se répète chaque semaine",
+ "weeks": "Se répète toutes les {0} semaines"
+ },
+ "Time": {
+ "utc": "{0} (UTC)",
+ "utcWithDate": "{0} (UTC) le {1}",
+ "withDate": "{0} le {1}"
+ }
+ }
+ },
+ "Edit": {
+ "title": "Modifier - {0}"
+ }
+ },
+ "EdgeAppConfig": {
+ "AllowedURLs": {
+ "title": "URL autorisées",
+ "tooltip": "Spécifiez les sites auxquels vos utilisateurs peuvent accéder dans leur contexte de travail. Aucun autre site n'est autorisé. Vous pouvez choisir de configurer une liste autorisée ou bloquée, mais pas les deux."
+ },
+ "ApplicationProxyRedirection": {
+ "header": "Proxy d'application",
+ "title": "Redirection du proxy d'application",
+ "tooltip": "Activez la redirection du proxy d'application pour permettre aux utilisateurs d'accéder aux liens d'entreprise et aux applications web locales."
+ },
+ "BlockedURLs": {
+ "title": "URL bloquées",
+ "tooltip": "Spécifiez les sites auxquels vos utilisateurs ne peuvent pas accéder dans leur contexte de travail. Tous les autres sites sont autorisés. Vous pouvez choisir de configurer une liste autorisée ou bloquée, mais pas les deux. "
+ },
+ "Bookmarks": {
+ "header": "Signets gérés",
+ "tooltip": "Entrez une liste d'URL avec signet que vos utilisateurs peuvent utiliser dans Microsoft Edge dans leur contexte de travail.",
+ "uRL": "URL"
+ },
+ "HomepageURL": {
+ "header": "Page d'accueil gérée",
+ "title": "URL du raccourci de page d'accueil",
+ "tooltip": "Configurez un raccourci de page d'accueil représenté par la première icône sous la barre de recherche quand les utilisateurs ouvrent un nouvel onglet dans Microsoft Edge."
+ },
+ "PersonalContext": {
+ "label": "Rediriger les sites restreints vers un contexte personnel",
+ "tooltip": "Configurez s'il faut autoriser les utilisateurs à basculer sur leur contexte personnel pour ouvrir les sites restreints."
+ }
+ },
+ "BooleanActions": {
+ "allow": "Accorder",
+ "block": "Bloquer",
+ "configured": "Configuré",
+ "disable": "Désactiver",
+ "dontRequire": "N'exigent pas",
+ "enable": "Activer",
+ "hide": "Masquer",
+ "limit": "Limite",
+ "notConfigured": "Non configuré",
+ "require": "Exiger",
+ "show": "Afficher",
+ "yes": "Oui"
+ },
+ "ArchitectureOptions": {
+ "sixtyFourBit": "64 bits",
+ "thirtyTwoBit": "32 bits"
+ },
+ "WindowsQualityUpdateDaysUntilForcedReboot": {
+ "oneDay": "1 jour",
+ "twoDays": "2 jours",
+ "zeroDays": "0 jour"
+ },
"SoftwareUpdates": {
"BladeTitles": {
"overview": "Vue d'ensemble"
@@ -10800,66 +10878,732 @@
"notScannedYet": "Pas encore analysé",
"outOfDateIosDevices": "Appareils iOS obsolètes"
},
- "ScheduledAction": {
- "Form": {
- "editBlockActionInfo": "Une action de blocage est obligatoire pour toutes les stratégies de conformité.",
- "graceperiod": "Planification (jours après la non-conformité)",
- "graceperiodInfo": "Spécifier le nombre de jours de non-conformité après lesquels cette action doit être déclenchée pour l'appareil de l'utilisateur",
- "subtitle": "Spécifier les paramètres d'action",
- "title": "Paramètres d'action"
- },
- "List": {
- "gracePeriodDay": "{0} jour après la non-conformité",
- "gracePeriodDays": "{0} jours après la non-conformité",
- "gracePeriodHour": "{0} heure après la non-conformité",
- "gracePeriodHours": "{0} heures après la non-conformité",
- "gracePeriodMinute": "{0} minute après la non-conformité",
- "gracePeriodMinutes": "{0} minutes après la non-conformité",
- "immediately": "Immédiatement",
- "schedule": "Planification",
- "scheduleInfoBalloon": "Jours après la non-conformité",
- "subtitle": "Spécifier la séquence d'actions sur les appareils non conformes",
- "title": "Actions"
- },
- "Notification": {
- "additionalEmailLabel": "Autres",
- "additionalRecipients": "Destinataires supplémentaires (via e-mail)",
- "additionalRecipientsBladeTitle": "Sélectionner des destinataires supplémentaires",
- "emailAddressPrompt": "Entrer des adresses e-mail (séparées par des virgules)",
- "invalidEmail": "Adresse e-mail non valide",
- "messageTemplate": "Modèle de message",
- "noneSelected": "Aucun utilisateur sélectionné",
- "notSelected": "Non sélectionné",
- "numSelected": "{0} sélectionné(s)",
- "selected": "Sélectionnée"
+ "ConfigurationTypes": {
+ "Table": {
+ "androidDeviceOwnerGeneral": "Restrictions d'appareil (propriétaire de l'appareil)",
+ "androidForWorkGeneral": "Restrictions d'appareil (profil professionnel)"
+ },
+ "androidCustom": "Personnalisé",
+ "androidDeviceOwnerGeneral": "Restrictions sur l'appareil",
+ "androidDeviceOwnerPkcs": "Certificat PKCS",
+ "androidDeviceOwnerScep": "Certificat SCEP",
+ "androidDeviceOwnerTrustedCertificate": "Certificat approuvé",
+ "androidDeviceOwnerVpn": "VPN",
+ "androidDeviceOwnerWiFi": "Wi-Fi",
+ "androidEmailProfile": "E-mail (Samsung KNOX uniquement)",
+ "androidForWorkCustom": "Personnalisé",
+ "androidForWorkEmailProfile": "Courrier",
+ "androidForWorkGeneral": "Restrictions sur l'appareil",
+ "androidForWorkImportedPFX": "Certificat PKCS importé",
+ "androidForWorkOemConfig": "OEMConfig",
+ "androidForWorkPKCS": "Certificat PKCS",
+ "androidForWorkSCEP": "Certificat SCEP",
+ "androidForWorkTrustedCertificate": "Certificat approuvé",
+ "androidForWorkVpn": "VPN",
+ "androidForWorkWiFi": "Wi-Fi",
+ "androidGeneral": "Restrictions sur l'appareil",
+ "androidImportedPFX": "Certificat PKCS importé",
+ "androidPKCS": "Certificat PKCS",
+ "androidSCEP": "Certificat SCEP",
+ "androidTrustedCertificate": "Certificat approuvé",
+ "androidVPN": "VPN",
+ "androidWiFi": "Wi-Fi",
+ "androidZebraMx": "Profil MX (Zebra uniquement)",
+ "complianceAndroid": "Stratégie de conformité Android",
+ "complianceAndroidDeviceOwner": "Profil professionnel complètement managé, dédié et appartenant à l’entreprise",
+ "complianceAndroidEnterprise": "Profil de travail personnel",
+ "complianceAndroidForWork": "Stratégie de conformité d'Android for Work",
+ "complianceIos": "Stratégie de conformité iOS",
+ "complianceMac": "Stratégie de conformité Mac",
+ "complianceWindows10": "Stratégie de conformité Windows 10 et versions ultérieures",
+ "complianceWindows10Mobile": "Stratégie de conformité Windows 10 Mobile",
+ "complianceWindows8": "Stratégie de conformité Windows 8",
+ "complianceWindowsPhone": "Stratégie de conformité Windows Phone",
+ "exchangeActiveSync": "Exchange Active Sync",
+ "iosCustom": "Personnalisé",
+ "iosDerivedCredentialAuthenticationConfiguration": "Informations d'identification PIV dérivées",
+ "iosDeviceFeatures": "Fonctionnalités de l'appareil",
+ "iosEDU": "Éducation",
+ "iosEducation": "Éducation",
+ "iosEmailProfile": "Courrier",
+ "iosGeneral": "Restrictions sur l'appareil",
+ "iosImportedPFX": "Certificat PKCS importé",
+ "iosPKCS": "Certificat PKCS",
+ "iosPresets": "Présélections",
+ "iosSCEP": "Certificat SCEP",
+ "iosTrustedCertificate": "Certificat approuvé",
+ "iosVPN": "VPN",
+ "iosVPNZscaler": "VPN",
+ "iosWiFi": "Wi-Fi",
+ "macCustom": "Personnalisé",
+ "macDeviceFeatures": "Fonctionnalités de l'appareil",
+ "macEndpointProtection": "Endpoint protection",
+ "macExtensions": "Extensions",
+ "macGeneral": "Restrictions sur l'appareil",
+ "macImportedPFX": "Certificat PKCS importé",
+ "macSCEP": "Certificat SCEP",
+ "macTrustedCertificate": "Certificat approuvé",
+ "macVPN": "VPN",
+ "macWiFi": "Wi-Fi",
+ "settingsCatalog": "Catalogue des paramètres (préversion)",
+ "unsupported": "Non pris en charge",
+ "windows10AdministrativeTemplate": "Modèles d'administration (préversion)",
+ "windows10Atp": "Microsoft Defender pour point de terminaison (appareils de bureau exécutant Windows 10 ou versions ultérieures)",
+ "windows10Custom": "Personnalisé",
+ "windows10DesktopSoftwareUpdate": "Mises à jour logicielles",
+ "windows10DeviceFirmwareConfigurationInterface": "Interface de configuration du microprogramme d'appareil",
+ "windows10EmailProfile": "Courrier",
+ "windows10EndpointProtection": "Endpoint protection",
+ "windows10EnterpriseDataProtection": "Protection des informations Windows",
+ "windows10General": "Restrictions sur l'appareil",
+ "windows10ImportedPFX": "Certificat PKCS importé",
+ "windows10Kiosk": "Kiosque",
+ "windows10NetworkBoundary": "Limite réseau",
+ "windows10PKCS": "Certificat PKCS",
+ "windows10PolicyOverride": "Remplacer la stratégie de groupe",
+ "windows10SCEP": "Certificat SCEP",
+ "windows10SecureAssessmentProfile": "Profil Éducation",
+ "windows10SharedPC": "Appareil multi-utilisateur partagé",
+ "windows10TeamGeneral": "Restrictions sur les appareils (Windows 10 Collaboration)",
+ "windows10TrustedCertificate": "Certificat approuvé",
+ "windows10VPN": "VPN",
+ "windows10WiFi": "Wi-Fi",
+ "windows10WiFiCustom": "Wi-Fi personnalisé",
+ "windows8General": "Restrictions sur l'appareil",
+ "windows8SCEP": "Certificat SCEP",
+ "windows8TrustedCertificate": "Certificat approuvé",
+ "windows8VPN": "VPN",
+ "windows8WiFi": "Importation Wi-Fi",
+ "windowsDeliveryOptimization": "Optimisation de livraison",
+ "windowsDomainJoin": "Jonction de domaine",
+ "windowsEditionUpgrade": "Mise à niveau de l'édition et changement de mode",
+ "windowsIdentityProtection": "Identity Protection",
+ "windowsPhoneCustom": "Personnalisé",
+ "windowsPhoneEmailProfile": "Courrier",
+ "windowsPhoneGeneral": "Restrictions sur l'appareil",
+ "windowsPhoneImportedPFX": "Certificat PKCS importé",
+ "windowsPhoneSCEP": "Certificat SCEP",
+ "windowsPhoneTrustedCertificate": "Certificat approuvé",
+ "windowsPhoneVPN": "VPN",
+ "IosUpdate": "Stratégie de mise à jour iOS"
+ },
+ "OfficeSuiteAppsTab": {
+ "acceptLicenseOnBehalfOfUsersLabel": "Accepter les termes du contrat de licence logiciel Microsoft au nom des utilisateurs",
+ "appSuiteConfigurationLabel": "Configuration de la suite d'applications",
+ "appSuiteInformationLabel": "Informations sur la suite d'applications",
+ "appsToBeInstalledLabel": "Applications à installer dans le cadre de la suite logicielle",
+ "architectureLabel": "Architecture",
+ "architectureTooltip": "Détermine si l’édition 32 bits ou 64 bits de Applications Microsoft 365 est installée sur les appareils.",
+ "configurationDesignerLabel": "Concepteur de configuration",
+ "configurationFileLabel": "Fichier config",
+ "configurationSettingsFormatLabel": "Format des paramètres de configuration",
+ "configureAppSuiteLabel": "Configurer la suite d'applications",
+ "configuredLabel": "Configuré",
+ "currentVersionLabel": "Version actuelle",
+ "currentVersionTooltip": "Il s’agit de la version actuelle d’Office qui est configurée dans cette suite. Cette valeur est mise à jour lors de la configuration et de l’enregistrement d’une version plus récente.",
+ "enableMicrosoftSearchAsDefaultTooltip": "Installe un service en arrière-plan qui permet de déterminer si une extension Recherche Microsoft dans Bing pour Google Chrome est installée sur l’appareil.",
+ "enterXmlDataLabel": "Entrer des données XML",
+ "languagesLabel": "Langues",
+ "languagesTooltip": "Par défaut, Intune installe Office avec la langue par défaut du système d’exploitation. Choisissez les langues supplémentaires que vous souhaitez installer.",
+ "learnMoreText": "En savoir plus",
+ "newUpdateChannelTooltip": "Définit la fréquence de mise à jour de l’application avec de nouvelles fonctionnalités.",
+ "noCurrentVersionText": "Aucune version actuelle",
+ "noLanguagesSelectedLabel": "Aucune langue sélectionnée",
+ "notConfiguredLabel": "Non configuré",
+ "propertiesLabel": "Propriétés",
+ "removeOtherVersionsLabel": "Supprimer les autres versions",
+ "removeOtherVersionsTooltip": "Sélectionnez Oui pour supprimer les autres versions d’Office (MSI) des appareils utilisateur.",
+ "selectOfficeAppsLabel": "Sélectionner les applications Office",
+ "selectOfficeAppsTooltip": "Sélectionnez les applications Office 365 à installer comme partie de la suite.",
+ "selectOtherOfficeAppsLabel": "Sélectionner d’autres applications Office (licence obligatoire)",
+ "selectOtherOfficeAppsTooltip": "Si vous avez des licences pour ces applications Office supplémentaires, vous pouvez également les affecter avec Intune.",
+ "specificVersionLabel": "Version spécifique",
+ "updateChannelLabel": "Canal de mise à jour",
+ "updateChannelTooltip": "Définit la fréquence de mise à jour de l’application avec de nouvelles fonctionnalités.
\r\nTous les mois- Fournissez les dernières fonctionnalités d’Office aux utilisateurs dès qu’elles sont disponibles.
\r\nCanal d’entreprise mensuel - Fournissez les dernières fonctionnalités d’Office aux utilisateurs une fois par mois, le deuxième mardi du mois.
\r\nTous les mois (ciblé) - Fournissez un aperçu de la sortie du Canal mensuel à venir. Il s’agit d’un canal de mise à jour pris en charge, qui est généralement disponible au moins une semaine à l’avance quand il s’agit de la sortie d’un Canal mensuel qui contient de nouvelles fonctionnalités.
\r\nSemi-Annuel - Fournissez les nouvelles fonctionnalités d’Office aux utilisateurs plusieurs fois par an seulement.
\r\nSemi-annuel (ciblé) - Fournissez l’opportunité de tester le prochain canal semi-annuel aux utilisateurs pilotes et aux testeurs de compatibilité des applications.",
+ "useMicrosoftSearchAsDefault": "Installer le service en arrière-plan pour Recherche Microsoft dans Bing",
+ "useSharedComputerActivationLabel": "Utiliser l'activation de l'ordinateur partagé",
+ "useSharedComputerActivationTooltip": "L’activation d’ordinateurs partagés vous permet de déployer Applications Microsoft 365 sur des ordinateurs utilisés par plusieurs utilisateurs. En principe, les utilisateurs peuvent uniquement installer et activer Applications Microsoft 365 sur un nombre limité d’appareils (5 PC, p. ex.). L’utilisation d’Applications Microsoft 365 avec activation d’un ordinateur partagé n’est pas prise en compte dans cette limite.",
+ "versionToInstallLabel": "Version à installer",
+ "versionToInstallTooltip": "Sélectionnez la version d’Office qui doit être installée.",
+ "xLanguagesSelectedLabel": "{0} langue(s) sélectionnée(s)",
+ "xmlConfigurationLabel": "Configuration XML"
+ },
+ "EnrollmentRestrictions": {
+ "DeletePayloadLink": {
+ "content": "{0} est inclus dans un ou plusieurs ensembles de stratégies. Si vous supprimez {0}, vous ne serez plus en mesure de l'affecter par l'intermédiaire de ces ensembles de stratégies. Supprimer quand même ?",
+ "contentWithError": "{0} est peut-être inclus dans un ou plusieurs ensembles de stratégies. Si vous supprimez {0}, vous ne serez plus en mesure de l'affecter par l'intermédiaire de ces ensembles de stratégies. Supprimer quand même ?",
+ "header": "Voulez-vous vraiment supprimer cette restriction ?"
+ },
+ "DeviceLimit": {
+ "description": "Spécifiez le nombre maximal d'appareils qu'un utilisateur peut inscrire.",
+ "header": "Restrictions de limite d'appareils",
+ "info": "Définissez le nombre d'appareils que chaque utilisateur peut inscrire."
+ },
+ "DeviceType": {
+ "VersionValidation": {
+ "aOSP": "Doit être supérieur ou égal à 1.0.",
+ "android": "Entrez un numéro de version valide. Exemples : 5.0, 5.5.1, 6.0.0.1",
+ "androidForWork": "Entrez un numéro de version valide. Par exemple : 5.0, 5.1.1",
+ "iOS": "Entrez un numéro de version valide. Exemples : 9.0, 10.0, 9.0.2",
+ "mac": "Entrez un numéro de version valide. Exemples : 10, 10.10, 10.10.1",
+ "min": "La valeur minimale ne peut pas être inférieure à {0}",
+ "minMax": "La version minimale ne peut pas être supérieure à la version maximale.",
+ "windows": "Doit être la version 10.0 ou ultérieur. Laisser vide pour autoriser les appareils Windows 8.1",
+ "windowsMobile": "Doit être la version 10.0 ou ultérieur. Laisser vide pour autoriser les appareils Windows 8.1"
+ },
+ "allPlatformsBlocked": "Toutes les plateformes d'appareils sont bloquées. Autorisez l'inscription des plateformes pour permettre leur configuration.",
+ "blockManufacturerPlaceHolder": "Nom du fabricant",
+ "blockManufacturersHeader": "Fabricants bloqués",
+ "cannotRestrict": "Restriction non prise en charge",
+ "configurationDescription": "Spécifiez les restrictions de configuration de plateforme que doit respecter un appareil pour l'inscription. Utilisez des stratégies de conformité pour restreindre les appareils après l'inscription. Définissez des versions au format major.minor.build. Les restrictions de version s'appliquent uniquement aux appareils inscrits avec le portail d'entreprise. Intune classe les appareils comme personnels par défaut. Une action supplémentaire est nécessaire pour classer les appareils comme appartenant à l'entreprise.",
+ "configurationDescriptionLabel": "En savoir plus sur la définition de restrictions d’inscription",
+ "configurations": "Configurer des plateformes",
+ "deviceManufacturer": "Fabricant du périphérique",
+ "header": "Restrictions de type d'appareil",
+ "info": "Définissez les types de plateforme, de version et de gestion qui peuvent être inscrits.",
+ "manufacturer": "Fabricant",
+ "max": "Max",
+ "maxVersion": "Version maximale",
+ "min": "Min",
+ "minVersion": "Version minimale",
+ "newPlatforms": "Vous avez autorisé de nouvelles plateformes. Mettez à jour les configurations de plateforme.",
+ "personal": "Propriété personnelle",
+ "platform": "Plateforme",
+ "platformDescription": "Vous pouvez autoriser l'inscription des plateformes suivantes. Bloquez seulement les plateformes que vous ne pouvez pas prendre en charge. Les plateformes autorisées peuvent être configurées avec des restrictions d'inscription supplémentaires.",
+ "platformSettings": "Paramètres de plateforme",
+ "platforms": "Sélectionner des plateformes",
+ "platformsSelected": "{0} plateformes sélectionnées",
+ "type": "Type",
+ "versions": "versions",
+ "versionsRange": "Autoriser des valeurs min./max. :",
+ "windowsTooltip": "Restreint l'inscription par le biais de la gestion des appareils mobiles (MDM). Ne restreint pas l'installation de l'agent de PC. Seules les versions Windows 10 et Windows 11 sont prises en charge. N'indiquez pas de version afin d'autoriser Windows 8.1."
+ },
+ "Priority": {
+ "saved": "Les priorités de restriction ont été enregistrées."
+ },
+ "Row": {
+ "announce": "Priorité : {0}. Nom : {1}. Attribué : {2}"
+ },
+ "Table": {
+ "deployed": "Déployées",
+ "name": "Nom",
+ "priority": "Priorité"
},
- "block": "Marquer l'appareil comme non conforme",
- "lockDevice": "Verrouiller l'appareil (action locale)",
- "lockDeviceWithPasscode": "Verrouiller l'appareil (action locale)",
- "noAction": "Aucune action",
- "noActionRow": "Aucune action, sélectionnez « Ajouter » pour ajouter une action",
- "pushNotification": "Envoyer des notifications Push à l'utilisateur final",
- "remoteLock": "Verrouiller à distance l'appareil non conforme",
- "removeSourceAccessProfile": "Supprimer le profil d'accès source",
- "retire": "Mettre l’appareil non conforme hors service",
- "wipe": "Réinitialiser",
- "emailNotification": "Envoyer un e-mail à l'utilisateur final"
- },
- "WIPPinRequirements": {
- "WipLowercaseCharacterPinRequirements": {
- "allow": "Autoriser l'utilisation de lettres minuscules dans le code PIN",
- "notAllow": "Ne pas autoriser l'utilisation de lettres minuscules dans le code PIN",
- "requireAtLeastOne": "Exiger l'utilisation d'au moins une lettre minuscule dans le code PIN"
- },
- "WipSpecialCharacterPinRequirements": {
- "allow": "Autoriser l'utilisation de caractères spéciaux dans le code PIN",
- "notAllow": "Ne pas autoriser l'utilisation de caractères spéciaux dans le code PIN",
- "requireAtLeastOne": "Exiger l'utilisation d'au moins un caractère spécial dans le code PIN"
- },
- "WipUppercaseCharacterPinRequirements": {
- "allow": "Autoriser l'utilisation de lettres majuscules dans le code PIN",
- "notAllow": "Ne pas autoriser l'utilisation de lettres majuscules dans le code PIN",
- "requireAtLeastOne": "Exiger l'utilisation d'au moins une lettre majuscule dans le code PIN"
- }
- }
+ "Type": {
+ "limit": "Restriction du nombre limite d'appareils",
+ "type": "Restriction du type d'appareil"
+ },
+ "allUsers": "Tous les utilisateurs",
+ "androidRestrictions": "Restrictions Android",
+ "create": "Créer une restriction",
+ "defaultLimitDescription": "Il s'agit de la restriction de limite d'appareils par défaut appliquée avec la priorité la plus basse à tous les utilisateurs, quelle que soit leur appartenance à un groupe.",
+ "defaultTypeDescription": "Il s'agit de la restriction de type d'appareil par défaut appliquée avec la priorité la plus basse à tous les utilisateurs, quelle que soit leur appartenance à un groupe.",
+ "defaultWhfbDescription": "Il s'agit de la configuration par défaut de Windows Hello Entreprise appliquée avec la priorité la plus basse à tous les utilisateurs, quelle que soit leur appartenance à un groupe.",
+ "deleteMessage": "Les utilisateurs impactés seront limités par la restriction de priorité la plus élevée suivante qui a été affectée, ou par la restriction par défaut si aucune autre restriction n'est affectée.",
+ "deleteTitle": "Voulez-vous vraiment supprimer la restriction {0} ?",
+ "descriptionHint": "Court paragraphe décrivant l'utilisation professionnelle ou le niveau de restriction caractérisé par les paramètres de restriction.",
+ "edit": "Modifier la restriction",
+ "info": "Un appareil doit respecter les restrictions d'inscription affectées à l'utilisateur qui ont la priorité la plus haute. Vous pouvez faire glisser une restriction d'appareil pour changer sa priorité. Les restrictions par défaut ont la priorité la plus basse pour tous les utilisateurs et régissent les inscriptions sans utilisateur. Les restrictions par défaut peuvent être modifiées, mais pas supprimées.",
+ "iosRestrictions": "Restrictions iOS",
+ "mDM": "GPM",
+ "macRestrictions": "Restrictions MacOS",
+ "maxVersion": "Version maximale",
+ "minVersion": "Version minimale",
+ "nameHint": "Il s'agit de l'attribut principal visible pour identifier le jeu de restrictions.",
+ "noAssignmentsStatusBar": "Affectez une restriction à au moins un groupe. Cliquez sur Propriétés.",
+ "notFound": "Restriction introuvable.Elle a peut-être déjà été supprimée.",
+ "personallyOwned": "Appareils personnels",
+ "restriction": "Restriction",
+ "restrictionLowerCase": "restriction",
+ "restrictionType": "Restriction Type",
+ "selectType": "Sélectionner le type de restriction",
+ "selectValidation": "Sélectionnez une plateforme",
+ "typeHint": "Choisissez Restriction de type d'appareil pour restreindre les propriétés de l'appareil. Choisissez Restriction de limite d'appareils pour limiter le nombre d'appareils par utilisateur.",
+ "typeRequired": "Le type de restriction est obligatoire.",
+ "winPhoneRestrictions": "Restrictions Windows Phone",
+ "windowsRestrictions": "Restrictions Windows"
+ },
+ "Titles": {
+ "ChromeOs": {
+ "devices": "Appareils avec SE Chrome"
+ },
+ "ManagedDesktop": {
+ "adminContacts": "Contacts de l’administrateur",
+ "appPackaging": "Empaquetage d’applications",
+ "devices": "Appareils",
+ "feedback": "Commentaires",
+ "gettingStarted": "Mise en route",
+ "messages": "Messages",
+ "onlineResources": "Ressources en ligne",
+ "serviceRequests": "Demandes de service",
+ "settings": "Paramètres",
+ "tenantEnrollment": "Inscription des locataires"
+ },
+ "actions": "Actions en cas de non-conformité",
+ "advancedExchangeSettings": "Paramètres Exchange Online",
+ "advancedThreatProtection": "Microsoft Defender pour point de terminaison",
+ "allApps": "Toutes les applications",
+ "allDevices": "Tous les appareils",
+ "androidFotaDeployments": "Déploiements d’Android FOTA",
+ "appBundles": "Offres groupées d’applications",
+ "appCategories": "Catégories d'applications",
+ "appConfigPolicies": "Stratégies de configuration des applications",
+ "appInstallStatus": "État de l'installation de l'application",
+ "appLicences": "Licences d'application",
+ "appProtectionPolicies": "Stratégies de protection des applications",
+ "appProtectionStatus": "État de protection de l'application",
+ "appSelectiveWipe": "Réinitialisation sélective des applications",
+ "appleVppTokens": "Jetons VPP Apple",
+ "apps": "Applications",
+ "assign": "Affectations",
+ "assignedPermissions": "Autorisations attribuées",
+ "assignedRoles": "Rôles affectés",
+ "autopilotDeploymentReport": "Déploiements AutoPilot (préversion)",
+ "brandingAndCustomization": "Personnalisation",
+ "cartProfiles": "Profils de panier",
+ "certificateConnectors": "Connecteurs de certificat",
+ "chromeEnterprise": "Chrome Enterprise",
+ "compliancePolicies": "Stratégies de conformité",
+ "complianceScriptManagement": "Scripts",
+ "complianceScriptManagementPreview": "Scripts (préversion)",
+ "complianceSettings": "Paramètres de stratégie de conformité",
+ "conditionStatements": "Énoncés des conditions",
+ "conditions": "Emplacements",
+ "configMgr": "Microsoft Endpoint Configuration Manager",
+ "configurationProfiles": "Profils de configuration",
+ "configurationProfilesPreview": "Profils de configuration (aperçu)",
+ "connectorsAndTokens": "Connecteurs et jetons",
+ "corporateDeviceIdentifiers": "Identificateurs d'appareil d'entreprise",
+ "customAttributes": "Attributs personnalisés",
+ "customNotifications": "Notifications personnalisées",
+ "deploymentSettings": "Paramètres de déploiement",
+ "derivedCredentials": "Informations d’identification dérivées",
+ "deviceActions": "Actions de l'appareil",
+ "deviceCategories": "Catégories d'appareils",
+ "deviceCleanUp": "Règles de nettoyage d'appareil",
+ "deviceEnrollmentManagers": "Gestionnaires d'inscription d'appareil",
+ "deviceExecutionStatus": "État de l'appareil",
+ "deviceLimitEnrollmentRestrictions": "Restriction du nombre limite d’appareils lors de l’inscription",
+ "deviceTypeEnrollmentRestrictions": "Restriction du type de plateforme d’appareil lors de l’inscription",
+ "devices": "Appareils",
+ "discoveredApps": "Applications découvertes",
+ "embeddedSIM": "Profils cellulaires eSIM (préversion)",
+ "enrollDevices": "Inscrire des appareils",
+ "enrollmentFailures": "Échecs d'inscription",
+ "enrollmentNotifications": "Notifications d’inscription (préversion)",
+ "enrollmentRestrictions": "Restrictions d'inscription",
+ "exchangeActiveSync": "Exchange ActiveSync",
+ "exchangeServiceConnectors": "Connecteurs de services Exchange",
+ "failuresForFeatureUpdates": "Échecs des mises à jour de fonctionnalités (préversion)",
+ "failuresForQualityUpdates": "Échecs de la mise à jour accélérée de Windows (préversion)",
+ "featureFlighting": "Version d'évaluation des fonctionnalités",
+ "featureUpdateDeployments": "Mises à jour des fonctionnalités pour Windows 10 et versions ultérieures (préversion)",
+ "flighting": "Distribution de version d'évaluation",
+ "fotaUpdate": "Mise à jour de microprogramme en l’air",
+ "groupPolicy": "Modèles d'administration",
+ "groupPolicyAnalytics": "Analytique de la stratégie de groupe",
+ "helpSupport": "Aide et support",
+ "helpSupportReplacement": "Aide et support ({0})",
+ "iOSAppProvisioning": "Profils de provisionnement d'application iOS",
+ "incompleteUserEnrollments": "Inscriptions d'utilisateur incomplètes",
+ "intuneRemoteAssistance": "Aide à distance (préversion)",
+ "iosUpdates": "Mettre à jour les stratégies pour iOS/iPadOS",
+ "legacyPcManagement": "Gestion des PC existants",
+ "macOSSoftwareUpdate": "Stratégies de mise à jour pour macOS",
+ "macOSSoftwareUpdateAccountSummaries": "État d'installation des appareils macOS",
+ "macOSSoftwareUpdateCategorySummaries": "Récapitulatif des mises à jour logicielles",
+ "macOSSoftwareUpdateStateSummaries": "modifications",
+ "managedGooglePlay": "Google Play géré",
+ "msfb": "Microsoft Store pour Entreprises",
+ "myPermissions": "Mes autorisations",
+ "notifications": "Notifications",
+ "officeApps": "Applications Office",
+ "officeProPlusPolicies": "Stratégies pour les applications Office",
+ "onPremise": "Local",
+ "onPremisesConnector": "Connecteur local Exchange ActiveSync",
+ "onPremisesDeviceAccess": "Appareils Exchange ActiveSync",
+ "onPremisesManageAccess": "Accès à Exchange sur site",
+ "outOfDateIosDevices": "Échecs d'installation pour les appareils iOS",
+ "overview": "Vue d'ensemble",
+ "partnerDeviceManagement": "Gestion des appareils partenaires",
+ "perUpdateRingDeploymentState": "Par état d'anneau de déploiement de mises à jour",
+ "permissions": "Autorisations",
+ "platformApps": "{0} applications",
+ "platformDevices": "{0} appareils",
+ "platformEnrollment": "Inscription {0}",
+ "policies": "Stratégies",
+ "previewMDMDevices": "Tous les appareils gérés (préversion)",
+ "profiles": "Profils",
+ "properties": "Propriétés",
+ "reports": "Rapports",
+ "retireNoncompliantDevices": "Mettre hors service les appareils non conformes",
+ "retireNoncompliantDevicesPreview": "Retire noncompliant devices (preview)",
+ "role": "Rôle",
+ "scriptManagement": "Scripts",
+ "securityBaselines": "Bases de référence de sécurité",
+ "serviceToServiceConnector": "Connecteur Exchange Online",
+ "shellScripts": "Scripts shell",
+ "teamViewerConnector": "Connecteur TeamViewer",
+ "telecomeExpenseManagement": "Gestion des dépenses de télécommunication",
+ "tenantAdmin": "Administrateur de locataire",
+ "tenantAdministration": "Administration de locataire",
+ "termsAndConditions": "Conditions générales",
+ "titles": "Titres",
+ "troubleshootSupport": "Dépannage + support",
+ "user": "Utilisateur",
+ "userExecutionStatus": "État de l'utilisateur",
+ "warranty": "Fournisseurs de garantie",
+ "wdacSupplementalPolicies": "Stratégies supplémentaires en mode S",
+ "windows10DriverUpdate": "Mises à jour des pilotes pour Windows 10 et versions ultérieures (aperçu)",
+ "windows10QualityUpdate": "Mises à jour qualité pour Windows 10 et versions ultérieures (préversion)",
+ "windows10UpdateRings": "Mettre à jour les anneaux pour Windows 10 et versions ultérieures",
+ "windows10XPolicyFailures": "Échecs de stratégie Windows 10X",
+ "windowsEnterpriseCertificate": "Certificat d'entreprise Windows",
+ "windowsManagement": "Scripts PowerShell",
+ "windowsSideLoadingKeys": "Clés de chargement indépendant Windows",
+ "windowsSymantecCertificate": "Certificat Windows DigiCert",
+ "windowsThreatReport": "État de l'agent de menace"
+ },
+ "ScopeTypes": {
+ "allDevices": "Tous les appareils",
+ "allUsers": "Tous les utilisateurs",
+ "allUsersAndDevices": "Tous les utilisateurs et tous les appareils",
+ "selectedGroups": "Groupes sélectionnés"
+ },
+ "OfficeApplicationType": {
+ "access": "Access",
+ "bing": "Recherche Microsoft en tant que valeur par défaut",
+ "excel": "Excel",
+ "groove": "OneDrive (Groove)",
+ "lync": "Skype Entreprise",
+ "oneDrive": "OneDrive Desktop",
+ "oneNote": "OneNote",
+ "outlook": "Outlook",
+ "powerPoint": "PowerPoint",
+ "publisher": "Publisher",
+ "teams": "Teams",
+ "word": "Word"
+ },
+ "ApplicableDeviceType": {
+ "iPad": "iPad",
+ "iPhoneAndIPod": "iPhone et iPod"
+ },
+ "Assignment": {
+ "AutoUpdateMode": {
+ "default": "Par défaut",
+ "header": "Priorité de mise à jour",
+ "postponed": "Différé",
+ "priority": "Haute priorité"
+ },
+ "DeliveryOptimizationPriority": {
+ "backgroundNormal": "Arrière-plan ",
+ "displayText": "Téléchargement de contenu dans {0}",
+ "foreground": "Premier plan",
+ "header": "Priorité d’optimisation de la distribution"
+ },
+ "RestartGracePeriod": {
+ "allowSnooze": "Autoriser l'utilisateur à répéter la notification de redémarrage",
+ "countdownDialog": "Sélectionner quand afficher la boîte de dialogue de compte à rebours avant le redémarrage (en minutes)",
+ "durationInMinutes": "Période de grâce de redémarrage de l'appareil (en minutes)",
+ "snoozeDurationInMinutes": "Sélectionner la durée de répétition (en minutes)"
+ },
+ "SoftwareInstallationTime": {
+ "TimeZone": {
+ "label": "Fuseau horaire",
+ "local": "Fuseau horaire de l'appareil ",
+ "utc": "UTC"
+ },
+ "dateAndTimeLabel": "Date et heure",
+ "deadlineTimeColumnLabel": "Échéance d'installation",
+ "deadlineTimeDatePickerErrorMessage": "La date sélectionnée doit être postérieure à la date disponible",
+ "deadlineTimeLabel": "Date d’échéance de l’installation de l’application",
+ "defaultTime": "Dès que possible",
+ "infoText": "Cette application est disponible dès qu’elle a été déployée, sauf si vous spécifiez une heure de disponibilité ci-dessous. S’il s’agit d’une application obligatoire, vous pouvez spécifier l’échéance d’installation.",
+ "specificTime": "Date et heure spécifiques",
+ "startTimeColumnLabel": "Disponibilité",
+ "startTimeDatePickerErrorMessage": "La date sélectionnée doit être antérieure à la date d’échéance",
+ "startTimeLabel": "Disponibilité de l’application"
+ },
+ "restartGracePeriodHeader": "Période de grâce de redémarrage",
+ "restartGracePeriodLabel": "Période de grâce de redémarrage de l'appareil",
+ "summaryTitle": "Expérience utilisateur final"
+ },
+ "EnrollmentType": {
+ "devicesWithEnrollment": "Appareils gérés",
+ "devicesWithoutEnrollment": "Applications gérées"
+ },
+ "PolicySet": {
+ "appManagement": "Gestion des applications",
+ "assignments": "Attributions",
+ "basics": "De base",
+ "deviceEnrollment": "Inscription de l'appareil",
+ "deviceManagement": "Gestion des appareils",
+ "scopeTags": "Balises d'étendue",
+ "appConfigurationTitle": "Stratégies de configuration des applications",
+ "appProtectionTitle": "Stratégies de protection des applications",
+ "appTitle": "Applications",
+ "iOSAppProvisioningTitle": "Profils de provisionnement d'application iOS",
+ "deviceLimitRestrictionTitle": "Restrictions de limite d'appareils",
+ "deviceTypeRestrictionTitle": "Restrictions de type d'appareil",
+ "enrollmentStatusSettingTitle": "Pages d'état d'inscription",
+ "windowsAutopilotDeploymentProfileTitle": "Profils Windows AutoPilot Deployment",
+ "deviceComplianceTitle": "Stratégies de conformité d'appareil",
+ "deviceConfigurationTitle": "Profils de configuration d'appareil",
+ "powershellScriptTitle": "Scripts PowerShell"
+ },
+ "AzureIAMCommon": {
+ "CountryNames": {
+ "countryNameNR": "Nauru",
+ "countryNameBH": "Bahreïn",
+ "countryNameZA": "Afrique du Sud",
+ "countryNameJO": "Jordanie",
+ "countryNameSD": "Soudan",
+ "countryNameNU": "Niue",
+ "countryNameCZ": "République tchèque",
+ "countryNameLT": "Lituanie",
+ "countryNameTK": "Tokelau",
+ "countryNameEC": "Équateur",
+ "countryNameVU": "Vanuatu",
+ "countryNameUG": "Ouganda",
+ "countryNameLI": "Liechtenstein",
+ "countryNameHK": "Hong Kong (R.A.S.)",
+ "countryNameGH": "Ghana",
+ "countryNameSA": "Arabie saoudite",
+ "countryNamePG": "Papouasie-Nouvelle-Guinée",
+ "countryNameBW": "Botswana",
+ "countryNameDG": "Diego Garcia",
+ "countryNameIN": "Inde",
+ "countryNameHN": "Honduras",
+ "countryNameRO": "Roumanie",
+ "countryNameKZ": "Kazakhstan",
+ "countryNameLC": "Sainte-Lucie",
+ "countryNameGE": "Géorgie",
+ "countryNameTT": "Trinité-et-Tobago",
+ "countryNameMP": "Îles Mariannes du Nord",
+ "countryNameMV": "Maldives",
+ "countryNameFI": "Finlande",
+ "countryNameNO": "Norvège",
+ "countryNameEE": "Estonie",
+ "countryNameVE": "Venezuela",
+ "countryNameUZ": "Ouzbékistan",
+ "countryNameME": "Monténégro",
+ "countryNameTJ": "Tadjikistan",
+ "countryNameAW": "Aruba",
+ "countryNameFR": "France",
+ "countryNameOM": "Oman",
+ "countryNameAO": "Angola",
+ "countryNameIT": "Italie",
+ "countryNameAZ": "Azerbaïdjan",
+ "countryNameKG": "Kirghizistan",
+ "countryNameWF": "Wallis-et-Futuna",
+ "countryNameTL": "Timor-Leste",
+ "countryNameFK": "Îles Malouines",
+ "countryNameGY": "Guyana",
+ "countryNameSS": "Soudan du Sud",
+ "countryNameMM": "Myanmar",
+ "countryNameHT": "Haïti",
+ "countryNameSY": "Syrie",
+ "countryNameMD": "Moldova",
+ "countryNameVC": "Saint-Vincent-et-les-Grenadines",
+ "countryNameID": "Indonésie",
+ "countryNameRE": "Réunion",
+ "countryNameER": "Érythrée",
+ "countryNameMK": "Macédoine du Nord",
+ "countryNameTG": "Togo",
+ "countryNamePF": "Polynésie française",
+ "countryNameKY": "Caïmans (Îles)",
+ "countryNameIO": "Territoire britannique de l'océan Indien",
+ "countryNameRU": "Russie",
+ "countryNameMA": "Maroc",
+ "countryNameAU": "Australie",
+ "countryNameBO": "Bolivie",
+ "countryNameVA": "Saint-Siège (État de la Cité du Vatican)",
+ "countryNameVG": "Îles Vierges britanniques",
+ "countryNameFM": "Micronésie",
+ "countryNameAQ": "Antarctique",
+ "countryNameZM": "Zambie",
+ "countryNameBR": "Brésil",
+ "countryNameIS": "Islande",
+ "countryNamePE": "Pérou",
+ "countryNameBG": "Bulgarie",
+ "countryNamePR": "Porto Rico",
+ "countryNameGI": "Gibraltar",
+ "countryNameBS": "Bahamas, Les",
+ "countryNameJE": "Jersey",
+ "countryNameMO": "Macao (R.A.S.)",
+ "countryNameRW": "Rwanda",
+ "countryNameAS": "Samoa américaines",
+ "countryNameBQ": "Bonaire, Saint-Eustache et Saba",
+ "countryNameMF": "Saint-Martin",
+ "countryNameTM": "Turkménistan",
+ "countryNameML": "Mali",
+ "countryNameTO": "Tonga",
+ "countryNameNC": "Nouvelle-Calédonie",
+ "countryNameAC": "Île de l'Ascension",
+ "countryNameBN": "Brunéi Darussalam",
+ "countryNameBD": "Bangladesh",
+ "countryNameMW": "Malawi",
+ "countryNameGM": "Gambie",
+ "countryNameGA": "Gabon",
+ "countryNameCA": "Canada",
+ "countryNameSH": "Sainte-Hélène",
+ "countryNameYT": "Mayotte",
+ "countryNameMN": "Mongolie",
+ "countryNamePA": "Panama",
+ "countryNameCM": "Cameroun",
+ "countryNameNE": "Niger",
+ "countryNameCW": "Curaçao",
+ "countryNameJP": "Japon",
+ "countryNameCY": "Chypre",
+ "countryNameCD": "Congo (République démocratique du)",
+ "countryNameTN": "Tunisie",
+ "countryNameTR": "Turquie",
+ "countryNameWS": "Samoa",
+ "countryNameSE": "Suède",
+ "countryNameXK": "Kosovo",
+ "countryNameKH": "Cambodge",
+ "countryNamePL": "Pologne",
+ "countryNameDZ": "Algérie",
+ "countryNameLR": "Liberia",
+ "countryNameSO": "Somalie",
+ "countryNameDM": "Dominique",
+ "countryNameEG": "Égypte",
+ "countryNameGF": "Guyane française",
+ "countryNameNZ": "Nouvelle-Zélande",
+ "countryNamePS": "Autorité palestinienne",
+ "countryNameIL": "Israël",
+ "countryNameSL": "Sierra Leone",
+ "countryNameGR": "Grèce",
+ "countryNameNG": "Nigeria",
+ "countryNameMR": "Mauritanie",
+ "countryNameVI": "Îles Vierges américaines",
+ "countryNameGQ": "Guinée équatoriale",
+ "countryNameMX": "Mexique",
+ "countryNameDJ": "Djibouti",
+ "countryNameGN": "Guinée",
+ "countryNameCN": "Chine",
+ "countryNameMZ": "Mozambique",
+ "countryNameBV": "Île Bouvet",
+ "countryNameNF": "Île Norfolk",
+ "countryNameTZ": "Tanzanie",
+ "countryNameAI": "Anguilla",
+ "countryNameGS": "Géorgie du Sud-et-les Îles Sandwich du Sud",
+ "countryNameRS": "Serbie",
+ "countryNameCC": "Îles Cocos (Keeling)",
+ "countryNameNA": "Namibie",
+ "countryNameDE": "Allemagne",
+ "countryNameCG": "Congo (République démocratique du)",
+ "countryNameKW": "Koweït",
+ "countryNameMH": "Marshall (îles)",
+ "countryNameVN": "Vietnam",
+ "countryNameBY": "Bélarus",
+ "countryNameMY": "Malaisie",
+ "countryNameST": "São Tomé et Príncipe",
+ "countryNameLS": "Lesotho",
+ "countryNameBI": "Burundi",
+ "countryNameTD": "Tchad",
+ "countryNameCX": "Île Christmas",
+ "countryNameIR": "Iran",
+ "countryNameTV": "Tuvalu",
+ "countryNameGW": "Guinée-Bissau",
+ "countryNameUA": "Ukraine",
+ "countryNameCU": "Cuba",
+ "countryNameCO": "Colombie",
+ "countryNameNI": "Nicaragua",
+ "countryNameHR": "Croatie",
+ "countryNameSC": "Seychelles",
+ "countryNameNL": "Pays-Bas",
+ "countryNameUM": "Îles mineures éloignées des États-Unis",
+ "countryNameIM": "Île de Man",
+ "countryNameFJ": "Fidji",
+ "countryNameSR": "Suriname",
+ "countryNameGT": "Guatemala",
+ "countryNameSM": "Saint-Marin",
+ "countryNameLA": "Laos",
+ "countryNameGB": "Royaume-Uni",
+ "countryNameBB": "Barbade",
+ "countryNameSI": "Slovénie",
+ "countryNameAM": "Arménie",
+ "countryNameAR": "Argentine",
+ "countryNamePM": "Saint-Pierre-et-Miquelon",
+ "countryNameTF": "Terres australes et antarctiques françaises",
+ "countryNameDO": "République dominicaine",
+ "countryNameZW": "Zimbabwe",
+ "countryNameMQ": "Martinique",
+ "countryNamePT": "Portugal",
+ "countryNameCF": "République centrafricaine",
+ "countryNameBE": "Belgique",
+ "countryNameKM": "Comores",
+ "countryNameLY": "Libye",
+ "countryNameIE": "Irlande",
+ "countryNameKP": "Corée du Nord",
+ "countryNameGG": "Guernesey",
+ "countryNameSK": "Slovaquie",
+ "countryNameTC": "Turques-et-Caïques (îles)",
+ "countryNameNP": "Népal",
+ "countryNameBF": "Burkina Faso",
+ "countryNameYE": "Yémen",
+ "countryNameBA": "Bosnie-Herzégovine",
+ "countryNameGP": "Guadeloupe",
+ "countryNameMS": "Montserrat",
+ "countryNameCL": "Chili",
+ "countryNameIQ": "Irak",
+ "countryNameSJ": "Svalbard et Jan Mayen",
+ "countryNameAX": "Îles d'Åland",
+ "countryNameKE": "Kenya",
+ "countryNameGU": "Guam",
+ "countryNameBM": "Bermudes",
+ "countryNameFO": "Féroé (îles)",
+ "countryNameBL": "Saint-Barthélemy",
+ "countryNameLB": "Liban",
+ "countryNameJM": "Jamaïque",
+ "countryNameAF": "Afghanistan",
+ "countryNameES": "Espagne",
+ "countryNameMC": "Monaco",
+ "countryNameSG": "Singapour",
+ "countryNameAL": "Albanie",
+ "countryNameSN": "Sénégal",
+ "countryNameSZ": "Swaziland",
+ "countryNameBZ": "Belize",
+ "countryNameCI": "Côte d’Ivoire",
+ "countryNameTW": "Taïwan",
+ "countryNameUY": "Uruguay",
+ "countryNameCK": "Cook (îles)",
+ "countryNameTH": "Thaïlande",
+ "countryNameHM": "Îles Heard-et-MacDonald",
+ "countryNameGD": "Grenade",
+ "countryNameUS": "États-Unis",
+ "countryNameAT": "Autriche",
+ "countryNameKR": "Corée, République de",
+ "countryNamePK": "Pakistan",
+ "countryNameDK": "Danemark",
+ "countryNameSV": "Salvador",
+ "countryNamePW": "Palaos",
+ "countryNameET": "Éthiopie",
+ "countryNameMG": "Madagascar",
+ "countryNameCR": "Costa Rica",
+ "countryNameLU": "Luxembourg",
+ "countryNameQA": "Qatar",
+ "countryNameBT": "Bhoutan",
+ "countryNameSB": "Salomon (îles)",
+ "countryNameAE": "Émirats arabes unis",
+ "countryNameAD": "Andorre",
+ "countryNameCV": "Cabo Verde",
+ "countryNameAG": "Antigua-et-Barbuda",
+ "countryNameMU": "Maurice",
+ "countryNameHU": "Hongrie",
+ "countryNameSX": "Saint-Martin (partie néerlandaise) ",
+ "countryNameCH": "Suisse",
+ "countryNamePN": "Îles Pitcairn",
+ "countryNameGL": "Groenland",
+ "countryNamePH": "Philippines",
+ "countryNameMT": "Malte",
+ "countryNameKN": "Saint-Christophe-et-Niévès",
+ "countryNameLK": "Sri Lanka",
+ "countryNameKI": "Kiribati",
+ "countryNameBJ": "Bénin",
+ "countryNameLV": "Lettonie",
+ "countryNamePY": "Paraguay"
+ }
+ }
}
diff --git a/Documentation/Strings-hu.json b/Documentation/Strings-hu.json
index ba219ee..8de2745 100644
--- a/Documentation/Strings-hu.json
+++ b/Documentation/Strings-hu.json
@@ -1,1842 +1,4 @@
{
- "InstallContextType": {
- "device": "Eszköz",
- "deviceContext": "Eszközkörnyezet",
- "user": "Felhasználó",
- "userContext": "Felhasználói környezet"
- },
- "WipPolicySettings": {
- "addNetworkBoundary": "Hálózati határ hozzáadása",
- "addNetworkBoundaryButton": "Hálózati határ hozzáadása...",
- "allowWindowsSearch": "A titkosított céges adatok és az áruházbeli alkalmazások keresésének engedélyezése a Windows Search szolgáltatás számára",
- "authoritativeIpRanges": "A vállalati IP-címtartományok listája mérvadó (nincs automatikus észlelés)",
- "authoritativeProxyServers": "A vállalati proxykiszolgálók listája mérvadó (nincs automatikus észlelés)",
- "boundaryType": "Határ típusa",
- "cloudResources": "Felhőerőforrások",
- "corporateIdentity": "Céges identitás",
- "dataRecoveryCert": "A titkosított adatok helyreállításának engedélyezéséhez töltsön fel egy adat-helyreállítási megbízotti (DRA-) tanúsítványt",
- "editNetworkBoundary": "Hálózati határ szerkesztése",
- "enrollmentState": "Regisztráció állapota",
- "iPv4Ranges": "IPv4-tartományok",
- "iPv6Ranges": "IPv6-tartományok",
- "internalProxyServers": "Belső proxykiszolgálók",
- "maxInactivityTime": "Az eszköz által inaktív állapotban eltöltött idő (percben), amelynek elteltével a PIN-kóddal vagy jelszóval feloldható zárolás bekapcsol",
- "maxPasswordAttempts": "Ennyi sikertelen hitelesítési kísérlet után lesz törölve az eszköz tartalma",
- "mdmDiscoveryUrl": "MDM-felderítési URL-cím",
- "mdmRequiredSettingsInfo": "Ez a szabályzat csak a Windows 10 évfordulós kiadására vagy újabb kiadásaira érvényes. A szabályzat a Windows Information Protection (WIP) segítségével biztosítja a védelmi funkciókat.",
- "minimumPinLength": "Adja meg a PIN kód minimális hosszát karakterben",
- "name": "Név",
- "networkBoundariesGridEmptyText": "Itt fog megjelenni minden hozzáadott hálózati határ",
- "networkBoundary": "Hálózathatár",
- "networkDomainNames": "Hálózati tartományok",
- "neutralResources": "Semleges erőforrások",
- "passportForWork": "A Vállalati Windows Hello használata a Windowsba való bejelentkezéshez",
- "pinExpiration": "Adja meg, hogy hány nap elteltével kérje a rendszer a PIN-kód megváltoztatását",
- "pinHistory": "Adja meg, hogy az adott felhasználói fiók korábbi PIN-kódjai hány kódig visszamenőleg ne legyenek újból felhasználhatók",
- "pinLowercaseLetters": "A Vállalati Windows Hello PIN-kódjában használandó kisbetűk konfigurálása",
- "pinSpecialCharacters": "A Vállalati Windows Hello PIN-kódjában használandó speciális karakterek konfigurálása",
- "pinUppercaseLetters": "A Vállalati Windows Hello PIN-kódjában használandó nagybetűk konfigurálása",
- "protectUnderLock": "Az alkalmazások céges adatokhoz való hozzáférésének megakadályozása, ha az eszköz zárolt állapotban van. Csak a Windows 10 Mobile rendszerre vonatkozik",
- "protectedDomainNames": "Védett tartományok",
- "proxyServers": "Proxykiszolgálók",
- "requireAppPin": "Az alkalmazás PIN-kódjának letiltása az eszköz PIN-kódjának kezelése esetén",
- "requiredSettings": "Kötelező beállítások",
- "requiredSettingsInfo": "A szabályzat eltávolítása vagy hatókörének módosítása a céges adatok titkosításának feloldásával jár.",
- "revokeOnMdmHandoff": "Védett adatokhoz való hozzáférés visszavonása, ha az eszközt regisztrálják az MDM-ben",
- "revokeOnUnenroll": "Titkosítási kulcsok visszavonása regisztráció törlésekor",
- "rmsTemplateForEdp": "Adja meg az Azure RMS-ben használandó sablonazonosítót",
- "showWipIcon": "Nagyvállalati adatvédelem ikonjának megjelenítése",
- "type": "Típus",
- "useRmsForWip": "Azure RMS használata a Windows Információvédelemhez",
- "value": "Érték",
- "weRequiredSettingsInfo": "Ez a szabályzat csak a Windows 10 évfordulós kiadására vagy újabb kiadásaira érvényes. A szabályzat a Windows Information Protection (WIP) és a Windows MAM segítségével biztosítja a védelmi funkciókat.",
- "wipProtectionMode": "Windows Information Protection módja",
- "withEnrollment": "Regisztrációval",
- "withoutEnrollment": "Regisztráció nélkül"
- },
- "EdgeAppConfig": {
- "AllowedURLs": {
- "title": "Engedélyezett URL-címek",
- "tooltip": "Adja meg azokat a webhelyeket, amelyekhez a felhasználók a munkahelyi környezetből hozzáférhetnek. A felhasználók a többi webhelyet nem érhetik el. Engedélyezési és tiltólistát is megadhat, de egyszerre mindkettőt nem adhatja meg."
- },
- "ApplicationProxyRedirection": {
- "header": "Alkalmazásproxy",
- "title": "Alkalmazásproxy átirányítása",
- "tooltip": "App Proxy-átirányítás engedélyezése, hogy a felhasználók elérhessék a vállalati hivatkozásokat és a helyszíni webalkalmazásokat."
- },
- "BlockedURLs": {
- "title": "Blokkolt URL-címek",
- "tooltip": "Adja meg azokat a webhelyeket, amelyek munkahelyi környezetből való elérését le szeretné tiltani a felhasználók számára. A felhasználók minden egyéb helyet elérhetnek. Engedélyezési és tiltólistát is megadhat, de egyszerre mindkettőt nem adhatja meg. "
- },
- "Bookmarks": {
- "header": "Felügyelt könyvjelzők",
- "tooltip": "Adja meg azon könyvjelzővel jelölt URL-címek listáját, amelyek elérhetők lesznek a felhasználók számára a Microsoft Edge munkahelyi környezetben való használatakor.",
- "uRL": "URL-cím"
- },
- "HomepageURL": {
- "header": "Felügyelt kezdőlap",
- "title": "Kezdőlap parancsikonjának URL-címe",
- "tooltip": "Állítson be egy kezdőlap-parancsikont, amely a keresősáv alatt az első ikonként jelenik meg, ha a felhasználók új lapot nyitnak meg a Microsoft Edge-ben."
- },
- "PersonalContext": {
- "label": "Korlátozott webhelyek átirányítása a személyes környezetbe",
- "tooltip": "Annak konfigurálása, hogy a felhasználók számára engedélyezni kell-e a személyes környezetre való váltást a korlátozott webhelyek megnyitásához."
- }
- },
- "AzureIAM": {
- "AdrsUserActionSelectionWarning": {
- "conditions": "Az eszköz regisztrációját igénylő feltételek nem érhetők el az „Eszközök regisztrálása vagy csatlakoztatása” felhasználói művelettel.",
- "message": "Csak a Többtényezős hitelesítés megkövetelése beállítás használható az Eszközök regisztrálása vagy csatlakoztatása nevű felhasználói művelethez létrehozott szabályzatokban.{0}"
- },
- "AuthContext": {
- "Included": {
- "none": "Nincs kiválasztva felhőalkalmazás, művelet vagy hitelesítési környezet",
- "plural": "{0} hitelesítési környezet van hozzáadva",
- "singular": "1 hitelesítési környezet van hozzáadva"
- },
- "InfoBlade": {
- "createTitle": "Hitelesítési környezet hozzáadása",
- "descPlaceholder": "A hitelesítési környezet leírásának hozzáadása",
- "modifyTitle": "Hitelesítési környezet módosítása",
- "namePlaceholder": "Pl. megbízható hely, megbízható szolgáltatás, erős hitelesítés",
- "publishDesc": "Az alkalmazásoknak való közzététel lehetővé teszi, hogy az alkalmazások használhassák a hitelesítési környezetet. Fejezze be a címke feltételes hozzáférési szabályzatának konfigurálását, és végezze el a közzétételt. [További információ][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150966",
- "publishLabel": "Közzététel az alkalmazásokban",
- "titleDesc": "Konfiguráljon egy olyan hitelesítési környezetet, amelynek az alkalmazásadatok és -műveletek védelmében lesz szerepe. Használjon olyan neveket és leírásokat, amelyek közérthetőek az alkalmazás rendszergazdái számára. [További információ][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150965"
- },
- "Notify": {
- "failure": "Nem sikerült frissíteni a(z) {0} alkalmazást",
- "modifying": "{0} módosítása folyamatban",
- "success": "A(z) {0} frissítése sikeresen megtörtént"
- },
- "WhatIf": {
- "selected": "Tartalmazza a hitelesítési környezetet"
- },
- "addNewStepUp": "Új hitelesítési környezet",
- "checkBoxInfo": "Adja meg azokat a hitelesítési környezeteket, amelyekre érvényes lesz a szabályzat",
- "configure": "Hitelesítési környezetek konfigurálása",
- "createCA": "Feltételes hozzáférési szabályzatok hozzárendelése a hitelesítési környezethez",
- "dataGrid": "Hitelesítési környezetek listája",
- "description": "Leírás",
- "documentation": "Dokumentáció",
- "getStarted": "Első lépések",
- "label": "Hitelesítési környezet (előzetes verzió)",
- "menuLabel": "Hitelesítési környezet (előzetes verzió)",
- "name": "Név",
- "noAuthContextSet": "Nincsenek hitelesítési környezetek",
- "noData": "Nincs megjeleníthető hitelesítési környezet",
- "selectionInfo": "A hitelesítési környezet az alkalmazásadatok és -műveletek védelmére szolgál a SharePoint, a Microsoft Cloud App Security és más alkalmazásokban.",
- "step": "Lépés",
- "tabDescription": "A hitelesítési környezet kezelése az alkalmazások adatainak és műveleteinek védelme érdekében. [További információ][1]\n[1]:https://go.microsoft.com/fwlink/?linkid=2150965",
- "tagResources": "Erőforrások címkézése hitelesítési környezettel"
- },
- "AuthenticationStrength": {
- "Mode": {
- "deviceBasedPush": "Microsoft Authenticator (telefonos bejelentkezés)",
- "deviceBasedPushFido2X509Certificate": "Microsoft Authenticator (telefonos bejelentkezés) + Fido 2 + tanúsítványalapú hitelesítés",
- "deviceBasedPushX509CertificateSingleFactor": "Microsoft Authenticator (telefonos bejelentkezés) + Fido 2 + tanúsítványalapú hitelesítés (egytényezős)",
- "email": "Egyszeri hitelesítő kód küldése e-mailben",
- "emailOtp": "E-mailes, egyszeri jelszó",
- "federatedMultiFactor": "Összevont többtényezős",
- "federatedSingleFactor": "Összevont egytényezős",
- "federatedSingleFactorFederatedMultiFactor": "Összevont egytényezős + összevont többtényezős",
- "fido2": "FIDO 2 biztonsági kulcs",
- "fido2X509CertificateSingleFactor": "FIDO 2 biztonsági kulcs + tanúsítványalapú hitelesítés (egytényezős)",
- "hardwareOath": "Hardveres, egyszeri jelszó",
- "hardwareOathX509CertificateSingleFactor": "Hardveres, egyszeri jelszó + tanúsítványalapú hitelesítés (egytényezős)",
- "microsoftAuthenticatorPSIX509CertificateSingleFactor": "Microsoft Authenticator (telefonos bejelentkezés) + tanúsítványalapú hitelesítés (egytényezős)",
- "microsoftAuthenticatorPsi": "Microsoft Authenticator (telefonos bejelentkezés)",
- "microsoftAuthenticatorPush": "Microsoft Authenticator (leküldéses értesítés)",
- "microsoftAuthenticatorPushX509CertificateSingleFactor": "Microsoft Authenticator (leküldéses értesítés) + tanúsítványalapú hitelesítés (egytényezős)",
- "none": "Egyik sem",
- "password": "Jelszó",
- "passwordDeviceBasedPush": "Jelszó + Microsoft Authenticator (telefonos bejelentkezés)",
- "passwordFido2": "Jelszó + FIDO 2 biztonsági kulcs",
- "passwordHardwareOath": "Jelszó + hardveres, egyszeri jelszó",
- "passwordMicrosoftAuthenticatorPSI": "Jelszó + Microsoft Authenticator (telefonos bejelentkezés)",
- "passwordMicrosoftAuthenticatorPush": "Jelszó + Microsoft Authenticator (leküldéses értesítés)",
- "passwordSms": "Jelszó + SMS",
- "passwordSoftwareOath": "Jelszó + Szoftveres, egyszeri jelszó",
- "passwordTemporaryAccessPassMultiUse": "Jelszó + ideiglenes hozzáférési kód (többször használatos)",
- "passwordTemporaryAccessPassOneTime": "Jelszó + ideiglenes hozzáférési kód (egyszer használatos)",
- "passwordVoice": "Jelszó + hanghívás",
- "sms": "SMS",
- "smsSignIn": "SMS alapú bejelentkezés",
- "smsX509CertificateSingleFactor": "SMS + tanúsítványalapú hitelesítés (egytényezős)",
- "softwareOath": "Szoftveres, egyszeri jelszó",
- "softwareOathX509CertificateSingleFactor": "Szoftveres, egyszeri jelszó + tanúsítványalapú hitelesítés (egytényezős)",
- "temporaryAccessPassMultiUse": "Ideiglenes hozzáférési kód (többször használatos)",
- "temporaryAccessPassMultiUseX509CertificateSingleFactor": "Ideiglenes hozzáférési kód (többször használatos) + tanúsítványalapú hitelesítés (egytényezős)",
- "temporaryAccessPassOneTime": "Ideiglenes hozzáférési kód (egyszer használatos)",
- "temporaryAccessPassOneTimeX509CertificateSingleFactor": "Ideiglenes hozzáférési kód (egyszer használatos) + tanúsítványalapú hitelesítés (egytényezős)",
- "voice": "Hang",
- "voiceX509CertificateSingleFactor": "Hanghívás + tanúsítványalapú hitelesítés (egytényezős)",
- "windowsHelloForBusiness": "Vállalati Windows Hello",
- "x509CertificateMultiFactor": "Tanúsítványalapú hitelesítés (többtényezős)",
- "x509CertificateSingleFactor": "Tanúsítványalapú hitelesítés (egytényezős)"
- }
- },
- "CAS": {
- "BuiltinPolicy": {
- "Option": {
- "blockDownloads": "Letöltések letiltása (Előzetes verzió)",
- "monitorOnly": "Csak figyelő (Előzetes verzió)",
- "protectDownloads": "Letöltések védelme (Előzetes verzió)",
- "useCustomControls": "Egyéni szabályzat használata..."
- },
- "ariaLabel": "Válassza ki az alkalmazni kívánt feltételes hozzáférést biztosító alkalmazás-vezérlőt"
- }
- },
- "ChooseApplications": {
- "Grid": {
- "appIdAria": "Alkalmazásazonosító: {0}"
- },
- "LowerGrid": {
- "ariaLabel": "A kiválasztott felhőalkalmazások listája"
- },
- "UpperGrid": {
- "ariaLabel": "A keresési kifejezéssel egyező felhőalkalmazások listája"
- }
- },
- "ChooseLocations": {
- "Validation": {
- "failed": "A „Kiválasztott helyek” esetében legalább egy helyet ki kell választania.",
- "selector": "Válasszon ki legalább egy helyet"
- }
- },
- "ClientApp": {
- "Clients": {
- "Validation": {
- "failed": "A következő ügyfelek közül legalább egyet ki kell választania"
- }
- }
- },
- "ClientConditionsInfo": {
- "browserAndModern": "Ez a szabályzat csak a böngészőkre és a korszerű hitelesítést használó alkalmazásokra vonatkozik. Ha azt szeretné, hogy a szabályzat az összes ügyfélalkalmazásra érvényes legyen, engedélyezze az ügyfélalkalmazás-alapú feltételes hozzáférést, majd válassza ki az összes ügyfélalkalmazást.",
- "classicExperience": "A szabályzat létrehozása óta frissült az ügyféloldali alkalmazások alapértelmezett konfigurációja.",
- "legacyAuth": "Ha ez a beállítás nincs konfigurálva, a szabályzatok mostantól az összes ügyfélalkalmazásra vonatkoznak, beleértve a modern és az örökölt hitelesítést is."
- },
- "CloudAppFilterBlade": {
- "AssignmentFilter": {
- "header": "Attribútum",
- "placeholder": "Attribútum kiválasztása"
- },
- "Configure": {
- "infoBalloon": "Konfigurálja azokat az alkalmazásszűrőket, amelyekre a szabályzatot alkalmazni szeretné."
- },
- "NoPermissions": {
- "learnMoreAria": "További információ az egyéni biztonsági attribútumok engedélyeiről.",
- "message": "Nem rendelkezik az egyéni biztonsági attribútumok használatához szükséges engedélyekkel."
- },
- "gridHeader": "Egyéni biztonsági attribútumok használatával a szabályszerkesztővel vagy a szabályszintaxis szövegmezőjével hozhatja létre vagy szerkesztheti a szűrőszabályokat. Az előzetes verzióban csak a Sztring típusú attribútumok támogatottak. Az Egész vagy Logikai típusú attribútumok nem jelennek meg.",
- "learnMoreAria": "További információ a szabályszerkesztő és a szintaxis szövegmezőjének használatáról.",
- "noAttributes": "Nincs elérhető egyéni attribútum a szűréshez. A szűrő alkalmazásához konfigurálnia kell néhány attribútumot.",
- "title": "Edit filter (Preview)"
- },
- "CloudAppsUserActions": {
- "any": "Bármely felhőalkalmazás vagy művelet",
- "infoBalloon": "A tesztelni kívánt felhőalkalmazás vagy felhasználói művelet, például SharePoint Online",
- "learnMore": "Az összes vagy néhány felhőbeli alkalmazás vagy művelet elérésének korlátozása.",
- "learnMoreB2C": "Az összes vagy néhány felhőalkalmazás elérésének korlátozása.",
- "title": "Felhőalkalmazások vagy -műveletek"
- },
- "CloudappsSelectionBlade": {
- "Excluded": {
- "gridAria": "A kizárt felhőalkalmazások listája"
- },
- "Filter": {
- "configured": "Konfigurálva",
- "label": "Edit filter (Preview)",
- "with": "{0} a következővel: {1}"
- },
- "Included": {
- "gridAria": "A belefoglalt felhőalkalmazások listája"
- },
- "Validation": {
- "authContext": "A hitelesítési környezettel legalább egy alelemet konfigurálni kell.",
- "selectApps": "A(z) „{0}” konfigurálása kötelező",
- "selector": "Válasszon ki legalább egy alkalmazást.",
- "userActions": "A Felhasználói műveletek beállítással legalább egy alelemet konfigurálni kell."
- }
- },
- "DeviceState": {
- "LearnMore": {
- "message": "Control user access when the device the user is signing-in from is not \"Hybrid Azure AD joined\" or \"marked as compliant\".\n '{0}' has been deprecated. Use '{1}' instead."
- }
- },
- "Errors": {
- "notFound": "A szabályzat nem található vagy törölve lett.",
- "notFoundDetailed": "A(z) {0} szabályzat már nem létezik. Lehet, hogy törölték."
- },
- "NamedLocation": {
- "Form": {
- "CountryLookup": {
- "ariaLabel": "Ország keresési metódusa",
- "gps": "Helymeghatározás GPS-koordináták alapján",
- "info": "Ha adott feltételes hozzáférési szabályzathoz helyfeltétel van konfigurálva, az Authenticator alkalmazás felkéri a felhasználókat GPS-helyadataik megosztására. ",
- "ip": "Helymeghatározás IP-cím alapján (csak IPv4 esetén)"
- },
- "Header": {
- "new": "Új hely ({0})",
- "update": "Frissítési hely ({0})"
- },
- "IP": {
- "learn": "A nevesített hely IPv4-és IPv6-tartományának konfigurálása.\n[További információ][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
- },
- "Include": {
- "infoBalloon": "Az ismeretlen országok vagy régiók olyan IP-címek, amelyek nincsenek egy adott országhoz vagy régióhoz társítva. [További információ][1]\n\nEz a következőket foglalja magába:\n* IPv6-címek\n* Közvetlen leképezés nélküli IPv4-címek\n[1]: https://aka.ms/canamedlocations\n",
- "label": "Ismeretlen országok/régiók belefoglalása"
- },
- "Name": {
- "empty": "A név nem hagyható üresen",
- "placeholder": "A hely neve"
- },
- "PrivateLink": {
- "learn": "Hozzon létre egy olyan új nevesített helyet, amely az Azure AD-beli privát kapcsolatokat tartalmaz. \n[További információ][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
- },
- "Search": {
- "countries": "Országok keresése",
- "names": "Nevek keresése",
- "privateLinks": "Privát kapcsolatok keresése"
- },
- "Trusted": {
- "label": "Megjelölés megbízható helyként"
- },
- "enter": "Adjon meg egy új IPv4- vagy IPv6-cím-tartományt",
- "example": "példa: 40.77.182.32/27 vagy 2a01:111::/32"
- },
- "Label": {
- "addCountries": "Országok helye",
- "addIpRange": "IP-címtartományok helye",
- "addPrivateLink": "Azure Private Link-kapcsolatok"
- },
- "Notification": {
- "Create": {
- "Failed": {
- "description": "Nem sikerült létrehozni az új helyet ({0})",
- "title": "A létrehozás nem sikerült"
- },
- "InProgress": {
- "description": "Az új hely létrehozása ({0})",
- "title": "Létrehozás folyamatban"
- },
- "Success": {
- "description": "Sikerült létrehozni az új helyet ({0})",
- "title": "A létrehozás sikerült"
- }
- },
- "Delete": {
- "Failed": {
- "description": "Nem sikerült törölni a helyet ({0})",
- "title": "A törlés nem sikerült"
- },
- "InProgress": {
- "description": "A hely ({0}) törlése",
- "title": "Törlés van folyamatban"
- },
- "Success": {
- "description": "Sikerült törölni a helyet ({0})",
- "title": "A törlés sikerült"
- }
- },
- "Update": {
- "Failed": {
- "description": "Nem sikerült frissíteni a helyet ({0})",
- "title": "A frissítés nem sikerült"
- },
- "InProgress": {
- "description": "A hely ({0}) frissítése",
- "title": "A frissítés folyamatban van"
- },
- "Success": {
- "description": "Sikerült frissíteni a helyet ({0})",
- "title": "A frissítés sikerült"
- }
- }
- },
- "PrivateLinks": {
- "grid": "Privát kapcsolatok listája"
- },
- "Trusted": {
- "title": "Megbízható típus",
- "trusted": "Megbízható"
- },
- "Type": {
- "all": "Minden típus",
- "countries": "Országok",
- "ipRanges": "IP-címtartományok",
- "privateLinks": "Privát kapcsolatok",
- "title": "Hely típusa"
- },
- "iPRangeInvalidError": "Az értéknek érvényes IPv4-vagy IPv6-tartománynak kell lennie.",
- "iPRangeLinkOrSiteLocalError": "A rendszer hivatkozásszintű vagy helyi szintű címként érzékelte az IP-hálózatot.",
- "iPRangeOctetError": "Az IP-hálózat nem kezdődhet 0-val vagy 255-tel.",
- "iPRangePrefixError": "Az IP-hálózati előtagnak /{0} és /{1} közöttinek kell lennie.",
- "iPRangePrivateError": "A rendszer privát címként érzékelte az IP-hálózatot."
- },
- "Policies": {
- "Grid": {
- "aria": "Feltételes hozzáférési szabályzatok listája"
- },
- "countText": "{0}/{1} szabályzat található",
- "countTextSingular": "{0}/1 szabályzat található",
- "search": "Keresés a szabályzatok között"
- },
- "Policy": {
- "Condition": {
- "ServicePrincipalRisk": {
- "description": "Konfigurálja a szabályzat érvényesítéséhez szükséges, a szolgáltatásnévhez tartozó kockázati szinteket.",
- "infoBalloonContent": "Konfigurálja a szolgáltatásnévhez tartozó kockázatot, hogy alkalmazhassa a szabályzatot a kiválasztott kockázati szint(ek)re.",
- "title": "Szolgáltatásnévhez tartozó kockázat"
- }
- }
- },
- "PolicyControlAuthStrength": {
- "MultiFactorAuthentication": {
- "description": "Az erős hitelesítésnek megfelelő módszerek kombinációi, például jelszó és SMS",
- "displayName": "Többtényezős hitelesítés (MFA)"
- },
- "Passwordless": {
- "description": "Jelszó nélküli módszerek, amelyek megfelelnek az erős hitelesítésnek, mint például a Microsoft Authenticator ",
- "displayName": "Jelszó nélküli többtényezős hitelesítés"
- },
- "PhishingResistant": {
- "description": "Adathalászat ellen védett jelszó nélküli módszerek a legerősebb hitelesítéshez, például FIDO2 biztonsági kulcs",
- "displayName": "Adathalászat ellen védett többtényezős hitelesítés"
- }
- },
- "PolicyControlFedAuthMethod": {
- "certificate": "Tanúsítványalapú hitelesítés",
- "infoBubble": "Adja meg az összevonási szolgáltatóra (például az AD FS-re) nézve kötelezően használandó hitelesítési módszert.",
- "multifactor": "Többtényezős hitelesítés",
- "require": "Összevont hitelesítési módszer megkövetelése (Előzetes verzió)",
- "whatIfFormat": "{0} - {1}"
- },
- "PolicyState": {
- "off": "Kikapcsolva",
- "on": "Bekapcsolva",
- "reportOnly": "Csak jelentés"
- },
- "PolicyTemplates": {
- "Devices": {
- "description": "Az Eszközszabályzat-sablon nevű kategória kiválasztásával megtekintheti a hálózathoz hozzáférő eszközöket. Mielőtt megadná a hozzáférést, ellenőrizze a megfelelőséget és az állapotadatokat.",
- "name": "Eszközök"
- },
- "Identities": {
- "description": "Az Identitásszabályzat-sablon nevű kategória kiválasztásával ellenőrizhet és biztonságossá tehet minden egyes identitást erős hitelesítés használatával a cég teljes digitális erőforráskészletére nézve.",
- "name": "Identitások"
- },
- "Summary": {
- "CloudApps": {
- "allCloudApps": "Minden alkalmazás",
- "office365": "Office 365",
- "registerSecurityInfo": "Biztonsági adatok regisztrálása"
- },
- "Conditions": {
- "androidAndIOS": "Eszközplatform: Android és IOS",
- "anyDevice": "Minden eszköz az Android-, IOS-, Windows- és Mac-eszközök kivételével",
- "anyDeviceStateExceptHybrid": "Minden eszközállapot a követelményeknek megfelelő és a hibrid Azure Active Directoryhoz csatlakoztatott állapot kivételével",
- "anyLocation": "Minden hely a megbízhatók kivételével",
- "browserMobileDesktop": "Ügyfélalkalmazások: böngésző, mobilalkalmazások és asztali ügyfelek",
- "exchangeActiveSync": "Ügyfélalkalmazások: Exchange Active Sync, egyéb ügyfelek",
- "windowsAndMac": "Eszközplatform: Windows és Mac"
- },
- "Devices": {
- "anyDevice": "Bármely eszköz"
- },
- "Grant": {
- "appProtectionPolicy": "Alkalmazásvédelmi szabályzat megkövetelése",
- "approvedClientApp": "Jóváhagyott ügyfélalkalmazás megkövetelése",
- "blockAccess": "Hozzáférés letiltása",
- "mfa": "Többtényezős hitelesítés megkövetelése",
- "passwordChange": "Jelszómódosítás megkövetelése",
- "requireCompliantDevice": "Eszköz megfelelőként való megjelölésének megkövetelése",
- "requireHybridAzureADDevice": "Hibrid Azure AD-hez csatlakozó eszköz megkövetelése"
- },
- "Session": {
- "appEnforcedRestrictions": "Alkalmazás által kényszerített korlátozások használata",
- "signInFrequency": "Bejelentkezési gyakoriság és soha nem állandó böngésző-munkamenet"
- },
- "UsersAndGroups": {
- "allUsers": "Minden felhasználó",
- "directoryRoles": "Címtárbeli szerepkörök a jelenlegi rendszergazda kivételével",
- "globalAdmin": "Globális rendszergazda",
- "noGuestAndAdmins": "Minden felhasználó a vendég- és a külső felhasználók, a globális rendszergazdák, valamint a jelenlegi rendszergazda kivételével"
- },
- "azureManagement": "Azure-beli felügyelet",
- "deviceFilters": "Eszközökhöz tartozó szűrők",
- "devicePlatforms": "Eszközplatformok"
- },
- "TemplateId": {
- "AppEnforcedRestrictions": {
- "description": "A SharePoint-, OneDrive- és Exchange-tartalmak hozzáférésének blokkolása vagy korlátozása nem felügyelt eszközökről.",
- "name": "CA014: Alkalmazás által kényszerített korlátozások használata a nem felügyelt eszközök esetében",
- "title": "Az alkalmazás által kényszerített korlátozások használata a nem felügyelt eszközök esetében"
- },
- "ApprovedClientApps": {
- "description": "Az adatvesztés megelőzése érdekében a szervezeteknek lehetőségük van az engedélyezett modern hitelesítési ügyfélalkalmazásokra korlátozni a hozzáférést az Intune App Protection használatával.",
- "name": "CA012: Jóváhagyott ügyfélalkalmazások és alkalmazásvédelem megkövetelése",
- "title": "Jóváhagyott ügyfélalkalmazások és alkalmazásvédelem megkövetelése"
- },
- "BlockAccessOnUnknowns": {
- "description": "A felhasználók nem férhetnek hozzá a vállalati erőforrásokhoz, ha az eszköz típusa ismeretlen vagy nem támogatott.",
- "name": "CA010: Ismeretlen vagy nem támogatott eszközplatform hozzáférésének letiltása",
- "title": "Ismeretlen vagy nem támogatott eszközplatformokhoz való hozzáférés letiltása"
- },
- "BlockLegacyAuth": {
- "description": "A többtényezős hitelesítés megkerüléséhez használható örökölt hitelesítési végpontok blokkolása. ",
- "name": "CA003: Örökölt hitelesítés letiltása",
- "title": "Örökölt hitelesítés letiltása"
- },
- "NoPersistentBrowserSession": {
- "description": "A nem felügyelt eszközökön a felhasználói hozzáférés úgy védhető meg, ha megakadályozza, hogy a böngészőbeli munkamenetek bejelentkezve maradjanak a böngésző bezárása után, és 1 órára állítja a bejelentkezési gyakoriságot.",
- "name": "CA011: Nincs állandó böngésző-munkamenet",
- "title": "Nincs állandó böngésző-munkamenet"
- },
- "RequireCompliantOrHybridADAdmins": {
- "description": "Annak megkövetelése, hogy az emelt szintű rendszergazdák csak a megfelelő vagy egy hibrid Azure AD-hez csatlakoztatott eszköz használatával férhessenek hozzá az erőforrásokhoz.",
- "name": "CA009: Követelményeknek megfelelő vagy hibrid Azure Active Directoryhoz csatlakozó eszköz használatának megkövetelése a rendszergazdáktól",
- "title": "Követelményeknek megfelelő vagy hibrid Azure Active Directoryhoz csatlakozó eszközök használatának megkövetelése a rendszergazdáktól"
- },
- "RequireCompliantOrHybridADAllUsers": {
- "description": "A vállalati erőforrásokhoz való hozzáférés védelme egy felügyelt eszköz használatának vagy többtényezős hitelesítés végrehajtásának megkövetelésével biztosítható. (csak macOS vagy Windows)",
- "name": "CA013: Követelményeknek megfelelő, illetve hibrid Azure Active Directoryhoz csatlakozó eszköz vagy a többtényezős hitelesítés használatának megkövetelése minden felhasználótól",
- "title": "Követelményeknek megfelelő, illetve hibrid Azure Active Directoryhoz csatlakozó eszköz vagy a többtényezős hitelesítés használatának megkövetelése minden felhasználótól"
- },
- "RequireMFAAllUsers": {
- "description": "Többtényezős hitelesítés megkövetelése az összes felhasználói fiók esetében a kockázatok csökkentése érdekében.",
- "name": "CA004: Többtényezős hitelesítés megkövetelése minden felhasználótól",
- "title": "Többtényezős hitelesítés megkövetelése minden felhasználótól"
- },
- "RequireMFAForAdmins": {
- "description": "Többtényezős hitelesítés megkövetelése kiemelt jogosultságú rendszergazdai fiókok esetében a kockázatok csökkentése érdekében. Ez a szabályzat ugyanazokat a szerepköröket célozza meg, mint az alapértelmezett biztonsági szabályzatok.",
- "name": "CA001: Többtényezős hitelesítés megkövetelése a rendszergazdáktól",
- "title": "Többtényezős hitelesítés megkövetelése a rendszergazdáktól"
- },
- "RequireMFAForAzureManagement": {
- "description": "Megkövetelheti a többtényezős hitelesítést, hogy megóvja az Azure-erőforrásokhoz való emelt szintű hozzáférést.",
- "name": "CA006: Többtényezős hitelesítés megkövetelése Azure-beli felügyelet esetén",
- "title": "Többtényezős hitelesítés megkövetelése Azure-beli felügyelet esetén"
- },
- "RequireMFAForGuestAccess": {
- "description": "Megkövetelheti a vendégfelhasználók többtényezős hitelesítését, amikor hozzáférnek a vállalati erőforrásokhoz.",
- "name": "CA005: Többtényezős hitelesítés megkövetelése vendéghozzáférés esetén",
- "title": "Többtényezős hitelesítés megkövetelése vendéghozzáférés esetén"
- },
- "RequireMFAForRiskySignIn": {
- "description": "Megkövetelheti a többtényezős hitelesítést, ha az észlelt bejelentkezési kockázat közepes vagy magas. (Prémium szintű Azure AD 2-licenc szükséges)",
- "name": "CA007: Többtényezős hitelesítés megkövetelése kockázatos bejelentkezések esetén",
- "title": "Többtényezős hitelesítés megkövetelése kockázatos bejelentkezések esetén"
- },
- "RequirePasswordChangeForHighRiskUsers": {
- "description": "Megkövetelheti, hogy a felhasználó módosítsa a jelszavát, ha az észlelt felhasználói kockázat magas. (Prémium szintű Azure AD 2-licenc szükséges)",
- "name": "CA008: Jelszómódosítás megkövetelése a nagy kockázatú felhasználóktól",
- "title": "Jelszómódosítás megkövetelése a nagy kockázatú felhasználóktól"
- },
- "RequireSecurityInfo": {
- "description": "Annak biztonságossá tétele, hogy a felhasználók mikor és hogyan regisztrálnak az Azure Active Directory-beli többtényezős hitelesítésre és önkiszolgáló jelszókérésre. ",
- "name": "CA002: A biztonsági adatok regisztrálásának biztonságossá tétele",
- "title": "A biztonsági adatok regisztrálásának biztonságossá tétele"
- }
- },
- "TemplateState": {
- "BlockAccessOnUnknowns": {
- "title": "A szabályzat engedélyezése blokkolja az ismeretlen típusú eszközök hozzáférését. Célszerű „csak jelentés” módra állítani a szabályzatot, amíg meg nem győződik róla, hogy a várakozásoknak megfelelően működik-e."
- },
- "BlockLegacyAuth": {
- "description": "Célszerű „csak jelentés” módra állítani a szabályzatot, amíg meg nem győződik róla, hogy a várakozásoknak megfelelően működik-e.",
- "title": "A szabályzat engedélyezése letiltja az összes felhasználó régebbi típusú hitelesítését."
- },
- "RequireCompliantOrHybridADAdmins": {
- "Description": {
- "on": "Javasoljuk, hogy kezdje a folyamatot csak jelentéskészítési módban, amíg meg nem győződik róla, hogy az emelt szintű felhasználókra nem lesz hatással.",
- "reportOnly": "A megfelelő eszközöket megkövetelő, „csak jelentés” módban üzemelő szabályzatok kérhetik a Mac-, iOS- és Android-eszközök felhasználóitól, hogy válasszanak egy eszköztanúsítványt az eszközök megfelelőségének vizsgálatához, még ha a megfelelőség nem is kötelező. Ezek a kérések egészen addig ismétlődhetnek, amíg az eszköz megfelelővé nem válik."
- },
- "Title": {
- "on": "A szabályzat engedélyezése megakadályozza az emelt szintű felhasználók hozzáférését, kivéve ha felügyelt eszközt, például megfelelő vagy a hibrid Azure AD-hez csatlakoztatott eszközt használnak. Az engedélyezés előtt győződjön meg arról, hogy konfigurálta a megfelelőségi szabályzatokat, vagy engedélyezte a hibrid Azure AD-konfigurációt.",
- "reportOnly": "Az engedélyezés előtt győződjön meg arról, hogy konfigurálta a megfelelőségi szabályzatokat, vagy engedélyezte a hibrid Azure AD-konfigurációt. "
- }
- },
- "RequireCompliantOrHybridADAllUsers": {
- "Description": {
- "on": "Ez a szabályzat minden felhasználóra hatással lesz, kivéve a jelenleg bejelentkezett rendszergazdát. Javasoljuk, hogy kezdje a folyamatot csak jelentéskészítési módban, amíg meg nem győződik róla, hogy a felhasználókra nem lesz hatással."
- },
- "Title": {
- "on": "Ne zárja ki magát! Győződjön meg arról, hogy az eszköze megfelelő vagy csatlakoztatva van a hibrid Azure AD-hez, vagy hogy konfigurálta a többtényezős hitelesítést. ",
- "reportOnly": "A megfelelő eszközöket megkövetelő, „csak jelentés” módban üzemelő szabályzatok kérhetik a Mac-, iOS- és Android-eszközök felhasználóitól, hogy válasszanak egy eszköztanúsítványt az eszközök megfelelőségének vizsgálatához, még ha a megfelelőség nem is kötelező. Ezek a kérések egészen addig ismétlődhetnek, amíg az eszköz megfelelővé nem válik."
- }
- },
- "RequireMfa": {
- "description": "Ha vészelérési fiókokat vagy az Azure AD Connectet használja a helyszíni objektumok szinkronizálásához, lehet, hogy ezeket a fiókokat a szabályzat létrehozása után kell kizárnia."
- },
- "RequireMfaAdmins": {
- "description": "Vegye figyelembe, hogy a jelenlegi rendszergazdai fiókot a rendszer automatikusan kihagyja, de a többi védve lesz a szabályzatlétrehozás során. Javasoljuk, hogy kezdje a folyamatot a csak jelentéskészítés módban.",
- "title": "Fontos, hogy ne zárja ki magát! Ez a szabályzat a teljes Azure Portalra vonatkozik."
- },
- "RequireMfaAllUsers": {
- "description": "Javasoljuk, hogy kezdje a folyamatot a csak jelentéskészítés módban, amíg megtervezi a változást és tájékoztatja róla a felhasználókat.",
- "title": "A szabályzat engedélyezésével az összes felhasználó számára kötelezővé teszi a többtényezős hitelesítést."
- },
- "RequireSecurityInfo": {
- "description": "Győződjön meg róla, hogy a konfiguráció a vállalati igényeknek megfelelő védelmet biztosít ezeknek a fiókoknak.",
- "title": "Ez a szabályzat a következő felhasználókra és szerepkörökre nem vonatkozik: vendég- és külső felhasználók, globális rendszergazdák, jelenlegi rendszergazda."
- }
- },
- "basics": "Alapbeállítások",
- "clientApps": "Ügyfélalkalmazások",
- "cloudApps": "Felhőalkalmazások",
- "cloudAppsOrActions": "Felhőalkalmazások vagy -műveletek ",
- "conditions": "Feltételek ",
- "createNewPolicy": "Új szabályzat létrehozása sablonokból (előzetes verzió)",
- "createPolicy": "Szabályzat létrehozása",
- "currentUser": "Aktuális felhasználó",
- "customizeBuild": "Build testreszabása",
- "customizeTemplate": "A sablonok listája a létrehozandó szabályzat típusa alapján van testreszabva",
- "excludedDevicePlatform": "Kizárt eszközplatformok",
- "excludedDirectoryRoles": "Kizárt címtárszerepkörök",
- "excludedLocation": "Kizárt címtárszerepkörök",
- "excludedUsers": "Kizárt felhasználók",
- "grantControl": "Írányítás megadása ",
- "includeFilteredDevice": "Szűrt eszközök belefoglalása a szabályzatba",
- "includedDevicePlatform": "Befoglalt eszközplatformok",
- "includedDirectoryRoles": "Belefoglalt címtárszerepkörök",
- "includedLocation": "Belefoglalt hely",
- "includedUsers": "Belefoglalt felhasználók",
- "legacyAuthenticationClients": "Örökölt hitelesítési ügyfelek",
- "namePolicy": "Szabályzat elnevezése",
- "next": "Tovább",
- "policyName": "Szabályzat neve",
- "policyState": "Szabályzat állapota",
- "policySummary": "Szabályzat összefoglalása",
- "policyTemplate": "Szabályzatsablon",
- "previous": "Vissza",
- "reviewAndCreate": "Felülvizsgálat és létrehozás",
- "riskLevels": "Kockázati szintek",
- "selectATemplate": "Sablon kiválasztása",
- "selectTemplate": "Sablon kiválasztása",
- "selectTemplateCategory": "Sablonkategória kiválasztása",
- "selectTemplateRecommendation": "Válasza alapján a következő sablonokat javasoljuk:",
- "sessionControl": "Munkamenet-vezérlő ",
- "signInFrequency": "Bejelentkezés gyakorisága",
- "signInRisk": "Bejelentkezési kockázat",
- "template": "Sablon ",
- "templateCategory": "Sablon kategóriája",
- "userRisk": "Felhasználói kockázat",
- "usersAndGroups": "Felhasználók és csoportok ",
- "viewPolicySummary": "Szabályzatösszegzés megtekintése "
- },
- "SSM": {
- "MemberSelector": {
- "description": "Felhasználók és csoportok"
- },
- "Notification": {
- "Migration": {
- "error": "Nem sikerült áttelepíteni a folyamatos hozzáférés-kiértékelés beállításait a feltételes hozzáférési szabályzatokba.",
- "inProgress": "A folyamatos hozzáférés-kiértékelés beállításainak áttelepítése folyamatban van.",
- "success": "Sikeresen megtörtént a folyamatos hozzáférés-kiértékelés beállításainak áttelepítése a feltételes hozzáférési szabályzatokba.",
- "successDescription": "Lépjen a Feltételes hozzáférési szabályzatok lapra, és tekintse meg az áttelepített beállításokat a „CAE-beállításokból létrehozott CA-szabályzat” nevű, újonnan létrehozott szabályzatban."
- },
- "error": "Nem sikerült frissíteni a folyamatos hozzáférés-kiértékelés beállításait",
- "inProgress": "A folyamatos hozzáférés-kiértékelés beállításainak frissítése",
- "success": "Sikerült frissíteni a folyamatos hozzáférés-kiértékelés beállításait"
- },
- "PreviewOptions": {
- "disable": "Előzetes verzió letiltása",
- "enable": "Előzetes verzió engedélyezése"
- },
- "StrictLocationEnforcement": {
- "infoContent1": "Az Azure AD és az erőforrás-szolgáltató különböző IP-címket észlel ugyanarról a klienseszközről hálózatszakadás vagy az IPv4/IPv6 egyezés hiánya miatt. A szigorú helykényszerítés megköveteli a feltételes hozzáférési szabályzatot az Azure AD és az erőforrás-szolgáltató által látott IP-címek alapján is.",
- "infoContent2": "A maximális biztonság érdekében ajánlott az összes olyan IP-cím szerepeltetése, amelyet az Azure AD és az erőforrás-szolgáltató számára is látható a megnevezett hely szabályzatában, valamint javasolt bekapcsolni a Szigorú helykényszerítés módot.",
- "label": "Szigorú helykényszerítés",
- "title": "További kényszerítési módok"
- },
- "bladeTitle": "Folyamatos hozzáférés-kiértékelés",
- "description": "A felhasználói hozzáférés visszavonása vagy az ügyfél IP-címének megváltozása esetén a folyamatos hozzáférés-kiértékelés automatikusan, közel valós időben letiltja az erőforrásokhoz és az alkalmazásokhoz való hozzáférést. ",
- "migrateLabel": "Áttelepítés",
- "migrationError": "Az áthelyezés a következő hiba miatt meghiúsult:{0}",
- "migrationInfo": "A CAE-beállítás átkerült a feltételes hozzáféréssel kapcsolatos felhasználói felületre. Kérjük, a fenti „Áttelepítés” gombot választva végezze el az áttelepítést, és a továbbiakban feltételes hozzáférési szabályzattal állítsa be a konfigurációt. További információért kattintson ide.",
- "noLicenseMessage": "Az intelligens munkamenet-kezelés beállításainak kezelése a prémium szintű Azure AD-vel",
- "optionsPickerTitle": "A folyamatos hozzáférés-kiértékelés engedélyezése vagy letiltása",
- "upsellInfo": "Ezen a lapon már nem tudja megváltoztatni a beállításait, és az itt található beállításokat figyelmen kívül kell hagyni. A korábbi beállításait figyelembe vesszük. A továbbiakban a Feltételes hozzáférés területen konfigurálhatja a CAE-beállításait. További információért kattintson ide."
- },
- "SessionLifetime": {
- "PersistentBrowser": {
- "Error": {
- "notAllApps": "Az állandó böngésző-munkamenetre vonatkozó szabályzat csak akkor működik megfelelően, ha a „Minden felhőalkalmazás” lehetőség van kiválasztva. Frissítse a felhőalkalmazások kijelölését."
- },
- "Option": {
- "always": "Mindig állandó",
- "help": "Az állandó böngésző-munkamenet lehetővé teszi a felhasználók számára, hogy a böngészőablak bezárása és újbóli megnyitása után bejelentkezve maradjanak.
\n\n- A beállítás a „Minden felhőalkalmazás” lehetőség kiválasztásakor működik megfelelően.
\n- Ez nincs hatással a jogkivonat-élettartam és a bejelentkezési gyakoriság beállítására.
\n- Ezzel a beállítással felülbírálja a vállalati védjegyezésben megadott „Bejelentkezve maradok lehetőség megjelenítése” szabályzatot.
\n- A „Soha nem állandó” beállítás minden összevont hitelesítési szolgáltatásból beküldött állandó egyszeri bejelentkezési jogcímet felülbírál.
\n- A „Soha nem állandó” beállítás megakadályozza az egyszeri bejelentkezést mobileszközökön az alkalmazások között, illetve az alkalmazások és a felhasználó mobilböngészője között.
\n",
- "label": "Állandó böngésző-munkamenet",
- "never": "Soha nem állandó"
- },
- "Warning": {
- "allApps": "Az állandó böngésző-munkamenet csak akkor működik megfelelően, ha a Minden felhőalkalmazás lehetőség van kiválasztva. Módosítsa a felhőalkalmazások kijelölését. További információkért kattintson ide."
- }
- },
- "SignInFrequency": {
- "Aria": {
- "units": "Óra vagy nap",
- "value": "Gyakoriság"
- },
- "Option": {
- "Day": {
- "plural": "{0} nap",
- "singular": "1 nap"
- },
- "Hour": {
- "plural": "{0} óra",
- "singular": "1 óra"
- },
- "daysOption": "Nap",
- "everytime": "Minden alkalommal",
- "help": "Az az időtartam, amely után a felhasználónak be kell jelentkeznie, ha megpróbál hozzáférni egy erőforráshoz. Az alapértelmezett beállítás 90 nap folyamatos számlálással, azaz a felhasználónak akkor kell újból hitelesítést végeznie, amikor először próbál meg hozzáférni egy erőforráshoz, miután 90 napig vagy annál tovább nem volt aktív a számítógépén.",
- "hoursOption": "Óra",
- "label": "Bejelentkezés gyakorisága",
- "placeholder": "Válasszon egységet"
- }
- },
- "mainOption": "Munkamenet-élettartam módosítása",
- "mainOptionHelp": "Konfigurálhatja, hogy a rendszer milyen gyakran kérjen be adatokat a felhasználóktól, és milyen gyakran őrizze meg a böngésző-munkameneteket. Előfordulhat, hogy azok az alkalmazások, amelyek nem támogatják a modern hitelesítési protokollokat, nem tartják be ezeket a szabályzatokat. Ebben az esetben lépjen kapcsolatba az adott alkalmazás fejlesztőjével."
- },
- "SigninRisk": {
- "LearnMore": {
- "message": "A felhasználói hozzáférés vezérlésével reagálhat bizonyos bejelentkezési kockázati szintekre."
- }
- },
- "SingleSelectorActive": {
- "failed": "Nem sikerült betölteni ezeket az adatokat.",
- "reattempt": "Adatok betöltése: {0}. újbóli kísérlet összesen {1} kísérletből."
- },
- "TimeCondition": {
- "Errors": {
- "both": "Érvénytelen belefoglalási vagy kizárási időtartomány.",
- "daysOfWeek": "{0} Mindenképpen adja meg a hét legalább egy napját.",
- "endBeforeStart": "{0} Győződjön meg arról, hogy a kezdő dátum/idő a záró dátum/időnél korábbi.",
- "exclude": "Érvénytelen kizárási időtartomány.",
- "generic": "{0} Győződjön meg arról, hogy a hét napjai és az időzóna is be van állítva. Ha nem jelöli be az Egész nap lehetőséget, akkor kezdő és záró időpontot is be kell állítani.",
- "include": "Érvénytelen belefoglalási időtartomány.",
- "timeMissing": "{0} Mindenképpen adja meg a kezdő és a záró időpontot is.",
- "timeZone": "{0} Mindenképpen adjon meg egy időzónát.",
- "timesAndZone": "{0} Mindenképpen állítsa be a kezdő és a záró időpontot, illetve az időzónát."
- }
- },
- "UserActions": {
- "Included": {
- "none": "Nincsenek kijelölt felhőalkalmazások vagy -műveletek",
- "plural": "{0} felhasználói művelet belefoglalva",
- "singular": "1 felhasználói művelet belefoglalva"
- },
- "accessRequirement1": "1. szint",
- "accessRequirement2": "2. szint",
- "accessRequirement3": "3. szint",
- "accessRequirementsLabel": "A biztonságos alkalmazás adatainak elérése",
- "appsActionsAuthTitle": "Felhőalkalmazások, műveletek vagy hitelesítési környezet",
- "appsOrActionsSelectorInfoBallonText": "Elért alkalmazások vagy felhasználói műveletek",
- "appsOrActionsTitle": "Felhőalkalmazások vagy -műveletek",
- "label": "Felhasználói műveletek",
- "mainOptionsLabel": "Adja meg, hogy mire lesz érvényes a szabályzat",
- "registerOrJoinDevices": "Eszközök regisztrálása vagy csatlakoztatása",
- "registerSecurityInfo": "Biztonsági adatok regisztrálása",
- "selectionInfo": "Adja meg azokat a műveleteket, amelyekre érvényes lesz a szabályzat"
- },
- "UserSelectionBlade": {
- "DirectoryRoles": {
- "ariaLabel": "Címtárbeli szerepkörök kiválasztása"
- },
- "Excluded": {
- "gridAria": "Kizárt felhasználók listája"
- },
- "Included": {
- "gridAria": "Belefoglalt felhasználók listája"
- },
- "Validation": {
- "customRoleIncluded": "A címtárszerepkörök legalább egy egyéni szerepkört foglalnak magukban",
- "customRoleSelected": "Legalább egy egyéni szerepkör van kiválasztva",
- "failed": "A(z) „{0}” beállítás konfigurálása kötelező",
- "roles": "Válasszon ki legalább egy szerepkört",
- "usersGroups": "Válasszon ki legalább egy felhasználót vagy csoportot"
- },
- "learnMore": "A hozzáférés-vezérlés azon alapszik, hogy kire érvényes a szabályzat, például felhasználókra és csoportokra, számításifeladat-identitásokra, címtárbeli szerepkörökre vagy külső vendégekre."
- },
- "ValidationResult": {
- "blockEveryonePolicy": "A szabályzatkonfiguráció nem támogatott. Vizsgálja felül a hozzárendeléseket és a vezérlőket.",
- "invalidApplicationCondition": "Érvénytelen felhőalapú alkalmazások vannak kijelölve",
- "invalidClientTypesCondition": "Érvénytelen ügyfélalkalmazások vannak kijelölve",
- "invalidConditions": "Nincsenek kijelölve hozzárendelések",
- "invalidControls": "Érvénytelen vezérlők vannak kijelölve",
- "invalidDevicePlatformsCondition": "Érvénytelen eszközplatformok vannak kijelölve",
- "invalidDevicesCondition": "Érvénytelen eszközkonfiguráció. Valószínűleg érvénytelen a(z) {0} konfigurálása.",
- "invalidGrantControlPolicy": "Érvénytelen engedélyezési vezérlő",
- "invalidLocationsCondition": "Érvénytelen helyfeltételek vannak kijelölve",
- "invalidPolicy": "Nincsenek kijelölve hozzárendelések",
- "invalidSessionControlPolicy": "Érvénytelen munkamenet-vezérlő",
- "invalidSignInRisksCondition": "Érvénytelen a kijelölt bejelentkezési kockázat",
- "invalidUserRisksCondition": "Érvénytelen a kijelölt felhasználói kockázat",
- "invalidUsersCondition": "Érvénytelen felhasználók vannak kijelölve",
- "mamPolicyShouldOnlyTargetAndroidOrIosPlatforms": "Kizárólag androidos vagy iOS-es ügyfélplatformokhoz használhat MAM-szabályzatokat.",
- "notSupportedCombination": "A szabályzatkonfiguráció nem támogatott. Tájékozódjon részletesebben a támogatott szabályzatokról.",
- "pending": "Szabályzat érvényesítése",
- "requireComplianceEveryonePolicy": "A szabályzatkonfiguráció eszközmegfelelőséget ír elő az összes felhasználó számára. Vizsgálja felül a kijelölt hozzárendeléseket.",
- "success": "Érvényes szabályzat"
- },
- "VpnCert": {
- "Grid": {
- "aria": "VPN-tanúsítványok listája"
- }
- },
- "WarningsInfo": {
- "Controls": {
- "compliantDeviceEnabled": "Ne zárja ki magát a fiókjából! Győződjön meg arról, hogy eszköze megfelel az előírásoknak.",
- "domainJoinedDeviceEnabled": "Ne zárja ki magát a fiókjából! Győződjön meg arról, hogy eszköze a hibrid Azure Active Directoryhoz csatlakozó eszköz.",
- "exchangeDisabled": "Az Exchange ActiveSync csak a Szabályzatnak megfelelő eszköz és a Jóváhagyott ügyfélalkalmazás vezérlő használatát támogatja. További információkért kattintson ide.",
- "exchangeDisabled2": "Az Exchange ActiveSync csak a Szabályzatnak megfelelő eszköz, a Jóváhagyott ügyfélalkalmazás és a Szabályzatnak megfelelő ügyfélalkalmazás vezérlő használatát támogatja. További információkért kattintson ide.",
- "notAvailableForSP": "Bizonyos vezérlők a szabályzat-hozzárendelésben megadott „{0}” választás miatt nem érhetők el",
- "requireAuthOrMfa": "A(z) {0} nem használható a következővel: {1}",
- "requireMfa": "Fontolja meg az új „{0}“ nyilvános előzetes verziójának tesztelését",
- "requirePasswordChangeEnabled": "A Jelszómódosítás megkövetelése csak akkor használható, ha a szabályzat Minden felhőalkalmazáshoz van társítva"
- },
- "Policies": {
- "Linux": {
- "devicePlatformsReportOnlyPolicy": "A csak jelentéskészítési módban a megfelelő eszközöket igénylő szabályzatok macOS, iOS, Android és Linux rendszerben is kérhetik a felhasználóktól az eszköz tanúsítványának kiválasztását.",
- "excludeDevicePlatforms": "A macOS, az iOS, az Android és a Linux eszközplatformok kizárása a jelen szabályzatból.",
- "proceedAnywayDevicePlatforms": "Folytatás a kijelölt konfigurációval. A macOS, iOS, Android és Linux rendszerben a felhasználók figyelmeztetéseket kaphatnak, amikor a rendszer ellenőrzi az eszközök megfelelőségét."
- },
- "blockCurrentUserPolicy": "Ne zárja ki magát! Azt javasoljuk, hogy először kis felhasználócsoportra alkalmazza a szabályzatot, hogy biztosan a várt módon működjön. Ezenkívül javasoljuk, hogy zárjon ki legalább egy rendszergazdát a szabályzatból. Ez biztosítja, hogy továbbra is hozzáféréssel rendelkezzen, és frissíteni tudja a szabályzatot, ha módosításra van szükség. Tekintse át az érintett felhasználókat és alkalmazásokat.",
- "devicePlatformsReportOnlyPolicy": "A csak jelentéskészítési módban a megfelelő eszközöket igénylő szabályzatok macOS, iOS és Android rendszerben is kérhetik a felhasználóktól az eszköz tanúsítványának kiválasztását.",
- "excludeCurrentUserSelection": "Zárja ki az aktuális felhasználót ({0}) ebből a szabályzatból.",
- "excludeDevicePlatforms": "A macOS, az iOS és az Android eszközplatformok kizárása a jelen szabályzatból.",
- "proceedAnywayDevicePlatforms": "Folytatás a kijelölt konfigurációval. A macOS, iOS és Android rendszerben a felhasználók figyelmeztetéseket kaphatnak, amikor a rendszer ellenőrzi az eszközök megfelelőségét.",
- "proceedAnywaySelection": "Tudomásul veszem, hogy ez a szabályzat hatással lesz a fiókomra. Folytatom a műveletet."
- },
- "ServicePrincipals": {
- "blockExchange": "Az Office 365 Exchange Online kiválasztása többek között a OneDrive és a Teams alkalmazásra is hatással lesz.",
- "blockPortal": "Ne zárja ki magát a fiókjából! Ez a szabályzat a teljes Azure Portalra vonatkozik. Mielőtt folytatná, gondoskodjon arról, hogy Ön vagy valaki más továbbra is be tudjon jelentkezni a portálra.",
- "blockPortalWithSession": "Ne zárja ki magát a fiókjából! Ez a szabályzat a teljes Azure Portalra vonatkozik. Mielőtt folytatná, gondoskodjon arról, hogy Ön vagy valaki más továbbra is be tudjon jelentkezni a portálra.
Figyelmen kívül hagyhatja ezt a figyelmeztetést, ha olyan állandó böngésző-munkamenetre vonatkozó szabályzatot állít be, amely csak akkor működik megfelelően, ha a Minden felhőalkalmazás lehetőség van kiválasztva.",
- "blockSharePoint": "A SharePoint Online kiválasztása olyan alkalmazásokra is hatással lesz, mint például a Microsoft Teams, a Planner, a Delve, a MyAnalytics és a Newsfeed.",
- "blockSkype": "A Skype for Business Online kiválasztása a Microsoft Teamsre is hatással lesz.",
- "includeOrExclude": "Az alkalmazásszűrőt konfigurálhatja a(z) {0} vagy {1} beállítással, de mindkettővel nem.",
- "selectAppsNAForSP": "Egyes alkalmazások nem jelölhetők ki a szabályzat-hozzárendelésben megadott {0} kijelölés miatt.",
- "teamsBlocked": "A Microsoft Teams akkor is érintett, ha a szabályzat tartalmazza a SharePoint Online és az Exchange Online alkalmazásokat."
- },
- "Users": {
- "blockAllUsers": "Ne zárja ki saját magát! Ez a szabályzat minden felhasználót érinteni fog. Azt javasoljuk, hogy először a felhasználók egy kisebb csoportjára alkalmazza a szabályzatot, és ellenőrizze, hogy az elvárásoknak megfelelően működik-e."
- }
- },
- "WhatIf": {
- "Device": {
- "AttributesGrid": {
- "aria": "A bejelentkezés során alkalmazott eszköz attribútumainak listája.",
- "infoBalloon": "A bejelentkezés során alkalmazott eszköz attribútumainak listája."
- }
- }
- },
- "advancedTabText": "Speciális",
- "allCloudAppsErrorBox": "A Minden felhőalkalmazás lehetőséget kell kiválasztani, ha a Jelszómódosítás megkövetelése engedély van kiválasztva",
- "allDayCheckboxLabel": "Egész nap",
- "allDevicePlatforms": "Bármely eszköz",
- "allGuestUserInfoContent": "Tartalmazza az Azure AD B2B-s vendégfelhasználókat, de a SharePoint B2B-s vendégfelhasználókat nem",
- "allGuestUserLabel": "Minden vendég- és külső felhasználó",
- "allRiskLevelsOption": "Minden kockázati szint",
- "allTrustedLocationLabel": "Minden megbízható hely",
- "allUserGroupSetSelectorLabel": "Minden kiválasztott felhasználó és csoport",
- "allUsersString": "Minden felhasználó",
- "and": "{0} ÉS {1} ",
- "andWithGrouping": "({0}) ÉS {1} ",
- "androidDisplayName": "Android",
- "anyCloudAppSelection": "Bármely felhőalkalmazás",
- "appContextOptionInfoContent": "Kért hitelesítési címke",
- "appContextOptionLabel": "Kért hitelesítési címke (Előnézet)",
- "appContextUriPlaceholder": "Példa: uri:contoso.com:level3",
- "appEnforceInfoBubble": "Az alkalmazás által kényszerített korlátozások további adminisztrátori beállításokat követelhetnek meg a felhőalkalmazásokban. A korlátozások csak új munkamenetekhez kapcsolódóan lépnek életbe.",
- "appNotSetSeletorLabel": "0 felhőalkalmazás kiválasztva",
- "applyConditionClientAppInfoBalloonContent": "Ügyfélalkalmazások konfigurálása a szabályzat adott ügyfélalkalmazásokra való érvényesítéséhez",
- "applyConditionDevicePlatformInfoBalloonContent": "Eszközplatformok konfigurálása a szabályzat adott platformokra való érvényesítéséhez",
- "applyConditionDeviceStateInfoBalloonContent": "Eszközállapot konfigurálása a szabályzat adott eszközállapot(ok)ra való érvényesítéséhez",
- "applyConditionLocationInfoBalloonContent": "Helyek konfigurálása a szabályzat megbízható/nem megbízható helyekre való érvényesítéséhez",
- "applyConditionSigninRiskInfoBalloonContent": "A bejelentkezési kockázat konfigurálása a szabályzat kiválasztott kockázati szint(ek)re való érvényesítéséhez",
- "applyConditionUserRiskInfoBalloonContent": "A felhasználói kockázat konfigurálása a szabályzat kiválasztott kockázati szint(ek)re való érvényesítéséhez",
- "applyConditonLabel": "Konfigurálás",
- "ariaLabelPolicyDisabled": "A szabályzat le van tiltva",
- "ariaLabelPolicyEnabled": "A szabályzat engedélyezve van",
- "ariaLabelPolicyReportOnly": "A szabályzat „Csak jelentés” üzemmódban van",
- "blockAccess": "Hozzáférés letiltása",
- "builtInDirectoryRoleLabel": "Beépített címtárszerepkörök",
- "casCustomControlInfo": "Az egyéni szabályzatokat Cloud App Security portálon kell konfigurálni. Ez a vezérlő azonnal használható a kiemelt alkalmazásokhoz, és önállóan bevezethető bármely alkalmazáshoz. A két forgatókönyvvel kapcsolatos további információért kattintson ide.",
- "casInfoBubble": "Ez a vezérlő számos felhőalapú alkalmazások esetében használható.",
- "casPreconfiguredControlInfo": "Ez a vezérlő azonnal használható a kiemelt alkalmazásokhoz, és önállóan bevezethető bármely alkalmazáshoz. A két forgatókönyvvel kapcsolatos további információért kattintson ide.",
- "cert64DownloadCol": "Base64-tanúsítvány letöltése",
- "cert64Name": "Base64 VPN-tanúsítvány",
- "certDownloadCol": "Tanúsítvány letöltése",
- "certDurationCol": "Lejárat",
- "certDurationStartCol": "Érvényesség kezdete",
- "certName": "VPN-tanúsítvány",
- "chooseApplicationsBladeSubtitle": "",
- "chooseApplicationsBladeTitle": "Alkalmazások kiválasztása",
- "chooseApplicationsCartSubitle": "",
- "chooseApplicationsCartTitle": "Kiválasztott alkalmazások",
- "chooseApplicationsEmpty": "Nincsenek alkalmazások",
- "chooseApplicationsNone": "Egyik sem",
- "chooseApplicationsNoneFound": "A(z) {0} felhasználó nem található. Adjon meg egy másik nevet vagy azonosítót.",
- "chooseApplicationsPlural": "{0} és {1} további",
- "chooseApplicationsReAuthEverytimeInfo": "Az alkalmazást keresi? Egyes alkalmazások nem használhatók az „Újrahitelesítés megkövetelése – minden alkalommal” munkamenet-vezérlővel",
- "chooseApplicationsRemove": "Eltávolítás",
- "chooseApplicationsReturnedPlural": "{0} alkalmazás található",
- "chooseApplicationsReturnedSingular": "1 alkalmazás található",
- "chooseApplicationsSearchBalloon": "Alkalmazás keresése név vagy azonosító megadásával.",
- "chooseApplicationsSearchHint": "Alkalmazások keresése...",
- "chooseApplicationsSearchLabel": "Alkalmazások",
- "chooseApplicationsSearching": "Keresés...",
- "chooseApplicationsSelect": "Kijelölés",
- "chooseApplicationsSelected": "Kiválasztva",
- "chooseApplicationsSingular": "{0} és 1 további",
- "chooseApplicationsTooMany": "Nem jeleníthető meg az összes eredmény. Szűrje az eredményeket a keresési mező használatával.",
- "chooseLocationCorpnetItem": "Vállalati hálózat",
- "chooseLocationSelectedLocationsLabel": "Kijelölt helyek",
- "chooseLocationTrustedIpsItem": "MFA megbízható IP-címei",
- "chooseLocationsBladeSubtitle": "",
- "chooseLocationsBladeTitle": "Helyek kiválasztása",
- "chooseLocationsCartSubitle": "",
- "chooseLocationsCartTitle": "Kiválasztott helyek",
- "chooseLocationsEmpty": "Nincsenek helyek",
- "chooseLocationsExcludedSelectorTitle": "Kijelölés",
- "chooseLocationsIncludedSelectorTitle": "Kijelölés",
- "chooseLocationsNone": "Egyik sem",
- "chooseLocationsNoneFound": "A(z) {0} felhasználó nem található. Adjon meg egy másik nevet vagy azonosítót.",
- "chooseLocationsPlural": "{0} és {1} további",
- "chooseLocationsRemove": "Eltávolítás",
- "chooseLocationsReturnedPlural": "A rendszer {0} helyet talált",
- "chooseLocationsReturnedSingular": "A rendszer 1 helyet talált",
- "chooseLocationsSearchBalloon": "Hely keresése név megadásával.",
- "chooseLocationsSearchHint": "Helyek keresése...",
- "chooseLocationsSearchLabel": "Helyek",
- "chooseLocationsSearching": "Keresés...",
- "chooseLocationsSelect": "Kijelölés",
- "chooseLocationsSelected": "Kijelölt",
- "chooseLocationsSelectionBladeExcludedSelectorTitle": "Kijelölés",
- "chooseLocationsSelectionBladeIncludedSelectorTitle": "Kijelölés",
- "chooseLocationsSingular": "{0} és 1 további",
- "chooseLocationsTooMany": "Nem jeleníthető meg az összes eredmény. Szűrje az eredményeket a keresési mező használatával.",
- "claimProviderAddCommandText": "Új egyéni vezérlő",
- "claimProviderAddNewBladeTitle": "Új egyéni vezérlő",
- "claimProviderDeleteCommand": "Törlés",
- "claimProviderDeleteDescription": "Biztos, hogy törli a(z) {0} hálózatot? Ez a művelet nem vonható vissza.",
- "claimProviderDeleteTitle": "Folytatja?",
- "claimProviderEditInfoText": "Adja meg a jogcímszolgáltatóktól kapott, egyéni vezérlőkhöz tartozó JSON-t.",
- "claimProviderNotificationCreateDescription": "A(z) „{0}” nevű egyéni vezérlő létrehozása",
- "claimProviderNotificationCreateFailedDescription": "A(z) „{0}” nevű egyéni vezérlő létrehozása sikertelen. Próbálkozzon újra később.",
- "claimProviderNotificationCreateFailedTitle": "Nem sikerült létrehozni az egyéni vezérlőt",
- "claimProviderNotificationCreateSuccessDescription": "A(z) „{0}” nevű egyéni vezérlő létrehozva",
- "claimProviderNotificationCreateSuccessTitle": "Hálózat ({0}) létrehozva",
- "claimProviderNotificationCreateTitle": "Hálózat ({0}) létrehozása",
- "claimProviderNotificationDeleteDescription": "A(z) „{0}” nevű egyéni vezérlő törlése",
- "claimProviderNotificationDeleteFailedDescription": "A(z) „{0}” nevű egyéni vezérlő törlése sikertelen. Próbálkozzon újra később.",
- "claimProviderNotificationDeleteFailedTitle": "Nem sikerült törölni az egyéni vezérlőt",
- "claimProviderNotificationDeleteSuccessDescription": "A(z) „{0}” nevű egyéni vezérlő törölve",
- "claimProviderNotificationDeleteSuccessTitle": "A(z) {0} hálózat törölve",
- "claimProviderNotificationDeleteTitle": "A(z) {0} törlése",
- "claimProviderNotificationUpdateDescription": "A(z) „{0}” nevű egyéni vezérlő frissítése",
- "claimProviderNotificationUpdateFailedDescription": "A(z) „{0}” nevű egyéni vezérlő frissítése sikertelen. Próbálkozzon újra később.",
- "claimProviderNotificationUpdateFailedTitle": "Nem sikerült frissíteni az egyéni vezérlőt",
- "claimProviderNotificationUpdateSuccessDescription": "A(z) „{0}” nevű egyéni vezérlő frissítve",
- "claimProviderNotificationUpdateSuccessTitle": "A(z) {0} hálózat frissítve",
- "claimProviderNotificationUpdateTitle": "A(z) {0} hálózat frissítése",
- "claimProviderValidationAppIdInvalid": "Az „AppId” értéke érvénytelen. Tekintse át, és próbálkozzon újra.",
- "claimProviderValidationClientIdMissing": "Az adatokból hiányzik a „ClientId” érték. Tekintse át, és próbálkozzon újra.",
- "claimProviderValidationControlClaimsRequestedMissing": "A „Control” elem nem tartalmaz „ClaimsRequested” értéket. Tekintse át, és próbálkozzon újra.",
- "claimProviderValidationControlClaimsRequestedTypeMissing": "A „ClaimsRequested” elem nem tartalmaz „Type” értéket. Tekintse át, és próbálkozzon újra.",
- "claimProviderValidationControlIdAlreadyExists": "A „Control” elem „Id” értéke már létezik. Tekintse át, és próbálkozzon újra.",
- "claimProviderValidationControlIdMissing": "A „Control” elem nem tartalmaz „Id” értéket. Tekintse át, és próbálkozzon újra.",
- "claimProviderValidationControlIdReferencedInExistingPolicy": "A „Control” elem „Id” értéke nem távolítható el, mert meglévő szabályzat hivatkozik rá. Távolítsa el a szabályzatból előbb.",
- "claimProviderValidationControlIdTooManyControls": "A Control tulajdonság túl sok vezérlőelemet tartalmaz. Tekintse át, majd próbálkozzon újra.",
- "claimProviderValidationControlIdValueReserved": "A „Control” elem „Id” értéke fenntartott kulcsszó, használjon más azonosítót.",
- "claimProviderValidationControlNameAlreadyExists": "A „Control” elem „Name” értéke már létezik. Tekintse át, és próbálkozzon újra.",
- "claimProviderValidationControlNameMissing": "A „Control” nem tartalmaz „Name” értéket. Tekintse át, és próbálkozzon újra.",
- "claimProviderValidationControlsMissing": "Az adatokból hiányzik a „Controls” érték. Tekintse át, és próbálkozzon újra.",
- "claimProviderValidationDiscoveryUrlMissing": "Az adatokból hiányzik a „DiscoveryUrl” érték. Tekintse át, és próbálkozzon újra.",
- "claimProviderValidationInvalid": "A megadott adatok érvénytelenek. Tekintse át, és próbálkozzon újra.",
- "claimProviderValidationInvalidJsonDefinition": "Nem lehet menteni az egyéni vezérlőt. Tekintse át a JSON-szöveget, és próbálkozzon újra.",
- "claimProviderValidationNameAlreadyExists": "A „Name” érték már létezik. Tekintse át, és próbálkozzon újra.",
- "claimProviderValidationNameMissing": "Az adatokból hiányzik a „Name” érték. Tekintse át, és próbálkozzon újra.",
- "claimProviderValidationUnknown": "A megadott adatok ellenőrzése közben ismeretlen hiba történt. Tekintse át, és próbálkozzon újra.",
- "claimProvidersNone": "Nincs egyéni vezérlő",
- "claimProvidersSearchPlaceholder": "Keressen vezérlőket.",
- "classicPoilcyFilterTitle": "Megjelenítés",
- "classicPolicyAllPlatforms": "Összes platform",
- "classicPolicyClientAppBrowserAndNative": "Böngésző, mobilalkalmazások és asztali ügyfelek",
- "classicPolicyCloudAppTitle": "Felhőalkalmazás",
- "classicPolicyControlAllow": "Engedélyezés",
- "classicPolicyControlBlock": "Blokk",
- "classicPolicyControlBlockWhenNotAtWork": "Hozzáférés letiltása a munkahelyen kívül",
- "classicPolicyControlRequireCompliantDevice": "Megfelelő eszköz megkövetelése",
- "classicPolicyControlRequireDomainJoinedDevice": "Tartományhoz csatlakoztatott eszköz megkövetelése",
- "classicPolicyControlRequireMfa": "Többtényezős hitelesítés megkövetelése",
- "classicPolicyControlRequireMfaWhenNotAtWork": "Többtényezős hitelesítés megkövetelése a munkahelyen kívül",
- "classicPolicyDeleteCommand": "Törlés",
- "classicPolicyDeleteFailTitle": "Nem sikerült törölni a klasszikus szabályzatot",
- "classicPolicyDeleteInProgressTitle": "Klasszikus szabályzat törlése",
- "classicPolicyDeleteSuccessTitle": "Klasszikus szabályzat törölve",
- "classicPolicyDetailBladeTitle": "Részletek",
- "classicPolicyDisableCommand": "Letiltás",
- "classicPolicyDisableConfirmation": "Biztosan letiltja a(z) {0} szabályzatot? Ez a művelet nem vonható vissza.",
- "classicPolicyDisableFailDescription": "Nem sikerült letiltani a(z) {0} szabályzatot",
- "classicPolicyDisableFailTitle": "Nem sikerült letiltani a klasszikus szabályzatot",
- "classicPolicyDisableInProgressDescription": "A(z) {0} szabályzat letiltása",
- "classicPolicyDisableInProgressTitle": "Klasszikus szabályzat letiltása",
- "classicPolicyDisableSuccessDescription": "A(z) {0} szabályzat letiltása sikerült",
- "classicPolicyDisableSuccessTitle": "Klasszikus szabályzat letiltva",
- "classicPolicyEasSupportedPlatforms": "Az Exchange ActiveSync által támogatott platformok",
- "classicPolicyEasUnsupportedPlatforms": "Az Exchange ActiveSync által nem támogatott platformok",
- "classicPolicyExcludedPlatformsTitle": "Kizárt eszközplatformok",
- "classicPolicyFilterAll": "Minden szabályzat",
- "classicPolicyFilterDisabled": "Letiltott szabályzatok",
- "classicPolicyFilterEnabled": "Engedélyezett szabályzatok",
- "classicPolicyIncludeExcludeMembersDescription": "Egyes csoportok kizárásával több fázisban telepítheti át a szabályzatokat.",
- "classicPolicyIncludeExcludeMembersTitle": "Csoportok belefoglalása vagy kizárása",
- "classicPolicyIncludedPlatformsTitle": "Befoglalt eszközplatformok",
- "classicPolicyManualMigrationMessage": "A szabályzatot manuálisan kell áttelepíteni.",
- "classicPolicyMigrateCommand": "Áttelepítés",
- "classicPolicyMigrateConfirmation": "Biztosan áttelepíti a(z) {0} szabályzatot? A szabályzatot csak egyszer lehet áttelepíteni.",
- "classicPolicyMigrateFailDescription": "Nem sikerült áttelepíteni a(z) {0} szabályzatot",
- "classicPolicyMigrateFailTitle": "Nem sikerült áttelepíteni a klasszikus szabályzatot",
- "classicPolicyMigrateInProgressDescription": "A(z) {0} szabályzat áttelepítése",
- "classicPolicyMigrateInProgressTitle": "Klasszikus szabályzat áttelepítése",
- "classicPolicyMigrateRecommendText": "Ajánlás: Végezzen áttelepítést az új Azure Portal szabályzataira.",
- "classicPolicyMigrateSuccessTitle": "A klasszikus szabályzat áttelepítése sikerült",
- "classicPolicyMigratedSuccessDescription": "Ez a klasszikus szabályzat mostantól kezelhető a Szabályzatok pontban.",
- "classicPolicyMigratedSuccessDescriptionMultiple": "A klasszikus szabályzatot {0} új szabályzat formájában telepíti át a rendszer. Az új szabályzatok a Szabályzatok pontban kezelhetők.",
- "classicPolicyNoEditPermissionMsg": "Nincs engedélye a szabályzat szerkesztéséhez. Csak a globális és a biztonsági rendszergazdák módosíthatja a szabályzatot. További információért kattintson ide.",
- "classicPolicySaveFailDescription": "Nem sikerült menteni a(z) {0} szabályzatot",
- "classicPolicySaveFailTitle": "Nem sikerült menteni a klasszikus szabályzatot",
- "classicPolicySaveInProgressDescription": "A(z) {0} szabályzat mentése",
- "classicPolicySaveInProgressTitle": "Klasszikus szabályzat mentése",
- "classicPolicySaveSuccessDescription": "A(z) {0} szabályzat mentése sikerült",
- "classicPolicySaveSuccessTitle": "Klasszikus szabályzat mentve",
- "clientAppBladeLegacyInfoBanner": "Az örökölt hitelesítés használata jelenleg nem támogatott",
- "clientAppBladeLegacyUpsellBanner": "A nem támogatott ügyfélalkalmazások letiltása (Előzetes verzió)",
- "clientAppBladeTitle": "Ügyfélalkalmazások",
- "clientAppDescription": "Válassza ki az ügyfélalkalmazásokat, melyekre érvényes lesz a házirend",
- "clientAppExchangeActiveSync": "Exchange ActiveSync",
- "clientAppExchangeDisabledInfo": "Az Exchange ActiveSync akkor érhető el, ha az Exchange Online az egyetlen kijelölt felhőalkalmazás. További információkért kattintson ide",
- "clientAppExchangeWarning": "Az Exchange ActiveSync jelenleg semmilyen más feltételt nem támogat",
- "clientAppLearnMore": "A felhasználói hozzáférés vezérlésével megcélozhat olyan ügyfélalkalmazásokat, amelyek nem használnak modern hitelesítést.",
- "clientAppLegacyHeader": "Örökölt hitelesítési ügyfelek",
- "clientAppMobileDesktop": "Mobilalkalmazások és asztali ügyfelek",
- "clientAppModernHeader": "Modern hitelesítési ügyfelek",
- "clientAppOnlySupportedPlatforms": "Házirend alkalmazása csak a támogatott platformokra",
- "clientAppSelectSpecificClientApps": "Ügyfélalkalmazások kijelölése",
- "clientAppV2BladeTitle": "Ügyfélalkalmazások (Előzetes verzió)",
- "clientAppWebBrowser": "Böngésző",
- "clientAppsSelectedLabel": "{0} belefoglalva",
- "clientTypeBrowser": "Böngésző",
- "clientTypeEas": "Exchange ActiveSync-ügyfelek",
- "clientTypeEasInfo": "Csak örökölt hitelesítést használó Exchange ActiveSync-kliensek.",
- "clientTypeModernAuth": "Modern hitelesítési ügyfelek",
- "clientTypeOtherClients": "Egyéb ügyfelek",
- "clientTypeOtherClientsInfo": "Ez vonatkozik a régebbi Office-kliensekre és egyéb e-mail-protokollokra (POP, IMAP, SMTP stb.). [További információ][1]\n[1]: https://aka.ms/caclientapps\n",
- "cloudAppCountDiffBannerText": "A szabályzatban konfigurált {0} felhőalkalmazás törlődött a könyvtárból, de ez a szabályzat más alkalmazásait nem érinti. A szabályzat alkalmazás szakaszának legközelebbi frissítésekor a törölt alkalmazások automatikusan el lesznek távolítva.",
- "cloudAppsSelectionBladeAllMicrosoftApps": "Az összes Microsoft-alkalmazás",
- "cloudAppsSelectionExcludeAllMicrosoftClients": "A Microsoft felhőalapú, asztali és mobilalkalmazásainak engedélyezése (Előzetes verzió)",
- "cloudappsSelectionBladeAllCloudapps": "Minden felhőalkalmazás",
- "cloudappsSelectionBladeExcludeDescription": "Válassza ki a szabályzat alól mentesítendő felhőalkalmazásokat",
- "cloudappsSelectionBladeExcludedSelectorTitle": "Kizárt felhőalkalmazások kiválasztása",
- "cloudappsSelectionBladeIncludeDescription": "Válassza ki a felhőalkalmazásokat, melyekre érvényes lesz a házirend",
- "cloudappsSelectionBladeIncludedSelectorTitle": "Kijelölés",
- "cloudappsSelectionBladeSelectedCloudapps": "Alkalmazások kiválasztása",
- "cloudappsSelectorInfoBallonText": "Azok a szolgáltatások, amelyekhez a felhasználó munkavégzés céljából hozzáfér. Példa: Salesforce",
- "cloudappsSelectorUserPlural": "{0} alkalmazás",
- "cloudappsSelectorUserSingular": "1 alkalmazás",
- "conditionLabelMulti": "{0} kijelölt feltétel",
- "conditionLabelOne": "1 kijelölt feltétel",
- "conditionalAccessBladeTitle": "Feltételes hozzáférés",
- "conditionsNotSelectedLabel": "Nincs konfigurálva",
- "conditionsReqPwSet": "Néhány lehetőség nem érhető el, mert jelenleg a Jelszómódosítás megkövetelése engedély van kiválasztva",
- "configureCasText": "Cloud App Security konfigurálása",
- "configureCustomControlsText": "Egyéni szabályzat konfigurálása",
- "controlLabelMulti": "{0} kijelölt vezérlő",
- "controlLabelOne": "1 kijelölt vezérlő",
- "controlValidatorText": "Jelöljön ki legalább egy vezérlőt",
- "controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
- "controlsDeviceComplianceInfoBubble": "Az eszköznek Intune-kompatibilisnek kell lennie. Ha az eszköz nem kompatibilis, a rendszer kérni fogja a felhasználót, hogy tegye kompatibilissé az eszközt",
- "controlsDomainJoinedInfoBubble": "Az eszközöknek hibrid Azure Active Directoryhoz csatlakozónak kell lenniük.",
- "controlsMamInfoBubble": "Az eszköznek a következő jóváhagyott ügyfélalkalmazásokat kell használnia.",
- "controlsMfaInfoBubble": "A felhasználónak további biztonság követelményeket kell teljesítenie, például telefonhívás, szöveg",
- "controlsOrAndInfoBubble": "ControlsOrAndInfoBubble",
- "controlsRequireCompliantAppInfoBubble": "Az eszköznek szabályzat által védett alkalmazásokat kell használnia.",
- "controlsRequirePasswordResetInfoBubble": "Jelszómódosítás megkövetelése a felhasználói kockázat csökkentése érdekében. Ehhez a beállításhoz többtényezős hitelesítés is szükséges. Más szabályozók nem használhatók.",
- "countriesRadiobuttonInfoBalloonContent": "A felhasználó IP-címe határozza meg, hogy az adott bejelentkezés mely országból/régióból történik.",
- "createNewVpnCert": "Új tanúsítvány",
- "createdTimeLabel": "Létrehozás időpontja",
- "customRoleLabel": "Egyéni szerepkörök (nem támogatott)",
- "dateRangeTypeLabel": "Dátumtartomány",
- "daysOfWeekPlaceholderText": "Szűrés a hét napjai szerint",
- "daysOfWeekTypeLabel": "A hét napjai",
- "deletePolicyNoLicenseText": "Most már törölheti ezt a szabályzatot. A törlés után már nem fogja tudni újból létrehozni, amíg nem rendelkezik a szükséges licencekkel.",
- "descriptionContentForControlsAndOr": "Több vezérlő esetén",
- "devicePlatform": "Eszközplatform",
- "devicePlatformConditionHelpDescription": "Szabályzat alkalmazása a kiválasztott eszközplatformokra.\n[További információ][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2044750",
- "devicePlatformInclude": "{0} belefoglalva",
- "devicePlatformIncludeExclude": "{0} és {1} kizárva",
- "devicePlatformNoSelectionError": "Egyes eszközplatformok esetén ki kell választani egy alárendelt elemet.",
- "devicePlatformsNone": "Egyik sem",
- "deviceSelectionBladeExcludeDescription": "Válassza ki a szabályzat alól mentesítendő platformokat",
- "deviceSelectionBladeIncludeDescription": "Válassza ki a házirend hatálya alá tartozó eszközplatformokat",
- "deviceStateAll": "Az összes eszköz állapota",
- "deviceStateCompliant": "Eszköz megjelölve megfelelőként",
- "deviceStateCompliantInfoContent": "Az Intune-kompatibilis eszközök kimaradnak a szabályzat kiértékeléséből, így például ha a szabályzat letiltja a hozzáférést, akkor az összes eszközt le fogja tiltani, kivéve azokat, amelyek Intune-kompatibilisek.",
- "deviceStateConditionConfigureInfoContent": "Szabályzat konfigurálása eszközállapot alapján",
- "deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Hybrid Azure AD joined' or 'marked as compliant'.\n '{0}' has been deprecated. Use '{1}' instead.",
- "deviceStateConditionSelectorLabel": "Eszköz állapota (Előzetes verzió)",
- "deviceStateDomainJoined": "Hibrid Azure Active Directoryhoz csatlakozó eszköz",
- "deviceStateDomainJoinedInfoContent": "A hibrid Azure Active Directoryhoz csatlakozó eszközök kimaradnak a szabályzat kiértékeléséből, így például ha a szabályzat letiltja a hozzáférést, akkor az összes eszközt le fogja tiltani, kivéve azokat, amelyek a hibrid Azure AD-hez vannak csatlakoztatva.",
- "deviceStateDomainJoinedInfoLinkText": "További információ.",
- "deviceStateExcludeDescription": "Válassza ki az eszközök szabályzatból való kizárásához használt eszközállapot-feltételt.",
- "deviceStateIncludeAndExcludeOneLabel": "{0}, a következő kizárásával: {1}",
- "deviceStateIncludeAndExcludeTwoLabel": "{0}, a következők kizárásával: {1}, {2}",
- "directoryRoleInfoContent": "Szabályzat hozzárendelése a beépített címtárszerepkörökhöz.",
- "directoryRolesLabel": "Címtári szerepkörök",
- "discardbutton": "Elvetés",
- "downloadDefaultFileName": "IP-címtartományok",
- "downloadExampleFileName": "Példa",
- "downloadExampleHeader": "Ez egy példafájl, amely bemutatja, hogy milyen fajta adatok használhatók érvényesen. A # karakterrel kezdődő sorokat figyelmen kívül hagyja a rendszer.",
- "endDatePickerLabel": "Vége",
- "endTimePickerLabel": "Befejezés időpontja",
- "enterCountryText": "A rendszer párban értékeli ki az IP-címet és az országot. Adja meg az országot.",
- "enterIpText": "A rendszer párban értékeli ki az IP-címet és az országot. Adja meg az IP-címet.",
- "enterUserText": "Nincs megadva felhasználó. Adjon meg egy felhasználót.",
- "evaluationResult": "Értékelés eredménye",
- "exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
- "exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync csak a támogatott platformokkal",
- "excludeAllTrustedLocationSelectorText": "minden megbízható hely",
- "featureRequiresP2": "Ehhez a funkcióhoz prémium szintű Azure AD 2 licenc szükséges.",
- "friday": "péntek",
- "grantControls": "Engedélyezési vezérlők",
- "gridNetworkTrusted": "Megbízható",
- "gridPolicyCreatedDateTime": "Létrehozás dátuma",
- "gridPolicyEnabled": "Engedélyezve",
- "gridPolicyModifiedDateTime": "Módosítás dátuma",
- "gridPolicyName": "Házirend neve",
- "gridPolicyState": "Állapot",
- "groupSelectionBladeExcludeDescription": "Válassza ki a szabályzat alól mentesítendő csoportokat",
- "groupSelectionBladeExcludedSelectorTitle": "Kizárt csoportok kiválasztása",
- "groupSelectionBladeSelect": "Csoportok kiválasztása",
- "groupSelectorInfoBallonText": "A szabályzat hatálya alá tartozó csoportok a címtárban. Példa: Próbacsoport",
- "groupsSelectionBladeTitle": "Csoportok",
- "helpCommonScenariosText": "Szeretné megismerni a leggyakoribb alkalmazási helyzeteket?",
- "helpCondition1": "Ha bármely felhasználó a vállalati hálózaton kívüli helyről csatlakozik",
- "helpCondition2": "Ha a Vezetők csoport felhasználói bejelentkeznek",
- "helpConditionsTitle": "Feltételek",
- "helpControl1": "Többtényezős hitelesítéssel kell bejelentkezniük",
- "helpControl2": "Intune-kompatibilis vagy tartományhoz csatlakoztatott eszközt kell használniuk",
- "helpControlsTitle": "Szabályzók",
- "helpIntroText": "A feltételes hozzáférés lehetővé teszi, hogy meghatározott feltételek teljesülése esetén hozzáférési követelményeket léptessen érvénybe. Az alábbi példák ezt szemléltetik",
- "helpIntroTitle": "Mi a Feltételes hozzáférés?",
- "helpLearnMoreText": "További tudnivalók a Feltételes hozzáférésről",
- "helpStartStep1": "Hozza létre első szabályzatát a + Új szabályzat elemre kattintva",
- "helpStartStep2": "Adja meg a szabályzat feltételeit és szabályzóit",
- "helpStartStep3": "Ha elkészült, ne felejtse el kiválasztani a Szabályzat engedélyezése és a Létrehozás lehetőséget",
- "helpStartTitle": "Első lépések",
- "highRisk": "Nagy",
- "includeAndExcludeAppsTextFormat": "Belefoglalás: {0}. Kizárás: {1}.",
- "includeAppsTextFormat": "Belefoglalás: {0}.",
- "includeUnknownAreasCheckboxInfoBalloonContent": "Az ismeretlen területek olyan IP-címek, melyeket nem lehet országhoz/régióhoz hozzárendelni.",
- "includeUnknownAreasCheckboxLabel": "Ismeretlen területek belefoglalása",
- "infoCommandLabel": "Információ",
- "invalidCertDuration": "A tanúsítvány érvényességi ideje érvénytelen",
- "invalidIpAddress": "Az értéknek érvényes IP-címnek kell lennie",
- "invalidUriErrorMsg": "Érvényes URI azonosítót adjon meg. Példa: uri:contoso.com:acr ",
- "iosDisplayName": "iOS",
- "linuxDisplayName": "Linux",
- "linuxDisplayNamePreview": "Linux (Előzetes verzió)",
- "loadAll": "Az összes betöltése",
- "loading": "Betöltés…",
- "locationConfigureNamedLocationsText": "Minden megbízható hely konfigurálása",
- "locationConfigureNamedLocationsUri": "{0}/usermanagement/mfasettings.aspx?tenantid={1}&culture={2}",
- "locationNameTooLongError": "A hely neve túl hosszú, legfeljebb 256 karakter lehet",
- "locationSelectionBladeExcludeDescription": "Válassza ki a szabályzat alól mentesítendő helyeket",
- "locationSelectionBladeIncludeDescription": "Válassza ki a házirend hatálya alá tartozó helyeket",
- "locationsAllLocationsLabel": "Bármely hely",
- "locationsAllNamedLocationsLabel": "Minden megbízható IP-cím",
- "locationsAllPrivateLinksLabel": "A bérlő összes privát kapcsolata",
- "locationsIncludeExcludeLabel": "{0} és minden megbízható IP-cím kizárása",
- "locationsSelectedPrivateLinksLabel": "Kiválasztott privát kapcsolatok",
- "lowRisk": "Kicsi",
- "macOsDisplayName": "macOS",
- "managePoliciesLicenseText": "A Feltételes hozzáférési szabályzatok kezeléséhez a szervezetnek Prémium P1 vagy P2 szintű Azure AD-re van szüksége.",
- "markAsTrustedCheckboxInfoBalloonContent": "A megbízható helyről való bejelentkezés csökkenti az adott felhasználó bejelentkezési kockázatát. A helyet csak akkor jelölje meg megbízhatóként, ha tudja, hogy a megadott IP-címtartományok használata megalapozott és hihető a szervezetben.",
- "markAsTrustedCheckboxLabel": "Megjelölés megbízható helyként",
- "mediumRisk": "Közepes",
- "memberSelectionCommandRemove": "Eltávolítás",
- "menuItemClaimProviderControls": "Egyéni vezérlők (Előzetes verzió)",
- "menuItemClassicPolicies": "Klasszikus szabályzatok",
- "menuItemInsightsAndReporting": "Betekintések és jelentéskészítés",
- "menuItemManage": "Kezelés",
- "menuItemNamedLocationsPreview": "Nevesített helyek (előzetes verzió)",
- "menuItemNamedNetworks": "Nevesített helyek",
- "menuItemPolicies": "Házirendek",
- "menuItemTermsOfUse": "Használati feltételek",
- "modifiedTimeLabel": "Módosítás ideje",
- "monday": "hétfő",
- "nameLabel": "Név",
- "namedLocationCountryInfoBanner": "Csak az IPv4-címek vannak leképezve országokra/régiókra. Az IPv6-címek az ismeretlen országok/régiók között szerepelnek.",
- "namedLocationTypeCountry": "Országok/régiók",
- "namedLocationTypeLabel": "Hely megadása az alábbi használatával:",
- "namedLocationUpsellBanner": "Ez a nézet elavult. Váltson az új és továbbfejlesztett Nevesített helyek nézetre.",
- "namedLocationsHelpDescription": "A Microsoft Azure AD biztonsági jelentései nevesített helyeket használnak az álpozitív találatok és az Azure AD Feltételes hozzáférési szabályzatai számának csökkentésére.\n[További információ][1]\n[1]: https://aka.ms/namedlocationupdate",
- "namedNetworkAddIpRanges": "Új IP-címtartomány hozzáadása (példa: 40.77.182.32/27)",
- "namedNetworkCountryNeeded": "Legalább egy országot ki kell választania",
- "namedNetworkDeleteCommand": "Törlés",
- "namedNetworkDeleteDescription": "Biztos, hogy törli a(z) {0} hálózatot? Ez a művelet nem vonható vissza.",
- "namedNetworkDeleteTitle": "Biztos benne?",
- "namedNetworkDownloadIpRange": "Letöltés",
- "namedNetworkInvalidRange": "Az értéknek érvényes IP-címtartománynak kell lennie.",
- "namedNetworkIpRangeNeeded": "Legalább egy érvényes IP-címtartomány szükséges",
- "namedNetworkIpRangesDescriptionContent": "A szervezet IP-címtartományainak konfigurálása",
- "namedNetworkIpRangesTab": "IP-címtartományok",
- "namedNetworkListAdd": "Új hely",
- "namedNetworkListConfigureTrustedIps": "MFA megbízható IP-címeinek konfigurálása",
- "namedNetworkNameDescription": "Példa: Budapesti iroda",
- "namedNetworkNameInvalid": "A megadott név érvénytelen.",
- "namedNetworkNameRequired": "A hely nevét kötelező megadni.",
- "namedNetworkNoIpRanges": "Nincsenek IP-címtartományok",
- "namedNetworkNotificationCreateDescription": "A(z) {0} nevű hely létrehozása",
- "namedNetworkNotificationCreateFailedDescription": "Nem sikerült létrehozni a(z) {0} nevű helyet. Később próbálkozzon újra.",
- "namedNetworkNotificationCreateFailedTitle": "Nem sikerült létrehozni a helyet",
- "namedNetworkNotificationCreateSuccessDescription": "A(z) {0} nevű hely létrehozva",
- "namedNetworkNotificationCreateSuccessTitle": "Hálózat ({0}) létrehozva",
- "namedNetworkNotificationCreateTitle": "Hálózat ({0}) létrehozása",
- "namedNetworkNotificationDeleteDescription": "A(z) {0} nevű hely törlése",
- "namedNetworkNotificationDeleteFailedDescription": "Nem sikerült törölni a(z) {0} nevű helyet. Később próbálkozzon újra.",
- "namedNetworkNotificationDeleteFailedTitle": "Nem sikerült törölni a helyet",
- "namedNetworkNotificationDeleteSuccessDescription": "A(z) {0} nevű hely törölve",
- "namedNetworkNotificationDeleteSuccessTitle": "A(z) {0} hálózat törölve",
- "namedNetworkNotificationDeleteTitle": "A(z) {0} törlése",
- "namedNetworkNotificationUpdateDescription": "A(z) {0} nevű hely frissítése",
- "namedNetworkNotificationUpdateFailedDescription": "Nem sikerült frissíteni a(z) {0} nevű helyet. Később próbálkozzon újra.",
- "namedNetworkNotificationUpdateFailedTitle": "Nem sikerült frissíteni a helyet",
- "namedNetworkNotificationUpdateSuccessDescription": "A(z) {0} nevű hely frissítve",
- "namedNetworkNotificationUpdateSuccessTitle": "A(z) {0} hálózat frissítve",
- "namedNetworkNotificationUpdateTitle": "A(z) {0} hálózat frissítése",
- "namedNetworkSearchPlaceholder": "Helyek keresése.",
- "namedNetworkUploadFailedDescription": "Hiba történt a feltöltött fájl elemzése közben. Ügyeljen arra, hogy olyan egyszerű szöveges fájlt töltsön fel, amelynek minden sora CIDR formátumú.",
- "namedNetworkUploadFailedTitle": "Nem sikerült elemezni a(z) „{0}” fájlt.",
- "namedNetworkUploadInProgressDescription": "Folyamatban van a(z) {0} fájl érvényes CIDR-értékeinek elemzése.",
- "namedNetworkUploadInProgressTitle": "Elemzés – {0}",
- "namedNetworkUploadInvalidDescription": "A(z) {0} túl nagy méretű, vagy érvénytelen a formátuma.",
- "namedNetworkUploadInvalidTitle": "{0} – érvénytelen",
- "namedNetworkUploadIpRange": "Feltöltés",
- "namedNetworkUploadSuccessDescription": "{0} sor elemezve, amelyből {1} helytelen formátumú, {2} pedig kihagyva.",
- "namedNetworkUploadSuccessTitle": "Elemzés befejezve – {0}",
- "namedNetworksAdd": "Új nevesített hely",
- "namedNetworksConditionHelpDescription": "Felhasználói hozzáférés szabályozása a fizikai hely alapján.\n[További információ][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
- "namedNetworksExcludeLabel": "{0} és {1} kizárva",
- "namedNetworksHelpDescription": "A Microsoft Azure AD biztonsági jelentései nevesített helyeket használnak a nem valós találatok és az Azure AD Feltételes hozzáférési szabályzatai számának csökkentésére.\n[További információ][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
- "namedNetworksIncludeLabel": "{0} belefoglalva",
- "namedNetworksNone": "Nem találhatók nevesített helyek.",
- "namedNetworksTitle": "Helyek konfigurálása",
- "namednetworkExceedingSizeErrorBladeTitle": "Hibaüzenet részletei",
- "namednetworkExceedingSizeErrorDetailText": "További részletekért kattintson ide.",
- "namednetworkExceedingSizeErrorMessage": "Túllépte a nevesített helyek esetében maximálisan engedélyezett tárhelyet. Próbálkozzon újra egy rövidebb listával. További részletek megtekintéséhez kattintson ide.",
- "newCertName": "új tanúsítvány",
- "noPolicyRowMessage": "Nem találhatók házirendek",
- "noSPSelected": "Nincs kiválasztva szolgáltatásnév",
- "noUpdatePermissionMessage": "Nincs jogosultsága a beállítások frissítéséhez. Kérjen hozzáférést a globális rendszergazdától.",
- "noUserSelected": "Nincs kijelölve felhasználó",
- "noneRisk": "Nincs kockázat",
- "office365Description": "Ezen alkalmazások közé tartozik egyebek mellett a Microsoft Flow, a Microsoft Forms, a Microsoft Teams, az Office 365 Exchange Online, az Office 365 SharePoint Online és az Office 365 Yammer.",
- "office365InfoBox": "A kiválasztott alkalmazások közül legalább egy az Office 365 része. Ajánlott inkább az Office 365-alkalmazásra vonatkozó szabályzatot beállítani.",
- "oneUserSelected": "1 felhasználó van kiválasztva",
- "onlyGlobalAdminsCanSaveThisPolicyConfig": "Csak a globális rendszergazdák menthetik ezt a szabályzatot.",
- "or": "{0} VAGY {1} ",
- "pickerDoneCommand": "Kész",
- "policiesBladeAdPremiumUpsellBannerText": "Hozzon létre saját szabályzatokat, és alkalmazza őket olyan konkrét feltételek alapján, mint a felhőbeli alkalmazások, a bejelentkezési kockázat vagy a prémium szintű Azure AD-t támogató eszközplatformok",
- "policiesBladeTitle": "Házirendek",
- "policiesBladeTitleWithAppName": "Szabályzatok: {0}",
- "policiesDisabledBannerText": "A szabályzatok létrehozása és szerkesztése tiltott a csatolt bejelentkezési attribútummal rendelkező alkalmazások esetében.",
- "policiesHitMaxLimitStatusBarMessage": "Elérte a bérlőhöz tartozó szabályzatok maximális számát. Mielőtt további szabályzatokat hozna létre, töröljön néhányat.",
- "policyAssignmentsSection": "Hozzárendelések",
- "policyBlockAllInfoBox": "A konfigurált szabályzat letiltja az összes felhasználót, ezért nem támogatott. Tekintse át a hozzárendeléseket és a vezérlőket. Ha szeretné menteni a szabályzatot, zárja ki az aktuális felhasználót ({0}).",
- "policyCloudAppsDisplayTextAllApp": "Minden alkalmazás",
- "policyCloudAppsLabel": "Felhőalkalmazások",
- "policyConditionClientAppDescription": "A felhasználó által a felhőalkalmazás elérésére használt szoftver. Példa: Böngésző",
- "policyConditionClientAppV2Description": "A felhasználó által a felhőalkalmazás elérésére használt szoftver. Példa: Böngésző",
- "policyConditionDevicePlatform": "Eszközplatformok",
- "policyConditionDevicePlatformDescription": "A platform, amelyről a felhasználó bejelentkezik. Példa: 'iOS'",
- "policyConditionLocation": "Helyszínek",
- "policyConditionLocationDescription": "A hely (az IP-címtartomány használatával megállapítva), ahonnan a felhasználó bejelentkezik",
- "policyConditionSigninRisk": "Bejelentkezési kockázat",
- "policyConditionSigninRiskDescription": "Annak valószínűsége, hogy a bejelentkezés nem a felhasználó részéről történt. A kockázati szint lehet magas, közepes vagy alacsony. A beállításhoz Azure AD Premium 2-licenc szükséges.",
- "policyConditionUserRisk": "Felhasználói kockázat",
- "policyConditionUserRiskDescription": "A szabályzat érvényesítéséhez szükséges felhasználói kockázati szintek konfigurálása",
- "policyConditioniClientApp": "Ügyfélalkalmazások",
- "policyConditioniClientAppV2": "Ügyfélalkalmazások (Előzetes verzió)",
- "policyControlAllowAccessDisplayedName": "Hozzáférés biztosítása",
- "policyControlAuthenticationStrengthDisplayedName": "Hitelesítés erősségének megkövetelése (Előzetes verzió)",
- "policyControlBladeTitle": "Hozzáférés",
- "policyControlBlockAccessDisplayedName": "Hozzáférés letiltása",
- "policyControlCompliantDeviceDisplayedName": "Eszköz megfelelőként való megjelölésének megkövetelése",
- "policyControlContentDescription": "Hozzáférési engedélyek kényszerítésének vezérlése hozzáférés letiltása vagy engedélyezése érdekében.",
- "policyControlInfoBallonText": "A hozzáférés letiltása vagy a megadásához teljesítendő további követelmények kijelölése",
- "policyControlMfaChallengeDisplayedName": "Többtényezős hitelesítés megkövetelése",
- "policyControlRequireCompliantAppDisplayedName": "Alkalmazásvédelmi szabályzat megkövetelése",
- "policyControlRequireDomainJoinedDisplayedName": "Hibrid Azure Active Directoryhoz csatlakozó eszköz megkövetelése",
- "policyControlRequireMamDisplayedName": "Jóváhagyott ügyfélalkalmazás megkövetelése",
- "policyControlRequiredPasswordChangeDisplayedName": "Jelszómódosítás megkövetelése",
- "policyControlSelectAuthStrength": "Hitelesítés erősségének megkövetelése",
- "policyControlsNoControlsSelected": "0 kijelölt vezérlő",
- "policyControlsSection": "Hozzáférés-szabályozás",
- "policyCreatBladeTitle": "Új",
- "policyCreateButton": "Létrehozás",
- "policyCreateFailedMessage": "Hiba: {0}",
- "policyCreateFailedTitle": "Nem sikerült létrehozni a(z) {0} szabályzatot",
- "policyCreateInProgressTitle": "Hálózat ({0}) létrehozása",
- "policyCreateSuccessMessage": "A(z) {0} létrehozása sikerült. A szabályzat néhány perc múlva érvénybe lép, amennyiben a Házirend engedélyezése beállítás Bekapcsolva értékre van állítva.",
- "policyCreateSuccessTitle": "A(z) {0} szabályzat létrehozása sikerült",
- "policyDeleteConfirmation": "Biztos, hogy törli a(z) {0} hálózatot? Ez a művelet nem vonható vissza.",
- "policyDeleteFailTitle": "Nem sikerült törölni a(z) {0} bérlői védjegyezést",
- "policyDeleteInProgressTitle": "A(z) {0} törlése",
- "policyDeleteSuccessTitle": "A(z) {0} törlése sikerült",
- "policyEnforceLabel": "Házirend engedélyezése",
- "policyErrorCannotSetSigninRisk": "Nincs engedélye menteni a szabályzatot bejelentkezési kockázati feltétellel.",
- "policyErrorNoPermission": "Nem jogosult a szabályzat mentésére. Forduljon a globális rendszergazdához.",
- "policyErrorUnknown": "Hiba történt. Próbálkozzon újra később.",
- "policyFallbackWarningMessage": "Nem sikerült létrehozni vagy frissíteni a(z) {0} szabályzatot az MS Graph használatával, ami miatt a rendszer a helyettes alkalmazásra, az AD Graph-ra váltott. Kérjük, vizsgálja meg a következő forgatókönyvet, mert valószínűleg hiba történt az MS Graph nem kompatibilis állapottal rendelkező szabályzatvégpontjának meghívásakor.",
- "policyFallbackWarningTitle": "A(z) {0} létrehozása vagy frissítése részben sikeres volt",
- "policyNameCannotBeEmpty": "A szabályzat neve nem lehet üres",
- "policyNameDevice": "Eszközszabályzat",
- "policyNameFormat": "[{0}] {1}",
- "policyNameMam": "Mobilalkalmazás-kezelési szabályzat",
- "policyNameMfaLocation": "MFA- és helyszabályzat",
- "policyNamePlaceholderText": "Példa: Eszközmegfelelőségi alkalmazásszabályzat",
- "policyNameTooLongError": "A szabályzat neve túl hosszú, legfeljebb 256 karakter lehet",
- "policyOff": "Kikapcsolva",
- "policyOn": "Bekapcsolva",
- "policyReportOnly": "Csak jelentés",
- "policyReviewSection": "Áttekintés",
- "policySaveButton": "Mentés",
- "policyStatusIconDescription": "A szabályzat engedélyezve van",
- "policyStatusIconEnabled": "Engedélyezett állapot ikonja",
- "policyTemplateName1": "Alkalmazás által kényszerített korlátozások alkalmazása a(z) {0} alkalmazáshoz való böngészőalapú hozzáférésre",
- "policyTemplateName2": "A(z) {0} hozzáférésének engedélyezése csak kezelt eszközökön",
- "policyTemplateName3": "A folyamatos hozzáférés-kiértékelési beállításokból átmigrált szabályzat",
- "policyTriggerRiskSpecific": "Adott kockázati szint kijelölése",
- "policyTriggersInfoBalloonText": "Azon feltételek, amelyek teljesülésekor érvénybe lép a szabályzat. Példa: 'hely'",
- "policyTriggersNoConditionsSelected": "0 kijelölt feltétel",
- "policyTriggersSelectorLabel": "Feltételek",
- "policyUpdateFailedMessage": "Hiba: {0}",
- "policyUpdateFailedTitle": "Nem sikerült frissíteni a(z) {0} alkalmazást",
- "policyUpdateInProgressTitle": "{0} frissítése",
- "policyUpdateSuccessMessage": "A(z) {0} frissítése megtörtént. A szabályzat néhány perc múlva érvénybe lép, amennyiben a Házirend engedélyezése beállítás Bekapcsolva értékre van állítva.",
- "policyUpdateSuccessTitle": "A(z) {0} alkalmazás frissítése sikeresen megtörtént",
- "primaryCol": "Elsődleges",
- "privateLinkLabel": "Azure AD Private Link",
- "reportOnlyInfoBox": "Csak jelentés üzemmód: a rendszer bejelentkezéskor kiértékeli és naplózza a szabályzatokat, de ez nincs hatással a felhasználókra.",
- "requireAllControlsText": "Az összes kijelölt vezérlő megkövetelése",
- "requireCompliantDevice": "Megfelelő eszköz megkövetelése",
- "requireDomainJoined": "Tartományhoz csatlakoztatott eszköz megkövetelése",
- "requireMFA": "Többtényezős hitelesítés megkövetelése ",
- "requireOneControlText": "Az egyik kijelölt vezérlő megkövetelése",
- "resetFilters": "Szűrők alaphelyzetbe állítása",
- "sPRequired": "A szolgáltatásnév megadása kötelező",
- "sPSelectorInfoBalloon": "A tesztelni kívánt felhasználó vagy szolgáltatásnév",
- "saturday": "szombat",
- "searchTextTooLongError": "A keresett szöveg túl hosszú. Legfeljebb 256 karaktert tartalmazhat.",
- "securityDefaultsPolicyName": "Javasolt biztonsági beállítások",
- "securityDefaultsTextMessage": "A javasolt biztonsági beállításokat le kell tiltani egy feltételes hozzáférési szabályzat engedélyezéséhez.",
- "securityDefaultsWarningMessage": "Úgy tűnik, hogy a cég biztonsági konfigurációit szeretné kezelni. Ez nagyszerű! A feltételes hozzáférési szabályzat engedélyezéséhez le kell tiltania a javasolt biztonsági beállításokat.",
- "selectDevicePlatforms": "Eszközplatformok kiválasztása",
- "selectNamedNetworksSubtitle": "",
- "selectNamedNetworksTitle": "Helyek kiválasztása",
- "selectedSP": "Kiválasztott szolgáltatásnév",
- "servicePrincipalDataGridAria": "Elérhető szolgáltatásnevek listája",
- "servicePrincipalDropDownLabel": "Mire vonatkozik ez a szabályzat?",
- "servicePrincipalInfoBox": "Bizonyos feltételek a szabályzat-hozzárendelésben megadott {0} választás miatt nem érhetők el",
- "servicePrincipalRadioAll": "Az összes saját tulajdonú szolgáltatásnév",
- "servicePrincipalRadioSelect": "Szolgáltatásnév választása",
- "servicePrincipalSelectionsAria": "Kijelölt szolgáltatásnevek táblázata",
- "servicePrincipalSelectorAria": "Választott szolgáltatásnevek listája",
- "servicePrincipalSelectorMultiple": "{0} szolgáltatásnév kijelölve",
- "servicePrincipalSelectorSingle": "1 szolgáltatásnév kijelölve",
- "servicePrincipalSpecificInc": "Megadott szolgáltatásnevekre érvényes",
- "servicePrincipals": "Szolgáltatásnevek",
- "sessionControlBladeTitle": "Munkamenet",
- "sessionControlDescriptionContent": "A hozzáférések munkamenet-vezérlő alapú szabályozásával korlátozott felületeket tehet elérhetővé adott felhőalkalmazásokban.",
- "sessionControlDisableInfo": "Ez a vezérlő csak a támogatott alkalmazásokkal működik együtt. A felhőalapú alkalmazások közül jelenleg csak az Office 365, az Exchange Online és a SharePoint Online támogatja az alkalmazás által kikényszerített korlátozásokat. További információért kattintson ide.",
- "sessionControlInfoBallonText": "A munkamenet-vezérlők a funkciók korlátozását teszik lehetővé a felhőalkalmazásokban.",
- "sessionControls": "Munkamenet-vezérlők",
- "sessionControlsAppEnforcedLabel": "Alkalmazás által kényszerített korlátozások használata",
- "sessionControlsCasLabel": "Feltételes hozzáférést biztosító alkalmazás-vezérlő használata",
- "sessionControlsSecureSignInLabel": "Jogkivonatkötés megkövetelése",
- "sharepointAppName": "SharePoint",
- "signinRiskDescription": "Válassza ki a bejelentkezési kockázati szintet, amelyre érvényes lesz a házirend",
- "signinRiskInclude": "{0} belefoglalva",
- "signinRiskTriggerDescriptionContent": "A bejelentkezési kockázat szintjének kiválasztása",
- "singleTenantServicePrincipalInfoBallonText": "A szabályzat csak a szervezet tulajdonában álló egybérlős szolgáltatásnevekre vonatkozik. További információért kattintson ide ",
- "specificSigninRiskLevelsOption": "Konkrét bejelentkezési kockázati szintek kiválasztása",
- "specificUsersExcluded": "a megadott felhasználók kizárásával",
- "specificUsersIncluded": "A megadott felhasználók belefoglalásával",
- "specificUsersIncludedAndExcluded": "Kizárt és befoglalt felhasználók",
- "startDatePickerLabel": "Kezdés",
- "startFreeTrial": "Ingyenes próba megkezdése",
- "startTimePickerLabel": "Kezdő időpont",
- "sunday": "vasárnap",
- "testButton": "What If",
- "thumbprintCol": "Ujjlenyomat",
- "thursday": "csütörtök",
- "timeConditionAllTimesLabel": "Bármikor",
- "timeConditionIntroText": "Állítsa be az időpontokat, amelyre érvényes lesz a szabályzat",
- "timeConditionSelectorInfoBallonContent": "A felhasználó bejelentkezésének időpontja. Példa: „Szerda 9:00 – 17:00 (PST)”",
- "timeConditionSelectorLabel": "Időpont (Előzetes verzió)",
- "timeConditionSpecificLabel": "Megadott időpontok",
- "timeSelectorAllTimesText": "Bármikor",
- "timeSelectorSpecificTimesText": "Megadott konfigurált időpontok",
- "timeZoneDropdownInfoBalloonContent": "Válassza ki az időzónát, amely meghatározza az időtartományt. A szabályzat az összes időzóna felhasználóira érvényes. Például az adott felhasználóra vonatkozó „Szerda 9:00 – 17:00” érték egy másik időzónában lévő felhasználó számára „Szerda 10:00 – 18:00” lehet.",
- "timeZoneDropdownLabel": "Időzóna",
- "timeZoneDropdownPlaceholderText": "Válasszon időzónát",
- "tooManyPoliciesDescription": "Jelenleg csak az első 50 házirend van megjelenítve. Az összes házirend megtekintéséhez kattintson ide",
- "tooManyPoliciesTitle": "Több mint 50 házirend található",
- "trustedLocationStatusIconDescription": "A hely megbízható",
- "trustedLocationStatusIconEnabled": "Megbízható állapotikon",
- "tuesday": "kedd",
- "uploadInBadState": "Nem sikerült feltölteni a megadott fájlt.",
- "upsellAppsDescription": "Többtényezős hitelesítés megkövetelése az érzékeny alkalmazásokhoz minden esetben vagy csak a vállalati hálózaton kívülről.",
- "upsellAppsTitle": "Alkalmazások védelme",
- "upsellBannerText": "A szolgáltatás használatához szerezze be az ingyenes Prémium szintű próbaverziót",
- "upsellDataDescription": "Annak megkövetelése a vállalati erőforrások elérésének engedélyezéséhez, hogy az eszköz megfelelőként megjelölt vagy hibrid Azure Active Directoryhoz csatlakozó legyen.",
- "upsellDataTitle": "Adatok védelme",
- "upsellDescription": "A feltételes hozzáférés biztosítja a céges adatok biztonságához szükséges vezérlési és védelmi funkciókat, és olyan környezetet kínál, amely lehetővé teszi a felhasználóknak, hogy minden eszközön a leghatékonyabban dolgozzanak. Lehetőséget nyújt például a vállalati hálózaton kívülről történő hozzáférés korlátozására vagy a hozzáférés azon eszközökre való korlátozására, amelyek megfelelnek a szabályzatok előírásainak.",
- "upsellRiskDescription": "Többtényezős hitelesítés megkövetelése a Microsoft gépi tanulási rendszere által észlelt kockázati események esetében.",
- "upsellRiskTitle": "Védelem a kockázatok ellen",
- "upsellTitle": "Feltételes hozzáférés",
- "upsellWhyTitle": "Miért érdemes Feltételes hozzáférést használni?",
- "userAppNoneOption": "Egyik sem",
- "userNamePlaceholderText": "Írja be a felhasználónevet",
- "userNotSetSeletorLabel": "0 kijelölt felhasználó és csoport",
- "userOnlySelectionBladeExcludeDescription": "Válassza ki a szabályzat alól mentesítendő felhasználókat",
- "userOrGroupSelectionCountDiffBannerText": "A szabályzatban konfigurált {0} törlődött a könyvtárból, de ez a szabályzat más felhasználóit és csoportjait nem érinti. A szabályzat legközelebbi frissítésekor a törölt felhasználók és/vagy alkalmazások automatikusan el lesznek távolítva.",
- "userOrSPNotSetSelectorLabel": "Nincs kiválasztva felhasználó vagy számítási feladathoz tartozó identitás",
- "userOrSPSelectionBladeTitle": "Felhasználók vagy számítási feladatok identitásai",
- "userOrSPSelectorInfoBallonText": "A szabályzat hatálya alá tartozó címtárbeli identitások, beleértve a felhasználókat, csoportokat és szolgáltatásneveket",
- "userRequired": "Felhasználó megadása kötelező",
- "userRiskErrorBox": "A Felhasználói kockázat feltételt kell kiválasztani, ha a Jelszómódosítás megkövetelése engedély van kiválasztva",
- "userSPRequired": "A felhasználó vagy szolgáltatásnév megadása kötelező",
- "userSPSelectorTitle": "Felhasználó vagy számítási feladat identitása",
- "userSelectionBladeAllUsersAndGroups": "Minden felhasználó és csoport",
- "userSelectionBladeExcludeDescription": "Válassza ki a szabályzat alól mentesítendő felhasználókat és csoportokat",
- "userSelectionBladeExcludeTabTitle": "Kizárás",
- "userSelectionBladeExcludedSelectorTitle": "Kizárt felhasználók kiválasztása",
- "userSelectionBladeIncludeDescription": "Adja meg azokat a felhasználókat, akikre érvényes lesz a szabályzat",
- "userSelectionBladeIncludeTabTitle": "Belefoglalás",
- "userSelectionBladeIncludedSelectorTitle": "Kijelölés",
- "userSelectionBladeSelectUsers": "Felhasználók kijelölése",
- "userSelectionBladeSelectedUsers": "Felhasználók és csoportok kijelölése",
- "userSelectionBladeTitle": "Felhasználók és csoportok",
- "userSelectorBladeTitle": "Felhasználók",
- "userSelectorExcluded": "{0} kizárva",
- "userSelectorGroupPlural": "{0} csoport",
- "userSelectorGroupSingular": "1 csoport",
- "userSelectorIncluded": "{0} belefoglalva",
- "userSelectorInfoBallonText": "A szabályzat hatálya alá tartozó felhasználók és csoportok a címtárban. Példa: 'Próbacsoport'",
- "userSelectorSelected": "{0} kijelölve",
- "userSelectorTitle": "Felhasználó",
- "userSelectorUserAndGroup": "{0}, {1}",
- "userSelectorUserPlural": "{0}-felhasználók",
- "userSelectorUserSingular": "1 felhasználó",
- "userSelectorWithExclusion": "{0} és {1}",
- "usersGroupsLabel": "Felhasználók és csoportok",
- "viewApprovedAppsText": "A jóváhagyott ügyfélalkalmazások listájának megtekintése",
- "viewCompliantAppsText": "A szabályzat által védett ügyfélalkalmazások listájának megtekintése",
- "vpnBladeTitle": "VPN-kapcsolat",
- "vpnCertCreateFailedMessage": "Hiba: {0}",
- "vpnCertCreateFailedTitle": "A(z) {0} létrehozása nem sikerült",
- "vpnCertCreateInProgressTitle": "{0} létrehozása",
- "vpnCertCreateSuccessMessage": "A(z) {0} tanúsítvány létrehozása sikerült.",
- "vpnCertCreateSuccessTitle": "A(z) {0} létrehozása sikerült",
- "vpnCertNoRowsMessage": "Nem találhatók VPN-tanúsítványok",
- "vpnCertUpdateFailedMessage": "Hiba: {0}",
- "vpnCertUpdateFailedTitle": "Nem sikerült frissíteni a(z) {0} alkalmazást",
- "vpnCertUpdateInProgressTitle": "{0} frissítése",
- "vpnCertUpdateSuccessMessage": "A(z) {0} tanúsítvány frissítése sikerült.",
- "vpnCertUpdateSuccessTitle": "A(z) {0} alkalmazás frissítése sikeresen megtörtént",
- "vpnFeatureInfo": "A VPN-kapcsolatokkal és a Feltételes hozzáféréssel kapcsolatos további információért kattintson ide.",
- "vpnFeatureWarning": "Ha létrehoznak egy VPN-tanúsítványt a Azure Portalon, az Azure AD azonnal megkezdi a rövid élettartamú tanúsítványok kiadását a VPN-ügyfélnek annak használatával. A VPN-ügyfél hitelesítő adatainak érvényesítésével kapcsolatos problémák elkerülése érdekében kritikus fontosságú a VPN-tanúsítvány VPN-kiszolgálón való azonnali üzembe helyezése.",
- "vpnMenuText": "VPN-kapcsolat",
- "vpncertDropdownDefaultOption": "Időtartam",
- "vpncertDropdownInfoBalloonContent": "Az érvényességi idő kiválasztása a létrehozni kívánt tanúsítványhoz",
- "vpncertDropdownLabel": "Érvényességi idő kiválasztása",
- "vpncertDropdownOneyearOption": "1 év",
- "vpncertDropdownThreeyearOption": "3 év",
- "vpncertDropdownTwoyearOption": "2 év",
- "wednesday": "szerda",
- "whatIfAppEnforcedControl": "Alkalmazás által kényszerített korlátozások használata",
- "whatIfBladeDescription": "Annak tesztelése, hogy a Feltételes hozzáférésnek milyen hatása van a felhasználóra meghatározott feltételekhez kötött bejelentkezés esetén.",
- "whatIfBladeTitle": "What If",
- "whatIfClassicPoliciesWarning": "Az eszköz nem értékeli ki a klasszikus szabályzatokat.",
- "whatIfClientAppInfo": "Az az ügyfélalkalmazás, amelyből a felhasználó bejelentkezik (például Böngésző).",
- "whatIfCountry": "Ország",
- "whatIfCountryInfo": "Az az ország, amelyből a felhasználó bejelentkezik.",
- "whatIfDevicePlatformInfo": "Az eszközplatform, melyről a felhasználó bejelentkezik.",
- "whatIfDeviceStateInfo": "Az eszközállapot, melyből a felhasználó bejelentkezik",
- "whatIfEnterIpAddress": "Adja meg az IP-címet (példa: 40.77.182.32)",
- "whatIfErrorInvalidIpAddress": "Érvénytelen IP-cím van megadva.",
- "whatIfEvaResultApplication": "Felhőalkalmazások",
- "whatIfEvaResultClientApps": "Ügyfélalkalmazás",
- "whatIfEvaResultDevicePlatform": "Eszközplatform",
- "whatIfEvaResultEmptyPolicy": "Üres szabályzat",
- "whatIfEvaResultInvalidCondition": "Érvénytelen feltétel",
- "whatIfEvaResultInvalidPolicy": "Érvénytelen szabályzat",
- "whatIfEvaResultLocation": "Hely",
- "whatIfEvaResultNotEnoughInformation": "Nincs elegendő adat",
- "whatIfEvaResultPolicyNotEnabled": "Nincs engedélyezve a szabályzat",
- "whatIfEvaResultSignInRisk": "Bejelentkezési kockázat",
- "whatIfEvaResultUsers": "Felhasználók és csoportok",
- "whatIfIpAddress": "IP-cím",
- "whatIfIpAddressInfo": "Az IP-cím, ahonnan a felhasználó bejelentkezik.",
- "whatIfIpCountryInfoBoxText": "IP-cím vagy ország használata esetén mindkét mezőt ki kell tölteni, és helyesen meg kell feleltetni egymással.",
- "whatIfPolicyAppliesTab": "Érvényes szabályzatok",
- "whatIfPolicyDoesNotApplyTab": "Érvénytelen szabályzatok",
- "whatIfReasons": "Szabályzat érvénytelenségének okai",
- "whatIfSelectClientApp": "Ügyfélalkalmazás kiválasztása...",
- "whatIfSelectCountry": "Ország kiválasztása...",
- "whatIfSelectDevicePlatform": "Válasszon eszközplatformot...",
- "whatIfSelectPrivateLink": "Privát kapcsolat kiválasztása...",
- "whatIfSelectServicePrincipalRisk": "Szolgáltatásnév kockázatának kiválasztása…",
- "whatIfSelectSignInRisk": "Válasszon bejelentkezési kockázatot...",
- "whatIfSelectType": "Identitástípus kiválasztása",
- "whatIfSelectUserRisk": "A felhasználói kockázat kiválasztása...",
- "whatIfServicePrincipalRiskInfo": "A szolgáltatásnévhez társított kockázati szint",
- "whatIfSignInRisk": "Bejelentkezési kockázat",
- "whatIfSignInRiskInfo": "A bejelentkezéshez társított kockázati szint",
- "whatIfUnknownAreas": "Ismeretlen területek",
- "whatIfUserPickerLabel": "Kiválasztott felhasználó",
- "whatIfUserPickerNoRowsLabel": "Nincs kijelölve felhasználó vagy szolgáltatásnév",
- "whatIfUserRiskInfo": "A felhasználóhoz társított kockázati szint",
- "whatIfUserSelectorInfo": "A tesztelni kívánt címtárbeli felhasználó",
- "windows365InfoBox": "A Windows 365 kiválasztása hatással lesz a kapcsolatokra a felhőalapú PC-khez és az Azure Virtual Desktop-munkamenetgazdákhoz. További információért kattintson ide.",
- "windowsDisplayName": "Windows",
- "windowsPhoneDisplayName": "Windows Phone",
- "workloadIdentities": "Számítási feladatok identitásai (előzetes verzió)",
- "workloadIdentity": "Számításifeladat-identitás"
- },
- "ApplicableDeviceType": {
- "iPad": "iPad",
- "iPhoneAndIPod": "iPhone és iPod"
- },
- "TAPSettings": {
- "AllowedDataIngestionLocations": {
- "label": "Adatok a kijelölt szolgáltatásokból való megnyitásának engedélyezése a felhasználók számára",
- "tooltip": "Válassza ki azokat az alkalmazástároló szolgáltatásokat, amelyekből a felhasználók megnyithatják az adatokat. Minden más szolgáltatás le van tiltva. Ha nem választ szolgáltatásokat, azzal meggátolja, hogy a felhasználók adatokat nyissanak meg."
- },
- "AndroidBackup": {
- "label": "Szervezeti adatok mentése Android biztonsági mentési szolgáltatásokba",
- "tooltip": "Válassza a(z) {0} lehetőséget a szervezeti adatok Android biztonsági mentési szolgáltatásokba történő mentésének megakadályozásához. \r\nVálassza a(z) {1} lehetőséget a szervezeti adatok Android biztonsági mentési szolgáltatásokba történő mentésének engedélyezéséhez. \r\nA személyes vagy nem felügyelt adatokat ez nem érinti."
- },
- "AndroidBiometricAuthentication": {
- "label": "PIN-kód helyett biometrikai adatok a hozzáféréshez",
- "tooltip": "Adja meg, hogy milyen androidos hitelesítési módok használhatók az alkalmazás PIN-kódja helyett."
- },
- "AndroidFingerprint": {
- "label": "PIN-kód helyett ujjlenyomat a hozzáféréshez (Android 6.0 +)",
- "tooltip": "Az Android operációs rendszer ujjlenyomat-olvasókat használ az Android-eszközök felhasználóinak hitelesítésére. Ez a funkció támogatja az Android eszközök natív biometrikus vezérlését. Az eredeti hardvergyártóktól függő biometrikus beállításokat, mint a Samsung Passt, nem támogatja. Ha engedélyezve van, a natív biometrikus vezérlőket kell használni az alkalmazás elrésére az erre alkalmas eszközön."
- },
- "AndroidOverrideFingerprint": {
- "label": "Ujjlenyomat felülbírálása PIN-kóddal időtúllépés után"
- },
- "AppPIN": {
- "label": "Alkalmazás PIN-kódja, ha az eszköz PIN-kódja be van állítva",
- "tooltip": "Ha nem kötelező, akkor nincs szükség alkalmazásbeli PIN-kód megadására az alkalmazás eléréséhez, amennyiben az eszköz PIN-kódja be van állítva az MDM-ben regisztrált eszközön.
\r\n\r\nMegjegyzés: Az Intune nem tudja észlelni a harmadik fél EMM-megoldásával regisztrált eszközt Androidon."
- },
- "BlockDataIngestionIntoOrganizationDocuments": {
- "label": "Adatok megnyitása szervezeti dokumentumokban",
- "tooltip1": "Válassza a Letiltás lehetőséget, ha le szeretné tiltani az alkalmazásban a Megnyitás lehetőséget, illetve a fiókok közötti adatmegosztásra vonatkozó egyéb lehetőségeket. Válassza az Engedélyezés lehetőséget, ha engedélyezni szeretné az alkalmazásban a Megnyitás lehetőséget, illetve a fiókok közötti adatmegosztásra vonatkozó egyéb lehetőségeket.",
- "tooltip2": "Ha a Letiltás van beállítva, konfigurálhatja az Adatok a kijelölt szolgáltatásokból való megnyitásának engedélyezése a felhasználó számára beállítást annak megadásához, hogy mely szolgáltatások engedélyezettek a szervezeti adathelyeken.",
- "tooltip3": "Megjegyzés: ez a beállítás csak akkor lesz érvénybe léptetve, ha a Más alkalmazásokból származó adatok fogadása beállítás értéke Szabályzat által felügyelt alkalmazások.
\r\nMegjegyzés: ez a beállítás nem vonatkozik az összes alkalmazásra. További információ: {0}.",
- "tooltip4": "Megjegyzés: ez a beállítás csak akkor lesz érvénybe léptetve, ha a Más alkalmazásokból származó adatok fogadása beállítás értéke Szabályzat által felügyelt alkalmazások.
\r\nMegjegyzés: ez a beállítás nem vonatkozik az összes alkalmazásra. További információ: {0} vagy {0}."
- },
- "ConnectToVpnOnLaunch": {
- "label": "Microsoft Tunnel-kapcsolat indítása az alkalmazás indításakor",
- "tooltip": "VPN-kapcsolat engedélyezése az alkalmazás indításakor"
- },
- "CredentialsForAccess": {
- "label": "Munkahelyi vagy iskolai fiók hitelesítő adatai a hozzáféréshez",
- "tooltip": "Ha szükséges, munkahelyi vagy iskolai hitelesítő adatokat kell használni a szabályzattal felügyelt alkalmazás elérésére. Ha az alkalmazás eléréshez PIN-kód vagy biometrikus adatok is szükségesek, akkor ezek mellett a munkahelyi vagy iskolai fiók hitelesítő adatait is meg kell adni."
- },
- "CustomBrowserDisplayName": {
- "label": "Nem felügyelt böngésző neve",
- "tooltip": "Adja meg a böngésző „Nem felügyelt böngésző azonosítója” beállításhoz hozzárendelt alkalmazásnevét. Ez a név jelenik meg a felhasználók számára, ha nincs telepítve a megadott böngésző."
- },
- "CustomBrowserPackageId": {
- "label": "Nem felügyelt böngésző azonosítója",
- "tooltip": "Adja meg a kívánt böngésző alkalmazásazonosítóját. A szabályzat által felügyelt alkalmazások webes tartalma (http/s) meg a megadott böngészőben fog megnyílni."
- },
- "CustomBrowserProtocol": {
- "label": "Nem felügyelt böngésző protokollja",
- "tooltip": "Adja meg a nem felügyelt böngésző protokollját. A szabályzat által felügyelt alkalmazások webes tartalma (http/s) minden olyan alkalmazásban meg fog nyílni, amely támogatja ezt a protokollt.
\r\n \r\nMegjegyzés: csak a protokoll előtagját adja meg. Ha a böngésző sajátböngésző://www.microsoft.com formátumú hivatkozásokat igényel, a „sajátböngésző” előtagot adja meg.
"
- },
- "CustomDialerAppDisplayName": {
- "label": "Tárcsázóalkalmazás neve"
- },
- "CustomDialerAppPackageId": {
- "label": "Tárcsázóalkalmazás csomagazonosítója"
- },
- "CustomDialerAppProtocol": {
- "label": "Tárcsázóalkalmazás URL-sémája"
- },
- "Cutcopypaste": {
- "label": "Kivágási, másolási és beillesztési műveletek korlátozása más alkalmazások között",
- "tooltip": "Adatok kivágása, másolása és beillesztése a saját alkalmazása és az eszközön telepített egyéb jóváhagyott alkalmazások között. A következő lehetőségek közül választhat: a műveletek letiltása az összes alkalmazásra vonatkozóan, a műveletek engedélyezése az összes alkalmazásra vonatkozóan és a műveletek engedélyezése kizárólag a cége által felügyelt alkalmazásokra vonatkozóan.
\r\n\r\nA beillesztési lehetőséggel rendelkező, szabályzattal felügyelt alkalmazások lehetővé teszik a más alkalmazásból beillesztett bejövő tartalom elfogadását. Ugyanakkor ez megakadályozza, hogy a felhasználók kifelé megosszák a tartalmat, hacsak nem egy felügyelt alkalmazással osztják meg.
"
- },
- "DialerRestrictionLevel": {
- "iosTooltip": "Általában, ha egy felhasználó egy alkalmazásban kiválaszt egy hivatkozott telefonszámot, a tárcsázó alkalmazás a telefonszámot úgy nyitja meg, hogy már be van töltve, és minden további nélkül felhívható. Ehhez a beállításhoz adja meg, hogyan kezelje a rendszer az ilyen típusú tartalomátvitelt, ha azt egy szabályzat által felügyelt alkalmazás kezdeményezi. További lépésekre lehet szükség ahhoz, hogy a beállítás érvénybe lépjen. Először győződjön meg arról, hogy a tel és a telprompt el lett távolítva a Kiválasztás alkalmazásokból a kivétellistára. Ezt követően gondoskodjon arról, hogy az alkalmazás az Intune SDK újabb (12.7.0+) verzióját használja.",
- "label": "Telekommunikációs adatok átvitele ide:",
- "tooltip": "Ha egy felhasználó egy alkalmazásban kiválaszt egy hiperhivatkozással ellátott telefonszámot, általában megnyílik a tárcsázó alkalmazás a szóban forgó telefonszámmal együtt, és hívásra készen. Ehhez a beállításhoz válassza ki, hogy a rendszer hogyan kezelje ezt a tartalomátvitelt, ha egy szabályzat által felügyelt alkalmazásból lett kezdeményezve."
- },
- "EncryptData": {
- "label": "Szervezeti adatok titkosítása",
- "link": "https://docs.microsoft.com/en-us/intune/app-protection-policy-settings-android#data-relocation-settings",
- "tooltip": "Válassza a(z) {0} lehetőséget, ha kényszeríteni szeretné a szervezeti adatok Intune-beli alkalmazásréteg-titkosítással történő titkosítását.\r\n
\r\nVálassza a(z) {1} lehetőséget, ha nem szeretné kényszeríteni a szervezeti adatok Intune-beli alkalmazásréteg-titkosítással történő titkosítását.\r\n\r\n
\r\nMegjegyzés: Az Intune-beli alkalmazásréteg-titkosításról bővebben lásd: {2}."
- },
- "EncryptDataAndroid": {
- "tooltip": "Válassza a Kötelező lehetőséget munkahelyi vagy iskolai adatok az alkalmazásban való titkosításának engedélyezéséhez. Az Intune egy OpenSSL-alapú, 256 bites AES-titkosítási sémával, valamint az Android Keystore rendszerrel biztosítja az alkalmazás adatainak biztonságos titkosítását. Az adatokat szinkron módon titkosítja a fájlbe- és kimeneti műveletek során. Az eszköz tárhelyének tartalma minden esetben titkosítva van. Az SDK továbbra is támogatja a 128 bites kulcsokat az SDK régebbi verzióit használó tartalmakkal és alkalmazásokkal való kompatibilitás érdekében.
\r\n\r\nA titkosítási módszer megfelel a FIPS 140-2 szabványnak.
"
- },
- "EncryptDataIos": {
- "tooltip1": "Válassza a Kötelező lehetőséget munkahelyi vagy iskolai adatok az alkalmazásban való titkosításának engedélyezéséhez. Az Intune kényszeríti az iOS- vagy iPadOS-eszköztitkosítás alkalmazását az alkalmazásadatok védelme érdekében, amíg az eszköz zárolva van. Az alkalmazások nem kötelezően titkosíthatják az alkalmazásadatokat az Intune APP SDK titkosításával. Az Intune APP SDK az iOS vagy iPadOS kriptográfiai eljárásaival alkalmaz 128 bites AES titkosítást az alkalmazásadatokon.",
- "tooltip2": "Ha engedélyezi ezt a beállítást, a rendszer arra kérheti a felhasználót, hogy az eszközhöz való hozzáféréshez PIN-kódot állítson be és használjon. Ha az eszköznek nincs PIN-kódja, és a titkosítás kötelező, a rendszer PIN-kód beállítására kéri a felhasználót a következő üzenettel: „A szervezet megköveteli, hogy az alkalmazás eléréséhez először engedélyezze az eszköz PIN-kódjának használatát.”",
- "tooltip3": "A hivatalos Apple-dokumentációban tájékozódhat arról, hogy mely iOS-titkosítási modulok felelnek meg a FIPS 140-2 szabványnak, vagy van függőben a FIPS 140-2 szabványnak való megfelelőségük."
- },
- "EncryptDataOnEnrolledDevices": {
- "label": "Szervezeti adatok titkosítása a regisztrált eszközökön",
- "tooltip": "Válassza a(z) {0} lehetőséget, ha minden eszközön kényszeríteni szeretné a szervezeti adatok Intune-beli alkalmazásréteg-titkosítással történő titkosítását.
\r\n\r\nVálassza a(z) {1} lehetőséget, ha a regisztrált eszközökön nem kívánja kötelezővé tenni a szervezeti adatok Intune-beli alkalmazásréteg-titkosítással történő titkosítását."
- },
- "IOSBackup": {
- "label": "Szervezeti adatok mentése biztonsági másolatokba az iTunes és az iCloud szolgáltatásban",
- "tooltip": "Válassza a(z) {0} lehetőséget a szervezeti adatok iTunes vagy iCloud szolgáltatásba történő biztonsági mentésének megakadályozásához. \r\nVálassza a(z) {1} lehetőséget a szervezeti adatok iTunes vagy iCloud szolgáltatásba történő biztonsági mentésének engedélyezéséhez. \r\nA személyes vagy a nem felügyelt adatokat ez nem érinti."
- },
- "IOSFaceID": {
- "label": "Face ID PIN-kód helyett a hozzáféréshez (iOS 11+/iPadOS)",
- "tooltip": "A Face ID arcfelismerő technológiát használ a felhasználók hitelesítésére az iOS vagy iPadOS-eszközökön. Az Intune a LocalAuthentication API-t hívja a felhasználó Face ID-vel történő hitelesítéséhez. Ha engedélyezve van, akkor a Face ID-t kell használni az alkalmazás eléréséhez a Face ID használatára alkalmas eszközön."
- },
- "IOSOverrideTouchId": {
- "label": "Biometrika felülbírálása PIN-kóddal időtúllépés után"
- },
- "IOSTouchId": {
- "label": "Touch ID PIN-kód helyett a hozzáféréshez (iOS 8+/iPadOS)",
- "tooltip": "A Touch ID ujjlenyomat-felismerő technológiát használ a felhasználók hitelesítésére az iOS-eszközökön. Az Intune a LocalAuthentication API-t hívja a felhasználók Touch ID-vel történő hitelesítéséhez. Ha engedélyezve van, akkor a Touch ID-t kell használni az alkalmazás eléréséhez a Touch ID használatára alkalmas eszközön."
- },
- "NotificationRestriction": {
- "label": "Céges adatokkal kapcsolatos értesítések",
- "tooltip": "Az alábbi beállítások egyikének segítségével adja meg, hogy miként jelenjenek meg a céges fiókok értesítései ezen alkalmazás és az összes csatlakoztatott eszköz (például hordható eszköz) esetében:
\r\n{0}: Ne legyenek megosztva az értesítések.
\r\n{1}: Ne legyenek megosztva a céges adatok az értesítésekben. Ha az alkalmazás nem támogatja, az értesítések le vannak tiltva.
\r\n{2}: Az összes értesítés megosztása.
\r\n Csak Android esetén:\r\n Megjegyzés: Ez a beállítás nem vonatkozik minden alkalmazásra. További információ: {3}
\r\n \r\n Csak iOS esetén:\r\nMegjegyzés: Ez a beállítás nem vonatkozik minden alkalmazásra. További információ: {4}
"
- },
- "OpenLinksManagedBrowser": {
- "label": "Webes tartalom más alkalmazásokkal folytatott átvitelének korlátozása",
- "tooltip": "Válassza ki az alábbi lehetőségek közül, hogy az alkalmazás mely alkalmazásokban nyithat meg webes tartalmat:
\r\nEdge: Webes tartalom csak az Edge-ben nyitható meg
\r\nNem felügyelt böngésző: Webes tartalom csak a „Nem felügyelt böngésző protokollja” beállításnál megadott nem felügyelt böngészőben nyitható meg
\r\nBármely alkalmazás: Webhivatkozások megnyitása bármely alkalmazásban
"
- },
- "OverrideBiometric": {
- "tooltip": "Ha szükséges, az időkorlát (inaktív percek) alapján a PIN-kód megadását kérő üzenet felülbírálja a biometrikus hitelesítést kérő üzeneteket. Ha nem érte el az időkorlátban megadott időtartamot, továbbra is a biometrikus hitelesítést kérő üzenet fog megjelenni. Ennek az időkorlátértéknek nagyobbnak kell lennie, mint a Hozzáférési követelmények újbóli ellenőrzése ennyi idő után (inaktív perc) alatt megadott érték. "
- },
- "PinAccess": {
- "label": "PIN-kód a hozzáféréshez",
- "tooltip": "Ha szükséges egy PIN-kódot kell használni a szabályzattal felügyelt alkalmazás eléréséhez. A felhasználóknak létre kell hoznia egy hozzáférési PIN-kód, amikor először nyitják meg az alkalmazást munkahelyi vagy iskolai fiókban."
- },
- "PinLength": {
- "label": "PIN-kód minimális hosszának kiválasztása",
- "tooltip": "Ezzel a beállítással adható meg a PIN-kód számjegyeinek minimális száma."
- },
- "PinType": {
- "label": "PIN-kód típusa",
- "tooltip": "A numerikus PIN-kódok kizárólag számokból állnak. A PIN-kódok alfanumerikus karakterekből és speciális karakterekből állnak. "
- },
- "Printing": {
- "label": "Céges adatok nyomtatása",
- "tooltip": "Az alkalmazás nem tudja kinyomtatni a védett adatokat, ha le van tiltva."
- },
- "ReceiveData": {
- "label": "Adatok fogadása más alkalmazásokból",
- "tooltip": "Válassza az alábbi lehetőségek egyikét azoknak az alkalmazásoknak a meghatározásához, ahonnan ez az alkalmazás fogadhat adatokat:
\r\n\r\nEgyik sem: Nem engedélyezett semmilyen alkalmazásból érkező adatok fogadása sem a szervezeti dokumentumokban vagy fiókokban
\r\n\r\nSzabályzattal felügyelt alkalmazások: Csak más, szabályzattal felügyelt alkalmazásokból érkező adatok fogadásának engedélyezése a szervezeti dokumentumokban vagy fiókokban\r\n
\r\nBármely beérkező szervezeti adatokkal rendelkező alkalmazás: Adatok bármely alkalmazásból történő fogadásának engedélyezése a szervezeti dokumentumokban és fiókokban és minden felhasználói fiók nélküli beérkező adat szervezeti adatként való kezelése
\r\n\r\nMinden alkalmazás: Bármely alkalmazásból érkező adatok fogadásának engedélyezése szervezeti dokumentumokban vagy fiókokban"
- },
- "RecheckAccessAfter": {
- "label": "Hozzáférési követelmények újbóli ellenőrzése a megadott idő elteltével (perc inaktivitás után)\r\n\r\n",
- "tooltip": "Ha a szabályzattal felügyelt alkalmazás hosszabb ideig inaktív, mint a megadott inaktív percek száma, az alkalmazás az indítása után kérni fogja a hozzáférési követelmények (pl. PIN-kód, feltételes indítási beállítások) újbóli ellenőrzését."
- },
- "RestrictKeyboards": {
- "duplicatePackageError": "A csomag azonosítójának egyedinek kell lennie.",
- "invalidPackageError": "Érvénytelen csomagazonosító",
- "label": "Jóváhagyott billentyűzetek",
- "select": "Billentyűzetek kiválasztása jóváhagyásra",
- "subtitle": "Adja hozzá az összes olyan billentyűzetet és beviteli metódust, amelyet a felhasználók a célzott alkalmazásokkal használhatnak. Adja meg a billentyűzet nevét, amelyet meg szeretne jeleníteni a végfelhasználónak.",
- "title": "Jóváhagyott billentyűzetek hozzáadása",
- "toolTip": "Válassza a Szükséges lehetőséget, majd adja meg a szabályzathoz tartozó jóváhagyott billentyűzetek listáját. További információ."
- },
- "SaveData": {
- "label": "Szervezeti adatok másolatának mentése",
- "tooltip": "Válassza a(z) {0} lehetőséget, ha meg szeretné akadályozni a szervezeti adatok másolatának kiválasztott társzolgáltatáson kívüli, új helyre történő mentését a Mentés másként használatakor.\r\n Válassza a(z) {1} lehetőséget, ha szeretné engedélyezni a szervezeti adatok másolatának új helyre történő mentését a Mentés másként használatakor.
\r\n\r\n\r\nMegjegyzés: Ez a beállítás nem vonatkozik az összes alkalmazásra. További információért lásd: {2}.\r\n"
- },
- "SaveDataToSelected": {
- "label": "Másolatok kiválasztott szolgáltatásokba történő mentésének engedélyezése a felhasználó számára",
- "tooltip": "Válassza ki azokat a társzolgáltatásokat, amelyekbe a felhasználók menthetik a szervezeti adatok másolatait. Minden más szolgáltatás le van tiltva. Ha nem választ szolgáltatásokat, azzal megakadályozza, hogy a felhasználók mentsék a szervezeti adatok másolatait."
- },
- "ScreenCaptureAndAndroidAssistant": {
- "label": "Képernyőfelvétel és Google Segéd\r\n",
- "tooltip": "Ha blokkolva van, a szabályzat által felügyelt alkalmazás használatakor a képernyőfelvétel és a Google Segéd alkalmazás beolvasási funkciói le lesznek tiltva. Ez a funkció támogatja a szokásos Google Segéd alkalmazást. A Google Segéd API-t használó külső segédek nem támogatottak. A Blokkolás választásával az Alkalmazásváltó előnézeti képe is elmosódik, ha az alkalmazást munkahelyi vagy iskolai fiókkal használja."
- },
- "SendData": {
- "label": "Szervezeti adatok küldése egyéb alkalmazásokba",
- "tooltip": "Válasszon az alábbi lehetőségek közül azoknak az alkalmazásoknak a meghatározásához, amelyekbe ez az alkalmazás adatokat küldhet:
\r\n\r\n\r\nNincs: Nem engedélyezett szervezeti adatok küldése semmilyen alkalmazásba
\r\n\r\n\r\nSzabályzattal felügyelt alkalmazások: Szervezeti adatok küldésének engedélyezése kizárólag más, szabályzat által felügyelt alkalmazásokba
\r\n\r\n\r\nSzabályzattal felügyelt alkalmazások operációsrendszer-megosztással: Szervezeti adatok küldésének engedélyezése kizárólag más, szabályzattal felügyelt alkalmazásokba és szervezeti dokumentumok küldése kizárólag más, MDM által felügyelt alkalmazásokba a regisztrált eszközökön
\r\n\r\n\r\nSzabályzattal felügyelt alkalmazások megnyitás- és megosztásszűréssel: Szervezeti adatok küldésének engedélyezése kizárólag más, szabályzattal felügyelt alkalmazásokba és az operációs rendszer Megnyitás és Megosztás párbeszédpaneljének szűrése, hogy csak a szabályzattal felügyelt alkalmazások jelenjenek meg\r\n
\r\n\r\nMinden alkalmazás: Szervezeti adatok küldésének engedélyezése bármely alkalmazásba"
- },
- "SimplePin": {
- "label": "Egyszerű PIN-kód",
- "tooltip": "Ha le van tiltva, a felhasználók nem hozhatnak létre egyszerű PIN-kódot. Az egyszerű PIN-kód egymást követő vagy ismétlődő karakterekből áll, például 1234, ABCD vagy 1111. Ne feledje, hogy a PIN-kód típusú egyszerű PIN-kód letiltásához a PIN-kódnak tartalmaznia kell legalább egy számot, egy betűt és egy különleges karaktert."
- },
- "SyncContacts": {
- "label": "Szabályzattal felügyelt alkalmazásadatok szinkronizálása natív alkalmazásokkal vagy bővítményekkel"
- },
- "ThirdPartyKeyboards": {
- "infoBox": "A billentyűzetre vonatkozó korlátozások az alkalmazások minden területére érvényesek lesznek. A korlátozás érinteni fogja a több identitást támogató alkalmazásokhoz tartozó személyes fiókokat. További információ.",
- "label": "Harmadik féltől származó billentyűzetek"
- },
- "Timeout": {
- "label": "Időkorlát (perc inaktivitás után)"
- },
- "Tap": {
- "numberOfDays": "Napok száma",
- "pinResetAfterNumberOfDays": "PIN-kód megváltoztatása ennyi nap után",
- "previousPinBlockCount": "A megőrizni kívánt korábbi PIN-értékek számának kiválasztása"
- }
- },
- "WindowsFeatureUpdateProfile": {
- "Details": {
- "Description": {
- "label": "Leírás"
- },
- "FeatureDeploymentSettings": {
- "header": "Funkciótelepítési beállítások"
- },
- "FeatureUpdateVersion": {
- "infoballoon": "A funkció nem képes eszközök alacsonyabb verzióra váltására.",
- "label": "A telepíteni kívánt funkciófrissítés"
- },
- "GradualRolloutEndDate": {
- "label": "Végleges csoport rendelkezésre állása"
- },
- "GradualRolloutInterval": {
- "label": "Csoportok közötti napok"
- },
- "GradualRolloutStartDate": {
- "label": "Első csoport rendelkezésre állása"
- },
- "Name": {
- "label": "Név"
- },
- "RolloutOptions": {
- "label": "Kibocsátási beállítások"
- },
- "RolloutSettings": {
- "header": "Mikor szeretné elérhetővé tenni a frissítést Windows Update-en belül?"
- },
- "ScopeSettings": {
- "header": "Hatókörcímkék konfigurálása ehhez a szabályzathoz."
- },
- "StartDateOnlyStartDate": {
- "label": "Az első elérhető dátum"
- },
- "bladeTitle": "Funkciófrissítés-telepítések",
- "deploymentSettingsTitle": "Üzembe helyezési beállítások",
- "loadError": "A betöltés nem sikerült",
- "windows11EULA": "Ha kiválasztja ezt a funkciófrissítést az üzembe helyezéshez, azzal elfogadja, hogy az operációs rendszer egy eszközre való alkalmazásakor vagy (1) a megfelelő Windows-licencet vásárolta meg a mennyiségi licencelés keretében, vagy (2), hogy Ön felhatalmazást kapott a munkahelye vagy az intézménye nevében való kötelezettségvállalásra, és mint ilyen személy, elfogadja az itt található megfelelő Microsoft szoftverlicenc-szerződés feltételeit: {0}."
- },
- "Notifications": {
- "deploymentSaved": "A(z) {0} mentése befejeződött.",
- "newFeatureUpdateDeploymentCreated": "Az új szolgáltatásfrissítési telepítés létrejött."
- },
- "TabName": {
- "deploymentSettings": "Üzembe helyezési beállítások",
- "groupAssignmentSettings": "Feladatok",
- "scopeSettings": "Hatókörcímkék"
- }
- },
- "OfficeUpdateChannel": {
- "current": "Aktuális csatorna",
- "deferred": "Féléves vállalati csatorna",
- "firstReleaseCurrent": "Aktuális csatorna (előzetes verzió)",
- "firstReleaseDeferred": "Féléves vállalati csatorna (előzetes verzió)",
- "monthlyEnterprise": "Havi vállalati csatorna",
- "placeHolder": "Válasszon egyet"
- },
- "Win32ReturnCodes": {
- "CodeTypes": {
- "failed": "Sikertelen",
- "hardReboot": "Hardveres újraindítás",
- "retry": "Újra",
- "softReboot": "Szoftveres újraindítás",
- "success": "Sikeres"
- },
- "Columns": {
- "codeType": "Kód típusa",
- "returnCode": "Visszatérési kód"
- },
- "bladeTitle": "Visszatérési kódok",
- "gridAriaLabel": "Visszatérési kódok",
- "header": "Adja meg a visszatérési kódokat a telepítés utáni viselkedés jelzéséhez:",
- "onAddAnnounceMessage": "Visszatérési kód – {0} hozzáadott elem, összesen: {1}",
- "onDeleteSuccess": "A visszatérési {0} kód sikeresen törölve",
- "returnCodeAlreadyUsedValidation": "A visszatérési kód már használatban van.",
- "returnCodeMustBeIntegerValidation": "A visszatérési kódnak egész számnak kell lennie.",
- "returnCodeShouldBeAtLeast": "A visszatérési kódnak legalább {0} értéknek kell lennie.",
- "returnCodeShouldBeAtMost": "A visszatérési kódnak legfeljebb {0} értéknek kell lennie.",
- "selectorLabel": "Visszatérési kódok"
- },
- "SecurityTemplate": {
- "aSR": "Támadási felület csökkentése",
- "accountProtection": "Fiókvédelem",
- "allDevices": "Minden eszköz",
- "antivirus": "Víruskereső",
- "antivirusReporting": "Víruskereső-jelentéskészítés (előzetes verzió)",
- "conditionalAccess": "Feltételes hozzáférés",
- "deviceCompliance": "Eszköz megfelelősége",
- "diskEncryption": "Lemeztitkosítás",
- "eDR": "Végpontészlelés és -válasz",
- "firewall": "Tűzfal",
- "helpSupport": "Súgó és támogatás",
- "setup": "Telepítés",
- "wdapt": "Microsoft Defender for Endpoint"
- },
- "PolicySet": {
- "appManagement": "Alkalmazáskezelés",
- "assignments": "Hozzárendelések",
- "basics": "Alapvető beállítások",
- "deviceEnrollment": "Eszközök beléptetése",
- "deviceManagement": "Eszközkezelés",
- "scopeTags": "Hatókörcímkék",
- "appConfigurationTitle": "Alkalmazáskonfigurációs szabályzatok",
- "appProtectionTitle": "Alkalmazásvédelmi szabályzatok",
- "appTitle": "Alkalmazások",
- "iOSAppProvisioningTitle": "iOS-es alkalmazáskiépítési profilok",
- "deviceLimitRestrictionTitle": "Eszközszámkorlátok",
- "deviceTypeRestrictionTitle": "Eszköztípus-korlátozások",
- "enrollmentStatusSettingTitle": "Regisztráció állapotát jelző lapok",
- "windowsAutopilotDeploymentProfileTitle": "Windows AutoPilot Deployment-profilok",
- "deviceComplianceTitle": "Eszközmegfelelőségi szabályzatok",
- "deviceConfigurationTitle": "Eszközkonfigurációs profilok",
- "powershellScriptTitle": "PowerShell-szkriptek"
- },
- "AssignmentAction": {
- "exclude": "Kizárva",
- "include": "Belefoglalva",
- "includeAllDevicesVirtualGroup": "Belefoglalva",
- "includeAllUsersVirtualGroup": "Belefoglalva"
- },
- "WindowsFeatureUpdate": {
- "EndOFSupportStatus": {
- "notSupported": "Nem támogatott",
- "supportEnding": "A támogatás vége",
- "supported": "Támogatott"
- }
- },
- "InstallIntent": {
- "available": "Regisztrált eszközök esetében elérhető",
- "availableWithoutEnrollment": "Regisztrációval vagy anélkül is elérhető",
- "required": "Kötelező",
- "uninstall": "Eltávolítás"
- },
"OutlookAppConfig": {
"DataProtectionConfiguration": {
"header": "Adatvédelmi konfiguráció"
@@ -1938,307 +100,864 @@
"themesEnabledTitle": "Témák engedélyezve",
"themesEnabledTooltip": "Adja meg, hogy a felhasználó használhat-e egyéni vizuális témát."
},
- "TAP": {
- "AccessRequirements": {
- "infoText": "Konfigurálja a PIN-kódra és a hitelesítő adatokra vonatkozó követelményeket, amelyeknek a felhasználóknak meg kell felelniük a munkahelyi környezetben az alkalmazások eléréséhez."
- },
- "DataProtection": {
- "infoText": "Ez a csoport tartalmazza az olyan adatveszteség-megelőzési (DLP-) vezérlőket, mint például a kivágás, a másolás, a beillesztés és a mentés másként művelet korlátozásai. Ezek a beállítások határozzák meg, hogyan használhatják a felhasználók az alkalmazásokban található adatokat."
- },
- "DeviceTypes": {
- "selectOne": "Válasszon legalább egy eszköztípust."
- },
- "TargetedApps": {
- "TargetToAll": {
- "label": "Az összes eszköztípuson futó alkalmazások célzása"
- },
- "infoText": "Válassza ki, hogyan szeretné ezt a szabályzatot alkalmazni az alkalmazásokban a különböző eszközökön. Ezután adjon hozzá legalább egy alkalmazást.",
- "selectOne": "Szabályzat létrehozásához legalább egy alkalmazást válasszon ki."
- }
- },
- "TACSettings": {
- "edgeSettings": "Edge-konfigurációs beállítások",
- "edgeWindowsDataProtectionSettings": "Edge (Windows) adatvédelmi beállításai – előzetes verzió",
- "edgeWindowsSettings": "Edge (Windows) konfigurációs beállításai – előzetes verzió",
- "generalAppConfig": "Általános alkalmazáskonfiguráció",
- "generalSettings": "Általános konfigurációs beállítások",
- "outlookSMIMEConfig": "Az Outlook S/MIME-beállításai",
- "outlookSettings": "Outlook-konfigurációs beállítások",
- "sMIME": "S/MIME"
- },
- "OfficeApplicationAdditionalType": {
- "projectProRetail": "A Project Online asztali ügyfele",
- "visioProRetail": "Visio Online 2. csomag"
- },
- "Win32Requirements": {
- "AdditionalRequirements": {
- "File": {
- "fileOrFolderToolTip": "A fájl vagy a mappa mint kiválasztott követelmény.",
- "pathToolTip": "Az észlelendő fájl vagy mappa teljes elérési útja.",
- "property": "Tulajdonság",
- "valueToolTip": "Válasszon olyan követelményértéket, amely megfelel a választott észlelési módszernek. A dátum és idő követelményét a helyi formátumban kell megadni."
- },
- "GridColumns": {
- "pathOrScript": "Elérési út vagy szkript",
- "type": "Típus"
- },
- "Registry": {
- "keyPath": "Kulcs elérési útja",
- "keyPathTooltip": "A követelményként szolgáló értéket tartalmazó beállításjegyzék-bejegyzés teljes elérési útja.",
- "operator": "Operátor",
- "operatorTooltip": "Válassza ki az operátort az összehasonlításhoz.",
- "registryRequirement": "Beállításkulcsra vonatkozó követelmény",
- "registryRequirementTooltip": "Válassza ki a beállításkulcsra vonatkozó követelmények összehasonlításának módját.",
- "valueName": "Azonosítónév",
- "valueNameTooltip": "A szükséges beállításjegyzék-érték neve."
- },
- "RequirementTypeOptions": {
- "fileType": "Fájl",
- "registry": "Beállításjegyzék",
- "script": "Szkript"
- },
- "Script": {
- "RequirementMethodOptions": {
- "boolean": "Logikai érték",
- "dateTime": "Dátum és idő",
- "float": "Lebegőpontos szám",
- "integer": "Egész szám",
- "string": "Sztring",
- "version": "Verzió"
- },
- "ScriptContent": {
- "emptyMessage": "A szkript tartalma nem lehet üres."
- },
- "duplicateName": "A(z) {0} szkriptnév már használatban van. Adjon meg egy másik nevet.",
- "enforceSignatureCheck": "Szkriptaláírás ellenőrzésének kényszerítése",
- "enforceSignatureCheckTooltip": "Az „Igen” lehetőség kiválasztásával ellenőrizheti, hogy a szkriptet egy megbízható gyártó írta-e alá, így a szkript figyelmeztetések és felszólítások megjelenítése nélkül fog futni. A szkript letiltás nélkül fog futni. A „Nem” (ez az alapértelmezett beállítás) kiválasztásakor a szkript végfelhasználói megerősítéssel, de az aláírás ellenőrzése nélkül fut.",
- "loggedOnCredentials": "Szkript futtatása a bejelentkezéshez használt hitelesítő adatokkal",
- "loggedOnCredentialsTooltip": "Szkript futtatása a bejelentkezett eszköz hitelesítő adataival.",
- "operatorTooltip": "Válassza ki az operátort a követelmények összehasonlításához.",
- "requirementMethod": "Kimeneti adattípus kiválasztása...",
- "requirementMethodTooltip": "Válassza ki, hogy a rendszer melyik adattípust használja az észlelési egyezési követelmények meghatározásakor.",
- "scriptFile": "Parancsfájl",
- "scriptFileTooltip": "Válasszon egy PowerShell-szkriptet, amely észleli majd az alkalmazás jelenlétét az ügyfélen. Ha a rendszer észleli az alkalmazást, a követelményfolyamat egy 0 értékű kilépési kódot ad vissza, és sztringértéket ír az STDOUT elembe.",
- "scriptName": "Szkript neve",
- "value": "Érték",
- "valueTooltip": "Válasszon olyan követelményértéket, amely megfelel a választott észlelési módszernek. A dátum és idő követelményét a helyi formátumban kell megadni."
- },
- "bladeTitle": "Követelményszabály hozzáadása",
- "createRequirementHeader": "Követelmény létrehozása",
- "header": "További követelményszabályok konfigurálása",
- "label": "További követelményszabályok",
- "noRequirementsSelectedPlaceholder": "Nincsenek megadva követelmények.",
- "requirementType": "Követelmény típusa",
- "requirementTypeTooltip": "Válassza ki a követelmény érvényesítésének meghatározásához használt észlelési módszert."
- },
- "architectures": "Operációs rendszer architektúrája",
- "architecturesTooltip": "Válassza ki az alkalmazás telepítéséhez szükséges architektúrákat.",
- "bladeTitle": "Követelmények",
- "diskSpace": "Szükséges lemezterület (MB)",
- "diskSpaceTooltip": "Az alkalmazás telepítéséhez szabad lemezterület szükséges a rendszermeghajtón.",
- "header": "Adja meg, milyen követelményeknek kell megfelelnie az eszközöknek az alkalmazás telepítése előtt:",
- "maximumTextFieldValue": "A maximális érték {0}.",
- "minimumCpuSpeed": "Szükséges minimális processzorsebesség (MHz)",
- "minimumCpuSpeedTooltip": "Az alkalmazás telepítéséhez szükséges minimális CPU-sebesség.",
- "minimumLogicalProcessors": "Logikai processzorok szükséges minimális száma",
- "minimumLogicalProcessorsTooltip": "Az alkalmazás telepítéséhez szükséges logikai processzorok minimális száma.",
- "minimumOperatingSystem": "Minimális operációsrendszer-verzió",
- "minimumOperatingSystemTooltip": "Válassza ki az alkalmazás telepítéséhez szükséges minimális operációs rendszert.",
- "minumumTextFieldValue": "A minimális érték {0}.",
- "physicalMemory": "Szükséges fizikai memória (MB)",
- "physicalMemoryTooltip": "Az alkalmazás telepítéséhez szükséges fizikai memória (RAM).",
- "selectorLabel": "Követelmények",
- "validNumber": "Adjon meg egy érvényes számot."
- },
- "ArchitectureOptions": {
- "sixtyFourBit": "64 bites",
- "thirtyTwoBit": "32 bites"
- },
- "Countries": {
- "ae": "Egyesült Arab Emírségek",
- "ag": "Antigua és Barbuda",
- "ai": "Anguilla",
- "al": "Albánia",
- "am": "Örményország",
- "ao": "Angola",
- "ar": "Argentína",
- "at": "Ausztria",
- "au": "Ausztrália",
- "az": "Azerbajdzsán",
- "bb": "Barbados",
- "be": "Belgium",
- "bf": "Burkina Faso",
- "bg": "Bulgária",
- "bh": "Bahrein",
- "bj": "Benin",
- "bm": "Bermuda",
- "bn": "Brunei",
- "bo": "Bolívia",
- "br": "Brazília",
- "bs": "Bahama-szigetek",
- "bt": "Bhután",
- "bw": "Botswana",
- "by": "Belarusz",
- "bz": "Belize",
- "ca": "Kanada",
- "cg": "Kongói Köztársaság",
- "ch": "Svájc",
- "cl": "Chile",
- "cn": "Kína",
- "co": "Kolumbia",
- "cr": "Costa Rica",
- "cv": "Cabo Verde",
- "cy": "Ciprus",
- "cz": "Cseh Köztársaság",
- "de": "Németország",
- "dk": "Dánia",
- "dm": "Dominika",
- "do": "Dominikai Köztársaság",
- "dz": "Algéria",
- "ec": "Ecuador",
- "ee": "Észtország",
- "eg": "Egyiptom",
- "es": "Spanyolország",
- "fi": "Finnország",
- "fj": "Fidzsi-szigetek",
- "fm": "Mikronéziai Szövetséges Államok",
- "fr": "Franciaország",
- "gb": "Egyesült Királyság",
- "gd": "Grenada",
- "gh": "Ghána",
- "gm": "Gambia",
- "gr": "Görögország",
- "gt": "Guatemala",
- "gw": "Bissau-Guinea",
- "gy": "Guyana",
- "hk": "Hongkong KKT",
- "hn": "Honduras",
- "hr": "Horvátország",
- "hu": "Magyarország",
- "id": "Indonézia",
- "ie": "Írország",
- "il": "Izrael",
- "in": "India",
- "is": "Izland",
- "it": "Olaszország",
- "jm": "Jamaica",
- "jo": "Jordánia",
- "jp": "Japán",
- "ke": "Kenya",
- "kg": "Kirgizisztán",
- "kh": "Kambodzsa",
- "kn": "Saint Kitts és Nevis",
- "kr": "Koreai Köztársaság",
- "kw": "Kuvait",
- "ky": "Kajmán-szigetek",
- "kz": "Kazahsztán",
- "la": "Laoszi Népi Demokratikus köztársaság",
- "lb": "Libanon",
- "lc": "Saint Lucia",
- "lk": "Srí Lanka",
- "lr": "Libéria",
- "lt": "Litvánia",
- "lu": "Luxemburg",
- "lv": "Lettország",
- "md": "Moldovai Köztársaság",
- "mg": "Madagaszkár",
- "mk": "Észak-Macedónia",
- "ml": "Mali",
- "mn": "Mongólia",
- "mo": "Makao",
- "mr": "Mauritánia",
- "ms": "Montserrat",
- "mt": "Málta",
- "mu": "Mauritius",
- "mw": "Malawi",
- "mx": "Mexikó",
- "my": "Malajzia",
- "mz": "Mozambik",
- "na": "Namíbia",
- "ne": "Niger",
- "ng": "Nigéria",
- "ni": "Nicaragua",
- "nl": "Hollandia",
- "no": "Norvégia",
- "np": "Nepál",
- "nz": "Új-Zéland",
- "om": "Omán",
- "pa": "Panama",
- "pe": "Peru",
- "pg": "Pápua Új-Guinea",
- "ph": "Fülöp-szigetek",
- "pk": "Pakisztán",
- "pl": "Lengyelország",
- "pt": "Portugália",
- "pw": "Palau",
- "py": "Paraguay",
- "qa": "Katar",
- "ro": "Románia",
- "ru": "Oroszország",
- "sa": "Szaúd-Arábia",
- "sb": "Salamon-szigetek",
- "sc": "Seychelle-szigetek",
- "se": "Svédország",
- "sg": "Szingapúr",
- "si": "Szlovénia",
- "sk": "Szlovákia",
- "sl": "Sierra Leone",
- "sn": "Szenegál",
- "sr": "Suriname",
- "st": "Sao Tome és Principe",
- "sv": "Salvador",
- "sz": "Szváziföld",
- "tc": "Turks- és Caicos-szigetek",
- "td": "Csád",
- "th": "Thaiföld",
- "tj": "Tádzsikisztán",
- "tm": "Türkmenisztán",
- "tn": "Tunézia",
- "tr": "Törökország",
- "tt": "Trinidad és Tobago",
- "tw": "Tajvan",
- "tz": "Tanzánia",
- "ua": "Ukrajna",
- "ug": "Uganda",
- "us": "Egyesült Államok",
- "uy": "Uruguay",
- "uz": "Üzbegisztán",
- "vc": "Saint Vincent és Grenadine-szigetek",
- "ve": "Venezuela",
- "vg": "Brit Virgin-szigetek",
- "vn": "Vietnam",
- "ye": "Jemen",
- "za": "Dél-Afrika",
- "zw": "Zimbabwe"
+ "Languages": {
+ "ar-aE": "arab (E.A.E.)",
+ "ar-bH": "arab (Bahrein)",
+ "ar-dZ": "arab (Algéria)",
+ "ar-eG": "arab (Egyiptom)",
+ "ar-iQ": "arab (Irak)",
+ "ar-jO": "arab (Jordánia)",
+ "ar-kW": "arab (Kuvait)",
+ "ar-lB": "arab (Libanon)",
+ "ar-lY": "arab (Líbia)",
+ "ar-mA": "arab (Marokkó)",
+ "ar-oM": "arab (Omán)",
+ "ar-qA": "arab (Katar)",
+ "ar-sA": "arab (Szaúd-Arábia)",
+ "ar-sY": "arab (Szíria)",
+ "ar-tN": "arab (Tunézia)",
+ "ar-yE": "arab (Jemen)",
+ "az-cyrl": "azerbajdzsáni (cirill betűs, Azerbajdzsán)",
+ "az-latn": "azerbajdzsáni (latin betűs, Azerbajdzsán)",
+ "bn-bD": "bangla (Banglades)",
+ "bn-iN": "bangla (India)",
+ "bs-cyrl": "bosnyák (cirill betűs)",
+ "bs-latn": "bosnyák (latin betűs)",
+ "zh-cN": "kínai (kínai népköztársasági)",
+ "zh-hK": "kínai (hongkongi k.k.t.)",
+ "zh-mO": "kínai (Makaó KKT)",
+ "zh-sG": "kínai (Szingapúr)",
+ "zh-tW": "kínai (tajvani)",
+ "hr-bA": "horvát (latin betűs)",
+ "hr-hR": "horvát (Horvátország)",
+ "nl-bE": "holland (Belgium)",
+ "nl-nL": "holland (Hollandia)",
+ "en-aU": "angol (Ausztrália)",
+ "en-bZ": "angol (Belize)",
+ "en-cA": "angol (Kanada)",
+ "en-cabn": "angol (Karib-térség)",
+ "en-iE": "angol (Írország)",
+ "en-iN": "angol (India)",
+ "en-jM": "angol (Jamaica)",
+ "en-mY": "angol (Malajzia)",
+ "en-nZ": "angol (Új-Zéland)",
+ "en-pH": "angol (Fülöp-szigeteki)",
+ "en-sG": "angol (Szingapúr)",
+ "en-tT": "angol (Trinidad és Tobago)",
+ "en-uK": "angol (Egyesült Királyság)",
+ "en-uS": "angol (Egyesült Államok)",
+ "en-zA": "angol (Dél-Afrika)",
+ "en-zW": "angol (Zimbabwe)",
+ "fr-bE": "francia (Belgium)",
+ "fr-cA": "francia (Kanada)",
+ "fr-cH": "francia (Svájc)",
+ "fr-fR": "francia (Franciaország)",
+ "fr-lU": "francia (Luxemburg)",
+ "fr-mC": "francia (Monaco)",
+ "de-aT": "német (Ausztria)",
+ "de-cH": "német (Svájc)",
+ "de-dE": "német (Németország)",
+ "de-lI": "német (Liechtenstein)",
+ "de-lU": "német (Luxemburg)",
+ "iu-cans": "inuktitut (szótagírás, Kanada)",
+ "iu-latn": "inuktitut (latin betűs, Kanada)",
+ "it-cH": "olasz (Svájc)",
+ "it-iT": "olasz (Olaszország)",
+ "ms-bN": "maláj (Brunei Szultanátus)",
+ "ms-mY": "maláj (Malajzia)",
+ "mn-cN": "mongol (hagyományos mongol, kínai népköztársasági)",
+ "mn-mN": "mongol (cirill betűs, Mongólia)",
+ "no-nB": "norvég, bokmål (Norvégia)",
+ "no-nn": "norvég, nynorsk (Norvégia)",
+ "pt-bR": "Portugál (brazíliai)",
+ "pt-pT": "Portugál (portugáliai)",
+ "quz-bO": "kecsua (Bolívia)",
+ "quz-eC": "kecsua (Ecuador)",
+ "quz-pE": "kecsua (Peru)",
+ "smj-nO": "számi, lulei (Norvégia)",
+ "smj-sE": "számi, lulei (Svédország)",
+ "se-fI": "számi, északi (Finnország)",
+ "se-nO": "számi, északi (Norvégia)",
+ "se-sE": "számi, északi (Svédország)",
+ "sma-nO": "számi, déli (Norvégia)",
+ "sma-sE": "számi, déli (Svédország)",
+ "smn": "számi, inari (Finnország)",
+ "sms": "számi, kolta (Finnország)",
+ "sr-Cyrl-bA": "szerb (cirill betűs)",
+ "sr-Cyrl-rS": "szerb (cirill betűs, [a volt] Szerbia és Montenegró)",
+ "sr-Latn-bA": "szerb (latin betűs)",
+ "sr-Latn-rS": "szerb (latin, Szerbia)",
+ "dsb": "alsó-szorb (Németország)",
+ "hsb": "felső-szorb (Németország)",
+ "es-es-tradnl": "spanyol (Spanyolország, hagyományos rendezés)",
+ "es-aR": "spanyol (Argentína)",
+ "es-bO": "spanyol (Bolívia)",
+ "es-cL": "spanyol (Chile)",
+ "es-cO": "spanyol (Kolumbia)",
+ "es-cR": "spanyol (Costa Rica)",
+ "es-dO": "spanyol (Dominikai Köztársaság)",
+ "es-eC": "spanyol (Ecuador)",
+ "es-eS": "spanyol (spanyolországi)",
+ "es-gT": "spanyol (Guatemala)",
+ "es-hN": "spanyol (Honduras)",
+ "es-mX": "spanyol (Mexikó)",
+ "es-nI": "spanyol (Nicaragua)",
+ "es-pA": "spanyol (Panama)",
+ "es-pE": "spanyol (Peru)",
+ "es-pR": "spanyol (Puerto Rico)",
+ "es-pY": "spanyol (Paraguay)",
+ "es-sV": "spanyol (Salvador)",
+ "es-uS": "spanyol (Egyesült Államok)",
+ "es-uY": "spanyol (Uruguay)",
+ "es-vE": "spanyol (Venezuela)",
+ "sv-fI": "svéd (Finnország)",
+ "uz-cyrl": "üzbég (cirill betűs, Üzbegisztán)",
+ "uz-latn": "üzbég (latin betűs, Üzbegisztán)",
+ "af": "afrikaans (Dél-Afrika)",
+ "sq": "albán (Albánia)",
+ "am": "amhara (Etiópia)",
+ "hy": "örmény (Örményország)",
+ "as": "asszámi (India)",
+ "ba": "baskír (Oroszország)",
+ "eu": "baszk (baszk)",
+ "be": "belarusz (Belarusz)",
+ "br": "breton (Franciaország)",
+ "bg": "bolgár (Bulgária)",
+ "ca": "katalán (katalán)",
+ "co": "korzikai (Franciaország)",
+ "cs": "cseh (Cseh Köztársaság)",
+ "da": "dán (Dánia)",
+ "prs": "dari (Afganisztán)",
+ "dv": "divehi (Maldív-szigetek)",
+ "et": "észt (Észtország)",
+ "fo": "feröeri (Feröer-szigetek)",
+ "fil": "filippínó (Fülöp-szigetek)",
+ "fi": "finn (Finnország)",
+ "gl": "gallego (Galícia)",
+ "ka": "grúz (Grúzia)",
+ "el": "görög (Görögország)",
+ "gu": "gudzsaráti (India)",
+ "ha": "hausza (latin betűs, Nigéria)",
+ "he": "héber (Izrael)",
+ "hi": "hindi (India)",
+ "hu": "magyar (Magyarország)",
+ "is": "izlandi (Izland)",
+ "ig": "igbo (Nigéria)",
+ "id": "indonéz (Indonézia)",
+ "ga": "ír (Írország)",
+ "xh": "xhosza (Dél-Afrika)",
+ "zu": "zulu (Dél-Afrika)",
+ "ja": "japán (Japán)",
+ "kn": "kannada (India)",
+ "kk": "kazak (Kazahsztán)",
+ "km": "khmer (Kambodzsa)",
+ "rw": "kinyarvanda (Ruanda)",
+ "sw": "szuahéli (Kenya)",
+ "kok": "kónkáni (India)",
+ "ko": "koreai (Korea)",
+ "ky": "kirgiz (Kirgizisztán)",
+ "lo": "lao (laoszi)",
+ "lv": "lett (Lettország)",
+ "lt": "litván (Litvánia)",
+ "lb": "luxemburgi (Luxemburg)",
+ "mk": "Macedón (Észak-Macedónia)",
+ "ml": "malajálam (India)",
+ "mt": "máltai (Málta)",
+ "mi": "maori (Új-Zéland)",
+ "mr": "maráthi (India)",
+ "moh": "mohawk (Mohawk)",
+ "ne": "nepáli (Nepál)",
+ "oc": "okszitán (Franciaország)",
+ "or": "odia (India)",
+ "ps": "pasto (Afganisztán)",
+ "fa": "perzsa",
+ "pl": "lengyel (Lengyelország)",
+ "pa": "pandzsábi (India)",
+ "ro": "román (Románia)",
+ "rm": "rétoromán (Svájc)",
+ "ru": "orosz (Oroszország)",
+ "sa": "szanszkrit (India)",
+ "st": "északi szoto (Dél-Afrika)",
+ "tn": "setswana (Dél-Afrika)",
+ "si": "szingaléz (Srí Lanka)",
+ "sk": "szlovák (Szlovákia)",
+ "sl": "szlovén (Szlovénia)",
+ "sv": "svéd (Svédország)",
+ "syr": "szír (Szíria)",
+ "tg": "tadzsik (cirill betűs, Tádzsikisztán)",
+ "ta": "tamil (India)",
+ "tt": "tatár (Oroszország)",
+ "te": "telugu (India)",
+ "th": "thai (Thaiföld)",
+ "bo": "tibeti (kínai népköztársasági)",
+ "tr": "török (Törökország)",
+ "tk": "türkmén (Türkmenisztán)",
+ "uk": "ukrán (Ukrajna)",
+ "ur": "urdu (pakisztáni iszlám köztársasági)",
+ "vi": "vietnami (Vietnam)",
+ "cy": "walesi (Egyesült Királyság)",
+ "wo": "volof (Szenegál)",
+ "ii": "ji (kínai népköztársasági)",
+ "yo": "joruba (Nigéria)"
+ },
+ "Category": {
+ "airPlay": "AirPlay",
+ "airPrint": "AirPrint",
+ "androidDefenderAtp": "Microsoft Defender for Endpoint",
+ "androidDeviceOwnerApplications": "Alkalmazások",
+ "androidForWorkPassword": "Eszköz jelszava",
+ "appManagement": "Alkalmazások engedélyezése vagy letiltása",
+ "applicationGuard": "Microsoft Defender alkalmazásőr",
+ "applicationRestrictions": "Korlátozott alkalmazások",
+ "applicationVisibility": "Alkalmazások megjelenítése vagy elrejtése",
+ "applications": "Alkalmazásáruház",
+ "applicationsAndGames": "App Store, dokumentumok megtekintése, játékok",
+ "applicationsAndGoogle": "Google Play Áruház",
+ "appsAndExperience": "Alkalmazások és kezelőfelület",
+ "associatedDomains": "Társított tartományok",
+ "autonomousSingleAppMode": "Autonóm egyalkalmazásos mód",
+ "azureOperationalInsights": "Azure Operational Insights",
+ "bitLocker": "Windowsos titkosítás",
+ "browser": "Böngésző",
+ "builtinApps": "Beépített alkalmazások",
+ "cellular": "Mobiltelefon",
+ "cloudAndStorage": "Felhő és tárolás",
+ "cloudPrint": "Felhőbeli nyomtató",
+ "complianceEmailProfile": "E-mail",
+ "connectedDevices": "Csatlakoztatott eszközök",
+ "connectivity": "Mobiltelefon és kapcsolatok",
+ "contentCaching": "Tartalom-gyorsítótárazás",
+ "controlPanelAndSettings": "Vezérlőpult és Gépház",
+ "credentialGuard": "Microsoft Defender Credential Guard",
+ "customCompliance": "Egyéni megfelelőség",
+ "customCompliancePreview": "Egyéni megfelelőség (előzetes verzió)",
+ "customConfiguration": "Egyéni konfigurációs profil",
+ "customOMASettings": "Egyéni OMA-URI beállítások",
+ "customPreferences": "Preferenciafájl",
+ "defender": "Microsoft Defender víruskereső",
+ "defenderAntivirus": "Microsoft Defender víruskereső",
+ "defenderExploitGuard": "Microsoft Defender - biztonsági rés kiaknázása elleni védelem",
+ "defenderFirewall": "Microsoft Defender tűzfal",
+ "defenderLocalSecurityOptions": "Helyi eszközbiztonsági beállítások",
+ "defenderSecurityCenter": "Microsoft Defender biztonsági központ",
+ "deliveryOptimization": "Kézbesítésoptimalizálás",
+ "derivedCredentialAuthenticationConfiguration": "Származtatott hitelesítő adat",
+ "deviceExperience": "Eszköz által nyújtott élmény",
+ "deviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
+ "deviceGuard": "Microsoft Defender alkalmazás-ellenőrzés",
+ "deviceHealth": "Eszközállapot-figyelő",
+ "devicePassword": "Eszközjelszó",
+ "deviceProperties": "Eszköztulajdonságok",
+ "deviceRestrictions": "Általános",
+ "deviceSecurity": "Rendszerbiztonság",
+ "display": "Megjelenítés",
+ "domainJoin": "Csatlakozás tartományhoz",
+ "domains": "Tartományok",
+ "edgeBrowser": "Microsoft Edge Legacy (45-ös és korábbi verziók)",
+ "edgeBrowserSmartScreen": "Microsoft Defender SmartScreen",
+ "edgeKiosk": "Microsoft Edge kioszkmód",
+ "editionUpgrade": "Kiadásfrissítés",
+ "education": "Oktatás",
+ "educationDeviceCerts": "Eszköztanúsítványok",
+ "educationStudentCerts": "Diáktanúsítványok",
+ "educationTakeATest": "Vizsga",
+ "educationTeacherCerts": "Oktatói tanúsítványok",
+ "emailProfile": "E-mail",
+ "enterpriseDataProtection": "Windows Information Protection",
+ "expeditedCheckin": "Mobileszköz-kezelés konfigurációja",
+ "extensibleSingleSignOn": "Egyszeri bejelentkezéses alkalmazásbővítmény",
+ "filevault": "FileVault",
+ "firewall": "Tűzfal",
+ "games": "Játékok",
+ "gatekeeper": "Forgalomirányító",
+ "healthMonitoring": "Állapotmonitorozás",
+ "homeScreenLayout": "Kezdőképernyő-elrendezés",
+ "iOSWallpaper": "Tapéta",
+ "importedPFX": "Importált PKCS-tanúsítvány",
+ "iosDefenderAtp": "Microsoft Defender for Endpoint",
+ "iosKiosk": "Kioszkmód",
+ "kernelExtensions": "Kernelbővítmények",
+ "keyboardAndDictionary": "Billentyűzet és szótár",
+ "kiosk": "Kioszkmód",
+ "kioskAndroidEnterprise": "Dedikált eszközök",
+ "kioskConfiguration": "Kioszkmód",
+ "kioskConfigurationV2": "Kioszkmód",
+ "kioskWebBrowser": "Kioszkmódú webböngésző",
+ "lockScreenMessage": "Zárolási képernyőn látható üzenet",
+ "lockedScreenExperience": "Zárolási képernyő felülete",
+ "logging": "Jelentéskészítés és telemetria",
+ "loginItems": "Bejelentkezési elemek",
+ "loginWindow": "Bejelentkezési ablak",
+ "macDefenderAtp": "Microsoft Defender for Endpoint",
+ "maintenance": "Karbantartás",
+ "malware": "Kártevők",
+ "messaging": "Üzenetküldés",
+ "networkBoundary": "Hálózathatár",
+ "networkProxy": "Hálózati proxy",
+ "notifications": "Alkalmazásértesítések",
+ "pKCS": "PKCS-tanúsítvány",
+ "password": "Jelszó",
+ "personalProfile": "Személyes profil",
+ "personalization": "Személyre szabás",
+ "policyOverride": "Csoportházirend felülbírálása",
+ "powerSettings": "Energiaellátási beállítások",
+ "printer": "Nyomtató",
+ "privacy": "Adatvédelem",
+ "privacyPerApp": "Alkalmazásonkénti adatvédelmi kivételek",
+ "privacyPreferences": "Adatvédelmi beállítások",
+ "projection": "Vetület",
+ "sCCMCompliance": "Configuration Manager-megfelelőség",
+ "sCEP": "SCEP-tanúsítvány",
+ "sCEPProperties": "SCEP-tanúsítvány",
+ "sMode": "Módváltás (csak Windows Insider)",
+ "safari": "Safari",
+ "search": "Keresés",
+ "session": "Munkamenet",
+ "sharedDevice": "Megosztott iPad",
+ "sharedPCAccountManager": "Megosztott többfelhasználós eszköz",
+ "singleSignOn": "Egyszeri bejelentkezés",
+ "smartScreen": "Microsoft Defender SmartScreen",
+ "softwareUpdates": "Beállítások",
+ "start": "Indítás",
+ "systemExtensions": "Rendszerbővítmények",
+ "systemSecurity": "Rendszerbiztonság",
+ "trustedCert": "Megbízható tanúsítvány",
+ "updates": "Frissítések",
+ "userRights": "Felhasználói jogok",
+ "usersAndAccounts": "Felhasználók és fiókok",
+ "vPN": "Alapszintű VPN",
+ "vPNApps": "Automatikus VPN",
+ "vPNAppsAndTrafficRules": "Alkalmazások és adatforgalmi szabályok",
+ "vPNConditionalAccess": "Feltételes hozzáférés",
+ "vPNConnectivity": "Hálózati kapcsolat",
+ "vPNDNSTriggers": "DNS-beállítások",
+ "vPNIKEv2": "IKEv2-beállítások",
+ "vPNProxy": "Proxy",
+ "vPNSplitTunneling": "Vegyes alagútkezelés",
+ "vPNTrustedNetwork": "Megbízható hálózatok észlelése",
+ "webContentFilter": "Webes tartalomszűrés",
+ "wiFi": "Wi-Fi",
+ "win10Wifi": "Wi-Fi",
+ "windowsAtp": "Microsoft Defender for Endpoint",
+ "windowsDefenderATP": "Microsoft Defender for Endpoint",
+ "windowsHelloForBusiness": "Vállalati Windows Hello",
+ "windowsSpotlight": "Windows Reflektorfény",
+ "wiredNetwork": "Vezetékes hálózat",
+ "wireless": "Vezeték nélküli hálózat",
+ "wirelessProjection": "Vezeték nélküli kivetítés",
+ "workProfile": "Munkahelyi profil beállításai",
+ "workProfilePassword": "Munkahelyi profil jelszava",
+ "xboxServices": "Xbox-szolgáltatások",
+ "zebraMx": "MX-profil (csak Zebra)",
+ "complianceActionsLabel": "Műveletek meg nem felelés esetén"
+ },
+ "WindowsFeatureUpdateProfile": {
+ "Details": {
+ "Description": {
+ "label": "Leírás"
+ },
+ "FeatureDeploymentSettings": {
+ "header": "Funkciótelepítési beállítások"
+ },
+ "FeatureUpdateVersion": {
+ "infoballoon": "A funkció nem képes eszközök alacsonyabb verzióra váltására.",
+ "label": "A telepíteni kívánt funkciófrissítés"
+ },
+ "GradualRolloutEndDate": {
+ "label": "Végleges csoport rendelkezésre állása"
+ },
+ "GradualRolloutInterval": {
+ "label": "Csoportok közötti napok"
+ },
+ "GradualRolloutStartDate": {
+ "label": "Első csoport rendelkezésre állása"
+ },
+ "Name": {
+ "label": "Név"
+ },
+ "RolloutOptions": {
+ "label": "Kibocsátási beállítások"
+ },
+ "RolloutSettings": {
+ "header": "Mikor szeretné elérhetővé tenni a frissítést Windows Update-en belül?"
+ },
+ "ScopeSettings": {
+ "header": "Hatókörcímkék konfigurálása ehhez a szabályzathoz."
+ },
+ "StartDateOnlyStartDate": {
+ "label": "Az első elérhető dátum"
+ },
+ "bladeTitle": "Funkciófrissítés-telepítések",
+ "deploymentSettingsTitle": "Üzembe helyezési beállítások",
+ "loadError": "A betöltés nem sikerült",
+ "windows11EULA": "Ha kiválasztja ezt a funkciófrissítést az üzembe helyezéshez, azzal elfogadja, hogy az operációs rendszer egy eszközre való alkalmazásakor vagy (1) a megfelelő Windows-licencet vásárolta meg a mennyiségi licencelés keretében, vagy (2), hogy Ön felhatalmazást kapott a munkahelye vagy az intézménye nevében való kötelezettségvállalásra, és mint ilyen személy, elfogadja az itt található megfelelő Microsoft szoftverlicenc-szerződés feltételeit: {0}."
+ },
+ "Notifications": {
+ "deploymentSaved": "A(z) {0} mentése befejeződött.",
+ "newFeatureUpdateDeploymentCreated": "Az új szolgáltatásfrissítési telepítés létrejött."
+ },
+ "TabName": {
+ "deploymentSettings": "Üzembe helyezési beállítások",
+ "groupAssignmentSettings": "Feladatok",
+ "scopeSettings": "Hatókörcímkék"
+ }
+ },
+ "WIPPinRequirements": {
+ "WipLowercaseCharacterPinRequirements": {
+ "allow": "Kisbetűk használatának engedélyezése a PIN-kódban",
+ "notAllow": "Kisbetűk használatának tiltása a PIN-kódban",
+ "requireAtLeastOne": "Legalább egy kisbetű használatának megkövetelése a PIN-kódban"
+ },
+ "WipSpecialCharacterPinRequirements": {
+ "allow": "Speciális karakterek használatának engedélyezése a PIN-kódban",
+ "notAllow": "Speciális karakterek használatának tiltása a PIN-kódban",
+ "requireAtLeastOne": "Legalább egy speciális karakter használatának megkövetelése a PIN-kódban"
+ },
+ "WipUppercaseCharacterPinRequirements": {
+ "allow": "Nagybetűk használatának engedélyezése a PIN-kódban",
+ "notAllow": "Nagybetűk használatának tiltása a PIN-kódban",
+ "requireAtLeastOne": "Legalább egy nagybetű használatának megkövetelése a PIN-kódban"
+ }
+ },
+ "OutlookAppConfigSettings": {
+ "AllowUserToChangeSetting": {
+ "title": "A felhasználó módosíthatja a beállításokat",
+ "tooltip": "Adja meg, hogy a felhasználó módosíthassa-e a beállítást."
+ },
+ "AllowWorkAccounts": {
+ "title": "Csak munkahelyi vagy iskolai fiókok engedélyezése",
+ "tooltip": " Ha engedélyezi ezt a beállítást, a felhasználók nem fognak tudni személyes e-mail- és tárfiókokat felvenni az Outlookban. Ha a felhasználó rendelkezik az Outlookban felvett személyes fiókkal, az alkalmazás a felhasználótól a személyes fiók eltávolítását fogja kérni. Ha a felhasználó nem távolítja el a személyes fiókot, akkor a munkahelyi vagy iskolai fiókot nem lehet hozzáadni."
+ },
+ "BlockExternalImages": {
+ "title": "Külső képek blokkolása",
+ "tooltip": "Ha engedélyezve van a külső lemezképek letiltása, az alkalmazás megakadályozza azoknak az interneten tárolt képeknek a letöltését, amelyek az üzenettörzsbe vannak beágyazva. Ha nincs konfigurálva a beállítás, az alkalmazásbeállítás alapértelmezett értéke a Kikapcsolva."
+ },
+ "ConfigureEmail": {
+ "title": "E-mail-fiók beállításainak konfigurálása"
+ },
+ "DefaultAppSignatureSetting": {
+ "Tooltip": {
+ "android": "Az alapértelmezett alkalmazás-aláírás azt jelzi hogy az alkalmazás „Az Android Outlook letöltése” aláírást alapértelmezett aláírásként fogja-e használni üzenetek írásakor. Ha le van tiltva a beállítás, az alkalmazás nem fogja használni az alapértelmezett aláírást, a felhasználók azonban hozzáadhatják saját aláírásukat.\r\n\r\nHa nincs konfigurálva a beállítás, az alapértelmezett alkalmazásbeállítás engedélyezve lesz.",
+ "iOS": "Az alapértelmezett alkalmazás-aláírás azt jelzi hogy az alkalmazás „Az iOS Outlook letöltése” aláírást alapértelmezett aláírásként fogja-e használni üzenetek írásakor. Ha le van tiltva a beállítás, az alkalmazás nem fogja használni az alapértelmezett aláírást, a felhasználók azonban hozzáadhatják saját aláírásukat.\r\n\r\nHa nincs konfigurálva a beállítás, az alapértelmezett alkalmazásbeállítás engedélyezve lesz."
+ },
+ "title": "Alapértelmezett alkalmazás-aláírás"
+ },
+ "OfficeFeedReplies": {
+ "title": "Felfedezési hírcsatorna",
+ "tooltip": "A felfedezési hírcsatorna elérhetővé teszi a leggyakrabban használt Office-fájlokat. Alapértelmezés szerint ez a hírcsatorna engedélyezve van, ha a Delve használata engedélyezve van a felhasználó számára. Ha a beállítás nincs konfigurálva, az alkalmazásbeállítás alapértelmezés szerint be van kapcsolva."
+ },
+ "OrganizeMailByThread": {
+ "title": "Levelezés rendezése szálak szerint",
+ "tooltip": "Az Outlook alapértelmezett viselkedése, hogy a levelezés beszélgetéseit szálak szerint csoportosított beszélgetési nézetbe rendezi. Ha ez a beállítás le van tiltva, az Outlook minden üzenetet külön jelenít meg, és nem csoportosítja őket szálak szerint."
+ },
+ "PlayMyEmails": {
+ "title": "Saját e-mailek lejátszása",
+ "tooltip": "A saját e-mailek lejátszása funkció alapértelmezés szerint nincs engedélyezve az alkalmazásban, de a Beérkezett üzenetek mappában egy transzparensen felajánlható a jogosult felhasználóknak. Ha ez a beállítás ki van kapcsolva, a funkció nem lesz felajánlva a jogosult felhasználóknak az alkalmazásban. A felhasználók dönthetnek úgy, hogy manuálisan engedélyezik a saját e-mailek lejátszását az alkalmazásból, még akkor is, ha ez a funkció ki van kapcsolva. Ha a beállítás nincs konfigurálva, az alkalmazásbeállítás alapértelmezés szerint be van kapcsolva, és a funkció fel lesz ajánlva a jogosult felhasználóknak."
+ },
+ "SuggestedReplies": {
+ "title": "Javasolt válaszok",
+ "tooltip": "Ha megnyit egy üzenetet, az Outlook válaszokat javasolhat az üzenet alatt. Ha kiválaszt egy javasolt választ, azt a küldés előtt módosíthatja."
+ },
+ "SyncCalendars": {
+ "title": "Naptárak szinkronizálása",
+ "tooltip": "Annak konfigurálása, hogy a felhasználók szinkronizálhatják-e az Outlook-naptárt a natív naptáralkalmazással és -adatbázissal."
+ },
+ "TextPredictions": {
+ "title": "Prediktív szövegbevitel",
+ "tooltip": "Az Outlook az üzenetek írása közben javasolhat szavakat és kifejezéseket. Ha az Outlook javasol valamit, pöccintéssel elfogadhatja. Ha a beállítás nincs konfigurálva, alapértelmezett esetben be van kapcsolva az alkalmazásban."
+ },
+ "ThemesEnabled": {
+ "title": "Témák engedélyezve",
+ "tooltip": "Adja meg, hogy a felhasználó használhat-e egyéni vizuális témát."
+ }
+ },
+ "AssignmentFilters": {
+ "assignmentFilterColumnHeader": "Szűrő",
+ "noFilters": "Nincs"
+ },
+ "Platform": {
+ "all": "Az összes",
+ "android": "Android-eszközadminisztrátor",
+ "androidAOSP": "Android (AOSP)",
+ "androidEnterprise": "Android Enterprise",
+ "androidForWork": "Android Enterprise",
+ "androidWorkProfile": "Android Enterprise",
+ "common": "Közös",
+ "iOS": "iOS/iPadOS",
+ "iosAndAndroidPlatformLabel": "iOS és Android",
+ "iosCommaAndroidPlatformLabel": "iOS, Android",
+ "linux": "Linux",
+ "macOS": "macOS",
+ "unknown": "Ismeretlen",
+ "unsupported": "Nem támogatott",
+ "windows": "Windows",
+ "windows10": "Windows 10 és újabb rendszerek",
+ "windows10CM": "Windows 10 és újabb (ConfigMgr)",
+ "windows10Holo": "Windows 10 Holographic",
+ "windows10Mobile": "Windows 10 Mobile",
+ "windows10Team": "Windows 10 Team",
+ "windows10X": "Windows 10X",
+ "windows8": "Windows 8.1 és újabb rendszerek",
+ "windows8And10": "Windows 8 és 10",
+ "windowsPhone": "Windows Phone 8.1",
+ "windows10AndLater": "Windows 10 és újabb rendszerek",
+ "windows10AndWindowsServer": "Windows 10, Windows 11 és Windows Server (ConfigMgr)",
+ "windows10andLaterCM": "Windows 10 és újabb (ConfigMgr)",
+ "holoLens": "HoloLens",
+ "surfaceHub2": "Surface Hub 2",
+ "surfaceHub2S": "Surface Hub 2S",
+ "windowsPC": "Windows rendszerű számítógép"
+ },
+ "AppInformationTab": {
+ "Error": {
+ "multipleChildApps": "A macOS üzletági alkalmazás csak akkor telepíthető felügyeltként, ha a feltöltött csomag egyetlen alkalmazást tartalmaz."
+ },
+ "Info": {
+ "AppStoreUrl": {
+ "android": "Adja meg az alkalmazáshoz tartozó Google Play Áruház-termékoldalra mutató hivatkozást. Például:",
+ "androidLink": "https://play.google.com/store/apps/details?id=com.microsoft.office.outlook",
+ "windows": "Adja meg az alkalmazáshoz tartozó Microsoft Store-termékoldalra mutató hivatkozást. Például:",
+ "windowsLink": "https://www.microsoft.com/en-us/p/microsoft-to-do-lists-tasks-reminders/9nblggh5r558"
+ },
+ "appPackageFile": "Az alkalmazást egy eszközön közvetlenül telepíthető formátumban tartalmazó fájl. Az érvényes csomagtípusok a következők: Android (.apk), iOS (.ipa), macOS (.pkg, .intunemac), Windows (.msi, .appx, .appxbundle, .msix és .msixbundle).",
+ "applicableDeviceType": "Válassza ki, hogy milyen eszköztípusok telepíthetik az alkalmazást.",
+ "category": "Az alkalmazás kategorizálásával megkönnyítheti a felhasználók számára a rendezést és a keresést a Céges portálon. Több kategóriát is kiválaszthat.",
+ "categoryLink": "https://docs.microsoft.com/en-us/intune/apps/apps-add#create-and-edit-categories-for-apps",
+ "description": "Segítse az eszköz felhasználóit az alkalmazás jellegének és használati lehetőségeinek megadásával. Ez a leírás a Céges portálon lesz látható.",
+ "developer": "Az alkalmazást fejlesztő cég vagy személy neve. Ez az információ a felügyeleti központba bejelentkezett felhasználók számára lesz látható.",
+ "displayVersion": "Az alkalmazás verziója. Ez az információ a Céges portálon lesz látható a felhasználók számára.",
+ "infoUrl": "Egy olyan webhelyre vagy dokumentációra mutató hivatkozást biztosíthat a felhasználóknak, amely további információt tartalmaz az alkalmazással kapcsolatban. Az információs URL-cím a Céges portálon lesz látható a felhasználók számára.",
+ "isFeatured": "A kiemelt alkalmazások feltűnő módon vannak elhelyezve a Céges portálon, hogy a felhasználók gyorsan megtalálják őket.",
+ "learnMore": "További információk",
+ "logo": "Töltse fel az alkalmazáshoz társított emblémát. Ez az embléma a Céges portálon mindenhol megjelenik az alkalmazás mellett.",
+ "macOSDmgAppPackageFile": "Az alkalmazást olyan formátumban tartalmazó fájl, amely közvetlenül telepíthető az eszközökön. Érvényes csomagtípus: .dmg.",
+ "minOperatingSystem": "Válassza ki a legkorábbi operációsrendszer-verziót, amelyre az alkalmazás telepíthető. Ha az alkalmazást egy ennél korábbi operációs rendszerrel rendelkező eszközhöz rendeli hozzá, az alkalmazás nem lesz telepítve.",
+ "name": "Adja meg az alkalmazás nevét. Ez a név jelenik meg az Intune-alkalmazások listájában és a Céges portál felhasználói számára.",
+ "notes": "Adjon hozzá további megjegyzéseket az alkalmazással kapcsolatban. A megjegyzések a felügyeleti központba bejelentkezett felhasználók számára lesznek láthatók.",
+ "owner": "A cég azon dolgozójának neve, aki a licencelést kezeli, illetve aki az alkalmazáshoz tartozó kapcsolattartó. Ez a név a felügyeleti központba bejelentkezett felhasználók számára lesz látható.",
+ "packageName": "Az alkalmazás csomagnevének megismeréséhez forduljon az eszköz gyártójához. Példa a csomagnévre: com.példa.app",
+ "privacyUrl": "Hivatkozást biztosíthat azon felhasználók számára, akik szeretnének többet megtudni az alkalmazás adatvédelmi beállításairól és feltételeiről. Az adatvédelmi URL-cím a Céges portálon lesz látható a felhasználók számára.",
+ "publisher": "Az alkalmazást terjesztő fejlesztő vagy cég neve. Ez az információ a Céges portálon lesz látható a felhasználók számára.",
+ "selectApp": "Keressen az App Store-ban olyan iOS rendszerhez készült áruházbeli alkalmazásokat, amelyeket üzembe szeretne helyezni az Intune-nal.",
+ "useManagedBrowser": "Amikor a felhasználó megnyitja a webalkalmazást, akkor az szükség esetén egy Intune által védett böngészőben, például a Microsoft Edge-ben vagy az Intune Managed Browserben nyílik meg. Ez a beállítás az iOS- és az Android-eszközökre is vonatkozik.",
+ "useManagedBrowserLink": "https://docs.microsoft.com/en-us/intune/apps/app-configuration-managed-browser",
+ "win32AppPackageFile": "Egy fájl, amely az alkalmazást olyan formátumban tartalmazza, amelyet közvetlenül telepíteni lehet az eszközökre. Az érvényes csomagtípus: .intunewin."
+ },
+ "descriptionPreview": "Előnézet",
+ "descriptionRequired": "A leírást meg kell adni.",
+ "editDescription": "Leírás szerkesztése",
+ "macOSMinOperatingSystemAdditionalInfo": "A .pkg-fájlok feltöltéséhez szükséges minimális operációs rendszer a macOS 10.14. Régebbi minimális operációs rendszer kiválasztásához töltsön fel egy .intunemac-fájlt.",
+ "name": "Alkalmazásadatok",
+ "nameForOfficeSuitApp": "Alkalmazáscsomaggal kapcsolatos információk"
+ },
+ "Tooltips": {
+ "PolicySettings": {
+ "TouchId1": {
+ "android": "Android rendszeren engedélyezheti PIN kód helyett az ujjlenyomatos azonosítás használatát. Ha a felhasználó munkahelyi fiókkal próbál meg hozzáférni az alkalmazáshoz, a rendszer ujjlenyomatot kér tőle.",
+ "iOS": "iOS vagy iPadOS rendszerű eszközökön engedélyezheti PIN-kód helyett az ujjlenyomatos azonosítás használatát. Ha a felhasználó munkahelyi fiókkal próbál meg hozzáférni az alkalmazáshoz, a rendszer PIN-kód beírása helyett ujjlenyomatot kér tőle.",
+ "mac": "Mac-eszközökön engedélyezheti PIN-kód helyett az ujjlenyomatos azonosítás használatát. Ha a felhasználó munkahelyi fiókkal próbál meg hozzáférni az alkalmazáshoz, a rendszer ujjlenyomatot kér tőle."
+ },
+ "appSharingFromLevel1": "Válassza ki az alábbi beállítások közül, hogy az alkalmazás milyen alkalmazásoktól fogadhat adatokat:",
+ "appSharingFromLevel2": "{0}: Csak más, szabályzattal felügyelt alkalmazásokból érkező adatok fogadásának engedélyezése a szervezeti dokumentumokban vagy fiókokban",
+ "appSharingFromLevel3": "{0}: Bármely alkalmazásból érkező adatok fogadásának engedélyezése szervezeti dokumentumokban vagy fiókokban",
+ "appSharingFromLevel4": "{0}: Nem engedélyezett semmilyen alkalmazásból érkező adatok fogadása sem a szervezeti dokumentumokban vagy fiókokban",
+ "appSharingFromLevel5": "{0}: Az adatátvitel engedélyezése bármely alkalmazásból és a felhasználói identitás nélküli bejövő adatok céges adatokként való kezelése.",
+ "appSharingToLevel1": "Válassza ki az alábbi beállítások közül, hogy az alkalmazás milyen alkalmazásoknak küldhessen adatokat:",
+ "appSharingToLevel2": "{0}: Szervezeti adatok küldésének engedélyezése kizárólag más, szabályzat által felügyelt alkalmazásokba",
+ "appSharingToLevel3": "{0}: Szervezeti adatok küldésének engedélyezése bármely alkalmazásba",
+ "appSharingToLevel4": "{0}: Nem engedélyezett szervezeti adatok küldése semmilyen alkalmazásba",
+ "appSharingToLevel5": "{0}: Csak a szabályzat által felügyelt egyéb alkalmazásokba történő adatátvitel és a regisztrált eszközök MDM által felügyelt egyéb alkalmazásaiba való fájlátvitel engedélyezése",
+ "appSharingToLevel6": "{0}: Csak a szabályzat által felügyelt egyéb alkalmazásokba történő adatátvitel engedélyezése és csak a szabályzat által felügyelt alkalmazások megjelenítése az operációs rendszer Megnyitás és Megosztás párbeszédpaneljeinek szűrésével",
+ "conditionalEncryption1": "A(z) {0} lehetőséget választva a belső alkalmazástár esetében letilthatja az alkalmazástitkosítást, ha a rendszer eszköztitkosítást észlel egy regisztrált eszközön.",
+ "conditionalEncryption2": "Megjegyzés: az Intune csak az Intune MDM esetében észleli az eszközregisztrációt. A külső alkalmazástár továbbra is titkosítva lesz annak érdekében, hogy a nem felügyelt alkalmazások ne férhessenek hozzá az adatokhoz.",
+ "contactSyncMac": "Ha a beállítás le van tiltva, az alkalmazások nem tudják a natív címjegyzékbe menteni a névjegyeket.",
+ "contactsSync": "Válassza a Letiltás lehetőséget annak megakadályozásához, hogy a szabályzattal felügyelt alkalmazások adatokat mentsenek az eszköz natív alkalmazásaiba (például a Névjegyek, a Naptár és a vezérlők), vagy hogy a szabályzattal felügyelt alkalmazásokon belül megakadályozza a bővítmények használatát. Ha az Engedélyezés lehetőséget választja, a szabályzattal felügyelt alkalmazás menthet adatokat a natív alkalmazásokba vagy használhat bővítményeket, ha ezek a funkciók támogatottak és engedélyezettek a szabályzattal felügyelt alkalmazáson belül.
Az alkalmazások további konfigurációs lehetőségeket biztosíthatnak az alkalmazáskonfigurációs szabályzatokkal. További információért tekintse meg az alkalmazás dokumentációját.",
+ "encryptionAndroid1": "Az Intune-alapú mobilalkalmazás-felügyeleti szabályzathoz társított alkalmazások esetén a Microsoft szolgáltatja a titkosítást. Az adatok titkosítása szinkron módon, a mobilalkalmazás-felügyeleti szabályzatban megadott beállításoknak megfelelően történik a bemeneti/kimeneti fájlműveletek során. A felügyelt Android-alkalmazások AES-128 szabványú titkosítást alkalmaznak CBC módban, a platform kriptográfiai kódtárait használva. A titkosítási módszer nem felel meg a FIPS 140-2 szabványnak. Az SHA-256 szabványú titkosítás explicit utasításként, a SigAlg paraméterrel használható, de csak a 4.2-es és újabb verziójú eszközökön működik. Az eszköz tárolóján tárolt tartalmat a rendszer mindig titkosítja.",
+ "encryptionAndroid2": "Ha az alkalmazásszabályzatban előírja a titkosítás használatát, a végfelhasználónak PIN-kódot kell beállítania és használnia az eszköze eléréséhez. Ha nincs beállítva PIN-kód az eszközhöz való hozzáféréshez, az alkalmazások nem indulnak el, a felhasználó pedig a következőhöz hasonló üzenetet fog látni: „Munkahelye PIN-kód engedélyezését írja elő az eszközön az alkalmazás eléréséhez.”",
+ "encryptionMac1": "Az Intune-alapú mobilalkalmazás-felügyeleti szabályzathoz társított alkalmazások számára a Microsoft szolgáltatja a titkosítást. Az adatok titkosítása szinkron módon, a mobilalkalmazás-felügyeleti szabályzatban megadott beállításoknak megfelelően történik a bemeneti/kimeneti fájlműveletek során. A felügyelt Mac-alkalmazások AES-128 szabványú titkosítást alkalmaznak CBC módban, a platform kriptográfiai kódtárait használva. A titkosítási módszernek nem felel meg a FIPS 140-2 szabványnak. Az SHA-256 szabványú titkosítás explicit utasításként, a SigAlg paraméterrel használható, de csak a 4.2-es és újabb verziójú eszközökön működik. Az eszköz tárterületén tárolt tartalmat a rendszer mindig titkosítja.",
+ "faceId1": "Ahol lehetséges, engedélyezheti PIN-kód helyett az arcfelismerés használatát. A rendszer kéri a felhasználókat, hogy biztosítsák az arcfelismerést, amikor a munkahelyi fiókjukkal férnek hozzá ehhez az alkalmazáshoz.",
+ "faceId2": "Válassza az Igen lehetőséget PIN-kód helyett az arcfelismerés használatának engedélyezéséhez az alkalmazás-hozzáféréshez.",
+ "managementLevelsAndroid1": "Ezzel a beállítással megadhatja, hogy a szabályzat androidos eszközfelügyelet által felügyelt eszközökre, Android Enterprise-eszközökre vagy nem felügyelt eszközökre vonatkozik.",
+ "managementLevelsAndroid2": "{0}: A nem felügyelt eszközök azok az eszközök, melyek esetében a rendszer nem észlelte az Intune MDM általi felügyeletet. Ide tartoznak a külső MDM-szállítók is.",
+ "managementLevelsAndroid3": "{0}: Intune által felügyelt eszközök, amelyek az Android Device Administration API-t használják.",
+ "managementLevelsAndroid4": "{0}: Intune által felügyelt eszközök, amelyek az Android Enterprise munkahelyi profilokat vagy az Android Enterprise teljes körű eszközfelügyeletet használják.",
+ "managementLevelsIos1": "Ezzel a beállítással adható meg, hogy a szabályzat az MDM által felügyelt vagy a nem felügyelt eszközökre érvényes.",
+ "managementLevelsIos2": "{0}: A nem felügyelt eszközök azok az eszközök, melyek esetében a rendszer nem észlelte az Intune MDM általi felügyeletet. Ide tartoznak a külső MDM-szállítók is.",
+ "managementLevelsIos3": "{0}: A felügyelt eszközöket az Intune MDM felügyeli.",
+ "minAppVersion": "Az alkalmazás azon szükséges minimális verziószámának megadása, mellyel a felhasználóknak rendelkezniük kell ahhoz, hogy biztonságos hozzáférést kapjanak az alkalmazáshoz.",
+ "minAppVersionWarning": "Az alkalmazás azon ajánlott minimális verziószámának megadása, mellyel a felhasználóknak rendelkezniük kell az alkalmazás biztonságos eléréséhez.",
+ "minOsVersion": "Az operációs rendszer azon szükséges minimális verziószámának megadása, mellyel a felhasználóknak rendelkezniük kell ahhoz, hogy biztonságos hozzáférést kapjanak az alkalmazáshoz.",
+ "minOsVersionWarning": "Az operációs rendszer azon ajánlott minimális verziószámának megadása, mellyel a felhasználóknak rendelkezniük kell ahhoz, hogy biztonságos hozzáférést kapjanak az alkalmazáshoz.",
+ "minPatchVersion": "Az androidos biztonsági javítás azon legrégebbi verziójának megadása, amellyel a felhasználók még biztonságosan elérhetik az alkalmazást.",
+ "minPatchVersionWarning": "Az androidos biztonsági javítás azon javasolt legrégebbi verziójának megadása, amellyel a felhasználók még biztonságosan elérhetik az alkalmazást.",
+ "minSdkVersion": "Az Intune alkalmazásvédelmi szabályzatai azon szükséges minimális SDK-verziójának megadása, mellyel a felhasználóknak rendelkezniük kell ahhoz, hogy biztonságos hozzáférést kapjanak az alkalmazáshoz.",
+ "requireAppPinDefault": "Az Igen lehetőség kiválasztásával letilthatja az alkalmazás PIN-kódját eszközzárolás egy regisztrált eszközön való észlelésekor.
",
+ "targetAllApps1": "Ezzel a beállítással célozhatók meg tetszőleges felügyeleti állapotú eszközökön található alkalmazások a szabályzattal.",
+ "targetAllApps2": "A rendszer felülírja ezt a beállítást a szabályzatütközések feloldása során, ha egy felhasználó egy adott felügyeleti állapotot célzó szabályzattal rendelkezik.",
+ "touchId2": "A(z) {0} beállítással PIN-kód helyett ujjlenyomatos azonosítást írhat elő az alkalmazás eléréséhez."
+ },
+ "Tap": {
+ "pinResetAfterNumberOfDays": "Adja meg, hogy hány nap elteltével kell a felhasználónak új PIN-kódot beállítania.",
+ "previousPinBlockCount": "Ezzel a beállítással adható meg az Intune által megőrzött korábbi PIN-kódok száma. Minden új PIN-nek az Intune által megőrzöttektől különbözőnek kell lennie."
+ },
+ "WipPolicySettings": {
+ "25": "",
+ "allowWindowsSearch": "Ezzel a beállítással engedélyezhető, hogy a Windows Search továbbra is kereshessen a titkosított adatok között.",
+ "authoritativeIpRanges": "Ennek a beállításnak az engedélyezésével felülbírálhatja az IP-címtartományok automatikus észlelését a Windowsban.",
+ "authoritativeProxyServers": "Ennek a beállításnak az engedélyezésével felülbírálhatja a proxykiszolgálók automatikus észlelését a Windowsban.",
+ "checkInput": "Ellenőrizze a bemenetek érvényességét",
+ "dataRecoveryCert": "A helyreállítási tanúsítvány egy speciális titkosított fájlrendszer (EFS), amellyel helyreállíthatók a titkosított fájlok, ha a titkosítási kulcs elveszne vagy megsérülne. Hozzon létre egy helyreállítási tanúsítványt, és adja meg itt. További információt itt talál.",
+ "enterpriseCloudResources": "Adja meg azokat a felhőerőforrásokat, amelyeket cégesként szeretne kezelni és Windows Information Protection-szabályzattal szeretne védeni. Több erőforrás is megadható, ha elválasztja az egyes bejegyzéseket a | karakterrel.
Ha a cég rendelkezik proxykonfigurációval, akkor megadhatja azt a proxyt, amelyen keresztül a forgalom a megadott felhőerőforrásokba lesz továbbítva.
URL[,Proxy]|URL[,Proxy]
Proxy nélkül: contoso.sharepoint.com|contoso.visualstudio.com
Proxyval: contoso.sharepoint.com,proxy.contoso.com|contoso.visualstudio.com,proxy.contoso.com
",
+ "enterpriseIPv4Ranges": "Adja meg a céges hálózatot kialakító IPv4-tartományokat. Ezeket a rendszer a céges hálózati határok meghatározásához megadott céges hálózati tartománynevekkel összefüggésben használja.
Ennek a beállításnak a megadása kötelező a Windows Information Protection engedélyezéséhez.
Az egyes bejegyzéseket vesszővel elválasztva több tartományt is megadhat.
Például: 3.4.0.1-3.4.255.255,192.168.1.1-192.168.255.255
",
+ "enterpriseIPv6Ranges": "Adja meg a céges hálózatot kialakító IPv6-tartományokat. Ezeket a rendszer a céges hálózati határok meghatározásához megadott céges hálózati tartománynevekkel összefüggésben használja.
Az egyes bejegyzéseket vesszővel elválasztva több tartományt is megadhat.
Például: 2001:4898:dc05::-2001:4898:dc05:ffff:ffff:ffff:ffff:ffff,2a01:110::-2a01:110:7fff:ffff:ffff:ffff:ffff:ffff
",
+ "enterpriseInternalProxyServers": "Ha a cégnél proxy van konfigurálva, megadhatja azt a proxyt, amelyen keresztül a Vállalati felhőalapú erőforrások menü beállításaiban megadott felhőbeli erőforrások felé irányuló forgalmat át szeretné irányítani.
Több érték megadásához pontosvesszővel válassza el az egyes bejegyzéseket.
Példa: contoso.belsoproxy1.com; contoso.belsoproxy2.com
",
+ "enterpriseNetworkDomainNames": "Adja meg a céges hálózatot kialakító DNS-neveket. Ezeket a rendszer a céges hálózati határok meghatározásához megadott IP-tartományokkal összefüggésben használja. Az egyes bejegyzéseket vesszővel elválasztva több értéket is megadhat.
Ennek a beállításnak a megadása kötelező a Windows Information Protection engedélyezéséhez.
Például: corp.contoso.com,region.contoso.com
",
+ "enterpriseProtectedDomainNames": "Itt adhatja meg a vállalati hálózatot alkotó DNS-neveket. Ezek a vállalati hálózathatárt definiáló IP-címtartományokkal együtt használatosak. Több értéket is megadhat a függőleges vonal (|) karakterrel elválasztva.
Ez a beállítás szükséges a Windows Information Protection engedélyezéséhez.
Példa: corp.contoso.com|region.contoso.com
",
+ "enterpriseProxyServers": "Ha a hálózat kifelé irányuló proxykat tartalmaz, itt adhatja meg őket. A proxykiszolgáló címének megadásakor adja meg azt a portot is, amelyen keresztül a Windows Information Protection engedélyezni és védeni fogja a forgalmat.
Megjegyzés: a lista nem tartalmazhat a vállalati belső proxykiszolgálók listáján szereplő kiszolgálókat. Több érték megadásához pontosvesszővel válassza el az egyes bejegyzéseket.
Példa: proxy.contoso.com:80; proxy2.contoso.com:80
",
+ "maxInactivityTime1": "Ez a beállítás azt határozza meg, hogy az eszközön legfeljebb hány percnyi inaktivitás után lépjen működésbe a PIN-kóddal vagy jelszóval feloldható zárolás. A felhasználók a Beállítások alkalmazásban bármilyen létező, a beállított maximális értéknél rövidebb időkorlátot megadhatnak. Megjegyzés: A Lumia 950 és 950XL készülékeken a maximális időkorlát az ebben a szabályzatban meghatározott értéktől függetlenül 5 perc.",
+ "maxInactivityTime2": "0 (alapértelmezett) – Nincs időkorlát. Az alapértelmezett 0 érték azt jelenti, hogy nincs beállítva időkorlát.",
+ "maxPasswordAttempts1": "A szabályzat másként működik mobileszközökön és asztali számítógépeken.",
+ "maxPasswordAttempts2": "Mobileszközön a szabályzatban meghatározott érték elérésekor a felhasználó eszközéről törlődnek az adatok.",
+ "maxPasswordAttempts3": "Asztali számítógépen a szabályzatban meghatározott érték elérésekor nem törlődnek az adatok, hanem a számítógép BitLocker-alapú helyreállítási módra vált, amelyben az adatok nem érhetők el, de helyreállíthatók. A szabályzat nem hajtható végre, ha nincs engedélyezve a BitLocker.",
+ "maxPasswordAttempts4": "A sikertelen próbálkozások korlátjának elérése előtt a felhasználó a zárolási képernyőre kerül vissza, és a rendszer figyelmezteti, hogy további sikertelen próbálkozások esetén zárolva lesz a számítógép. Ha a felhasználó eléri a korlátot, az eszköz automatikusan újraindul, és a BitLocker-helyreállítás lapja jelenik meg rajta. A lapon a felhasználó megadhatja a BitLocker helyreállítási kulcsát.",
+ "maxPasswordAttempts5": "0 (alapértelmezett) – Az eszközről soha nem törlődnek az adatok helytelen PIN-kód vagy jelszó megadása esetén.",
+ "maxPasswordAttempts6": "Ha a szabályzat minden beállításának értéke 0, a 0 a legbiztonságosabb érték. Minden más esetben a szabályzat szerinti minimális érték a legbiztonságosabb.",
+ "mdmDiscoveryUrl": "Adja meg annak az MDM-es regisztrációs végpontnak az URL-címét, amelyet az MDM-ben regisztráló felhasználók használni fognak. Az Intune-ban ez a beállítás alapértelmezés szerint meg van adva.",
+ "minimumPinLength1": "Az itt megadott egész szám határozza meg, hogy legalább hány karakterből kell állnia a PIN-kódnak. Az alapértelmezett érték a 4. A szabályzatbeállításhoz megadható minimális érték a 4. A legnagyobb megadható érték kisebb, mint a PIN-kód maximális hossza beállításnál megadott szám, vagy mint 127 (amelyik a kettő közül kisebb).",
+ "minimumPinLength2": "Ha konfigurálja ezt a szabályzatbeállítást, a PIN-kód hosszának legalább az itt megadott számot kell elérnie. Ha letiltja vagy nem konfigurálja a szabályzatbeállítást, a PIN-kódnak legalább 4 karakter hosszúnak kell lennie.",
+ "name": "Ennek a hálózathatárnak a neve",
+ "neutralResources": "Ha a cégnél hitelesítés-átirányítási végpontokat használnak, itt adhatja meg őket. Az itt megadott helyeket a rendszer vagy személyes, vagy céges helyként kezeli a kapcsolat átirányítás előtti környezetétől függően.
Több érték megadásához vesszővel válassza el az egyes bejegyzéseket.
Példa: sts.contoso.com,sts.contoso2.com
",
+ "passportForWork1": "Az itt megadott érték határozza meg, hogy használható-e a Vállalati Windows Hello a Windowsba való bejelentkezéshez.",
+ "passportForWork2": "Alapértelmezés szerint a beállítás értéke igaz. Ha a szabályzatbeállítást hamis értékűre állítja, a felhasználó nem építheti ki a Vállalati Windows Hello szolgáltatást, kivéve az olyan, Azure Active Directoryhoz csatlakoztatott mobiltelefonokon, amelyeken ez kötelező.",
+ "pinExpiration": "A szabályzatbeállítás maximális megadható értéke 730, minimális értéke pedig 0. Ha a szabályzatbeállítás értéke 0, a felhasználó PIN-kódja soha nem fog lejárni.",
+ "pinHistory1": "A szabályzatbeállítás maximális megadható értéke 50, minimális értéke pedig 0. Ha a szabályzatbeállítás értéke 0, nem szükséges tárolni a korábbi PIN-kódokat.",
+ "pinHistory2": "A felhasználó aktuális PIN-kódja bekerül a felhasználói fiókhoz társított PIN-kódok közé. A PIN-kódok előzményei a PIN-kód átállításakor elvesznek.",
+ "protectUnderLock": "Alkalmazások tartalmának védelme, amikor az eszköz zárolt állapotban van.",
+ "protectionModeBlock": "Letiltás: Annak megakadályozása, hogy a céges adatok kikerüljenek a védett alkalmazásokból.
",
+ "protectionModeOff": "Ki: A felhasználó szabadon áthelyezheti az adatokat a védett alkalmazásokból. Nincs műveletnaplózás.
",
+ "protectionModeOverride": "Felülbírálások engedélyezése: A rendszer üzenetet jelenít meg a felhasználónak, ha védett alkalmazásból próbál adatokat áthelyezni egy nem védett alkalmazásba. Ha a felhasználó felülbírálja az üzenetet, a műveletet a rendszer naplózza.
",
+ "protectionModeSilent": "Néma: A felhasználó szabadon áthelyezheti az adatokat a védett alkalmazásokból. Ezeket a műveleteket a rendszer naplózza.
",
+ "required": "Szükséges",
+ "revokeOnMdmHandoff": "Hozzáadva a Windows 10 1703-as verziójában. Ezzel a szabályzattal megadhatja, hogy vissza kell-e vonni a WIP-kulcsokat, ha az eszközt a MAM-ról az MDM-re frissíti. Ha a „Kikapcsolva” értéket állítja be, a kulcsok nem lesznek visszavonva, és a felhasználó a frissítés után továbbra is hozzáfér a védett fájlokhoz. Ezt az értéket javasoljuk megadni, ha az MDM szolgáltatásban a WIP EnterpriseID a MAM szolgáltatással azonos értékre van beállítva.",
+ "revokeOnUnenroll": "Ha a beállítás be van kapcsolva, a titkosítási kulcsok vissza lesznek vonva, ha az eszközt kiveszik a szabályzat hatóköréből.",
+ "rmsTemplateForEdp": "Az RMS-titkosításhoz használandó sablon GUID-ja. Az Azure RMS-sablonnal a rendszergazda részletesen konfigurálhatja, hogy ki és meddig férhet hozzá az RMS-sel védett fájlokhoz.",
+ "showWipIcon": "Ha ez a beállítás be van kapcsolva, a felhasználót egy átfedő ikon értesíti, ha céges környezetben dolgozik.",
+ "useRmsForWip": "Ez a beállítás azt határozza meg, hogy a Windows Információvédelemben engedélyezett-e az Azure RMS-alapú titkosítás használata."
+ },
+ "requireAppPin": "Az Igen lehetőség kiválasztásával letilthatja az alkalmazás PIN-kódját eszközzárolás egy regisztrált eszközön való észlelésekor.
Megjegyzés: Az Intune iOS vagy iPadOS rendszeren külső EMM-megoldással nem tudja észlelni az eszközregisztrációt.
"
+ },
+ "Autopilot": {
+ "AssignResourceAccount": {
+ "createNewCommandMenu": "Új",
+ "createNewResourceAccountInfo": "\r\nÚj erőforrásfiók létrehozása a regisztráció során. Az erőforrásfiók azonnal bekerül az Erőforrásfiók táblába, de csak az eszköz regisztrálása és a Surface Hub-előfizetés ellenőrzése után lesz aktív. További információ az erőforrás-fiókokról
\r\n ",
+ "createNewResourceTitle": "Új erőforrásfiók létrehozása",
+ "deviceNameInvalid": "Az eszköznév formátuma érvénytelen",
+ "deviceNameRequired": "Az eszköz nevét kötelező megadni",
+ "editResourceAccountLabel": "Szerkesztés",
+ "selectExistingCommandMenu": "Meglévő kiválasztása"
+ },
+ "Device": {
+ "ComputerName": {
+ "validFormat": "A nevek legfeljebb 15 karakterből állhatnak, és tartalmazhatnak betűket (a–z, A–Z), számokat (0–9) és kötőjelet. Nem állhatnak csak számokból, és nem tartalmazhatnak szóközt."
+ },
+ "Header": {
+ "addressableUserName": "Felhasználóbarát név",
+ "azureADDevice": "Társított Azure AD-eszköz",
+ "batch": "Csoportcímke",
+ "dateAssigned": "Hozzárendelés dátuma",
+ "deviceAccountFriendlyName": "Eszközfiók rövid neve",
+ "deviceAccountPwd": "Szolgáltatásfiók-jelszó",
+ "deviceAccountUpn": "Device account",
+ "deviceDisplayName": "Eszköznév",
+ "deviceName": "Eszköznév",
+ "deviceUseType": "Eszközhasználat típusa",
+ "enrollmentState": "Regisztráció állapota",
+ "intuneDevice": "Társított Intune-eszköz",
+ "lastContacted": "Utolsó kapcsolatlétesítés",
+ "make": "Gyártó:",
+ "model": "Modell",
+ "profile": "Hozzárendelt profil",
+ "profileStatus": "Profil állapota",
+ "purchaseOrderId": "Megrendelőlap",
+ "resourceAccount": "Erőforrásfiók",
+ "serialNumber": "Sorozatszám",
+ "userPrincipalName": "Felhasználó"
+ },
+ "SurfaceHub": {
+ "friendlyNameRequired": "Felhasználóbarát név megadása kötelező!",
+ "pwdRequired": "Kötelező megadni a jelszót.",
+ "upnRequired": "Az eszközfiók megadása kötelező",
+ "upnValidFormat": "Az értékek betűket (a-z, A-Z), számokat (0-9) és kötőjeleket tartalmazhatnak. Az értékek nem tartalmazhatnak üres szóközt."
+ }
+ },
+ "DeviceUseType": {
+ "meetingAndPresentation": "Értekezlet és bemutató",
+ "teamCollaboration": "Csoportalapú együttműködés"
+ },
+ "Devices": {
+ "featureDescription": "A Windows AutoPilot lehetővé teszi a felhasználók kezdőélményének testreszabását.",
+ "importErrorStatus": "Egyes eszközök nem lettek importálva. További információért kattintson ide.",
+ "importPendingStatus": "Az importálás folyamatban van. Eltelt idő: {0} perc. A folyamat akár {1} percig is eltarthat."
+ },
+ "DirectoryService": {
+ "activeDirectoryAD": "Hibrid Azure Active Directoryhoz csatlakozó",
+ "activeDirectoryADLabel": "Hibrid Azure AD Autopilottal",
+ "azureAD": "Azure AD-hez csatlakoztatott",
+ "unknownType": "Ismeretlen típus"
+ },
+ "Filter": {
+ "enrollmentState": "Állam",
+ "profile": "Profil állapota"
+ },
+ "OOBE": {
+ "AddressableUserName": {
+ "validateEmpty": "A felhasználó felhasználóbarát nevét meg kell adni."
+ },
+ "ApplyComputerNameTemplate": {
+ "infoBalloon": "Elnevezési sablon létrehozása, amellyel neveket adhat hozzá az eszközökhöz a regisztráció során.",
+ "label": "Eszköznévsablon alkalmazása"
+ },
+ "ApplyComputerNameTemplateDisabled": {
+ "label": "A hibrid Azure Active Directoryhoz csatlakozó számítógépek Autopilot üzembehelyezési profiljai esetén az eszközök elnevezése a tartományhoz való csatlakozás konfigurációjában megadott beállítások használatával történik."
+ },
+ "ComputerNameTemplate": {
+ "emptyValue": "SajátCég – %RAND:4%",
+ "label": "Név megadása",
+ "noDisallowedChars": "A név csak számokból, betűkből és kötőjelekből állhat, illetve a %SERIAL% vagy a %RAND:x% makrót tartalmazhatja",
+ "serialLength": "A %SERIAL% makróval nem lehet 7-nél több karaktert használni",
+ "validateLessThan15Chars": "A név nem lehet hosszabb 15 karakternél",
+ "validateNoSpaces": "A számítógépnevek nem tartalmazhatnak szóközt.",
+ "validateNotAllNumbers": "A névnek betűt és/vagy kötőjelet is kell tartalmaznia",
+ "validateNotEmpty": "A név nem lehet üres",
+ "validateOnlyOneMacro": "A név csak az egyiket tartalmazhatja a %SERIAL% és a %RAND:x% makró közül"
+ },
+ "ConfigureComputerNameTemplate": {
+ "description": "Egyedi név létrehozása az eszközök számára. A név legfeljebb 15 karakterből állhat, valamint betűt (a-z, A-Z), számot (0-9) és kötőjelet tartalmazhat. A név nem állhat csak számokból, és nem tartalmazhat szóközt. A %SERIAL% makró használatával egy hardverspecifikus sorozatszámot, a %RAND:x% makróval pedig egy véletlenszerű számokból álló sztringet adhat hozzá a névhez (az x helyére a hozzáadandó számjegyek számát kell írni)."
+ },
+ "EnableWhiteGlove": {
+ "infoBalloon": "A kezdőélmény a Windows billentyű 5-szöri megnyomásával, a felhasználó hitelesítése nélküli futtatásának engedélyezése az eszköz regisztrálásához és a rendszerkörnyezet alkalmazásainak és beállításainak kiépítéséhez. A felhasználói környezet alkalmazásait és beállításait akkor küldi el a rendszer, amikor a felhasználó bejelentkezik.",
+ "label": "Előre kiépített üzembe helyezés engedélyezése"
+ },
+ "HybridAzureADSkipConnectivityCheck": {
+ "infoBalloon": "Az Autopilot hibrid Azure AD összekapcsolási folyamat akkor is folytatódik, ha a kezdőélmény során nem jön létre tartományvezérlői kapcsolat.",
+ "label": "AD-kapcsolatok ellenőrzésének kihagyása (előzetes verzió)"
+ },
+ "accountType": "Felhasználói fiók típusa",
+ "accountTypeInfo": "Adja meg, hogy a felhasználók rendszergazdák vagy általános jogú felhasználók legyenek-e az eszközön. Megjegyzés: ez a beállítás nincs hatással a globális és a céges rendszergazdai fiókokra. E fiókok nem lehetnek általános jogú felhasználók, mert az Azure AD összes felügyeleti funkciójához hozzáférnek.",
+ "configOOBEInfo": "\r\nAz Autopilot-eszközök kezdőélményének konfigurálása\r\n
",
+ "configureDevice": "Telepítési üzemmód",
+ "configureDeviceHintForSurfaceHub2": "Az Autopilot csak Surface Hub 2 esetén támogatja az öntelepítési módot. Ez a mód nem társítja a felhasználót a regisztrált eszközhöz, ezért nem igényel felhasználói hitelesítő adatokat.",
+ "configureDeviceHintForWindowsPC": "\r\n A felhasználói affinitás azt szabályozza, hogy az eszközök a felhasználókhoz legyenek-e rendelve, és azt adja meg, hogy meg kell-e adni a felhasználói hitelesítő adatokat az eszköz üzembe helyezéséhez.\r\n
\r\n \r\n - \r\n Regisztráció felhasználói affinitással: A rendszer az adott eszközt regisztráló felhasználóhoz rendeli hozzá az eszközöket, és felhasználói hitelesítő adatok szükségesek az eszköz üzembe helyezéséhez.\r\n
\r\n - \r\n Regisztráció felhasználói affinitás nélkül (előzetes verzió): Az eszközök nincsenek az adott eszközt regisztráló felhasználókhoz rendelve, és nem szükségesek felhasználói hitelesítő adatok az eszköz üzembe helyezéséhez\r\n
\r\n
",
+ "createSurfaceHub2Info": "A Surface Hub 2 eszközök Autopilot-regisztrációs beállításainak konfigurálása. Alapértelmezés szerint az Autopilot lehetővé teszi a felhasználói hitelesítés kihagyását a kezdőélmény (OOBE) során. További információ a Surface Hub 2-höz készül Windows Autopilotról.",
+ "createWindowsPCInfo": "\r\n\r\nAz AutoPilot-eszközök alábbi beállításai automatikusan engedélyezve vannak az öntelepítési módban:\r\n
\r\n\r\n - \r\n Munkahelyi vagy Otthoni használat kiválasztásának kihagyása\r\n
\r\n - \r\n OEM-regisztráció és OneDrive-konfiguráció kihagyása\r\n
\r\n - \r\n A felhasználó kezdőélményben történő hitelesítésének kihagyása\r\n
\r\n
",
+ "endUserDevice": "Felhasználó által vezérelt",
+ "hideEscapeLink": "Fiókváltási lehetőségek elrejtése",
+ "hideEscapeLinkInfo": "A fiókváltás és a másik fiókkal való újrakezdés lehetőségei a céges bejelentkezési lapon, illetve a tartományhibalapon jelennek meg a kezdeti eszközbeállítás során. A beállítások elrejtéséhez be kell állítania a céges védjegyezést az Azure Active Directory-ban (a Windows 10 1809-es vagy újabb verziója, vagy Windows 11 szükséges).",
+ "info": "Az AutoPilot-profil beállításai határozzák meg a felhasználói kezdőélményt a Windows első indításakor. ",
+ "language": "Nyelv (régió)",
+ "languageInfo": "Adja meg a használandó nyelvet és régiót.",
+ "licenseAgreement": "Microsoft szoftverlicenc-szerződés",
+ "licenseAgreementInfo": "Adja meg, hogy a végfelhasználói licencszerződés megjelenjen-e a felhasználóknak.",
+ "plugAndForgetDevice": "Regisztráció felhasználói affinitás nélkül (előzetes verzió)",
+ "plugAndForgetGA": "Önálló központi telepítés",
+ "privacySettingWarning": "Megváltozott a diagnosztikai adatgyűjtés alapértelmezett értéke a Windows 10 1903-as és újabb, vagy Windows 11 verziókat futtató eszközökön. ",
+ "privacySettings": "Adatvédelmi beállítások",
+ "privacySettingsInfo": "Adja meg, hogy az adatvédelmi beállítások megjelenjenek-e a felhasználóknak.",
+ "showCortanaConfigurationPage": "Cortana-konfiguráció",
+ "showCortanaConfigurationPageInfo": "A megjelenítés lehetővé teszi a Cortana-konfiguráció bevezetését a beállítás során.",
+ "skipEULAWarning": "Fontos információ a licencfeltételek elrejtéséről",
+ "skipKeyboardSelection": "Billentyűzet automatikus konfigurálása",
+ "skipKeyboardSelectionInfo": "Ha az értéke igaz, a rendszer kihagyja a billentyűzet-kiválasztási lapot, amennyiben a nyelv be van beállítva.",
+ "subtitle": "AutoPilot-profilok",
+ "title": "Kezdőélmény (OOBE)",
+ "useOSDefaultLanguage": "Operációs rendszer alapértelmezése",
+ "userSelect": "Felhasználó kiválasztása"
+ },
+ "Sync": {
+ "lastRequestedLabel": "Legutóbbi szinkronizálási kérelem",
+ "lastSuccessfulLabel": "Utolsó sikeres szinkronizálás",
+ "syncInProgress": "A szinkronizálás folyamatban van. Kis idő múlva térjen vissza.",
+ "syncInitiated": "Megkezdődött az AutoPilot-beállítások szinkronizálása.",
+ "syncSettingsTitle": "AutoPilot-beállítások szinkronizálása"
+ },
+ "Title": {
+ "devices": "Windows AutoPilot-eszközök"
+ },
+ "Tooltips": {
+ "addressableUserName": "Az eszköz beállítása során megjelenített üdvözlési név.",
+ "azureADDevice": "Tekintse meg a hozzárendelt eszköz adatait. Az N/A azt jelzi, hogy nincs hozzárendelt eszköz.",
+ "batch": "Eszközök egy csoportjának azonosítására használható sztringattribútum. Az Intune Csoportcímke mezője az Azure AD-eszközök OrderID attribútumára van leképezve.",
+ "dateAssigned": "A profil az eszközhöz való hozzárendelésének időbélyege.",
+ "deviceAccountFriendlyName": "Eszközfiók rövid neve Surface Hub eszközökhöz",
+ "deviceAccountPwd": "Eszközfiók-jelszó Surface Hub-eszközökhöz",
+ "deviceAccountUpn": "Eszközfiók e-mail-címe Surface Hub-eszközökhöz",
+ "deviceDisplayName": "Adjon egyedi nevet az eszköznek. A rendszer figyelmen kívül hagyja ezt a nevet a hibrid Azure Active Directoryhoz csatlakozó üzemelő példányoknál. Az eszköz neve továbbra is a hibrid Azure AD-eszközök tartományhoz való csatlakoztatási profiljából származik.",
+ "deviceName": "A rendszer ezt a nevet jeleníti meg, amikor valaki megpróbálja felderíteni és csatlakoztatni az eszközt.",
+ "deviceUseType": " Az eszköz beállítása az Ön a választásain alapul. Később bármikor módosíthatja a beállításokat.\r\n \r\n - Értekezletek és bemutatók alkalmával a Windows Hello nincs bekapcsolva, és az adatok minden munkamenet után törlődnek.\r\n
\r\n - Csoportalapú együttműködés esetén a Windows Hello be van kapcsolva, és a profilokat menti a rendszer, hogy felgyorsítsa a bejelentkezést
\r\n
",
+ "enrollmentState": "Azt adja meg, hogy az eszköz regisztrálva van-e.",
+ "intuneDevice": "Tekintse meg a hozzárendelt eszköz adatait. Az N/A azt jelzi, hogy nincs hozzárendelt eszköz.",
+ "lastContacted": "Az eszközzel való legutóbbi kapcsolatfelvétel időbélyege.",
+ "make": "A kiválasztott eszköz gyártója.",
+ "model": "A kiválasztott eszköz modellje",
+ "profile": "Az eszközhöz rendelt profil neve.",
+ "profileStatus": "Azt adja meg, hogy van-e hozzárendelve profil az eszközhöz.",
+ "purchaseOrderId": "Beszerzési rendelés azonosítója",
+ "resourceAccount": "Az eszköz identitása vagy egyszerű felhasználóneve (UPN).",
+ "serialNumber": "A kiválasztott eszköz sorszáma.",
+ "userPrincipalName": "Az eszköz beállítása során a hitelesítés előzetes kitöltéséhez használt felhasználó."
+ },
+ "allDevices": "Minden eszköz",
+ "allDevicesAlreadyAssignedError": "Egy Autopilot-profil már hozzá van rendelve az összes eszközhöz.",
+ "assignFailedDescription": "Nem sikerült frissíteni a(z) {0} hozzárendeléseit.",
+ "assignFailedTitle": "Nem sikerült frissíteni az AutoPilot-profil hozzárendeléseit.",
+ "assignSuccessDescription": "A(z) {0} hozzárendeléseinek frissítése sikerült.",
+ "assignSuccessTitle": "Az AutoPilot-profil hozzárendeléseinek frissítése sikerült.",
+ "assignSufaceHub2ProfileNextStep": "Az üzembe helyezés következő lépései",
+ "assignSurfaceHub2ProfileToDeviceGroup": "1. Rendelje hozzá ezt a profilt legalább egy eszközcsoporthoz",
+ "assignSurfaceHub2ProfileToResourceAccount": "2. Rendeljen hozzá egy erőforrásfiókot minden olyan Surface Hub-eszközhöz, amelyhez telepíti ezt a profilt",
+ "assignedDevicesCount": "Hozzárendelt készülékek",
+ "assignedDevicesResourceAccountDescription": "A profilnak egy eszközre való telepítéséhez hozzá kell rendelnie az eszközt egy erőforrás-fiókhoz. Jelöljön ki egyszerre egy eszközt egy meglévő erőforrásfiók hozzárendeléséhez vagy egy új létrehozásához. További információ az erőforrás-fiókokról
",
+ "assignedDevicesResourceAccountStatusBarMessage": "Ez a tábla csak a profilhoz hozzárendelt Surface Hub 2 eszközöket sorolja fel.",
+ "assigningDescription": "A(z) {0} hozzárendeléseinek frissítése folyamatban van.",
+ "assigningTitle": "Az AutoPilot-profil hozzárendeléseinek frissítése folyamatban van.",
+ "autoremediationContext": "We've detected a hardware change on this device. We're trying to automatically register the new hardware. You don't need to do anything now; the status will be updated at the next check in with the result. Learn more about resetting the profile.",
+ "autoremediationTitle": "Device {0} has a fix pending",
+ "cannotDeleteMessage": "A profil csoportokhoz van hozzárendelve. Minden csoport a profilhoz való hozzárendelését meg kell szüntetni ahhoz, hogy azt törölni lehessen.",
+ "cannotDeleteTitle": "Nem törölhető: {0}",
+ "createdDateTime": "Létrehozva",
+ "deleteMessage": "Ha törli ezt az AutoPilot-profilt, a profilhoz hozzárendelt összes eszköz „Nincs hozzárendelve” állapotú lesz.",
+ "deleteMessageWithPolicySet": "A(z) {0} egy vagy több szabályzatkészletben szerepel. A(z) {0} törlése után a továbbiakban nem tudja hozzárendelni a szabályzatkészleteken keresztül.",
+ "deleteTitle": "Biztosan törli ezt a profilt?",
+ "description": "Leírás",
+ "deviceType": "Eszköztípus",
+ "deviceUse": "Eszköz használata",
+ "directoryServiceHintForSurfaceHub2": " \r\n Az Autopilot csak a Surface Hub 2 eszközöknél támogatja az Azure AD-hez csatlakoztatott beállítást. Adja meg, hogyan csatlakoznak az eszközök az Active Directoryhoz (AD) a cégénél.\r\n
\r\n \r\n - \r\n Azure AD-hez csatlakozott: Csak felhőalapú, nincs helyszíni Windows Server Active Directory.\r\n
\r\n
\r\n ",
+ "directoryServiceHintForWindowsPC": "\r\n \r\n Adja meg, hogyan csatlakozhatnak az eszközök az Active Directoryhoz (AD) a munkahelyen:\r\n
\r\n \r\n - \r\n Azure AD-hez csatlakoztatott: Csak felhőalapú megoldás helyszíni Windows Server Active Directory nélkül\r\n
\r\n
\r\n ",
+ "getAssignedDevicesCountError": "Hiba történt a hozzárendelt eszközök számának beolvasása során.",
+ "getAssignmentsError": "Hiba történt az AutoPilot-profilok hozzárendeléseinek beolvasása során.",
+ "harvestDeviceId": "Minden megcélzott eszköz AutoPilot-eszközzé alakítása",
+ "harvestDeviceIdDescription": "Ez a profil alapértelmezés szerint csak az AutoPilot szolgáltatásból szinkronizált AutoPilot-eszközökre alkalmazható.",
+ "harvestDeviceIdInfo": "\r\n Válassza az Igen lehetőséget az összes céleszköz regisztrálásához az Autopilotban, ha még nincsenek regisztrálva. A regisztrált eszközökön a Windows kezdőélmény (OOBE) legközelebbi futtatásakor a rendszer a hozzárendelt Autopilot-forgatókönyvet fogja megvalósítani.\r\n
\r\n Vegye figyelembe, hogy egyes Autopilot-forgatókönyvekhez meghatározott minimális Windows-buildek szükségesek. Győződjön meg arról, hogy az eszköze rendelkezik a forgatókönyv megvalósításához szükséges minimális builddel.\r\n
\r\n A profil eltávolítása az érintett eszközöket nem távolítja el az Autopilotból. Ha el szeretne távolítani egy eszközt az Autopilotból, használja a Windows Autopilot-eszközök nézetet.\r\n ",
+ "harvestDeviceIdWarning": "Átalakítás után az Autopilot-eszközök csak akkor állíthatók vissza, ha törli őket az Autopilot-eszközök listájából.",
+ "holoLensCommandMenu": "HoloLens",
+ "info": "A Windows AutoPilot-telepítési profil lehetővé teszi a kezdőélmény testreszabását az eszközökön.",
+ "invalidProfileNameMessage": "A(z) {0} karakter használata nem engedélyezett",
+ "joinTypeLabel": "Csatlakozás az Azure AD-hez másként",
+ "lastModifiedDateTime": "Utolsó módosítás:",
+ "manualRemediationContext": "We've detected a hardware change on this device. It won't automatically receive an Autopilot profile when it's reset unless you register the device again. Learn more about resetting the profile.",
+ "manualRemediationTitle": "Device {0} needs your attention",
+ "name": "Név",
+ "noAutopilotProfile": "Nincsenek AutoPilot-profilok",
+ "notEnoughPermissionAssignedError": "Nem rendelkezik a megfelelő engedélyekkel a profil egy vagy több kiválasztott csoporthoz történő hozzárendeléséhez. Forduljon a rendszergazdához.",
+ "profile": "profil",
+ "resourceAccountStatusBarMessage": "Minden olyan Surface Hub 2 eszköz esetében, amelyen ezt a profilt telepíti, meg kell adni egy erőforrás-fiókot. További információért kattintson ide.",
+ "selectServices": "Azon címtárszolgáltatások megadása, amelyekhez az eszközök csatlakozni fognak",
+ "surfaceHub2CommandMenu": "Surface Hub 2",
+ "surfaceHub2SCommandMenu": "Surface Hub 2S",
+ "userAffinityLabel": "Telepítési üzemmód",
+ "windowsPCCommandMenu": "Windows rendszerű számítógép",
+ "directoryServiceLabel": "Csatlakozás az Azure AD-hez mint:"
},
- "CategoryDescription": {
- "androidGeneralApplicationRestrictions": "E beállításokkal ellenőrizheti, hogy mely felhasználók telepítenek olyan alkalmazásokat, amelyek használatát a cége nem engedélyezte. Válassza ki a korlátozott alkalmazások listájának típusát:
\r\n Letiltott alkalmazások – azon alkalmazások listája, amelyek felhasználók általi telepítéséről értesülni szeretne.
\r\n Jóváhagyott alkalmazások – azon alkalmazások listája, amelyek használatát a cége engedélyezte. Ha a felhasználók egy ebben a listában nem szereplő alkalmazást telepítenek, Ön erről értesítést kap.
\r\n ",
- "androidZebraMxZebraMx": "Zebra-eszközök konfigurálása MX-profil XML formátumban való feltöltésével.",
- "iosDeviceFeaturesAirprint": "Ezekkel a beállításokkal megadhatja, hogy az iOS-eszközök automatikusan csatlakozzanak a hálózatbeli AirPrint-kompatibilis nyomtatókhoz. Ehhez szüksége lesz a nyomtatók IP-címére és elérési útjára.",
- "iosDeviceFeaturesExtensibleSingleSignOn": "Konfiguráljon egy olyan alkalmazásbővítményt, amely engedélyezi az egyszeri bejelentkezés (SSO) használatát az iOS 13.0 vagy újabb rendszert futtató eszközök esetében.",
- "iosDeviceFeaturesHomeScreenLayout": "Konfigurálja az iOS-eszközök dokkjának és főképernyőjének elrendezését. Bizonyos eszközöknél a megjelenített elemek száma korlátozott lehet.",
- "iosDeviceFeaturesIOSWallpaper": "Kép megjelenítése az iOS-eszközök főképernyőjén és/vagy zárolási képernyőjén.\r\n Ha egyedi képet szeretne megjeleníteni az egyes képernyőkön, akkor hozzon létre egy-egy profilt a zárolási képernyőn, valamint a főképernyőn megjelenő képpel.\r\n Ezt követően rendelje hozzá mindkét profilt az egyes felhasználókhoz.\r\n
\r\n \r\n - Maximális fájlméret: 750 KB
\r\n - Fájltípus: PNG, JPG vagy JPEG
\r\n
\r\n ",
- "iosDeviceFeaturesNotifications": "Az alkalmazások értesítési beállításainak megadása. Az iOS 9.3-as és újabb verzióiban támogatott.",
- "iosDeviceFeaturesSharedDevice": "A zárolási képernyőn megjelenő nem kötelező szöveg megadása. Ezt a funkciót az IOS 9.3-as és újabb verziói támogatják. További információ",
- "iosGeneralApplicationRestrictions": "E beállításokkal ellenőrizheti, hogy mely felhasználók telepítenek olyan alkalmazásokat, amelyek használatát a cége nem engedélyezte. Válassza ki a korlátozott alkalmazások listájának típusát:
\r\n Letiltott alkalmazások – azon alkalmazások listája, amelyek felhasználók általi telepítéséről értesülni szeretne.
\r\n Jóváhagyott alkalmazások – azon alkalmazások listája, amelyek használatát a cége engedélyezte. Ha a felhasználók egy ebben a listában nem szereplő alkalmazást telepítenek, Ön erről értesítést kap.
\r\n ",
- "iosGeneralApplicationVisibility": "A megjelenített alkalmazások listáján megadhatja, hogy a felhasználó mely iOS-alkalmazásokat jeleníthesse meg és indíthassa el. A rejtett alkalmazások listáján azokat az iOS-alkalmazásokat adhatja meg, amelyeket a felhasználó nem jeleníthet meg és nem indíthat el.",
- "iosGeneralAutonomousSingleAppMode": "Ha erre a listára felvesz és egy eszközhöz hozzárendel egy alkalmazást, kizárólag arra az alkalmazásra korlátozhatja az eszköz használatát, ha az elindult, illetve zárolhatja az eszközt bizonyos művelet végrehajtásakor (például vizsgáztatás ideje alatt). A művelet befejeződése, illetve a korlátozás feloldása után az eszköz visszatér a szokásos állapotba.",
- "iosGeneralKiosk": "Kioszkmódban zárolódnak az eszköz különböző beállításai, illetve egyetlen alkalmazás futtatására korlátozható az eszköz használata. Ez többek között kiskereskedelmi üzletekben lehet hasznos, ahol az eszközön egyetlen bemutatóalkalmazásnak kell futnia.",
- "macDeviceFeaturesAirprint": "Ezekkel a beállításokkal megadhatja, hogy a macOS-eszközök automatikusan csatlakozzanak a hálózatbeli AirPrint-kompatibilis nyomtatókhoz. Ehhez szüksége lesz a nyomtatók IP-címére és erőforrás-elérési útjára.",
- "macDeviceFeaturesAssociatedDomains": "A társított tartományok konfigurálásával megoszthatja az adatokat és a bejelentkezési hitelesítő adatokat a szervezet alkalmazásai és webhelyei között. Ez a profil a macOS 10.15-ös vagy újabb verzióját futtató eszközökön alkalmazható.",
- "macDeviceFeaturesExtensibleSingleSignOn": "Konfiguráljon egy olyan alkalmazásbővítményt, amely engedélyezi az egyszeri bejelentkezés (SSO) használatát a macOS 10.15 vagy újabb rendszert futtató eszközök esetében.",
- "macDeviceFeaturesLoginItems": "Kiválaszthatja, hogy mely alkalmazások, fájlok és mappák legyenek nyitva, amikor a felhasználók bejelentkeznek az eszközeiken. Ha nem szeretné, hogy a felhasználók megváltoztassák a kiválasztott alkalmazások megnyitásának módját, elrejtheti az alkalmazást a felhasználói konfigurációból.",
- "macDeviceFeaturesLoginWindow": "Konfigurálja a macOS bejelentkezési képernyőjének megjelenését, valamint a felhasználók számára a bejelentkezés előtt és után elérhető funkciókat.",
- "macExtensionsKernelExtensions": "Használja ezeket a beállításokat a kernelbővítményekre vonatkozó szabályzat konfigurálásához a 10.13.2 vagy újabb verziót futtató macOS-eszközökön.",
- "macGeneralDomains": "A felhasználó által küldött vagy fogadott azon e-mailek, amelyek nem egyeznek az itt megadott tartománnyal, nem megbízhatóként lesznek megjelölve.",
- "windows10EndpointProtectionApplicationGuard": "A Microsoft Edge használatakor a Microsoft Defender alkalmazásőr védi a környezetet a munkahely által megbízhatóként meg nem jelölt webhelyektől. Ha a felhasználók olyan webhelyeket keresnek fel, amelyek nem találhatók meg az elszigetelt hálózat határán belül, a rendszer egy virtuális böngészési Hyper-V-munkamenetben nyitja meg ezeket a webhelyeket. A megbízható webhelyek meghatározása a hálózathatárral történik, amelyet az Eszközkonfiguráció lapon lehet beállítani. Megjegyzés: ez a funkció kizárólag 64-bites Windows 10 vagy újabb verziókat futtató eszközökhöz érhető el.",
- "windows10EndpointProtectionCredentialGuard": "A Credential Guard engedélyezésekor a a rendszer a következő szükséges beállításokat engedélyezi:\r\n
\r\n \r\n - A virtualizálás-alapú biztonság engedélyezése: A virtualizálás-alapú biztonság (VBS) bekapcsolása a következő újraindításkor. A virtualizálás-alapú biztonság a Windows hipervizorral támogatja a biztonsági szolgáltatásokat.
\r\n
\r\n - Biztonságos rendszerindítás közvetlen memória-hozzáféréssel: A VBS bekapcsolása biztonságos rendszerindítással és közvetlen memória-hozzáféréssel (DMA).
\r\n
\r\n ",
- "windows10EndpointProtectionDeviceGuard": "Válasszon ki további olyan alkalmazásokat, amelyeket a Microsoft Defender alkalmazásfelügyeleti funkciójával szeretne naplózni, vagy amelyek futtatását ezzel a funkcióval kívánja engedélyezni. A Windows-összetevők és a Windows Áruházból származó alkalmazások automatikusan megbízhatónak minősülnek, és futtathatók.
\r\n A rendszer nem tiltja le a Csak naplózás üzemmódban futó alkalmazásokat, és ezek eseményeit a helyi ügyfélnaplókban rögzíti.\r\n ",
- "windows10GeneralPrivacyPerApp": "Olyan alkalmazások hozzáadása, amelyek viselkedésének az „Alapértelmezett adatvédelem” kategóriában meghatározottól eltérőnek kell lennie.",
- "windows10NetworkBoundaryNetworkBoundary": "A hálózathatár a vállalati erőforrások listájából áll, például a vállalati hálózat számítógépeihez tartozó felhőbeli tartományok vagy IP-címtartományok. A hálózathatárok meghatározásával szabályzatokat alkalmazhat az ilyen helyeken található adatok védelmére.",
- "windowsHealthMonitoring": "A Windows biztonságiállapot-figyelési szabályzatának konfigurálása.",
- "windowsPhoneGeneralApplicationRestrictions": "A Windows Phone letilthatja a felhasználók számára a tiltott alkalmazások listáján szereplő, illetve a jóváhagyott alkalmazások listáján nem szereplő alkalmazások telepítését vagy futtatását. Minden felügyelt alkalmazást hozzá kell adni a jóváhagyott alkalmazások listájához."
- },
"MinimumOperatingSystem": {
"Android": {
"v10": "Android 10.0",
@@ -2435,6 +1154,304 @@
"excludedGroups": "Kizárt csoportok",
"licenseType": "Engedély típusa"
},
+ "TAP": {
+ "AccessRequirements": {
+ "infoText": "Konfigurálja a PIN-kódra és a hitelesítő adatokra vonatkozó követelményeket, amelyeknek a felhasználóknak meg kell felelniük a munkahelyi környezetben az alkalmazások eléréséhez."
+ },
+ "DataProtection": {
+ "infoText": "Ez a csoport tartalmazza az olyan adatveszteség-megelőzési (DLP-) vezérlőket, mint például a kivágás, a másolás, a beillesztés és a mentés másként művelet korlátozásai. Ezek a beállítások határozzák meg, hogyan használhatják a felhasználók az alkalmazásokban található adatokat."
+ },
+ "DeviceTypes": {
+ "selectOne": "Válasszon legalább egy eszköztípust."
+ },
+ "TargetedApps": {
+ "TargetToAll": {
+ "label": "Az összes eszköztípuson futó alkalmazások célzása"
+ },
+ "infoText": "Válassza ki, hogyan szeretné ezt a szabályzatot alkalmazni az alkalmazásokban a különböző eszközökön. Ezután adjon hozzá legalább egy alkalmazást.",
+ "selectOne": "Szabályzat létrehozásához legalább egy alkalmazást válasszon ki."
+ }
+ },
+ "AssignmentAction": {
+ "exclude": "Kizárva",
+ "include": "Belefoglalva",
+ "includeAllDevicesVirtualGroup": "Belefoglalva",
+ "includeAllUsersVirtualGroup": "Belefoglalva"
+ },
+ "AppType": {
+ "androidEnterpriseSystemApp": "Android Enterprise-rendszeralkalmazás",
+ "androidForWorkApp": "Felügyelt Google Play Áruházbeli alkalmazás",
+ "androidLobApp": "Üzletági Android-alkalmazás",
+ "androidStoreApp": "Android Áruházbeli alkalmazás",
+ "builtInAndroid": "Beépített Android-alkalmazás",
+ "builtInApp": "Beépített alkalmazás",
+ "builtInIos": "Beépített iOS-alkalmazás",
+ "default": "",
+ "iosLobApp": "Üzletági iOS-alkalmazás",
+ "iosStoreApp": "iOS Store-alkalmazás",
+ "iosVppApp": "Volume Purchase Program-alkalmazás iOS rendszerhez",
+ "lineOfBusinessApp": "Üzletági alkalmazás",
+ "macOSDmgApp": "macOS app (DMG)",
+ "macOSEdgeApp": "Microsoft Edge (macOS)",
+ "macOSLobApp": "Üzletági macOS-alkalmazás",
+ "macOSMdatpApp": "Microsoft Defender ATP (macOS)",
+ "macOSOfficeSuiteApp": "Microsoft 365-alkalmazások (macOS)",
+ "macOsVppApp": "Volume Purchase Program-alkalmazás macOS rendszerhez",
+ "managedAndroidLobApp": "Felügyelt üzletági Android-alkalmazás",
+ "managedAndroidStoreApp": "Felügyelt Android Áruházbeli alkalmazás",
+ "managedGooglePlayApp": "Felügyelt Google Play Áruházbeli alkalmazás",
+ "managedGooglePlayPrivateApp": "Felügyelt privát Google Play-alkalmazás",
+ "managedGooglePlayWebApp": "Felügyelt Google Play-webhivatkozás",
+ "managedIosLobApp": "Felügyelt üzletági iOS-alkalmazás",
+ "managedIosStoreApp": "Felügyelt iOS Store-alkalmazás",
+ "microsoftStoreForBusinessApp": "A „Microsoft Store Vállalatoknak” egy alkalmazása",
+ "microsoftStoreForBusinessReleaseManagedApp": "Microsoft Store Vállalatoknak",
+ "officeSuiteApp": "Microsoft 365-alkalmazások (Windows 10 és újabb)",
+ "webApp": "Webhivatkozás",
+ "windowsAppXLobApp": "AppX-alapú üzletági Windows-alkalmazás",
+ "windowsClassicApp": "Windows-alkalmazás (Win32)",
+ "windowsEdgeApp": "Microsoft Edge (Windows 10 és újabb)",
+ "windowsMobileMsiLobApp": "MSI-alapú üzletági Windows-alkalmazás",
+ "windowsPhone81AppXBundleLobApp": "AppX-alapú üzletági Windows Phone 8.1-alkalmazás",
+ "windowsPhone81AppXLobApp": "AppX-alapú üzletági Windows Phone 8.1-alkalmazás",
+ "windowsPhone81StoreApp": "Windows Phone 8.1 Áruházbeli alkalmazás",
+ "windowsPhoneXapLobApp": "XAP-alapú üzletági Windows Phone-alkalmazás",
+ "windowsStoreApp": "Microsoft Store-alkalmazás",
+ "windowsUniversalAppXLobApp": "Univerzális AppX-alapú üzletági Windows-alkalmazás",
+ "windowsUniversalLobApp": "Univerzális üzletági Windows-alkalmazás"
+ },
+ "TAPSettings": {
+ "AllowedDataIngestionLocations": {
+ "label": "Adatok a kijelölt szolgáltatásokból való megnyitásának engedélyezése a felhasználók számára",
+ "tooltip": "Válassza ki azokat az alkalmazástároló szolgáltatásokat, amelyekből a felhasználók megnyithatják az adatokat. Minden más szolgáltatás le van tiltva. Ha nem választ szolgáltatásokat, azzal meggátolja, hogy a felhasználók adatokat nyissanak meg."
+ },
+ "AndroidBackup": {
+ "label": "Szervezeti adatok mentése Android biztonsági mentési szolgáltatásokba",
+ "tooltip": "Válassza a(z) {0} lehetőséget a szervezeti adatok Android biztonsági mentési szolgáltatásokba történő mentésének megakadályozásához. \r\nVálassza a(z) {1} lehetőséget a szervezeti adatok Android biztonsági mentési szolgáltatásokba történő mentésének engedélyezéséhez. \r\nA személyes vagy nem felügyelt adatokat ez nem érinti."
+ },
+ "AndroidBiometricAuthentication": {
+ "label": "PIN-kód helyett biometrikai adatok a hozzáféréshez",
+ "tooltip": "Adja meg, hogy milyen androidos hitelesítési módok használhatók az alkalmazás PIN-kódja helyett."
+ },
+ "AndroidFingerprint": {
+ "label": "PIN-kód helyett ujjlenyomat a hozzáféréshez (Android 6.0 +)",
+ "tooltip": "Az Android operációs rendszer ujjlenyomat-olvasókat használ az Android-eszközök felhasználóinak hitelesítésére. Ez a funkció támogatja az Android eszközök natív biometrikus vezérlését. Az eredeti hardvergyártóktól függő biometrikus beállításokat, mint a Samsung Passt, nem támogatja. Ha engedélyezve van, a natív biometrikus vezérlőket kell használni az alkalmazás elrésére az erre alkalmas eszközön."
+ },
+ "AndroidOverrideFingerprint": {
+ "label": "Ujjlenyomat felülbírálása PIN-kóddal időtúllépés után"
+ },
+ "AppPIN": {
+ "label": "Alkalmazás PIN-kódja, ha az eszköz PIN-kódja be van állítva",
+ "tooltip": "Ha nem kötelező, akkor nincs szükség alkalmazásbeli PIN-kód megadására az alkalmazás eléréséhez, amennyiben az eszköz PIN-kódja be van állítva az MDM-ben regisztrált eszközön.
\r\n\r\nMegjegyzés: Az Intune nem tudja észlelni a harmadik fél EMM-megoldásával regisztrált eszközt Androidon."
+ },
+ "BlockDataIngestionIntoOrganizationDocuments": {
+ "label": "Adatok megnyitása szervezeti dokumentumokban",
+ "tooltip1": "Válassza a Letiltás lehetőséget, ha le szeretné tiltani az alkalmazásban a Megnyitás lehetőséget, illetve a fiókok közötti adatmegosztásra vonatkozó egyéb lehetőségeket. Válassza az Engedélyezés lehetőséget, ha engedélyezni szeretné az alkalmazásban a Megnyitás lehetőséget, illetve a fiókok közötti adatmegosztásra vonatkozó egyéb lehetőségeket.",
+ "tooltip2": "Ha a Letiltás van beállítva, konfigurálhatja az Adatok a kijelölt szolgáltatásokból való megnyitásának engedélyezése a felhasználó számára beállítást annak megadásához, hogy mely szolgáltatások engedélyezettek a szervezeti adathelyeken.",
+ "tooltip3": "Megjegyzés: ez a beállítás csak akkor lesz érvénybe léptetve, ha a Más alkalmazásokból származó adatok fogadása beállítás értéke Szabályzat által felügyelt alkalmazások.
\r\nMegjegyzés: ez a beállítás nem vonatkozik az összes alkalmazásra. További információ: {0}.",
+ "tooltip4": "Megjegyzés: ez a beállítás csak akkor lesz érvénybe léptetve, ha a Más alkalmazásokból származó adatok fogadása beállítás értéke Szabályzat által felügyelt alkalmazások.
\r\nMegjegyzés: ez a beállítás nem vonatkozik az összes alkalmazásra. További információ: {0} vagy {0}."
+ },
+ "ConnectToVpnOnLaunch": {
+ "label": "Microsoft Tunnel-kapcsolat indítása az alkalmazás indításakor",
+ "tooltip": "VPN-kapcsolat engedélyezése az alkalmazás indításakor"
+ },
+ "CredentialsForAccess": {
+ "label": "Munkahelyi vagy iskolai fiók hitelesítő adatai a hozzáféréshez",
+ "tooltip": "Ha szükséges, munkahelyi vagy iskolai hitelesítő adatokat kell használni a szabályzattal felügyelt alkalmazás elérésére. Ha az alkalmazás eléréshez PIN-kód vagy biometrikus adatok is szükségesek, akkor ezek mellett a munkahelyi vagy iskolai fiók hitelesítő adatait is meg kell adni."
+ },
+ "CustomBrowserDisplayName": {
+ "label": "Nem felügyelt böngésző neve",
+ "tooltip": "Adja meg a böngésző „Nem felügyelt böngésző azonosítója” beállításhoz hozzárendelt alkalmazásnevét. Ez a név jelenik meg a felhasználók számára, ha nincs telepítve a megadott böngésző."
+ },
+ "CustomBrowserPackageId": {
+ "label": "Nem felügyelt böngésző azonosítója",
+ "tooltip": "Adja meg a kívánt böngésző alkalmazásazonosítóját. A szabályzat által felügyelt alkalmazások webes tartalma (http/s) meg a megadott böngészőben fog megnyílni."
+ },
+ "CustomBrowserProtocol": {
+ "label": "Nem felügyelt böngésző protokollja",
+ "tooltip": "Adja meg a nem felügyelt böngésző protokollját. A szabályzat által felügyelt alkalmazások webes tartalma (http/s) minden olyan alkalmazásban meg fog nyílni, amely támogatja ezt a protokollt.
\r\n \r\nMegjegyzés: csak a protokoll előtagját adja meg. Ha a böngésző sajátböngésző://www.microsoft.com formátumú hivatkozásokat igényel, a „sajátböngésző” előtagot adja meg.
"
+ },
+ "CustomDialerAppDisplayName": {
+ "label": "Tárcsázóalkalmazás neve"
+ },
+ "CustomDialerAppPackageId": {
+ "label": "Tárcsázóalkalmazás csomagazonosítója"
+ },
+ "CustomDialerAppProtocol": {
+ "label": "Tárcsázóalkalmazás URL-sémája"
+ },
+ "Cutcopypaste": {
+ "label": "Kivágási, másolási és beillesztési műveletek korlátozása más alkalmazások között",
+ "tooltip": "Adatok kivágása, másolása és beillesztése a saját alkalmazása és az eszközön telepített egyéb jóváhagyott alkalmazások között. A következő lehetőségek közül választhat: a műveletek letiltása az összes alkalmazásra vonatkozóan, a műveletek engedélyezése az összes alkalmazásra vonatkozóan és a műveletek engedélyezése kizárólag a cége által felügyelt alkalmazásokra vonatkozóan.
\r\n\r\nA beillesztési lehetőséggel rendelkező, szabályzattal felügyelt alkalmazások lehetővé teszik a más alkalmazásból beillesztett bejövő tartalom elfogadását. Ugyanakkor ez megakadályozza, hogy a felhasználók kifelé megosszák a tartalmat, hacsak nem egy felügyelt alkalmazással osztják meg.
"
+ },
+ "DialerRestrictionLevel": {
+ "iosTooltip": "Általában, ha egy felhasználó egy alkalmazásban kiválaszt egy hivatkozott telefonszámot, a tárcsázó alkalmazás a telefonszámot úgy nyitja meg, hogy már be van töltve, és minden további nélkül felhívható. Ehhez a beállításhoz adja meg, hogyan kezelje a rendszer az ilyen típusú tartalomátvitelt, ha azt egy szabályzat által felügyelt alkalmazás kezdeményezi. További lépésekre lehet szükség ahhoz, hogy a beállítás érvénybe lépjen. Először győződjön meg arról, hogy a tel és a telprompt el lett távolítva a Kiválasztás alkalmazásokból a kivétellistára. Ezt követően gondoskodjon arról, hogy az alkalmazás az Intune SDK újabb (12.7.0+) verzióját használja.",
+ "label": "Telekommunikációs adatok átvitele ide:",
+ "tooltip": "Ha egy felhasználó egy alkalmazásban kiválaszt egy hiperhivatkozással ellátott telefonszámot, általában megnyílik a tárcsázó alkalmazás a szóban forgó telefonszámmal együtt, és hívásra készen. Ehhez a beállításhoz válassza ki, hogy a rendszer hogyan kezelje ezt a tartalomátvitelt, ha egy szabályzat által felügyelt alkalmazásból lett kezdeményezve."
+ },
+ "EncryptData": {
+ "label": "Szervezeti adatok titkosítása",
+ "link": "https://docs.microsoft.com/en-us/intune/app-protection-policy-settings-android#data-relocation-settings",
+ "tooltip": "Válassza a(z) {0} lehetőséget, ha kényszeríteni szeretné a szervezeti adatok Intune-beli alkalmazásréteg-titkosítással történő titkosítását.\r\n
\r\nVálassza a(z) {1} lehetőséget, ha nem szeretné kényszeríteni a szervezeti adatok Intune-beli alkalmazásréteg-titkosítással történő titkosítását.\r\n\r\n
\r\nMegjegyzés: Az Intune-beli alkalmazásréteg-titkosításról bővebben lásd: {2}."
+ },
+ "EncryptDataAndroid": {
+ "tooltip": "Válassza a Kötelező lehetőséget munkahelyi vagy iskolai adatok az alkalmazásban való titkosításának engedélyezéséhez. Az Intune egy OpenSSL-alapú, 256 bites AES-titkosítási sémával, valamint az Android Keystore rendszerrel biztosítja az alkalmazás adatainak biztonságos titkosítását. Az adatokat szinkron módon titkosítja a fájlbe- és kimeneti műveletek során. Az eszköz tárhelyének tartalma minden esetben titkosítva van. Az SDK továbbra is támogatja a 128 bites kulcsokat az SDK régebbi verzióit használó tartalmakkal és alkalmazásokkal való kompatibilitás érdekében.
\r\n\r\nA titkosítási módszer megfelel a FIPS 140-2 szabványnak.
"
+ },
+ "EncryptDataIos": {
+ "tooltip1": "Válassza a Kötelező lehetőséget munkahelyi vagy iskolai adatok az alkalmazásban való titkosításának engedélyezéséhez. Az Intune kényszeríti az iOS- vagy iPadOS-eszköztitkosítás alkalmazását az alkalmazásadatok védelme érdekében, amíg az eszköz zárolva van. Az alkalmazások nem kötelezően titkosíthatják az alkalmazásadatokat az Intune APP SDK titkosításával. Az Intune APP SDK az iOS vagy iPadOS kriptográfiai eljárásaival alkalmaz 128 bites AES titkosítást az alkalmazásadatokon.",
+ "tooltip2": "Ha engedélyezi ezt a beállítást, a rendszer arra kérheti a felhasználót, hogy az eszközhöz való hozzáféréshez PIN-kódot állítson be és használjon. Ha az eszköznek nincs PIN-kódja, és a titkosítás kötelező, a rendszer PIN-kód beállítására kéri a felhasználót a következő üzenettel: „A szervezet megköveteli, hogy az alkalmazás eléréséhez először engedélyezze az eszköz PIN-kódjának használatát.”",
+ "tooltip3": "A hivatalos Apple-dokumentációban tájékozódhat arról, hogy mely iOS-titkosítási modulok felelnek meg a FIPS 140-2 szabványnak, vagy van függőben a FIPS 140-2 szabványnak való megfelelőségük."
+ },
+ "EncryptDataOnEnrolledDevices": {
+ "label": "Szervezeti adatok titkosítása a regisztrált eszközökön",
+ "tooltip": "Válassza a(z) {0} lehetőséget, ha minden eszközön kényszeríteni szeretné a szervezeti adatok Intune-beli alkalmazásréteg-titkosítással történő titkosítását.
\r\n\r\nVálassza a(z) {1} lehetőséget, ha a regisztrált eszközökön nem kívánja kötelezővé tenni a szervezeti adatok Intune-beli alkalmazásréteg-titkosítással történő titkosítását."
+ },
+ "IOSBackup": {
+ "label": "Szervezeti adatok mentése biztonsági másolatokba az iTunes és az iCloud szolgáltatásban",
+ "tooltip": "Válassza a(z) {0} lehetőséget a szervezeti adatok iTunes vagy iCloud szolgáltatásba történő biztonsági mentésének megakadályozásához. \r\nVálassza a(z) {1} lehetőséget a szervezeti adatok iTunes vagy iCloud szolgáltatásba történő biztonsági mentésének engedélyezéséhez. \r\nA személyes vagy a nem felügyelt adatokat ez nem érinti."
+ },
+ "IOSFaceID": {
+ "label": "Face ID PIN-kód helyett a hozzáféréshez (iOS 11+/iPadOS)",
+ "tooltip": "A Face ID arcfelismerő technológiát használ a felhasználók hitelesítésére az iOS vagy iPadOS-eszközökön. Az Intune a LocalAuthentication API-t hívja a felhasználó Face ID-vel történő hitelesítéséhez. Ha engedélyezve van, akkor a Face ID-t kell használni az alkalmazás eléréséhez a Face ID használatára alkalmas eszközön."
+ },
+ "IOSOverrideTouchId": {
+ "label": "Biometrika felülbírálása PIN-kóddal időtúllépés után"
+ },
+ "IOSTouchId": {
+ "label": "Touch ID PIN-kód helyett a hozzáféréshez (iOS 8+/iPadOS)",
+ "tooltip": "A Touch ID ujjlenyomat-felismerő technológiát használ a felhasználók hitelesítésére az iOS-eszközökön. Az Intune a LocalAuthentication API-t hívja a felhasználók Touch ID-vel történő hitelesítéséhez. Ha engedélyezve van, akkor a Touch ID-t kell használni az alkalmazás eléréséhez a Touch ID használatára alkalmas eszközön."
+ },
+ "NotificationRestriction": {
+ "label": "Céges adatokkal kapcsolatos értesítések",
+ "tooltip": "Az alábbi beállítások egyikének segítségével adja meg, hogy miként jelenjenek meg a céges fiókok értesítései ezen alkalmazás és az összes csatlakoztatott eszköz (például hordható eszköz) esetében:
\r\n{0}: Ne legyenek megosztva az értesítések.
\r\n{1}: Ne legyenek megosztva a céges adatok az értesítésekben. Ha az alkalmazás nem támogatja, az értesítések le vannak tiltva.
\r\n{2}: Az összes értesítés megosztása.
\r\n Csak Android esetén:\r\n Megjegyzés: Ez a beállítás nem vonatkozik minden alkalmazásra. További információ: {3}
\r\n \r\n Csak iOS esetén:\r\nMegjegyzés: Ez a beállítás nem vonatkozik minden alkalmazásra. További információ: {4}
"
+ },
+ "OpenLinksManagedBrowser": {
+ "label": "Webes tartalom más alkalmazásokkal folytatott átvitelének korlátozása",
+ "tooltip": "Válassza ki az alábbi lehetőségek közül, hogy az alkalmazás mely alkalmazásokban nyithat meg webes tartalmat:
\r\nEdge: Webes tartalom csak az Edge-ben nyitható meg
\r\nNem felügyelt böngésző: Webes tartalom csak a „Nem felügyelt böngésző protokollja” beállításnál megadott nem felügyelt böngészőben nyitható meg
\r\nBármely alkalmazás: Webhivatkozások megnyitása bármely alkalmazásban
"
+ },
+ "OverrideBiometric": {
+ "tooltip": "Ha szükséges, az időkorlát (inaktív percek) alapján a PIN-kód megadását kérő üzenet felülbírálja a biometrikus hitelesítést kérő üzeneteket. Ha nem érte el az időkorlátban megadott időtartamot, továbbra is a biometrikus hitelesítést kérő üzenet fog megjelenni. Ennek az időkorlátértéknek nagyobbnak kell lennie, mint a Hozzáférési követelmények újbóli ellenőrzése ennyi idő után (inaktív perc) alatt megadott érték. "
+ },
+ "PinAccess": {
+ "label": "PIN-kód a hozzáféréshez",
+ "tooltip": "Ha szükséges egy PIN-kódot kell használni a szabályzattal felügyelt alkalmazás eléréséhez. A felhasználóknak létre kell hoznia egy hozzáférési PIN-kód, amikor először nyitják meg az alkalmazást munkahelyi vagy iskolai fiókban."
+ },
+ "PinLength": {
+ "label": "PIN-kód minimális hosszának kiválasztása",
+ "tooltip": "Ezzel a beállítással adható meg a PIN-kód számjegyeinek minimális száma."
+ },
+ "PinType": {
+ "label": "PIN-kód típusa",
+ "tooltip": "A numerikus PIN-kódok kizárólag számokból állnak. A PIN-kódok alfanumerikus karakterekből és speciális karakterekből állnak. "
+ },
+ "Printing": {
+ "label": "Céges adatok nyomtatása",
+ "tooltip": "Az alkalmazás nem tudja kinyomtatni a védett adatokat, ha le van tiltva."
+ },
+ "ReceiveData": {
+ "label": "Adatok fogadása más alkalmazásokból",
+ "tooltip": "Válassza az alábbi lehetőségek egyikét azoknak az alkalmazásoknak a meghatározásához, ahonnan ez az alkalmazás fogadhat adatokat:
\r\n\r\nEgyik sem: Nem engedélyezett semmilyen alkalmazásból érkező adatok fogadása sem a szervezeti dokumentumokban vagy fiókokban
\r\n\r\nSzabályzattal felügyelt alkalmazások: Csak más, szabályzattal felügyelt alkalmazásokból érkező adatok fogadásának engedélyezése a szervezeti dokumentumokban vagy fiókokban\r\n
\r\nBármely beérkező szervezeti adatokkal rendelkező alkalmazás: Adatok bármely alkalmazásból történő fogadásának engedélyezése a szervezeti dokumentumokban és fiókokban és minden felhasználói fiók nélküli beérkező adat szervezeti adatként való kezelése
\r\n\r\nMinden alkalmazás: Bármely alkalmazásból érkező adatok fogadásának engedélyezése szervezeti dokumentumokban vagy fiókokban"
+ },
+ "RecheckAccessAfter": {
+ "label": "Hozzáférési követelmények újbóli ellenőrzése a megadott idő elteltével (perc inaktivitás után)\r\n\r\n",
+ "tooltip": "Ha a szabályzattal felügyelt alkalmazás hosszabb ideig inaktív, mint a megadott inaktív percek száma, az alkalmazás az indítása után kérni fogja a hozzáférési követelmények (pl. PIN-kód, feltételes indítási beállítások) újbóli ellenőrzését."
+ },
+ "RestrictKeyboards": {
+ "duplicatePackageError": "A csomag azonosítójának egyedinek kell lennie.",
+ "invalidPackageError": "Érvénytelen csomagazonosító",
+ "label": "Jóváhagyott billentyűzetek",
+ "select": "Billentyűzetek kiválasztása jóváhagyásra",
+ "subtitle": "Adja hozzá az összes olyan billentyűzetet és beviteli metódust, amelyet a felhasználók a célzott alkalmazásokkal használhatnak. Adja meg a billentyűzet nevét, amelyet meg szeretne jeleníteni a végfelhasználónak.",
+ "title": "Jóváhagyott billentyűzetek hozzáadása",
+ "toolTip": "Válassza a Szükséges lehetőséget, majd adja meg a szabályzathoz tartozó jóváhagyott billentyűzetek listáját. További információ."
+ },
+ "SaveData": {
+ "label": "Szervezeti adatok másolatának mentése",
+ "tooltip": "Válassza a(z) {0} lehetőséget, ha meg szeretné akadályozni a szervezeti adatok másolatának kiválasztott társzolgáltatáson kívüli, új helyre történő mentését a Mentés másként használatakor.\r\n Válassza a(z) {1} lehetőséget, ha szeretné engedélyezni a szervezeti adatok másolatának új helyre történő mentését a Mentés másként használatakor.
\r\n\r\n\r\nMegjegyzés: Ez a beállítás nem vonatkozik az összes alkalmazásra. További információért lásd: {2}.\r\n"
+ },
+ "SaveDataToSelected": {
+ "label": "Másolatok kiválasztott szolgáltatásokba történő mentésének engedélyezése a felhasználó számára",
+ "tooltip": "Válassza ki azokat a társzolgáltatásokat, amelyekbe a felhasználók menthetik a szervezeti adatok másolatait. Minden más szolgáltatás le van tiltva. Ha nem választ szolgáltatásokat, azzal megakadályozza, hogy a felhasználók mentsék a szervezeti adatok másolatait."
+ },
+ "ScreenCaptureAndAndroidAssistant": {
+ "label": "Képernyőfelvétel és Google Segéd\r\n",
+ "tooltip": "Ha blokkolva van, a szabályzat által felügyelt alkalmazás használatakor a képernyőfelvétel és a Google Segéd alkalmazás beolvasási funkciói le lesznek tiltva. Ez a funkció támogatja a szokásos Google Segéd alkalmazást. A Google Segéd API-t használó külső segédek nem támogatottak. A Blokkolás választásával az Alkalmazásváltó előnézeti képe is elmosódik, ha az alkalmazást munkahelyi vagy iskolai fiókkal használja."
+ },
+ "SendData": {
+ "label": "Szervezeti adatok küldése egyéb alkalmazásokba",
+ "tooltip": "Válasszon az alábbi lehetőségek közül azoknak az alkalmazásoknak a meghatározásához, amelyekbe ez az alkalmazás adatokat küldhet:
\r\n\r\n\r\nNincs: Nem engedélyezett szervezeti adatok küldése semmilyen alkalmazásba
\r\n\r\n\r\nSzabályzattal felügyelt alkalmazások: Szervezeti adatok küldésének engedélyezése kizárólag más, szabályzat által felügyelt alkalmazásokba
\r\n\r\n\r\nSzabályzattal felügyelt alkalmazások operációsrendszer-megosztással: Szervezeti adatok küldésének engedélyezése kizárólag más, szabályzattal felügyelt alkalmazásokba és szervezeti dokumentumok küldése kizárólag más, MDM által felügyelt alkalmazásokba a regisztrált eszközökön
\r\n\r\n\r\nSzabályzattal felügyelt alkalmazások megnyitás- és megosztásszűréssel: Szervezeti adatok küldésének engedélyezése kizárólag más, szabályzattal felügyelt alkalmazásokba és az operációs rendszer Megnyitás és Megosztás párbeszédpaneljének szűrése, hogy csak a szabályzattal felügyelt alkalmazások jelenjenek meg\r\n
\r\n\r\nMinden alkalmazás: Szervezeti adatok küldésének engedélyezése bármely alkalmazásba"
+ },
+ "SimplePin": {
+ "label": "Egyszerű PIN-kód",
+ "tooltip": "Ha le van tiltva, a felhasználók nem hozhatnak létre egyszerű PIN-kódot. Az egyszerű PIN-kód egymást követő vagy ismétlődő karakterekből áll, például 1234, ABCD vagy 1111. Ne feledje, hogy a PIN-kód típusú egyszerű PIN-kód letiltásához a PIN-kódnak tartalmaznia kell legalább egy számot, egy betűt és egy különleges karaktert."
+ },
+ "SyncContacts": {
+ "label": "Szabályzattal felügyelt alkalmazásadatok szinkronizálása natív alkalmazásokkal vagy bővítményekkel"
+ },
+ "ThirdPartyKeyboards": {
+ "infoBox": "A billentyűzetre vonatkozó korlátozások az alkalmazások minden területére érvényesek lesznek. A korlátozás érinteni fogja a több identitást támogató alkalmazásokhoz tartozó személyes fiókokat. További információ.",
+ "label": "Harmadik féltől származó billentyűzetek"
+ },
+ "Timeout": {
+ "label": "Időkorlát (perc inaktivitás után)"
+ },
+ "Tap": {
+ "numberOfDays": "Napok száma",
+ "pinResetAfterNumberOfDays": "PIN-kód megváltoztatása ennyi nap után",
+ "previousPinBlockCount": "A megőrizni kívánt korábbi PIN-értékek számának kiválasztása"
+ }
+ },
+ "ScheduledAction": {
+ "Form": {
+ "editBlockActionInfo": "Egy letiltási műveletre van szükség az összes megfelelőségi szabályzat esetében.",
+ "graceperiod": "Ütemezés (ennyi nappal a nem megfelelő állapot kezdete után)",
+ "graceperiodInfo": "Adja meg, hogy a művelet hány nem megfelelő állapotban töltött nap után legyen elindítva a felhasználó eszközén",
+ "subtitle": "Adja meg a művelet paramétereit",
+ "title": "Műveleti paraméterek"
+ },
+ "List": {
+ "gracePeriodDay": "{0} nappal a nem megfelelő állapot kezdete után",
+ "gracePeriodDays": "{0} nappal a nem megfelelő állapot kezdete után",
+ "gracePeriodHour": "{0} órával a nem megfelelő állapot kezdete után",
+ "gracePeriodHours": "{0} órával a nem megfelelő állapot kezdete után",
+ "gracePeriodMinute": "{0} perccel a nem megfelelő állapot kezdete után",
+ "gracePeriodMinutes": "{0} perccel a nem megfelelő állapot kezdete után",
+ "immediately": "Azonnal",
+ "schedule": "Ütemezés",
+ "scheduleInfoBalloon": "Nemmegfelelőség utáni napok",
+ "subtitle": "Adja meg a nem megfelelő eszközökön végrehajtandó műveletsort",
+ "title": "Műveletek"
+ },
+ "Notification": {
+ "additionalEmailLabel": "Továbbiak",
+ "additionalRecipients": "További címzettek (e-mailben)",
+ "additionalRecipientsBladeTitle": "További címzettek kiválasztása",
+ "emailAddressPrompt": "Adja meg az e-mail-címeket (vesszővel elválasztva)",
+ "invalidEmail": "Érvénytelen e-mail-cím",
+ "messageTemplate": "Üzenetsablon",
+ "noneSelected": "Egy elem sincs kijelölve",
+ "notSelected": "Nincs kijelölve",
+ "numSelected": "{0} kijelölve",
+ "selected": "Kijelölve"
+ },
+ "block": "Eszköz megjelölése nem megfelelőként",
+ "lockDevice": "Eszköz zárolása (helyi művelet)",
+ "lockDeviceWithPasscode": "Eszköz zárolása (helyi művelet)",
+ "noAction": "Nincs művelet",
+ "noActionRow": "Nincsenek műveletek; a Hozzáadás gombbal adhat meg műveletet",
+ "pushNotification": "Leküldéses értesítés küldése a végfelhasználónak",
+ "remoteLock": "Nem megfelelő eszköz távolról zárolása",
+ "removeSourceAccessProfile": "Forrás hozzáférési profil eltávolítása",
+ "retire": "A nem megfelelő eszköz kivonása",
+ "wipe": "Adatok törlése",
+ "emailNotification": "E-mail küldése a felhasználónak"
+ },
+ "InstallIntent": {
+ "available": "Regisztrált eszközök esetében elérhető",
+ "availableWithoutEnrollment": "Regisztrációval vagy anélkül is elérhető",
+ "required": "Kötelező",
+ "uninstall": "Eltávolítás"
+ },
"EnrollmentStatusScreen": {
"Apps": {
"managedApps": "Felügyelt alkalmazások",
@@ -2466,142 +1483,61 @@
"resetToggle": "Az eszköz alaphelyzetbe állításának engedélyezése a felhasználóknak telepítési hiba esetén",
"timeout": "Hiba megjelenítése, ha a telepítés a (percekben) megadott időtartamnál több időt vesz igénybe"
},
- "EnrollmentType": {
- "devicesWithEnrollment": "Felügyelt eszközök",
- "devicesWithoutEnrollment": "Felügyelt alkalmazások"
- },
- "ApplicabilityRules": {
- "GridLabel": {
- "property": "Tulajdonság",
- "rule": "Szabály",
- "ruleDetails": "Szabály részletei",
- "value": "Érték"
- },
- "assignIf": "Profil hozzárendelése, ha",
- "deleteWarning": "Ezzel törli a kiválasztott alkalmazhatósági szabályt",
- "dontAssignIf": "Ne rendeljen hozzá profilt, ha",
- "editionDisplayText": "{0} {1}",
- "editionDisplayTextMore": "és további {0}",
- "instructions": "Adja meg, hogyan kívánja alkalmazni ezt a profilt egy hozzárendelt csoporton belül. Az Intune csak azokra az eszközökre alkalmazz a profilt, amelyek megfelnek ezen szabályok kombinált feltételeinek.",
- "maxText": "Maximum",
- "minText": "Minimum",
- "noActionRow": "Nincs megadva alkalmazhatósági szabály",
- "oSVersion": "például: 1.2.3.4",
- "toText": "–",
- "windows10Education": "Windows 10/11 Education",
- "windows10EducationN": "Windows 10/11 Education N",
- "windows10Enterprise": "Windows 10/11 Enterprise",
- "windows10EnterpriseN": "Windows 10/11 Enterprise N",
- "windows10HolographicEnterprise": "Windows 10 Holographic for Business",
- "windows10Home": "Windows 10/11 Home",
- "windows10HomeChina": "Windows 10 Home China",
- "windows10HomeN": "Windows 10/11 Home N",
- "windows10HomeSingleLanguage": "Windows 10/11 Home egynyelvű",
- "windows10IoTCore": "Windows 10 IoT Core",
- "windows10IoTCoreCommercial": "Windows 10 IoT Core – kereskedelmi",
- "windows10Mobile": "Windows 10 Mobile",
- "windows10MobileEnterprise": "Windows 10 Mobile Enterprise",
- "windows10OsEdition": "Operációs rendszer kiadása",
- "windows10OsVersion": "Operációs rendszer verziója",
- "windows10Professional": "Windows 10/11 Professional",
- "windows10ProfessionalEducation": "Windows 10/11 Professional Education",
- "windows10ProfessionalEducationN": "Windows 10/11 Professional Education N",
- "windows10ProfessionalN": "Windows 10 Professional N",
- "windows10ProfessionalWorkstation": "Windows 10/11 Professional Workstation",
- "windows10ProfessionalWorkstationN": "Windows 10/11 Professional Workstation N"
+ "Devices": {
+ "General": {
+ "android": "Android"
+ },
+ "aOSP": "Android nyílt forráskódú projekt",
+ "android": "Android-eszközadminisztrátor",
+ "androidWorkProfile": "Android Enterprise (munkahelyi profil)",
+ "iOS": "iOS/iPadOS",
+ "mac": "macOS",
+ "windows": "Windows (MDM)",
+ "windows10": "Windows 10 és újabb rendszerek",
+ "windowsHomeSku": "Windows Home termékváltozat",
+ "windowsMobile": "Windows Mobile"
+ },
+ "AppInfoBalloonText": {
+ "Certificate": {
+ "customSubjectName": "CN={{UserName}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US\r\nor\r\nCN={{AAD_Device_ID}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US",
+ "keySize": "Adja meg a kulcsban tárolt bitek számát.",
+ "keyUsage": "Adja meg a tanúsítvány nyilvános kulcsának cseréjéhez szükséges titkosítási műveletet.",
+ "renewalThreshold": "Adja meg a tanúsítvány hátralévő élettartamának százalékában (1 és 99 százalék között), hogy az eszköz mikor kérheti leghamarabb a tanúsítvány megújítását. Az ajánlott érték az Intune-ban 20%. (1-99)",
+ "rootCert": "Válasszon ki egy korábban konfigurált és hozzárendelt legfelső szintű hitelesítésszolgáltatói tanúsítványprofilt. A hitelesítésszolgáltatói tanúsítványnak meg kell egyeznie annak a hitelesítésszolgáltatónak a főtanúsítványával, amely a jelenleg konfigurált profilhoz kiadja a tanúsítványt.",
+ "scepServerUrl": "Adja meg annak az NDES-kiszolgálónak az URL-címét, amely az SCEP használatával adja ki a tanúsítványokat (HTTPS-nek kell lennie). Példa: https://contoso.com/certsrv/mscep/mscep.dll",
+ "scepServerUrls": "Adja meg annak az NDES-kiszolgálónak az URL-címét vagy -címeit, amely az SCEP használatával adja ki a tanúsítványokat. Példa: https://contoso.com/certsrv/mscep/mscep.dll",
+ "subjectAlternativeName": "Tulajdonos alternatív neve",
+ "subjectNameFormat": "Tulajdonosnév formátuma",
+ "validityPeriod": "A tanúsítvány érvényességének lejártáig hátralévő idő. A tanúsítványsablonban megjelenő érvényességi időtartammal egyenlő vagy annál kisebb értéket adjon meg. Alapértelmezésként egy év van beállítva."
+ },
+ "appInstallContext": "Ez a beállítás határozza meg az alkalmazáshoz hozzárendelendő telepítési környezetet. A kettős módú alkalmazások esetében válassza ki az alkalmazáshoz használni kívánt környezetet. Ez minden más alkalmazás esetében előre ki van választva a csomag alapján, és nem lehet módosítani.",
+ "autoUpdateMode": "Konfigurálja az alkalmazás frissítési prioritását. Válassza az Alapértelmezett lehetőséget, ha meg szeretné követelni, hogy az eszköz csatlakozzon a WiFi-hez, töltés alatt álljon, és ne legyen aktív használatban az alkalmazás frissítése előtt. A Magas prioritás lehetőséget választva azonnal frissítheti az alkalmazást, amint a fejlesztő közzétette azt, függetlenül a töltöttségi állapottól, a Wi-Fi-képességtől vagy az eszközön végzett végfelhasználói tevékenységtől. Válassza az Elhalasztva lehetőséget, hogy elhalassza az alkalmazásfrissítéseket 90 napig. A Magas prioritás és az elhalasztva csak DO-eszközök estén lép életbe.",
+ "configurationSettingsFormat": "A konfigurációs beállítások szövegformázása",
+ "ignoreVersionDetection": "A beállítást állítsa az Igen értékre azon alkalmazások esetében, melyeket automatikusan frissít az alkalmazás fejlesztője (mint például a Google Chrome).",
+ "ignoreVersionDetectionMacOSLobApp": "Válassza az Igen lehetőséget olyan alkalmazások esetében, amelyeket automatikusan frissít az alkalmazásfejlesztő, vagy ha csak az alkalmazás bundleID azonosítóját szeretné ellenőrizni a telepítés előtt. Ha az alkalmazás bundleID azonosítóját és verziószámát is szeretné ellenőrizni a telepítés előtt, válassza a Nem lehetőséget.",
+ "installAsManagedMacOSLobApp": "Ez a beállítás csak a macOS 11-es és újabb verzióra vonatkozik. Az alkalmazás telepítve lesz, de nem lesz felügyelet alá vonva a macOS 10.15-ös és korábbi verzióin.",
+ "installContextDropdown": "Válassza ki a megfelelő telepítési hatókört. Felhasználószintű telepítés esetén az alkalmazás csak a célfelhasználó számára települ, míg az eszközszintű telepítés esetében az alkalmazás az eszköz összes felhasználója számára telepítve lesz.",
+ "ldapUrl": "Ez az az LDAP-állomásnév, ahonnan az ügyfelek megkapják az e-mail-címzettek nyilvános titkosítási kulcsait. Az e-mailek titkosítva lesznek, ha rendelkezésre áll egy kulcs. Támogatott formátumok: - ldap.example.com
\r\n- ldap.example.com:123
\r\n- ldap://ldap.example.com
- ldap://ldap.example.com:123
- ldaps://ldap.example.com
\r\n- ldaps://ldap.example.com:123
",
+ "permissionsSettings": "Válassza ki a társított alkalmazás futtatókörnyezeti engedélyeit.",
+ "policyAssociatedApp": "Válassza ki az alkalmazást, amelyhez a szabályzat társítva lesz.",
+ "policyConfigurationSettings": "Válassza ki a szabályzat konfigurációs beállításainak megadásához használni kívánt módszert.",
+ "policyDescription": "Megadhatja a konfigurációs szabályzat leírását.",
+ "policyEnrollmentType": "Válassza ki, hogy ezek a beállítások az eszközkezeléssel, vagy pedig az Intune SDK-val létrehozott alkalmazásokkal legyenek-e kezelve.",
+ "policyName": "Adja meg a konfigurációs szabályzat nevét.",
+ "policyPlatform": "Válassza ki a platformot, amelyre az alkalmazáskonfigurálási szabályzat érvényes lesz.",
+ "policyProfileType": "Válassza ki eszközprofiltípusokat, amelyekre ez az alkalmazáskonfigurációs profil érvényes lesz",
+ "policySMime": "Az S/MIME-alapú aláírás és titkosítás beállításainak konfigurálása az Outlookban.",
+ "sMimeDeployCertsFromIntune": "Annak megadása, hogy az S/MIME-tanúsítványokat az Intune-ból kézbesíti-e a rendszer az Outlookban való használatra.\r\nAz Intune automatikusan képes telepíteni az aláírási és titkosítási tanúsítványokat a felhasználók számára a Céges portálon keresztül.",
+ "sMimeEnable": "Annak megadása, hogy engedélyezve vannak-e az S/MIME-vezérlők e-mail írásakor",
+ "sMimeEnableAllowChange": "Adja meg, hogy a felhasználó módosíthatja-e az S/MIME engedélyezése beállítást.",
+ "sMimeEncryptAllEmails": "Annak megadása, hogy az összes e-mailt titkosítani kell-e vagy sem. \r\nA titkosítás egy rejtjelező szöveggel konvertálja az adatokat úgy, hogy azokat csak a címzett tudja elolvasni.",
+ "sMimeEncryptAllEmailsAllowChange": "Adja meg, hogy a felhasználó módosíthatja-e az Összes e-mail titkosítása beállítást.",
+ "sMimeEncryptionCertProfile": "Az e-mailek titkosításához használandó tanúsítványprofil megadása.",
+ "sMimeSignAllEmails": "Annak megadása, hogy az összes e-mailt alá kell-e írni vagy sem.\r\nDigitális aláírás használatával ellenőrizhető az e-mail hitelessége, és biztosítható, hogy a tartalmát ne módosítsák illetéktelenül átvitel közben.",
+ "sMimeSignAllEmailsAllowChange": "Adja meg, hogy a felhasználó módosíthatja-e az Összes e-mail aláírása beállítást.",
+ "sMimeSigningCertProfile": "Az e-mailek aláírásához használandó tanúsítványprofil megadása.",
+ "sMimeUserNotificationType": "A felhasználók arról való értesítésének módja, hogy meg kell nyitniuk a Céges portált az Outlook S/MIME-tanúsítványainak lekéréséhez."
},
- "BooleanActions": {
- "allow": "Engedélyezés",
- "block": "Tiltás",
- "configured": "Konfigurálva",
- "disable": "Letiltás",
- "dontRequire": "Nem kötelező",
- "enable": "Engedélyezés",
- "hide": "Elrejtés",
- "limit": "Korlát",
- "notConfigured": "Nincs beállítva",
- "require": "Kötelező",
- "show": "Megjelenítés",
- "yes": "Igen"
- },
- "ProactiveRemediations": {
- "Create": {
- "Basics": {
- "DescriptionMultiLineTextBox": {
- "label": "Leírás",
- "placeholder": "Adja meg a leírást"
- },
- "NameTextBox": {
- "label": "Név",
- "placeholder": "Név megadása"
- },
- "PublisherTextBox": {
- "label": "Közzétevő",
- "placeholder": "Közzétevő megadása"
- },
- "VersionTextBox": {
- "label": "Verzió"
- },
- "headerDescription": "Létrehozhat egy új egyéni szkriptcsomagot a saját észlelési és javítási szkriptjeiből."
- },
- "ScopeTags": {
- "headerDescription": "Jelöljön ki egy vagy több csoportot, amelyet hozzá kíván rendelni a szkriptcsomaghoz."
- },
- "Settings": {
- "DetectionScriptMultiLineTextBox": {
- "label": "Észlelési szkript",
- "placeholder": "Bemeneti szkript szövege",
- "requiredValidationMessage": "Adja meg az észlelési szkriptet"
- },
- "EnforceScriptSignatureCheckOptionPicker": {
- "label": "Szkriptaláírás ellenőrzésének kényszerítése"
- },
- "LoggedOnCredentialsOptionPicker": {
- "label": "Szkript futtatása a bejelentkezéshez használt hitelesítő adatokkal"
- },
- "RemediationScript": {
- "infoBox": "Ez a szkript csak észlelési módban fog futni, mivel nem található szervizelési szkript."
- },
- "RemediationScriptMultiLineTextBox": {
- "label": "Szervizelési parancsfájl",
- "placeholder": "Bemeneti szkript szövege"
- },
- "RunIn64BitPSOptionPicker": {
- "label": "Szkript futtatása a 64 bites PowerShellben"
- },
- "ScriptMultiLineTextBox": {
- "base64EncodingValidationMessage": "Érvénytelen szkript. A szkript érvénytelen karaktereket tartalmaz."
- },
- "headerDescription": "Létrehozhat egy egyéni szkriptcsomagot a saját szkriptjeiből. A szkriptek alapértelmezés szerint naponta futnak a hozzárendelt eszközökön.",
- "infoBox": "Ez a szkript írásvédett. Előfordulhat, hogy a szkript néhány beállítása le van tiltva."
- },
- "title": "Egyéni szkript létrehozása",
- "ScriptProperties": {
- "GridHeaders": {
- "interval": "Intervallum",
- "time": "Dátum és idő"
- },
- "Interval": {
- "day": "Naponta ismétlődik",
- "days": "{0} naponta ismétlődik",
- "hour": "Óránként ismétlődik",
- "hours": "{0} óránként ismétlődik",
- "month": "Havonta ismétlődik",
- "months": "{0} havonta ismétlődik",
- "week": "Hetente ismétlődik",
- "weeks": "{0} hetente ismétlődik"
- },
- "Time": {
- "utc": "{0} (UTC)",
- "utcWithDate": "{1}, {0} (UTC)",
- "withDate": "{1}, {0}"
- }
- }
- },
- "Edit": {
- "title": "Szerkesztés – {0}"
- }
- },
"WindowsManagement": {
"Assignment": {
"noAssignmentCustomAttributeDisplayText": "Rendeljen hozzá egyéni attribútumot legalább egy csoporthoz. A hozzárendelések szerkesztéséhez nyissa meg a Tulajdonságok lapot.",
@@ -2708,910 +1644,6 @@
"shellScriptObjectName": "Héjszkript",
"successfullySavedPolicy": "Mentett {0}"
},
- "AssignmentFilters": {
- "assignmentFilterColumnHeader": "Szűrő",
- "noFilters": "Nincs"
- },
- "Category": {
- "airPlay": "AirPlay",
- "airPrint": "AirPrint",
- "androidDefenderAtp": "Microsoft Defender for Endpoint",
- "androidDeviceOwnerApplications": "Alkalmazások",
- "androidForWorkPassword": "Eszköz jelszava",
- "appManagement": "Alkalmazások engedélyezése vagy letiltása",
- "applicationGuard": "Microsoft Defender alkalmazásőr",
- "applicationRestrictions": "Korlátozott alkalmazások",
- "applicationVisibility": "Alkalmazások megjelenítése vagy elrejtése",
- "applications": "Alkalmazásáruház",
- "applicationsAndGames": "App Store, dokumentumok megtekintése, játékok",
- "applicationsAndGoogle": "Google Play Áruház",
- "appsAndExperience": "Alkalmazások és kezelőfelület",
- "associatedDomains": "Társított tartományok",
- "autonomousSingleAppMode": "Autonóm egyalkalmazásos mód",
- "azureOperationalInsights": "Azure Operational Insights",
- "bitLocker": "Windowsos titkosítás",
- "browser": "Böngésző",
- "builtinApps": "Beépített alkalmazások",
- "cellular": "Mobiltelefon",
- "cloudAndStorage": "Felhő és tárolás",
- "cloudPrint": "Felhőbeli nyomtató",
- "complianceEmailProfile": "E-mail",
- "connectedDevices": "Csatlakoztatott eszközök",
- "connectivity": "Mobiltelefon és kapcsolatok",
- "contentCaching": "Tartalom-gyorsítótárazás",
- "controlPanelAndSettings": "Vezérlőpult és Gépház",
- "credentialGuard": "Microsoft Defender Credential Guard",
- "customCompliance": "Egyéni megfelelőség",
- "customCompliancePreview": "Egyéni megfelelőség (előzetes verzió)",
- "customConfiguration": "Egyéni konfigurációs profil",
- "customOMASettings": "Egyéni OMA-URI beállítások",
- "customPreferences": "Preferenciafájl",
- "defender": "Microsoft Defender víruskereső",
- "defenderAntivirus": "Microsoft Defender víruskereső",
- "defenderExploitGuard": "Microsoft Defender - biztonsági rés kiaknázása elleni védelem",
- "defenderFirewall": "Microsoft Defender tűzfal",
- "defenderLocalSecurityOptions": "Helyi eszközbiztonsági beállítások",
- "defenderSecurityCenter": "Microsoft Defender biztonsági központ",
- "deliveryOptimization": "Kézbesítésoptimalizálás",
- "derivedCredentialAuthenticationConfiguration": "Származtatott hitelesítő adat",
- "deviceExperience": "Eszköz által nyújtott élmény",
- "deviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
- "deviceGuard": "Microsoft Defender alkalmazás-ellenőrzés",
- "deviceHealth": "Eszközállapot-figyelő",
- "devicePassword": "Eszközjelszó",
- "deviceProperties": "Eszköztulajdonságok",
- "deviceRestrictions": "Általános",
- "deviceSecurity": "Rendszerbiztonság",
- "display": "Megjelenítés",
- "domainJoin": "Csatlakozás tartományhoz",
- "domains": "Tartományok",
- "edgeBrowser": "Microsoft Edge Legacy (45-ös és korábbi verziók)",
- "edgeBrowserSmartScreen": "Microsoft Defender SmartScreen",
- "edgeKiosk": "Microsoft Edge kioszkmód",
- "editionUpgrade": "Kiadásfrissítés",
- "education": "Oktatás",
- "educationDeviceCerts": "Eszköztanúsítványok",
- "educationStudentCerts": "Diáktanúsítványok",
- "educationTakeATest": "Vizsga",
- "educationTeacherCerts": "Oktatói tanúsítványok",
- "emailProfile": "E-mail",
- "enterpriseDataProtection": "Windows Information Protection",
- "expeditedCheckin": "Mobileszköz-kezelés konfigurációja",
- "extensibleSingleSignOn": "Egyszeri bejelentkezéses alkalmazásbővítmény",
- "filevault": "FileVault",
- "firewall": "Tűzfal",
- "games": "Játékok",
- "gatekeeper": "Forgalomirányító",
- "healthMonitoring": "Állapotmonitorozás",
- "homeScreenLayout": "Kezdőképernyő-elrendezés",
- "iOSWallpaper": "Tapéta",
- "importedPFX": "Importált PKCS-tanúsítvány",
- "iosDefenderAtp": "Microsoft Defender for Endpoint",
- "iosKiosk": "Kioszkmód",
- "kernelExtensions": "Kernelbővítmények",
- "keyboardAndDictionary": "Billentyűzet és szótár",
- "kiosk": "Kioszkmód",
- "kioskAndroidEnterprise": "Dedikált eszközök",
- "kioskConfiguration": "Kioszkmód",
- "kioskConfigurationV2": "Kioszkmód",
- "kioskWebBrowser": "Kioszkmódú webböngésző",
- "lockScreenMessage": "Zárolási képernyőn látható üzenet",
- "lockedScreenExperience": "Zárolási képernyő felülete",
- "logging": "Jelentéskészítés és telemetria",
- "loginItems": "Bejelentkezési elemek",
- "loginWindow": "Bejelentkezési ablak",
- "macDefenderAtp": "Microsoft Defender for Endpoint",
- "maintenance": "Karbantartás",
- "malware": "Kártevők",
- "messaging": "Üzenetküldés",
- "networkBoundary": "Hálózathatár",
- "networkProxy": "Hálózati proxy",
- "notifications": "Alkalmazásértesítések",
- "pKCS": "PKCS-tanúsítvány",
- "password": "Jelszó",
- "personalProfile": "Személyes profil",
- "personalization": "Személyre szabás",
- "policyOverride": "Csoportházirend felülbírálása",
- "powerSettings": "Energiaellátási beállítások",
- "printer": "Nyomtató",
- "privacy": "Adatvédelem",
- "privacyPerApp": "Alkalmazásonkénti adatvédelmi kivételek",
- "privacyPreferences": "Adatvédelmi beállítások",
- "projection": "Vetület",
- "sCCMCompliance": "Configuration Manager-megfelelőség",
- "sCEP": "SCEP-tanúsítvány",
- "sCEPProperties": "SCEP-tanúsítvány",
- "sMode": "Módváltás (csak Windows Insider)",
- "safari": "Safari",
- "search": "Keresés",
- "session": "Munkamenet",
- "sharedDevice": "Megosztott iPad",
- "sharedPCAccountManager": "Megosztott többfelhasználós eszköz",
- "singleSignOn": "Egyszeri bejelentkezés",
- "smartScreen": "Microsoft Defender SmartScreen",
- "softwareUpdates": "Beállítások",
- "start": "Indítás",
- "systemExtensions": "Rendszerbővítmények",
- "systemSecurity": "Rendszerbiztonság",
- "trustedCert": "Megbízható tanúsítvány",
- "updates": "Frissítések",
- "userRights": "Felhasználói jogok",
- "usersAndAccounts": "Felhasználók és fiókok",
- "vPN": "Alapszintű VPN",
- "vPNApps": "Automatikus VPN",
- "vPNAppsAndTrafficRules": "Alkalmazások és adatforgalmi szabályok",
- "vPNConditionalAccess": "Feltételes hozzáférés",
- "vPNConnectivity": "Hálózati kapcsolat",
- "vPNDNSTriggers": "DNS-beállítások",
- "vPNIKEv2": "IKEv2-beállítások",
- "vPNProxy": "Proxy",
- "vPNSplitTunneling": "Vegyes alagútkezelés",
- "vPNTrustedNetwork": "Megbízható hálózatok észlelése",
- "webContentFilter": "Webes tartalomszűrés",
- "wiFi": "Wi-Fi",
- "win10Wifi": "Wi-Fi",
- "windowsAtp": "Microsoft Defender for Endpoint",
- "windowsDefenderATP": "Microsoft Defender for Endpoint",
- "windowsHelloForBusiness": "Vállalati Windows Hello",
- "windowsSpotlight": "Windows Reflektorfény",
- "wiredNetwork": "Vezetékes hálózat",
- "wireless": "Vezeték nélküli hálózat",
- "wirelessProjection": "Vezeték nélküli kivetítés",
- "workProfile": "Munkahelyi profil beállításai",
- "workProfilePassword": "Munkahelyi profil jelszava",
- "xboxServices": "Xbox-szolgáltatások",
- "zebraMx": "MX-profil (csak Zebra)",
- "complianceActionsLabel": "Műveletek meg nem felelés esetén"
- },
- "MicrosoftEdgeChannel": {
- "beta": "Beta",
- "dev": "Dev",
- "stable": "Stable"
- },
- "ConfigurationTypes": {
- "Table": {
- "androidDeviceOwnerGeneral": "Eszközkorlátozások (eszköztulajdonos)",
- "androidForWorkGeneral": "Eszközkorlátozások (munkahelyi profil)"
- },
- "androidCustom": "Egyéni",
- "androidDeviceOwnerGeneral": "Eszközkorlátozások",
- "androidDeviceOwnerPkcs": "PKCS-tanúsítvány",
- "androidDeviceOwnerScep": "SCEP-tanúsítvány",
- "androidDeviceOwnerTrustedCertificate": "Megbízható tanúsítvány",
- "androidDeviceOwnerVpn": "VPN",
- "androidDeviceOwnerWiFi": "Wi-Fi",
- "androidEmailProfile": "E-mail (csak Samsung KNOX)",
- "androidForWorkCustom": "Egyéni",
- "androidForWorkEmailProfile": "E-mail",
- "androidForWorkGeneral": "Eszközkorlátozások",
- "androidForWorkImportedPFX": "Importált PKCS-tanúsítvány",
- "androidForWorkOemConfig": "OEMConfig",
- "androidForWorkPKCS": "PKCS-tanúsítvány",
- "androidForWorkSCEP": "SCEP-tanúsítvány",
- "androidForWorkTrustedCertificate": "Megbízható tanúsítvány",
- "androidForWorkVpn": "VPN",
- "androidForWorkWiFi": "Wi-Fi",
- "androidGeneral": "Eszközkorlátozások",
- "androidImportedPFX": "Importált PKCS-tanúsítvány",
- "androidPKCS": "PKCS-tanúsítvány",
- "androidSCEP": "SCEP-tanúsítvány",
- "androidTrustedCertificate": "Megbízható tanúsítvány",
- "androidVPN": "VPN",
- "androidWiFi": "Wi-Fi",
- "androidZebraMx": "MX-profil (csak Zebra)",
- "complianceAndroid": "Androidos megfelelőségi szabályzat",
- "complianceAndroidDeviceOwner": "Teljes mértékben felügyelt, dedikált, vállalati tulajdonban lévő munkahelyi profil",
- "complianceAndroidEnterprise": "Személyesen birtokolt munkahelyi profil",
- "complianceAndroidForWork": "Android for Work-megfelelőségi szabályzat",
- "complianceIos": "iOS-es megfelelőségi szabályzat",
- "complianceMac": "Mac-es megfelelőségi szabályzat",
- "complianceWindows10": "Windows 10-es és újabb megfelelőségi szabályzat",
- "complianceWindows10Mobile": "Windows 10 Mobile-os megfelelőségi szabályzat",
- "complianceWindows8": "Windows 8-as megfelelőségi szabályzat",
- "complianceWindowsPhone": "Windows Phone-os megfelelőségi szabályzat",
- "exchangeActiveSync": "Exchange Active Sync",
- "iosCustom": "Egyéni",
- "iosDerivedCredentialAuthenticationConfiguration": "Származtatott PIV-hitelesítőadatok",
- "iosDeviceFeatures": "Eszközfunkciók",
- "iosEDU": "Oktatás",
- "iosEducation": "Oktatás",
- "iosEmailProfile": "E-mail",
- "iosGeneral": "Eszközkorlátozások",
- "iosImportedPFX": "Importált PKCS-tanúsítvány",
- "iosPKCS": "PKCS-tanúsítvány",
- "iosPresets": "Előzetes beállítások",
- "iosSCEP": "SCEP-tanúsítvány",
- "iosTrustedCertificate": "Megbízható tanúsítvány",
- "iosVPN": "VPN",
- "iosVPNZscaler": "VPN",
- "iosWiFi": "Wi-Fi",
- "macCustom": "Egyéni",
- "macDeviceFeatures": "Eszközfunkciók",
- "macEndpointProtection": "Endpoint Protection",
- "macExtensions": "Bővítmények",
- "macGeneral": "Eszközkorlátozások",
- "macImportedPFX": "Importált PKCS-tanúsítvány",
- "macSCEP": "SCEP-tanúsítvány",
- "macTrustedCertificate": "Megbízható tanúsítvány",
- "macVPN": "VPN",
- "macWiFi": "Wi-Fi",
- "settingsCatalog": "Beállításkatalógus (előzetes verzió)",
- "unsupported": "Nem támogatott",
- "windows10AdministrativeTemplate": "Felügyeleti sablonok (előzetes verzió)",
- "windows10Atp": "Végponthoz készült Microsoft Defender (Windows 10-es vagy újabb operációs rendszert futtató asztali eszközökhöz)",
- "windows10Custom": "Egyéni",
- "windows10DesktopSoftwareUpdate": "Szoftverfrissítések",
- "windows10DeviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
- "windows10EmailProfile": "E-mail",
- "windows10EndpointProtection": "Endpoint Protection",
- "windows10EnterpriseDataProtection": "Windows Information Protection",
- "windows10General": "Eszközkorlátozások",
- "windows10ImportedPFX": "Importált PKCS-tanúsítvány",
- "windows10Kiosk": "Kioszkmód",
- "windows10NetworkBoundary": "Hálózathatár",
- "windows10PKCS": "PKCS-tanúsítvány",
- "windows10PolicyOverride": "Csoportházirend felülbírálása",
- "windows10SCEP": "SCEP-tanúsítvány",
- "windows10SecureAssessmentProfile": "Oktatási profil",
- "windows10SharedPC": "Megosztott többfelhasználós eszköz",
- "windows10TeamGeneral": "Eszközkorlátozások (Windows 10 Team)",
- "windows10TrustedCertificate": "Megbízható tanúsítvány",
- "windows10VPN": "VPN",
- "windows10WiFi": "Wi-Fi",
- "windows10WiFiCustom": "Egyéni Wi-Fi",
- "windows8General": "Eszközkorlátozások",
- "windows8SCEP": "SCEP-tanúsítvány",
- "windows8TrustedCertificate": "Megbízható tanúsítvány",
- "windows8VPN": "VPN",
- "windows8WiFi": "Wi-Fi importálás",
- "windowsDeliveryOptimization": "Kézbesítésoptimalizálás",
- "windowsDomainJoin": "Csatlakozás tartományhoz",
- "windowsEditionUpgrade": "Kiadásfrissítés és módváltás",
- "windowsIdentityProtection": "Identitásvédelem",
- "windowsPhoneCustom": "Egyéni",
- "windowsPhoneEmailProfile": "E-mail",
- "windowsPhoneGeneral": "Eszközkorlátozások",
- "windowsPhoneImportedPFX": "Importált PKCS-tanúsítvány",
- "windowsPhoneSCEP": "SCEP-tanúsítvány",
- "windowsPhoneTrustedCertificate": "Megbízható tanúsítvány",
- "windowsPhoneVPN": "VPN",
- "IosUpdate": "iOS-frissítési szabályzat"
- },
- "WindowsEnrollment": {
- "coManagementAuthorityDesc": "Configuration Manager-integráció közös felügyeleti beállításainak konfigurálása",
- "coManagementAuthorityTitle": "Közös felügyeleti beállítások ",
- "deploymentProfiles": "Windows AutoPilot Deployment-profilok",
- "description": "További információ arról a hét módszerről, amellyel a felhasználók és a rendszergazdák regisztrálhatják a Windows 10/11-es PC-ket az Intune-ban.",
- "descriptionLabel": "Windows-regisztrációs módszerek",
- "enrollmentStatusPage": "Regisztráció állapotát jelző lap"
- },
- "Platform": {
- "all": "Az összes",
- "android": "Android-eszközadminisztrátor",
- "androidAOSP": "Android (AOSP)",
- "androidEnterprise": "Android Enterprise",
- "androidForWork": "Android Enterprise",
- "androidWorkProfile": "Android Enterprise",
- "common": "Közös",
- "iOS": "iOS/iPadOS",
- "iosAndAndroidPlatformLabel": "iOS és Android",
- "iosCommaAndroidPlatformLabel": "iOS, Android",
- "linux": "Linux",
- "macOS": "macOS",
- "unknown": "Ismeretlen",
- "unsupported": "Nem támogatott",
- "windows": "Windows",
- "windows10": "Windows 10 és újabb rendszerek",
- "windows10CM": "Windows 10 és újabb (ConfigMgr)",
- "windows10Holo": "Windows 10 Holographic",
- "windows10Mobile": "Windows 10 Mobile",
- "windows10Team": "Windows 10 Team",
- "windows10X": "Windows 10X",
- "windows8": "Windows 8.1 és újabb rendszerek",
- "windows8And10": "Windows 8 és 10",
- "windowsPhone": "Windows Phone 8.1",
- "windows10AndLater": "Windows 10 és újabb rendszerek",
- "windows10AndWindowsServer": "Windows 10, Windows 11 és Windows Server (ConfigMgr)",
- "windows10andLaterCM": "Windows 10 és újabb (ConfigMgr)",
- "holoLens": "HoloLens",
- "surfaceHub2": "Surface Hub 2",
- "surfaceHub2S": "Surface Hub 2S",
- "windowsPC": "Windows rendszerű számítógép"
- },
- "EnrollmentRestrictions": {
- "DeletePayloadLink": {
- "content": "A(z) {0} egy vagy több szabályzatkészletben szerepel. A(z) {0} törlése után a továbbiakban nem tudja hozzárendelni ezeken a szabályzatkészleteken keresztül. Biztosan törli?",
- "contentWithError": "A(z) {0} egy vagy több szabályzatkészletben szerepelhet. A(z) {0} törlése után a továbbiakban nem tudja hozzárendelni ezeken a szabályzatkészleteken keresztül. Biztosan törli?",
- "header": "Biztosan törli ezt a korlátozást?"
- },
- "DeviceLimit": {
- "description": "Adja meg, hogy egy felhasználó legfeljebb hány eszközt léptethet be.",
- "header": "Eszközszámkorlátok",
- "info": "Megadják, hogy egy felhasználó hány eszközt léptethet be."
- },
- "DeviceType": {
- "VersionValidation": {
- "aOSP": "1.0 vagy újabb szükséges.",
- "android": "Érvényes verziószámot adjon meg. Példák: 5.0, 5.5.1, 6.0.0.1",
- "androidForWork": "Érvényes verziószámot adjon meg. Példák: 5.0, 5.1.1",
- "iOS": "Érvényes verziószámot adjon meg. Példák: 9.0, 10.0, 9.0.2",
- "mac": "Érvényes verziószámot adjon meg. Példák: 10, 10.10, 10.10.1",
- "min": "A minimális verziószám nem lehet kisebb a következő verziószámnál: {0}",
- "minMax": "A minimális verziószám nem lehet nagyobb a maximális verziószámnál.",
- "windows": "10.0-s vagy újabb verziójúnak kell lennie. A 8.1-es eszközök engedélyezéséhez hagyja üresen a mezőt",
- "windowsMobile": "10.0-s vagy újabb verziójúnak kell lennie. A 8.1-es eszközök engedélyezéséhez hagyja üresen a mezőt"
- },
- "allPlatformsBlocked": "Minden eszközplatform blokkolva van. A platformkonfiguráció engedélyezéséhez engedélyezze a platformregisztrációt.",
- "blockManufacturerPlaceHolder": "Gyártó neve",
- "blockManufacturersHeader": "Letiltott gyártók",
- "cannotRestrict": "A korlátozás nem támogatott",
- "configurationDescription": "Adja meg azokat a platformkonfigurációs korlátozásokat, amelyeknek meg kell felelnie egy regisztrálandó eszköznek. Az eszközök regisztrálás utáni korlátozásához használjon megfelelőségi szabályzatokat. A verziókat főverzió.alverzió.buildszám formátumban definiálja. A verziókorlátozások csak a Céges portál alkalmazással regisztrált eszközökre vonatkoznak. Az Intune alapértelmezés szerint személyes tulajdonúként sorolja be az eszközöket. Az eszközök cégesként való besorolásához további műveletekre van szükség.",
- "configurationDescriptionLabel": "További információ a beléptetési korlátozások beállításáról",
- "configurations": "Platformok konfigurálása",
- "deviceManufacturer": "Eszköz gyártója",
- "header": "Eszköztípus-korlátozások",
- "info": "Megadják, hogy mely platformok, verziók és felügyeleti típusok regisztrálhatók.",
- "manufacturer": "Gyártó",
- "max": "Maximális",
- "maxVersion": "Maximális verzió",
- "min": "Min.",
- "minVersion": "Legalacsonyabb verzió",
- "newPlatforms": "Új platformokat engedélyezett. Fontolja meg a platformkonfigurációk frissítését.",
- "personal": "Személyes tulajdonú",
- "platform": "Platform",
- "platformDescription": "A következő platformok regisztrálását engedélyezheti. Csak azokat a platformokat tiltsa le, amelyeket nem fog támogatni. Az engedélyezett platformokhoz további regisztrációs korlátozások konfigurálhatók.",
- "platformSettings": "Platformbeállítások",
- "platforms": "Platformok kiválasztása",
- "platformsSelected": "{0} platform kijelölve",
- "type": "Típus",
- "versions": "verziók",
- "versionsRange": "Tartomány minimális és maximális értéke:",
- "windowsTooltip": "A regisztráció korlátozása a mobileszköz-kezelés segítségével. Ez a PC-s ügynök telepítését nem korlátozza. Csak a Windows 10 és Windows 11 verziók támogatottak. A Windows 8.1 engedélyezéséhez hagyja üresen a verzió mezőt."
- },
- "Priority": {
- "saved": "Sikeresen mentette a szoftverkorlátozási prioritásokat."
- },
- "Row": {
- "announce": "Prioritás: {0}, név: {1}, hozzárendelve: {2}"
- },
- "Table": {
- "deployed": "Üzembe helyezve",
- "name": "Név",
- "priority": "Prioritás"
- },
- "Type": {
- "limit": "Eszközszám-korlátozás szerkesztése",
- "type": "Eszköztípus-korlátozás"
- },
- "allUsers": "Minden felhasználó",
- "androidRestrictions": "Android-korlátozások",
- "create": "Korlátozás létrehozása",
- "defaultLimitDescription": "Ez a csoporttagságtól függetlenül az összes felhasználóra a legalacsonyabb prioritással alkalmazott alapértelmezett eszközszámkorlát.",
- "defaultTypeDescription": "Ez a csoporttagságtól függetlenül az összes felhasználóra a legalacsonyabb prioritással alkalmazott alapértelmezett eszköztípuskorlát.",
- "defaultWhfbDescription": "Ez a csoporttagságtól függetlenül az összes felhasználóra a legalacsonyabb prioritással alkalmazott alapértelmezett Vállalati Windows Hello-konfiguráció.",
- "deleteMessage": "Az érintett felhasználók a következő legmagasabb prioritású hozzárendelt korlát, illetve ha nincs más korlát hozzárendelve, az alapértelmezett korlát szerint korlátozva lesznek.",
- "deleteTitle": "Biztosan törli a(z) {0} korlátozást?",
- "descriptionHint": "Egy rövid bekezdés, amely leírja a korlátozás beállításai által meghatározott üzleti felhasználást vagy korlátozási szintet.",
- "edit": "Korlátozás szerkesztése",
- "info": "Az eszköznek meg kell felelnie a felhasználójához hozzárendelt legmagasabb prioritású regisztrációs korlátozásoknak. A prioritást az eszközkorlátozás húzásával módosíthatja. Az alapértelmezett korlátozások, amelyek az összes felhasználó esetében a legalacsonyabb prioritású korlátozások, a felhasználó nélküli regisztrációk szabályozására szolgálnak. Az alapértelmezett korlátozások szerkeszthetők, de nem törölhetők.",
- "iosRestrictions": "iOS-korlátozások",
- "mDM": "MDM",
- "macRestrictions": "MacOS-korlátozások",
- "maxVersion": "Maximális verzió",
- "minVersion": "Minimális verzió",
- "nameHint": "Ez lesz a korlátozáskészlet azonosítása céljából megjelenített elsődleges attribútum.",
- "noAssignmentsStatusBar": "Rendeljen hozzá korlátozást legalább egy csoporthoz. Kattintson a Tulajdonságok elemre.",
- "notFound": "A korlátozás nem található. Lehet, hogy már törölték.",
- "personallyOwned": "Személyes tulajdonú eszközök",
- "restriction": "Korlátozás",
- "restrictionLowerCase": "korlátozást",
- "restrictionType": "Korlátozás típusa",
- "selectType": "Válassza ki a korlátozás típusát",
- "selectValidation": "Válasszon platformot",
- "typeHint": "Az eszköztulajdonságok korlátozására válassza az eszköztípuskorlátot. Az eszközök felhasználónkénti számának korlátozására válassza az eszközszámkorlátot.",
- "typeRequired": "A korlátozás típusának megadása kötelező.",
- "winPhoneRestrictions": "Windows Phone-korlátozások",
- "windowsRestrictions": "Windows-korlátozások"
- },
- "Titles": {
- "ChromeOs": {
- "devices": "Chrome OS-eszközök"
- },
- "ManagedDesktop": {
- "adminContacts": "Rendszergazdai kapcsolatok",
- "appPackaging": "Alkalmazás csomagolása",
- "devices": "Eszközök",
- "feedback": "Visszajelzés",
- "gettingStarted": "Kezdeti lépések",
- "messages": "Üzenetek",
- "onlineResources": "Online erőforrások",
- "serviceRequests": "Szolgáltatáskérelmek",
- "settings": "Beállítások",
- "tenantEnrollment": "Bérlői regisztráció"
- },
- "actions": "Meg nem felelés esetén végrehajtandó műveletek",
- "advancedExchangeSettings": "Exchange Online-beállítások",
- "advancedThreatProtection": "Microsoft Defender for Endpoint",
- "allApps": "Minden alkalmazás",
- "allDevices": "Minden eszköz",
- "androidFotaDeployments": "Android FOTA üzemelő példányok",
- "appBundles": "Alkalmazáskötegek",
- "appCategories": "Alkalmazáskategóriák",
- "appConfigPolicies": "Alkalmazáskonfigurációs szabályzatok",
- "appInstallStatus": "Alkalmazás telepítésének állapota",
- "appLicences": "Alkalmazáslicencek",
- "appProtectionPolicies": "Alkalmazásvédelmi szabályzatok",
- "appProtectionStatus": "Alkalmazásvédelem állapota",
- "appSelectiveWipe": "Alkalmazás szelektív törlése",
- "appleVppTokens": "Apple VPP-tokenek",
- "apps": "Alkalmazások",
- "assign": "Feladatok",
- "assignedPermissions": "Hozzárendelt engedélyek",
- "assignedRoles": "Hozzárendelt szerepkörök",
- "autopilotDeploymentReport": "Autopilot-beli üzemelő példányok (előzetes verzió)",
- "brandingAndCustomization": "Testreszabás",
- "cartProfiles": "Kocsiprofilok",
- "certificateConnectors": "Tanúsítvány-összekötők",
- "chromeEnterprise": "Chrome Enterprise",
- "compliancePolicies": "Megfelelőségi szabályzatok",
- "complianceScriptManagement": "Szkriptek",
- "complianceScriptManagementPreview": "Szkriptek (előzetes verzió)",
- "complianceSettings": "Megfelelőségi szabályzat beállításai",
- "conditionStatements": "Feltételutasítások",
- "conditions": "Helyek",
- "configMgr": "Microsoft Endpoint Configuration Manager",
- "configurationProfiles": "Konfigurációs profilok",
- "configurationProfilesPreview": "Konfigurációprofilok (előzetes verzió)",
- "connectorsAndTokens": "Összekötők és tokenek",
- "corporateDeviceIdentifiers": "Céges készülékazonosítók",
- "customAttributes": "Egyéni attribútumok",
- "customNotifications": "Egyéni értesítések",
- "deploymentSettings": "Üzembe helyezési beállítások",
- "derivedCredentials": "Származtatott hitelesítő adatok",
- "deviceActions": "Eszközműveletek",
- "deviceCategories": "Eszközkategóriák",
- "deviceCleanUp": "Eszközök adattörlési szabályai",
- "deviceEnrollmentManagers": "Készülékregisztráció-kezelők",
- "deviceExecutionStatus": "Eszköz állapota",
- "deviceLimitEnrollmentRestrictions": "Eszközszámkorlátok beléptetése",
- "deviceTypeEnrollmentRestrictions": "Eszközplatformra vonatkozó korlátozások beléptetése",
- "devices": "Eszközök",
- "discoveredApps": "Detektált alkalmazások",
- "embeddedSIM": "Mobilhálózati eSIM-profilok (Előzetes verzió)",
- "enrollDevices": "Eszközök regisztrálása",
- "enrollmentFailures": "Sikertelen regisztrálások",
- "enrollmentNotifications": "Regisztrációs értesítések (Előzetes verzió)",
- "enrollmentRestrictions": "Regisztrációs korlátozások",
- "exchangeActiveSync": "Exchange ActiveSync",
- "exchangeServiceConnectors": "Exchange szolgáltatás-összekötők",
- "failuresForFeatureUpdates": "Szolgáltatás-frissítési hibák (Előzetes verzió)",
- "failuresForQualityUpdates": "A Windows gyorsított frissítés hibái (előzetes verzió)",
- "featureFlighting": "Funkciótesztelés",
- "featureUpdateDeployments": "Funkciófrissítések Windows 10-es és újabb verziókhoz (előzetes verzió)",
- "flighting": "Tesztelés",
- "fotaUpdate": "Belső vezérlőprogram vezeték nélküli frissítése",
- "groupPolicy": "Felügyeleti sablonok",
- "groupPolicyAnalytics": "Csoportházirend-elemzés",
- "helpSupport": "Súgó és támogatás",
- "helpSupportReplacement": "Súgó és támogatás ({0})",
- "iOSAppProvisioning": "iOS-es alkalmazáskiépítési profilok",
- "incompleteUserEnrollments": "Hiányos felhasználóregisztrációk",
- "intuneRemoteAssistance": "Távsegítség (előnézet)",
- "iosUpdates": "Az iOS/iPadOS frissítési szabályzatai",
- "legacyPcManagement": "Örökölt PC-kezelés",
- "macOSSoftwareUpdate": "macOS-frissítési szabályzatok",
- "macOSSoftwareUpdateAccountSummaries": "MacOS-es eszközök telepítési állapota",
- "macOSSoftwareUpdateCategorySummaries": "Szoftverfrissítések összegzése",
- "macOSSoftwareUpdateStateSummaries": "frissítések",
- "managedGooglePlay": "Felügyelt Google Play",
- "msfb": "Microsoft Store Vállalatoknak",
- "myPermissions": "Engedélyeim",
- "notifications": "Értesítések",
- "officeApps": "Office-alkalmazások",
- "officeProPlusPolicies": "Office-alkalmazásokra vonatkozó szabályzatok",
- "onPremise": "Helyszíni",
- "onPremisesConnector": "Exchange ActiveSync helyszíni összekötő",
- "onPremisesDeviceAccess": "Exchange ActiveSync-eszközök",
- "onPremisesManageAccess": "Helyszíni Exchange-hozzáférés",
- "outOfDateIosDevices": "iOS-eszközök telepítési hibái",
- "overview": "Áttekintés",
- "partnerDeviceManagement": "Partnereszköz-kezelés",
- "perUpdateRingDeploymentState": "Frissítési kör telepítési állapota szerint",
- "permissions": "Engedélyek",
- "platformApps": "{0} alkalmazás",
- "platformDevices": "{0} eszköz",
- "platformEnrollment": "{0} regisztrációja",
- "policies": "Szabályzatok",
- "previewMDMDevices": "Minden felügyelt eszköz (előzetes verzió)",
- "profiles": "Profilok",
- "properties": "Tulajdonságok",
- "reports": "Jelentések",
- "retireNoncompliantDevices": "Nem megfelelő eszközök kivonása",
- "retireNoncompliantDevicesPreview": "Retire noncompliant devices (preview)",
- "role": "Szerepkör",
- "scriptManagement": "Parancsfájlok",
- "securityBaselines": "Biztonsági alapkonfigurációk",
- "serviceToServiceConnector": "Exchange Online Connector",
- "shellScripts": "Héjszkriptek",
- "teamViewerConnector": "TeamViewer-összekötő",
- "telecomeExpenseManagement": "Távközlési költségek kezelése",
- "tenantAdmin": "Bérlői adminisztrátor",
- "tenantAdministration": "Bérlői felügyelet",
- "termsAndConditions": "Feltételek és kikötések",
- "titles": "Címek",
- "troubleshootSupport": "Hibaelhárítás + ügyfélszolgálat",
- "user": "Felhasználó",
- "userExecutionStatus": "Felhasználó állapota",
- "warranty": "Jótállási szállítók",
- "wdacSupplementalPolicies": "Az S mód kiegészítő szabályzatai",
- "windows10DriverUpdate": "Illesztőprogram-frissítések Windows 10-es és újabb verziókhoz (előzetes verzió)",
- "windows10QualityUpdate": "Minőségi frissítések Windows 10-es és újabb verziókhoz (előzetes verzió)",
- "windows10UpdateRings": "Frissítési körök Windows 10 és újabb verziókhoz",
- "windows10XPolicyFailures": "Windows 10X-szabályzat hibái",
- "windowsEnterpriseCertificate": "Windowsos vállalati tanúsítvány",
- "windowsManagement": "PowerShell-szkriptek",
- "windowsSideLoadingKeys": "Közvetlen telepítési kulcsok (Windows)",
- "windowsSymantecCertificate": "Windows DigiCert-tanúsítvány",
- "windowsThreatReport": "Veszélyforrás állapota"
- },
- "ScopeTypes": {
- "allDevices": "Minden eszköz",
- "allUsers": "Minden felhasználó",
- "allUsersAndDevices": "Minden felhasználó és minden eszköz",
- "selectedGroups": "Kiválasztott csoportok"
- },
- "DetectionRules": {
- "ComparisonOperators": {
- "equals": "Egyenlő",
- "greaterThan": "Nagyobb, mint",
- "greaterThanOrEqualTo": "nagyobb vagy egyenlő",
- "lessThan": "Kevesebb, mint",
- "lessThanOrEqualTo": "kisebb vagy egyenlő",
- "notEqualTo": "Nem egyenlő"
- },
- "CustomScript": {
- "enforceSignatureCheck": "Szkriptaláírás ellenőrzésének kényszerítése és a szkript csendes futtatása",
- "enforceSignatureCheckTooltip": "Válassza az Igen lehetőséget annak ellenőrzéséhez, hogy a szkriptet egy megbízható kiadó írta alá, ami lehetővé teszi, hogy a szkript figyelmeztetések és megerősítés kérése nélkül fusson. A szkript letiltás nélkül fog futni. Válassza a Nem (alapértelmezett) lehetőséget, ha a szkriptet végfelhasználói megerősítéssel szeretné futtatni az aláírás ellenőrzése nélkül.",
- "header": "Egyéni észlelési szkript használata",
- "runAs32Bit": "Szkript futtatása 32 bites folyamatként 64 bites ügyfeleken",
- "runAs32BitTooltip": "Válassza az Igen lehetőséget a szkript 32 bites folyamatban való futtatásához 64 bites ügyfeleken. Válassza a Nem (alapértelmezett) lehetőséget, ha a szkriptet 64 bites folyamatban szeretné futtatni 64 bites ügyfeleken. A szkriptet a 32 bites ügyfelek 32 bites folyamatban futtatják.",
- "scriptFile": "Parancsfájl",
- "scriptFileNotSelectedValidation": "Nincs kijelölve szkriptfájl.",
- "scriptFileTooltip": "Válasszon ki egy PowerShell-szkriptet, amely észleli az alkalmazás jelenlétét az ügyfélen. Az alkalmazás észlelése akkor történik meg, ha a szkript 0 értékű kilépési kódot ad vissza, és sztringértéket ír az STDOUT kimenetbe."
- },
- "Manual": {
- "FileRule": {
- "DetectionMethodOptions": {
- "dateCreated": "Létrehozás dátuma",
- "dateModified": "Módosítás dátuma",
- "doesNotExist": "A megadott fájl vagy mappa nem létezik.",
- "fileOrFolderExists": "A fájl vagy mappa létezik",
- "sizeInMB": "Méret (MB)",
- "version": "Sztring (verzió)"
- },
- "associatedWith32Bit": "64 bites ügyfeleken egy 32 bites alkalmazással társított",
- "associatedWith32BitTooltip": "Válassza az Igen lehetőséget az elérési út környezeti változóinak 32 bites környezetben való kibontásához 64 bites ügyfeleken. Válassza a Nem (alapértelmezett) lehetőséget, ha az elérési út változóit 64 bites környezetben szeretné kibontani 64 bites ügyfeleken. A 32 bites ügyfelek mindig a 32 bites környezetet fogják használni.",
- "detectionMethod": "Észlelési módszer",
- "detectionMethodTooltip": "Válassza ki az alkalmazás jelenlétének érvényesítésére használt észlelési módszer típusát.",
- "fileOrFolder": "Fájl vagy mappa",
- "fileOrFolderToolTip": "A felderítendő fájl vagy mappa.",
- "operator": "Operátor",
- "operatorTooltip": "Válassza ki az operátort az összehasonlítás érvényesítéséhez használt észlelési módszerhez.",
- "path": "Elérési út",
- "pathTooltip": "A felderítendő fájlt vagy mappát tartalmazó mappa teljes elérési útja.",
- "value": "Érték",
- "valueTooltip": "Válasszon egy olyan értéket, amely megfelel a választott észlelési módszernek. A dátumészlelési módszereket helyi időben kell megadni."
- },
- "GridColumns": {
- "pathOrCode": "Elérési út/kód",
- "type": "Típus"
- },
- "MsiRule": {
- "operator": "Operátor",
- "operatorTooltip": "Válassza ki az operátort az MSI-termékverzió érvényesítésének összehasonlításához.",
- "productCode": "MSI-termékkód",
- "productCodeTooltip": "Egy érvényes MSI-termékkód az alkalmazáshoz.",
- "productVersion": "Érték",
- "productVersionCheck": "MSI-termékverzió ellenőrzése",
- "productVersionCheckTooltip": "Válassza az Igen lehetőséget, ha az MSI-termékkód mellett az MSI-termékverziót is ellenőrizni szeretné.",
- "productVersionTooltip": "Az MSI termékverziójának megadása az alkalmazáshoz."
- },
- "RegistryRule": {
- "DetectionMethodOptions": {
- "integerComparison": "Egész szám összehasonlítása",
- "keyDoesNotExist": "A kulcs nem létezik",
- "keyExists": "A kulcs létezik",
- "stringComparison": "Sztringek összehasonlítása",
- "valueDoesNotExist": "Az érték nem létezik",
- "valueExists": "Az érték már létezik",
- "versionComparison": "Verziók összehasonlítása"
- },
- "associatedWith32Bit": "64 bites ügyfeleken egy 32 bites alkalmazással társított",
- "associatedWith32BitTooltip": "Válassza az Igen lehetőséget a 32 bites regisztrációs adatbázisban való kereséshez 64 bites ügyfeleken. Válassza a Nem (alapértelmezett) lehetőséget, ha a 64 bites regisztrációs adatbázisban szeretne keresni 64 bites ügyfeleken. A 32 bites ügyfelek mindig a 32 bites regisztrációs adatbázisban keresnek.",
- "detectionMethod": "Észlelési módszer",
- "detectionMethodTooltip": "Válassza ki az alkalmazás jelenlétének érvényesítésére használt észlelési módszer típusát.",
- "keyPath": "Kulcs elérési útja",
- "keyPathTooltip": "A felderítendő értéket tartalmazó beállításjegyzékbeli bejegyzés teljes elérési útja.",
- "operator": "Operátor",
- "operatorTooltip": "Válassza ki az operátort az összehasonlítás érvényesítéséhez használt észlelési módszerhez.",
- "value": "Érték",
- "valueName": "Azonosítónév",
- "valueNameTooltip": "Az észlelendő beállításazonosító neve.",
- "valueTooltip": "Válasszon egy értéket, amely megfelel a kijelölt észlelési módszernek."
- },
- "RuleTypeOptions": {
- "file": "Fájl",
- "mSI": "MSI",
- "registry": "Beállításjegyzék"
- },
- "gridAriaLabel": "Észlelési szabályok",
- "header": "Egy, az alkalmazás jelenlétét jelző szabály létrehozása.",
- "noRulesSelectedPlaceholder": "Nincs megadva szabály.",
- "ruleTableLimit": "Legfeljebb 25 észlelési szabályt vehet fel",
- "ruleType": "Szabálytípus",
- "ruleTypeTooltip": "Válassza ki a hozzáadni kívánt észlelési szabály típusát."
- },
- "RuleConfigurationOptions": {
- "customScript": "Egyéni észlelési szkript használata",
- "manual": "Észlelési szabályok manuális konfigurálása"
- },
- "bladeTitle": "Észlelési szabályok",
- "header": "Az alkalmazás észlelésére használt, az alkalmazásra vonatkozó szabályok konfigurálása.",
- "rulesFormat": "Szabályok formátuma",
- "rulesFormatTooltip": "Választhat, hogy manuálisan konfigurálja az észlelési szabályokat, vagy egyéni szkriptet használ az alkalmazás jelenlétének észlelésére.",
- "selectorLabel": "Észlelési szabályok"
- },
- "AppType": {
- "androidEnterpriseSystemApp": "Android Enterprise-rendszeralkalmazás",
- "androidForWorkApp": "Felügyelt Google Play Áruházbeli alkalmazás",
- "androidLobApp": "Üzletági Android-alkalmazás",
- "androidStoreApp": "Android Áruházbeli alkalmazás",
- "builtInAndroid": "Beépített Android-alkalmazás",
- "builtInApp": "Beépített alkalmazás",
- "builtInIos": "Beépített iOS-alkalmazás",
- "default": "",
- "iosLobApp": "Üzletági iOS-alkalmazás",
- "iosStoreApp": "iOS Store-alkalmazás",
- "iosVppApp": "Volume Purchase Program-alkalmazás iOS rendszerhez",
- "lineOfBusinessApp": "Üzletági alkalmazás",
- "macOSDmgApp": "macOS app (DMG)",
- "macOSEdgeApp": "Microsoft Edge (macOS)",
- "macOSLobApp": "Üzletági macOS-alkalmazás",
- "macOSMdatpApp": "Microsoft Defender ATP (macOS)",
- "macOSOfficeSuiteApp": "Microsoft 365-alkalmazások (macOS)",
- "macOsVppApp": "Volume Purchase Program-alkalmazás macOS rendszerhez",
- "managedAndroidLobApp": "Felügyelt üzletági Android-alkalmazás",
- "managedAndroidStoreApp": "Felügyelt Android Áruházbeli alkalmazás",
- "managedGooglePlayApp": "Felügyelt Google Play Áruházbeli alkalmazás",
- "managedGooglePlayPrivateApp": "Felügyelt privát Google Play-alkalmazás",
- "managedGooglePlayWebApp": "Felügyelt Google Play-webhivatkozás",
- "managedIosLobApp": "Felügyelt üzletági iOS-alkalmazás",
- "managedIosStoreApp": "Felügyelt iOS Store-alkalmazás",
- "microsoftStoreForBusinessApp": "A „Microsoft Store Vállalatoknak” egy alkalmazása",
- "microsoftStoreForBusinessReleaseManagedApp": "Microsoft Store Vállalatoknak",
- "officeSuiteApp": "Microsoft 365-alkalmazások (Windows 10 és újabb)",
- "webApp": "Webhivatkozás",
- "windowsAppXLobApp": "AppX-alapú üzletági Windows-alkalmazás",
- "windowsClassicApp": "Windows-alkalmazás (Win32)",
- "windowsEdgeApp": "Microsoft Edge (Windows 10 és újabb)",
- "windowsMobileMsiLobApp": "MSI-alapú üzletági Windows-alkalmazás",
- "windowsPhone81AppXBundleLobApp": "AppX-alapú üzletági Windows Phone 8.1-alkalmazás",
- "windowsPhone81AppXLobApp": "AppX-alapú üzletági Windows Phone 8.1-alkalmazás",
- "windowsPhone81StoreApp": "Windows Phone 8.1 Áruházbeli alkalmazás",
- "windowsPhoneXapLobApp": "XAP-alapú üzletági Windows Phone-alkalmazás",
- "windowsStoreApp": "Microsoft Store-alkalmazás",
- "windowsUniversalAppXLobApp": "Univerzális AppX-alapú üzletági Windows-alkalmazás",
- "windowsUniversalLobApp": "Univerzális üzletági Windows-alkalmazás"
- },
- "PolicyType": {
- "AttackSurfaceReductionRules": {
- "configMgr": "Támadásifelület-csökkentési szabályok (ConfigMgr)"
- },
- "EndpointDetectionandResponse": {
- "mDE": "Végpontészlelés és -válasz"
- },
- "EndpointSecurityTemplate": {
- "aSRAppBrowserSecurity": "Alkalmazás- és böngészőelkülönítés",
- "aSRApplicationControl": "Alkalmazásvezérlés",
- "aSRAttackSurfaceReduction": "A támadási felület csökkentésére szolgáló szabályok",
- "aSRDeviceControl": "Eszközvezérlés",
- "aSRExploitProtection": "Biztonsági rés kiaknázása elleni védelem",
- "aSRWebProtection": "Webes védelem (Microsoft Edge régi verziója)",
- "aVExclusions": "Microsoft Defender víruskereső – kizárások",
- "antivirus": "Microsoft Defender víruskereső",
- "cloudPC": "Windows 365 – biztonsági alapkonfiguráció",
- "default": "Végpontbiztonság",
- "defenderTest": "Microsoft Defender végponthoz – bemutató",
- "diskEncryption": "BitLocker",
- "eDR": "Végpontészlelés és -válasz",
- "edgeSecurityBaseline": "Microsoft Edge-alapértékek",
- "edgeSecurityBaselinePreview": "Előzetes verzió: Microsoft Edge-alapértékek",
- "editionUpgradeConfiguration": "Kiadásfrissítés és módváltás",
- "firewall": "Microsoft Defender tűzfal",
- "firewallRules": "Microsoft Defender-tűzfalszabályok",
- "identityProtection": "Fiókvédelem",
- "identityProtectionPreview": "Fiókvédelem (előzetes verzió)",
- "mDMSecurityBaseline1810": "MDM biztonsági alapkonfiguráció Windows 10-es és újabb rendszerekhez 2018 október",
- "mDMSecurityBaseline1810Preview": "Előzetes verzió: MDM biztonsági alapkonfiguráció Windows 10-es és újabb rendszerekhez 2018 október",
- "mDMSecurityBaseline1810PreviewBeta": "Előzetes verzió: MDM biztonsági alapkonfiguráció Windows 10-es rendszerhez 2018 október (bétaverzió)",
- "mDMSecurityBaseline1906": "MDM biztonsági alapkonfiguráció Windows 10-es és újabb rendszerekhez 2019 május",
- "mDMSecurityBaseline2004": "MDM biztonsági alapkonfiguráció Windows 10-es és újabb rendszerekhez 2020 augusztus",
- "mDMSecurityBaseline2101": "MDM biztonsági alapkonfiguráció Windows 10-es és újabb rendszerekhez 2020 december",
- "macOSAntivirus": "Vírusvédelem",
- "macOSDiskEncryption": "FileVault",
- "macOSFirewall": "macOS-tűzfal",
- "microsoftDefenderBaseline": "Microsoft Defender végponthoz – alapkonfiguráció",
- "office365Baseline": "Microsoft Office O365-alapkonfiguráció",
- "office365BaselinePreview": "Előzetes verzió: Microsoft Office O365 alapkonfiguráció",
- "securityBaselines": "Biztonsági alapkonfigurációk",
- "test": "Tesztsablon",
- "testFirewallRulesSecurityTemplateName": "Microsoft Defender-tűzfalszabályok (teszt)",
- "testIdentityProtectionSecurityTemplateName": "Fiókvédelem (teszt)",
- "windowsSecurityExperience": "A Windows Biztonság felhasználói élménye"
- },
- "Firewall": {
- "mDE": "Microsoft Defender tűzfal"
- },
- "FirewallRules": {
- "mDE": "Microsoft Defender-tűzfalszabályok"
- },
- "administrativeTemplates": "Felügyeleti sablonok",
- "androidCompliancePolicy": "Androidos megfelelőségi szabályzat",
- "aospDeviceOwnerCompliancePolicy": "Androidos (AOSP) megfelelőségi szabályzat",
- "applicationControl": "Alkalmazásfelügyelet",
- "custom": "Egyéni",
- "deliveryOptimization": "Kézbesítésoptimalizálás",
- "derivedPersonalIdentityVerificationCredential": "Származtatott hitelesítő adat",
- "deviceFeatures": "Eszközfunkciók",
- "deviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
- "deviceLock": "Eszközzárolás",
- "deviceOwner": "Teljes mértékben felügyelt, dedikált, vállalati tulajdonban lévő munkahelyi profil",
- "deviceRestrictions": "Eszközkorlátozások",
- "deviceRestrictionsWindows10Team": "Eszközkorlátozások (Windows 10 Team)",
- "domainJoinPreview": "Csatlakozás tartományhoz",
- "editionUpgradeAndModeSwitch": "Kiadásfrissítés és módváltás",
- "education": "Oktatás",
- "email": "E-mail",
- "emailSamsungKnoxOnly": "E-mail (csak Samsung KNOX)",
- "endpointProtection": "Endpoint Protection",
- "expeditedCheckin": "Mobileszköz-kezelés konfigurációja",
- "exploitProtection": "Biztonsági rés kiaknázása elleni védelem",
- "extensions": "Bővítmények",
- "hardwareConfigurations": "BIOS konfigurációk",
- "identityProtection": "Identitásvédelem",
- "iosCompliancePolicy": "iOS-es megfelelőségi szabályzat",
- "kiosk": "Kioszkmód",
- "macCompliancePolicy": "Mac-es megfelelőségi szabályzat",
- "microsoftDefenderAntivirus": "Microsoft Defender víruskereső",
- "microsoftDefenderAntivirusexclusions": "Microsoft Defender víruskereső – kizárások",
- "microsoftDefenderAtpWindows10Desktop": "Végponthoz készült Microsoft Defender (Windows 10-es vagy újabb operációs rendszert futtató asztali eszközökhöz)",
- "microsoftDefenderFirewallRules": "Microsoft Defender-tűzfalszabályok",
- "microsoftEdgeBaseline": "Microsoft Edge-alapértékek",
- "mxProfileZebraOnly": "MX-profil (csak Zebra)",
- "networkBoundary": "Hálózathatár",
- "oemConfig": "OEMConfig",
- "overrideGroupPolicy": "Csoportházirend felülbírálása",
- "pkcsCertificate": "PKCS-tanúsítvány",
- "pkcsImportedCertificate": "Importált PKCS-tanúsítvány",
- "preferenceFile": "Preferenciafájl",
- "presets": "Előzetes beállítások",
- "scepCertificate": "SCEP-tanúsítvány",
- "secureAssessmentEducation": "Biztonságos értékelés (Azure for Education)",
- "settingsCatalog": "Beállításkatalógus",
- "sharedMultiUserDevice": "Megosztott többfelhasználós eszköz",
- "softwareUpdates": "Szoftverfrissítések",
- "trustedCertificate": "Megbízható tanúsítvány",
- "unknown": "Ismeretlen",
- "unsupported": "Nem támogatott",
- "vpn": "VPN",
- "wiFi": "Wi-Fi",
- "wiFiImport": "Wi-Fi importálás",
- "windows10CompliancePolicy": "Windows 10/11-es megfelelőségi házirend",
- "windows10MobileCompliancePolicy": "Windows 10 Mobile-os megfelelőségi szabályzat",
- "windows10XScep": "SCEP-tanúsítvány – TESZT",
- "windows10XTrustedCertificate": "Megbízható tanúsítvány – TESZT",
- "windows10XVPN": "VPN – TESZT",
- "windows10XWifi": "WI-FI – TESZT",
- "windows8CompliancePolicy": "Windows 8-as megfelelőségi szabályzat",
- "windowsHealthMonitoring": "Windows-állapotmonitorozás",
- "windowsInformationProtection": "Windows Information Protection",
- "windowsPhoneCompliancePolicy": "Windows Phone-os megfelelőségi szabályzat",
- "windowsUpdateforBusiness": "Windows Update Vállalatoknak",
- "wiredNetwork": "Vezetékes hálózat",
- "workProfile": "Személyes tulajdonban lévő munkahelyi profil"
- },
- "OfficeSuiteAppsTab": {
- "acceptLicenseOnBehalfOfUsersLabel": "Fogadja el a Microsoft szoftverlicenc-szerződését a felhasználók nevében",
- "appSuiteConfigurationLabel": "Alkalmazáscsomag konfigurálása",
- "appSuiteInformationLabel": "Alkalmazáscsomaggal kapcsolatos információk",
- "appsToBeInstalledLabel": "A csomag részeként telepítendő alkalmazások",
- "architectureLabel": "Architektúra",
- "architectureTooltip": "Megadja, hogy a Microsoft 365-alkalmazások 32 bites vagy 64 bites kiadása lesz-e telepítve az eszközökre.",
- "configurationDesignerLabel": "Konfigurációtervező",
- "configurationFileLabel": "Konfigurációs fájl",
- "configurationSettingsFormatLabel": "Konfigurációs beállítások formátuma",
- "configureAppSuiteLabel": "Alkalmazáscsomag konfigurálása",
- "configuredLabel": "Konfigurálva",
- "currentVersionLabel": "Jelenlegi verzió",
- "currentVersionTooltip": "Ez az Office aktuális, a csomagban konfigurált verziója. Ez az érték egy újabb verzió konfigurálása és mentése esetén frissül.",
- "enableMicrosoftSearchAsDefaultTooltip": "Olyan háttérbeli szolgáltatást telepít, amely segít meghatározni, hogy telepítve van-e a Google Chrome Microsoft Keresés a Bingben bővítménye az eszközön.",
- "enterXmlDataLabel": "XML-adatok megadása",
- "languagesLabel": "Nyelvek",
- "languagesTooltip": "Alapértelmezés szerint az Intune az operációs rendszer alapértelmezett nyelvén telepíti az Office-t. Válassza ki a további telepíteni kívánt nyelveket.",
- "learnMoreText": "További információk",
- "newUpdateChannelTooltip": "Megadja, hogy az alkalmazás milyen gyakran frissül új funkciókkal.",
- "noCurrentVersionText": "Nincs jelenlegi verzió",
- "noLanguagesSelectedLabel": "Nincs kiválasztott nyelv",
- "notConfiguredLabel": "Nincs beállítva",
- "propertiesLabel": "Tulajdonságok",
- "removeOtherVersionsLabel": "Más verziók eltávolítása",
- "removeOtherVersionsTooltip": "Az Office (MSI) más verzióinak a felhasználói eszközökről való eltávolításához válassza az Igen lehetőséget.",
- "selectOfficeAppsLabel": "Office-alkalmazások kiválasztása",
- "selectOfficeAppsTooltip": "Válassza ki az Office 365-alkalmazásokat, melyeket szeretne a csomag részeként telepíteni.",
- "selectOtherOfficeAppsLabel": "Egyéb Office-alkalmazások kiválasztása (licenc szükséges)",
- "selectOtherOfficeAppsTooltip": "Ha licencekkel rendelkezik ezekhez a további Office-alkalmazásokhoz, azokat az Intune-nal is hozzárendelheti.",
- "specificVersionLabel": "Adott verzió",
- "updateChannelLabel": "Frissítési csatorna",
- "updateChannelTooltip": "Megadja, hogy az alkalmazás milyen gyakran frissül új funkciókkal.
\r\nHavonta – Azonnal biztosíthatja az Office legújabb funkcióit a felhasználók számára, amint elérhetővé válnak.
\r\nHavi vállalati csatorna – Havonta egyszer biztosítja az Office legújabb funkcióit, a hónap második keddjén.
\r\nHavonta (célzott) – Előzetes betekintést biztosíthat a következő Havi csatornakiadásba. Ez egy támogatott frissítési csatorna, amely általában legalább egy héttel az új funkciókat tartalmazó Havi csatornakiadás előtt elérhetővé válik.
\r\nFélévente – Az Office új funkcióit csak évente néhány alkalommal biztosíthatja a felhasználók számára.
\r\nFélévente (célzott) – Lehetőséget biztosíthat a következő Féléves kiadás tesztelésére a tesztfelhasználók és az alkalmazáskompatibilitás-tesztelők számára.",
- "useMicrosoftSearchAsDefault": "A Microsoft Search in Bing háttérszolgáltatásának telepítése",
- "useSharedComputerActivationLabel": "Megosztott aktiválás használata",
- "useSharedComputerActivationTooltip": "A megosztott aktiválással olyan számítógépeken helyezheti üzembe a Microsoft 365-alkalmazásokat, amelyeket több felhasználó használ. A felhasználók általában csak korlátozott számú eszközön (például 5 PC-n) telepíthetik és aktiválhatják a Microsoft 365-alkalmazásokat. A Microsoft 365-alkalmazások megosztott aktiválással való használata nem számít bele ebbe a korlátba.",
- "versionToInstallLabel": "Telepítendő verzió",
- "versionToInstallTooltip": "Válassza ki a telepítendő Office-verziót.",
- "xLanguagesSelectedLabel": "{0} nyelv kiválasztva",
- "xmlConfigurationLabel": "XML-konfiguráció"
- },
- "OfficeApplicationType": {
- "access": "Access",
- "bing": "Microsoft Keresés alapértelmezettként",
- "excel": "Excel",
- "groove": "OneDrive (Groove)",
- "lync": "Skype Vállalati verzió",
- "oneDrive": "Asztali OneDrive",
- "oneNote": "OneNote",
- "outlook": "Outlook",
- "powerPoint": "PowerPoint",
- "publisher": "Publisher",
- "teams": "Teams",
- "word": "Word"
- },
- "WindowsQualityUpdateProfile": {
- "Details": {
- "DaysUntilForcedReboot": {
- "label": "A kényszerített újraindításig hátralévő napok száma"
- },
- "Description": {
- "label": "Leírás"
- },
- "Name": {
- "label": "Név"
- },
- "QualityUpdateRelease": {
- "label": "Minőségi frissítések gyorsított telepítése, ha az eszköz operációsrendszer-verziója a következőnél régebbi:"
- },
- "bladeTitle": "Minőségi frissítések Windows 10-es és újabb verziókhoz (előzetes verzió)",
- "loadError": "A betöltés sikertelen!"
- },
- "TabName": {
- "qualityUpdateSettings": "Beállítások"
- },
- "infoBoxText": "A jelenleg elérhető egyetlen dedikált minőségifrissítés-szabályozási lehetőség a Windows 10-es vagy újabb frissítési körök szabályzatán kívül a minőségi frissítések felgyorsítása azon eszközökön, amelyek esetében a javítási szint a megadott értéket nem érti el. A jövőben további szabályozási lehetőségek is elérhetők lesznek.",
- "warningBoxText": "A szoftverfrissítések felgyorsításával csökkenthető a megfelelőség eléréséhez szükséges idő, azonban nagyobb hatással van a végfelhasználói termelékenységre. Jelentősen nagyobb eséllyel fordulhat elő újraindítás munkaidőben."
- },
- "Devices": {
- "General": {
- "android": "Android"
- },
- "aOSP": "Android nyílt forráskódú projekt",
- "android": "Android-eszközadminisztrátor",
- "androidWorkProfile": "Android Enterprise (munkahelyi profil)",
- "iOS": "iOS/iPadOS",
- "mac": "macOS",
- "windows": "Windows (MDM)",
- "windows10": "Windows 10 és újabb rendszerek",
- "windowsHomeSku": "Windows Home termékváltozat",
- "windowsMobile": "Windows Mobile"
- },
"SettingDetails": {
"CustomPolicyConfigurationProfile": {
"uploadControlPlaceHolderText": "Konfigurációsprofil-fájl kiválasztása"
@@ -3675,7 +1707,7 @@
"aESGCM128": "AES-128-GCM (16 bájtos ICV)",
"aESGCM256": "AES-256-GCM (16 bájtos ICV)",
"aadSharedDeviceDataClearAppsDescription": "Vegyen fel minden olyan alkalmazást a listára, amely nincs optimalizálva a Megosztott eszköz módra. Az alkalmazás helyi adatai törlődnek, amikor egy felhasználó kijelentkezik egy megosztott eszköz módra optimalizált alkalmazásból. Az Android 9 vagy újabb rendszerű Megosztott módban regisztrált dedikált eszközök esetében érhető el.",
- "aadSharedDeviceDataClearAppsName": "A Megosztott eszköz módra nem optimalizált alkalmazások helyi adatainak törlése (nyilvános előzetes verzió)",
+ "aadSharedDeviceDataClearAppsName": "A Megosztott eszköz módra nem optimalizált alkalmazások helyi adatainak törlése",
"accountsPageDescription": "A Fiókok elérésének letiltása a Gépház alkalmazásban.",
"accountsPageName": "Fiókok",
"accountsSignInAssistantSettingsDescription": "Tiltsa le a Microsoft Bejelentkezési segéd szolgáltatást (wlidsvc). Ha ez a beállítás nincs konfigurálva, a wlidsvc NT-szolgáltatást vezérelheti a felhasználó (kézi indítás)",
@@ -5503,7 +3535,7 @@
"enableEndUserAccessToDefenderName": "Végfelhasználói hozzáférés a Defenderhez",
"enableEngagedRestartDescription": "Beállítások engedélyezése annak érdekében, hogy a felhasználó az aktív időszakban történő újraindításra válthasson.",
"enableEngagedRestartName": "Felhasználó általi újraindítás engedélyezése (aktív időszakban történő újraindítás)",
- "enableIdentityPrivacyDescription": "Ez a tulajdonság maszkolja a felhasználóneveket a megadott szöveggel. Ha például a „névtelen” szót írja be, a Wi-Fi-kapcsolathoz magát a valódi felhasználónevével hitelesítő minden felhasználó „névtelen” néven lesz látható.",
+ "enableIdentityPrivacyDescription": "Ez a tulajdonság a felhasználóneveket a beírt szöveggel maszkolja. Ha például a „névtelen” szöveget írja be, minden felhasználó, aki ezzel a Wi-Fi-kapcsolattal hitelesíti magát valódi felhasználónévvel, „névtelen” névvel jelenik meg. Erre eszközalapú tanúsítványhitelesítés használata esetén lehet szükség.",
"enableIdentityPrivacyName": "Identitásadatok védelme (külső identitás)",
"enableNetworkInspectionSystemDescription": "A hálózatvizsgáló rendszer (NIS) kártevő-definíciói által észlelt kártékony hálózati forgalom blokkolása",
"enableNetworkInspectionSystemName": "Hálózatvizsgáló rendszer (NIS)",
@@ -7252,6 +5284,8 @@
"presharedKeyEncodingDescription": "Az előmegosztott kulcsok kódolása az UTF-8 használatával.",
"presharedKeyEncodingName": "Előmegosztott kulcsok kódolása",
"preventAny": "Határokon keresztüli megosztás megakadályozása",
+ "primaryAuthenticationMethodName": "Elsődleges hitelesítési módszer",
+ "primaryAuthenticationMethodTEAPDescription": "Válassza ki az elsődleges módszert a felhasználók hitelesítéséhez. A Tanúsítványok területen válasszon egy olyan tanúsítványprofilt (SCEP vagy PKCS), amely szintén üzembe van helyezve az eszközhöz. Az eszköz ezt az identitástanúsítványt fogja bemutatni a kiszolgálónak.",
"primarySMTPAddressOption": "Elsődleges SMTP-cím",
"printersColumns": "példa: nyomtató DNS-neve",
"printersDescription": "A nyomtatók automatikus kiépítése a hálózati állomásneveik alapján. A beállítás nem támogatja a megosztott nyomtatók használatát.",
@@ -7663,6 +5697,8 @@
"searchEnableRemoteQueriesName": "Távoli lekérdezések",
"secondActiveEthernet": "Második aktív Ethernet",
"secondEthernet": "Második Ethernet",
+ "secondaryAuthenticationMethodName": "Másodlagos hitelesítési módszer",
+ "secondaryAuthenticationMethodTEAPDescription": "Válassza ki a másodlagos módszert a felhasználók hitelesítéséhez. A Tanúsítványok területen válasszon egy olyan tanúsítványprofilt (SCEP vagy PKCS), amely szintén üzembe van helyezve az eszközhöz. Az eszköz ezt az identitástanúsítványt fogja bemutatni a kiszolgálónak.",
"secretKey": "Titkos kulcs:",
"secureBootEnabledDescription": "Biztonságos rendszerindítás engedélyezésének megkövetelése az eszközön",
"secureBootEnabledName": "Biztonságos rendszerindítás engedélyezésének megkövetelése az eszközön",
@@ -8074,6 +6110,7 @@
"systemUpdateWindow9": "de. 4:30",
"systemWindowsBlockedDescription": "Az ablakban megjelenő értesítések, például a bejelentések, a bejövő hívások, a kimenő hívások, a rendszerriasztások és a rendszerhibák letiltása.",
"systemWindowsBlockedName": "Értesítési ablakok",
+ "tEAPName": "Tunnel EAP (TEAP)",
"tLSMinMax": "A TLS minimális verziója a TLS maximális verziójával egyenlő vagy annál kisebb lehet.",
"tLSVersionRangeMaximum": "TLS-verzió-tartomány maximális értéke",
"tLSVersionRangeMaximumDescription": "Adja meg a maximális TLS-verziót, amely lehet 1.0, 1.1 vagy 1.2. Ha üresen hagyja, a rendszer az 1.2 alapértelmezett értéket fogja használni.",
@@ -8126,6 +6163,17 @@
"timeWindowSameStartEndDayTime": "A Befejezés napja és időpontja nem lehet azonos a kezdő nappal/időponttal.",
"timeZoneDescription": "A célzott eszközök időzónájának megadása.",
"timeZoneName": "Időzóna",
+ "timeoutFifteenMinutes": "15 perc",
+ "timeoutFiveMinutes": "5 perc",
+ "timeoutFourHours": "4 óra",
+ "timeoutNever": "Nincs időkorlát",
+ "timeoutOneHour": "1 óra",
+ "timeoutOneMinute": "1 perc",
+ "timeoutTenMinutes": "10 perc",
+ "timeoutThirtyMinutes": "30 perc",
+ "timeoutThreeMinutes": "3 perc",
+ "timeoutTwoHours": "2 óra",
+ "timeoutTwoMinutes": "2 perc",
"toggleConfigurationPkgDescription": "Töltsön fel egy aláírt konfigurációs csomagot, amely a Microsoft Defender végponthoz ügyfelének előkészítéséhez lesz felhasználva.",
"toggleConfigurationPkgName": "Microsoft Defender for Endpoint – Az ügyfél konfigurációs csomagjának típusa:",
"trafficRuleAppName": "Alkalmazás",
@@ -8824,6 +6872,33 @@
"win10WifiWirelessSecurityTypeName": "Vezeték nélküli biztonság típusa",
"win10WifiWirelessSecurityTypeOpen": "Nyílt (nincs hitelesítés)",
"win10WifiWirelessSecurityTypeWPA": "WPA/WPA2 (személyes)",
+ "win10WiredAuthenticationModeDescription": "Válassza ki, hogy a felhasználót, az eszközt, vagy a kettő közül valamelyiket hitelesíti, vagy vendéghitelesítést használ (az érték ekkor a „nincs”). Ha tanúsítványhitelesítést használ, győződjön meg arról, hogy a tanúsítvány típusa egyezik a hitelesítés típusával.",
+ "win10WiredAuthenticationModeName": "Hitelesítési mód",
+ "win10WiredAuthenticationPeriodDescription": "Azon másodpercek száma, amennyit az ügyfél a hitelesítési kísérletek után vár, mielőtt hibát jelentene. Válasszon egy 1 és 3600 közötti számot. Ha nem ad meg értéket, akkor 18 másodperc lesz a várakozási idő.",
+ "win10WiredAuthenticationPeriodName": "Hitelesítési időszak",
+ "win10WiredAuthenticationRetryDelayPeriodDescription": "A sikertelen hitelesítések és a rákövetkező hitelesítési kísérletek közötti idő, másodpercben. Válasszon egy 1 és 3600 közötti értéket. Ha nem ad meg értéket, a rendszer 1 másodpercet állít be.",
+ "win10WiredAuthenticationRetryDelayPeriodName": "Hitelesítés újrapróbálásának késleltetési időszaka ",
+ "win10WiredFIPSComplianceDescription": "A digitálisan tárolt bizalmas, de nem titkos adatok védelmére titkosításon alapuló biztonsági rendszereket használó USA-beli szövetségi kormányzati ügynökségek részére követelmény az FIPS 140-2 szabvány szerinti ellenőrzés.",
+ "win10WiredFIPSComplianceName": "A vezetékes profilnak meg kell felelnie a Federal Information Processing Standard (FIPS) szabványnak",
+ "win10WiredGuest": "Vendég",
+ "win10WiredMachine": "Gép",
+ "win10WiredMachineOrUser": "Felhasználó vagy gép",
+ "win10WiredMaximumAuthenticationFailuresDescription": "Adja meg a hitelesítő adatok hitelesítési hibáinak maximális számát. Ha nem ad meg értéket, akkor a rendszer 1 kísérletet fog tenni.",
+ "win10WiredMaximumAuthenticationFailuresName": "Hitelesítési hibák maximális száma",
+ "win10WiredMaximumEAPOLStartMessagesDescription": "Válassza ki az EAPOL-indítási üzenetek számát 1 és 100 között. Ha nem ad meg értéket, a rendszer maximum 3 üzenetet fog küldeni.",
+ "win10WiredMaximumEAPOLStartMessagesName": "Az EAPOL-indítási üzenetek maximális száma",
+ "win10WiredNetworkAuthenticationBlockPeriodDescription": "A hitelesítés letiltásának időtartama percben. Ezzel a beállítással adható meg, hogy a sikertelen hitelesítési kísérletek után milyen hosszú ideig tiltsa le a rendszer az automatikus hitelesítési kísérleteket. Válasszon egy 0 és 1440 közötti értéket.",
+ "win10WiredNetworkAuthenticationBlockPeriodName": "Letiltási időszak (perc)",
+ "win10WiredNetworkAuthenticationModeName": "Hitelesítési mód",
+ "win10WiredNetworkDoNotEnforceName": "Kényszerítés mellőzése",
+ "win10WiredNetworkEnforce8021XDescription": "Meghatározza, hogy a vezetékes hálózatok automatikus konfigurációs szolgáltatása megköveteli-e a 802.1X használatát a porthitelesítéshez.",
+ "win10WiredNetworkEnforce8021XName": "802.1x",
+ "win10WiredNetworkEnforceName": "Kényszerítés",
+ "win10WiredRememberCredentialsDescription": "Adja meg, hogy gyorsítótárba kívánja-e helyezni a felhasználók hitelesítő adatait, amikor először csatlakoznak a vezetékes hálózathoz. A rendszer a gyorsítótárazott hitelesítő adatokat használja a későbbi kapcsolatokhoz, így a felhasználóknak nem kell újra megadniuk őket. Ha nem konfigurálja ezt a beállítást, az egyenértékű az igen értékű beállítással.",
+ "win10WiredRememberCredentialsName": "Minden bejelentkezéskor emlékezzen a hitelesítő adatokra",
+ "win10WiredStartPeriodDescription": "Az EAPOL-indítási üzenet küldése előtti várakozás időtartama, másodpercben. Válasszon egy 1 és 3600 közötti értéket. Ha nem ad meg értéket, akkor 5 másodperc lesz a várakozási idő.",
+ "win10WiredStartPeriodName": "Indítási időszak",
+ "win10WiredUser": "Felhasználó",
"win10appLockerApplicationControlAllowDescription": "Ezen alkalmazások futtatása engedélyezve van",
"win10appLockerApplicationControlAllowName": "Kényszerítés",
"win10appLockerApplicationControlAuditComponentsAndStoreAppsDescription": "Csak naplózás üzemmódban a rendszer minden eseményt a helyi ügyfélnaplókban rögzít, de nem tiltja le az alkalmazások futtatását. A Windows-összetevőket és a Microsoft Áruház-beli alkalmazásokat a rendszer a biztonsági követelményeknek megfelelőként naplózza.",
@@ -9165,7 +7240,6 @@
"deviceConditionsInfoParagraph2": "Hasonló eszközalapú beállítások konfigurálhatók a regisztrált eszközök esetében.",
"deviceConditionsInfoParagraph2LinkText": "További információ a regisztrált eszközök eszközmegfelelőségi beállításainak konfigurálásáról.",
"deviceId": "Eszközazonosító",
- "deviceLockComplexityValidationFailureNotes": "Megjegyzések:
\r\n\r\n - Az eszköz zárolásához a következő jelszóbonyolultságra lehet szükség: ALACSONY, KÖZEPES vagy MAGAS, Android 11+ rendszerre célzottan. A 10-es vagy korábbi Android rendszert futtató eszközök esetében az alacsony/közepes/magas bonyolultság beállításakor az alacsony bonyolultság beállítás esetében várt viselkedés lesz az alapértelmezett.
\r\n - A lenti jelszódefiníciók esetében fenntartjuk a változtatások jogát. A különböző jelszóbonyolultsági szintek legfrissebb definícióit itt találja: DevicePolicyManager|Android-fejlesztők.
\r\n
\r\n\r\nAlacsony
\r\n\r\n - A jelszó lehet minta vagy PIN-kód, ismétlődő (4444) vagy rendezett (1234, 4321, 2468) szekvenciákkal.
\r\n
\r\n\r\nKözepes
\r\n\r\n - PIN-kód, amely nem rendelkezik ismétlődő (4444) vagy rendezett (1234, 4321, 2468) szekvenciákkal, és legalább 4 karakter hosszú
\r\n - Alfabetikus, legalább 4 karakter hosszú jelszavak
\r\n - Alfanumerikus, legalább 4 karakter hosszú jelszavak
\r\n
\r\n\r\nMagas
\r\n\r\n - PIN-kód, amely nem rendelkezik ismétlődő (4444) vagy rendezett (1234, 4321, 2468) szekvenciákkal, és legalább 8 karakter hosszú
\r\n - Alfabetikus, legalább 6 karakter hosszú jelszavak
\r\n - Alfanumerikus, legalább 6 karakter hosszú jelszavak
\r\n
\r\n",
"deviceLockedOpenFilesOptionsText": "Amikor az eszköz zárolva van és vannak megnyitott fájlok",
"deviceLockedOptionText": "Amikor az eszköz zárolva van",
"deviceManufacturer": "Eszköz gyártója",
@@ -9463,7 +7537,7 @@
"reporting": "Jelentéskészítés",
"reports": "Jelentések",
"require": "Kötelező",
- "requireDeviceLockComplexityOnApps": "Eszközzárolási bonyolultság megkövetelése",
+ "requireDeviceLockOnApps": "Require device lock",
"requireThreatScanOnApps": "Kártevők keresésének megkövetelése az alkalmazásokban",
"requiredField": "Ez a mező nem hagyható üresen",
"requiredSafetyNetEvaluationType": "A kötelező SafetyNet-értékelés típusa",
@@ -9659,6 +7733,7 @@
"yourDataIsBeingDownloadedEllipsis": "Az adatok letöltése folyamatban van. Ez hosszabb ideig is eltarthat...",
"yourDataIsBeingDownloadedMinutes": "Az adatok letöltése folyamatban van. Ez eltarthat néhány percig...",
"yourProtectionLevel": "Saját védelmi szint",
+ "rules": "Szabályok",
"basics": "Alapvető beállítások",
"modeTableHeader": "Csoport mód",
"appAssignmentMsg": "Csoport",
@@ -9695,221 +7770,2042 @@
"licenseTypeDevice": "Eszköz",
"licenseTypeUser": "Felhasználó"
},
- "Languages": {
- "ar-aE": "arab (E.A.E.)",
- "ar-bH": "arab (Bahrein)",
- "ar-dZ": "arab (Algéria)",
- "ar-eG": "arab (Egyiptom)",
- "ar-iQ": "arab (Irak)",
- "ar-jO": "arab (Jordánia)",
- "ar-kW": "arab (Kuvait)",
- "ar-lB": "arab (Libanon)",
- "ar-lY": "arab (Líbia)",
- "ar-mA": "arab (Marokkó)",
- "ar-oM": "arab (Omán)",
- "ar-qA": "arab (Katar)",
- "ar-sA": "arab (Szaúd-Arábia)",
- "ar-sY": "arab (Szíria)",
- "ar-tN": "arab (Tunézia)",
- "ar-yE": "arab (Jemen)",
- "az-cyrl": "azerbajdzsáni (cirill betűs, Azerbajdzsán)",
- "az-latn": "azerbajdzsáni (latin betűs, Azerbajdzsán)",
- "bn-bD": "bangla (Banglades)",
- "bn-iN": "bangla (India)",
- "bs-cyrl": "bosnyák (cirill betűs)",
- "bs-latn": "bosnyák (latin betűs)",
- "zh-cN": "kínai (kínai népköztársasági)",
- "zh-hK": "kínai (hongkongi k.k.t.)",
- "zh-mO": "kínai (Makaó KKT)",
- "zh-sG": "kínai (Szingapúr)",
- "zh-tW": "kínai (tajvani)",
- "hr-bA": "horvát (latin betűs)",
- "hr-hR": "horvát (Horvátország)",
- "nl-bE": "holland (Belgium)",
- "nl-nL": "holland (Hollandia)",
- "en-aU": "angol (Ausztrália)",
- "en-bZ": "angol (Belize)",
- "en-cA": "angol (Kanada)",
- "en-cabn": "angol (Karib-térség)",
- "en-iE": "angol (Írország)",
- "en-iN": "angol (India)",
- "en-jM": "angol (Jamaica)",
- "en-mY": "angol (Malajzia)",
- "en-nZ": "angol (Új-Zéland)",
- "en-pH": "angol (Fülöp-szigeteki)",
- "en-sG": "angol (Szingapúr)",
- "en-tT": "angol (Trinidad és Tobago)",
- "en-uK": "angol (Egyesült Királyság)",
- "en-uS": "angol (Egyesült Államok)",
- "en-zA": "angol (Dél-Afrika)",
- "en-zW": "angol (Zimbabwe)",
- "fr-bE": "francia (Belgium)",
- "fr-cA": "francia (Kanada)",
- "fr-cH": "francia (Svájc)",
- "fr-fR": "francia (Franciaország)",
- "fr-lU": "francia (Luxemburg)",
- "fr-mC": "francia (Monaco)",
- "de-aT": "német (Ausztria)",
- "de-cH": "német (Svájc)",
- "de-dE": "német (Németország)",
- "de-lI": "német (Liechtenstein)",
- "de-lU": "német (Luxemburg)",
- "iu-cans": "inuktitut (szótagírás, Kanada)",
- "iu-latn": "inuktitut (latin betűs, Kanada)",
- "it-cH": "olasz (Svájc)",
- "it-iT": "olasz (Olaszország)",
- "ms-bN": "maláj (Brunei Szultanátus)",
- "ms-mY": "maláj (Malajzia)",
- "mn-cN": "mongol (hagyományos mongol, kínai népköztársasági)",
- "mn-mN": "mongol (cirill betűs, Mongólia)",
- "no-nB": "norvég, bokmål (Norvégia)",
- "no-nn": "norvég, nynorsk (Norvégia)",
- "pt-bR": "Portugál (brazíliai)",
- "pt-pT": "Portugál (portugáliai)",
- "quz-bO": "kecsua (Bolívia)",
- "quz-eC": "kecsua (Ecuador)",
- "quz-pE": "kecsua (Peru)",
- "smj-nO": "számi, lulei (Norvégia)",
- "smj-sE": "számi, lulei (Svédország)",
- "se-fI": "számi, északi (Finnország)",
- "se-nO": "számi, északi (Norvégia)",
- "se-sE": "számi, északi (Svédország)",
- "sma-nO": "számi, déli (Norvégia)",
- "sma-sE": "számi, déli (Svédország)",
- "smn": "számi, inari (Finnország)",
- "sms": "számi, kolta (Finnország)",
- "sr-Cyrl-bA": "szerb (cirill betűs)",
- "sr-Cyrl-rS": "szerb (cirill betűs, [a volt] Szerbia és Montenegró)",
- "sr-Latn-bA": "szerb (latin betűs)",
- "sr-Latn-rS": "szerb (latin, Szerbia)",
- "dsb": "alsó-szorb (Németország)",
- "hsb": "felső-szorb (Németország)",
- "es-es-tradnl": "spanyol (Spanyolország, hagyományos rendezés)",
- "es-aR": "spanyol (Argentína)",
- "es-bO": "spanyol (Bolívia)",
- "es-cL": "spanyol (Chile)",
- "es-cO": "spanyol (Kolumbia)",
- "es-cR": "spanyol (Costa Rica)",
- "es-dO": "spanyol (Dominikai Köztársaság)",
- "es-eC": "spanyol (Ecuador)",
- "es-eS": "spanyol (spanyolországi)",
- "es-gT": "spanyol (Guatemala)",
- "es-hN": "spanyol (Honduras)",
- "es-mX": "spanyol (Mexikó)",
- "es-nI": "spanyol (Nicaragua)",
- "es-pA": "spanyol (Panama)",
- "es-pE": "spanyol (Peru)",
- "es-pR": "spanyol (Puerto Rico)",
- "es-pY": "spanyol (Paraguay)",
- "es-sV": "spanyol (Salvador)",
- "es-uS": "spanyol (Egyesült Államok)",
- "es-uY": "spanyol (Uruguay)",
- "es-vE": "spanyol (Venezuela)",
- "sv-fI": "svéd (Finnország)",
- "uz-cyrl": "üzbég (cirill betűs, Üzbegisztán)",
- "uz-latn": "üzbég (latin betűs, Üzbegisztán)",
- "af": "afrikaans (Dél-Afrika)",
- "sq": "albán (Albánia)",
- "am": "amhara (Etiópia)",
- "hy": "örmény (Örményország)",
- "as": "asszámi (India)",
- "ba": "baskír (Oroszország)",
- "eu": "baszk (baszk)",
- "be": "belarusz (Belarusz)",
- "br": "breton (Franciaország)",
- "bg": "bolgár (Bulgária)",
- "ca": "katalán (katalán)",
- "co": "korzikai (Franciaország)",
- "cs": "cseh (Cseh Köztársaság)",
- "da": "dán (Dánia)",
- "prs": "dari (Afganisztán)",
- "dv": "divehi (Maldív-szigetek)",
- "et": "észt (Észtország)",
- "fo": "feröeri (Feröer-szigetek)",
- "fil": "filippínó (Fülöp-szigetek)",
- "fi": "finn (Finnország)",
- "gl": "gallego (Galícia)",
- "ka": "grúz (Grúzia)",
- "el": "görög (Görögország)",
- "gu": "gudzsaráti (India)",
- "ha": "hausza (latin betűs, Nigéria)",
- "he": "héber (Izrael)",
- "hi": "hindi (India)",
- "hu": "magyar (Magyarország)",
- "is": "izlandi (Izland)",
- "ig": "igbo (Nigéria)",
- "id": "indonéz (Indonézia)",
- "ga": "ír (Írország)",
- "xh": "xhosza (Dél-Afrika)",
- "zu": "zulu (Dél-Afrika)",
- "ja": "japán (Japán)",
- "kn": "kannada (India)",
- "kk": "kazak (Kazahsztán)",
- "km": "khmer (Kambodzsa)",
- "rw": "kinyarvanda (Ruanda)",
- "sw": "szuahéli (Kenya)",
- "kok": "kónkáni (India)",
- "ko": "koreai (Korea)",
- "ky": "kirgiz (Kirgizisztán)",
- "lo": "lao (laoszi)",
- "lv": "lett (Lettország)",
- "lt": "litván (Litvánia)",
- "lb": "luxemburgi (Luxemburg)",
- "mk": "Macedón (Észak-Macedónia)",
- "ml": "malajálam (India)",
- "mt": "máltai (Málta)",
- "mi": "maori (Új-Zéland)",
- "mr": "maráthi (India)",
- "moh": "mohawk (Mohawk)",
- "ne": "nepáli (Nepál)",
- "oc": "okszitán (Franciaország)",
- "or": "odia (India)",
- "ps": "pasto (Afganisztán)",
- "fa": "perzsa",
- "pl": "lengyel (Lengyelország)",
- "pa": "pandzsábi (India)",
- "ro": "román (Románia)",
- "rm": "rétoromán (Svájc)",
- "ru": "orosz (Oroszország)",
- "sa": "szanszkrit (India)",
- "st": "északi szoto (Dél-Afrika)",
- "tn": "setswana (Dél-Afrika)",
- "si": "szingaléz (Srí Lanka)",
- "sk": "szlovák (Szlovákia)",
- "sl": "szlovén (Szlovénia)",
- "sv": "svéd (Svédország)",
- "syr": "szír (Szíria)",
- "tg": "tadzsik (cirill betűs, Tádzsikisztán)",
- "ta": "tamil (India)",
- "tt": "tatár (Oroszország)",
- "te": "telugu (India)",
- "th": "thai (Thaiföld)",
- "bo": "tibeti (kínai népköztársasági)",
- "tr": "török (Törökország)",
- "tk": "türkmén (Türkmenisztán)",
- "uk": "ukrán (Ukrajna)",
- "ur": "urdu (pakisztáni iszlám köztársasági)",
- "vi": "vietnami (Vietnam)",
- "cy": "walesi (Egyesült Királyság)",
- "wo": "volof (Szenegál)",
- "ii": "ji (kínai népköztársasági)",
- "yo": "joruba (Nigéria)"
- },
- "AppProtection": {
- "allAppTypes": "Célzás minden alkalmazástípusra",
- "androidPlatformLabel": "Android",
- "appsInAndroidWorkProfile": "Androidos munkahelyi profilban lévő alkalmazások",
- "appsOnIntuneManagedDevices": "Az Intune által felügyelt eszközökön lévő alkalmazások",
- "appsOnUnmanagedDevices": "A nem felügyelt eszközökön lévő alkalmazások",
- "iOSPlatformLabel": "iOS/iPadOS",
- "iosAndroidMacPlatformLabel": "iOS, Android, Mac",
- "iosAndroidPlatformLabel": "iOS, Android",
- "macPlatformLabel": "Mac",
- "notAvailable": "Nem érhető el",
- "windows10PlatformLabel": "Windows 10 és újabb rendszerek",
- "withEnrollment": "Regisztrációval",
- "withoutEnrollment": "Regisztráció nélkül"
- },
+ "ApplicabilityRules": {
+ "GridLabel": {
+ "property": "Tulajdonság",
+ "rule": "Szabály",
+ "ruleDetails": "Szabály részletei",
+ "value": "Érték"
+ },
+ "assignIf": "Profil hozzárendelése, ha",
+ "deleteWarning": "Ezzel törli a kiválasztott alkalmazhatósági szabályt",
+ "dontAssignIf": "Ne rendeljen hozzá profilt, ha",
+ "editionDisplayText": "{0} {1}",
+ "editionDisplayTextMore": "és további {0}",
+ "instructions": "Adja meg, hogyan kívánja alkalmazni ezt a profilt egy hozzárendelt csoporton belül. Az Intune csak azokra az eszközökre alkalmazz a profilt, amelyek megfelnek ezen szabályok kombinált feltételeinek.",
+ "maxText": "Maximum",
+ "minText": "Minimum",
+ "noActionRow": "Nincs megadva alkalmazhatósági szabály",
+ "oSVersion": "például: 1.2.3.4",
+ "toText": "–",
+ "windows10Education": "Windows 10/11 Education",
+ "windows10EducationN": "Windows 10/11 Education N",
+ "windows10Enterprise": "Windows 10/11 Enterprise",
+ "windows10EnterpriseN": "Windows 10/11 Enterprise N",
+ "windows10HolographicEnterprise": "Windows 10 Holographic for Business",
+ "windows10Home": "Windows 10/11 Home",
+ "windows10HomeChina": "Windows 10 Home China",
+ "windows10HomeN": "Windows 10/11 Home N",
+ "windows10HomeSingleLanguage": "Windows 10/11 Home egynyelvű",
+ "windows10IoTCore": "Windows 10 IoT Core",
+ "windows10IoTCoreCommercial": "Windows 10 IoT Core – kereskedelmi",
+ "windows10Mobile": "Windows 10 Mobile",
+ "windows10MobileEnterprise": "Windows 10 Mobile Enterprise",
+ "windows10OsEdition": "Operációs rendszer kiadása",
+ "windows10OsVersion": "Operációs rendszer verziója",
+ "windows10Professional": "Windows 10/11 Professional",
+ "windows10ProfessionalEducation": "Windows 10/11 Professional Education",
+ "windows10ProfessionalEducationN": "Windows 10/11 Professional Education N",
+ "windows10ProfessionalN": "Windows 10 Professional N",
+ "windows10ProfessionalWorkstation": "Windows 10/11 Professional Workstation",
+ "windows10ProfessionalWorkstationN": "Windows 10/11 Professional Workstation N"
+ },
+ "DetectionRules": {
+ "ComparisonOperators": {
+ "equals": "Egyenlő",
+ "greaterThan": "Nagyobb, mint",
+ "greaterThanOrEqualTo": "nagyobb vagy egyenlő",
+ "lessThan": "Kevesebb, mint",
+ "lessThanOrEqualTo": "kisebb vagy egyenlő",
+ "notEqualTo": "Nem egyenlő"
+ },
+ "CustomScript": {
+ "enforceSignatureCheck": "Szkriptaláírás ellenőrzésének kényszerítése és a szkript csendes futtatása",
+ "enforceSignatureCheckTooltip": "Válassza az Igen lehetőséget annak ellenőrzéséhez, hogy a szkriptet egy megbízható kiadó írta alá, ami lehetővé teszi, hogy a szkript figyelmeztetések és megerősítés kérése nélkül fusson. A szkript letiltás nélkül fog futni. Válassza a Nem (alapértelmezett) lehetőséget, ha a szkriptet végfelhasználói megerősítéssel szeretné futtatni az aláírás ellenőrzése nélkül.",
+ "header": "Egyéni észlelési szkript használata",
+ "runAs32Bit": "Szkript futtatása 32 bites folyamatként 64 bites ügyfeleken",
+ "runAs32BitTooltip": "Válassza az Igen lehetőséget a szkript 32 bites folyamatban való futtatásához 64 bites ügyfeleken. Válassza a Nem (alapértelmezett) lehetőséget, ha a szkriptet 64 bites folyamatban szeretné futtatni 64 bites ügyfeleken. A szkriptet a 32 bites ügyfelek 32 bites folyamatban futtatják.",
+ "scriptFile": "Parancsfájl",
+ "scriptFileNotSelectedValidation": "Nincs kijelölve szkriptfájl.",
+ "scriptFileTooltip": "Válasszon ki egy PowerShell-szkriptet, amely észleli az alkalmazás jelenlétét az ügyfélen. Az alkalmazás észlelése akkor történik meg, ha a szkript 0 értékű kilépési kódot ad vissza, és sztringértéket ír az STDOUT kimenetbe.",
+ "scriptSizeLimitValidation": "Az észlelési szkript meghaladja a megengedett maximális méretet. A probléma megoldásához csökkentse az észlelési szkript méretét."
+ },
+ "Manual": {
+ "FileRule": {
+ "DetectionMethodOptions": {
+ "dateCreated": "Létrehozás dátuma",
+ "dateModified": "Módosítás dátuma",
+ "doesNotExist": "A megadott fájl vagy mappa nem létezik.",
+ "fileOrFolderExists": "A fájl vagy mappa létezik",
+ "sizeInMB": "Méret (MB)",
+ "version": "Sztring (verzió)"
+ },
+ "associatedWith32Bit": "64 bites ügyfeleken egy 32 bites alkalmazással társított",
+ "associatedWith32BitTooltip": "Válassza az Igen lehetőséget az elérési út környezeti változóinak 32 bites környezetben való kibontásához 64 bites ügyfeleken. Válassza a Nem (alapértelmezett) lehetőséget, ha az elérési út változóit 64 bites környezetben szeretné kibontani 64 bites ügyfeleken. A 32 bites ügyfelek mindig a 32 bites környezetet fogják használni.",
+ "detectionMethod": "Észlelési módszer",
+ "detectionMethodTooltip": "Válassza ki az alkalmazás jelenlétének érvényesítésére használt észlelési módszer típusát.",
+ "fileOrFolder": "Fájl vagy mappa",
+ "fileOrFolderToolTip": "A felderítendő fájl vagy mappa.",
+ "operator": "Operátor",
+ "operatorTooltip": "Válassza ki az operátort az összehasonlítás érvényesítéséhez használt észlelési módszerhez.",
+ "path": "Elérési út",
+ "pathTooltip": "A felderítendő fájlt vagy mappát tartalmazó mappa teljes elérési útja.",
+ "value": "Érték",
+ "valueTooltip": "Válasszon egy olyan értéket, amely megfelel a választott észlelési módszernek. A dátumészlelési módszereket helyi időben kell megadni."
+ },
+ "GridColumns": {
+ "pathOrCode": "Elérési út/kód",
+ "type": "Típus"
+ },
+ "MsiRule": {
+ "operator": "Operátor",
+ "operatorTooltip": "Válassza ki az operátort az MSI-termékverzió érvényesítésének összehasonlításához.",
+ "productCode": "MSI-termékkód",
+ "productCodeTooltip": "Egy érvényes MSI-termékkód az alkalmazáshoz.",
+ "productVersion": "Érték",
+ "productVersionCheck": "MSI-termékverzió ellenőrzése",
+ "productVersionCheckTooltip": "Válassza az Igen lehetőséget, ha az MSI-termékkód mellett az MSI-termékverziót is ellenőrizni szeretné.",
+ "productVersionTooltip": "Az MSI termékverziójának megadása az alkalmazáshoz."
+ },
+ "RegistryRule": {
+ "DetectionMethodOptions": {
+ "integerComparison": "Egész szám összehasonlítása",
+ "keyDoesNotExist": "A kulcs nem létezik",
+ "keyExists": "A kulcs létezik",
+ "stringComparison": "Sztringek összehasonlítása",
+ "valueDoesNotExist": "Az érték nem létezik",
+ "valueExists": "Az érték már létezik",
+ "versionComparison": "Verziók összehasonlítása"
+ },
+ "associatedWith32Bit": "64 bites ügyfeleken egy 32 bites alkalmazással társított",
+ "associatedWith32BitTooltip": "Válassza az Igen lehetőséget a 32 bites regisztrációs adatbázisban való kereséshez 64 bites ügyfeleken. Válassza a Nem (alapértelmezett) lehetőséget, ha a 64 bites regisztrációs adatbázisban szeretne keresni 64 bites ügyfeleken. A 32 bites ügyfelek mindig a 32 bites regisztrációs adatbázisban keresnek.",
+ "detectionMethod": "Észlelési módszer",
+ "detectionMethodTooltip": "Válassza ki az alkalmazás jelenlétének érvényesítésére használt észlelési módszer típusát.",
+ "keyPath": "Kulcs elérési útja",
+ "keyPathTooltip": "A felderítendő értéket tartalmazó beállításjegyzékbeli bejegyzés teljes elérési útja.",
+ "operator": "Operátor",
+ "operatorTooltip": "Válassza ki az operátort az összehasonlítás érvényesítéséhez használt észlelési módszerhez.",
+ "value": "Érték",
+ "valueName": "Azonosítónév",
+ "valueNameTooltip": "Az észlelendő beállításazonosító neve.",
+ "valueTooltip": "Válasszon egy értéket, amely megfelel a kijelölt észlelési módszernek."
+ },
+ "RuleTypeOptions": {
+ "file": "Fájl",
+ "mSI": "MSI",
+ "registry": "Beállításjegyzék"
+ },
+ "gridAriaLabel": "Észlelési szabályok",
+ "header": "Egy, az alkalmazás jelenlétét jelző szabály létrehozása.",
+ "noRulesSelectedPlaceholder": "Nincs megadva szabály.",
+ "ruleTableLimit": "Legfeljebb 25 észlelési szabályt vehet fel",
+ "ruleType": "Szabálytípus",
+ "ruleTypeTooltip": "Válassza ki a hozzáadni kívánt észlelési szabály típusát."
+ },
+ "RuleConfigurationOptions": {
+ "customScript": "Egyéni észlelési szkript használata",
+ "manual": "Észlelési szabályok manuális konfigurálása"
+ },
+ "bladeTitle": "Észlelési szabályok",
+ "header": "Az alkalmazás észlelésére használt, az alkalmazásra vonatkozó szabályok konfigurálása.",
+ "rulesFormat": "Szabályok formátuma",
+ "rulesFormatTooltip": "Választhat, hogy manuálisan konfigurálja az észlelési szabályokat, vagy egyéni szkriptet használ az alkalmazás jelenlétének észlelésére.",
+ "selectorLabel": "Észlelési szabályok"
+ },
+ "PolicyType": {
+ "AttackSurfaceReductionRules": {
+ "configMgr": "Támadásifelület-csökkentési szabályok (ConfigMgr)"
+ },
+ "EndpointDetectionandResponse": {
+ "mDE": "Végpontészlelés és -válasz"
+ },
+ "EndpointSecurityTemplate": {
+ "aSRAppBrowserSecurity": "Alkalmazás- és böngészőelkülönítés",
+ "aSRApplicationControl": "Alkalmazásvezérlés",
+ "aSRAttackSurfaceReduction": "A támadási felület csökkentésére szolgáló szabályok",
+ "aSRDeviceControl": "Eszközvezérlés",
+ "aSRExploitProtection": "Biztonsági rés kiaknázása elleni védelem",
+ "aSRWebProtection": "Webes védelem (Microsoft Edge régi verziója)",
+ "aVExclusions": "Microsoft Defender víruskereső – kizárások",
+ "antivirus": "Microsoft Defender víruskereső",
+ "cloudPC": "Windows 365 – biztonsági alapkonfiguráció",
+ "default": "Végpontbiztonság",
+ "defenderTest": "Microsoft Defender végponthoz – bemutató",
+ "diskEncryption": "BitLocker",
+ "eDR": "Végpontészlelés és -válasz",
+ "edgeSecurityBaseline": "Microsoft Edge-alapértékek",
+ "edgeSecurityBaselinePreview": "Előzetes verzió: Microsoft Edge-alapértékek",
+ "editionUpgradeConfiguration": "Kiadásfrissítés és módváltás",
+ "firewall": "Microsoft Defender tűzfal",
+ "firewallRules": "Microsoft Defender-tűzfalszabályok",
+ "identityProtection": "Fiókvédelem",
+ "identityProtectionPreview": "Fiókvédelem (előzetes verzió)",
+ "mDMSecurityBaseline1810": "MDM biztonsági alapkonfiguráció Windows 10-es és újabb rendszerekhez 2018 október",
+ "mDMSecurityBaseline1810Preview": "Előzetes verzió: MDM biztonsági alapkonfiguráció Windows 10-es és újabb rendszerekhez 2018 október",
+ "mDMSecurityBaseline1810PreviewBeta": "Előzetes verzió: MDM biztonsági alapkonfiguráció Windows 10-es rendszerhez 2018 október (bétaverzió)",
+ "mDMSecurityBaseline1906": "MDM biztonsági alapkonfiguráció Windows 10-es és újabb rendszerekhez 2019 május",
+ "mDMSecurityBaseline2004": "MDM biztonsági alapkonfiguráció Windows 10-es és újabb rendszerekhez 2020 augusztus",
+ "mDMSecurityBaseline2101": "MDM biztonsági alapkonfiguráció Windows 10-es és újabb rendszerekhez 2020 december",
+ "macOSAntivirus": "Vírusvédelem",
+ "macOSDiskEncryption": "FileVault",
+ "macOSFirewall": "macOS-tűzfal",
+ "microsoftDefenderBaseline": "Microsoft Defender végponthoz – alapkonfiguráció",
+ "office365Baseline": "Microsoft Office O365-alapkonfiguráció",
+ "office365BaselinePreview": "Előzetes verzió: Microsoft Office O365 alapkonfiguráció",
+ "securityBaselines": "Biztonsági alapkonfigurációk",
+ "test": "Tesztsablon",
+ "testFirewallRulesSecurityTemplateName": "Microsoft Defender-tűzfalszabályok (teszt)",
+ "testIdentityProtectionSecurityTemplateName": "Fiókvédelem (teszt)",
+ "windowsSecurityExperience": "A Windows Biztonság felhasználói élménye"
+ },
+ "Firewall": {
+ "mDE": "Microsoft Defender tűzfal"
+ },
+ "FirewallRules": {
+ "mDE": "Microsoft Defender-tűzfalszabályok"
+ },
+ "administrativeTemplates": "Felügyeleti sablonok",
+ "androidCompliancePolicy": "Androidos megfelelőségi szabályzat",
+ "aospDeviceOwnerCompliancePolicy": "Androidos (AOSP) megfelelőségi szabályzat",
+ "applicationControl": "Alkalmazásfelügyelet",
+ "custom": "Egyéni",
+ "deliveryOptimization": "Kézbesítésoptimalizálás",
+ "derivedPersonalIdentityVerificationCredential": "Származtatott hitelesítő adat",
+ "deviceFeatures": "Eszközfunkciók",
+ "deviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
+ "deviceLock": "Eszközzárolás",
+ "deviceOwner": "Teljes mértékben felügyelt, dedikált, vállalati tulajdonban lévő munkahelyi profil",
+ "deviceRestrictions": "Eszközkorlátozások",
+ "deviceRestrictionsWindows10Team": "Eszközkorlátozások (Windows 10 Team)",
+ "domainJoinPreview": "Csatlakozás tartományhoz",
+ "editionUpgradeAndModeSwitch": "Kiadásfrissítés és módváltás",
+ "education": "Oktatás",
+ "email": "E-mail",
+ "emailSamsungKnoxOnly": "E-mail (csak Samsung KNOX)",
+ "endpointProtection": "Endpoint Protection",
+ "expeditedCheckin": "Mobileszköz-kezelés konfigurációja",
+ "exploitProtection": "Biztonsági rés kiaknázása elleni védelem",
+ "extensions": "Bővítmények",
+ "hardwareConfigurations": "BIOS konfigurációk",
+ "identityProtection": "Identitásvédelem",
+ "iosCompliancePolicy": "iOS-es megfelelőségi szabályzat",
+ "kiosk": "Kioszkmód",
+ "macCompliancePolicy": "Mac-es megfelelőségi szabályzat",
+ "microsoftDefenderAntivirus": "Microsoft Defender víruskereső",
+ "microsoftDefenderAntivirusexclusions": "Microsoft Defender víruskereső – kizárások",
+ "microsoftDefenderAtpWindows10Desktop": "Végponthoz készült Microsoft Defender (Windows 10-es vagy újabb operációs rendszert futtató asztali eszközökhöz)",
+ "microsoftDefenderFirewallRules": "Microsoft Defender-tűzfalszabályok",
+ "microsoftEdgeBaseline": "Microsoft Edge-alapértékek",
+ "mxProfileZebraOnly": "MX-profil (csak Zebra)",
+ "networkBoundary": "Hálózathatár",
+ "oemConfig": "OEMConfig",
+ "overrideGroupPolicy": "Csoportházirend felülbírálása",
+ "pkcsCertificate": "PKCS-tanúsítvány",
+ "pkcsImportedCertificate": "Importált PKCS-tanúsítvány",
+ "preferenceFile": "Preferenciafájl",
+ "presets": "Előzetes beállítások",
+ "scepCertificate": "SCEP-tanúsítvány",
+ "secureAssessmentEducation": "Biztonságos értékelés (Azure for Education)",
+ "settingsCatalog": "Beállításkatalógus",
+ "sharedMultiUserDevice": "Megosztott többfelhasználós eszköz",
+ "softwareUpdates": "Szoftverfrissítések",
+ "trustedCertificate": "Megbízható tanúsítvány",
+ "unknown": "Ismeretlen",
+ "unsupported": "Nem támogatott",
+ "vpn": "VPN",
+ "wiFi": "Wi-Fi",
+ "wiFiImport": "Wi-Fi importálás",
+ "windows10CompliancePolicy": "Windows 10/11-es megfelelőségi házirend",
+ "windows10MobileCompliancePolicy": "Windows 10 Mobile-os megfelelőségi szabályzat",
+ "windows10XScep": "SCEP-tanúsítvány – TESZT",
+ "windows10XTrustedCertificate": "Megbízható tanúsítvány – TESZT",
+ "windows10XVPN": "VPN – TESZT",
+ "windows10XWifi": "WI-FI – TESZT",
+ "windows8CompliancePolicy": "Windows 8-as megfelelőségi szabályzat",
+ "windowsHealthMonitoring": "Windows-állapotmonitorozás",
+ "windowsInformationProtection": "Windows Information Protection",
+ "windowsPhoneCompliancePolicy": "Windows Phone-os megfelelőségi szabályzat",
+ "windowsUpdateforBusiness": "Windows Update Vállalatoknak",
+ "wiredNetwork": "Vezetékes hálózat",
+ "workProfile": "Személyes tulajdonban lévő munkahelyi profil"
+ },
+ "Win32Requirements": {
+ "AdditionalRequirements": {
+ "File": {
+ "fileOrFolderToolTip": "A fájl vagy a mappa mint kiválasztott követelmény.",
+ "pathToolTip": "Az észlelendő fájl vagy mappa teljes elérési útja.",
+ "property": "Tulajdonság",
+ "valueToolTip": "Válasszon olyan követelményértéket, amely megfelel a választott észlelési módszernek. A dátum és idő követelményét a helyi formátumban kell megadni."
+ },
+ "GridColumns": {
+ "pathOrScript": "Elérési út vagy szkript",
+ "type": "Típus"
+ },
+ "Registry": {
+ "keyPath": "Kulcs elérési útja",
+ "keyPathTooltip": "A követelményként szolgáló értéket tartalmazó beállításjegyzék-bejegyzés teljes elérési útja.",
+ "operator": "Operátor",
+ "operatorTooltip": "Válassza ki az operátort az összehasonlításhoz.",
+ "registryRequirement": "Beállításkulcsra vonatkozó követelmény",
+ "registryRequirementTooltip": "Válassza ki a beállításkulcsra vonatkozó követelmények összehasonlításának módját.",
+ "valueName": "Azonosítónév",
+ "valueNameTooltip": "A szükséges beállításjegyzék-érték neve."
+ },
+ "RequirementTypeOptions": {
+ "fileType": "Fájl",
+ "registry": "Beállításjegyzék",
+ "script": "Szkript"
+ },
+ "Script": {
+ "RequirementMethodOptions": {
+ "boolean": "Logikai érték",
+ "dateTime": "Dátum és idő",
+ "float": "Lebegőpontos szám",
+ "integer": "Egész szám",
+ "string": "Sztring",
+ "version": "Verzió"
+ },
+ "ScriptContent": {
+ "emptyMessage": "A szkript tartalma nem lehet üres."
+ },
+ "duplicateName": "A(z) {0} szkriptnév már használatban van. Adjon meg egy másik nevet.",
+ "enforceSignatureCheck": "Szkriptaláírás ellenőrzésének kényszerítése",
+ "enforceSignatureCheckTooltip": "Az „Igen” lehetőség kiválasztásával ellenőrizheti, hogy a szkriptet egy megbízható gyártó írta-e alá, így a szkript figyelmeztetések és felszólítások megjelenítése nélkül fog futni. A szkript letiltás nélkül fog futni. A „Nem” (ez az alapértelmezett beállítás) kiválasztásakor a szkript végfelhasználói megerősítéssel, de az aláírás ellenőrzése nélkül fut.",
+ "loggedOnCredentials": "Szkript futtatása a bejelentkezéshez használt hitelesítő adatokkal",
+ "loggedOnCredentialsTooltip": "Szkript futtatása a bejelentkezett eszköz hitelesítő adataival.",
+ "operatorTooltip": "Válassza ki az operátort a követelmények összehasonlításához.",
+ "requirementMethod": "Kimeneti adattípus kiválasztása...",
+ "requirementMethodTooltip": "Válassza ki, hogy a rendszer melyik adattípust használja az észlelési egyezési követelmények meghatározásakor.",
+ "scriptFile": "Parancsfájl",
+ "scriptFileTooltip": "Válasszon egy PowerShell-szkriptet, amely észleli majd az alkalmazás jelenlétét az ügyfélen. Ha a rendszer észleli az alkalmazást, a követelményfolyamat egy 0 értékű kilépési kódot ad vissza, és sztringértéket ír az STDOUT elembe.",
+ "scriptName": "Szkript neve",
+ "value": "Érték",
+ "valueTooltip": "Válasszon olyan követelményértéket, amely megfelel a választott észlelési módszernek. A dátum és idő követelményét a helyi formátumban kell megadni."
+ },
+ "bladeTitle": "Követelményszabály hozzáadása",
+ "createRequirementHeader": "Követelmény létrehozása",
+ "header": "További követelményszabályok konfigurálása",
+ "label": "További követelményszabályok",
+ "noRequirementsSelectedPlaceholder": "Nincsenek megadva követelmények.",
+ "requirementType": "Követelmény típusa",
+ "requirementTypeTooltip": "Válassza ki a követelmény érvényesítésének meghatározásához használt észlelési módszert."
+ },
+ "architectures": "Operációs rendszer architektúrája",
+ "architecturesTooltip": "Válassza ki az alkalmazás telepítéséhez szükséges architektúrákat.",
+ "bladeTitle": "Követelmények",
+ "diskSpace": "Szükséges lemezterület (MB)",
+ "diskSpaceTooltip": "Az alkalmazás telepítéséhez szabad lemezterület szükséges a rendszermeghajtón.",
+ "header": "Adja meg, milyen követelményeknek kell megfelelnie az eszközöknek az alkalmazás telepítése előtt:",
+ "maximumTextFieldValue": "A maximális érték {0}.",
+ "minimumCpuSpeed": "Szükséges minimális processzorsebesség (MHz)",
+ "minimumCpuSpeedTooltip": "Az alkalmazás telepítéséhez szükséges minimális CPU-sebesség.",
+ "minimumLogicalProcessors": "Logikai processzorok szükséges minimális száma",
+ "minimumLogicalProcessorsTooltip": "Az alkalmazás telepítéséhez szükséges logikai processzorok minimális száma.",
+ "minimumOperatingSystem": "Minimális operációsrendszer-verzió",
+ "minimumOperatingSystemTooltip": "Válassza ki az alkalmazás telepítéséhez szükséges minimális operációs rendszert.",
+ "minumumTextFieldValue": "A minimális érték {0}.",
+ "physicalMemory": "Szükséges fizikai memória (MB)",
+ "physicalMemoryTooltip": "Az alkalmazás telepítéséhez szükséges fizikai memória (RAM).",
+ "selectorLabel": "Követelmények",
+ "validNumber": "Adjon meg egy érvényes számot."
+ },
+ "AzureIAM": {
+ "AdrsUserActionSelectionWarning": {
+ "conditions": "Az eszköz regisztrációját igénylő feltételek nem érhetők el az „Eszközök regisztrálása vagy csatlakoztatása” felhasználói művelettel.",
+ "message": "Csak a Többtényezős hitelesítés megkövetelése beállítás használható az Eszközök regisztrálása vagy csatlakoztatása nevű felhasználói művelethez létrehozott szabályzatokban.{0}"
+ },
+ "AuthContext": {
+ "Delete": {
+ "failure": "Nem sikerült a(z) {0} törlése",
+ "failureCa": "Nem sikerült törölni a(z) {0} elemet, mert a CA-házirendek hivatkoznak rá",
+ "modifying": "A(z) {0} törlése",
+ "success": "A(z) {0} törlése sikerült"
+ },
+ "Included": {
+ "none": "Nincs kiválasztva felhőalkalmazás, művelet vagy hitelesítési környezet",
+ "plural": "{0} hitelesítési környezet van hozzáadva",
+ "singular": "1 hitelesítési környezet van hozzáadva"
+ },
+ "InfoBlade": {
+ "createTitle": "Hitelesítési környezet hozzáadása",
+ "descPlaceholder": "A hitelesítési környezet leírásának hozzáadása",
+ "modifyTitle": "Hitelesítési környezet módosítása",
+ "namePlaceholder": "Pl. megbízható hely, megbízható szolgáltatás, erős hitelesítés",
+ "publishDesc": "Az alkalmazásoknak való közzététel lehetővé teszi, hogy az alkalmazások használhassák a hitelesítési környezetet. Fejezze be a címke feltételes hozzáférési szabályzatának konfigurálását, és végezze el a közzétételt. [További információ][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150966",
+ "publishLabel": "Közzététel az alkalmazásokban",
+ "titleDesc": "Konfiguráljon egy olyan hitelesítési környezetet, amelynek az alkalmazásadatok és -műveletek védelmében lesz szerepe. Használjon olyan neveket és leírásokat, amelyek közérthetőek az alkalmazás rendszergazdái számára. [További információ][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150965"
+ },
+ "Notify": {
+ "failure": "Nem sikerült frissíteni a(z) {0} alkalmazást",
+ "modifying": "{0} módosítása folyamatban",
+ "success": "A(z) {0} frissítése sikeresen megtörtént"
+ },
+ "WhatIf": {
+ "selected": "Tartalmazza a hitelesítési környezetet"
+ },
+ "addNewStepUp": "Új hitelesítési környezet",
+ "checkBoxInfo": "Adja meg azokat a hitelesítési környezeteket, amelyekre érvényes lesz a szabályzat",
+ "configure": "Hitelesítési környezetek konfigurálása",
+ "createCA": "Feltételes hozzáférési szabályzatok hozzárendelése a hitelesítési környezethez",
+ "dataGrid": "Hitelesítési környezetek listája",
+ "deleteFailedByReference": "You cannot delete this authentication context because it is being referenced by CA policies.",
+ "description": "Leírás",
+ "documentation": "Dokumentáció",
+ "getStarted": "Első lépések",
+ "label": "Hitelesítési környezet (előzetes verzió)",
+ "menuLabel": "Hitelesítési környezet (előzetes verzió)",
+ "name": "Név",
+ "noAuthContextConfigured": "Nincs konfigurálva hitelesítési környezet.",
+ "noAuthContextSet": "Nincsenek hitelesítési környezetek",
+ "noData": "Nincs megjeleníthető hitelesítési környezet",
+ "selectionInfo": "A hitelesítési környezet az alkalmazásadatok és -műveletek védelmére szolgál a SharePoint, a Microsoft Cloud App Security és más alkalmazásokban.",
+ "step": "Lépés",
+ "tabDescription": "A hitelesítési környezet kezelése az alkalmazások adatainak és műveleteinek védelme érdekében. [További információ][1]\n[1]:https://go.microsoft.com/fwlink/?linkid=2150965",
+ "tagResources": "Erőforrások címkézése hitelesítési környezettel"
+ },
+ "AuthenticationStrength": {
+ "Mode": {
+ "deviceBasedPush": "Microsoft Authenticator (telefonos bejelentkezés)",
+ "deviceBasedPushFido2X509Certificate": "Microsoft Authenticator (telefonos bejelentkezés) + Fido 2 + tanúsítványalapú hitelesítés",
+ "deviceBasedPushX509CertificateSingleFactor": "Microsoft Authenticator (telefonos bejelentkezés) + Fido 2 + tanúsítványalapú hitelesítés (egytényezős)",
+ "email": "Egyszer használható hitelesítő kód küldése e-mailben",
+ "emailOtp": "Egyszer használható hitelesítő kód küldése e-mailben",
+ "federatedMultiFactor": "Összevont többtényezős",
+ "federatedSingleFactor": "Összevont egytényezős",
+ "federatedSingleFactorFederatedMultiFactor": "Összevont egytényezős + összevont többtényezős",
+ "fido2": "FIDO 2 biztonsági kulcs",
+ "fido2X509CertificateSingleFactor": "FIDO 2 biztonsági kulcs + tanúsítványalapú hitelesítés (egytényezős)",
+ "hardwareOath": "Hardveres OATH-tokenek",
+ "hardwareOathEmail": "Hardveres OATH-tokenek és egyszer használható hitelesítő kód küldése e-mailben",
+ "hardwareOathX509CertificateSingleFactor": "Hardveres OATH-tokenek és tanúsítványalapú hitelesítés (egytényezős)",
+ "microsoftAuthenticatorPSIX509CertificateSingleFactor": "Microsoft Authenticator (telefonos bejelentkezés) + tanúsítványalapú hitelesítés (egytényezős)",
+ "microsoftAuthenticatorPsi": "Microsoft Authenticator (telefonos bejelentkezés)",
+ "microsoftAuthenticatorPush": "Microsoft Authenticator (leküldéses értesítés)",
+ "microsoftAuthenticatorPushEmail": "Microsoft Authenticator (leküldéses értesítés) és egyszer használható hitelesítő kód küldése e-mailben",
+ "microsoftAuthenticatorPushX509CertificateSingleFactor": "Microsoft Authenticator (leküldéses értesítés) + tanúsítványalapú hitelesítés (egytényezős)",
+ "none": "Egyik sem",
+ "password": "Jelszó",
+ "passwordDeviceBasedPush": "Jelszó + Microsoft Authenticator (telefonos bejelentkezés)",
+ "passwordFido2": "Jelszó + FIDO 2 biztonsági kulcs",
+ "passwordHardwareOath": "Jelszó és hardveres OATH-tokenek",
+ "passwordMicrosoftAuthenticatorPSI": "Jelszó + Microsoft Authenticator (telefonos bejelentkezés)",
+ "passwordMicrosoftAuthenticatorPush": "Jelszó + Microsoft Authenticator (leküldéses értesítés)",
+ "passwordSms": "Jelszó + SMS",
+ "passwordSoftwareOath": "Jelszó és szoftveres OATH-tokenek",
+ "passwordTemporaryAccessPassMultiUse": "Jelszó + ideiglenes hozzáférési kód (többször használatos)",
+ "passwordTemporaryAccessPassOneTime": "Jelszó + ideiglenes hozzáférési kód (egyszer használatos)",
+ "passwordVoice": "Jelszó + hanghívás",
+ "sms": "SMS",
+ "smsEmail": "SMS és egyszer használható hitelesítő kód küldése e-mailben",
+ "smsSignIn": "SMS alapú bejelentkezés",
+ "smsX509CertificateSingleFactor": "SMS + tanúsítványalapú hitelesítés (egytényezős)",
+ "softwareOath": "Szoftveres OATH-tokenek",
+ "softwareOathEmail": "Szoftveres OATH-tokenek és egyszer használható hitelesítő kód küldése e-mailben",
+ "softwareOathX509CertificateSingleFactor": "Szoftveres OATH-tokenek és tanúsítványalapú hitelesítés (egytényezős)",
+ "temporaryAccessPassMultiUse": "Ideiglenes hozzáférési kód (többször használatos)",
+ "temporaryAccessPassMultiUseX509CertificateSingleFactor": "Ideiglenes hozzáférési kód (többször használatos) + tanúsítványalapú hitelesítés (egytényezős)",
+ "temporaryAccessPassOneTime": "Ideiglenes hozzáférési kód (egyszer használatos)",
+ "temporaryAccessPassOneTimeX509CertificateSingleFactor": "Ideiglenes hozzáférési kód (egyszer használatos) + tanúsítványalapú hitelesítés (egytényezős)",
+ "voice": "Hang",
+ "voiceEmail": "Hanghívás és egyszer használható hitelesítő kód küldése e-mailben",
+ "voiceX509CertificateSingleFactor": "Hanghívás + tanúsítványalapú hitelesítés (egytényezős)",
+ "windowsHelloForBusiness": "Vállalati Windows Hello",
+ "x509CertificateMultiFactor": "Tanúsítványalapú hitelesítés (többtényezős)",
+ "x509CertificateSingleFactor": "Tanúsítványalapú hitelesítés (egytényezős)"
+ }
+ },
+ "CAS": {
+ "BuiltinPolicy": {
+ "Option": {
+ "blockDownloads": "Letöltések letiltása (Előzetes verzió)",
+ "monitorOnly": "Csak figyelő (Előzetes verzió)",
+ "protectDownloads": "Letöltések védelme (Előzetes verzió)",
+ "useCustomControls": "Egyéni szabályzat használata..."
+ },
+ "ariaLabel": "Válassza ki az alkalmazni kívánt feltételes hozzáférést biztosító alkalmazás-vezérlőt"
+ }
+ },
+ "ChooseApplications": {
+ "Grid": {
+ "appIdAria": "Alkalmazásazonosító: {0}"
+ },
+ "LowerGrid": {
+ "ariaLabel": "A kiválasztott felhőalkalmazások listája"
+ },
+ "UpperGrid": {
+ "ariaLabel": "A keresési kifejezéssel egyező felhőalkalmazások listája"
+ }
+ },
+ "ChooseLocations": {
+ "Validation": {
+ "failed": "A „Kiválasztott helyek” esetében legalább egy helyet ki kell választania.",
+ "selector": "Válasszon ki legalább egy helyet"
+ }
+ },
+ "ClientApp": {
+ "Clients": {
+ "Validation": {
+ "failed": "A következő ügyfelek közül legalább egyet ki kell választania"
+ }
+ }
+ },
+ "ClientConditionsInfo": {
+ "browserAndModern": "Ez a szabályzat csak a böngészőkre és a korszerű hitelesítést használó alkalmazásokra vonatkozik. Ha azt szeretné, hogy a szabályzat az összes ügyfélalkalmazásra érvényes legyen, engedélyezze az ügyfélalkalmazás-alapú feltételes hozzáférést, majd válassza ki az összes ügyfélalkalmazást.",
+ "classicExperience": "A szabályzat létrehozása óta frissült az ügyféloldali alkalmazások alapértelmezett konfigurációja.",
+ "legacyAuth": "Ha ez a beállítás nincs konfigurálva, a szabályzatok mostantól az összes ügyfélalkalmazásra vonatkoznak, beleértve a modern és az örökölt hitelesítést is."
+ },
+ "CloudAppFilterBlade": {
+ "AssignmentFilter": {
+ "header": "Attribútum",
+ "placeholder": "Attribútum kiválasztása"
+ },
+ "Configure": {
+ "infoBalloon": "Konfigurálja azokat az alkalmazásszűrőket, amelyekre a szabályzatot alkalmazni szeretné."
+ },
+ "NoPermissions": {
+ "learnMoreAria": "További információ az egyéni biztonsági attribútumok engedélyeiről.",
+ "message": "Nem rendelkezik az egyéni biztonsági attribútumok használatához szükséges engedélyekkel."
+ },
+ "gridHeader": "Egyéni biztonsági attribútumok használatával a szabályszerkesztővel vagy a szabályszintaxis szövegmezőjével hozhatja létre vagy szerkesztheti a szűrőszabályokat. Az előzetes verzióban csak a Sztring típusú attribútumok támogatottak. Az Egész vagy Logikai típusú attribútumok nem jelennek meg.",
+ "learnMoreAria": "További információ a szabályszerkesztő és a szintaxis szövegmezőjének használatáról.",
+ "noAttributes": "Nincs elérhető egyéni attribútum a szűréshez. A szűrő alkalmazásához konfigurálnia kell néhány attribútumot.",
+ "title": "Szűrő szerkesztése (előzetes verzió)"
+ },
+ "CloudAppsUserActions": {
+ "any": "Bármely felhőalkalmazás vagy művelet",
+ "infoBalloon": "A tesztelni kívánt felhőalkalmazás vagy felhasználói művelet, például SharePoint Online",
+ "learnMore": "Az összes vagy néhány felhőbeli alkalmazás vagy művelet elérésének korlátozása.",
+ "learnMoreB2C": "Az összes vagy néhány felhőalkalmazás elérésének korlátozása.",
+ "title": "Felhőalkalmazások vagy -műveletek"
+ },
+ "CloudappsSelectionBlade": {
+ "Excluded": {
+ "gridAria": "A kizárt felhőalkalmazások listája"
+ },
+ "Filter": {
+ "configured": "Konfigurálva",
+ "label": "Szűrő szerkesztése (előzetes verzió)",
+ "with": "{0} a következővel: {1}"
+ },
+ "Included": {
+ "gridAria": "A belefoglalt felhőalkalmazások listája"
+ },
+ "Validation": {
+ "authContext": "A hitelesítési környezettel legalább egy alelemet konfigurálni kell.",
+ "selectApps": "A(z) „{0}” konfigurálása kötelező",
+ "selector": "Válasszon ki legalább egy alkalmazást.",
+ "userActions": "A Felhasználói műveletek beállítással legalább egy alelemet konfigurálni kell."
+ }
+ },
+ "DeviceState": {
+ "LearnMore": {
+ "message": "Szabályozhatja a felhasználói hozzáférést, amikor az eszköz, amelyről a felhasználó bejelentkezik, hibrid Azure AD-hez csatlakozó, vagy pedig megfelelőként megjelölt..\n Ez megszűnik, helyette használja a következőt: „{1}”."
+ }
+ },
+ "Errors": {
+ "notFound": "A szabályzat nem található vagy törölve lett.",
+ "notFoundDetailed": "A(z) {0} szabályzat már nem létezik. Lehet, hogy törölték."
+ },
+ "GuestsOrExternalUsers": {
+ "allExternalTenantsLabel": "Az összes Azure AD-beli szervezet",
+ "b2bCollaborationGuestLabel": "B2B-együttműködésben részt vevő vendégfelhasználók",
+ "b2bCollaborationMemberLabel": "B2B-együttműködésben részt vevő tagfelhasználók",
+ "b2bDirectConnectUserLabel": "Közvetlen B2B-kapcsolattal rendelkező felhasználók",
+ "enumeratedExternalTenantsError": "Kérjük, válasszon ki legalább egy külső bérlőt.",
+ "enumeratedExternalTenantsLabel": "Azure AD-beli kiválasztott szervezetek",
+ "externalTenantsLabel": "Azure AD-beli külső szervezetek megadása",
+ "externalUserDropdownLabel": "Vendég- vagy külső felhasználók típusainak kiválasztása",
+ "externalUsersError": "Kérjük, válassza ki a vendég- vagy külső felhasználók legalább egy típusát.",
+ "guestOrExternalUsersInfoContent": "Magában foglalja a B2B-együttműködésben részt vevő, a közvetlen B2B-kapcsolatot használó és az egyéb típusú külső felhasználókat.",
+ "guestOrExternalUsersLabel": "Vendég- vagy külső felhasználók",
+ "internalGuestLabel": "Helyi vendégfelhasználók",
+ "otherExternalUserLabel": "Egyéb külső felhasználók"
+ },
+ "NamedLocation": {
+ "Form": {
+ "CountryLookup": {
+ "ariaLabel": "Ország keresési metódusa",
+ "gps": "Helymeghatározás GPS-koordináták alapján",
+ "info": "Ha adott feltételes hozzáférési szabályzathoz helyfeltétel van konfigurálva, az Authenticator alkalmazás felkéri a felhasználókat GPS-helyadataik megosztására. ",
+ "ip": "Helymeghatározás IP-cím alapján (csak IPv4 esetén)"
+ },
+ "Header": {
+ "new": "Új hely ({0})",
+ "update": "Frissítési hely ({0})"
+ },
+ "IP": {
+ "learn": "A nevesített hely IPv4-és IPv6-tartományának konfigurálása.\n[További információ][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
+ },
+ "Include": {
+ "infoBalloon": "Az ismeretlen országok vagy régiók olyan IP-címek, amelyek nincsenek egy adott országhoz vagy régióhoz társítva. [További információ][1]\n\nEz a következőket foglalja magába:\n* IPv6-címek\n* Közvetlen leképezés nélküli IPv4-címek\n[1]: https://aka.ms/canamedlocations\n",
+ "label": "Ismeretlen országok/régiók belefoglalása"
+ },
+ "Name": {
+ "empty": "A név nem hagyható üresen",
+ "placeholder": "A hely neve"
+ },
+ "PrivateLink": {
+ "learn": "Hozzon létre egy olyan új nevesített helyet, amely az Azure AD-beli privát kapcsolatokat tartalmaz. \n[További információ][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
+ },
+ "Search": {
+ "countries": "Országok keresése",
+ "names": "Nevek keresése",
+ "privateLinks": "Privát kapcsolatok keresése"
+ },
+ "Trusted": {
+ "label": "Megjelölés megbízható helyként"
+ },
+ "enter": "Adjon meg egy új IPv4- vagy IPv6-cím-tartományt",
+ "example": "példa: 40.77.182.32/27 vagy 2a01:111::/32"
+ },
+ "Label": {
+ "addCountries": "Országok helye",
+ "addIpRange": "IP-címtartományok helye",
+ "addPrivateLink": "Azure Private Link-kapcsolatok"
+ },
+ "Notification": {
+ "Create": {
+ "Failed": {
+ "description": "Nem sikerült létrehozni az új helyet ({0})",
+ "title": "A létrehozás nem sikerült"
+ },
+ "InProgress": {
+ "description": "Az új hely létrehozása ({0})",
+ "title": "Létrehozás folyamatban"
+ },
+ "Success": {
+ "description": "Sikerült létrehozni az új helyet ({0})",
+ "title": "A létrehozás sikerült"
+ }
+ },
+ "Delete": {
+ "Failed": {
+ "description": "Nem sikerült törölni a helyet ({0})",
+ "title": "A törlés nem sikerült"
+ },
+ "InProgress": {
+ "description": "A hely ({0}) törlése",
+ "title": "Törlés van folyamatban"
+ },
+ "Success": {
+ "description": "Sikerült törölni a helyet ({0})",
+ "title": "A törlés sikerült"
+ }
+ },
+ "Update": {
+ "Failed": {
+ "description": "Nem sikerült frissíteni a helyet ({0})",
+ "title": "A frissítés nem sikerült"
+ },
+ "InProgress": {
+ "description": "A hely ({0}) frissítése",
+ "title": "A frissítés folyamatban van"
+ },
+ "Success": {
+ "description": "Sikerült frissíteni a helyet ({0})",
+ "title": "A frissítés sikerült"
+ }
+ }
+ },
+ "PrivateLinks": {
+ "grid": "Privát kapcsolatok listája"
+ },
+ "Trusted": {
+ "title": "Megbízható típus",
+ "trusted": "Megbízható"
+ },
+ "Type": {
+ "all": "Minden típus",
+ "countries": "Országok",
+ "ipRanges": "IP-címtartományok",
+ "privateLinks": "Privát kapcsolatok",
+ "title": "Hely típusa"
+ },
+ "iPRangeInvalidError": "Az értéknek érvényes IPv4-vagy IPv6-tartománynak kell lennie.",
+ "iPRangeLinkOrSiteLocalError": "A rendszer hivatkozásszintű vagy helyi szintű címként érzékelte az IP-hálózatot.",
+ "iPRangeOctetError": "Az IP-hálózat nem kezdődhet 0-val vagy 255-tel.",
+ "iPRangePrefixError": "Az IP-hálózati előtagnak /{0} és /{1} közöttinek kell lennie.",
+ "iPRangePrivateError": "A rendszer privát címként érzékelte az IP-hálózatot."
+ },
+ "NamedNetwork": {
+ "List": {
+ "gridAria": "Elnevezett helyek listája"
+ }
+ },
+ "Policies": {
+ "Grid": {
+ "aria": "Feltételes hozzáférési szabályzatok listája"
+ },
+ "countText": "{0}/{1} szabályzat található",
+ "countTextSingular": "{0}/1 szabályzat található",
+ "search": "Keresés a szabályzatok között"
+ },
+ "Policy": {
+ "Condition": {
+ "ServicePrincipalRisk": {
+ "description": "Konfigurálja a szabályzat érvényesítéséhez szükséges, a szolgáltatásnévhez tartozó kockázati szinteket.",
+ "infoBalloonContent": "Konfigurálja a szolgáltatásnévhez tartozó kockázatot, hogy alkalmazhassa a szabályzatot a kiválasztott kockázati szint(ek)re.",
+ "title": "Szolgáltatásnév kockázata (Előzetes verzió)"
+ }
+ }
+ },
+ "PolicyControlAuthStrength": {
+ "MultiFactorAuthentication": {
+ "description": "Az erős hitelesítésnek megfelelő módszerek kombinációi, például jelszó és SMS",
+ "displayName": "Többtényezős hitelesítés (MFA)"
+ },
+ "Passwordless": {
+ "description": "Jelszó nélküli módszerek, amelyek megfelelnek az erős hitelesítésnek, mint például a Microsoft Authenticator ",
+ "displayName": "Jelszó nélküli többtényezős hitelesítés"
+ },
+ "PhishingResistant": {
+ "description": "Adathalászat ellen védett jelszó nélküli módszerek a legerősebb hitelesítéshez, például FIDO2 biztonsági kulcs",
+ "displayName": "Adathalászat ellen védett többtényezős hitelesítés"
+ }
+ },
+ "PolicyControlFedAuthMethod": {
+ "ariaLabel": "Learn more about requiring authentication methods satisfied by federation providers.",
+ "certificate": "Tanúsítványalapú hitelesítés",
+ "infoBubble": "Adja meg az összevonási szolgáltatóra (például az AD FS-re) nézve kötelezően használandó hitelesítési módszert.",
+ "multifactor": "Többtényezős hitelesítés",
+ "require": "Összevont hitelesítési módszer megkövetelése (Előzetes verzió)",
+ "whatIfFormat": "{0} - {1}"
+ },
+ "PolicyState": {
+ "off": "Kikapcsolva",
+ "on": "Bekapcsolva",
+ "reportOnly": "Csak jelentés"
+ },
+ "PolicyTemplates": {
+ "Devices": {
+ "description": "Az Eszközszabályzat-sablon nevű kategória kiválasztásával megtekintheti a hálózathoz hozzáférő eszközöket. Mielőtt megadná a hozzáférést, ellenőrizze a megfelelőséget és az állapotadatokat.",
+ "name": "Eszközök"
+ },
+ "Identities": {
+ "description": "Az Identitásszabályzat-sablon nevű kategória kiválasztásával ellenőrizhet és biztonságossá tehet minden egyes identitást erős hitelesítés használatával a cég teljes digitális erőforráskészletére nézve.",
+ "name": "Identitások"
+ },
+ "Summary": {
+ "CloudApps": {
+ "allCloudApps": "Minden alkalmazás",
+ "office365": "Office 365",
+ "registerSecurityInfo": "Biztonsági adatok regisztrálása"
+ },
+ "Conditions": {
+ "androidAndIOS": "Eszközplatform: Android és IOS",
+ "anyDevice": "Minden eszköz az Android-, IOS-, Windows- és Mac-eszközök kivételével",
+ "anyDeviceStateExceptHybrid": "Minden eszközállapot a követelményeknek megfelelő és a hibrid Azure Active Directoryhoz csatlakoztatott állapot kivételével",
+ "anyLocation": "Minden hely a megbízhatók kivételével",
+ "browserMobileDesktop": "Ügyfélalkalmazások: böngésző, mobilalkalmazások és asztali ügyfelek",
+ "exchangeActiveSync": "Ügyfélalkalmazások: Exchange Active Sync, egyéb ügyfelek",
+ "windowsAndMac": "Eszközplatform: Windows és Mac"
+ },
+ "Devices": {
+ "anyDevice": "Bármely eszköz"
+ },
+ "Grant": {
+ "appProtectionPolicy": "Alkalmazásvédelmi szabályzat megkövetelése",
+ "approvedClientApp": "Jóváhagyott ügyfélalkalmazás megkövetelése",
+ "blockAccess": "Hozzáférés letiltása",
+ "mfa": "Többtényezős hitelesítés megkövetelése",
+ "passwordChange": "Jelszómódosítás megkövetelése",
+ "requireCompliantDevice": "Eszköz megfelelőként való megjelölésének megkövetelése",
+ "requireHybridAzureADDevice": "Hibrid Azure AD-hez csatlakozó eszköz megkövetelése"
+ },
+ "Session": {
+ "appEnforcedRestrictions": "Alkalmazás által kényszerített korlátozások használata",
+ "signInFrequency": "Bejelentkezési gyakoriság és soha nem állandó böngésző-munkamenet"
+ },
+ "UsersAndGroups": {
+ "allUsers": "Minden felhasználó",
+ "directoryRoles": "Címtárbeli szerepkörök a jelenlegi rendszergazda kivételével",
+ "globalAdmin": "Globális rendszergazda",
+ "noGuestAndAdmins": "Minden felhasználó a vendég- és a külső felhasználók, a globális rendszergazdák, valamint a jelenlegi rendszergazda kivételével"
+ },
+ "azureManagement": "Azure-beli felügyelet",
+ "deviceFilters": "Eszközökhöz tartozó szűrők",
+ "devicePlatforms": "Eszközplatformok"
+ },
+ "TemplateId": {
+ "AppEnforcedRestrictions": {
+ "description": "A SharePoint-, OneDrive- és Exchange-tartalmak hozzáférésének blokkolása vagy korlátozása nem felügyelt eszközökről.",
+ "name": "CA014: Alkalmazás által kényszerített korlátozások használata a nem felügyelt eszközök esetében",
+ "title": "Az alkalmazás által kényszerített korlátozások használata a nem felügyelt eszközök esetében"
+ },
+ "ApprovedClientApps": {
+ "description": "Az adatvesztés megelőzése érdekében a szervezeteknek lehetőségük van az engedélyezett modern hitelesítési ügyfélalkalmazásokra korlátozni a hozzáférést az Intune App Protection használatával.",
+ "name": "CA012: Jóváhagyott ügyfélalkalmazások és alkalmazásvédelem megkövetelése",
+ "title": "Jóváhagyott ügyfélalkalmazások és alkalmazásvédelem megkövetelése"
+ },
+ "BlockAccessOnUnknowns": {
+ "description": "A felhasználók nem férhetnek hozzá a vállalati erőforrásokhoz, ha az eszköz típusa ismeretlen vagy nem támogatott.",
+ "name": "CA010: Ismeretlen vagy nem támogatott eszközplatform hozzáférésének letiltása",
+ "title": "Ismeretlen vagy nem támogatott eszközplatformokhoz való hozzáférés letiltása"
+ },
+ "BlockLegacyAuth": {
+ "description": "A többtényezős hitelesítés megkerüléséhez használható örökölt hitelesítési végpontok blokkolása. ",
+ "name": "CA003: Örökölt hitelesítés letiltása",
+ "title": "Örökölt hitelesítés letiltása"
+ },
+ "NoPersistentBrowserSession": {
+ "description": "A nem felügyelt eszközökön a felhasználói hozzáférés úgy védhető meg, ha megakadályozza, hogy a böngészőbeli munkamenetek bejelentkezve maradjanak a böngésző bezárása után, és 1 órára állítja a bejelentkezési gyakoriságot.",
+ "name": "CA011: Nincs állandó böngésző-munkamenet",
+ "title": "Nincs állandó böngésző-munkamenet"
+ },
+ "RequireCompliantOrHybridADAdmins": {
+ "description": "Annak megkövetelése, hogy az emelt szintű rendszergazdák csak a megfelelő vagy egy hibrid Azure AD-hez csatlakoztatott eszköz használatával férhessenek hozzá az erőforrásokhoz.",
+ "name": "CA009: Követelményeknek megfelelő vagy hibrid Azure Active Directoryhoz csatlakozó eszköz használatának megkövetelése a rendszergazdáktól",
+ "title": "Követelményeknek megfelelő vagy hibrid Azure Active Directoryhoz csatlakozó eszközök használatának megkövetelése a rendszergazdáktól"
+ },
+ "RequireCompliantOrHybridADAllUsers": {
+ "description": "A vállalati erőforrásokhoz való hozzáférés védelme egy felügyelt eszköz használatának vagy többtényezős hitelesítés végrehajtásának megkövetelésével biztosítható. (csak macOS vagy Windows)",
+ "name": "CA013: Követelményeknek megfelelő, illetve hibrid Azure Active Directoryhoz csatlakozó eszköz vagy a többtényezős hitelesítés használatának megkövetelése minden felhasználótól",
+ "title": "Követelményeknek megfelelő, illetve hibrid Azure Active Directoryhoz csatlakozó eszköz vagy a többtényezős hitelesítés használatának megkövetelése minden felhasználótól"
+ },
+ "RequireMFAAllUsers": {
+ "description": "Többtényezős hitelesítés megkövetelése az összes felhasználói fiók esetében a kockázatok csökkentése érdekében.",
+ "name": "CA004: Többtényezős hitelesítés megkövetelése minden felhasználótól",
+ "title": "Többtényezős hitelesítés megkövetelése minden felhasználótól"
+ },
+ "RequireMFAForAdmins": {
+ "description": "Többtényezős hitelesítés megkövetelése kiemelt jogosultságú rendszergazdai fiókok esetében a kockázatok csökkentése érdekében. Ez a szabályzat ugyanazokat a szerepköröket célozza meg, mint az alapértelmezett biztonsági szabályzatok.",
+ "name": "CA001: Többtényezős hitelesítés megkövetelése a rendszergazdáktól",
+ "title": "Többtényezős hitelesítés megkövetelése a rendszergazdáktól"
+ },
+ "RequireMFAForAzureManagement": {
+ "description": "Megkövetelheti a többtényezős hitelesítést, hogy megóvja az Azure-erőforrásokhoz való emelt szintű hozzáférést.",
+ "name": "CA006: Többtényezős hitelesítés megkövetelése Azure-beli felügyelet esetén",
+ "title": "Többtényezős hitelesítés megkövetelése Azure-beli felügyelet esetén"
+ },
+ "RequireMFAForGuestAccess": {
+ "description": "Megkövetelheti a vendégfelhasználók többtényezős hitelesítését, amikor hozzáférnek a vállalati erőforrásokhoz.",
+ "name": "CA005: Többtényezős hitelesítés megkövetelése vendéghozzáférés esetén",
+ "title": "Többtényezős hitelesítés megkövetelése vendéghozzáférés esetén"
+ },
+ "RequireMFAForRiskySignIn": {
+ "description": "Megkövetelheti a többtényezős hitelesítést, ha az észlelt bejelentkezési kockázat közepes vagy magas. (Prémium szintű Azure AD 2-licenc szükséges)",
+ "name": "CA007: Többtényezős hitelesítés megkövetelése kockázatos bejelentkezések esetén",
+ "title": "Többtényezős hitelesítés megkövetelése kockázatos bejelentkezések esetén"
+ },
+ "RequirePasswordChangeForHighRiskUsers": {
+ "description": "Megkövetelheti, hogy a felhasználó módosítsa a jelszavát, ha az észlelt felhasználói kockázat magas. (Prémium szintű Azure AD 2-licenc szükséges)",
+ "name": "CA008: Jelszómódosítás megkövetelése a nagy kockázatú felhasználóktól",
+ "title": "Jelszómódosítás megkövetelése a nagy kockázatú felhasználóktól"
+ },
+ "RequireSecurityInfo": {
+ "description": "Annak biztonságossá tétele, hogy a felhasználók mikor és hogyan regisztrálnak az Azure Active Directory-beli többtényezős hitelesítésre és önkiszolgáló jelszókérésre. ",
+ "name": "CA002: A biztonsági adatok regisztrálásának biztonságossá tétele",
+ "title": "A biztonsági adatok regisztrálásának biztonságossá tétele"
+ }
+ },
+ "TemplateState": {
+ "BlockAccessOnUnknowns": {
+ "title": "A szabályzat engedélyezése blokkolja az ismeretlen típusú eszközök hozzáférését. Célszerű „csak jelentés” módra állítani a szabályzatot, amíg meg nem győződik róla, hogy a várakozásoknak megfelelően működik-e."
+ },
+ "BlockLegacyAuth": {
+ "description": "Célszerű „csak jelentés” módra állítani a szabályzatot, amíg meg nem győződik róla, hogy a várakozásoknak megfelelően működik-e.",
+ "title": "A szabályzat engedélyezése letiltja az összes felhasználó régebbi típusú hitelesítését."
+ },
+ "RequireCompliantOrHybridADAdmins": {
+ "Description": {
+ "on": "Javasoljuk, hogy kezdje a folyamatot csak jelentéskészítési módban, amíg meg nem győződik róla, hogy az emelt szintű felhasználókra nem lesz hatással.",
+ "reportOnly": "A megfelelő eszközöket megkövetelő, „csak jelentés” módban üzemelő szabályzatok kérhetik a Mac-, iOS- és Android-eszközök felhasználóitól, hogy válasszanak egy eszköztanúsítványt az eszközök megfelelőségének vizsgálatához, még ha a megfelelőség nem is kötelező. Ezek a kérések egészen addig ismétlődhetnek, amíg az eszköz megfelelővé nem válik."
+ },
+ "Title": {
+ "on": "A szabályzat engedélyezése megakadályozza az emelt szintű felhasználók hozzáférését, kivéve ha felügyelt eszközt, például megfelelő vagy a hibrid Azure AD-hez csatlakoztatott eszközt használnak. Az engedélyezés előtt győződjön meg arról, hogy konfigurálta a megfelelőségi szabályzatokat, vagy engedélyezte a hibrid Azure AD-konfigurációt.",
+ "reportOnly": "Az engedélyezés előtt győződjön meg arról, hogy konfigurálta a megfelelőségi szabályzatokat, vagy engedélyezte a hibrid Azure AD-konfigurációt. "
+ }
+ },
+ "RequireCompliantOrHybridADAllUsers": {
+ "Description": {
+ "on": "Ez a szabályzat minden felhasználóra hatással lesz, kivéve a jelenleg bejelentkezett rendszergazdát. Javasoljuk, hogy kezdje a folyamatot csak jelentéskészítési módban, amíg meg nem győződik róla, hogy a felhasználókra nem lesz hatással."
+ },
+ "Title": {
+ "on": "Ne zárja ki magát! Győződjön meg arról, hogy az eszköze megfelelő vagy csatlakoztatva van a hibrid Azure AD-hez, vagy hogy konfigurálta a többtényezős hitelesítést. ",
+ "reportOnly": "A megfelelő eszközöket megkövetelő, „csak jelentés” módban üzemelő szabályzatok kérhetik a Mac-, iOS- és Android-eszközök felhasználóitól, hogy válasszanak egy eszköztanúsítványt az eszközök megfelelőségének vizsgálatához, még ha a megfelelőség nem is kötelező. Ezek a kérések egészen addig ismétlődhetnek, amíg az eszköz megfelelővé nem válik."
+ }
+ },
+ "RequireMfa": {
+ "description": "Ha vészelérési fiókokat vagy az Azure AD Connectet használja a helyszíni objektumok szinkronizálásához, lehet, hogy ezeket a fiókokat a szabályzat létrehozása után kell kizárnia."
+ },
+ "RequireMfaAdmins": {
+ "description": "Vegye figyelembe, hogy a jelenlegi rendszergazdai fiókot a rendszer automatikusan kihagyja, de a többi védve lesz a szabályzatlétrehozás során. Javasoljuk, hogy kezdje a folyamatot a csak jelentéskészítés módban.",
+ "title": "Fontos, hogy ne zárja ki magát! Ez a szabályzat a teljes Azure Portalra vonatkozik."
+ },
+ "RequireMfaAllUsers": {
+ "description": "Javasoljuk, hogy kezdje a folyamatot a csak jelentéskészítés módban, amíg megtervezi a változást és tájékoztatja róla a felhasználókat.",
+ "title": "A szabályzat engedélyezésével az összes felhasználó számára kötelezővé teszi a többtényezős hitelesítést."
+ },
+ "RequireSecurityInfo": {
+ "description": "Győződjön meg róla, hogy a konfiguráció a vállalati igényeknek megfelelő védelmet biztosít ezeknek a fiókoknak.",
+ "title": "Ez a szabályzat a következő felhasználókra és szerepkörökre nem vonatkozik: vendég- és külső felhasználók, globális rendszergazdák, jelenlegi rendszergazda."
+ }
+ },
+ "basics": "Alapbeállítások",
+ "clientApps": "Ügyfélalkalmazások",
+ "cloudApps": "Felhőalkalmazások",
+ "cloudAppsOrActions": "Felhőalkalmazások vagy -műveletek ",
+ "conditions": "Feltételek ",
+ "createNewPolicy": "Új szabályzat létrehozása sablonokból (előzetes verzió)",
+ "createPolicy": "Szabályzat létrehozása",
+ "currentUser": "Aktuális felhasználó",
+ "customizeBuild": "Build testreszabása",
+ "customizeTemplate": "A sablonok listája a létrehozandó szabályzat típusa alapján van testreszabva",
+ "excludedDevicePlatform": "Kizárt eszközplatformok",
+ "excludedDirectoryRoles": "Kizárt címtárszerepkörök",
+ "excludedLocation": "Kizárt címtárszerepkörök",
+ "excludedUsers": "Kizárt felhasználók",
+ "grantControl": "Írányítás megadása ",
+ "includeFilteredDevice": "Szűrt eszközök belefoglalása a szabályzatba",
+ "includedDevicePlatform": "Befoglalt eszközplatformok",
+ "includedDirectoryRoles": "Belefoglalt címtárszerepkörök",
+ "includedLocation": "Belefoglalt hely",
+ "includedUsers": "Belefoglalt felhasználók",
+ "legacyAuthenticationClients": "Örökölt hitelesítési ügyfelek",
+ "namePolicy": "Szabályzat elnevezése",
+ "next": "Tovább",
+ "policyName": "Szabályzat neve",
+ "policyState": "Szabályzat állapota",
+ "policySummary": "Szabályzat összefoglalása",
+ "policyTemplate": "Szabályzatsablon",
+ "previous": "Vissza",
+ "reviewAndCreate": "Felülvizsgálat és létrehozás",
+ "riskLevels": "Kockázati szintek",
+ "selectATemplate": "Sablon kiválasztása",
+ "selectTemplate": "Sablon kiválasztása",
+ "selectTemplateCategory": "Sablonkategória kiválasztása",
+ "selectTemplateRecommendation": "Válasza alapján a következő sablonokat javasoljuk:",
+ "sessionControl": "Munkamenet-vezérlő ",
+ "signInFrequency": "Bejelentkezés gyakorisága",
+ "signInRisk": "Bejelentkezési kockázat",
+ "template": "Sablon ",
+ "templateCategory": "Sablon kategóriája",
+ "userRisk": "Felhasználói kockázat",
+ "usersAndGroups": "Felhasználók és csoportok ",
+ "viewPolicySummary": "Szabályzatösszegzés megtekintése "
+ },
+ "SSM": {
+ "MemberSelector": {
+ "description": "Felhasználók és csoportok"
+ },
+ "Notification": {
+ "Migration": {
+ "error": "Nem sikerült áttelepíteni a folyamatos hozzáférés-kiértékelés beállításait a feltételes hozzáférési szabályzatokba.",
+ "inProgress": "A folyamatos hozzáférés-kiértékelés beállításainak áttelepítése folyamatban van.",
+ "success": "Sikeresen megtörtént a folyamatos hozzáférés-kiértékelés beállításainak áttelepítése a feltételes hozzáférési szabályzatokba.",
+ "successDescription": "Lépjen a Feltételes hozzáférési szabályzatok lapra, és tekintse meg az áttelepített beállításokat a „CAE-beállításokból létrehozott CA-szabályzat” nevű, újonnan létrehozott szabályzatban."
+ },
+ "error": "Nem sikerült frissíteni a folyamatos hozzáférés-kiértékelés beállításait",
+ "inProgress": "A folyamatos hozzáférés-kiértékelés beállításainak frissítése",
+ "success": "Sikerült frissíteni a folyamatos hozzáférés-kiértékelés beállításait"
+ },
+ "PreviewOptions": {
+ "disable": "Előzetes verzió letiltása",
+ "enable": "Előzetes verzió engedélyezése"
+ },
+ "StrictLocationEnforcement": {
+ "infoContent1": "Az Azure AD és az erőforrás-szolgáltató különböző IP-címket észlel ugyanarról a klienseszközről hálózatszakadás vagy az IPv4/IPv6 egyezés hiánya miatt. A szigorú helykényszerítés megköveteli a feltételes hozzáférési szabályzatot az Azure AD és az erőforrás-szolgáltató által látott IP-címek alapján is.",
+ "infoContent2": "A maximális biztonság érdekében ajánlott az összes olyan IP-cím szerepeltetése, amelyet az Azure AD és az erőforrás-szolgáltató számára is látható a megnevezett hely szabályzatában, valamint javasolt bekapcsolni a Szigorú helykényszerítés módot.",
+ "label": "Szigorú helykényszerítés",
+ "title": "További kényszerítési módok"
+ },
+ "bladeTitle": "Folyamatos hozzáférés-kiértékelés",
+ "description": "A felhasználói hozzáférés visszavonása vagy az ügyfél IP-címének megváltozása esetén a folyamatos hozzáférés-kiértékelés automatikusan, közel valós időben letiltja az erőforrásokhoz és az alkalmazásokhoz való hozzáférést. ",
+ "migrateLabel": "Áttelepítés",
+ "migrationError": "Az áthelyezés a következő hiba miatt meghiúsult:{0}",
+ "migrationInfo": "A CAE-beállítás átkerült a feltételes hozzáféréssel kapcsolatos felhasználói felületre. Kérjük, a fenti „Áttelepítés” gombot választva végezze el az áttelepítést, és a továbbiakban feltételes hozzáférési szabályzattal állítsa be a konfigurációt. További információért kattintson ide.",
+ "noLicenseMessage": "Az intelligens munkamenet-kezelés beállításainak kezelése a prémium szintű Azure AD-vel",
+ "optionsPickerTitle": "A folyamatos hozzáférés-kiértékelés engedélyezése vagy letiltása",
+ "upsellInfo": "Ezen a lapon már nem tudja megváltoztatni a beállításait, és az itt található beállításokat figyelmen kívül kell hagyni. A korábbi beállításait figyelembe vesszük. A továbbiakban a Feltételes hozzáférés területen konfigurálhatja a CAE-beállításait. További információért kattintson ide."
+ },
+ "SelectOrganizations": {
+ "Blade": {
+ "Lower": {
+ "gridAria": "Kijelölt szervezetek listája"
+ },
+ "Upper": {
+ "gridAria": "Az elérhető szervezetek listája"
+ },
+ "description": "Felvehet egy Azure AD-szervezetet oly módon, hogy beírja az egyik tartományának nevét.",
+ "notFoundResult": "Nem található",
+ "searchBoxPlaceholder": "Bérlőazonosító vagy tartománynév",
+ "subTitle": "Azure AD-szervezet"
+ },
+ "Selector": {
+ "AdditionalDetails": {
+ "aria": "Szervezetazonosító: {0}"
+ },
+ "DisplayText": {
+ "multiple": "{0} kijelölt Azure AD-szervezet",
+ "single": "1 kijelölt Azure AD-szervezet"
+ },
+ "gridAria": "Kijelölt szervezetek listája"
+ }
+ },
+ "SessionLifetime": {
+ "PersistentBrowser": {
+ "Error": {
+ "notAllApps": "Az állandó böngésző-munkamenetre vonatkozó szabályzat csak akkor működik megfelelően, ha a „Minden felhőalkalmazás” lehetőség van kiválasztva. Frissítse a felhőalkalmazások kijelölését."
+ },
+ "Option": {
+ "always": "Mindig állandó",
+ "help": "Az állandó böngésző-munkamenet lehetővé teszi a felhasználók számára, hogy a böngészőablak bezárása és újbóli megnyitása után bejelentkezve maradjanak.
\n\n- A beállítás a „Minden felhőalkalmazás” lehetőség kiválasztásakor működik megfelelően.
\n- Ez nincs hatással a jogkivonat-élettartam és a bejelentkezési gyakoriság beállítására.
\n- Ezzel a beállítással felülbírálja a vállalati védjegyezésben megadott „Bejelentkezve maradok lehetőség megjelenítése” szabályzatot.
\n- A „Soha nem állandó” beállítás minden összevont hitelesítési szolgáltatásból beküldött állandó egyszeri bejelentkezési jogcímet felülbírál.
\n- A „Soha nem állandó” beállítás megakadályozza az egyszeri bejelentkezést mobileszközökön az alkalmazások között, illetve az alkalmazások és a felhasználó mobilböngészője között.
\n",
+ "label": "Állandó böngésző-munkamenet",
+ "never": "Soha nem állandó"
+ },
+ "Warning": {
+ "allApps": "Az állandó böngésző-munkamenet csak akkor működik megfelelően, ha a Minden felhőalkalmazás lehetőség van kiválasztva. Módosítsa a felhőalkalmazások kijelölését. További információkért kattintson ide."
+ }
+ },
+ "SignInFrequency": {
+ "Aria": {
+ "units": "Óra vagy nap",
+ "value": "Gyakoriság"
+ },
+ "Option": {
+ "Day": {
+ "plural": "{0} nap",
+ "singular": "1 nap"
+ },
+ "Hour": {
+ "plural": "{0} óra",
+ "singular": "1 óra"
+ },
+ "daysOption": "Nap",
+ "everytime": "Minden alkalommal",
+ "help": "Az az időtartam, amely után a felhasználónak be kell jelentkeznie, ha megpróbál hozzáférni egy erőforráshoz. Az alapértelmezett beállítás 90 nap folyamatos számlálással, azaz a felhasználónak akkor kell újból hitelesítést végeznie, amikor először próbál meg hozzáférni egy erőforráshoz, miután 90 napig vagy annál tovább nem volt aktív a számítógépén.",
+ "hoursOption": "Óra",
+ "label": "Bejelentkezés gyakorisága",
+ "placeholder": "Válasszon egységet"
+ }
+ },
+ "mainOption": "Munkamenet-élettartam módosítása",
+ "mainOptionHelp": "Konfigurálhatja, hogy a rendszer milyen gyakran kérjen be adatokat a felhasználóktól, és milyen gyakran őrizze meg a böngésző-munkameneteket. Előfordulhat, hogy azok az alkalmazások, amelyek nem támogatják a modern hitelesítési protokollokat, nem tartják be ezeket a szabályzatokat. Ebben az esetben lépjen kapcsolatba az adott alkalmazás fejlesztőjével."
+ },
+ "SigninRisk": {
+ "LearnMore": {
+ "message": "A felhasználói hozzáférés vezérlésével reagálhat bizonyos bejelentkezési kockázati szintekre."
+ }
+ },
+ "SingleSelectorActive": {
+ "failed": "Nem sikerült betölteni ezeket az adatokat.",
+ "reattempt": "Adatok betöltése: {0}. újbóli kísérlet összesen {1} kísérletből."
+ },
+ "TimeCondition": {
+ "Errors": {
+ "both": "Érvénytelen belefoglalási vagy kizárási időtartomány.",
+ "daysOfWeek": "{0} Mindenképpen adja meg a hét legalább egy napját.",
+ "endBeforeStart": "{0} Győződjön meg arról, hogy a kezdő dátum/idő a záró dátum/időnél korábbi.",
+ "exclude": "Érvénytelen kizárási időtartomány.",
+ "generic": "{0} Győződjön meg arról, hogy a hét napjai és az időzóna is be van állítva. Ha nem jelöli be az Egész nap lehetőséget, akkor kezdő és záró időpontot is be kell állítani.",
+ "include": "Érvénytelen belefoglalási időtartomány.",
+ "timeMissing": "{0} Mindenképpen adja meg a kezdő és a záró időpontot is.",
+ "timeZone": "{0} Mindenképpen adjon meg egy időzónát.",
+ "timesAndZone": "{0} Mindenképpen állítsa be a kezdő és a záró időpontot, illetve az időzónát."
+ }
+ },
+ "UserActions": {
+ "Included": {
+ "none": "Nincsenek kijelölt felhőalkalmazások vagy -műveletek",
+ "plural": "{0} felhasználói művelet belefoglalva",
+ "singular": "1 felhasználói művelet belefoglalva"
+ },
+ "accessRequirement1": "1. szint",
+ "accessRequirement2": "2. szint",
+ "accessRequirement3": "3. szint",
+ "accessRequirementsLabel": "A biztonságos alkalmazás adatainak elérése",
+ "appsActionsAuthTitle": "Felhőalkalmazások, műveletek vagy hitelesítési környezet",
+ "appsOrActionsSelectorInfoBallonText": "Elért alkalmazások vagy felhasználói műveletek",
+ "appsOrActionsTitle": "Felhőalkalmazások vagy -műveletek",
+ "label": "Felhasználói műveletek",
+ "mainOptionsLabel": "Adja meg, hogy mire lesz érvényes a szabályzat",
+ "registerOrJoinDevices": "Eszközök regisztrálása vagy csatlakoztatása",
+ "registerSecurityInfo": "Biztonsági adatok regisztrálása",
+ "selectionInfo": "Adja meg azokat a műveleteket, amelyekre érvényes lesz a szabályzat",
+ "whatIf": "Felhasználói művelet belefoglalva"
+ },
+ "UserSelectionBlade": {
+ "DirectoryRoles": {
+ "ariaLabel": "Címtárbeli szerepkörök kiválasztása"
+ },
+ "Excluded": {
+ "gridAria": "Kizárt felhasználók listája"
+ },
+ "Included": {
+ "gridAria": "Belefoglalt felhasználók listája"
+ },
+ "Validation": {
+ "customRoleIncluded": "A címtárszerepkörök legalább egy egyéni szerepkört foglalnak magukban",
+ "customRoleSelected": "Legalább egy egyéni szerepkör van kiválasztva",
+ "failed": "A(z) „{0}” beállítás konfigurálása kötelező",
+ "roles": "Válasszon ki legalább egy szerepkört",
+ "usersGroups": "Válasszon ki legalább egy felhasználót vagy csoportot"
+ },
+ "learnMore": "A hozzáférés-vezérlés azon alapszik, hogy kire érvényes a szabályzat, például felhasználókra és csoportokra, számításifeladat-identitásokra, címtárbeli szerepkörökre vagy külső vendégekre."
+ },
+ "ValidationResult": {
+ "blockEveryonePolicy": "A szabályzatkonfiguráció nem támogatott. Vizsgálja felül a hozzárendeléseket és a vezérlőket.",
+ "invalidApplicationCondition": "Érvénytelen felhőalapú alkalmazások vannak kijelölve",
+ "invalidClientTypesCondition": "Érvénytelen ügyfélalkalmazások vannak kijelölve",
+ "invalidConditions": "Nincsenek kijelölve hozzárendelések",
+ "invalidControls": "Érvénytelen vezérlők vannak kijelölve",
+ "invalidDevicePlatformsCondition": "Érvénytelen eszközplatformok vannak kijelölve",
+ "invalidDevicesCondition": "Érvénytelen eszközkonfiguráció. Valószínűleg érvénytelen a(z) {0} konfigurálása.",
+ "invalidGrantControlPolicy": "Érvénytelen engedélyezési vezérlő",
+ "invalidLocationsCondition": "Érvénytelen helyfeltételek vannak kijelölve",
+ "invalidPolicy": "Nincsenek kijelölve hozzárendelések",
+ "invalidSessionControlPolicy": "Érvénytelen munkamenet-vezérlő",
+ "invalidSignInRisksCondition": "Érvénytelen a kijelölt bejelentkezési kockázat",
+ "invalidUserRisksCondition": "Érvénytelen a kijelölt felhasználói kockázat",
+ "invalidUsersCondition": "Érvénytelen felhasználók vannak kijelölve",
+ "mamPolicyShouldOnlyTargetAndroidOrIosPlatforms": "Kizárólag androidos vagy iOS-es ügyfélplatformokhoz használhat MAM-szabályzatokat.",
+ "notSupportedCombination": "A szabályzatkonfiguráció nem támogatott. Tájékozódjon részletesebben a támogatott szabályzatokról.",
+ "pending": "Szabályzat érvényesítése",
+ "requireComplianceEveryonePolicy": "A szabályzatkonfiguráció eszközmegfelelőséget ír elő az összes felhasználó számára. Vizsgálja felül a kijelölt hozzárendeléseket.",
+ "success": "Érvényes szabályzat"
+ },
+ "VpnCert": {
+ "Grid": {
+ "aria": "VPN-tanúsítványok listája"
+ }
+ },
+ "WarningsInfo": {
+ "Controls": {
+ "compliantDeviceEnabled": "Ne zárja ki magát a fiókjából! Győződjön meg arról, hogy eszköze megfelel az előírásoknak.",
+ "domainJoinedDeviceEnabled": "Ne zárja ki magát a fiókjából! Győződjön meg arról, hogy eszköze a hibrid Azure Active Directoryhoz csatlakozó eszköz.",
+ "exchangeDisabled": "Az Exchange ActiveSync csak a Szabályzatnak megfelelő eszköz és a Jóváhagyott ügyfélalkalmazás vezérlő használatát támogatja. További információkért kattintson ide.",
+ "exchangeDisabled2": "Az Exchange ActiveSync csak a Szabályzatnak megfelelő eszköz, a Jóváhagyott ügyfélalkalmazás és a Szabályzatnak megfelelő ügyfélalkalmazás vezérlő használatát támogatja. További információkért kattintson ide.",
+ "notAvailableForSP": "Bizonyos vezérlők a szabályzat-hozzárendelésben megadott „{0}” választás miatt nem érhetők el",
+ "requireAuthOrMfa": "A(z) {0} nem használható a következővel: {1}",
+ "requireMfa": "Fontolja meg az új „{0}“ nyilvános előzetes verziójának tesztelését",
+ "requirePasswordChangeEnabled": "A Jelszómódosítás megkövetelése csak akkor használható, ha a szabályzat Minden felhőalkalmazáshoz van társítva"
+ },
+ "Policies": {
+ "Linux": {
+ "devicePlatformsReportOnlyPolicy": "A csak jelentéskészítési módban a megfelelő eszközöket igénylő szabályzatok macOS, iOS, Android és Linux rendszerben is kérhetik a felhasználóktól az eszköz tanúsítványának kiválasztását.",
+ "excludeDevicePlatforms": "A macOS, az iOS, az Android és a Linux eszközplatformok kizárása a jelen szabályzatból.",
+ "proceedAnywayDevicePlatforms": "Folytatás a kijelölt konfigurációval. A macOS, iOS, Android és Linux rendszerben a felhasználók figyelmeztetéseket kaphatnak, amikor a rendszer ellenőrzi az eszközök megfelelőségét."
+ },
+ "blockCurrentUserPolicy": "Ne zárja ki magát! Azt javasoljuk, hogy először kis felhasználócsoportra alkalmazza a szabályzatot, hogy biztosan a várt módon működjön. Ezenkívül javasoljuk, hogy zárjon ki legalább egy rendszergazdát a szabályzatból. Ez biztosítja, hogy továbbra is hozzáféréssel rendelkezzen, és frissíteni tudja a szabályzatot, ha módosításra van szükség. Tekintse át az érintett felhasználókat és alkalmazásokat.",
+ "devicePlatformsReportOnlyPolicy": "A csak jelentéskészítési módban a megfelelő eszközöket igénylő szabályzatok macOS, iOS és Android rendszerben is kérhetik a felhasználóktól az eszköz tanúsítványának kiválasztását.",
+ "excludeCurrentUserSelection": "Zárja ki az aktuális felhasználót ({0}) ebből a szabályzatból.",
+ "excludeDevicePlatforms": "A macOS, az iOS és az Android eszközplatformok kizárása a jelen szabályzatból.",
+ "proceedAnywayDevicePlatforms": "Folytatás a kijelölt konfigurációval. A macOS, iOS és Android rendszerben a felhasználók figyelmeztetéseket kaphatnak, amikor a rendszer ellenőrzi az eszközök megfelelőségét.",
+ "proceedAnywaySelection": "Tudomásul veszem, hogy ez a szabályzat hatással lesz a fiókomra. Folytatom a műveletet."
+ },
+ "ServicePrincipals": {
+ "blockExchange": "Az Office 365 Exchange Online kiválasztása többek között a OneDrive és a Teams alkalmazásra is hatással lesz.",
+ "blockPortal": "Ne zárja ki magát a fiókjából! Ez a szabályzat a teljes Azure Portalra vonatkozik. Mielőtt folytatná, gondoskodjon arról, hogy Ön vagy valaki más továbbra is be tudjon jelentkezni a portálra.",
+ "blockPortalWithSession": "Ne zárja ki magát a fiókjából! Ez a szabályzat a teljes Azure Portalra vonatkozik. Mielőtt folytatná, gondoskodjon arról, hogy Ön vagy valaki más továbbra is be tudjon jelentkezni a portálra.
Figyelmen kívül hagyhatja ezt a figyelmeztetést, ha olyan állandó böngésző-munkamenetre vonatkozó szabályzatot állít be, amely csak akkor működik megfelelően, ha a Minden felhőalkalmazás lehetőség van kiválasztva.",
+ "blockSharePoint": "A SharePoint Online kiválasztása olyan alkalmazásokra is hatással lesz, mint például a Microsoft Teams, a Planner, a Delve, a MyAnalytics és a Newsfeed.",
+ "blockSkype": "A Skype for Business Online kiválasztása a Microsoft Teamsre is hatással lesz.",
+ "includeOrExclude": "Az alkalmazásszűrőt konfigurálhatja a(z) {0} vagy {1} beállítással, de mindkettővel nem.",
+ "selectAppsNAForSP": "Egyes alkalmazások nem jelölhetők ki a szabályzat-hozzárendelésben megadott {0} kijelölés miatt.",
+ "teamsBlocked": "A Microsoft Teams akkor is érintett, ha a szabályzat tartalmazza a SharePoint Online és az Exchange Online alkalmazásokat."
+ },
+ "Users": {
+ "blockAllUsers": "Ne zárja ki saját magát! Ez a szabályzat minden felhasználót érinteni fog. Azt javasoljuk, hogy először a felhasználók egy kisebb csoportjára alkalmazza a szabályzatot, és ellenőrizze, hogy az elvárásoknak megfelelően működik-e."
+ }
+ },
+ "WhatIf": {
+ "Device": {
+ "AttributesGrid": {
+ "aria": "A bejelentkezés során alkalmazott eszköz attribútumainak listája.",
+ "infoBalloon": "A bejelentkezés során alkalmazott eszköz attribútumainak listája."
+ }
+ }
+ },
+ "advancedTabText": "Speciális",
+ "allCloudAppsErrorBox": "A Minden felhőalkalmazás lehetőséget kell kiválasztani, ha a Jelszómódosítás megkövetelése engedély van kiválasztva",
+ "allCloudAppsReauth": "A „Minden felhőalkalmazás” beállítást be kell jelölni, ha a „Bejelentkezési gyakoriság minden alkalommal” munkamenet-vezérlő és a „Bejelentkezési kockázat“ feltétel van kiválasztva",
+ "allCloudOrSpecificApps": "A „Bejelentkezési gyakoriság minden alkalommal” munkamenet-vezérlő megköveteli a „minden felhőalkalmazás” vagy a kifejezetten támogatott alkalmazások kiválasztását",
+ "allDayCheckboxLabel": "Egész nap",
+ "allDevicePlatforms": "Bármely eszköz",
+ "allGuestUserInfoContent": "Tartalmazza az Azure AD B2B-s vendégfelhasználókat, de a SharePoint B2B-s vendégfelhasználókat nem",
+ "allGuestUserLabel": "Minden vendég- és külső felhasználó",
+ "allRiskLevelsOption": "Minden kockázati szint",
+ "allTrustedLocationLabel": "Minden megbízható hely",
+ "allUserGroupSetSelectorLabel": "Minden kiválasztott felhasználó és csoport",
+ "allUsersReauth": "A „Bejelentkezési gyakoriság minden alkalommal” munkamenet-vezérlő megköveteli a „Minden felhasználó” bejelölését",
+ "allUsersString": "Minden felhasználó",
+ "and": "{0} ÉS {1} ",
+ "andWithGrouping": "({0}) ÉS {1} ",
+ "androidDisplayName": "Android",
+ "anyCloudAppSelection": "Bármely felhőalkalmazás",
+ "appContextOptionInfoContent": "Kért hitelesítési címke",
+ "appContextOptionLabel": "Kért hitelesítési címke (Előnézet)",
+ "appContextUriPlaceholder": "Példa: uri:contoso.com:level3",
+ "appEnforceInfoBubble": "Az alkalmazás által kényszerített korlátozások további adminisztrátori beállításokat követelhetnek meg a felhőalkalmazásokban. A korlátozások csak új munkamenetekhez kapcsolódóan lépnek életbe.",
+ "appNotSetSeletorLabel": "0 felhőalkalmazás kiválasztva",
+ "applyConditionClientAppInfoBalloonContent": "Ügyfélalkalmazások konfigurálása a szabályzat adott ügyfélalkalmazásokra való érvényesítéséhez",
+ "applyConditionDevicePlatformInfoBalloonContent": "Eszközplatformok konfigurálása a szabályzat adott platformokra való érvényesítéséhez",
+ "applyConditionDeviceStateInfoBalloonContent": "Eszközállapot konfigurálása a szabályzat adott eszközállapot(ok)ra való érvényesítéséhez",
+ "applyConditionLocationInfoBalloonContent": "Helyek konfigurálása a szabályzat megbízható/nem megbízható helyekre való érvényesítéséhez",
+ "applyConditionSigninRiskInfoBalloonContent": "A bejelentkezési kockázat konfigurálása a szabályzat kiválasztott kockázati szint(ek)re való érvényesítéséhez",
+ "applyConditionUserRiskInfoBalloonContent": "A felhasználói kockázat konfigurálása a szabályzat kiválasztott kockázati szint(ek)re való érvényesítéséhez",
+ "applyConditonLabel": "Konfigurálás",
+ "ariaLabelPolicyDisabled": "A szabályzat le van tiltva",
+ "ariaLabelPolicyEnabled": "A szabályzat engedélyezve van",
+ "ariaLabelPolicyReportOnly": "A szabályzat „Csak jelentés” üzemmódban van",
+ "blockAccess": "Hozzáférés letiltása",
+ "builtInDirectoryRoleLabel": "Beépített címtárszerepkörök",
+ "casCustomControlInfo": "Az egyéni szabályzatokat Cloud App Security portálon kell konfigurálni. Ez a vezérlő azonnal használható a kiemelt alkalmazásokhoz, és önállóan bevezethető bármely alkalmazáshoz. A két forgatókönyvvel kapcsolatos további információért kattintson ide.",
+ "casInfoBubble": "Ez a vezérlő számos felhőalapú alkalmazások esetében használható.",
+ "casPreconfiguredControlInfo": "Ez a vezérlő azonnal használható a kiemelt alkalmazásokhoz, és önállóan bevezethető bármely alkalmazáshoz. A két forgatókönyvvel kapcsolatos további információért kattintson ide.",
+ "cert64DownloadCol": "Base64-tanúsítvány letöltése",
+ "cert64Name": "Base64 VPN-tanúsítvány",
+ "certDownloadCol": "Tanúsítvány letöltése",
+ "certDurationCol": "Lejárat",
+ "certDurationStartCol": "Érvényesség kezdete",
+ "certName": "VPN-tanúsítvány",
+ "certainApps": "Csak bizonyos alkalmazások támogatottak a „Bejelentkezési gyakoriság minden alkalommal” beállítás esetében, ha a „Többtényezős hitelesítés megkövetelése” és a „Jelszómódosítás megkövetelése” engedély nincs kiválasztva",
+ "chooseApplicationsBladeSubtitle": "",
+ "chooseApplicationsBladeTitle": "Alkalmazások kiválasztása",
+ "chooseApplicationsCartSubitle": "",
+ "chooseApplicationsCartTitle": "Kiválasztott alkalmazások",
+ "chooseApplicationsEmpty": "Nincsenek alkalmazások",
+ "chooseApplicationsNone": "Egyik sem",
+ "chooseApplicationsNoneFound": "A(z) {0} felhasználó nem található. Adjon meg egy másik nevet vagy azonosítót.",
+ "chooseApplicationsPlural": "{0} és {1} további",
+ "chooseApplicationsReAuthEverytimeInfo": "Az alkalmazást keresi? Egyes alkalmazások nem használhatók az „Újrahitelesítés megkövetelése – minden alkalommal” munkamenet-vezérlővel",
+ "chooseApplicationsRemove": "Eltávolítás",
+ "chooseApplicationsReturnedPlural": "{0} alkalmazás található",
+ "chooseApplicationsReturnedSingular": "1 alkalmazás található",
+ "chooseApplicationsSearchBalloon": "Alkalmazás keresése név vagy azonosító megadásával.",
+ "chooseApplicationsSearchHint": "Alkalmazások keresése...",
+ "chooseApplicationsSearchLabel": "Alkalmazások",
+ "chooseApplicationsSearching": "Keresés...",
+ "chooseApplicationsSelect": "Kijelölés",
+ "chooseApplicationsSelected": "Kiválasztva",
+ "chooseApplicationsSingular": "{0} és 1 további",
+ "chooseApplicationsTooMany": "Nem jeleníthető meg az összes eredmény. Szűrje az eredményeket a keresési mező használatával.",
+ "chooseLocationCorpnetItem": "Vállalati hálózat",
+ "chooseLocationSelectedLocationsLabel": "Kijelölt helyek",
+ "chooseLocationTrustedIpsItem": "MFA megbízható IP-címei",
+ "chooseLocationsBladeSubtitle": "",
+ "chooseLocationsBladeTitle": "Helyek kiválasztása",
+ "chooseLocationsCartSubitle": "",
+ "chooseLocationsCartTitle": "Kiválasztott helyek",
+ "chooseLocationsEmpty": "Nincsenek helyek",
+ "chooseLocationsExcludedSelectorTitle": "Kijelölés",
+ "chooseLocationsIncludedSelectorTitle": "Kijelölés",
+ "chooseLocationsNone": "Egyik sem",
+ "chooseLocationsNoneFound": "A(z) {0} felhasználó nem található. Adjon meg egy másik nevet vagy azonosítót.",
+ "chooseLocationsPlural": "{0} és {1} további",
+ "chooseLocationsRemove": "Eltávolítás",
+ "chooseLocationsReturnedPlural": "A rendszer {0} helyet talált",
+ "chooseLocationsReturnedSingular": "A rendszer 1 helyet talált",
+ "chooseLocationsSearchBalloon": "Hely keresése név megadásával.",
+ "chooseLocationsSearchHint": "Helyek keresése...",
+ "chooseLocationsSearchLabel": "Helyek",
+ "chooseLocationsSearching": "Keresés...",
+ "chooseLocationsSelect": "Kijelölés",
+ "chooseLocationsSelected": "Kijelölt",
+ "chooseLocationsSelectionBladeExcludedSelectorTitle": "Kijelölés",
+ "chooseLocationsSelectionBladeIncludedSelectorTitle": "Kijelölés",
+ "chooseLocationsSingular": "{0} és 1 további",
+ "chooseLocationsTooMany": "Nem jeleníthető meg az összes eredmény. Szűrje az eredményeket a keresési mező használatával.",
+ "claimProviderAddCommandText": "Új egyéni vezérlő",
+ "claimProviderAddNewBladeTitle": "Új egyéni vezérlő",
+ "claimProviderDeleteCommand": "Törlés",
+ "claimProviderDeleteDescription": "Biztos, hogy törli a(z) {0} hálózatot? Ez a művelet nem vonható vissza.",
+ "claimProviderDeleteTitle": "Folytatja?",
+ "claimProviderEditInfoText": "Adja meg a jogcímszolgáltatóktól kapott, egyéni vezérlőkhöz tartozó JSON-t.",
+ "claimProviderNotificationCreateDescription": "A(z) „{0}” nevű egyéni vezérlő létrehozása",
+ "claimProviderNotificationCreateFailedDescription": "A(z) „{0}” nevű egyéni vezérlő létrehozása sikertelen. Próbálkozzon újra később.",
+ "claimProviderNotificationCreateFailedTitle": "Nem sikerült létrehozni az egyéni vezérlőt",
+ "claimProviderNotificationCreateSuccessDescription": "A(z) „{0}” nevű egyéni vezérlő létrehozva",
+ "claimProviderNotificationCreateSuccessTitle": "Hálózat ({0}) létrehozva",
+ "claimProviderNotificationCreateTitle": "Hálózat ({0}) létrehozása",
+ "claimProviderNotificationDeleteDescription": "A(z) „{0}” nevű egyéni vezérlő törlése",
+ "claimProviderNotificationDeleteFailedDescription": "A(z) „{0}” nevű egyéni vezérlő törlése sikertelen. Próbálkozzon újra később.",
+ "claimProviderNotificationDeleteFailedTitle": "Nem sikerült törölni az egyéni vezérlőt",
+ "claimProviderNotificationDeleteSuccessDescription": "A(z) „{0}” nevű egyéni vezérlő törölve",
+ "claimProviderNotificationDeleteSuccessTitle": "A(z) {0} hálózat törölve",
+ "claimProviderNotificationDeleteTitle": "A(z) {0} törlése",
+ "claimProviderNotificationUpdateDescription": "A(z) „{0}” nevű egyéni vezérlő frissítése",
+ "claimProviderNotificationUpdateFailedDescription": "A(z) „{0}” nevű egyéni vezérlő frissítése sikertelen. Próbálkozzon újra később.",
+ "claimProviderNotificationUpdateFailedTitle": "Nem sikerült frissíteni az egyéni vezérlőt",
+ "claimProviderNotificationUpdateSuccessDescription": "A(z) „{0}” nevű egyéni vezérlő frissítve",
+ "claimProviderNotificationUpdateSuccessTitle": "A(z) {0} hálózat frissítve",
+ "claimProviderNotificationUpdateTitle": "A(z) {0} hálózat frissítése",
+ "claimProviderValidationAppIdInvalid": "Az „AppId” értéke érvénytelen. Tekintse át, és próbálkozzon újra.",
+ "claimProviderValidationClientIdMissing": "Az adatokból hiányzik a „ClientId” érték. Tekintse át, és próbálkozzon újra.",
+ "claimProviderValidationControlClaimsRequestedMissing": "A „Control” elem nem tartalmaz „ClaimsRequested” értéket. Tekintse át, és próbálkozzon újra.",
+ "claimProviderValidationControlClaimsRequestedTypeMissing": "A „ClaimsRequested” elem nem tartalmaz „Type” értéket. Tekintse át, és próbálkozzon újra.",
+ "claimProviderValidationControlIdAlreadyExists": "A „Control” elem „Id” értéke már létezik. Tekintse át, és próbálkozzon újra.",
+ "claimProviderValidationControlIdMissing": "A „Control” elem nem tartalmaz „Id” értéket. Tekintse át, és próbálkozzon újra.",
+ "claimProviderValidationControlIdReferencedInExistingPolicy": "A „Control” elem „Id” értéke nem távolítható el, mert meglévő szabályzat hivatkozik rá. Távolítsa el a szabályzatból előbb.",
+ "claimProviderValidationControlIdTooManyControls": "A Control tulajdonság túl sok vezérlőelemet tartalmaz. Tekintse át, majd próbálkozzon újra.",
+ "claimProviderValidationControlIdValueReserved": "A „Control” elem „Id” értéke fenntartott kulcsszó, használjon más azonosítót.",
+ "claimProviderValidationControlNameAlreadyExists": "A „Control” elem „Name” értéke már létezik. Tekintse át, és próbálkozzon újra.",
+ "claimProviderValidationControlNameMissing": "A „Control” nem tartalmaz „Name” értéket. Tekintse át, és próbálkozzon újra.",
+ "claimProviderValidationControlsMissing": "Az adatokból hiányzik a „Controls” érték. Tekintse át, és próbálkozzon újra.",
+ "claimProviderValidationDiscoveryUrlMissing": "Az adatokból hiányzik a „DiscoveryUrl” érték. Tekintse át, és próbálkozzon újra.",
+ "claimProviderValidationInvalid": "A megadott adatok érvénytelenek. Tekintse át, és próbálkozzon újra.",
+ "claimProviderValidationInvalidJsonDefinition": "Nem lehet menteni az egyéni vezérlőt. Tekintse át a JSON-szöveget, és próbálkozzon újra.",
+ "claimProviderValidationNameAlreadyExists": "A „Name” érték már létezik. Tekintse át, és próbálkozzon újra.",
+ "claimProviderValidationNameMissing": "Az adatokból hiányzik a „Name” érték. Tekintse át, és próbálkozzon újra.",
+ "claimProviderValidationUnknown": "A megadott adatok ellenőrzése közben ismeretlen hiba történt. Tekintse át, és próbálkozzon újra.",
+ "claimProvidersNone": "Nincs egyéni vezérlő",
+ "claimProvidersSearchPlaceholder": "Keressen vezérlőket.",
+ "classicPoilcyFilterTitle": "Megjelenítés",
+ "classicPolicyAllPlatforms": "Összes platform",
+ "classicPolicyClientAppBrowserAndNative": "Böngésző, mobilalkalmazások és asztali ügyfelek",
+ "classicPolicyCloudAppTitle": "Felhőalkalmazás",
+ "classicPolicyControlAllow": "Engedélyezés",
+ "classicPolicyControlBlock": "Blokk",
+ "classicPolicyControlBlockWhenNotAtWork": "Hozzáférés letiltása a munkahelyen kívül",
+ "classicPolicyControlRequireCompliantDevice": "Megfelelő eszköz megkövetelése",
+ "classicPolicyControlRequireDomainJoinedDevice": "Tartományhoz csatlakoztatott eszköz megkövetelése",
+ "classicPolicyControlRequireMfa": "Többtényezős hitelesítés megkövetelése",
+ "classicPolicyControlRequireMfaWhenNotAtWork": "Többtényezős hitelesítés megkövetelése a munkahelyen kívül",
+ "classicPolicyDeleteCommand": "Törlés",
+ "classicPolicyDeleteFailTitle": "Nem sikerült törölni a klasszikus szabályzatot",
+ "classicPolicyDeleteInProgressTitle": "Klasszikus szabályzat törlése",
+ "classicPolicyDeleteSuccessTitle": "Klasszikus szabályzat törölve",
+ "classicPolicyDetailBladeTitle": "Részletek",
+ "classicPolicyDisableCommand": "Letiltás",
+ "classicPolicyDisableConfirmation": "Biztosan letiltja a(z) {0} szabályzatot? Ez a művelet nem vonható vissza.",
+ "classicPolicyDisableFailDescription": "Nem sikerült letiltani a(z) {0} szabályzatot",
+ "classicPolicyDisableFailTitle": "Nem sikerült letiltani a klasszikus szabályzatot",
+ "classicPolicyDisableInProgressDescription": "A(z) {0} szabályzat letiltása",
+ "classicPolicyDisableInProgressTitle": "Klasszikus szabályzat letiltása",
+ "classicPolicyDisableSuccessDescription": "A(z) {0} szabályzat letiltása sikerült",
+ "classicPolicyDisableSuccessTitle": "Klasszikus szabályzat letiltva",
+ "classicPolicyEasSupportedPlatforms": "Az Exchange ActiveSync által támogatott platformok",
+ "classicPolicyEasUnsupportedPlatforms": "Az Exchange ActiveSync által nem támogatott platformok",
+ "classicPolicyExcludedPlatformsTitle": "Kizárt eszközplatformok",
+ "classicPolicyFilterAll": "Minden szabályzat",
+ "classicPolicyFilterDisabled": "Letiltott szabályzatok",
+ "classicPolicyFilterEnabled": "Engedélyezett szabályzatok",
+ "classicPolicyIncludeExcludeMembersDescription": "Egyes csoportok kizárásával több fázisban telepítheti át a szabályzatokat.",
+ "classicPolicyIncludeExcludeMembersTitle": "Csoportok belefoglalása vagy kizárása",
+ "classicPolicyIncludedPlatformsTitle": "Befoglalt eszközplatformok",
+ "classicPolicyManualMigrationMessage": "A szabályzatot manuálisan kell áttelepíteni.",
+ "classicPolicyMigrateCommand": "Áttelepítés",
+ "classicPolicyMigrateConfirmation": "Biztosan áttelepíti a(z) {0} szabályzatot? A szabályzatot csak egyszer lehet áttelepíteni.",
+ "classicPolicyMigrateFailDescription": "Nem sikerült áttelepíteni a(z) {0} szabályzatot",
+ "classicPolicyMigrateFailTitle": "Nem sikerült áttelepíteni a klasszikus szabályzatot",
+ "classicPolicyMigrateInProgressDescription": "A(z) {0} szabályzat áttelepítése",
+ "classicPolicyMigrateInProgressTitle": "Klasszikus szabályzat áttelepítése",
+ "classicPolicyMigrateRecommendText": "Ajánlás: Végezzen áttelepítést az új Azure Portal szabályzataira.",
+ "classicPolicyMigrateSuccessTitle": "A klasszikus szabályzat áttelepítése sikerült",
+ "classicPolicyMigratedSuccessDescription": "Ez a klasszikus szabályzat mostantól kezelhető a Szabályzatok pontban.",
+ "classicPolicyMigratedSuccessDescriptionMultiple": "A klasszikus szabályzatot {0} új szabályzat formájában telepíti át a rendszer. Az új szabályzatok a Szabályzatok pontban kezelhetők.",
+ "classicPolicyNoEditPermissionMsg": "Nincs engedélye a szabályzat szerkesztéséhez. Csak a globális és a biztonsági rendszergazdák módosíthatja a szabályzatot. További információért kattintson ide.",
+ "classicPolicySaveFailDescription": "Nem sikerült menteni a(z) {0} szabályzatot",
+ "classicPolicySaveFailTitle": "Nem sikerült menteni a klasszikus szabályzatot",
+ "classicPolicySaveInProgressDescription": "A(z) {0} szabályzat mentése",
+ "classicPolicySaveInProgressTitle": "Klasszikus szabályzat mentése",
+ "classicPolicySaveSuccessDescription": "A(z) {0} szabályzat mentése sikerült",
+ "classicPolicySaveSuccessTitle": "Klasszikus szabályzat mentve",
+ "clientAppBladeLegacyInfoBanner": "Az örökölt hitelesítés használata jelenleg nem támogatott",
+ "clientAppBladeLegacyUpsellBanner": "A nem támogatott ügyfélalkalmazások letiltása (Előzetes verzió)",
+ "clientAppBladeTitle": "Ügyfélalkalmazások",
+ "clientAppDescription": "Válassza ki az ügyfélalkalmazásokat, melyekre érvényes lesz a házirend",
+ "clientAppExchangeActiveSync": "Exchange ActiveSync",
+ "clientAppExchangeDisabledInfo": "Az Exchange ActiveSync akkor érhető el, ha az Exchange Online az egyetlen kijelölt felhőalkalmazás. További információkért kattintson ide",
+ "clientAppExchangeWarning": "Az Exchange ActiveSync jelenleg semmilyen más feltételt nem támogat",
+ "clientAppLearnMore": "A felhasználói hozzáférés vezérlésével megcélozhat olyan ügyfélalkalmazásokat, amelyek nem használnak modern hitelesítést.",
+ "clientAppLegacyHeader": "Örökölt hitelesítési ügyfelek",
+ "clientAppMobileDesktop": "Mobilalkalmazások és asztali ügyfelek",
+ "clientAppModernHeader": "Modern hitelesítési ügyfelek",
+ "clientAppOnlySupportedPlatforms": "Házirend alkalmazása csak a támogatott platformokra",
+ "clientAppSelectSpecificClientApps": "Ügyfélalkalmazások kijelölése",
+ "clientAppV2BladeTitle": "Ügyfélalkalmazások (Előzetes verzió)",
+ "clientAppWebBrowser": "Böngésző",
+ "clientAppsSelectedLabel": "{0} belefoglalva",
+ "clientTypeBrowser": "Böngésző",
+ "clientTypeEas": "Exchange ActiveSync-ügyfelek",
+ "clientTypeEasInfo": "Csak örökölt hitelesítést használó Exchange ActiveSync-kliensek.",
+ "clientTypeModernAuth": "Modern hitelesítési ügyfelek",
+ "clientTypeOtherClients": "Egyéb ügyfelek",
+ "clientTypeOtherClientsInfo": "Ez vonatkozik a régebbi Office-kliensekre és egyéb e-mail-protokollokra (POP, IMAP, SMTP stb.). [További információ][1]\n[1]: https://aka.ms/caclientapps\n",
+ "cloudAppCountDiffBannerText": "A szabályzatban konfigurált {0} felhőalkalmazás törlődött a könyvtárból, de ez a szabályzat más alkalmazásait nem érinti. A szabályzat alkalmazás szakaszának legközelebbi frissítésekor a törölt alkalmazások automatikusan el lesznek távolítva.",
+ "cloudAppsSelectionBladeAllMicrosoftApps": "Az összes Microsoft-alkalmazás",
+ "cloudAppsSelectionExcludeAllMicrosoftClients": "A Microsoft felhőalapú, asztali és mobilalkalmazásainak engedélyezése (Előzetes verzió)",
+ "cloudappsSelectionBladeAllCloudapps": "Minden felhőalkalmazás",
+ "cloudappsSelectionBladeExcludeDescription": "Válassza ki a szabályzat alól mentesítendő felhőalkalmazásokat",
+ "cloudappsSelectionBladeExcludedSelectorTitle": "Kizárt felhőalkalmazások kiválasztása",
+ "cloudappsSelectionBladeIncludeDescription": "Válassza ki a felhőalkalmazásokat, melyekre érvényes lesz a házirend",
+ "cloudappsSelectionBladeIncludedSelectorTitle": "Kijelölés",
+ "cloudappsSelectionBladeSelectedCloudapps": "Alkalmazások kiválasztása",
+ "cloudappsSelectorInfoBallonText": "Azok a szolgáltatások, amelyekhez a felhasználó munkavégzés céljából hozzáfér. Példa: Salesforce",
+ "cloudappsSelectorPluralExcluded": "{0} alkalmazás kihagyva",
+ "cloudappsSelectorPluralIncluded": "{0} alkalmazás belefoglalva",
+ "cloudappsSelectorSingularExcluded": "1 alkalmazás kihagyva",
+ "cloudappsSelectorSingularIncluded": "1 alkalmazás belefoglalva",
+ "cloudappsSelectorUserPlural": "{0} alkalmazás",
+ "cloudappsSelectorUserSingular": "1 alkalmazás",
+ "conditionLabelMulti": "{0} kijelölt feltétel",
+ "conditionLabelOne": "1 kijelölt feltétel",
+ "conditionalAccessBladeTitle": "Feltételes hozzáférés",
+ "conditionsNotSelectedLabel": "Nincs konfigurálva",
+ "conditionsReqMfaReauthSet": "Néhány beállítás nem érhető el, mert jelenleg a „Többtényezős hitelesítés megkövetelése” és a „Bejelentkezési gyakoriság minden alkalommal” munkamenet-vezérlő van kiválasztva",
+ "conditionsReqPwSet": "Néhány lehetőség nem érhető el, mert jelenleg a Jelszómódosítás megkövetelése engedély van kiválasztva",
+ "configureCasText": "Cloud App Security konfigurálása",
+ "configureCustomControlsText": "Egyéni szabályzat konfigurálása",
+ "controlLabelMulti": "{0} kijelölt vezérlő",
+ "controlLabelOne": "1 kijelölt vezérlő",
+ "controlValidatorText": "Jelöljön ki legalább egy vezérlőt",
+ "controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
+ "controlsDeviceComplianceAriaLabel": "Learn more about requiring compliant devices.",
+ "controlsDeviceComplianceInfoBubble": "Device must be Intune compliant. If the device is non-compliant, the user will be prompted to bring the device under compliance.",
+ "controlsDomainJoinedAriaLabel": "Learn more about requiring hybrid Azure AD joined devices.",
+ "controlsDomainJoinedInfoBubble": "Az eszközöknek hibrid Azure Active Directoryhoz csatlakozónak kell lenniük.",
+ "controlsMamAriaLabel": "Learn more about requiring approved client applications.",
+ "controlsMamInfoBubble": "Az eszköznek a következő jóváhagyott ügyfélalkalmazásokat kell használnia.",
+ "controlsMfaInfoBubble": "A felhasználónak további biztonság követelményeket kell teljesítenie, például telefonhívás, szöveg",
+ "controlsOrAndInfoBubble": "ControlsOrAndInfoBubble",
+ "controlsRequireCompliantAppAriaLabel": "Learn more about requiring policy protected apps.",
+ "controlsRequireCompliantAppInfoBubble": "Az eszköznek szabályzat által védett alkalmazásokat kell használnia.",
+ "controlsRequirePasswordResetAriaLabel": "Learn more about requiring a password change.",
+ "controlsRequirePasswordResetInfoBubble": "Jelszómódosítás megkövetelése a felhasználói kockázat csökkentése érdekében. Ehhez a beállításhoz többtényezős hitelesítés is szükséges. Más szabályozók nem használhatók.",
+ "countriesRadiobuttonInfoBalloonContent": "A felhasználó IP-címe határozza meg, hogy az adott bejelentkezés mely országból/régióból történik.",
+ "createNewVpnCert": "Új tanúsítvány",
+ "createdTimeLabel": "Létrehozás időpontja",
+ "customRoleLabel": "Egyéni szerepkörök (nem támogatott)",
+ "dateRangeTypeLabel": "Dátumtartomány",
+ "daysOfWeekPlaceholderText": "Szűrés a hét napjai szerint",
+ "daysOfWeekTypeLabel": "A hét napjai",
+ "deletePolicyNoLicenseText": "Most már törölheti ezt a szabályzatot. A törlés után már nem fogja tudni újból létrehozni, amíg nem rendelkezik a szükséges licencekkel.",
+ "descriptionContentForControlsAndOr": "Több vezérlő esetén",
+ "devicePlatform": "Eszközplatform",
+ "devicePlatformConditionHelpDescription": "Szabályzat alkalmazása a kiválasztott eszközplatformokra.\n[További információ][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2044750",
+ "devicePlatformInclude": "{0} belefoglalva",
+ "devicePlatformIncludeExclude": "{0} és {1} kizárva",
+ "devicePlatformNoSelectionError": "Egyes eszközplatformok esetén ki kell választani egy alárendelt elemet.",
+ "devicePlatformsNone": "Egyik sem",
+ "deviceSelectionBladeExcludeDescription": "Válassza ki a szabályzat alól mentesítendő platformokat",
+ "deviceSelectionBladeIncludeDescription": "Válassza ki a házirend hatálya alá tartozó eszközplatformokat",
+ "deviceStateAll": "Az összes eszköz állapota",
+ "deviceStateCompliant": "Eszköz megjelölve megfelelőként",
+ "deviceStateCompliantInfoContent": "Az Intune-kompatibilis eszközök kimaradnak a szabályzat kiértékeléséből, így például ha a szabályzat letiltja a hozzáférést, akkor az összes eszközt le fogja tiltani, kivéve azokat, amelyek Intune-kompatibilisek.",
+ "deviceStateConditionConfigureInfoContent": "Szabályzat konfigurálása eszközállapot alapján",
+ "deviceStateConditionSelectorInfoContent": "Annak meghatározása, hogy az eszköz, amelyről a felhasználó bejelentkezik, hibrid Azure AD-hez csatlakozó, vagy pedig megfelelőként megjelölt.\n Ez elavult, helyette használja a következőt: „{1}”.",
+ "deviceStateConditionSelectorLabel": "Eszköz állapota (elavult)",
+ "deviceStateDomainJoined": "Hibrid Azure Active Directoryhoz csatlakozó eszköz",
+ "deviceStateDomainJoinedInfoContent": "A hibrid Azure Active Directoryhoz csatlakozó eszközök kimaradnak a szabályzat kiértékeléséből, így például ha a szabályzat letiltja a hozzáférést, akkor az összes eszközt le fogja tiltani, kivéve azokat, amelyek a hibrid Azure AD-hez vannak csatlakoztatva.",
+ "deviceStateDomainJoinedInfoLinkText": "További információ.",
+ "deviceStateExcludeDescription": "Válassza ki az eszközök szabályzatból való kizárásához használt eszközállapot-feltételt.",
+ "deviceStateIncludeAndExcludeOneLabel": "{0}, a következő kizárásával: {1}",
+ "deviceStateIncludeAndExcludeTwoLabel": "{0}, a következők kizárásával: {1}, {2}",
+ "directoryRoleInfoContent": "Szabályzat hozzárendelése a beépített címtárszerepkörökhöz.",
+ "directoryRolesLabel": "Címtári szerepkörök",
+ "discardbutton": "Elvetés",
+ "downloadDefaultFileName": "IP-címtartományok",
+ "downloadExampleFileName": "Példa",
+ "downloadExampleHeader": "Ez egy példafájl, amely bemutatja, hogy milyen fajta adatok használhatók érvényesen. A # karakterrel kezdődő sorokat figyelmen kívül hagyja a rendszer.",
+ "endDatePickerLabel": "Vége",
+ "endTimePickerLabel": "Befejezés időpontja",
+ "enterCountryText": "A rendszer párban értékeli ki az IP-címet és az országot. Adja meg az országot.",
+ "enterIpText": "A rendszer párban értékeli ki az IP-címet és az országot. Adja meg az IP-címet.",
+ "enterUserText": "Nincs megadva felhasználó. Adjon meg egy felhasználót.",
+ "evaluationResult": "Értékelés eredménye",
+ "exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
+ "exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync csak a támogatott platformokkal",
+ "excludeAllTrustedLocationSelectorText": "minden megbízható hely",
+ "featureRequiresP2": "Ehhez a funkcióhoz prémium szintű Azure AD 2 licenc szükséges.",
+ "friday": "péntek",
+ "grantControls": "Engedélyezési vezérlők",
+ "gridNetworkTrusted": "Megbízható",
+ "gridPolicyCreatedDateTime": "Létrehozás dátuma",
+ "gridPolicyEnabled": "Engedélyezve",
+ "gridPolicyModifiedDateTime": "Módosítás dátuma",
+ "gridPolicyName": "Házirend neve",
+ "gridPolicyState": "Állapot",
+ "groupSelectionBladeExcludeDescription": "Válassza ki a szabályzat alól mentesítendő csoportokat",
+ "groupSelectionBladeExcludedSelectorTitle": "Kizárt csoportok kiválasztása",
+ "groupSelectionBladeSelect": "Csoportok kiválasztása",
+ "groupSelectorInfoBallonText": "A szabályzat hatálya alá tartozó csoportok a címtárban. Példa: Próbacsoport",
+ "groupsSelectionBladeTitle": "Csoportok",
+ "helpCommonScenariosText": "Szeretné megismerni a leggyakoribb alkalmazási helyzeteket?",
+ "helpCondition1": "Ha bármely felhasználó a vállalati hálózaton kívüli helyről csatlakozik",
+ "helpCondition2": "Ha a Vezetők csoport felhasználói bejelentkeznek",
+ "helpConditionsTitle": "Feltételek",
+ "helpControl1": "Többtényezős hitelesítéssel kell bejelentkezniük",
+ "helpControl2": "Intune-kompatibilis vagy tartományhoz csatlakoztatott eszközt kell használniuk",
+ "helpControlsTitle": "Szabályzók",
+ "helpIntroText": "A feltételes hozzáférés lehetővé teszi, hogy meghatározott feltételek teljesülése esetén hozzáférési követelményeket léptessen érvénybe. Az alábbi példák ezt szemléltetik",
+ "helpIntroTitle": "Mi a Feltételes hozzáférés?",
+ "helpLearnMoreText": "További tudnivalók a Feltételes hozzáférésről",
+ "helpStartStep1": "Hozza létre első szabályzatát a + Új szabályzat elemre kattintva",
+ "helpStartStep2": "Adja meg a szabályzat feltételeit és szabályzóit",
+ "helpStartStep3": "Ha elkészült, ne felejtse el kiválasztani a Szabályzat engedélyezése és a Létrehozás lehetőséget",
+ "helpStartTitle": "Első lépések",
+ "highRisk": "Nagy",
+ "includeAndExcludeAppsTextFormat": "Belefoglalás: {0}. Kizárás: {1}.",
+ "includeAppsTextFormat": "Belefoglalás: {0}.",
+ "includeUnknownAreasCheckboxInfoBalloonContent": "Az ismeretlen területek olyan IP-címek, melyeket nem lehet országhoz/régióhoz hozzárendelni.",
+ "includeUnknownAreasCheckboxLabel": "Ismeretlen területek belefoglalása",
+ "infoCommandLabel": "Információ",
+ "invalidCertDuration": "A tanúsítvány érvényességi ideje érvénytelen",
+ "invalidIpAddress": "Az értéknek érvényes IP-címnek kell lennie",
+ "invalidUriErrorMsg": "Érvényes URI azonosítót adjon meg. Példa: uri:contoso.com:acr ",
+ "iosDisplayName": "iOS",
+ "linuxDisplayName": "Linux",
+ "loadAll": "Az összes betöltése",
+ "loading": "Betöltés…",
+ "locationConfigureNamedLocationsText": "Minden megbízható hely konfigurálása",
+ "locationConfigureNamedLocationsUri": "{0}/usermanagement/mfasettings.aspx?tenantid={1}&culture={2}",
+ "locationNameTooLongError": "A hely neve túl hosszú, legfeljebb 256 karakter lehet",
+ "locationSelectionBladeExcludeDescription": "Válassza ki a szabályzat alól mentesítendő helyeket",
+ "locationSelectionBladeIncludeDescription": "Válassza ki a házirend hatálya alá tartozó helyeket",
+ "locationsAllLocationsLabel": "Bármely hely",
+ "locationsAllNamedLocationsLabel": "Minden megbízható IP-cím",
+ "locationsAllPrivateLinksLabel": "A bérlő összes privát kapcsolata",
+ "locationsIncludeExcludeLabel": "{0} és minden megbízható IP-cím kizárása",
+ "locationsSelectedPrivateLinksLabel": "Kiválasztott privát kapcsolatok",
+ "lowRisk": "Kicsi",
+ "macOsDisplayName": "macOS",
+ "managePoliciesLicenseText": "A Feltételes hozzáférési szabályzatok kezeléséhez a szervezetnek Prémium P1 vagy P2 szintű Azure AD-re van szüksége.",
+ "markAsTrustedCheckboxInfoBalloonContent": "A megbízható helyről való bejelentkezés csökkenti az adott felhasználó bejelentkezési kockázatát. A helyet csak akkor jelölje meg megbízhatóként, ha tudja, hogy a megadott IP-címtartományok használata megalapozott és hihető a szervezetben.",
+ "markAsTrustedCheckboxLabel": "Megjelölés megbízható helyként",
+ "mediumRisk": "Közepes",
+ "memberSelectionCommandRemove": "Eltávolítás",
+ "menuItemClaimProviderControls": "Egyéni vezérlők (Előzetes verzió)",
+ "menuItemClassicPolicies": "Klasszikus szabályzatok",
+ "menuItemInsightsAndReporting": "Betekintések és jelentéskészítés",
+ "menuItemManage": "Kezelés",
+ "menuItemNamedLocationsPreview": "Nevesített helyek (előzetes verzió)",
+ "menuItemNamedNetworks": "Nevesített helyek",
+ "menuItemPolicies": "Házirendek",
+ "menuItemTermsOfUse": "Használati feltételek",
+ "modifiedTimeLabel": "Módosítás ideje",
+ "monday": "hétfő",
+ "nameLabel": "Név",
+ "namedLocationCountryInfoBanner": "Csak az IPv4-címek vannak leképezve országokra/régiókra. Az IPv6-címek az ismeretlen országok/régiók között szerepelnek.",
+ "namedLocationTypeCountry": "Országok/régiók",
+ "namedLocationTypeLabel": "Hely megadása az alábbi használatával:",
+ "namedLocationUpsellBanner": "Ez a nézet elavult. Váltson az új és továbbfejlesztett Nevesített helyek nézetre.",
+ "namedLocationsHelpDescription": "A Microsoft Azure AD biztonsági jelentései nevesített helyeket használnak az álpozitív találatok és az Azure AD Feltételes hozzáférési szabályzatai számának csökkentésére.\n[További információ][1]\n[1]: https://aka.ms/namedlocationupdate",
+ "namedNetworkAddIpRanges": "Új IP-címtartomány hozzáadása (példa: 40.77.182.32/27)",
+ "namedNetworkCountryNeeded": "Legalább egy országot ki kell választania",
+ "namedNetworkDeleteCommand": "Törlés",
+ "namedNetworkDeleteDescription": "Biztos, hogy törli a(z) {0} hálózatot? Ez a művelet nem vonható vissza.",
+ "namedNetworkDeleteTitle": "Biztos benne?",
+ "namedNetworkDownloadIpRange": "Letöltés",
+ "namedNetworkInvalidRange": "Az értéknek érvényes IP-címtartománynak kell lennie.",
+ "namedNetworkIpRangeNeeded": "Legalább egy érvényes IP-címtartomány szükséges",
+ "namedNetworkIpRangesDescriptionContent": "A szervezet IP-címtartományainak konfigurálása",
+ "namedNetworkIpRangesTab": "IP-címtartományok",
+ "namedNetworkListAdd": "Új hely",
+ "namedNetworkListConfigureTrustedIps": "MFA megbízható IP-címeinek konfigurálása",
+ "namedNetworkNameDescription": "Példa: Budapesti iroda",
+ "namedNetworkNameInvalid": "A megadott név érvénytelen.",
+ "namedNetworkNameRequired": "A hely nevét kötelező megadni.",
+ "namedNetworkNoIpRanges": "Nincsenek IP-címtartományok",
+ "namedNetworkNotificationCreateDescription": "A(z) {0} nevű hely létrehozása",
+ "namedNetworkNotificationCreateFailedDescription": "Nem sikerült létrehozni a(z) {0} nevű helyet. Később próbálkozzon újra.",
+ "namedNetworkNotificationCreateFailedTitle": "Nem sikerült létrehozni a helyet",
+ "namedNetworkNotificationCreateSuccessDescription": "A(z) {0} nevű hely létrehozva",
+ "namedNetworkNotificationCreateSuccessTitle": "Hálózat ({0}) létrehozva",
+ "namedNetworkNotificationCreateTitle": "Hálózat ({0}) létrehozása",
+ "namedNetworkNotificationDeleteDescription": "A(z) {0} nevű hely törlése",
+ "namedNetworkNotificationDeleteFailedDescription": "Nem sikerült törölni a(z) {0} nevű helyet. Később próbálkozzon újra.",
+ "namedNetworkNotificationDeleteFailedTitle": "Nem sikerült törölni a helyet",
+ "namedNetworkNotificationDeleteSuccessDescription": "A(z) {0} nevű hely törölve",
+ "namedNetworkNotificationDeleteSuccessTitle": "A(z) {0} hálózat törölve",
+ "namedNetworkNotificationDeleteTitle": "A(z) {0} törlése",
+ "namedNetworkNotificationUpdateDescription": "A(z) {0} nevű hely frissítése",
+ "namedNetworkNotificationUpdateFailedDescription": "Nem sikerült frissíteni a(z) {0} nevű helyet. Később próbálkozzon újra.",
+ "namedNetworkNotificationUpdateFailedTitle": "Nem sikerült frissíteni a helyet",
+ "namedNetworkNotificationUpdateSuccessDescription": "A(z) {0} nevű hely frissítve",
+ "namedNetworkNotificationUpdateSuccessTitle": "A(z) {0} hálózat frissítve",
+ "namedNetworkNotificationUpdateTitle": "A(z) {0} hálózat frissítése",
+ "namedNetworkSearchPlaceholder": "Helyek keresése.",
+ "namedNetworkUploadFailedDescription": "Hiba történt a feltöltött fájl elemzése közben. Ügyeljen arra, hogy olyan egyszerű szöveges fájlt töltsön fel, amelynek minden sora CIDR formátumú.",
+ "namedNetworkUploadFailedTitle": "Nem sikerült elemezni a(z) „{0}” fájlt.",
+ "namedNetworkUploadInProgressDescription": "Folyamatban van a(z) {0} fájl érvényes CIDR-értékeinek elemzése.",
+ "namedNetworkUploadInProgressTitle": "Elemzés – {0}",
+ "namedNetworkUploadInvalidDescription": "A(z) {0} túl nagy méretű, vagy érvénytelen a formátuma.",
+ "namedNetworkUploadInvalidTitle": "{0} – érvénytelen",
+ "namedNetworkUploadIpRange": "Feltöltés",
+ "namedNetworkUploadSuccessDescription": "{0} sor elemezve, amelyből {1} helytelen formátumú, {2} pedig kihagyva.",
+ "namedNetworkUploadSuccessTitle": "Elemzés befejezve – {0}",
+ "namedNetworksAdd": "Új nevesített hely",
+ "namedNetworksConditionHelpDescription": "Felhasználói hozzáférés szabályozása a fizikai hely alapján.\n[További információ][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
+ "namedNetworksExcludeLabel": "{0} és {1} kizárva",
+ "namedNetworksHelpDescription": "A Microsoft Azure AD biztonsági jelentései nevesített helyeket használnak a nem valós találatok és az Azure AD Feltételes hozzáférési szabályzatai számának csökkentésére.\n[További információ][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
+ "namedNetworksIncludeLabel": "{0} belefoglalva",
+ "namedNetworksNone": "Nem találhatók nevesített helyek.",
+ "namedNetworksTitle": "Helyek konfigurálása",
+ "namednetworkExceedingSizeErrorBladeTitle": "Hibaüzenet részletei",
+ "namednetworkExceedingSizeErrorDetailText": "További részletekért kattintson ide.",
+ "namednetworkExceedingSizeErrorMessage": "Túllépte a nevesített helyek esetében maximálisan engedélyezett tárhelyet. Próbálkozzon újra egy rövidebb listával. További részletek megtekintéséhez kattintson ide.",
+ "needMfaSecondary": "A „Többtényezős hitelesítés megkövetelése” lehetőséget kell kiválasztani, ha a „Bejelentkezési gyakoriság minden alkalommal“ van kiválasztva a „Csak másodlagos hitelesítési módszerek” beállítással együtt.",
+ "newCertName": "új tanúsítvány",
+ "noAttributePermissionsError": "Nincs megfelelő jogosultsága a szabályzat létrehozásához vagy frissítéséhez. Dinamikus szűrők hozzáadásához vagy szerkesztéséhez attribútumdefiníció-olvasói szerepkör szükséges.",
+ "noPolicyRowMessage": "Nem találhatók házirendek",
+ "noSPSelected": "Nincs kiválasztva szolgáltatásnév",
+ "noUpdatePermissionMessage": "Nincs jogosultsága a beállítások frissítéséhez. Kérjen hozzáférést a globális rendszergazdától.",
+ "noUserSelected": "Nincs kijelölve felhasználó",
+ "noneRisk": "Nincs kockázat",
+ "office365Description": "Ezen alkalmazások közé tartozik egyebek mellett a Microsoft Flow, a Microsoft Forms, a Microsoft Teams, az Office 365 Exchange Online, az Office 365 SharePoint Online és az Office 365 Yammer.",
+ "office365InfoBox": "A kiválasztott alkalmazások közül legalább egy az Office 365 része. Ajánlott inkább az Office 365-alkalmazásra vonatkozó szabályzatot beállítani.",
+ "oneUserSelected": "1 felhasználó van kiválasztva",
+ "onlyGlobalAdminsCanSaveThisPolicyConfig": "Csak a globális rendszergazdák menthetik ezt a szabályzatot.",
+ "or": "{0} VAGY {1} ",
+ "pickerDoneCommand": "Kész",
+ "policiesBladeAdPremiumUpsellBannerText": "Hozzon létre saját szabályzatokat, és alkalmazza őket olyan konkrét feltételek alapján, mint a felhőbeli alkalmazások, a bejelentkezési kockázat vagy a prémium szintű Azure AD-t támogató eszközplatformok",
+ "policiesBladeTitle": "Házirendek",
+ "policiesBladeTitleWithAppName": "Szabályzatok: {0}",
+ "policiesDisabledBannerText": "A szabályzatok létrehozása és szerkesztése tiltott a csatolt bejelentkezési attribútummal rendelkező alkalmazások esetében.",
+ "policiesHitMaxLimitStatusBarMessage": "Elérte a bérlőhöz tartozó szabályzatok maximális számát. Mielőtt további szabályzatokat hozna létre, töröljön néhányat.",
+ "policyAssignmentsSection": "Hozzárendelések",
+ "policyBlockAllInfoBox": "A konfigurált szabályzat letiltja az összes felhasználót, ezért nem támogatott. Tekintse át a hozzárendeléseket és a vezérlőket. Ha szeretné menteni a szabályzatot, zárja ki az aktuális felhasználót ({0}).",
+ "policyCloudAppsDisplayTextAllApp": "Minden alkalmazás",
+ "policyCloudAppsLabel": "Felhőalkalmazások",
+ "policyConditionClientAppDescription": "A felhasználó által a felhőalkalmazás elérésére használt szoftver. Példa: Böngésző",
+ "policyConditionClientAppV2Description": "A felhasználó által a felhőalkalmazás elérésére használt szoftver. Példa: Böngésző",
+ "policyConditionDevicePlatform": "Eszközplatformok",
+ "policyConditionDevicePlatformDescription": "A platform, amelyről a felhasználó bejelentkezik. Példa: 'iOS'",
+ "policyConditionLocation": "Helyszínek",
+ "policyConditionLocationDescription": "A hely (az IP-címtartomány használatával megállapítva), ahonnan a felhasználó bejelentkezik",
+ "policyConditionSigninRisk": "Bejelentkezési kockázat",
+ "policyConditionSigninRiskDescription": "Annak valószínűsége, hogy a bejelentkezés nem a felhasználó részéről történt. A kockázati szint lehet magas, közepes vagy alacsony. A beállításhoz Azure AD Premium 2-licenc szükséges.",
+ "policyConditionUserRisk": "Felhasználói kockázat",
+ "policyConditionUserRiskDescription": "A szabályzat érvényesítéséhez szükséges felhasználói kockázati szintek konfigurálása",
+ "policyConditioniClientApp": "Ügyfélalkalmazások",
+ "policyConditioniClientAppV2": "Ügyfélalkalmazások (Előzetes verzió)",
+ "policyControlAllowAccessDisplayedName": "Hozzáférés biztosítása",
+ "policyControlAuthenticationStrengthDisplayedName": "Hitelesítés erősségének megkövetelése (Előzetes verzió)",
+ "policyControlBladeTitle": "Hozzáférés",
+ "policyControlBlockAccessDisplayedName": "Hozzáférés letiltása",
+ "policyControlCompliantDeviceDisplayedName": "Eszköz megfelelőként való megjelölésének megkövetelése",
+ "policyControlContentDescription": "Hozzáférési engedélyek kényszerítésének vezérlése hozzáférés letiltása vagy engedélyezése érdekében.",
+ "policyControlInfoBallonText": "A hozzáférés letiltása vagy a megadásához teljesítendő további követelmények kijelölése",
+ "policyControlMfaChallengeDisplayedName": "Többtényezős hitelesítés megkövetelése",
+ "policyControlRequireCompliantAppDisplayedName": "Alkalmazásvédelmi szabályzat megkövetelése",
+ "policyControlRequireDomainJoinedDisplayedName": "Hibrid Azure Active Directoryhoz csatlakozó eszköz megkövetelése",
+ "policyControlRequireMamDisplayedName": "Jóváhagyott ügyfélalkalmazás megkövetelése",
+ "policyControlRequiredPasswordChangeDisplayedName": "Jelszómódosítás megkövetelése",
+ "policyControlSelectAuthStrength": "Hitelesítés erősségének megkövetelése",
+ "policyControlsNoControlsSelected": "0 kijelölt vezérlő",
+ "policyControlsSection": "Hozzáférés-szabályozás",
+ "policyCreatBladeTitle": "Új",
+ "policyCreateButton": "Létrehozás",
+ "policyCreateFailedMessage": "Hiba: {0}",
+ "policyCreateFailedTitle": "Nem sikerült létrehozni a(z) {0} szabályzatot",
+ "policyCreateInProgressTitle": "Hálózat ({0}) létrehozása",
+ "policyCreateSuccessMessage": "A(z) {0} létrehozása sikerült. A szabályzat néhány perc múlva érvénybe lép, amennyiben a Házirend engedélyezése beállítás Bekapcsolva értékre van állítva.",
+ "policyCreateSuccessTitle": "A(z) {0} szabályzat létrehozása sikerült",
+ "policyDeleteConfirmation": "Biztos, hogy törli a(z) {0} hálózatot? Ez a művelet nem vonható vissza.",
+ "policyDeleteFailTitle": "Nem sikerült törölni a(z) {0} bérlői védjegyezést",
+ "policyDeleteInProgressTitle": "A(z) {0} törlése",
+ "policyDeleteSuccessTitle": "A(z) {0} törlése sikerült",
+ "policyEnforceLabel": "Házirend engedélyezése",
+ "policyErrorCannotSetSigninRisk": "Nincs engedélye menteni a szabályzatot bejelentkezési kockázati feltétellel.",
+ "policyErrorNoPermission": "Nem jogosult a szabályzat mentésére. Forduljon a globális rendszergazdához.",
+ "policyErrorUnknown": "Hiba történt. Próbálkozzon újra később.",
+ "policyFallbackWarningMessage": "Nem sikerült létrehozni vagy frissíteni a(z) {0} szabályzatot az MS Graph használatával, ami miatt a rendszer a helyettes alkalmazásra, az AD Graph-ra váltott. Kérjük, vizsgálja meg a következő forgatókönyvet, mert valószínűleg hiba történt az MS Graph nem kompatibilis állapottal rendelkező szabályzatvégpontjának meghívásakor.",
+ "policyFallbackWarningTitle": "A(z) {0} létrehozása vagy frissítése részben sikeres volt",
+ "policyNameCannotBeEmpty": "A szabályzat neve nem lehet üres",
+ "policyNameDevice": "Eszközszabályzat",
+ "policyNameFormat": "[{0}] {1}",
+ "policyNameMam": "Mobilalkalmazás-kezelési szabályzat",
+ "policyNameMfaLocation": "MFA- és helyszabályzat",
+ "policyNamePlaceholderText": "Példa: Eszközmegfelelőségi alkalmazásszabályzat",
+ "policyNameTooLongError": "A szabályzat neve túl hosszú, legfeljebb 256 karakter lehet",
+ "policyOff": "Kikapcsolva",
+ "policyOn": "Bekapcsolva",
+ "policyReportOnly": "Csak jelentés",
+ "policyReviewSection": "Áttekintés",
+ "policySaveButton": "Mentés",
+ "policyStatusIconDescription": "A szabályzat engedélyezve van",
+ "policyStatusIconEnabled": "Engedélyezett állapot ikonja",
+ "policyTemplateName1": "Alkalmazás által kényszerített korlátozások alkalmazása a(z) {0} alkalmazáshoz való böngészőalapú hozzáférésre",
+ "policyTemplateName2": "A(z) {0} hozzáférésének engedélyezése csak kezelt eszközökön",
+ "policyTemplateName3": "A folyamatos hozzáférés-kiértékelési beállításokból átmigrált szabályzat",
+ "policyTriggerRiskSpecific": "Adott kockázati szint kijelölése",
+ "policyTriggersInfoBalloonText": "Azon feltételek, amelyek teljesülésekor érvénybe lép a szabályzat. Példa: 'hely'",
+ "policyTriggersNoConditionsSelected": "0 kijelölt feltétel",
+ "policyTriggersSelectorLabel": "Feltételek",
+ "policyUpdateFailedMessage": "Hiba: {0}",
+ "policyUpdateFailedTitle": "Nem sikerült frissíteni a(z) {0} alkalmazást",
+ "policyUpdateInProgressTitle": "{0} frissítése",
+ "policyUpdateSuccessMessage": "A(z) {0} frissítése megtörtént. A szabályzat néhány perc múlva érvénybe lép, amennyiben a Házirend engedélyezése beállítás Bekapcsolva értékre van állítva.",
+ "policyUpdateSuccessTitle": "A(z) {0} alkalmazás frissítése sikeresen megtörtént",
+ "primaryCol": "Elsődleges",
+ "privateLinkLabel": "Azure AD Private Link",
+ "reportOnlyInfoBox": "Csak jelentés üzemmód: a rendszer bejelentkezéskor kiértékeli és naplózza a szabályzatokat, de ez nincs hatással a felhasználókra.",
+ "requireAllControlsText": "Az összes kijelölt vezérlő megkövetelése",
+ "requireCompliantDevice": "Megfelelő eszköz megkövetelése",
+ "requireDomainJoined": "Tartományhoz csatlakoztatott eszköz megkövetelése",
+ "requireGrantReauth": "A „Bejelentkezési gyakoriság minden alkalommal” munkamenet-vezérlő megköveteli a „Többtényezős hitelesítés megkövetelése” vagy a „Jelszómódosítás megkövetelése” engedélyezési vezérlőt, ha a „Minden felhőalkalmazás” beállítás van kiválasztva",
+ "requireMFA": "Többtényezős hitelesítés megkövetelése ",
+ "requireMfaReauth": "A „Bejelentkezési gyakoriság minden alkalommal” munkamenet-vezérlő megköveteli a „Többtényezős hitelesítés megkövetelése” engedélyezési vezérlőt a „bejelentkezési kockázat” esetében",
+ "requireOneControlText": "Az egyik kijelölt vezérlő megkövetelése",
+ "requirePasswordChangeReauth": "A „Bejelentkezési gyakoriság minden alkalommal” munkamenet-vezérlő megköveteli a „Jelszómódosítás megkövetelése” engedélyezési vezérlőt a „felhasználói kockázat” esetében",
+ "requireRiskReauth": "A „Bejelentkezési gyakoriság minden alkalommal” munkamenet-vezérlő megköveteli a „Felhasználói kockázat” vagy a „Bejelentkezési kockázat” munkamenet-vezérlőt, ha az „Összes felhőalkalmazás” beállítás van kiválasztva.",
+ "resetFilters": "Szűrők alaphelyzetbe állítása",
+ "sPRequired": "A szolgáltatásnév megadása kötelező",
+ "sPSelectorInfoBalloon": "A tesztelni kívánt felhasználó vagy szolgáltatásnév",
+ "saturday": "szombat",
+ "searchTextTooLongError": "A keresett szöveg túl hosszú. Legfeljebb 256 karaktert tartalmazhat.",
+ "securityDefaultsPolicyName": "Javasolt biztonsági beállítások",
+ "securityDefaultsTextMessage": "A javasolt biztonsági beállításokat le kell tiltani egy feltételes hozzáférési szabályzat engedélyezéséhez.",
+ "securityDefaultsWarningMessage": "Úgy tűnik, hogy a cég biztonsági konfigurációit szeretné kezelni. Ez nagyszerű! A feltételes hozzáférési szabályzat engedélyezéséhez le kell tiltania a javasolt biztonsági beállításokat.",
+ "selectDevicePlatforms": "Eszközplatformok kiválasztása",
+ "selectNamedNetworksSubtitle": "",
+ "selectNamedNetworksTitle": "Helyek kiválasztása",
+ "selectedSP": "Kiválasztott szolgáltatásnév",
+ "servicePrincipalDataGridAria": "Elérhető szolgáltatásnevek listája",
+ "servicePrincipalDropDownLabel": "Mire vonatkozik ez a szabályzat?",
+ "servicePrincipalInfoBox": "Bizonyos feltételek a szabályzat-hozzárendelésben megadott {0} választás miatt nem érhetők el",
+ "servicePrincipalRadioAll": "Az összes saját tulajdonú szolgáltatásnév",
+ "servicePrincipalRadioSelect": "Szolgáltatásnév választása",
+ "servicePrincipalSelectionsAria": "Kijelölt szolgáltatásnevek táblázata",
+ "servicePrincipalSelectorAria": "Választott szolgáltatásnevek listája",
+ "servicePrincipalSelectorMultiple": "{0} szolgáltatásnév kijelölve",
+ "servicePrincipalSelectorSingle": "1 szolgáltatásnév kijelölve",
+ "servicePrincipalSpecificInc": "Megadott szolgáltatásnevekre érvényes",
+ "servicePrincipals": "Szolgáltatásnevek",
+ "sessionControlBladeTitle": "Munkamenet",
+ "sessionControlDescriptionContent": "A hozzáférések munkamenet-vezérlő alapú szabályozásával korlátozott felületeket tehet elérhetővé adott felhőalkalmazásokban.",
+ "sessionControlDisableInfo": "Ez a vezérlő csak a támogatott alkalmazásokkal működik együtt. A felhőalapú alkalmazások közül jelenleg csak az Office 365, az Exchange Online és a SharePoint Online támogatja az alkalmazás által kikényszerített korlátozásokat. További információért kattintson ide.",
+ "sessionControlInfoBallonText": "A munkamenet-vezérlők a funkciók korlátozását teszik lehetővé a felhőalkalmazásokban.",
+ "sessionControls": "Munkamenet-vezérlők",
+ "sessionControlsAppEnforcedLabel": "Alkalmazás által kényszerített korlátozások használata",
+ "sessionControlsCasLabel": "Feltételes hozzáférést biztosító alkalmazás-vezérlő használata",
+ "sessionControlsSecureSignInLabel": "Jogkivonatkötés megkövetelése",
+ "sharepointAppName": "SharePoint",
+ "signinRiskDescription": "Válassza ki a bejelentkezési kockázati szintet, amelyre érvényes lesz a házirend",
+ "signinRiskInclude": "{0} belefoglalva",
+ "signinRiskReauth": "A „Bejelentkezési kockázat” beállítást be kell jelölni, ha a „Bejelentkezési gyakoriság minden alkalommal” munkamenet-vezérlő és a „Többtényezős hitelesítés megkövetelése” engedély van kiválasztva",
+ "signinRiskTriggerDescriptionContent": "A bejelentkezési kockázat szintjének kiválasztása",
+ "singleTenantServicePrincipalInfoBallonText": "A szabályzat csak a szervezet tulajdonában álló egybérlős szolgáltatásnevekre vonatkozik. További információért kattintson ide ",
+ "specificSigninRiskLevelsOption": "Konkrét bejelentkezési kockázati szintek kiválasztása",
+ "specificUsersExcluded": "a megadott felhasználók kizárásával",
+ "specificUsersIncluded": "A megadott felhasználók belefoglalásával",
+ "specificUsersIncludedAndExcluded": "Kizárt és befoglalt felhasználók",
+ "startDatePickerLabel": "Kezdés",
+ "startFreeTrial": "Ingyenes próba megkezdése",
+ "startTimePickerLabel": "Kezdő időpont",
+ "sunday": "vasárnap",
+ "testButton": "What If",
+ "thumbprintCol": "Ujjlenyomat",
+ "thursday": "csütörtök",
+ "timeConditionAllTimesLabel": "Bármikor",
+ "timeConditionIntroText": "Állítsa be az időpontokat, amelyre érvényes lesz a szabályzat",
+ "timeConditionSelectorInfoBallonContent": "A felhasználó bejelentkezésének időpontja. Példa: „Szerda 9:00 – 17:00 (PST)”",
+ "timeConditionSelectorLabel": "Időpont (Előzetes verzió)",
+ "timeConditionSpecificLabel": "Megadott időpontok",
+ "timeSelectorAllTimesText": "Bármikor",
+ "timeSelectorSpecificTimesText": "Megadott konfigurált időpontok",
+ "timeZoneDropdownInfoBalloonContent": "Válassza ki az időzónát, amely meghatározza az időtartományt. A szabályzat az összes időzóna felhasználóira érvényes. Például az adott felhasználóra vonatkozó „Szerda 9:00 – 17:00” érték egy másik időzónában lévő felhasználó számára „Szerda 10:00 – 18:00” lehet.",
+ "timeZoneDropdownLabel": "Időzóna",
+ "timeZoneDropdownPlaceholderText": "Válasszon időzónát",
+ "tooManyPoliciesDescription": "Jelenleg csak az első 50 házirend van megjelenítve. Az összes házirend megtekintéséhez kattintson ide",
+ "tooManyPoliciesTitle": "Több mint 50 házirend található",
+ "trustedLocationStatusIconDescription": "A hely megbízható",
+ "trustedLocationStatusIconEnabled": "Megbízható állapotikon",
+ "tuesday": "kedd",
+ "uploadInBadState": "Nem sikerült feltölteni a megadott fájlt.",
+ "upsellAppsDescription": "Többtényezős hitelesítés megkövetelése az érzékeny alkalmazásokhoz minden esetben vagy csak a vállalati hálózaton kívülről.",
+ "upsellAppsTitle": "Alkalmazások védelme",
+ "upsellBannerText": "A szolgáltatás használatához szerezze be az ingyenes Prémium szintű próbaverziót",
+ "upsellDataDescription": "Annak megkövetelése a vállalati erőforrások elérésének engedélyezéséhez, hogy az eszköz megfelelőként megjelölt vagy hibrid Azure Active Directoryhoz csatlakozó legyen.",
+ "upsellDataTitle": "Adatok védelme",
+ "upsellDescription": "A feltételes hozzáférés biztosítja a céges adatok biztonságához szükséges vezérlési és védelmi funkciókat, és olyan környezetet kínál, amely lehetővé teszi a felhasználóknak, hogy minden eszközön a leghatékonyabban dolgozzanak. Lehetőséget nyújt például a vállalati hálózaton kívülről történő hozzáférés korlátozására vagy a hozzáférés azon eszközökre való korlátozására, amelyek megfelelnek a szabályzatok előírásainak.",
+ "upsellRiskDescription": "Többtényezős hitelesítés megkövetelése a Microsoft gépi tanulási rendszere által észlelt kockázati események esetében.",
+ "upsellRiskTitle": "Védelem a kockázatok ellen",
+ "upsellTitle": "Feltételes hozzáférés",
+ "upsellWhyTitle": "Miért érdemes Feltételes hozzáférést használni?",
+ "userAppNoneOption": "Egyik sem",
+ "userNamePlaceholderText": "Írja be a felhasználónevet",
+ "userNotSetSeletorLabel": "0 kijelölt felhasználó és csoport",
+ "userOnlySelectionBladeExcludeDescription": "Válassza ki a szabályzat alól mentesítendő felhasználókat",
+ "userOrGroupSelectionCountDiffBannerText": "A szabályzatban konfigurált {0} törlődött a könyvtárból, de ez a szabályzat más felhasználóit és csoportjait nem érinti. A szabályzat legközelebbi frissítésekor a törölt felhasználók és/vagy alkalmazások automatikusan el lesznek távolítva.",
+ "userOrSPNotSetSelectorLabel": "Nincs kiválasztva felhasználó vagy számítási feladathoz tartozó identitás",
+ "userOrSPSelectionBladeTitle": "Felhasználók vagy számítási feladatok identitásai",
+ "userOrSPSelectorInfoBallonText": "A szabályzat hatálya alá tartozó címtárbeli identitások, beleértve a felhasználókat, csoportokat és szolgáltatásneveket",
+ "userRequired": "Felhasználó megadása kötelező",
+ "userRiskErrorBox": "A Felhasználói kockázat feltételt kell kiválasztani, ha a Jelszómódosítás megkövetelése engedély van kiválasztva",
+ "userRiskReauth": "A „Felhasználói kockázat” feltételt kell kiválasztani a „Bejelentkezési kockázat” helyett, ha a „Jelszómódosítás megkövetelése” engedély és a „Bejelentkezési gyakoriság minden alkalommal” munkamenet-vezérlő van kiválasztva",
+ "userSPRequired": "A felhasználó vagy szolgáltatásnév megadása kötelező",
+ "userSPSelectorTitle": "Felhasználó vagy számítási feladat identitása",
+ "userSelectionBladeAllUsersAndGroups": "Minden felhasználó és csoport",
+ "userSelectionBladeExcludeDescription": "Válassza ki a szabályzat alól mentesítendő felhasználókat és csoportokat",
+ "userSelectionBladeExcludeTabTitle": "Kizárás",
+ "userSelectionBladeExcludedSelectorTitle": "Kizárt felhasználók kiválasztása",
+ "userSelectionBladeIncludeDescription": "Adja meg azokat a felhasználókat, akikre érvényes lesz a szabályzat",
+ "userSelectionBladeIncludeTabTitle": "Belefoglalás",
+ "userSelectionBladeIncludedSelectorTitle": "Kijelölés",
+ "userSelectionBladeSelectUsers": "Felhasználók kijelölése",
+ "userSelectionBladeSelectedUsers": "Felhasználók és csoportok kijelölése",
+ "userSelectionBladeTitle": "Felhasználók és csoportok",
+ "userSelectorBladeTitle": "Felhasználók",
+ "userSelectorExcluded": "{0} kizárva",
+ "userSelectorGroupPlural": "{0} csoport",
+ "userSelectorGroupSingular": "1 csoport",
+ "userSelectorIncluded": "{0} belefoglalva",
+ "userSelectorInfoBallonText": "A szabályzat hatálya alá tartozó felhasználók és csoportok a címtárban. Példa: 'Próbacsoport'",
+ "userSelectorSelected": "{0} kijelölve",
+ "userSelectorTitle": "Felhasználó",
+ "userSelectorUserAndGroup": "{0}, {1}",
+ "userSelectorUserPlural": "{0}-felhasználók",
+ "userSelectorUserSingular": "1 felhasználó",
+ "userSelectorWithExclusion": "{0} és {1}",
+ "usersGroupsLabel": "Felhasználók és csoportok",
+ "viewApprovedAppsText": "A jóváhagyott ügyfélalkalmazások listájának megtekintése",
+ "viewCompliantAppsText": "A szabályzat által védett ügyfélalkalmazások listájának megtekintése",
+ "vpnBladeTitle": "VPN-kapcsolat",
+ "vpnCertCreateFailedMessage": "Hiba: {0}",
+ "vpnCertCreateFailedTitle": "A(z) {0} létrehozása nem sikerült",
+ "vpnCertCreateInProgressTitle": "{0} létrehozása",
+ "vpnCertCreateSuccessMessage": "A(z) {0} tanúsítvány létrehozása sikerült.",
+ "vpnCertCreateSuccessTitle": "A(z) {0} létrehozása sikerült",
+ "vpnCertNoRowsMessage": "Nem találhatók VPN-tanúsítványok",
+ "vpnCertUpdateFailedMessage": "Hiba: {0}",
+ "vpnCertUpdateFailedTitle": "Nem sikerült frissíteni a(z) {0} alkalmazást",
+ "vpnCertUpdateInProgressTitle": "{0} frissítése",
+ "vpnCertUpdateSuccessMessage": "A(z) {0} tanúsítvány frissítése sikerült.",
+ "vpnCertUpdateSuccessTitle": "A(z) {0} alkalmazás frissítése sikeresen megtörtént",
+ "vpnFeatureInfo": "A VPN-kapcsolatokkal és a Feltételes hozzáféréssel kapcsolatos további információért kattintson ide.",
+ "vpnFeatureWarning": "Ha létrehoznak egy VPN-tanúsítványt a Azure Portalon, az Azure AD azonnal megkezdi a rövid élettartamú tanúsítványok kiadását a VPN-ügyfélnek annak használatával. A VPN-ügyfél hitelesítő adatainak érvényesítésével kapcsolatos problémák elkerülése érdekében kritikus fontosságú a VPN-tanúsítvány VPN-kiszolgálón való azonnali üzembe helyezése.",
+ "vpnMenuText": "VPN-kapcsolat",
+ "vpncertDropdownDefaultOption": "Időtartam",
+ "vpncertDropdownInfoBalloonContent": "Az érvényességi idő kiválasztása a létrehozni kívánt tanúsítványhoz",
+ "vpncertDropdownLabel": "Érvényességi idő kiválasztása",
+ "vpncertDropdownOneyearOption": "1 év",
+ "vpncertDropdownThreeyearOption": "3 év",
+ "vpncertDropdownTwoyearOption": "2 év",
+ "wednesday": "szerda",
+ "whatIfAppEnforcedControl": "Alkalmazás által kényszerített korlátozások használata",
+ "whatIfBladeDescription": "Annak tesztelése, hogy a Feltételes hozzáférésnek milyen hatása van a felhasználóra meghatározott feltételekhez kötött bejelentkezés esetén.",
+ "whatIfBladeTitle": "What If",
+ "whatIfClassicPoliciesWarning": "Az eszköz nem értékeli ki a klasszikus szabályzatokat.",
+ "whatIfClientAppInfo": "Az az ügyfélalkalmazás, amelyből a felhasználó bejelentkezik (például Böngésző).",
+ "whatIfCountry": "Ország",
+ "whatIfCountryInfo": "Az az ország, amelyből a felhasználó bejelentkezik.",
+ "whatIfDevicePlatformInfo": "Az eszközplatform, melyről a felhasználó bejelentkezik.",
+ "whatIfDeviceStateInfo": "Az eszközállapot, melyből a felhasználó bejelentkezik",
+ "whatIfEnterIpAddress": "Adja meg az IP-címet (példa: 40.77.182.32)",
+ "whatIfErrorInvalidIpAddress": "Érvénytelen IP-cím van megadva.",
+ "whatIfEvaResultApplication": "Felhőalkalmazások",
+ "whatIfEvaResultClientApps": "Ügyfélalkalmazás",
+ "whatIfEvaResultDevicePlatform": "Eszközplatform",
+ "whatIfEvaResultEmptyPolicy": "Üres szabályzat",
+ "whatIfEvaResultInvalidCondition": "Érvénytelen feltétel",
+ "whatIfEvaResultInvalidPolicy": "Érvénytelen szabályzat",
+ "whatIfEvaResultLocation": "Hely",
+ "whatIfEvaResultNotEnoughInformation": "Nincs elegendő adat",
+ "whatIfEvaResultPolicyNotEnabled": "Nincs engedélyezve a szabályzat",
+ "whatIfEvaResultSignInRisk": "Bejelentkezési kockázat",
+ "whatIfEvaResultUsers": "Felhasználók és csoportok",
+ "whatIfIpAddress": "IP-cím",
+ "whatIfIpAddressInfo": "Az IP-cím, ahonnan a felhasználó bejelentkezik.",
+ "whatIfIpCountryInfoBoxText": "IP-cím vagy ország használata esetén mindkét mezőt ki kell tölteni, és helyesen meg kell feleltetni egymással.",
+ "whatIfPolicyAppliesTab": "Érvényes szabályzatok",
+ "whatIfPolicyDoesNotApplyTab": "Érvénytelen szabályzatok",
+ "whatIfReasons": "Szabályzat érvénytelenségének okai",
+ "whatIfSelectClientApp": "Ügyfélalkalmazás kiválasztása...",
+ "whatIfSelectCountry": "Ország kiválasztása...",
+ "whatIfSelectDevicePlatform": "Válasszon eszközplatformot...",
+ "whatIfSelectPrivateLink": "Privát kapcsolat kiválasztása...",
+ "whatIfSelectServicePrincipalRisk": "Szolgáltatásnév kockázatának kiválasztása…",
+ "whatIfSelectSignInRisk": "Válasszon bejelentkezési kockázatot...",
+ "whatIfSelectType": "Identitástípus kiválasztása",
+ "whatIfSelectUserRisk": "A felhasználói kockázat kiválasztása...",
+ "whatIfServicePrincipalRiskInfo": "A szolgáltatásnévhez társított kockázati szint",
+ "whatIfSignInRisk": "Bejelentkezési kockázat",
+ "whatIfSignInRiskInfo": "A bejelentkezéshez társított kockázati szint",
+ "whatIfUnknownAreas": "Ismeretlen területek",
+ "whatIfUserPickerLabel": "Kiválasztott felhasználó",
+ "whatIfUserPickerNoRowsLabel": "Nincs kijelölve felhasználó vagy szolgáltatásnév",
+ "whatIfUserRiskInfo": "A felhasználóhoz társított kockázati szint",
+ "whatIfUserSelectorInfo": "A tesztelni kívánt címtárbeli felhasználó",
+ "windows365InfoBox": "A Windows 365 kiválasztása hatással lesz a kapcsolatokra a felhőalapú PC-khez és az Azure Virtual Desktop-munkamenetgazdákhoz. További információért kattintson ide.",
+ "windowsDisplayName": "Windows",
+ "windowsPhoneDisplayName": "Windows Phone",
+ "workloadIdentities": "Számítási feladatok identitásai (előzetes verzió)",
+ "workloadIdentity": "Számításifeladat-identitás"
+ },
+ "AppResources": {
+ "AppSettingsUx": {
+ "assignmentFilterColumnHeader": "Szűrő",
+ "assignmentFilterTypeColumnHeader": "Szűrési mód",
+ "assignmentToast": "Végfelhasználói értesítések",
+ "assignmentTypeTableHeader": "HOZZÁRENDELÉS TÍPUSA",
+ "deadlineTimeColumnLabel": "Telepítési határidő",
+ "deliveryOptimizationPriorityHeader": "Szállítás optimalizálásának prioritása",
+ "groupTableHeader": "Csoport",
+ "installContextLabel": "Környezet telepítése",
+ "isRemovable": "Telepítés cserélhetőként",
+ "licenseTypeLabel": "Engedély típusa",
+ "modeTableHeader": "Csoport mód",
+ "policySet": "Szabályzatkészlet",
+ "restartGracePeriodHeader": "Türelmi időszak újraindítása",
+ "startTimeColumnLabel": "Rendelkezésre állás",
+ "tracks": "Nyomkövetések",
+ "uninstallOnRemoval": "Eltávolítás az eszköz törlésekor",
+ "updateMode": "Prioritás frissítése",
+ "vPN": "VPN"
+ },
+ "AppType": {
+ "aADWebApp": "AAD-webalkalmazás",
+ "androidEnterpriseSystemApp": "Android Enterprise-rendszeralkalmazás",
+ "androidForWorkApp": "Felügyelt Google Play Áruházbeli alkalmazás",
+ "androidLobApp": "Üzletági Android-alkalmazás",
+ "androidStoreApp": "Android Áruházbeli alkalmazás",
+ "builtInAndroid": "Beépített Android-alkalmazás",
+ "builtInApp": "Beépített alkalmazás",
+ "builtInIos": "Beépített iOS-alkalmazás",
+ "iosLobApp": "Üzletági iOS-alkalmazás",
+ "iosStoreApp": "iOS Store-alkalmazás",
+ "iosVppApp": "Volume Purchase Program-alkalmazás iOS rendszerhez",
+ "lineOfBusinessApp": "Üzletági alkalmazás",
+ "macOSDmgApp": "macOS app (DMG)",
+ "macOSEdgeApp": "Microsoft Edge (macOS)",
+ "macOSLobApp": "Üzletági macOS-alkalmazás",
+ "macOSMdatpApp": "Microsoft Defender ATP (macOS)",
+ "macOSOfficeSuiteApp": "macOS Office programcsomag",
+ "macOsVppApp": "Volume Purchase Program-alkalmazás macOS rendszerhez",
+ "managedAndroidLobApp": "Felügyelt üzletági Android-alkalmazás",
+ "managedAndroidStoreApp": "Felügyelt Android Áruházbeli alkalmazás",
+ "managedGooglePlayApp": "Felügyelt Google Play Áruházbeli alkalmazás",
+ "managedGooglePlayPrivateApp": "Felügyelt privát Google Play-alkalmazás",
+ "managedGooglePlayWebApp": "Felügyelt Google Play-webhivatkozás",
+ "managedIosLobApp": "Felügyelt üzletági iOS-alkalmazás",
+ "managedIosStoreApp": "Felügyelt iOS Store-alkalmazás",
+ "microsoftStoreForBusinessApp": "A „Microsoft Store Vállalatoknak” egy alkalmazása",
+ "microsoftStoreForBusinessReleaseManagedApp": "Microsoft Store Vállalatoknak",
+ "officeAddIn": "Office-bővítmény",
+ "officeSuiteApp": "Microsoft 365-alkalmazások (Windows 10 és újabb)",
+ "sharePointApp": "SharePoint-app",
+ "teamsApp": "Teams alkalmazás",
+ "webApp": "Webhivatkozás",
+ "windowsAppXLobApp": "AppX-alapú üzletági Windows-alkalmazás",
+ "windowsClassicApp": "Windows-alkalmazás (Win32)",
+ "windowsEdgeApp": "Microsoft Edge (Windows 10 és újabb)",
+ "windowsMobileMsiLobApp": "MSI-alapú üzletági Windows-alkalmazás",
+ "windowsPhone81AppXBundleLobApp": "AppX-alapú üzletági Windows Phone 8.1-alkalmazás",
+ "windowsPhone81AppXLobApp": "AppX-alapú üzletági Windows Phone 8.1-alkalmazás",
+ "windowsPhone81StoreApp": "Windows Phone 8.1 Áruházbeli alkalmazás",
+ "windowsPhoneXapLobApp": "XAP-alapú üzletági Windows Phone-alkalmazás",
+ "windowsStoreApp": "Microsoft Store-alkalmazás",
+ "windowsUniversalAppXLobApp": "Univerzális AppX-alapú üzletági Windows-alkalmazás",
+ "windowsUniversalLobApp": "Univerzális üzletági Windows-alkalmazás"
+ },
+ "AppTypePlatform": {
+ "android": "Android",
+ "ios": "iOS",
+ "macOs": "macOS",
+ "web": "Web",
+ "windows": "Windows"
+ },
+ "AssignmentAction": {
+ "exclude": "Kizárva",
+ "include": "Belefoglalva",
+ "includeAllDevicesVirtualGroup": "Belefoglalva",
+ "includeAllUsersVirtualGroup": "Belefoglalva"
+ },
+ "AssignmentToast": {
+ "hideAll": "Az összes bejelentési értesítés elrejtése",
+ "showAll": "Az összes bejelentési értesítés megjelenítése",
+ "showReboot": "A számítógép-újraindításokra vonatkozó bejelentési értesítések megjelenítése"
+ },
+ "DeliveryOptimizationPriority": {
+ "backgroundNormal": "Háttér",
+ "displayText": "Tartalom letöltése a következőben: {0}",
+ "foreground": "Előtér",
+ "header": "Szállítás optimalizálásának prioritása"
+ },
+ "DeviceRestartBehaviorOptions": {
+ "allow": "Az alkalmazás telepítése kényszerítheti az eszköz újraindítását",
+ "basedOnReturnCode": "Viselkedés meghatározása a visszatérési kódok alapján",
+ "force": "Az Intune az eszköz kötelező újraindítását kezdeményezi",
+ "suppress": "Nincs megadott művelet"
+ },
+ "FilterType": {
+ "exclude": "Kizárás",
+ "include": "Belefoglalás",
+ "none": "Nincs"
+ },
+ "InstallIntent": {
+ "available": "Regisztrált eszközök esetében elérhető",
+ "availableWithoutEnrollment": "Regisztrációval vagy anélkül is elérhető",
+ "notApplicable": "Nem alkalmazható",
+ "required": "Kötelező",
+ "uninstall": "Eltávolítás"
+ },
+ "SettingType": {
+ "assignmentType": "Hozzárendelés típusa",
+ "deviceLicensing": "Engedély típusa",
+ "installContext": "Eltávolítás az eszköz törlésekor",
+ "toastSettings": "Végfelhasználói értesítések",
+ "vpnConfiguration": "VPN"
+ },
+ "UpdateMode": {
+ "default": "Alapértelmezett",
+ "postponed": "Elhalasztva",
+ "priority": "Magas prioritás"
+ }
+ },
+ "WindowsEnrollment": {
+ "coManagementAuthorityDesc": "Configuration Manager-integráció közös felügyeleti beállításainak konfigurálása",
+ "coManagementAuthorityTitle": "Közös felügyeleti beállítások ",
+ "deploymentProfiles": "Windows AutoPilot Deployment-profilok",
+ "description": "További információ arról a hét módszerről, amellyel a felhasználók és a rendszergazdák regisztrálhatják a Windows 10/11-es PC-ket az Intune-ban.",
+ "descriptionLabel": "Windows-regisztrációs módszerek",
+ "enrollmentStatusPage": "Regisztráció állapotát jelző lap"
+ },
+ "Win32Program": {
+ "DeviceRestartBehaviorOptions": {
+ "allow": "Az alkalmazás telepítése kényszerítheti az eszköz újraindítását",
+ "basedOnReturnCode": "Viselkedés meghatározása a visszatérési kódok alapján",
+ "force": "Az Intune az eszköz kötelező újraindítását kezdeményezi",
+ "suppress": "Nincs megadott művelet"
+ },
+ "RunAsAccountOptions": {
+ "system": "Rendszer",
+ "user": "Felhasználó"
+ },
+ "bladeTitle": "Program",
+ "deviceRestartBehavior": "Viselkedés az eszköz újraindításához",
+ "deviceRestartBehaviorTooltip": "Válassza ki az eszköz sikeres alkalmazástelepítés utáni újraindítási viselkedését. Az eszköz a visszatérési kódok konfigurációs beállításai alapján történő újraindításához válassza a Viselkedés meghatározása a visszatérési kódok alapján lehetőséget. Válassza a Nincs megadott művelet lehetőséget az eszköz újraindításának letiltásához az MSI-alapú alkalmazások telepítése során. Válassza Az alkalmazástelepítés kényszerítheti az eszköz újraindítását lehetőséget annak engedélyezéséhez, hogy az alkalmazástelepítés az újraindítások letiltása nélkül befejeződjön. Válassza Az Intune kényszeríti az eszköz kötelező újraindítását lehetőséget ahhoz, hogy sikeres alkalmazástelepítés után mindig újrainduljon az eszköz.",
+ "header": "Adja meg a parancsokat az alkalmazás telepítéséhez és leválasztásához:",
+ "installCommand": "Telepítési parancs",
+ "installCommandMaxLengthErrorMessage": "A telepítési parancs nem lehet hosszabb 1024 karakternél.",
+ "installCommandTooltip": "Az alkalmazás telepítéséhez használt teljes telepítési parancssor.",
+ "runAs32Bit": "Telepítési és leválasztási parancsok futtatása 32 bites folyamatban 64 bites ügyfeleken",
+ "runAs32BitTooltip": "Válassza az Igen lehetőséget az alkalmazás 32 bites folyamatban való telepítéséhez és leválasztásához 64 bites ügyfeleken. Válassza a Nem (alapértelmezett) lehetőséget, ha az alkalmazást 64 bites folyamatban szeretné telepíteni és leválasztani 64 bites ügyfeleken. A 32 bites ügyfelek mindig 32 bites folyamatot fognak használni.",
+ "runAsAccount": "Telepítési viselkedés",
+ "runAsAccountTooltip": "Ha az alkalmazást az összes felhasználó számára szeretné telepíteni, és ez támogatott, válassza a Rendszer lehetőséget. Ha az alkalmazást az eszközön bejelentkezett felhasználó számára szeretné telepíteni, válassza a Felhasználó lehetőséget. A kettős célú MSI-alkalmazások esetében a módosítások mindaddig megakadályozzák a frissítések és az eltávolítások sikeres végrehajtását, amíg vissza nem állítja az eredeti telepítés időpontjában alkalmazott értéket.",
+ "selectorLabel": "Program",
+ "uninstallCommand": "Leválasztási parancs",
+ "uninstallCommandTooltip": "Az alkalmazás eltávolításához használt teljes eltávolítási parancssor."
+ },
+ "CategoryDescription": {
+ "androidGeneralApplicationRestrictions": "E beállításokkal ellenőrizheti, hogy mely felhasználók telepítenek olyan alkalmazásokat, amelyek használatát a cége nem engedélyezte. Válassza ki a korlátozott alkalmazások listájának típusát:
\r\n Letiltott alkalmazások – azon alkalmazások listája, amelyek felhasználók általi telepítéséről értesülni szeretne.
\r\n Jóváhagyott alkalmazások – azon alkalmazások listája, amelyek használatát a cége engedélyezte. Ha a felhasználók egy ebben a listában nem szereplő alkalmazást telepítenek, Ön erről értesítést kap.
\r\n ",
+ "androidZebraMxZebraMx": "Zebra-eszközök konfigurálása MX-profil XML formátumban való feltöltésével.",
+ "iosDeviceFeaturesAirprint": "Ezekkel a beállításokkal megadhatja, hogy az iOS-eszközök automatikusan csatlakozzanak a hálózatbeli AirPrint-kompatibilis nyomtatókhoz. Ehhez szüksége lesz a nyomtatók IP-címére és elérési útjára.",
+ "iosDeviceFeaturesExtensibleSingleSignOn": "Konfiguráljon egy olyan alkalmazásbővítményt, amely engedélyezi az egyszeri bejelentkezés (SSO) használatát az iOS 13.0 vagy újabb rendszert futtató eszközök esetében.",
+ "iosDeviceFeaturesHomeScreenLayout": "Konfigurálja az iOS-eszközök dokkjának és főképernyőjének elrendezését. Bizonyos eszközöknél a megjelenített elemek száma korlátozott lehet.",
+ "iosDeviceFeaturesIOSWallpaper": "Kép megjelenítése az iOS-eszközök főképernyőjén és/vagy zárolási képernyőjén.\r\n Ha egyedi képet szeretne megjeleníteni az egyes képernyőkön, akkor hozzon létre egy-egy profilt a zárolási képernyőn, valamint a főképernyőn megjelenő képpel.\r\n Ezt követően rendelje hozzá mindkét profilt az egyes felhasználókhoz.\r\n
\r\n \r\n - Maximális fájlméret: 750 KB
\r\n - Fájltípus: PNG, JPG vagy JPEG
\r\n
\r\n ",
+ "iosDeviceFeaturesNotifications": "Az alkalmazások értesítési beállításainak megadása. Az iOS 9.3-as és újabb verzióiban támogatott.",
+ "iosDeviceFeaturesSharedDevice": "A zárolási képernyőn megjelenő nem kötelező szöveg megadása. Ezt a funkciót az IOS 9.3-as és újabb verziói támogatják. További információ",
+ "iosGeneralApplicationRestrictions": "E beállításokkal ellenőrizheti, hogy mely felhasználók telepítenek olyan alkalmazásokat, amelyek használatát a cége nem engedélyezte. Válassza ki a korlátozott alkalmazások listájának típusát:
\r\n Letiltott alkalmazások – azon alkalmazások listája, amelyek felhasználók általi telepítéséről értesülni szeretne.
\r\n Jóváhagyott alkalmazások – azon alkalmazások listája, amelyek használatát a cége engedélyezte. Ha a felhasználók egy ebben a listában nem szereplő alkalmazást telepítenek, Ön erről értesítést kap.
\r\n ",
+ "iosGeneralApplicationVisibility": "A megjelenített alkalmazások listáján megadhatja, hogy a felhasználó mely iOS-alkalmazásokat jeleníthesse meg és indíthassa el. A rejtett alkalmazások listáján azokat az iOS-alkalmazásokat adhatja meg, amelyeket a felhasználó nem jeleníthet meg és nem indíthat el.",
+ "iosGeneralAutonomousSingleAppMode": "Ha erre a listára felvesz és egy eszközhöz hozzárendel egy alkalmazást, kizárólag arra az alkalmazásra korlátozhatja az eszköz használatát, ha az elindult, illetve zárolhatja az eszközt bizonyos művelet végrehajtásakor (például vizsgáztatás ideje alatt). A művelet befejeződése, illetve a korlátozás feloldása után az eszköz visszatér a szokásos állapotba.",
+ "iosGeneralKiosk": "Kioszkmódban zárolódnak az eszköz különböző beállításai, illetve egyetlen alkalmazás futtatására korlátozható az eszköz használata. Ez többek között kiskereskedelmi üzletekben lehet hasznos, ahol az eszközön egyetlen bemutatóalkalmazásnak kell futnia.",
+ "macDeviceFeaturesAirprint": "Ezekkel a beállításokkal megadhatja, hogy a macOS-eszközök automatikusan csatlakozzanak a hálózatbeli AirPrint-kompatibilis nyomtatókhoz. Ehhez szüksége lesz a nyomtatók IP-címére és erőforrás-elérési útjára.",
+ "macDeviceFeaturesAssociatedDomains": "A társított tartományok konfigurálásával megoszthatja az adatokat és a bejelentkezési hitelesítő adatokat a szervezet alkalmazásai és webhelyei között. Ez a profil a macOS 10.15-ös vagy újabb verzióját futtató eszközökön alkalmazható.",
+ "macDeviceFeaturesExtensibleSingleSignOn": "Konfiguráljon egy olyan alkalmazásbővítményt, amely engedélyezi az egyszeri bejelentkezés (SSO) használatát a macOS 10.15 vagy újabb rendszert futtató eszközök esetében.",
+ "macDeviceFeaturesLoginItems": "Kiválaszthatja, hogy mely alkalmazások, fájlok és mappák legyenek nyitva, amikor a felhasználók bejelentkeznek az eszközeiken. Ha nem szeretné, hogy a felhasználók megváltoztassák a kiválasztott alkalmazások megnyitásának módját, elrejtheti az alkalmazást a felhasználói konfigurációból.",
+ "macDeviceFeaturesLoginWindow": "Konfigurálja a macOS bejelentkezési képernyőjének megjelenését, valamint a felhasználók számára a bejelentkezés előtt és után elérhető funkciókat.",
+ "macExtensionsKernelExtensions": "Használja ezeket a beállításokat a kernelbővítményekre vonatkozó szabályzat konfigurálásához a 10.13.2 vagy újabb verziót futtató macOS-eszközökön.",
+ "macGeneralDomains": "A felhasználó által küldött vagy fogadott azon e-mailek, amelyek nem egyeznek az itt megadott tartománnyal, nem megbízhatóként lesznek megjelölve.",
+ "windows10EndpointProtectionApplicationGuard": "A Microsoft Edge használatakor a Microsoft Defender alkalmazásőr védi a környezetet a munkahely által megbízhatóként meg nem jelölt webhelyektől. Ha a felhasználók olyan webhelyeket keresnek fel, amelyek nem találhatók meg az elszigetelt hálózat határán belül, a rendszer egy virtuális böngészési Hyper-V-munkamenetben nyitja meg ezeket a webhelyeket. A megbízható webhelyek meghatározása a hálózathatárral történik, amelyet az Eszközkonfiguráció lapon lehet beállítani. Megjegyzés: ez a funkció kizárólag 64-bites Windows 10 vagy újabb verziókat futtató eszközökhöz érhető el.",
+ "windows10EndpointProtectionCredentialGuard": "A Credential Guard engedélyezésekor a a rendszer a következő szükséges beállításokat engedélyezi:\r\n
\r\n \r\n - A virtualizálás-alapú biztonság engedélyezése: A virtualizálás-alapú biztonság (VBS) bekapcsolása a következő újraindításkor. A virtualizálás-alapú biztonság a Windows hipervizorral támogatja a biztonsági szolgáltatásokat.
\r\n
\r\n - Biztonságos rendszerindítás közvetlen memória-hozzáféréssel: A VBS bekapcsolása biztonságos rendszerindítással és közvetlen memória-hozzáféréssel (DMA).
\r\n
\r\n ",
+ "windows10EndpointProtectionDeviceGuard": "Válasszon ki további olyan alkalmazásokat, amelyeket a Microsoft Defender alkalmazásfelügyeleti funkciójával szeretne naplózni, vagy amelyek futtatását ezzel a funkcióval kívánja engedélyezni. A Windows-összetevők és a Windows Áruházból származó alkalmazások automatikusan megbízhatónak minősülnek, és futtathatók.
\r\n A rendszer nem tiltja le a Csak naplózás üzemmódban futó alkalmazásokat, és ezek eseményeit a helyi ügyfélnaplókban rögzíti.\r\n ",
+ "windows10GeneralPrivacyPerApp": "Olyan alkalmazások hozzáadása, amelyek viselkedésének az „Alapértelmezett adatvédelem” kategóriában meghatározottól eltérőnek kell lennie.",
+ "windows10NetworkBoundaryNetworkBoundary": "A hálózathatár a vállalati erőforrások listájából áll, például a vállalati hálózat számítógépeihez tartozó felhőbeli tartományok vagy IP-címtartományok. A hálózathatárok meghatározásával szabályzatokat alkalmazhat az ilyen helyeken található adatok védelmére.",
+ "windowsHealthMonitoring": "A Windows biztonságiállapot-figyelési szabályzatának konfigurálása.",
+ "windowsPhoneGeneralApplicationRestrictions": "A Windows Phone letilthatja a felhasználók számára a tiltott alkalmazások listáján szereplő, illetve a jóváhagyott alkalmazások listáján nem szereplő alkalmazások telepítését vagy futtatását. Minden felügyelt alkalmazást hozzá kell adni a jóváhagyott alkalmazások listájához."
+ },
"Inputs": {
"accountDomain": "Fióktartomány",
"accountDomainHint": "pl. contosodomain",
@@ -9962,6 +9858,7 @@
"displayNameLabel": "Név",
"displayVersionHint": "Adja meg az alkalmazás verziószámát",
"displayVersionLabel": "Alkalmazásverzió",
+ "displayVersionLengthCheck": "A megjelenítési verzió hossza legfeljebb 130 karakter lehet",
"eBookCategoryNameLabel": "Alapértelmezett név",
"emailAccount": "E-mail-fiók neve",
"emailAccountHint": "példa: Céges e-mail",
@@ -10066,385 +9963,51 @@
"xmlFormatInvalid": "Az XML-alapú szabályzat formátuma érvénytelen.",
"xmlTooLarge": "A bemenet méretének 1 MB-nál kisebbnek kell lennie."
},
- "Tooltips": {
- "PolicySettings": {
- "TouchId1": {
- "android": "Android rendszeren engedélyezheti PIN kód helyett az ujjlenyomatos azonosítás használatát. Ha a felhasználó munkahelyi fiókkal próbál meg hozzáférni az alkalmazáshoz, a rendszer ujjlenyomatot kér tőle.",
- "iOS": "iOS vagy iPadOS rendszerű eszközökön engedélyezheti PIN-kód helyett az ujjlenyomatos azonosítás használatát. Ha a felhasználó munkahelyi fiókkal próbál meg hozzáférni az alkalmazáshoz, a rendszer PIN-kód beírása helyett ujjlenyomatot kér tőle.",
- "mac": "Mac-eszközökön engedélyezheti PIN-kód helyett az ujjlenyomatos azonosítás használatát. Ha a felhasználó munkahelyi fiókkal próbál meg hozzáférni az alkalmazáshoz, a rendszer ujjlenyomatot kér tőle."
- },
- "appSharingFromLevel1": "Válassza ki az alábbi beállítások közül, hogy az alkalmazás milyen alkalmazásoktól fogadhat adatokat:",
- "appSharingFromLevel2": "{0}: Csak más, szabályzattal felügyelt alkalmazásokból érkező adatok fogadásának engedélyezése a szervezeti dokumentumokban vagy fiókokban",
- "appSharingFromLevel3": "{0}: Bármely alkalmazásból érkező adatok fogadásának engedélyezése szervezeti dokumentumokban vagy fiókokban",
- "appSharingFromLevel4": "{0}: Nem engedélyezett semmilyen alkalmazásból érkező adatok fogadása sem a szervezeti dokumentumokban vagy fiókokban",
- "appSharingFromLevel5": "{0}: Az adatátvitel engedélyezése bármely alkalmazásból és a felhasználói identitás nélküli bejövő adatok céges adatokként való kezelése.",
- "appSharingToLevel1": "Válassza ki az alábbi beállítások közül, hogy az alkalmazás milyen alkalmazásoknak küldhessen adatokat:",
- "appSharingToLevel2": "{0}: Szervezeti adatok küldésének engedélyezése kizárólag más, szabályzat által felügyelt alkalmazásokba",
- "appSharingToLevel3": "{0}: Szervezeti adatok küldésének engedélyezése bármely alkalmazásba",
- "appSharingToLevel4": "{0}: Nem engedélyezett szervezeti adatok küldése semmilyen alkalmazásba",
- "appSharingToLevel5": "{0}: Csak a szabályzat által felügyelt egyéb alkalmazásokba történő adatátvitel és a regisztrált eszközök MDM által felügyelt egyéb alkalmazásaiba való fájlátvitel engedélyezése",
- "appSharingToLevel6": "{0}: Csak a szabályzat által felügyelt egyéb alkalmazásokba történő adatátvitel engedélyezése és csak a szabályzat által felügyelt alkalmazások megjelenítése az operációs rendszer Megnyitás és Megosztás párbeszédpaneljeinek szűrésével",
- "conditionalEncryption1": "A(z) {0} lehetőséget választva a belső alkalmazástár esetében letilthatja az alkalmazástitkosítást, ha a rendszer eszköztitkosítást észlel egy regisztrált eszközön.",
- "conditionalEncryption2": "Megjegyzés: az Intune csak az Intune MDM esetében észleli az eszközregisztrációt. A külső alkalmazástár továbbra is titkosítva lesz annak érdekében, hogy a nem felügyelt alkalmazások ne férhessenek hozzá az adatokhoz.",
- "contactSyncMac": "Ha a beállítás le van tiltva, az alkalmazások nem tudják a natív címjegyzékbe menteni a névjegyeket.",
- "contactsSync": "Válassza a Letiltás lehetőséget annak megakadályozásához, hogy a szabályzattal felügyelt alkalmazások adatokat mentsenek az eszköz natív alkalmazásaiba (például a Névjegyek, a Naptár és a vezérlők), vagy hogy a szabályzattal felügyelt alkalmazásokon belül megakadályozza a bővítmények használatát. Ha az Engedélyezés lehetőséget választja, a szabályzattal felügyelt alkalmazás menthet adatokat a natív alkalmazásokba vagy használhat bővítményeket, ha ezek a funkciók támogatottak és engedélyezettek a szabályzattal felügyelt alkalmazáson belül.
Az alkalmazások további konfigurációs lehetőségeket biztosíthatnak az alkalmazáskonfigurációs szabályzatokkal. További információért tekintse meg az alkalmazás dokumentációját.",
- "encryptionAndroid1": "Az Intune-alapú mobilalkalmazás-felügyeleti szabályzathoz társított alkalmazások esetén a Microsoft szolgáltatja a titkosítást. Az adatok titkosítása szinkron módon, a mobilalkalmazás-felügyeleti szabályzatban megadott beállításoknak megfelelően történik a bemeneti/kimeneti fájlműveletek során. A felügyelt Android-alkalmazások AES-128 szabványú titkosítást alkalmaznak CBC módban, a platform kriptográfiai kódtárait használva. A titkosítási módszer nem felel meg a FIPS 140-2 szabványnak. Az SHA-256 szabványú titkosítás explicit utasításként, a SigAlg paraméterrel használható, de csak a 4.2-es és újabb verziójú eszközökön működik. Az eszköz tárolóján tárolt tartalmat a rendszer mindig titkosítja.",
- "encryptionAndroid2": "Ha az alkalmazásszabályzatban előírja a titkosítás használatát, a végfelhasználónak PIN-kódot kell beállítania és használnia az eszköze eléréséhez. Ha nincs beállítva PIN-kód az eszközhöz való hozzáféréshez, az alkalmazások nem indulnak el, a felhasználó pedig a következőhöz hasonló üzenetet fog látni: „Munkahelye PIN-kód engedélyezését írja elő az eszközön az alkalmazás eléréséhez.”",
- "encryptionMac1": "Az Intune-alapú mobilalkalmazás-felügyeleti szabályzathoz társított alkalmazások számára a Microsoft szolgáltatja a titkosítást. Az adatok titkosítása szinkron módon, a mobilalkalmazás-felügyeleti szabályzatban megadott beállításoknak megfelelően történik a bemeneti/kimeneti fájlműveletek során. A felügyelt Mac-alkalmazások AES-128 szabványú titkosítást alkalmaznak CBC módban, a platform kriptográfiai kódtárait használva. A titkosítási módszernek nem felel meg a FIPS 140-2 szabványnak. Az SHA-256 szabványú titkosítás explicit utasításként, a SigAlg paraméterrel használható, de csak a 4.2-es és újabb verziójú eszközökön működik. Az eszköz tárterületén tárolt tartalmat a rendszer mindig titkosítja.",
- "faceId1": "Ahol lehetséges, engedélyezheti PIN-kód helyett az arcfelismerés használatát. A rendszer kéri a felhasználókat, hogy biztosítsák az arcfelismerést, amikor a munkahelyi fiókjukkal férnek hozzá ehhez az alkalmazáshoz.",
- "faceId2": "Válassza az Igen lehetőséget PIN-kód helyett az arcfelismerés használatának engedélyezéséhez az alkalmazás-hozzáféréshez.",
- "managementLevelsAndroid1": "Ezzel a beállítással megadhatja, hogy a szabályzat androidos eszközfelügyelet által felügyelt eszközökre, Android Enterprise-eszközökre vagy nem felügyelt eszközökre vonatkozik.",
- "managementLevelsAndroid2": "{0}: A nem felügyelt eszközök azok az eszközök, melyek esetében a rendszer nem észlelte az Intune MDM általi felügyeletet. Ide tartoznak a külső MDM-szállítók is.",
- "managementLevelsAndroid3": "{0}: Intune által felügyelt eszközök, amelyek az Android Device Administration API-t használják.",
- "managementLevelsAndroid4": "{0}: Intune által felügyelt eszközök, amelyek az Android Enterprise munkahelyi profilokat vagy az Android Enterprise teljes körű eszközfelügyeletet használják.",
- "managementLevelsIos1": "Ezzel a beállítással adható meg, hogy a szabályzat az MDM által felügyelt vagy a nem felügyelt eszközökre érvényes.",
- "managementLevelsIos2": "{0}: A nem felügyelt eszközök azok az eszközök, melyek esetében a rendszer nem észlelte az Intune MDM általi felügyeletet. Ide tartoznak a külső MDM-szállítók is.",
- "managementLevelsIos3": "{0}: A felügyelt eszközöket az Intune MDM felügyeli.",
- "minAppVersion": "Az alkalmazás azon szükséges minimális verziószámának megadása, mellyel a felhasználóknak rendelkezniük kell ahhoz, hogy biztonságos hozzáférést kapjanak az alkalmazáshoz.",
- "minAppVersionWarning": "Az alkalmazás azon ajánlott minimális verziószámának megadása, mellyel a felhasználóknak rendelkezniük kell az alkalmazás biztonságos eléréséhez.",
- "minOsVersion": "Az operációs rendszer azon szükséges minimális verziószámának megadása, mellyel a felhasználóknak rendelkezniük kell ahhoz, hogy biztonságos hozzáférést kapjanak az alkalmazáshoz.",
- "minOsVersionWarning": "Az operációs rendszer azon ajánlott minimális verziószámának megadása, mellyel a felhasználóknak rendelkezniük kell ahhoz, hogy biztonságos hozzáférést kapjanak az alkalmazáshoz.",
- "minPatchVersion": "Az androidos biztonsági javítás azon legrégebbi verziójának megadása, amellyel a felhasználók még biztonságosan elérhetik az alkalmazást.",
- "minPatchVersionWarning": "Az androidos biztonsági javítás azon javasolt legrégebbi verziójának megadása, amellyel a felhasználók még biztonságosan elérhetik az alkalmazást.",
- "minSdkVersion": "Az Intune alkalmazásvédelmi szabályzatai azon szükséges minimális SDK-verziójának megadása, mellyel a felhasználóknak rendelkezniük kell ahhoz, hogy biztonságos hozzáférést kapjanak az alkalmazáshoz.",
- "requireAppPinDefault": "Az Igen lehetőség kiválasztásával letilthatja az alkalmazás PIN-kódját eszközzárolás egy regisztrált eszközön való észlelésekor.
",
- "targetAllApps1": "Ezzel a beállítással célozhatók meg tetszőleges felügyeleti állapotú eszközökön található alkalmazások a szabályzattal.",
- "targetAllApps2": "A rendszer felülírja ezt a beállítást a szabályzatütközések feloldása során, ha egy felhasználó egy adott felügyeleti állapotot célzó szabályzattal rendelkezik.",
- "touchId2": "A(z) {0} beállítással PIN-kód helyett ujjlenyomatos azonosítást írhat elő az alkalmazás eléréséhez."
- },
- "Tap": {
- "pinResetAfterNumberOfDays": "Adja meg, hogy hány nap elteltével kell a felhasználónak új PIN-kódot beállítania.",
- "previousPinBlockCount": "Ezzel a beállítással adható meg az Intune által megőrzött korábbi PIN-kódok száma. Minden új PIN-nek az Intune által megőrzöttektől különbözőnek kell lennie."
+ "WindowsFeatureUpdate": {
+ "EndOFSupportStatus": {
+ "notSupported": "Nem támogatott",
+ "supportEnding": "A támogatás vége",
+ "supported": "Támogatott"
+ }
},
- "WipPolicySettings": {
- "25": "",
- "allowWindowsSearch": "Ezzel a beállítással engedélyezhető, hogy a Windows Search továbbra is kereshessen a titkosított adatok között.",
- "authoritativeIpRanges": "Ennek a beállításnak az engedélyezésével felülbírálhatja az IP-címtartományok automatikus észlelését a Windowsban.",
- "authoritativeProxyServers": "Ennek a beállításnak az engedélyezésével felülbírálhatja a proxykiszolgálók automatikus észlelését a Windowsban.",
- "checkInput": "Ellenőrizze a bemenetek érvényességét",
- "dataRecoveryCert": "A helyreállítási tanúsítvány egy speciális titkosított fájlrendszer (EFS), amellyel helyreállíthatók a titkosított fájlok, ha a titkosítási kulcs elveszne vagy megsérülne. Hozzon létre egy helyreállítási tanúsítványt, és adja meg itt. További információt itt talál.",
- "enterpriseCloudResources": "Adja meg azokat a felhőerőforrásokat, amelyeket cégesként szeretne kezelni és Windows Information Protection-szabályzattal szeretne védeni. Több erőforrás is megadható, ha elválasztja az egyes bejegyzéseket a | karakterrel.
Ha a cég rendelkezik proxykonfigurációval, akkor megadhatja azt a proxyt, amelyen keresztül a forgalom a megadott felhőerőforrásokba lesz továbbítva.
URL[,Proxy]|URL[,Proxy]
Proxy nélkül: contoso.sharepoint.com|contoso.visualstudio.com
Proxyval: contoso.sharepoint.com,proxy.contoso.com|contoso.visualstudio.com,proxy.contoso.com
",
- "enterpriseIPv4Ranges": "Adja meg a céges hálózatot kialakító IPv4-tartományokat. Ezeket a rendszer a céges hálózati határok meghatározásához megadott céges hálózati tartománynevekkel összefüggésben használja.
Ennek a beállításnak a megadása kötelező a Windows Information Protection engedélyezéséhez.
Az egyes bejegyzéseket vesszővel elválasztva több tartományt is megadhat.
Például: 3.4.0.1-3.4.255.255,192.168.1.1-192.168.255.255
",
- "enterpriseIPv6Ranges": "Adja meg a céges hálózatot kialakító IPv6-tartományokat. Ezeket a rendszer a céges hálózati határok meghatározásához megadott céges hálózati tartománynevekkel összefüggésben használja.
Az egyes bejegyzéseket vesszővel elválasztva több tartományt is megadhat.
Például: 2001:4898:dc05::-2001:4898:dc05:ffff:ffff:ffff:ffff:ffff,2a01:110::-2a01:110:7fff:ffff:ffff:ffff:ffff:ffff
",
- "enterpriseInternalProxyServers": "Ha a cégnél proxy van konfigurálva, megadhatja azt a proxyt, amelyen keresztül a Vállalati felhőalapú erőforrások menü beállításaiban megadott felhőbeli erőforrások felé irányuló forgalmat át szeretné irányítani.
Több érték megadásához pontosvesszővel válassza el az egyes bejegyzéseket.
Példa: contoso.belsoproxy1.com; contoso.belsoproxy2.com
",
- "enterpriseNetworkDomainNames": "Adja meg a céges hálózatot kialakító DNS-neveket. Ezeket a rendszer a céges hálózati határok meghatározásához megadott IP-tartományokkal összefüggésben használja. Az egyes bejegyzéseket vesszővel elválasztva több értéket is megadhat.
Ennek a beállításnak a megadása kötelező a Windows Information Protection engedélyezéséhez.
Például: corp.contoso.com,region.contoso.com
",
- "enterpriseProtectedDomainNames": "Itt adhatja meg a vállalati hálózatot alkotó DNS-neveket. Ezek a vállalati hálózathatárt definiáló IP-címtartományokkal együtt használatosak. Több értéket is megadhat a függőleges vonal (|) karakterrel elválasztva.
Ez a beállítás szükséges a Windows Information Protection engedélyezéséhez.
Példa: corp.contoso.com|region.contoso.com
",
- "enterpriseProxyServers": "Ha a hálózat kifelé irányuló proxykat tartalmaz, itt adhatja meg őket. A proxykiszolgáló címének megadásakor adja meg azt a portot is, amelyen keresztül a Windows Information Protection engedélyezni és védeni fogja a forgalmat.
Megjegyzés: a lista nem tartalmazhat a vállalati belső proxykiszolgálók listáján szereplő kiszolgálókat. Több érték megadásához pontosvesszővel válassza el az egyes bejegyzéseket.
Példa: proxy.contoso.com:80; proxy2.contoso.com:80
",
- "maxInactivityTime1": "Ez a beállítás azt határozza meg, hogy az eszközön legfeljebb hány percnyi inaktivitás után lépjen működésbe a PIN-kóddal vagy jelszóval feloldható zárolás. A felhasználók a Beállítások alkalmazásban bármilyen létező, a beállított maximális értéknél rövidebb időkorlátot megadhatnak. Megjegyzés: A Lumia 950 és 950XL készülékeken a maximális időkorlát az ebben a szabályzatban meghatározott értéktől függetlenül 5 perc.",
- "maxInactivityTime2": "0 (alapértelmezett) – Nincs időkorlát. Az alapértelmezett 0 érték azt jelenti, hogy nincs beállítva időkorlát.",
- "maxPasswordAttempts1": "A szabályzat másként működik mobileszközökön és asztali számítógépeken.",
- "maxPasswordAttempts2": "Mobileszközön a szabályzatban meghatározott érték elérésekor a felhasználó eszközéről törlődnek az adatok.",
- "maxPasswordAttempts3": "Asztali számítógépen a szabályzatban meghatározott érték elérésekor nem törlődnek az adatok, hanem a számítógép BitLocker-alapú helyreállítási módra vált, amelyben az adatok nem érhetők el, de helyreállíthatók. A szabályzat nem hajtható végre, ha nincs engedélyezve a BitLocker.",
- "maxPasswordAttempts4": "A sikertelen próbálkozások korlátjának elérése előtt a felhasználó a zárolási képernyőre kerül vissza, és a rendszer figyelmezteti, hogy további sikertelen próbálkozások esetén zárolva lesz a számítógép. Ha a felhasználó eléri a korlátot, az eszköz automatikusan újraindul, és a BitLocker-helyreállítás lapja jelenik meg rajta. A lapon a felhasználó megadhatja a BitLocker helyreállítási kulcsát.",
- "maxPasswordAttempts5": "0 (alapértelmezett) – Az eszközről soha nem törlődnek az adatok helytelen PIN-kód vagy jelszó megadása esetén.",
- "maxPasswordAttempts6": "Ha a szabályzat minden beállításának értéke 0, a 0 a legbiztonságosabb érték. Minden más esetben a szabályzat szerinti minimális érték a legbiztonságosabb.",
- "mdmDiscoveryUrl": "Adja meg annak az MDM-es regisztrációs végpontnak az URL-címét, amelyet az MDM-ben regisztráló felhasználók használni fognak. Az Intune-ban ez a beállítás alapértelmezés szerint meg van adva.",
- "minimumPinLength1": "Az itt megadott egész szám határozza meg, hogy legalább hány karakterből kell állnia a PIN-kódnak. Az alapértelmezett érték a 4. A szabályzatbeállításhoz megadható minimális érték a 4. A legnagyobb megadható érték kisebb, mint a PIN-kód maximális hossza beállításnál megadott szám, vagy mint 127 (amelyik a kettő közül kisebb).",
- "minimumPinLength2": "Ha konfigurálja ezt a szabályzatbeállítást, a PIN-kód hosszának legalább az itt megadott számot kell elérnie. Ha letiltja vagy nem konfigurálja a szabályzatbeállítást, a PIN-kódnak legalább 4 karakter hosszúnak kell lennie.",
- "name": "Ennek a hálózathatárnak a neve",
- "neutralResources": "Ha a cégnél hitelesítés-átirányítási végpontokat használnak, itt adhatja meg őket. Az itt megadott helyeket a rendszer vagy személyes, vagy céges helyként kezeli a kapcsolat átirányítás előtti környezetétől függően.
Több érték megadásához vesszővel válassza el az egyes bejegyzéseket.
Példa: sts.contoso.com,sts.contoso2.com
",
- "passportForWork1": "Az itt megadott érték határozza meg, hogy használható-e a Vállalati Windows Hello a Windowsba való bejelentkezéshez.",
- "passportForWork2": "Alapértelmezés szerint a beállítás értéke igaz. Ha a szabályzatbeállítást hamis értékűre állítja, a felhasználó nem építheti ki a Vállalati Windows Hello szolgáltatást, kivéve az olyan, Azure Active Directoryhoz csatlakoztatott mobiltelefonokon, amelyeken ez kötelező.",
- "pinExpiration": "A szabályzatbeállítás maximális megadható értéke 730, minimális értéke pedig 0. Ha a szabályzatbeállítás értéke 0, a felhasználó PIN-kódja soha nem fog lejárni.",
- "pinHistory1": "A szabályzatbeállítás maximális megadható értéke 50, minimális értéke pedig 0. Ha a szabályzatbeállítás értéke 0, nem szükséges tárolni a korábbi PIN-kódokat.",
- "pinHistory2": "A felhasználó aktuális PIN-kódja bekerül a felhasználói fiókhoz társított PIN-kódok közé. A PIN-kódok előzményei a PIN-kód átállításakor elvesznek.",
- "protectUnderLock": "Alkalmazások tartalmának védelme, amikor az eszköz zárolt állapotban van.",
- "protectionModeBlock": "Letiltás: Annak megakadályozása, hogy a céges adatok kikerüljenek a védett alkalmazásokból.
",
- "protectionModeOff": "Ki: A felhasználó szabadon áthelyezheti az adatokat a védett alkalmazásokból. Nincs műveletnaplózás.
",
- "protectionModeOverride": "Felülbírálások engedélyezése: A rendszer üzenetet jelenít meg a felhasználónak, ha védett alkalmazásból próbál adatokat áthelyezni egy nem védett alkalmazásba. Ha a felhasználó felülbírálja az üzenetet, a műveletet a rendszer naplózza.
",
- "protectionModeSilent": "Néma: A felhasználó szabadon áthelyezheti az adatokat a védett alkalmazásokból. Ezeket a műveleteket a rendszer naplózza.
",
- "required": "Szükséges",
- "revokeOnMdmHandoff": "Hozzáadva a Windows 10 1703-as verziójában. Ezzel a szabályzattal megadhatja, hogy vissza kell-e vonni a WIP-kulcsokat, ha az eszközt a MAM-ról az MDM-re frissíti. Ha a „Kikapcsolva” értéket állítja be, a kulcsok nem lesznek visszavonva, és a felhasználó a frissítés után továbbra is hozzáfér a védett fájlokhoz. Ezt az értéket javasoljuk megadni, ha az MDM szolgáltatásban a WIP EnterpriseID a MAM szolgáltatással azonos értékre van beállítva.",
- "revokeOnUnenroll": "Ha a beállítás be van kapcsolva, a titkosítási kulcsok vissza lesznek vonva, ha az eszközt kiveszik a szabályzat hatóköréből.",
- "rmsTemplateForEdp": "Az RMS-titkosításhoz használandó sablon GUID-ja. Az Azure RMS-sablonnal a rendszergazda részletesen konfigurálhatja, hogy ki és meddig férhet hozzá az RMS-sel védett fájlokhoz.",
- "showWipIcon": "Ha ez a beállítás be van kapcsolva, a felhasználót egy átfedő ikon értesíti, ha céges környezetben dolgozik.",
- "useRmsForWip": "Ez a beállítás azt határozza meg, hogy a Windows Információvédelemben engedélyezett-e az Azure RMS-alapú titkosítás használata."
+ "SecurityTemplate": {
+ "aSR": "Támadási felület csökkentése",
+ "accountProtection": "Fiókvédelem",
+ "allDevices": "Minden eszköz",
+ "antivirus": "Víruskereső",
+ "antivirusReporting": "Víruskereső-jelentéskészítés (előzetes verzió)",
+ "conditionalAccess": "Feltételes hozzáférés",
+ "deviceCompliance": "Eszköz megfelelősége",
+ "diskEncryption": "Lemeztitkosítás",
+ "eDR": "Végpontészlelés és -válasz",
+ "firewall": "Tűzfal",
+ "helpSupport": "Súgó és támogatás",
+ "setup": "Telepítés",
+ "wdapt": "Microsoft Defender for Endpoint"
+ },
+ "Win32ReturnCodes": {
+ "CodeTypes": {
+ "failed": "Sikertelen",
+ "hardReboot": "Hardveres újraindítás",
+ "retry": "Újra",
+ "softReboot": "Szoftveres újraindítás",
+ "success": "Sikeres"
},
- "requireAppPin": "Az Igen lehetőség kiválasztásával letilthatja az alkalmazás PIN-kódját eszközzárolás egy regisztrált eszközön való észlelésekor.
Megjegyzés: Az Intune iOS vagy iPadOS rendszeren külső EMM-megoldással nem tudja észlelni az eszközregisztrációt.
"
- },
- "AppInfoBalloonText": {
- "Certificate": {
- "customSubjectName": "CN={{UserName}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US\r\nor\r\nCN={{AAD_Device_ID}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US",
- "keySize": "Adja meg a kulcsban tárolt bitek számát.",
- "keyUsage": "Adja meg a tanúsítvány nyilvános kulcsának cseréjéhez szükséges titkosítási műveletet.",
- "renewalThreshold": "Adja meg a tanúsítvány hátralévő élettartamának százalékában (1 és 99 százalék között), hogy az eszköz mikor kérheti leghamarabb a tanúsítvány megújítását. Az ajánlott érték az Intune-ban 20%. (1-99)",
- "rootCert": "Válasszon ki egy korábban konfigurált és hozzárendelt legfelső szintű hitelesítésszolgáltatói tanúsítványprofilt. A hitelesítésszolgáltatói tanúsítványnak meg kell egyeznie annak a hitelesítésszolgáltatónak a főtanúsítványával, amely a jelenleg konfigurált profilhoz kiadja a tanúsítványt.",
- "scepServerUrl": "Adja meg annak az NDES-kiszolgálónak az URL-címét, amely az SCEP használatával adja ki a tanúsítványokat (HTTPS-nek kell lennie). Példa: https://contoso.com/certsrv/mscep/mscep.dll",
- "scepServerUrls": "Adja meg annak az NDES-kiszolgálónak az URL-címét vagy -címeit, amely az SCEP használatával adja ki a tanúsítványokat. Példa: https://contoso.com/certsrv/mscep/mscep.dll",
- "subjectAlternativeName": "Tulajdonos alternatív neve",
- "subjectNameFormat": "Tulajdonosnév formátuma",
- "validityPeriod": "A tanúsítvány érvényességének lejártáig hátralévő idő. A tanúsítványsablonban megjelenő érvényességi időtartammal egyenlő vagy annál kisebb értéket adjon meg. Alapértelmezésként egy év van beállítva."
- },
- "appInstallContext": "Ez a beállítás határozza meg az alkalmazáshoz hozzárendelendő telepítési környezetet. A kettős módú alkalmazások esetében válassza ki az alkalmazáshoz használni kívánt környezetet. Ez minden más alkalmazás esetében előre ki van választva a csomag alapján, és nem lehet módosítani.",
- "autoUpdateMode": "Konfigurálja az alkalmazás frissítési prioritását. Válassza az Alapértelmezett lehetőséget, ha meg szeretné követelni, hogy az eszköz csatlakozzon a WiFi-hez, töltés alatt álljon, és ne legyen aktív használatban az alkalmazás frissítése előtt. A Magas prioritás lehetőséget választva azonnal frissítheti az alkalmazást, amint a fejlesztő közzétette azt, függetlenül a töltöttségi állapottól, a Wi-Fi-képességtől vagy az eszközön végzett végfelhasználói tevékenységtől. A Magas prioritás csak DO-eszközök estén lép életbe.",
- "configurationSettingsFormat": "A konfigurációs beállítások szövegformázása",
- "ignoreVersionDetection": "A beállítást állítsa az Igen értékre azon alkalmazások esetében, melyeket automatikusan frissít az alkalmazás fejlesztője (mint például a Google Chrome).",
- "ignoreVersionDetectionMacOSLobApp": "Válassza az Igen lehetőséget olyan alkalmazások esetében, amelyeket automatikusan frissít az alkalmazásfejlesztő, vagy ha csak az alkalmazás bundleID azonosítóját szeretné ellenőrizni a telepítés előtt. Ha az alkalmazás bundleID azonosítóját és verziószámát is szeretné ellenőrizni a telepítés előtt, válassza a Nem lehetőséget.",
- "installAsManagedMacOSLobApp": "Ez a beállítás csak a macOS 11-es és újabb verzióra vonatkozik. Az alkalmazás telepítve lesz, de nem lesz felügyelet alá vonva a macOS 10.15-ös és korábbi verzióin.",
- "installContextDropdown": "Válassza ki a megfelelő telepítési hatókört. Felhasználószintű telepítés esetén az alkalmazás csak a célfelhasználó számára települ, míg az eszközszintű telepítés esetében az alkalmazás az eszköz összes felhasználója számára telepítve lesz.",
- "ldapUrl": "Ez az az LDAP-állomásnév, ahonnan az ügyfelek megkapják az e-mail-címzettek nyilvános titkosítási kulcsait. Az e-mailek titkosítva lesznek, ha rendelkezésre áll egy kulcs. Támogatott formátumok: - ldap.example.com
\r\n- ldap.example.com:123
\r\n- ldap://ldap.example.com
- ldap://ldap.example.com:123
- ldaps://ldap.example.com
\r\n- ldaps://ldap.example.com:123
",
- "permissionsSettings": "Válassza ki a társított alkalmazás futtatókörnyezeti engedélyeit.",
- "policyAssociatedApp": "Válassza ki az alkalmazást, amelyhez a szabályzat társítva lesz.",
- "policyConfigurationSettings": "Válassza ki a szabályzat konfigurációs beállításainak megadásához használni kívánt módszert.",
- "policyDescription": "Megadhatja a konfigurációs szabályzat leírását.",
- "policyEnrollmentType": "Válassza ki, hogy ezek a beállítások az eszközkezeléssel, vagy pedig az Intune SDK-val létrehozott alkalmazásokkal legyenek-e kezelve.",
- "policyName": "Adja meg a konfigurációs szabályzat nevét.",
- "policyPlatform": "Válassza ki a platformot, amelyre az alkalmazáskonfigurálási szabályzat érvényes lesz.",
- "policyProfileType": "Válassza ki eszközprofiltípusokat, amelyekre ez az alkalmazáskonfigurációs profil érvényes lesz",
- "policySMime": "Az S/MIME-alapú aláírás és titkosítás beállításainak konfigurálása az Outlookban.",
- "sMimeDeployCertsFromIntune": "Annak megadása, hogy az S/MIME-tanúsítványokat az Intune-ból kézbesíti-e a rendszer az Outlookban való használatra.\r\nAz Intune automatikusan képes telepíteni az aláírási és titkosítási tanúsítványokat a felhasználók számára a Céges portálon keresztül.",
- "sMimeEnable": "Annak megadása, hogy engedélyezve vannak-e az S/MIME-vezérlők e-mail írásakor",
- "sMimeEnableAllowChange": "Adja meg, hogy a felhasználó módosíthatja-e az S/MIME engedélyezése beállítást.",
- "sMimeEncryptAllEmails": "Annak megadása, hogy az összes e-mailt titkosítani kell-e vagy sem. \r\nA titkosítás egy rejtjelező szöveggel konvertálja az adatokat úgy, hogy azokat csak a címzett tudja elolvasni.",
- "sMimeEncryptAllEmailsAllowChange": "Adja meg, hogy a felhasználó módosíthatja-e az Összes e-mail titkosítása beállítást.",
- "sMimeEncryptionCertProfile": "Az e-mailek titkosításához használandó tanúsítványprofil megadása.",
- "sMimeSignAllEmails": "Annak megadása, hogy az összes e-mailt alá kell-e írni vagy sem.\r\nDigitális aláírás használatával ellenőrizhető az e-mail hitelessége, és biztosítható, hogy a tartalmát ne módosítsák illetéktelenül átvitel közben.",
- "sMimeSignAllEmailsAllowChange": "Adja meg, hogy a felhasználó módosíthatja-e az Összes e-mail aláírása beállítást.",
- "sMimeSigningCertProfile": "Az e-mailek aláírásához használandó tanúsítványprofil megadása.",
- "sMimeUserNotificationType": "A felhasználók arról való értesítésének módja, hogy meg kell nyitniuk a Céges portált az Outlook S/MIME-tanúsítványainak lekéréséhez."
- },
- "WindowsQualityUpdateDaysUntilForcedReboot": {
- "oneDay": "1 nap",
- "twoDays": "2 nap",
- "zeroDays": "0 nap"
- },
- "Autopilot": {
- "AssignResourceAccount": {
- "createNewCommandMenu": "Új",
- "createNewResourceAccountInfo": "\r\nÚj erőforrásfiók létrehozása a regisztráció során. Az erőforrásfiók azonnal bekerül az Erőforrásfiók táblába, de csak az eszköz regisztrálása és a Surface Hub-előfizetés ellenőrzése után lesz aktív. További információ az erőforrás-fiókokról
\r\n ",
- "createNewResourceTitle": "Új erőforrásfiók létrehozása",
- "deviceNameInvalid": "Az eszköznév formátuma érvénytelen",
- "deviceNameRequired": "Az eszköz nevét kötelező megadni",
- "editResourceAccountLabel": "Szerkesztés",
- "selectExistingCommandMenu": "Meglévő kiválasztása"
- },
- "Device": {
- "ComputerName": {
- "validFormat": "A nevek legfeljebb 15 karakterből állhatnak, és tartalmazhatnak betűket (a–z, A–Z), számokat (0–9) és kötőjelet. Nem állhatnak csak számokból, és nem tartalmazhatnak szóközt."
- },
- "Header": {
- "addressableUserName": "Felhasználóbarát név",
- "azureADDevice": "Társított Azure AD-eszköz",
- "batch": "Csoportcímke",
- "dateAssigned": "Hozzárendelés dátuma",
- "deviceDisplayName": "Eszköznév",
- "deviceName": "Eszköznév",
- "deviceUseType": "Eszközhasználat típusa",
- "enrollmentState": "Regisztráció állapota",
- "intuneDevice": "Társított Intune-eszköz",
- "lastContacted": "Utolsó kapcsolatlétesítés",
- "make": "Gyártó:",
- "model": "Modell",
- "profile": "Hozzárendelt profil",
- "profileStatus": "Profil állapota",
- "purchaseOrderId": "Megrendelőlap",
- "resourceAccount": "Erőforrásfiók",
- "serialNumber": "Sorozatszám",
- "userPrincipalName": "Felhasználó"
- }
- },
- "DeviceUseType": {
- "meetingAndPresentation": "Értekezlet és bemutató",
- "teamCollaboration": "Csoportalapú együttműködés"
- },
- "Devices": {
- "featureDescription": "A Windows AutoPilot lehetővé teszi a felhasználók kezdőélményének testreszabását.",
- "importErrorStatus": "Egyes eszközök nem lettek importálva. További információért kattintson ide.",
- "importPendingStatus": "Az importálás folyamatban van. Eltelt idő: {0} perc. A folyamat akár {1} percig is eltarthat."
- },
- "DirectoryService": {
- "activeDirectoryAD": "Hibrid Azure Active Directoryhoz csatlakozó",
- "activeDirectoryADLabel": "Hibrid Azure AD Autopilottal",
- "azureAD": "Azure AD-hez csatlakoztatott",
- "unknownType": "Ismeretlen típus"
- },
- "Filter": {
- "enrollmentState": "Állam",
- "profile": "Profil állapota"
- },
- "OOBE": {
- "AddressableUserName": {
- "validateEmpty": "A felhasználó felhasználóbarát nevét meg kell adni."
- },
- "ApplyComputerNameTemplate": {
- "infoBalloon": "Elnevezési sablon létrehozása, amellyel neveket adhat hozzá az eszközökhöz a regisztráció során.",
- "label": "Eszköznévsablon alkalmazása"
- },
- "ApplyComputerNameTemplateDisabled": {
- "label": "A hibrid Azure Active Directoryhoz csatlakozó számítógépek Autopilot üzembehelyezési profiljai esetén az eszközök elnevezése a tartományhoz való csatlakozás konfigurációjában megadott beállítások használatával történik."
- },
- "ComputerNameTemplate": {
- "emptyValue": "SajátCég – %RAND:4%",
- "label": "Név megadása",
- "noDisallowedChars": "A név csak számokból, betűkből és kötőjelekből állhat, illetve a %SERIAL% vagy a %RAND:x% makrót tartalmazhatja",
- "serialLength": "A %SERIAL% makróval nem lehet 7-nél több karaktert használni",
- "validateLessThan15Chars": "A név nem lehet hosszabb 15 karakternél",
- "validateNoSpaces": "A számítógépnevek nem tartalmazhatnak szóközt.",
- "validateNotAllNumbers": "A névnek betűt és/vagy kötőjelet is kell tartalmaznia",
- "validateNotEmpty": "A név nem lehet üres",
- "validateOnlyOneMacro": "A név csak az egyiket tartalmazhatja a %SERIAL% és a %RAND:x% makró közül"
- },
- "ConfigureComputerNameTemplate": {
- "description": "Egyedi név létrehozása az eszközök számára. A név legfeljebb 15 karakterből állhat, valamint betűt (a-z, A-Z), számot (0-9) és kötőjelet tartalmazhat. A név nem állhat csak számokból, és nem tartalmazhat szóközt. A %SERIAL% makró használatával egy hardverspecifikus sorozatszámot, a %RAND:x% makróval pedig egy véletlenszerű számokból álló sztringet adhat hozzá a névhez (az x helyére a hozzáadandó számjegyek számát kell írni)."
- },
- "EnableWhiteGlove": {
- "infoBalloon": "A kezdőélmény a Windows billentyű 5-szöri megnyomásával, a felhasználó hitelesítése nélküli futtatásának engedélyezése az eszköz regisztrálásához és a rendszerkörnyezet alkalmazásainak és beállításainak kiépítéséhez. A felhasználói környezet alkalmazásait és beállításait akkor küldi el a rendszer, amikor a felhasználó bejelentkezik.",
- "label": "Előre kiépített üzembe helyezés engedélyezése"
- },
- "HybridAzureADSkipConnectivityCheck": {
- "infoBalloon": "Az Autopilot hibrid Azure AD összekapcsolási folyamat akkor is folytatódik, ha a kezdőélmény során nem jön létre tartományvezérlői kapcsolat.",
- "label": "AD-kapcsolatok ellenőrzésének kihagyása (előzetes verzió)"
- },
- "accountType": "Felhasználói fiók típusa",
- "accountTypeInfo": "Adja meg, hogy a felhasználók rendszergazdák vagy általános jogú felhasználók legyenek-e az eszközön. Megjegyzés: ez a beállítás nincs hatással a globális és a céges rendszergazdai fiókokra. E fiókok nem lehetnek általános jogú felhasználók, mert az Azure AD összes felügyeleti funkciójához hozzáférnek.",
- "configOOBEInfo": "\r\nAz Autopilot-eszközök kezdőélményének konfigurálása\r\n
",
- "configureDevice": "Telepítési üzemmód",
- "configureDeviceHintForSurfaceHub2": "Az Autopilot csak Surface Hub 2 esetén támogatja az öntelepítési módot. Ez a mód nem társítja a felhasználót a regisztrált eszközhöz, ezért nem igényel felhasználói hitelesítő adatokat.",
- "configureDeviceHintForWindowsPC": "\r\n A felhasználói affinitás azt szabályozza, hogy az eszközök a felhasználókhoz legyenek-e rendelve, és azt adja meg, hogy meg kell-e adni a felhasználói hitelesítő adatokat az eszköz üzembe helyezéséhez.\r\n
\r\n \r\n - \r\n Regisztráció felhasználói affinitással: A rendszer az adott eszközt regisztráló felhasználóhoz rendeli hozzá az eszközöket, és felhasználói hitelesítő adatok szükségesek az eszköz üzembe helyezéséhez.\r\n
\r\n - \r\n Regisztráció felhasználói affinitás nélkül (előzetes verzió): Az eszközök nincsenek az adott eszközt regisztráló felhasználókhoz rendelve, és nem szükségesek felhasználói hitelesítő adatok az eszköz üzembe helyezéséhez\r\n
\r\n
",
- "createSurfaceHub2Info": "A Surface Hub 2 eszközök Autopilot-regisztrációs beállításainak konfigurálása. Alapértelmezés szerint az Autopilot lehetővé teszi a felhasználói hitelesítés kihagyását a kezdőélmény (OOBE) során. További információ a Surface Hub 2-höz készül Windows Autopilotról.",
- "createWindowsPCInfo": "\r\n\r\nAz AutoPilot-eszközök alábbi beállításai automatikusan engedélyezve vannak az öntelepítési módban:\r\n
\r\n\r\n - \r\n Munkahelyi vagy Otthoni használat kiválasztásának kihagyása\r\n
\r\n - \r\n OEM-regisztráció és OneDrive-konfiguráció kihagyása\r\n
\r\n - \r\n A felhasználó kezdőélményben történő hitelesítésének kihagyása\r\n
\r\n
",
- "endUserDevice": "Felhasználó által vezérelt",
- "hideEscapeLink": "Fiókváltási lehetőségek elrejtése",
- "hideEscapeLinkInfo": "A fiókváltás és a másik fiókkal való újrakezdés lehetőségei a céges bejelentkezési lapon, illetve a tartományhibalapon jelennek meg a kezdeti eszközbeállítás során. A beállítások elrejtéséhez be kell állítania a céges védjegyezést az Azure Active Directory-ban (a Windows 10 1809-es vagy újabb verziója, vagy Windows 11 szükséges).",
- "info": "Az AutoPilot-profil beállításai határozzák meg a felhasználói kezdőélményt a Windows első indításakor. ",
- "language": "Nyelv (régió)",
- "languageInfo": "Adja meg a használandó nyelvet és régiót.",
- "licenseAgreement": "Microsoft szoftverlicenc-szerződés",
- "licenseAgreementInfo": "Adja meg, hogy a végfelhasználói licencszerződés megjelenjen-e a felhasználóknak.",
- "plugAndForgetDevice": "Regisztráció felhasználói affinitás nélkül (előzetes verzió)",
- "plugAndForgetGA": "Önálló központi telepítés",
- "privacySettingWarning": "Megváltozott a diagnosztikai adatgyűjtés alapértelmezett értéke a Windows 10 1903-as és újabb, vagy Windows 11 verziókat futtató eszközökön. ",
- "privacySettings": "Adatvédelmi beállítások",
- "privacySettingsInfo": "Adja meg, hogy az adatvédelmi beállítások megjelenjenek-e a felhasználóknak.",
- "showCortanaConfigurationPage": "Cortana-konfiguráció",
- "showCortanaConfigurationPageInfo": "A megjelenítés lehetővé teszi a Cortana-konfiguráció bevezetését a beállítás során.",
- "skipEULAWarning": "Fontos információ a licencfeltételek elrejtéséről",
- "skipKeyboardSelection": "Billentyűzet automatikus konfigurálása",
- "skipKeyboardSelectionInfo": "Ha az értéke igaz, a rendszer kihagyja a billentyűzet-kiválasztási lapot, amennyiben a nyelv be van beállítva.",
- "subtitle": "AutoPilot-profilok",
- "title": "Kezdőélmény (OOBE)",
- "useOSDefaultLanguage": "Operációs rendszer alapértelmezése",
- "userSelect": "Felhasználó kiválasztása"
- },
- "Sync": {
- "lastRequestedLabel": "Legutóbbi szinkronizálási kérelem",
- "lastSuccessfulLabel": "Utolsó sikeres szinkronizálás",
- "syncInProgress": "A szinkronizálás folyamatban van. Kis idő múlva térjen vissza.",
- "syncInitiated": "Megkezdődött az AutoPilot-beállítások szinkronizálása.",
- "syncSettingsTitle": "AutoPilot-beállítások szinkronizálása"
- },
- "Title": {
- "devices": "Windows AutoPilot-eszközök"
- },
- "Tooltips": {
- "addressableUserName": "Az eszköz beállítása során megjelenített üdvözlési név.",
- "azureADDevice": "Tekintse meg a hozzárendelt eszköz adatait. Az N/A azt jelzi, hogy nincs hozzárendelt eszköz.",
- "batch": "Eszközök egy csoportjának azonosítására használható sztringattribútum. Az Intune Csoportcímke mezője az Azure AD-eszközök OrderID attribútumára van leképezve.",
- "dateAssigned": "A profil az eszközhöz való hozzárendelésének időbélyege.",
- "deviceDisplayName": "Adjon egyedi nevet az eszköznek. A rendszer figyelmen kívül hagyja ezt a nevet a hibrid Azure Active Directoryhoz csatlakozó üzemelő példányoknál. Az eszköz neve továbbra is a hibrid Azure AD-eszközök tartományhoz való csatlakoztatási profiljából származik.",
- "deviceName": "A rendszer ezt a nevet jeleníti meg, amikor valaki megpróbálja felderíteni és csatlakoztatni az eszközt.",
- "deviceUseType": " Az eszköz beállítása az Ön a választásain alapul. Később bármikor módosíthatja a beállításokat.\r\n \r\n - Értekezletek és bemutatók alkalmával a Windows Hello nincs bekapcsolva, és az adatok minden munkamenet után törlődnek.\r\n
\r\n - Csoportalapú együttműködés esetén a Windows Hello be van kapcsolva, és a profilokat menti a rendszer, hogy felgyorsítsa a bejelentkezést
\r\n
",
- "enrollmentState": "Azt adja meg, hogy az eszköz regisztrálva van-e.",
- "intuneDevice": "Tekintse meg a hozzárendelt eszköz adatait. Az N/A azt jelzi, hogy nincs hozzárendelt eszköz.",
- "lastContacted": "Az eszközzel való legutóbbi kapcsolatfelvétel időbélyege.",
- "make": "A kiválasztott eszköz gyártója.",
- "model": "A kiválasztott eszköz modellje",
- "profile": "Az eszközhöz rendelt profil neve.",
- "profileStatus": "Azt adja meg, hogy van-e hozzárendelve profil az eszközhöz.",
- "purchaseOrderId": "Beszerzési rendelés azonosítója",
- "resourceAccount": "Az eszköz identitása vagy egyszerű felhasználóneve (UPN).",
- "serialNumber": "A kiválasztott eszköz sorszáma.",
- "userPrincipalName": "Az eszköz beállítása során a hitelesítés előzetes kitöltéséhez használt felhasználó."
- },
- "allDevices": "Minden eszköz",
- "allDevicesAlreadyAssignedError": "Egy Autopilot-profil már hozzá van rendelve az összes eszközhöz.",
- "assignFailedDescription": "Nem sikerült frissíteni a(z) {0} hozzárendeléseit.",
- "assignFailedTitle": "Nem sikerült frissíteni az AutoPilot-profil hozzárendeléseit.",
- "assignSuccessDescription": "A(z) {0} hozzárendeléseinek frissítése sikerült.",
- "assignSuccessTitle": "Az AutoPilot-profil hozzárendeléseinek frissítése sikerült.",
- "assignSufaceHub2ProfileNextStep": "Az üzembe helyezés következő lépései",
- "assignSurfaceHub2ProfileToDeviceGroup": "1. Rendelje hozzá ezt a profilt legalább egy eszközcsoporthoz",
- "assignSurfaceHub2ProfileToResourceAccount": "2. Rendeljen hozzá egy erőforrásfiókot minden olyan Surface Hub-eszközhöz, amelyhez telepíti ezt a profilt",
- "assignedDevicesCount": "Hozzárendelt készülékek",
- "assignedDevicesResourceAccountDescription": "A profilnak egy eszközre való telepítéséhez hozzá kell rendelnie az eszközt egy erőforrás-fiókhoz. Jelöljön ki egyszerre egy eszközt egy meglévő erőforrásfiók hozzárendeléséhez vagy egy új létrehozásához. További információ az erőforrás-fiókokról
",
- "assignedDevicesResourceAccountStatusBarMessage": "Ez a tábla csak a profilhoz hozzárendelt Surface Hub 2 eszközöket sorolja fel.",
- "assigningDescription": "A(z) {0} hozzárendeléseinek frissítése folyamatban van.",
- "assigningTitle": "Az AutoPilot-profil hozzárendeléseinek frissítése folyamatban van.",
- "cannotDeleteMessage": "A profil csoportokhoz van hozzárendelve. Minden csoport a profilhoz való hozzárendelését meg kell szüntetni ahhoz, hogy azt törölni lehessen.",
- "cannotDeleteTitle": "Nem törölhető: {0}",
- "createdDateTime": "Létrehozva",
- "deleteMessage": "Ha törli ezt az AutoPilot-profilt, a profilhoz hozzárendelt összes eszköz „Nincs hozzárendelve” állapotú lesz.",
- "deleteMessageWithPolicySet": "A(z) {0} egy vagy több szabályzatkészletben szerepel. A(z) {0} törlése után a továbbiakban nem tudja hozzárendelni a szabályzatkészleteken keresztül.",
- "deleteTitle": "Biztosan törli ezt a profilt?",
- "description": "Leírás",
- "deviceType": "Eszköztípus",
- "deviceUse": "Eszköz használata",
- "directoryServiceHintForSurfaceHub2": " \r\n Az Autopilot csak a Surface Hub 2 eszközöknél támogatja az Azure AD-hez csatlakoztatott beállítást. Adja meg, hogyan csatlakoznak az eszközök az Active Directoryhoz (AD) a cégénél.\r\n
\r\n \r\n - \r\n Azure AD-hez csatlakozott: Csak felhőalapú, nincs helyszíni Windows Server Active Directory.\r\n
\r\n
\r\n ",
- "directoryServiceHintForWindowsPC": "\r\n \r\n Adja meg, hogyan csatlakozhatnak az eszközök az Active Directoryhoz (AD) a munkahelyen:\r\n
\r\n \r\n - \r\n Azure AD-hez csatlakoztatott: Csak felhőalapú megoldás helyszíni Windows Server Active Directory nélkül\r\n
\r\n
\r\n ",
- "getAssignedDevicesCountError": "Hiba történt a hozzárendelt eszközök számának beolvasása során.",
- "getAssignmentsError": "Hiba történt az AutoPilot-profilok hozzárendeléseinek beolvasása során.",
- "harvestDeviceId": "Minden megcélzott eszköz AutoPilot-eszközzé alakítása",
- "harvestDeviceIdDescription": "Ez a profil alapértelmezés szerint csak az AutoPilot szolgáltatásból szinkronizált AutoPilot-eszközökre alkalmazható.",
- "harvestDeviceIdInfo": "\r\n Válassza az Igen lehetőséget az összes céleszköz regisztrálásához az Autopilotban, ha még nincsenek regisztrálva. A regisztrált eszközökön a Windows kezdőélmény (OOBE) legközelebbi futtatásakor a rendszer a hozzárendelt Autopilot-forgatókönyvet fogja megvalósítani.\r\n
\r\n Vegye figyelembe, hogy egyes Autopilot-forgatókönyvekhez meghatározott minimális Windows-buildek szükségesek. Győződjön meg arról, hogy az eszköze rendelkezik a forgatókönyv megvalósításához szükséges minimális builddel.\r\n
\r\n A profil eltávolítása az érintett eszközöket nem távolítja el az Autopilotból. Ha el szeretne távolítani egy eszközt az Autopilotból, használja a Windows Autopilot-eszközök nézetet.\r\n ",
- "harvestDeviceIdWarning": "Átalakítás után az Autopilot-eszközök csak akkor állíthatók vissza, ha törli őket az Autopilot-eszközök listájából.",
- "holoLensCommandMenu": "HoloLens",
- "info": "A Windows AutoPilot-telepítési profil lehetővé teszi a kezdőélmény testreszabását az eszközökön.",
- "invalidProfileNameMessage": "A(z) {0} karakter használata nem engedélyezett",
- "joinTypeLabel": "Csatlakozás az Azure AD-hez másként",
- "lastModifiedDateTime": "Utolsó módosítás:",
- "name": "Név",
- "noAutopilotProfile": "Nincsenek AutoPilot-profilok",
- "notEnoughPermissionAssignedError": "Nem rendelkezik a megfelelő engedélyekkel a profil egy vagy több kiválasztott csoporthoz történő hozzárendeléséhez. Forduljon a rendszergazdához.",
- "profile": "profil",
- "resourceAccountStatusBarMessage": "Minden olyan Surface Hub 2 eszköz esetében, amelyen ezt a profilt telepíti, meg kell adni egy erőforrás-fiókot. További információért kattintson ide.",
- "selectServices": "Azon címtárszolgáltatások megadása, amelyekhez az eszközök csatlakozni fognak",
- "surfaceHub2CommandMenu": "Surface Hub 2",
- "surfaceHub2SCommandMenu": "Surface Hub 2S",
- "userAffinityLabel": "Telepítési üzemmód",
- "windowsPCCommandMenu": "Windows rendszerű számítógép",
- "directoryServiceLabel": "Csatlakozás az Azure AD-hez mint:"
- },
- "AppInformationTab": {
- "Error": {
- "multipleChildApps": "A macOS üzletági alkalmazás csak akkor telepíthető felügyeltként, ha a feltöltött csomag egyetlen alkalmazást tartalmaz."
- },
- "Info": {
- "AppStoreUrl": {
- "android": "Adja meg az alkalmazáshoz tartozó Google Play Áruház-termékoldalra mutató hivatkozást. Például:",
- "androidLink": "https://play.google.com/store/apps/details?id=com.microsoft.office.outlook",
- "windows": "Adja meg az alkalmazáshoz tartozó Microsoft Store-termékoldalra mutató hivatkozást. Például:",
- "windowsLink": "https://www.microsoft.com/en-us/p/microsoft-to-do-lists-tasks-reminders/9nblggh5r558"
- },
- "appPackageFile": "Egy fájl, amely az alkalmazást olyan formátumban tartalmazza, amelyet közvetlenül telepíteni lehet az eszközökre. Az érvényes csomagtípusok a következők: Android (.apk), iOS (.ipa), macOS (.intunemac), Windows (.msi, .appx, .appxbundle, .msix, és .msixbundle).",
- "applicableDeviceType": "Válassza ki, hogy milyen eszköztípusok telepíthetik az alkalmazást.",
- "category": "Az alkalmazás kategorizálásával megkönnyítheti a felhasználók számára a rendezést és a keresést a Céges portálon. Több kategóriát is kiválaszthat.",
- "categoryLink": "https://docs.microsoft.com/en-us/intune/apps/apps-add#create-and-edit-categories-for-apps",
- "description": "Segítse az eszköz felhasználóit az alkalmazás jellegének és használati lehetőségeinek megadásával. Ez a leírás a Céges portálon lesz látható.",
- "developer": "Az alkalmazást fejlesztő cég vagy személy neve. Ez az információ a felügyeleti központba bejelentkezett felhasználók számára lesz látható.",
- "displayVersion": "Az alkalmazás verziója. Ez az információ a Céges portálon lesz látható a felhasználók számára.",
- "infoUrl": "Egy olyan webhelyre vagy dokumentációra mutató hivatkozást biztosíthat a felhasználóknak, amely további információt tartalmaz az alkalmazással kapcsolatban. Az információs URL-cím a Céges portálon lesz látható a felhasználók számára.",
- "isFeatured": "A kiemelt alkalmazások feltűnő módon vannak elhelyezve a Céges portálon, hogy a felhasználók gyorsan megtalálják őket.",
- "learnMore": "További információk",
- "logo": "Töltse fel az alkalmazáshoz társított emblémát. Ez az embléma a Céges portálon mindenhol megjelenik az alkalmazás mellett.",
- "macOSDmgAppPackageFile": "Az alkalmazást olyan formátumban tartalmazó fájl, amely közvetlenül telepíthető az eszközökön. Érvényes csomagtípus: .dmg.",
- "minOperatingSystem": "Válassza ki a legkorábbi operációsrendszer-verziót, amelyre az alkalmazás telepíthető. Ha az alkalmazást egy ennél korábbi operációs rendszerrel rendelkező eszközhöz rendeli hozzá, az alkalmazás nem lesz telepítve.",
- "name": "Adja meg az alkalmazás nevét. Ez a név jelenik meg az Intune-alkalmazások listájában és a Céges portál felhasználói számára.",
- "notes": "Adjon hozzá további megjegyzéseket az alkalmazással kapcsolatban. A megjegyzések a felügyeleti központba bejelentkezett felhasználók számára lesznek láthatók.",
- "owner": "A cég azon dolgozójának neve, aki a licencelést kezeli, illetve aki az alkalmazáshoz tartozó kapcsolattartó. Ez a név a felügyeleti központba bejelentkezett felhasználók számára lesz látható.",
- "packageName": "Az alkalmazás csomagnevének megismeréséhez forduljon az eszköz gyártójához. Példa a csomagnévre: com.példa.app",
- "privacyUrl": "Hivatkozást biztosíthat azon felhasználók számára, akik szeretnének többet megtudni az alkalmazás adatvédelmi beállításairól és feltételeiről. Az adatvédelmi URL-cím a Céges portálon lesz látható a felhasználók számára.",
- "publisher": "Az alkalmazást terjesztő fejlesztő vagy cég neve. Ez az információ a Céges portálon lesz látható a felhasználók számára.",
- "selectApp": "Keressen az App Store-ban olyan iOS rendszerhez készült áruházbeli alkalmazásokat, amelyeket üzembe szeretne helyezni az Intune-nal.",
- "useManagedBrowser": "Amikor a felhasználó megnyitja a webalkalmazást, akkor az szükség esetén egy Intune által védett böngészőben, például a Microsoft Edge-ben vagy az Intune Managed Browserben nyílik meg. Ez a beállítás az iOS- és az Android-eszközökre is vonatkozik.",
- "useManagedBrowserLink": "https://docs.microsoft.com/en-us/intune/apps/app-configuration-managed-browser",
- "win32AppPackageFile": "Egy fájl, amely az alkalmazást olyan formátumban tartalmazza, amelyet közvetlenül telepíteni lehet az eszközökre. Az érvényes csomagtípus: .intunewin."
- },
- "descriptionPreview": "Előnézet",
- "descriptionRequired": "A leírást meg kell adni.",
- "editDescription": "Leírás szerkesztése",
- "name": "Alkalmazásadatok",
- "nameForOfficeSuitApp": "Alkalmazáscsomaggal kapcsolatos információk"
- },
+ "Columns": {
+ "codeType": "Kód típusa",
+ "returnCode": "Visszatérési kód"
+ },
+ "bladeTitle": "Visszatérési kódok",
+ "gridAriaLabel": "Visszatérési kódok",
+ "header": "Adja meg a visszatérési kódokat a telepítés utáni viselkedés jelzéséhez:",
+ "onAddAnnounceMessage": "Visszatérési kód – {0} hozzáadott elem, összesen: {1}",
+ "onDeleteSuccess": "A visszatérési {0} kód sikeresen törölve",
+ "returnCodeAlreadyUsedValidation": "A visszatérési kód már használatban van.",
+ "returnCodeMustBeIntegerValidation": "A visszatérési kódnak egész számnak kell lennie.",
+ "returnCodeShouldBeAtLeast": "A visszatérési kódnak legalább {0} értéknek kell lennie.",
+ "returnCodeShouldBeAtMost": "A visszatérési kódnak legfeljebb {0} értéknek kell lennie.",
+ "selectorLabel": "Visszatérési kódok"
+ },
"NotificationMessage": {
"NotificationMessageTemplatesTab": {
"arabic": "arab",
@@ -10516,84 +10079,599 @@
"localeLabel": "Területi beállítás",
"isDefaultLocale": "Alapértelmezett"
},
- "Win32Program": {
- "DeviceRestartBehaviorOptions": {
- "allow": "Az alkalmazás telepítése kényszerítheti az eszköz újraindítását",
- "basedOnReturnCode": "Viselkedés meghatározása a visszatérési kódok alapján",
- "force": "Az Intune az eszköz kötelező újraindítását kezdeményezi",
- "suppress": "Nincs megadott művelet"
- },
- "RunAsAccountOptions": {
- "system": "Rendszer",
- "user": "Felhasználó"
- },
- "bladeTitle": "Program",
- "deviceRestartBehavior": "Viselkedés az eszköz újraindításához",
- "deviceRestartBehaviorTooltip": "Válassza ki az eszköz sikeres alkalmazástelepítés utáni újraindítási viselkedését. Az eszköz a visszatérési kódok konfigurációs beállításai alapján történő újraindításához válassza a Viselkedés meghatározása a visszatérési kódok alapján lehetőséget. Válassza a Nincs megadott művelet lehetőséget az eszköz újraindításának letiltásához az MSI-alapú alkalmazások telepítése során. Válassza Az alkalmazástelepítés kényszerítheti az eszköz újraindítását lehetőséget annak engedélyezéséhez, hogy az alkalmazástelepítés az újraindítások letiltása nélkül befejeződjön. Válassza Az Intune kényszeríti az eszköz kötelező újraindítását lehetőséget ahhoz, hogy sikeres alkalmazástelepítés után mindig újrainduljon az eszköz.",
- "header": "Adja meg a parancsokat az alkalmazás telepítéséhez és leválasztásához:",
- "installCommand": "Telepítési parancs",
- "installCommandMaxLengthErrorMessage": "A telepítési parancs nem lehet hosszabb 1024 karakternél.",
- "installCommandTooltip": "Az alkalmazás telepítéséhez használt teljes telepítési parancssor.",
- "runAs32Bit": "Telepítési és leválasztási parancsok futtatása 32 bites folyamatban 64 bites ügyfeleken",
- "runAs32BitTooltip": "Válassza az Igen lehetőséget az alkalmazás 32 bites folyamatban való telepítéséhez és leválasztásához 64 bites ügyfeleken. Válassza a Nem (alapértelmezett) lehetőséget, ha az alkalmazást 64 bites folyamatban szeretné telepíteni és leválasztani 64 bites ügyfeleken. A 32 bites ügyfelek mindig 32 bites folyamatot fognak használni.",
- "runAsAccount": "Telepítési viselkedés",
- "runAsAccountTooltip": "Ha az alkalmazást az összes felhasználó számára szeretné telepíteni, és ez támogatott, válassza a Rendszer lehetőséget. Ha az alkalmazást az eszközön bejelentkezett felhasználó számára szeretné telepíteni, válassza a Felhasználó lehetőséget. A kettős célú MSI-alkalmazások esetében a módosítások mindaddig megakadályozzák a frissítések és az eltávolítások sikeres végrehajtását, amíg vissza nem állítja az eredeti telepítés időpontjában alkalmazott értéket.",
- "selectorLabel": "Program",
- "uninstallCommand": "Leválasztási parancs",
- "uninstallCommandTooltip": "Az alkalmazás eltávolításához használt teljes eltávolítási parancssor."
- },
- "OutlookAppConfigSettings": {
- "AllowUserToChangeSetting": {
- "title": "A felhasználó módosíthatja a beállításokat",
- "tooltip": "Adja meg, hogy a felhasználó módosíthassa-e a beállítást."
- },
- "AllowWorkAccounts": {
- "title": "Csak munkahelyi vagy iskolai fiókok engedélyezése",
- "tooltip": " Ha engedélyezi ezt a beállítást, a felhasználók nem fognak tudni személyes e-mail- és tárfiókokat felvenni az Outlookban. Ha a felhasználó rendelkezik az Outlookban felvett személyes fiókkal, az alkalmazás a felhasználótól a személyes fiók eltávolítását fogja kérni. Ha a felhasználó nem távolítja el a személyes fiókot, akkor a munkahelyi vagy iskolai fiókot nem lehet hozzáadni."
- },
- "BlockExternalImages": {
- "title": "Külső képek blokkolása",
- "tooltip": "Ha engedélyezve van a külső lemezképek letiltása, az alkalmazás megakadályozza azoknak az interneten tárolt képeknek a letöltését, amelyek az üzenettörzsbe vannak beágyazva. Ha nincs konfigurálva a beállítás, az alkalmazásbeállítás alapértelmezett értéke a Kikapcsolva."
- },
- "ConfigureEmail": {
- "title": "E-mail-fiók beállításainak konfigurálása"
- },
- "DefaultAppSignatureSetting": {
- "Tooltip": {
- "android": "Az alapértelmezett alkalmazás-aláírás azt jelzi hogy az alkalmazás „Az Android Outlook letöltése” aláírást alapértelmezett aláírásként fogja-e használni üzenetek írásakor. Ha le van tiltva a beállítás, az alkalmazás nem fogja használni az alapértelmezett aláírást, a felhasználók azonban hozzáadhatják saját aláírásukat.\r\n\r\nHa nincs konfigurálva a beállítás, az alapértelmezett alkalmazásbeállítás engedélyezve lesz.",
- "iOS": "Az alapértelmezett alkalmazás-aláírás azt jelzi hogy az alkalmazás „Az iOS Outlook letöltése” aláírást alapértelmezett aláírásként fogja-e használni üzenetek írásakor. Ha le van tiltva a beállítás, az alkalmazás nem fogja használni az alapértelmezett aláírást, a felhasználók azonban hozzáadhatják saját aláírásukat.\r\n\r\nHa nincs konfigurálva a beállítás, az alapértelmezett alkalmazásbeállítás engedélyezve lesz."
- },
- "title": "Alapértelmezett alkalmazás-aláírás"
- },
- "OfficeFeedReplies": {
- "title": "Felfedezési hírcsatorna",
- "tooltip": "A felfedezési hírcsatorna elérhetővé teszi a leggyakrabban használt Office-fájlokat. Alapértelmezés szerint ez a hírcsatorna engedélyezve van, ha a Delve használata engedélyezve van a felhasználó számára. Ha a beállítás nincs konfigurálva, az alkalmazásbeállítás alapértelmezés szerint be van kapcsolva."
- },
- "OrganizeMailByThread": {
- "title": "Levelezés rendezése szálak szerint",
- "tooltip": "Az Outlook alapértelmezett viselkedése, hogy a levelezés beszélgetéseit szálak szerint csoportosított beszélgetési nézetbe rendezi. Ha ez a beállítás le van tiltva, az Outlook minden üzenetet külön jelenít meg, és nem csoportosítja őket szálak szerint."
- },
- "PlayMyEmails": {
- "title": "Saját e-mailek lejátszása",
- "tooltip": "A saját e-mailek lejátszása funkció alapértelmezés szerint nincs engedélyezve az alkalmazásban, de a Beérkezett üzenetek mappában egy transzparensen felajánlható a jogosult felhasználóknak. Ha ez a beállítás ki van kapcsolva, a funkció nem lesz felajánlva a jogosult felhasználóknak az alkalmazásban. A felhasználók dönthetnek úgy, hogy manuálisan engedélyezik a saját e-mailek lejátszását az alkalmazásból, még akkor is, ha ez a funkció ki van kapcsolva. Ha a beállítás nincs konfigurálva, az alkalmazásbeállítás alapértelmezés szerint be van kapcsolva, és a funkció fel lesz ajánlva a jogosult felhasználóknak."
- },
- "SuggestedReplies": {
- "title": "Javasolt válaszok",
- "tooltip": "Ha megnyit egy üzenetet, az Outlook válaszokat javasolhat az üzenet alatt. Ha kiválaszt egy javasolt választ, azt a küldés előtt módosíthatja."
- },
- "SyncCalendars": {
- "title": "Naptárak szinkronizálása",
- "tooltip": "Annak konfigurálása, hogy a felhasználók szinkronizálhatják-e az Outlook-naptárt a natív naptáralkalmazással és -adatbázissal."
- },
- "TextPredictions": {
- "title": "Prediktív szövegbevitel",
- "tooltip": "Az Outlook az üzenetek írása közben javasolhat szavakat és kifejezéseket. Ha az Outlook javasol valamit, pöccintéssel elfogadhatja. Ha a beállítás nincs konfigurálva, alapértelmezett esetben be van kapcsolva az alkalmazásban."
+ "WindowsQualityUpdateProfile": {
+ "Details": {
+ "DaysUntilForcedReboot": {
+ "label": "A kényszerített újraindításig hátralévő napok száma"
+ },
+ "Description": {
+ "label": "Leírás"
+ },
+ "Name": {
+ "label": "Név"
+ },
+ "QualityUpdateRelease": {
+ "label": "Minőségi frissítések gyorsított telepítése, ha az eszköz operációsrendszer-verziója a következőnél régebbi:"
+ },
+ "bladeTitle": "Minőségi frissítések Windows 10-es és újabb verziókhoz (előzetes verzió)",
+ "loadError": "A betöltés sikertelen!"
+ },
+ "TabName": {
+ "qualityUpdateSettings": "Beállítások"
+ },
+ "infoBoxText": "A jelenleg elérhető egyetlen dedikált minőségifrissítés-szabályozási lehetőség a Windows 10-es vagy újabb frissítési körök szabályzatán kívül a minőségi frissítések felgyorsítása azon eszközökön, amelyek esetében a javítási szint a megadott értéket nem érti el. A jövőben további szabályozási lehetőségek is elérhetők lesznek.",
+ "warningBoxText": "A szoftverfrissítések felgyorsításával csökkenthető a megfelelőség eléréséhez szükséges idő, azonban nagyobb hatással van a végfelhasználói termelékenységre. Jelentősen nagyobb eséllyel fordulhat elő újraindítás munkaidőben."
+ },
+ "TermsOfUse": {
+ "Languages": {
+ "addLanguage": "Add language",
+ "af": "Afrikaans",
+ "am": "Amharic",
+ "arSA": "Arabic (Saudi Arabia)",
+ "as": "Assamese",
+ "az": "Azerbaijani",
+ "be": "Belarusian",
+ "bg": "Bulgarian",
+ "bn": "Bangla",
+ "bnIN": "Bangla (India)",
+ "bs": "Bosnian",
+ "ca": "Catalan",
+ "caESvalencia": "Valencian (Spain)",
+ "cs": "Czech",
+ "cy": "Welsh",
+ "da": "Danish",
+ "de": "German",
+ "default": "Default",
+ "defaultDetailsTag": "{0} (Default)",
+ "el": "Greek",
+ "en": "English",
+ "enGB": "English (United Kingdom)",
+ "es": "Spanish",
+ "esMX": "Spanish (Mexico)",
+ "et": "Estonian",
+ "eu": "Basque",
+ "fa": "Persian",
+ "fi": "Finnish",
+ "fil": "Filipino",
+ "fr": "French",
+ "frCA": "French (Canada)",
+ "ga": "Irish",
+ "gd": "Scottish Gaelic",
+ "gl": "Galician",
+ "gu": "Gujarati",
+ "ha": "Hausa",
+ "he": "Hebrew",
+ "hi": "Hindi",
+ "hr": "Croatian",
+ "hu": "Hungarian",
+ "hy": "Armenian",
+ "id": "Indonesian",
+ "ig": "Igbo",
+ "is": "Icelandic",
+ "it": "Italian",
+ "ja": "Japanese",
+ "ka": "Georgian",
+ "kk": "Kazakh",
+ "km": "Khmer",
+ "kn": "Kannada",
+ "ko": "Korean",
+ "kok": "Konkani",
+ "kuArab": "Central Kurdish (Arabic)",
+ "ky": "Kyrgyz",
+ "languageOptions": "Language Options",
+ "lb": "Luxembourgish",
+ "lo": "Lao",
+ "lt": "Lithuanian",
+ "lv": "Latvian",
+ "mi": "Maori",
+ "mk": "Macedonian",
+ "ml": "Malayalam",
+ "mn": "Mongolian",
+ "mr": "Marathi",
+ "ms": "Malay",
+ "mt": "Maltese",
+ "ne": "Nepali",
+ "nl": "Dutch",
+ "nnNO": "Norwegian, Nynorsk (Norway)",
+ "no": "Norwegian",
+ "notSpecified": "Language not specified",
+ "nso": "Sesotho sa Leboa",
+ "or": "Odia",
+ "paArabPK": "Punjabi (Islamic Republic of Pakistan)",
+ "paIN": "Punjabi (India)",
+ "pl": "Polish",
+ "prs": "Dari",
+ "ptBR": "Portuguese (Brazil)",
+ "ptPT": "Portuguese (Portugal)",
+ "quz": "Quechua",
+ "ro": "Romanian",
+ "ru": "Russian",
+ "rw": "Kinyarwanda",
+ "sd": "Sindhi",
+ "si": "Sinhala",
+ "sk": "Slovak",
+ "sl": "Slovenian",
+ "sq": "Albanian",
+ "srCyrlBA": "Serbian (Cyrillic, Bosnia and Herzegovina)",
+ "srCyrlRS": "Serbian (Cyrillic, Serbia)",
+ "srLatnRS": "Serbian (Latin, Serbia)",
+ "sv": "Swedish",
+ "sw": "Kiswahili",
+ "ta": "Tamil",
+ "te": "Telugu",
+ "tg": "Tajik",
+ "th": "Thai",
+ "ti": "Tigrinya",
+ "tk": "Turkmen",
+ "tn": "Setswana",
+ "tr": "Turkish",
+ "tt": "Tatar",
+ "ug": "Uyghur",
+ "uk": "Ukrainian",
+ "ur": "Urdu",
+ "uz": "Uzbek",
+ "vi": "Vietnamese",
+ "wo": "Wolof",
+ "xh": "isiXhosa",
+ "yo": "Yoruba",
+ "zhHans": "Chinese (Simplified)",
+ "zhHant": "Chinese (Traditional)",
+ "zu": "isiZulu"
+ },
+ "AcceptanceExpirationFrequency": {
+ "annually": "Annually",
+ "biannually": "Bi-annually",
+ "monthly": "Monthly",
+ "quarterly": "Quarterly"
},
- "ThemesEnabled": {
- "title": "Témák engedélyezve",
- "tooltip": "Adja meg, hogy a felhasználó használhat-e egyéni vizuális témát."
- }
- },
+ "Wizard": {
+ "AgreementTargetEntityScope": {
+ "NotSelected": {
+ "label": "None selected"
+ },
+ "selectEntityTitle": "Select group",
+ "title": "Select group"
+ },
+ "PolicyFile": {
+ "Languages": {
+ "Empty": {
+ "default": "Select default language",
+ "nonDefault": "Select a language"
+ }
+ },
+ "Validations": {
+ "duplicateLanguage": "Oops, {0} appears to be selected multiple times. Language selection must be unique."
+ }
+ },
+ "PolicyTemplate": {
+ "InfoBox": {
+ "allGuestsAllApps": "A conditional access policy will be created for all guests and all cloud apps. This policy impacts the Azure portal. Once this is created you might be required to sign-out and sign-in.",
+ "allUsersAllApps": "A conditional access policy will be created for all users and all cloud apps. This policy impacts the Azure portal. Once this is created you will be required to sign-out and sign-in.",
+ "custom": "Select the users, groups, and apps that this Terms of Use will be applied to.",
+ "noPolicy": "This terms of use will appear in the grant control list when creating a conditional access policy."
+ }
+ },
+ "Section": {
+ "conditionalAccessSubtitle": "Enforce with conditional access policy templates",
+ "conditionalAccessTitle": "Conditional access",
+ "termsOfUseSubtitle": "Create and upload documents",
+ "termsOfUseTitle": "Terms of use"
+ },
+ "acceptanceDurationInfo": "The terms of use will be enforced immediately and each user will have to re-consent every specified number of days.",
+ "acceptanceDurationLabel": "Duration before re-acceptance required (days)",
+ "acceptanceDurationPlaceholder": "Example: '90'",
+ "acceptanceExpirationFrequencyInfo": "Require users to consent on a recurring basis.",
+ "acceptanceExpirationFrequencyLabel": "Frequency",
+ "acceptanceExpirationStartDateTimeInfo": "The terms of use will be enforced immediately and users will be required to re-consent on this date.",
+ "acceptanceExpirationStartDateTimeLabel": "Expire starting on",
+ "agreementIsPerDeviceAcceptanceRequiredInfo": "The end users will be required to consent to the terms of use on every device.",
+ "agreementIsPerDeviceAcceptanceRequiredLabel": "Require users to consent on every device",
+ "agreementIsViewingBeforeAcceptanceRequiredInfo": "The end users will be required to view the terms of use prior to accepting.",
+ "agreementIsViewingBeforeAcceptanceRequiredLabel": "Require users to expand the terms of use",
+ "agreementNameInfo": "Name will be used to manage the terms of use within the Azure portal.",
+ "agreementNameLabel": "Name",
+ "agreementNamePlaceholderText": "Example: 'All users terms of use'",
+ "agreementRequirmentLabel": "Required Upon",
+ "agreementTargetEntityLabel": "Users targeted",
+ "agreementUploadPolicyLabel": "Terms of use",
+ "agreementUploadPolicyPlaceholderText": "Upload required PDF",
+ "createButtonLabel": "Create",
+ "createPolicyInfo": "In order to enforce the terms of use, a conditional access policy is required. You can create a conditional access policy targeted to specific users and applications later or use one of the predefined templates.",
+ "createPolicyLabel": "Create a policy",
+ "isAcceptanceExpirationEnabledInfo": "The terms of use will be enforced immediately and all users will be forced to re-consent on a schedule.",
+ "isAcceptanceExpirationEnabledLabel": "Expire consents",
+ "pdfValidationInvalidFileFormat": "The file must be in the .pdf format.",
+ "policyFilesInfo": "Upload a PDF file containing the terms of use that your end users must accept. Based on end user preferences they will be shown the appropriate language or if not match the default language will be shown.
For end users agreeing on mobile devices, we recommend the PDF font size to be at least 24 pt.
Display name will be the title of the terms of use that is presented to the end user.",
+ "policyFilesLabel": "Terms of use document",
+ "policyTemplateInfo": "These templates are pre configured conditional access policies that are targeted to specific users and applications.",
+ "policyTemplateLabel": "Policy templates",
+ "title": "New terms of use"
+ }
+ },
+ "TACSettings": {
+ "edgeSettings": "Edge-konfigurációs beállítások",
+ "edgeWindowsDataProtectionSettings": "Edge (Windows) adatvédelmi beállításai – előzetes verzió",
+ "edgeWindowsSettings": "Edge (Windows) konfigurációs beállításai – előzetes verzió",
+ "generalAppConfig": "Általános alkalmazáskonfiguráció",
+ "generalSettings": "Általános konfigurációs beállítások",
+ "outlookSMIMEConfig": "Az Outlook S/MIME-beállításai",
+ "outlookSettings": "Outlook-konfigurációs beállítások",
+ "sMIME": "S/MIME"
+ },
+ "MicrosoftEdgeChannel": {
+ "beta": "Beta",
+ "dev": "Dev",
+ "stable": "Stable"
+ },
+ "WipPolicySettings": {
+ "addNetworkBoundary": "Hálózati határ hozzáadása",
+ "addNetworkBoundaryButton": "Hálózati határ hozzáadása...",
+ "allowWindowsSearch": "A titkosított céges adatok és az áruházbeli alkalmazások keresésének engedélyezése a Windows Search szolgáltatás számára",
+ "authoritativeIpRanges": "A vállalati IP-címtartományok listája mérvadó (nincs automatikus észlelés)",
+ "authoritativeProxyServers": "A vállalati proxykiszolgálók listája mérvadó (nincs automatikus észlelés)",
+ "boundaryType": "Határ típusa",
+ "cloudResources": "Felhőerőforrások",
+ "corporateIdentity": "Céges identitás",
+ "dataRecoveryCert": "A titkosított adatok helyreállításának engedélyezéséhez töltsön fel egy adat-helyreállítási megbízotti (DRA-) tanúsítványt",
+ "editNetworkBoundary": "Hálózati határ szerkesztése",
+ "enrollmentState": "Regisztráció állapota",
+ "iPv4Ranges": "IPv4-tartományok",
+ "iPv6Ranges": "IPv6-tartományok",
+ "internalProxyServers": "Belső proxykiszolgálók",
+ "maxInactivityTime": "Az eszköz által inaktív állapotban eltöltött idő (percben), amelynek elteltével a PIN-kóddal vagy jelszóval feloldható zárolás bekapcsol",
+ "maxPasswordAttempts": "Ennyi sikertelen hitelesítési kísérlet után lesz törölve az eszköz tartalma",
+ "mdmDiscoveryUrl": "MDM-felderítési URL-cím",
+ "mdmRequiredSettingsInfo": "Ez a szabályzat csak a Windows 10 évfordulós kiadására vagy újabb kiadásaira érvényes. A szabályzat a Windows Information Protection (WIP) segítségével biztosítja a védelmi funkciókat.",
+ "minimumPinLength": "Adja meg a PIN kód minimális hosszát karakterben",
+ "name": "Név",
+ "networkBoundariesGridEmptyText": "Itt fog megjelenni minden hozzáadott hálózati határ",
+ "networkBoundary": "Hálózathatár",
+ "networkDomainNames": "Hálózati tartományok",
+ "neutralResources": "Semleges erőforrások",
+ "passportForWork": "A Vállalati Windows Hello használata a Windowsba való bejelentkezéshez",
+ "pinExpiration": "Adja meg, hogy hány nap elteltével kérje a rendszer a PIN-kód megváltoztatását",
+ "pinHistory": "Adja meg, hogy az adott felhasználói fiók korábbi PIN-kódjai hány kódig visszamenőleg ne legyenek újból felhasználhatók",
+ "pinLowercaseLetters": "A Vállalati Windows Hello PIN-kódjában használandó kisbetűk konfigurálása",
+ "pinSpecialCharacters": "A Vállalati Windows Hello PIN-kódjában használandó speciális karakterek konfigurálása",
+ "pinUppercaseLetters": "A Vállalati Windows Hello PIN-kódjában használandó nagybetűk konfigurálása",
+ "protectUnderLock": "Az alkalmazások céges adatokhoz való hozzáférésének megakadályozása, ha az eszköz zárolt állapotban van. Csak a Windows 10 Mobile rendszerre vonatkozik",
+ "protectedDomainNames": "Védett tartományok",
+ "proxyServers": "Proxykiszolgálók",
+ "requireAppPin": "Az alkalmazás PIN-kódjának letiltása az eszköz PIN-kódjának kezelése esetén",
+ "requiredSettings": "Kötelező beállítások",
+ "requiredSettingsInfo": "A szabályzat eltávolítása vagy hatókörének módosítása a céges adatok titkosításának feloldásával jár.",
+ "revokeOnMdmHandoff": "Védett adatokhoz való hozzáférés visszavonása, ha az eszközt regisztrálják az MDM-ben",
+ "revokeOnUnenroll": "Titkosítási kulcsok visszavonása regisztráció törlésekor",
+ "rmsTemplateForEdp": "Adja meg az Azure RMS-ben használandó sablonazonosítót",
+ "showWipIcon": "Nagyvállalati adatvédelem ikonjának megjelenítése",
+ "type": "Típus",
+ "useRmsForWip": "Azure RMS használata a Windows Információvédelemhez",
+ "value": "Érték",
+ "weRequiredSettingsInfo": "Ez a szabályzat csak a Windows 10 évfordulós kiadására vagy újabb kiadásaira érvényes. A szabályzat a Windows Information Protection (WIP) és a Windows MAM segítségével biztosítja a védelmi funkciókat.",
+ "wipProtectionMode": "Windows Information Protection módja",
+ "withEnrollment": "Regisztrációval",
+ "withoutEnrollment": "Regisztráció nélkül"
+ },
+ "OfficeApplicationAdditionalType": {
+ "projectProRetail": "A Project Online asztali ügyfele",
+ "visioProRetail": "Visio Online 2. csomag"
+ },
+ "Countries": {
+ "ae": "Egyesült Arab Emírségek",
+ "ag": "Antigua és Barbuda",
+ "ai": "Anguilla",
+ "al": "Albánia",
+ "am": "Örményország",
+ "ao": "Angola",
+ "ar": "Argentína",
+ "at": "Ausztria",
+ "au": "Ausztrália",
+ "az": "Azerbajdzsán",
+ "bb": "Barbados",
+ "be": "Belgium",
+ "bf": "Burkina Faso",
+ "bg": "Bulgária",
+ "bh": "Bahrein",
+ "bj": "Benin",
+ "bm": "Bermuda",
+ "bn": "Brunei",
+ "bo": "Bolívia",
+ "br": "Brazília",
+ "bs": "Bahama-szigetek",
+ "bt": "Bhután",
+ "bw": "Botswana",
+ "by": "Belarusz",
+ "bz": "Belize",
+ "ca": "Kanada",
+ "cg": "Kongói Köztársaság",
+ "ch": "Svájc",
+ "cl": "Chile",
+ "cn": "Kína",
+ "co": "Kolumbia",
+ "cr": "Costa Rica",
+ "cv": "Cabo Verde",
+ "cy": "Ciprus",
+ "cz": "Cseh Köztársaság",
+ "de": "Németország",
+ "dk": "Dánia",
+ "dm": "Dominika",
+ "do": "Dominikai Köztársaság",
+ "dz": "Algéria",
+ "ec": "Ecuador",
+ "ee": "Észtország",
+ "eg": "Egyiptom",
+ "es": "Spanyolország",
+ "fi": "Finnország",
+ "fj": "Fidzsi-szigetek",
+ "fm": "Mikronéziai Szövetséges Államok",
+ "fr": "Franciaország",
+ "gb": "Egyesült Királyság",
+ "gd": "Grenada",
+ "gh": "Ghána",
+ "gm": "Gambia",
+ "gr": "Görögország",
+ "gt": "Guatemala",
+ "gw": "Bissau-Guinea",
+ "gy": "Guyana",
+ "hk": "Hongkong KKT",
+ "hn": "Honduras",
+ "hr": "Horvátország",
+ "hu": "Magyarország",
+ "id": "Indonézia",
+ "ie": "Írország",
+ "il": "Izrael",
+ "in": "India",
+ "is": "Izland",
+ "it": "Olaszország",
+ "jm": "Jamaica",
+ "jo": "Jordánia",
+ "jp": "Japán",
+ "ke": "Kenya",
+ "kg": "Kirgizisztán",
+ "kh": "Kambodzsa",
+ "kn": "Saint Kitts és Nevis",
+ "kr": "Koreai Köztársaság",
+ "kw": "Kuvait",
+ "ky": "Kajmán-szigetek",
+ "kz": "Kazahsztán",
+ "la": "Laoszi Népi Demokratikus köztársaság",
+ "lb": "Libanon",
+ "lc": "Saint Lucia",
+ "lk": "Srí Lanka",
+ "lr": "Libéria",
+ "lt": "Litvánia",
+ "lu": "Luxemburg",
+ "lv": "Lettország",
+ "md": "Moldovai Köztársaság",
+ "mg": "Madagaszkár",
+ "mk": "Észak-Macedónia",
+ "ml": "Mali",
+ "mn": "Mongólia",
+ "mo": "Makao",
+ "mr": "Mauritánia",
+ "ms": "Montserrat",
+ "mt": "Málta",
+ "mu": "Mauritius",
+ "mw": "Malawi",
+ "mx": "Mexikó",
+ "my": "Malajzia",
+ "mz": "Mozambik",
+ "na": "Namíbia",
+ "ne": "Niger",
+ "ng": "Nigéria",
+ "ni": "Nicaragua",
+ "nl": "Hollandia",
+ "no": "Norvégia",
+ "np": "Nepál",
+ "nz": "Új-Zéland",
+ "om": "Omán",
+ "pa": "Panama",
+ "pe": "Peru",
+ "pg": "Pápua Új-Guinea",
+ "ph": "Fülöp-szigetek",
+ "pk": "Pakisztán",
+ "pl": "Lengyelország",
+ "pt": "Portugália",
+ "pw": "Palau",
+ "py": "Paraguay",
+ "qa": "Katar",
+ "ro": "Románia",
+ "ru": "Oroszország",
+ "sa": "Szaúd-Arábia",
+ "sb": "Salamon-szigetek",
+ "sc": "Seychelle-szigetek",
+ "se": "Svédország",
+ "sg": "Szingapúr",
+ "si": "Szlovénia",
+ "sk": "Szlovákia",
+ "sl": "Sierra Leone",
+ "sn": "Szenegál",
+ "sr": "Suriname",
+ "st": "Sao Tome és Principe",
+ "sv": "Salvador",
+ "sz": "Szváziföld",
+ "tc": "Turks- és Caicos-szigetek",
+ "td": "Csád",
+ "th": "Thaiföld",
+ "tj": "Tádzsikisztán",
+ "tm": "Türkmenisztán",
+ "tn": "Tunézia",
+ "tr": "Törökország",
+ "tt": "Trinidad és Tobago",
+ "tw": "Tajvan",
+ "tz": "Tanzánia",
+ "ua": "Ukrajna",
+ "ug": "Uganda",
+ "us": "Egyesült Államok",
+ "uy": "Uruguay",
+ "uz": "Üzbegisztán",
+ "vc": "Saint Vincent és Grenadine-szigetek",
+ "ve": "Venezuela",
+ "vg": "Brit Virgin-szigetek",
+ "vn": "Vietnam",
+ "ye": "Jemen",
+ "za": "Dél-Afrika",
+ "zw": "Zimbabwe"
+ },
+ "OfficeUpdateChannel": {
+ "current": "Aktuális csatorna",
+ "deferred": "Féléves vállalati csatorna",
+ "firstReleaseCurrent": "Aktuális csatorna (előzetes verzió)",
+ "firstReleaseDeferred": "Féléves vállalati csatorna (előzetes verzió)",
+ "monthlyEnterprise": "Havi vállalati csatorna",
+ "placeHolder": "Válasszon egyet"
+ },
+ "AppProtection": {
+ "allAppTypes": "Célzás minden alkalmazástípusra",
+ "androidPlatformLabel": "Android",
+ "appsInAndroidWorkProfile": "Androidos munkahelyi profilban lévő alkalmazások",
+ "appsOnIntuneManagedDevices": "Az Intune által felügyelt eszközökön lévő alkalmazások",
+ "appsOnUnmanagedDevices": "A nem felügyelt eszközökön lévő alkalmazások",
+ "iOSPlatformLabel": "iOS/iPadOS",
+ "iosAndroidMacPlatformLabel": "iOS, Android, Mac",
+ "iosAndroidPlatformLabel": "iOS, Android",
+ "macPlatformLabel": "Mac",
+ "notAvailable": "Nem érhető el",
+ "windows10PlatformLabel": "Windows 10 és újabb rendszerek",
+ "withEnrollment": "Regisztrációval",
+ "withoutEnrollment": "Regisztráció nélkül"
+ },
+ "InstallContextType": {
+ "device": "Eszköz",
+ "deviceContext": "Eszközkörnyezet",
+ "user": "Felhasználó",
+ "userContext": "Felhasználói környezet"
+ },
+ "ProactiveRemediations": {
+ "Create": {
+ "Basics": {
+ "DescriptionMultiLineTextBox": {
+ "label": "Leírás",
+ "placeholder": "Adja meg a leírást"
+ },
+ "NameTextBox": {
+ "label": "Név",
+ "placeholder": "Név megadása"
+ },
+ "PublisherTextBox": {
+ "label": "Közzétevő",
+ "placeholder": "Közzétevő megadása"
+ },
+ "VersionTextBox": {
+ "label": "Verzió"
+ },
+ "headerDescription": "Létrehozhat egy új egyéni szkriptcsomagot a saját észlelési és javítási szkriptjeiből."
+ },
+ "ScopeTags": {
+ "headerDescription": "Jelöljön ki egy vagy több csoportot, amelyet hozzá kíván rendelni a szkriptcsomaghoz."
+ },
+ "Settings": {
+ "DetectionScriptMultiLineTextBox": {
+ "label": "Észlelési szkript",
+ "placeholder": "Bemeneti szkript szövege",
+ "requiredValidationMessage": "Adja meg az észlelési szkriptet"
+ },
+ "EnforceScriptSignatureCheckOptionPicker": {
+ "label": "Szkriptaláírás ellenőrzésének kényszerítése"
+ },
+ "LoggedOnCredentialsOptionPicker": {
+ "label": "Szkript futtatása a bejelentkezéshez használt hitelesítő adatokkal"
+ },
+ "RemediationScript": {
+ "infoBox": "Ez a szkript csak észlelési módban fog futni, mivel nem található szervizelési szkript."
+ },
+ "RemediationScriptMultiLineTextBox": {
+ "label": "Szervizelési parancsfájl",
+ "placeholder": "Bemeneti szkript szövege"
+ },
+ "RunIn64BitPSOptionPicker": {
+ "label": "Szkript futtatása a 64 bites PowerShellben"
+ },
+ "ScriptMultiLineTextBox": {
+ "base64EncodingValidationMessage": "Érvénytelen szkript. A szkript érvénytelen karaktereket tartalmaz."
+ },
+ "headerDescription": "Létrehozhat egy egyéni szkriptcsomagot a saját szkriptjeiből. A szkriptek alapértelmezés szerint naponta futnak a hozzárendelt eszközökön.",
+ "infoBox": "Ez a szkript írásvédett. Előfordulhat, hogy a szkript néhány beállítása le van tiltva."
+ },
+ "title": "Egyéni szkript létrehozása",
+ "ScriptProperties": {
+ "GridHeaders": {
+ "interval": "Intervallum",
+ "time": "Dátum és idő"
+ },
+ "Interval": {
+ "day": "Naponta ismétlődik",
+ "days": "{0} naponta ismétlődik",
+ "hour": "Óránként ismétlődik",
+ "hours": "{0} óránként ismétlődik",
+ "month": "Havonta ismétlődik",
+ "months": "{0} havonta ismétlődik",
+ "week": "Hetente ismétlődik",
+ "weeks": "{0} hetente ismétlődik"
+ },
+ "Time": {
+ "utc": "{0} (UTC)",
+ "utcWithDate": "{1}, {0} (UTC)",
+ "withDate": "{1}, {0}"
+ }
+ }
+ },
+ "Edit": {
+ "title": "Szerkesztés – {0}"
+ }
+ },
+ "EdgeAppConfig": {
+ "AllowedURLs": {
+ "title": "Engedélyezett URL-címek",
+ "tooltip": "Adja meg azokat a webhelyeket, amelyekhez a felhasználók a munkahelyi környezetből hozzáférhetnek. A felhasználók a többi webhelyet nem érhetik el. Engedélyezési és tiltólistát is megadhat, de egyszerre mindkettőt nem adhatja meg."
+ },
+ "ApplicationProxyRedirection": {
+ "header": "Alkalmazásproxy",
+ "title": "Alkalmazásproxy átirányítása",
+ "tooltip": "App Proxy-átirányítás engedélyezése, hogy a felhasználók elérhessék a vállalati hivatkozásokat és a helyszíni webalkalmazásokat."
+ },
+ "BlockedURLs": {
+ "title": "Blokkolt URL-címek",
+ "tooltip": "Adja meg azokat a webhelyeket, amelyek munkahelyi környezetből való elérését le szeretné tiltani a felhasználók számára. A felhasználók minden egyéb helyet elérhetnek. Engedélyezési és tiltólistát is megadhat, de egyszerre mindkettőt nem adhatja meg. "
+ },
+ "Bookmarks": {
+ "header": "Felügyelt könyvjelzők",
+ "tooltip": "Adja meg azon könyvjelzővel jelölt URL-címek listáját, amelyek elérhetők lesznek a felhasználók számára a Microsoft Edge munkahelyi környezetben való használatakor.",
+ "uRL": "URL-cím"
+ },
+ "HomepageURL": {
+ "header": "Felügyelt kezdőlap",
+ "title": "Kezdőlap parancsikonjának URL-címe",
+ "tooltip": "Állítson be egy kezdőlap-parancsikont, amely a keresősáv alatt az első ikonként jelenik meg, ha a felhasználók új lapot nyitnak meg a Microsoft Edge-ben."
+ },
+ "PersonalContext": {
+ "label": "Korlátozott webhelyek átirányítása a személyes környezetbe",
+ "tooltip": "Annak konfigurálása, hogy a felhasználók számára engedélyezni kell-e a személyes környezetre való váltást a korlátozott webhelyek megnyitásához."
+ }
+ },
+ "BooleanActions": {
+ "allow": "Engedélyezés",
+ "block": "Tiltás",
+ "configured": "Konfigurálva",
+ "disable": "Letiltás",
+ "dontRequire": "Nem kötelező",
+ "enable": "Engedélyezés",
+ "hide": "Elrejtés",
+ "limit": "Korlát",
+ "notConfigured": "Nincs beállítva",
+ "require": "Kötelező",
+ "show": "Megjelenítés",
+ "yes": "Igen"
+ },
+ "ArchitectureOptions": {
+ "sixtyFourBit": "64 bites",
+ "thirtyTwoBit": "32 bites"
+ },
+ "WindowsQualityUpdateDaysUntilForcedReboot": {
+ "oneDay": "1 nap",
+ "twoDays": "2 nap",
+ "zeroDays": "0 nap"
+ },
"SoftwareUpdates": {
"BladeTitles": {
"overview": "Áttekintés"
@@ -10800,66 +10878,732 @@
"notScannedYet": "Még nem történt vizsgálat",
"outOfDateIosDevices": "Elavult iOS-eszközök"
},
- "ScheduledAction": {
- "Form": {
- "editBlockActionInfo": "Egy letiltási műveletre van szükség az összes megfelelőségi szabályzat esetében.",
- "graceperiod": "Ütemezés (ennyi nappal a nem megfelelő állapot kezdete után)",
- "graceperiodInfo": "Adja meg, hogy a művelet hány nem megfelelő állapotban töltött nap után legyen elindítva a felhasználó eszközén",
- "subtitle": "Adja meg a művelet paramétereit",
- "title": "Műveleti paraméterek"
- },
- "List": {
- "gracePeriodDay": "{0} nappal a nem megfelelő állapot kezdete után",
- "gracePeriodDays": "{0} nappal a nem megfelelő állapot kezdete után",
- "gracePeriodHour": "{0} órával a nem megfelelő állapot kezdete után",
- "gracePeriodHours": "{0} órával a nem megfelelő állapot kezdete után",
- "gracePeriodMinute": "{0} perccel a nem megfelelő állapot kezdete után",
- "gracePeriodMinutes": "{0} perccel a nem megfelelő állapot kezdete után",
- "immediately": "Azonnal",
- "schedule": "Ütemezés",
- "scheduleInfoBalloon": "Nemmegfelelőség utáni napok",
- "subtitle": "Adja meg a nem megfelelő eszközökön végrehajtandó műveletsort",
- "title": "Műveletek"
- },
- "Notification": {
- "additionalEmailLabel": "Továbbiak",
- "additionalRecipients": "További címzettek (e-mailben)",
- "additionalRecipientsBladeTitle": "További címzettek kiválasztása",
- "emailAddressPrompt": "Adja meg az e-mail-címeket (vesszővel elválasztva)",
- "invalidEmail": "Érvénytelen e-mail-cím",
- "messageTemplate": "Üzenetsablon",
- "noneSelected": "Egy elem sincs kijelölve",
- "notSelected": "Nincs kijelölve",
- "numSelected": "{0} kijelölve",
- "selected": "Kijelölve"
+ "ConfigurationTypes": {
+ "Table": {
+ "androidDeviceOwnerGeneral": "Eszközkorlátozások (eszköztulajdonos)",
+ "androidForWorkGeneral": "Eszközkorlátozások (munkahelyi profil)"
+ },
+ "androidCustom": "Egyéni",
+ "androidDeviceOwnerGeneral": "Eszközkorlátozások",
+ "androidDeviceOwnerPkcs": "PKCS-tanúsítvány",
+ "androidDeviceOwnerScep": "SCEP-tanúsítvány",
+ "androidDeviceOwnerTrustedCertificate": "Megbízható tanúsítvány",
+ "androidDeviceOwnerVpn": "VPN",
+ "androidDeviceOwnerWiFi": "Wi-Fi",
+ "androidEmailProfile": "E-mail (csak Samsung KNOX)",
+ "androidForWorkCustom": "Egyéni",
+ "androidForWorkEmailProfile": "E-mail",
+ "androidForWorkGeneral": "Eszközkorlátozások",
+ "androidForWorkImportedPFX": "Importált PKCS-tanúsítvány",
+ "androidForWorkOemConfig": "OEMConfig",
+ "androidForWorkPKCS": "PKCS-tanúsítvány",
+ "androidForWorkSCEP": "SCEP-tanúsítvány",
+ "androidForWorkTrustedCertificate": "Megbízható tanúsítvány",
+ "androidForWorkVpn": "VPN",
+ "androidForWorkWiFi": "Wi-Fi",
+ "androidGeneral": "Eszközkorlátozások",
+ "androidImportedPFX": "Importált PKCS-tanúsítvány",
+ "androidPKCS": "PKCS-tanúsítvány",
+ "androidSCEP": "SCEP-tanúsítvány",
+ "androidTrustedCertificate": "Megbízható tanúsítvány",
+ "androidVPN": "VPN",
+ "androidWiFi": "Wi-Fi",
+ "androidZebraMx": "MX-profil (csak Zebra)",
+ "complianceAndroid": "Androidos megfelelőségi szabályzat",
+ "complianceAndroidDeviceOwner": "Teljes mértékben felügyelt, dedikált, vállalati tulajdonban lévő munkahelyi profil",
+ "complianceAndroidEnterprise": "Személyesen birtokolt munkahelyi profil",
+ "complianceAndroidForWork": "Android for Work-megfelelőségi szabályzat",
+ "complianceIos": "iOS-es megfelelőségi szabályzat",
+ "complianceMac": "Mac-es megfelelőségi szabályzat",
+ "complianceWindows10": "Windows 10-es és újabb megfelelőségi szabályzat",
+ "complianceWindows10Mobile": "Windows 10 Mobile-os megfelelőségi szabályzat",
+ "complianceWindows8": "Windows 8-as megfelelőségi szabályzat",
+ "complianceWindowsPhone": "Windows Phone-os megfelelőségi szabályzat",
+ "exchangeActiveSync": "Exchange Active Sync",
+ "iosCustom": "Egyéni",
+ "iosDerivedCredentialAuthenticationConfiguration": "Származtatott PIV-hitelesítőadatok",
+ "iosDeviceFeatures": "Eszközfunkciók",
+ "iosEDU": "Oktatás",
+ "iosEducation": "Oktatás",
+ "iosEmailProfile": "E-mail",
+ "iosGeneral": "Eszközkorlátozások",
+ "iosImportedPFX": "Importált PKCS-tanúsítvány",
+ "iosPKCS": "PKCS-tanúsítvány",
+ "iosPresets": "Előzetes beállítások",
+ "iosSCEP": "SCEP-tanúsítvány",
+ "iosTrustedCertificate": "Megbízható tanúsítvány",
+ "iosVPN": "VPN",
+ "iosVPNZscaler": "VPN",
+ "iosWiFi": "Wi-Fi",
+ "macCustom": "Egyéni",
+ "macDeviceFeatures": "Eszközfunkciók",
+ "macEndpointProtection": "Endpoint Protection",
+ "macExtensions": "Bővítmények",
+ "macGeneral": "Eszközkorlátozások",
+ "macImportedPFX": "Importált PKCS-tanúsítvány",
+ "macSCEP": "SCEP-tanúsítvány",
+ "macTrustedCertificate": "Megbízható tanúsítvány",
+ "macVPN": "VPN",
+ "macWiFi": "Wi-Fi",
+ "settingsCatalog": "Beállításkatalógus (előzetes verzió)",
+ "unsupported": "Nem támogatott",
+ "windows10AdministrativeTemplate": "Felügyeleti sablonok (előzetes verzió)",
+ "windows10Atp": "Végponthoz készült Microsoft Defender (Windows 10-es vagy újabb operációs rendszert futtató asztali eszközökhöz)",
+ "windows10Custom": "Egyéni",
+ "windows10DesktopSoftwareUpdate": "Szoftverfrissítések",
+ "windows10DeviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
+ "windows10EmailProfile": "E-mail",
+ "windows10EndpointProtection": "Endpoint Protection",
+ "windows10EnterpriseDataProtection": "Windows Information Protection",
+ "windows10General": "Eszközkorlátozások",
+ "windows10ImportedPFX": "Importált PKCS-tanúsítvány",
+ "windows10Kiosk": "Kioszkmód",
+ "windows10NetworkBoundary": "Hálózathatár",
+ "windows10PKCS": "PKCS-tanúsítvány",
+ "windows10PolicyOverride": "Csoportházirend felülbírálása",
+ "windows10SCEP": "SCEP-tanúsítvány",
+ "windows10SecureAssessmentProfile": "Oktatási profil",
+ "windows10SharedPC": "Megosztott többfelhasználós eszköz",
+ "windows10TeamGeneral": "Eszközkorlátozások (Windows 10 Team)",
+ "windows10TrustedCertificate": "Megbízható tanúsítvány",
+ "windows10VPN": "VPN",
+ "windows10WiFi": "Wi-Fi",
+ "windows10WiFiCustom": "Egyéni Wi-Fi",
+ "windows8General": "Eszközkorlátozások",
+ "windows8SCEP": "SCEP-tanúsítvány",
+ "windows8TrustedCertificate": "Megbízható tanúsítvány",
+ "windows8VPN": "VPN",
+ "windows8WiFi": "Wi-Fi importálás",
+ "windowsDeliveryOptimization": "Kézbesítésoptimalizálás",
+ "windowsDomainJoin": "Csatlakozás tartományhoz",
+ "windowsEditionUpgrade": "Kiadásfrissítés és módváltás",
+ "windowsIdentityProtection": "Identitásvédelem",
+ "windowsPhoneCustom": "Egyéni",
+ "windowsPhoneEmailProfile": "E-mail",
+ "windowsPhoneGeneral": "Eszközkorlátozások",
+ "windowsPhoneImportedPFX": "Importált PKCS-tanúsítvány",
+ "windowsPhoneSCEP": "SCEP-tanúsítvány",
+ "windowsPhoneTrustedCertificate": "Megbízható tanúsítvány",
+ "windowsPhoneVPN": "VPN",
+ "IosUpdate": "iOS-frissítési szabályzat"
+ },
+ "OfficeSuiteAppsTab": {
+ "acceptLicenseOnBehalfOfUsersLabel": "Fogadja el a Microsoft szoftverlicenc-szerződését a felhasználók nevében",
+ "appSuiteConfigurationLabel": "Alkalmazáscsomag konfigurálása",
+ "appSuiteInformationLabel": "Alkalmazáscsomaggal kapcsolatos információk",
+ "appsToBeInstalledLabel": "A csomag részeként telepítendő alkalmazások",
+ "architectureLabel": "Architektúra",
+ "architectureTooltip": "Megadja, hogy a Microsoft 365-alkalmazások 32 bites vagy 64 bites kiadása lesz-e telepítve az eszközökre.",
+ "configurationDesignerLabel": "Konfigurációtervező",
+ "configurationFileLabel": "Konfigurációs fájl",
+ "configurationSettingsFormatLabel": "Konfigurációs beállítások formátuma",
+ "configureAppSuiteLabel": "Alkalmazáscsomag konfigurálása",
+ "configuredLabel": "Konfigurálva",
+ "currentVersionLabel": "Jelenlegi verzió",
+ "currentVersionTooltip": "Ez az Office aktuális, a csomagban konfigurált verziója. Ez az érték egy újabb verzió konfigurálása és mentése esetén frissül.",
+ "enableMicrosoftSearchAsDefaultTooltip": "Olyan háttérbeli szolgáltatást telepít, amely segít meghatározni, hogy telepítve van-e a Google Chrome Microsoft Keresés a Bingben bővítménye az eszközön.",
+ "enterXmlDataLabel": "XML-adatok megadása",
+ "languagesLabel": "Nyelvek",
+ "languagesTooltip": "Alapértelmezés szerint az Intune az operációs rendszer alapértelmezett nyelvén telepíti az Office-t. Válassza ki a további telepíteni kívánt nyelveket.",
+ "learnMoreText": "További információk",
+ "newUpdateChannelTooltip": "Megadja, hogy az alkalmazás milyen gyakran frissül új funkciókkal.",
+ "noCurrentVersionText": "Nincs jelenlegi verzió",
+ "noLanguagesSelectedLabel": "Nincs kiválasztott nyelv",
+ "notConfiguredLabel": "Nincs beállítva",
+ "propertiesLabel": "Tulajdonságok",
+ "removeOtherVersionsLabel": "Más verziók eltávolítása",
+ "removeOtherVersionsTooltip": "Az Office (MSI) más verzióinak a felhasználói eszközökről való eltávolításához válassza az Igen lehetőséget.",
+ "selectOfficeAppsLabel": "Office-alkalmazások kiválasztása",
+ "selectOfficeAppsTooltip": "Válassza ki az Office 365-alkalmazásokat, melyeket szeretne a csomag részeként telepíteni.",
+ "selectOtherOfficeAppsLabel": "Egyéb Office-alkalmazások kiválasztása (licenc szükséges)",
+ "selectOtherOfficeAppsTooltip": "Ha licencekkel rendelkezik ezekhez a további Office-alkalmazásokhoz, azokat az Intune-nal is hozzárendelheti.",
+ "specificVersionLabel": "Adott verzió",
+ "updateChannelLabel": "Frissítési csatorna",
+ "updateChannelTooltip": "Megadja, hogy az alkalmazás milyen gyakran frissül új funkciókkal.
\r\nHavonta – Azonnal biztosíthatja az Office legújabb funkcióit a felhasználók számára, amint elérhetővé válnak.
\r\nHavi vállalati csatorna – Havonta egyszer biztosítja az Office legújabb funkcióit, a hónap második keddjén.
\r\nHavonta (célzott) – Előzetes betekintést biztosíthat a következő Havi csatornakiadásba. Ez egy támogatott frissítési csatorna, amely általában legalább egy héttel az új funkciókat tartalmazó Havi csatornakiadás előtt elérhetővé válik.
\r\nFélévente – Az Office új funkcióit csak évente néhány alkalommal biztosíthatja a felhasználók számára.
\r\nFélévente (célzott) – Lehetőséget biztosíthat a következő Féléves kiadás tesztelésére a tesztfelhasználók és az alkalmazáskompatibilitás-tesztelők számára.",
+ "useMicrosoftSearchAsDefault": "A Microsoft Search in Bing háttérszolgáltatásának telepítése",
+ "useSharedComputerActivationLabel": "Megosztott aktiválás használata",
+ "useSharedComputerActivationTooltip": "A megosztott aktiválással olyan számítógépeken helyezheti üzembe a Microsoft 365-alkalmazásokat, amelyeket több felhasználó használ. A felhasználók általában csak korlátozott számú eszközön (például 5 PC-n) telepíthetik és aktiválhatják a Microsoft 365-alkalmazásokat. A Microsoft 365-alkalmazások megosztott aktiválással való használata nem számít bele ebbe a korlátba.",
+ "versionToInstallLabel": "Telepítendő verzió",
+ "versionToInstallTooltip": "Válassza ki a telepítendő Office-verziót.",
+ "xLanguagesSelectedLabel": "{0} nyelv kiválasztva",
+ "xmlConfigurationLabel": "XML-konfiguráció"
+ },
+ "EnrollmentRestrictions": {
+ "DeletePayloadLink": {
+ "content": "A(z) {0} egy vagy több szabályzatkészletben szerepel. A(z) {0} törlése után a továbbiakban nem tudja hozzárendelni ezeken a szabályzatkészleteken keresztül. Biztosan törli?",
+ "contentWithError": "A(z) {0} egy vagy több szabályzatkészletben szerepelhet. A(z) {0} törlése után a továbbiakban nem tudja hozzárendelni ezeken a szabályzatkészleteken keresztül. Biztosan törli?",
+ "header": "Biztosan törli ezt a korlátozást?"
+ },
+ "DeviceLimit": {
+ "description": "Adja meg, hogy egy felhasználó legfeljebb hány eszközt léptethet be.",
+ "header": "Eszközszámkorlátok",
+ "info": "Megadják, hogy egy felhasználó hány eszközt léptethet be."
+ },
+ "DeviceType": {
+ "VersionValidation": {
+ "aOSP": "1.0 vagy újabb szükséges.",
+ "android": "Érvényes verziószámot adjon meg. Példák: 5.0, 5.5.1, 6.0.0.1",
+ "androidForWork": "Érvényes verziószámot adjon meg. Példák: 5.0, 5.1.1",
+ "iOS": "Érvényes verziószámot adjon meg. Példák: 9.0, 10.0, 9.0.2",
+ "mac": "Érvényes verziószámot adjon meg. Példák: 10, 10.10, 10.10.1",
+ "min": "A minimális verziószám nem lehet kisebb a következő verziószámnál: {0}",
+ "minMax": "A minimális verziószám nem lehet nagyobb a maximális verziószámnál.",
+ "windows": "10.0-s vagy újabb verziójúnak kell lennie. A 8.1-es eszközök engedélyezéséhez hagyja üresen a mezőt",
+ "windowsMobile": "10.0-s vagy újabb verziójúnak kell lennie. A 8.1-es eszközök engedélyezéséhez hagyja üresen a mezőt"
+ },
+ "allPlatformsBlocked": "Minden eszközplatform blokkolva van. A platformkonfiguráció engedélyezéséhez engedélyezze a platformregisztrációt.",
+ "blockManufacturerPlaceHolder": "Gyártó neve",
+ "blockManufacturersHeader": "Letiltott gyártók",
+ "cannotRestrict": "A korlátozás nem támogatott",
+ "configurationDescription": "Adja meg azokat a platformkonfigurációs korlátozásokat, amelyeknek meg kell felelnie egy regisztrálandó eszköznek. Az eszközök regisztrálás utáni korlátozásához használjon megfelelőségi szabályzatokat. A verziókat főverzió.alverzió.buildszám formátumban definiálja. A verziókorlátozások csak a Céges portál alkalmazással regisztrált eszközökre vonatkoznak. Az Intune alapértelmezés szerint személyes tulajdonúként sorolja be az eszközöket. Az eszközök cégesként való besorolásához további műveletekre van szükség.",
+ "configurationDescriptionLabel": "További információ a beléptetési korlátozások beállításáról",
+ "configurations": "Platformok konfigurálása",
+ "deviceManufacturer": "Eszköz gyártója",
+ "header": "Eszköztípus-korlátozások",
+ "info": "Megadják, hogy mely platformok, verziók és felügyeleti típusok regisztrálhatók.",
+ "manufacturer": "Gyártó",
+ "max": "Maximális",
+ "maxVersion": "Maximális verzió",
+ "min": "Min.",
+ "minVersion": "Legalacsonyabb verzió",
+ "newPlatforms": "Új platformokat engedélyezett. Fontolja meg a platformkonfigurációk frissítését.",
+ "personal": "Személyes tulajdonú",
+ "platform": "Platform",
+ "platformDescription": "A következő platformok regisztrálását engedélyezheti. Csak azokat a platformokat tiltsa le, amelyeket nem fog támogatni. Az engedélyezett platformokhoz további regisztrációs korlátozások konfigurálhatók.",
+ "platformSettings": "Platformbeállítások",
+ "platforms": "Platformok kiválasztása",
+ "platformsSelected": "{0} platform kijelölve",
+ "type": "Típus",
+ "versions": "verziók",
+ "versionsRange": "Tartomány minimális és maximális értéke:",
+ "windowsTooltip": "A regisztráció korlátozása a mobileszköz-kezelés segítségével. Ez a PC-s ügynök telepítését nem korlátozza. Csak a Windows 10 és Windows 11 verziók támogatottak. A Windows 8.1 engedélyezéséhez hagyja üresen a verzió mezőt."
+ },
+ "Priority": {
+ "saved": "Sikeresen mentette a szoftverkorlátozási prioritásokat."
+ },
+ "Row": {
+ "announce": "Prioritás: {0}, név: {1}, hozzárendelve: {2}"
+ },
+ "Table": {
+ "deployed": "Üzembe helyezve",
+ "name": "Név",
+ "priority": "Prioritás"
},
- "block": "Eszköz megjelölése nem megfelelőként",
- "lockDevice": "Eszköz zárolása (helyi művelet)",
- "lockDeviceWithPasscode": "Eszköz zárolása (helyi művelet)",
- "noAction": "Nincs művelet",
- "noActionRow": "Nincsenek műveletek; a Hozzáadás gombbal adhat meg műveletet",
- "pushNotification": "Leküldéses értesítés küldése a végfelhasználónak",
- "remoteLock": "Nem megfelelő eszköz távolról zárolása",
- "removeSourceAccessProfile": "Forrás hozzáférési profil eltávolítása",
- "retire": "A nem megfelelő eszköz kivonása",
- "wipe": "Adatok törlése",
- "emailNotification": "E-mail küldése a felhasználónak"
- },
- "WIPPinRequirements": {
- "WipLowercaseCharacterPinRequirements": {
- "allow": "Kisbetűk használatának engedélyezése a PIN-kódban",
- "notAllow": "Kisbetűk használatának tiltása a PIN-kódban",
- "requireAtLeastOne": "Legalább egy kisbetű használatának megkövetelése a PIN-kódban"
- },
- "WipSpecialCharacterPinRequirements": {
- "allow": "Speciális karakterek használatának engedélyezése a PIN-kódban",
- "notAllow": "Speciális karakterek használatának tiltása a PIN-kódban",
- "requireAtLeastOne": "Legalább egy speciális karakter használatának megkövetelése a PIN-kódban"
- },
- "WipUppercaseCharacterPinRequirements": {
- "allow": "Nagybetűk használatának engedélyezése a PIN-kódban",
- "notAllow": "Nagybetűk használatának tiltása a PIN-kódban",
- "requireAtLeastOne": "Legalább egy nagybetű használatának megkövetelése a PIN-kódban"
- }
- }
+ "Type": {
+ "limit": "Eszközszám-korlátozás szerkesztése",
+ "type": "Eszköztípus-korlátozás"
+ },
+ "allUsers": "Minden felhasználó",
+ "androidRestrictions": "Android-korlátozások",
+ "create": "Korlátozás létrehozása",
+ "defaultLimitDescription": "Ez a csoporttagságtól függetlenül az összes felhasználóra a legalacsonyabb prioritással alkalmazott alapértelmezett eszközszámkorlát.",
+ "defaultTypeDescription": "Ez a csoporttagságtól függetlenül az összes felhasználóra a legalacsonyabb prioritással alkalmazott alapértelmezett eszköztípuskorlát.",
+ "defaultWhfbDescription": "Ez a csoporttagságtól függetlenül az összes felhasználóra a legalacsonyabb prioritással alkalmazott alapértelmezett Vállalati Windows Hello-konfiguráció.",
+ "deleteMessage": "Az érintett felhasználók a következő legmagasabb prioritású hozzárendelt korlát, illetve ha nincs más korlát hozzárendelve, az alapértelmezett korlát szerint korlátozva lesznek.",
+ "deleteTitle": "Biztosan törli a(z) {0} korlátozást?",
+ "descriptionHint": "Egy rövid bekezdés, amely leírja a korlátozás beállításai által meghatározott üzleti felhasználást vagy korlátozási szintet.",
+ "edit": "Korlátozás szerkesztése",
+ "info": "Az eszköznek meg kell felelnie a felhasználójához hozzárendelt legmagasabb prioritású regisztrációs korlátozásoknak. A prioritást az eszközkorlátozás húzásával módosíthatja. Az alapértelmezett korlátozások, amelyek az összes felhasználó esetében a legalacsonyabb prioritású korlátozások, a felhasználó nélküli regisztrációk szabályozására szolgálnak. Az alapértelmezett korlátozások szerkeszthetők, de nem törölhetők.",
+ "iosRestrictions": "iOS-korlátozások",
+ "mDM": "MDM",
+ "macRestrictions": "MacOS-korlátozások",
+ "maxVersion": "Maximális verzió",
+ "minVersion": "Minimális verzió",
+ "nameHint": "Ez lesz a korlátozáskészlet azonosítása céljából megjelenített elsődleges attribútum.",
+ "noAssignmentsStatusBar": "Rendeljen hozzá korlátozást legalább egy csoporthoz. Kattintson a Tulajdonságok elemre.",
+ "notFound": "A korlátozás nem található. Lehet, hogy már törölték.",
+ "personallyOwned": "Személyes tulajdonú eszközök",
+ "restriction": "Korlátozás",
+ "restrictionLowerCase": "korlátozást",
+ "restrictionType": "Korlátozás típusa",
+ "selectType": "Válassza ki a korlátozás típusát",
+ "selectValidation": "Válasszon platformot",
+ "typeHint": "Az eszköztulajdonságok korlátozására válassza az eszköztípuskorlátot. Az eszközök felhasználónkénti számának korlátozására válassza az eszközszámkorlátot.",
+ "typeRequired": "A korlátozás típusának megadása kötelező.",
+ "winPhoneRestrictions": "Windows Phone-korlátozások",
+ "windowsRestrictions": "Windows-korlátozások"
+ },
+ "Titles": {
+ "ChromeOs": {
+ "devices": "Chrome OS-eszközök"
+ },
+ "ManagedDesktop": {
+ "adminContacts": "Rendszergazdai kapcsolatok",
+ "appPackaging": "Alkalmazás csomagolása",
+ "devices": "Eszközök",
+ "feedback": "Visszajelzés",
+ "gettingStarted": "Kezdeti lépések",
+ "messages": "Üzenetek",
+ "onlineResources": "Online erőforrások",
+ "serviceRequests": "Szolgáltatáskérelmek",
+ "settings": "Beállítások",
+ "tenantEnrollment": "Bérlői regisztráció"
+ },
+ "actions": "Meg nem felelés esetén végrehajtandó műveletek",
+ "advancedExchangeSettings": "Exchange Online-beállítások",
+ "advancedThreatProtection": "Microsoft Defender for Endpoint",
+ "allApps": "Minden alkalmazás",
+ "allDevices": "Minden eszköz",
+ "androidFotaDeployments": "Android FOTA üzemelő példányok",
+ "appBundles": "Alkalmazáskötegek",
+ "appCategories": "Alkalmazáskategóriák",
+ "appConfigPolicies": "Alkalmazáskonfigurációs szabályzatok",
+ "appInstallStatus": "Alkalmazás telepítésének állapota",
+ "appLicences": "Alkalmazáslicencek",
+ "appProtectionPolicies": "Alkalmazásvédelmi szabályzatok",
+ "appProtectionStatus": "Alkalmazásvédelem állapota",
+ "appSelectiveWipe": "Alkalmazás szelektív törlése",
+ "appleVppTokens": "Apple VPP-tokenek",
+ "apps": "Alkalmazások",
+ "assign": "Feladatok",
+ "assignedPermissions": "Hozzárendelt engedélyek",
+ "assignedRoles": "Hozzárendelt szerepkörök",
+ "autopilotDeploymentReport": "Autopilot-beli üzemelő példányok (előzetes verzió)",
+ "brandingAndCustomization": "Testreszabás",
+ "cartProfiles": "Kocsiprofilok",
+ "certificateConnectors": "Tanúsítvány-összekötők",
+ "chromeEnterprise": "Chrome Enterprise",
+ "compliancePolicies": "Megfelelőségi szabályzatok",
+ "complianceScriptManagement": "Szkriptek",
+ "complianceScriptManagementPreview": "Szkriptek (előzetes verzió)",
+ "complianceSettings": "Megfelelőségi szabályzat beállításai",
+ "conditionStatements": "Feltételutasítások",
+ "conditions": "Helyek",
+ "configMgr": "Microsoft Endpoint Configuration Manager",
+ "configurationProfiles": "Konfigurációs profilok",
+ "configurationProfilesPreview": "Konfigurációprofilok (előzetes verzió)",
+ "connectorsAndTokens": "Összekötők és tokenek",
+ "corporateDeviceIdentifiers": "Céges készülékazonosítók",
+ "customAttributes": "Egyéni attribútumok",
+ "customNotifications": "Egyéni értesítések",
+ "deploymentSettings": "Üzembe helyezési beállítások",
+ "derivedCredentials": "Származtatott hitelesítő adatok",
+ "deviceActions": "Eszközműveletek",
+ "deviceCategories": "Eszközkategóriák",
+ "deviceCleanUp": "Eszközök adattörlési szabályai",
+ "deviceEnrollmentManagers": "Készülékregisztráció-kezelők",
+ "deviceExecutionStatus": "Eszköz állapota",
+ "deviceLimitEnrollmentRestrictions": "Eszközszámkorlátok beléptetése",
+ "deviceTypeEnrollmentRestrictions": "Eszközplatformra vonatkozó korlátozások beléptetése",
+ "devices": "Eszközök",
+ "discoveredApps": "Detektált alkalmazások",
+ "embeddedSIM": "Mobilhálózati eSIM-profilok (Előzetes verzió)",
+ "enrollDevices": "Eszközök regisztrálása",
+ "enrollmentFailures": "Sikertelen regisztrálások",
+ "enrollmentNotifications": "Regisztrációs értesítések (Előzetes verzió)",
+ "enrollmentRestrictions": "Regisztrációs korlátozások",
+ "exchangeActiveSync": "Exchange ActiveSync",
+ "exchangeServiceConnectors": "Exchange szolgáltatás-összekötők",
+ "failuresForFeatureUpdates": "Szolgáltatás-frissítési hibák (Előzetes verzió)",
+ "failuresForQualityUpdates": "A Windows gyorsított frissítés hibái (előzetes verzió)",
+ "featureFlighting": "Funkciótesztelés",
+ "featureUpdateDeployments": "Funkciófrissítések Windows 10-es és újabb verziókhoz (előzetes verzió)",
+ "flighting": "Tesztelés",
+ "fotaUpdate": "Belső vezérlőprogram vezeték nélküli frissítése",
+ "groupPolicy": "Felügyeleti sablonok",
+ "groupPolicyAnalytics": "Csoportházirend-elemzés",
+ "helpSupport": "Súgó és támogatás",
+ "helpSupportReplacement": "Súgó és támogatás ({0})",
+ "iOSAppProvisioning": "iOS-es alkalmazáskiépítési profilok",
+ "incompleteUserEnrollments": "Hiányos felhasználóregisztrációk",
+ "intuneRemoteAssistance": "Távsegítség (előnézet)",
+ "iosUpdates": "Az iOS/iPadOS frissítési szabályzatai",
+ "legacyPcManagement": "Örökölt PC-kezelés",
+ "macOSSoftwareUpdate": "macOS-frissítési szabályzatok",
+ "macOSSoftwareUpdateAccountSummaries": "MacOS-es eszközök telepítési állapota",
+ "macOSSoftwareUpdateCategorySummaries": "Szoftverfrissítések összegzése",
+ "macOSSoftwareUpdateStateSummaries": "frissítések",
+ "managedGooglePlay": "Felügyelt Google Play",
+ "msfb": "Microsoft Store Vállalatoknak",
+ "myPermissions": "Engedélyeim",
+ "notifications": "Értesítések",
+ "officeApps": "Office-alkalmazások",
+ "officeProPlusPolicies": "Office-alkalmazásokra vonatkozó szabályzatok",
+ "onPremise": "Helyszíni",
+ "onPremisesConnector": "Exchange ActiveSync helyszíni összekötő",
+ "onPremisesDeviceAccess": "Exchange ActiveSync-eszközök",
+ "onPremisesManageAccess": "Helyszíni Exchange-hozzáférés",
+ "outOfDateIosDevices": "iOS-eszközök telepítési hibái",
+ "overview": "Áttekintés",
+ "partnerDeviceManagement": "Partnereszköz-kezelés",
+ "perUpdateRingDeploymentState": "Frissítési kör telepítési állapota szerint",
+ "permissions": "Engedélyek",
+ "platformApps": "{0} alkalmazás",
+ "platformDevices": "{0} eszköz",
+ "platformEnrollment": "{0} regisztrációja",
+ "policies": "Szabályzatok",
+ "previewMDMDevices": "Minden felügyelt eszköz (előzetes verzió)",
+ "profiles": "Profilok",
+ "properties": "Tulajdonságok",
+ "reports": "Jelentések",
+ "retireNoncompliantDevices": "Nem megfelelő eszközök kivonása",
+ "retireNoncompliantDevicesPreview": "Retire noncompliant devices (preview)",
+ "role": "Szerepkör",
+ "scriptManagement": "Parancsfájlok",
+ "securityBaselines": "Biztonsági alapkonfigurációk",
+ "serviceToServiceConnector": "Exchange Online Connector",
+ "shellScripts": "Héjszkriptek",
+ "teamViewerConnector": "TeamViewer-összekötő",
+ "telecomeExpenseManagement": "Távközlési költségek kezelése",
+ "tenantAdmin": "Bérlői adminisztrátor",
+ "tenantAdministration": "Bérlői felügyelet",
+ "termsAndConditions": "Feltételek és kikötések",
+ "titles": "Címek",
+ "troubleshootSupport": "Hibaelhárítás + ügyfélszolgálat",
+ "user": "Felhasználó",
+ "userExecutionStatus": "Felhasználó állapota",
+ "warranty": "Jótállási szállítók",
+ "wdacSupplementalPolicies": "Az S mód kiegészítő szabályzatai",
+ "windows10DriverUpdate": "Illesztőprogram-frissítések Windows 10-es és újabb verziókhoz (előzetes verzió)",
+ "windows10QualityUpdate": "Minőségi frissítések Windows 10-es és újabb verziókhoz (előzetes verzió)",
+ "windows10UpdateRings": "Frissítési körök Windows 10 és újabb verziókhoz",
+ "windows10XPolicyFailures": "Windows 10X-szabályzat hibái",
+ "windowsEnterpriseCertificate": "Windowsos vállalati tanúsítvány",
+ "windowsManagement": "PowerShell-szkriptek",
+ "windowsSideLoadingKeys": "Közvetlen telepítési kulcsok (Windows)",
+ "windowsSymantecCertificate": "Windows DigiCert-tanúsítvány",
+ "windowsThreatReport": "Veszélyforrás állapota"
+ },
+ "ScopeTypes": {
+ "allDevices": "Minden eszköz",
+ "allUsers": "Minden felhasználó",
+ "allUsersAndDevices": "Minden felhasználó és minden eszköz",
+ "selectedGroups": "Kiválasztott csoportok"
+ },
+ "OfficeApplicationType": {
+ "access": "Access",
+ "bing": "Microsoft Keresés alapértelmezettként",
+ "excel": "Excel",
+ "groove": "OneDrive (Groove)",
+ "lync": "Skype Vállalati verzió",
+ "oneDrive": "Asztali OneDrive",
+ "oneNote": "OneNote",
+ "outlook": "Outlook",
+ "powerPoint": "PowerPoint",
+ "publisher": "Publisher",
+ "teams": "Teams",
+ "word": "Word"
+ },
+ "ApplicableDeviceType": {
+ "iPad": "iPad",
+ "iPhoneAndIPod": "iPhone és iPod"
+ },
+ "Assignment": {
+ "AutoUpdateMode": {
+ "default": "Alapértelmezett",
+ "header": "Prioritás frissítése",
+ "postponed": "Elhalasztva",
+ "priority": "Magas prioritás"
+ },
+ "DeliveryOptimizationPriority": {
+ "backgroundNormal": "Háttér",
+ "displayText": "Tartalom letöltése a következőben: {0}",
+ "foreground": "Előtér",
+ "header": "Szállítás optimalizálásának prioritása"
+ },
+ "RestartGracePeriod": {
+ "allowSnooze": "Az újraindítási értesítés késleltetésének engedélyezése a felhasználó számára",
+ "countdownDialog": "Adja meg, hogy mikor jelenjen meg az újraindítási visszaszámlálás párbeszédpanelje az újraindítás előtt (perc)",
+ "durationInMinutes": "Eszköz újraindításának türelmi ideje (perc)",
+ "snoozeDurationInMinutes": "Adja meg a késleltetési időt (perc)"
+ },
+ "SoftwareInstallationTime": {
+ "TimeZone": {
+ "label": "Időzóna",
+ "local": "Eszköz időzónája",
+ "utc": "UTC"
+ },
+ "dateAndTimeLabel": "Dátum és idő",
+ "deadlineTimeColumnLabel": "Telepítési határidő",
+ "deadlineTimeDatePickerErrorMessage": "A kijelölt dátumnak az elérhetőség dátumánál későbbinek kell lennie",
+ "deadlineTimeLabel": "Alkalmazástelepítés határideje",
+ "defaultTime": "Amint lehetséges",
+ "infoText": "Az alkalmazás a telepítés után azonnal elérhető lesz, hacsak nem adja meg alább az elérhetőség időpontját. Ha ez egy szükséges alkalmazás, akkor megadhatja a telepítési határidőt.",
+ "specificTime": "Egy megadott dátum és időpont",
+ "startTimeColumnLabel": "Elérhetőség",
+ "startTimeDatePickerErrorMessage": "A kijelölt dátumnak a határidő dátumánál korábbinak kell lennie",
+ "startTimeLabel": "Alkalmazás rendelkezésre állása"
+ },
+ "restartGracePeriodHeader": "Türelmi időszak újraindítása",
+ "restartGracePeriodLabel": "Eszköz újraindításának türelmi ideje",
+ "summaryTitle": "Végfelhasználói felület"
+ },
+ "EnrollmentType": {
+ "devicesWithEnrollment": "Felügyelt eszközök",
+ "devicesWithoutEnrollment": "Felügyelt alkalmazások"
+ },
+ "PolicySet": {
+ "appManagement": "Alkalmazáskezelés",
+ "assignments": "Hozzárendelések",
+ "basics": "Alapvető beállítások",
+ "deviceEnrollment": "Eszközök beléptetése",
+ "deviceManagement": "Eszközkezelés",
+ "scopeTags": "Hatókörcímkék",
+ "appConfigurationTitle": "Alkalmazáskonfigurációs szabályzatok",
+ "appProtectionTitle": "Alkalmazásvédelmi szabályzatok",
+ "appTitle": "Alkalmazások",
+ "iOSAppProvisioningTitle": "iOS-es alkalmazáskiépítési profilok",
+ "deviceLimitRestrictionTitle": "Eszközszámkorlátok",
+ "deviceTypeRestrictionTitle": "Eszköztípus-korlátozások",
+ "enrollmentStatusSettingTitle": "Regisztráció állapotát jelző lapok",
+ "windowsAutopilotDeploymentProfileTitle": "Windows AutoPilot Deployment-profilok",
+ "deviceComplianceTitle": "Eszközmegfelelőségi szabályzatok",
+ "deviceConfigurationTitle": "Eszközkonfigurációs profilok",
+ "powershellScriptTitle": "PowerShell-szkriptek"
+ },
+ "AzureIAMCommon": {
+ "CountryNames": {
+ "countryNameNR": "Nauru",
+ "countryNameBH": "Bahrein",
+ "countryNameZA": "Dél-afrikai Köztársaság",
+ "countryNameJO": "Jordánia",
+ "countryNameSD": "Szudán",
+ "countryNameNU": "Niue",
+ "countryNameCZ": "Cseh Köztársaság",
+ "countryNameLT": "Litvánia",
+ "countryNameTK": "Tokelau",
+ "countryNameEC": "Ecuador",
+ "countryNameVU": "Vanuatu",
+ "countryNameUG": "Uganda",
+ "countryNameLI": "Liechtenstein",
+ "countryNameHK": "Hongkong KKT",
+ "countryNameGH": "Ghána",
+ "countryNameSA": "Szaúd-Arábia",
+ "countryNamePG": "Pápua Új-Guinea",
+ "countryNameBW": "Botswana",
+ "countryNameDG": "Diego Garcia",
+ "countryNameIN": "India",
+ "countryNameHN": "Honduras",
+ "countryNameRO": "Románia",
+ "countryNameKZ": "Kazahsztán",
+ "countryNameLC": "Saint Lucia",
+ "countryNameGE": "Grúzia",
+ "countryNameTT": "Trinidad és Tobago",
+ "countryNameMP": "Északi Mariana-szigetek",
+ "countryNameMV": "Maldív-szigetek",
+ "countryNameFI": "Finnország",
+ "countryNameNO": "Norvégia",
+ "countryNameEE": "Észtország",
+ "countryNameVE": "Venezuela",
+ "countryNameUZ": "Üzbegisztán",
+ "countryNameME": "Montenegró",
+ "countryNameTJ": "Tádzsikisztán",
+ "countryNameAW": "Aruba",
+ "countryNameFR": "Franciaország",
+ "countryNameOM": "Omán",
+ "countryNameAO": "Angola",
+ "countryNameIT": "Olaszország",
+ "countryNameAZ": "Azerbajdzsán",
+ "countryNameKG": "Kirgizisztán",
+ "countryNameWF": "Wallis és Futuna",
+ "countryNameTL": "Timor-Leste",
+ "countryNameFK": "Falkland-szigetek (Malvin-szigetek)",
+ "countryNameGY": "Guyana",
+ "countryNameSS": "Dél-Szudán",
+ "countryNameMM": "Mianmar",
+ "countryNameHT": "Haiti",
+ "countryNameSY": "Szíria",
+ "countryNameMD": "Moldova",
+ "countryNameVC": "Saint Vincent és Grenadine-szigetek",
+ "countryNameID": "Indonézia",
+ "countryNameRE": "Réunion",
+ "countryNameER": "Eritrea",
+ "countryNameMK": "Észak-Macedónia",
+ "countryNameTG": "Togo",
+ "countryNamePF": "Francia Polinézia",
+ "countryNameKY": "Kajmán-szigetek",
+ "countryNameIO": "Brit indiai-óceáni terület",
+ "countryNameRU": "Oroszország",
+ "countryNameMA": "Marokkó",
+ "countryNameAU": "Ausztrália",
+ "countryNameBO": "Bolívia",
+ "countryNameVA": "Szentszék (Vatikán)",
+ "countryNameVG": "Brit Virgin-szigetek",
+ "countryNameFM": "Mikronézia",
+ "countryNameAQ": "Antarktika",
+ "countryNameZM": "Zambia",
+ "countryNameBR": "Brazília",
+ "countryNameIS": "Izland",
+ "countryNamePE": "Peru",
+ "countryNameBG": "Bulgária",
+ "countryNamePR": "Puerto Rico",
+ "countryNameGI": "Gibraltár",
+ "countryNameBS": "Bahama-szigetek",
+ "countryNameJE": "Jersey",
+ "countryNameMO": "Makaó (KKT)",
+ "countryNameRW": "Ruanda",
+ "countryNameAS": "Amerikai Szamoa",
+ "countryNameBQ": "Bonaire, Sint Eustatius és Saba",
+ "countryNameMF": "Saint-Martin",
+ "countryNameTM": "Türkmenisztán",
+ "countryNameML": "Mali",
+ "countryNameTO": "Tonga",
+ "countryNameNC": "Új-Kaledónia",
+ "countryNameAC": "Ascension-sziget",
+ "countryNameBN": "Brunei",
+ "countryNameBD": "Banglades",
+ "countryNameMW": "Malawi",
+ "countryNameGM": "Gambia",
+ "countryNameGA": "Gabon",
+ "countryNameCA": "Kanada",
+ "countryNameSH": "Szent Ilona",
+ "countryNameYT": "Mayotte",
+ "countryNameMN": "Mongólia",
+ "countryNamePA": "Panama",
+ "countryNameCM": "Kamerun",
+ "countryNameNE": "Niger",
+ "countryNameCW": "Curaçao",
+ "countryNameJP": "Japán",
+ "countryNameCY": "Ciprus",
+ "countryNameCD": "Kongói Demokratikus Köztársaság",
+ "countryNameTN": "Tunézia",
+ "countryNameTR": "Törökország",
+ "countryNameWS": "Szamoa",
+ "countryNameSE": "Svédország",
+ "countryNameXK": "Koszovó",
+ "countryNameKH": "Kambodzsa",
+ "countryNamePL": "Lengyelország",
+ "countryNameDZ": "Algéria",
+ "countryNameLR": "Libéria",
+ "countryNameSO": "Szomália",
+ "countryNameDM": "Dominika",
+ "countryNameEG": "Egyiptom",
+ "countryNameGF": "Francia Guyana",
+ "countryNameNZ": "Új-Zéland",
+ "countryNamePS": "Palesztin Hatóság",
+ "countryNameIL": "Izrael",
+ "countryNameSL": "Sierra Leone",
+ "countryNameGR": "Görögország",
+ "countryNameNG": "Nigéria",
+ "countryNameMR": "Mauritánia",
+ "countryNameVI": "Amerikai Virgin-szigetek",
+ "countryNameGQ": "Egyenlítői-Guinea",
+ "countryNameMX": "Mexikó",
+ "countryNameDJ": "Dzsibuti",
+ "countryNameGN": "Guinea",
+ "countryNameCN": "Kína",
+ "countryNameMZ": "Mozambik",
+ "countryNameBV": "Bouvet-sziget",
+ "countryNameNF": "Norfolk-sziget",
+ "countryNameTZ": "Tanzánia",
+ "countryNameAI": "Anguilla",
+ "countryNameGS": "Déli-Georgia és Déli-Sandwich-szigetek",
+ "countryNameRS": "Szerbia",
+ "countryNameCC": "Cocos (Keeling)-szigetek",
+ "countryNameNA": "Namíbia",
+ "countryNameDE": "Németország",
+ "countryNameCG": "Kongói Köztársaság",
+ "countryNameKW": "Kuvait",
+ "countryNameMH": "Marshall-szigetek",
+ "countryNameVN": "Vietnam",
+ "countryNameBY": "Belarusz",
+ "countryNameMY": "Malajzia",
+ "countryNameST": "São Tomé és Príncipe",
+ "countryNameLS": "Lesotho",
+ "countryNameBI": "Burundi",
+ "countryNameTD": "Csád",
+ "countryNameCX": "Karácsony-sziget",
+ "countryNameIR": "Irán",
+ "countryNameTV": "Tuvalu",
+ "countryNameGW": "Bissau-Guinea",
+ "countryNameUA": "Ukrajna",
+ "countryNameCU": "Kuba",
+ "countryNameCO": "Kolumbia",
+ "countryNameNI": "Nicaragua",
+ "countryNameHR": "Horvátország",
+ "countryNameSC": "Seychelle-szigetek",
+ "countryNameNL": "Hollandia",
+ "countryNameUM": "Egyesült Államok lakatlan külbirtokai",
+ "countryNameIM": "Man-sziget",
+ "countryNameFJ": "Fidzsi-szigetek",
+ "countryNameSR": "Suriname",
+ "countryNameGT": "Guatemala",
+ "countryNameSM": "San Marino",
+ "countryNameLA": "Laosz",
+ "countryNameGB": "Egyesült Királyság",
+ "countryNameBB": "Barbados",
+ "countryNameSI": "Szlovénia",
+ "countryNameAM": "Örményország",
+ "countryNameAR": "Argentína",
+ "countryNamePM": "Saint-Pierre és Miquelon",
+ "countryNameTF": "Francia déli területek és a déli sarkvidék",
+ "countryNameDO": "Dominikai Köztársaság",
+ "countryNameZW": "Zimbabwe",
+ "countryNameMQ": "Martinique",
+ "countryNamePT": "Portugália",
+ "countryNameCF": "Közép-afrikai Köztársaság",
+ "countryNameBE": "Belgium",
+ "countryNameKM": "Comore-szigetek",
+ "countryNameLY": "Líbia",
+ "countryNameIE": "Írország",
+ "countryNameKP": "Észak-Korea",
+ "countryNameGG": "Guernsey",
+ "countryNameSK": "Szlovákia",
+ "countryNameTC": "Turks- és Caicos-szigetek",
+ "countryNameNP": "Nepál",
+ "countryNameBF": "Burkina Faso",
+ "countryNameYE": "Jemen",
+ "countryNameBA": "Bosznia-Hercegovina",
+ "countryNameGP": "Guadeloupe",
+ "countryNameMS": "Montserrat",
+ "countryNameCL": "Chile",
+ "countryNameIQ": "Irak",
+ "countryNameSJ": "Svalbard és Jan Mayen-sziget",
+ "countryNameAX": "Åland-szigetek",
+ "countryNameKE": "Kenya",
+ "countryNameGU": "Guam",
+ "countryNameBM": "Bermuda",
+ "countryNameFO": "Feröer-szigetek",
+ "countryNameBL": "Saint-Barthélemy",
+ "countryNameLB": "Libanon",
+ "countryNameJM": "Jamaica",
+ "countryNameAF": "Afganisztán",
+ "countryNameES": "Spanyolország",
+ "countryNameMC": "Monaco",
+ "countryNameSG": "Szingapúr",
+ "countryNameAL": "Albánia",
+ "countryNameSN": "Szenegál",
+ "countryNameSZ": "Szváziföld",
+ "countryNameBZ": "Belize",
+ "countryNameCI": "Côte d'Ivoire",
+ "countryNameTW": "Tajvan",
+ "countryNameUY": "Uruguay",
+ "countryNameCK": "Cook-szigetek",
+ "countryNameTH": "Thaiföld",
+ "countryNameHM": "Heard-sziget és McDonald-szigetek",
+ "countryNameGD": "Grenada",
+ "countryNameUS": "Egyesült Államok",
+ "countryNameAT": "Ausztria",
+ "countryNameKR": "Koreai Köztársaság",
+ "countryNamePK": "Pakisztán",
+ "countryNameDK": "Dánia",
+ "countryNameSV": "El Salvador",
+ "countryNamePW": "Palau",
+ "countryNameET": "Etiópia",
+ "countryNameMG": "Madagaszkár",
+ "countryNameCR": "Costa Rica",
+ "countryNameLU": "Luxemburg",
+ "countryNameQA": "Katar",
+ "countryNameBT": "Bhután",
+ "countryNameSB": "Salamon-szigetek",
+ "countryNameAE": "Egyesült Arab Emírségek",
+ "countryNameAD": "Andorra",
+ "countryNameCV": "Cabo Verde",
+ "countryNameAG": "Antigua és Barbuda",
+ "countryNameMU": "Mauritius",
+ "countryNameHU": "Magyarország",
+ "countryNameSX": "Sint Maarten",
+ "countryNameCH": "Svájc",
+ "countryNamePN": "Pitcairn-szigetek",
+ "countryNameGL": "Grönland",
+ "countryNamePH": "Fülöp-szigetek",
+ "countryNameMT": "Málta",
+ "countryNameKN": "Saint Kitts és Nevis",
+ "countryNameLK": "Srí Lanka",
+ "countryNameKI": "Kiribati",
+ "countryNameBJ": "Benin",
+ "countryNameLV": "Lettország",
+ "countryNamePY": "Paraguay"
+ }
+ }
}
diff --git a/Documentation/Strings-it.json b/Documentation/Strings-it.json
index 4d909a3..c505feb 100644
--- a/Documentation/Strings-it.json
+++ b/Documentation/Strings-it.json
@@ -1,1842 +1,4 @@
{
- "InstallContextType": {
- "device": "Dispositivo",
- "deviceContext": "Contesto di dispositivo",
- "user": "Utente",
- "userContext": "Contesto utente"
- },
- "WipPolicySettings": {
- "addNetworkBoundary": "Aggiungi limite di rete",
- "addNetworkBoundaryButton": "Aggiungi limite di rete...",
- "allowWindowsSearch": "Consenti a Windows Search di eseguire una ricerca nei dati aziendali crittografati e nelle app dello Store",
- "authoritativeIpRanges": "L'elenco di intervalli IP aziendali è autorevole (non rilevare automaticamente)",
- "authoritativeProxyServers": "L'elenco di server proxy aziendali è autorevole (non rilevare automaticamente)",
- "boundaryType": "Tipo di limite",
- "cloudResources": "Risorse cloud",
- "corporateIdentity": "Identità aziendale",
- "dataRecoveryCert": "Caricare un certificato dell'agente di recupero dati per consentire il recupero dei dati crittografati",
- "editNetworkBoundary": "Modifica il limite di rete",
- "enrollmentState": "Stato della registrazione",
- "iPv4Ranges": "Intervalli IPv4",
- "iPv6Ranges": "Intervalli IPv6",
- "internalProxyServers": "Server proxy interni",
- "maxInactivityTime": "Intervallo di tempo massimo (in minuti) consentito in caso di inattività del dispositivo dopo il quale il dispositivo verrà bloccato tramite PIN o password",
- "maxPasswordAttempts": "Numero di errori di autenticazione consentiti prima della cancellazione dei dati del dispositivo",
- "mdmDiscoveryUrl": "URL individuazione MDM",
- "mdmRequiredSettingsInfo": "Questo criterio è applicabile solo a Windows 10 Anniversary Edition e versioni successive. Il criterio usa Windows Information Protection (WIP) per applicare la protezione.",
- "minimumPinLength": "Imposta il numero minimo di caratteri necessari per il PIN",
- "name": "Nome",
- "networkBoundariesGridEmptyText": "Eventuali limiti di rete aggiunti verranno visualizzati qui",
- "networkBoundary": "Limite di rete",
- "networkDomainNames": "Domini di rete",
- "neutralResources": "Risorse neutre",
- "passportForWork": "Usa Windows Hello for Business come metodo per l'accesso a Windows",
- "pinExpiration": "Specificare il periodo di tempo (in giorni) durante il quale è possibile usare un PIN prima che il sistema richieda all'utente di modificarlo",
- "pinHistory": "Specificare il numero di PIN precedenti che possono essere associati a un account utente e non possono essere riutilizzati",
- "pinLowercaseLetters": "Configura l'uso di lettere minuscole nel PIN di Windows Hello for Business",
- "pinSpecialCharacters": "Configura l'uso di caratteri speciali nel PIN di Windows Hello for Business",
- "pinUppercaseLetters": "Configura l'uso di lettere maiuscole nel PIN di Windows Hello for Business",
- "protectUnderLock": "Impedisci alle app di accedere ai dati aziendali quando il dispositivo è bloccato. Si applica solo a Windows 10 Mobile",
- "protectedDomainNames": "Domini protetti",
- "proxyServers": "Server proxy",
- "requireAppPin": "Disabilita il PIN dell'app quando il PIN del dispositivo è gestito",
- "requiredSettings": "Impostazioni obbligatorie",
- "requiredSettingsInfo": "La modifica dell'ambito o la rimozione del criterio comporterà la decrittografia dei dati aziendali.",
- "revokeOnMdmHandoff": "Revoca l'accesso ai dati protetti quando il dispositivo esegue la registrazione a MDM",
- "revokeOnUnenroll": "Revoca le chiavi di crittografia all'annullamento della registrazione",
- "rmsTemplateForEdp": "Specificare l'ID del modello da usare per Azure RMS",
- "showWipIcon": "Mostra l'icona di Protezione dei dati aziendali",
- "type": "Tipo",
- "useRmsForWip": "Usa Azure RMS per WIP",
- "value": "Valore",
- "weRequiredSettingsInfo": "Questo criterio è applicabile solo a Windows 10 Creators Update e versioni successive. Il criterio usa Windows Information Protection (WIP) e Windows MAM per applicare la protezione.",
- "wipProtectionMode": "Modalità di Windows Information Protection",
- "withEnrollment": "Con registrazione",
- "withoutEnrollment": "Senza registrazione"
- },
- "EdgeAppConfig": {
- "AllowedURLs": {
- "title": "URL consentiti",
- "tooltip": "Specificare i siti a cui gli utenti sono autorizzati ad accedere entro il rispettivo contesto di lavoro. Non saranno consentiti altri siti. È possibile scegliere di configurare un elenco di siti consentiti/bloccati, ma non entrambi i tipi di siti. "
- },
- "ApplicationProxyRedirection": {
- "header": "Proxy dell'applicazione",
- "title": "Reindirizzamento del proxy applicazione",
- "tooltip": "Abilitare il reindirizzamento del proxy app per fornire agli utenti l'accesso ai collegamenti aziendali e alle app Web locali."
- },
- "BlockedURLs": {
- "title": "URL bloccati",
- "tooltip": "Specificare i siti bloccati per gli utenti entro il rispettivo contesto di lavoro. Tutti gli altri siti saranno consentiti. È possibile scegliere di configurare un elenco di siti consentiti/bloccati, ma non entrambi i tipi di siti. "
- },
- "Bookmarks": {
- "header": "Segnalibri gestiti",
- "tooltip": "Immettere un elenco di URL aggiunti ai segnalibri in modo che siano disponibili per gli utenti durante l'uso di Microsoft Edge nel rispettivo contesto di lavoro.",
- "uRL": "URL"
- },
- "HomepageURL": {
- "header": "Home page gestita",
- "title": "URL del collegamento della home page",
- "tooltip": "Configurare un collegamento della home page che verrà visualizzato agli utenti come prima icona sotto la barra di ricerca all'apertura di una nuova scheda in Microsoft Edge."
- },
- "PersonalContext": {
- "label": "Reindirizza i siti con restrizioni al contesto personale",
- "tooltip": "Specificare se gli utenti sono autorizzati a eseguire la transizione al contesto personale per aprire siti con restrizioni."
- }
- },
- "AzureIAM": {
- "AdrsUserActionSelectionWarning": {
- "conditions": "Le condizioni che richiedono la registrazione del dispositivo non sono disponibili con l’azione dell’utente \"Registra o associa i dispositivi\".",
- "message": "È possibile usare solo \"Richiedi l'Autenticazione a più fattori\" nei criteri creati per l'azione utente \"Registra o aggiungi dispositivi\".{0}"
- },
- "AuthContext": {
- "Included": {
- "none": "Non è stato selezionato alcun contesto di autenticazione, app cloud o azione",
- "plural": "{0} contesti di autenticazione inclusi",
- "singular": "1 contesto di autenticazione incluso"
- },
- "InfoBlade": {
- "createTitle": "Aggiungi il contesto di autenticazione",
- "descPlaceholder": "Aggiungere una descrizione per il contesto di autenticazione",
- "modifyTitle": "Modifica il contesto di autenticazione",
- "namePlaceholder": "Ad esempio, Percorso attendibile, Dispositivo attendibile, Autorizzazione avanzata",
- "publishDesc": "La pubblicazione nelle app renderà il contesto di autenticazione disponibile per l'uso da parte delle app. Eseguire la pubblicazione al termine della configurazione del criterio di Accesso condizionale per il tag. [Altre informazioni][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150966",
- "publishLabel": "Pubblica nelle app",
- "titleDesc": "Consente di configurare un contesto di autenticazione che verrà usato per proteggere i dati e le azioni dell'applicazione. Usare nomi e descrizioni comprensibili per gli amministratori delle applicazione. [Altre informazioni][1]\n[1]:https://go.microsoft.com/fwlink/?linkid=2150965"
- },
- "Notify": {
- "failure": "Non è stato possibile aggiornare {0}",
- "modifying": "Modifica di {0}",
- "success": "L'aggiornamento di {0} è stato completato"
- },
- "WhatIf": {
- "selected": "Contesto di autenticazione incluso"
- },
- "addNewStepUp": "Nuovo contesto di autenticazione",
- "checkBoxInfo": "Selezionare il contesto di autenticazione a cui verrà applicato il criterio",
- "configure": "Configura i contesti di autenticazione",
- "createCA": "Assegna criteri di Accesso condizionale al contesto di autenticazione",
- "dataGrid": "Elenco di contesti di autenticazione",
- "description": "Descrizione",
- "documentation": "Documentazione",
- "getStarted": "Introduzione",
- "label": "Contesto di autenticazione (anteprima)",
- "menuLabel": "Contesto di autenticazione (anteprima)",
- "name": "Nome",
- "noAuthContextSet": "Non sono disponibili contesti di autenticazione",
- "noData": "Nessun contesto di autenticazione da visualizzare",
- "selectionInfo": "Il contesto di autenticazione viene usato per proteggere i dati dell'applicazione e le azioni in app quali SharePoint e Microsoft Cloud App Security.",
- "step": "Passaggio",
- "tabDescription": "Consente di gestire il contesto di autenticazione per proteggere i dati e le azioni nelle app. [Altre informazioni][1]\n[1]:https://go.microsoft.com/fwlink/?linkid=2150965",
- "tagResources": "Contrassegna le risorse con un contesto di autenticazione"
- },
- "AuthenticationStrength": {
- "Mode": {
- "deviceBasedPush": "Microsoft Authenticator (Accesso tramite telefono)",
- "deviceBasedPushFido2X509Certificate": "Microsoft Authenticator (Accesso tramite telefono) + Fido 2 + Autenticazione basata su certificato",
- "deviceBasedPushX509CertificateSingleFactor": "Microsoft Authenticator (Accesso tramite telefono) + Fido 2 + Autenticazione basata su certificato (Fattore singolo)",
- "email": "Passcode monouso tramite posta elettronica",
- "emailOtp": "OTP tramite posta elettronica",
- "federatedMultiFactor": "Più fattori federato",
- "federatedSingleFactor": "Singolo fattore federato",
- "federatedSingleFactorFederatedMultiFactor": "Fattore singolo federato + Più fattori federato",
- "fido2": "Chiave di sicurezza FIDO 2",
- "fido2X509CertificateSingleFactor": "Chiave di sicurezza FIDO 2 + Autenticazione basata su certificato (Fattore singolo)",
- "hardwareOath": "OTP hardware",
- "hardwareOathX509CertificateSingleFactor": "Hardware OTP + Autenticazione basata su certificato (Fattore singolo)",
- "microsoftAuthenticatorPSIX509CertificateSingleFactor": "Microsoft Authenticator (Accesso tramite telefono) + Autenticazione basata su certificato (Fattore singolo)",
- "microsoftAuthenticatorPsi": "Microsoft Authenticator (Accesso tramite telefono)",
- "microsoftAuthenticatorPush": "Microsoft Authenticator (Notifica push)",
- "microsoftAuthenticatorPushX509CertificateSingleFactor": "Microsoft Authenticator (Notifica push) + Autenticazione basata su certificato (Fattore singolo)",
- "none": "Nessuno",
- "password": "Password",
- "passwordDeviceBasedPush": "Password + Microsoft Authenticator (Autenticazione tramite telefono)",
- "passwordFido2": "Password + chiave di sicurezza FIDO 2",
- "passwordHardwareOath": "Password + Hardware OTP",
- "passwordMicrosoftAuthenticatorPSI": "Password + Microsoft Authenticator (Autenticazione tramite telefono)",
- "passwordMicrosoftAuthenticatorPush": "Password + Microsoft Authenticator - (Notifica push)",
- "passwordSms": "Password e SMS",
- "passwordSoftwareOath": "Password + Software OTP",
- "passwordTemporaryAccessPassMultiUse": "Password + Passcode di accesso temporaneo (Multiuso)",
- "passwordTemporaryAccessPassOneTime": "Password + Passcode di accesso temporaneo (Una tantum)",
- "passwordVoice": "Password e voce",
- "sms": "SMS",
- "smsSignIn": "Accesso tramite SMS",
- "smsX509CertificateSingleFactor": "SMS + Autenticazione basata su certificato (Fattore singolo)",
- "softwareOath": "OTP software",
- "softwareOathX509CertificateSingleFactor": "Software OTP + Autenticazione basata su certificato (Fattore singolo)",
- "temporaryAccessPassMultiUse": "Passcode di accesso temporaneo (Multiuso)",
- "temporaryAccessPassMultiUseX509CertificateSingleFactor": "Passcode di accesso temporaneo (Multiuso) + Autenticazione basata su certificato (Fattore singolo)",
- "temporaryAccessPassOneTime": "Passcode di accesso temporaneo (Una tantum)",
- "temporaryAccessPassOneTimeX509CertificateSingleFactor": "Passcode di accesso temporaneo (Utilizzo una tantum) + Autenticazione basata su certificato (Fattore singolo)",
- "voice": "Voce",
- "voiceX509CertificateSingleFactor": "Voce + Autenticazione basata su certificato (Fattore singolo)",
- "windowsHelloForBusiness": "Windows Hello For Business",
- "x509CertificateMultiFactor": "Autenticazione basata su certificati (Più fattori)",
- "x509CertificateSingleFactor": "Autenticazione basata su certificato (Fattore singolo)"
- }
- },
- "CAS": {
- "BuiltinPolicy": {
- "Option": {
- "blockDownloads": "Blocca i download (anteprima)",
- "monitorOnly": "Solo monitoraggio (anteprima)",
- "protectDownloads": "Proteggi i download (anteprima)",
- "useCustomControls": "Usa criteri personalizzati..."
- },
- "ariaLabel": "Scegliere il tipo di controllo app per l'accesso condizionale da applicare"
- }
- },
- "ChooseApplications": {
- "Grid": {
- "appIdAria": "ID app: {0}"
- },
- "LowerGrid": {
- "ariaLabel": "Elenco di app cloud selezionate"
- },
- "UpperGrid": {
- "ariaLabel": "Elenco di app cloud corrispondenti al termine di ricerca"
- }
- },
- "ChooseLocations": {
- "Validation": {
- "failed": "Con l'opzione \"Località selezionate\" è necessario scegliere almeno una località.",
- "selector": "Scegliere almeno una località"
- }
- },
- "ClientApp": {
- "Clients": {
- "Validation": {
- "failed": "È necessario selezionare almeno uno dei client seguenti"
- }
- }
- },
- "ClientConditionsInfo": {
- "browserAndModern": "Questi criteri si applicano solo ai browser e alle app con autenticazione moderna. Per applicare i criteri a tutte le app client, abilitare la condizione app client e selezionare tutte le app client.",
- "classicExperience": "La configurazione predefinita delle app client è stata aggiornata dopo la creazione di questo criterio.",
- "legacyAuth": "Se questa opzione non è configurata, i criteri vengono applicati a tutte le app client, incluse le app di autenticazione moderne e legacy."
- },
- "CloudAppFilterBlade": {
- "AssignmentFilter": {
- "header": "Attributo",
- "placeholder": "Scegli un attributo"
- },
- "Configure": {
- "infoBalloon": "Configurare i filtri dell'app a cui si vuole applicare il criterio."
- },
- "NoPermissions": {
- "learnMoreAria": "Altre informazioni sulle autorizzazioni per gli attributi di sicurezza personalizzati.",
- "message": "Non si dispone delle autorizzazioni necessarie per usare gli attributi di sicurezza personalizzati."
- },
- "gridHeader": "Usando gli attributi di sicurezza personalizzati, è possibile usare il generatore di regole o la casella di testo della sintassi delle regole per creare o modificare le regole di filtro. Nell'anteprima sono supportati solo gli attributi di tipo String. Gli attributi di tipo Integer o Boolean non verranno visualizzati.",
- "learnMoreAria": "Altre informazioni sull'uso del generatore di regole e della casella di testo per la sintassi.",
- "noAttributes": "Non sono disponibili attributi personalizzati in base a cui filtrare. Per utilizzare questo filtro, sarà necessario configurare alcuni attributi.",
- "title": "Edit filter (Preview)"
- },
- "CloudAppsUserActions": {
- "any": "Qualsiasi app cloud o azione",
- "infoBalloon": "App cloud o azione utente da testare. Ad esempio, 'SharePoint Online'",
- "learnMore": "Controllare l'accesso in base a tutte le app cloud o azioni oppure in base ad app cloud o azioni specifiche.",
- "learnMoreB2C": "Controllare l'accesso in base a tutte le app cloud oppure in base ad app cloud specifiche.",
- "title": "Applicazioni cloud o azioni"
- },
- "CloudappsSelectionBlade": {
- "Excluded": {
- "gridAria": "Elenco di app cloud escluse"
- },
- "Filter": {
- "configured": "Configurato",
- "label": "Edit filter (Preview)",
- "with": "{0} con {1}"
- },
- "Included": {
- "gridAria": "Elenco di app cloud incluse"
- },
- "Validation": {
- "authContext": "Con l'opzione \"Contesto di autenticazione\" è necessario configurare almeno un elemento secondario.",
- "selectApps": "È necessario configurare \"{0}\"",
- "selector": "Selezionare almeno un'app.",
- "userActions": "Con l'opzione \"Azioni utente\" è necessario configurare almeno un elemento secondario."
- }
- },
- "DeviceState": {
- "LearnMore": {
- "message": "Control user access when the device the user is signing-in from is not \"Hybrid Azure AD joined\" or \"marked as compliant\".\n '{0}' has been deprecated. Use '{1}' instead."
- }
- },
- "Errors": {
- "notFound": "I criteri non sono stati trovati o sono stati eliminati.",
- "notFoundDetailed": "Il criterio \"{0}\" non esiste più. È possibile che sia stato eliminato."
- },
- "NamedLocation": {
- "Form": {
- "CountryLookup": {
- "ariaLabel": "Metodo di ricerca del paese",
- "gps": "Determinare la posizione in base alle coordinate GPS",
- "info": "Quando è configurata la condizione relativa alla posizione di un criterio di accesso condizionale, l'app Authenticator richiederà agli utenti di condividere la rispettiva posizione GPS. ",
- "ip": "Determina la posizione in base a indirizzo IP (solo IPv4)"
- },
- "Header": {
- "new": "Nuova posizione ({0})",
- "update": "Posizione di aggiornamento ({0})"
- },
- "IP": {
- "learn": "Configurare gli intervalli IPv4 e IPv6 per la località denominata.\n[Altre informazioni][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
- },
- "Include": {
- "infoBalloon": "Per paesi/aree geografiche sconosciute si intendono gli indirizzi IP non associati a un paese o un'area geografica specifica. [Altre informazioni][1]\n\nSono inclusi:\n* Indirizzi IPv6\n* Indirizzi IPv4 senza mapping diretto\n[1]: https://aka.ms/canamedlocations\n",
- "label": "Includi paesi/aree geografiche sconosciute"
- },
- "Name": {
- "empty": "Il nome non può essere vuoto",
- "placeholder": "Specificare un nome per la posizione"
- },
- "PrivateLink": {
- "learn": "Creare una nuova località denominata contenente collegamenti privati per Azure AD.\n[Altre informazioni][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
- },
- "Search": {
- "countries": "Cerca paesi",
- "names": "Cerca nomi",
- "privateLinks": "Cerca collegamenti privati"
- },
- "Trusted": {
- "label": "Contrassegna come posizione attendibile"
- },
- "enter": "Immettere un nuovo intervallo IPv4 o IPv6",
- "example": "Ad esempio: 40.77.182.32/27 o 2a01:111::/32"
- },
- "Label": {
- "addCountries": "Località dei paesi",
- "addIpRange": "Posizione degli intervalli IP",
- "addPrivateLink": "Collegamenti privati di Azure"
- },
- "Notification": {
- "Create": {
- "Failed": {
- "description": "Si è verificato un errore durante la creazione della nuova posizione ({0})",
- "title": "La creazione non è stata completata"
- },
- "InProgress": {
- "description": "Creazione della nuova posizione ({0})",
- "title": "Creazione in corso"
- },
- "Success": {
- "description": "La nuova posizione ({0}) è stata creata",
- "title": "La creazione è stata completata"
- }
- },
- "Delete": {
- "Failed": {
- "description": "Si è verificato un errore durante l'eliminazione della posizione ({0})",
- "title": "Non è stato possibile completare l'eliminazione"
- },
- "InProgress": {
- "description": "Eliminazione della posizione ({0})",
- "title": "Eliminazione in corso"
- },
- "Success": {
- "description": "La posizione ({0}) è stata eliminata",
- "title": "L'eliminazione è stata completata"
- }
- },
- "Update": {
- "Failed": {
- "description": "Si è verificato un errore durante l'aggiornamento della posizione ({0})",
- "title": "Non è stato possibile completare l'aggiornamento"
- },
- "InProgress": {
- "description": "Aggiornamento della posizione ({0})",
- "title": "È in corso l'aggiornamento"
- },
- "Success": {
- "description": "La posizione ({0}) è stata aggiornata",
- "title": "L'aggiornamento è stato completato"
- }
- }
- },
- "PrivateLinks": {
- "grid": "Elenco di collegamenti privati"
- },
- "Trusted": {
- "title": "Tipo attendibile",
- "trusted": "Attendibile"
- },
- "Type": {
- "all": "Tutti i tipi",
- "countries": "Paesi",
- "ipRanges": "Intervalli IP",
- "privateLinks": "Collegamenti privati",
- "title": "Tipo di posizione"
- },
- "iPRangeInvalidError": "Il valore deve essere un intervallo IPv4 o IPv6 valido.",
- "iPRangeLinkOrSiteLocalError": "La rete IP è stata rilevata come indirizzo locale rispetto al collegamento o indirizzo locale rispetto al sito.",
- "iPRangeOctetError": "La rete IP non deve iniziare con 0 o 255.",
- "iPRangePrefixError": "Il prefisso di rete IP deve essere compreso tra /{0} e /{1}.",
- "iPRangePrivateError": "La rete IP è stata rilevata come indirizzo privato."
- },
- "Policies": {
- "Grid": {
- "aria": "Elenco dei criteri di accesso condizionale"
- },
- "countText": "Sono stati trovati {0} su {1} criteri",
- "countTextSingular": "È stato trovato {0} criterio su 1",
- "search": "Cerca criteri"
- },
- "Policy": {
- "Condition": {
- "ServicePrincipalRisk": {
- "description": "Consente di configurare i livelli di rischio entità servizio necessari per l'applicazione dei criteri",
- "infoBalloonContent": "Consente di configurare il rischio entità servizio per applicare i criteri ai livelli di rischio selezionati",
- "title": "Rischio entità servizio"
- }
- }
- },
- "PolicyControlAuthStrength": {
- "MultiFactorAuthentication": {
- "description": "Combinazioni di metodi che soddisfano l'autenticazione avanzata, ad esempio Password e SMS",
- "displayName": "Autenticazione a più fattori (MFA)"
- },
- "Passwordless": {
- "description": "Metodi senza password che soddisfano l'autenticazione avanzata, come Microsoft Authenticator ",
- "displayName": "MFA senza password"
- },
- "PhishingResistant": {
- "description": "Metodi senza password anti-phishing-per l'autenticazione più avanzata, ad esempio chiave di sicurezza FIDO2",
- "displayName": "MFA anti-phishing"
- }
- },
- "PolicyControlFedAuthMethod": {
- "certificate": "Autenticazione del certificato",
- "infoBubble": "Specificare il metodo di autenticazione richiesto, che dovrà essere soddisfatto dal provider di servizi di federazione, ad esempio AD FS.",
- "multifactor": "Autenticazione a più fattori",
- "require": "Richiedi un metodo di autenticazione federato (anteprima)",
- "whatIfFormat": "{0} - {1}"
- },
- "PolicyState": {
- "off": "Disattivato",
- "on": "Attivato",
- "reportOnly": "Solo report"
- },
- "PolicyTemplates": {
- "Devices": {
- "description": "Selezionare la categoria del modello di criteri Dispositivi per avere visibilità sui dispositivi che accedono alla rete. Verificare la conformità e lo stato di integrità prima di concedere l'accesso.",
- "name": "Dispositivi"
- },
- "Identities": {
- "description": "Selezionare la categoria del modello di criteri Identità per verificare e proteggere ogni identità con autenticazione avanzata in tutto l'ambiente digitale.",
- "name": "Identità"
- },
- "Summary": {
- "CloudApps": {
- "allCloudApps": "Tutte le app",
- "office365": "Office 365",
- "registerSecurityInfo": "Registra le informazioni di sicurezza"
- },
- "Conditions": {
- "androidAndIOS": "Piattaforma del dispositivo: Android e iOS",
- "anyDevice": "Qualsiasi dispositivo ad eccezione di Android, iOS, Windows e Mac",
- "anyDeviceStateExceptHybrid": "Qualsiasi stato del dispositivo eccetto conforme e aggiunto ad Azure AD ibrido",
- "anyLocation": "Qualsiasi percorso tranne attendibile",
- "browserMobileDesktop": "App client: browser, app per dispositivi mobili e client desktop",
- "exchangeActiveSync": "App client: Exchange Active Sync, altri client",
- "windowsAndMac": "Piattaforma del dispositivo: Windows e Mac"
- },
- "Devices": {
- "anyDevice": "Qualsiasi dispositivo"
- },
- "Grant": {
- "appProtectionPolicy": "Richiedi criterio di protezione delle app",
- "approvedClientApp": "Richiedi app client approvata",
- "blockAccess": "Blocca accesso",
- "mfa": "Richiedi autenticazione a più fattori",
- "passwordChange": "Richiedi la modifica della password",
- "requireCompliantDevice": "Richiedi che i dispositivi siano contrassegnati come conformi",
- "requireHybridAzureADDevice": "Richiedi dispositivo aggiunto ad Azure AD ibrido"
- },
- "Session": {
- "appEnforcedRestrictions": "Usa restrizioni imposte dalle app",
- "signInFrequency": "Frequenza di accesso e sessione del browser mai permanente"
- },
- "UsersAndGroups": {
- "allUsers": "Tutti gli utenti",
- "directoryRoles": "Ruoli della directory tranne l'amministratore corrente",
- "globalAdmin": "Amministratore globale",
- "noGuestAndAdmins": "Tutti gli utenti tranne guest ed esterno, amministratori globali, amministratore corrente"
- },
- "azureManagement": "Gestione di Azure",
- "deviceFilters": "Filtri per dispositivi",
- "devicePlatforms": "Piattaforme per dispositivi"
- },
- "TemplateId": {
- "AppEnforcedRestrictions": {
- "description": "Impedire o limitare l'accesso a SharePoint, OneDrive e al contenuto di Exchange da dispositivi non gestiti.",
- "name": "CA014: utilizza le restrizioni imposte dall'applicazione per i dispositivi non gestiti",
- "title": "Utilizza le restrizioni imposte dall'applicazione per i dispositivi non gestiti"
- },
- "ApprovedClientApps": {
- "description": "Per evitare la perdita di dati, le organizzazioni possono limitare l'accesso alle app client con autenticazione moderna approvate tramite la Protezione app di Intune.",
- "name": "CA012: richiedi app client approvate e protezione app",
- "title": "Richiedi app client approvate e protezione delle app"
- },
- "BlockAccessOnUnknowns": {
- "description": "L'accesso degli utenti alle risorse aziendali verrà bloccato quando il tipo di dispositivo è sconosciuto o non supportato.",
- "name": "CA010: blocca l'accesso per la piattaforma del dispositivo sconosciuta o non supportata",
- "title": "Blocca l'accesso per la piattaforma del dispositivo sconosciuta o non supportata"
- },
- "BlockLegacyAuth": {
- "description": "Bloccare gli endpoint di autenticazione legacy che possono essere usati per ignorare l'autenticazione a più fattori. ",
- "name": "CA003: blocca l'autenticazione legacy",
- "title": "Blocca autenticazione legacy"
- },
- "NoPersistentBrowserSession": {
- "description": "Proteggere l'accesso utente su dispositivi non gestiti impedendo alle sessioni del browser di restare connesse dopo la chiusura del browser e impostando una frequenza di accesso su 1 ora.",
- "name": "CA011: nessuna sessione del browser permanente",
- "title": "Nessuna sessione del browser persistente"
- },
- "RequireCompliantOrHybridADAdmins": {
- "description": "Richiedere agli amministratori con privilegi di poter accedere alle risorse solo usando un dispositivo conforme o aggiunto ad Azure AD ibrido aggiunto.",
- "name": "CA009: richiedi un dispositivo conforme o aggiunto ad Azure AD ibrido per gli amministratori",
- "title": "Richiedi un dispositivo conforme o aggiunto ad Azure AD ibrido per gli amministratori"
- },
- "RequireCompliantOrHybridADAllUsers": {
- "description": "Proteggere l'accesso alle risorse aziendali richiedendo agli utenti di usare un dispositivo gestito o eseguire l'autenticazione a più fattori (solo macOS o Windows).",
- "name": "CA013: richiedi un dispositivo conforme o aggiunto ad Azure AD ibrido o l'autenticazione a più fattori per tutti gli utenti",
- "title": "Richiedi un dispositivo conforme o aggiunto ad Azure AD ibrido o l'autenticazione a più fattori per tutti gli utenti"
- },
- "RequireMFAAllUsers": {
- "description": "Richiedere l'autenticazione a più fattori per tutti gli account utente per ridurre il rischio di compromissione.",
- "name": "CA004: richiedi l'autenticazione a più fattori per tutti gli utenti",
- "title": "Richiedi l'autenticazione a più fattori per tutti gli utenti"
- },
- "RequireMFAForAdmins": {
- "description": "Richiedere l'autenticazione a più fattori per gli account amministrativi con privilegi per ridurre il rischio di compromissione. Questi criteri verranno destinati agli stessi ruoli come impostazione predefinita per la sicurezza.",
- "name": "CA001: richiedi l'autenticazione a più fattori per gli amministratori",
- "title": "Richiedere l'autenticazione a più fattori per gli amministratori"
- },
- "RequireMFAForAzureManagement": {
- "description": "Richiede l'autenticazione a più fattori per proteggere l'accesso privilegiato alle risorse di Azure.",
- "name": "CA006: richiedi l'autenticazione a più fattori per la gestione di Azure",
- "title": "Richiedi l'autenticazione a più fattori per la gestione di Azure"
- },
- "RequireMFAForGuestAccess": {
- "description": "Richiedi agli utenti guest di eseguire l'autenticazione a più fattori quando accedono alle risorse aziendali.",
- "name": "CA005: richiedi l'autenticazione a più fattori per l'accesso guest",
- "title": "Richiedi l'autenticazione a più fattori per l'accesso guest"
- },
- "RequireMFAForRiskySignIn": {
- "description": "Richiedere l'autenticazione a più fattori se il rischio di accesso viene identificato come medio o elevato. (Richiede una licenza Azure AD Premium 2)",
- "name": "CA007: richiedi l'autenticazione a più fattori per gli accessi a rischio",
- "title": "Richiedi l'autenticazione a più fattori per gli accessi a rischio"
- },
- "RequirePasswordChangeForHighRiskUsers": {
- "description": "Richiedere all'utente di modificare la password se il rischio utente viene identificato come elevato. (Richiede una licenza Azure AD Premium 2)",
- "name": "CA008: richiedi la modifica della password per gli utenti ad alto rischio",
- "title": "Richiedi la modifica della password per gli utenti ad alto rischio"
- },
- "RequireSecurityInfo": {
- "description": "Proteggere il momento e la modalità di registrazione degli utenti per l'autenticazione a più fattori di Azure AD e la password self-service. ",
- "name": "CA002: protezione della registrazione delle informazioni di sicurezza",
- "title": "Protezione della registrazione delle informazioni di sicurezza"
- }
- },
- "TemplateState": {
- "BlockAccessOnUnknowns": {
- "title": "L'abilitazione di questo criterio impedirà l'accesso da un tipo di dispositivo sconosciuto. Provare a usare la modalità solo report per iniziare fino a quando non si sarà verificato che ciò non avrà alcun impatto sugli utenti."
- },
- "BlockLegacyAuth": {
- "description": "Provare a usare la modalità solo report per iniziare fino a quando non si sarà verificato che ciò non avrà alcun impatto sugli utenti.",
- "title": "L'abilitazione di questo criterio impedirà l'autenticazione legacy per tutti gli utenti."
- },
- "RequireCompliantOrHybridADAdmins": {
- "Description": {
- "on": "Provare a usare la modalità solo report per iniziare fino a quando non si sarà verificato che ciò non avrà alcun impatto sugli utenti con privilegi.",
- "reportOnly": "I criteri in modalità solo report che richiedono dispositivi conformi possono richiedere agli utenti su Mac, iOS e Android di selezionare un certificato del dispositivo durante la valutazione dei criteri, anche se la conformità del dispositivo non viene applicata. Queste richieste possono ripetersi fino a quando il dispositivo non viene reso conforme."
- },
- "Title": {
- "on": "L'abilitazione di questo criterio impedirà l'accesso agli utenti con privilegi a meno che non venga usato un dispositivo gestito, ad esempio conforme o aggiunto a Azure AD ibrido. Verificare di aver configurato i criteri di conformità o di abilitare la configurazione di Azure AD ibrido prima dell'abilitazione.",
- "reportOnly": "Verificare di aver configurato i criteri di conformità o di abilitare la configurazione di Azure AD ibrido prima dell'abilitazione. "
- }
- },
- "RequireCompliantOrHybridADAllUsers": {
- "Description": {
- "on": "Questo criterio influirà su tutti gli utenti tranne sull'amministratore attualmente connesso. Provare a usare la modalità solo report per iniziare fino a quando non si conferma che non avrà effetto sugli utenti."
- },
- "Title": {
- "on": "Non bloccare l'output. Verificare che il dispositivo sia conforme, aggiunto ad Azure AD ibrido o che sia stata configurata l'autenticazione a più fattori. ",
- "reportOnly": "I criteri in modalità solo report che richiedono dispositivi conformi possono richiedere agli utenti su Mac, iOS e Android di selezionare un certificato del dispositivo durante la valutazione dei criteri, anche se la conformità del dispositivo non viene applicata. Queste richieste possono ripetersi fino a quando il dispositivo non viene reso conforme."
- }
- },
- "RequireMfa": {
- "description": "Se si usano account di accesso di emergenza o Azure AD Connect per sincronizzare gli oggetti locali, potrebbe essere necessario escludere questi account dal criterio dopo la creazione."
- },
- "RequireMfaAdmins": {
- "description": "Si noti che l'account amministratore corrente verrà escluso automaticamente, ma tutti gli altri verranno protetti durante la creazione dei criteri. Per iniziare, provare a usare la modalità solo report.",
- "title": "Prestare attenzione a non bloccare l'accesso. Questo criterio influisce sul portale di Azure."
- },
- "RequireMfaAllUsers": {
- "description": "Provare a usare la modalità solo report per iniziare fino a quando questa modifica non sarà stata pianificata e comunicata a tutti gli utenti.",
- "title": "L'abilitazione di questo criterio consentirà di applicare l'autenticazione a più fattori per tutti gli utenti."
- },
- "RequireSecurityInfo": {
- "description": "Assicurarsi di controllare la configurazione per proteggere questi account in base alle esigenze aziendali.",
- "title": "Gli utenti e i ruoli seguenti sono esclusi da questo criterio, utenti guest e utenti esterni, amministratori globali, amministratore corrente"
- }
- },
- "basics": "Informazioni di base",
- "clientApps": "App client",
- "cloudApps": "App cloud",
- "cloudAppsOrActions": "Applicazioni cloud o azioni ",
- "conditions": "Condizioni ",
- "createNewPolicy": "Crea nuovi criteri dai modelli (anteprima)",
- "createPolicy": "Crea criterio",
- "currentUser": "Utente corrente",
- "customizeBuild": "Personalizza la build",
- "customizeTemplate": "Gli elenchi di modelli vengono personalizzati in base al tipo di criteri da creare",
- "excludedDevicePlatform": "Piattaforme per dispositivi escluse",
- "excludedDirectoryRoles": "Ruoli della directory esclusi",
- "excludedLocation": "Ruoli della directory esclusi",
- "excludedUsers": "Utenti esclusi",
- "grantControl": "Concedi controllo ",
- "includeFilteredDevice": "Includi i dispositivi filtrati nel criterio",
- "includedDevicePlatform": "Piattaforme per dispositivi incluse",
- "includedDirectoryRoles": "Ruoli della directory inclusi",
- "includedLocation": "Posizione inclusa",
- "includedUsers": "Utenti inclusi",
- "legacyAuthenticationClients": "Client con autenticazione legacy",
- "namePolicy": "Denomina il criterio",
- "next": "Avanti",
- "policyName": "Nome criteri",
- "policyState": "Stato dei criteri",
- "policySummary": "Riepilogo criteri",
- "policyTemplate": "Modello di criteri",
- "previous": "Indietro",
- "reviewAndCreate": "Rivedi e crea",
- "riskLevels": "Livelli di rischio",
- "selectATemplate": "Seleziona un modello",
- "selectTemplate": "Seleziona modello",
- "selectTemplateCategory": "Seleziona categoria modello",
- "selectTemplateRecommendation": "Si consigliano i modelli seguenti in base alla risposta dell'utente",
- "sessionControl": "Controllo della sessione ",
- "signInFrequency": "Frequenza di accesso",
- "signInRisk": "Rischio di accesso",
- "template": "Modello ",
- "templateCategory": "Categoria modello",
- "userRisk": "Rischio utente",
- "usersAndGroups": "Utenti e gruppi ",
- "viewPolicySummary": "Visualizza riepilogo criteri "
- },
- "SSM": {
- "MemberSelector": {
- "description": "Utenti e gruppi"
- },
- "Notification": {
- "Migration": {
- "error": "Non è stato possibile eseguire la migrazione delle impostazioni di valutazione continua dell'accesso ai criteri di accesso condizionale",
- "inProgress": "Migrazione in corso delle impostazioni di valutazione continua dell'accesso",
- "success": "Migrazione delle impostazioni di valutazione continua dell'accesso ai criteri di accesso condizionale riuscita",
- "successDescription": "Passare ai criteri di accesso condizionale per visualizzare le impostazioni di cui è stata eseguita la migrazione nei criteri appena creati denominati \"Criteri di accesso condizionale creati da impostazioni CAE\"."
- },
- "error": "Non è stato possibile aggiornare le impostazioni di Valutazione continua dell'accesso",
- "inProgress": "Aggiornamento delle impostazioni di Valutazione continua dell'accesso",
- "success": "Le impostazioni di Valutazione continua dell'accesso sono state aggiornate"
- },
- "PreviewOptions": {
- "disable": "Disabilita l'anteprima",
- "enable": "Abilita l'anteprima"
- },
- "StrictLocationEnforcement": {
- "infoContent1": "È possibile che Azure AD e il provider di risorse visualizzino IP diversi per lo stesso dispositivo client a causa di una partizione di rete o di una mancata corrispondenza tra IPv4/IPv6. La modalità Imposizione rigorosa della posizione applicherà i criteri di accesso condizionale in base agli indirizzi IP visualizzati da Azure AD e dal provider di risorse.",
- "infoContent2": "Per garantire il livello massimo di sicurezza, è consigliabile includere tutti gli IP che possono essere visualizzati da Azure AD e dal provider di risorse nel criterio Località denominata e attivare la modalità \"Imposizione rigorosa della posizione\".",
- "label": "Imposizione rigorosa della posizione",
- "title": "Modalità di imposizione aggiuntive"
- },
- "bladeTitle": "Valutazione continua dell'accesso",
- "description": "Quando l'accesso di un utente viene rimosso o un indirizzo IP client viene modificato, la funzionalità Valutazione continua dell'accesso blocca automaticamente l'accesso alle risorse e alle applicazioni in tempo quasi reale. ",
- "migrateLabel": "Esegui la migrazione",
- "migrationError": "La migrazione non è riuscita a causa del seguente errore: {0}",
- "migrationInfo": "L'impostazione CAE è stata spostata nell'esperienza utente di accesso condizionale. Eseguire la migrazione con il pulsante \"Migrazione\" precedente e configurare l'impostazione con i criteri di accesso condizionale in futuro. Fare clic qui per altre informazioni.",
- "noLicenseMessage": "È possibile gestire le impostazioni di gestione intelligente delle sessioni con Azure AD Premium",
- "optionsPickerTitle": "Abilita/Disabilita Valutazione continua dell'accesso",
- "upsellInfo": "Non è più possibile modificare le impostazioni in questa pagina e le impostazioni presenti qui verranno ignorate. Sarà rispettata l'impostazione precedente. In futuro, sarà possibile configurare le impostazioni di Valutazione continua dell'accesso in Accesso condizionale. Fare clic qui per altre informazioni."
- },
- "SessionLifetime": {
- "PersistentBrowser": {
- "Error": {
- "notAllApps": "I criteri per le sessioni del browser persistenti funzionano correttamente solo se è selezionata l'opzione \"Tutte le app cloud\". Aggiornare la selezione delle app cloud."
- },
- "Option": {
- "always": "Sempre persistente",
- "help": "Una sessione del browser persistente consente agli utenti di rimanere connessi dopo la chiusura e la riapertura della finestra del browser.
\n\n- Questa impostazione funziona correttamente quando è selezionata l'opzione \"Tutte le app cloud\"
\n- Questo non influisce sulle durate dei token o sull'impostazione della frequenza di accesso.
\n- Questa impostazione eseguirà l'override del criterio \"Mostra l'opzione per rimanere connesso\" nelle Informazioni personalizzate distintive dell'azienda.
\n- L'opzione \"Mai persistente\" eseguirà l'override delle eventuali attestazioni di accesso SSO persistenti passate dai servizi di autenticazione federata.
\n- L'impostazione \"Mai persistente\" bloccherà l'accesso SSO nei dispositivi mobili per le applicazioni e tra le applicazioni e il browser del dispositivo mobile dell'utente.
\n",
- "label": "Sessione del browser persistente",
- "never": "Mai persistente"
- },
- "Warning": {
- "allApps": "La sessione del browser persistente funziona correttamente solo quando è selezionata l'opzione Tutte le app cloud. Modificare la selezione delle app cloud. Fare clic qui per altre informazioni."
- }
- },
- "SignInFrequency": {
- "Aria": {
- "units": "Ore o giorni",
- "value": "Frequenza"
- },
- "Option": {
- "Day": {
- "plural": "{0} giorni",
- "singular": "1 giorno"
- },
- "Hour": {
- "plural": "{0} ore",
- "singular": "1 ora"
- },
- "daysOption": "Giorni",
- "everytime": "Ogni volta",
- "help": "Periodo di tempo prima che all'utente venga richiesto di eseguire nuovamente l'accesso quando tenta di accedere a una risorsa. L'impostazione predefinita è una finestra mobile di 90 giorni, ovvero agli utenti verrà chiesto di eseguire di nuovo l'autenticazione al primo tentativo di accedere a una risorsa dopo un periodo di inattività nel proprio computer di 90 o più giorni.",
- "hoursOption": "Ore",
- "label": "Frequenza di accesso",
- "placeholder": "Selezionare le unità"
- }
- },
- "mainOption": "Modifica durata sessione",
- "mainOptionHelp": "Configurare la frequenza delle richieste ricevute dagli utenti e indicare se le sessioni del browser saranno persistenti o meno. Le applicazioni che non supportano i protocolli di autenticazione moderna potrebbero non rispettare tali criteri. In questi casi, contattare lo sviluppatore applicazione."
- },
- "SigninRisk": {
- "LearnMore": {
- "message": "È possibile controllare l'accesso utente per rispondere a livelli di rischio di accesso specifici."
- }
- },
- "SingleSelectorActive": {
- "failed": "Non è possibile caricare questi dati.",
- "reattempt": "Caricamento dati. Tentativo {0} di {1}."
- },
- "TimeCondition": {
- "Errors": {
- "both": "L'intervallo di tempo di \"inclusione\" o \"esclusione\" non è valido.",
- "daysOfWeek": "{0} Assicurarsi di specificare almeno un giorno della settimana.",
- "endBeforeStart": "{0} Assicurarsi che la data/ora di inizio sia precedente alla data/ora di fine.",
- "exclude": "L'intervallo di tempo di \"esclusione\" non è valido.",
- "generic": "{0} Assicurarsi che siano impostati sia i giorni della settimana sia il fuso orario. Se l'opzione \"Tutto il giorno\" non è selezionata, è necessario impostare anche l'ora di inizio e l'ora di fine.",
- "include": "L'intervallo di tempo di \"inclusione\" non è valido.",
- "timeMissing": "{0} Assicurarsi di specificare l'ora di inizio e di fine.",
- "timeZone": "{0} Assicurarsi di specificare un fuso orario.",
- "timesAndZone": "{0} Assicurarsi di configurare l'ora di inizio, l'ora di fine e il fuso orario."
- }
- },
- "UserActions": {
- "Included": {
- "none": "Nessuna app cloud o azione selezionata",
- "plural": "{0} azioni utente incluse",
- "singular": "1 azione utente inclusa"
- },
- "accessRequirement1": "Livello 1",
- "accessRequirement2": "Livello 2",
- "accessRequirement3": "Livello 3",
- "accessRequirementsLabel": "Accesso ai dati protetti dell'app",
- "appsActionsAuthTitle": "App cloud, azioni o contesto di autenticazione",
- "appsOrActionsSelectorInfoBallonText": "Applicazioni a cui si è eseguito l'accesso o azioni utente",
- "appsOrActionsTitle": "Applicazioni cloud o azioni",
- "label": "Azioni utente",
- "mainOptionsLabel": "Selezionare a cosa si applicano i criteri",
- "registerOrJoinDevices": "Registra o esegui il join dei dispositivi",
- "registerSecurityInfo": "Registra le informazioni di sicurezza",
- "selectionInfo": "Selezionare l'azione a cui verranno applicati i criteri"
- },
- "UserSelectionBlade": {
- "DirectoryRoles": {
- "ariaLabel": "Scegliere i ruoli della directory"
- },
- "Excluded": {
- "gridAria": "Elenco di utenti esclusi"
- },
- "Included": {
- "gridAria": "Elenco di utenti inclusi"
- },
- "Validation": {
- "customRoleIncluded": "\"Ruoli della directory\" include almeno un ruolo personalizzato",
- "customRoleSelected": "È stato selezionato almeno un ruolo personalizzato",
- "failed": "È necessario configurare \"{0}\"",
- "roles": "Selezionare almeno un ruolo",
- "usersGroups": "Selezionare almeno un utente o gruppo"
- },
- "learnMore": "Controllare l'accesso in base all'utente a cui verranno applicati i criteri, ad esempio utenti e gruppi, identità del carico di lavoro, ruoli della directory o guest esterni."
- },
- "ValidationResult": {
- "blockEveryonePolicy": "La configurazione dei criteri non è supportata. Esaminare le assegnazioni e i controlli.",
- "invalidApplicationCondition": "Le applicazioni cloud selezionate non sono valide",
- "invalidClientTypesCondition": "Le app client selezionate non sono valide",
- "invalidConditions": "Le assegnazioni non sono selezionate",
- "invalidControls": "I controlli selezionati non sono validi",
- "invalidDevicePlatformsCondition": "Le piattaforme del dispositivo selezionate non sono valide",
- "invalidDevicesCondition": "La configurazione del dispositivo non è valida. È probabile che la configurazione di \"{0}\" non sia valida.",
- "invalidGrantControlPolicy": "Controllo concessione non valido",
- "invalidLocationsCondition": "Le località selezionate non sono valide",
- "invalidPolicy": "Le assegnazioni non sono selezionate",
- "invalidSessionControlPolicy": "Controllo sessione non valido",
- "invalidSignInRisksCondition": "Il rischio di accesso selezionato non è valido",
- "invalidUserRisksCondition": "Il rischio utente selezionato non è valido",
- "invalidUsersCondition": "Gli utenti selezionati non sono validi",
- "mamPolicyShouldOnlyTargetAndroidOrIosPlatforms": "I criteri MAM possono essere applicati solo alle piattaforme client Android o iOS.",
- "notSupportedCombination": "La configurazione dei criteri non è supportata. Altre informazioni sui criteri supportati.",
- "pending": "Convalida del criterio",
- "requireComplianceEveryonePolicy": "La configurazione dei criteri richiederà la conformità dei dispositivi per tutti gli utenti. Verificare le assegnazioni selezionate.",
- "success": "Criterio valido"
- },
- "VpnCert": {
- "Grid": {
- "aria": "Elenco di certificati della VPN"
- }
- },
- "WarningsInfo": {
- "Controls": {
- "compliantDeviceEnabled": "Prestare attenzione a non bloccare l'accesso. Assicurarsi che il dispositivo sia conforme.",
- "domainJoinedDeviceEnabled": "Prestare attenzione a non bloccare l'accesso. Assicurarsi che il dispositivo sia aggiunto ad Azure AD ibrido.",
- "exchangeDisabled": "Exchange ActiveSync supporta solo i controlli del dispositivo conforme e dell'app client approvata. Fare clic per altre informazioni.",
- "exchangeDisabled2": "Exchange ActiveSync supporta solo i controlli \"Dispositivo conforme\", \"App client approvata\" e \"App client conforme\". Fare clic per altre informazioni.",
- "notAvailableForSP": "Alcuni controlli non sono disponibili a causa della selezione di \"{0}\" nell'assegnazione dei criteri",
- "requireAuthOrMfa": "\"{0}\" non può essere usato con \"{1}\"",
- "requireMfa": "Provare a testare la nuova anteprima pubblica \"{0}\"",
- "requirePasswordChangeEnabled": "È possibile usare \"Richiedi modifica password\" solo quando i criteri vengono assegnati a \"Tutte le app cloud\""
- },
- "Policies": {
- "Linux": {
- "devicePlatformsReportOnlyPolicy": "I criteri in modalità solo report che richiedono dispositivi conformi potrebbero richiedere agli utenti in macOS, iOS, Android e Linux di selezionare un certificato del dispositivo.",
- "excludeDevicePlatforms": "È possibile escludere le piattaforme di dispositivi macOS, iOS, Android e Linux da questo criterio.",
- "proceedAnywayDevicePlatforms": "Continuare con la configurazione selezionata. È possibile che gli utenti di macOS, iOS, Android e Linux ricevano prompt quando viene verificata la conformità del dispositivo."
- },
- "blockCurrentUserPolicy": "Prestare attenzione a non bloccare l'accesso. È consigliabile applicare un criterio prima di tutto a un set ridotto di utenti per verificare che il comportamento corrisponda a quello previsto. È inoltre consigliabile escludere almeno un amministratore da questo criterio, in modo da assicurare che sia comunque possibile accedere e aggiornare un criterio nel caso in cui fosse necessaria una modifica. Verificare le app e gli utenti interessati.",
- "devicePlatformsReportOnlyPolicy": "I criteri in modalità solo report che richiedono dispositivi conformi potrebbero richiedere agli utenti in macOS, iOS e Android di selezionare un certificato del dispositivo.",
- "excludeCurrentUserSelection": "Escludere l'utente corrente, {0}, dal criterio.",
- "excludeDevicePlatforms": "È possibile escludere le piattaforme di dispositivi macOS, iOS e Android da questo criterio.",
- "proceedAnywayDevicePlatforms": "Continuare con la configurazione selezionata. È possibile che gli utenti in macOS, iOS e Android ricevano prompt quando viene verificata la conformità del dispositivo.",
- "proceedAnywaySelection": "Sono consapevole del fatto che il mio account sarà interessato dal criterio. Continua."
- },
- "ServicePrincipals": {
- "blockExchange": "La selezione di Office 365 Exchange Online influirà anche su app quali OneDrive e Teams.",
- "blockPortal": "Prestare attenzione a non bloccare l'accesso. Questi criteri influiscono sul portale di Azure. Prima di continuare, assicurarsi di poter rientrare nel portale.",
- "blockPortalWithSession": "Prestare attenzione a non bloccare l'accesso. Questi criteri influiscono sul portale di Azure. Prima di continuare, assicurarsi di poter rientrare nel portale.
Ignorare questo avviso se è in corso la configurazione di criteri della sessione browser persistente che funzionano correttamente solo se è selezionata l'opzione \"Tutte le app cloud\".",
- "blockSharePoint": "La selezione di SharePoint Online influirà anche su app quali Microsoft Teams, Planner, Delve, MyAnalytics e Newsfeed.",
- "blockSkype": "La selezione di Skype for Business Online influirà anche su Microsoft Teams.",
- "includeOrExclude": "È possibile configurare il filtro dell'app per '{0}' o '{1}', ma non per entrambi.",
- "selectAppsNAForSP": "Non è possibile selezionare singole app cloud a causa della selezione di '{0}' nell'assegnazione dei criteri",
- "teamsBlocked": "Microsoft Teams sarà interessato anche quando app come SharePoint Online ed Exchange Online sono incluse nei criteri."
- },
- "Users": {
- "blockAllUsers": "Prestare attenzione a non bloccare l'accesso. Questo criterio interesserà tutti gli utenti. È consigliabile applicare un criterio prima di tutto a un set ridotto di utenti per verificare che il comportamento corrisponda a quello previsto."
- }
- },
- "WhatIf": {
- "Device": {
- "AttributesGrid": {
- "aria": "Elenco degli attributi sul dispositivo utilizzato durante l'accesso.",
- "infoBalloon": "Elenco degli attributi sul dispositivo utilizzato durante l'accesso."
- }
- }
- },
- "advancedTabText": "Avanzate",
- "allCloudAppsErrorBox": "È necessario selezionare \"Tutte le app cloud\" quando è selezionata la concessione \"Richiedi modifica password\"",
- "allDayCheckboxLabel": "Tutto il giorno",
- "allDevicePlatforms": "Qualsiasi dispositivo",
- "allGuestUserInfoContent": "Include i guest di Azure AD B2B ma non i guest di SharePoint B2B",
- "allGuestUserLabel": "Tutti gli utenti guest ed esterni",
- "allRiskLevelsOption": "Tutti i livelli di rischio",
- "allTrustedLocationLabel": "Tutte le posizioni attendibili",
- "allUserGroupSetSelectorLabel": "Tutti gli utenti e i gruppi selezionati",
- "allUsersString": "Tutti gli utenti",
- "and": "{0} AND {1} ",
- "andWithGrouping": "({0}) E {1} ",
- "androidDisplayName": "Android",
- "anyCloudAppSelection": "Qualsiasi app cloud",
- "appContextOptionInfoContent": "Tag di autenticazione richiesto",
- "appContextOptionLabel": "Tag di autenticazione richiesto (anteprima)",
- "appContextUriPlaceholder": "Ad esempio: uri:contoso.com:level3",
- "appEnforceInfoBubble": "Le restrizioni imposte dalle app potrebbero richiedere configurazioni amministrative aggiuntive nelle app cloud. Le restrizioni avranno effetto solo per le nuove sessioni.",
- "appNotSetSeletorLabel": "0 app cloud selezionate",
- "applyConditionClientAppInfoBalloonContent": "Consente di configurare le app client per applicare i criteri ad app client specifiche",
- "applyConditionDevicePlatformInfoBalloonContent": "Consente di configurare le piattaforme dei dispositivi per applicare i criteri a piattaforme specifiche",
- "applyConditionDeviceStateInfoBalloonContent": "Consente di configurare lo stato dei dispositivi per applicare i criteri a stati dei dispositivi specifici",
- "applyConditionLocationInfoBalloonContent": "Consente di configurare le posizioni per applicare i criteri alle posizioni attendibili/non attendibili",
- "applyConditionSigninRiskInfoBalloonContent": "Consente di configurare il rischio di accesso per applicare i criteri ai livelli di rischio selezionati",
- "applyConditionUserRiskInfoBalloonContent": "Configura il rischio utente per applicare i criteri ai livelli di rischio selezionati",
- "applyConditonLabel": "Configura",
- "ariaLabelPolicyDisabled": "Criteri disabilitati",
- "ariaLabelPolicyEnabled": "Criteri abilitati",
- "ariaLabelPolicyReportOnly": "Il criterio è in modalità solo report",
- "blockAccess": "Blocca accesso",
- "builtInDirectoryRoleLabel": "Ruoli predefiniti della directory",
- "casCustomControlInfo": "I criteri personalizzati devono essere configurati nel portale di Cloud App Security. Questo controllo è attivo immediatamente per le app in primo piano ed è possibile eseguirne l'onboarding automatico per qualsiasi app. Fare clic qui per ottenere informazioni su entrambi gli scenari.",
- "casInfoBubble": "Questo controllo funziona per diverse app cloud.",
- "casPreconfiguredControlInfo": "Questo controllo è attivo immediatamente per le app in primo piano ed è possibile eseguirne l'onboarding automatico per qualsiasi app. Fare clic qui per ottenere informazioni su entrambi gli scenari.",
- "cert64DownloadCol": "Scarica certificato Base64",
- "cert64Name": "VpnBase64Cert",
- "certDownloadCol": "Scarica certificato",
- "certDurationCol": "Scadenza",
- "certDurationStartCol": "Valido dal",
- "certName": "VpnCert",
- "chooseApplicationsBladeSubtitle": "",
- "chooseApplicationsBladeTitle": "Scegliere le applicazioni",
- "chooseApplicationsCartSubitle": "",
- "chooseApplicationsCartTitle": "Applicazioni scelte",
- "chooseApplicationsEmpty": "Nessuna applicazione",
- "chooseApplicationsNone": "Nessuno",
- "chooseApplicationsNoneFound": "L'applicazione \"{0}\" non è stata trovata. Provare con un altro nome o ID.",
- "chooseApplicationsPlural": "{0} e altre {1}",
- "chooseApplicationsReAuthEverytimeInfo": "Se si cerca la propria app, alcune applicazioni non possono essere usate con il controllo di sessione \"Richiedi riautenticazione – Sempre\"",
- "chooseApplicationsRemove": "Rimuovi",
- "chooseApplicationsReturnedPlural": "{0} applicazioni trovate",
- "chooseApplicationsReturnedSingular": "1 applicazione trovata",
- "chooseApplicationsSearchBalloon": "Per cercare un'applicazione, immettere il nome o l'ID corrispondente.",
- "chooseApplicationsSearchHint": "Cerca applicazioni...",
- "chooseApplicationsSearchLabel": "Applicazioni",
- "chooseApplicationsSearching": "Ricerca...",
- "chooseApplicationsSelect": "Seleziona",
- "chooseApplicationsSelected": "Selezionato",
- "chooseApplicationsSingular": "{0} e 1 altra",
- "chooseApplicationsTooMany": "Sono presenti altri risultati da visualizzare. Per filtrarli, usare la casella di ricerca.",
- "chooseLocationCorpnetItem": "Rete aziendale",
- "chooseLocationSelectedLocationsLabel": "Località selezionate",
- "chooseLocationTrustedIpsItem": "Indirizzi IP attendibili MFA",
- "chooseLocationsBladeSubtitle": "",
- "chooseLocationsBladeTitle": "Scegliere le località",
- "chooseLocationsCartSubitle": "",
- "chooseLocationsCartTitle": "Località scelte",
- "chooseLocationsEmpty": "Nessuna località",
- "chooseLocationsExcludedSelectorTitle": "Seleziona",
- "chooseLocationsIncludedSelectorTitle": "Seleziona",
- "chooseLocationsNone": "Nessuno",
- "chooseLocationsNoneFound": "L'applicazione \"{0}\" non è stata trovata. Provare con un altro nome o ID.",
- "chooseLocationsPlural": "{0} e altre {1}",
- "chooseLocationsRemove": "Rimuovi",
- "chooseLocationsReturnedPlural": "{0} località trovate",
- "chooseLocationsReturnedSingular": "1 località trovata",
- "chooseLocationsSearchBalloon": "Per cercare una località, immettere il nome corrispondente.",
- "chooseLocationsSearchHint": "Cerca località...",
- "chooseLocationsSearchLabel": "Percorsi",
- "chooseLocationsSearching": "Ricerca...",
- "chooseLocationsSelect": "Seleziona",
- "chooseLocationsSelected": "Selezionato",
- "chooseLocationsSelectionBladeExcludedSelectorTitle": "Seleziona",
- "chooseLocationsSelectionBladeIncludedSelectorTitle": "Seleziona",
- "chooseLocationsSingular": "{0} e 1 altra",
- "chooseLocationsTooMany": "Sono presenti altri risultati da visualizzare. Per filtrarli, usare la casella di ricerca.",
- "claimProviderAddCommandText": "Nuovo controllo personalizzato",
- "claimProviderAddNewBladeTitle": "Nuovo controllo personalizzato",
- "claimProviderDeleteCommand": "Elimina",
- "claimProviderDeleteDescription": "Eliminare '{0}'? Questa azione non può essere annullata.",
- "claimProviderDeleteTitle": "Continuare?",
- "claimProviderEditInfoText": "Immettere il JSON per controlli personalizzati fornito dai provider di attestazioni.",
- "claimProviderNotificationCreateDescription": "Creazione del controllo personalizzato denominato '{0}'",
- "claimProviderNotificationCreateFailedDescription": "La creazione del controllo personalizzato '{0}' non è riuscita. Riprovare più tardi.",
- "claimProviderNotificationCreateFailedTitle": "Non è stato possibile creare il controllo personalizzato",
- "claimProviderNotificationCreateSuccessDescription": "Il controllo personalizzato denominato '{0}' è stato creato",
- "claimProviderNotificationCreateSuccessTitle": "La rete '{0}' è stata creata",
- "claimProviderNotificationCreateTitle": "Creazione della rete '{0}'",
- "claimProviderNotificationDeleteDescription": "Eliminazione del controllo personalizzato denominato '{0}'",
- "claimProviderNotificationDeleteFailedDescription": "L'eliminazione del controllo personalizzato '{0}' non è riuscita. Riprovare più tardi.",
- "claimProviderNotificationDeleteFailedTitle": "Non è stato possibile eliminare il controllo personalizzato",
- "claimProviderNotificationDeleteSuccessDescription": "Il controllo personalizzato denominato '{0}' è stato eliminato",
- "claimProviderNotificationDeleteSuccessTitle": "La rete '{0}' è stata eliminata",
- "claimProviderNotificationDeleteTitle": "Eliminazione di '{0}'",
- "claimProviderNotificationUpdateDescription": "Aggiornamento del controllo personalizzato denominato '{0}'",
- "claimProviderNotificationUpdateFailedDescription": "L'aggiornamento del controllo personalizzato '{0}' non è riuscito. Riprovare più tardi.",
- "claimProviderNotificationUpdateFailedTitle": "Non è stato possibile aggiornare il controllo personalizzato",
- "claimProviderNotificationUpdateSuccessDescription": "Il controllo personalizzato denominato '{0}' è stato aggiornato",
- "claimProviderNotificationUpdateSuccessTitle": "La rete '{0}' è stata aggiornata",
- "claimProviderNotificationUpdateTitle": "Aggiornamento della rete '{0}'",
- "claimProviderValidationAppIdInvalid": "Il valore \"AppId\" non è valido. Controllare e riprovare.",
- "claimProviderValidationClientIdMissing": "Nei dati manca un valore \"ClientId\". Controllare e riprovare.",
- "claimProviderValidationControlClaimsRequestedMissing": "In \"Control\" manca un valore \"ClaimsRequested\". Controllare e riprovare.",
- "claimProviderValidationControlClaimsRequestedTypeMissing": "Nell'elemento \"ClaimsRequested\" manca un valore \"Type\". Controllare e riprovare.",
- "claimProviderValidationControlIdAlreadyExists": "Il valore \"Id\" in \"Control\" esiste già. Controllare e riprovare.",
- "claimProviderValidationControlIdMissing": "In \"Control\" manca un valore \"Id\". Controllare e riprovare.",
- "claimProviderValidationControlIdReferencedInExistingPolicy": "Non è possibile rimuovere il valore \"Id\" da \"Control\" perché vi fanno riferimento criteri esistenti. Rimuovere prima il valore dai criteri.",
- "claimProviderValidationControlIdTooManyControls": "La proprietà \"Control\" contiene troppi controlli. Verificare e riprovare.",
- "claimProviderValidationControlIdValueReserved": "Il valore \"Id\" in \"Control\" è una parola chiave riservata. Usare un ID diverso.",
- "claimProviderValidationControlNameAlreadyExists": "Il valore \"Name\" in \"Control\" esiste già. Controllare e riprovare.",
- "claimProviderValidationControlNameMissing": "In \"Control\" manca un valore \"Name\". Controllare e riprovare.",
- "claimProviderValidationControlsMissing": "Nei dati manca un valore \"Controls\". Controllare e riprovare.",
- "claimProviderValidationDiscoveryUrlMissing": "Nei dati manca un valore \"DiscoveryUrl\". Controllare e riprovare.",
- "claimProviderValidationInvalid": "I dati specificati non sono validi. Controllare e riprovare.",
- "claimProviderValidationInvalidJsonDefinition": "Non è possibile salvare il controllo personalizzato. Esaminare il testo JSON e riprovare.",
- "claimProviderValidationNameAlreadyExists": "Il valore \"Name\" esiste già. Controllare e riprovare.",
- "claimProviderValidationNameMissing": "Nei dati manca un valore \"Name\". Controllare e riprovare.",
- "claimProviderValidationUnknown": "Si è verificato un errore sconosciuto durante la convalida dei dati specificati. Controllare e riprovare.",
- "claimProvidersNone": "Non sono presenti controlli personalizzati",
- "claimProvidersSearchPlaceholder": "Cerca i controlli.",
- "classicPoilcyFilterTitle": "Mostra",
- "classicPolicyAllPlatforms": "Tutte le piattaforme",
- "classicPolicyClientAppBrowserAndNative": "Browser, app per dispositivi mobili e client desktop",
- "classicPolicyCloudAppTitle": "Applicazione cloud",
- "classicPolicyControlAllow": "Consenti",
- "classicPolicyControlBlock": "Blocca",
- "classicPolicyControlBlockWhenNotAtWork": "Blocca l'accesso quando non al lavoro",
- "classicPolicyControlRequireCompliantDevice": "Richiedi un dispositivo conforme",
- "classicPolicyControlRequireDomainJoinedDevice": "Richiedi dispositivo aggiunto a un dominio",
- "classicPolicyControlRequireMfa": "Richiedi autenticazione a più fattori",
- "classicPolicyControlRequireMfaWhenNotAtWork": "Richiedi autenticazione a più fattori quando non al lavoro",
- "classicPolicyDeleteCommand": "Elimina",
- "classicPolicyDeleteFailTitle": "Non è stato possibile eliminare i criteri classici",
- "classicPolicyDeleteInProgressTitle": "Eliminazione dei criteri classici",
- "classicPolicyDeleteSuccessTitle": "I criteri classici sono stati eliminati",
- "classicPolicyDetailBladeTitle": "Dettagli",
- "classicPolicyDisableCommand": "Disabilita",
- "classicPolicyDisableConfirmation": "Disabilitare '{0}'? Questa azione non può essere annullata.",
- "classicPolicyDisableFailDescription": "Non è stato possibile disabilitare '{0}'",
- "classicPolicyDisableFailTitle": "Non è stato possibile disabilitare i criteri classici",
- "classicPolicyDisableInProgressDescription": "Disabilitazione di '{0}'",
- "classicPolicyDisableInProgressTitle": "Disabilitazione dei criteri classici",
- "classicPolicyDisableSuccessDescription": "La disabilitazione di '{0}' è riuscita",
- "classicPolicyDisableSuccessTitle": "I criteri classici sono stati disabilitati",
- "classicPolicyEasSupportedPlatforms": "Piattaforme supportate per Exchange ActiveSync",
- "classicPolicyEasUnsupportedPlatforms": "Piattaforme non supportate per Exchange ActiveSync",
- "classicPolicyExcludedPlatformsTitle": "Piattaforme dispositivo escluse",
- "classicPolicyFilterAll": "Tutti i criteri",
- "classicPolicyFilterDisabled": "Criteri disabilitati",
- "classicPolicyFilterEnabled": "Criteri abilitati",
- "classicPolicyIncludeExcludeMembersDescription": "Escludendo i gruppi, è possibile eseguire la migrazione a fasi dei criteri.",
- "classicPolicyIncludeExcludeMembersTitle": "Includi/Escludi gruppi",
- "classicPolicyIncludedPlatformsTitle": "Piattaforme dispositivo incluse",
- "classicPolicyManualMigrationMessage": "Per questi criteri è necessario procedere alla migrazione manuale.",
- "classicPolicyMigrateCommand": "Esegui la migrazione",
- "classicPolicyMigrateConfirmation": "Eseguire la migrazione di '{0}'? La migrazione di questi criteri può essere eseguita solo una volta.",
- "classicPolicyMigrateFailDescription": "Non è stato possibile eseguire la migrazione di '{0}'",
- "classicPolicyMigrateFailTitle": "La migrazione dei criteri classici non è riuscita",
- "classicPolicyMigrateInProgressDescription": "Migrazione di '{0}'",
- "classicPolicyMigrateInProgressTitle": "Migrazione dei criteri classici",
- "classicPolicyMigrateRecommendText": "Raccomandazione: eseguire la migrazione ai criteri del nuovo portale di Azure.",
- "classicPolicyMigrateSuccessTitle": "La migrazione dei criteri classici è riuscita",
- "classicPolicyMigratedSuccessDescription": "È ora possibile gestire questi criteri classici in Criteri.",
- "classicPolicyMigratedSuccessDescriptionMultiple": "La migrazione di questi criteri classici è stata eseguita come {0} nuovi criteri. È possibile gestire i nuovi criteri in Criteri.",
- "classicPolicyNoEditPermissionMsg": "Non si è autorizzati a modificare questi criteri. Solo gli amministratori globali e gli amministratori della sicurezza possono modificarli. Fare clic qui per altre informazioni.",
- "classicPolicySaveFailDescription": "Non è stato possibile salvare '{0}'",
- "classicPolicySaveFailTitle": "Non è stato possibile salvare i criteri classici",
- "classicPolicySaveInProgressDescription": "Salvataggio di '{0}'",
- "classicPolicySaveInProgressTitle": "Salvataggio dei criteri classici",
- "classicPolicySaveSuccessDescription": "Il salvataggio di '{0}' è riuscito",
- "classicPolicySaveSuccessTitle": "I criteri classici sono stati salvati",
- "clientAppBladeLegacyInfoBanner": "L'autorizzazione legacy non è attualmente supportata",
- "clientAppBladeLegacyUpsellBanner": "Blocca app client non supportate (anteprima)",
- "clientAppBladeTitle": "App client",
- "clientAppDescription": "Selezionare le app client a cui verranno applicati questi criteri",
- "clientAppExchangeActiveSync": "Exchange ActiveSync",
- "clientAppExchangeDisabledInfo": "Exchange ActiveSync è disponibile quando Exchange Online è l'unica app cloud selezionata. Fare clic per altre informazioni",
- "clientAppExchangeWarning": "Exchange ActiveSync non supporta tutte le altre condizioni in questo momento",
- "clientAppLearnMore": "È possibile controllare l'accesso utente per applicarlo ad applicazioni client specifiche che non usano l'autenticazione moderna.",
- "clientAppLegacyHeader": "Client con autenticazione legacy",
- "clientAppMobileDesktop": "App per dispositivi mobili e client desktop",
- "clientAppModernHeader": "Client con autenticazione moderna",
- "clientAppOnlySupportedPlatforms": "Applica i criteri solo alle piattaforme supportate",
- "clientAppSelectSpecificClientApps": "Selezionare le app client",
- "clientAppV2BladeTitle": "App client (anteprima)",
- "clientAppWebBrowser": "Browser",
- "clientAppsSelectedLabel": "{0} inclusi",
- "clientTypeBrowser": "Browser",
- "clientTypeEas": "Client Exchange ActiveSync",
- "clientTypeEasInfo": "Client Exchange ActiveSync che usano solo l'autenticazione legacy.",
- "clientTypeModernAuth": "Client con autenticazione moderna",
- "clientTypeOtherClients": "Altri client",
- "clientTypeOtherClientsInfo": "Sono inclusi i client Office precedenti e altri protocolli di posta elettronica (POP, IMAP, SMTP e così via). [Altre informazioni][1]\n[1]: https://aka.ms/caclientapps\n",
- "cloudAppCountDiffBannerText": "{0} app cloud configurate in questo criterio sono state eliminate dalla directory, ma questo non influisce sulle altre app nel criterio. All'aggiornamento successivo della sezione del criterio relativa all'applicazione, le app eliminate verranno automaticamente rimosse.",
- "cloudAppsSelectionBladeAllMicrosoftApps": "Tutte le app Microsoft",
- "cloudAppsSelectionExcludeAllMicrosoftClients": "Consenti app cloud, desktop e per dispositivi mobili Microsoft (anteprima)",
- "cloudappsSelectionBladeAllCloudapps": "Tutte le app cloud",
- "cloudappsSelectionBladeExcludeDescription": "Selezionare le app cloud da escludere dai criteri",
- "cloudappsSelectionBladeExcludedSelectorTitle": "Seleziona app cloud escluse",
- "cloudappsSelectionBladeIncludeDescription": "Selezionare le app cloud a cui verranno applicati questi criteri",
- "cloudappsSelectionBladeIncludedSelectorTitle": "Seleziona",
- "cloudappsSelectionBladeSelectedCloudapps": "Selezionare le app",
- "cloudappsSelectorInfoBallonText": "Servizi a cui accede l'utente per svolgere il lavoro. Ad esempio, 'Salesforce'",
- "cloudappsSelectorUserPlural": "{0} app",
- "cloudappsSelectorUserSingular": "1 app",
- "conditionLabelMulti": "{0} condizioni selezionate",
- "conditionLabelOne": "1 condizione selezionata",
- "conditionalAccessBladeTitle": "Accesso condizionale",
- "conditionsNotSelectedLabel": "Non configurato",
- "conditionsReqPwSet": "Alcune opzioni non sono disponibili perché è attualmente selezionata la concessione \"Richiedi modifica password\"",
- "configureCasText": "Configura Cloud App Security",
- "configureCustomControlsText": "Configura criteri personalizzati",
- "controlLabelMulti": "{0} controlli selezionati",
- "controlLabelOne": "1 controllo selezionato",
- "controlValidatorText": "Selezionare almeno un controllo",
- "controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
- "controlsDeviceComplianceInfoBubble": "Il dispositivo deve essere compatibile con Intune. In caso contrario, all'utente verrà chiesto di rendere compatibile il dispositivo",
- "controlsDomainJoinedInfoBubble": "I dispositivi devono essere aggiunti ad Azure AD ibrido.",
- "controlsMamInfoBubble": "Il dispositivo deve usare queste applicazioni client approvate.",
- "controlsMfaInfoBubble": "L'utente deve completare requisiti di sicurezza aggiuntivi, ad esempio telefonata, SMS",
- "controlsOrAndInfoBubble": "ControlsOrAndInfoBubble",
- "controlsRequireCompliantAppInfoBubble": "Il dispositivo deve usare app protette da criteri.",
- "controlsRequirePasswordResetInfoBubble": "Richiedere la modifica della password per ridurre il rischio utente. Questa opzione richiede anche Multi-Factor Authentication. Non è possibile usare altri controlli.",
- "countriesRadiobuttonInfoBalloonContent": "Il paese/area geografica da cui proviene l'accesso è determinato dall'indirizzo IP dell'utente.",
- "createNewVpnCert": "Nuovo certificato",
- "createdTimeLabel": "Ora di creazione",
- "customRoleLabel": "Ruoli personalizzati (non supportati)",
- "dateRangeTypeLabel": "Intervallo di date",
- "daysOfWeekPlaceholderText": "Filtro per i giorni della settimana",
- "daysOfWeekTypeLabel": "Giorni della settimana",
- "deletePolicyNoLicenseText": "È possibile eliminare subito questo criterio. Dopo l'eliminazione, sarà possibile ricrearlo solo quando saranno disponibili le licenze necessarie.",
- "descriptionContentForControlsAndOr": "Per più controlli",
- "devicePlatform": "Piattaforma del dispositivo",
- "devicePlatformConditionHelpDescription": "Consente di applicare il criterio alle piattaforme del dispositivo selezionate.\n[Altre informazioni][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2044750",
- "devicePlatformInclude": "{0} inclusi",
- "devicePlatformIncludeExclude": "{0} e {1} escluse",
- "devicePlatformNoSelectionError": "Alcune piattaforme del dispositivo richiedono la selezione di un elemento secondario.",
- "devicePlatformsNone": "Nessuno",
- "deviceSelectionBladeExcludeDescription": "Selezionare le piattaforme da escludere dai criteri",
- "deviceSelectionBladeIncludeDescription": "Selezionare le piattaforme del dispositivo da includere in questi criteri",
- "deviceStateAll": "Tutti gli stati dei dispositivi",
- "deviceStateCompliant": "Dispositivo contrassegnato come conforme",
- "deviceStateCompliantInfoContent": "I dispositivi conformi con Intune verranno esclusi dalla valutazione di questi criteri, quindi se ad esempio i criteri bloccano l'accesso, verranno bloccati tutti i dispositivi tranne quelli conformi con Intune.",
- "deviceStateConditionConfigureInfoContent": "Configura i criteri in base allo stato del dispositivo",
- "deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Hybrid Azure AD joined' or 'marked as compliant'.\n '{0}' has been deprecated. Use '{1}' instead.",
- "deviceStateConditionSelectorLabel": "Stato del dispositivo (anteprima)",
- "deviceStateDomainJoined": "Dispositivo aggiunto ad Azure AD ibrido",
- "deviceStateDomainJoinedInfoContent": "I dispositivi aggiunti ad Azure AD ibrido verranno esclusi dalla valutazione di questi criteri, quindi se ad esempio i criteri bloccano l'accesso, verranno bloccati tutti i dispositivi tranne quelli aggiunti ad Azure AD ibrido.",
- "deviceStateDomainJoinedInfoLinkText": "Altre informazioni.",
- "deviceStateExcludeDescription": "Selezionare la condizione dello stato del dispositivo usata per escludere i dispositivi dai criteri.",
- "deviceStateIncludeAndExcludeOneLabel": "{0} ed escludi {1}",
- "deviceStateIncludeAndExcludeTwoLabel": "{0} ed escludi {1}, {2}",
- "directoryRoleInfoContent": "È possibile assegnare un criterio ai ruoli predefiniti della directory.",
- "directoryRolesLabel": "Ruoli della directory (anteprima)",
- "discardbutton": "Rimuovi",
- "downloadDefaultFileName": "Intervalli IP",
- "downloadExampleFileName": "Esempio",
- "downloadExampleHeader": "File di esempio con dimostrazioni delle tipologie di dati accettate. Le righe che iniziano con # verranno ignorate.",
- "endDatePickerLabel": "Estremità",
- "endTimePickerLabel": "Ora di fine",
- "enterCountryText": "L'indirizzo IP e il paese vengono valutati in coppia. Selezionare il paese.",
- "enterIpText": "L'indirizzo IP e il paese vengono valutati in coppia. Immettere l'indirizzo IP.",
- "enterUserText": "Nessun utente selezionato. Selezionare un utente.",
- "evaluationResult": "Risultato della valutazione",
- "exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
- "exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync solo con piattaforme supportate",
- "excludeAllTrustedLocationSelectorText": "tutte le posizioni attendibili",
- "featureRequiresP2": "Questa funzionalità richiede la licenza Azure AD Premium 2.",
- "friday": "Venerdì",
- "grantControls": "Concedi controlli",
- "gridNetworkTrusted": "Attendibile",
- "gridPolicyCreatedDateTime": "Data di creazione",
- "gridPolicyEnabled": "Abilitato",
- "gridPolicyModifiedDateTime": "Data modifica",
- "gridPolicyName": "Nome criteri",
- "gridPolicyState": "Stato",
- "groupSelectionBladeExcludeDescription": "Selezionare i gruppi da escludere dai criteri",
- "groupSelectionBladeExcludedSelectorTitle": "Selezionare i gruppi esclusi",
- "groupSelectionBladeSelect": "Selezione gruppi",
- "groupSelectorInfoBallonText": "Gruppi nella directory a cui si applicano i criteri. Ad esempio: 'gruppo pilota'",
- "groupsSelectionBladeTitle": "Gruppi",
- "helpCommonScenariosText": "Informazioni sugli scenari comuni",
- "helpCondition1": "Quando un utente si trova all'esterno della rete aziendale",
- "helpCondition2": "Quando gli utenti nel gruppo 'Manager' eseguono l'accesso",
- "helpConditionsTitle": "Condizioni",
- "helpControl1": "Verrà richiesto di eseguire l'accesso con Multi-Factor Authentication",
- "helpControl2": "Verrà richiesto di eseguire l'accesso tramite un dispositivo aggiunto a un dominio o compatibile con Intune",
- "helpControlsTitle": "Controlli",
- "helpIntroText": "L'accesso condizionale consente di imporre requisiti di accesso quando si verificano condizioni specifiche. Ecco alcuni esempi",
- "helpIntroTitle": "Informazioni sull'accesso condizionale",
- "helpLearnMoreText": "Per altre informazioni sull'accesso condizionale, vedere",
- "helpStartStep1": "Per creare il primo criterio, fare clic su \"+ Nuovo criterio\"",
- "helpStartStep2": "Specificare le Condizioni e i controlli del criterio",
- "helpStartStep3": "Al termine, fare clic su Attiva criterio e quindi su Crea",
- "helpStartTitle": "Attività iniziali",
- "highRisk": "Alta",
- "includeAndExcludeAppsTextFormat": "Includi: {0}. Escludi: {1}.",
- "includeAppsTextFormat": "Includi: {0}.",
- "includeUnknownAreasCheckboxInfoBalloonContent": "Le aree sconosciute sono indirizzi IP di cui non è possibile eseguire il mapping a un paese/area geografica.",
- "includeUnknownAreasCheckboxLabel": "Includi aree sconosciute",
- "infoCommandLabel": "Informazioni",
- "invalidCertDuration": "La durata del certificato non è valida",
- "invalidIpAddress": "Il valore deve essere un indirizzo IP valido",
- "invalidUriErrorMsg": "Immettere un URI valido. Ad esempio 'uri:contoso.com:acr' ",
- "iosDisplayName": "iOS",
- "linuxDisplayName": "Linux",
- "linuxDisplayNamePreview": "Linux (anteprima)",
- "loadAll": "Carica tutti",
- "loading": "Caricamento...",
- "locationConfigureNamedLocationsText": "Configura tutte le posizioni attendibili",
- "locationConfigureNamedLocationsUri": "{0}/usermanagement/mfasettings.aspx?tenantid={1}&culture={2}",
- "locationNameTooLongError": "Il nome della posizione è troppo lungo. Lunghezza massima: 256 caratteri",
- "locationSelectionBladeExcludeDescription": "Selezionare le posizioni da escludere dai criteri",
- "locationSelectionBladeIncludeDescription": "Selezionare le località da includere nei criteri",
- "locationsAllLocationsLabel": "Tutte le località",
- "locationsAllNamedLocationsLabel": "Tutti gli indirizzi IP attendibili",
- "locationsAllPrivateLinksLabel": "Tutti i collegamenti privati nel tenant",
- "locationsIncludeExcludeLabel": "{0} ed escludi tutti gli IP attendibili",
- "locationsSelectedPrivateLinksLabel": "Collegamenti privati selezionati",
- "lowRisk": "Bassa",
- "macOsDisplayName": "macOS",
- "managePoliciesLicenseText": "Per gestire i criteri di accesso condizionale, l'organizzazione necessita di Azure AD Premium P1 o P2.",
- "markAsTrustedCheckboxInfoBalloonContent": "L'accesso da una posizione attendibile riduce il rischio di accesso dell'utente. Contrassegnare questa posizione come attendibile solo se si è certi che gli intervalli IP immessi siano stabiliti e credibili nell'organizzazione.",
- "markAsTrustedCheckboxLabel": "Contrassegna come posizione attendibile",
- "mediumRisk": "Medio",
- "memberSelectionCommandRemove": "Rimuovi",
- "menuItemClaimProviderControls": "Controlli personalizzati (anteprima)",
- "menuItemClassicPolicies": "Criteri classici",
- "menuItemInsightsAndReporting": "Informazioni dettagliate e report",
- "menuItemManage": "Gestione",
- "menuItemNamedLocationsPreview": "Località denominate (anteprima)",
- "menuItemNamedNetworks": "Località denominate",
- "menuItemPolicies": "Criteri",
- "menuItemTermsOfUse": "Condizioni per l'utilizzo",
- "modifiedTimeLabel": "Ora di modifica",
- "monday": "Lunedì",
- "nameLabel": "Nome",
- "namedLocationCountryInfoBanner": "Solo gli indirizzi IPv4 vengono mappati ai paesi o alle aree geografiche. Gli indirizzi IPv6 sono inclusi in aree geografiche/paesi sconosciuti.",
- "namedLocationTypeCountry": "Paesi/aree geografiche",
- "namedLocationTypeLabel": "Definisci il tipo di posizione in base a:",
- "namedLocationUpsellBanner": "Questa visualizzazione è stata deprecata. Passare alla visualizzazione nuova e migliorata 'Località denominate'.",
- "namedLocationsHelpDescription": "Le località denominate vengono usate dai report sulla sicurezza di Azure AD per ridurre i falsi positivi e i criteri di accesso condizionale di Azure AD.\n[Altre informazioni][1]\n[1]: https://aka.ms/namedlocationupdate",
- "namedNetworkAddIpRanges": "Aggiungi un nuovo intervallo IP. Ad esempio: 40.77.182.32/27",
- "namedNetworkCountryNeeded": "È necessario selezionare almeno un paese/area geografica",
- "namedNetworkDeleteCommand": "Elimina",
- "namedNetworkDeleteDescription": "Eliminare '{0}'? Questa azione non può essere annullata.",
- "namedNetworkDeleteTitle": "Continuare?",
- "namedNetworkDownloadIpRange": "Scarica",
- "namedNetworkInvalidRange": "Il valore deve essere un intervallo IP valido.",
- "namedNetworkIpRangeNeeded": "È necessario specificare almeno un intervallo IP valido",
- "namedNetworkIpRangesDescriptionContent": "Configurare gli intervalli IP dell'organizzazione",
- "namedNetworkIpRangesTab": "Intervalli IP",
- "namedNetworkListAdd": "Nuovo percorso",
- "namedNetworkListConfigureTrustedIps": "Configura indirizzi IP attendibili MFA",
- "namedNetworkNameDescription": "Ad esempio: 'Ufficio di Redmond'",
- "namedNetworkNameInvalid": "Il nome specificato non è valido.",
- "namedNetworkNameRequired": "È necessario specificare un nome per questo percorso.",
- "namedNetworkNoIpRanges": "Nessun intervallo IP",
- "namedNetworkNotificationCreateDescription": "Creazione del percorso denominato '{0}'",
- "namedNetworkNotificationCreateFailedDescription": "La creazione del percorso '{0}' non è riuscita. Riprovare più tardi.",
- "namedNetworkNotificationCreateFailedTitle": "Non è stato possibile creare il percorso",
- "namedNetworkNotificationCreateSuccessDescription": "Il percorso denominato '{0}' è stata creata",
- "namedNetworkNotificationCreateSuccessTitle": "La rete '{0}' è stata creata",
- "namedNetworkNotificationCreateTitle": "Creazione della rete '{0}'",
- "namedNetworkNotificationDeleteDescription": "Eliminazione del percorso denominato '{0}'",
- "namedNetworkNotificationDeleteFailedDescription": "L'eliminazione del percorso '{0}' non è riuscita. Riprovare più tardi.",
- "namedNetworkNotificationDeleteFailedTitle": "Non è stato possibile eliminare il percorso",
- "namedNetworkNotificationDeleteSuccessDescription": "Il percorso denominato '{0}' è stato eliminato",
- "namedNetworkNotificationDeleteSuccessTitle": "La rete '{0}' è stata eliminata",
- "namedNetworkNotificationDeleteTitle": "Eliminazione di '{0}'",
- "namedNetworkNotificationUpdateDescription": "Aggiornamento del percorso denominato '{0}'",
- "namedNetworkNotificationUpdateFailedDescription": "L'aggiornamento del percorso '{0}' non è riuscito. Riprovare più tardi.",
- "namedNetworkNotificationUpdateFailedTitle": "Non è stato possibile aggiornare il percorso",
- "namedNetworkNotificationUpdateSuccessDescription": "Il percorso denominato '{0}' è stato aggiornato",
- "namedNetworkNotificationUpdateSuccessTitle": "La rete '{0}' è stata aggiornata",
- "namedNetworkNotificationUpdateTitle": "Aggiornamento della rete '{0}'",
- "namedNetworkSearchPlaceholder": "Cerca i percorsi.",
- "namedNetworkUploadFailedDescription": "Si è verificato un errore durante l'analisi del file fornito. Assicurarsi di caricare un file di testo normale con ogni riga nel formato CIDR.",
- "namedNetworkUploadFailedTitle": "Non è stato possibile analizzare '{0}'",
- "namedNetworkUploadInProgressDescription": "È in corso un tentativo per analizzare i valori CIDR validi da '{0}'.",
- "namedNetworkUploadInProgressTitle": "Analisi di '{0}'",
- "namedNetworkUploadInvalidDescription": "'{0}' è troppo grande o presenta un formato non valido.",
- "namedNetworkUploadInvalidTitle": "'{0}' non è valido",
- "namedNetworkUploadIpRange": "Carica",
- "namedNetworkUploadSuccessDescription": "{0} righe analizzate. {1} righe in un formato non valido. {2} righe ignorate.",
- "namedNetworkUploadSuccessTitle": "L'analisi di '{0}' è stata completata",
- "namedNetworksAdd": "Nuova località denominata",
- "namedNetworksConditionHelpDescription": "È possibile controllare l'accesso degli utenti in base alla posizione fisica.\n[Altre informazioni][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
- "namedNetworksExcludeLabel": "{0} e {1} escluse",
- "namedNetworksHelpDescription": "Le posizioni specifiche vengono usate dai report sulla sicurezza di Azure AD per ridurre i falsi positivi e dai criteri di accesso condizionale di Azure AD.\n[Altre informazioni][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
- "namedNetworksIncludeLabel": "{0} inclusi",
- "namedNetworksNone": "Non sono state trovate località denominate.",
- "namedNetworksTitle": "Configura posizioni",
- "namednetworkExceedingSizeErrorBladeTitle": "Dettagli errore",
- "namednetworkExceedingSizeErrorDetailText": "Fare clic qui per altri dettagli.",
- "namednetworkExceedingSizeErrorMessage": "È stato superato lo spazio di archiviazione massimo consentito per le località denominate. Riprovare con un elenco più breve. Fare clic qui per visualizzare altri dettagli.",
- "newCertName": "nuovo certificato",
- "noPolicyRowMessage": "Nessun criterio",
- "noSPSelected": "Nessuna entità servizio selezionata",
- "noUpdatePermissionMessage": "Non si è autorizzati ad aggiornare queste impostazioni. Per ottenere l'accesso, contattare l'amministratore globale.",
- "noUserSelected": "Nessun utente selezionato",
- "noneRisk": "Nessun rischio",
- "office365Description": "Queste app includono Microsoft Flow, Microsoft Forms, Microsoft Teams, Office 365 Exchange Online, Office 365 SharePoint Online, Office 365 Yammer e altre ancora.",
- "office365InfoBox": "Almeno una delle app selezionate fa parte di Office 365. È consigliabile impostare il criterio sull'app di Office 365.",
- "oneUserSelected": "1 utente selezionato",
- "onlyGlobalAdminsCanSaveThisPolicyConfig": "Solo gli amministratori globali possono salvare questi criteri.",
- "or": "{0} OR {1} ",
- "pickerDoneCommand": "Fatto",
- "policiesBladeAdPremiumUpsellBannerText": "È possibile creare criteri personalizzati per soddisfare condizioni specifiche, ad esempio app cloud, rischio di accesso e piattaforme di dispositivi con Azure AD Premium",
- "policiesBladeTitle": "Criteri",
- "policiesBladeTitleWithAppName": "Criteri: {0}",
- "policiesDisabledBannerText": "Non è consentito creare e modificare criteri per applicazioni con un attributo di accesso collegato.",
- "policiesHitMaxLimitStatusBarMessage": "È stato raggiunto il numero massimo di criteri per questo tenant. Eliminare alcuni criteri prima di crearne altri.",
- "policyAssignmentsSection": "Assegnazioni",
- "policyBlockAllInfoBox": "Il criterio configurato bloccherà tutti gli utenti, quindi non è supportato. Verificare le assegnazioni e i controlli. Escludere l'utente corrente {0}, se si desidera salvare questo criterio.",
- "policyCloudAppsDisplayTextAllApp": "Tutte le app",
- "policyCloudAppsLabel": "App cloud",
- "policyConditionClientAppDescription": "Software che l'utente usa per accedere all'app cloud. Ad esempio, 'Browser'",
- "policyConditionClientAppV2Description": "Software che l'utente usa per accedere all'app cloud. Ad esempio, 'Browser'",
- "policyConditionDevicePlatform": "Piattaforme del dispositivo",
- "policyConditionDevicePlatformDescription": "Piattaforma da cui accede l'utente. Ad esempio, 'iOS'",
- "policyConditionLocation": "Località",
- "policyConditionLocationDescription": "Posizione (determinata tramite l'intervallo di indirizzi IP) da cui accede l'utente",
- "policyConditionSigninRisk": "Rischio di accesso",
- "policyConditionSigninRiskDescription": "Probabilità che l'accesso provenga da una persona diversa dall'utente. Il livello di rischio può essere alto, medio o basso. Richiede una licenza di Azure AD Premium 2.",
- "policyConditionUserRisk": "Rischio utente",
- "policyConditionUserRiskDescription": "Consente di configurare i livelli di rischio utente necessari per l'applicazione dei criteri",
- "policyConditioniClientApp": "App client",
- "policyConditioniClientAppV2": "App client (anteprima)",
- "policyControlAllowAccessDisplayedName": "Concedi accesso",
- "policyControlAuthenticationStrengthDisplayedName": "Richiedi livello di autenticazione (anteprima)",
- "policyControlBladeTitle": "Concedi",
- "policyControlBlockAccessDisplayedName": "Blocca accesso",
- "policyControlCompliantDeviceDisplayedName": "Richiedi che i dispositivi siano contrassegnati come conformi",
- "policyControlContentDescription": "Controllare l'imposizione dell'accesso per bloccare o concedere l'accesso.",
- "policyControlInfoBallonText": "Permette di bloccare l'accesso o di selezionare requisiti aggiuntivi che devono essere soddisfatti per consentire l'accesso",
- "policyControlMfaChallengeDisplayedName": "Richiedi autenticazione a più fattori",
- "policyControlRequireCompliantAppDisplayedName": "Richiedi criteri di protezione dell'app",
- "policyControlRequireDomainJoinedDisplayedName": "Richiedi dispositivo aggiunto ad Azure AD ibrido",
- "policyControlRequireMamDisplayedName": "Richiedi app client approvata",
- "policyControlRequiredPasswordChangeDisplayedName": "Richiedi modifica password",
- "policyControlSelectAuthStrength": "Richiedi complessità dell'autenticazione",
- "policyControlsNoControlsSelected": "0 controlli selezionati",
- "policyControlsSection": "Controlli di accesso",
- "policyCreatBladeTitle": "Nuova",
- "policyCreateButton": "Crea",
- "policyCreateFailedMessage": "Errore: {0}",
- "policyCreateFailedTitle": "Non è stato possibile creare '{0}'",
- "policyCreateInProgressTitle": "Creazione della rete '{0}'",
- "policyCreateSuccessMessage": "La creazione di '{0}' è riuscita. I criteri saranno abilitati entro pochi minuti se l'opzione \"Abilita criteri\" è impostata su \"Sì\".",
- "policyCreateSuccessTitle": "La creazione di '{0}' è riuscita",
- "policyDeleteConfirmation": "Eliminare '{0}'? Questa azione non può essere annullata.",
- "policyDeleteFailTitle": "Non è stato possibile eliminare '{0}'",
- "policyDeleteInProgressTitle": "Eliminazione di '{0}'",
- "policyDeleteSuccessTitle": "L'eliminazione di '{0}' è riuscita",
- "policyEnforceLabel": "Abilita criterio",
- "policyErrorCannotSetSigninRisk": "Non si è autorizzati a salvare criteri con una condizione di rischio di accesso.",
- "policyErrorNoPermission": "Non si è autorizzati a salvare i criteri. Contattare l'amministratore globale.",
- "policyErrorUnknown": "Si è verificato un errore. Riprovare più tardi.",
- "policyFallbackWarningMessage": "Errore durante la creazione o l'aggiornamento di '{0}' usando MS Graph con conseguente fallback in Ad Graph. Esaminare lo scenario seguente perché è molto probabile che si presenti un bug quando si chiama l'endpoint dei criteri per MS Graph con una condizione non compatibile.",
- "policyFallbackWarningTitle": "Creazione o aggiornamento di '{0}' eseguito parzialmente",
- "policyNameCannotBeEmpty": "Il nome dei criteri non può essere vuoto",
- "policyNameDevice": "Criteri del dispositivo",
- "policyNameFormat": "[{0}] {1}",
- "policyNameMam": "Criteri di Gestione delle app per dispositivi mobili",
- "policyNameMfaLocation": "Criteri di MFA e posizione",
- "policyNamePlaceholderText": "Ad esempio: 'Criteri app conformità dispositivo'",
- "policyNameTooLongError": "Il nome dei criteri è troppo lungo. La lunghezza massima è 256 caratteri",
- "policyOff": "Disattivato",
- "policyOn": "Attivato",
- "policyReportOnly": "Solo report",
- "policyReviewSection": "Visualizza",
- "policySaveButton": "Salva",
- "policyStatusIconDescription": "Criteri abilitati",
- "policyStatusIconEnabled": "Icona stato abilitato",
- "policyTemplateName1": "Usa restrizioni imposte dall'app per l'accesso a {0} tramite il browser",
- "policyTemplateName2": "Consenti l'accesso a {0} solo su dispositivi gestiti",
- "policyTemplateName3": "Criterio sottoposto a migrazione dalle impostazioni di Valutazione continua dell'accesso",
- "policyTriggerRiskSpecific": "Selezionare il livello di rischio specifico",
- "policyTriggersInfoBalloonText": "Condizioni che definiscono la condizione in base a cui si applicano i criteri. Ad esempio, 'posizione'",
- "policyTriggersNoConditionsSelected": "0 condizioni selezionate",
- "policyTriggersSelectorLabel": "Condizioni",
- "policyUpdateFailedMessage": "Errore: {0}",
- "policyUpdateFailedTitle": "Non è stato possibile aggiornare {0}",
- "policyUpdateInProgressTitle": "Aggiornamento di {0}",
- "policyUpdateSuccessMessage": "L'aggiornamento di {0} è riuscito. I criteri saranno abilitati entro pochi minuti se l'opzione \"Abilita criteri\" è impostata su \"Sì\".",
- "policyUpdateSuccessTitle": "L'aggiornamento di {0} è stato completato",
- "primaryCol": "Primario",
- "privateLinkLabel": "Collegamento privato di Azure AD",
- "reportOnlyInfoBox": "Modalità Solo report: i criteri vengono valutati e registrati all'accesso ma non influiscono sugli utenti.",
- "requireAllControlsText": "Richiedi tutti i controlli selezionati",
- "requireCompliantDevice": "Richiedi un dispositivo conforme",
- "requireDomainJoined": "Richiedi dispositivo aggiunto a un dominio",
- "requireMFA": "Richiedi autenticazione a più fattori ",
- "requireOneControlText": "Richiedi uno dei controlli selezionati",
- "resetFilters": "Reimposta filtri",
- "sPRequired": "Entità servizio obbligatoria",
- "sPSelectorInfoBalloon": "Utente o entità servizio da testare",
- "saturday": "Sabato",
- "searchTextTooLongError": "Il testo di ricerca è troppo lungo. Al massimo 256 caratteri",
- "securityDefaultsPolicyName": "Impostazioni predefinite per la sicurezza",
- "securityDefaultsTextMessage": "Le impostazioni predefinite per la sicurezza devono essere disabilitate per abilitare i criteri di accesso condizionale.",
- "securityDefaultsWarningMessage": "Si sta per gestire le configurazioni di sicurezza dell'organizzazione. È prima di tutto necessario disabilitare le impostazioni predefinite per la sicurezza prima di abilitare i criteri di accesso condizionale.",
- "selectDevicePlatforms": "Seleziona piattaforme del dispositivo",
- "selectNamedNetworksSubtitle": "",
- "selectNamedNetworksTitle": "Seleziona percorsi",
- "selectedSP": "Entità servizio selezionata",
- "servicePrincipalDataGridAria": "Elenco delle entità servizio disponibili",
- "servicePrincipalDropDownLabel": "A cosa si applica questo criterio?",
- "servicePrincipalInfoBox": "Alcune condizioni non sono disponibili a causa della selezione di '{0}' nell'assegnazione dei criteri",
- "servicePrincipalRadioAll": "Tutte le entità servizio possedute",
- "servicePrincipalRadioSelect": "Seleziona entità servizio",
- "servicePrincipalSelectionsAria": "Griglia delle entità servizio selezionate",
- "servicePrincipalSelectorAria": "Elenco delle entità servizio selezionate",
- "servicePrincipalSelectorMultiple": "{0} entità servizio selezionate",
- "servicePrincipalSelectorSingle": "1 entità servizio selezionata",
- "servicePrincipalSpecificInc": "Entità servizio specifiche incluse",
- "servicePrincipals": "Entità servizio",
- "sessionControlBladeTitle": "Sessione",
- "sessionControlDescriptionContent": "È possibile controllare l'accesso in base ai controlli della sessione per abilitare esperienze limitate entro applicazioni cloud specifiche.",
- "sessionControlDisableInfo": "Questo controllo funziona solo con le app supportate. Attualmente Office 365, Exchange Online e SharePoint Online sono le uniche app cloud che supportano le restrizioni imposte dalle app. Fare clic qui per altre informazioni.",
- "sessionControlInfoBallonText": "I controlli della sessione abilitano un'esperienza limitata in un'app cloud.",
- "sessionControls": "Controlli della sessione",
- "sessionControlsAppEnforcedLabel": "Usa restrizioni imposte dalle app",
- "sessionControlsCasLabel": "Usa Controllo app per l'accesso condizionale",
- "sessionControlsSecureSignInLabel": "Richiedi binding del token",
- "sharepointAppName": "SharePoint",
- "signinRiskDescription": "Selezionare il livello di rischio di accesso a cui verranno applicati questi criteri",
- "signinRiskInclude": "{0} inclusi",
- "signinRiskTriggerDescriptionContent": "Selezionare il livello di rischio di accesso",
- "singleTenantServicePrincipalInfoBallonText": "Il criterio si applica solo alle singole entità servizio tenant di proprietà dell'organizzazione. Fare clic qui per altre informazioni ",
- "specificSigninRiskLevelsOption": "Selezionare i livelli di rischio di accesso specifici",
- "specificUsersExcluded": "utenti specifici esclusi",
- "specificUsersIncluded": "Utenti specifici inclusi",
- "specificUsersIncludedAndExcluded": "Utenti specifici esclusi e inclusi",
- "startDatePickerLabel": "Inizia",
- "startFreeTrial": "Avviare una versione di valutazione gratuita",
- "startTimePickerLabel": "Ora di inizio",
- "sunday": "Domenica",
- "testButton": "What If",
- "thumbprintCol": "Identificazione personale",
- "thursday": "Giovedì",
- "timeConditionAllTimesLabel": "In qualsiasi momento",
- "timeConditionIntroText": "Configurare gli orari a cui verranno applicati i criteri",
- "timeConditionSelectorInfoBallonContent": "Momento in cui l'utente esegue l'accesso. Ad esempio: \"Mercoledì 9:00 - 17:00 PST\"",
- "timeConditionSelectorLabel": "Ora (anteprima)",
- "timeConditionSpecificLabel": "Orari specifici",
- "timeSelectorAllTimesText": "In qualsiasi momento",
- "timeSelectorSpecificTimesText": "Orari specifici configurati",
- "timeZoneDropdownInfoBalloonContent": "Selezionare un fuso orario che definisca l'intervallo di tempo. Questi criteri si applicano agli utenti in tutti i fusi orari. Ad esempio, 'Mercoledì 9:00 - 17:00' per un utente potrebbe essere 'Mercoledì 10:00 - 18:00' per un altro utente in un fuso orario diverso.",
- "timeZoneDropdownLabel": "Fuso orario",
- "timeZoneDropdownPlaceholderText": "Selezionare un fuso orario",
- "tooManyPoliciesDescription": "Sono attualmente visualizzati solo i primi 50 criteri. Fare clic qui per visualizzarli tutti",
- "tooManyPoliciesTitle": "Più di 50 criteri trovati",
- "trustedLocationStatusIconDescription": "La posizione è considerata attendibile",
- "trustedLocationStatusIconEnabled": "Icona dello stato attendibile",
- "tuesday": "Martedì",
- "uploadInBadState": "Non è possibile caricare il file specificato.",
- "upsellAppsDescription": "È possibile richiedere l'autenticazione a più fattori per le applicazioni sensibili sempre oppure solo dall'esterno della rete aziendale.",
- "upsellAppsTitle": "Proteggere le applicazioni",
- "upsellBannerText": "Per accedere a questa funzionalità, usare una versione di valutazione gratuita Premium",
- "upsellDataDescription": "È possibile richiedere che i dispositivi siano contrassegnati come conformi o aggiunti ad Azure AD ibrido per consentire l'accesso alle risorse aziendali.",
- "upsellDataTitle": "Proteggere i dati",
- "upsellDescription": "L'accesso condizionale garantisce il controllo e la protezione necessari per proteggere i dati aziendali, offrendo al contempo ai dipendenti un'esperienza che permette loro di svolgere il proprio lavoro al meglio e da qualsiasi dispositivo. Ad esempio, è possibile bloccare l'accesso dall'esterno della rete aziendale oppure bloccare l'accesso ai dispositivi che non soddisfano i requisiti di conformità.",
- "upsellRiskDescription": "È possibile richiedere Multi-Factor Authentication per gli eventi di rischio rilevati dal sistema di Machine Learning di Microsoft.",
- "upsellRiskTitle": "Proteggersi dai rischi",
- "upsellTitle": "Accesso condizionale",
- "upsellWhyTitle": "Vantaggi dell'accesso condizionale",
- "userAppNoneOption": "Nessuno",
- "userNamePlaceholderText": "Immetti nome utente",
- "userNotSetSeletorLabel": "0 utenti e gruppi selezionati",
- "userOnlySelectionBladeExcludeDescription": "Selezionare i gruppi da escludere dai criteri",
- "userOrGroupSelectionCountDiffBannerText": "{0} configurati in questo criterio sono stati eliminati dalla directory, ma questa operazione non influisce sugli altri utenti e gruppi nel criterio. Al successivo aggiornamento del criterio gli utenti e/o i gruppi eliminati verranno rimossi automaticamente.",
- "userOrSPNotSetSelectorLabel": "0 utenti o identità del carico di lavoro selezionati",
- "userOrSPSelectionBladeTitle": "Utenti o identità del carico di lavoro",
- "userOrSPSelectorInfoBallonText": "Identità nella directory a cui si applicano i criteri, inclusi utenti, gruppi ed entità servizio",
- "userRequired": "L'utente è obbligatorio",
- "userRiskErrorBox": "È necessario selezionare la condizione \"Rischio utente\" quando è selezionata la concessione \"Richiedi modifica password\"",
- "userSPRequired": "Utente o entità servizio obbligatori",
- "userSPSelectorTitle": "Utente o identità del carico di lavoro",
- "userSelectionBladeAllUsersAndGroups": "Tutti gli utenti e i gruppi",
- "userSelectionBladeExcludeDescription": "Selezionare gli utenti e i gruppi da escludere dai criteri",
- "userSelectionBladeExcludeTabTitle": "Escludi",
- "userSelectionBladeExcludedSelectorTitle": "Selezionare gli utenti esclusi",
- "userSelectionBladeIncludeDescription": "Selezionare gli utenti a qui verranno applicati i criteri",
- "userSelectionBladeIncludeTabTitle": "Includi",
- "userSelectionBladeIncludedSelectorTitle": "Seleziona",
- "userSelectionBladeSelectUsers": "Seleziona utenti",
- "userSelectionBladeSelectedUsers": "Seleziona utenti e gruppi",
- "userSelectionBladeTitle": "Utenti e gruppi",
- "userSelectorBladeTitle": "Utenti",
- "userSelectorExcluded": "{0} esclusi",
- "userSelectorGroupPlural": "{0} gruppi",
- "userSelectorGroupSingular": "1 gruppo",
- "userSelectorIncluded": "{0} inclusi",
- "userSelectorInfoBallonText": "Utenti e gruppi nella directory a cui si applicano i criteri. Ad esempio, 'Gruppo pilota'",
- "userSelectorSelected": "{0} selezionati",
- "userSelectorTitle": "Utente",
- "userSelectorUserAndGroup": "{0}, {1}",
- "userSelectorUserPlural": "{0} utenti",
- "userSelectorUserSingular": "1 utente",
- "userSelectorWithExclusion": "{0} e {1}",
- "usersGroupsLabel": "Utenti e gruppi",
- "viewApprovedAppsText": "Visualizza l'elenco di app client approvate",
- "viewCompliantAppsText": "Visualizza l'elenco di app client protette da criteri",
- "vpnBladeTitle": "Connettività VPN",
- "vpnCertCreateFailedMessage": "Errore: {0}",
- "vpnCertCreateFailedTitle": "Impossibile creare {0}",
- "vpnCertCreateInProgressTitle": "Creazione del tipo di risorsa {0}",
- "vpnCertCreateSuccessMessage": "La creazione di {0} è riuscita.",
- "vpnCertCreateSuccessTitle": "La creazione di {0} è riuscita",
- "vpnCertNoRowsMessage": "Non sono stati trovati certificati VPN",
- "vpnCertUpdateFailedMessage": "Errore: {0}",
- "vpnCertUpdateFailedTitle": "Non è stato possibile aggiornare {0}",
- "vpnCertUpdateInProgressTitle": "Aggiornamento di {0}",
- "vpnCertUpdateSuccessMessage": "L'aggiornamento di {0} è stato completato.",
- "vpnCertUpdateSuccessTitle": "L'aggiornamento di {0} è stato completato",
- "vpnFeatureInfo": "Per altre informazioni sulla connettività VPN e l'accesso condizionale, fare clic qui.",
- "vpnFeatureWarning": "Dopo la creazione di un certificato VPN nel portale di Azure, Azure AD inizierà a usarlo immediatamente per rilasciare certificati di breve durata per il client VPN. È essenziale che il certificato VPN venga distribuito immediatamente nel server VPN per evitare problemi relativi alla convalida delle credenziali del client VPN.",
- "vpnMenuText": "Connettività VPN",
- "vpncertDropdownDefaultOption": "Durata",
- "vpncertDropdownInfoBalloonContent": "Selezionare la durata per il certificato da creare",
- "vpncertDropdownLabel": "Seleziona durata",
- "vpncertDropdownOneyearOption": "1 anno",
- "vpncertDropdownThreeyearOption": "3 anni",
- "vpncertDropdownTwoyearOption": "2 anni",
- "wednesday": "Mercoledì",
- "whatIfAppEnforcedControl": "Usa restrizioni imposte dalle app",
- "whatIfBladeDescription": "Verifica l'impatto dell'accesso condizionale su un utente quando viene eseguito l'accesso in determinate condizioni.",
- "whatIfBladeTitle": "What If",
- "whatIfClassicPoliciesWarning": "I criteri classici non vengono valutati da questo strumento.",
- "whatIfClientAppInfo": "App client da cui l'utente esegue l'accesso, ad esempio 'browser'.",
- "whatIfCountry": "Paese",
- "whatIfCountryInfo": "Paese da cui l'utente esegue l'accesso.",
- "whatIfDevicePlatformInfo": "Piattaforma del dispositivo da cui l'utente esegue l'accesso.",
- "whatIfDeviceStateInfo": "Stato del dispositivo da cui l'utente esegue l'accesso",
- "whatIfEnterIpAddress": "Immettere l'indirizzo IP (ad esempio: 40.77.182.32)",
- "whatIfErrorInvalidIpAddress": "Specificato un indirizzo IP non valido.",
- "whatIfEvaResultApplication": "App cloud",
- "whatIfEvaResultClientApps": "App client",
- "whatIfEvaResultDevicePlatform": "Piattaforma del dispositivo",
- "whatIfEvaResultEmptyPolicy": "I criteri sono vuoti",
- "whatIfEvaResultInvalidCondition": "La condizione non è valida",
- "whatIfEvaResultInvalidPolicy": "I criteri non sono validi",
- "whatIfEvaResultLocation": "Località",
- "whatIfEvaResultNotEnoughInformation": "Le informazioni non sono sufficienti",
- "whatIfEvaResultPolicyNotEnabled": "I criteri non sono abilitati",
- "whatIfEvaResultSignInRisk": "Rischio di accesso",
- "whatIfEvaResultUsers": "Utenti e gruppi",
- "whatIfIpAddress": "Indirizzo IP",
- "whatIfIpAddressInfo": "Indirizzo IP da cui l'utente esegue l'accesso.",
- "whatIfIpCountryInfoBoxText": "Se si usa un indirizzo IP o un paese, entrambi i campi sono obbligatori e devono essere mappati correttamente.",
- "whatIfPolicyAppliesTab": "Criteri applicabili",
- "whatIfPolicyDoesNotApplyTab": "Criteri non applicabili",
- "whatIfReasons": "Motivo della non applicabilità dei criteri",
- "whatIfSelectClientApp": "Selezionare un'app client...",
- "whatIfSelectCountry": "Selezionare il paese...",
- "whatIfSelectDevicePlatform": "Seleziona piattaforma dispositivo...",
- "whatIfSelectPrivateLink": "Selezionare collegamento privato...",
- "whatIfSelectServicePrincipalRisk": "Seleziona il rischio principale del servizio...",
- "whatIfSelectSignInRisk": "Seleziona rischio di accesso...",
- "whatIfSelectType": "Selezionare il tipo di identità",
- "whatIfSelectUserRisk": "Selezionare il rischio utente...",
- "whatIfServicePrincipalRiskInfo": "Il livello di rischio associato all'accesso principale",
- "whatIfSignInRisk": "Rischio di accesso",
- "whatIfSignInRiskInfo": "Livello di rischio associato all'accesso",
- "whatIfUnknownAreas": "Aree sconosciute",
- "whatIfUserPickerLabel": "Utente selezionato",
- "whatIfUserPickerNoRowsLabel": "Nessun utente o entità servizio selezionati",
- "whatIfUserRiskInfo": "Livello di rischio associato all'utente",
- "whatIfUserSelectorInfo": "Utente nella directory da testare",
- "windows365InfoBox": "La selezione di Windows 365 influirà sulle connessioni ai Cloud PC e agli host di sessione di Desktop virtuale Azure. Fare clic qui per altre informazioni.",
- "windowsDisplayName": "Windows",
- "windowsPhoneDisplayName": "Windows Phone",
- "workloadIdentities": "Identità del carico di lavoro (anteprima)",
- "workloadIdentity": "Identità del carico di lavoro"
- },
- "ApplicableDeviceType": {
- "iPad": "iPad",
- "iPhoneAndIPod": "iPhone e iPod"
- },
- "TAPSettings": {
- "AllowedDataIngestionLocations": {
- "label": "Consenti agli utenti di aprire dati dai servizi selezionati",
- "tooltip": "Selezionare i servizi di archiviazione dell'applicazione da cui gli utenti possono aprire dati. Tutti gli altri servizi sono bloccati. Se non si seleziona alcun servizio, gli utenti non potranno aprire i dati."
- },
- "AndroidBackup": {
- "label": "Esegui il backup dei dati dell'organizzazione nei servizi di backup di Android",
- "tooltip": "Selezionare {0} per impedire il backup dei dati dell'organizzazione nei servizi di backup di Android. \r\nSelezionare {1} per consentire il backup dei dati dell'organizzazione nei servizi di backup di Android. \r\nNon influisce sui dati personali o non gestiti."
- },
- "AndroidBiometricAuthentication": {
- "label": "Biometria invece del PIN per l'accesso",
- "tooltip": "Scegliere eventuali metodi di autenticazione di Android che possono essere usati dagli utenti invece del PIN dell'app."
- },
- "AndroidFingerprint": {
- "label": "Impronta digitale invece del PIN per l'accesso (Android 6.0+)",
- "tooltip": "Il sistema operativo Android usa le scansioni dell'impronta digitale per l'autenticazione degli utenti dei dispositivi Android. Questa funzionalità supporta i controlli biometrici nei dispositivi Android. Le impostazioni biometriche specifiche di OEM, come Samsung Pass, non sono supportate. Se consentiti, i controlli biometrici devono essere usati per accedere all'app in un dispositivo compatibile."
- },
- "AndroidOverrideFingerprint": {
- "label": "Esegui l'override dell'impronta digitale con il PIN dopo il timeout"
- },
- "AppPIN": {
- "label": "PIN dell'app quando il PIN del dispositivo è configurato",
- "tooltip": "Se non è obbligatorio, non è necessario usare un PIN dell'app per accedere all'app se il PIN del dispositivo è impostato su un dispositivo registrato in MDM.
\r\n\r\nNota: Intune non può rilevare la registrazione di dispositivi con una soluzione EMM di terze parti in Android."
- },
- "BlockDataIngestionIntoOrganizationDocuments": {
- "label": "Apri dati nei documenti dell'organizzazione",
- "tooltip1": "Selezionare Blocca per disabilitare l'uso dell'opzione Apri o di altre opzioni per la condivisione di dati tra account in questa app. Selezionare Consenti se si vuole consentire l'uso dell'opzione Apri e di altre opzioni per la condivisione di dati tra account in questa app.",
- "tooltip2": "Se questa opzione è impostata su Blocca, è possibile configurare l'impostazione seguente, Consenti agli utenti di aprire dati dai servizi selezionati, per specificare quali servizi sono consentiti per le posizioni dei dati dell'organizzazione.",
- "tooltip3": "Nota: questa opzione viene applicata solo se l'impostazione \"Ricevi dati da altre app\" è impostata su \"App gestite da criteri\".
\r\nNota: questa impostazione non è applicabile a tutte le applicazioni. Per altre informazioni, vedere {0}.",
- "tooltip4": "Nota: questa opzione viene applicata solo se l'impostazione \"Ricevi dati da altre app\" è impostata su \"App gestite da criteri\".
\r\nNota: questa impostazione non è applicabile a tutte le applicazioni. Per altre informazioni, vedere {0} o {0}."
- },
- "ConnectToVpnOnLaunch": {
- "label": "Avviare la connessione a Microsoft Tunnel all'avvio dell'app",
- "tooltip": "Consentire la connessione alla VPN all'avvio dell'app"
- },
- "CredentialsForAccess": {
- "label": "Credenziali dell'account aziendale o dell'istituto di istruzione per l'accesso",
- "tooltip": "Se necessario, le credenziali aziendali o dell'istituto di istruzione devono essere usate per accedere all'app gestita da criteri. Se sono necessari anche il PIN o metodi biometrici per l'accesso all'app, le credenziali dell'account aziendale o dell'istituto di istruzione verranno richieste oltre a tali prompt."
- },
- "CustomBrowserDisplayName": {
- "label": "Nome del browser non gestito",
- "tooltip": "Immettere il nome dell'applicazione per il browser associato all'impostazione \"ID browser non gestito\". Questo nome verrà visualizzato agli utenti se il browser specificato non è installato."
- },
- "CustomBrowserPackageId": {
- "label": "ID browser non gestito",
- "tooltip": "Immettere l'ID applicazione per un singolo browser. Il contenuto Web (http/s) dalle applicazioni gestite in base a criteri verrà aperto nel browser specificato."
- },
- "CustomBrowserProtocol": {
- "label": "Protocollo del browser non gestito",
- "tooltip": "Immettere il protocollo per un singolo browser non gestito. Il contenuto Web (http/s) dalle applicazioni gestite in base a criteri verrà aperto in qualsiasi app che supporta tale protocollo.
\r\n \r\nNota: includere solo il prefisso del protocollo. Se il browser richiede collegamenti con formato \"browserpersonale://www.microsoft.com\", immettere \"browserpersonale\".
"
- },
- "CustomDialerAppDisplayName": {
- "label": "Nome dell'app dialer"
- },
- "CustomDialerAppPackageId": {
- "label": "ID pacchetto dell'app dialer"
- },
- "CustomDialerAppProtocol": {
- "label": "Schema dell'URL dell'app dialer"
- },
- "Cutcopypaste": {
- "label": "Limita le operazioni taglia, copia e incolla tra altre app",
- "tooltip": "È possibile tagliare, copiare e incollare dati tra l'app e le altre app approvate installate nel dispositivo. Si può scegliere di bloccare completamente queste azioni tra le app, consentire queste azioni per l'uso con qualsiasi app o limitare l'uso alle app gestite dall'organizzazione.
\r\n\r\nApp gestite da criteri con Incolla in consente di accettare il contenuto in ingresso incollato da un'altra app. Impedisce tuttavia agli utenti di condividere contenuti verso l'esterno, ad eccezione della condivisione con un'app gestita.
"
- },
- "DialerRestrictionLevel": {
- "iosTooltip": "In genere, quando un utente seleziona un numero di telefono con collegamento ipertestuale in un'app, viene aperta un'app dialer con il numero di telefono prepopolato e pronto da chiamare. Per questa impostazione, scegliere come gestire questo tipo di trasferimento di contenuto quando viene avviato da un'app gestita da criteri. Per rendere effettiva questa impostazione, potrebbero essere necessari ulteriori passaggi. In primo luogo, verificare che i protocolli tel e telprompt siano stati rimossi dall'elenco Selezionare le app da esentare. Assicurarsi quindi che l'applicazione stia usando una versione più recente di Intune SDK (versione 12.7.0+).",
- "label": "Trasferisci i dati delle telecomunicazioni a",
- "tooltip": "Quando un utente seleziona un numero di telefono con collegamento ipertestuale in un'app, verrà aperta in genere un'app dialer con il numero di telefono prepopolato e pronto per la chiamata. Per questa impostazione, è possibile scegliere come gestire questo tipo di trasferimento di contenuti quando viene avviato da un'app gestita da criteri."
- },
- "EncryptData": {
- "label": "Crittografa i dati dell'organizzazione",
- "link": "https://docs.microsoft.com/it-it/intune/app-protection-policy-settings-android#data-relocation-settings",
- "tooltip": "Selezionare {0} per imporre la crittografia dei dati dell'organizzazione con la crittografia a livello di app di Intune.\r\n
\r\nSelezionare {1} per non imporre la crittografia dei dati dell'organizzazione con la crittografia a livello di app di Intune.\r\n\r\n
\r\nNota: per altre informazioni sulla crittografia a livello di app di Intune, vedere {2}."
- },
- "EncryptDataAndroid": {
- "tooltip": "Scegliere Rendi obbligatorio per abilitare la crittografia dei dati aziendali o dell'istituto di istruzione in questa app. Intune usa uno schema di crittografia AES OpenSSL a 256 bit insieme al sistema Archivio chiavi Android per crittografare in modo sicuro i dati delle app. I dati vengono crittografati in modo sincrono durante le attività I/O dei file. Il contenuto nelle risorse di archiviazione del dispositivo è sempre crittografato. L'SDK continuerà a fornire supporto per le chiavi a 128 bit per assicurare la compatibilità con contenuto e con app che usano versioni precedenti dell'SDK.
\r\n\r\nIl metodo di crittografia è compatibile con FIPS 140-2.
"
- },
- "EncryptDataIos": {
- "tooltip1": "Scegliere Rendi obbligatorio per abilitare la crittografia dei dati aziendali o dell'istituto di istruzione in questa app. Intune applica la crittografia dei dispositivi iOS/iPadOS per proteggere i dati dell'app quando il dispositivo è bloccato. Le applicazioni possono crittografare facoltativamente i dati usando la crittografia di APP SDK. Intune APP SDK usa i metodi di crittografia iOS/iPadOS per applicare la crittografia AES a 128 bit ai dati delle app.",
- "tooltip2": "Quando si abilita questa impostazione, è possibile che venga richiesto all'utente di configurare e usare un PIN per accedere al dispositivo. Se non è disponibile alcun PIN del dispositivo e la crittografia è obbligatoria, viene richiesto all'utente di impostare un PIN con il messaggio \"L'organizzazione ha richiesto all'utente di abilitare prima di tutto un PIN del dispositivo per accedere all'app\".",
- "tooltip3": "Passare alla documentazione ufficiale di Apple per verificare i moduli di crittografia iOS conformi con FIPS 140-2 o in attesa di conformità con FIPS 140-2."
- },
- "EncryptDataOnEnrolledDevices": {
- "label": "Crittografa i dati dell'organizzazione nei dispositivi registrati",
- "tooltip": "Selezionare {0} per imporre la crittografia dei dati dell'organizzazione con la crittografia a livello di app di Intune in tutti i dispositivi.
\r\n\r\nSelezionare {1} per non imporre la crittografia dei dati dell'organizzazione con la crittografia a livello di app di Intune nei dispositivi registrati."
- },
- "IOSBackup": {
- "label": "Esegui il backup dei dati dell'organizzazione nei backup di iTunes e iCloud",
- "tooltip": "Selezionare {0} per impedire il backup dei dati dell'organizzazione in iTunes o iCloud. \r\nSelezionare {1} per consentire il backup dei dati dell'organizzazione in iTunes o iCloud. \r\nNon influisce sui dati personali o non gestiti."
- },
- "IOSFaceID": {
- "label": "Face ID invece del PIN per l'accesso (iOS 11+/iPadOS)",
- "tooltip": "Face ID usa la tecnologia di riconoscimento facciale per autenticare gli utenti nei dispositivi iOS/iPadOS. Intune chiama l'API LocalAuthentication per autenticare gli utenti con Face ID. Se consentito, Face ID deve essere usato per accedere all'app in un dispositivo compatibile con Face ID."
- },
- "IOSOverrideTouchId": {
- "label": "Esegui l'override dei dati biometrici con il PIN dopo il timeout"
- },
- "IOSTouchId": {
- "label": "Touch ID invece del PIN per l'accesso (iOS 8+/iPadOS)",
- "tooltip": "Touch ID usa la tecnologia di riconoscimento dell'impronta digitale per autenticare gli utenti nei dispositivi iOS. Intune chiama l'API LocalAuthentication per autenticare gli utenti con Touch ID. Se consentito, Touch ID deve essere usato per accedere all'app in un dispositivo compatibile con Touch ID."
- },
- "NotificationRestriction": {
- "label": "Notifiche sui dati dell'organizzazione",
- "tooltip": "Selezionare una delle opzioni seguenti per specificare il modo in cui vengono visualizzate le notifiche per gli account dell'organizzazione per questa app e per eventuali dispositivi connessi, ad esempio i dispositivi indossabili:
\r\n{0}: le notifiche non vengono condivise.
\r\n{1}: i dati dell'organizzazione non vengono condivisi nelle notifiche. Se questa opzione non è supportata dall'applicazione, le notifiche vengono bloccate.
\r\n{2}: tutte le notifiche vengono condivise.
\r\n Solo Android:\r\n Nota: questa impostazione non è applicabile a tutte le applicazioni. Per altre informazioni, vedere {3}
\r\n \r\n Solo iOS:\r\nNota: questa impostazione non è applicabile a tutte le applicazioni. Per altre informazioni, vedere {4}
"
- },
- "OpenLinksManagedBrowser": {
- "label": "Limita il trasferimento di contenuto Web con altre app",
- "tooltip": "Selezionare una delle opzioni seguenti per specificare le app in cui questa app può aprire contenuto Web:
\r\nEdge: consente l'apertura del contenuto Web solo in Edge
\r\nBrowser non gestito: consente l'apertura del contenuto Web solo nel browser non gestito definito nell'impostazione \"Protocollo del browser non gestito\"
\r\nQualsiasi app: consente i collegamenti Web in qualsiasi app
"
- },
- "OverrideBiometric": {
- "tooltip": "Se necessario, in base al timeout (minuti di inattività), un prompt del PIN eseguirà l'override dei prompt di biometria. Se questo valore di timeout non viene raggiunto, continuerà a essere visualizzato il prompt di biometria. Il valore di timeout deve essere superiore al valore specificato in 'Controlla di nuovo i requisiti di accesso dopo (minuti di inattività)'. "
- },
- "PinAccess": {
- "label": "PIN per l'accesso",
- "tooltip": "Se necessario, un PIN deve essere usato per accedere all'app gestita da criteri. Gli utenti devono creare un PIN di accesso alla prima apertura dell'app da un account aziendale o dell'istituto di istruzione."
- },
- "PinLength": {
- "label": "Selezionare la lunghezza minima del PIN",
- "tooltip": "Questa impostazione specifica il numero minimo di cifre di un PIN."
- },
- "PinType": {
- "label": "Tipo di PIN",
- "tooltip": "I PIN numerici sono costituiti completamente da numeri. I passcode sono costituiti da caratteri alfanumerici e caratteri speciali. "
- },
- "Printing": {
- "label": "Stampa dei dati dell'organizzazione",
- "tooltip": "Se questa opzione è bloccata, l'app non può stampare dati protetti."
- },
- "ReceiveData": {
- "label": "Ricevi dati da altre app",
- "tooltip": "Selezionare una delle opzioni seguenti per specificare le app da cui questa app non può ricevere dati:
\r\n\r\nNessuna: non consente la ricezione di dati nei documenti o negli account dell'organizzazione da qualsiasi app
\r\n\r\nApp gestite da criteri: consente la ricezione di dati nei documenti o negli account dell'organizzazione solo da altre app gestite da criteri\r\n
\r\nTutte le app con dati dell'organizzazione in ingresso: consente la ricezione di dati nei documenti o negli account dell'organizzazione da qualsiasi app e permette di considerare tutti i dati in ingresso senza account utente come dati dell'organizzazione
\r\n\r\nTutte le app: consente la ricezione di dati nei documenti o negli account dell'organizzazione da qualsiasi app"
- },
- "RecheckAccessAfter": {
- "label": "Controlla di nuovo i requisiti di accesso dopo (minuti di inattività)\r\n\r\n",
- "tooltip": "Se l'app gestita da criteri è inattiva per un periodo superiore al numero di minuti di inattività specificato, l'app richiederà una nuova verifica dei requisiti di accesso (ad esempio PIN, impostazioni di avvio condizionale) dopo l'avvio dell'app."
- },
- "RestrictKeyboards": {
- "duplicatePackageError": "L'ID pacchetto deve essere univoco.",
- "invalidPackageError": "L'ID pacchetto non è valido",
- "label": "Tastiere approvate",
- "select": "Selezionare le tastiere da approvare",
- "subtitle": "Aggiungere tutte le tastiere e i metodi di input che gli utenti sono autorizzati a usare con le app interessate. Immettere il nome della tastiera che si vuole venga visualizzato all'utente finale.",
- "title": "Aggiungi le tastiere approvate",
- "toolTip": "Selezionare Richiedi e quindi specificare un elenco di tastiere approvate per questo criterio. Altre informazioni."
- },
- "SaveData": {
- "label": "Salva copie dei dati dell'organizzazione",
- "tooltip": "Selezionare {0} per impedire il salvataggio di una copia dei dati dell'organizzazione in un nuovo percorso, diverso dai servizi di archiviazione selezionati, mediante \"Salva con nome\".\r\n Selezionare {1} per consentire il salvataggio di una copia dei dati dell'organizzazione in un nuovo percorso mediante \"Salva con nome\".
\r\n\r\n\r\nNota: questa impostazione non è applicabile a tutte le applicazioni. Per altre informazioni, vedere {2}.\r\n"
- },
- "SaveDataToSelected": {
- "label": "Consenti all'utente di salvare copie nei servizi selezionati",
- "tooltip": "Selezionare i servizi di archiviazione in cui gli utenti possono salvare copie dei dati dell'organizzazione. Tutti gli altri servizi sono bloccati. Se non si seleziona alcun servizio, gli utenti non potranno salvare una copia dei dati dell'organizzazione."
- },
- "ScreenCaptureAndAndroidAssistant": {
- "label": "Acquisizione di schermata e Assistente Google\r\n",
- "tooltip": "Se questa opzione è bloccata, le funzionalità di analisi di app di acquisizione di schermata e Assistente Google verranno disabilitate durante l'uso dell'app gestita da criteri. Questa funzionalità supporta l'app Assistente Google normale. Gli assistenti di terze parti che usano l'API Assistente Google non sono supportati. Se si sceglie Blocca l'immagine di anteprima della funzionalità di selezione app risulterà sfocata durante l'uso dell'app con un account aziendale o dell'istituto di istruzione."
- },
- "SendData": {
- "label": "Invia i dati dell'organizzazione ad altre app",
- "tooltip": "Selezionare una delle opzioni seguenti per specificare le app a cui questa app può inviare i dati dell'organizzazione:
\r\n\r\n\r\nNessuna: non consente l'invio di dati dell'organizzazione ad alcuna app
\r\n\r\n\r\nApp gestite da criteri: consente l'invio di dati dell'organizzazione solo ad altre app gestite da criteri
\r\n\r\n\r\nApp gestita da criteri con condivisione del sistema operativo: consente l'invio di dati dell'organizzazione solo ad altre app gestite da criteri e l'invio di documenti dell'organizzazione solo ad altre app gestite in MDM nei dispositivi registrati
\r\n\r\n\r\nApp gestite da criteri con filtro basato su Apri in/Condividi: consente l'invio di dati dell'organizzazione solo ad altre app gestite da criteri e l'applicazione di filtri alle finestre di dialogo Apri in/Condividi in modo che vengano visualizzate solo le app gestite da criteri\r\n
\r\n\r\nTutte le app: consente l'invio di dati dell'organizzazione a qualsiasi app"
- },
- "SimplePin": {
- "label": "PIN semplice",
- "tooltip": "Se questa opzione è bloccata, gli utenti non possono creare un PIN semplice. Un PIN semplice è una stringa di cifre consecutive o ripetitive, ad esempio 1234, ABCD o 1111. Si noti che il blocco di un PIN semplice di tipo 'Passcode' richiede che il passcode includa almeno un numero, una lettera e un carattere speciale."
- },
- "SyncContacts": {
- "label": "Sincronizza i dati delle app gestite da criteri con le app native o i componenti aggiuntivi"
- },
- "ThirdPartyKeyboards": {
- "infoBox": "Le restrizioni per la tastiera verranno applicate a tutte le aree di un'app. Gli account personali per le app che supportano più identità saranno interessati da questa restrizione. Altre informazioni.",
- "label": "Tastiere di terze parti"
- },
- "Timeout": {
- "label": "Timeout (minuti di inattività)"
- },
- "Tap": {
- "numberOfDays": "Numero di giorni",
- "pinResetAfterNumberOfDays": "Numero di giorni di attesa prima della reimpostazione del PIN",
- "previousPinBlockCount": "Selezionare il numero di valori precedenti del PIN da conservare"
- }
- },
- "WindowsFeatureUpdateProfile": {
- "Details": {
- "Description": {
- "label": "Descrizione"
- },
- "FeatureDeploymentSettings": {
- "header": "Impostazioni di distribuzione delle funzionalità"
- },
- "FeatureUpdateVersion": {
- "infoballoon": "Questa funzionalità non può effettuare il downgrade di un dispositivo.",
- "label": "Aggiornamento delle funzionalità da distribuire"
- },
- "GradualRolloutEndDate": {
- "label": "Disponibilità del gruppo finale"
- },
- "GradualRolloutInterval": {
- "label": "Giorni tra gruppi"
- },
- "GradualRolloutStartDate": {
- "label": "Prima disponibilità del gruppo"
- },
- "Name": {
- "label": "Nome"
- },
- "RolloutOptions": {
- "label": "Opzioni di implementazione"
- },
- "RolloutSettings": {
- "header": "Quando si desidera rendere disponibile l'aggiornamento in Windows Update?"
- },
- "ScopeSettings": {
- "header": "Configurare i tag di ambito per questo criterio."
- },
- "StartDateOnlyStartDate": {
- "label": "Prima data disponibile"
- },
- "bladeTitle": "Distribuzione di aggiornamenti delle funzionalità",
- "deploymentSettingsTitle": "Impostazioni di distribuzione",
- "loadError": "Il caricamento non è riuscito.",
- "windows11EULA": "Selezionando questo aggiornamento delle funzionalità per la distribuzione, accetti che quando si applica questo sistema operativo a un dispositivo (1) la licenza di Windows applicabile sia stata acquistata tramite contratti multilicenza o (2) che l'utente sia autorizzato a associare l'organizzazione e accetti per suo conto le Condizioni di licenza software Microsoft pertinente disponibile qui {0}."
- },
- "Notifications": {
- "deploymentSaved": "Il salvataggio di \"{0}\" è stato completato.",
- "newFeatureUpdateDeploymentCreated": "È stata creata una nuova distribuzione di aggiornamenti delle funzionalità."
- },
- "TabName": {
- "deploymentSettings": "Impostazioni di distribuzione",
- "groupAssignmentSettings": "Assegnazioni",
- "scopeSettings": "Tag di ambito"
- }
- },
- "OfficeUpdateChannel": {
- "current": "Canale corrente",
- "deferred": "Canale aziendale semestrale",
- "firstReleaseCurrent": "Canale corrente (anteprima)",
- "firstReleaseDeferred": "Canale Enterprise semestrale (Anteprima)",
- "monthlyEnterprise": "Canale aziendale mensile",
- "placeHolder": "Selezionare una voce"
- },
- "Win32ReturnCodes": {
- "CodeTypes": {
- "failed": "Errore",
- "hardReboot": "Avvio a freddo",
- "retry": "Riprova",
- "softReboot": "Avvio a caldo",
- "success": "Operazione completata"
- },
- "Columns": {
- "codeType": "Tipo di codice",
- "returnCode": "Codice restituito"
- },
- "bladeTitle": "Codici restituiti",
- "gridAriaLabel": "Codici restituiti",
- "header": "Specificare i codici restituiti per indicare il comportamento successivo all'installazione:",
- "onAddAnnounceMessage": "Codice restituito all'aggiunta dell'elemento {0} di {1}",
- "onDeleteSuccess": "Il codice restituito {0} è stato eliminato",
- "returnCodeAlreadyUsedValidation": "Il codice restituito è già in uso.",
- "returnCodeMustBeIntegerValidation": "Il codice restituito deve essere un numero intero.",
- "returnCodeShouldBeAtLeast": "Il codice restituito deve essere almeno {0}.",
- "returnCodeShouldBeAtMost": "Il codice restituito deve essere al massimo {0}.",
- "selectorLabel": "Codici restituiti"
- },
- "SecurityTemplate": {
- "aSR": "Riduzione della superficie di attacco",
- "accountProtection": "Protezione account",
- "allDevices": "Tutti i dispositivi",
- "antivirus": "Antivirus",
- "antivirusReporting": "Report dell'antivirus (anteprima)",
- "conditionalAccess": "Accesso condizionale",
- "deviceCompliance": "Conformità del dispositivo",
- "diskEncryption": "Crittografia del disco",
- "eDR": "Rilevamento di endpoint e risposta",
- "firewall": "Firewall",
- "helpSupport": "Guida e supporto tecnico",
- "setup": "Installazione",
- "wdapt": "Microsoft Defender per endpoint"
- },
- "PolicySet": {
- "appManagement": "Gestione applicazioni",
- "assignments": "Assegnazioni",
- "basics": "Informazioni di base",
- "deviceEnrollment": "Registrazione del dispositivo",
- "deviceManagement": "Gestione dei dispositivi",
- "scopeTags": "Tag di ambito",
- "appConfigurationTitle": "Criteri di configurazione dell'app",
- "appProtectionTitle": "Criteri di protezione delle app",
- "appTitle": "App",
- "iOSAppProvisioningTitle": "Profili di provisioning delle app iOS",
- "deviceLimitRestrictionTitle": "Restrizioni sul limite di dispositivi",
- "deviceTypeRestrictionTitle": "Restrizioni dei tipi di dispositivo",
- "enrollmentStatusSettingTitle": "Pagine di stato della registrazione",
- "windowsAutopilotDeploymentProfileTitle": "Profili di distribuzione di Windows Autopilot",
- "deviceComplianceTitle": "Criteri di conformità del dispositivo",
- "deviceConfigurationTitle": "Profili di configurazione del dispositivo",
- "powershellScriptTitle": "Script di PowerShell"
- },
- "AssignmentAction": {
- "exclude": "Escluso",
- "include": "Inclusi",
- "includeAllDevicesVirtualGroup": "Inclusi",
- "includeAllUsersVirtualGroup": "Inclusi"
- },
- "WindowsFeatureUpdate": {
- "EndOFSupportStatus": {
- "notSupported": "Non supportato",
- "supportEnding": "Fine supporto",
- "supported": "Supportato"
- }
- },
- "InstallIntent": {
- "available": "Disponibile per i dispositivi registrati",
- "availableWithoutEnrollment": "Disponibile con o senza registrazione",
- "required": "Obbligatorio",
- "uninstall": "Disinstalla"
- },
"OutlookAppConfig": {
"DataProtectionConfiguration": {
"header": "Configurazione della protezione dei dati"
@@ -1938,307 +100,864 @@
"themesEnabledTitle": "Temi abilitati",
"themesEnabledTooltip": "Specificare se l'utente è autorizzato a usare un tema visivo personalizzato."
},
- "TAP": {
- "AccessRequirements": {
- "infoText": "Configurare i requisiti per PIN e credenziali che gli utenti devono soddisfare per accedere alle app in un contesto aziendale."
- },
- "DataProtection": {
- "infoText": "Questo gruppo include i controlli di prevenzione della perdita dei dati, ad esempio restrizioni per operazioni di tipo taglia, copia, incolla e salva con nome. Queste impostazioni determinano il modo in cui gli utenti interagiscono con i dati nelle app."
- },
- "DeviceTypes": {
- "selectOne": "Selezionare almeno un tipo di dispositivo."
- },
- "TargetedApps": {
- "TargetToAll": {
- "label": "Specifica come destinatari le app in tutti i tipi di dispositivo"
- },
- "infoText": "Scegliere come si vuole applicare questo criterio alle app in dispositivi diversi. Quindi, aggiungere almeno un'app.",
- "selectOne": "Selezionare almeno un'app per creare un criterio."
- }
- },
- "TACSettings": {
- "edgeSettings": "Impostazioni di configurazione di Microsoft Edge",
- "edgeWindowsDataProtectionSettings": "Impostazioni di protezione dei dati di Microsoft Edge (Windows) - Anteprima",
- "edgeWindowsSettings": "Impostazioni di configurazione di Microsoft Edge (Windows) - Anteprima",
- "generalAppConfig": "Configurazione generale dell'app",
- "generalSettings": "Impostazioni di configurazione generali",
- "outlookSMIMEConfig": "Impostazioni di S/MIME per Outlook",
- "outlookSettings": "Impostazioni di configurazione di Outlook",
- "sMIME": "S/MIME"
- },
- "OfficeApplicationAdditionalType": {
- "projectProRetail": "Client desktop di Project Online",
- "visioProRetail": "Visio Online Piano 2"
- },
- "Win32Requirements": {
- "AdditionalRequirements": {
- "File": {
- "fileOrFolderToolTip": "File o cartella come requisito selezionato.",
- "pathToolTip": "Percorso completo del file o della cartella da rilevare.",
- "property": "Proprietà",
- "valueToolTip": "Selezionare un valore per il requisito corrispondente al metodo di rilevamento selezionato. I requisiti relativi a data e ora devono essere immessi nel formato locale."
- },
- "GridColumns": {
- "pathOrScript": "Percorso/Script",
- "type": "Tipo"
- },
- "Registry": {
- "keyPath": "Percorso della chiave",
- "keyPathTooltip": "Percorso completo della voce del Registro di sistema contenente il valore come requisito.",
- "operator": "Operator",
- "operatorTooltip": "Selezionare l'operatore per il confronto.",
- "registryRequirement": "Requisito relativo alla chiave del Registro di sistema",
- "registryRequirementTooltip": "Selezionare il confronto per il requisito relativo alla chiave del Registro di sistema.",
- "valueName": "Nome valore",
- "valueNameTooltip": "Nome del valore del Registro di sistema obbligatorio."
- },
- "RequirementTypeOptions": {
- "fileType": "File",
- "registry": "Registro",
- "script": "Script"
- },
- "Script": {
- "RequirementMethodOptions": {
- "boolean": "Booleano",
- "dateTime": "Data e ora",
- "float": "Virgola mobile",
- "integer": "Numero intero",
- "string": "Stringa",
- "version": "Versione"
- },
- "ScriptContent": {
- "emptyMessage": "Il contenuto dello script non deve essere vuoto."
- },
- "duplicateName": "Il nome {0} per lo script è già stato usato. Immettere un nome diverso.",
- "enforceSignatureCheck": "Imponi il controllo della firma degli script",
- "enforceSignatureCheckTooltip": "Selezionare 'Sì' per verificare che lo script sia firmato da un'entità di pubblicazione attendibile, in modo da consentire l'esecuzione dello script senza la visualizzazione di avvisi o richieste. Lo script verrà eseguito senza essere bloccato. Selezionare 'No' (impostazione predefinita) per eseguire lo script con la conferma dell'utente finale, ma senza la verifica della firma.",
- "loggedOnCredentials": "Esegui lo script con le credenziali dell'utente connesso",
- "loggedOnCredentialsTooltip": "Eseguire lo script usando le credenziali del dispositivo connesso.",
- "operatorTooltip": "Selezionare l'operatore per il confronto tra requisiti.",
- "requirementMethod": "Selezionare il tipo di dati di output",
- "requirementMethodTooltip": "Selezionare il tipo di dati usato durante la determinazione di un requisito di corrispondenza per il rilevamento.",
- "scriptFile": "File di script",
- "scriptFileTooltip": "Selezionare uno script di PowerShell che rileverà la presenza dell'app sul client. Se l'app viene rilevata, il processo relativo ai requisiti fornirà un codice di uscita con valore 0 e scriverà un valore di stringa in STDOUT.",
- "scriptName": "Nome script",
- "value": "Valore",
- "valueTooltip": "Selezionare un valore per il requisito corrispondente al metodo di rilevamento selezionato. I requisiti relativi a data e ora devono essere immessi nel formato locale."
- },
- "bladeTitle": "Aggiungi una regola relativa ai requisiti",
- "createRequirementHeader": "Creare un requisito.",
- "header": "Configurare regole aggiuntive relative ai requisiti",
- "label": "Regole aggiuntive relative ai requisiti",
- "noRequirementsSelectedPlaceholder": "Non sono stati specificati requisiti.",
- "requirementType": "Tipo di requisito",
- "requirementTypeTooltip": "Scegliere il tipo di metodo di rilevamento usato per determinare la modalità di convalida di un requisito."
- },
- "architectures": "Architettura del sistema operativo",
- "architecturesTooltip": "Scegliere le architetture necessarie per installare l'app.",
- "bladeTitle": "Requisiti",
- "diskSpace": "Spazio su disco necessario (MB)",
- "diskSpaceTooltip": "Spazio su disco disponibile necessario nell'unità di sistema per installare l'app.",
- "header": "Specificare i requisiti che i dispositivi devono rispettare prima dell'installazione dell'app:",
- "maximumTextFieldValue": "Il valore non può essere maggiore di {0}.",
- "minimumCpuSpeed": "Velocità di CPU minima necessaria (MHz)",
- "minimumCpuSpeedTooltip": "Velocità di CPU minima necessaria per installare l'app.",
- "minimumLogicalProcessors": "Numero minimo di processori logici necessari",
- "minimumLogicalProcessorsTooltip": "Numero minimo di processori logici necessari per installare l'app.",
- "minimumOperatingSystem": "Sistema operativo minimo",
- "minimumOperatingSystemTooltip": "Selezionare il sistema operativo minimo necessario per installare l'app.",
- "minumumTextFieldValue": "Il valore deve essere almeno {0}.",
- "physicalMemory": "Memoria fisica necessaria (MB)",
- "physicalMemoryTooltip": "Memoria fisica (RAM) necessaria per installare l'app.",
- "selectorLabel": "Requisiti",
- "validNumber": "Immettere un numero valido."
- },
- "ArchitectureOptions": {
- "sixtyFourBit": "64 bit",
- "thirtyTwoBit": "32 bit"
- },
- "Countries": {
- "ae": "Emirati Arabi Uniti",
- "ag": "Antigua e Barbuda",
- "ai": "Anguilla",
- "al": "Albania",
- "am": "Armenia",
- "ao": "Angola",
- "ar": "Argentina",
- "at": "Austria",
- "au": "Australia",
- "az": "Azerbaigian",
- "bb": "Barbados",
- "be": "Belgio",
- "bf": "Burkina Faso",
- "bg": "Bulgaria",
- "bh": "Bahrein",
- "bj": "Benin",
- "bm": "Bermuda",
- "bn": "Brunei",
- "bo": "Bolivia",
- "br": "Brasile",
- "bs": "Bahamas",
- "bt": "Bhutan",
- "bw": "Botswana",
- "by": "Bielorussia",
- "bz": "Belize",
- "ca": "Canada",
- "cg": "Repubblica del Congo",
- "ch": "Svizzera",
- "cl": "Cile",
- "cn": "Cina",
- "co": "Colombia",
- "cr": "Costa Rica",
- "cv": "Cabo Verde",
- "cy": "Cipro",
- "cz": "Repubblica Ceca",
- "de": "Germania",
- "dk": "Danimarca",
- "dm": "Dominica",
- "do": "Repubblica dominicana",
- "dz": "Algeria",
- "ec": "Ecuador",
- "ee": "Estonia",
- "eg": "Egitto",
- "es": "Spagna",
- "fi": "Finlandia",
- "fj": "Figi",
- "fm": "Stati federati di Micronesia",
- "fr": "Francia",
- "gb": "Regno Unito",
- "gd": "Grenada",
- "gh": "Ghana",
- "gm": "Gambia",
- "gr": "Grecia",
- "gt": "Guatemala",
- "gw": "Guinea-Bissau",
- "gy": "Guyana",
- "hk": "Hong Kong",
- "hn": "Honduras",
- "hr": "Croazia",
- "hu": "Ungheria",
- "id": "Indonesia",
- "ie": "Irlanda",
- "il": "Israele",
- "in": "India",
- "is": "Islanda",
- "it": "Italia",
- "jm": "Giamaica",
- "jo": "Giordania",
- "jp": "Giappone",
- "ke": "Kenya",
- "kg": "Kirghizistan",
- "kh": "Cambogia",
- "kn": "Saint Kitts e Nevis",
- "kr": "Repubblica di Corea del Sud",
- "kw": "Kuwait",
- "ky": "Isole Cayman",
- "kz": "Kazakhstan",
- "la": "Repubblica democratica popolare del Laos",
- "lb": "Libano",
- "lc": "Saint Lucia",
- "lk": "Sri Lanka",
- "lr": "Liberia",
- "lt": "Lituania",
- "lu": "Lussemburgo",
- "lv": "Lettonia",
- "md": "Repubblica di Moldova",
- "mg": "Madagascar",
- "mk": "Macedonia del Nord",
- "ml": "Mali",
- "mn": "Mongolia",
- "mo": "Macao",
- "mr": "Mauritania",
- "ms": "Montserrat",
- "mt": "Malta",
- "mu": "Mauritius",
- "mw": "Malawi",
- "mx": "Messico",
- "my": "Malaysia",
- "mz": "Mozambico",
- "na": "Namibia",
- "ne": "Niger",
- "ng": "Nigeria",
- "ni": "Nicaragua",
- "nl": "Paesi Bassi",
- "no": "Norvegia",
- "np": "Nepal",
- "nz": "Nuova Zelanda",
- "om": "Oman",
- "pa": "Panama",
- "pe": "Perù",
- "pg": "Papua Nuova Guinea",
- "ph": "Filippine",
- "pk": "Pakistan",
- "pl": "Polonia",
- "pt": "Portogallo",
- "pw": "Palau",
- "py": "Paraguay",
- "qa": "Qatar",
- "ro": "Romania",
- "ru": "Russia",
- "sa": "Arabia Saudita",
- "sb": "Isole Salomone",
- "sc": "Seychelles",
- "se": "Svezia",
- "sg": "Singapore",
- "si": "Slovenia",
- "sk": "Slovacchia",
- "sl": "Sierra Leone",
- "sn": "Senegal",
- "sr": "Suriname",
- "st": "São Tomé e Príncipe",
- "sv": "El Salvador",
- "sz": "Swaziland",
- "tc": "Turks e Caicos",
- "td": "Ciad",
- "th": "Thailandia",
- "tj": "Tagikistan",
- "tm": "Turkmenistan",
- "tn": "Tunisia",
- "tr": "Turchia",
- "tt": "Trinidad e Tobago",
- "tw": "Taiwan",
- "tz": "Tanzania",
- "ua": "Ucraina",
- "ug": "Uganda",
- "us": "Stati Uniti",
- "uy": "Uruguay",
- "uz": "Uzbekistan",
- "vc": "Saint Vincent e Grenadine",
- "ve": "Venezuela",
- "vg": "Isole Vergini Britanniche",
- "vn": "Vietnam",
- "ye": "Yemen",
- "za": "Sudafrica",
- "zw": "Zimbabwe"
+ "Languages": {
+ "ar-aE": "Arabo (Emirati Arabi Uniti)",
+ "ar-bH": "Arabo (Bahrein)",
+ "ar-dZ": "Arabo (Algeria)",
+ "ar-eG": "Arabo (Egitto)",
+ "ar-iQ": "Arabo (Iraq)",
+ "ar-jO": "Arabo (Giordania)",
+ "ar-kW": "Arabo (Kuwait)",
+ "ar-lB": "Arabo (Libano)",
+ "ar-lY": "Arabo (Libia)",
+ "ar-mA": "Arabo (Marocco)",
+ "ar-oM": "Arabo (Oman)",
+ "ar-qA": "Arabo (Qatar)",
+ "ar-sA": "Arabo (Arabia Saudita)",
+ "ar-sY": "Arabo (Siria)",
+ "ar-tN": "Arabo (Tunisia)",
+ "ar-yE": "Arabo (Yemen)",
+ "az-cyrl": "Azerbaigiano (alfabeto cirillico, Azerbaigian)",
+ "az-latn": "Azerbaigiano (alfabeto latino, Azerbaigian)",
+ "bn-bD": "Bengali (Bangladesh)",
+ "bn-iN": "Bengali (India)",
+ "bs-cyrl": "Bosniaco (alfabeto cirillico)",
+ "bs-latn": "Bosniaco (alfabeto latino)",
+ "zh-cN": "Cinese (RPC)",
+ "zh-hK": "Cinese (RAS di Hong Kong)",
+ "zh-mO": "Cinese (RAS di Macao)",
+ "zh-sG": "Cinese (Singapore)",
+ "zh-tW": "Cinese (Taiwan)",
+ "hr-bA": "Croato (alfabeto latino)",
+ "hr-hR": "Croato (Croazia)",
+ "nl-bE": "Olandese (Belgio)",
+ "nl-nL": "Olandese (Paesi Bassi)",
+ "en-aU": "Inglese (Australia)",
+ "en-bZ": "Inglese (Belize)",
+ "en-cA": "Inglese (Canada)",
+ "en-cabn": "Inglese (Caraibi)",
+ "en-iE": "Inglese (Irlanda)",
+ "en-iN": "Inglese (India)",
+ "en-jM": "Inglese (Giamaica)",
+ "en-mY": "Inglese (Malaysia)",
+ "en-nZ": "Inglese (Nuova Zelanda)",
+ "en-pH": "Inglese (Repubblica delle Filippine)",
+ "en-sG": "Inglese (Singapore)",
+ "en-tT": "Inglese (Trinidad e Tobago)",
+ "en-uK": "Inglese (Regno Unito)",
+ "en-uS": "Inglese (Stati Uniti)",
+ "en-zA": "Inglese (Sudafrica)",
+ "en-zW": "Inglese (Zimbabwe)",
+ "fr-bE": "Francese (Belgio)",
+ "fr-cA": "Francese (Canada)",
+ "fr-cH": "Francese (Svizzera)",
+ "fr-fR": "Francese (Francia)",
+ "fr-lU": "Francese (Lussemburgo)",
+ "fr-mC": "Francese (Monaco)",
+ "de-aT": "Tedesco (Austria)",
+ "de-cH": "Tedesco (Svizzera)",
+ "de-dE": "Tedesco (Germania)",
+ "de-lI": "Tedesco (Liechtenstein)",
+ "de-lU": "Tedesco (Lussemburgo)",
+ "iu-cans": "Inuktitut (alfabeto sillabico, Canada)",
+ "iu-latn": "Inuktitut (alfabeto latino, Canada)",
+ "it-cH": "Italiano (Svizzera)",
+ "it-iT": "Italiano (Italia)",
+ "ms-bN": "Malese (Brunei Darussalam)",
+ "ms-mY": "Malese (Malaysia)",
+ "mn-cN": "Mongolo (mongolo tradizionale, Repubblica popolare cinese)",
+ "mn-mN": "Mongolo (alfabeto cirillico, Mongolia)",
+ "no-nB": "Norvegese, bokmål (Norvegia)",
+ "no-nn": "Norvegese, Nynorsk (Norvegia)",
+ "pt-bR": "Portoghese (Brasile)",
+ "pt-pT": "Portoghese (Portogallo)",
+ "quz-bO": "Quechua (Bolivia)",
+ "quz-eC": "Quechua (Ecuador)",
+ "quz-pE": "Quechua (Perù)",
+ "smj-nO": "Sami, Lule (Norvegia)",
+ "smj-sE": "Sami, Lule (Svezia)",
+ "se-fI": "Sami settentrionale (Finlandia)",
+ "se-nO": "Sami settentrionale (Norvegia)",
+ "se-sE": "Sami settentrionale (Svezia)",
+ "sma-nO": "Sami meridionale (Norvegia)",
+ "sma-sE": "Sami meridionale (Svezia)",
+ "smn": "Sami, Inari (Finlandia)",
+ "sms": "Sami, Skolt (Finlandia)",
+ "sr-Cyrl-bA": "Serbo (alfabeto cirillico)",
+ "sr-Cyrl-rS": "Serbo (alfabeto cirillico) (Serbia e Montenegro (ex))",
+ "sr-Latn-bA": "Serbo (alfabeto latino)",
+ "sr-Latn-rS": "Serbo (alfabeto latino, Serbia)",
+ "dsb": "Basso sorabo (Germania)",
+ "hsb": "Alto sorabo (Germania)",
+ "es-es-tradnl": "Spagnolo (Spagna, ordinamento tradizionale)",
+ "es-aR": "Spagnolo (Argentina)",
+ "es-bO": "Spagnolo (Bolivia)",
+ "es-cL": "Spagnolo (Cile)",
+ "es-cO": "Spagnolo (Colombia)",
+ "es-cR": "Spagnolo (Costa Rica)",
+ "es-dO": "Spagnolo (Repubblica Dominicana)",
+ "es-eC": "Spagnolo (Ecuador)",
+ "es-eS": "Spagnolo (Spagna)",
+ "es-gT": "Spagnolo (Guatemala)",
+ "es-hN": "Spagnolo (Honduras)",
+ "es-mX": "Spagnolo (Messico)",
+ "es-nI": "Spagnolo (Nicaragua)",
+ "es-pA": "Spagnolo (Panama)",
+ "es-pE": "Spagnolo (Perù)",
+ "es-pR": "Spagnolo (Portorico)",
+ "es-pY": "Spagnolo (Paraguay)",
+ "es-sV": "Spagnolo (El Salvador)",
+ "es-uS": "Spagnolo (Stati Uniti)",
+ "es-uY": "Spagnolo (Uruguay)",
+ "es-vE": "Spagnolo (Venezuela)",
+ "sv-fI": "Svedese (Finlandia)",
+ "uz-cyrl": "Uzbeko (alfabeto cirillico, Uzbekistan)",
+ "uz-latn": "Uzbeco (alfabeto latino, Uzbekistan)",
+ "af": "Afrikaans (Sudafrica)",
+ "sq": "Albanese (Albania)",
+ "am": "Amarico (Etiopia)",
+ "hy": "Armeno (Armenia)",
+ "as": "Assamese (India)",
+ "ba": "Baschiro (Russia)",
+ "eu": "Basco (Basco)",
+ "be": "Bielorusso (Bielorussia)",
+ "br": "Bretone (Francia)",
+ "bg": "Bulgaro (Bulgaria)",
+ "ca": "Catalano (Catalano)",
+ "co": "Corso (Francia)",
+ "cs": "Ceco (Repubblica Ceca)",
+ "da": "Danese (Danimarca)",
+ "prs": "Dari (Afghanistan)",
+ "dv": "Divehi (Maldive)",
+ "et": "Estone (Estonia)",
+ "fo": "Faroese (Fær Øer)",
+ "fil": "Filippino (Filippine)",
+ "fi": "Finlandese (Finlandia)",
+ "gl": "Galiziano (Galizia)",
+ "ka": "Georgiano (Georgia)",
+ "el": "Greco (Grecia)",
+ "gu": "Gujarati (India)",
+ "ha": "Hausa (alfabeto latino, Nigeria)",
+ "he": "Ebraico (Israele)",
+ "hi": "Hindi (India)",
+ "hu": "Ungherese (Ungheria)",
+ "is": "Islandese (Islanda)",
+ "ig": "Igbo (Nigeria)",
+ "id": "Indonesiano (Indonesia)",
+ "ga": "Irlandese (Irlanda)",
+ "xh": "Xhosa (Sudafrica)",
+ "zu": "Zulu (Sudafrica)",
+ "ja": "Giapponese (Giappone)",
+ "kn": "Kannada (India)",
+ "kk": "Kazako (Kazakhstan)",
+ "km": "Khmer (Cambogia)",
+ "rw": "Kinyarwanda (Ruanda)",
+ "sw": "Swahili (Kenya)",
+ "kok": "Konkani (India)",
+ "ko": "Coreano (Corea)",
+ "ky": "Kirghiso (Kirghizistan)",
+ "lo": "Lao (Repubblica democratica popolare del Laos)",
+ "lv": "Lettone (Lettonia)",
+ "lt": "Lituano (Lituania)",
+ "lb": "Lussemburghese (Lussemburgo)",
+ "mk": "Macedone (Macedonia del Nord)",
+ "ml": "Malayalam (India)",
+ "mt": "Maltese (Malta)",
+ "mi": "Maori (Nuova Zelanda)",
+ "mr": "Marathi (India)",
+ "moh": "Mohawk (Mohawk)",
+ "ne": "Nepalese (Nepal)",
+ "oc": "Occitano (Francia)",
+ "or": "Odia (India)",
+ "ps": "Pashto (Afghanistan)",
+ "fa": "Persiano",
+ "pl": "Polacco (Polonia)",
+ "pa": "Punjabi (India)",
+ "ro": "Romeno (Romania)",
+ "rm": "Romancio (Svizzera)",
+ "ru": "Russo (Russia)",
+ "sa": "Sanscrito (India)",
+ "st": "Sotho del nord (Sudafrica)",
+ "tn": "Tswana (Sudafrica)",
+ "si": "Singalese (Sri Lanka)",
+ "sk": "Slovacco (Slovacchia)",
+ "sl": "Sloveno (Slovenia)",
+ "sv": "Svedese (Svezia)",
+ "syr": "Siriaco (Siria)",
+ "tg": "Tagico (alfabeto cirillico, Tagikistan)",
+ "ta": "Tamil (India)",
+ "tt": "Tartaro (Russia)",
+ "te": "Telugu (India)",
+ "th": "Thai (Thailandia)",
+ "bo": "Tibetano (Repubblica popolare cinese)",
+ "tr": "Turco (Turchia)",
+ "tk": "Turcomanno (Turkmenistan)",
+ "uk": "Ucraino (Ucraina)",
+ "ur": "Urdu (Pakistan)",
+ "vi": "Vietnamita (Vietnam)",
+ "cy": "Gallese (Regno Unito)",
+ "wo": "Wolof (Senegal)",
+ "ii": "Yi (Repubblica popolare cinese)",
+ "yo": "Yoruba (Nigeria)"
+ },
+ "Category": {
+ "airPlay": "AirPlay",
+ "airPrint": "AirPrint",
+ "androidDefenderAtp": "Microsoft Defender per endpoint",
+ "androidDeviceOwnerApplications": "Applicazioni",
+ "androidForWorkPassword": "Password per il dispositivo",
+ "appManagement": "Consenti o blocca le app",
+ "applicationGuard": "Microsoft Defender Application Guard",
+ "applicationRestrictions": "App con restrizioni",
+ "applicationVisibility": "Mostra o nascondi le app",
+ "applications": "App Store",
+ "applicationsAndGames": "App Store, visualizzazione documenti, giochi",
+ "applicationsAndGoogle": "Google Play Store",
+ "appsAndExperience": "App ed esperienza",
+ "associatedDomains": "Domini associati",
+ "autonomousSingleAppMode": "Modalità applicazione singola autonoma",
+ "azureOperationalInsights": "Azure Operational Insights",
+ "bitLocker": "Crittografia di Windows",
+ "browser": "Browser",
+ "builtinApps": "App predefinite",
+ "cellular": "Rete cellulare",
+ "cloudAndStorage": "Cloud e risorse di archiviazione",
+ "cloudPrint": "Stampante cloud",
+ "complianceEmailProfile": "Posta elettronica",
+ "connectedDevices": "Dispositivi connessi",
+ "connectivity": "Rete cellulare e connettività",
+ "contentCaching": "Memorizzazione nella cache dei contenuti",
+ "controlPanelAndSettings": "Pannello di controllo e impostazioni",
+ "credentialGuard": "Microsoft Defender Credential Guard",
+ "customCompliance": "Conformità personalizzata",
+ "customCompliancePreview": "Conformità personalizzata (anteprima)",
+ "customConfiguration": "Profilo di configurazione personalizzato",
+ "customOMASettings": "Impostazioni OMA-URI personalizzate",
+ "customPreferences": "File delle preferenze",
+ "defender": "Microsoft Defender Antivirus",
+ "defenderAntivirus": "Microsoft Defender Antivirus",
+ "defenderExploitGuard": "Microsoft Defender Exploit Guard",
+ "defenderFirewall": "Microsoft Defender Firewall",
+ "defenderLocalSecurityOptions": "Opzioni di sicurezza per i dispositivi locali",
+ "defenderSecurityCenter": "Microsoft Defender Security Center",
+ "deliveryOptimization": "Ottimizzazione recapito",
+ "derivedCredentialAuthenticationConfiguration": "Credenziale derivata",
+ "deviceExperience": "Esperienza del dispositivo",
+ "deviceFirmwareConfigurationInterface": "Interfaccia di configurazione del firmware del dispositivo",
+ "deviceGuard": "Controllo di applicazioni di Microsoft Defender",
+ "deviceHealth": "Integrità del dispositivo",
+ "devicePassword": "Password per il dispositivo",
+ "deviceProperties": "Proprietà del dispositivo",
+ "deviceRestrictions": "Generale",
+ "deviceSecurity": "Sicurezza del sistema",
+ "display": "Visualizza",
+ "domainJoin": "Aggiunta a un dominio",
+ "domains": "Domini",
+ "edgeBrowser": "Microsoft Edge legacy (versione 45 e precedenti)",
+ "edgeBrowserSmartScreen": "Microsoft Defender SmartScreen",
+ "edgeKiosk": "Modalità tutto schermo di Microsoft Edge",
+ "editionUpgrade": "Aggiornamento edizione",
+ "education": "Istruzione",
+ "educationDeviceCerts": "Certificati del dispositivo",
+ "educationStudentCerts": "Certificati per studenti",
+ "educationTakeATest": "Test ed esami",
+ "educationTeacherCerts": "Certificati per docenti",
+ "emailProfile": "Posta elettronica",
+ "enterpriseDataProtection": "Windows Information Protection",
+ "expeditedCheckin": "Configurazione della gestione dei dispositivi mobili",
+ "extensibleSingleSignOn": "Estensione dell'app per l'accesso Single Sign-On",
+ "filevault": "FileVault",
+ "firewall": "Firewall",
+ "games": "Giochi",
+ "gatekeeper": "Gatekeeper",
+ "healthMonitoring": "Monitoraggio dello stato",
+ "homeScreenLayout": "Layout della schermata iniziale",
+ "iOSWallpaper": "Sfondo",
+ "importedPFX": "Certificato PKCS importato",
+ "iosDefenderAtp": "Microsoft Defender per endpoint",
+ "iosKiosk": "Tutto schermo",
+ "kernelExtensions": "Estensioni del kernel",
+ "keyboardAndDictionary": "Tastiera e dizionario",
+ "kiosk": "Tutto schermo",
+ "kioskAndroidEnterprise": "Dispositivi dedicati",
+ "kioskConfiguration": "Tutto schermo",
+ "kioskConfigurationV2": "Tutto schermo",
+ "kioskWebBrowser": "Web browser in modalità tutto schermo",
+ "lockScreenMessage": "Messaggio della schermata di blocco",
+ "lockedScreenExperience": "Esperienza della schermata bloccata",
+ "logging": "Creazione di report e telemetria",
+ "loginItems": "Elementi di accesso",
+ "loginWindow": "Finestra di accesso",
+ "macDefenderAtp": "Microsoft Defender per endpoint",
+ "maintenance": "Manutenzione",
+ "malware": "Malware",
+ "messaging": "Messaggistica",
+ "networkBoundary": "Limite di rete",
+ "networkProxy": "Proxy di rete",
+ "notifications": "Notifiche dell'app",
+ "pKCS": "Certificato PKCS",
+ "password": "Password",
+ "personalProfile": "Profilo personale",
+ "personalization": "Personalizzazione",
+ "policyOverride": "Esegui l'override dei criteri di gruppo",
+ "powerSettings": "Impostazioni risparmio energia",
+ "printer": "Stampante",
+ "privacy": "Riservatezza",
+ "privacyPerApp": "Eccezioni alla privacy per app",
+ "privacyPreferences": "Preferenze per la privacy",
+ "projection": "Proiezione",
+ "sCCMCompliance": "Conformità di Configuration Manager",
+ "sCEP": "Certificato SCEP",
+ "sCEPProperties": "Certificato SCEP",
+ "sMode": "Cambio di modalità (solo Windows Insider)",
+ "safari": "Safari",
+ "search": "Cerca",
+ "session": "Sessione",
+ "sharedDevice": "iPad condiviso",
+ "sharedPCAccountManager": "Dispositivo multiutente condiviso",
+ "singleSignOn": "Single Sign-On",
+ "smartScreen": "Microsoft Defender SmartScreen",
+ "softwareUpdates": "Impostazioni",
+ "start": "Avvia",
+ "systemExtensions": "Estensioni del sistema",
+ "systemSecurity": "Sicurezza del sistema",
+ "trustedCert": "Certificato attendibile",
+ "updates": "Aggiornamenti",
+ "userRights": "Diritti utente",
+ "usersAndAccounts": "Utenti e account",
+ "vPN": "VPN di base",
+ "vPNApps": "VPN automatico",
+ "vPNAppsAndTrafficRules": "Regole delle app e del traffico",
+ "vPNConditionalAccess": "Accesso condizionale",
+ "vPNConnectivity": "Connettività",
+ "vPNDNSTriggers": "Impostazioni DNS",
+ "vPNIKEv2": "Impostazioni IKEv2",
+ "vPNProxy": "Proxy",
+ "vPNSplitTunneling": "Split tunneling",
+ "vPNTrustedNetwork": "Rilevamento della rete attendibile",
+ "webContentFilter": "Filtro contenuto Web",
+ "wiFi": "Wi-Fi",
+ "win10Wifi": "Wi-Fi",
+ "windowsAtp": "Microsoft Defender per endpoint",
+ "windowsDefenderATP": "Microsoft Defender per endpoint",
+ "windowsHelloForBusiness": "Windows Hello for Business",
+ "windowsSpotlight": "Windows Spotlight",
+ "wiredNetwork": "Rete cablata",
+ "wireless": "Wireless",
+ "wirelessProjection": "Proiezione wireless",
+ "workProfile": "Impostazioni del profilo di lavoro",
+ "workProfilePassword": "Password del profilo di lavoro",
+ "xboxServices": "Servizi Xbox",
+ "zebraMx": "Profilo MX (solo Zebra)",
+ "complianceActionsLabel": "Azioni per la non conformità"
+ },
+ "WindowsFeatureUpdateProfile": {
+ "Details": {
+ "Description": {
+ "label": "Descrizione"
+ },
+ "FeatureDeploymentSettings": {
+ "header": "Impostazioni di distribuzione delle funzionalità"
+ },
+ "FeatureUpdateVersion": {
+ "infoballoon": "Questa funzionalità non può effettuare il downgrade di un dispositivo.",
+ "label": "Aggiornamento delle funzionalità da distribuire"
+ },
+ "GradualRolloutEndDate": {
+ "label": "Disponibilità del gruppo finale"
+ },
+ "GradualRolloutInterval": {
+ "label": "Giorni tra gruppi"
+ },
+ "GradualRolloutStartDate": {
+ "label": "Prima disponibilità del gruppo"
+ },
+ "Name": {
+ "label": "Nome"
+ },
+ "RolloutOptions": {
+ "label": "Opzioni di implementazione"
+ },
+ "RolloutSettings": {
+ "header": "Quando si desidera rendere disponibile l'aggiornamento in Windows Update?"
+ },
+ "ScopeSettings": {
+ "header": "Configurare i tag di ambito per questo criterio."
+ },
+ "StartDateOnlyStartDate": {
+ "label": "Prima data disponibile"
+ },
+ "bladeTitle": "Distribuzione di aggiornamenti delle funzionalità",
+ "deploymentSettingsTitle": "Impostazioni di distribuzione",
+ "loadError": "Il caricamento non è riuscito.",
+ "windows11EULA": "Selezionando questo aggiornamento delle funzionalità per la distribuzione, accetti che quando si applica questo sistema operativo a un dispositivo (1) la licenza di Windows applicabile sia stata acquistata tramite contratti multilicenza o (2) che l'utente sia autorizzato a associare l'organizzazione e accetti per suo conto le Condizioni di licenza software Microsoft pertinente disponibile qui {0}."
+ },
+ "Notifications": {
+ "deploymentSaved": "Il salvataggio di \"{0}\" è stato completato.",
+ "newFeatureUpdateDeploymentCreated": "È stata creata una nuova distribuzione di aggiornamenti delle funzionalità."
+ },
+ "TabName": {
+ "deploymentSettings": "Impostazioni di distribuzione",
+ "groupAssignmentSettings": "Assegnazioni",
+ "scopeSettings": "Tag di ambito"
+ }
+ },
+ "WIPPinRequirements": {
+ "WipLowercaseCharacterPinRequirements": {
+ "allow": "Consenti l'uso di lettere minuscole nel PIN",
+ "notAllow": "Non consentire l'uso di lettere minuscole nel PIN",
+ "requireAtLeastOne": "Richiedi l'uso di almeno una lettera minuscola nel PIN"
+ },
+ "WipSpecialCharacterPinRequirements": {
+ "allow": "Consenti l'uso di caratteri speciali nel PIN",
+ "notAllow": "Non consentire l'uso di caratteri speciali nel PIN",
+ "requireAtLeastOne": "Richiedi l'uso di almeno un carattere speciale nel PIN"
+ },
+ "WipUppercaseCharacterPinRequirements": {
+ "allow": "Consenti l'uso di lettere maiuscole nel PIN",
+ "notAllow": "Non consentire l'uso di lettere maiuscole nel PIN",
+ "requireAtLeastOne": "Richiedi l'uso di almeno una lettera maiuscola nel PIN"
+ }
+ },
+ "OutlookAppConfigSettings": {
+ "AllowUserToChangeSetting": {
+ "title": "Consenti all'utente di cambiare impostazione",
+ "tooltip": "Specificare se l'utente è autorizzato a modificare l'impostazione."
+ },
+ "AllowWorkAccounts": {
+ "title": "Consenti solo account aziendali o dell'istituto di istruzione",
+ "tooltip": " Se si abilita questa impostazione, gli utenti non potranno aggiungere account di posta elettronica personali e account di archiviazione in Outlook. Se l'utente aggiunge un account personale a Outlook, verrà richiesta la rimozione dell'account personale. Se l'utente non rimuove l'account personale, non sarà possibile aggiungere l'account aziendale o dell'istituto di istruzione."
+ },
+ "BlockExternalImages": {
+ "title": "Blocca le immagini esterne",
+ "tooltip": "Quando il blocco delle immagini esterne è abilitato, l'app impedirà il download di immagini ospitate su Internet incorporate nel corpo del messaggio. Se questa opzione non viene configurata, l'impostazione predefinita per l'app è Off"
+ },
+ "ConfigureEmail": {
+ "title": "Configura le impostazioni dell'account di posta elettronica"
+ },
+ "DefaultAppSignatureSetting": {
+ "Tooltip": {
+ "android": "L'opzione Firma dell'app predefinita indica se l'app userà \"Ottieni Outlook per Android\" come firma predefinita durante la composizione del messaggio. Se l'impostazione è configurata come Off, la firma predefinita non verrà usata. Gli utenti possono tuttavia aggiungere la propria firma.\r\n\r\nSe l'opzione è impostata su Non configurata, l'impostazione predefinita dell'app è On.",
+ "iOS": "L'opzione Firma dell'app predefinita indica se l'app userà \"Ottieni Outlook per iOS\" come firma predefinita durante la composizione del messaggio. Se l'impostazione è configurata come Off, la firma predefinita non verrà usata. Gli utenti possono tuttavia aggiungere la propria firma.\r\n\r\nSe l'opzione è impostata su Non configurata, l'impostazione predefinita dell'app è On."
+ },
+ "title": "Firma dell'app predefinita"
+ },
+ "OfficeFeedReplies": {
+ "title": "Feed di individuazione",
+ "tooltip": "Il feed di individuazione espone i file di Office a cui si accede più spesso. Per impostazione predefinita, questo feed viene abilitato quando Delve è abilitato per l'utente. Se non si configura questa opzione, l'impostazione predefinita dell'app è On."
+ },
+ "OrganizeMailByThread": {
+ "title": "Organizza i messaggi in base al thread",
+ "tooltip": "Il comportamento predefinito in Outlook prevede l'aggregazione delle conversazioni tramite posta elettronica in una visualizzazione di conversazioni in thread. Se questa impostazione è disabilitata, Outlook visualizzerà ogni messaggio individualmente e non raggrupperà i messaggi in base al thread."
+ },
+ "PlayMyEmails": {
+ "title": "Riproduci i messaggi di posta elettronica",
+ "tooltip": "La funzionalità Riproduci i messaggi di posta elettronica non è abilitata per impostazione predefinita nell'app, ma viene promossa a utenti idonei tramite un banner nella Posta in arrivo. Se questa opzione è impostata su Off, la funzionalità non verrà promossa a utenti idonei nell'app. Gli utenti possono scegliere di abilitare manualmente l'opzione Riproduci i messaggi di posta elettronica dall'app, anche quando questa funzionalità è impostata su Off. Se questa opzione è impostata su Non configurata, l'impostazione predefinita per l'app è On e la funzionalità verrà promossa agli utenti idonei."
+ },
+ "SuggestedReplies": {
+ "title": "Risposte suggerite",
+ "tooltip": "Quando si apre un messaggio, è possibile che Outlook suggerisca risposte sotto il messaggio. Se si seleziona una risposta suggerita, è possibile modificarla prima dell'invio."
+ },
+ "SyncCalendars": {
+ "title": "Sincronizza i calendari",
+ "tooltip": "Determinare se gli utenti possono sincronizzare il calendario di Outlook con l'app e il database del calendario nativo."
+ },
+ "TextPredictions": {
+ "title": "Completamenti del testo",
+ "tooltip": "Outlook può suggerire parole e frasi durante la composizione di messaggi. Quando Outlook offre un suggerimento, scorrere rapidamente per accettarlo. Quando questa opzione è impostata su Non configurato, l'impostazione predefinita dell'app sarà impostata su On."
+ },
+ "ThemesEnabled": {
+ "title": "Temi abilitati",
+ "tooltip": "Specificare se l'utente è autorizzato a usare un tema visivo personalizzato."
+ }
+ },
+ "AssignmentFilters": {
+ "assignmentFilterColumnHeader": "Filtro",
+ "noFilters": "Nessuno"
+ },
+ "Platform": {
+ "all": "Tutto",
+ "android": "Amministratore di dispositivi Android",
+ "androidAOSP": "Android (AOSP)",
+ "androidEnterprise": "Android Enterprise",
+ "androidForWork": "Android Enterprise",
+ "androidWorkProfile": "Android Enterprise",
+ "common": "Comune",
+ "iOS": "iOS/iPadOS",
+ "iosAndAndroidPlatformLabel": "iOS e Android",
+ "iosCommaAndroidPlatformLabel": "iOS, Android",
+ "linux": "Linux",
+ "macOS": "macOS",
+ "unknown": "Sconosciuto",
+ "unsupported": "Non supportato",
+ "windows": "Windows",
+ "windows10": "Windows 10 e versioni successive",
+ "windows10CM": "Windows 10 e versioni successive (ConfigMgr)",
+ "windows10Holo": "Windows 10 Holographic",
+ "windows10Mobile": "Windows 10 Mobile",
+ "windows10Team": "Windows 10 Team",
+ "windows10X": "Windows 10X",
+ "windows8": "Windows 8.1 e versioni successive",
+ "windows8And10": "Windows 8 e 10",
+ "windowsPhone": "Windows Phone 8.1",
+ "windows10AndLater": "Windows 10 e versioni successive",
+ "windows10AndWindowsServer": "Windows 10, Windows 11 e Windows Server (ConfigMgr)",
+ "windows10andLaterCM": "Windows 10 e versioni successive (ConfigMgr)",
+ "holoLens": "HoloLens",
+ "surfaceHub2": "Surface Hub 2",
+ "surfaceHub2S": "Surface Hub 2S",
+ "windowsPC": "PC Windows"
+ },
+ "AppInformationTab": {
+ "Error": {
+ "multipleChildApps": "Un'app line-of-business macOS può essere installata come gestita solo quando il pacchetto caricato contiene una singola app."
+ },
+ "Info": {
+ "AppStoreUrl": {
+ "android": "Immettere il collegamento all'elenco di app in Google Play Store. Ad esempio:",
+ "androidLink": "https://play.google.com/store/apps/details?id=com.microsoft.office.outlook",
+ "windows": "Immettere il collegamento all'elenco di app in Microsoft Store. Ad esempio:",
+ "windowsLink": "https://www.microsoft.com/en-us/p/microsoft-to-do-lists-tasks-reminders/9nblggh5r558"
+ },
+ "appPackageFile": "File che contiene l'app in un formato che può essere trasferito localmente in un dispositivo. I tipi di pacchetto validi includono: Android (.apk), iOS (.ipa), macOS (.pkg, .intunemac), Windows (.msi, .appx, .appxbundle, .msix e .msixbundle).",
+ "applicableDeviceType": "Selezionare i tipi di dispositivo che possono installare questa app.",
+ "category": "È possibile definire una categoria per l'app per semplificare l'ordinamento e l'individuazione da parte degli utenti nel Portale aziendale. È possibile scegliere più categorie.",
+ "categoryLink": "https://docs.microsoft.com/en-us/intune/apps/apps-add#create-and-edit-categories-for-apps",
+ "description": "Consente agli utenti dei dispositivi di ottenere informazioni sull'app e/o sulle operazioni consentite nell'app. Questa descrizione sarà visibile agli utenti nel Portale aziendale.",
+ "developer": "Nome della società o della persona che ha sviluppato l'app. Queste informazioni saranno visibili agli utenti che hanno eseguito l'accesso all'interfaccia di amministrazione.",
+ "displayVersion": "Versione dell'app. Questa informazioni sarà visibile agli utenti nel Portale aziendale.",
+ "infoUrl": "È possibile fornire agli utenti un collegamento a un sito Web o a documentazione che include altre informazioni sull'app. L'URL di informazioni sarà visibile agli utenti nel Portale aziendale.",
+ "isFeatured": "Le app in primo piano sono disposte in una posizione prioritaria nel Portale aziendale per consentire agli utenti di raggiungerle rapidamente.",
+ "learnMore": "Altre informazioni",
+ "logo": "Caricare un logo associato all'app. Questo logo verrà visualizzato accanto all'app nel Portale aziendale.",
+ "macOSDmgAppPackageFile": "File che contiene l'app in un formato che può essere scaricato localmente in un dispositivo. Tipo di pacchetto valido: .dmg.",
+ "minOperatingSystem": "Selezionare la versione di sistema operativo meno recente in cui è possibile installare l'app. Se si assegna l'app a un dispositivo con un sistema operativo precedente, non verrà installata.",
+ "name": "Aggiungere un nome per l'app. Il nome sarà visibile nell'elenco di app di Intune e agli utenti nel Portale aziendale.",
+ "notes": "Aggiungere altre note sull'app. Le note saranno visibili alle persone che hanno eseguito l'accesso all'interfaccia di amministrazione.",
+ "owner": "Nome della persona dell'organizzazione che gestisce le licenze o è il punto di contatto per questa app. Il nome sarà visibile alle persone che hanno eseguito l'accesso all'interfaccia di amministrazione.",
+ "packageName": "Contattare il produttore del dispositivo per ottenere il nome del pacchetto dell'app. Nome di pacchetto di esempio: com.example.app",
+ "privacyUrl": "Specificare un collegamento per le persone che vogliono altre informazioni sulle impostazioni di privacy e sulle condizioni dell'app. L'URL privacy sarà visibile agli utenti nel Portale aziendale.",
+ "publisher": "Nome dello sviluppatore o della società che distribuisce l'app. Queste informazioni saranno visibili agli utenti nel Portale aziendale.",
+ "selectApp": "Cercare in App Store le app di iOS Store da distribuire con Intune.",
+ "useManagedBrowser": "Se necessario, quando un utente apre l'app Web, tale app verrà aperta in un browser protetto da Intune, tra cui Microsoft Edge o Intune Managed Browser. Questa impostazione è applicabile a dispositivi iOS e Android.",
+ "useManagedBrowserLink": "https://docs.microsoft.com/en-us/intune/apps/app-configuration-managed-browser",
+ "win32AppPackageFile": "File contenente l'app in un formato che può essere trasferito localmente in un dispositivo. Tipo di pacchetto valido: .intunewin."
+ },
+ "descriptionPreview": "Anteprima",
+ "descriptionRequired": "La descrizione è obbligatoria.",
+ "editDescription": "Modifica descrizione",
+ "macOSMinOperatingSystemAdditionalInfo": "Il sistema operativo minimo per il caricamento di un file con estensione pkg è macOS 10.14. Caricare un file con estensione intunemac per selezionare un sistema operativo minimo meno recente.",
+ "name": "Informazioni sull'app",
+ "nameForOfficeSuitApp": "Informazioni sulla famiglia di prodotti dell'app"
+ },
+ "Tooltips": {
+ "PolicySettings": {
+ "TouchId1": {
+ "android": "Nei dispositivi Android è possibile consentire l'uso dell'identificazione tramite impronta digitale anziché tramite PIN. Agli utenti viene richiesto di fornire l'impronta digitale per accedere all'app con l'account aziendale.",
+ "iOS": "Nei dispositivi iOS/iPadOS è possibile consentire l'uso dell'identificazione tramite impronta digitale anziché tramite PIN. Agli utenti viene richiesto di fornire l'impronta digitale per accedere all'app con l'account aziendale.",
+ "mac": "Nei dispositivi Mac è possibile consentire l'uso dell'identificazione tramite impronta digitale anziché tramite PIN. Agli utenti viene richiesto di fornire l'impronta digitale per accedere all'app con l'account aziendale."
+ },
+ "appSharingFromLevel1": "Selezionare una delle opzioni seguenti per specificare le app da cui questa app può ricevere dati:",
+ "appSharingFromLevel2": "{0}: consente la ricezione di dati nei documenti o negli account dell'organizzazione solo da altre app gestite da criteri",
+ "appSharingFromLevel3": "{0}: consente la ricezione di dati nei documenti o negli account dell'organizzazione da qualsiasi app",
+ "appSharingFromLevel4": "{0}: non consente la ricezione di dati nei documenti o negli account dell'organizzazione da qualsiasi app",
+ "appSharingFromLevel5": "{0}: è possibile consentire il trasferimento dei dati da qualsiasi app e gestire tutti i dati in ingresso privi di identità utente come dati dell'organizzazione.",
+ "appSharingToLevel1": "Selezionare una delle opzioni seguenti per specificare le app a cui questa app può inviare dati:",
+ "appSharingToLevel2": "{0}: consente l'invio di dati dell'organizzazione solo verso altre app gestite da criteri",
+ "appSharingToLevel3": "{0}: consente l'invio di dati dell'organizzazione a qualsiasi app",
+ "appSharingToLevel4": "{0}: non consente l'invio di dati dell'organizzazione a qualsiasi app",
+ "appSharingToLevel5": "{0}: è possibile consentire il trasferimento solo ad altre app gestite da criteri e il trasferimento di file ad altre app gestite da MDM nei dispositivi registrati",
+ "appSharingToLevel6": "{0}: è possibile consentire il trasferimento solo ad altre app gestite da criteri e l'applicazione di filtri alle finestre di dialogo Apri in/Condividi per il sistema operativo in modo che vengano visualizzate solo le app gestite da criteri",
+ "conditionalEncryption1": "Selezionare {0} per disabilitare la crittografia delle app per le risorse di archiviazione delle app interne quando la crittografia dei dispositivi viene rilevata in un dispositivo registrato.",
+ "conditionalEncryption2": "Nota: Intune può rilevare la registrazione dei dispositivi solo con Intune MDM. Le risorse di archiviazione delle app esterne saranno ancora crittografate per assicurare che i dati non siano accessibili da applicazioni non gestite.",
+ "contactSyncMac": "Se questa opzione è disabilitata, le app non possono salvare contatti nella rubrica nativa.",
+ "contactsSync": "Scegliere Blocca per impedire alle app gestite da criteri di salvare i dati nelle app native del dispositivo, ad esempio Contatti, Calendario e widget, o per impedire l'uso di componenti aggiuntivi all'interno delle app gestite da criteri. Se si sceglie Consenti, l'app gestita da criteri può salvare i dati nelle app native o usare i componenti aggiuntivi, se queste funzionalità sono supportate e abilitate nell'app gestita da criteri.
Le app possono fornire funzionalità di configurazione aggiuntive con i criteri di configurazione dell'app. Per ulteriori informazioni, vedere la documentazione dell'app.",
+ "encryptionAndroid1": "Per le app associate a criteri di gestione dei dispositivi mobili di Intune, la crittografia è fornita da Microsoft. I dati sono crittografati in modo sincrono durante le operazioni di I/O dei file in base all'impostazione specificata nei criteri di gestione delle applicazioni per dispositivi mobili. Le app gestite in Android usano la crittografia AES-128 in modalità CBC usando le librerie di crittografia della piattaforma. Il metodo di crittografia non è conforme con FIPS 140-2. La crittografia SHA-256 è supportata come un'istruzione esplicita usando il parametro SigAlg e funziona solo sui dispositivi con versione 4.2 e successive. Il contenuto nell'archiviazione del dispositivo è sempre crittografato.",
+ "encryptionAndroid2": "Quando si richiede la crittografia tramite i criteri dell'app, l'utente finale deve configurare e usare un PIN per accedere al dispositivo. Se non è stato impostato un PIN per l'accesso al dispositivo, le app non verranno avviate e l'utente finale visualizzerà un messaggio che indica che l'azienda ha richiesto di impostare un PIN del dispositivo per accedere all'applicazione.",
+ "encryptionMac1": "Per le app associate a criteri di gestione dei dispositivi mobili di Intune, la crittografia è fornita da Microsoft. I dati sono crittografati in modo sincrono durante le operazioni di I/O dei file in base all'impostazione specificata nei criteri di gestione delle applicazioni per dispositivi mobili. Le app gestite in Mac usano la crittografia AES-128 in modalità CBC usando le librerie di crittografia della piattaforma. Il metodo di crittografia non è conforme con FIPS 140-2. La crittografia SHA-256 è supportata come un'istruzione esplicita usando il parametro SigAlg e funziona solo sui dispositivi con versione 4.2 e successive. Il contenuto nell'archiviazione del dispositivo è sempre crittografato.",
+ "faceId1": "Se applicabile, è possibile consentire l'uso di Identificazione viso invece del PIN. Agli utenti viene richiesto di fornire l'identificazione viso quando accedono all'app con i propri account aziendali.",
+ "faceId2": "Selezionare Sì per consentire l'Identificazione viso invece di un PIN per l'accesso all'app.",
+ "managementLevelsAndroid1": "Usare questa opzione per specificare se il criterio è applicabile ai dispositivi dell'amministratore di dispositivi Android, ai dispositivi Android Enterprise o ai dispositivi non gestiti.",
+ "managementLevelsAndroid2": "{0}: i dispositivi non gestiti sono dispositivi in cui la gestione di Intune MDM non è stata rilevata. Sono inclusi fornitori MDM di terze parti.",
+ "managementLevelsAndroid3": "{0}: dispositivi gestiti da Intune che usano l'API Android Device Administration.",
+ "managementLevelsAndroid4": "{0}: dispositivi gestiti da Intune che usano i profili di lavoro di Android Enterprise o la gestione dispositivi completa di Android Enterprise.",
+ "managementLevelsIos1": "Usare questa opzione per specificare se questo criterio è applicabile ai dispositivi MDM gestiti o ai dispositivi non gestiti.",
+ "managementLevelsIos2": "{0}: i dispositivi non gestiti sono dispositivi in cui la gestione di Intune MDM non è stata rilevata. Sono inclusi fornitori MDM di terze parti.",
+ "managementLevelsIos3": "{0}: i dispositivi gestiti sono gestiti da Intune MDM.",
+ "minAppVersion": "Definire il numero di versione minimo obbligatorio dell'app che un utente deve avere per ottenere l'accesso sicuro all'app.",
+ "minAppVersionWarning": "Definire il numero di versione minimo consigliato dell'app che un utente deve avere per un accesso sicuro all'app.",
+ "minOsVersion": "Definire il numero di versione minimo obbligatorio del sistema operativo che un utente deve avere per ottenere l'accesso sicuro all'app.",
+ "minOsVersionWarning": "Definire il numero di versione minimo consigliato del sistema operativo che un utente deve avere per ottenere l'accesso sicuro all'app.",
+ "minPatchVersion": "Definire il livello di patch di protezione meno recente obbligatorio per Android consentito a un utente per ottenere l'accesso sicuro all'app.",
+ "minPatchVersionWarning": "Definire il livello di patch di protezione meno recente consigliato per Android consentito a un utente per l'accesso sicuro all'app.",
+ "minSdkVersion": "Definire la versione minima obbligatoria di Intune Application Protection Policy SDK che un utente deve avere per ottenere l'accesso sicuro all'app.",
+ "requireAppPinDefault": "Selezionare Sì per disabilitare il PIN dell'app quando un blocco del dispositivo viene rilevato in un dispositivo registrato.
",
+ "targetAllApps1": "Usare questa opzione per specificare come destinazione del criterio le app nei dispositivi con qualsiasi stato di gestione.",
+ "targetAllApps2": "Durante la risoluzione del conflitto tra i criteri questa impostazione verrà sostituita se un utente ha un criterio destinato a uno stato di gestione specifico.",
+ "touchId2": "Selezionare {0} per richiedere l'identificazione tramite impronta digitale anziché un PIN per l'accesso all'app."
+ },
+ "Tap": {
+ "pinResetAfterNumberOfDays": "Specificare il numero di giorni che devono trascorrere prima che sia necessaria la reimpostazione del PIN da parte dell'utente.",
+ "previousPinBlockCount": "Questa impostazione consente di specificare il numero di PIN precedenti che verranno conservati da Intune. Eventuali nuovi PIN devono essere diversi da quelli conservati da Intune."
+ },
+ "WipPolicySettings": {
+ "25": "",
+ "allowWindowsSearch": "Consentirà a Windows Search di continuare a eseguire ricerche nei dati crittografati.",
+ "authoritativeIpRanges": "Abilitare questa impostazione se si vuole eseguire l'override del rilevamento automatico Windows degli intervalli di indirizzi IP.",
+ "authoritativeProxyServers": "Abilitare questa impostazione se si vuole eseguire l'override del rilevamento automatico Windows dei server proxy.",
+ "checkInput": "Verifica la validità dell'input",
+ "dataRecoveryCert": "Un certificato di ripristino è un certificato EFS (Encrypting File System) speciale che consente di recuperare i file crittografati in caso di perdita o danneggiamento della chiave di crittografia. È necessario creare il certificato di ripristino e specificarlo qui. Per altre informazioni, vedere qui",
+ "enterpriseCloudResources": "Specificare le risorse cloud da considerare aziendali e da proteggere con il criterio di Windows Information Protection. È possibile specificare più risorse separando le singole voci con il carattere '|'.
Se nell'azienda è stato configurato un proxy, è possibile specificare il proxy tramite cui verrà instradato il traffico alle risorse cloud specificate.
URL[,Proxy]|URL[,Proxy]
Senza proxy: contoso.sharepoint.com|contoso.visualstudio.com
Con proxy: contoso.sharepoint.com,proxy.contoso.com|contoso.visualstudio.com,proxy.contoso.com
",
+ "enterpriseIPv4Ranges": "Specificare gli intervalli IPv4 che costituiscono la rete aziendale. Questi intervalli vengono usati insieme ai nomi di dominio di rete aziendale specificati per definire il limite di rete aziendale.
Questa impostazione è necessaria per abilitare Windows Information Protection.
È possibile specificare più intervalli separando le singole voci con una virgola.
Ad esempio: 3.4.0.1-3.4.255.255,192.168.1.1-192.168.255.255
",
+ "enterpriseIPv6Ranges": "Specificare gli intervalli IPv6 che costituiscono la rete aziendale. Questi intervalli vengono usati insieme ai nomi di dominio di rete aziendale specificati per definire il limite di rete aziendale.
È possibile specificare più intervalli separando le singole voci con una virgola.
Ad esempio: 2001:4898:dc05::-2001:4898:dc05:ffff:ffff:ffff:ffff:ffff,2a01:110::-2a01:110:7fff:ffff:ffff:ffff:ffff:ffff
",
+ "enterpriseInternalProxyServers": "Se nell'azienda è stato configurato un proxy, è possibile specificare il proxy tramite cui instradare il traffico alle risorse cloud specificate nelle impostazioni Risorse cloud aziendali.
È possibile specificare più valori separando le singole voci con un punto e virgola.
Ad esempio: contoso.internalproxy1.com;contoso.internalproxy2.com
",
+ "enterpriseNetworkDomainNames": "Specificare i nomi DNS che costituiscono la rete aziendale. Questi nomi vengono usati insieme agli intervalli IP specificati per definire il limite di rete aziendale. È possibile specificare più valori separando le singole voci con una virgola.
Questa impostazione è necessaria per abilitare Windows Information Protection.
Ad esempio: corp.contoso.com,region.contoso.com
",
+ "enterpriseProtectedDomainNames": "Specificare i nomi DNS che costituiscono la rete aziendale. Questi nomi vengono usati insieme agli intervalli IP specificati per definire il limite di rete aziendale. È possibile specificare più valori separando le singole voci con una barra verticale '|'.
Questa impostazione è necessaria per abilitare Windows Information Protection.
Ad esempio: corp.contoso.com|region.contoso.com
",
+ "enterpriseProxyServers": "Se nella rete aziendale sono presenti proxy con accesso all'esterno, specificarli qui. Quando si specifica un indirizzo del server proxy, è necessario specificare anche la porta tramite cui il traffico deve essere consentito e protetto con Windows Information Protection.
Nota: questo elenco non deve includere i server presenti nell'elenco Server proxy interni aziendali. È possibile specificare più valori separando le singole voci con un punto e virgola.
Ad esempio: proxy.contoso.com:80;proxy2.contoso.com:80
",
+ "maxInactivityTime1": "Specifica l'intervallo di tempo massimo (in minuti) consentito in caso di inattività del dispositivo dopo il quale il dispositivo verrà bloccato tramite PIN o password. Gli utenti possono selezionare qualsiasi valore di timeout inferiore all'intervallo di tempo massimo specificato nell'app Impostazioni. Si noti che per Lumia 950 e 950XL è previsto un valore di timeout massimo di 5 minuti, indipendentemente dal valore configurato da questo criterio.",
+ "maxInactivityTime2": "0 (valore predefinito): non viene definito alcun timeout. Il valore predefinito '0' viene interpretato come 'Nessun timeout definito'.",
+ "maxPasswordAttempts1": "Questo criterio presenta comportamenti diversi nei dispositivi mobili e nei computer desktop.",
+ "maxPasswordAttempts2": "Quando l'utente raggiunge il valore impostato da questo criterio in un dispositivo mobile, vengono cancellati i dati del dispositivo.",
+ "maxPasswordAttempts3": "Quando l'utente raggiunge il valore impostato da questo criterio in un computer desktop, non vengono cancellati i dati. Viene attivata nel computer desktop la modalità di ripristino BitLocker, che rende i dati inaccessibili ma recuperabili. Se BitLocker non è abilitato, non è possibile applicare il criterio.",
+ "maxPasswordAttempts4": "Prima di raggiungere il limite di tentativi non riusciti, l'utente viene inviato alla schermata di blocco e viene visualizzato un avviso che indica che altri tentativi non riusciti comporteranno il blocco del computer. Quando l'utente raggiunge il limite, il dispositivo si riavvia automaticamente e mostra la pagina di ripristino BitLocker, che richiede all'utente la chiave di ripristino di BitLocker.",
+ "maxPasswordAttempts5": "0 (valore predefinito): i dati del dispositivo non vengono mai cancellati dopo l'immissione di un PIN errato o di una password non valida.",
+ "maxPasswordAttempts6": "Il valore più sicuro è 0 se tutti i valori del criterio sono uguali a 0. In caso contrario, il valore del criterio minimo è il valore più sicuro.",
+ "mdmDiscoveryUrl": "Specificare l'URL per l'endpoint di registrazione MDM che verrà usato dagli utenti che si registrano in MDM. Per impostazione predefinita, viene specificato questo valore per Intune.",
+ "minimumPinLength1": "Valore intero che imposta il numero minimo di caratteri necessari per il PIN. Il valore predefinito è 4. Il numero minimo configurabile per questa impostazione del criterio è 4. Il numero massimo configurabile deve essere inferiore al numero configurato nell'impostazione del criterio Lunghezza massima del PIN o 127, a seconda di quale sia il valore più basso.",
+ "minimumPinLength2": "Se si configura questa impostazione del criterio, la lunghezza del PIN deve essere superiore o uguale a questo numero. Se si disabilita o non si configura questa impostazione del criterio, la lunghezza deve essere superiore o uguale a 4.",
+ "name": "Nome di questo limite di rete",
+ "neutralResources": "Se nell'azienda sono disponibili endpoint di reindirizzamento dell'autenticazione, specificarli qui. Le posizioni specificate qui vengono considerate personali o aziendali in base al contesto della connessione prima del reindirizzamento.
È possibile specificare più valori separando le singole voci con una virgola.
Ad esempio: sts.contoso.com,sts.contoso2.com
",
+ "passportForWork1": "Valore che imposta Windows Hello for Business come metodo per l'accesso a Windows.",
+ "passportForWork2": "Il valore predefinito è true. Se si imposta questo criterio su false, l'utente può effettuare il provisioning di Windows Hello for Business solo nei dispositivi mobili aggiunti ad Azure Active Directory in cui è obbligatorio il provisioning.",
+ "pinExpiration": "Il numero massimo configurabile per questa impostazione del criterio è 730. Il numero minimo configurabile per questa impostazione del criterio è 0. Se si imposta il criterio su 0, il PIN dell'utente non scadrà mai.",
+ "pinHistory1": "Il numero massimo configurabile per questa impostazione del criterio è 50. Il numero minimo configurabile per questa impostazione del criterio è 0. Se si imposta il criterio su 0, l'archiviazione dei PIN precedenti non è necessaria.",
+ "pinHistory2": "Il PIN attuale dell'utente viene incluso nel set di PIN associati all'account utente. La cronologia del PIN non viene conservata tramite una reimpostazione del PIN.",
+ "protectUnderLock": "Protegge il contenuto dell'app quando il dispositivo è bloccato.",
+ "protectionModeBlock": "Blocca: impedisce l'uscita dei dati aziendali dalle app protette.
",
+ "protectionModeOff": "No: l'utente può spostare i dati all'esterno delle app protette. Non viene registrata alcuna azione.
",
+ "protectionModeOverride": "Consenti sostituzioni: viene visualizzato un avviso quando l'utente prova a spostare i dati da un'app protetta a un'app non protetta. Se l'utente sceglie di ignorare l'avviso, l'azione verrà registrata.
",
+ "protectionModeSilent": "Invisibile all'utente: l'utente può spostare i dati all'esterno delle app protette. Queste azioni vengono registrate.
",
+ "required": "Necessario",
+ "revokeOnMdmHandoff": "Aggiunto in Windows 10 versione 1703. Questo criterio consente di controllare se revocare le chiavi WIP quando un dispositivo esegue l'aggiornamento da MAM a MDM. Se è impostato su \"Off\", le chiavi non verranno revocate e l'utente continuerà ad accedere ai file protetti dopo l'aggiornamento. Questa è l'opzione consigliata se il servizio MDM è configurato con lo stesso valore EnterpriseID WIP del servizio MAM.",
+ "revokeOnUnenroll": "Le chiavi di crittografia verranno revocate quando viene annullata la registrazione di un dispositivo da questo criterio.",
+ "rmsTemplateForEdp": "GUID di TemplateID da usare per la crittografia RMS. Il modello di Azure RMS consente all'amministratore IT di configurare i dettagli relativi agli utenti autorizzati ad accedere ai file con protezione RMS e alla durata dell'accesso.",
+ "showWipIcon": "Questa opzione consente di informare l'utente quando si trova in un contesto aziendale, tramite la sovrimpressione di un'icona.",
+ "useRmsForWip": "Specifica se consentire la crittografia di Azure RMS per WIP."
+ },
+ "requireAppPin": "Selezionare Sì per disabilitare il PIN dell'app quando viene rilevato un blocco del dispositivo in un dispositivo registrato.
Nota: Intune non può rilevare la registrazione dei dispositivi con una soluzione EMM di terze parti in iOS/iPadOS.
"
+ },
+ "Autopilot": {
+ "AssignResourceAccount": {
+ "createNewCommandMenu": "Crea nuovo",
+ "createNewResourceAccountInfo": "\r\nÈ possibile creare un nuovo account della risorsa durante la registrazione. L'account della risorsa verrà aggiunto immediatamente alla tabella Account della risorsa, ma sarà attivo solo dopo la registrazione del dispositivo e la verifica della sottoscrizione di Surface Hub. Altre informazioni sugli account della risorsa
\r\n ",
+ "createNewResourceTitle": "Crea un nuovo account della risorsa",
+ "deviceNameInvalid": "Il formato del nome dispositivo non è valido",
+ "deviceNameRequired": "Il nome del dispositivo è obbligatorio",
+ "editResourceAccountLabel": "Modifica",
+ "selectExistingCommandMenu": "Seleziona esistente"
+ },
+ "Device": {
+ "ComputerName": {
+ "validFormat": "I nomi possono contenere al massimo 15 caratteri e possono includere lettere (a-z, A-Z), numeri (0-9) e trattini. I nomi non devono contenere solo numeri. I nomi non possono includere uno spazio vuoto."
+ },
+ "Header": {
+ "addressableUserName": "Nome descrittivo dell'utente",
+ "azureADDevice": "Dispositivo di Azure AD associato",
+ "batch": "Tag di gruppo",
+ "dateAssigned": "Data di assegnazione",
+ "deviceAccountFriendlyName": "Nome descrittivo dell'account del dispositivo",
+ "deviceAccountPwd": "Password dell'account del dispositivo",
+ "deviceAccountUpn": "Account del dispositivo",
+ "deviceDisplayName": "Nome del dispositivo",
+ "deviceName": "Nome del dispositivo",
+ "deviceUseType": "Tipo di uso del dispositivo",
+ "enrollmentState": "Stato della registrazione",
+ "intuneDevice": "Dispositivo di Intune associato",
+ "lastContacted": "Ultimo contatto",
+ "make": "Produttore",
+ "model": "Modello",
+ "profile": "Profilo assegnato",
+ "profileStatus": "Stato del profilo",
+ "purchaseOrderId": "Ordine d'acquisto",
+ "resourceAccount": "Account della risorsa",
+ "serialNumber": "Numero di serie",
+ "userPrincipalName": "Utente"
+ },
+ "SurfaceHub": {
+ "friendlyNameRequired": "Il nome descrittivo è obbligatorio",
+ "pwdRequired": "La password è obbligatoria",
+ "upnRequired": "L'account del dispositivo è obbligatorio",
+ "upnValidFormat": "I valori possono contenere lettere (a-z, A-Z), numeri (0-9) e trattini. I valori non possono includere uno spazio vuoto."
+ }
+ },
+ "DeviceUseType": {
+ "meetingAndPresentation": "Riunione e presentazione",
+ "teamCollaboration": "Collaborazione tra team"
+ },
+ "Devices": {
+ "featureDescription": "Windows Autopilot consente di personalizzare la Configurazione guidata per gli utenti.",
+ "importErrorStatus": "Alcuni dispositivi non sono stati importati. Per altre informazioni, fare clic qui.",
+ "importPendingStatus": "L'importazione è in corso. Tempo trascorso: {0} min. Questo processo può richiedere fino a {1} min."
+ },
+ "DirectoryService": {
+ "activeDirectoryAD": "Aggiunto ad Azure AD ibrido",
+ "activeDirectoryADLabel": "Azure AD ibrido con Autopilot",
+ "azureAD": "Aggiunto ad Azure AD",
+ "unknownType": "Tipo sconosciuto"
+ },
+ "Filter": {
+ "enrollmentState": "Stato",
+ "profile": "Stato del profilo"
+ },
+ "OOBE": {
+ "AddressableUserName": {
+ "validateEmpty": "Il nome descrittivo non può essere vuoto."
+ },
+ "ApplyComputerNameTemplate": {
+ "infoBalloon": "Creare un modello di denominazione per aggiungere nomi ai dispositivi durante la registrazione.",
+ "label": "Applica il modello di nome di dispositivo"
+ },
+ "ApplyComputerNameTemplateDisabled": {
+ "label": "Per i tipi di profili di distribuzione Autopilot aggiunti ad Azure AD ibrido i nomi dei dispositivi vengono definiti in base alle impostazioni specificate nella configurazione dell'aggiunta al dominio."
+ },
+ "ComputerNameTemplate": {
+ "emptyValue": "Società-%RAND:4%",
+ "label": "Immettere un nome",
+ "noDisallowedChars": "Il nome deve contenere solo caratteri alfanumerici, trattini, %SERIAL% o %RAND:x%",
+ "serialLength": "Non è possibile usare più di 7 caratteri con %SERIAL%",
+ "validateLessThan15Chars": "Il nome non può contenere più di 15 caratteri",
+ "validateNoSpaces": "I nomi computer non possono contenere spazi",
+ "validateNotAllNumbers": "Il nome deve contenere anche lettere e/o trattini",
+ "validateNotEmpty": "Il nome non può essere vuoto",
+ "validateOnlyOneMacro": "Il nome deve contenere solo una delle macro %SERIAL% oppure %RAND:x%"
+ },
+ "ConfigureComputerNameTemplate": {
+ "description": "Creare un nome univoco per i dispositivi. I nomi devono contenere al massimo 15 caratteri e possono contenere lettere (a-z, A-Z), numeri (0-9) e trattini. I nomi non devono contenere solo numeri. I nomi non possono includere uno spazio vuoto. Usare la macro %SERIAL% per aggiungere un numero di serie specifico per l'hardware. In alternativa, usare la macro %RAND:x% per aggiungere una stringa casuale di numeri, dove x equivale al numero di cifre da aggiungere."
+ },
+ "EnableWhiteGlove": {
+ "infoBalloon": "Consentire di premere 5 volte il tasto Windows per eseguire OOBE senza autenticazione utente per registrare il dispositivo ed effettuare il provisioning di tutte le app e di tutte le impostazioni relative al contesto di sistema. Le app e le impostazioni relative al contesto utente verranno recapitate all'accesso dell'utente.",
+ "label": "Consenti distribuzione di cui è stato eseguito il pre-provisioning"
+ },
+ "HybridAzureADSkipConnectivityCheck": {
+ "infoBalloon": "Il flusso di aggiunta ad Azure AD ibrido di Autopilot continuerà anche se non stabilisce alcuna connettività con il controller di dominio durante la Configurazione guidata.",
+ "label": "Ignora la verifica della connettività di AD (anteprima)"
+ },
+ "accountType": "Tipo di account utente",
+ "accountTypeInfo": "Specificare se gli utenti sono amministratori o utenti standard nel dispositivo. Si noti che questa impostazione non è applicabile ad account di tipo Amministratore globale o Amministratore dell'azienda. Questi account non possono essere utenti standard perché possono accedere a tutte le funzionalità amministrative di Azure AD.",
+ "configOOBEInfo": "\r\nConfigurare la Configurazione guidata per i dispositivi di Autopilot\r\n
",
+ "configureDevice": "Modalità di distribuzione",
+ "configureDeviceHintForSurfaceHub2": "Autopilot supporta solo la modalità di distribuzione automatica per Surface Hub 2. Questa modalità non associa l'utente al dispositivo registrato, quindi non richiede credenziali utente.",
+ "configureDeviceHintForWindowsPC": "\r\n La modalità di distribuzione consente di determinare se un utente deve immettere le credenziali per il provisioning del dispositivo.\r\n
\r\n \r\n - \r\n Definita dall'utente: i dispositivi vengono associati all'utente che registra il dispositivo e le credenziali utente sono necessarie per il provisioning del dispositivo\r\n
\r\n - \r\n Distribuzione automatica (anteprima): i dispositivi non vengono associati all'utente che registra il dispositivo e le credenziali utente non sono necessarie per il provisioning del dispositivo\r\n
\r\n
",
+ "createSurfaceHub2Info": "Configurare le impostazioni di registrazione di Autopilot per i dispositivi Surface Hub 2. Per impostazione predefinita, Autopilot consente di evitare l'autenticazione utente durante la Configurazione guidata. Altre informazioni su Windows Autopilot per Surface Hub 2.",
+ "createWindowsPCInfo": "\r\n\r\nLe opzioni seguenti vengono abilitate automaticamente per i dispositivi di Autopilot in modalità di distribuzione automatica:\r\n
\r\n\r\n - \r\n Ignora la selezione per l'utilizzo aziendale o personale\r\n
\r\n - \r\n Ignora la registrazione OEM e la configurazione di OneDrive\r\n
\r\n - \r\n Ignora l'autenticazione utente nella Configurazione guidata\r\n
\r\n
",
+ "endUserDevice": "Definita dall'utente",
+ "hideEscapeLink": "Nascondi le opzioni di cambio di account",
+ "hideEscapeLinkInfo": "Le opzioni per cambiare account e iniziare con un account diverso vengono visualizzate, rispettivamente, nella pagina di accesso dell'azienda e nella pagina dell'errore di dominio. Per nascondere queste opzioni, è necessario configurare le informazioni personalizzate distintive dell'azienda in Azure Active Directory (richiede Windows 10, 1809 o versioni successive o Windows 11).",
+ "info": "Le impostazioni del profilo di AutoPilot definiscono la Configurazione guidata visualizzata agli utenti al primo avvio di Windows. ",
+ "language": "Lingua (area geografica)",
+ "languageInfo": "Specificare la lingua e l'area geografica che verranno usate.",
+ "licenseAgreement": "Condizioni di licenza software Microsoft",
+ "licenseAgreementInfo": "Specificare se visualizzare le condizioni di licenza agli utenti.",
+ "plugAndForgetDevice": "Distribuzione automatica (anteprima)",
+ "plugAndForgetGA": "Distribuzione automatica",
+ "privacySettingWarning": "Il valore predefinito per la raccolta di dati di diagnostica è stato modificato per i dispositivi che eseguono Windows 10, versione 1903 e successive o Windows 11. ",
+ "privacySettings": "Impostazioni di privacy",
+ "privacySettingsInfo": "Specificare se visualizzare le impostazioni di privacy agli utenti.",
+ "showCortanaConfigurationPage": "Configurazione di Cortana",
+ "showCortanaConfigurationPageInfo": "Se si sceglie Mostra, verrà abilitata l'introduzione della configurazione di Cortana all'avvio.",
+ "skipEULAWarning": "Informazioni importanti su come nascondere le condizioni di licenza",
+ "skipKeyboardSelection": "Configura automaticamente la tastiera",
+ "skipKeyboardSelectionInfo": "Se questa opzione è true, la pagina di selezione della tastiera viene ignorata se è impostata la lingua.",
+ "subtitle": "Profili di AutoPilot",
+ "title": "Configurazione guidata",
+ "useOSDefaultLanguage": "Impostazione predefinita del sistema operativo",
+ "userSelect": "Selezione utente"
+ },
+ "Sync": {
+ "lastRequestedLabel": "Ultima richiesta di sincronizzazione",
+ "lastSuccessfulLabel": "Ultima sincronizzazione riuscita",
+ "syncInProgress": "È in corso la sincronizzazione. Ricontrollare tra poco.",
+ "syncInitiated": "La sincronizzazione delle impostazioni di AutoPilot è stata avviata.",
+ "syncSettingsTitle": "Sincronizza le impostazioni di AutoPilot"
+ },
+ "Title": {
+ "devices": "Dispositivi di Windows AutoPilot"
+ },
+ "Tooltips": {
+ "addressableUserName": "Nome del messaggio di saluto visualizzato durante la configurazione del dispositivo.",
+ "azureADDevice": "Passare ai dettagli del dispositivo per il dispositivo associato. N/D indica che non sono presenti dispositivi associati.",
+ "batch": "Attributo di stringa che può essere usato per identificare un gruppo di dispositivi. Il campo Tag di gruppo di Intune è mappato all'attributo OrderID nei dispositivi di Azure AD.",
+ "dateAssigned": "Timestamp relativo all'ora di assegnazione del profilo al dispositivo.",
+ "deviceAccountFriendlyName": "Nome descrittivo dell'account del dispositivo per i dispositivi Surface Hub",
+ "deviceAccountPwd": "Password dell'account del dispositivo per i dispositivi Surface Hub",
+ "deviceAccountUpn": "Indirizzo di posta elettronica dell'account del dispositivo per i dispositivi Surface Hub",
+ "deviceDisplayName": "Configura un nome univoco per il dispositivo. Il nome verrà ignorato nelle distribuzioni aggiunte ad Azure AD ibrido. Il nome del dispositivo deriva comunque dal profilo di aggiunta al dominio per i dispositivi di Azure AD ibrido.",
+ "deviceName": "Nome visualizzato quando un utente ha provato a individuare il dispositivo e a stabilire una connessione.",
+ "deviceUseType": " Il dispositivo verrà configurato in base alle opzioni selezionate. È comunque possibile modificarle in seguito in Impostazioni.\r\n \r\n - Windows Hello non è attivato per le riunioni e le presentazioni e i dati vengono rimossi dopo ogni sessione.\r\n
\r\n - Windows Hello è attivato per la collaborazione tra team e i profili vengono salvati per un accesso più rapido
\r\n
",
+ "enrollmentState": "Consente di specificare se il dispositivo è stato registrato.",
+ "intuneDevice": "Passare ai dettagli del dispositivo per il dispositivo associato. N/D indica che non sono presenti dispositivi associati.",
+ "lastContacted": "Timestamp relativo all'ora in cui il dispositivo è stato contattato per l'ultima volta.",
+ "make": "Produttore del dispositivo selezionato.",
+ "model": "Modello del dispositivo selezionato",
+ "profile": "Nome del profilo assegnato al dispositivo.",
+ "profileStatus": "Consente di specificare se un profilo è assegnato al dispositivo.",
+ "purchaseOrderId": "ID dell'ordine d'acquisto",
+ "resourceAccount": "Identità del dispositivo o nome dell'entità utente.",
+ "serialNumber": "Numero di serie del dispositivo selezionato.",
+ "userPrincipalName": "Utente per precompilare l'autenticazione durante la configurazione del dispositivo."
+ },
+ "allDevices": "Tutti i dispositivi",
+ "allDevicesAlreadyAssignedError": "Un profilo di Autopilot è già assegnato a Tutti i dispositivi.",
+ "assignFailedDescription": "Non è stato possibile aggiornare le assegnazioni per {0}.",
+ "assignFailedTitle": "Non è stato possibile aggiornare le assegnazioni dei profili di Autopilot.",
+ "assignSuccessDescription": "Le assegnazioni per {0} sono state aggiornate.",
+ "assignSuccessTitle": "Le assegnazioni dei profili di Autopilot sono state aggiornate.",
+ "assignSufaceHub2ProfileNextStep": "Passaggi successivi per la distribuzione",
+ "assignSurfaceHub2ProfileToDeviceGroup": "1. Assegnare questo profilo ad almeno un gruppo di dispositivi",
+ "assignSurfaceHub2ProfileToResourceAccount": "2. Assegnare un account della risorsa a ogni dispositivo Surface Hub in cui si distribuisce il profilo",
+ "assignedDevicesCount": "Dispositivi assegnati",
+ "assignedDevicesResourceAccountDescription": "Per distribuire questo profilo in un dispositivo, è necessario assegnare al dispositivo un account della risorsa. Selezionare un dispositivo alla volta per assegnare un account della risorsa esistente o crearne uno nuovo. Altre informazioni sugli account della risorsa
",
+ "assignedDevicesResourceAccountStatusBarMessage": "Questa tabella elenca solo i dispositivi Surface Hub 2 a cui è stato assegnato il profilo.",
+ "assigningDescription": "Aggiornamento di assegnazioni per {0}.",
+ "assigningTitle": "Aggiornamento di assegnazioni dei profili di Autopilot.",
+ "autoremediationContext": "We've detected a hardware change on this device. We're trying to automatically register the new hardware. You don't need to do anything now; the status will be updated at the next check in with the result. Learn more about resetting the profile.",
+ "autoremediationTitle": "Device {0} has a fix pending",
+ "cannotDeleteMessage": "Questo profilo è assegnato ai gruppi. È necessario annullare l'assegnazione di tutti i gruppi da questo profilo prima di poterlo eliminare.",
+ "cannotDeleteTitle": "Non è possibile eliminare {0}",
+ "createdDateTime": "Ora di creazione",
+ "deleteMessage": "Se si elimina questo profilo di AutoPilot, eventuali dispositivi assegnati al profilo avranno stato Non assegnato.",
+ "deleteMessageWithPolicySet": "{0} è incluso in uno o più set di criteri. Se si elimina {0}, non sarà più possibile assegnarlo tramite questi set di criteri.",
+ "deleteTitle": "Eliminare questo profilo?",
+ "description": "Descrizione",
+ "deviceType": "Tipo di dispositivo",
+ "deviceUse": "Uso del dispositivo",
+ "directoryServiceHintForSurfaceHub2": " \r\n Autopilot supporta solo dispositivi aggiunti ad Azure AD per Surface Hub 2. Specificare il modo in cui i dispositivi vengono aggiunti ad Active Directory (AD) nell'organizzazione.\r\n
\r\n \r\n - \r\n Aggiunto ad Azure AD: solo cloud senza istanza locale di Windows Server Active Directory.\r\n
\r\n
\r\n ",
+ "directoryServiceHintForWindowsPC": "\r\n \r\n Specificare il modo in cui i dispositivi vengono aggiunti ad Active Directory (AD) nell'organizzazione:\r\n
\r\n \r\n - \r\n Aggiunta ad Azure AD: solo cloud senza istanza locale di Windows Server Active Directory\r\n
\r\n
\r\n ",
+ "getAssignedDevicesCountError": "Si è verificato un errore durante il recupero del numero di dispositivi assegnati.",
+ "getAssignmentsError": "Si è verificato un errore durante il recupero delle assegnazioni dei profili di Autopilot.",
+ "harvestDeviceId": "Converti tutti i dispositivi interessati in Autopilot",
+ "harvestDeviceIdDescription": "Per impostazione predefinita, questo profilo può essere applicato solo ai dispositivi di Autopilot sincronizzati dal servizio Autopilot.",
+ "harvestDeviceIdInfo": "\r\n Selezionare Sì per registrare tutti i dispositivi interessati in Autopilot, se non sono già stati registrati. Alla successiva Configurazione guidata di Windows, i dispositivi passeranno allo scenario di Autopilot assegnato.\r\n
\r\n Si noti che determinati scenari di Autopilot richiedono build minime specifiche di Windows. Assicurarsi che il dispositivo abbia la build minima necessaria per completare lo scenario.\r\n
\r\n La rimozione del profilo non rimuoverà i dispositivi interessati da Autopilot. Per rimuovere un dispositivo da Autopilot, usare la visualizzazione Dispositivi di Windows Autopilot.\r\n ",
+ "harvestDeviceIdWarning": "Dopo la conversione, è possibile ripristinare le impostazioni precedenti dei dispositivi di AutoPilot solo eliminandoli dall'elenco di dispositivi di AutoPilot.",
+ "holoLensCommandMenu": "HoloLens",
+ "info": "I profili di Windows AutoPilot Deployment consentono di personalizzare la Configurazione guidata per i dispositivi.",
+ "invalidProfileNameMessage": "Il carattere \"{0}\" non è consentito",
+ "joinTypeLabel": "Aggiungi ad Azure AD come",
+ "lastModifiedDateTime": "Ultima modifica:",
+ "manualRemediationContext": "We've detected a hardware change on this device. It won't automatically receive an Autopilot profile when it's reset unless you register the device again. Learn more about resetting the profile.",
+ "manualRemediationTitle": "Device {0} needs your attention",
+ "name": "Nome",
+ "noAutopilotProfile": "Nessun profilo di AutoPilot",
+ "notEnoughPermissionAssignedError": "Le autorizzazioni non sono sufficienti per assegnare questo profilo a uno o più gruppi selezionati. Contattare l'amministratore.",
+ "profile": "profilo",
+ "resourceAccountStatusBarMessage": "È necessario un account della risorsa per ogni dispositivo Surface Hub 2 in cui viene distribuito questo profilo. Fare clic per altre informazioni.",
+ "selectServices": "Selezionare il servizio directory a cui verranno aggiunti i dispositivi",
+ "surfaceHub2CommandMenu": "Surface Hub 2",
+ "surfaceHub2SCommandMenu": "Surface Hub 2S",
+ "userAffinityLabel": "Modalità di distribuzione",
+ "windowsPCCommandMenu": "PC Windows",
+ "directoryServiceLabel": "Aggiungi ad Azure AD come"
},
- "CategoryDescription": {
- "androidGeneralApplicationRestrictions": "Usare queste impostazioni per rimanere aggiornati su quali utenti installano app non approvate per l'uso nell'azienda. Selezionare il tipo di elenco di app con restrizioni:
\r\n App non consentite: elenco di app per cui si vogliono ricevere informazioni in caso di installazione da parte degli utenti.
\r\n App approvate: elenco di app approvate per l'uso nell'azienda. Si verrà informati quando gli utenti installano un'app non inclusa in questo elenco.
\r\n ",
- "androidZebraMxZebraMx": "Consente di configurare i dispositivi Zebra caricando un profilo MX in formato XML.",
- "iosDeviceFeaturesAirprint": "Usare queste impostazioni per configurare i dispositivi iOS in modo che si connettano automaticamente a stampanti compatibili con AirPrint in rete. Saranno necessari l'indirizzo IP e il percorso delle risorse delle stampanti.",
- "iosDeviceFeaturesExtensibleSingleSignOn": "Consente di configurare un'estensione dell'app che abilita l'accesso Single Sign-On per dispositivi che eseguono iOS 13.0 o versioni successive.",
- "iosDeviceFeaturesHomeScreenLayout": "Configurare il layout per le schermate di ancoraggio e iniziali nei dispositivi iOS. È possibile che per alcuni dispositivi siano previsti limiti relativi al numero di elementi visualizzabili.",
- "iosDeviceFeaturesIOSWallpaper": "Consente di visualizzare un'immagine che verrà mostrata nella schermata iniziale e/o nella schermata di blocco dei dispositivi iOS.\r\n Per visualizzare un'immagine univoca in ogni posizione, creare un profilo con l'immagine della schermata di blocco e un profilo con l'immagine della schermata iniziale.\r\n Assegnare quindi entrambi i profili agli utenti.\r\n
\r\n \r\n - Dimensioni massime file: 750 KB
\r\n - Tipo di file: PNG, JPG o JPEG
\r\n
\r\n ",
- "iosDeviceFeaturesNotifications": "Specificare le impostazioni di notifica per le app. Supporta iOS 9.3 e versioni successive.",
- "iosDeviceFeaturesSharedDevice": "Consente di specificare il testo facoltativo visualizzato nella schermata di blocco. Questa opzione è supportata in iOS 9.3 e versioni successive. Altre informazioni",
- "iosGeneralApplicationRestrictions": "Usare queste impostazioni per rimanere aggiornati su quali utenti installano app non approvate per l'uso nell'azienda. Selezionare il tipo di elenco di app con restrizioni:
\r\n App non consentite: elenco di app per cui si vogliono ricevere informazioni in caso di installazione da parte degli utenti.
\r\n App approvate: elenco di app approvate per l'uso nell'azienda. Si verrà informati quando gli utenti installano un'app non inclusa in questo elenco.
\r\n ",
- "iosGeneralApplicationVisibility": "Usare l'elenco di app visibili per specificare le app iOS che un utente è autorizzato a visualizzare o avviare. Usare l'elenco di app nascoste per specificare le app iOS che un utente non è autorizzato a visualizzare o avviare.",
- "iosGeneralAutonomousSingleAppMode": "Le app aggiunte a questo elenco e assegnate a un dispositivo possono bloccare il dispositivo, in modo che esegua solo l'app specifica dopo l'avvio oppure bloccarlo mentre è in esecuzione un'azione specifica, ad esempio un test. Al termine dell'azione o dopo la rimozione della restrizione, viene ripristinato lo stato normale del dispositivo.",
- "iosGeneralKiosk": "La modalità tutto schermo blocca diverse impostazioni in un dispositivo oppure specifica una singola app che può essere eseguita in un dispositivo. Questa opzione può essere utile in ambienti quali un punto vendita al dettaglio in cui si vuole che il dispositivo esegua solo una singola app demo.",
- "macDeviceFeaturesAirprint": "Usare queste impostazioni per configurare i dispositivi macOS per connettersi automaticamente alle stampanti compatibili con AirPrint disponibili nella rete. Sarà necessario specificare l'indirizzo IP e il percorso delle risorse delle stampanti.",
- "macDeviceFeaturesAssociatedDomains": "È possibile configurare i domini associati per la condivisione di dati e credenziali di accesso tra le app e i siti Web dell'organizzazione. Questo profilo può essere applicato a dispositivi che eseguono macOS 10.15 o versioni successive.",
- "macDeviceFeaturesExtensibleSingleSignOn": "Consente di configurare un'estensione dell'app che abilita l'accesso Single Sign-On per dispositivi che eseguono macOS 10.15 o versioni successive.",
- "macDeviceFeaturesLoginItems": "Scegliere le app, i file e le cartelle da aprire quando gli utenti accedono ai propri dispositivi. Se non si vuole che gli utenti modifichino la modalità di apertura delle app selezionate, è possibile nascondere le app dalla configurazione utente.",
- "macDeviceFeaturesLoginWindow": "È possibile configurare l'aspetto della schermata di accesso di macOS e le funzioni disponibili per gli utenti prima e dopo l'accesso.",
- "macExtensionsKernelExtensions": "Usare queste impostazioni per configurare i criteri di estensione del kernel in dispositivi macOS che eseguono la versione 10.13.2 o successiva.",
- "macGeneralDomains": "I messaggi di posta elettronica inviati o ricevuti dall'utente che non corrispondono ai domini specificati qui verranno contrassegnati come non attendibili.",
- "windows10EndpointProtectionApplicationGuard": "Quando si usa Microsoft Edge, Microsoft Defender Application Guard protegge l'ambiente dai siti non definiti come attendibili dall'organizzazione. Quando gli utenti visitano siti non elencati nei limiti della rete isolata, tali siti verranno aperti in una sessione del browser virtuale in Hyper-V. I siti attendibili vengono definiti da un limite di rete, che può essere configurato in Configurazioni dei dispositivi. Si noti che questa funzionalità è disponibile solo per i dispositivi Windows 10 a 64 bit o versioni successive.",
- "windows10EndpointProtectionCredentialGuard": "L'abilitazione di Credential Guard abiliterà le impostazioni necessarie seguenti:\r\n
\r\n \r\n - Abilita la sicurezza basata su virtualizzazione: attiva la sicurezza basata su virtualizzazione al riavvio successivo. La sicurezza basata su virtualizzazione usa Windows Hypervisor per offrire il supporto per i servizi di sicurezza.
\r\n
\r\n - Avvio protetto con accesso diretto alla memoria: attiva la sicurezza basata su virtualizzazione con l'avvio protetto e l'accesso diretto alla memoria.
\r\n
\r\n ",
- "windows10EndpointProtectionDeviceGuard": "Scegliere altre app che devono essere controllate o possono essere ritenute attendibili per l'esecuzione da parte di Controllo di applicazioni di Microsoft Defender. I componenti Windows e tutte le app di Windows Store sono ritenuti automaticamente attendibili per l'esecuzione.
\r\n Le applicazioni non verranno bloccate se sono in esecuzione in modalità \"Solo controllo\". La modalità \"Solo controllo\" registra tutti gli eventi nei log locali dei client.\r\n",
- "windows10GeneralPrivacyPerApp": "Aggiungere le app che devono avere un comportamento diverso a livello di privacy rispetto a quanto definito in \"Privacy predefinita\".",
- "windows10NetworkBoundaryNetworkBoundary": "Il limite di rete è l'elenco di risorse aziendali, ad esempio il dominio ospitato sul cloud e gli intervalli di indirizzi IP per i computer inclusi nella rete aziendale. Definire i limiti di rete per applicare criteri per la protezione dei dati disponibili in tali posizioni.",
- "windowsHealthMonitoring": "Configurare i criteri di monitoraggio dello stato di Windows.",
- "windowsPhoneGeneralApplicationRestrictions": "Windows Phone può impedire agli utenti di installare o avviare le app specificate nell'elenco di app non consentite oppure le app non specificate nell'elenco di app approvate. Tutte le app gestite devono essere aggiunte all'elenco di app approvate."
- },
"MinimumOperatingSystem": {
"Android": {
"v10": "Android 10.0",
@@ -2435,6 +1154,304 @@
"excludedGroups": "Gruppi esclusi",
"licenseType": "Tipo di licenza"
},
+ "TAP": {
+ "AccessRequirements": {
+ "infoText": "Configurare i requisiti per PIN e credenziali che gli utenti devono soddisfare per accedere alle app in un contesto aziendale."
+ },
+ "DataProtection": {
+ "infoText": "Questo gruppo include i controlli di prevenzione della perdita dei dati, ad esempio restrizioni per operazioni di tipo taglia, copia, incolla e salva con nome. Queste impostazioni determinano il modo in cui gli utenti interagiscono con i dati nelle app."
+ },
+ "DeviceTypes": {
+ "selectOne": "Selezionare almeno un tipo di dispositivo."
+ },
+ "TargetedApps": {
+ "TargetToAll": {
+ "label": "Specifica come destinatari le app in tutti i tipi di dispositivo"
+ },
+ "infoText": "Scegliere come si vuole applicare questo criterio alle app in dispositivi diversi. Quindi, aggiungere almeno un'app.",
+ "selectOne": "Selezionare almeno un'app per creare un criterio."
+ }
+ },
+ "AssignmentAction": {
+ "exclude": "Escluso",
+ "include": "Inclusi",
+ "includeAllDevicesVirtualGroup": "Inclusi",
+ "includeAllUsersVirtualGroup": "Inclusi"
+ },
+ "AppType": {
+ "androidEnterpriseSystemApp": "App del sistema Android Enterprise",
+ "androidForWorkApp": "App di Google Play Store gestito",
+ "androidLobApp": "App line-of-business Android",
+ "androidStoreApp": "Android store app",
+ "builtInAndroid": "App Android predefinita",
+ "builtInApp": "App predefinita",
+ "builtInIos": "App iOS predefinita",
+ "default": "",
+ "iosLobApp": "App line-of-business iOS",
+ "iosStoreApp": "App Store iOS",
+ "iosVppApp": "App Volume Purchase Program iOS",
+ "lineOfBusinessApp": "App line-of-business",
+ "macOSDmgApp": "macOS app (DMG)",
+ "macOSEdgeApp": "Microsoft Edge (macOS)",
+ "macOSLobApp": "App line-of-business macOS",
+ "macOSMdatpApp": "Microsoft Defender ATP (macOS)",
+ "macOSOfficeSuiteApp": "App di Microsoft 365 (macOS)",
+ "macOsVppApp": "App Volume Purchase Program macOS",
+ "managedAndroidLobApp": "App line-of-business Android gestita",
+ "managedAndroidStoreApp": "App di Android Store gestita",
+ "managedGooglePlayApp": "App di Google Play Store gestito",
+ "managedGooglePlayPrivateApp": "App privata di Google Play gestito",
+ "managedGooglePlayWebApp": "Collegamento Web di Google Play gestito",
+ "managedIosLobApp": "App line-of-business iOS gestita",
+ "managedIosStoreApp": "App dello Store iOS gestita",
+ "microsoftStoreForBusinessApp": "App di Microsoft Store per le aziende",
+ "microsoftStoreForBusinessReleaseManagedApp": "Microsoft Store per le aziende",
+ "officeSuiteApp": "Microsoft 365 Apps (Windows 10 e versioni successive)",
+ "webApp": "Collegamento Web",
+ "windowsAppXLobApp": "App line-of-business AppX per Windows",
+ "windowsClassicApp": "App Windows (Win32)",
+ "windowsEdgeApp": "Microsoft Edge (Windows 10 e versioni successive)",
+ "windowsMobileMsiLobApp": "App line-of-business di Windows MSI",
+ "windowsPhone81AppXBundleLobApp": "App line-of-business AppX per Windows Phone 8.1",
+ "windowsPhone81AppXLobApp": "App line-of-business AppX per Windows Phone 8.1",
+ "windowsPhone81StoreApp": "App dello Store per Windows Phone 8.1",
+ "windowsPhoneXapLobApp": "App line-of-business XAP per Windows Phone",
+ "windowsStoreApp": "App di Microsoft Store",
+ "windowsUniversalAppXLobApp": "App line-of-business AppX universale per Windows",
+ "windowsUniversalLobApp": "App line-of-business universale di Windows"
+ },
+ "TAPSettings": {
+ "AllowedDataIngestionLocations": {
+ "label": "Consenti agli utenti di aprire dati dai servizi selezionati",
+ "tooltip": "Selezionare i servizi di archiviazione dell'applicazione da cui gli utenti possono aprire dati. Tutti gli altri servizi sono bloccati. Se non si seleziona alcun servizio, gli utenti non potranno aprire i dati."
+ },
+ "AndroidBackup": {
+ "label": "Esegui il backup dei dati dell'organizzazione nei servizi di backup di Android",
+ "tooltip": "Selezionare {0} per impedire il backup dei dati dell'organizzazione nei servizi di backup di Android. \r\nSelezionare {1} per consentire il backup dei dati dell'organizzazione nei servizi di backup di Android. \r\nNon influisce sui dati personali o non gestiti."
+ },
+ "AndroidBiometricAuthentication": {
+ "label": "Biometria invece del PIN per l'accesso",
+ "tooltip": "Scegliere eventuali metodi di autenticazione di Android che possono essere usati dagli utenti invece del PIN dell'app."
+ },
+ "AndroidFingerprint": {
+ "label": "Impronta digitale invece del PIN per l'accesso (Android 6.0+)",
+ "tooltip": "Il sistema operativo Android usa le scansioni dell'impronta digitale per l'autenticazione degli utenti dei dispositivi Android. Questa funzionalità supporta i controlli biometrici nei dispositivi Android. Le impostazioni biometriche specifiche di OEM, come Samsung Pass, non sono supportate. Se consentiti, i controlli biometrici devono essere usati per accedere all'app in un dispositivo compatibile."
+ },
+ "AndroidOverrideFingerprint": {
+ "label": "Esegui l'override dell'impronta digitale con il PIN dopo il timeout"
+ },
+ "AppPIN": {
+ "label": "PIN dell'app quando il PIN del dispositivo è configurato",
+ "tooltip": "Se non è obbligatorio, non è necessario usare un PIN dell'app per accedere all'app se il PIN del dispositivo è impostato su un dispositivo registrato in MDM.
\r\n\r\nNota: Intune non può rilevare la registrazione di dispositivi con una soluzione EMM di terze parti in Android."
+ },
+ "BlockDataIngestionIntoOrganizationDocuments": {
+ "label": "Apri dati nei documenti dell'organizzazione",
+ "tooltip1": "Selezionare Blocca per disabilitare l'uso dell'opzione Apri o di altre opzioni per la condivisione di dati tra account in questa app. Selezionare Consenti se si vuole consentire l'uso dell'opzione Apri e di altre opzioni per la condivisione di dati tra account in questa app.",
+ "tooltip2": "Se questa opzione è impostata su Blocca, è possibile configurare l'impostazione seguente, Consenti agli utenti di aprire dati dai servizi selezionati, per specificare quali servizi sono consentiti per le posizioni dei dati dell'organizzazione.",
+ "tooltip3": "Nota: questa opzione viene applicata solo se l'impostazione \"Ricevi dati da altre app\" è impostata su \"App gestite da criteri\".
\r\nNota: questa impostazione non è applicabile a tutte le applicazioni. Per altre informazioni, vedere {0}.",
+ "tooltip4": "Nota: questa opzione viene applicata solo se l'impostazione \"Ricevi dati da altre app\" è impostata su \"App gestite da criteri\".
\r\nNota: questa impostazione non è applicabile a tutte le applicazioni. Per altre informazioni, vedere {0} o {0}."
+ },
+ "ConnectToVpnOnLaunch": {
+ "label": "Avviare la connessione a Microsoft Tunnel all'avvio dell'app",
+ "tooltip": "Consentire la connessione alla VPN all'avvio dell'app"
+ },
+ "CredentialsForAccess": {
+ "label": "Credenziali dell'account aziendale o dell'istituto di istruzione per l'accesso",
+ "tooltip": "Se necessario, le credenziali aziendali o dell'istituto di istruzione devono essere usate per accedere all'app gestita da criteri. Se sono necessari anche il PIN o metodi biometrici per l'accesso all'app, le credenziali dell'account aziendale o dell'istituto di istruzione verranno richieste oltre a tali prompt."
+ },
+ "CustomBrowserDisplayName": {
+ "label": "Nome del browser non gestito",
+ "tooltip": "Immettere il nome dell'applicazione per il browser associato all'impostazione \"ID browser non gestito\". Questo nome verrà visualizzato agli utenti se il browser specificato non è installato."
+ },
+ "CustomBrowserPackageId": {
+ "label": "ID browser non gestito",
+ "tooltip": "Immettere l'ID applicazione per un singolo browser. Il contenuto Web (http/s) dalle applicazioni gestite in base a criteri verrà aperto nel browser specificato."
+ },
+ "CustomBrowserProtocol": {
+ "label": "Protocollo del browser non gestito",
+ "tooltip": "Immettere il protocollo per un singolo browser non gestito. Il contenuto Web (http/s) dalle applicazioni gestite in base a criteri verrà aperto in qualsiasi app che supporta tale protocollo.
\r\n \r\nNota: includere solo il prefisso del protocollo. Se il browser richiede collegamenti con formato \"browserpersonale://www.microsoft.com\", immettere \"browserpersonale\".
"
+ },
+ "CustomDialerAppDisplayName": {
+ "label": "Nome dell'app dialer"
+ },
+ "CustomDialerAppPackageId": {
+ "label": "ID pacchetto dell'app dialer"
+ },
+ "CustomDialerAppProtocol": {
+ "label": "Schema dell'URL dell'app dialer"
+ },
+ "Cutcopypaste": {
+ "label": "Limita le operazioni taglia, copia e incolla tra altre app",
+ "tooltip": "È possibile tagliare, copiare e incollare dati tra l'app e le altre app approvate installate nel dispositivo. Si può scegliere di bloccare completamente queste azioni tra le app, consentire queste azioni per l'uso con qualsiasi app o limitare l'uso alle app gestite dall'organizzazione.
\r\n\r\nApp gestite da criteri con Incolla in consente di accettare il contenuto in ingresso incollato da un'altra app. Impedisce tuttavia agli utenti di condividere contenuti verso l'esterno, ad eccezione della condivisione con un'app gestita.
"
+ },
+ "DialerRestrictionLevel": {
+ "iosTooltip": "In genere, quando un utente seleziona un numero di telefono con collegamento ipertestuale in un'app, viene aperta un'app dialer con il numero di telefono prepopolato e pronto da chiamare. Per questa impostazione, scegliere come gestire questo tipo di trasferimento di contenuto quando viene avviato da un'app gestita da criteri. Per rendere effettiva questa impostazione, potrebbero essere necessari ulteriori passaggi. In primo luogo, verificare che i protocolli tel e telprompt siano stati rimossi dall'elenco Selezionare le app da esentare. Assicurarsi quindi che l'applicazione stia usando una versione più recente di Intune SDK (versione 12.7.0+).",
+ "label": "Trasferisci i dati delle telecomunicazioni a",
+ "tooltip": "Quando un utente seleziona un numero di telefono con collegamento ipertestuale in un'app, verrà aperta in genere un'app dialer con il numero di telefono prepopolato e pronto per la chiamata. Per questa impostazione, è possibile scegliere come gestire questo tipo di trasferimento di contenuti quando viene avviato da un'app gestita da criteri."
+ },
+ "EncryptData": {
+ "label": "Crittografa i dati dell'organizzazione",
+ "link": "https://docs.microsoft.com/it-it/intune/app-protection-policy-settings-android#data-relocation-settings",
+ "tooltip": "Selezionare {0} per imporre la crittografia dei dati dell'organizzazione con la crittografia a livello di app di Intune.\r\n
\r\nSelezionare {1} per non imporre la crittografia dei dati dell'organizzazione con la crittografia a livello di app di Intune.\r\n\r\n
\r\nNota: per altre informazioni sulla crittografia a livello di app di Intune, vedere {2}."
+ },
+ "EncryptDataAndroid": {
+ "tooltip": "Scegliere Rendi obbligatorio per abilitare la crittografia dei dati aziendali o dell'istituto di istruzione in questa app. Intune usa uno schema di crittografia AES OpenSSL a 256 bit insieme al sistema Archivio chiavi Android per crittografare in modo sicuro i dati delle app. I dati vengono crittografati in modo sincrono durante le attività I/O dei file. Il contenuto nelle risorse di archiviazione del dispositivo è sempre crittografato. L'SDK continuerà a fornire supporto per le chiavi a 128 bit per assicurare la compatibilità con contenuto e con app che usano versioni precedenti dell'SDK.
\r\n\r\nIl metodo di crittografia è compatibile con FIPS 140-2.
"
+ },
+ "EncryptDataIos": {
+ "tooltip1": "Scegliere Rendi obbligatorio per abilitare la crittografia dei dati aziendali o dell'istituto di istruzione in questa app. Intune applica la crittografia dei dispositivi iOS/iPadOS per proteggere i dati dell'app quando il dispositivo è bloccato. Le applicazioni possono crittografare facoltativamente i dati usando la crittografia di APP SDK. Intune APP SDK usa i metodi di crittografia iOS/iPadOS per applicare la crittografia AES a 128 bit ai dati delle app.",
+ "tooltip2": "Quando si abilita questa impostazione, è possibile che venga richiesto all'utente di configurare e usare un PIN per accedere al dispositivo. Se non è disponibile alcun PIN del dispositivo e la crittografia è obbligatoria, viene richiesto all'utente di impostare un PIN con il messaggio \"L'organizzazione ha richiesto all'utente di abilitare prima di tutto un PIN del dispositivo per accedere all'app\".",
+ "tooltip3": "Passare alla documentazione ufficiale di Apple per verificare i moduli di crittografia iOS conformi con FIPS 140-2 o in attesa di conformità con FIPS 140-2."
+ },
+ "EncryptDataOnEnrolledDevices": {
+ "label": "Crittografa i dati dell'organizzazione nei dispositivi registrati",
+ "tooltip": "Selezionare {0} per imporre la crittografia dei dati dell'organizzazione con la crittografia a livello di app di Intune in tutti i dispositivi.
\r\n\r\nSelezionare {1} per non imporre la crittografia dei dati dell'organizzazione con la crittografia a livello di app di Intune nei dispositivi registrati."
+ },
+ "IOSBackup": {
+ "label": "Esegui il backup dei dati dell'organizzazione nei backup di iTunes e iCloud",
+ "tooltip": "Selezionare {0} per impedire il backup dei dati dell'organizzazione in iTunes o iCloud. \r\nSelezionare {1} per consentire il backup dei dati dell'organizzazione in iTunes o iCloud. \r\nNon influisce sui dati personali o non gestiti."
+ },
+ "IOSFaceID": {
+ "label": "Face ID invece del PIN per l'accesso (iOS 11+/iPadOS)",
+ "tooltip": "Face ID usa la tecnologia di riconoscimento facciale per autenticare gli utenti nei dispositivi iOS/iPadOS. Intune chiama l'API LocalAuthentication per autenticare gli utenti con Face ID. Se consentito, Face ID deve essere usato per accedere all'app in un dispositivo compatibile con Face ID."
+ },
+ "IOSOverrideTouchId": {
+ "label": "Esegui l'override dei dati biometrici con il PIN dopo il timeout"
+ },
+ "IOSTouchId": {
+ "label": "Touch ID invece del PIN per l'accesso (iOS 8+/iPadOS)",
+ "tooltip": "Touch ID usa la tecnologia di riconoscimento dell'impronta digitale per autenticare gli utenti nei dispositivi iOS. Intune chiama l'API LocalAuthentication per autenticare gli utenti con Touch ID. Se consentito, Touch ID deve essere usato per accedere all'app in un dispositivo compatibile con Touch ID."
+ },
+ "NotificationRestriction": {
+ "label": "Notifiche sui dati dell'organizzazione",
+ "tooltip": "Selezionare una delle opzioni seguenti per specificare il modo in cui vengono visualizzate le notifiche per gli account dell'organizzazione per questa app e per eventuali dispositivi connessi, ad esempio i dispositivi indossabili:
\r\n{0}: le notifiche non vengono condivise.
\r\n{1}: i dati dell'organizzazione non vengono condivisi nelle notifiche. Se questa opzione non è supportata dall'applicazione, le notifiche vengono bloccate.
\r\n{2}: tutte le notifiche vengono condivise.
\r\n Solo Android:\r\n Nota: questa impostazione non è applicabile a tutte le applicazioni. Per altre informazioni, vedere {3}
\r\n \r\n Solo iOS:\r\nNota: questa impostazione non è applicabile a tutte le applicazioni. Per altre informazioni, vedere {4}
"
+ },
+ "OpenLinksManagedBrowser": {
+ "label": "Limita il trasferimento di contenuto Web con altre app",
+ "tooltip": "Selezionare una delle opzioni seguenti per specificare le app in cui questa app può aprire contenuto Web:
\r\nEdge: consente l'apertura del contenuto Web solo in Edge
\r\nBrowser non gestito: consente l'apertura del contenuto Web solo nel browser non gestito definito nell'impostazione \"Protocollo del browser non gestito\"
\r\nQualsiasi app: consente i collegamenti Web in qualsiasi app
"
+ },
+ "OverrideBiometric": {
+ "tooltip": "Se necessario, in base al timeout (minuti di inattività), un prompt del PIN eseguirà l'override dei prompt di biometria. Se questo valore di timeout non viene raggiunto, continuerà a essere visualizzato il prompt di biometria. Il valore di timeout deve essere superiore al valore specificato in 'Controlla di nuovo i requisiti di accesso dopo (minuti di inattività)'. "
+ },
+ "PinAccess": {
+ "label": "PIN per l'accesso",
+ "tooltip": "Se necessario, un PIN deve essere usato per accedere all'app gestita da criteri. Gli utenti devono creare un PIN di accesso alla prima apertura dell'app da un account aziendale o dell'istituto di istruzione."
+ },
+ "PinLength": {
+ "label": "Selezionare la lunghezza minima del PIN",
+ "tooltip": "Questa impostazione specifica il numero minimo di cifre di un PIN."
+ },
+ "PinType": {
+ "label": "Tipo di PIN",
+ "tooltip": "I PIN numerici sono costituiti completamente da numeri. I passcode sono costituiti da caratteri alfanumerici e caratteri speciali. "
+ },
+ "Printing": {
+ "label": "Stampa dei dati dell'organizzazione",
+ "tooltip": "Se questa opzione è bloccata, l'app non può stampare dati protetti."
+ },
+ "ReceiveData": {
+ "label": "Ricevi dati da altre app",
+ "tooltip": "Selezionare una delle opzioni seguenti per specificare le app da cui questa app non può ricevere dati:
\r\n\r\nNessuna: non consente la ricezione di dati nei documenti o negli account dell'organizzazione da qualsiasi app
\r\n\r\nApp gestite da criteri: consente la ricezione di dati nei documenti o negli account dell'organizzazione solo da altre app gestite da criteri\r\n
\r\nTutte le app con dati dell'organizzazione in ingresso: consente la ricezione di dati nei documenti o negli account dell'organizzazione da qualsiasi app e permette di considerare tutti i dati in ingresso senza account utente come dati dell'organizzazione
\r\n\r\nTutte le app: consente la ricezione di dati nei documenti o negli account dell'organizzazione da qualsiasi app"
+ },
+ "RecheckAccessAfter": {
+ "label": "Controlla di nuovo i requisiti di accesso dopo (minuti di inattività)\r\n\r\n",
+ "tooltip": "Se l'app gestita da criteri è inattiva per un periodo superiore al numero di minuti di inattività specificato, l'app richiederà una nuova verifica dei requisiti di accesso (ad esempio PIN, impostazioni di avvio condizionale) dopo l'avvio dell'app."
+ },
+ "RestrictKeyboards": {
+ "duplicatePackageError": "L'ID pacchetto deve essere univoco.",
+ "invalidPackageError": "L'ID pacchetto non è valido",
+ "label": "Tastiere approvate",
+ "select": "Selezionare le tastiere da approvare",
+ "subtitle": "Aggiungere tutte le tastiere e i metodi di input che gli utenti sono autorizzati a usare con le app interessate. Immettere il nome della tastiera che si vuole venga visualizzato all'utente finale.",
+ "title": "Aggiungi le tastiere approvate",
+ "toolTip": "Selezionare Richiedi e quindi specificare un elenco di tastiere approvate per questo criterio. Altre informazioni."
+ },
+ "SaveData": {
+ "label": "Salva copie dei dati dell'organizzazione",
+ "tooltip": "Selezionare {0} per impedire il salvataggio di una copia dei dati dell'organizzazione in un nuovo percorso, diverso dai servizi di archiviazione selezionati, mediante \"Salva con nome\".\r\n Selezionare {1} per consentire il salvataggio di una copia dei dati dell'organizzazione in un nuovo percorso mediante \"Salva con nome\".
\r\n\r\n\r\nNota: questa impostazione non è applicabile a tutte le applicazioni. Per altre informazioni, vedere {2}.\r\n"
+ },
+ "SaveDataToSelected": {
+ "label": "Consenti all'utente di salvare copie nei servizi selezionati",
+ "tooltip": "Selezionare i servizi di archiviazione in cui gli utenti possono salvare copie dei dati dell'organizzazione. Tutti gli altri servizi sono bloccati. Se non si seleziona alcun servizio, gli utenti non potranno salvare una copia dei dati dell'organizzazione."
+ },
+ "ScreenCaptureAndAndroidAssistant": {
+ "label": "Acquisizione di schermata e Assistente Google\r\n",
+ "tooltip": "Se questa opzione è bloccata, le funzionalità di analisi di app di acquisizione di schermata e Assistente Google verranno disabilitate durante l'uso dell'app gestita da criteri. Questa funzionalità supporta l'app Assistente Google normale. Gli assistenti di terze parti che usano l'API Assistente Google non sono supportati. Se si sceglie Blocca l'immagine di anteprima della funzionalità di selezione app risulterà sfocata durante l'uso dell'app con un account aziendale o dell'istituto di istruzione."
+ },
+ "SendData": {
+ "label": "Invia i dati dell'organizzazione ad altre app",
+ "tooltip": "Selezionare una delle opzioni seguenti per specificare le app a cui questa app può inviare i dati dell'organizzazione:
\r\n\r\n\r\nNessuna: non consente l'invio di dati dell'organizzazione ad alcuna app
\r\n\r\n\r\nApp gestite da criteri: consente l'invio di dati dell'organizzazione solo ad altre app gestite da criteri
\r\n\r\n\r\nApp gestita da criteri con condivisione del sistema operativo: consente l'invio di dati dell'organizzazione solo ad altre app gestite da criteri e l'invio di documenti dell'organizzazione solo ad altre app gestite in MDM nei dispositivi registrati
\r\n\r\n\r\nApp gestite da criteri con filtro basato su Apri in/Condividi: consente l'invio di dati dell'organizzazione solo ad altre app gestite da criteri e l'applicazione di filtri alle finestre di dialogo Apri in/Condividi in modo che vengano visualizzate solo le app gestite da criteri\r\n
\r\n\r\nTutte le app: consente l'invio di dati dell'organizzazione a qualsiasi app"
+ },
+ "SimplePin": {
+ "label": "PIN semplice",
+ "tooltip": "Se questa opzione è bloccata, gli utenti non possono creare un PIN semplice. Un PIN semplice è una stringa di cifre consecutive o ripetitive, ad esempio 1234, ABCD o 1111. Si noti che il blocco di un PIN semplice di tipo 'Passcode' richiede che il passcode includa almeno un numero, una lettera e un carattere speciale."
+ },
+ "SyncContacts": {
+ "label": "Sincronizza i dati delle app gestite da criteri con le app native o i componenti aggiuntivi"
+ },
+ "ThirdPartyKeyboards": {
+ "infoBox": "Le restrizioni per la tastiera verranno applicate a tutte le aree di un'app. Gli account personali per le app che supportano più identità saranno interessati da questa restrizione. Altre informazioni.",
+ "label": "Tastiere di terze parti"
+ },
+ "Timeout": {
+ "label": "Timeout (minuti di inattività)"
+ },
+ "Tap": {
+ "numberOfDays": "Numero di giorni",
+ "pinResetAfterNumberOfDays": "Numero di giorni di attesa prima della reimpostazione del PIN",
+ "previousPinBlockCount": "Selezionare il numero di valori precedenti del PIN da conservare"
+ }
+ },
+ "ScheduledAction": {
+ "Form": {
+ "editBlockActionInfo": "È necessaria un'azione di blocco per tutti i criteri di conformità.",
+ "graceperiod": "Pianifica (giorni dopo la non conformità)",
+ "graceperiodInfo": "Specificare il numero di giorni di non conformità dopo i quali è necessario attivare questa azione per il dispositivo dell'utente",
+ "subtitle": "Specificare i parametri dell'azione",
+ "title": "Parametri dell'azione"
+ },
+ "List": {
+ "gracePeriodDay": "{0} giorno dopo la non conformità",
+ "gracePeriodDays": "{0} giorni dopo la non conformità",
+ "gracePeriodHour": "{0} ora dopo la non conformità",
+ "gracePeriodHours": "{0} ore dopo la non conformità",
+ "gracePeriodMinute": "{0} minuto dopo la non conformità",
+ "gracePeriodMinutes": "{0} minuti dopo la non conformità",
+ "immediately": "Immediatamente",
+ "schedule": "Pianifica",
+ "scheduleInfoBalloon": "Giorni dopo la non conformità",
+ "subtitle": "Specificare la sequenza di azioni nei dispositivi non conformi",
+ "title": "Azioni"
+ },
+ "Notification": {
+ "additionalEmailLabel": "Altri",
+ "additionalRecipients": "Altri destinatari (tramite posta elettronica)",
+ "additionalRecipientsBladeTitle": "Selezionare destinatari aggiuntivi",
+ "emailAddressPrompt": "Immettere gli indirizzi di posta elettronica (separati da virgole)",
+ "invalidEmail": "L'indirizzo di posta elettronica non è valido",
+ "messageTemplate": "Modello di messaggio",
+ "noneSelected": "Nessuna selezione",
+ "notSelected": "Non selezionato",
+ "numSelected": "{0} selezionati",
+ "selected": "Selezionata"
+ },
+ "block": "Contrassegna il dispositivo come non conforme",
+ "lockDevice": "Blocca il dispositivo (azione locale)",
+ "lockDeviceWithPasscode": "Blocca il dispositivo (azione locale)",
+ "noAction": "Nessuna azione",
+ "noActionRow": "Nessuna azione, selezionare 'Aggiungi' per aggiungere un'azione",
+ "pushNotification": "Invia una notifica push all'utente finale",
+ "remoteLock": "Blocca in remoto il dispositivo non conforme",
+ "removeSourceAccessProfile": "Rimuovi il profilo di accesso di origine",
+ "retire": "Ritira il dispositivo non conforme",
+ "wipe": "Cancella",
+ "emailNotification": "Invia un messaggio di posta elettronica all'utente finale"
+ },
+ "InstallIntent": {
+ "available": "Disponibile per i dispositivi registrati",
+ "availableWithoutEnrollment": "Disponibile con o senza registrazione",
+ "required": "Obbligatorio",
+ "uninstall": "Disinstalla"
+ },
"EnrollmentStatusScreen": {
"Apps": {
"managedApps": "App gestite",
@@ -2466,142 +1483,61 @@
"resetToggle": "Consenti agli utenti di reimpostare il dispositivo se si verifica un errore di installazione",
"timeout": "Mostra un errore se l'installazione richiede più tempo rispetto al numero di minuti specificato"
},
- "EnrollmentType": {
- "devicesWithEnrollment": "Dispositivi gestiti",
- "devicesWithoutEnrollment": "App gestite"
- },
- "ApplicabilityRules": {
- "GridLabel": {
- "property": "Proprietà",
- "rule": "Regola",
- "ruleDetails": "Dettagli regola",
- "value": "Valore"
- },
- "assignIf": "Assegna un profilo se",
- "deleteWarning": "La regola di applicabilità selezionata verrà eliminata",
- "dontAssignIf": "Non assegnare un profilo se",
- "editionDisplayText": "{0} {1}",
- "editionDisplayTextMore": "e {0} in più",
- "instructions": "Specificare la modalità di applicazione del profilo in un gruppo assegnato. Intune applicherà il profilo solo ai dispositivi che rispettano i criteri combinati di queste regole.",
- "maxText": "Max",
- "minText": "Min",
- "noActionRow": "Non sono state specificate regole di applicabilità",
- "oSVersion": "Ad esempio, 1.2.3.4",
- "toText": "al",
- "windows10Education": "Windows 10/11 Education",
- "windows10EducationN": "Windows 10/11 Education N",
- "windows10Enterprise": "Windows 10/11 Enterprise",
- "windows10EnterpriseN": "Windows 10/11 Enterprise N",
- "windows10HolographicEnterprise": "Windows 10 Holographic for Business",
- "windows10Home": "Windows 10/11 Home",
- "windows10HomeChina": "Windows 10 Home - Cina",
- "windows10HomeN": "Windows 10/11 Home N",
- "windows10HomeSingleLanguage": "Windows 10/11 Home Single Language",
- "windows10IoTCore": "Windows 10 IoT Core",
- "windows10IoTCoreCommercial": "Windows 10 IoT Core Commercial",
- "windows10Mobile": "Windows 10 Mobile",
- "windows10MobileEnterprise": "Windows 10 Mobile Enterprise",
- "windows10OsEdition": "Edizione del sistema operativo",
- "windows10OsVersion": "Versione del sistema operativo",
- "windows10Professional": "Windows 10/11 Professional",
- "windows10ProfessionalEducation": "Windows 10/11 Professional Education",
- "windows10ProfessionalEducationN": "Windows 10/11 Professional Education N",
- "windows10ProfessionalN": "Windows 10 Professional N",
- "windows10ProfessionalWorkstation": "Windows 10/11 Professional Workstation",
- "windows10ProfessionalWorkstationN": "Windows 10/11 Professional Workstation N"
+ "Devices": {
+ "General": {
+ "android": "Android"
+ },
+ "aOSP": "Android Open Source Project",
+ "android": "Amministratore di dispositivi Android",
+ "androidWorkProfile": "Android Enterprise (profilo di lavoro)",
+ "iOS": "iOS/iPadOS",
+ "mac": "macOS",
+ "windows": "Windows (MDM)",
+ "windows10": "Windows 10 e versioni successive",
+ "windowsHomeSku": "SKU di Windows Home",
+ "windowsMobile": "Windows Mobile"
+ },
+ "AppInfoBalloonText": {
+ "Certificate": {
+ "customSubjectName": "CN={{UserName}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US\r\nor\r\nCN={{AAD_Device_ID}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US",
+ "keySize": "Selezionare il numero di bit contenuti nella chiave.",
+ "keyUsage": "Specificare l'azione crittografica necessaria per lo scambio della chiave pubblica del certificato.",
+ "renewalThreshold": "Immettere la percentuale (tra 1 e 99 percento) della durata rimanente del certificato consentita prima che un dispositivo possa richiedere il rinnovo del certificato. Il valore consigliato in Intune è 20%. (1-99)",
+ "rootCert": "Scegliere un profilo di certificato della CA radice configurato e assegnato in precedenza. Il certificato della CA deve corrispondere al certificato radice della CA che rilascia il certificato per questo profilo, ovvero per il profilo attualmente in fase di configurazione.",
+ "scepServerUrl": "Immettere un URL per il server NDES che rilascia certificati tramite SCEP. L'URL deve essere di tipo HTTPS, ad esempio, https://contoso.com/certsrv/mscep/mscep.dll",
+ "scepServerUrls": "Aggiungere uno o più URL per il server NDES che rilascia certificati tramite SCEP. L'URL deve essere di tipo HTTPS, ad esempio, https://contoso.com/certsrv/mscep/mscep.dll",
+ "subjectAlternativeName": "Nome alternativo del soggetto",
+ "subjectNameFormat": "Formato nome soggetto",
+ "validityPeriod": "Quantità di tempo rimanente prima della scadenza del certificato. Immettere un valore uguale o inferiore al periodo di validità indicato nel modello di certificato. L'impostazione predefinita è un anno."
+ },
+ "appInstallContext": "Specifica il contesto di installazione da associare all'app. Per le app a modalità doppia, selezionare il contesto da usare per l'app. Per tutte le altre app l'opzione è preselezionata in base al pacchetto e non può essere modificata.",
+ "autoUpdateMode": "Configurare la priorità di aggiornamento per l'app. Selezionare Impostazione predefinita per richiedere che il dispositivo sia connesso al WiFi, che sia in carica e che non sia attivamente in uso prima di aggiornare l'app. Seleziona Priorità alta per aggiornare l'app non appena lo sviluppatore ha pubblicato l'app, indipendentemente dallo stato di addebito, dalla funzionalità WiFi o dall'attività dell'utente finale nel dispositivo. Selezionare Posponi per la revoca degli aggiornamenti dell'app per un massimo di 90 giorni. La priorità alta e il posticipo avranno effetto solo sui dispositivi DO.",
+ "configurationSettingsFormat": "Testo del formato delle impostazioni di configurazione",
+ "ignoreVersionDetection": "Impostare questa opzione su \"Sì\" per le app aggiornate automaticamente dallo sviluppatore dell'app, ad esempio Google Chrome.",
+ "ignoreVersionDetectionMacOSLobApp": "Selezionare \"Sì\" per le app che vengono caricate automaticamente dallo sviluppatore dell'app o per verificare solo il valore bundleID dell'app prima dell'installazione. Selezionare \"No\" per verificare il valore bundleID e il numero di versione prima dell'installazione.",
+ "installAsManagedMacOSLobApp": "Questa impostazione è applicabile solo a macOS 11 e versioni successive. L'app verrà installata ma non gestita in macOS 10.15 e versioni precedenti.",
+ "installContextDropdown": "Selezionare il contesto di installazione appropriato. Il contesto utente installerà l'app solo per l'utente interessato mentre il contesto di dispositivo installerà l'app per tutti gli utenti nel dispositivo.",
+ "ldapUrl": "Nome host LDAP in cui i client possono ottenere le chiavi di crittografia pubbliche per i destinatari dei messaggi di posta elettronica. I messaggi verranno crittografati quando è disponibile una chiave. Formati supportati: - ldap.example.com
\r\n- ldap.example.com:123
\r\n- ldap://ldap.example.com
- ldap://ldap.example.com:123
- ldaps://ldap.example.com
\r\n- ldaps://ldap.example.com:123
",
+ "permissionsSettings": "Selezionare le autorizzazioni di runtime per l'app associata.",
+ "policyAssociatedApp": "Selezionare l'app a cui verrà associato questo criterio.",
+ "policyConfigurationSettings": "Selezionare il metodo da usare per definire le impostazioni di configurazione per questo criterio.",
+ "policyDescription": "Immettere facoltativamente una descrizione per questo criterio di configurazione.",
+ "policyEnrollmentType": "Scegliere se queste impostazioni vengono gestite tramite la gestione dei dispositivi o tramite app create con Intune SDK.",
+ "policyName": "Immettere un nome per questo criterio di configurazione.",
+ "policyPlatform": "Selezionare la piattaforma a cui verrà applicato questo criterio di configurazione dell'app.",
+ "policyProfileType": "Selezionare i tipi di profilo del dispositivo a cui verrà applicato questo profilo di configurazione dell'app",
+ "policySMime": "Configurare le impostazioni per la firma e la crittografia S/MIME per Outlook.",
+ "sMimeDeployCertsFromIntune": "Specificare se i certificati S/MIME verranno recapitati o meno da Intune per l'uso con Outlook.\r\nIntune può distribuire automaticamente certificati di firma e di crittografia agli utenti tramite il Portale aziendale.",
+ "sMimeEnable": "Specificare se i controlli S/MIME sono abilitati o meno durante la composizione di un messaggio di posta elettronica",
+ "sMimeEnableAllowChange": "Specificare se l'utente è autorizzato a modificare l'impostazione Abilita S/MIME.",
+ "sMimeEncryptAllEmails": "Specificare se tutti i messaggi di posta elettronica devono essere crittografati o meno.\r\nLa crittografia converte i dati in testo crittografato in modo che possano essere letti solo dal destinatario previsto.",
+ "sMimeEncryptAllEmailsAllowChange": "Specificare se l'utente è autorizzato a modificare l'impostazione Crittografa tutti i messaggi di posta elettronica.",
+ "sMimeEncryptionCertProfile": "Specificare il profilo del certificato per la crittografia della posta elettronica.",
+ "sMimeSignAllEmails": "Specificare se tutti i messaggi di posta elettronica devono essere firmati o meno.\r\nUna firma digitale verifica l'autenticità del messaggio di posta elettronica e assicura che i contenuti non siano stati manomessi durante il transito.",
+ "sMimeSignAllEmailsAllowChange": "Specificare se l'utente è autorizzato a modificare l'impostazione Firma tutti i messaggi di posta elettronica.",
+ "sMimeSigningCertProfile": "Specificare il profilo del certificato per la firma della posta elettronica.",
+ "sMimeUserNotificationType": "Metodo per segnalare agli utenti che è necessario aprire il Portale aziendale per recuperare certificati S/MIME per Outlook."
},
- "BooleanActions": {
- "allow": "Consentire",
- "block": "Blocca",
- "configured": "Configurato",
- "disable": "Disabilita",
- "dontRequire": "Non rendere obbligatorio",
- "enable": "Abilita",
- "hide": "Nascondi",
- "limit": "Limite",
- "notConfigured": "Non configurato",
- "require": "Rendi obbligatorio",
- "show": "Mostra",
- "yes": "Sì"
- },
- "ProactiveRemediations": {
- "Create": {
- "Basics": {
- "DescriptionMultiLineTextBox": {
- "label": "Descrizione",
- "placeholder": "Immettere una descrizione"
- },
- "NameTextBox": {
- "label": "Nome",
- "placeholder": "Immettere un nome"
- },
- "PublisherTextBox": {
- "label": "Server di pubblicazione",
- "placeholder": "Immettere un autore"
- },
- "VersionTextBox": {
- "label": "Versione"
- },
- "headerDescription": "Consente di creare un nuovo pacchetto di script personalizzato dagli script di rilevamento e correzione scritti dall'utente."
- },
- "ScopeTags": {
- "headerDescription": "Selezionare uno o più gruppi a cui assegnare il pacchetto di script."
- },
- "Settings": {
- "DetectionScriptMultiLineTextBox": {
- "label": "Script di rilevamento",
- "placeholder": "Inserire il testo dello script",
- "requiredValidationMessage": "Immettere lo script di rilevamento"
- },
- "EnforceScriptSignatureCheckOptionPicker": {
- "label": "Imponi il controllo della firma degli script"
- },
- "LoggedOnCredentialsOptionPicker": {
- "label": "Esegui lo script con le credenziali dell'utente connesso"
- },
- "RemediationScript": {
- "infoBox": "Questo script verrà eseguito in modalità di solo rilevamento perché non è presente alcuno script di correzione."
- },
- "RemediationScriptMultiLineTextBox": {
- "label": "Script di monitoraggio e aggiornamento",
- "placeholder": "Inserire il testo dello script"
- },
- "RunIn64BitPSOptionPicker": {
- "label": "Esegui lo script in PowerShell a 64 bit"
- },
- "ScriptMultiLineTextBox": {
- "base64EncodingValidationMessage": "Lo script non è valido. Uno o più caratteri usati nello script non sono validi."
- },
- "headerDescription": "Consente di creare un pacchetto di script personalizzato dagli script scritti dall'utente. Per impostazione predefinita, gli script verranno eseguiti ogni giorno nei dispositivi assegnati.",
- "infoBox": "Lo script è di sola lettura. È possibile che alcune impostazioni per lo script siano disabilitate."
- },
- "title": "Crea uno script personalizzato",
- "ScriptProperties": {
- "GridHeaders": {
- "interval": "Intervallo",
- "time": "Data e ora"
- },
- "Interval": {
- "day": "Ripetizione ogni giorno",
- "days": "Ripetizione ogni {0} giorni",
- "hour": "Ripetizione ogni ora",
- "hours": "Si ripete ogni {0} ore",
- "month": "Ripetizione ogni mese",
- "months": "Ripetizione ogni {0} mesi",
- "week": "Ripetizione ogni settimana",
- "weeks": "Ripetizione ogni {0} settimane"
- },
- "Time": {
- "utc": "{0} (UTC)",
- "utcWithDate": "{0} (UTC) in data {1}",
- "withDate": "{0} in data {1}"
- }
- }
- },
- "Edit": {
- "title": "Modifica - {0}"
- }
- },
"WindowsManagement": {
"Assignment": {
"noAssignmentCustomAttributeDisplayText": "Assegnare l'attributo personalizzato ad almeno un gruppo. Passare a Proprietà per modificare le assegnazioni.",
@@ -2708,910 +1644,6 @@
"shellScriptObjectName": "Script della shell",
"successfullySavedPolicy": "Il salvataggio di {0} è stato completato"
},
- "AssignmentFilters": {
- "assignmentFilterColumnHeader": "Filtro",
- "noFilters": "Nessuno"
- },
- "Category": {
- "airPlay": "AirPlay",
- "airPrint": "AirPrint",
- "androidDefenderAtp": "Microsoft Defender per endpoint",
- "androidDeviceOwnerApplications": "Applicazioni",
- "androidForWorkPassword": "Password per il dispositivo",
- "appManagement": "Consenti o blocca le app",
- "applicationGuard": "Microsoft Defender Application Guard",
- "applicationRestrictions": "App con restrizioni",
- "applicationVisibility": "Mostra o nascondi le app",
- "applications": "App Store",
- "applicationsAndGames": "App Store, visualizzazione documenti, giochi",
- "applicationsAndGoogle": "Google Play Store",
- "appsAndExperience": "App ed esperienza",
- "associatedDomains": "Domini associati",
- "autonomousSingleAppMode": "Modalità applicazione singola autonoma",
- "azureOperationalInsights": "Azure Operational Insights",
- "bitLocker": "Crittografia di Windows",
- "browser": "Browser",
- "builtinApps": "App predefinite",
- "cellular": "Rete cellulare",
- "cloudAndStorage": "Cloud e risorse di archiviazione",
- "cloudPrint": "Stampante cloud",
- "complianceEmailProfile": "Posta elettronica",
- "connectedDevices": "Dispositivi connessi",
- "connectivity": "Rete cellulare e connettività",
- "contentCaching": "Memorizzazione nella cache dei contenuti",
- "controlPanelAndSettings": "Pannello di controllo e impostazioni",
- "credentialGuard": "Microsoft Defender Credential Guard",
- "customCompliance": "Conformità personalizzata",
- "customCompliancePreview": "Conformità personalizzata (anteprima)",
- "customConfiguration": "Profilo di configurazione personalizzato",
- "customOMASettings": "Impostazioni OMA-URI personalizzate",
- "customPreferences": "File delle preferenze",
- "defender": "Microsoft Defender Antivirus",
- "defenderAntivirus": "Microsoft Defender Antivirus",
- "defenderExploitGuard": "Microsoft Defender Exploit Guard",
- "defenderFirewall": "Microsoft Defender Firewall",
- "defenderLocalSecurityOptions": "Opzioni di sicurezza per i dispositivi locali",
- "defenderSecurityCenter": "Microsoft Defender Security Center",
- "deliveryOptimization": "Ottimizzazione recapito",
- "derivedCredentialAuthenticationConfiguration": "Credenziale derivata",
- "deviceExperience": "Esperienza del dispositivo",
- "deviceFirmwareConfigurationInterface": "Interfaccia di configurazione del firmware del dispositivo",
- "deviceGuard": "Controllo di applicazioni di Microsoft Defender",
- "deviceHealth": "Integrità del dispositivo",
- "devicePassword": "Password per il dispositivo",
- "deviceProperties": "Proprietà del dispositivo",
- "deviceRestrictions": "Generale",
- "deviceSecurity": "Sicurezza del sistema",
- "display": "Visualizza",
- "domainJoin": "Aggiunta a un dominio",
- "domains": "Domini",
- "edgeBrowser": "Microsoft Edge legacy (versione 45 e precedenti)",
- "edgeBrowserSmartScreen": "Microsoft Defender SmartScreen",
- "edgeKiosk": "Modalità tutto schermo di Microsoft Edge",
- "editionUpgrade": "Aggiornamento edizione",
- "education": "Istruzione",
- "educationDeviceCerts": "Certificati del dispositivo",
- "educationStudentCerts": "Certificati per studenti",
- "educationTakeATest": "Test ed esami",
- "educationTeacherCerts": "Certificati per docenti",
- "emailProfile": "Posta elettronica",
- "enterpriseDataProtection": "Windows Information Protection",
- "expeditedCheckin": "Configurazione della gestione dei dispositivi mobili",
- "extensibleSingleSignOn": "Estensione dell'app per l'accesso Single Sign-On",
- "filevault": "FileVault",
- "firewall": "Firewall",
- "games": "Giochi",
- "gatekeeper": "Gatekeeper",
- "healthMonitoring": "Monitoraggio dello stato",
- "homeScreenLayout": "Layout della schermata iniziale",
- "iOSWallpaper": "Sfondo",
- "importedPFX": "Certificato PKCS importato",
- "iosDefenderAtp": "Microsoft Defender per endpoint",
- "iosKiosk": "Tutto schermo",
- "kernelExtensions": "Estensioni del kernel",
- "keyboardAndDictionary": "Tastiera e dizionario",
- "kiosk": "Tutto schermo",
- "kioskAndroidEnterprise": "Dispositivi dedicati",
- "kioskConfiguration": "Tutto schermo",
- "kioskConfigurationV2": "Tutto schermo",
- "kioskWebBrowser": "Web browser in modalità tutto schermo",
- "lockScreenMessage": "Messaggio della schermata di blocco",
- "lockedScreenExperience": "Esperienza della schermata bloccata",
- "logging": "Creazione di report e telemetria",
- "loginItems": "Elementi di accesso",
- "loginWindow": "Finestra di accesso",
- "macDefenderAtp": "Microsoft Defender per endpoint",
- "maintenance": "Manutenzione",
- "malware": "Malware",
- "messaging": "Messaggistica",
- "networkBoundary": "Limite di rete",
- "networkProxy": "Proxy di rete",
- "notifications": "Notifiche dell'app",
- "pKCS": "Certificato PKCS",
- "password": "Password",
- "personalProfile": "Profilo personale",
- "personalization": "Personalizzazione",
- "policyOverride": "Esegui l'override dei criteri di gruppo",
- "powerSettings": "Impostazioni risparmio energia",
- "printer": "Stampante",
- "privacy": "Riservatezza",
- "privacyPerApp": "Eccezioni alla privacy per app",
- "privacyPreferences": "Preferenze per la privacy",
- "projection": "Proiezione",
- "sCCMCompliance": "Conformità di Configuration Manager",
- "sCEP": "Certificato SCEP",
- "sCEPProperties": "Certificato SCEP",
- "sMode": "Cambio di modalità (solo Windows Insider)",
- "safari": "Safari",
- "search": "Cerca",
- "session": "Sessione",
- "sharedDevice": "iPad condiviso",
- "sharedPCAccountManager": "Dispositivo multiutente condiviso",
- "singleSignOn": "Single Sign-On",
- "smartScreen": "Microsoft Defender SmartScreen",
- "softwareUpdates": "Impostazioni",
- "start": "Avvia",
- "systemExtensions": "Estensioni del sistema",
- "systemSecurity": "Sicurezza del sistema",
- "trustedCert": "Certificato attendibile",
- "updates": "Aggiornamenti",
- "userRights": "Diritti utente",
- "usersAndAccounts": "Utenti e account",
- "vPN": "VPN di base",
- "vPNApps": "VPN automatico",
- "vPNAppsAndTrafficRules": "Regole delle app e del traffico",
- "vPNConditionalAccess": "Accesso condizionale",
- "vPNConnectivity": "Connettività",
- "vPNDNSTriggers": "Impostazioni DNS",
- "vPNIKEv2": "Impostazioni IKEv2",
- "vPNProxy": "Proxy",
- "vPNSplitTunneling": "Split tunneling",
- "vPNTrustedNetwork": "Rilevamento della rete attendibile",
- "webContentFilter": "Filtro contenuto Web",
- "wiFi": "Wi-Fi",
- "win10Wifi": "Wi-Fi",
- "windowsAtp": "Microsoft Defender per endpoint",
- "windowsDefenderATP": "Microsoft Defender per endpoint",
- "windowsHelloForBusiness": "Windows Hello for Business",
- "windowsSpotlight": "Windows Spotlight",
- "wiredNetwork": "Rete cablata",
- "wireless": "Wireless",
- "wirelessProjection": "Proiezione wireless",
- "workProfile": "Impostazioni del profilo di lavoro",
- "workProfilePassword": "Password del profilo di lavoro",
- "xboxServices": "Servizi Xbox",
- "zebraMx": "Profilo MX (solo Zebra)",
- "complianceActionsLabel": "Azioni per la non conformità"
- },
- "MicrosoftEdgeChannel": {
- "beta": "Beta",
- "dev": "Dev",
- "stable": "Stable"
- },
- "ConfigurationTypes": {
- "Table": {
- "androidDeviceOwnerGeneral": "Limitazioni del dispositivo (proprietario del dispositivo)",
- "androidForWorkGeneral": "Limitazioni del dispositivo (profili di lavoro)"
- },
- "androidCustom": "Personalizzata",
- "androidDeviceOwnerGeneral": "Limitazioni del dispositivo",
- "androidDeviceOwnerPkcs": "Certificato PKCS",
- "androidDeviceOwnerScep": "Certificato SCEP",
- "androidDeviceOwnerTrustedCertificate": "Certificato attendibile",
- "androidDeviceOwnerVpn": "VPN",
- "androidDeviceOwnerWiFi": "Wi-Fi",
- "androidEmailProfile": "Posta elettronica (solo Samsung KNOX)",
- "androidForWorkCustom": "Personalizzata",
- "androidForWorkEmailProfile": "Posta elettronica",
- "androidForWorkGeneral": "Limitazioni del dispositivo",
- "androidForWorkImportedPFX": "Certificato PKCS importato",
- "androidForWorkOemConfig": "OEMConfig",
- "androidForWorkPKCS": "Certificato PKCS",
- "androidForWorkSCEP": "Certificato SCEP",
- "androidForWorkTrustedCertificate": "Certificato attendibile",
- "androidForWorkVpn": "VPN",
- "androidForWorkWiFi": "Wi-Fi",
- "androidGeneral": "Limitazioni del dispositivo",
- "androidImportedPFX": "Certificato PKCS importato",
- "androidPKCS": "Certificato PKCS",
- "androidSCEP": "Certificato SCEP",
- "androidTrustedCertificate": "Certificato attendibile",
- "androidVPN": "VPN",
- "androidWiFi": "Wi-Fi",
- "androidZebraMx": "Profilo MX (solo Zebra)",
- "complianceAndroid": "Criteri di conformità di Android",
- "complianceAndroidDeviceOwner": "Profilo di lavoro completamente gestito, dedicato e di proprietà aziendale",
- "complianceAndroidEnterprise": "Profilo di lavoro di proprietà personale",
- "complianceAndroidForWork": "Criteri di conformità di Android for Work",
- "complianceIos": "Criteri di conformità di iOS",
- "complianceMac": "Criteri di conformità Mac",
- "complianceWindows10": "Criteri di conformità di Windows 10 e versioni successive",
- "complianceWindows10Mobile": "Criteri di conformità di Windows 10 Mobile",
- "complianceWindows8": "Criteri di conformità di Windows 8",
- "complianceWindowsPhone": "Criteri di conformità di Windows Phone",
- "exchangeActiveSync": "Exchange Active Sync",
- "iosCustom": "Personalizzata",
- "iosDerivedCredentialAuthenticationConfiguration": "Credenziale PIV derivata",
- "iosDeviceFeatures": "Funzionalità del dispositivo",
- "iosEDU": "Istruzione",
- "iosEducation": "Istruzione",
- "iosEmailProfile": "Posta elettronica",
- "iosGeneral": "Limitazioni del dispositivo",
- "iosImportedPFX": "Certificato PKCS importato",
- "iosPKCS": "Certificato PKCS",
- "iosPresets": "Set di impostazioni",
- "iosSCEP": "Certificato SCEP",
- "iosTrustedCertificate": "Certificato attendibile",
- "iosVPN": "VPN",
- "iosVPNZscaler": "VPN",
- "iosWiFi": "Wi-Fi",
- "macCustom": "Personalizzata",
- "macDeviceFeatures": "Funzionalità del dispositivo",
- "macEndpointProtection": "Endpoint Protection",
- "macExtensions": "Estensioni",
- "macGeneral": "Limitazioni del dispositivo",
- "macImportedPFX": "Certificato PKCS importato",
- "macSCEP": "Certificato SCEP",
- "macTrustedCertificate": "Certificato attendibile",
- "macVPN": "VPN",
- "macWiFi": "Wi-Fi",
- "settingsCatalog": "Catalogo di impostazioni (anteprima)",
- "unsupported": "Non supportato",
- "windows10AdministrativeTemplate": "Modelli amministrativi (anteprima)",
- "windows10Atp": "Microsoft Defender per endpoint (dispositivi desktop che eseguono Windows 10 o versioni successive)",
- "windows10Custom": "Personalizzata",
- "windows10DesktopSoftwareUpdate": "Aggiornamenti software",
- "windows10DeviceFirmwareConfigurationInterface": "Interfaccia di configurazione del firmware del dispositivo",
- "windows10EmailProfile": "Posta elettronica",
- "windows10EndpointProtection": "Endpoint Protection",
- "windows10EnterpriseDataProtection": "Windows Information Protection",
- "windows10General": "Limitazioni del dispositivo",
- "windows10ImportedPFX": "Certificato PKCS importato",
- "windows10Kiosk": "Tutto schermo",
- "windows10NetworkBoundary": "Limite di rete",
- "windows10PKCS": "Certificato PKCS",
- "windows10PolicyOverride": "Esegui l'override dei criteri di gruppo",
- "windows10SCEP": "Certificato SCEP",
- "windows10SecureAssessmentProfile": "Profilo di formazione",
- "windows10SharedPC": "Dispositivo multiutente condiviso",
- "windows10TeamGeneral": "Limitazioni del dispositivo (Windows 10 Team)",
- "windows10TrustedCertificate": "Certificato attendibile",
- "windows10VPN": "VPN",
- "windows10WiFi": "Wi-Fi",
- "windows10WiFiCustom": "Wi-Fi personalizzato",
- "windows8General": "Limitazioni del dispositivo",
- "windows8SCEP": "Certificato SCEP",
- "windows8TrustedCertificate": "Certificato attendibile",
- "windows8VPN": "VPN",
- "windows8WiFi": "Wi-Fi per importazione",
- "windowsDeliveryOptimization": "Ottimizzazione recapito",
- "windowsDomainJoin": "Aggiunta a un dominio",
- "windowsEditionUpgrade": "Aggiornamento dell'edizione e cambio di modalità",
- "windowsIdentityProtection": "Protezione delle identità",
- "windowsPhoneCustom": "Personalizzata",
- "windowsPhoneEmailProfile": "Posta elettronica",
- "windowsPhoneGeneral": "Limitazioni del dispositivo",
- "windowsPhoneImportedPFX": "Certificato PKCS importato",
- "windowsPhoneSCEP": "Certificato SCEP",
- "windowsPhoneTrustedCertificate": "Certificato attendibile",
- "windowsPhoneVPN": "VPN",
- "IosUpdate": "Criteri di aggiornamento per iOS"
- },
- "WindowsEnrollment": {
- "coManagementAuthorityDesc": "Consente di configurare le impostazioni di co-gestione per l'integrazione di Configuration Manager",
- "coManagementAuthorityTitle": "Impostazioni di co-gestione ",
- "deploymentProfiles": "Profili di distribuzione di Windows AutoPilot",
- "description": "Informazioni sui sette modi diversi in cui utenti o amministratori possono registrare in Intune un computer Windows 10/11.",
- "descriptionLabel": "Metodi di registrazione di Windows",
- "enrollmentStatusPage": "Pagina relativa allo stato della registrazione"
- },
- "Platform": {
- "all": "Tutto",
- "android": "Amministratore di dispositivi Android",
- "androidAOSP": "Android (AOSP)",
- "androidEnterprise": "Android Enterprise",
- "androidForWork": "Android Enterprise",
- "androidWorkProfile": "Android Enterprise",
- "common": "Comune",
- "iOS": "iOS/iPadOS",
- "iosAndAndroidPlatformLabel": "iOS e Android",
- "iosCommaAndroidPlatformLabel": "iOS, Android",
- "linux": "Linux",
- "macOS": "macOS",
- "unknown": "Sconosciuto",
- "unsupported": "Non supportato",
- "windows": "Windows",
- "windows10": "Windows 10 e versioni successive",
- "windows10CM": "Windows 10 e versioni successive (ConfigMgr)",
- "windows10Holo": "Windows 10 Holographic",
- "windows10Mobile": "Windows 10 Mobile",
- "windows10Team": "Windows 10 Team",
- "windows10X": "Windows 10X",
- "windows8": "Windows 8.1 e versioni successive",
- "windows8And10": "Windows 8 e 10",
- "windowsPhone": "Windows Phone 8.1",
- "windows10AndLater": "Windows 10 e versioni successive",
- "windows10AndWindowsServer": "Windows 10, Windows 11 e Windows Server (ConfigMgr)",
- "windows10andLaterCM": "Windows 10 e versioni successive (ConfigMgr)",
- "holoLens": "HoloLens",
- "surfaceHub2": "Surface Hub 2",
- "surfaceHub2S": "Surface Hub 2S",
- "windowsPC": "PC Windows"
- },
- "EnrollmentRestrictions": {
- "DeletePayloadLink": {
- "content": "{0} è incluso in uno o più set di criteri. Se si elimina {0}, non sarà più possibile assegnarlo tramite questi set di criteri. Eliminarlo comunque?",
- "contentWithError": "È possibile che {0} sia incluso in uno o più set di criteri. Se si elimina {0}, non sarà più possibile assegnarlo tramite questi set di criteri. Eliminarlo comunque?",
- "header": "Eliminare questa restrizione?"
- },
- "DeviceLimit": {
- "description": "Specificare il numero massimo di dispositivi che un utente può registrare.",
- "header": "Restrizioni sul limite di dispositivi",
- "info": "Consente di definire il numero di dispositivi che ogni utente può registrare."
- },
- "DeviceType": {
- "VersionValidation": {
- "aOSP": "Deve essere 1.0 o successiva.",
- "android": "Immettere un numero di versione valido. Esempi: 5.0, 5.5.1, 6.0.0.1",
- "androidForWork": "Immettere un numero di versione valido. Esempi: 5.0, 5.1.1",
- "iOS": "Immettere un numero di versione valido. Esempi: 9.0, 10.0, 9.0.2",
- "mac": "Immettere un numero di versione valido. Esempi: 10, 10.10, 10.10.1",
- "min": "Il valore minimo non può essere inferiore a {0}",
- "minMax": "La versione minima non può essere superiore alla versione massima.",
- "windows": "Deve essere 10.0 o versioni successive. Lasciare vuoto per consentire i dispositivi 8.1",
- "windowsMobile": "Deve essere 10.0 o versioni successive. Lasciare vuoto per consentire i dispositivi 8.1"
- },
- "allPlatformsBlocked": "Tutte le piattaforme dei dispositivi sono bloccate. Consentire la registrazione della piattaforma per abilitare la configurazione della piattaforma.",
- "blockManufacturerPlaceHolder": "Nome del produttore",
- "blockManufacturersHeader": "Produttori bloccati",
- "cannotRestrict": "La restrizione non è supportata",
- "configurationDescription": "Specificare le restrizioni della configurazione della piattaforma da soddisfare per consentire la registrazione di un dispositivo. Usare i criteri di conformità per limitare i dispositivi dopo la registrazione. Definire le versioni come major.minor.build. Le restrizioni sulla versione sono applicabili solo ai dispositivi registrati nel portale aziendale. Intune classifica i dispositivi come di proprietà personale per impostazione predefinita. Per classificare i dispositivi come di proprietà dell'azienda sono necessarie azioni aggiuntive.",
- "configurationDescriptionLabel": "Altre informazioni sulla configurazione delle restrizioni della registrazione",
- "configurations": "Configura le piattaforme",
- "deviceManufacturer": "Produttore dispositivo",
- "header": "Restrizioni dei tipi di dispositivo",
- "info": "Consente di definire le piattaforme, le versioni e i tipi di gestione autorizzati alla registrazione.",
- "manufacturer": "Produttore",
- "max": "Max",
- "maxVersion": "Versione massima",
- "min": "Min",
- "minVersion": "Versione minima",
- "newPlatforms": "Sono state autorizzate nuove piattaforme. Prendere in considerazione l'aggiornamento delle configurazioni delle piattaforme.",
- "personal": "Di proprietà personale",
- "platform": "Piattaforma",
- "platformDescription": "È possibile consentire la registrazione delle piattaforme seguenti. Bloccare solo le piattaforme che non verranno supportate. Le piattaforme consentite possono essere configurate con restrizioni registrazione aggiuntive.",
- "platformSettings": "Impostazioni piattaforma",
- "platforms": "Seleziona le piattaforme",
- "platformsSelected": "{0} piattaforme selezionate",
- "type": "Tipo",
- "versions": "versioni",
- "versionsRange": "Consenti un intervallo min/max:",
- "windowsTooltip": "Consente di limitare la registrazione tramite Mobile Device Management. Non limita l'installazione dell'agente del computer. Sono supportate solo le versioni Windows 10 e Windows 11. Lasciare le versioni vuote per consentire Windows 8.1."
- },
- "Priority": {
- "saved": "Le priorità delle restrizioni sono state salvate."
- },
- "Row": {
- "announce": "Priorità: {0}, nome: {1}, assegnata: {2}"
- },
- "Table": {
- "deployed": "Distribuito",
- "name": "Nome",
- "priority": "Priorità"
- },
- "Type": {
- "limit": "Restrizione sul limite di dispositivi",
- "type": "Restrizione dei tipi di dispositivo"
- },
- "allUsers": "Tutti gli utenti",
- "androidRestrictions": "Restrizioni Android",
- "create": "Crea restrizione",
- "defaultLimitDescription": "Restrizione sul limite di dispositivi predefinita applicata con la priorità più bassa a tutti gli utenti, indipendentemente dall'appartenenza ai gruppi.",
- "defaultTypeDescription": "Restrizione sul tipo di dispositivi predefinita applicata con la priorità più bassa a tutti gli utenti, indipendentemente dall'appartenenza ai gruppi.",
- "defaultWhfbDescription": "Questa è la configurazione predefinita di Windows Hello for Business applicata con la priorità più bassa a tutti gli utenti, indipendentemente dall'appartenenza ai gruppi.",
- "deleteMessage": "Gli utenti interessati saranno limitati dalla restrizione di priorità più elevata successiva assegnata o dalla restrizione predefinita, se non sono assegnate altre restrizioni.",
- "deleteTitle": "Eliminare la restrizione {0}?",
- "descriptionHint": "Breve paragrafo che illustra l'uso aziendale o il livello di restrizione caratterizzato dalle impostazioni di restrizione.",
- "edit": "Modifica la restrizione",
- "info": "Un dispositivo deve essere conforme alle restrizioni della registrazione con priorità più elevata assegnate al rispettivo utente. È possibile trascinare una restrizione del dispositivo per modificarne la priorità. Le restrizioni predefinite hanno la priorità più bassa per tutti gli utenti e regolamentano le registrazioni senza utenti. Le restrizioni predefinite possono essere modificate ma non eliminate.",
- "iosRestrictions": "Restrizioni iOS",
- "mDM": "Gestione dispositivi mobili",
- "macRestrictions": "Restrizioni macOS",
- "maxVersion": "Versione massima",
- "minVersion": "Versione minima",
- "nameHint": "Questo sarà l'attributo principale visibile per l'identificazione del set di restrizioni.",
- "noAssignmentsStatusBar": "Assegnare la restrizione ad almeno un gruppo. Fare clic su Proprietà.",
- "notFound": "La limitazione non è stata trovata. È possibile che sia già stata eliminata.",
- "personallyOwned": "Dispositivi di proprietà personale",
- "restriction": "Restrizione",
- "restrictionLowerCase": "restrizione",
- "restrictionType": "Tipo restrizione",
- "selectType": "Selezionare il tipo di restrizione",
- "selectValidation": "Selezionare una piattaforma",
- "typeHint": "Scegliere Restrizione dei tipi di dispositivo per limitare le proprietà dei dispositivi. Scegliere Restrizione sul limite di dispositivi per limitare il numero di dispositivi per utente.",
- "typeRequired": "Il tipo di restrizione è obbligatorio.",
- "winPhoneRestrictions": "Restrizioni Windows Phone",
- "windowsRestrictions": "Restrizioni Windows"
- },
- "Titles": {
- "ChromeOs": {
- "devices": "Dispositivi Chrome OS"
- },
- "ManagedDesktop": {
- "adminContacts": "Contatti amministratore",
- "appPackaging": "Pacchetti dell'app",
- "devices": "Dispositivi",
- "feedback": "Feedback",
- "gettingStarted": "Riquadro attività iniziale",
- "messages": "Messaggi",
- "onlineResources": "Risorse in linea",
- "serviceRequests": "Richieste del servizio",
- "settings": "Impostazioni",
- "tenantEnrollment": "Registrazione del tenant"
- },
- "actions": "Azioni per la non conformità",
- "advancedExchangeSettings": "Impostazioni di Exchange Online",
- "advancedThreatProtection": "Microsoft Defender per endpoint",
- "allApps": "Tutte le app",
- "allDevices": "Tutti i dispositivi",
- "androidFotaDeployments": "Distribuzioni Android FOTA",
- "appBundles": "Bundle dell'app",
- "appCategories": "Categorie di app",
- "appConfigPolicies": "Criteri di configurazione dell'app",
- "appInstallStatus": "Stato di installazione dell'app",
- "appLicences": "Licenze dell'app",
- "appProtectionPolicies": "Criteri di protezione delle app",
- "appProtectionStatus": "Stato di protezione dell'app",
- "appSelectiveWipe": "Cancellazione selettiva di app",
- "appleVppTokens": "Token VPP Apple",
- "apps": "App",
- "assign": "Assegnazioni",
- "assignedPermissions": "Autorizzazioni assegnate",
- "assignedRoles": "Ruoli assegnati",
- "autopilotDeploymentReport": "Distribuzioni di Autopilot (anteprima)",
- "brandingAndCustomization": "Personalizzazione",
- "cartProfiles": "Profili del carrello",
- "certificateConnectors": "Connettori di certificati",
- "chromeEnterprise": "Chrome Enterprise",
- "compliancePolicies": "Criteri di conformità",
- "complianceScriptManagement": "Script",
- "complianceScriptManagementPreview": "Script (anteprima)",
- "complianceSettings": "Impostazioni dei criteri di conformità",
- "conditionStatements": "Dichiarazioni sulle condizioni",
- "conditions": "Percorsi",
- "configMgr": "Microsoft Endpoint Configuration Manager",
- "configurationProfiles": "Profili di configurazione",
- "configurationProfilesPreview": "Profili di configurazione (anteprima)",
- "connectorsAndTokens": "Connettori e token",
- "corporateDeviceIdentifiers": "Identificatori dei dispositivi aziendali",
- "customAttributes": "Attributi personalizzati",
- "customNotifications": "Notifiche personalizzate",
- "deploymentSettings": "Impostazioni di distribuzione",
- "derivedCredentials": "Credenziali derivate",
- "deviceActions": "Azioni del dispositivo",
- "deviceCategories": "Categorie di dispositivi",
- "deviceCleanUp": "Regole per la pulizia del dispositivo",
- "deviceEnrollmentManagers": "Manager di registrazione dispositivi",
- "deviceExecutionStatus": "Stato del dispositivo",
- "deviceLimitEnrollmentRestrictions": "Restrizioni sui limiti di registrazione di dispositivi",
- "deviceTypeEnrollmentRestrictions": "Restrizioni della piattaforma del dispositivo di registrazione",
- "devices": "Dispositivi",
- "discoveredApps": "App individuate",
- "embeddedSIM": "Profili cellulare eSIM (anteprima)",
- "enrollDevices": "Registra i dispositivi",
- "enrollmentFailures": "Errori di registrazione",
- "enrollmentNotifications": "Notifiche di registrazione (anteprima)",
- "enrollmentRestrictions": "Restrizioni registrazione",
- "exchangeActiveSync": "Exchange ActiveSync",
- "exchangeServiceConnectors": "Connettori di servizi Exchange",
- "failuresForFeatureUpdates": "Errori degli aggiornamenti delle funzionalità (anteprima)",
- "failuresForQualityUpdates": "Errori di aggiornamenti urgenti di Windows (anteprima)",
- "featureFlighting": "Distribuzione di versioni di anteprima delle funzionalità",
- "featureUpdateDeployments": "Aggiornamenti delle funzionalità per Windows 10 e versioni successive (anteprima)",
- "flighting": "Distribuzione di versioni di anteprima",
- "fotaUpdate": "Aggiornamento firmware in modalità over-the-air",
- "groupPolicy": "Modelli amministrativi",
- "groupPolicyAnalytics": "Analisi dei criteri di gruppo",
- "helpSupport": "Guida e supporto tecnico",
- "helpSupportReplacement": "Guida e supporto tecnico ({0})",
- "iOSAppProvisioning": "Profili di provisioning delle app iOS",
- "incompleteUserEnrollments": "Registrazioni utente incomplete",
- "intuneRemoteAssistance": "Guida remota (anteprima)",
- "iosUpdates": "Criteri di aggiornamento per iOS/iPadOS",
- "legacyPcManagement": "Gestione dei computer legacy",
- "macOSSoftwareUpdate": "Criteri di aggiornamento per macOS",
- "macOSSoftwareUpdateAccountSummaries": "Stato dell'installazione per dispositivi macOS",
- "macOSSoftwareUpdateCategorySummaries": "Riepilogo degli aggiornamenti software",
- "macOSSoftwareUpdateStateSummaries": "aggiornamenti",
- "managedGooglePlay": "Google Play gestito",
- "msfb": "Microsoft Store per le aziende",
- "myPermissions": "Autorizzazioni personali",
- "notifications": "Notifiche",
- "officeApps": "App di Office",
- "officeProPlusPolicies": "Criteri per le app di Office",
- "onPremise": "Locale",
- "onPremisesConnector": "Connettore locale per Exchange ActiveSync",
- "onPremisesDeviceAccess": "Dispositivi di Exchange ActiveSync",
- "onPremisesManageAccess": "Accesso locale a Exchange",
- "outOfDateIosDevices": "Errori di installazione per dispositivi iOS",
- "overview": "Panoramica",
- "partnerDeviceManagement": "Gestione dei dispositivi partner",
- "perUpdateRingDeploymentState": "Stato di distribuzione per ogni anello di aggiornamento",
- "permissions": "Autorizzazioni",
- "platformApps": "{0} app",
- "platformDevices": "{0} dispositivi",
- "platformEnrollment": "{0} registrazione",
- "policies": "Criteri",
- "previewMDMDevices": "Tutti i dispositivi gestiti (anteprima)",
- "profiles": "Profili",
- "properties": "Proprietà",
- "reports": "Report",
- "retireNoncompliantDevices": "Disattiva i dispositivi non conformi",
- "retireNoncompliantDevicesPreview": "Retire noncompliant devices (preview)",
- "role": "Ruolo",
- "scriptManagement": "Script",
- "securityBaselines": "Baseline di sicurezza",
- "serviceToServiceConnector": "Exchange Online Connector",
- "shellScripts": "Script della shell",
- "teamViewerConnector": "Connettore TeamViewer",
- "telecomeExpenseManagement": "Gestione delle spese per telecomunicazioni",
- "tenantAdmin": "Amministratore del tenant",
- "tenantAdministration": "Amministrazione del tenant",
- "termsAndConditions": "Condizioni",
- "titles": "Titoli",
- "troubleshootSupport": "Risoluzione dei problemi e supporto tecnico",
- "user": "Utente",
- "userExecutionStatus": "Stato dell'utente",
- "warranty": "Fornitori di garanzia",
- "wdacSupplementalPolicies": "Criteri supplementari per la modalità S",
- "windows10DriverUpdate": "Aggiornamenti dei driver per Windows 10 e versioni successive (anteprima)",
- "windows10QualityUpdate": "Aggiornamenti qualitativi per Windows 10 e versioni successive (anteprima)",
- "windows10UpdateRings": "Anelli di aggiornamento per Windows 10 e versioni successive",
- "windows10XPolicyFailures": "Errori dei criteri di Windows 10X",
- "windowsEnterpriseCertificate": "Certificato Windows Enterprise",
- "windowsManagement": "Script di PowerShell",
- "windowsSideLoadingKeys": "Chiavi di sideload Windows",
- "windowsSymantecCertificate": "Certificato DigiCert Windows",
- "windowsThreatReport": "Stato dell'agente delle minacce"
- },
- "ScopeTypes": {
- "allDevices": "Tutti i dispositivi",
- "allUsers": "Tutti gli utenti",
- "allUsersAndDevices": "Tutti gli utenti e tutti i dispositivi",
- "selectedGroups": "Gruppi selezionati"
- },
- "DetectionRules": {
- "ComparisonOperators": {
- "equals": "È uguale a",
- "greaterThan": "Maggiore di",
- "greaterThanOrEqualTo": "Maggiore o uguale a",
- "lessThan": "Minore di",
- "lessThanOrEqualTo": "Minore o uguale a",
- "notEqualTo": "Diverso da"
- },
- "CustomScript": {
- "enforceSignatureCheck": "Imponi il controllo della firma degli script ed esegui lo script automaticamente",
- "enforceSignatureCheckTooltip": "Selezionare 'Sì' per verificare che lo script sia firmato da un'entità di pubblicazione attendibile, in modo da consentire l'esecuzione dello script senza la visualizzazione di avvisi o richieste. Lo script verrà eseguito senza essere bloccato. Selezionare 'No' (impostazione predefinita) per eseguire lo script con la conferma dell'utente finale senza la verifica della firma.",
- "header": "Usa uno script di rilevamento personalizzato",
- "runAs32Bit": "Esegui lo script come processo a 32 bit nei client a 64 bit",
- "runAs32BitTooltip": "Selezionare 'Sì' per eseguire lo script in un processo a 32 bit nei client a 64 bit. Selezionare 'No' (impostazione predefinita) per eseguire lo script in un processo a 64 bit nei client a 64 bit. I client a 32 bit eseguono lo script in un processo a 32 bit.",
- "scriptFile": "File di script",
- "scriptFileNotSelectedValidation": "Non è stato selezionato alcun file di script.",
- "scriptFileTooltip": "Selezionare uno script di PowerShell che rileverà la presenza dell'app sul client. L'app verrà rilevata quando lo script restituisce un codice di uscita con valore 0 e scrive un valore di stringa in STDOUT."
- },
- "Manual": {
- "FileRule": {
- "DetectionMethodOptions": {
- "dateCreated": "Data creazione",
- "dateModified": "Data di modifica",
- "doesNotExist": "Il file o la cartella non esiste",
- "fileOrFolderExists": "File o cartella esistente",
- "sizeInMB": "Dimensioni in MB",
- "version": "Stringa (versione)"
- },
- "associatedWith32Bit": "Associata a un'app a 32 bit nei client a 64 bit",
- "associatedWith32BitTooltip": "Selezionare 'Sì' per espandere eventuali variabili di ambiente PATH nel contesto a 32 bit nei client a 64 bit. Selezionare 'No' (impostazione predefinita) per espandere eventuali variabili di ambiente nel contesto a 64 bit nei client a 64 bit. I client a 32 bit useranno sempre il contesto a 32 bit.",
- "detectionMethod": "Metodo di rilevamento",
- "detectionMethodTooltip": "Selezionare il tipo di metodo di rilevamento usato per convalidare la presenza dell'app.",
- "fileOrFolder": "File o cartella",
- "fileOrFolderToolTip": "File o cartella da rilevare.",
- "operator": "Operatore",
- "operatorTooltip": "Selezionare l'operatore per il metodo di rilevamento usato per convalidare il confronto.",
- "path": "Percorso",
- "pathTooltip": "Percorso completo della cartella contenente il file o la cartella da rilevare.",
- "value": "Valore",
- "valueTooltip": "Selezionare un valore corrispondente al metodo di rilevamento selezionato. I metodi di rilevamento della data devono essere immessi in ora locale."
- },
- "GridColumns": {
- "pathOrCode": "Percorso/Codice",
- "type": "Tipo"
- },
- "MsiRule": {
- "operator": "Operatore",
- "operatorTooltip": "Selezionare l'operatore per il confronto per la convalida della versione del prodotto MSI.",
- "productCode": "Codice prodotto MSI",
- "productCodeTooltip": "Codice prodotto MSI valido per l'app.",
- "productVersion": "Valore",
- "productVersionCheck": "Verifica della versione del prodotto MSI",
- "productVersionCheckTooltip": "Selezionare 'Sì' per verificare la versione del prodotto MSI oltre al codice prodotto MSI.",
- "productVersionTooltip": "Immettere la versione del prodotto MSI per l'app."
- },
- "RegistryRule": {
- "DetectionMethodOptions": {
- "integerComparison": "Confronto di numeri interi",
- "keyDoesNotExist": "Chiave inesistente",
- "keyExists": "Chiave esistente",
- "stringComparison": "Confronto di stringhe",
- "valueDoesNotExist": "Valore inesistente",
- "valueExists": "Valore esistente",
- "versionComparison": "Confronto tra le versioni"
- },
- "associatedWith32Bit": "Associata a un'app a 32 bit nei client a 64 bit",
- "associatedWith32BitTooltip": "Selezionare 'Sì' per eseguire ricerche nel Registro di sistema a 32 bit nei client a 64 bit. Selezionare 'No' (impostazione predefinita) per eseguire ricerche nel Registro di sistema a 64 bit nei client a 64 bit. I client a 32 bit eseguiranno sempre ricerche nel registro di sistema a 32 bit.",
- "detectionMethod": "Metodo di rilevamento",
- "detectionMethodTooltip": "Selezionare il tipo di metodo di rilevamento usato per convalidare la presenza dell'app.",
- "keyPath": "Percorso della chiave",
- "keyPathTooltip": "Percorso completo della voce del Registro di sistema contenente il valore da rilevare.",
- "operator": "Operatore",
- "operatorTooltip": "Selezionare l'operatore per il metodo di rilevamento usato per convalidare il confronto.",
- "value": "Valore",
- "valueName": "Nome valore",
- "valueNameTooltip": "Nome del valore del Registro di sistema da rilevare.",
- "valueTooltip": "Selezionare un valore corrispondente al metodo di rilevamento selezionato."
- },
- "RuleTypeOptions": {
- "file": "File",
- "mSI": "MSI",
- "registry": "Registro"
- },
- "gridAriaLabel": "Regole di rilevamento",
- "header": "Creare una regola che indichi la presenza dell'app.",
- "noRulesSelectedPlaceholder": "Non è stata specificata alcuna regola.",
- "ruleTableLimit": "È possibile aggiungere fino a 25 regole di rilevamento",
- "ruleType": "Tipo regola",
- "ruleTypeTooltip": "Scegliere il tipo di regola di rilevamento da aggiungere."
- },
- "RuleConfigurationOptions": {
- "customScript": "Usa uno script di rilevamento personalizzato",
- "manual": "Configura manualmente le regole di rilevamento"
- },
- "bladeTitle": "Regole di rilevamento",
- "header": "Configurare regole specifiche dell'app usate per rilevare la presenza dell'app.",
- "rulesFormat": "Formato delle regole",
- "rulesFormatTooltip": "Scegliere di configurare manualmente le regole di rilevamento o usare uno script personalizzato per rilevare la presenza dell'app.",
- "selectorLabel": "Regole di rilevamento"
- },
- "AppType": {
- "androidEnterpriseSystemApp": "App del sistema Android Enterprise",
- "androidForWorkApp": "App di Google Play Store gestito",
- "androidLobApp": "App line-of-business Android",
- "androidStoreApp": "Android store app",
- "builtInAndroid": "App Android predefinita",
- "builtInApp": "App predefinita",
- "builtInIos": "App iOS predefinita",
- "default": "",
- "iosLobApp": "App line-of-business iOS",
- "iosStoreApp": "App Store iOS",
- "iosVppApp": "App Volume Purchase Program iOS",
- "lineOfBusinessApp": "App line-of-business",
- "macOSDmgApp": "macOS app (DMG)",
- "macOSEdgeApp": "Microsoft Edge (macOS)",
- "macOSLobApp": "App line-of-business macOS",
- "macOSMdatpApp": "Microsoft Defender ATP (macOS)",
- "macOSOfficeSuiteApp": "App di Microsoft 365 (macOS)",
- "macOsVppApp": "App Volume Purchase Program macOS",
- "managedAndroidLobApp": "App line-of-business Android gestita",
- "managedAndroidStoreApp": "App di Android Store gestita",
- "managedGooglePlayApp": "App di Google Play Store gestito",
- "managedGooglePlayPrivateApp": "App privata di Google Play gestito",
- "managedGooglePlayWebApp": "Collegamento Web di Google Play gestito",
- "managedIosLobApp": "App line-of-business iOS gestita",
- "managedIosStoreApp": "App dello Store iOS gestita",
- "microsoftStoreForBusinessApp": "App di Microsoft Store per le aziende",
- "microsoftStoreForBusinessReleaseManagedApp": "Microsoft Store per le aziende",
- "officeSuiteApp": "Microsoft 365 Apps (Windows 10 e versioni successive)",
- "webApp": "Collegamento Web",
- "windowsAppXLobApp": "App line-of-business AppX per Windows",
- "windowsClassicApp": "App Windows (Win32)",
- "windowsEdgeApp": "Microsoft Edge (Windows 10 e versioni successive)",
- "windowsMobileMsiLobApp": "App line-of-business di Windows MSI",
- "windowsPhone81AppXBundleLobApp": "App line-of-business AppX per Windows Phone 8.1",
- "windowsPhone81AppXLobApp": "App line-of-business AppX per Windows Phone 8.1",
- "windowsPhone81StoreApp": "App dello Store per Windows Phone 8.1",
- "windowsPhoneXapLobApp": "App line-of-business XAP per Windows Phone",
- "windowsStoreApp": "App di Microsoft Store",
- "windowsUniversalAppXLobApp": "App line-of-business AppX universale per Windows",
- "windowsUniversalLobApp": "App line-of-business universale di Windows"
- },
- "PolicyType": {
- "AttackSurfaceReductionRules": {
- "configMgr": "Regole di riduzione della superficie di attacco (ConfigMgr)"
- },
- "EndpointDetectionandResponse": {
- "mDE": "Rilevamento di endpoint e risposta"
- },
- "EndpointSecurityTemplate": {
- "aSRAppBrowserSecurity": "Isolamento di app e browser",
- "aSRApplicationControl": "Controllo applicazione",
- "aSRAttackSurfaceReduction": "Regole per la riduzione della superficie di attacco",
- "aSRDeviceControl": "Controllo del dispositivo",
- "aSRExploitProtection": "Protezione dagli exploit",
- "aSRWebProtection": "Protezione Web (Microsoft Edge Legacy)",
- "aVExclusions": "Esclusioni di Antivirus Microsoft Defender",
- "antivirus": "Antivirus Microsoft Defender",
- "cloudPC": "Baseline di sicurezza di Windows 365",
- "default": "Sicurezza degli endpoint",
- "defenderTest": "Demo di Microsoft Defender per endpoint",
- "diskEncryption": "BitLocker",
- "eDR": "Rilevamento di endpoint e risposta",
- "edgeSecurityBaseline": "Baseline di Microsoft Edge",
- "edgeSecurityBaselinePreview": "Anteprima: baseline di Microsoft Edge",
- "editionUpgradeConfiguration": "Aggiornamento dell'edizione e cambio di modalità",
- "firewall": "Microsoft Defender Firewall",
- "firewallRules": "Regole di Microsoft Defender Firewall",
- "identityProtection": "Protezione account",
- "identityProtectionPreview": "Protezione account (anteprima)",
- "mDMSecurityBaseline1810": "Baseline di sicurezza MDM per Windows 10 e versioni successive per ottobre 2018",
- "mDMSecurityBaseline1810Preview": "Anteprima: Baseline di sicurezza MDM per Windows 10 e versioni successive per ottobre 2018",
- "mDMSecurityBaseline1810PreviewBeta": "Anteprima: Baseline di sicurezza MDM per Windows 10 per ottobre 2018 (beta)",
- "mDMSecurityBaseline1906": "Baseline di sicurezza MDM per Windows 10 e versioni successive per maggio 2019",
- "mDMSecurityBaseline2004": "Baseline di sicurezza MDM per Windows 10 e versioni successive per agosto 2020",
- "mDMSecurityBaseline2101": "Baseline di sicurezza MDM per Windows 10 e versioni successive per dicembre 2020",
- "macOSAntivirus": "Antivirus",
- "macOSDiskEncryption": "FileVault",
- "macOSFirewall": "Firewall macOS",
- "microsoftDefenderBaseline": "Baseline di Microsoft Defender per endpoint",
- "office365Baseline": "Baseline di Microsoft Office O365",
- "office365BaselinePreview": "Anteprima: baseline di Microsoft Office O365",
- "securityBaselines": "Baseline di sicurezza",
- "test": "Modello di test",
- "testFirewallRulesSecurityTemplateName": "Regole di Microsoft Defender Firewall (test)",
- "testIdentityProtectionSecurityTemplateName": "Protezione account (test)",
- "windowsSecurityExperience": "Esperienza di Sicurezza di Windows"
- },
- "Firewall": {
- "mDE": "Microsoft Defender Firewall"
- },
- "FirewallRules": {
- "mDE": "Regole di Microsoft Defender Firewall"
- },
- "administrativeTemplates": "Modelli amministrativi",
- "androidCompliancePolicy": "Criteri di conformità di Android",
- "aospDeviceOwnerCompliancePolicy": "Criteri di conformità di Android (AOSP)",
- "applicationControl": "Controllo applicazione",
- "custom": "Personalizzata",
- "deliveryOptimization": "Ottimizzazione recapito",
- "derivedPersonalIdentityVerificationCredential": "Credenziale derivata",
- "deviceFeatures": "Funzionalità del dispositivo",
- "deviceFirmwareConfigurationInterface": "Interfaccia di configurazione del firmware del dispositivo",
- "deviceLock": "Blocco del dispositivo",
- "deviceOwner": "Profilo di lavoro completamente gestito, dedicato e di proprietà aziendale",
- "deviceRestrictions": "Limitazioni del dispositivo",
- "deviceRestrictionsWindows10Team": "Limitazioni del dispositivo (Windows 10 Team)",
- "domainJoinPreview": "Aggiunta a un dominio",
- "editionUpgradeAndModeSwitch": "Aggiornamento dell'edizione e cambio di modalità",
- "education": "Istruzione",
- "email": "Posta elettronica",
- "emailSamsungKnoxOnly": "Posta elettronica (solo Samsung KNOX)",
- "endpointProtection": "Endpoint Protection",
- "expeditedCheckin": "Configurazione della gestione dei dispositivi mobili",
- "exploitProtection": "Protezione di Exploit",
- "extensions": "Estensioni",
- "hardwareConfigurations": "Configurazioni BIOS",
- "identityProtection": "Identity Protection",
- "iosCompliancePolicy": "Criteri di conformità di iOS",
- "kiosk": "Tutto schermo",
- "macCompliancePolicy": "Criteri di conformità Mac",
- "microsoftDefenderAntivirus": "Antivirus Microsoft Defender",
- "microsoftDefenderAntivirusexclusions": "Esclusioni di Antivirus Microsoft Defender",
- "microsoftDefenderAtpWindows10Desktop": "Microsoft Defender per endpoint (dispositivi desktop che eseguono Windows 10 o versioni successive)",
- "microsoftDefenderFirewallRules": "Regole di Microsoft Defender Firewall",
- "microsoftEdgeBaseline": "Baseline di Microsoft Edge",
- "mxProfileZebraOnly": "Profilo MX (solo Zebra)",
- "networkBoundary": "Limite di rete",
- "oemConfig": "OEMConfig",
- "overrideGroupPolicy": "Esegui l'override dei criteri di gruppo",
- "pkcsCertificate": "Certificato PKCS",
- "pkcsImportedCertificate": "Certificato PKCS importato",
- "preferenceFile": "File delle preferenze",
- "presets": "Set di impostazioni",
- "scepCertificate": "Certificato SCEP",
- "secureAssessmentEducation": "Valutazione sicura (Education)",
- "settingsCatalog": "Catalogo di impostazioni",
- "sharedMultiUserDevice": "Dispositivo multiutente condiviso",
- "softwareUpdates": "Aggiornamenti software",
- "trustedCertificate": "Certificato attendibile",
- "unknown": "Sconosciuto",
- "unsupported": "Non supportata",
- "vpn": "VPN",
- "wiFi": "Wi-Fi",
- "wiFiImport": "Wi-Fi per importazione",
- "windows10CompliancePolicy": "Criteri di conformità di Windows 10/11",
- "windows10MobileCompliancePolicy": "Criteri di conformità di Windows 10 Mobile",
- "windows10XScep": "Certificato SCEP - TEST",
- "windows10XTrustedCertificate": "Certificato attendibile - TEST",
- "windows10XVPN": "VPN - TEST",
- "windows10XWifi": "WIFI - TEST",
- "windows8CompliancePolicy": "Criteri di conformità di Windows 8",
- "windowsHealthMonitoring": "Monitoraggio dello stato di Windows",
- "windowsInformationProtection": "Windows Information Protection",
- "windowsPhoneCompliancePolicy": "Criteri di conformità di Windows Phone",
- "windowsUpdateforBusiness": "Windows Update per le aziende",
- "wiredNetwork": "Rete cablata",
- "workProfile": "Profilo di lavoro di proprietà personale"
- },
- "OfficeSuiteAppsTab": {
- "acceptLicenseOnBehalfOfUsersLabel": "Accetta le Condizioni di licenza software Microsoft per conto degli utenti",
- "appSuiteConfigurationLabel": "Configurazione della suite di app",
- "appSuiteInformationLabel": "Informazioni sulla famiglia di prodotti dell'app",
- "appsToBeInstalledLabel": "App da installare come parte della suite",
- "architectureLabel": "Architettura",
- "architectureTooltip": "Consente di stabilire se nei dispositivi viene installata l'edizione a 32 bit o 64 bit di App di Microsoft 365.",
- "configurationDesignerLabel": "Progettazione configurazione",
- "configurationFileLabel": "File di configurazione",
- "configurationSettingsFormatLabel": "Formato delle impostazioni di configurazione",
- "configureAppSuiteLabel": "Configura la famiglia di prodotti dell'app",
- "configuredLabel": "Configurata",
- "currentVersionLabel": "Versione corrente",
- "currentVersionTooltip": "Versione corrente di Office configurata in questa suite. Questo valore verrà aggiornato quando viene configurata e salvata una nuova versione.",
- "enableMicrosoftSearchAsDefaultTooltip": "Consente di installare un servizio in background che contribuisce a determinare se un'estensione di Microsoft Search in Bing per Google Chrome è installata nel dispositivo.",
- "enterXmlDataLabel": "Immettere i dati XML",
- "languagesLabel": "Lingue",
- "languagesTooltip": "Per impostazione predefinita, Intune installerà Office con la lingua predefinita del sistema operativo. Scegliere le lingue aggiuntive da installare.",
- "learnMoreText": "Altre informazioni",
- "newUpdateChannelTooltip": "Consente di definire la frequenza con cui l'app viene aggiornata con nuove funzionalità.",
- "noCurrentVersionText": "Nessuna versione corrente",
- "noLanguagesSelectedLabel": "Non sono state selezionate lingue",
- "notConfiguredLabel": "Non configurato",
- "propertiesLabel": "Proprietà",
- "removeOtherVersionsLabel": "Rimuovi altre versioni",
- "removeOtherVersionsTooltip": "Selezionare Sì per rimuovere altre versioni di Office (MSI) dai dispositivi utente.",
- "selectOfficeAppsLabel": "Selezionare le app di Office",
- "selectOfficeAppsTooltip": "Selezionare le app di Office 365 da installare come parte della suite.",
- "selectOtherOfficeAppsLabel": "Selezionare altre app di Office (licenza obbligatoria)",
- "selectOtherOfficeAppsTooltip": "Se si possiedono licenze per queste app di Office aggiuntive, è possibile anche assegnarle con Intune.",
- "specificVersionLabel": "Versione specifica",
- "updateChannelLabel": "Canale di aggiornamento",
- "updateChannelTooltip": "Consente di definire la frequenza con cui l'app viene aggiornata con nuove funzionalità.
\r\nMensile - Consente di offrire agli utenti le funzionalità più recenti di Office non appena sono disponibili.
\r\nCanale aziendale mensile - Consente di offrire agli utenti le funzionalità più recenti di Office una volta al mese, il secondo martedì del mese.
\r\nMensile (mirato) – Consente di fornire un'anteprima del rilascio mensile imminente del canale. Si tratta di un canale supportato, disponibile con almeno una settimana di anticipo quando si tratta di un rilascio mensile del canale che include nuove funzionalità.
\r\nSemestrale - Consente di offrire agli utenti le nuove funzionalità di Office solo qualche volta all'anno.
\r\nSemestrale (mirato) - Consente di offrire agli utenti pilota e ai tester della compatibilità delle applicazioni l'opportunità di testare il successivo rilascio semestrale.",
- "useMicrosoftSearchAsDefault": "Installa il servizio in background per Microsoft Search in Bing",
- "useSharedComputerActivationLabel": "Usa l'attivazione di computer condivisi",
- "useSharedComputerActivationTooltip": "L'attivazione di computer condivisi consente di distribuire App di Microsoft 365 nei computer usati da più utenti. Gli utenti possono in genere installare e attivare App di Microsoft 365 solo in un numero limitato di dispositivi, ad esempio 5 computer. L'uso di App di Microsoft 365 con l'attivazione di computer condivisi non viene conteggiato rispetto a tale limite.",
- "versionToInstallLabel": "Versione da installare",
- "versionToInstallTooltip": "Selezionare la versione di Office da installare.",
- "xLanguagesSelectedLabel": "{0} lingua o lingue selezionate",
- "xmlConfigurationLabel": "Configurazione XML"
- },
- "OfficeApplicationType": {
- "access": "Access",
- "bing": "Microsoft Search come predefinito",
- "excel": "Excel",
- "groove": "OneDrive (Groove)",
- "lync": "Skype for Business",
- "oneDrive": "OneDrive Desktop",
- "oneNote": "OneNote",
- "outlook": "Outlook",
- "powerPoint": "PowerPoint",
- "publisher": "Publisher",
- "teams": "Teams",
- "word": "Word"
- },
- "WindowsQualityUpdateProfile": {
- "Details": {
- "DaysUntilForcedReboot": {
- "label": "Numero di giorni di attesa prima del riavvio forzato"
- },
- "Description": {
- "label": "Descrizione"
- },
- "Name": {
- "label": "Nome"
- },
- "QualityUpdateRelease": {
- "label": "Accelera l'installazione degli aggiornamenti qualitativi se la versione del sistema operativo è precedente a:"
- },
- "bladeTitle": "Aggiornamenti qualitativi Windows 10 e versioni successive (anteprima)",
- "loadError": "Il caricamento non è riuscito."
- },
- "TabName": {
- "qualityUpdateSettings": "Impostazioni"
- },
- "infoBoxText": "L'unico controllo dedicato per gli aggiornamenti qualitativi, oltre al criterio Fasi di aggiornamento esistente per Windows 10 e versioni successive, consiste nella possibilità di accelerare gli aggiornamenti qualitativi per dispositivi che non rispettano un livello specificato di patch. Controlli aggiuntivi saranno disponibili in futuro.",
- "warningBoxText": "Benché l'accelerazione degli aggiornamenti software possa contribuire alla riduzione del tempo richiesto per ottenere la conformità, quando necessario, ha un impatto più ampio sulla produttività degli utenti finali. La probabilità che venga eseguito un riavvio forzato durante l'orario di ufficio viene incrementata significativamente."
- },
- "Devices": {
- "General": {
- "android": "Android"
- },
- "aOSP": "Android Open Source Project",
- "android": "Amministratore di dispositivi Android",
- "androidWorkProfile": "Android Enterprise (profilo di lavoro)",
- "iOS": "iOS/iPadOS",
- "mac": "macOS",
- "windows": "Windows (MDM)",
- "windows10": "Windows 10 e versioni successive",
- "windowsHomeSku": "SKU di Windows Home",
- "windowsMobile": "Windows Mobile"
- },
"SettingDetails": {
"CustomPolicyConfigurationProfile": {
"uploadControlPlaceHolderText": "Selezionare un file del profilo di configurazione"
@@ -3675,7 +1707,7 @@
"aESGCM128": "AES-128-GCM (ICV a 16 ottetti)",
"aESGCM256": "AES-256-GCM (ICV a 16 ottetti)",
"aadSharedDeviceDataClearAppsDescription": "Aggiungere all'elenco tutte le app non ottimizzate per la modalità dispositivo condiviso. I dati locali dell'app verranno cancellati ogni volta che un utente si disconnette da un'app ottimizzata per la modalità dispositivo condiviso. Disponibile per dispositivi dedicati registrati in modalità condivisa che eseguono Android 9 e versioni successive.",
- "aadSharedDeviceDataClearAppsName": "Cancella i dati locali nelle app non ottimizzate per la modalità dispositivo condiviso (anteprima pubblica)",
+ "aadSharedDeviceDataClearAppsName": "Cancella i dati locali nelle app non ottimizzate per la modalità dispositivo condiviso",
"accountsPageDescription": "Blocca l'accesso agli account nell'app Impostazioni.",
"accountsPageName": "Account",
"accountsSignInAssistantSettingsDescription": "Blocca il servizio Assistente per l'accesso Microsoft (wlidsvc). Quando questa impostazione non è configurata, il servizio wlidsvc NT può essere controllato dall'utente (avvio manuale)",
@@ -5503,7 +3535,7 @@
"enableEndUserAccessToDefenderName": "Accesso dell'utente finale a Defender",
"enableEngagedRestartDescription": "Consente di abilitare impostazioni per permettere all'utente di passare al riavvio in caso di occupato.",
"enableEngagedRestartName": "Consenti all'utente di riavviare (riavvio in caso di occupato)",
- "enableIdentityPrivacyDescription": "Questa proprietà maschera i nomi utente con il testo immesso. Ad esempio, se si digita 'anonimo', ogni utente che esegue l'autenticazione con questa connessione Wi-Fi usando il proprio nome utente effettivo viene visualizzato come 'anonimo'.",
+ "enableIdentityPrivacyDescription": "Questa proprietà maschera i nomi utente con il testo immesso. Ad esempio, se si digita “anonimo”, ogni utente che esegue l'autenticazione con questa connessione Wi-Fi usando il proprio nome utente reale verrà visualizzato come “anonimo”. Questa operazione può essere necessaria se si usa l'autenticazione del certificato basata su dispositivo.",
"enableIdentityPrivacyName": "Privacy dell'identità (identità esterna)",
"enableNetworkInspectionSystemDescription": "Blocca il traffico dannoso rilevato dalle firme in Network Inspection System (NIS)",
"enableNetworkInspectionSystemName": "Network Inspection System (NIS)",
@@ -7252,6 +5284,8 @@
"presharedKeyEncodingDescription": "Codifica le chiavi precondivise con UTF-8.",
"presharedKeyEncodingName": "Codifica delle chiavi precondivise",
"preventAny": "Impedisci qualsiasi condivisione tra i limiti",
+ "primaryAuthenticationMethodName": "Metodo di autenticazione primario",
+ "primaryAuthenticationMethodTEAPDescription": "Scegliere il modo principale in cui si vuole che gli utenti eseguano l'autenticazione. Quando si seleziona Certificati, selezionare uno dei profili certificato (SCEP o PKCS) distribuiti anche nel dispositivo. Questo è il certificato di identità presentato dal dispositivo al server.",
"primarySMTPAddressOption": "Indirizzo SMTP primario",
"printersColumns": "Ad esempio, nome DNS della stampante",
"printersDescription": "Consente di effettuare automaticamente il provisioning delle stampanti in base ai rispettivi nomi host di rete. Questa impostazione non supporta le stampanti condivise.",
@@ -7663,6 +5697,8 @@
"searchEnableRemoteQueriesName": "Query remote",
"secondActiveEthernet": "Seconda Ethernet attiva",
"secondEthernet": "Seconda Ethernet",
+ "secondaryAuthenticationMethodName": "Metodo di autenticazione secondario",
+ "secondaryAuthenticationMethodTEAPDescription": "Scegliere il modo secondario in cui si vuole che gli utenti eseguano l'autenticazione. Quando si seleziona Certificati, selezionare uno dei profili certificato (SCEP o PKCS) distribuiti anche nel dispositivo. Questo è il certificato di identità presentato dal dispositivo al server.",
"secretKey": "Chiave privata:",
"secureBootEnabledDescription": "Richiedi l'abilitazione dell'avvio sicuro nel dispositivo",
"secureBootEnabledName": "Richiedi l'abilitazione dell'avvio sicuro nel dispositivo",
@@ -8074,6 +6110,7 @@
"systemUpdateWindow9": "4:30",
"systemWindowsBlockedDescription": "Consente di disabilitare le notifiche nelle finestre, tra cui avvisi popup, chiamate in arrivo, chiamate in uscita, avvisi del sistema ed errori del sistema.",
"systemWindowsBlockedName": "Finestre di notifica",
+ "tEAPName": "Tunnel EAP (TEAP)",
"tLSMinMax": "La versione minima per TLS deve essere precedente o uguale alla versione massima per TLS.",
"tLSVersionRangeMaximum": "Intervallo di versioni TLS - Massimo",
"tLSVersionRangeMaximumDescription": "Immettere 1.0, 1.1 o 1.2 come versione massima per TLS. Se non si specifica alcun valore, verrà usato il valore predefinito 1.2.",
@@ -8126,6 +6163,17 @@
"timeWindowSameStartEndDayTime": "La data/ora di fine non può essere uguale alla data/ora di inizio.",
"timeZoneDescription": "Selezionare il fuso orario per i dispositivi di destinazione.",
"timeZoneName": "Fuso orario",
+ "timeoutFifteenMinutes": "15 minuti",
+ "timeoutFiveMinutes": "5 minuti",
+ "timeoutFourHours": "4 ore",
+ "timeoutNever": "Non applicare mai il timeout",
+ "timeoutOneHour": "1 ora",
+ "timeoutOneMinute": "1 minuto",
+ "timeoutTenMinutes": "10 minuti",
+ "timeoutThirtyMinutes": "30 minuti",
+ "timeoutThreeMinutes": "3 minuti",
+ "timeoutTwoHours": "2 ore",
+ "timeoutTwoMinutes": "2 minuti",
"toggleConfigurationPkgDescription": "Consente di caricare un pacchetto di configurazione firmato che verrà usato per l'onboarding del client di Microsoft Defender per endpoint",
"toggleConfigurationPkgName": "Tipo di pacchetto di configurazione client di Microsoft Defender per endpoint:",
"trafficRuleAppName": "App",
@@ -8824,6 +6872,33 @@
"win10WifiWirelessSecurityTypeName": "Tipo di sicurezza wireless",
"win10WifiWirelessSecurityTypeOpen": "Apri (nessuna autenticazione)",
"win10WifiWirelessSecurityTypeWPA": "WPA/WPA2-Personale",
+ "win10WiredAuthenticationModeDescription": "Consente di scegliere se autenticare l'utente, il dispositivo o entrambi oppure usare l'autenticazione guest (nessuna). Se si usa l'autenticazione del certificato, assicurarsi che il tipo di certificato corrisponda al tipo di autenticazione.",
+ "win10WiredAuthenticationModeName": "Modalità di autenticazione",
+ "win10WiredAuthenticationPeriodDescription": "Numero di secondi di attesa per il client dopo un tentativo di autenticazione prima della restituzione di un errore. Scegliere un numero compreso tra 1 e 3600. Se non si specifica alcun valore, questa opzione verrà impostata su 18 secondi.",
+ "win10WiredAuthenticationPeriodName": "Periodo di autenticazione",
+ "win10WiredAuthenticationRetryDelayPeriodDescription": "Numero di secondi tra un'autenticazione non riuscita e il tentativo di autenticazione successivo. Scegliere un valore compreso tra 1 e 3600. Se non si specifica alcun valore, questa opzione verrà impostata su 1 secondo.",
+ "win10WiredAuthenticationRetryDelayPeriodName": "Periodo di ritardo per i nuovi tentativi di autenticazione ",
+ "win10WiredFIPSComplianceDescription": "La convalida rispetto allo standard FIPS 140-2 è necessaria per tutti gli enti del governo federale degli Stati Uniti che usano sistemi di sicurezza basati su crittografia per proteggere informazioni sensibili ma non riservate archiviate in modalità digitale.",
+ "win10WiredFIPSComplianceName": "Forzare la conformità del profilo cablato con il Federal Information Processing Standard (FIPS)",
+ "win10WiredGuest": "Guest",
+ "win10WiredMachine": "Computer",
+ "win10WiredMachineOrUser": "Utente o computer",
+ "win10WiredMaximumAuthenticationFailuresDescription": "Immettere il numero massimo di errori di autenticazione per questo set di credenziali. Se non si specifica alcun valore, questa opzione verrà impostata su 1 tentativo.",
+ "win10WiredMaximumAuthenticationFailuresName": "Errori di autenticazione massimi",
+ "win10WiredMaximumEAPOLStartMessagesDescription": "Consente di scegliere un numero di messaggi di avvio EAPOL compreso tra 1 e 100. Se non si specifica alcun valore, verranno inviati al massimo 3 messaggi.",
+ "win10WiredMaximumEAPOLStartMessagesName": "Inizio EAPOL massimo",
+ "win10WiredNetworkAuthenticationBlockPeriodDescription": "Periodo di blocco dell'autenticazione in minuti. Consente di specificare la durata del blocco dei tentativi di autenticazione automatica dopo un tentativo di autenticazione non riuscito. Scegliere un valore compreso tra 0 e 1440.",
+ "win10WiredNetworkAuthenticationBlockPeriodName": "Periodo di blocco (minuti)",
+ "win10WiredNetworkAuthenticationModeName": "Modalità di autenticazione",
+ "win10WiredNetworkDoNotEnforceName": "Non applicare",
+ "win10WiredNetworkEnforce8021XDescription": "Specifica se il servizio di configurazione automatica per le reti cablate richiede l'uso di 802.1X per l'autenticazione delle porte.",
+ "win10WiredNetworkEnforce8021XName": "802.1x",
+ "win10WiredNetworkEnforceName": "Applicare",
+ "win10WiredRememberCredentialsDescription": "Scegliere se memorizzare nella cache le credenziali degli utenti quando vengono immesse la prima volta che si connettono alla rete cablata. Le credenziali memorizzate nella cache vengono usate per le connessioni successive e gli utenti non devono immetterle di nuovo. Non configurare questa impostazione equivale a impostarla su Sì.",
+ "win10WiredRememberCredentialsName": "Ricorda le credenziali a ogni accesso",
+ "win10WiredStartPeriodDescription": "Numero di secondi di attesa prima dell'invio di un messaggio di avvio EAPOL. Scegliere un valore compreso tra 1 e 3600. Se non si specifica alcun valore, questa opzione verrà impostata su 5 secondi.",
+ "win10WiredStartPeriodName": "Periodo di avvio",
+ "win10WiredUser": "Utente",
"win10appLockerApplicationControlAllowDescription": "Sarà consentita l'esecuzione di queste app",
"win10appLockerApplicationControlAllowName": "Applica",
"win10appLockerApplicationControlAuditComponentsAndStoreAppsDescription": "La modalità \"Solo controllo\" registra tutti gli eventi nei log locali dei client, ma non blocca l'esecuzione di alcuna app. I componenti Windows e le app di Microsoft Store verranno registrati come conformi ai requisiti di sicurezza.",
@@ -9165,7 +7240,6 @@
"deviceConditionsInfoParagraph2": "È possibile configurare impostazioni basate su dispositivo simili per i dispositivi registrati.",
"deviceConditionsInfoParagraph2LinkText": "Altre informazioni sulla configurazione delle impostazioni di conformità dei dispositivi per i dispositivi registrati.",
"deviceId": "ID dispositivo",
- "deviceLockComplexityValidationFailureNotes": "Notes:
\n\n - The device lock can require a password complexity of: LOW, MEDIUM, or HIGH targeted to Android 11+. For devices operating on Android 10 and earlier, setting a complexity value of Low/Medium/High will default to the expected behavior for \"Low Complexity\".
\n - The password definitions below are subject to change. Please refer to DevicePolicyManager|Android Developers for the most updated definitions of the different password complexity levels.
\n
\n\nLow
\n\n - Password can be a pattern or PIN with repeating (4444) or ordered (1234, 4321, 2468) sequences.
\n
\n\nMedium
\n\n - PIN with no repeating (4444) or ordered (1234, 4321, 2468) sequences with a minimum length of at least 4 characters
\n - Alphabetic passwords with a minimum length of at least 4 characters
\n - Alphanumeric passwords with a minimum length of at least 4 characters
\n
\n\nHigh
\n\n - PIN with no repeating (4444) or ordered (1234, 4321, 2468) sequences with a minimum length of at least 8 characters
\n - Alphabetic passwords with a minimum length of at least 6 characters
\n - Alphanumeric passwords with a minimum length of at least 6 characters
\n
\n",
"deviceLockedOpenFilesOptionsText": "Quando il dispositivo è bloccato e sono presenti file aperti",
"deviceLockedOptionText": "Quando il dispositivo è bloccato",
"deviceManufacturer": "Produttore dispositivo",
@@ -9463,7 +7537,7 @@
"reporting": "Creazione report",
"reports": "Report",
"require": "Rendi obbligatorio",
- "requireDeviceLockComplexityOnApps": "Require device lock complexity",
+ "requireDeviceLockOnApps": "Require device lock",
"requireThreatScanOnApps": "Rendi obbligatoria l'analisi delle minacce nelle app",
"requiredField": "Questo campo non può essere vuoto",
"requiredSafetyNetEvaluationType": "Tipo di valutazione SafetyNet necessario",
@@ -9659,6 +7733,7 @@
"yourDataIsBeingDownloadedEllipsis": "È in corso il download dei dati. L'operazione potrebbe richiedere qualche istante...",
"yourDataIsBeingDownloadedMinutes": "È in corso il download dei dati. L'operazione potrebbe richiedere qualche minuto...",
"yourProtectionLevel": "Livello di protezione dell'utente",
+ "rules": "Regole",
"basics": "Informazioni di base",
"modeTableHeader": "Modalità gruppo",
"appAssignmentMsg": "Gruppo",
@@ -9695,221 +7770,2042 @@
"licenseTypeDevice": "Dispositivo",
"licenseTypeUser": "Utente"
},
- "Languages": {
- "ar-aE": "Arabo (Emirati Arabi Uniti)",
- "ar-bH": "Arabo (Bahrein)",
- "ar-dZ": "Arabo (Algeria)",
- "ar-eG": "Arabo (Egitto)",
- "ar-iQ": "Arabo (Iraq)",
- "ar-jO": "Arabo (Giordania)",
- "ar-kW": "Arabo (Kuwait)",
- "ar-lB": "Arabo (Libano)",
- "ar-lY": "Arabo (Libia)",
- "ar-mA": "Arabo (Marocco)",
- "ar-oM": "Arabo (Oman)",
- "ar-qA": "Arabo (Qatar)",
- "ar-sA": "Arabo (Arabia Saudita)",
- "ar-sY": "Arabo (Siria)",
- "ar-tN": "Arabo (Tunisia)",
- "ar-yE": "Arabo (Yemen)",
- "az-cyrl": "Azerbaigiano (alfabeto cirillico, Azerbaigian)",
- "az-latn": "Azerbaigiano (alfabeto latino, Azerbaigian)",
- "bn-bD": "Bengali (Bangladesh)",
- "bn-iN": "Bengali (India)",
- "bs-cyrl": "Bosniaco (alfabeto cirillico)",
- "bs-latn": "Bosniaco (alfabeto latino)",
- "zh-cN": "Cinese (RPC)",
- "zh-hK": "Cinese (RAS di Hong Kong)",
- "zh-mO": "Cinese (RAS di Macao)",
- "zh-sG": "Cinese (Singapore)",
- "zh-tW": "Cinese (Taiwan)",
- "hr-bA": "Croato (alfabeto latino)",
- "hr-hR": "Croato (Croazia)",
- "nl-bE": "Olandese (Belgio)",
- "nl-nL": "Olandese (Paesi Bassi)",
- "en-aU": "Inglese (Australia)",
- "en-bZ": "Inglese (Belize)",
- "en-cA": "Inglese (Canada)",
- "en-cabn": "Inglese (Caraibi)",
- "en-iE": "Inglese (Irlanda)",
- "en-iN": "Inglese (India)",
- "en-jM": "Inglese (Giamaica)",
- "en-mY": "Inglese (Malaysia)",
- "en-nZ": "Inglese (Nuova Zelanda)",
- "en-pH": "Inglese (Repubblica delle Filippine)",
- "en-sG": "Inglese (Singapore)",
- "en-tT": "Inglese (Trinidad e Tobago)",
- "en-uK": "Inglese (Regno Unito)",
- "en-uS": "Inglese (Stati Uniti)",
- "en-zA": "Inglese (Sudafrica)",
- "en-zW": "Inglese (Zimbabwe)",
- "fr-bE": "Francese (Belgio)",
- "fr-cA": "Francese (Canada)",
- "fr-cH": "Francese (Svizzera)",
- "fr-fR": "Francese (Francia)",
- "fr-lU": "Francese (Lussemburgo)",
- "fr-mC": "Francese (Monaco)",
- "de-aT": "Tedesco (Austria)",
- "de-cH": "Tedesco (Svizzera)",
- "de-dE": "Tedesco (Germania)",
- "de-lI": "Tedesco (Liechtenstein)",
- "de-lU": "Tedesco (Lussemburgo)",
- "iu-cans": "Inuktitut (alfabeto sillabico, Canada)",
- "iu-latn": "Inuktitut (alfabeto latino, Canada)",
- "it-cH": "Italiano (Svizzera)",
- "it-iT": "Italiano (Italia)",
- "ms-bN": "Malese (Brunei Darussalam)",
- "ms-mY": "Malese (Malaysia)",
- "mn-cN": "Mongolo (mongolo tradizionale, Repubblica popolare cinese)",
- "mn-mN": "Mongolo (alfabeto cirillico, Mongolia)",
- "no-nB": "Norvegese, bokmål (Norvegia)",
- "no-nn": "Norvegese, Nynorsk (Norvegia)",
- "pt-bR": "Portoghese (Brasile)",
- "pt-pT": "Portoghese (Portogallo)",
- "quz-bO": "Quechua (Bolivia)",
- "quz-eC": "Quechua (Ecuador)",
- "quz-pE": "Quechua (Perù)",
- "smj-nO": "Sami, Lule (Norvegia)",
- "smj-sE": "Sami, Lule (Svezia)",
- "se-fI": "Sami settentrionale (Finlandia)",
- "se-nO": "Sami settentrionale (Norvegia)",
- "se-sE": "Sami settentrionale (Svezia)",
- "sma-nO": "Sami meridionale (Norvegia)",
- "sma-sE": "Sami meridionale (Svezia)",
- "smn": "Sami, Inari (Finlandia)",
- "sms": "Sami, Skolt (Finlandia)",
- "sr-Cyrl-bA": "Serbo (alfabeto cirillico)",
- "sr-Cyrl-rS": "Serbo (alfabeto cirillico) (Serbia e Montenegro (ex))",
- "sr-Latn-bA": "Serbo (alfabeto latino)",
- "sr-Latn-rS": "Serbo (alfabeto latino, Serbia)",
- "dsb": "Basso sorabo (Germania)",
- "hsb": "Alto sorabo (Germania)",
- "es-es-tradnl": "Spagnolo (Spagna, ordinamento tradizionale)",
- "es-aR": "Spagnolo (Argentina)",
- "es-bO": "Spagnolo (Bolivia)",
- "es-cL": "Spagnolo (Cile)",
- "es-cO": "Spagnolo (Colombia)",
- "es-cR": "Spagnolo (Costa Rica)",
- "es-dO": "Spagnolo (Repubblica Dominicana)",
- "es-eC": "Spagnolo (Ecuador)",
- "es-eS": "Spagnolo (Spagna)",
- "es-gT": "Spagnolo (Guatemala)",
- "es-hN": "Spagnolo (Honduras)",
- "es-mX": "Spagnolo (Messico)",
- "es-nI": "Spagnolo (Nicaragua)",
- "es-pA": "Spagnolo (Panama)",
- "es-pE": "Spagnolo (Perù)",
- "es-pR": "Spagnolo (Portorico)",
- "es-pY": "Spagnolo (Paraguay)",
- "es-sV": "Spagnolo (El Salvador)",
- "es-uS": "Spagnolo (Stati Uniti)",
- "es-uY": "Spagnolo (Uruguay)",
- "es-vE": "Spagnolo (Venezuela)",
- "sv-fI": "Svedese (Finlandia)",
- "uz-cyrl": "Uzbeko (alfabeto cirillico, Uzbekistan)",
- "uz-latn": "Uzbeco (alfabeto latino, Uzbekistan)",
- "af": "Afrikaans (Sudafrica)",
- "sq": "Albanese (Albania)",
- "am": "Amarico (Etiopia)",
- "hy": "Armeno (Armenia)",
- "as": "Assamese (India)",
- "ba": "Baschiro (Russia)",
- "eu": "Basco (Basco)",
- "be": "Bielorusso (Bielorussia)",
- "br": "Bretone (Francia)",
- "bg": "Bulgaro (Bulgaria)",
- "ca": "Catalano (Catalano)",
- "co": "Corso (Francia)",
- "cs": "Ceco (Repubblica Ceca)",
- "da": "Danese (Danimarca)",
- "prs": "Dari (Afghanistan)",
- "dv": "Divehi (Maldive)",
- "et": "Estone (Estonia)",
- "fo": "Faroese (Fær Øer)",
- "fil": "Filippino (Filippine)",
- "fi": "Finlandese (Finlandia)",
- "gl": "Galiziano (Galizia)",
- "ka": "Georgiano (Georgia)",
- "el": "Greco (Grecia)",
- "gu": "Gujarati (India)",
- "ha": "Hausa (alfabeto latino, Nigeria)",
- "he": "Ebraico (Israele)",
- "hi": "Hindi (India)",
- "hu": "Ungherese (Ungheria)",
- "is": "Islandese (Islanda)",
- "ig": "Igbo (Nigeria)",
- "id": "Indonesiano (Indonesia)",
- "ga": "Irlandese (Irlanda)",
- "xh": "Xhosa (Sudafrica)",
- "zu": "Zulu (Sudafrica)",
- "ja": "Giapponese (Giappone)",
- "kn": "Kannada (India)",
- "kk": "Kazako (Kazakhstan)",
- "km": "Khmer (Cambogia)",
- "rw": "Kinyarwanda (Ruanda)",
- "sw": "Swahili (Kenya)",
- "kok": "Konkani (India)",
- "ko": "Coreano (Corea)",
- "ky": "Kirghiso (Kirghizistan)",
- "lo": "Lao (Repubblica democratica popolare del Laos)",
- "lv": "Lettone (Lettonia)",
- "lt": "Lituano (Lituania)",
- "lb": "Lussemburghese (Lussemburgo)",
- "mk": "Macedone (Macedonia del Nord)",
- "ml": "Malayalam (India)",
- "mt": "Maltese (Malta)",
- "mi": "Maori (Nuova Zelanda)",
- "mr": "Marathi (India)",
- "moh": "Mohawk (Mohawk)",
- "ne": "Nepalese (Nepal)",
- "oc": "Occitano (Francia)",
- "or": "Odia (India)",
- "ps": "Pashto (Afghanistan)",
- "fa": "Persiano",
- "pl": "Polacco (Polonia)",
- "pa": "Punjabi (India)",
- "ro": "Romeno (Romania)",
- "rm": "Romancio (Svizzera)",
- "ru": "Russo (Russia)",
- "sa": "Sanscrito (India)",
- "st": "Sotho del nord (Sudafrica)",
- "tn": "Tswana (Sudafrica)",
- "si": "Singalese (Sri Lanka)",
- "sk": "Slovacco (Slovacchia)",
- "sl": "Sloveno (Slovenia)",
- "sv": "Svedese (Svezia)",
- "syr": "Siriaco (Siria)",
- "tg": "Tagico (alfabeto cirillico, Tagikistan)",
- "ta": "Tamil (India)",
- "tt": "Tartaro (Russia)",
- "te": "Telugu (India)",
- "th": "Thai (Thailandia)",
- "bo": "Tibetano (Repubblica popolare cinese)",
- "tr": "Turco (Turchia)",
- "tk": "Turcomanno (Turkmenistan)",
- "uk": "Ucraino (Ucraina)",
- "ur": "Urdu (Pakistan)",
- "vi": "Vietnamita (Vietnam)",
- "cy": "Gallese (Regno Unito)",
- "wo": "Wolof (Senegal)",
- "ii": "Yi (Repubblica popolare cinese)",
- "yo": "Yoruba (Nigeria)"
- },
- "AppProtection": {
- "allAppTypes": "Includi tutti i tipi di app",
- "androidPlatformLabel": "Android",
- "appsInAndroidWorkProfile": "App nel profilo di lavoro di Android",
- "appsOnIntuneManagedDevices": "App nei dispositivi gestiti di Intune",
- "appsOnUnmanagedDevices": "App nei dispositivi non gestiti",
- "iOSPlatformLabel": "iOS/iPadOS",
- "iosAndroidMacPlatformLabel": "iOS, Android, Mac",
- "iosAndroidPlatformLabel": "iOS, Android",
- "macPlatformLabel": "Mac",
- "notAvailable": "Non disponibile",
- "windows10PlatformLabel": "Windows 10 e versioni successive",
- "withEnrollment": "Con registrazione",
- "withoutEnrollment": "Senza registrazione"
- },
+ "ApplicabilityRules": {
+ "GridLabel": {
+ "property": "Proprietà",
+ "rule": "Regola",
+ "ruleDetails": "Dettagli regola",
+ "value": "Valore"
+ },
+ "assignIf": "Assegna un profilo se",
+ "deleteWarning": "La regola di applicabilità selezionata verrà eliminata",
+ "dontAssignIf": "Non assegnare un profilo se",
+ "editionDisplayText": "{0} {1}",
+ "editionDisplayTextMore": "e {0} in più",
+ "instructions": "Specificare la modalità di applicazione del profilo in un gruppo assegnato. Intune applicherà il profilo solo ai dispositivi che rispettano i criteri combinati di queste regole.",
+ "maxText": "Max",
+ "minText": "Min",
+ "noActionRow": "Non sono state specificate regole di applicabilità",
+ "oSVersion": "Ad esempio, 1.2.3.4",
+ "toText": "al",
+ "windows10Education": "Windows 10/11 Education",
+ "windows10EducationN": "Windows 10/11 Education N",
+ "windows10Enterprise": "Windows 10/11 Enterprise",
+ "windows10EnterpriseN": "Windows 10/11 Enterprise N",
+ "windows10HolographicEnterprise": "Windows 10 Holographic for Business",
+ "windows10Home": "Windows 10/11 Home",
+ "windows10HomeChina": "Windows 10 Home - Cina",
+ "windows10HomeN": "Windows 10/11 Home N",
+ "windows10HomeSingleLanguage": "Windows 10/11 Home Single Language",
+ "windows10IoTCore": "Windows 10 IoT Core",
+ "windows10IoTCoreCommercial": "Windows 10 IoT Core Commercial",
+ "windows10Mobile": "Windows 10 Mobile",
+ "windows10MobileEnterprise": "Windows 10 Mobile Enterprise",
+ "windows10OsEdition": "Edizione del sistema operativo",
+ "windows10OsVersion": "Versione del sistema operativo",
+ "windows10Professional": "Windows 10/11 Professional",
+ "windows10ProfessionalEducation": "Windows 10/11 Professional Education",
+ "windows10ProfessionalEducationN": "Windows 10/11 Professional Education N",
+ "windows10ProfessionalN": "Windows 10 Professional N",
+ "windows10ProfessionalWorkstation": "Windows 10/11 Professional Workstation",
+ "windows10ProfessionalWorkstationN": "Windows 10/11 Professional Workstation N"
+ },
+ "DetectionRules": {
+ "ComparisonOperators": {
+ "equals": "È uguale a",
+ "greaterThan": "Maggiore di",
+ "greaterThanOrEqualTo": "Maggiore o uguale a",
+ "lessThan": "Minore di",
+ "lessThanOrEqualTo": "Minore o uguale a",
+ "notEqualTo": "Diverso da"
+ },
+ "CustomScript": {
+ "enforceSignatureCheck": "Imponi il controllo della firma degli script ed esegui lo script automaticamente",
+ "enforceSignatureCheckTooltip": "Selezionare 'Sì' per verificare che lo script sia firmato da un'entità di pubblicazione attendibile, in modo da consentire l'esecuzione dello script senza la visualizzazione di avvisi o richieste. Lo script verrà eseguito senza essere bloccato. Selezionare 'No' (impostazione predefinita) per eseguire lo script con la conferma dell'utente finale senza la verifica della firma.",
+ "header": "Usa uno script di rilevamento personalizzato",
+ "runAs32Bit": "Esegui lo script come processo a 32 bit nei client a 64 bit",
+ "runAs32BitTooltip": "Selezionare 'Sì' per eseguire lo script in un processo a 32 bit nei client a 64 bit. Selezionare 'No' (impostazione predefinita) per eseguire lo script in un processo a 64 bit nei client a 64 bit. I client a 32 bit eseguono lo script in un processo a 32 bit.",
+ "scriptFile": "File di script",
+ "scriptFileNotSelectedValidation": "Non è stato selezionato alcun file di script.",
+ "scriptFileTooltip": "Selezionare uno script di PowerShell che rileverà la presenza dell'app sul client. L'app verrà rilevata quando lo script restituisce un codice di uscita con valore 0 e scrive un valore di stringa in STDOUT.",
+ "scriptSizeLimitValidation": "Lo script di rilevamento supera le dimensioni massime consentite. Risolvere questo errore riducendo le dimensioni dello script di rilevamento."
+ },
+ "Manual": {
+ "FileRule": {
+ "DetectionMethodOptions": {
+ "dateCreated": "Data creazione",
+ "dateModified": "Data di modifica",
+ "doesNotExist": "Il file o la cartella non esiste",
+ "fileOrFolderExists": "File o cartella esistente",
+ "sizeInMB": "Dimensioni in MB",
+ "version": "Stringa (versione)"
+ },
+ "associatedWith32Bit": "Associata a un'app a 32 bit nei client a 64 bit",
+ "associatedWith32BitTooltip": "Selezionare 'Sì' per espandere eventuali variabili di ambiente PATH nel contesto a 32 bit nei client a 64 bit. Selezionare 'No' (impostazione predefinita) per espandere eventuali variabili di ambiente nel contesto a 64 bit nei client a 64 bit. I client a 32 bit useranno sempre il contesto a 32 bit.",
+ "detectionMethod": "Metodo di rilevamento",
+ "detectionMethodTooltip": "Selezionare il tipo di metodo di rilevamento usato per convalidare la presenza dell'app.",
+ "fileOrFolder": "File o cartella",
+ "fileOrFolderToolTip": "File o cartella da rilevare.",
+ "operator": "Operatore",
+ "operatorTooltip": "Selezionare l'operatore per il metodo di rilevamento usato per convalidare il confronto.",
+ "path": "Percorso",
+ "pathTooltip": "Percorso completo della cartella contenente il file o la cartella da rilevare.",
+ "value": "Valore",
+ "valueTooltip": "Selezionare un valore corrispondente al metodo di rilevamento selezionato. I metodi di rilevamento della data devono essere immessi in ora locale."
+ },
+ "GridColumns": {
+ "pathOrCode": "Percorso/Codice",
+ "type": "Tipo"
+ },
+ "MsiRule": {
+ "operator": "Operatore",
+ "operatorTooltip": "Selezionare l'operatore per il confronto per la convalida della versione del prodotto MSI.",
+ "productCode": "Codice prodotto MSI",
+ "productCodeTooltip": "Codice prodotto MSI valido per l'app.",
+ "productVersion": "Valore",
+ "productVersionCheck": "Verifica della versione del prodotto MSI",
+ "productVersionCheckTooltip": "Selezionare 'Sì' per verificare la versione del prodotto MSI oltre al codice prodotto MSI.",
+ "productVersionTooltip": "Immettere la versione del prodotto MSI per l'app."
+ },
+ "RegistryRule": {
+ "DetectionMethodOptions": {
+ "integerComparison": "Confronto di numeri interi",
+ "keyDoesNotExist": "Chiave inesistente",
+ "keyExists": "Chiave esistente",
+ "stringComparison": "Confronto di stringhe",
+ "valueDoesNotExist": "Valore inesistente",
+ "valueExists": "Valore esistente",
+ "versionComparison": "Confronto tra le versioni"
+ },
+ "associatedWith32Bit": "Associata a un'app a 32 bit nei client a 64 bit",
+ "associatedWith32BitTooltip": "Selezionare 'Sì' per eseguire ricerche nel Registro di sistema a 32 bit nei client a 64 bit. Selezionare 'No' (impostazione predefinita) per eseguire ricerche nel Registro di sistema a 64 bit nei client a 64 bit. I client a 32 bit eseguiranno sempre ricerche nel registro di sistema a 32 bit.",
+ "detectionMethod": "Metodo di rilevamento",
+ "detectionMethodTooltip": "Selezionare il tipo di metodo di rilevamento usato per convalidare la presenza dell'app.",
+ "keyPath": "Percorso della chiave",
+ "keyPathTooltip": "Percorso completo della voce del Registro di sistema contenente il valore da rilevare.",
+ "operator": "Operatore",
+ "operatorTooltip": "Selezionare l'operatore per il metodo di rilevamento usato per convalidare il confronto.",
+ "value": "Valore",
+ "valueName": "Nome valore",
+ "valueNameTooltip": "Nome del valore del Registro di sistema da rilevare.",
+ "valueTooltip": "Selezionare un valore corrispondente al metodo di rilevamento selezionato."
+ },
+ "RuleTypeOptions": {
+ "file": "File",
+ "mSI": "MSI",
+ "registry": "Registro"
+ },
+ "gridAriaLabel": "Regole di rilevamento",
+ "header": "Creare una regola che indichi la presenza dell'app.",
+ "noRulesSelectedPlaceholder": "Non è stata specificata alcuna regola.",
+ "ruleTableLimit": "È possibile aggiungere fino a 25 regole di rilevamento",
+ "ruleType": "Tipo regola",
+ "ruleTypeTooltip": "Scegliere il tipo di regola di rilevamento da aggiungere."
+ },
+ "RuleConfigurationOptions": {
+ "customScript": "Usa uno script di rilevamento personalizzato",
+ "manual": "Configura manualmente le regole di rilevamento"
+ },
+ "bladeTitle": "Regole di rilevamento",
+ "header": "Configurare regole specifiche dell'app usate per rilevare la presenza dell'app.",
+ "rulesFormat": "Formato delle regole",
+ "rulesFormatTooltip": "Scegliere di configurare manualmente le regole di rilevamento o usare uno script personalizzato per rilevare la presenza dell'app.",
+ "selectorLabel": "Regole di rilevamento"
+ },
+ "PolicyType": {
+ "AttackSurfaceReductionRules": {
+ "configMgr": "Regole di riduzione della superficie di attacco (ConfigMgr)"
+ },
+ "EndpointDetectionandResponse": {
+ "mDE": "Rilevamento di endpoint e risposta"
+ },
+ "EndpointSecurityTemplate": {
+ "aSRAppBrowserSecurity": "Isolamento di app e browser",
+ "aSRApplicationControl": "Controllo applicazione",
+ "aSRAttackSurfaceReduction": "Regole per la riduzione della superficie di attacco",
+ "aSRDeviceControl": "Controllo del dispositivo",
+ "aSRExploitProtection": "Protezione dagli exploit",
+ "aSRWebProtection": "Protezione Web (Microsoft Edge Legacy)",
+ "aVExclusions": "Esclusioni di Antivirus Microsoft Defender",
+ "antivirus": "Antivirus Microsoft Defender",
+ "cloudPC": "Baseline di sicurezza di Windows 365",
+ "default": "Sicurezza degli endpoint",
+ "defenderTest": "Demo di Microsoft Defender per endpoint",
+ "diskEncryption": "BitLocker",
+ "eDR": "Rilevamento di endpoint e risposta",
+ "edgeSecurityBaseline": "Baseline di Microsoft Edge",
+ "edgeSecurityBaselinePreview": "Anteprima: baseline di Microsoft Edge",
+ "editionUpgradeConfiguration": "Aggiornamento dell'edizione e cambio di modalità",
+ "firewall": "Microsoft Defender Firewall",
+ "firewallRules": "Regole di Microsoft Defender Firewall",
+ "identityProtection": "Protezione account",
+ "identityProtectionPreview": "Protezione account (anteprima)",
+ "mDMSecurityBaseline1810": "Baseline di sicurezza MDM per Windows 10 e versioni successive per ottobre 2018",
+ "mDMSecurityBaseline1810Preview": "Anteprima: Baseline di sicurezza MDM per Windows 10 e versioni successive per ottobre 2018",
+ "mDMSecurityBaseline1810PreviewBeta": "Anteprima: Baseline di sicurezza MDM per Windows 10 per ottobre 2018 (beta)",
+ "mDMSecurityBaseline1906": "Baseline di sicurezza MDM per Windows 10 e versioni successive per maggio 2019",
+ "mDMSecurityBaseline2004": "Baseline di sicurezza MDM per Windows 10 e versioni successive per agosto 2020",
+ "mDMSecurityBaseline2101": "Baseline di sicurezza MDM per Windows 10 e versioni successive per dicembre 2020",
+ "macOSAntivirus": "Antivirus",
+ "macOSDiskEncryption": "FileVault",
+ "macOSFirewall": "Firewall macOS",
+ "microsoftDefenderBaseline": "Baseline di Microsoft Defender per endpoint",
+ "office365Baseline": "Baseline di Microsoft Office O365",
+ "office365BaselinePreview": "Anteprima: baseline di Microsoft Office O365",
+ "securityBaselines": "Baseline di sicurezza",
+ "test": "Modello di test",
+ "testFirewallRulesSecurityTemplateName": "Regole di Microsoft Defender Firewall (test)",
+ "testIdentityProtectionSecurityTemplateName": "Protezione account (test)",
+ "windowsSecurityExperience": "Esperienza di Sicurezza di Windows"
+ },
+ "Firewall": {
+ "mDE": "Microsoft Defender Firewall"
+ },
+ "FirewallRules": {
+ "mDE": "Regole di Microsoft Defender Firewall"
+ },
+ "administrativeTemplates": "Modelli amministrativi",
+ "androidCompliancePolicy": "Criteri di conformità di Android",
+ "aospDeviceOwnerCompliancePolicy": "Criteri di conformità di Android (AOSP)",
+ "applicationControl": "Controllo applicazione",
+ "custom": "Personalizzata",
+ "deliveryOptimization": "Ottimizzazione recapito",
+ "derivedPersonalIdentityVerificationCredential": "Credenziale derivata",
+ "deviceFeatures": "Funzionalità del dispositivo",
+ "deviceFirmwareConfigurationInterface": "Interfaccia di configurazione del firmware del dispositivo",
+ "deviceLock": "Blocco del dispositivo",
+ "deviceOwner": "Profilo di lavoro completamente gestito, dedicato e di proprietà aziendale",
+ "deviceRestrictions": "Limitazioni del dispositivo",
+ "deviceRestrictionsWindows10Team": "Limitazioni del dispositivo (Windows 10 Team)",
+ "domainJoinPreview": "Aggiunta a un dominio",
+ "editionUpgradeAndModeSwitch": "Aggiornamento dell'edizione e cambio di modalità",
+ "education": "Istruzione",
+ "email": "Posta elettronica",
+ "emailSamsungKnoxOnly": "Posta elettronica (solo Samsung KNOX)",
+ "endpointProtection": "Endpoint Protection",
+ "expeditedCheckin": "Configurazione della gestione dei dispositivi mobili",
+ "exploitProtection": "Protezione di Exploit",
+ "extensions": "Estensioni",
+ "hardwareConfigurations": "Configurazioni BIOS",
+ "identityProtection": "Identity Protection",
+ "iosCompliancePolicy": "Criteri di conformità di iOS",
+ "kiosk": "Tutto schermo",
+ "macCompliancePolicy": "Criteri di conformità Mac",
+ "microsoftDefenderAntivirus": "Antivirus Microsoft Defender",
+ "microsoftDefenderAntivirusexclusions": "Esclusioni di Antivirus Microsoft Defender",
+ "microsoftDefenderAtpWindows10Desktop": "Microsoft Defender per endpoint (dispositivi desktop che eseguono Windows 10 o versioni successive)",
+ "microsoftDefenderFirewallRules": "Regole di Microsoft Defender Firewall",
+ "microsoftEdgeBaseline": "Baseline di Microsoft Edge",
+ "mxProfileZebraOnly": "Profilo MX (solo Zebra)",
+ "networkBoundary": "Limite di rete",
+ "oemConfig": "OEMConfig",
+ "overrideGroupPolicy": "Esegui l'override dei criteri di gruppo",
+ "pkcsCertificate": "Certificato PKCS",
+ "pkcsImportedCertificate": "Certificato PKCS importato",
+ "preferenceFile": "File delle preferenze",
+ "presets": "Set di impostazioni",
+ "scepCertificate": "Certificato SCEP",
+ "secureAssessmentEducation": "Valutazione sicura (Education)",
+ "settingsCatalog": "Catalogo di impostazioni",
+ "sharedMultiUserDevice": "Dispositivo multiutente condiviso",
+ "softwareUpdates": "Aggiornamenti software",
+ "trustedCertificate": "Certificato attendibile",
+ "unknown": "Sconosciuto",
+ "unsupported": "Non supportata",
+ "vpn": "VPN",
+ "wiFi": "Wi-Fi",
+ "wiFiImport": "Wi-Fi per importazione",
+ "windows10CompliancePolicy": "Criteri di conformità di Windows 10/11",
+ "windows10MobileCompliancePolicy": "Criteri di conformità di Windows 10 Mobile",
+ "windows10XScep": "Certificato SCEP - TEST",
+ "windows10XTrustedCertificate": "Certificato attendibile - TEST",
+ "windows10XVPN": "VPN - TEST",
+ "windows10XWifi": "WIFI - TEST",
+ "windows8CompliancePolicy": "Criteri di conformità di Windows 8",
+ "windowsHealthMonitoring": "Monitoraggio dello stato di Windows",
+ "windowsInformationProtection": "Windows Information Protection",
+ "windowsPhoneCompliancePolicy": "Criteri di conformità di Windows Phone",
+ "windowsUpdateforBusiness": "Windows Update per le aziende",
+ "wiredNetwork": "Rete cablata",
+ "workProfile": "Profilo di lavoro di proprietà personale"
+ },
+ "Win32Requirements": {
+ "AdditionalRequirements": {
+ "File": {
+ "fileOrFolderToolTip": "File o cartella come requisito selezionato.",
+ "pathToolTip": "Percorso completo del file o della cartella da rilevare.",
+ "property": "Proprietà",
+ "valueToolTip": "Selezionare un valore per il requisito corrispondente al metodo di rilevamento selezionato. I requisiti relativi a data e ora devono essere immessi nel formato locale."
+ },
+ "GridColumns": {
+ "pathOrScript": "Percorso/Script",
+ "type": "Tipo"
+ },
+ "Registry": {
+ "keyPath": "Percorso della chiave",
+ "keyPathTooltip": "Percorso completo della voce del Registro di sistema contenente il valore come requisito.",
+ "operator": "Operator",
+ "operatorTooltip": "Selezionare l'operatore per il confronto.",
+ "registryRequirement": "Requisito relativo alla chiave del Registro di sistema",
+ "registryRequirementTooltip": "Selezionare il confronto per il requisito relativo alla chiave del Registro di sistema.",
+ "valueName": "Nome valore",
+ "valueNameTooltip": "Nome del valore del Registro di sistema obbligatorio."
+ },
+ "RequirementTypeOptions": {
+ "fileType": "File",
+ "registry": "Registro",
+ "script": "Script"
+ },
+ "Script": {
+ "RequirementMethodOptions": {
+ "boolean": "Booleano",
+ "dateTime": "Data e ora",
+ "float": "Virgola mobile",
+ "integer": "Numero intero",
+ "string": "Stringa",
+ "version": "Versione"
+ },
+ "ScriptContent": {
+ "emptyMessage": "Il contenuto dello script non deve essere vuoto."
+ },
+ "duplicateName": "Il nome {0} per lo script è già stato usato. Immettere un nome diverso.",
+ "enforceSignatureCheck": "Imponi il controllo della firma degli script",
+ "enforceSignatureCheckTooltip": "Selezionare 'Sì' per verificare che lo script sia firmato da un'entità di pubblicazione attendibile, in modo da consentire l'esecuzione dello script senza la visualizzazione di avvisi o richieste. Lo script verrà eseguito senza essere bloccato. Selezionare 'No' (impostazione predefinita) per eseguire lo script con la conferma dell'utente finale, ma senza la verifica della firma.",
+ "loggedOnCredentials": "Esegui lo script con le credenziali dell'utente connesso",
+ "loggedOnCredentialsTooltip": "Eseguire lo script usando le credenziali del dispositivo connesso.",
+ "operatorTooltip": "Selezionare l'operatore per il confronto tra requisiti.",
+ "requirementMethod": "Selezionare il tipo di dati di output",
+ "requirementMethodTooltip": "Selezionare il tipo di dati usato durante la determinazione di un requisito di corrispondenza per il rilevamento.",
+ "scriptFile": "File di script",
+ "scriptFileTooltip": "Selezionare uno script di PowerShell che rileverà la presenza dell'app sul client. Se l'app viene rilevata, il processo relativo ai requisiti fornirà un codice di uscita con valore 0 e scriverà un valore di stringa in STDOUT.",
+ "scriptName": "Nome script",
+ "value": "Valore",
+ "valueTooltip": "Selezionare un valore per il requisito corrispondente al metodo di rilevamento selezionato. I requisiti relativi a data e ora devono essere immessi nel formato locale."
+ },
+ "bladeTitle": "Aggiungi una regola relativa ai requisiti",
+ "createRequirementHeader": "Creare un requisito.",
+ "header": "Configurare regole aggiuntive relative ai requisiti",
+ "label": "Regole aggiuntive relative ai requisiti",
+ "noRequirementsSelectedPlaceholder": "Non sono stati specificati requisiti.",
+ "requirementType": "Tipo di requisito",
+ "requirementTypeTooltip": "Scegliere il tipo di metodo di rilevamento usato per determinare la modalità di convalida di un requisito."
+ },
+ "architectures": "Architettura del sistema operativo",
+ "architecturesTooltip": "Scegliere le architetture necessarie per installare l'app.",
+ "bladeTitle": "Requisiti",
+ "diskSpace": "Spazio su disco necessario (MB)",
+ "diskSpaceTooltip": "Spazio su disco disponibile necessario nell'unità di sistema per installare l'app.",
+ "header": "Specificare i requisiti che i dispositivi devono rispettare prima dell'installazione dell'app:",
+ "maximumTextFieldValue": "Il valore non può essere maggiore di {0}.",
+ "minimumCpuSpeed": "Velocità di CPU minima necessaria (MHz)",
+ "minimumCpuSpeedTooltip": "Velocità di CPU minima necessaria per installare l'app.",
+ "minimumLogicalProcessors": "Numero minimo di processori logici necessari",
+ "minimumLogicalProcessorsTooltip": "Numero minimo di processori logici necessari per installare l'app.",
+ "minimumOperatingSystem": "Sistema operativo minimo",
+ "minimumOperatingSystemTooltip": "Selezionare il sistema operativo minimo necessario per installare l'app.",
+ "minumumTextFieldValue": "Il valore deve essere almeno {0}.",
+ "physicalMemory": "Memoria fisica necessaria (MB)",
+ "physicalMemoryTooltip": "Memoria fisica (RAM) necessaria per installare l'app.",
+ "selectorLabel": "Requisiti",
+ "validNumber": "Immettere un numero valido."
+ },
+ "AzureIAM": {
+ "AdrsUserActionSelectionWarning": {
+ "conditions": "Le condizioni che richiedono la registrazione del dispositivo non sono disponibili con l’azione dell’utente \"Registra o associa i dispositivi\".",
+ "message": "È possibile usare solo \"Richiedi l'Autenticazione a più fattori\" nei criteri creati per l'azione utente \"Registra o aggiungi dispositivi\".{0}"
+ },
+ "AuthContext": {
+ "Delete": {
+ "failure": "Non è stato possibile eliminare {0}",
+ "failureCa": "Non è stato possibile eliminare {0} perché i criteri CA vi fanno riferimento",
+ "modifying": "Eliminazione di {0} in corso",
+ "success": "L'eliminazione di {0} è stata completata"
+ },
+ "Included": {
+ "none": "Non è stato selezionato alcun contesto di autenticazione, app cloud o azione",
+ "plural": "{0} contesti di autenticazione inclusi",
+ "singular": "1 contesto di autenticazione incluso"
+ },
+ "InfoBlade": {
+ "createTitle": "Aggiungi il contesto di autenticazione",
+ "descPlaceholder": "Aggiungere una descrizione per il contesto di autenticazione",
+ "modifyTitle": "Modifica il contesto di autenticazione",
+ "namePlaceholder": "Ad esempio, Percorso attendibile, Dispositivo attendibile, Autorizzazione avanzata",
+ "publishDesc": "La pubblicazione nelle app renderà il contesto di autenticazione disponibile per l'uso da parte delle app. Eseguire la pubblicazione al termine della configurazione del criterio di Accesso condizionale per il tag. [Altre informazioni][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150966",
+ "publishLabel": "Pubblica nelle app",
+ "titleDesc": "Consente di configurare un contesto di autenticazione che verrà usato per proteggere i dati e le azioni dell'applicazione. Usare nomi e descrizioni comprensibili per gli amministratori delle applicazione. [Altre informazioni][1]\n[1]:https://go.microsoft.com/fwlink/?linkid=2150965"
+ },
+ "Notify": {
+ "failure": "Non è stato possibile aggiornare {0}",
+ "modifying": "Modifica di {0}",
+ "success": "L'aggiornamento di {0} è stato completato"
+ },
+ "WhatIf": {
+ "selected": "Contesto di autenticazione incluso"
+ },
+ "addNewStepUp": "Nuovo contesto di autenticazione",
+ "checkBoxInfo": "Selezionare il contesto di autenticazione a cui verrà applicato il criterio",
+ "configure": "Configura i contesti di autenticazione",
+ "createCA": "Assegna criteri di Accesso condizionale al contesto di autenticazione",
+ "dataGrid": "Elenco di contesti di autenticazione",
+ "deleteFailedByReference": "You cannot delete this authentication context because it is being referenced by CA policies.",
+ "description": "Descrizione",
+ "documentation": "Documentazione",
+ "getStarted": "Introduzione",
+ "label": "Contesto di autenticazione (anteprima)",
+ "menuLabel": "Contesto di autenticazione (anteprima)",
+ "name": "Nome",
+ "noAuthContextConfigured": "Nessun contesto di autenticazione configurato.",
+ "noAuthContextSet": "Non sono disponibili contesti di autenticazione",
+ "noData": "Nessun contesto di autenticazione da visualizzare",
+ "selectionInfo": "Il contesto di autenticazione viene usato per proteggere i dati dell'applicazione e le azioni in app quali SharePoint e Microsoft Cloud App Security.",
+ "step": "Passaggio",
+ "tabDescription": "Consente di gestire il contesto di autenticazione per proteggere i dati e le azioni nelle app. [Altre informazioni][1]\n[1]:https://go.microsoft.com/fwlink/?linkid=2150965",
+ "tagResources": "Contrassegna le risorse con un contesto di autenticazione"
+ },
+ "AuthenticationStrength": {
+ "Mode": {
+ "deviceBasedPush": "Microsoft Authenticator (Accesso tramite telefono)",
+ "deviceBasedPushFido2X509Certificate": "Microsoft Authenticator (Accesso tramite telefono) + Fido 2 + Autenticazione basata su certificato",
+ "deviceBasedPushX509CertificateSingleFactor": "Microsoft Authenticator (Accesso tramite telefono) + Fido 2 + Autenticazione basata su certificato (Fattore singolo)",
+ "email": "Passcode monouso tramite posta elettronica",
+ "emailOtp": "Passcode monouso tramite posta elettronica",
+ "federatedMultiFactor": "Più fattori federato",
+ "federatedSingleFactor": "Singolo fattore federato",
+ "federatedSingleFactorFederatedMultiFactor": "Fattore singolo federato + Più fattori federato",
+ "fido2": "Chiave di sicurezza FIDO 2",
+ "fido2X509CertificateSingleFactor": "Chiave di sicurezza FIDO 2 + Autenticazione basata su certificato (Fattore singolo)",
+ "hardwareOath": "Token OATH hardware",
+ "hardwareOathEmail": "Token OATH hardware + Passcode monouso tramite posta elettronica",
+ "hardwareOathX509CertificateSingleFactor": "Token OATH hardware + Autenticazione basata su certificato (fattore singolo)",
+ "microsoftAuthenticatorPSIX509CertificateSingleFactor": "Microsoft Authenticator (Accesso tramite telefono) + Autenticazione basata su certificato (Fattore singolo)",
+ "microsoftAuthenticatorPsi": "Microsoft Authenticator (Accesso tramite telefono)",
+ "microsoftAuthenticatorPush": "Microsoft Authenticator (Notifica push)",
+ "microsoftAuthenticatorPushEmail": "Microsoft Authenticator (notifica push) + Passcode monouso tramite posta elettronica",
+ "microsoftAuthenticatorPushX509CertificateSingleFactor": "Microsoft Authenticator (Notifica push) + Autenticazione basata su certificato (Fattore singolo)",
+ "none": "Nessuno",
+ "password": "Password",
+ "passwordDeviceBasedPush": "Password + Microsoft Authenticator (Autenticazione tramite telefono)",
+ "passwordFido2": "Password + chiave di sicurezza FIDO 2",
+ "passwordHardwareOath": "Password + Token OATH hardware",
+ "passwordMicrosoftAuthenticatorPSI": "Password + Microsoft Authenticator (Autenticazione tramite telefono)",
+ "passwordMicrosoftAuthenticatorPush": "Password + Microsoft Authenticator - (Notifica push)",
+ "passwordSms": "Password e SMS",
+ "passwordSoftwareOath": "Password + Token OATH software",
+ "passwordTemporaryAccessPassMultiUse": "Password + Passcode di accesso temporaneo (Multiuso)",
+ "passwordTemporaryAccessPassOneTime": "Password + Passcode di accesso temporaneo (Una tantum)",
+ "passwordVoice": "Password e voce",
+ "sms": "SMS",
+ "smsEmail": "SMS + Passcode monouso tramite posta elettronica",
+ "smsSignIn": "Accesso tramite SMS",
+ "smsX509CertificateSingleFactor": "SMS + Autenticazione basata su certificato (Fattore singolo)",
+ "softwareOath": "Token OATH software",
+ "softwareOathEmail": "Token OATH software + Passcode monouso tramite posta elettronica",
+ "softwareOathX509CertificateSingleFactor": "Token OATH software + Autenticazione basata su certificato (fattore singolo)",
+ "temporaryAccessPassMultiUse": "Passcode di accesso temporaneo (Multiuso)",
+ "temporaryAccessPassMultiUseX509CertificateSingleFactor": "Passcode di accesso temporaneo (Multiuso) + Autenticazione basata su certificato (Fattore singolo)",
+ "temporaryAccessPassOneTime": "Passcode di accesso temporaneo (Una tantum)",
+ "temporaryAccessPassOneTimeX509CertificateSingleFactor": "Passcode di accesso temporaneo (Utilizzo una tantum) + Autenticazione basata su certificato (Fattore singolo)",
+ "voice": "Voce",
+ "voiceEmail": "Voce + Passcode monouso tramite posta elettronica",
+ "voiceX509CertificateSingleFactor": "Voce + Autenticazione basata su certificato (Fattore singolo)",
+ "windowsHelloForBusiness": "Windows Hello For Business",
+ "x509CertificateMultiFactor": "Autenticazione basata su certificati (Più fattori)",
+ "x509CertificateSingleFactor": "Autenticazione basata su certificato (Fattore singolo)"
+ }
+ },
+ "CAS": {
+ "BuiltinPolicy": {
+ "Option": {
+ "blockDownloads": "Blocca i download (anteprima)",
+ "monitorOnly": "Solo monitoraggio (anteprima)",
+ "protectDownloads": "Proteggi i download (anteprima)",
+ "useCustomControls": "Usa criteri personalizzati..."
+ },
+ "ariaLabel": "Scegliere il tipo di controllo app per l'accesso condizionale da applicare"
+ }
+ },
+ "ChooseApplications": {
+ "Grid": {
+ "appIdAria": "ID app: {0}"
+ },
+ "LowerGrid": {
+ "ariaLabel": "Elenco di app cloud selezionate"
+ },
+ "UpperGrid": {
+ "ariaLabel": "Elenco di app cloud corrispondenti al termine di ricerca"
+ }
+ },
+ "ChooseLocations": {
+ "Validation": {
+ "failed": "Con l'opzione \"Località selezionate\" è necessario scegliere almeno una località.",
+ "selector": "Scegliere almeno una località"
+ }
+ },
+ "ClientApp": {
+ "Clients": {
+ "Validation": {
+ "failed": "È necessario selezionare almeno uno dei client seguenti"
+ }
+ }
+ },
+ "ClientConditionsInfo": {
+ "browserAndModern": "Questi criteri si applicano solo ai browser e alle app con autenticazione moderna. Per applicare i criteri a tutte le app client, abilitare la condizione app client e selezionare tutte le app client.",
+ "classicExperience": "La configurazione predefinita delle app client è stata aggiornata dopo la creazione di questo criterio.",
+ "legacyAuth": "Se questa opzione non è configurata, i criteri vengono applicati a tutte le app client, incluse le app di autenticazione moderne e legacy."
+ },
+ "CloudAppFilterBlade": {
+ "AssignmentFilter": {
+ "header": "Attributo",
+ "placeholder": "Scegli un attributo"
+ },
+ "Configure": {
+ "infoBalloon": "Configurare i filtri dell'app a cui si vuole applicare il criterio."
+ },
+ "NoPermissions": {
+ "learnMoreAria": "Altre informazioni sulle autorizzazioni per gli attributi di sicurezza personalizzati.",
+ "message": "Non si dispone delle autorizzazioni necessarie per usare gli attributi di sicurezza personalizzati."
+ },
+ "gridHeader": "Usando gli attributi di sicurezza personalizzati, è possibile usare il generatore di regole o la casella di testo della sintassi delle regole per creare o modificare le regole di filtro. Nell'anteprima sono supportati solo gli attributi di tipo String. Gli attributi di tipo Integer o Boolean non verranno visualizzati.",
+ "learnMoreAria": "Altre informazioni sull'uso del generatore di regole e della casella di testo per la sintassi.",
+ "noAttributes": "Non sono disponibili attributi personalizzati in base a cui filtrare. Per utilizzare questo filtro, sarà necessario configurare alcuni attributi.",
+ "title": "Modificare filtro (anteprima)"
+ },
+ "CloudAppsUserActions": {
+ "any": "Qualsiasi app cloud o azione",
+ "infoBalloon": "App cloud o azione utente da testare. Ad esempio, 'SharePoint Online'",
+ "learnMore": "Controllare l'accesso in base a tutte le app cloud o azioni oppure in base ad app cloud o azioni specifiche.",
+ "learnMoreB2C": "Controllare l'accesso in base a tutte le app cloud oppure in base ad app cloud specifiche.",
+ "title": "Applicazioni cloud o azioni"
+ },
+ "CloudappsSelectionBlade": {
+ "Excluded": {
+ "gridAria": "Elenco di app cloud escluse"
+ },
+ "Filter": {
+ "configured": "Configurato",
+ "label": "Modificare filtro (anteprima)",
+ "with": "{0} con {1}"
+ },
+ "Included": {
+ "gridAria": "Elenco di app cloud incluse"
+ },
+ "Validation": {
+ "authContext": "Con l'opzione \"Contesto di autenticazione\" è necessario configurare almeno un elemento secondario.",
+ "selectApps": "È necessario configurare \"{0}\"",
+ "selector": "Selezionare almeno un'app.",
+ "userActions": "Con l'opzione \"Azioni utente\" è necessario configurare almeno un elemento secondario."
+ }
+ },
+ "DeviceState": {
+ "LearnMore": {
+ "message": "Controlla l'accesso utente quando lo stato del dispositivo da cui l'utente esegue l'accesso non è \"Aggiunto ad Azure AD ibrido\" o \"segnato come conforme\".\n Questo è stato deprecato. In alternativa, usare '{1}'."
+ }
+ },
+ "Errors": {
+ "notFound": "I criteri non sono stati trovati o sono stati eliminati.",
+ "notFoundDetailed": "Il criterio \"{0}\" non esiste più. È possibile che sia stato eliminato."
+ },
+ "GuestsOrExternalUsers": {
+ "allExternalTenantsLabel": "Tutte le organizzazioni Azure AD",
+ "b2bCollaborationGuestLabel": "Utenti guest di Collaborazione B2B",
+ "b2bCollaborationMemberLabel": "Utenti membri di Collaborazione B2B",
+ "b2bDirectConnectUserLabel": "Utenti con connessione diretta B2B",
+ "enumeratedExternalTenantsError": "Selezionare almeno un tenant esterno",
+ "enumeratedExternalTenantsLabel": "Selezionare le organizzazioni Azure AD",
+ "externalTenantsLabel": "Specificare le organizzazioni Azure AD esterne",
+ "externalUserDropdownLabel": "Scegliere tipi di utenti guest o esterni",
+ "externalUsersError": "Selezionare almeno un tipo di utente o guest esterno",
+ "guestOrExternalUsersInfoContent": "Include Collaborazione B2B, la connessione diretta B2B e altri tipi di utenti esterni.",
+ "guestOrExternalUsersLabel": "Utenti guest o esterni",
+ "internalGuestLabel": "Utenti guest locali",
+ "otherExternalUserLabel": "Altri utenti esterni"
+ },
+ "NamedLocation": {
+ "Form": {
+ "CountryLookup": {
+ "ariaLabel": "Metodo di ricerca del paese",
+ "gps": "Determinare la posizione in base alle coordinate GPS",
+ "info": "Quando è configurata la condizione relativa alla posizione di un criterio di accesso condizionale, l'app Authenticator richiederà agli utenti di condividere la rispettiva posizione GPS. ",
+ "ip": "Determina la posizione in base a indirizzo IP (solo IPv4)"
+ },
+ "Header": {
+ "new": "Nuova posizione ({0})",
+ "update": "Posizione di aggiornamento ({0})"
+ },
+ "IP": {
+ "learn": "Configurare gli intervalli IPv4 e IPv6 per la località denominata.\n[Altre informazioni][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
+ },
+ "Include": {
+ "infoBalloon": "Per paesi/aree geografiche sconosciute si intendono gli indirizzi IP non associati a un paese o un'area geografica specifica. [Altre informazioni][1]\n\nSono inclusi:\n* Indirizzi IPv6\n* Indirizzi IPv4 senza mapping diretto\n[1]: https://aka.ms/canamedlocations\n",
+ "label": "Includi paesi/aree geografiche sconosciute"
+ },
+ "Name": {
+ "empty": "Il nome non può essere vuoto",
+ "placeholder": "Specificare un nome per la posizione"
+ },
+ "PrivateLink": {
+ "learn": "Creare una nuova località denominata contenente collegamenti privati per Azure AD.\n[Altre informazioni][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
+ },
+ "Search": {
+ "countries": "Cerca paesi",
+ "names": "Cerca nomi",
+ "privateLinks": "Cerca collegamenti privati"
+ },
+ "Trusted": {
+ "label": "Contrassegna come posizione attendibile"
+ },
+ "enter": "Immettere un nuovo intervallo IPv4 o IPv6",
+ "example": "Ad esempio: 40.77.182.32/27 o 2a01:111::/32"
+ },
+ "Label": {
+ "addCountries": "Località dei paesi",
+ "addIpRange": "Posizione degli intervalli IP",
+ "addPrivateLink": "Collegamenti privati di Azure"
+ },
+ "Notification": {
+ "Create": {
+ "Failed": {
+ "description": "Si è verificato un errore durante la creazione della nuova posizione ({0})",
+ "title": "La creazione non è stata completata"
+ },
+ "InProgress": {
+ "description": "Creazione della nuova posizione ({0})",
+ "title": "Creazione in corso"
+ },
+ "Success": {
+ "description": "La nuova posizione ({0}) è stata creata",
+ "title": "La creazione è stata completata"
+ }
+ },
+ "Delete": {
+ "Failed": {
+ "description": "Si è verificato un errore durante l'eliminazione della posizione ({0})",
+ "title": "Non è stato possibile completare l'eliminazione"
+ },
+ "InProgress": {
+ "description": "Eliminazione della posizione ({0})",
+ "title": "Eliminazione in corso"
+ },
+ "Success": {
+ "description": "La posizione ({0}) è stata eliminata",
+ "title": "L'eliminazione è stata completata"
+ }
+ },
+ "Update": {
+ "Failed": {
+ "description": "Si è verificato un errore durante l'aggiornamento della posizione ({0})",
+ "title": "Non è stato possibile completare l'aggiornamento"
+ },
+ "InProgress": {
+ "description": "Aggiornamento della posizione ({0})",
+ "title": "È in corso l'aggiornamento"
+ },
+ "Success": {
+ "description": "La posizione ({0}) è stata aggiornata",
+ "title": "L'aggiornamento è stato completato"
+ }
+ }
+ },
+ "PrivateLinks": {
+ "grid": "Elenco di collegamenti privati"
+ },
+ "Trusted": {
+ "title": "Tipo attendibile",
+ "trusted": "Attendibile"
+ },
+ "Type": {
+ "all": "Tutti i tipi",
+ "countries": "Paesi",
+ "ipRanges": "Intervalli IP",
+ "privateLinks": "Collegamenti privati",
+ "title": "Tipo di posizione"
+ },
+ "iPRangeInvalidError": "Il valore deve essere un intervallo IPv4 o IPv6 valido.",
+ "iPRangeLinkOrSiteLocalError": "La rete IP è stata rilevata come indirizzo locale rispetto al collegamento o indirizzo locale rispetto al sito.",
+ "iPRangeOctetError": "La rete IP non deve iniziare con 0 o 255.",
+ "iPRangePrefixError": "Il prefisso di rete IP deve essere compreso tra /{0} e /{1}.",
+ "iPRangePrivateError": "La rete IP è stata rilevata come indirizzo privato."
+ },
+ "NamedNetwork": {
+ "List": {
+ "gridAria": "Elenco di località denominate"
+ }
+ },
+ "Policies": {
+ "Grid": {
+ "aria": "Elenco dei criteri di accesso condizionale"
+ },
+ "countText": "Sono stati trovati {0} su {1} criteri",
+ "countTextSingular": "È stato trovato {0} criterio su 1",
+ "search": "Cerca criteri"
+ },
+ "Policy": {
+ "Condition": {
+ "ServicePrincipalRisk": {
+ "description": "Consente di configurare i livelli di rischio entità servizio necessari per l'applicazione dei criteri",
+ "infoBalloonContent": "Consente di configurare il rischio entità servizio per applicare i criteri ai livelli di rischio selezionati",
+ "title": "Rischio entità servizio (anteprima)"
+ }
+ }
+ },
+ "PolicyControlAuthStrength": {
+ "MultiFactorAuthentication": {
+ "description": "Combinazioni di metodi che soddisfano l'autenticazione avanzata, ad esempio Password e SMS",
+ "displayName": "Autenticazione a più fattori (MFA)"
+ },
+ "Passwordless": {
+ "description": "Metodi senza password che soddisfano l'autenticazione avanzata, come Microsoft Authenticator ",
+ "displayName": "MFA senza password"
+ },
+ "PhishingResistant": {
+ "description": "Metodi senza password anti-phishing-per l'autenticazione più avanzata, ad esempio chiave di sicurezza FIDO2",
+ "displayName": "MFA anti-phishing"
+ }
+ },
+ "PolicyControlFedAuthMethod": {
+ "ariaLabel": "Altre informazioni su come richiedere metodi di autenticazione soddisfatti dai provider di federazione.",
+ "certificate": "Autenticazione del certificato",
+ "infoBubble": "Specificare il metodo di autenticazione richiesto, che dovrà essere soddisfatto dal provider di servizi di federazione, ad esempio AD FS.",
+ "multifactor": "Autenticazione a più fattori",
+ "require": "Richiedi un metodo di autenticazione federato (anteprima)",
+ "whatIfFormat": "{0} - {1}"
+ },
+ "PolicyState": {
+ "off": "Disattivato",
+ "on": "Attivato",
+ "reportOnly": "Solo report"
+ },
+ "PolicyTemplates": {
+ "Devices": {
+ "description": "Selezionare la categoria del modello di criteri Dispositivi per avere visibilità sui dispositivi che accedono alla rete. Verificare la conformità e lo stato di integrità prima di concedere l'accesso.",
+ "name": "Dispositivi"
+ },
+ "Identities": {
+ "description": "Selezionare la categoria del modello di criteri Identità per verificare e proteggere ogni identità con autenticazione avanzata in tutto l'ambiente digitale.",
+ "name": "Identità"
+ },
+ "Summary": {
+ "CloudApps": {
+ "allCloudApps": "Tutte le app",
+ "office365": "Office 365",
+ "registerSecurityInfo": "Registra le informazioni di sicurezza"
+ },
+ "Conditions": {
+ "androidAndIOS": "Piattaforma del dispositivo: Android e iOS",
+ "anyDevice": "Qualsiasi dispositivo ad eccezione di Android, iOS, Windows e Mac",
+ "anyDeviceStateExceptHybrid": "Qualsiasi stato del dispositivo eccetto conforme e aggiunto ad Azure AD ibrido",
+ "anyLocation": "Qualsiasi percorso tranne attendibile",
+ "browserMobileDesktop": "App client: browser, app per dispositivi mobili e client desktop",
+ "exchangeActiveSync": "App client: Exchange Active Sync, altri client",
+ "windowsAndMac": "Piattaforma del dispositivo: Windows e Mac"
+ },
+ "Devices": {
+ "anyDevice": "Qualsiasi dispositivo"
+ },
+ "Grant": {
+ "appProtectionPolicy": "Richiedi criterio di protezione delle app",
+ "approvedClientApp": "Richiedi app client approvata",
+ "blockAccess": "Blocca accesso",
+ "mfa": "Richiedi autenticazione a più fattori",
+ "passwordChange": "Richiedi la modifica della password",
+ "requireCompliantDevice": "Richiedi che i dispositivi siano contrassegnati come conformi",
+ "requireHybridAzureADDevice": "Richiedi dispositivo aggiunto ad Azure AD ibrido"
+ },
+ "Session": {
+ "appEnforcedRestrictions": "Usa restrizioni imposte dalle app",
+ "signInFrequency": "Frequenza di accesso e sessione del browser mai permanente"
+ },
+ "UsersAndGroups": {
+ "allUsers": "Tutti gli utenti",
+ "directoryRoles": "Ruoli della directory tranne l'amministratore corrente",
+ "globalAdmin": "Amministratore globale",
+ "noGuestAndAdmins": "Tutti gli utenti tranne guest ed esterno, amministratori globali, amministratore corrente"
+ },
+ "azureManagement": "Gestione di Azure",
+ "deviceFilters": "Filtri per dispositivi",
+ "devicePlatforms": "Piattaforme per dispositivi"
+ },
+ "TemplateId": {
+ "AppEnforcedRestrictions": {
+ "description": "Impedire o limitare l'accesso a SharePoint, OneDrive e al contenuto di Exchange da dispositivi non gestiti.",
+ "name": "CA014: utilizza le restrizioni imposte dall'applicazione per i dispositivi non gestiti",
+ "title": "Utilizza le restrizioni imposte dall'applicazione per i dispositivi non gestiti"
+ },
+ "ApprovedClientApps": {
+ "description": "Per evitare la perdita di dati, le organizzazioni possono limitare l'accesso alle app client con autenticazione moderna approvate tramite la Protezione app di Intune.",
+ "name": "CA012: richiedi app client approvate e protezione app",
+ "title": "Richiedi app client approvate e protezione delle app"
+ },
+ "BlockAccessOnUnknowns": {
+ "description": "L'accesso degli utenti alle risorse aziendali verrà bloccato quando il tipo di dispositivo è sconosciuto o non supportato.",
+ "name": "CA010: blocca l'accesso per la piattaforma del dispositivo sconosciuta o non supportata",
+ "title": "Blocca l'accesso per la piattaforma del dispositivo sconosciuta o non supportata"
+ },
+ "BlockLegacyAuth": {
+ "description": "Bloccare gli endpoint di autenticazione legacy che possono essere usati per ignorare l'autenticazione a più fattori. ",
+ "name": "CA003: blocca l'autenticazione legacy",
+ "title": "Blocca autenticazione legacy"
+ },
+ "NoPersistentBrowserSession": {
+ "description": "Proteggere l'accesso utente su dispositivi non gestiti impedendo alle sessioni del browser di restare connesse dopo la chiusura del browser e impostando una frequenza di accesso su 1 ora.",
+ "name": "CA011: nessuna sessione del browser permanente",
+ "title": "Nessuna sessione del browser persistente"
+ },
+ "RequireCompliantOrHybridADAdmins": {
+ "description": "Richiedere agli amministratori con privilegi di poter accedere alle risorse solo usando un dispositivo conforme o aggiunto ad Azure AD ibrido aggiunto.",
+ "name": "CA009: richiedi un dispositivo conforme o aggiunto ad Azure AD ibrido per gli amministratori",
+ "title": "Richiedi un dispositivo conforme o aggiunto ad Azure AD ibrido per gli amministratori"
+ },
+ "RequireCompliantOrHybridADAllUsers": {
+ "description": "Proteggere l'accesso alle risorse aziendali richiedendo agli utenti di usare un dispositivo gestito o eseguire l'autenticazione a più fattori (solo macOS o Windows).",
+ "name": "CA013: richiedi un dispositivo conforme o aggiunto ad Azure AD ibrido o l'autenticazione a più fattori per tutti gli utenti",
+ "title": "Richiedi un dispositivo conforme o aggiunto ad Azure AD ibrido o l'autenticazione a più fattori per tutti gli utenti"
+ },
+ "RequireMFAAllUsers": {
+ "description": "Richiedere l'autenticazione a più fattori per tutti gli account utente per ridurre il rischio di compromissione.",
+ "name": "CA004: richiedi l'autenticazione a più fattori per tutti gli utenti",
+ "title": "Richiedi l'autenticazione a più fattori per tutti gli utenti"
+ },
+ "RequireMFAForAdmins": {
+ "description": "Richiedere l'autenticazione a più fattori per gli account amministrativi con privilegi per ridurre il rischio di compromissione. Questi criteri verranno destinati agli stessi ruoli come impostazione predefinita per la sicurezza.",
+ "name": "CA001: richiedi l'autenticazione a più fattori per gli amministratori",
+ "title": "Richiedere l'autenticazione a più fattori per gli amministratori"
+ },
+ "RequireMFAForAzureManagement": {
+ "description": "Richiede l'autenticazione a più fattori per proteggere l'accesso privilegiato alle risorse di Azure.",
+ "name": "CA006: richiedi l'autenticazione a più fattori per la gestione di Azure",
+ "title": "Richiedi l'autenticazione a più fattori per la gestione di Azure"
+ },
+ "RequireMFAForGuestAccess": {
+ "description": "Richiedi agli utenti guest di eseguire l'autenticazione a più fattori quando accedono alle risorse aziendali.",
+ "name": "CA005: richiedi l'autenticazione a più fattori per l'accesso guest",
+ "title": "Richiedi l'autenticazione a più fattori per l'accesso guest"
+ },
+ "RequireMFAForRiskySignIn": {
+ "description": "Richiedere l'autenticazione a più fattori se il rischio di accesso viene identificato come medio o elevato. (Richiede una licenza Azure AD Premium 2)",
+ "name": "CA007: richiedi l'autenticazione a più fattori per gli accessi a rischio",
+ "title": "Richiedi l'autenticazione a più fattori per gli accessi a rischio"
+ },
+ "RequirePasswordChangeForHighRiskUsers": {
+ "description": "Richiedere all'utente di modificare la password se il rischio utente viene identificato come elevato. (Richiede una licenza Azure AD Premium 2)",
+ "name": "CA008: richiedi la modifica della password per gli utenti ad alto rischio",
+ "title": "Richiedi la modifica della password per gli utenti ad alto rischio"
+ },
+ "RequireSecurityInfo": {
+ "description": "Proteggere il momento e la modalità di registrazione degli utenti per l'autenticazione a più fattori di Azure AD e la password self-service. ",
+ "name": "CA002: protezione della registrazione delle informazioni di sicurezza",
+ "title": "Protezione della registrazione delle informazioni di sicurezza"
+ }
+ },
+ "TemplateState": {
+ "BlockAccessOnUnknowns": {
+ "title": "L'abilitazione di questo criterio impedirà l'accesso da un tipo di dispositivo sconosciuto. Provare a usare la modalità solo report per iniziare fino a quando non si sarà verificato che ciò non avrà alcun impatto sugli utenti."
+ },
+ "BlockLegacyAuth": {
+ "description": "Provare a usare la modalità solo report per iniziare fino a quando non si sarà verificato che ciò non avrà alcun impatto sugli utenti.",
+ "title": "L'abilitazione di questo criterio impedirà l'autenticazione legacy per tutti gli utenti."
+ },
+ "RequireCompliantOrHybridADAdmins": {
+ "Description": {
+ "on": "Provare a usare la modalità solo report per iniziare fino a quando non si sarà verificato che ciò non avrà alcun impatto sugli utenti con privilegi.",
+ "reportOnly": "I criteri in modalità solo report che richiedono dispositivi conformi possono richiedere agli utenti su Mac, iOS e Android di selezionare un certificato del dispositivo durante la valutazione dei criteri, anche se la conformità del dispositivo non viene applicata. Queste richieste possono ripetersi fino a quando il dispositivo non viene reso conforme."
+ },
+ "Title": {
+ "on": "L'abilitazione di questo criterio impedirà l'accesso agli utenti con privilegi a meno che non venga usato un dispositivo gestito, ad esempio conforme o aggiunto a Azure AD ibrido. Verificare di aver configurato i criteri di conformità o di abilitare la configurazione di Azure AD ibrido prima dell'abilitazione.",
+ "reportOnly": "Verificare di aver configurato i criteri di conformità o di abilitare la configurazione di Azure AD ibrido prima dell'abilitazione. "
+ }
+ },
+ "RequireCompliantOrHybridADAllUsers": {
+ "Description": {
+ "on": "Questo criterio influirà su tutti gli utenti tranne sull'amministratore attualmente connesso. Provare a usare la modalità solo report per iniziare fino a quando non si conferma che non avrà effetto sugli utenti."
+ },
+ "Title": {
+ "on": "Non bloccare l'output. Verificare che il dispositivo sia conforme, aggiunto ad Azure AD ibrido o che sia stata configurata l'autenticazione a più fattori. ",
+ "reportOnly": "I criteri in modalità solo report che richiedono dispositivi conformi possono richiedere agli utenti su Mac, iOS e Android di selezionare un certificato del dispositivo durante la valutazione dei criteri, anche se la conformità del dispositivo non viene applicata. Queste richieste possono ripetersi fino a quando il dispositivo non viene reso conforme."
+ }
+ },
+ "RequireMfa": {
+ "description": "Se si usano account di accesso di emergenza o Azure AD Connect per sincronizzare gli oggetti locali, potrebbe essere necessario escludere questi account dal criterio dopo la creazione."
+ },
+ "RequireMfaAdmins": {
+ "description": "Si noti che l'account amministratore corrente verrà escluso automaticamente, ma tutti gli altri verranno protetti durante la creazione dei criteri. Per iniziare, provare a usare la modalità solo report.",
+ "title": "Prestare attenzione a non bloccare l'accesso. Questo criterio influisce sul portale di Azure."
+ },
+ "RequireMfaAllUsers": {
+ "description": "Provare a usare la modalità solo report per iniziare fino a quando questa modifica non sarà stata pianificata e comunicata a tutti gli utenti.",
+ "title": "L'abilitazione di questo criterio consentirà di applicare l'autenticazione a più fattori per tutti gli utenti."
+ },
+ "RequireSecurityInfo": {
+ "description": "Assicurarsi di controllare la configurazione per proteggere questi account in base alle esigenze aziendali.",
+ "title": "Gli utenti e i ruoli seguenti sono esclusi da questo criterio, utenti guest e utenti esterni, amministratori globali, amministratore corrente"
+ }
+ },
+ "basics": "Informazioni di base",
+ "clientApps": "App client",
+ "cloudApps": "App cloud",
+ "cloudAppsOrActions": "Applicazioni cloud o azioni ",
+ "conditions": "Condizioni ",
+ "createNewPolicy": "Crea nuovi criteri dai modelli (anteprima)",
+ "createPolicy": "Crea criterio",
+ "currentUser": "Utente corrente",
+ "customizeBuild": "Personalizza la build",
+ "customizeTemplate": "Gli elenchi di modelli vengono personalizzati in base al tipo di criteri da creare",
+ "excludedDevicePlatform": "Piattaforme per dispositivi escluse",
+ "excludedDirectoryRoles": "Ruoli della directory esclusi",
+ "excludedLocation": "Ruoli della directory esclusi",
+ "excludedUsers": "Utenti esclusi",
+ "grantControl": "Concedi controllo ",
+ "includeFilteredDevice": "Includi i dispositivi filtrati nel criterio",
+ "includedDevicePlatform": "Piattaforme per dispositivi incluse",
+ "includedDirectoryRoles": "Ruoli della directory inclusi",
+ "includedLocation": "Posizione inclusa",
+ "includedUsers": "Utenti inclusi",
+ "legacyAuthenticationClients": "Client con autenticazione legacy",
+ "namePolicy": "Denomina il criterio",
+ "next": "Avanti",
+ "policyName": "Nome criteri",
+ "policyState": "Stato dei criteri",
+ "policySummary": "Riepilogo criteri",
+ "policyTemplate": "Modello di criteri",
+ "previous": "Indietro",
+ "reviewAndCreate": "Rivedi e crea",
+ "riskLevels": "Livelli di rischio",
+ "selectATemplate": "Seleziona un modello",
+ "selectTemplate": "Seleziona modello",
+ "selectTemplateCategory": "Seleziona categoria modello",
+ "selectTemplateRecommendation": "Si consigliano i modelli seguenti in base alla risposta dell'utente",
+ "sessionControl": "Controllo della sessione ",
+ "signInFrequency": "Frequenza di accesso",
+ "signInRisk": "Rischio di accesso",
+ "template": "Modello ",
+ "templateCategory": "Categoria modello",
+ "userRisk": "Rischio utente",
+ "usersAndGroups": "Utenti e gruppi ",
+ "viewPolicySummary": "Visualizza riepilogo criteri "
+ },
+ "SSM": {
+ "MemberSelector": {
+ "description": "Utenti e gruppi"
+ },
+ "Notification": {
+ "Migration": {
+ "error": "Non è stato possibile eseguire la migrazione delle impostazioni di valutazione continua dell'accesso ai criteri di accesso condizionale",
+ "inProgress": "Migrazione in corso delle impostazioni di valutazione continua dell'accesso",
+ "success": "Migrazione delle impostazioni di valutazione continua dell'accesso ai criteri di accesso condizionale riuscita",
+ "successDescription": "Passare ai criteri di accesso condizionale per visualizzare le impostazioni di cui è stata eseguita la migrazione nei criteri appena creati denominati \"Criteri di accesso condizionale creati da impostazioni CAE\"."
+ },
+ "error": "Non è stato possibile aggiornare le impostazioni di Valutazione continua dell'accesso",
+ "inProgress": "Aggiornamento delle impostazioni di Valutazione continua dell'accesso",
+ "success": "Le impostazioni di Valutazione continua dell'accesso sono state aggiornate"
+ },
+ "PreviewOptions": {
+ "disable": "Disabilita l'anteprima",
+ "enable": "Abilita l'anteprima"
+ },
+ "StrictLocationEnforcement": {
+ "infoContent1": "È possibile che Azure AD e il provider di risorse visualizzino IP diversi per lo stesso dispositivo client a causa di una partizione di rete o di una mancata corrispondenza tra IPv4/IPv6. La modalità Imposizione rigorosa della posizione applicherà i criteri di accesso condizionale in base agli indirizzi IP visualizzati da Azure AD e dal provider di risorse.",
+ "infoContent2": "Per garantire il livello massimo di sicurezza, è consigliabile includere tutti gli IP che possono essere visualizzati da Azure AD e dal provider di risorse nel criterio Località denominata e attivare la modalità \"Imposizione rigorosa della posizione\".",
+ "label": "Imposizione rigorosa della posizione",
+ "title": "Modalità di imposizione aggiuntive"
+ },
+ "bladeTitle": "Valutazione continua dell'accesso",
+ "description": "Quando l'accesso di un utente viene rimosso o un indirizzo IP client viene modificato, la funzionalità Valutazione continua dell'accesso blocca automaticamente l'accesso alle risorse e alle applicazioni in tempo quasi reale. ",
+ "migrateLabel": "Esegui la migrazione",
+ "migrationError": "La migrazione non è riuscita a causa del seguente errore: {0}",
+ "migrationInfo": "L'impostazione CAE è stata spostata nell'esperienza utente di accesso condizionale. Eseguire la migrazione con il pulsante \"Migrazione\" precedente e configurare l'impostazione con i criteri di accesso condizionale in futuro. Fare clic qui per altre informazioni.",
+ "noLicenseMessage": "È possibile gestire le impostazioni di gestione intelligente delle sessioni con Azure AD Premium",
+ "optionsPickerTitle": "Abilita/Disabilita Valutazione continua dell'accesso",
+ "upsellInfo": "Non è più possibile modificare le impostazioni in questa pagina e le impostazioni presenti qui verranno ignorate. Sarà rispettata l'impostazione precedente. In futuro, sarà possibile configurare le impostazioni di Valutazione continua dell'accesso in Accesso condizionale. Fare clic qui per altre informazioni."
+ },
+ "SelectOrganizations": {
+ "Blade": {
+ "Lower": {
+ "gridAria": "Elenco di organizzazioni selezionate"
+ },
+ "Upper": {
+ "gridAria": "Elenco di organizzazioni disponibili"
+ },
+ "description": "Aggiungere un'organizzazione di Azure AD specificando uno dei relativi nomi di dominio.",
+ "notFoundResult": "Non trovato",
+ "searchBoxPlaceholder": "ID tenant o nome di dominio",
+ "subTitle": "Organizzazione di Azure AD"
+ },
+ "Selector": {
+ "AdditionalDetails": {
+ "aria": "ID organizzazione: {0}"
+ },
+ "DisplayText": {
+ "multiple": "{0} organizzazioni di Azure AD selezionate",
+ "single": "1 organizzazione di Azure AD selezionata"
+ },
+ "gridAria": "Elenco di organizzazioni selezionate"
+ }
+ },
+ "SessionLifetime": {
+ "PersistentBrowser": {
+ "Error": {
+ "notAllApps": "I criteri per le sessioni del browser persistenti funzionano correttamente solo se è selezionata l'opzione \"Tutte le app cloud\". Aggiornare la selezione delle app cloud."
+ },
+ "Option": {
+ "always": "Sempre persistente",
+ "help": "Una sessione del browser persistente consente agli utenti di rimanere connessi dopo la chiusura e la riapertura della finestra del browser.
\n\n- Questa impostazione funziona correttamente quando è selezionata l'opzione \"Tutte le app cloud\"
\n- Questo non influisce sulle durate dei token o sull'impostazione della frequenza di accesso.
\n- Questa impostazione eseguirà l'override del criterio \"Mostra l'opzione per rimanere connesso\" nelle Informazioni personalizzate distintive dell'azienda.
\n- L'opzione \"Mai persistente\" eseguirà l'override delle eventuali attestazioni di accesso SSO persistenti passate dai servizi di autenticazione federata.
\n- L'impostazione \"Mai persistente\" bloccherà l'accesso SSO nei dispositivi mobili per le applicazioni e tra le applicazioni e il browser del dispositivo mobile dell'utente.
\n",
+ "label": "Sessione del browser persistente",
+ "never": "Mai persistente"
+ },
+ "Warning": {
+ "allApps": "La sessione del browser persistente funziona correttamente solo quando è selezionata l'opzione Tutte le app cloud. Modificare la selezione delle app cloud. Fare clic qui per altre informazioni."
+ }
+ },
+ "SignInFrequency": {
+ "Aria": {
+ "units": "Ore o giorni",
+ "value": "Frequenza"
+ },
+ "Option": {
+ "Day": {
+ "plural": "{0} giorni",
+ "singular": "1 giorno"
+ },
+ "Hour": {
+ "plural": "{0} ore",
+ "singular": "1 ora"
+ },
+ "daysOption": "Giorni",
+ "everytime": "Ogni volta",
+ "help": "Periodo di tempo prima che all'utente venga richiesto di eseguire nuovamente l'accesso quando tenta di accedere a una risorsa. L'impostazione predefinita è una finestra mobile di 90 giorni, ovvero agli utenti verrà chiesto di eseguire di nuovo l'autenticazione al primo tentativo di accedere a una risorsa dopo un periodo di inattività nel proprio computer di 90 o più giorni.",
+ "hoursOption": "Ore",
+ "label": "Frequenza di accesso",
+ "placeholder": "Selezionare le unità"
+ }
+ },
+ "mainOption": "Modifica durata sessione",
+ "mainOptionHelp": "Configurare la frequenza delle richieste ricevute dagli utenti e indicare se le sessioni del browser saranno persistenti o meno. Le applicazioni che non supportano i protocolli di autenticazione moderna potrebbero non rispettare tali criteri. In questi casi, contattare lo sviluppatore applicazione."
+ },
+ "SigninRisk": {
+ "LearnMore": {
+ "message": "È possibile controllare l'accesso utente per rispondere a livelli di rischio di accesso specifici."
+ }
+ },
+ "SingleSelectorActive": {
+ "failed": "Non è possibile caricare questi dati.",
+ "reattempt": "Caricamento dati. Tentativo {0} di {1}."
+ },
+ "TimeCondition": {
+ "Errors": {
+ "both": "L'intervallo di tempo di \"inclusione\" o \"esclusione\" non è valido.",
+ "daysOfWeek": "{0} Assicurarsi di specificare almeno un giorno della settimana.",
+ "endBeforeStart": "{0} Assicurarsi che la data/ora di inizio sia precedente alla data/ora di fine.",
+ "exclude": "L'intervallo di tempo di \"esclusione\" non è valido.",
+ "generic": "{0} Assicurarsi che siano impostati sia i giorni della settimana sia il fuso orario. Se l'opzione \"Tutto il giorno\" non è selezionata, è necessario impostare anche l'ora di inizio e l'ora di fine.",
+ "include": "L'intervallo di tempo di \"inclusione\" non è valido.",
+ "timeMissing": "{0} Assicurarsi di specificare l'ora di inizio e di fine.",
+ "timeZone": "{0} Assicurarsi di specificare un fuso orario.",
+ "timesAndZone": "{0} Assicurarsi di configurare l'ora di inizio, l'ora di fine e il fuso orario."
+ }
+ },
+ "UserActions": {
+ "Included": {
+ "none": "Nessuna app cloud o azione selezionata",
+ "plural": "{0} azioni utente incluse",
+ "singular": "1 azione utente inclusa"
+ },
+ "accessRequirement1": "Livello 1",
+ "accessRequirement2": "Livello 2",
+ "accessRequirement3": "Livello 3",
+ "accessRequirementsLabel": "Accesso ai dati protetti dell'app",
+ "appsActionsAuthTitle": "App cloud, azioni o contesto di autenticazione",
+ "appsOrActionsSelectorInfoBallonText": "Applicazioni a cui si è eseguito l'accesso o azioni utente",
+ "appsOrActionsTitle": "Applicazioni cloud o azioni",
+ "label": "Azioni utente",
+ "mainOptionsLabel": "Selezionare a cosa si applicano i criteri",
+ "registerOrJoinDevices": "Registra o esegui il join dei dispositivi",
+ "registerSecurityInfo": "Registra le informazioni di sicurezza",
+ "selectionInfo": "Selezionare l'azione a cui verranno applicati i criteri",
+ "whatIf": "Azione utente inclusa"
+ },
+ "UserSelectionBlade": {
+ "DirectoryRoles": {
+ "ariaLabel": "Scegliere i ruoli della directory"
+ },
+ "Excluded": {
+ "gridAria": "Elenco di utenti esclusi"
+ },
+ "Included": {
+ "gridAria": "Elenco di utenti inclusi"
+ },
+ "Validation": {
+ "customRoleIncluded": "\"Ruoli della directory\" include almeno un ruolo personalizzato",
+ "customRoleSelected": "È stato selezionato almeno un ruolo personalizzato",
+ "failed": "È necessario configurare \"{0}\"",
+ "roles": "Selezionare almeno un ruolo",
+ "usersGroups": "Selezionare almeno un utente o gruppo"
+ },
+ "learnMore": "Controllare l'accesso in base all'utente a cui verranno applicati i criteri, ad esempio utenti e gruppi, identità del carico di lavoro, ruoli della directory o guest esterni."
+ },
+ "ValidationResult": {
+ "blockEveryonePolicy": "La configurazione dei criteri non è supportata. Esaminare le assegnazioni e i controlli.",
+ "invalidApplicationCondition": "Le applicazioni cloud selezionate non sono valide",
+ "invalidClientTypesCondition": "Le app client selezionate non sono valide",
+ "invalidConditions": "Le assegnazioni non sono selezionate",
+ "invalidControls": "I controlli selezionati non sono validi",
+ "invalidDevicePlatformsCondition": "Le piattaforme del dispositivo selezionate non sono valide",
+ "invalidDevicesCondition": "La configurazione del dispositivo non è valida. È probabile che la configurazione di \"{0}\" non sia valida.",
+ "invalidGrantControlPolicy": "Controllo concessione non valido",
+ "invalidLocationsCondition": "Le località selezionate non sono valide",
+ "invalidPolicy": "Le assegnazioni non sono selezionate",
+ "invalidSessionControlPolicy": "Controllo sessione non valido",
+ "invalidSignInRisksCondition": "Il rischio di accesso selezionato non è valido",
+ "invalidUserRisksCondition": "Il rischio utente selezionato non è valido",
+ "invalidUsersCondition": "Gli utenti selezionati non sono validi",
+ "mamPolicyShouldOnlyTargetAndroidOrIosPlatforms": "I criteri MAM possono essere applicati solo alle piattaforme client Android o iOS.",
+ "notSupportedCombination": "La configurazione dei criteri non è supportata. Altre informazioni sui criteri supportati.",
+ "pending": "Convalida del criterio",
+ "requireComplianceEveryonePolicy": "La configurazione dei criteri richiederà la conformità dei dispositivi per tutti gli utenti. Verificare le assegnazioni selezionate.",
+ "success": "Criterio valido"
+ },
+ "VpnCert": {
+ "Grid": {
+ "aria": "Elenco di certificati della VPN"
+ }
+ },
+ "WarningsInfo": {
+ "Controls": {
+ "compliantDeviceEnabled": "Prestare attenzione a non bloccare l'accesso. Assicurarsi che il dispositivo sia conforme.",
+ "domainJoinedDeviceEnabled": "Prestare attenzione a non bloccare l'accesso. Assicurarsi che il dispositivo sia aggiunto ad Azure AD ibrido.",
+ "exchangeDisabled": "Exchange ActiveSync supporta solo i controlli del dispositivo conforme e dell'app client approvata. Fare clic per altre informazioni.",
+ "exchangeDisabled2": "Exchange ActiveSync supporta solo i controlli \"Dispositivo conforme\", \"App client approvata\" e \"App client conforme\". Fare clic per altre informazioni.",
+ "notAvailableForSP": "Alcuni controlli non sono disponibili a causa della selezione di \"{0}\" nell'assegnazione dei criteri",
+ "requireAuthOrMfa": "\"{0}\" non può essere usato con \"{1}\"",
+ "requireMfa": "Provare a testare la nuova anteprima pubblica \"{0}\"",
+ "requirePasswordChangeEnabled": "È possibile usare \"Richiedi modifica password\" solo quando i criteri vengono assegnati a \"Tutte le app cloud\""
+ },
+ "Policies": {
+ "Linux": {
+ "devicePlatformsReportOnlyPolicy": "I criteri in modalità solo report che richiedono dispositivi conformi potrebbero richiedere agli utenti in macOS, iOS, Android e Linux di selezionare un certificato del dispositivo.",
+ "excludeDevicePlatforms": "È possibile escludere le piattaforme di dispositivi macOS, iOS, Android e Linux da questo criterio.",
+ "proceedAnywayDevicePlatforms": "Continuare con la configurazione selezionata. È possibile che gli utenti di macOS, iOS, Android e Linux ricevano prompt quando viene verificata la conformità del dispositivo."
+ },
+ "blockCurrentUserPolicy": "Prestare attenzione a non bloccare l'accesso. È consigliabile applicare un criterio prima di tutto a un set ridotto di utenti per verificare che il comportamento corrisponda a quello previsto. È inoltre consigliabile escludere almeno un amministratore da questo criterio, in modo da assicurare che sia comunque possibile accedere e aggiornare un criterio nel caso in cui fosse necessaria una modifica. Verificare le app e gli utenti interessati.",
+ "devicePlatformsReportOnlyPolicy": "I criteri in modalità solo report che richiedono dispositivi conformi potrebbero richiedere agli utenti in macOS, iOS e Android di selezionare un certificato del dispositivo.",
+ "excludeCurrentUserSelection": "Escludere l'utente corrente, {0}, dal criterio.",
+ "excludeDevicePlatforms": "È possibile escludere le piattaforme di dispositivi macOS, iOS e Android da questo criterio.",
+ "proceedAnywayDevicePlatforms": "Continuare con la configurazione selezionata. È possibile che gli utenti in macOS, iOS e Android ricevano prompt quando viene verificata la conformità del dispositivo.",
+ "proceedAnywaySelection": "Sono consapevole del fatto che il mio account sarà interessato dal criterio. Continua."
+ },
+ "ServicePrincipals": {
+ "blockExchange": "La selezione di Office 365 Exchange Online influirà anche su app quali OneDrive e Teams.",
+ "blockPortal": "Prestare attenzione a non bloccare l'accesso. Questi criteri influiscono sul portale di Azure. Prima di continuare, assicurarsi di poter rientrare nel portale.",
+ "blockPortalWithSession": "Prestare attenzione a non bloccare l'accesso. Questi criteri influiscono sul portale di Azure. Prima di continuare, assicurarsi di poter rientrare nel portale.
Ignorare questo avviso se è in corso la configurazione di criteri della sessione browser persistente che funzionano correttamente solo se è selezionata l'opzione \"Tutte le app cloud\".",
+ "blockSharePoint": "La selezione di SharePoint Online influirà anche su app quali Microsoft Teams, Planner, Delve, MyAnalytics e Newsfeed.",
+ "blockSkype": "La selezione di Skype for Business Online influirà anche su Microsoft Teams.",
+ "includeOrExclude": "È possibile configurare il filtro dell'app per '{0}' o '{1}', ma non per entrambi.",
+ "selectAppsNAForSP": "Non è possibile selezionare singole app cloud a causa della selezione di '{0}' nell'assegnazione dei criteri",
+ "teamsBlocked": "Microsoft Teams sarà interessato anche quando app come SharePoint Online ed Exchange Online sono incluse nei criteri."
+ },
+ "Users": {
+ "blockAllUsers": "Prestare attenzione a non bloccare l'accesso. Questo criterio interesserà tutti gli utenti. È consigliabile applicare un criterio prima di tutto a un set ridotto di utenti per verificare che il comportamento corrisponda a quello previsto."
+ }
+ },
+ "WhatIf": {
+ "Device": {
+ "AttributesGrid": {
+ "aria": "Elenco degli attributi sul dispositivo utilizzato durante l'accesso.",
+ "infoBalloon": "Elenco degli attributi sul dispositivo utilizzato durante l'accesso."
+ }
+ }
+ },
+ "advancedTabText": "Avanzate",
+ "allCloudAppsErrorBox": "È necessario selezionare \"Tutte le app cloud\" quando è selezionata la concessione \"Richiedi modifica password\"",
+ "allCloudAppsReauth": "\"Tutte le app cloud\" deve essere selezionato quando sono selezionati il controllo della sessione \"Frequenza di accesso ogni volta\" e la condizione \"Rischio di accesso\"",
+ "allCloudOrSpecificApps": "Il controllo della sessione di \"Frequenza di accesso ogni volta\" richiede la selezione di \"Tutte le app cloud\" o di app supportarte specifiche",
+ "allDayCheckboxLabel": "Tutto il giorno",
+ "allDevicePlatforms": "Qualsiasi dispositivo",
+ "allGuestUserInfoContent": "Include i guest di Azure AD B2B ma non i guest di SharePoint B2B",
+ "allGuestUserLabel": "Tutti gli utenti guest ed esterni",
+ "allRiskLevelsOption": "Tutti i livelli di rischio",
+ "allTrustedLocationLabel": "Tutte le posizioni attendibili",
+ "allUserGroupSetSelectorLabel": "Tutti gli utenti e i gruppi selezionati",
+ "allUsersReauth": "Il controllo sessione di \"Frequenza di accesso ogni volta\" richiede la selezione del controllo sessione \"Tutti gli utenti\"",
+ "allUsersString": "Tutti gli utenti",
+ "and": "{0} AND {1} ",
+ "andWithGrouping": "({0}) E {1} ",
+ "androidDisplayName": "Android",
+ "anyCloudAppSelection": "Qualsiasi app cloud",
+ "appContextOptionInfoContent": "Tag di autenticazione richiesto",
+ "appContextOptionLabel": "Tag di autenticazione richiesto (anteprima)",
+ "appContextUriPlaceholder": "Ad esempio: uri:contoso.com:level3",
+ "appEnforceInfoBubble": "Le restrizioni imposte dalle app potrebbero richiedere configurazioni amministrative aggiuntive nelle app cloud. Le restrizioni avranno effetto solo per le nuove sessioni.",
+ "appNotSetSeletorLabel": "0 app cloud selezionate",
+ "applyConditionClientAppInfoBalloonContent": "Consente di configurare le app client per applicare i criteri ad app client specifiche",
+ "applyConditionDevicePlatformInfoBalloonContent": "Consente di configurare le piattaforme dei dispositivi per applicare i criteri a piattaforme specifiche",
+ "applyConditionDeviceStateInfoBalloonContent": "Consente di configurare lo stato dei dispositivi per applicare i criteri a stati dei dispositivi specifici",
+ "applyConditionLocationInfoBalloonContent": "Consente di configurare le posizioni per applicare i criteri alle posizioni attendibili/non attendibili",
+ "applyConditionSigninRiskInfoBalloonContent": "Consente di configurare il rischio di accesso per applicare i criteri ai livelli di rischio selezionati",
+ "applyConditionUserRiskInfoBalloonContent": "Configura il rischio utente per applicare i criteri ai livelli di rischio selezionati",
+ "applyConditonLabel": "Configura",
+ "ariaLabelPolicyDisabled": "Criteri disabilitati",
+ "ariaLabelPolicyEnabled": "Criteri abilitati",
+ "ariaLabelPolicyReportOnly": "Il criterio è in modalità solo report",
+ "blockAccess": "Blocca accesso",
+ "builtInDirectoryRoleLabel": "Ruoli predefiniti della directory",
+ "casCustomControlInfo": "I criteri personalizzati devono essere configurati nel portale di Cloud App Security. Questo controllo è attivo immediatamente per le app in primo piano ed è possibile eseguirne l'onboarding automatico per qualsiasi app. Fare clic qui per ottenere informazioni su entrambi gli scenari.",
+ "casInfoBubble": "Questo controllo funziona per diverse app cloud.",
+ "casPreconfiguredControlInfo": "Questo controllo è attivo immediatamente per le app in primo piano ed è possibile eseguirne l'onboarding automatico per qualsiasi app. Fare clic qui per ottenere informazioni su entrambi gli scenari.",
+ "cert64DownloadCol": "Scarica certificato Base64",
+ "cert64Name": "VpnBase64Cert",
+ "certDownloadCol": "Scarica certificato",
+ "certDurationCol": "Scadenza",
+ "certDurationStartCol": "Valido dal",
+ "certName": "VpnCert",
+ "certainApps": "Solo determinate app sono supportate per \"Frequenza di accesso ogni volta\" se non sono selezionate le concessioni \"Richiedi l'autenticazione a più fattori\" e \"Richiedi la modifica della password\"",
+ "chooseApplicationsBladeSubtitle": "",
+ "chooseApplicationsBladeTitle": "Scegliere le applicazioni",
+ "chooseApplicationsCartSubitle": "",
+ "chooseApplicationsCartTitle": "Applicazioni scelte",
+ "chooseApplicationsEmpty": "Nessuna applicazione",
+ "chooseApplicationsNone": "Nessuno",
+ "chooseApplicationsNoneFound": "L'applicazione \"{0}\" non è stata trovata. Provare con un altro nome o ID.",
+ "chooseApplicationsPlural": "{0} e altre {1}",
+ "chooseApplicationsReAuthEverytimeInfo": "Se si cerca la propria app, alcune applicazioni non possono essere usate con il controllo di sessione \"Richiedi riautenticazione – Sempre\"",
+ "chooseApplicationsRemove": "Rimuovi",
+ "chooseApplicationsReturnedPlural": "{0} applicazioni trovate",
+ "chooseApplicationsReturnedSingular": "1 applicazione trovata",
+ "chooseApplicationsSearchBalloon": "Per cercare un'applicazione, immettere il nome o l'ID corrispondente.",
+ "chooseApplicationsSearchHint": "Cerca applicazioni...",
+ "chooseApplicationsSearchLabel": "Applicazioni",
+ "chooseApplicationsSearching": "Ricerca...",
+ "chooseApplicationsSelect": "Seleziona",
+ "chooseApplicationsSelected": "Selezionato",
+ "chooseApplicationsSingular": "{0} e 1 altra",
+ "chooseApplicationsTooMany": "Sono presenti altri risultati da visualizzare. Per filtrarli, usare la casella di ricerca.",
+ "chooseLocationCorpnetItem": "Rete aziendale",
+ "chooseLocationSelectedLocationsLabel": "Località selezionate",
+ "chooseLocationTrustedIpsItem": "Indirizzi IP attendibili MFA",
+ "chooseLocationsBladeSubtitle": "",
+ "chooseLocationsBladeTitle": "Scegliere le località",
+ "chooseLocationsCartSubitle": "",
+ "chooseLocationsCartTitle": "Località scelte",
+ "chooseLocationsEmpty": "Nessuna località",
+ "chooseLocationsExcludedSelectorTitle": "Seleziona",
+ "chooseLocationsIncludedSelectorTitle": "Seleziona",
+ "chooseLocationsNone": "Nessuno",
+ "chooseLocationsNoneFound": "L'applicazione \"{0}\" non è stata trovata. Provare con un altro nome o ID.",
+ "chooseLocationsPlural": "{0} e altre {1}",
+ "chooseLocationsRemove": "Rimuovi",
+ "chooseLocationsReturnedPlural": "{0} località trovate",
+ "chooseLocationsReturnedSingular": "1 località trovata",
+ "chooseLocationsSearchBalloon": "Per cercare una località, immettere il nome corrispondente.",
+ "chooseLocationsSearchHint": "Cerca località...",
+ "chooseLocationsSearchLabel": "Percorsi",
+ "chooseLocationsSearching": "Ricerca...",
+ "chooseLocationsSelect": "Seleziona",
+ "chooseLocationsSelected": "Selezionato",
+ "chooseLocationsSelectionBladeExcludedSelectorTitle": "Seleziona",
+ "chooseLocationsSelectionBladeIncludedSelectorTitle": "Seleziona",
+ "chooseLocationsSingular": "{0} e 1 altra",
+ "chooseLocationsTooMany": "Sono presenti altri risultati da visualizzare. Per filtrarli, usare la casella di ricerca.",
+ "claimProviderAddCommandText": "Nuovo controllo personalizzato",
+ "claimProviderAddNewBladeTitle": "Nuovo controllo personalizzato",
+ "claimProviderDeleteCommand": "Elimina",
+ "claimProviderDeleteDescription": "Eliminare '{0}'? Questa azione non può essere annullata.",
+ "claimProviderDeleteTitle": "Continuare?",
+ "claimProviderEditInfoText": "Immettere il JSON per controlli personalizzati fornito dai provider di attestazioni.",
+ "claimProviderNotificationCreateDescription": "Creazione del controllo personalizzato denominato '{0}'",
+ "claimProviderNotificationCreateFailedDescription": "La creazione del controllo personalizzato '{0}' non è riuscita. Riprovare più tardi.",
+ "claimProviderNotificationCreateFailedTitle": "Non è stato possibile creare il controllo personalizzato",
+ "claimProviderNotificationCreateSuccessDescription": "Il controllo personalizzato denominato '{0}' è stato creato",
+ "claimProviderNotificationCreateSuccessTitle": "La rete '{0}' è stata creata",
+ "claimProviderNotificationCreateTitle": "Creazione della rete '{0}'",
+ "claimProviderNotificationDeleteDescription": "Eliminazione del controllo personalizzato denominato '{0}'",
+ "claimProviderNotificationDeleteFailedDescription": "L'eliminazione del controllo personalizzato '{0}' non è riuscita. Riprovare più tardi.",
+ "claimProviderNotificationDeleteFailedTitle": "Non è stato possibile eliminare il controllo personalizzato",
+ "claimProviderNotificationDeleteSuccessDescription": "Il controllo personalizzato denominato '{0}' è stato eliminato",
+ "claimProviderNotificationDeleteSuccessTitle": "La rete '{0}' è stata eliminata",
+ "claimProviderNotificationDeleteTitle": "Eliminazione di '{0}'",
+ "claimProviderNotificationUpdateDescription": "Aggiornamento del controllo personalizzato denominato '{0}'",
+ "claimProviderNotificationUpdateFailedDescription": "L'aggiornamento del controllo personalizzato '{0}' non è riuscito. Riprovare più tardi.",
+ "claimProviderNotificationUpdateFailedTitle": "Non è stato possibile aggiornare il controllo personalizzato",
+ "claimProviderNotificationUpdateSuccessDescription": "Il controllo personalizzato denominato '{0}' è stato aggiornato",
+ "claimProviderNotificationUpdateSuccessTitle": "La rete '{0}' è stata aggiornata",
+ "claimProviderNotificationUpdateTitle": "Aggiornamento della rete '{0}'",
+ "claimProviderValidationAppIdInvalid": "Il valore \"AppId\" non è valido. Controllare e riprovare.",
+ "claimProviderValidationClientIdMissing": "Nei dati manca un valore \"ClientId\". Controllare e riprovare.",
+ "claimProviderValidationControlClaimsRequestedMissing": "In \"Control\" manca un valore \"ClaimsRequested\". Controllare e riprovare.",
+ "claimProviderValidationControlClaimsRequestedTypeMissing": "Nell'elemento \"ClaimsRequested\" manca un valore \"Type\". Controllare e riprovare.",
+ "claimProviderValidationControlIdAlreadyExists": "Il valore \"Id\" in \"Control\" esiste già. Controllare e riprovare.",
+ "claimProviderValidationControlIdMissing": "In \"Control\" manca un valore \"Id\". Controllare e riprovare.",
+ "claimProviderValidationControlIdReferencedInExistingPolicy": "Non è possibile rimuovere il valore \"Id\" da \"Control\" perché vi fanno riferimento criteri esistenti. Rimuovere prima il valore dai criteri.",
+ "claimProviderValidationControlIdTooManyControls": "La proprietà \"Control\" contiene troppi controlli. Verificare e riprovare.",
+ "claimProviderValidationControlIdValueReserved": "Il valore \"Id\" in \"Control\" è una parola chiave riservata. Usare un ID diverso.",
+ "claimProviderValidationControlNameAlreadyExists": "Il valore \"Name\" in \"Control\" esiste già. Controllare e riprovare.",
+ "claimProviderValidationControlNameMissing": "In \"Control\" manca un valore \"Name\". Controllare e riprovare.",
+ "claimProviderValidationControlsMissing": "Nei dati manca un valore \"Controls\". Controllare e riprovare.",
+ "claimProviderValidationDiscoveryUrlMissing": "Nei dati manca un valore \"DiscoveryUrl\". Controllare e riprovare.",
+ "claimProviderValidationInvalid": "I dati specificati non sono validi. Controllare e riprovare.",
+ "claimProviderValidationInvalidJsonDefinition": "Non è possibile salvare il controllo personalizzato. Esaminare il testo JSON e riprovare.",
+ "claimProviderValidationNameAlreadyExists": "Il valore \"Name\" esiste già. Controllare e riprovare.",
+ "claimProviderValidationNameMissing": "Nei dati manca un valore \"Name\". Controllare e riprovare.",
+ "claimProviderValidationUnknown": "Si è verificato un errore sconosciuto durante la convalida dei dati specificati. Controllare e riprovare.",
+ "claimProvidersNone": "Non sono presenti controlli personalizzati",
+ "claimProvidersSearchPlaceholder": "Cerca i controlli.",
+ "classicPoilcyFilterTitle": "Mostra",
+ "classicPolicyAllPlatforms": "Tutte le piattaforme",
+ "classicPolicyClientAppBrowserAndNative": "Browser, app per dispositivi mobili e client desktop",
+ "classicPolicyCloudAppTitle": "Applicazione cloud",
+ "classicPolicyControlAllow": "Consenti",
+ "classicPolicyControlBlock": "Blocca",
+ "classicPolicyControlBlockWhenNotAtWork": "Blocca l'accesso quando non al lavoro",
+ "classicPolicyControlRequireCompliantDevice": "Richiedi un dispositivo conforme",
+ "classicPolicyControlRequireDomainJoinedDevice": "Richiedi dispositivo aggiunto a un dominio",
+ "classicPolicyControlRequireMfa": "Richiedi autenticazione a più fattori",
+ "classicPolicyControlRequireMfaWhenNotAtWork": "Richiedi autenticazione a più fattori quando non al lavoro",
+ "classicPolicyDeleteCommand": "Elimina",
+ "classicPolicyDeleteFailTitle": "Non è stato possibile eliminare i criteri classici",
+ "classicPolicyDeleteInProgressTitle": "Eliminazione dei criteri classici",
+ "classicPolicyDeleteSuccessTitle": "I criteri classici sono stati eliminati",
+ "classicPolicyDetailBladeTitle": "Dettagli",
+ "classicPolicyDisableCommand": "Disabilita",
+ "classicPolicyDisableConfirmation": "Disabilitare '{0}'? Questa azione non può essere annullata.",
+ "classicPolicyDisableFailDescription": "Non è stato possibile disabilitare '{0}'",
+ "classicPolicyDisableFailTitle": "Non è stato possibile disabilitare i criteri classici",
+ "classicPolicyDisableInProgressDescription": "Disabilitazione di '{0}'",
+ "classicPolicyDisableInProgressTitle": "Disabilitazione dei criteri classici",
+ "classicPolicyDisableSuccessDescription": "La disabilitazione di '{0}' è riuscita",
+ "classicPolicyDisableSuccessTitle": "I criteri classici sono stati disabilitati",
+ "classicPolicyEasSupportedPlatforms": "Piattaforme supportate per Exchange ActiveSync",
+ "classicPolicyEasUnsupportedPlatforms": "Piattaforme non supportate per Exchange ActiveSync",
+ "classicPolicyExcludedPlatformsTitle": "Piattaforme dispositivo escluse",
+ "classicPolicyFilterAll": "Tutti i criteri",
+ "classicPolicyFilterDisabled": "Criteri disabilitati",
+ "classicPolicyFilterEnabled": "Criteri abilitati",
+ "classicPolicyIncludeExcludeMembersDescription": "Escludendo i gruppi, è possibile eseguire la migrazione a fasi dei criteri.",
+ "classicPolicyIncludeExcludeMembersTitle": "Includi/Escludi gruppi",
+ "classicPolicyIncludedPlatformsTitle": "Piattaforme dispositivo incluse",
+ "classicPolicyManualMigrationMessage": "Per questi criteri è necessario procedere alla migrazione manuale.",
+ "classicPolicyMigrateCommand": "Esegui la migrazione",
+ "classicPolicyMigrateConfirmation": "Eseguire la migrazione di '{0}'? La migrazione di questi criteri può essere eseguita solo una volta.",
+ "classicPolicyMigrateFailDescription": "Non è stato possibile eseguire la migrazione di '{0}'",
+ "classicPolicyMigrateFailTitle": "La migrazione dei criteri classici non è riuscita",
+ "classicPolicyMigrateInProgressDescription": "Migrazione di '{0}'",
+ "classicPolicyMigrateInProgressTitle": "Migrazione dei criteri classici",
+ "classicPolicyMigrateRecommendText": "Raccomandazione: eseguire la migrazione ai criteri del nuovo portale di Azure.",
+ "classicPolicyMigrateSuccessTitle": "La migrazione dei criteri classici è riuscita",
+ "classicPolicyMigratedSuccessDescription": "È ora possibile gestire questi criteri classici in Criteri.",
+ "classicPolicyMigratedSuccessDescriptionMultiple": "La migrazione di questi criteri classici è stata eseguita come {0} nuovi criteri. È possibile gestire i nuovi criteri in Criteri.",
+ "classicPolicyNoEditPermissionMsg": "Non si è autorizzati a modificare questi criteri. Solo gli amministratori globali e gli amministratori della sicurezza possono modificarli. Fare clic qui per altre informazioni.",
+ "classicPolicySaveFailDescription": "Non è stato possibile salvare '{0}'",
+ "classicPolicySaveFailTitle": "Non è stato possibile salvare i criteri classici",
+ "classicPolicySaveInProgressDescription": "Salvataggio di '{0}'",
+ "classicPolicySaveInProgressTitle": "Salvataggio dei criteri classici",
+ "classicPolicySaveSuccessDescription": "Il salvataggio di '{0}' è riuscito",
+ "classicPolicySaveSuccessTitle": "I criteri classici sono stati salvati",
+ "clientAppBladeLegacyInfoBanner": "L'autorizzazione legacy non è attualmente supportata",
+ "clientAppBladeLegacyUpsellBanner": "Blocca app client non supportate (anteprima)",
+ "clientAppBladeTitle": "App client",
+ "clientAppDescription": "Selezionare le app client a cui verranno applicati questi criteri",
+ "clientAppExchangeActiveSync": "Exchange ActiveSync",
+ "clientAppExchangeDisabledInfo": "Exchange ActiveSync è disponibile quando Exchange Online è l'unica app cloud selezionata. Fare clic per altre informazioni",
+ "clientAppExchangeWarning": "Exchange ActiveSync non supporta tutte le altre condizioni in questo momento",
+ "clientAppLearnMore": "È possibile controllare l'accesso utente per applicarlo ad applicazioni client specifiche che non usano l'autenticazione moderna.",
+ "clientAppLegacyHeader": "Client con autenticazione legacy",
+ "clientAppMobileDesktop": "App per dispositivi mobili e client desktop",
+ "clientAppModernHeader": "Client con autenticazione moderna",
+ "clientAppOnlySupportedPlatforms": "Applica i criteri solo alle piattaforme supportate",
+ "clientAppSelectSpecificClientApps": "Selezionare le app client",
+ "clientAppV2BladeTitle": "App client (anteprima)",
+ "clientAppWebBrowser": "Browser",
+ "clientAppsSelectedLabel": "{0} inclusi",
+ "clientTypeBrowser": "Browser",
+ "clientTypeEas": "Client Exchange ActiveSync",
+ "clientTypeEasInfo": "Client Exchange ActiveSync che usano solo l'autenticazione legacy.",
+ "clientTypeModernAuth": "Client con autenticazione moderna",
+ "clientTypeOtherClients": "Altri client",
+ "clientTypeOtherClientsInfo": "Sono inclusi i client Office precedenti e altri protocolli di posta elettronica (POP, IMAP, SMTP e così via). [Altre informazioni][1]\n[1]: https://aka.ms/caclientapps\n",
+ "cloudAppCountDiffBannerText": "{0} app cloud configurate in questo criterio sono state eliminate dalla directory, ma questo non influisce sulle altre app nel criterio. All'aggiornamento successivo della sezione del criterio relativa all'applicazione, le app eliminate verranno automaticamente rimosse.",
+ "cloudAppsSelectionBladeAllMicrosoftApps": "Tutte le app Microsoft",
+ "cloudAppsSelectionExcludeAllMicrosoftClients": "Consenti app cloud, desktop e per dispositivi mobili Microsoft (anteprima)",
+ "cloudappsSelectionBladeAllCloudapps": "Tutte le app cloud",
+ "cloudappsSelectionBladeExcludeDescription": "Selezionare le app cloud da escludere dai criteri",
+ "cloudappsSelectionBladeExcludedSelectorTitle": "Seleziona app cloud escluse",
+ "cloudappsSelectionBladeIncludeDescription": "Selezionare le app cloud a cui verranno applicati questi criteri",
+ "cloudappsSelectionBladeIncludedSelectorTitle": "Seleziona",
+ "cloudappsSelectionBladeSelectedCloudapps": "Selezionare le app",
+ "cloudappsSelectorInfoBallonText": "Servizi a cui accede l'utente per svolgere il lavoro. Ad esempio, 'Salesforce'",
+ "cloudappsSelectorPluralExcluded": "{0} app escluse",
+ "cloudappsSelectorPluralIncluded": "{0} app incluse",
+ "cloudappsSelectorSingularExcluded": "1 app esclusa",
+ "cloudappsSelectorSingularIncluded": "1 app inclusa",
+ "cloudappsSelectorUserPlural": "{0} app",
+ "cloudappsSelectorUserSingular": "1 app",
+ "conditionLabelMulti": "{0} condizioni selezionate",
+ "conditionLabelOne": "1 condizione selezionata",
+ "conditionalAccessBladeTitle": "Accesso condizionale",
+ "conditionsNotSelectedLabel": "Non configurato",
+ "conditionsReqMfaReauthSet": "Alcune opzioni non sono disponibili a causa dell'attuale selezione della concessione \"Richiedi l'autenticazione a più fattori\" e del controllo della sessione \"Frequenza di accesso ogni volta\"",
+ "conditionsReqPwSet": "Alcune opzioni non sono disponibili perché è attualmente selezionata la concessione \"Richiedi modifica password\"",
+ "configureCasText": "Configura Cloud App Security",
+ "configureCustomControlsText": "Configura criteri personalizzati",
+ "controlLabelMulti": "{0} controlli selezionati",
+ "controlLabelOne": "1 controllo selezionato",
+ "controlValidatorText": "Selezionare almeno un controllo",
+ "controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
+ "controlsDeviceComplianceAriaLabel": "Altre informazioni su come richiedere dispositivi conformi.",
+ "controlsDeviceComplianceInfoBubble": "Il dispositivo deve essere compatibile con Intune. In caso contrario, all'utente verrà chiesto di rendere compatibile il dispositivo.",
+ "controlsDomainJoinedAriaLabel": "Altre informazioni su come richiedere dispositivi aggiunti ad Azure AD ibrido.",
+ "controlsDomainJoinedInfoBubble": "I dispositivi devono essere aggiunti ad Azure AD ibrido.",
+ "controlsMamAriaLabel": "Altre informazioni su come richiedere applicazioni client approvate.",
+ "controlsMamInfoBubble": "Il dispositivo deve usare queste applicazioni client approvate.",
+ "controlsMfaInfoBubble": "L'utente deve completare requisiti di sicurezza aggiuntivi, ad esempio telefonata, SMS",
+ "controlsOrAndInfoBubble": "ControlsOrAndInfoBubble",
+ "controlsRequireCompliantAppAriaLabel": "Altre informazioni su come richiedere app protette da criteri.",
+ "controlsRequireCompliantAppInfoBubble": "Il dispositivo deve usare app protette da criteri.",
+ "controlsRequirePasswordResetAriaLabel": "Altre informazioni su come richiedere una modifica della password.",
+ "controlsRequirePasswordResetInfoBubble": "Richiedere la modifica della password per ridurre il rischio utente. Questa opzione richiede anche Multi-Factor Authentication. Non è possibile usare altri controlli.",
+ "countriesRadiobuttonInfoBalloonContent": "Il paese/area geografica da cui proviene l'accesso è determinato dall'indirizzo IP dell'utente.",
+ "createNewVpnCert": "Nuovo certificato",
+ "createdTimeLabel": "Ora di creazione",
+ "customRoleLabel": "Ruoli personalizzati (non supportati)",
+ "dateRangeTypeLabel": "Intervallo di date",
+ "daysOfWeekPlaceholderText": "Filtro per i giorni della settimana",
+ "daysOfWeekTypeLabel": "Giorni della settimana",
+ "deletePolicyNoLicenseText": "È possibile eliminare subito questo criterio. Dopo l'eliminazione, sarà possibile ricrearlo solo quando saranno disponibili le licenze necessarie.",
+ "descriptionContentForControlsAndOr": "Per più controlli",
+ "devicePlatform": "Piattaforma del dispositivo",
+ "devicePlatformConditionHelpDescription": "Consente di applicare il criterio alle piattaforme del dispositivo selezionate.\n[Altre informazioni][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2044750",
+ "devicePlatformInclude": "{0} inclusi",
+ "devicePlatformIncludeExclude": "{0} e {1} escluse",
+ "devicePlatformNoSelectionError": "Alcune piattaforme del dispositivo richiedono la selezione di un elemento secondario.",
+ "devicePlatformsNone": "Nessuno",
+ "deviceSelectionBladeExcludeDescription": "Selezionare le piattaforme da escludere dai criteri",
+ "deviceSelectionBladeIncludeDescription": "Selezionare le piattaforme del dispositivo da includere in questi criteri",
+ "deviceStateAll": "Tutti gli stati dei dispositivi",
+ "deviceStateCompliant": "Dispositivo contrassegnato come conforme",
+ "deviceStateCompliantInfoContent": "I dispositivi conformi con Intune verranno esclusi dalla valutazione di questi criteri, quindi se ad esempio i criteri bloccano l'accesso, verranno bloccati tutti i dispositivi tranne quelli conformi con Intune.",
+ "deviceStateConditionConfigureInfoContent": "Configura i criteri in base allo stato del dispositivo",
+ "deviceStateConditionSelectorInfoContent": "Indica se lo stato del dispositivo da cui l'utente esegue l'accesso è 'Aggiunto ad Azure AD ibrido' o 'contrassegnato come conforme'. \n Questo è stato deprecato. In alternativa, usare '{1}'.",
+ "deviceStateConditionSelectorLabel": "Stato del dispositivo (deprecato)",
+ "deviceStateDomainJoined": "Dispositivo aggiunto ad Azure AD ibrido",
+ "deviceStateDomainJoinedInfoContent": "I dispositivi aggiunti ad Azure AD ibrido verranno esclusi dalla valutazione di questi criteri, quindi se ad esempio i criteri bloccano l'accesso, verranno bloccati tutti i dispositivi tranne quelli aggiunti ad Azure AD ibrido.",
+ "deviceStateDomainJoinedInfoLinkText": "Altre informazioni.",
+ "deviceStateExcludeDescription": "Selezionare la condizione dello stato del dispositivo usata per escludere i dispositivi dai criteri.",
+ "deviceStateIncludeAndExcludeOneLabel": "{0} ed escludi {1}",
+ "deviceStateIncludeAndExcludeTwoLabel": "{0} ed escludi {1}, {2}",
+ "directoryRoleInfoContent": "È possibile assegnare un criterio ai ruoli predefiniti della directory.",
+ "directoryRolesLabel": "Ruoli della directory (anteprima)",
+ "discardbutton": "Rimuovi",
+ "downloadDefaultFileName": "Intervalli IP",
+ "downloadExampleFileName": "Esempio",
+ "downloadExampleHeader": "File di esempio con dimostrazioni delle tipologie di dati accettate. Le righe che iniziano con # verranno ignorate.",
+ "endDatePickerLabel": "Estremità",
+ "endTimePickerLabel": "Ora di fine",
+ "enterCountryText": "L'indirizzo IP e il paese vengono valutati in coppia. Selezionare il paese.",
+ "enterIpText": "L'indirizzo IP e il paese vengono valutati in coppia. Immettere l'indirizzo IP.",
+ "enterUserText": "Nessun utente selezionato. Selezionare un utente.",
+ "evaluationResult": "Risultato della valutazione",
+ "exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
+ "exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync solo con piattaforme supportate",
+ "excludeAllTrustedLocationSelectorText": "tutte le posizioni attendibili",
+ "featureRequiresP2": "Questa funzionalità richiede la licenza Azure AD Premium 2.",
+ "friday": "Venerdì",
+ "grantControls": "Concedi controlli",
+ "gridNetworkTrusted": "Attendibile",
+ "gridPolicyCreatedDateTime": "Data di creazione",
+ "gridPolicyEnabled": "Abilitato",
+ "gridPolicyModifiedDateTime": "Data modifica",
+ "gridPolicyName": "Nome criteri",
+ "gridPolicyState": "Stato",
+ "groupSelectionBladeExcludeDescription": "Selezionare i gruppi da escludere dai criteri",
+ "groupSelectionBladeExcludedSelectorTitle": "Selezionare i gruppi esclusi",
+ "groupSelectionBladeSelect": "Selezione gruppi",
+ "groupSelectorInfoBallonText": "Gruppi nella directory a cui si applicano i criteri. Ad esempio: 'gruppo pilota'",
+ "groupsSelectionBladeTitle": "Gruppi",
+ "helpCommonScenariosText": "Informazioni sugli scenari comuni",
+ "helpCondition1": "Quando un utente si trova all'esterno della rete aziendale",
+ "helpCondition2": "Quando gli utenti nel gruppo 'Manager' eseguono l'accesso",
+ "helpConditionsTitle": "Condizioni",
+ "helpControl1": "Verrà richiesto di eseguire l'accesso con Multi-Factor Authentication",
+ "helpControl2": "Verrà richiesto di eseguire l'accesso tramite un dispositivo aggiunto a un dominio o compatibile con Intune",
+ "helpControlsTitle": "Controlli",
+ "helpIntroText": "L'accesso condizionale consente di imporre requisiti di accesso quando si verificano condizioni specifiche. Ecco alcuni esempi",
+ "helpIntroTitle": "Informazioni sull'accesso condizionale",
+ "helpLearnMoreText": "Per altre informazioni sull'accesso condizionale, vedere",
+ "helpStartStep1": "Per creare il primo criterio, fare clic su \"+ Nuovo criterio\"",
+ "helpStartStep2": "Specificare le Condizioni e i controlli del criterio",
+ "helpStartStep3": "Al termine, fare clic su Attiva criterio e quindi su Crea",
+ "helpStartTitle": "Attività iniziali",
+ "highRisk": "Alta",
+ "includeAndExcludeAppsTextFormat": "Includi: {0}. Escludi: {1}.",
+ "includeAppsTextFormat": "Includi: {0}.",
+ "includeUnknownAreasCheckboxInfoBalloonContent": "Le aree sconosciute sono indirizzi IP di cui non è possibile eseguire il mapping a un paese/area geografica.",
+ "includeUnknownAreasCheckboxLabel": "Includi aree sconosciute",
+ "infoCommandLabel": "Informazioni",
+ "invalidCertDuration": "La durata del certificato non è valida",
+ "invalidIpAddress": "Il valore deve essere un indirizzo IP valido",
+ "invalidUriErrorMsg": "Immettere un URI valido. Ad esempio 'uri:contoso.com:acr' ",
+ "iosDisplayName": "iOS",
+ "linuxDisplayName": "Linux",
+ "loadAll": "Carica tutti",
+ "loading": "Caricamento...",
+ "locationConfigureNamedLocationsText": "Configura tutte le posizioni attendibili",
+ "locationConfigureNamedLocationsUri": "{0}/usermanagement/mfasettings.aspx?tenantid={1}&culture={2}",
+ "locationNameTooLongError": "Il nome della posizione è troppo lungo. Lunghezza massima: 256 caratteri",
+ "locationSelectionBladeExcludeDescription": "Selezionare le posizioni da escludere dai criteri",
+ "locationSelectionBladeIncludeDescription": "Selezionare le località da includere nei criteri",
+ "locationsAllLocationsLabel": "Tutte le località",
+ "locationsAllNamedLocationsLabel": "Tutti gli indirizzi IP attendibili",
+ "locationsAllPrivateLinksLabel": "Tutti i collegamenti privati nel tenant",
+ "locationsIncludeExcludeLabel": "{0} ed escludi tutti gli IP attendibili",
+ "locationsSelectedPrivateLinksLabel": "Collegamenti privati selezionati",
+ "lowRisk": "Bassa",
+ "macOsDisplayName": "macOS",
+ "managePoliciesLicenseText": "Per gestire i criteri di accesso condizionale, l'organizzazione necessita di Azure AD Premium P1 o P2.",
+ "markAsTrustedCheckboxInfoBalloonContent": "L'accesso da una posizione attendibile riduce il rischio di accesso dell'utente. Contrassegnare questa posizione come attendibile solo se si è certi che gli intervalli IP immessi siano stabiliti e credibili nell'organizzazione.",
+ "markAsTrustedCheckboxLabel": "Contrassegna come posizione attendibile",
+ "mediumRisk": "Medio",
+ "memberSelectionCommandRemove": "Rimuovi",
+ "menuItemClaimProviderControls": "Controlli personalizzati (anteprima)",
+ "menuItemClassicPolicies": "Criteri classici",
+ "menuItemInsightsAndReporting": "Informazioni dettagliate e report",
+ "menuItemManage": "Gestione",
+ "menuItemNamedLocationsPreview": "Località denominate (anteprima)",
+ "menuItemNamedNetworks": "Località denominate",
+ "menuItemPolicies": "Criteri",
+ "menuItemTermsOfUse": "Condizioni per l'utilizzo",
+ "modifiedTimeLabel": "Ora di modifica",
+ "monday": "Lunedì",
+ "nameLabel": "Nome",
+ "namedLocationCountryInfoBanner": "Solo gli indirizzi IPv4 vengono mappati ai paesi o alle aree geografiche. Gli indirizzi IPv6 sono inclusi in aree geografiche/paesi sconosciuti.",
+ "namedLocationTypeCountry": "Paesi/aree geografiche",
+ "namedLocationTypeLabel": "Definisci il tipo di posizione in base a:",
+ "namedLocationUpsellBanner": "Questa visualizzazione è stata deprecata. Passare alla visualizzazione nuova e migliorata 'Località denominate'.",
+ "namedLocationsHelpDescription": "Le località denominate vengono usate dai report sulla sicurezza di Azure AD per ridurre i falsi positivi e i criteri di accesso condizionale di Azure AD.\n[Altre informazioni][1]\n[1]: https://aka.ms/namedlocationupdate",
+ "namedNetworkAddIpRanges": "Aggiungi un nuovo intervallo IP. Ad esempio: 40.77.182.32/27",
+ "namedNetworkCountryNeeded": "È necessario selezionare almeno un paese/area geografica",
+ "namedNetworkDeleteCommand": "Elimina",
+ "namedNetworkDeleteDescription": "Eliminare '{0}'? Questa azione non può essere annullata.",
+ "namedNetworkDeleteTitle": "Continuare?",
+ "namedNetworkDownloadIpRange": "Scarica",
+ "namedNetworkInvalidRange": "Il valore deve essere un intervallo IP valido.",
+ "namedNetworkIpRangeNeeded": "È necessario specificare almeno un intervallo IP valido",
+ "namedNetworkIpRangesDescriptionContent": "Configurare gli intervalli IP dell'organizzazione",
+ "namedNetworkIpRangesTab": "Intervalli IP",
+ "namedNetworkListAdd": "Nuovo percorso",
+ "namedNetworkListConfigureTrustedIps": "Configura indirizzi IP attendibili MFA",
+ "namedNetworkNameDescription": "Ad esempio: 'Ufficio di Redmond'",
+ "namedNetworkNameInvalid": "Il nome specificato non è valido.",
+ "namedNetworkNameRequired": "È necessario specificare un nome per questo percorso.",
+ "namedNetworkNoIpRanges": "Nessun intervallo IP",
+ "namedNetworkNotificationCreateDescription": "Creazione del percorso denominato '{0}'",
+ "namedNetworkNotificationCreateFailedDescription": "La creazione del percorso '{0}' non è riuscita. Riprovare più tardi.",
+ "namedNetworkNotificationCreateFailedTitle": "Non è stato possibile creare il percorso",
+ "namedNetworkNotificationCreateSuccessDescription": "Il percorso denominato '{0}' è stata creata",
+ "namedNetworkNotificationCreateSuccessTitle": "La rete '{0}' è stata creata",
+ "namedNetworkNotificationCreateTitle": "Creazione della rete '{0}'",
+ "namedNetworkNotificationDeleteDescription": "Eliminazione del percorso denominato '{0}'",
+ "namedNetworkNotificationDeleteFailedDescription": "L'eliminazione del percorso '{0}' non è riuscita. Riprovare più tardi.",
+ "namedNetworkNotificationDeleteFailedTitle": "Non è stato possibile eliminare il percorso",
+ "namedNetworkNotificationDeleteSuccessDescription": "Il percorso denominato '{0}' è stato eliminato",
+ "namedNetworkNotificationDeleteSuccessTitle": "La rete '{0}' è stata eliminata",
+ "namedNetworkNotificationDeleteTitle": "Eliminazione di '{0}'",
+ "namedNetworkNotificationUpdateDescription": "Aggiornamento del percorso denominato '{0}'",
+ "namedNetworkNotificationUpdateFailedDescription": "L'aggiornamento del percorso '{0}' non è riuscito. Riprovare più tardi.",
+ "namedNetworkNotificationUpdateFailedTitle": "Non è stato possibile aggiornare il percorso",
+ "namedNetworkNotificationUpdateSuccessDescription": "Il percorso denominato '{0}' è stato aggiornato",
+ "namedNetworkNotificationUpdateSuccessTitle": "La rete '{0}' è stata aggiornata",
+ "namedNetworkNotificationUpdateTitle": "Aggiornamento della rete '{0}'",
+ "namedNetworkSearchPlaceholder": "Cerca i percorsi.",
+ "namedNetworkUploadFailedDescription": "Si è verificato un errore durante l'analisi del file fornito. Assicurarsi di caricare un file di testo normale con ogni riga nel formato CIDR.",
+ "namedNetworkUploadFailedTitle": "Non è stato possibile analizzare '{0}'",
+ "namedNetworkUploadInProgressDescription": "È in corso un tentativo per analizzare i valori CIDR validi da '{0}'.",
+ "namedNetworkUploadInProgressTitle": "Analisi di '{0}'",
+ "namedNetworkUploadInvalidDescription": "'{0}' è troppo grande o presenta un formato non valido.",
+ "namedNetworkUploadInvalidTitle": "'{0}' non è valido",
+ "namedNetworkUploadIpRange": "Carica",
+ "namedNetworkUploadSuccessDescription": "{0} righe analizzate. {1} righe in un formato non valido. {2} righe ignorate.",
+ "namedNetworkUploadSuccessTitle": "L'analisi di '{0}' è stata completata",
+ "namedNetworksAdd": "Nuova località denominata",
+ "namedNetworksConditionHelpDescription": "È possibile controllare l'accesso degli utenti in base alla posizione fisica.\n[Altre informazioni][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
+ "namedNetworksExcludeLabel": "{0} e {1} escluse",
+ "namedNetworksHelpDescription": "Le posizioni specifiche vengono usate dai report sulla sicurezza di Azure AD per ridurre i falsi positivi e dai criteri di accesso condizionale di Azure AD.\n[Altre informazioni][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
+ "namedNetworksIncludeLabel": "{0} inclusi",
+ "namedNetworksNone": "Non sono state trovate località denominate.",
+ "namedNetworksTitle": "Configura posizioni",
+ "namednetworkExceedingSizeErrorBladeTitle": "Dettagli errore",
+ "namednetworkExceedingSizeErrorDetailText": "Fare clic qui per altri dettagli.",
+ "namednetworkExceedingSizeErrorMessage": "È stato superato lo spazio di archiviazione massimo consentito per le località denominate. Riprovare con un elenco più breve. Fare clic qui per visualizzare altri dettagli.",
+ "needMfaSecondary": "È necessario selezionare \"Richiedi l'autenticazione a più fattori\" quando si seleziona \"Frequenza di accesso ogni volta\" con \"Solo metodi di autenticazione secondari\"",
+ "newCertName": "nuovo certificato",
+ "noAttributePermissionsError": "Privilegi insufficienti per la creazione o l'aggiornamento dei criteri. Per aggiungere/modificare i filtri dinamici, è necessario il ruolo con autorizzazione di lettura degli attributi.",
+ "noPolicyRowMessage": "Nessun criterio",
+ "noSPSelected": "Nessuna entità servizio selezionata",
+ "noUpdatePermissionMessage": "Non si è autorizzati ad aggiornare queste impostazioni. Per ottenere l'accesso, contattare l'amministratore globale.",
+ "noUserSelected": "Nessun utente selezionato",
+ "noneRisk": "Nessun rischio",
+ "office365Description": "Queste app includono Microsoft Flow, Microsoft Forms, Microsoft Teams, Office 365 Exchange Online, Office 365 SharePoint Online, Office 365 Yammer e altre ancora.",
+ "office365InfoBox": "Almeno una delle app selezionate fa parte di Office 365. È consigliabile impostare il criterio sull'app di Office 365.",
+ "oneUserSelected": "1 utente selezionato",
+ "onlyGlobalAdminsCanSaveThisPolicyConfig": "Solo gli amministratori globali possono salvare questi criteri.",
+ "or": "{0} OR {1} ",
+ "pickerDoneCommand": "Fatto",
+ "policiesBladeAdPremiumUpsellBannerText": "È possibile creare criteri personalizzati per soddisfare condizioni specifiche, ad esempio app cloud, rischio di accesso e piattaforme di dispositivi con Azure AD Premium",
+ "policiesBladeTitle": "Criteri",
+ "policiesBladeTitleWithAppName": "Criteri: {0}",
+ "policiesDisabledBannerText": "Non è consentito creare e modificare criteri per applicazioni con un attributo di accesso collegato.",
+ "policiesHitMaxLimitStatusBarMessage": "È stato raggiunto il numero massimo di criteri per questo tenant. Eliminare alcuni criteri prima di crearne altri.",
+ "policyAssignmentsSection": "Assegnazioni",
+ "policyBlockAllInfoBox": "Il criterio configurato bloccherà tutti gli utenti, quindi non è supportato. Verificare le assegnazioni e i controlli. Escludere l'utente corrente {0}, se si desidera salvare questo criterio.",
+ "policyCloudAppsDisplayTextAllApp": "Tutte le app",
+ "policyCloudAppsLabel": "App cloud",
+ "policyConditionClientAppDescription": "Software che l'utente usa per accedere all'app cloud. Ad esempio, 'Browser'",
+ "policyConditionClientAppV2Description": "Software che l'utente usa per accedere all'app cloud. Ad esempio, 'Browser'",
+ "policyConditionDevicePlatform": "Piattaforme del dispositivo",
+ "policyConditionDevicePlatformDescription": "Piattaforma da cui accede l'utente. Ad esempio, 'iOS'",
+ "policyConditionLocation": "Località",
+ "policyConditionLocationDescription": "Posizione (determinata tramite l'intervallo di indirizzi IP) da cui accede l'utente",
+ "policyConditionSigninRisk": "Rischio di accesso",
+ "policyConditionSigninRiskDescription": "Probabilità che l'accesso provenga da una persona diversa dall'utente. Il livello di rischio può essere alto, medio o basso. Richiede una licenza di Azure AD Premium 2.",
+ "policyConditionUserRisk": "Rischio utente",
+ "policyConditionUserRiskDescription": "Consente di configurare i livelli di rischio utente necessari per l'applicazione dei criteri",
+ "policyConditioniClientApp": "App client",
+ "policyConditioniClientAppV2": "App client (anteprima)",
+ "policyControlAllowAccessDisplayedName": "Concedi accesso",
+ "policyControlAuthenticationStrengthDisplayedName": "Richiedi livello di autenticazione (anteprima)",
+ "policyControlBladeTitle": "Concedi",
+ "policyControlBlockAccessDisplayedName": "Blocca accesso",
+ "policyControlCompliantDeviceDisplayedName": "Richiedi che i dispositivi siano contrassegnati come conformi",
+ "policyControlContentDescription": "Controllare l'imposizione dell'accesso per bloccare o concedere l'accesso.",
+ "policyControlInfoBallonText": "Permette di bloccare l'accesso o di selezionare requisiti aggiuntivi che devono essere soddisfatti per consentire l'accesso",
+ "policyControlMfaChallengeDisplayedName": "Richiedi autenticazione a più fattori",
+ "policyControlRequireCompliantAppDisplayedName": "Richiedi criteri di protezione dell'app",
+ "policyControlRequireDomainJoinedDisplayedName": "Richiedi dispositivo aggiunto ad Azure AD ibrido",
+ "policyControlRequireMamDisplayedName": "Richiedi app client approvata",
+ "policyControlRequiredPasswordChangeDisplayedName": "Richiedi modifica password",
+ "policyControlSelectAuthStrength": "Richiedi complessità dell'autenticazione",
+ "policyControlsNoControlsSelected": "0 controlli selezionati",
+ "policyControlsSection": "Controlli di accesso",
+ "policyCreatBladeTitle": "Nuova",
+ "policyCreateButton": "Crea",
+ "policyCreateFailedMessage": "Errore: {0}",
+ "policyCreateFailedTitle": "Non è stato possibile creare '{0}'",
+ "policyCreateInProgressTitle": "Creazione della rete '{0}'",
+ "policyCreateSuccessMessage": "La creazione di '{0}' è riuscita. I criteri saranno abilitati entro pochi minuti se l'opzione \"Abilita criteri\" è impostata su \"Sì\".",
+ "policyCreateSuccessTitle": "La creazione di '{0}' è riuscita",
+ "policyDeleteConfirmation": "Eliminare '{0}'? Questa azione non può essere annullata.",
+ "policyDeleteFailTitle": "Non è stato possibile eliminare '{0}'",
+ "policyDeleteInProgressTitle": "Eliminazione di '{0}'",
+ "policyDeleteSuccessTitle": "L'eliminazione di '{0}' è riuscita",
+ "policyEnforceLabel": "Abilita criterio",
+ "policyErrorCannotSetSigninRisk": "Non si è autorizzati a salvare criteri con una condizione di rischio di accesso.",
+ "policyErrorNoPermission": "Non si è autorizzati a salvare i criteri. Contattare l'amministratore globale.",
+ "policyErrorUnknown": "Si è verificato un errore. Riprovare più tardi.",
+ "policyFallbackWarningMessage": "Errore durante la creazione o l'aggiornamento di '{0}' usando MS Graph con conseguente fallback in Ad Graph. Esaminare lo scenario seguente perché è molto probabile che si presenti un bug quando si chiama l'endpoint dei criteri per MS Graph con una condizione non compatibile.",
+ "policyFallbackWarningTitle": "Creazione o aggiornamento di '{0}' eseguito parzialmente",
+ "policyNameCannotBeEmpty": "Il nome dei criteri non può essere vuoto",
+ "policyNameDevice": "Criteri del dispositivo",
+ "policyNameFormat": "[{0}] {1}",
+ "policyNameMam": "Criteri di Gestione delle app per dispositivi mobili",
+ "policyNameMfaLocation": "Criteri di MFA e posizione",
+ "policyNamePlaceholderText": "Ad esempio: 'Criteri app conformità dispositivo'",
+ "policyNameTooLongError": "Il nome dei criteri è troppo lungo. La lunghezza massima è 256 caratteri",
+ "policyOff": "Disattivato",
+ "policyOn": "Attivato",
+ "policyReportOnly": "Solo report",
+ "policyReviewSection": "Visualizza",
+ "policySaveButton": "Salva",
+ "policyStatusIconDescription": "Criteri abilitati",
+ "policyStatusIconEnabled": "Icona stato abilitato",
+ "policyTemplateName1": "Usa restrizioni imposte dall'app per l'accesso a {0} tramite il browser",
+ "policyTemplateName2": "Consenti l'accesso a {0} solo su dispositivi gestiti",
+ "policyTemplateName3": "Criterio sottoposto a migrazione dalle impostazioni di Valutazione continua dell'accesso",
+ "policyTriggerRiskSpecific": "Selezionare il livello di rischio specifico",
+ "policyTriggersInfoBalloonText": "Condizioni che definiscono la condizione in base a cui si applicano i criteri. Ad esempio, 'posizione'",
+ "policyTriggersNoConditionsSelected": "0 condizioni selezionate",
+ "policyTriggersSelectorLabel": "Condizioni",
+ "policyUpdateFailedMessage": "Errore: {0}",
+ "policyUpdateFailedTitle": "Non è stato possibile aggiornare {0}",
+ "policyUpdateInProgressTitle": "Aggiornamento di {0}",
+ "policyUpdateSuccessMessage": "L'aggiornamento di {0} è riuscito. I criteri saranno abilitati entro pochi minuti se l'opzione \"Abilita criteri\" è impostata su \"Sì\".",
+ "policyUpdateSuccessTitle": "L'aggiornamento di {0} è stato completato",
+ "primaryCol": "Primario",
+ "privateLinkLabel": "Collegamento privato di Azure AD",
+ "reportOnlyInfoBox": "Modalità Solo report: i criteri vengono valutati e registrati all'accesso ma non influiscono sugli utenti.",
+ "requireAllControlsText": "Richiedi tutti i controlli selezionati",
+ "requireCompliantDevice": "Richiedi un dispositivo conforme",
+ "requireDomainJoined": "Richiedi dispositivo aggiunto a un dominio",
+ "requireGrantReauth": "Il controllo sessione di \"Frequenza di accesso ogni volta\" richiede la concessione del controllo \"Richiedi l'autenticazione a più fattori\" o \"Richiedi la modifica della password\" quando è selezionato \"Tutte le app cloud\"",
+ "requireMFA": "Richiedi autenticazione a più fattori ",
+ "requireMfaReauth": "Il controllo sessione di \"Frequenza di accesso ogni volta richiede la concessione del controllo \"Richiedi l'autenticazione a più fattori\" per \"Rischio di accesso\"",
+ "requireOneControlText": "Richiedi uno dei controlli selezionati",
+ "requirePasswordChangeReauth": "Il controllo sessione di \"Frequenza di accesso ogni volta\" richiede la concessione del controllo \"Richiedi la modifica della password\" per \"Rischio di accesso\"",
+ "requireRiskReauth": "Il controllo della sessione di \"Frequenza di accesso ogni volta\" richiede la concessione del controllo \"Rischio utente\" o \"Rischio di accesso\" quando è selezionato \"Tutte le app cloud\".",
+ "resetFilters": "Reimposta filtri",
+ "sPRequired": "Entità servizio obbligatoria",
+ "sPSelectorInfoBalloon": "Utente o entità servizio da testare",
+ "saturday": "Sabato",
+ "searchTextTooLongError": "Il testo di ricerca è troppo lungo. Al massimo 256 caratteri",
+ "securityDefaultsPolicyName": "Impostazioni predefinite per la sicurezza",
+ "securityDefaultsTextMessage": "Le impostazioni predefinite per la sicurezza devono essere disabilitate per abilitare i criteri di accesso condizionale.",
+ "securityDefaultsWarningMessage": "Si sta per gestire le configurazioni di sicurezza dell'organizzazione. È prima di tutto necessario disabilitare le impostazioni predefinite per la sicurezza prima di abilitare i criteri di accesso condizionale.",
+ "selectDevicePlatforms": "Seleziona piattaforme del dispositivo",
+ "selectNamedNetworksSubtitle": "",
+ "selectNamedNetworksTitle": "Seleziona percorsi",
+ "selectedSP": "Entità servizio selezionata",
+ "servicePrincipalDataGridAria": "Elenco delle entità servizio disponibili",
+ "servicePrincipalDropDownLabel": "A cosa si applica questo criterio?",
+ "servicePrincipalInfoBox": "Alcune condizioni non sono disponibili a causa della selezione di '{0}' nell'assegnazione dei criteri",
+ "servicePrincipalRadioAll": "Tutte le entità servizio possedute",
+ "servicePrincipalRadioSelect": "Seleziona entità servizio",
+ "servicePrincipalSelectionsAria": "Griglia delle entità servizio selezionate",
+ "servicePrincipalSelectorAria": "Elenco delle entità servizio selezionate",
+ "servicePrincipalSelectorMultiple": "{0} entità servizio selezionate",
+ "servicePrincipalSelectorSingle": "1 entità servizio selezionata",
+ "servicePrincipalSpecificInc": "Entità servizio specifiche incluse",
+ "servicePrincipals": "Entità servizio",
+ "sessionControlBladeTitle": "Sessione",
+ "sessionControlDescriptionContent": "È possibile controllare l'accesso in base ai controlli della sessione per abilitare esperienze limitate entro applicazioni cloud specifiche.",
+ "sessionControlDisableInfo": "Questo controllo funziona solo con le app supportate. Attualmente Office 365, Exchange Online e SharePoint Online sono le uniche app cloud che supportano le restrizioni imposte dalle app. Fare clic qui per altre informazioni.",
+ "sessionControlInfoBallonText": "I controlli della sessione abilitano un'esperienza limitata in un'app cloud.",
+ "sessionControls": "Controlli della sessione",
+ "sessionControlsAppEnforcedLabel": "Usa restrizioni imposte dalle app",
+ "sessionControlsCasLabel": "Usa Controllo app per l'accesso condizionale",
+ "sessionControlsSecureSignInLabel": "Richiedi binding del token",
+ "sharepointAppName": "SharePoint",
+ "signinRiskDescription": "Selezionare il livello di rischio di accesso a cui verranno applicati questi criteri",
+ "signinRiskInclude": "{0} inclusi",
+ "signinRiskReauth": "È necessario selezionare la condizione \"Rischio di accesso\" quando sono selezionati la concessione \"Richiedi l'autenticazione a più fattori\" e il controllo della sessione \"Frequenza di accesso ogni volta\"",
+ "signinRiskTriggerDescriptionContent": "Selezionare il livello di rischio di accesso",
+ "singleTenantServicePrincipalInfoBallonText": "Il criterio si applica solo alle singole entità servizio tenant di proprietà dell'organizzazione. Fare clic qui per altre informazioni ",
+ "specificSigninRiskLevelsOption": "Selezionare i livelli di rischio di accesso specifici",
+ "specificUsersExcluded": "utenti specifici esclusi",
+ "specificUsersIncluded": "Utenti specifici inclusi",
+ "specificUsersIncludedAndExcluded": "Utenti specifici esclusi e inclusi",
+ "startDatePickerLabel": "Inizia",
+ "startFreeTrial": "Avviare una versione di valutazione gratuita",
+ "startTimePickerLabel": "Ora di inizio",
+ "sunday": "Domenica",
+ "testButton": "What If",
+ "thumbprintCol": "Identificazione personale",
+ "thursday": "Giovedì",
+ "timeConditionAllTimesLabel": "In qualsiasi momento",
+ "timeConditionIntroText": "Configurare gli orari a cui verranno applicati i criteri",
+ "timeConditionSelectorInfoBallonContent": "Momento in cui l'utente esegue l'accesso. Ad esempio: \"Mercoledì 9:00 - 17:00 PST\"",
+ "timeConditionSelectorLabel": "Ora (anteprima)",
+ "timeConditionSpecificLabel": "Orari specifici",
+ "timeSelectorAllTimesText": "In qualsiasi momento",
+ "timeSelectorSpecificTimesText": "Orari specifici configurati",
+ "timeZoneDropdownInfoBalloonContent": "Selezionare un fuso orario che definisca l'intervallo di tempo. Questi criteri si applicano agli utenti in tutti i fusi orari. Ad esempio, 'Mercoledì 9:00 - 17:00' per un utente potrebbe essere 'Mercoledì 10:00 - 18:00' per un altro utente in un fuso orario diverso.",
+ "timeZoneDropdownLabel": "Fuso orario",
+ "timeZoneDropdownPlaceholderText": "Selezionare un fuso orario",
+ "tooManyPoliciesDescription": "Sono attualmente visualizzati solo i primi 50 criteri. Fare clic qui per visualizzarli tutti",
+ "tooManyPoliciesTitle": "Più di 50 criteri trovati",
+ "trustedLocationStatusIconDescription": "La posizione è considerata attendibile",
+ "trustedLocationStatusIconEnabled": "Icona dello stato attendibile",
+ "tuesday": "Martedì",
+ "uploadInBadState": "Non è possibile caricare il file specificato.",
+ "upsellAppsDescription": "È possibile richiedere l'autenticazione a più fattori per le applicazioni sensibili sempre oppure solo dall'esterno della rete aziendale.",
+ "upsellAppsTitle": "Proteggere le applicazioni",
+ "upsellBannerText": "Per accedere a questa funzionalità, usare una versione di valutazione gratuita Premium",
+ "upsellDataDescription": "È possibile richiedere che i dispositivi siano contrassegnati come conformi o aggiunti ad Azure AD ibrido per consentire l'accesso alle risorse aziendali.",
+ "upsellDataTitle": "Proteggere i dati",
+ "upsellDescription": "L'accesso condizionale garantisce il controllo e la protezione necessari per proteggere i dati aziendali, offrendo al contempo ai dipendenti un'esperienza che permette loro di svolgere il proprio lavoro al meglio e da qualsiasi dispositivo. Ad esempio, è possibile bloccare l'accesso dall'esterno della rete aziendale oppure bloccare l'accesso ai dispositivi che non soddisfano i requisiti di conformità.",
+ "upsellRiskDescription": "È possibile richiedere Multi-Factor Authentication per gli eventi di rischio rilevati dal sistema di Machine Learning di Microsoft.",
+ "upsellRiskTitle": "Proteggersi dai rischi",
+ "upsellTitle": "Accesso condizionale",
+ "upsellWhyTitle": "Vantaggi dell'accesso condizionale",
+ "userAppNoneOption": "Nessuno",
+ "userNamePlaceholderText": "Immetti nome utente",
+ "userNotSetSeletorLabel": "0 utenti e gruppi selezionati",
+ "userOnlySelectionBladeExcludeDescription": "Selezionare i gruppi da escludere dai criteri",
+ "userOrGroupSelectionCountDiffBannerText": "{0} configurati in questo criterio sono stati eliminati dalla directory, ma questa operazione non influisce sugli altri utenti e gruppi nel criterio. Al successivo aggiornamento del criterio gli utenti e/o i gruppi eliminati verranno rimossi automaticamente.",
+ "userOrSPNotSetSelectorLabel": "0 utenti o identità del carico di lavoro selezionati",
+ "userOrSPSelectionBladeTitle": "Utenti o identità del carico di lavoro",
+ "userOrSPSelectorInfoBallonText": "Identità nella directory a cui si applicano i criteri, inclusi utenti, gruppi ed entità servizio",
+ "userRequired": "L'utente è obbligatorio",
+ "userRiskErrorBox": "È necessario selezionare la condizione \"Rischio utente\" quando è selezionata la concessione \"Richiedi modifica password\"",
+ "userRiskReauth": "Deve essere selezionata la condizione \"Rischio utente\" e non \"Rischio di accesso\" quando sono selezionati la concessione \"Richiedi modifica della password\" e il controllo della sessione \"Frequenza di accesso ogni volta\"",
+ "userSPRequired": "Utente o entità servizio obbligatori",
+ "userSPSelectorTitle": "Utente o identità del carico di lavoro",
+ "userSelectionBladeAllUsersAndGroups": "Tutti gli utenti e i gruppi",
+ "userSelectionBladeExcludeDescription": "Selezionare gli utenti e i gruppi da escludere dai criteri",
+ "userSelectionBladeExcludeTabTitle": "Escludi",
+ "userSelectionBladeExcludedSelectorTitle": "Selezionare gli utenti esclusi",
+ "userSelectionBladeIncludeDescription": "Selezionare gli utenti a qui verranno applicati i criteri",
+ "userSelectionBladeIncludeTabTitle": "Includi",
+ "userSelectionBladeIncludedSelectorTitle": "Seleziona",
+ "userSelectionBladeSelectUsers": "Seleziona utenti",
+ "userSelectionBladeSelectedUsers": "Seleziona utenti e gruppi",
+ "userSelectionBladeTitle": "Utenti e gruppi",
+ "userSelectorBladeTitle": "Utenti",
+ "userSelectorExcluded": "{0} esclusi",
+ "userSelectorGroupPlural": "{0} gruppi",
+ "userSelectorGroupSingular": "1 gruppo",
+ "userSelectorIncluded": "{0} inclusi",
+ "userSelectorInfoBallonText": "Utenti e gruppi nella directory a cui si applicano i criteri. Ad esempio, 'Gruppo pilota'",
+ "userSelectorSelected": "{0} selezionati",
+ "userSelectorTitle": "Utente",
+ "userSelectorUserAndGroup": "{0}, {1}",
+ "userSelectorUserPlural": "{0} utenti",
+ "userSelectorUserSingular": "1 utente",
+ "userSelectorWithExclusion": "{0} e {1}",
+ "usersGroupsLabel": "Utenti e gruppi",
+ "viewApprovedAppsText": "Visualizza l'elenco di app client approvate",
+ "viewCompliantAppsText": "Visualizza l'elenco di app client protette da criteri",
+ "vpnBladeTitle": "Connettività VPN",
+ "vpnCertCreateFailedMessage": "Errore: {0}",
+ "vpnCertCreateFailedTitle": "Impossibile creare {0}",
+ "vpnCertCreateInProgressTitle": "Creazione del tipo di risorsa {0}",
+ "vpnCertCreateSuccessMessage": "La creazione di {0} è riuscita.",
+ "vpnCertCreateSuccessTitle": "La creazione di {0} è riuscita",
+ "vpnCertNoRowsMessage": "Non sono stati trovati certificati VPN",
+ "vpnCertUpdateFailedMessage": "Errore: {0}",
+ "vpnCertUpdateFailedTitle": "Non è stato possibile aggiornare {0}",
+ "vpnCertUpdateInProgressTitle": "Aggiornamento di {0}",
+ "vpnCertUpdateSuccessMessage": "L'aggiornamento di {0} è stato completato.",
+ "vpnCertUpdateSuccessTitle": "L'aggiornamento di {0} è stato completato",
+ "vpnFeatureInfo": "Per altre informazioni sulla connettività VPN e l'accesso condizionale, fare clic qui.",
+ "vpnFeatureWarning": "Dopo la creazione di un certificato VPN nel portale di Azure, Azure AD inizierà a usarlo immediatamente per rilasciare certificati di breve durata per il client VPN. È essenziale che il certificato VPN venga distribuito immediatamente nel server VPN per evitare problemi relativi alla convalida delle credenziali del client VPN.",
+ "vpnMenuText": "Connettività VPN",
+ "vpncertDropdownDefaultOption": "Durata",
+ "vpncertDropdownInfoBalloonContent": "Selezionare la durata per il certificato da creare",
+ "vpncertDropdownLabel": "Seleziona durata",
+ "vpncertDropdownOneyearOption": "1 anno",
+ "vpncertDropdownThreeyearOption": "3 anni",
+ "vpncertDropdownTwoyearOption": "2 anni",
+ "wednesday": "Mercoledì",
+ "whatIfAppEnforcedControl": "Usa restrizioni imposte dalle app",
+ "whatIfBladeDescription": "Verifica l'impatto dell'accesso condizionale su un utente quando viene eseguito l'accesso in determinate condizioni.",
+ "whatIfBladeTitle": "What If",
+ "whatIfClassicPoliciesWarning": "I criteri classici non vengono valutati da questo strumento.",
+ "whatIfClientAppInfo": "App client da cui l'utente esegue l'accesso, ad esempio 'browser'.",
+ "whatIfCountry": "Paese",
+ "whatIfCountryInfo": "Paese da cui l'utente esegue l'accesso.",
+ "whatIfDevicePlatformInfo": "Piattaforma del dispositivo da cui l'utente esegue l'accesso.",
+ "whatIfDeviceStateInfo": "Stato del dispositivo da cui l'utente esegue l'accesso",
+ "whatIfEnterIpAddress": "Immettere l'indirizzo IP (ad esempio: 40.77.182.32)",
+ "whatIfErrorInvalidIpAddress": "Specificato un indirizzo IP non valido.",
+ "whatIfEvaResultApplication": "App cloud",
+ "whatIfEvaResultClientApps": "App client",
+ "whatIfEvaResultDevicePlatform": "Piattaforma del dispositivo",
+ "whatIfEvaResultEmptyPolicy": "I criteri sono vuoti",
+ "whatIfEvaResultInvalidCondition": "La condizione non è valida",
+ "whatIfEvaResultInvalidPolicy": "I criteri non sono validi",
+ "whatIfEvaResultLocation": "Località",
+ "whatIfEvaResultNotEnoughInformation": "Le informazioni non sono sufficienti",
+ "whatIfEvaResultPolicyNotEnabled": "I criteri non sono abilitati",
+ "whatIfEvaResultSignInRisk": "Rischio di accesso",
+ "whatIfEvaResultUsers": "Utenti e gruppi",
+ "whatIfIpAddress": "Indirizzo IP",
+ "whatIfIpAddressInfo": "Indirizzo IP da cui l'utente esegue l'accesso.",
+ "whatIfIpCountryInfoBoxText": "Se si usa un indirizzo IP o un paese, entrambi i campi sono obbligatori e devono essere mappati correttamente.",
+ "whatIfPolicyAppliesTab": "Criteri applicabili",
+ "whatIfPolicyDoesNotApplyTab": "Criteri non applicabili",
+ "whatIfReasons": "Motivo della non applicabilità dei criteri",
+ "whatIfSelectClientApp": "Selezionare un'app client...",
+ "whatIfSelectCountry": "Selezionare il paese...",
+ "whatIfSelectDevicePlatform": "Seleziona piattaforma dispositivo...",
+ "whatIfSelectPrivateLink": "Selezionare collegamento privato...",
+ "whatIfSelectServicePrincipalRisk": "Seleziona il rischio principale del servizio...",
+ "whatIfSelectSignInRisk": "Seleziona rischio di accesso...",
+ "whatIfSelectType": "Selezionare il tipo di identità",
+ "whatIfSelectUserRisk": "Selezionare il rischio utente...",
+ "whatIfServicePrincipalRiskInfo": "Il livello di rischio associato all'accesso principale",
+ "whatIfSignInRisk": "Rischio di accesso",
+ "whatIfSignInRiskInfo": "Livello di rischio associato all'accesso",
+ "whatIfUnknownAreas": "Aree sconosciute",
+ "whatIfUserPickerLabel": "Utente selezionato",
+ "whatIfUserPickerNoRowsLabel": "Nessun utente o entità servizio selezionati",
+ "whatIfUserRiskInfo": "Livello di rischio associato all'utente",
+ "whatIfUserSelectorInfo": "Utente nella directory da testare",
+ "windows365InfoBox": "La selezione di Windows 365 influirà sulle connessioni ai Cloud PC e agli host di sessione di Desktop virtuale Azure. Fare clic qui per altre informazioni.",
+ "windowsDisplayName": "Windows",
+ "windowsPhoneDisplayName": "Windows Phone",
+ "workloadIdentities": "Identità del carico di lavoro (anteprima)",
+ "workloadIdentity": "Identità del carico di lavoro"
+ },
+ "AppResources": {
+ "AppSettingsUx": {
+ "assignmentFilterColumnHeader": "Filtro",
+ "assignmentFilterTypeColumnHeader": "Modalità filtro",
+ "assignmentToast": "Notifiche per l'utente finale",
+ "assignmentTypeTableHeader": "TIPO DI ASSEGNAZIONE",
+ "deadlineTimeColumnLabel": "Scadenza installazione",
+ "deliveryOptimizationPriorityHeader": "Priorità di ottimizzazione recapito",
+ "groupTableHeader": "Gruppo",
+ "installContextLabel": "Contesto di installazione",
+ "isRemovable": "Installa come rimovibile",
+ "licenseTypeLabel": "Tipo di licenza",
+ "modeTableHeader": "Modalità gruppo",
+ "policySet": "Set di criteri",
+ "restartGracePeriodHeader": "Periodo di tolleranza per il riavvio",
+ "startTimeColumnLabel": "Disponibilità",
+ "tracks": "Tracce",
+ "uninstallOnRemoval": "Disinstalla alla rimozione del dispositivo",
+ "updateMode": "Priorità di aggiornamento",
+ "vPN": "VPN"
+ },
+ "AppType": {
+ "aADWebApp": "App Web AAD",
+ "androidEnterpriseSystemApp": "App del sistema Android Enterprise",
+ "androidForWorkApp": "App di Google Play Store gestito",
+ "androidLobApp": "App line-of-business Android",
+ "androidStoreApp": "Android store app",
+ "builtInAndroid": "App Android predefinita",
+ "builtInApp": "App predefinita",
+ "builtInIos": "App iOS predefinita",
+ "iosLobApp": "App line-of-business iOS",
+ "iosStoreApp": "App Store iOS",
+ "iosVppApp": "App Volume Purchase Program iOS",
+ "lineOfBusinessApp": "App line-of-business",
+ "macOSDmgApp": "macOS app (DMG)",
+ "macOSEdgeApp": "Microsoft Edge (macOS)",
+ "macOSLobApp": "App line-of-business macOS",
+ "macOSMdatpApp": "Microsoft Defender ATP (macOS)",
+ "macOSOfficeSuiteApp": "Famiglia di prodotti Office per macOS",
+ "macOsVppApp": "App Volume Purchase Program macOS",
+ "managedAndroidLobApp": "App line-of-business Android gestita",
+ "managedAndroidStoreApp": "App di Android Store gestita",
+ "managedGooglePlayApp": "App di Google Play Store gestito",
+ "managedGooglePlayPrivateApp": "App privata di Google Play gestito",
+ "managedGooglePlayWebApp": "Collegamento Web di Google Play gestito",
+ "managedIosLobApp": "App line-of-business iOS gestita",
+ "managedIosStoreApp": "App dello Store iOS gestita",
+ "microsoftStoreForBusinessApp": "App di Microsoft Store per le aziende",
+ "microsoftStoreForBusinessReleaseManagedApp": "Microsoft Store per le aziende",
+ "officeAddIn": "Componente aggiuntivo per Office",
+ "officeSuiteApp": "Microsoft 365 Apps (Windows 10 e versioni successive)",
+ "sharePointApp": "App SharePoint",
+ "teamsApp": "App Teams",
+ "webApp": "Collegamento Web",
+ "windowsAppXLobApp": "App line-of-business AppX per Windows",
+ "windowsClassicApp": "App Windows (Win32)",
+ "windowsEdgeApp": "Microsoft Edge (Windows 10 e versioni successive)",
+ "windowsMobileMsiLobApp": "App line-of-business di Windows MSI",
+ "windowsPhone81AppXBundleLobApp": "App line-of-business AppX per Windows Phone 8.1",
+ "windowsPhone81AppXLobApp": "App line-of-business AppX per Windows Phone 8.1",
+ "windowsPhone81StoreApp": "App dello Store per Windows Phone 8.1",
+ "windowsPhoneXapLobApp": "App line-of-business XAP per Windows Phone",
+ "windowsStoreApp": "App di Microsoft Store",
+ "windowsUniversalAppXLobApp": "App line-of-business AppX universale per Windows",
+ "windowsUniversalLobApp": "App line-of-business universale di Windows"
+ },
+ "AppTypePlatform": {
+ "android": "Android",
+ "ios": "iOS",
+ "macOs": "macOS",
+ "web": "Web",
+ "windows": "Windows"
+ },
+ "AssignmentAction": {
+ "exclude": "Escluso",
+ "include": "Incluso",
+ "includeAllDevicesVirtualGroup": "Incluso",
+ "includeAllUsersVirtualGroup": "Incluso"
+ },
+ "AssignmentToast": {
+ "hideAll": "Nascondi tutte le notifiche di tipo avviso popup",
+ "showAll": "Mostra tutte le notifiche di tipo avviso popup",
+ "showReboot": "Mostra le notifiche di tipo avviso popup per i riavvii dei computer"
+ },
+ "DeliveryOptimizationPriority": {
+ "backgroundNormal": "Background",
+ "displayText": "Download del contenuto in {0}",
+ "foreground": "Primo piano",
+ "header": "Priorità di ottimizzazione recapito"
+ },
+ "DeviceRestartBehaviorOptions": {
+ "allow": "L'installazione dell'app può forzare il riavvio del dispositivo",
+ "basedOnReturnCode": "Determinare il comportamento in base ai codici restituiti",
+ "force": "Intune forzerà il riavvio obbligatorio del dispositivo",
+ "suppress": "Nessuna azione specifica"
+ },
+ "FilterType": {
+ "exclude": "Escludi",
+ "include": "Includi",
+ "none": "Nessuno"
+ },
+ "InstallIntent": {
+ "available": "Disponibile per i dispositivi registrati",
+ "availableWithoutEnrollment": "Disponibile con o senza registrazione",
+ "notApplicable": "Non applicabile",
+ "required": "Obbligatorio",
+ "uninstall": "Disinstalla"
+ },
+ "SettingType": {
+ "assignmentType": "Tipo di assegnazione",
+ "deviceLicensing": "Tipo di licenza",
+ "installContext": "Disinstalla alla rimozione del dispositivo",
+ "toastSettings": "Notifiche per l'utente finale",
+ "vpnConfiguration": "VPN"
+ },
+ "UpdateMode": {
+ "default": "Predefinito",
+ "postponed": "Posticipata",
+ "priority": "Priorità alta"
+ }
+ },
+ "WindowsEnrollment": {
+ "coManagementAuthorityDesc": "Consente di configurare le impostazioni di co-gestione per l'integrazione di Configuration Manager",
+ "coManagementAuthorityTitle": "Impostazioni di co-gestione ",
+ "deploymentProfiles": "Profili di distribuzione di Windows AutoPilot",
+ "description": "Informazioni sui sette modi diversi in cui utenti o amministratori possono registrare in Intune un computer Windows 10/11.",
+ "descriptionLabel": "Metodi di registrazione di Windows",
+ "enrollmentStatusPage": "Pagina relativa allo stato della registrazione"
+ },
+ "Win32Program": {
+ "DeviceRestartBehaviorOptions": {
+ "allow": "L'installazione dell'app può forzare il riavvio del dispositivo",
+ "basedOnReturnCode": "Determinare il comportamento in base ai codici restituiti",
+ "force": "Intune forzerà il riavvio obbligatorio del dispositivo",
+ "suppress": "Nessuna azione specifica"
+ },
+ "RunAsAccountOptions": {
+ "system": "Sistema",
+ "user": "Utente"
+ },
+ "bladeTitle": "Programma",
+ "deviceRestartBehavior": "Comportamento riavvio dispositivo",
+ "deviceRestartBehaviorTooltip": "Selezionare il comportamento di riavvio del dispositivo dopo la corretta installazione dell'app. Selezionare 'Determina il comportamento in base ai codici restituiti' per riavviare il dispositivo in base alle impostazioni di configurazione dei codici restituiti. Selezionare 'Nessuna azione specifica' per eliminare i riavvii del dispositivo durante l'installazione dell'app per le app basate su MSI. Selezionare 'L'installazione dell'app può forzare il riavvio del dispositivo' per consentire il completamento dell'installazione dell'app senza eliminare i riavvii. Selezionare 'Intune forzerà il riavvio obbligatorio del dispositivo' per riavviare sempre il dispositivo dopo la corretta installazione dell'app.",
+ "header": "Specificare i comandi per l'installazione e la disinstallazione di questa app:",
+ "installCommand": "Comando di installazione",
+ "installCommandMaxLengthErrorMessage": "Il comando di installazione non può superare la lunghezza massima consentita di 1024 caratteri.",
+ "installCommandTooltip": "Riga di comando di installazione completa usata per installare questa app.",
+ "runAs32Bit": "Esegui i comandi di installazione e disinstallazione in un processo a 32 bit nei client a 64 bit",
+ "runAs32BitTooltip": "Selezionare 'Sì' per installare e disinstallare l'app in un processo a 32 bit nei client a 64 bit. Selezionare 'No' (impostazione predefinita) per installare e disinstallare l'app in un processo a 64 bit nei client a 64 bit. I client a 32 bit useranno sempre un processo a 32 bit.",
+ "runAsAccount": "Comportamento di installazione",
+ "runAsAccountTooltip": "Selezionare 'Sistema' per installare l'app per tutti gli utenti, se questa opzione è supportata. Selezionare 'Utente' per installare l'app per l'utente connesso al dispositivo. Per le app MSI con doppio scopo, le modifiche impediranno il completamento di aggiornamenti e disinstallazioni fino al ripristino del valore applicato al dispositivo al momento dell'installazione originale.",
+ "selectorLabel": "Programma",
+ "uninstallCommand": "Comando di disinstallazione",
+ "uninstallCommandTooltip": "Riga di comando di disinstallazione completa usata per disinstallare questa app."
+ },
+ "CategoryDescription": {
+ "androidGeneralApplicationRestrictions": "Usare queste impostazioni per rimanere aggiornati su quali utenti installano app non approvate per l'uso nell'azienda. Selezionare il tipo di elenco di app con restrizioni:
\r\n App non consentite: elenco di app per cui si vogliono ricevere informazioni in caso di installazione da parte degli utenti.
\r\n App approvate: elenco di app approvate per l'uso nell'azienda. Si verrà informati quando gli utenti installano un'app non inclusa in questo elenco.
\r\n ",
+ "androidZebraMxZebraMx": "Consente di configurare i dispositivi Zebra caricando un profilo MX in formato XML.",
+ "iosDeviceFeaturesAirprint": "Usare queste impostazioni per configurare i dispositivi iOS in modo che si connettano automaticamente a stampanti compatibili con AirPrint in rete. Saranno necessari l'indirizzo IP e il percorso delle risorse delle stampanti.",
+ "iosDeviceFeaturesExtensibleSingleSignOn": "Consente di configurare un'estensione dell'app che abilita l'accesso Single Sign-On per dispositivi che eseguono iOS 13.0 o versioni successive.",
+ "iosDeviceFeaturesHomeScreenLayout": "Configurare il layout per le schermate di ancoraggio e iniziali nei dispositivi iOS. È possibile che per alcuni dispositivi siano previsti limiti relativi al numero di elementi visualizzabili.",
+ "iosDeviceFeaturesIOSWallpaper": "Consente di visualizzare un'immagine che verrà mostrata nella schermata iniziale e/o nella schermata di blocco dei dispositivi iOS.\r\n Per visualizzare un'immagine univoca in ogni posizione, creare un profilo con l'immagine della schermata di blocco e un profilo con l'immagine della schermata iniziale.\r\n Assegnare quindi entrambi i profili agli utenti.\r\n
\r\n \r\n - Dimensioni massime file: 750 KB
\r\n - Tipo di file: PNG, JPG o JPEG
\r\n
\r\n ",
+ "iosDeviceFeaturesNotifications": "Specificare le impostazioni di notifica per le app. Supporta iOS 9.3 e versioni successive.",
+ "iosDeviceFeaturesSharedDevice": "Consente di specificare il testo facoltativo visualizzato nella schermata di blocco. Questa opzione è supportata in iOS 9.3 e versioni successive. Altre informazioni",
+ "iosGeneralApplicationRestrictions": "Usare queste impostazioni per rimanere aggiornati su quali utenti installano app non approvate per l'uso nell'azienda. Selezionare il tipo di elenco di app con restrizioni:
\r\n App non consentite: elenco di app per cui si vogliono ricevere informazioni in caso di installazione da parte degli utenti.
\r\n App approvate: elenco di app approvate per l'uso nell'azienda. Si verrà informati quando gli utenti installano un'app non inclusa in questo elenco.
\r\n ",
+ "iosGeneralApplicationVisibility": "Usare l'elenco di app visibili per specificare le app iOS che un utente è autorizzato a visualizzare o avviare. Usare l'elenco di app nascoste per specificare le app iOS che un utente non è autorizzato a visualizzare o avviare.",
+ "iosGeneralAutonomousSingleAppMode": "Le app aggiunte a questo elenco e assegnate a un dispositivo possono bloccare il dispositivo, in modo che esegua solo l'app specifica dopo l'avvio oppure bloccarlo mentre è in esecuzione un'azione specifica, ad esempio un test. Al termine dell'azione o dopo la rimozione della restrizione, viene ripristinato lo stato normale del dispositivo.",
+ "iosGeneralKiosk": "La modalità tutto schermo blocca diverse impostazioni in un dispositivo oppure specifica una singola app che può essere eseguita in un dispositivo. Questa opzione può essere utile in ambienti quali un punto vendita al dettaglio in cui si vuole che il dispositivo esegua solo una singola app demo.",
+ "macDeviceFeaturesAirprint": "Usare queste impostazioni per configurare i dispositivi macOS per connettersi automaticamente alle stampanti compatibili con AirPrint disponibili nella rete. Sarà necessario specificare l'indirizzo IP e il percorso delle risorse delle stampanti.",
+ "macDeviceFeaturesAssociatedDomains": "È possibile configurare i domini associati per la condivisione di dati e credenziali di accesso tra le app e i siti Web dell'organizzazione. Questo profilo può essere applicato a dispositivi che eseguono macOS 10.15 o versioni successive.",
+ "macDeviceFeaturesExtensibleSingleSignOn": "Consente di configurare un'estensione dell'app che abilita l'accesso Single Sign-On per dispositivi che eseguono macOS 10.15 o versioni successive.",
+ "macDeviceFeaturesLoginItems": "Scegliere le app, i file e le cartelle da aprire quando gli utenti accedono ai propri dispositivi. Se non si vuole che gli utenti modifichino la modalità di apertura delle app selezionate, è possibile nascondere le app dalla configurazione utente.",
+ "macDeviceFeaturesLoginWindow": "È possibile configurare l'aspetto della schermata di accesso di macOS e le funzioni disponibili per gli utenti prima e dopo l'accesso.",
+ "macExtensionsKernelExtensions": "Usare queste impostazioni per configurare i criteri di estensione del kernel in dispositivi macOS che eseguono la versione 10.13.2 o successiva.",
+ "macGeneralDomains": "I messaggi di posta elettronica inviati o ricevuti dall'utente che non corrispondono ai domini specificati qui verranno contrassegnati come non attendibili.",
+ "windows10EndpointProtectionApplicationGuard": "Quando si usa Microsoft Edge, Microsoft Defender Application Guard protegge l'ambiente dai siti non definiti come attendibili dall'organizzazione. Quando gli utenti visitano siti non elencati nei limiti della rete isolata, tali siti verranno aperti in una sessione del browser virtuale in Hyper-V. I siti attendibili vengono definiti da un limite di rete, che può essere configurato in Configurazioni dei dispositivi. Si noti che questa funzionalità è disponibile solo per i dispositivi Windows 10 a 64 bit o versioni successive.",
+ "windows10EndpointProtectionCredentialGuard": "L'abilitazione di Credential Guard abiliterà le impostazioni necessarie seguenti:\r\n
\r\n \r\n - Abilita la sicurezza basata su virtualizzazione: attiva la sicurezza basata su virtualizzazione al riavvio successivo. La sicurezza basata su virtualizzazione usa Windows Hypervisor per offrire il supporto per i servizi di sicurezza.
\r\n
\r\n - Avvio protetto con accesso diretto alla memoria: attiva la sicurezza basata su virtualizzazione con l'avvio protetto e l'accesso diretto alla memoria.
\r\n
\r\n ",
+ "windows10EndpointProtectionDeviceGuard": "Scegliere altre app che devono essere controllate o possono essere ritenute attendibili per l'esecuzione da parte di Controllo di applicazioni di Microsoft Defender. I componenti Windows e tutte le app di Windows Store sono ritenuti automaticamente attendibili per l'esecuzione.
\r\n Le applicazioni non verranno bloccate se sono in esecuzione in modalità \"Solo controllo\". La modalità \"Solo controllo\" registra tutti gli eventi nei log locali dei client.\r\n",
+ "windows10GeneralPrivacyPerApp": "Aggiungere le app che devono avere un comportamento diverso a livello di privacy rispetto a quanto definito in \"Privacy predefinita\".",
+ "windows10NetworkBoundaryNetworkBoundary": "Il limite di rete è l'elenco di risorse aziendali, ad esempio il dominio ospitato sul cloud e gli intervalli di indirizzi IP per i computer inclusi nella rete aziendale. Definire i limiti di rete per applicare criteri per la protezione dei dati disponibili in tali posizioni.",
+ "windowsHealthMonitoring": "Configurare i criteri di monitoraggio dello stato di Windows.",
+ "windowsPhoneGeneralApplicationRestrictions": "Windows Phone può impedire agli utenti di installare o avviare le app specificate nell'elenco di app non consentite oppure le app non specificate nell'elenco di app approvate. Tutte le app gestite devono essere aggiunte all'elenco di app approvate."
+ },
"Inputs": {
"accountDomain": "Dominio dell'account",
"accountDomainHint": "Ad esempio, contosodomain",
@@ -9962,6 +9858,7 @@
"displayNameLabel": "Nome",
"displayVersionHint": "Immettere la versione dell'app",
"displayVersionLabel": "Versione dell'app",
+ "displayVersionLengthCheck": "La lunghezza della versione visualizzata deve essere un massimo di 130 caratteri",
"eBookCategoryNameLabel": "Nome predefinito",
"emailAccount": "Nome dell'account di posta elettronica",
"emailAccountHint": "Ad esempio posta elettronica aziendale",
@@ -10066,385 +9963,51 @@
"xmlFormatInvalid": "Il formato del criterio XML non è valido.",
"xmlTooLarge": "Le dimensioni dell'input devono essere inferiori a 1 MB."
},
- "Tooltips": {
- "PolicySettings": {
- "TouchId1": {
- "android": "Nei dispositivi Android è possibile consentire l'uso dell'identificazione tramite impronta digitale anziché tramite PIN. Agli utenti viene richiesto di fornire l'impronta digitale per accedere all'app con l'account aziendale.",
- "iOS": "Nei dispositivi iOS/iPadOS è possibile consentire l'uso dell'identificazione tramite impronta digitale anziché tramite PIN. Agli utenti viene richiesto di fornire l'impronta digitale per accedere all'app con l'account aziendale.",
- "mac": "Nei dispositivi Mac è possibile consentire l'uso dell'identificazione tramite impronta digitale anziché tramite PIN. Agli utenti viene richiesto di fornire l'impronta digitale per accedere all'app con l'account aziendale."
- },
- "appSharingFromLevel1": "Selezionare una delle opzioni seguenti per specificare le app da cui questa app può ricevere dati:",
- "appSharingFromLevel2": "{0}: consente la ricezione di dati nei documenti o negli account dell'organizzazione solo da altre app gestite da criteri",
- "appSharingFromLevel3": "{0}: consente la ricezione di dati nei documenti o negli account dell'organizzazione da qualsiasi app",
- "appSharingFromLevel4": "{0}: non consente la ricezione di dati nei documenti o negli account dell'organizzazione da qualsiasi app",
- "appSharingFromLevel5": "{0}: è possibile consentire il trasferimento dei dati da qualsiasi app e gestire tutti i dati in ingresso privi di identità utente come dati dell'organizzazione.",
- "appSharingToLevel1": "Selezionare una delle opzioni seguenti per specificare le app a cui questa app può inviare dati:",
- "appSharingToLevel2": "{0}: consente l'invio di dati dell'organizzazione solo verso altre app gestite da criteri",
- "appSharingToLevel3": "{0}: consente l'invio di dati dell'organizzazione a qualsiasi app",
- "appSharingToLevel4": "{0}: non consente l'invio di dati dell'organizzazione a qualsiasi app",
- "appSharingToLevel5": "{0}: è possibile consentire il trasferimento solo ad altre app gestite da criteri e il trasferimento di file ad altre app gestite da MDM nei dispositivi registrati",
- "appSharingToLevel6": "{0}: è possibile consentire il trasferimento solo ad altre app gestite da criteri e l'applicazione di filtri alle finestre di dialogo Apri in/Condividi per il sistema operativo in modo che vengano visualizzate solo le app gestite da criteri",
- "conditionalEncryption1": "Selezionare {0} per disabilitare la crittografia delle app per le risorse di archiviazione delle app interne quando la crittografia dei dispositivi viene rilevata in un dispositivo registrato.",
- "conditionalEncryption2": "Nota: Intune può rilevare la registrazione dei dispositivi solo con Intune MDM. Le risorse di archiviazione delle app esterne saranno ancora crittografate per assicurare che i dati non siano accessibili da applicazioni non gestite.",
- "contactSyncMac": "Se questa opzione è disabilitata, le app non possono salvare contatti nella rubrica nativa.",
- "contactsSync": "Scegliere Blocca per impedire alle app gestite da criteri di salvare i dati nelle app native del dispositivo, ad esempio Contatti, Calendario e widget, o per impedire l'uso di componenti aggiuntivi all'interno delle app gestite da criteri. Se si sceglie Consenti, l'app gestita da criteri può salvare i dati nelle app native o usare i componenti aggiuntivi, se queste funzionalità sono supportate e abilitate nell'app gestita da criteri.
Le app possono fornire funzionalità di configurazione aggiuntive con i criteri di configurazione dell'app. Per ulteriori informazioni, vedere la documentazione dell'app.",
- "encryptionAndroid1": "Per le app associate a criteri di gestione dei dispositivi mobili di Intune, la crittografia è fornita da Microsoft. I dati sono crittografati in modo sincrono durante le operazioni di I/O dei file in base all'impostazione specificata nei criteri di gestione delle applicazioni per dispositivi mobili. Le app gestite in Android usano la crittografia AES-128 in modalità CBC usando le librerie di crittografia della piattaforma. Il metodo di crittografia non è conforme con FIPS 140-2. La crittografia SHA-256 è supportata come un'istruzione esplicita usando il parametro SigAlg e funziona solo sui dispositivi con versione 4.2 e successive. Il contenuto nell'archiviazione del dispositivo è sempre crittografato.",
- "encryptionAndroid2": "Quando si richiede la crittografia tramite i criteri dell'app, l'utente finale deve configurare e usare un PIN per accedere al dispositivo. Se non è stato impostato un PIN per l'accesso al dispositivo, le app non verranno avviate e l'utente finale visualizzerà un messaggio che indica che l'azienda ha richiesto di impostare un PIN del dispositivo per accedere all'applicazione.",
- "encryptionMac1": "Per le app associate a criteri di gestione dei dispositivi mobili di Intune, la crittografia è fornita da Microsoft. I dati sono crittografati in modo sincrono durante le operazioni di I/O dei file in base all'impostazione specificata nei criteri di gestione delle applicazioni per dispositivi mobili. Le app gestite in Mac usano la crittografia AES-128 in modalità CBC usando le librerie di crittografia della piattaforma. Il metodo di crittografia non è conforme con FIPS 140-2. La crittografia SHA-256 è supportata come un'istruzione esplicita usando il parametro SigAlg e funziona solo sui dispositivi con versione 4.2 e successive. Il contenuto nell'archiviazione del dispositivo è sempre crittografato.",
- "faceId1": "Se applicabile, è possibile consentire l'uso di Identificazione viso invece del PIN. Agli utenti viene richiesto di fornire l'identificazione viso quando accedono all'app con i propri account aziendali.",
- "faceId2": "Selezionare Sì per consentire l'Identificazione viso invece di un PIN per l'accesso all'app.",
- "managementLevelsAndroid1": "Usare questa opzione per specificare se il criterio è applicabile ai dispositivi dell'amministratore di dispositivi Android, ai dispositivi Android Enterprise o ai dispositivi non gestiti.",
- "managementLevelsAndroid2": "{0}: i dispositivi non gestiti sono dispositivi in cui la gestione di Intune MDM non è stata rilevata. Sono inclusi fornitori MDM di terze parti.",
- "managementLevelsAndroid3": "{0}: dispositivi gestiti da Intune che usano l'API Android Device Administration.",
- "managementLevelsAndroid4": "{0}: dispositivi gestiti da Intune che usano i profili di lavoro di Android Enterprise o la gestione dispositivi completa di Android Enterprise.",
- "managementLevelsIos1": "Usare questa opzione per specificare se questo criterio è applicabile ai dispositivi MDM gestiti o ai dispositivi non gestiti.",
- "managementLevelsIos2": "{0}: i dispositivi non gestiti sono dispositivi in cui la gestione di Intune MDM non è stata rilevata. Sono inclusi fornitori MDM di terze parti.",
- "managementLevelsIos3": "{0}: i dispositivi gestiti sono gestiti da Intune MDM.",
- "minAppVersion": "Definire il numero di versione minimo obbligatorio dell'app che un utente deve avere per ottenere l'accesso sicuro all'app.",
- "minAppVersionWarning": "Definire il numero di versione minimo consigliato dell'app che un utente deve avere per un accesso sicuro all'app.",
- "minOsVersion": "Definire il numero di versione minimo obbligatorio del sistema operativo che un utente deve avere per ottenere l'accesso sicuro all'app.",
- "minOsVersionWarning": "Definire il numero di versione minimo consigliato del sistema operativo che un utente deve avere per ottenere l'accesso sicuro all'app.",
- "minPatchVersion": "Definire il livello di patch di protezione meno recente obbligatorio per Android consentito a un utente per ottenere l'accesso sicuro all'app.",
- "minPatchVersionWarning": "Definire il livello di patch di protezione meno recente consigliato per Android consentito a un utente per l'accesso sicuro all'app.",
- "minSdkVersion": "Definire la versione minima obbligatoria di Intune Application Protection Policy SDK che un utente deve avere per ottenere l'accesso sicuro all'app.",
- "requireAppPinDefault": "Selezionare Sì per disabilitare il PIN dell'app quando un blocco del dispositivo viene rilevato in un dispositivo registrato.
",
- "targetAllApps1": "Usare questa opzione per specificare come destinazione del criterio le app nei dispositivi con qualsiasi stato di gestione.",
- "targetAllApps2": "Durante la risoluzione del conflitto tra i criteri questa impostazione verrà sostituita se un utente ha un criterio destinato a uno stato di gestione specifico.",
- "touchId2": "Selezionare {0} per richiedere l'identificazione tramite impronta digitale anziché un PIN per l'accesso all'app."
- },
- "Tap": {
- "pinResetAfterNumberOfDays": "Specificare il numero di giorni che devono trascorrere prima che sia necessaria la reimpostazione del PIN da parte dell'utente.",
- "previousPinBlockCount": "Questa impostazione consente di specificare il numero di PIN precedenti che verranno conservati da Intune. Eventuali nuovi PIN devono essere diversi da quelli conservati da Intune."
+ "WindowsFeatureUpdate": {
+ "EndOFSupportStatus": {
+ "notSupported": "Non supportato",
+ "supportEnding": "Fine supporto",
+ "supported": "Supportato"
+ }
},
- "WipPolicySettings": {
- "25": "",
- "allowWindowsSearch": "Consentirà a Windows Search di continuare a eseguire ricerche nei dati crittografati.",
- "authoritativeIpRanges": "Abilitare questa impostazione se si vuole eseguire l'override del rilevamento automatico Windows degli intervalli di indirizzi IP.",
- "authoritativeProxyServers": "Abilitare questa impostazione se si vuole eseguire l'override del rilevamento automatico Windows dei server proxy.",
- "checkInput": "Verifica la validità dell'input",
- "dataRecoveryCert": "Un certificato di ripristino è un certificato EFS (Encrypting File System) speciale che consente di recuperare i file crittografati in caso di perdita o danneggiamento della chiave di crittografia. È necessario creare il certificato di ripristino e specificarlo qui. Per altre informazioni, vedere qui",
- "enterpriseCloudResources": "Specificare le risorse cloud da considerare aziendali e da proteggere con il criterio di Windows Information Protection. È possibile specificare più risorse separando le singole voci con il carattere '|'.
Se nell'azienda è stato configurato un proxy, è possibile specificare il proxy tramite cui verrà instradato il traffico alle risorse cloud specificate.
URL[,Proxy]|URL[,Proxy]
Senza proxy: contoso.sharepoint.com|contoso.visualstudio.com
Con proxy: contoso.sharepoint.com,proxy.contoso.com|contoso.visualstudio.com,proxy.contoso.com
",
- "enterpriseIPv4Ranges": "Specificare gli intervalli IPv4 che costituiscono la rete aziendale. Questi intervalli vengono usati insieme ai nomi di dominio di rete aziendale specificati per definire il limite di rete aziendale.
Questa impostazione è necessaria per abilitare Windows Information Protection.
È possibile specificare più intervalli separando le singole voci con una virgola.
Ad esempio: 3.4.0.1-3.4.255.255,192.168.1.1-192.168.255.255
",
- "enterpriseIPv6Ranges": "Specificare gli intervalli IPv6 che costituiscono la rete aziendale. Questi intervalli vengono usati insieme ai nomi di dominio di rete aziendale specificati per definire il limite di rete aziendale.
È possibile specificare più intervalli separando le singole voci con una virgola.
Ad esempio: 2001:4898:dc05::-2001:4898:dc05:ffff:ffff:ffff:ffff:ffff,2a01:110::-2a01:110:7fff:ffff:ffff:ffff:ffff:ffff
",
- "enterpriseInternalProxyServers": "Se nell'azienda è stato configurato un proxy, è possibile specificare il proxy tramite cui instradare il traffico alle risorse cloud specificate nelle impostazioni Risorse cloud aziendali.
È possibile specificare più valori separando le singole voci con un punto e virgola.
Ad esempio: contoso.internalproxy1.com;contoso.internalproxy2.com
",
- "enterpriseNetworkDomainNames": "Specificare i nomi DNS che costituiscono la rete aziendale. Questi nomi vengono usati insieme agli intervalli IP specificati per definire il limite di rete aziendale. È possibile specificare più valori separando le singole voci con una virgola.
Questa impostazione è necessaria per abilitare Windows Information Protection.
Ad esempio: corp.contoso.com,region.contoso.com
",
- "enterpriseProtectedDomainNames": "Specificare i nomi DNS che costituiscono la rete aziendale. Questi nomi vengono usati insieme agli intervalli IP specificati per definire il limite di rete aziendale. È possibile specificare più valori separando le singole voci con una barra verticale '|'.
Questa impostazione è necessaria per abilitare Windows Information Protection.
Ad esempio: corp.contoso.com|region.contoso.com
",
- "enterpriseProxyServers": "Se nella rete aziendale sono presenti proxy con accesso all'esterno, specificarli qui. Quando si specifica un indirizzo del server proxy, è necessario specificare anche la porta tramite cui il traffico deve essere consentito e protetto con Windows Information Protection.
Nota: questo elenco non deve includere i server presenti nell'elenco Server proxy interni aziendali. È possibile specificare più valori separando le singole voci con un punto e virgola.
Ad esempio: proxy.contoso.com:80;proxy2.contoso.com:80
",
- "maxInactivityTime1": "Specifica l'intervallo di tempo massimo (in minuti) consentito in caso di inattività del dispositivo dopo il quale il dispositivo verrà bloccato tramite PIN o password. Gli utenti possono selezionare qualsiasi valore di timeout inferiore all'intervallo di tempo massimo specificato nell'app Impostazioni. Si noti che per Lumia 950 e 950XL è previsto un valore di timeout massimo di 5 minuti, indipendentemente dal valore configurato da questo criterio.",
- "maxInactivityTime2": "0 (valore predefinito): non viene definito alcun timeout. Il valore predefinito '0' viene interpretato come 'Nessun timeout definito'.",
- "maxPasswordAttempts1": "Questo criterio presenta comportamenti diversi nei dispositivi mobili e nei computer desktop.",
- "maxPasswordAttempts2": "Quando l'utente raggiunge il valore impostato da questo criterio in un dispositivo mobile, vengono cancellati i dati del dispositivo.",
- "maxPasswordAttempts3": "Quando l'utente raggiunge il valore impostato da questo criterio in un computer desktop, non vengono cancellati i dati. Viene attivata nel computer desktop la modalità di ripristino BitLocker, che rende i dati inaccessibili ma recuperabili. Se BitLocker non è abilitato, non è possibile applicare il criterio.",
- "maxPasswordAttempts4": "Prima di raggiungere il limite di tentativi non riusciti, l'utente viene inviato alla schermata di blocco e viene visualizzato un avviso che indica che altri tentativi non riusciti comporteranno il blocco del computer. Quando l'utente raggiunge il limite, il dispositivo si riavvia automaticamente e mostra la pagina di ripristino BitLocker, che richiede all'utente la chiave di ripristino di BitLocker.",
- "maxPasswordAttempts5": "0 (valore predefinito): i dati del dispositivo non vengono mai cancellati dopo l'immissione di un PIN errato o di una password non valida.",
- "maxPasswordAttempts6": "Il valore più sicuro è 0 se tutti i valori del criterio sono uguali a 0. In caso contrario, il valore del criterio minimo è il valore più sicuro.",
- "mdmDiscoveryUrl": "Specificare l'URL per l'endpoint di registrazione MDM che verrà usato dagli utenti che si registrano in MDM. Per impostazione predefinita, viene specificato questo valore per Intune.",
- "minimumPinLength1": "Valore intero che imposta il numero minimo di caratteri necessari per il PIN. Il valore predefinito è 4. Il numero minimo configurabile per questa impostazione del criterio è 4. Il numero massimo configurabile deve essere inferiore al numero configurato nell'impostazione del criterio Lunghezza massima del PIN o 127, a seconda di quale sia il valore più basso.",
- "minimumPinLength2": "Se si configura questa impostazione del criterio, la lunghezza del PIN deve essere superiore o uguale a questo numero. Se si disabilita o non si configura questa impostazione del criterio, la lunghezza deve essere superiore o uguale a 4.",
- "name": "Nome di questo limite di rete",
- "neutralResources": "Se nell'azienda sono disponibili endpoint di reindirizzamento dell'autenticazione, specificarli qui. Le posizioni specificate qui vengono considerate personali o aziendali in base al contesto della connessione prima del reindirizzamento.
È possibile specificare più valori separando le singole voci con una virgola.
Ad esempio: sts.contoso.com,sts.contoso2.com
",
- "passportForWork1": "Valore che imposta Windows Hello for Business come metodo per l'accesso a Windows.",
- "passportForWork2": "Il valore predefinito è true. Se si imposta questo criterio su false, l'utente può effettuare il provisioning di Windows Hello for Business solo nei dispositivi mobili aggiunti ad Azure Active Directory in cui è obbligatorio il provisioning.",
- "pinExpiration": "Il numero massimo configurabile per questa impostazione del criterio è 730. Il numero minimo configurabile per questa impostazione del criterio è 0. Se si imposta il criterio su 0, il PIN dell'utente non scadrà mai.",
- "pinHistory1": "Il numero massimo configurabile per questa impostazione del criterio è 50. Il numero minimo configurabile per questa impostazione del criterio è 0. Se si imposta il criterio su 0, l'archiviazione dei PIN precedenti non è necessaria.",
- "pinHistory2": "Il PIN attuale dell'utente viene incluso nel set di PIN associati all'account utente. La cronologia del PIN non viene conservata tramite una reimpostazione del PIN.",
- "protectUnderLock": "Protegge il contenuto dell'app quando il dispositivo è bloccato.",
- "protectionModeBlock": "Blocca: impedisce l'uscita dei dati aziendali dalle app protette.
",
- "protectionModeOff": "No: l'utente può spostare i dati all'esterno delle app protette. Non viene registrata alcuna azione.
",
- "protectionModeOverride": "Consenti sostituzioni: viene visualizzato un avviso quando l'utente prova a spostare i dati da un'app protetta a un'app non protetta. Se l'utente sceglie di ignorare l'avviso, l'azione verrà registrata.
",
- "protectionModeSilent": "Invisibile all'utente: l'utente può spostare i dati all'esterno delle app protette. Queste azioni vengono registrate.
",
- "required": "Necessario",
- "revokeOnMdmHandoff": "Aggiunto in Windows 10 versione 1703. Questo criterio consente di controllare se revocare le chiavi WIP quando un dispositivo esegue l'aggiornamento da MAM a MDM. Se è impostato su \"Off\", le chiavi non verranno revocate e l'utente continuerà ad accedere ai file protetti dopo l'aggiornamento. Questa è l'opzione consigliata se il servizio MDM è configurato con lo stesso valore EnterpriseID WIP del servizio MAM.",
- "revokeOnUnenroll": "Le chiavi di crittografia verranno revocate quando viene annullata la registrazione di un dispositivo da questo criterio.",
- "rmsTemplateForEdp": "GUID di TemplateID da usare per la crittografia RMS. Il modello di Azure RMS consente all'amministratore IT di configurare i dettagli relativi agli utenti autorizzati ad accedere ai file con protezione RMS e alla durata dell'accesso.",
- "showWipIcon": "Questa opzione consente di informare l'utente quando si trova in un contesto aziendale, tramite la sovrimpressione di un'icona.",
- "useRmsForWip": "Specifica se consentire la crittografia di Azure RMS per WIP."
+ "SecurityTemplate": {
+ "aSR": "Riduzione della superficie di attacco",
+ "accountProtection": "Protezione account",
+ "allDevices": "Tutti i dispositivi",
+ "antivirus": "Antivirus",
+ "antivirusReporting": "Report dell'antivirus (anteprima)",
+ "conditionalAccess": "Accesso condizionale",
+ "deviceCompliance": "Conformità del dispositivo",
+ "diskEncryption": "Crittografia del disco",
+ "eDR": "Rilevamento di endpoint e risposta",
+ "firewall": "Firewall",
+ "helpSupport": "Guida e supporto tecnico",
+ "setup": "Installazione",
+ "wdapt": "Microsoft Defender per endpoint"
+ },
+ "Win32ReturnCodes": {
+ "CodeTypes": {
+ "failed": "Errore",
+ "hardReboot": "Avvio a freddo",
+ "retry": "Riprova",
+ "softReboot": "Avvio a caldo",
+ "success": "Operazione completata"
},
- "requireAppPin": "Selezionare Sì per disabilitare il PIN dell'app quando viene rilevato un blocco del dispositivo in un dispositivo registrato.
Nota: Intune non può rilevare la registrazione dei dispositivi con una soluzione EMM di terze parti in iOS/iPadOS.
"
- },
- "AppInfoBalloonText": {
- "Certificate": {
- "customSubjectName": "CN={{UserName}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US\r\nor\r\nCN={{AAD_Device_ID}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US",
- "keySize": "Selezionare il numero di bit contenuti nella chiave.",
- "keyUsage": "Specificare l'azione crittografica necessaria per lo scambio della chiave pubblica del certificato.",
- "renewalThreshold": "Immettere la percentuale (tra 1 e 99 percento) della durata rimanente del certificato consentita prima che un dispositivo possa richiedere il rinnovo del certificato. Il valore consigliato in Intune è 20%. (1-99)",
- "rootCert": "Scegliere un profilo di certificato della CA radice configurato e assegnato in precedenza. Il certificato della CA deve corrispondere al certificato radice della CA che rilascia il certificato per questo profilo, ovvero per il profilo attualmente in fase di configurazione.",
- "scepServerUrl": "Immettere un URL per il server NDES che rilascia certificati tramite SCEP. L'URL deve essere di tipo HTTPS, ad esempio, https://contoso.com/certsrv/mscep/mscep.dll",
- "scepServerUrls": "Aggiungere uno o più URL per il server NDES che rilascia certificati tramite SCEP. L'URL deve essere di tipo HTTPS, ad esempio, https://contoso.com/certsrv/mscep/mscep.dll",
- "subjectAlternativeName": "Nome alternativo del soggetto",
- "subjectNameFormat": "Formato nome soggetto",
- "validityPeriod": "Quantità di tempo rimanente prima della scadenza del certificato. Immettere un valore uguale o inferiore al periodo di validità indicato nel modello di certificato. L'impostazione predefinita è un anno."
- },
- "appInstallContext": "Specifica il contesto di installazione da associare all'app. Per le app a modalità doppia, selezionare il contesto da usare per l'app. Per tutte le altre app l'opzione è preselezionata in base al pacchetto e non può essere modificata.",
- "autoUpdateMode": "Configura la priorità di aggiornamento per l'app. Seleziona Impostazione predefinita per richiedere che il dispositivo sia connesso al WiFi, che sia in carica e che non sia attivamente in uso prima di aggiornare l'app. Seleziona Priorità alta per aggiornare l'app non appena lo sviluppatore ha pubblicato l'app, indipendentemente dallo stato di addebito, dalla funzionalità WiFi o dall'attività dell'utente finale nel dispositivo. La priorità alta avrà effetto solo sui dispositivi DO.",
- "configurationSettingsFormat": "Testo del formato delle impostazioni di configurazione",
- "ignoreVersionDetection": "Impostare questa opzione su \"Sì\" per le app aggiornate automaticamente dallo sviluppatore dell'app, ad esempio Google Chrome.",
- "ignoreVersionDetectionMacOSLobApp": "Selezionare \"Sì\" per le app che vengono caricate automaticamente dallo sviluppatore dell'app o per verificare solo il valore bundleID dell'app prima dell'installazione. Selezionare \"No\" per verificare il valore bundleID e il numero di versione prima dell'installazione.",
- "installAsManagedMacOSLobApp": "Questa impostazione è applicabile solo a macOS 11 e versioni successive. L'app verrà installata ma non gestita in macOS 10.15 e versioni precedenti.",
- "installContextDropdown": "Selezionare il contesto di installazione appropriato. Il contesto utente installerà l'app solo per l'utente interessato mentre il contesto di dispositivo installerà l'app per tutti gli utenti nel dispositivo.",
- "ldapUrl": "Nome host LDAP in cui i client possono ottenere le chiavi di crittografia pubbliche per i destinatari dei messaggi di posta elettronica. I messaggi verranno crittografati quando è disponibile una chiave. Formati supportati: - ldap.example.com
\r\n- ldap.example.com:123
\r\n- ldap://ldap.example.com
- ldap://ldap.example.com:123
- ldaps://ldap.example.com
\r\n- ldaps://ldap.example.com:123
",
- "permissionsSettings": "Selezionare le autorizzazioni di runtime per l'app associata.",
- "policyAssociatedApp": "Selezionare l'app a cui verrà associato questo criterio.",
- "policyConfigurationSettings": "Selezionare il metodo da usare per definire le impostazioni di configurazione per questo criterio.",
- "policyDescription": "Immettere facoltativamente una descrizione per questo criterio di configurazione.",
- "policyEnrollmentType": "Scegliere se queste impostazioni vengono gestite tramite la gestione dei dispositivi o tramite app create con Intune SDK.",
- "policyName": "Immettere un nome per questo criterio di configurazione.",
- "policyPlatform": "Selezionare la piattaforma a cui verrà applicato questo criterio di configurazione dell'app.",
- "policyProfileType": "Selezionare i tipi di profilo del dispositivo a cui verrà applicato questo profilo di configurazione dell'app",
- "policySMime": "Configurare le impostazioni per la firma e la crittografia S/MIME per Outlook.",
- "sMimeDeployCertsFromIntune": "Specificare se i certificati S/MIME verranno recapitati o meno da Intune per l'uso con Outlook.\r\nIntune può distribuire automaticamente certificati di firma e di crittografia agli utenti tramite il Portale aziendale.",
- "sMimeEnable": "Specificare se i controlli S/MIME sono abilitati o meno durante la composizione di un messaggio di posta elettronica",
- "sMimeEnableAllowChange": "Specificare se l'utente è autorizzato a modificare l'impostazione Abilita S/MIME.",
- "sMimeEncryptAllEmails": "Specificare se tutti i messaggi di posta elettronica devono essere crittografati o meno.\r\nLa crittografia converte i dati in testo crittografato in modo che possano essere letti solo dal destinatario previsto.",
- "sMimeEncryptAllEmailsAllowChange": "Specificare se l'utente è autorizzato a modificare l'impostazione Crittografa tutti i messaggi di posta elettronica.",
- "sMimeEncryptionCertProfile": "Specificare il profilo del certificato per la crittografia della posta elettronica.",
- "sMimeSignAllEmails": "Specificare se tutti i messaggi di posta elettronica devono essere firmati o meno.\r\nUna firma digitale verifica l'autenticità del messaggio di posta elettronica e assicura che i contenuti non siano stati manomessi durante il transito.",
- "sMimeSignAllEmailsAllowChange": "Specificare se l'utente è autorizzato a modificare l'impostazione Firma tutti i messaggi di posta elettronica.",
- "sMimeSigningCertProfile": "Specificare il profilo del certificato per la firma della posta elettronica.",
- "sMimeUserNotificationType": "Metodo per segnalare agli utenti che è necessario aprire il Portale aziendale per recuperare certificati S/MIME per Outlook."
- },
- "WindowsQualityUpdateDaysUntilForcedReboot": {
- "oneDay": "1 giorno",
- "twoDays": "2 giorni",
- "zeroDays": "0 giorni"
- },
- "Autopilot": {
- "AssignResourceAccount": {
- "createNewCommandMenu": "Crea nuovo",
- "createNewResourceAccountInfo": "\r\nÈ possibile creare un nuovo account della risorsa durante la registrazione. L'account della risorsa verrà aggiunto immediatamente alla tabella Account della risorsa, ma sarà attivo solo dopo la registrazione del dispositivo e la verifica della sottoscrizione di Surface Hub. Altre informazioni sugli account della risorsa
\r\n ",
- "createNewResourceTitle": "Crea un nuovo account della risorsa",
- "deviceNameInvalid": "Il formato del nome dispositivo non è valido",
- "deviceNameRequired": "Il nome del dispositivo è obbligatorio",
- "editResourceAccountLabel": "Modifica",
- "selectExistingCommandMenu": "Seleziona esistente"
- },
- "Device": {
- "ComputerName": {
- "validFormat": "I nomi possono contenere al massimo 15 caratteri e possono includere lettere (a-z, A-Z), numeri (0-9) e trattini. I nomi non devono contenere solo numeri. I nomi non possono includere uno spazio vuoto."
- },
- "Header": {
- "addressableUserName": "Nome descrittivo dell'utente",
- "azureADDevice": "Dispositivo di Azure AD associato",
- "batch": "Tag di gruppo",
- "dateAssigned": "Data di assegnazione",
- "deviceDisplayName": "Nome del dispositivo",
- "deviceName": "Nome del dispositivo",
- "deviceUseType": "Tipo di uso del dispositivo",
- "enrollmentState": "Stato della registrazione",
- "intuneDevice": "Dispositivo di Intune associato",
- "lastContacted": "Ultimo contatto",
- "make": "Produttore",
- "model": "Modello",
- "profile": "Profilo assegnato",
- "profileStatus": "Stato del profilo",
- "purchaseOrderId": "Ordine d'acquisto",
- "resourceAccount": "Account della risorsa",
- "serialNumber": "Numero di serie",
- "userPrincipalName": "Utente"
- }
- },
- "DeviceUseType": {
- "meetingAndPresentation": "Riunione e presentazione",
- "teamCollaboration": "Collaborazione tra team"
- },
- "Devices": {
- "featureDescription": "Windows Autopilot consente di personalizzare la Configurazione guidata per gli utenti.",
- "importErrorStatus": "Alcuni dispositivi non sono stati importati. Per altre informazioni, fare clic qui.",
- "importPendingStatus": "L'importazione è in corso. Tempo trascorso: {0} min. Questo processo può richiedere fino a {1} min."
- },
- "DirectoryService": {
- "activeDirectoryAD": "Aggiunto ad Azure AD ibrido",
- "activeDirectoryADLabel": "Azure AD ibrido con Autopilot",
- "azureAD": "Aggiunto ad Azure AD",
- "unknownType": "Tipo sconosciuto"
- },
- "Filter": {
- "enrollmentState": "Stato",
- "profile": "Stato del profilo"
- },
- "OOBE": {
- "AddressableUserName": {
- "validateEmpty": "Il nome descrittivo non può essere vuoto."
- },
- "ApplyComputerNameTemplate": {
- "infoBalloon": "Creare un modello di denominazione per aggiungere nomi ai dispositivi durante la registrazione.",
- "label": "Applica il modello di nome di dispositivo"
- },
- "ApplyComputerNameTemplateDisabled": {
- "label": "Per i tipi di profili di distribuzione Autopilot aggiunti ad Azure AD ibrido i nomi dei dispositivi vengono definiti in base alle impostazioni specificate nella configurazione dell'aggiunta al dominio."
- },
- "ComputerNameTemplate": {
- "emptyValue": "Società-%RAND:4%",
- "label": "Immettere un nome",
- "noDisallowedChars": "Il nome deve contenere solo caratteri alfanumerici, trattini, %SERIAL% o %RAND:x%",
- "serialLength": "Non è possibile usare più di 7 caratteri con %SERIAL%",
- "validateLessThan15Chars": "Il nome non può contenere più di 15 caratteri",
- "validateNoSpaces": "I nomi computer non possono contenere spazi",
- "validateNotAllNumbers": "Il nome deve contenere anche lettere e/o trattini",
- "validateNotEmpty": "Il nome non può essere vuoto",
- "validateOnlyOneMacro": "Il nome deve contenere solo una delle macro %SERIAL% oppure %RAND:x%"
- },
- "ConfigureComputerNameTemplate": {
- "description": "Creare un nome univoco per i dispositivi. I nomi devono contenere al massimo 15 caratteri e possono contenere lettere (a-z, A-Z), numeri (0-9) e trattini. I nomi non devono contenere solo numeri. I nomi non possono includere uno spazio vuoto. Usare la macro %SERIAL% per aggiungere un numero di serie specifico per l'hardware. In alternativa, usare la macro %RAND:x% per aggiungere una stringa casuale di numeri, dove x equivale al numero di cifre da aggiungere."
- },
- "EnableWhiteGlove": {
- "infoBalloon": "Consentire di premere 5 volte il tasto Windows per eseguire OOBE senza autenticazione utente per registrare il dispositivo ed effettuare il provisioning di tutte le app e di tutte le impostazioni relative al contesto di sistema. Le app e le impostazioni relative al contesto utente verranno recapitate all'accesso dell'utente.",
- "label": "Consenti distribuzione di cui è stato eseguito il pre-provisioning"
- },
- "HybridAzureADSkipConnectivityCheck": {
- "infoBalloon": "Il flusso di aggiunta ad Azure AD ibrido di Autopilot continuerà anche se non stabilisce alcuna connettività con il controller di dominio durante la Configurazione guidata.",
- "label": "Ignora la verifica della connettività di AD (anteprima)"
- },
- "accountType": "Tipo di account utente",
- "accountTypeInfo": "Specificare se gli utenti sono amministratori o utenti standard nel dispositivo. Si noti che questa impostazione non è applicabile ad account di tipo Amministratore globale o Amministratore dell'azienda. Questi account non possono essere utenti standard perché possono accedere a tutte le funzionalità amministrative di Azure AD.",
- "configOOBEInfo": "\r\nConfigurare la Configurazione guidata per i dispositivi di Autopilot\r\n
",
- "configureDevice": "Modalità di distribuzione",
- "configureDeviceHintForSurfaceHub2": "Autopilot supporta solo la modalità di distribuzione automatica per Surface Hub 2. Questa modalità non associa l'utente al dispositivo registrato, quindi non richiede credenziali utente.",
- "configureDeviceHintForWindowsPC": "\r\n La modalità di distribuzione consente di determinare se un utente deve immettere le credenziali per il provisioning del dispositivo.\r\n
\r\n \r\n - \r\n Definita dall'utente: i dispositivi vengono associati all'utente che registra il dispositivo e le credenziali utente sono necessarie per il provisioning del dispositivo\r\n
\r\n - \r\n Distribuzione automatica (anteprima): i dispositivi non vengono associati all'utente che registra il dispositivo e le credenziali utente non sono necessarie per il provisioning del dispositivo\r\n
\r\n
",
- "createSurfaceHub2Info": "Configurare le impostazioni di registrazione di Autopilot per i dispositivi Surface Hub 2. Per impostazione predefinita, Autopilot consente di evitare l'autenticazione utente durante la Configurazione guidata. Altre informazioni su Windows Autopilot per Surface Hub 2.",
- "createWindowsPCInfo": "\r\n\r\nLe opzioni seguenti vengono abilitate automaticamente per i dispositivi di Autopilot in modalità di distribuzione automatica:\r\n
\r\n\r\n - \r\n Ignora la selezione per l'utilizzo aziendale o personale\r\n
\r\n - \r\n Ignora la registrazione OEM e la configurazione di OneDrive\r\n
\r\n - \r\n Ignora l'autenticazione utente nella Configurazione guidata\r\n
\r\n
",
- "endUserDevice": "Definita dall'utente",
- "hideEscapeLink": "Nascondi le opzioni di cambio di account",
- "hideEscapeLinkInfo": "Le opzioni per cambiare account e iniziare con un account diverso vengono visualizzate, rispettivamente, nella pagina di accesso dell'azienda e nella pagina dell'errore di dominio. Per nascondere queste opzioni, è necessario configurare le informazioni personalizzate distintive dell'azienda in Azure Active Directory (richiede Windows 10, 1809 o versioni successive o Windows 11).",
- "info": "Le impostazioni del profilo di AutoPilot definiscono la Configurazione guidata visualizzata agli utenti al primo avvio di Windows. ",
- "language": "Lingua (area geografica)",
- "languageInfo": "Specificare la lingua e l'area geografica che verranno usate.",
- "licenseAgreement": "Condizioni di licenza software Microsoft",
- "licenseAgreementInfo": "Specificare se visualizzare le condizioni di licenza agli utenti.",
- "plugAndForgetDevice": "Distribuzione automatica (anteprima)",
- "plugAndForgetGA": "Distribuzione automatica",
- "privacySettingWarning": "Il valore predefinito per la raccolta di dati di diagnostica è stato modificato per i dispositivi che eseguono Windows 10, versione 1903 e successive o Windows 11. ",
- "privacySettings": "Impostazioni di privacy",
- "privacySettingsInfo": "Specificare se visualizzare le impostazioni di privacy agli utenti.",
- "showCortanaConfigurationPage": "Configurazione di Cortana",
- "showCortanaConfigurationPageInfo": "Se si sceglie Mostra, verrà abilitata l'introduzione della configurazione di Cortana all'avvio.",
- "skipEULAWarning": "Informazioni importanti su come nascondere le condizioni di licenza",
- "skipKeyboardSelection": "Configura automaticamente la tastiera",
- "skipKeyboardSelectionInfo": "Se questa opzione è true, la pagina di selezione della tastiera viene ignorata se è impostata la lingua.",
- "subtitle": "Profili di AutoPilot",
- "title": "Configurazione guidata",
- "useOSDefaultLanguage": "Impostazione predefinita del sistema operativo",
- "userSelect": "Selezione utente"
- },
- "Sync": {
- "lastRequestedLabel": "Ultima richiesta di sincronizzazione",
- "lastSuccessfulLabel": "Ultima sincronizzazione riuscita",
- "syncInProgress": "È in corso la sincronizzazione. Ricontrollare tra poco.",
- "syncInitiated": "La sincronizzazione delle impostazioni di AutoPilot è stata avviata.",
- "syncSettingsTitle": "Sincronizza le impostazioni di AutoPilot"
- },
- "Title": {
- "devices": "Dispositivi di Windows AutoPilot"
- },
- "Tooltips": {
- "addressableUserName": "Nome del messaggio di saluto visualizzato durante la configurazione del dispositivo.",
- "azureADDevice": "Passare ai dettagli del dispositivo per il dispositivo associato. N/D indica che non sono presenti dispositivi associati.",
- "batch": "Attributo di stringa che può essere usato per identificare un gruppo di dispositivi. Il campo Tag di gruppo di Intune è mappato all'attributo OrderID nei dispositivi di Azure AD.",
- "dateAssigned": "Timestamp relativo all'ora di assegnazione del profilo al dispositivo.",
- "deviceDisplayName": "Configura un nome univoco per il dispositivo. Il nome verrà ignorato nelle distribuzioni aggiunte ad Azure AD ibrido. Il nome del dispositivo deriva comunque dal profilo di aggiunta al dominio per i dispositivi di Azure AD ibrido.",
- "deviceName": "Nome visualizzato quando un utente ha provato a individuare il dispositivo e a stabilire una connessione.",
- "deviceUseType": " Il dispositivo verrà configurato in base alle opzioni selezionate. È comunque possibile modificarle in seguito in Impostazioni.\r\n \r\n - Windows Hello non è attivato per le riunioni e le presentazioni e i dati vengono rimossi dopo ogni sessione.\r\n
\r\n - Windows Hello è attivato per la collaborazione tra team e i profili vengono salvati per un accesso più rapido
\r\n
",
- "enrollmentState": "Consente di specificare se il dispositivo è stato registrato.",
- "intuneDevice": "Passare ai dettagli del dispositivo per il dispositivo associato. N/D indica che non sono presenti dispositivi associati.",
- "lastContacted": "Timestamp relativo all'ora in cui il dispositivo è stato contattato per l'ultima volta.",
- "make": "Produttore del dispositivo selezionato.",
- "model": "Modello del dispositivo selezionato",
- "profile": "Nome del profilo assegnato al dispositivo.",
- "profileStatus": "Consente di specificare se un profilo è assegnato al dispositivo.",
- "purchaseOrderId": "ID dell'ordine d'acquisto",
- "resourceAccount": "Identità del dispositivo o nome dell'entità utente.",
- "serialNumber": "Numero di serie del dispositivo selezionato.",
- "userPrincipalName": "Utente per precompilare l'autenticazione durante la configurazione del dispositivo."
- },
- "allDevices": "Tutti i dispositivi",
- "allDevicesAlreadyAssignedError": "Un profilo di Autopilot è già assegnato a Tutti i dispositivi.",
- "assignFailedDescription": "Non è stato possibile aggiornare le assegnazioni per {0}.",
- "assignFailedTitle": "Non è stato possibile aggiornare le assegnazioni dei profili di Autopilot.",
- "assignSuccessDescription": "Le assegnazioni per {0} sono state aggiornate.",
- "assignSuccessTitle": "Le assegnazioni dei profili di Autopilot sono state aggiornate.",
- "assignSufaceHub2ProfileNextStep": "Passaggi successivi per la distribuzione",
- "assignSurfaceHub2ProfileToDeviceGroup": "1. Assegnare questo profilo ad almeno un gruppo di dispositivi",
- "assignSurfaceHub2ProfileToResourceAccount": "2. Assegnare un account della risorsa a ogni dispositivo Surface Hub in cui si distribuisce il profilo",
- "assignedDevicesCount": "Dispositivi assegnati",
- "assignedDevicesResourceAccountDescription": "Per distribuire questo profilo in un dispositivo, è necessario assegnare al dispositivo un account della risorsa. Selezionare un dispositivo alla volta per assegnare un account della risorsa esistente o crearne uno nuovo. Altre informazioni sugli account della risorsa
",
- "assignedDevicesResourceAccountStatusBarMessage": "Questa tabella elenca solo i dispositivi Surface Hub 2 a cui è stato assegnato il profilo.",
- "assigningDescription": "Aggiornamento di assegnazioni per {0}.",
- "assigningTitle": "Aggiornamento di assegnazioni dei profili di Autopilot.",
- "cannotDeleteMessage": "Questo profilo è assegnato ai gruppi. È necessario annullare l'assegnazione di tutti i gruppi da questo profilo prima di poterlo eliminare.",
- "cannotDeleteTitle": "Non è possibile eliminare {0}",
- "createdDateTime": "Ora di creazione",
- "deleteMessage": "Se si elimina questo profilo di AutoPilot, eventuali dispositivi assegnati al profilo avranno stato Non assegnato.",
- "deleteMessageWithPolicySet": "{0} è incluso in uno o più set di criteri. Se si elimina {0}, non sarà più possibile assegnarlo tramite questi set di criteri.",
- "deleteTitle": "Eliminare questo profilo?",
- "description": "Descrizione",
- "deviceType": "Tipo di dispositivo",
- "deviceUse": "Uso del dispositivo",
- "directoryServiceHintForSurfaceHub2": " \r\n Autopilot supporta solo dispositivi aggiunti ad Azure AD per Surface Hub 2. Specificare il modo in cui i dispositivi vengono aggiunti ad Active Directory (AD) nell'organizzazione.\r\n
\r\n \r\n - \r\n Aggiunto ad Azure AD: solo cloud senza istanza locale di Windows Server Active Directory.\r\n
\r\n
\r\n ",
- "directoryServiceHintForWindowsPC": "\r\n \r\n Specificare il modo in cui i dispositivi vengono aggiunti ad Active Directory (AD) nell'organizzazione:\r\n
\r\n \r\n - \r\n Aggiunta ad Azure AD: solo cloud senza istanza locale di Windows Server Active Directory\r\n
\r\n
\r\n ",
- "getAssignedDevicesCountError": "Si è verificato un errore durante il recupero del numero di dispositivi assegnati.",
- "getAssignmentsError": "Si è verificato un errore durante il recupero delle assegnazioni dei profili di Autopilot.",
- "harvestDeviceId": "Converti tutti i dispositivi interessati in Autopilot",
- "harvestDeviceIdDescription": "Per impostazione predefinita, questo profilo può essere applicato solo ai dispositivi di Autopilot sincronizzati dal servizio Autopilot.",
- "harvestDeviceIdInfo": "\r\n Selezionare Sì per registrare tutti i dispositivi interessati in Autopilot, se non sono già stati registrati. Alla successiva Configurazione guidata di Windows, i dispositivi passeranno allo scenario di Autopilot assegnato.\r\n
\r\n Si noti che determinati scenari di Autopilot richiedono build minime specifiche di Windows. Assicurarsi che il dispositivo abbia la build minima necessaria per completare lo scenario.\r\n
\r\n La rimozione del profilo non rimuoverà i dispositivi interessati da Autopilot. Per rimuovere un dispositivo da Autopilot, usare la visualizzazione Dispositivi di Windows Autopilot.\r\n ",
- "harvestDeviceIdWarning": "Dopo la conversione, è possibile ripristinare le impostazioni precedenti dei dispositivi di AutoPilot solo eliminandoli dall'elenco di dispositivi di AutoPilot.",
- "holoLensCommandMenu": "HoloLens",
- "info": "I profili di Windows AutoPilot Deployment consentono di personalizzare la Configurazione guidata per i dispositivi.",
- "invalidProfileNameMessage": "Il carattere \"{0}\" non è consentito",
- "joinTypeLabel": "Aggiungi ad Azure AD come",
- "lastModifiedDateTime": "Ultima modifica:",
- "name": "Nome",
- "noAutopilotProfile": "Nessun profilo di AutoPilot",
- "notEnoughPermissionAssignedError": "Le autorizzazioni non sono sufficienti per assegnare questo profilo a uno o più gruppi selezionati. Contattare l'amministratore.",
- "profile": "profilo",
- "resourceAccountStatusBarMessage": "È necessario un account della risorsa per ogni dispositivo Surface Hub 2 in cui viene distribuito questo profilo. Fare clic per altre informazioni.",
- "selectServices": "Selezionare il servizio directory a cui verranno aggiunti i dispositivi",
- "surfaceHub2CommandMenu": "Surface Hub 2",
- "surfaceHub2SCommandMenu": "Surface Hub 2S",
- "userAffinityLabel": "Modalità di distribuzione",
- "windowsPCCommandMenu": "PC Windows",
- "directoryServiceLabel": "Aggiungi ad Azure AD come"
- },
- "AppInformationTab": {
- "Error": {
- "multipleChildApps": "Un'app line-of-business macOS può essere installata come gestita solo quando il pacchetto caricato contiene una singola app."
- },
- "Info": {
- "AppStoreUrl": {
- "android": "Immettere il collegamento all'elenco di app in Google Play Store. Ad esempio:",
- "androidLink": "https://play.google.com/store/apps/details?id=com.microsoft.office.outlook",
- "windows": "Immettere il collegamento all'elenco di app in Microsoft Store. Ad esempio:",
- "windowsLink": "https://www.microsoft.com/en-us/p/microsoft-to-do-lists-tasks-reminders/9nblggh5r558"
- },
- "appPackageFile": "File che contiene l'app in un formato che può essere trasferito localmente in un dispositivo. I tipi di pacchetto valido includono: Android (APK), iOS (IPA), macOS (INTUNEMAC), Windows (con estensioni msi, appx, appxbundle, msix e msixbundle).",
- "applicableDeviceType": "Selezionare i tipi di dispositivo che possono installare questa app.",
- "category": "È possibile definire una categoria per l'app per semplificare l'ordinamento e l'individuazione da parte degli utenti nel Portale aziendale. È possibile scegliere più categorie.",
- "categoryLink": "https://docs.microsoft.com/en-us/intune/apps/apps-add#create-and-edit-categories-for-apps",
- "description": "Consente agli utenti dei dispositivi di ottenere informazioni sull'app e/o sulle operazioni consentite nell'app. Questa descrizione sarà visibile agli utenti nel Portale aziendale.",
- "developer": "Nome della società o della persona che ha sviluppato l'app. Queste informazioni saranno visibili agli utenti che hanno eseguito l'accesso all'interfaccia di amministrazione.",
- "displayVersion": "Versione dell'app. Questa informazioni sarà visibile agli utenti nel Portale aziendale.",
- "infoUrl": "È possibile fornire agli utenti un collegamento a un sito Web o a documentazione che include altre informazioni sull'app. L'URL di informazioni sarà visibile agli utenti nel Portale aziendale.",
- "isFeatured": "Le app in primo piano sono disposte in una posizione prioritaria nel Portale aziendale per consentire agli utenti di raggiungerle rapidamente.",
- "learnMore": "Altre informazioni",
- "logo": "Caricare un logo associato all'app. Questo logo verrà visualizzato accanto all'app nel Portale aziendale.",
- "macOSDmgAppPackageFile": "File che contiene l'app in un formato che può essere scaricato localmente in un dispositivo. Tipo di pacchetto valido: .dmg.",
- "minOperatingSystem": "Selezionare la versione di sistema operativo meno recente in cui è possibile installare l'app. Se si assegna l'app a un dispositivo con un sistema operativo precedente, non verrà installata.",
- "name": "Aggiungere un nome per l'app. Il nome sarà visibile nell'elenco di app di Intune e agli utenti nel Portale aziendale.",
- "notes": "Aggiungere altre note sull'app. Le note saranno visibili alle persone che hanno eseguito l'accesso all'interfaccia di amministrazione.",
- "owner": "Nome della persona dell'organizzazione che gestisce le licenze o è il punto di contatto per questa app. Il nome sarà visibile alle persone che hanno eseguito l'accesso all'interfaccia di amministrazione.",
- "packageName": "Contattare il produttore del dispositivo per ottenere il nome del pacchetto dell'app. Nome di pacchetto di esempio: com.example.app",
- "privacyUrl": "Specificare un collegamento per le persone che vogliono altre informazioni sulle impostazioni di privacy e sulle condizioni dell'app. L'URL privacy sarà visibile agli utenti nel Portale aziendale.",
- "publisher": "Nome dello sviluppatore o della società che distribuisce l'app. Queste informazioni saranno visibili agli utenti nel Portale aziendale.",
- "selectApp": "Cercare in App Store le app di iOS Store da distribuire con Intune.",
- "useManagedBrowser": "Se necessario, quando un utente apre l'app Web, tale app verrà aperta in un browser protetto da Intune, tra cui Microsoft Edge o Intune Managed Browser. Questa impostazione è applicabile a dispositivi iOS e Android.",
- "useManagedBrowserLink": "https://docs.microsoft.com/en-us/intune/apps/app-configuration-managed-browser",
- "win32AppPackageFile": "File contenente l'app in un formato che può essere trasferito localmente in un dispositivo. Tipo di pacchetto valido: .intunewin."
- },
- "descriptionPreview": "Anteprima",
- "descriptionRequired": "La descrizione è obbligatoria.",
- "editDescription": "Modifica descrizione",
- "name": "Informazioni sull'app",
- "nameForOfficeSuitApp": "Informazioni sulla famiglia di prodotti dell'app"
- },
+ "Columns": {
+ "codeType": "Tipo di codice",
+ "returnCode": "Codice restituito"
+ },
+ "bladeTitle": "Codici restituiti",
+ "gridAriaLabel": "Codici restituiti",
+ "header": "Specificare i codici restituiti per indicare il comportamento successivo all'installazione:",
+ "onAddAnnounceMessage": "Codice restituito all'aggiunta dell'elemento {0} di {1}",
+ "onDeleteSuccess": "Il codice restituito {0} è stato eliminato",
+ "returnCodeAlreadyUsedValidation": "Il codice restituito è già in uso.",
+ "returnCodeMustBeIntegerValidation": "Il codice restituito deve essere un numero intero.",
+ "returnCodeShouldBeAtLeast": "Il codice restituito deve essere almeno {0}.",
+ "returnCodeShouldBeAtMost": "Il codice restituito deve essere al massimo {0}.",
+ "selectorLabel": "Codici restituiti"
+ },
"NotificationMessage": {
"NotificationMessageTemplatesTab": {
"arabic": "Arabo",
@@ -10516,84 +10079,599 @@
"localeLabel": "Impostazioni locali",
"isDefaultLocale": "È predefinito"
},
- "Win32Program": {
- "DeviceRestartBehaviorOptions": {
- "allow": "L'installazione dell'app può forzare il riavvio del dispositivo",
- "basedOnReturnCode": "Determinare il comportamento in base ai codici restituiti",
- "force": "Intune forzerà il riavvio obbligatorio del dispositivo",
- "suppress": "Nessuna azione specifica"
- },
- "RunAsAccountOptions": {
- "system": "Sistema",
- "user": "Utente"
- },
- "bladeTitle": "Programma",
- "deviceRestartBehavior": "Comportamento riavvio dispositivo",
- "deviceRestartBehaviorTooltip": "Selezionare il comportamento di riavvio del dispositivo dopo la corretta installazione dell'app. Selezionare 'Determina il comportamento in base ai codici restituiti' per riavviare il dispositivo in base alle impostazioni di configurazione dei codici restituiti. Selezionare 'Nessuna azione specifica' per eliminare i riavvii del dispositivo durante l'installazione dell'app per le app basate su MSI. Selezionare 'L'installazione dell'app può forzare il riavvio del dispositivo' per consentire il completamento dell'installazione dell'app senza eliminare i riavvii. Selezionare 'Intune forzerà il riavvio obbligatorio del dispositivo' per riavviare sempre il dispositivo dopo la corretta installazione dell'app.",
- "header": "Specificare i comandi per l'installazione e la disinstallazione di questa app:",
- "installCommand": "Comando di installazione",
- "installCommandMaxLengthErrorMessage": "Il comando di installazione non può superare la lunghezza massima consentita di 1024 caratteri.",
- "installCommandTooltip": "Riga di comando di installazione completa usata per installare questa app.",
- "runAs32Bit": "Esegui i comandi di installazione e disinstallazione in un processo a 32 bit nei client a 64 bit",
- "runAs32BitTooltip": "Selezionare 'Sì' per installare e disinstallare l'app in un processo a 32 bit nei client a 64 bit. Selezionare 'No' (impostazione predefinita) per installare e disinstallare l'app in un processo a 64 bit nei client a 64 bit. I client a 32 bit useranno sempre un processo a 32 bit.",
- "runAsAccount": "Comportamento di installazione",
- "runAsAccountTooltip": "Selezionare 'Sistema' per installare l'app per tutti gli utenti, se questa opzione è supportata. Selezionare 'Utente' per installare l'app per l'utente connesso al dispositivo. Per le app MSI con doppio scopo, le modifiche impediranno il completamento di aggiornamenti e disinstallazioni fino al ripristino del valore applicato al dispositivo al momento dell'installazione originale.",
- "selectorLabel": "Programma",
- "uninstallCommand": "Comando di disinstallazione",
- "uninstallCommandTooltip": "Riga di comando di disinstallazione completa usata per disinstallare questa app."
- },
- "OutlookAppConfigSettings": {
- "AllowUserToChangeSetting": {
- "title": "Consenti all'utente di cambiare impostazione",
- "tooltip": "Specificare se l'utente è autorizzato a modificare l'impostazione."
- },
- "AllowWorkAccounts": {
- "title": "Consenti solo account aziendali o dell'istituto di istruzione",
- "tooltip": " Se si abilita questa impostazione, gli utenti non potranno aggiungere account di posta elettronica personali e account di archiviazione in Outlook. Se l'utente aggiunge un account personale a Outlook, verrà richiesta la rimozione dell'account personale. Se l'utente non rimuove l'account personale, non sarà possibile aggiungere l'account aziendale o dell'istituto di istruzione."
- },
- "BlockExternalImages": {
- "title": "Blocca le immagini esterne",
- "tooltip": "Quando il blocco delle immagini esterne è abilitato, l'app impedirà il download di immagini ospitate su Internet incorporate nel corpo del messaggio. Se questa opzione non viene configurata, l'impostazione predefinita per l'app è Off"
- },
- "ConfigureEmail": {
- "title": "Configura le impostazioni dell'account di posta elettronica"
- },
- "DefaultAppSignatureSetting": {
- "Tooltip": {
- "android": "L'opzione Firma dell'app predefinita indica se l'app userà \"Ottieni Outlook per Android\" come firma predefinita durante la composizione del messaggio. Se l'impostazione è configurata come Off, la firma predefinita non verrà usata. Gli utenti possono tuttavia aggiungere la propria firma.\r\n\r\nSe l'opzione è impostata su Non configurata, l'impostazione predefinita dell'app è On.",
- "iOS": "L'opzione Firma dell'app predefinita indica se l'app userà \"Ottieni Outlook per iOS\" come firma predefinita durante la composizione del messaggio. Se l'impostazione è configurata come Off, la firma predefinita non verrà usata. Gli utenti possono tuttavia aggiungere la propria firma.\r\n\r\nSe l'opzione è impostata su Non configurata, l'impostazione predefinita dell'app è On."
- },
- "title": "Firma dell'app predefinita"
- },
- "OfficeFeedReplies": {
- "title": "Feed di individuazione",
- "tooltip": "Il feed di individuazione espone i file di Office a cui si accede più spesso. Per impostazione predefinita, questo feed viene abilitato quando Delve è abilitato per l'utente. Se non si configura questa opzione, l'impostazione predefinita dell'app è On."
- },
- "OrganizeMailByThread": {
- "title": "Organizza i messaggi in base al thread",
- "tooltip": "Il comportamento predefinito in Outlook prevede l'aggregazione delle conversazioni tramite posta elettronica in una visualizzazione di conversazioni in thread. Se questa impostazione è disabilitata, Outlook visualizzerà ogni messaggio individualmente e non raggrupperà i messaggi in base al thread."
- },
- "PlayMyEmails": {
- "title": "Riproduci i messaggi di posta elettronica",
- "tooltip": "La funzionalità Riproduci i messaggi di posta elettronica non è abilitata per impostazione predefinita nell'app, ma viene promossa a utenti idonei tramite un banner nella Posta in arrivo. Se questa opzione è impostata su Off, la funzionalità non verrà promossa a utenti idonei nell'app. Gli utenti possono scegliere di abilitare manualmente l'opzione Riproduci i messaggi di posta elettronica dall'app, anche quando questa funzionalità è impostata su Off. Se questa opzione è impostata su Non configurata, l'impostazione predefinita per l'app è On e la funzionalità verrà promossa agli utenti idonei."
- },
- "SuggestedReplies": {
- "title": "Risposte suggerite",
- "tooltip": "Quando si apre un messaggio, è possibile che Outlook suggerisca risposte sotto il messaggio. Se si seleziona una risposta suggerita, è possibile modificarla prima dell'invio."
- },
- "SyncCalendars": {
- "title": "Sincronizza i calendari",
- "tooltip": "Determinare se gli utenti possono sincronizzare il calendario di Outlook con l'app e il database del calendario nativo."
- },
- "TextPredictions": {
- "title": "Completamenti del testo",
- "tooltip": "Outlook può suggerire parole e frasi durante la composizione di messaggi. Quando Outlook offre un suggerimento, scorrere rapidamente per accettarlo. Quando questa opzione è impostata su Non configurato, l'impostazione predefinita dell'app sarà impostata su On."
+ "WindowsQualityUpdateProfile": {
+ "Details": {
+ "DaysUntilForcedReboot": {
+ "label": "Numero di giorni di attesa prima del riavvio forzato"
+ },
+ "Description": {
+ "label": "Descrizione"
+ },
+ "Name": {
+ "label": "Nome"
+ },
+ "QualityUpdateRelease": {
+ "label": "Accelera l'installazione degli aggiornamenti qualitativi se la versione del sistema operativo è precedente a:"
+ },
+ "bladeTitle": "Aggiornamenti qualitativi Windows 10 e versioni successive (anteprima)",
+ "loadError": "Il caricamento non è riuscito."
+ },
+ "TabName": {
+ "qualityUpdateSettings": "Impostazioni"
+ },
+ "infoBoxText": "L'unico controllo dedicato per gli aggiornamenti qualitativi, oltre al criterio Fasi di aggiornamento esistente per Windows 10 e versioni successive, consiste nella possibilità di accelerare gli aggiornamenti qualitativi per dispositivi che non rispettano un livello specificato di patch. Controlli aggiuntivi saranno disponibili in futuro.",
+ "warningBoxText": "Benché l'accelerazione degli aggiornamenti software possa contribuire alla riduzione del tempo richiesto per ottenere la conformità, quando necessario, ha un impatto più ampio sulla produttività degli utenti finali. La probabilità che venga eseguito un riavvio forzato durante l'orario di ufficio viene incrementata significativamente."
+ },
+ "TermsOfUse": {
+ "Languages": {
+ "addLanguage": "Add language",
+ "af": "Afrikaans",
+ "am": "Amharic",
+ "arSA": "Arabic (Saudi Arabia)",
+ "as": "Assamese",
+ "az": "Azerbaijani",
+ "be": "Belarusian",
+ "bg": "Bulgarian",
+ "bn": "Bangla",
+ "bnIN": "Bangla (India)",
+ "bs": "Bosnian",
+ "ca": "Catalan",
+ "caESvalencia": "Valencian (Spain)",
+ "cs": "Czech",
+ "cy": "Welsh",
+ "da": "Danish",
+ "de": "German",
+ "default": "Default",
+ "defaultDetailsTag": "{0} (Default)",
+ "el": "Greek",
+ "en": "English",
+ "enGB": "English (United Kingdom)",
+ "es": "Spanish",
+ "esMX": "Spanish (Mexico)",
+ "et": "Estonian",
+ "eu": "Basque",
+ "fa": "Persian",
+ "fi": "Finnish",
+ "fil": "Filipino",
+ "fr": "French",
+ "frCA": "French (Canada)",
+ "ga": "Irish",
+ "gd": "Scottish Gaelic",
+ "gl": "Galician",
+ "gu": "Gujarati",
+ "ha": "Hausa",
+ "he": "Hebrew",
+ "hi": "Hindi",
+ "hr": "Croatian",
+ "hu": "Hungarian",
+ "hy": "Armenian",
+ "id": "Indonesian",
+ "ig": "Igbo",
+ "is": "Icelandic",
+ "it": "Italian",
+ "ja": "Japanese",
+ "ka": "Georgian",
+ "kk": "Kazakh",
+ "km": "Khmer",
+ "kn": "Kannada",
+ "ko": "Korean",
+ "kok": "Konkani",
+ "kuArab": "Central Kurdish (Arabic)",
+ "ky": "Kyrgyz",
+ "languageOptions": "Language Options",
+ "lb": "Luxembourgish",
+ "lo": "Lao",
+ "lt": "Lithuanian",
+ "lv": "Latvian",
+ "mi": "Maori",
+ "mk": "Macedonian",
+ "ml": "Malayalam",
+ "mn": "Mongolian",
+ "mr": "Marathi",
+ "ms": "Malay",
+ "mt": "Maltese",
+ "ne": "Nepali",
+ "nl": "Dutch",
+ "nnNO": "Norwegian, Nynorsk (Norway)",
+ "no": "Norwegian",
+ "notSpecified": "Language not specified",
+ "nso": "Sesotho sa Leboa",
+ "or": "Odia",
+ "paArabPK": "Punjabi (Islamic Republic of Pakistan)",
+ "paIN": "Punjabi (India)",
+ "pl": "Polish",
+ "prs": "Dari",
+ "ptBR": "Portuguese (Brazil)",
+ "ptPT": "Portuguese (Portugal)",
+ "quz": "Quechua",
+ "ro": "Romanian",
+ "ru": "Russian",
+ "rw": "Kinyarwanda",
+ "sd": "Sindhi",
+ "si": "Sinhala",
+ "sk": "Slovak",
+ "sl": "Slovenian",
+ "sq": "Albanian",
+ "srCyrlBA": "Serbian (Cyrillic, Bosnia and Herzegovina)",
+ "srCyrlRS": "Serbian (Cyrillic, Serbia)",
+ "srLatnRS": "Serbian (Latin, Serbia)",
+ "sv": "Swedish",
+ "sw": "Kiswahili",
+ "ta": "Tamil",
+ "te": "Telugu",
+ "tg": "Tajik",
+ "th": "Thai",
+ "ti": "Tigrinya",
+ "tk": "Turkmen",
+ "tn": "Setswana",
+ "tr": "Turkish",
+ "tt": "Tatar",
+ "ug": "Uyghur",
+ "uk": "Ukrainian",
+ "ur": "Urdu",
+ "uz": "Uzbek",
+ "vi": "Vietnamese",
+ "wo": "Wolof",
+ "xh": "isiXhosa",
+ "yo": "Yoruba",
+ "zhHans": "Chinese (Simplified)",
+ "zhHant": "Chinese (Traditional)",
+ "zu": "isiZulu"
+ },
+ "AcceptanceExpirationFrequency": {
+ "annually": "Annually",
+ "biannually": "Bi-annually",
+ "monthly": "Monthly",
+ "quarterly": "Quarterly"
},
- "ThemesEnabled": {
- "title": "Temi abilitati",
- "tooltip": "Specificare se l'utente è autorizzato a usare un tema visivo personalizzato."
- }
- },
+ "Wizard": {
+ "AgreementTargetEntityScope": {
+ "NotSelected": {
+ "label": "None selected"
+ },
+ "selectEntityTitle": "Select group",
+ "title": "Select group"
+ },
+ "PolicyFile": {
+ "Languages": {
+ "Empty": {
+ "default": "Select default language",
+ "nonDefault": "Select a language"
+ }
+ },
+ "Validations": {
+ "duplicateLanguage": "Oops, {0} appears to be selected multiple times. Language selection must be unique."
+ }
+ },
+ "PolicyTemplate": {
+ "InfoBox": {
+ "allGuestsAllApps": "A conditional access policy will be created for all guests and all cloud apps. This policy impacts the Azure portal. Once this is created you might be required to sign-out and sign-in.",
+ "allUsersAllApps": "A conditional access policy will be created for all users and all cloud apps. This policy impacts the Azure portal. Once this is created you will be required to sign-out and sign-in.",
+ "custom": "Select the users, groups, and apps that this Terms of Use will be applied to.",
+ "noPolicy": "This terms of use will appear in the grant control list when creating a conditional access policy."
+ }
+ },
+ "Section": {
+ "conditionalAccessSubtitle": "Enforce with conditional access policy templates",
+ "conditionalAccessTitle": "Conditional access",
+ "termsOfUseSubtitle": "Create and upload documents",
+ "termsOfUseTitle": "Terms of use"
+ },
+ "acceptanceDurationInfo": "The terms of use will be enforced immediately and each user will have to re-consent every specified number of days.",
+ "acceptanceDurationLabel": "Duration before re-acceptance required (days)",
+ "acceptanceDurationPlaceholder": "Example: '90'",
+ "acceptanceExpirationFrequencyInfo": "Require users to consent on a recurring basis.",
+ "acceptanceExpirationFrequencyLabel": "Frequency",
+ "acceptanceExpirationStartDateTimeInfo": "The terms of use will be enforced immediately and users will be required to re-consent on this date.",
+ "acceptanceExpirationStartDateTimeLabel": "Expire starting on",
+ "agreementIsPerDeviceAcceptanceRequiredInfo": "The end users will be required to consent to the terms of use on every device.",
+ "agreementIsPerDeviceAcceptanceRequiredLabel": "Require users to consent on every device",
+ "agreementIsViewingBeforeAcceptanceRequiredInfo": "The end users will be required to view the terms of use prior to accepting.",
+ "agreementIsViewingBeforeAcceptanceRequiredLabel": "Require users to expand the terms of use",
+ "agreementNameInfo": "Name will be used to manage the terms of use within the Azure portal.",
+ "agreementNameLabel": "Name",
+ "agreementNamePlaceholderText": "Example: 'All users terms of use'",
+ "agreementRequirmentLabel": "Required Upon",
+ "agreementTargetEntityLabel": "Users targeted",
+ "agreementUploadPolicyLabel": "Terms of use",
+ "agreementUploadPolicyPlaceholderText": "Upload required PDF",
+ "createButtonLabel": "Create",
+ "createPolicyInfo": "In order to enforce the terms of use, a conditional access policy is required. You can create a conditional access policy targeted to specific users and applications later or use one of the predefined templates.",
+ "createPolicyLabel": "Create a policy",
+ "isAcceptanceExpirationEnabledInfo": "The terms of use will be enforced immediately and all users will be forced to re-consent on a schedule.",
+ "isAcceptanceExpirationEnabledLabel": "Expire consents",
+ "pdfValidationInvalidFileFormat": "The file must be in the .pdf format.",
+ "policyFilesInfo": "Upload a PDF file containing the terms of use that your end users must accept. Based on end user preferences they will be shown the appropriate language or if not match the default language will be shown.
For end users agreeing on mobile devices, we recommend the PDF font size to be at least 24 pt.
Display name will be the title of the terms of use that is presented to the end user.",
+ "policyFilesLabel": "Terms of use document",
+ "policyTemplateInfo": "These templates are pre configured conditional access policies that are targeted to specific users and applications.",
+ "policyTemplateLabel": "Policy templates",
+ "title": "New terms of use"
+ }
+ },
+ "TACSettings": {
+ "edgeSettings": "Impostazioni di configurazione di Microsoft Edge",
+ "edgeWindowsDataProtectionSettings": "Impostazioni di protezione dei dati di Microsoft Edge (Windows) - Anteprima",
+ "edgeWindowsSettings": "Impostazioni di configurazione di Microsoft Edge (Windows) - Anteprima",
+ "generalAppConfig": "Configurazione generale dell'app",
+ "generalSettings": "Impostazioni di configurazione generali",
+ "outlookSMIMEConfig": "Impostazioni di S/MIME per Outlook",
+ "outlookSettings": "Impostazioni di configurazione di Outlook",
+ "sMIME": "S/MIME"
+ },
+ "MicrosoftEdgeChannel": {
+ "beta": "Beta",
+ "dev": "Dev",
+ "stable": "Stable"
+ },
+ "WipPolicySettings": {
+ "addNetworkBoundary": "Aggiungi limite di rete",
+ "addNetworkBoundaryButton": "Aggiungi limite di rete...",
+ "allowWindowsSearch": "Consenti a Windows Search di eseguire una ricerca nei dati aziendali crittografati e nelle app dello Store",
+ "authoritativeIpRanges": "L'elenco di intervalli IP aziendali è autorevole (non rilevare automaticamente)",
+ "authoritativeProxyServers": "L'elenco di server proxy aziendali è autorevole (non rilevare automaticamente)",
+ "boundaryType": "Tipo di limite",
+ "cloudResources": "Risorse cloud",
+ "corporateIdentity": "Identità aziendale",
+ "dataRecoveryCert": "Caricare un certificato dell'agente di recupero dati per consentire il recupero dei dati crittografati",
+ "editNetworkBoundary": "Modifica il limite di rete",
+ "enrollmentState": "Stato della registrazione",
+ "iPv4Ranges": "Intervalli IPv4",
+ "iPv6Ranges": "Intervalli IPv6",
+ "internalProxyServers": "Server proxy interni",
+ "maxInactivityTime": "Intervallo di tempo massimo (in minuti) consentito in caso di inattività del dispositivo dopo il quale il dispositivo verrà bloccato tramite PIN o password",
+ "maxPasswordAttempts": "Numero di errori di autenticazione consentiti prima della cancellazione dei dati del dispositivo",
+ "mdmDiscoveryUrl": "URL individuazione MDM",
+ "mdmRequiredSettingsInfo": "Questo criterio è applicabile solo a Windows 10 Anniversary Edition e versioni successive. Il criterio usa Windows Information Protection (WIP) per applicare la protezione.",
+ "minimumPinLength": "Imposta il numero minimo di caratteri necessari per il PIN",
+ "name": "Nome",
+ "networkBoundariesGridEmptyText": "Eventuali limiti di rete aggiunti verranno visualizzati qui",
+ "networkBoundary": "Limite di rete",
+ "networkDomainNames": "Domini di rete",
+ "neutralResources": "Risorse neutre",
+ "passportForWork": "Usa Windows Hello for Business come metodo per l'accesso a Windows",
+ "pinExpiration": "Specificare il periodo di tempo (in giorni) durante il quale è possibile usare un PIN prima che il sistema richieda all'utente di modificarlo",
+ "pinHistory": "Specificare il numero di PIN precedenti che possono essere associati a un account utente e non possono essere riutilizzati",
+ "pinLowercaseLetters": "Configura l'uso di lettere minuscole nel PIN di Windows Hello for Business",
+ "pinSpecialCharacters": "Configura l'uso di caratteri speciali nel PIN di Windows Hello for Business",
+ "pinUppercaseLetters": "Configura l'uso di lettere maiuscole nel PIN di Windows Hello for Business",
+ "protectUnderLock": "Impedisci alle app di accedere ai dati aziendali quando il dispositivo è bloccato. Si applica solo a Windows 10 Mobile",
+ "protectedDomainNames": "Domini protetti",
+ "proxyServers": "Server proxy",
+ "requireAppPin": "Disabilita il PIN dell'app quando il PIN del dispositivo è gestito",
+ "requiredSettings": "Impostazioni obbligatorie",
+ "requiredSettingsInfo": "La modifica dell'ambito o la rimozione del criterio comporterà la decrittografia dei dati aziendali.",
+ "revokeOnMdmHandoff": "Revoca l'accesso ai dati protetti quando il dispositivo esegue la registrazione a MDM",
+ "revokeOnUnenroll": "Revoca le chiavi di crittografia all'annullamento della registrazione",
+ "rmsTemplateForEdp": "Specificare l'ID del modello da usare per Azure RMS",
+ "showWipIcon": "Mostra l'icona di Protezione dei dati aziendali",
+ "type": "Tipo",
+ "useRmsForWip": "Usa Azure RMS per WIP",
+ "value": "Valore",
+ "weRequiredSettingsInfo": "Questo criterio è applicabile solo a Windows 10 Creators Update e versioni successive. Il criterio usa Windows Information Protection (WIP) e Windows MAM per applicare la protezione.",
+ "wipProtectionMode": "Modalità di Windows Information Protection",
+ "withEnrollment": "Con registrazione",
+ "withoutEnrollment": "Senza registrazione"
+ },
+ "OfficeApplicationAdditionalType": {
+ "projectProRetail": "Client desktop di Project Online",
+ "visioProRetail": "Visio Online Piano 2"
+ },
+ "Countries": {
+ "ae": "Emirati Arabi Uniti",
+ "ag": "Antigua e Barbuda",
+ "ai": "Anguilla",
+ "al": "Albania",
+ "am": "Armenia",
+ "ao": "Angola",
+ "ar": "Argentina",
+ "at": "Austria",
+ "au": "Australia",
+ "az": "Azerbaigian",
+ "bb": "Barbados",
+ "be": "Belgio",
+ "bf": "Burkina Faso",
+ "bg": "Bulgaria",
+ "bh": "Bahrein",
+ "bj": "Benin",
+ "bm": "Bermuda",
+ "bn": "Brunei",
+ "bo": "Bolivia",
+ "br": "Brasile",
+ "bs": "Bahamas",
+ "bt": "Bhutan",
+ "bw": "Botswana",
+ "by": "Bielorussia",
+ "bz": "Belize",
+ "ca": "Canada",
+ "cg": "Repubblica del Congo",
+ "ch": "Svizzera",
+ "cl": "Cile",
+ "cn": "Cina",
+ "co": "Colombia",
+ "cr": "Costa Rica",
+ "cv": "Cabo Verde",
+ "cy": "Cipro",
+ "cz": "Repubblica Ceca",
+ "de": "Germania",
+ "dk": "Danimarca",
+ "dm": "Dominica",
+ "do": "Repubblica dominicana",
+ "dz": "Algeria",
+ "ec": "Ecuador",
+ "ee": "Estonia",
+ "eg": "Egitto",
+ "es": "Spagna",
+ "fi": "Finlandia",
+ "fj": "Figi",
+ "fm": "Stati federati di Micronesia",
+ "fr": "Francia",
+ "gb": "Regno Unito",
+ "gd": "Grenada",
+ "gh": "Ghana",
+ "gm": "Gambia",
+ "gr": "Grecia",
+ "gt": "Guatemala",
+ "gw": "Guinea-Bissau",
+ "gy": "Guyana",
+ "hk": "Hong Kong",
+ "hn": "Honduras",
+ "hr": "Croazia",
+ "hu": "Ungheria",
+ "id": "Indonesia",
+ "ie": "Irlanda",
+ "il": "Israele",
+ "in": "India",
+ "is": "Islanda",
+ "it": "Italia",
+ "jm": "Giamaica",
+ "jo": "Giordania",
+ "jp": "Giappone",
+ "ke": "Kenya",
+ "kg": "Kirghizistan",
+ "kh": "Cambogia",
+ "kn": "Saint Kitts e Nevis",
+ "kr": "Repubblica di Corea del Sud",
+ "kw": "Kuwait",
+ "ky": "Isole Cayman",
+ "kz": "Kazakhstan",
+ "la": "Repubblica democratica popolare del Laos",
+ "lb": "Libano",
+ "lc": "Saint Lucia",
+ "lk": "Sri Lanka",
+ "lr": "Liberia",
+ "lt": "Lituania",
+ "lu": "Lussemburgo",
+ "lv": "Lettonia",
+ "md": "Repubblica di Moldova",
+ "mg": "Madagascar",
+ "mk": "Macedonia del Nord",
+ "ml": "Mali",
+ "mn": "Mongolia",
+ "mo": "Macao",
+ "mr": "Mauritania",
+ "ms": "Montserrat",
+ "mt": "Malta",
+ "mu": "Mauritius",
+ "mw": "Malawi",
+ "mx": "Messico",
+ "my": "Malaysia",
+ "mz": "Mozambico",
+ "na": "Namibia",
+ "ne": "Niger",
+ "ng": "Nigeria",
+ "ni": "Nicaragua",
+ "nl": "Paesi Bassi",
+ "no": "Norvegia",
+ "np": "Nepal",
+ "nz": "Nuova Zelanda",
+ "om": "Oman",
+ "pa": "Panama",
+ "pe": "Perù",
+ "pg": "Papua Nuova Guinea",
+ "ph": "Filippine",
+ "pk": "Pakistan",
+ "pl": "Polonia",
+ "pt": "Portogallo",
+ "pw": "Palau",
+ "py": "Paraguay",
+ "qa": "Qatar",
+ "ro": "Romania",
+ "ru": "Russia",
+ "sa": "Arabia Saudita",
+ "sb": "Isole Salomone",
+ "sc": "Seychelles",
+ "se": "Svezia",
+ "sg": "Singapore",
+ "si": "Slovenia",
+ "sk": "Slovacchia",
+ "sl": "Sierra Leone",
+ "sn": "Senegal",
+ "sr": "Suriname",
+ "st": "São Tomé e Príncipe",
+ "sv": "El Salvador",
+ "sz": "Swaziland",
+ "tc": "Turks e Caicos",
+ "td": "Ciad",
+ "th": "Thailandia",
+ "tj": "Tagikistan",
+ "tm": "Turkmenistan",
+ "tn": "Tunisia",
+ "tr": "Turchia",
+ "tt": "Trinidad e Tobago",
+ "tw": "Taiwan",
+ "tz": "Tanzania",
+ "ua": "Ucraina",
+ "ug": "Uganda",
+ "us": "Stati Uniti",
+ "uy": "Uruguay",
+ "uz": "Uzbekistan",
+ "vc": "Saint Vincent e Grenadine",
+ "ve": "Venezuela",
+ "vg": "Isole Vergini Britanniche",
+ "vn": "Vietnam",
+ "ye": "Yemen",
+ "za": "Sudafrica",
+ "zw": "Zimbabwe"
+ },
+ "OfficeUpdateChannel": {
+ "current": "Canale corrente",
+ "deferred": "Canale aziendale semestrale",
+ "firstReleaseCurrent": "Canale corrente (anteprima)",
+ "firstReleaseDeferred": "Canale Enterprise semestrale (Anteprima)",
+ "monthlyEnterprise": "Canale aziendale mensile",
+ "placeHolder": "Selezionare una voce"
+ },
+ "AppProtection": {
+ "allAppTypes": "Includi tutti i tipi di app",
+ "androidPlatformLabel": "Android",
+ "appsInAndroidWorkProfile": "App nel profilo di lavoro di Android",
+ "appsOnIntuneManagedDevices": "App nei dispositivi gestiti di Intune",
+ "appsOnUnmanagedDevices": "App nei dispositivi non gestiti",
+ "iOSPlatformLabel": "iOS/iPadOS",
+ "iosAndroidMacPlatformLabel": "iOS, Android, Mac",
+ "iosAndroidPlatformLabel": "iOS, Android",
+ "macPlatformLabel": "Mac",
+ "notAvailable": "Non disponibile",
+ "windows10PlatformLabel": "Windows 10 e versioni successive",
+ "withEnrollment": "Con registrazione",
+ "withoutEnrollment": "Senza registrazione"
+ },
+ "InstallContextType": {
+ "device": "Dispositivo",
+ "deviceContext": "Contesto di dispositivo",
+ "user": "Utente",
+ "userContext": "Contesto utente"
+ },
+ "ProactiveRemediations": {
+ "Create": {
+ "Basics": {
+ "DescriptionMultiLineTextBox": {
+ "label": "Descrizione",
+ "placeholder": "Immettere una descrizione"
+ },
+ "NameTextBox": {
+ "label": "Nome",
+ "placeholder": "Immettere un nome"
+ },
+ "PublisherTextBox": {
+ "label": "Server di pubblicazione",
+ "placeholder": "Immettere un autore"
+ },
+ "VersionTextBox": {
+ "label": "Versione"
+ },
+ "headerDescription": "Consente di creare un nuovo pacchetto di script personalizzato dagli script di rilevamento e correzione scritti dall'utente."
+ },
+ "ScopeTags": {
+ "headerDescription": "Selezionare uno o più gruppi a cui assegnare il pacchetto di script."
+ },
+ "Settings": {
+ "DetectionScriptMultiLineTextBox": {
+ "label": "Script di rilevamento",
+ "placeholder": "Inserire il testo dello script",
+ "requiredValidationMessage": "Immettere lo script di rilevamento"
+ },
+ "EnforceScriptSignatureCheckOptionPicker": {
+ "label": "Imponi il controllo della firma degli script"
+ },
+ "LoggedOnCredentialsOptionPicker": {
+ "label": "Esegui lo script con le credenziali dell'utente connesso"
+ },
+ "RemediationScript": {
+ "infoBox": "Questo script verrà eseguito in modalità di solo rilevamento perché non è presente alcuno script di correzione."
+ },
+ "RemediationScriptMultiLineTextBox": {
+ "label": "Script di monitoraggio e aggiornamento",
+ "placeholder": "Inserire il testo dello script"
+ },
+ "RunIn64BitPSOptionPicker": {
+ "label": "Esegui lo script in PowerShell a 64 bit"
+ },
+ "ScriptMultiLineTextBox": {
+ "base64EncodingValidationMessage": "Lo script non è valido. Uno o più caratteri usati nello script non sono validi."
+ },
+ "headerDescription": "Consente di creare un pacchetto di script personalizzato dagli script scritti dall'utente. Per impostazione predefinita, gli script verranno eseguiti ogni giorno nei dispositivi assegnati.",
+ "infoBox": "Lo script è di sola lettura. È possibile che alcune impostazioni per lo script siano disabilitate."
+ },
+ "title": "Crea uno script personalizzato",
+ "ScriptProperties": {
+ "GridHeaders": {
+ "interval": "Intervallo",
+ "time": "Data e ora"
+ },
+ "Interval": {
+ "day": "Ripetizione ogni giorno",
+ "days": "Ripetizione ogni {0} giorni",
+ "hour": "Ripetizione ogni ora",
+ "hours": "Si ripete ogni {0} ore",
+ "month": "Ripetizione ogni mese",
+ "months": "Ripetizione ogni {0} mesi",
+ "week": "Ripetizione ogni settimana",
+ "weeks": "Ripetizione ogni {0} settimane"
+ },
+ "Time": {
+ "utc": "{0} (UTC)",
+ "utcWithDate": "{0} (UTC) in data {1}",
+ "withDate": "{0} in data {1}"
+ }
+ }
+ },
+ "Edit": {
+ "title": "Modifica - {0}"
+ }
+ },
+ "EdgeAppConfig": {
+ "AllowedURLs": {
+ "title": "URL consentiti",
+ "tooltip": "Specificare i siti a cui gli utenti sono autorizzati ad accedere entro il rispettivo contesto di lavoro. Non saranno consentiti altri siti. È possibile scegliere di configurare un elenco di siti consentiti/bloccati, ma non entrambi i tipi di siti. "
+ },
+ "ApplicationProxyRedirection": {
+ "header": "Proxy dell'applicazione",
+ "title": "Reindirizzamento del proxy applicazione",
+ "tooltip": "Abilitare il reindirizzamento del proxy app per fornire agli utenti l'accesso ai collegamenti aziendali e alle app Web locali."
+ },
+ "BlockedURLs": {
+ "title": "URL bloccati",
+ "tooltip": "Specificare i siti bloccati per gli utenti entro il rispettivo contesto di lavoro. Tutti gli altri siti saranno consentiti. È possibile scegliere di configurare un elenco di siti consentiti/bloccati, ma non entrambi i tipi di siti. "
+ },
+ "Bookmarks": {
+ "header": "Segnalibri gestiti",
+ "tooltip": "Immettere un elenco di URL aggiunti ai segnalibri in modo che siano disponibili per gli utenti durante l'uso di Microsoft Edge nel rispettivo contesto di lavoro.",
+ "uRL": "URL"
+ },
+ "HomepageURL": {
+ "header": "Home page gestita",
+ "title": "URL del collegamento della home page",
+ "tooltip": "Configurare un collegamento della home page che verrà visualizzato agli utenti come prima icona sotto la barra di ricerca all'apertura di una nuova scheda in Microsoft Edge."
+ },
+ "PersonalContext": {
+ "label": "Reindirizza i siti con restrizioni al contesto personale",
+ "tooltip": "Specificare se gli utenti sono autorizzati a eseguire la transizione al contesto personale per aprire siti con restrizioni."
+ }
+ },
+ "BooleanActions": {
+ "allow": "Consentire",
+ "block": "Blocca",
+ "configured": "Configurato",
+ "disable": "Disabilita",
+ "dontRequire": "Non rendere obbligatorio",
+ "enable": "Abilita",
+ "hide": "Nascondi",
+ "limit": "Limite",
+ "notConfigured": "Non configurato",
+ "require": "Rendi obbligatorio",
+ "show": "Mostra",
+ "yes": "Sì"
+ },
+ "ArchitectureOptions": {
+ "sixtyFourBit": "64 bit",
+ "thirtyTwoBit": "32 bit"
+ },
+ "WindowsQualityUpdateDaysUntilForcedReboot": {
+ "oneDay": "1 giorno",
+ "twoDays": "2 giorni",
+ "zeroDays": "0 giorni"
+ },
"SoftwareUpdates": {
"BladeTitles": {
"overview": "Panoramica"
@@ -10800,66 +10878,732 @@
"notScannedYet": "Non ancora analizzato",
"outOfDateIosDevices": "Dispositivi iOS non aggiornati"
},
- "ScheduledAction": {
- "Form": {
- "editBlockActionInfo": "È necessaria un'azione di blocco per tutti i criteri di conformità.",
- "graceperiod": "Pianifica (giorni dopo la non conformità)",
- "graceperiodInfo": "Specificare il numero di giorni di non conformità dopo i quali è necessario attivare questa azione per il dispositivo dell'utente",
- "subtitle": "Specificare i parametri dell'azione",
- "title": "Parametri dell'azione"
- },
- "List": {
- "gracePeriodDay": "{0} giorno dopo la non conformità",
- "gracePeriodDays": "{0} giorni dopo la non conformità",
- "gracePeriodHour": "{0} ora dopo la non conformità",
- "gracePeriodHours": "{0} ore dopo la non conformità",
- "gracePeriodMinute": "{0} minuto dopo la non conformità",
- "gracePeriodMinutes": "{0} minuti dopo la non conformità",
- "immediately": "Immediatamente",
- "schedule": "Pianifica",
- "scheduleInfoBalloon": "Giorni dopo la non conformità",
- "subtitle": "Specificare la sequenza di azioni nei dispositivi non conformi",
- "title": "Azioni"
- },
- "Notification": {
- "additionalEmailLabel": "Altri",
- "additionalRecipients": "Altri destinatari (tramite posta elettronica)",
- "additionalRecipientsBladeTitle": "Selezionare destinatari aggiuntivi",
- "emailAddressPrompt": "Immettere gli indirizzi di posta elettronica (separati da virgole)",
- "invalidEmail": "L'indirizzo di posta elettronica non è valido",
- "messageTemplate": "Modello di messaggio",
- "noneSelected": "Nessuna selezione",
- "notSelected": "Non selezionato",
- "numSelected": "{0} selezionati",
- "selected": "Selezionata"
+ "ConfigurationTypes": {
+ "Table": {
+ "androidDeviceOwnerGeneral": "Limitazioni del dispositivo (proprietario del dispositivo)",
+ "androidForWorkGeneral": "Limitazioni del dispositivo (profili di lavoro)"
+ },
+ "androidCustom": "Personalizzata",
+ "androidDeviceOwnerGeneral": "Limitazioni del dispositivo",
+ "androidDeviceOwnerPkcs": "Certificato PKCS",
+ "androidDeviceOwnerScep": "Certificato SCEP",
+ "androidDeviceOwnerTrustedCertificate": "Certificato attendibile",
+ "androidDeviceOwnerVpn": "VPN",
+ "androidDeviceOwnerWiFi": "Wi-Fi",
+ "androidEmailProfile": "Posta elettronica (solo Samsung KNOX)",
+ "androidForWorkCustom": "Personalizzata",
+ "androidForWorkEmailProfile": "Posta elettronica",
+ "androidForWorkGeneral": "Limitazioni del dispositivo",
+ "androidForWorkImportedPFX": "Certificato PKCS importato",
+ "androidForWorkOemConfig": "OEMConfig",
+ "androidForWorkPKCS": "Certificato PKCS",
+ "androidForWorkSCEP": "Certificato SCEP",
+ "androidForWorkTrustedCertificate": "Certificato attendibile",
+ "androidForWorkVpn": "VPN",
+ "androidForWorkWiFi": "Wi-Fi",
+ "androidGeneral": "Limitazioni del dispositivo",
+ "androidImportedPFX": "Certificato PKCS importato",
+ "androidPKCS": "Certificato PKCS",
+ "androidSCEP": "Certificato SCEP",
+ "androidTrustedCertificate": "Certificato attendibile",
+ "androidVPN": "VPN",
+ "androidWiFi": "Wi-Fi",
+ "androidZebraMx": "Profilo MX (solo Zebra)",
+ "complianceAndroid": "Criteri di conformità di Android",
+ "complianceAndroidDeviceOwner": "Profilo di lavoro completamente gestito, dedicato e di proprietà aziendale",
+ "complianceAndroidEnterprise": "Profilo di lavoro di proprietà personale",
+ "complianceAndroidForWork": "Criteri di conformità di Android for Work",
+ "complianceIos": "Criteri di conformità di iOS",
+ "complianceMac": "Criteri di conformità Mac",
+ "complianceWindows10": "Criteri di conformità di Windows 10 e versioni successive",
+ "complianceWindows10Mobile": "Criteri di conformità di Windows 10 Mobile",
+ "complianceWindows8": "Criteri di conformità di Windows 8",
+ "complianceWindowsPhone": "Criteri di conformità di Windows Phone",
+ "exchangeActiveSync": "Exchange Active Sync",
+ "iosCustom": "Personalizzata",
+ "iosDerivedCredentialAuthenticationConfiguration": "Credenziale PIV derivata",
+ "iosDeviceFeatures": "Funzionalità del dispositivo",
+ "iosEDU": "Istruzione",
+ "iosEducation": "Istruzione",
+ "iosEmailProfile": "Posta elettronica",
+ "iosGeneral": "Limitazioni del dispositivo",
+ "iosImportedPFX": "Certificato PKCS importato",
+ "iosPKCS": "Certificato PKCS",
+ "iosPresets": "Set di impostazioni",
+ "iosSCEP": "Certificato SCEP",
+ "iosTrustedCertificate": "Certificato attendibile",
+ "iosVPN": "VPN",
+ "iosVPNZscaler": "VPN",
+ "iosWiFi": "Wi-Fi",
+ "macCustom": "Personalizzata",
+ "macDeviceFeatures": "Funzionalità del dispositivo",
+ "macEndpointProtection": "Endpoint Protection",
+ "macExtensions": "Estensioni",
+ "macGeneral": "Limitazioni del dispositivo",
+ "macImportedPFX": "Certificato PKCS importato",
+ "macSCEP": "Certificato SCEP",
+ "macTrustedCertificate": "Certificato attendibile",
+ "macVPN": "VPN",
+ "macWiFi": "Wi-Fi",
+ "settingsCatalog": "Catalogo di impostazioni (anteprima)",
+ "unsupported": "Non supportato",
+ "windows10AdministrativeTemplate": "Modelli amministrativi (anteprima)",
+ "windows10Atp": "Microsoft Defender per endpoint (dispositivi desktop che eseguono Windows 10 o versioni successive)",
+ "windows10Custom": "Personalizzata",
+ "windows10DesktopSoftwareUpdate": "Aggiornamenti software",
+ "windows10DeviceFirmwareConfigurationInterface": "Interfaccia di configurazione del firmware del dispositivo",
+ "windows10EmailProfile": "Posta elettronica",
+ "windows10EndpointProtection": "Endpoint Protection",
+ "windows10EnterpriseDataProtection": "Windows Information Protection",
+ "windows10General": "Limitazioni del dispositivo",
+ "windows10ImportedPFX": "Certificato PKCS importato",
+ "windows10Kiosk": "Tutto schermo",
+ "windows10NetworkBoundary": "Limite di rete",
+ "windows10PKCS": "Certificato PKCS",
+ "windows10PolicyOverride": "Esegui l'override dei criteri di gruppo",
+ "windows10SCEP": "Certificato SCEP",
+ "windows10SecureAssessmentProfile": "Profilo di formazione",
+ "windows10SharedPC": "Dispositivo multiutente condiviso",
+ "windows10TeamGeneral": "Limitazioni del dispositivo (Windows 10 Team)",
+ "windows10TrustedCertificate": "Certificato attendibile",
+ "windows10VPN": "VPN",
+ "windows10WiFi": "Wi-Fi",
+ "windows10WiFiCustom": "Wi-Fi personalizzato",
+ "windows8General": "Limitazioni del dispositivo",
+ "windows8SCEP": "Certificato SCEP",
+ "windows8TrustedCertificate": "Certificato attendibile",
+ "windows8VPN": "VPN",
+ "windows8WiFi": "Wi-Fi per importazione",
+ "windowsDeliveryOptimization": "Ottimizzazione recapito",
+ "windowsDomainJoin": "Aggiunta a un dominio",
+ "windowsEditionUpgrade": "Aggiornamento dell'edizione e cambio di modalità",
+ "windowsIdentityProtection": "Protezione delle identità",
+ "windowsPhoneCustom": "Personalizzata",
+ "windowsPhoneEmailProfile": "Posta elettronica",
+ "windowsPhoneGeneral": "Limitazioni del dispositivo",
+ "windowsPhoneImportedPFX": "Certificato PKCS importato",
+ "windowsPhoneSCEP": "Certificato SCEP",
+ "windowsPhoneTrustedCertificate": "Certificato attendibile",
+ "windowsPhoneVPN": "VPN",
+ "IosUpdate": "Criteri di aggiornamento per iOS"
+ },
+ "OfficeSuiteAppsTab": {
+ "acceptLicenseOnBehalfOfUsersLabel": "Accetta le Condizioni di licenza software Microsoft per conto degli utenti",
+ "appSuiteConfigurationLabel": "Configurazione della suite di app",
+ "appSuiteInformationLabel": "Informazioni sulla famiglia di prodotti dell'app",
+ "appsToBeInstalledLabel": "App da installare come parte della suite",
+ "architectureLabel": "Architettura",
+ "architectureTooltip": "Consente di stabilire se nei dispositivi viene installata l'edizione a 32 bit o 64 bit di App di Microsoft 365.",
+ "configurationDesignerLabel": "Progettazione configurazione",
+ "configurationFileLabel": "File di configurazione",
+ "configurationSettingsFormatLabel": "Formato delle impostazioni di configurazione",
+ "configureAppSuiteLabel": "Configura la famiglia di prodotti dell'app",
+ "configuredLabel": "Configurata",
+ "currentVersionLabel": "Versione corrente",
+ "currentVersionTooltip": "Versione corrente di Office configurata in questa suite. Questo valore verrà aggiornato quando viene configurata e salvata una nuova versione.",
+ "enableMicrosoftSearchAsDefaultTooltip": "Consente di installare un servizio in background che contribuisce a determinare se un'estensione di Microsoft Search in Bing per Google Chrome è installata nel dispositivo.",
+ "enterXmlDataLabel": "Immettere i dati XML",
+ "languagesLabel": "Lingue",
+ "languagesTooltip": "Per impostazione predefinita, Intune installerà Office con la lingua predefinita del sistema operativo. Scegliere le lingue aggiuntive da installare.",
+ "learnMoreText": "Altre informazioni",
+ "newUpdateChannelTooltip": "Consente di definire la frequenza con cui l'app viene aggiornata con nuove funzionalità.",
+ "noCurrentVersionText": "Nessuna versione corrente",
+ "noLanguagesSelectedLabel": "Non sono state selezionate lingue",
+ "notConfiguredLabel": "Non configurato",
+ "propertiesLabel": "Proprietà",
+ "removeOtherVersionsLabel": "Rimuovi altre versioni",
+ "removeOtherVersionsTooltip": "Selezionare Sì per rimuovere altre versioni di Office (MSI) dai dispositivi utente.",
+ "selectOfficeAppsLabel": "Selezionare le app di Office",
+ "selectOfficeAppsTooltip": "Selezionare le app di Office 365 da installare come parte della suite.",
+ "selectOtherOfficeAppsLabel": "Selezionare altre app di Office (licenza obbligatoria)",
+ "selectOtherOfficeAppsTooltip": "Se si possiedono licenze per queste app di Office aggiuntive, è possibile anche assegnarle con Intune.",
+ "specificVersionLabel": "Versione specifica",
+ "updateChannelLabel": "Canale di aggiornamento",
+ "updateChannelTooltip": "Consente di definire la frequenza con cui l'app viene aggiornata con nuove funzionalità.
\r\nMensile - Consente di offrire agli utenti le funzionalità più recenti di Office non appena sono disponibili.
\r\nCanale aziendale mensile - Consente di offrire agli utenti le funzionalità più recenti di Office una volta al mese, il secondo martedì del mese.
\r\nMensile (mirato) – Consente di fornire un'anteprima del rilascio mensile imminente del canale. Si tratta di un canale supportato, disponibile con almeno una settimana di anticipo quando si tratta di un rilascio mensile del canale che include nuove funzionalità.
\r\nSemestrale - Consente di offrire agli utenti le nuove funzionalità di Office solo qualche volta all'anno.
\r\nSemestrale (mirato) - Consente di offrire agli utenti pilota e ai tester della compatibilità delle applicazioni l'opportunità di testare il successivo rilascio semestrale.",
+ "useMicrosoftSearchAsDefault": "Installa il servizio in background per Microsoft Search in Bing",
+ "useSharedComputerActivationLabel": "Usa l'attivazione di computer condivisi",
+ "useSharedComputerActivationTooltip": "L'attivazione di computer condivisi consente di distribuire App di Microsoft 365 nei computer usati da più utenti. Gli utenti possono in genere installare e attivare App di Microsoft 365 solo in un numero limitato di dispositivi, ad esempio 5 computer. L'uso di App di Microsoft 365 con l'attivazione di computer condivisi non viene conteggiato rispetto a tale limite.",
+ "versionToInstallLabel": "Versione da installare",
+ "versionToInstallTooltip": "Selezionare la versione di Office da installare.",
+ "xLanguagesSelectedLabel": "{0} lingua o lingue selezionate",
+ "xmlConfigurationLabel": "Configurazione XML"
+ },
+ "EnrollmentRestrictions": {
+ "DeletePayloadLink": {
+ "content": "{0} è incluso in uno o più set di criteri. Se si elimina {0}, non sarà più possibile assegnarlo tramite questi set di criteri. Eliminarlo comunque?",
+ "contentWithError": "È possibile che {0} sia incluso in uno o più set di criteri. Se si elimina {0}, non sarà più possibile assegnarlo tramite questi set di criteri. Eliminarlo comunque?",
+ "header": "Eliminare questa restrizione?"
+ },
+ "DeviceLimit": {
+ "description": "Specificare il numero massimo di dispositivi che un utente può registrare.",
+ "header": "Restrizioni sul limite di dispositivi",
+ "info": "Consente di definire il numero di dispositivi che ogni utente può registrare."
+ },
+ "DeviceType": {
+ "VersionValidation": {
+ "aOSP": "Deve essere 1.0 o successiva.",
+ "android": "Immettere un numero di versione valido. Esempi: 5.0, 5.5.1, 6.0.0.1",
+ "androidForWork": "Immettere un numero di versione valido. Esempi: 5.0, 5.1.1",
+ "iOS": "Immettere un numero di versione valido. Esempi: 9.0, 10.0, 9.0.2",
+ "mac": "Immettere un numero di versione valido. Esempi: 10, 10.10, 10.10.1",
+ "min": "Il valore minimo non può essere inferiore a {0}",
+ "minMax": "La versione minima non può essere superiore alla versione massima.",
+ "windows": "Deve essere 10.0 o versioni successive. Lasciare vuoto per consentire i dispositivi 8.1",
+ "windowsMobile": "Deve essere 10.0 o versioni successive. Lasciare vuoto per consentire i dispositivi 8.1"
+ },
+ "allPlatformsBlocked": "Tutte le piattaforme dei dispositivi sono bloccate. Consentire la registrazione della piattaforma per abilitare la configurazione della piattaforma.",
+ "blockManufacturerPlaceHolder": "Nome del produttore",
+ "blockManufacturersHeader": "Produttori bloccati",
+ "cannotRestrict": "La restrizione non è supportata",
+ "configurationDescription": "Specificare le restrizioni della configurazione della piattaforma da soddisfare per consentire la registrazione di un dispositivo. Usare i criteri di conformità per limitare i dispositivi dopo la registrazione. Definire le versioni come major.minor.build. Le restrizioni sulla versione sono applicabili solo ai dispositivi registrati nel portale aziendale. Intune classifica i dispositivi come di proprietà personale per impostazione predefinita. Per classificare i dispositivi come di proprietà dell'azienda sono necessarie azioni aggiuntive.",
+ "configurationDescriptionLabel": "Altre informazioni sulla configurazione delle restrizioni della registrazione",
+ "configurations": "Configura le piattaforme",
+ "deviceManufacturer": "Produttore dispositivo",
+ "header": "Restrizioni dei tipi di dispositivo",
+ "info": "Consente di definire le piattaforme, le versioni e i tipi di gestione autorizzati alla registrazione.",
+ "manufacturer": "Produttore",
+ "max": "Max",
+ "maxVersion": "Versione massima",
+ "min": "Min",
+ "minVersion": "Versione minima",
+ "newPlatforms": "Sono state autorizzate nuove piattaforme. Prendere in considerazione l'aggiornamento delle configurazioni delle piattaforme.",
+ "personal": "Di proprietà personale",
+ "platform": "Piattaforma",
+ "platformDescription": "È possibile consentire la registrazione delle piattaforme seguenti. Bloccare solo le piattaforme che non verranno supportate. Le piattaforme consentite possono essere configurate con restrizioni registrazione aggiuntive.",
+ "platformSettings": "Impostazioni piattaforma",
+ "platforms": "Seleziona le piattaforme",
+ "platformsSelected": "{0} piattaforme selezionate",
+ "type": "Tipo",
+ "versions": "versioni",
+ "versionsRange": "Consenti un intervallo min/max:",
+ "windowsTooltip": "Consente di limitare la registrazione tramite Mobile Device Management. Non limita l'installazione dell'agente del computer. Sono supportate solo le versioni Windows 10 e Windows 11. Lasciare le versioni vuote per consentire Windows 8.1."
+ },
+ "Priority": {
+ "saved": "Le priorità delle restrizioni sono state salvate."
+ },
+ "Row": {
+ "announce": "Priorità: {0}, nome: {1}, assegnata: {2}"
+ },
+ "Table": {
+ "deployed": "Distribuito",
+ "name": "Nome",
+ "priority": "Priorità"
},
- "block": "Contrassegna il dispositivo come non conforme",
- "lockDevice": "Blocca il dispositivo (azione locale)",
- "lockDeviceWithPasscode": "Blocca il dispositivo (azione locale)",
- "noAction": "Nessuna azione",
- "noActionRow": "Nessuna azione, selezionare 'Aggiungi' per aggiungere un'azione",
- "pushNotification": "Invia una notifica push all'utente finale",
- "remoteLock": "Blocca in remoto il dispositivo non conforme",
- "removeSourceAccessProfile": "Rimuovi il profilo di accesso di origine",
- "retire": "Ritira il dispositivo non conforme",
- "wipe": "Cancella",
- "emailNotification": "Invia un messaggio di posta elettronica all'utente finale"
- },
- "WIPPinRequirements": {
- "WipLowercaseCharacterPinRequirements": {
- "allow": "Consenti l'uso di lettere minuscole nel PIN",
- "notAllow": "Non consentire l'uso di lettere minuscole nel PIN",
- "requireAtLeastOne": "Richiedi l'uso di almeno una lettera minuscola nel PIN"
- },
- "WipSpecialCharacterPinRequirements": {
- "allow": "Consenti l'uso di caratteri speciali nel PIN",
- "notAllow": "Non consentire l'uso di caratteri speciali nel PIN",
- "requireAtLeastOne": "Richiedi l'uso di almeno un carattere speciale nel PIN"
- },
- "WipUppercaseCharacterPinRequirements": {
- "allow": "Consenti l'uso di lettere maiuscole nel PIN",
- "notAllow": "Non consentire l'uso di lettere maiuscole nel PIN",
- "requireAtLeastOne": "Richiedi l'uso di almeno una lettera maiuscola nel PIN"
- }
- }
+ "Type": {
+ "limit": "Restrizione sul limite di dispositivi",
+ "type": "Restrizione dei tipi di dispositivo"
+ },
+ "allUsers": "Tutti gli utenti",
+ "androidRestrictions": "Restrizioni Android",
+ "create": "Crea restrizione",
+ "defaultLimitDescription": "Restrizione sul limite di dispositivi predefinita applicata con la priorità più bassa a tutti gli utenti, indipendentemente dall'appartenenza ai gruppi.",
+ "defaultTypeDescription": "Restrizione sul tipo di dispositivi predefinita applicata con la priorità più bassa a tutti gli utenti, indipendentemente dall'appartenenza ai gruppi.",
+ "defaultWhfbDescription": "Questa è la configurazione predefinita di Windows Hello for Business applicata con la priorità più bassa a tutti gli utenti, indipendentemente dall'appartenenza ai gruppi.",
+ "deleteMessage": "Gli utenti interessati saranno limitati dalla restrizione di priorità più elevata successiva assegnata o dalla restrizione predefinita, se non sono assegnate altre restrizioni.",
+ "deleteTitle": "Eliminare la restrizione {0}?",
+ "descriptionHint": "Breve paragrafo che illustra l'uso aziendale o il livello di restrizione caratterizzato dalle impostazioni di restrizione.",
+ "edit": "Modifica la restrizione",
+ "info": "Un dispositivo deve essere conforme alle restrizioni della registrazione con priorità più elevata assegnate al rispettivo utente. È possibile trascinare una restrizione del dispositivo per modificarne la priorità. Le restrizioni predefinite hanno la priorità più bassa per tutti gli utenti e regolamentano le registrazioni senza utenti. Le restrizioni predefinite possono essere modificate ma non eliminate.",
+ "iosRestrictions": "Restrizioni iOS",
+ "mDM": "Gestione dispositivi mobili",
+ "macRestrictions": "Restrizioni macOS",
+ "maxVersion": "Versione massima",
+ "minVersion": "Versione minima",
+ "nameHint": "Questo sarà l'attributo principale visibile per l'identificazione del set di restrizioni.",
+ "noAssignmentsStatusBar": "Assegnare la restrizione ad almeno un gruppo. Fare clic su Proprietà.",
+ "notFound": "La limitazione non è stata trovata. È possibile che sia già stata eliminata.",
+ "personallyOwned": "Dispositivi di proprietà personale",
+ "restriction": "Restrizione",
+ "restrictionLowerCase": "restrizione",
+ "restrictionType": "Tipo restrizione",
+ "selectType": "Selezionare il tipo di restrizione",
+ "selectValidation": "Selezionare una piattaforma",
+ "typeHint": "Scegliere Restrizione dei tipi di dispositivo per limitare le proprietà dei dispositivi. Scegliere Restrizione sul limite di dispositivi per limitare il numero di dispositivi per utente.",
+ "typeRequired": "Il tipo di restrizione è obbligatorio.",
+ "winPhoneRestrictions": "Restrizioni Windows Phone",
+ "windowsRestrictions": "Restrizioni Windows"
+ },
+ "Titles": {
+ "ChromeOs": {
+ "devices": "Dispositivi Chrome OS"
+ },
+ "ManagedDesktop": {
+ "adminContacts": "Contatti amministratore",
+ "appPackaging": "Pacchetti dell'app",
+ "devices": "Dispositivi",
+ "feedback": "Feedback",
+ "gettingStarted": "Riquadro attività iniziale",
+ "messages": "Messaggi",
+ "onlineResources": "Risorse in linea",
+ "serviceRequests": "Richieste del servizio",
+ "settings": "Impostazioni",
+ "tenantEnrollment": "Registrazione del tenant"
+ },
+ "actions": "Azioni per la non conformità",
+ "advancedExchangeSettings": "Impostazioni di Exchange Online",
+ "advancedThreatProtection": "Microsoft Defender per endpoint",
+ "allApps": "Tutte le app",
+ "allDevices": "Tutti i dispositivi",
+ "androidFotaDeployments": "Distribuzioni Android FOTA",
+ "appBundles": "Bundle dell'app",
+ "appCategories": "Categorie di app",
+ "appConfigPolicies": "Criteri di configurazione dell'app",
+ "appInstallStatus": "Stato di installazione dell'app",
+ "appLicences": "Licenze dell'app",
+ "appProtectionPolicies": "Criteri di protezione delle app",
+ "appProtectionStatus": "Stato di protezione dell'app",
+ "appSelectiveWipe": "Cancellazione selettiva di app",
+ "appleVppTokens": "Token VPP Apple",
+ "apps": "App",
+ "assign": "Assegnazioni",
+ "assignedPermissions": "Autorizzazioni assegnate",
+ "assignedRoles": "Ruoli assegnati",
+ "autopilotDeploymentReport": "Distribuzioni di Autopilot (anteprima)",
+ "brandingAndCustomization": "Personalizzazione",
+ "cartProfiles": "Profili del carrello",
+ "certificateConnectors": "Connettori di certificati",
+ "chromeEnterprise": "Chrome Enterprise",
+ "compliancePolicies": "Criteri di conformità",
+ "complianceScriptManagement": "Script",
+ "complianceScriptManagementPreview": "Script (anteprima)",
+ "complianceSettings": "Impostazioni dei criteri di conformità",
+ "conditionStatements": "Dichiarazioni sulle condizioni",
+ "conditions": "Percorsi",
+ "configMgr": "Microsoft Endpoint Configuration Manager",
+ "configurationProfiles": "Profili di configurazione",
+ "configurationProfilesPreview": "Profili di configurazione (anteprima)",
+ "connectorsAndTokens": "Connettori e token",
+ "corporateDeviceIdentifiers": "Identificatori dei dispositivi aziendali",
+ "customAttributes": "Attributi personalizzati",
+ "customNotifications": "Notifiche personalizzate",
+ "deploymentSettings": "Impostazioni di distribuzione",
+ "derivedCredentials": "Credenziali derivate",
+ "deviceActions": "Azioni del dispositivo",
+ "deviceCategories": "Categorie di dispositivi",
+ "deviceCleanUp": "Regole per la pulizia del dispositivo",
+ "deviceEnrollmentManagers": "Manager di registrazione dispositivi",
+ "deviceExecutionStatus": "Stato del dispositivo",
+ "deviceLimitEnrollmentRestrictions": "Restrizioni sui limiti di registrazione di dispositivi",
+ "deviceTypeEnrollmentRestrictions": "Restrizioni della piattaforma del dispositivo di registrazione",
+ "devices": "Dispositivi",
+ "discoveredApps": "App individuate",
+ "embeddedSIM": "Profili cellulare eSIM (anteprima)",
+ "enrollDevices": "Registra i dispositivi",
+ "enrollmentFailures": "Errori di registrazione",
+ "enrollmentNotifications": "Notifiche di registrazione (anteprima)",
+ "enrollmentRestrictions": "Restrizioni registrazione",
+ "exchangeActiveSync": "Exchange ActiveSync",
+ "exchangeServiceConnectors": "Connettori di servizi Exchange",
+ "failuresForFeatureUpdates": "Errori degli aggiornamenti delle funzionalità (anteprima)",
+ "failuresForQualityUpdates": "Errori di aggiornamenti urgenti di Windows (anteprima)",
+ "featureFlighting": "Distribuzione di versioni di anteprima delle funzionalità",
+ "featureUpdateDeployments": "Aggiornamenti delle funzionalità per Windows 10 e versioni successive (anteprima)",
+ "flighting": "Distribuzione di versioni di anteprima",
+ "fotaUpdate": "Aggiornamento firmware in modalità over-the-air",
+ "groupPolicy": "Modelli amministrativi",
+ "groupPolicyAnalytics": "Analisi dei criteri di gruppo",
+ "helpSupport": "Guida e supporto tecnico",
+ "helpSupportReplacement": "Guida e supporto tecnico ({0})",
+ "iOSAppProvisioning": "Profili di provisioning delle app iOS",
+ "incompleteUserEnrollments": "Registrazioni utente incomplete",
+ "intuneRemoteAssistance": "Guida remota (anteprima)",
+ "iosUpdates": "Criteri di aggiornamento per iOS/iPadOS",
+ "legacyPcManagement": "Gestione dei computer legacy",
+ "macOSSoftwareUpdate": "Criteri di aggiornamento per macOS",
+ "macOSSoftwareUpdateAccountSummaries": "Stato dell'installazione per dispositivi macOS",
+ "macOSSoftwareUpdateCategorySummaries": "Riepilogo degli aggiornamenti software",
+ "macOSSoftwareUpdateStateSummaries": "aggiornamenti",
+ "managedGooglePlay": "Google Play gestito",
+ "msfb": "Microsoft Store per le aziende",
+ "myPermissions": "Autorizzazioni personali",
+ "notifications": "Notifiche",
+ "officeApps": "App di Office",
+ "officeProPlusPolicies": "Criteri per le app di Office",
+ "onPremise": "Locale",
+ "onPremisesConnector": "Connettore locale per Exchange ActiveSync",
+ "onPremisesDeviceAccess": "Dispositivi di Exchange ActiveSync",
+ "onPremisesManageAccess": "Accesso locale a Exchange",
+ "outOfDateIosDevices": "Errori di installazione per dispositivi iOS",
+ "overview": "Panoramica",
+ "partnerDeviceManagement": "Gestione dei dispositivi partner",
+ "perUpdateRingDeploymentState": "Stato di distribuzione per ogni anello di aggiornamento",
+ "permissions": "Autorizzazioni",
+ "platformApps": "{0} app",
+ "platformDevices": "{0} dispositivi",
+ "platformEnrollment": "{0} registrazione",
+ "policies": "Criteri",
+ "previewMDMDevices": "Tutti i dispositivi gestiti (anteprima)",
+ "profiles": "Profili",
+ "properties": "Proprietà",
+ "reports": "Report",
+ "retireNoncompliantDevices": "Disattiva i dispositivi non conformi",
+ "retireNoncompliantDevicesPreview": "Retire noncompliant devices (preview)",
+ "role": "Ruolo",
+ "scriptManagement": "Script",
+ "securityBaselines": "Baseline di sicurezza",
+ "serviceToServiceConnector": "Exchange Online Connector",
+ "shellScripts": "Script della shell",
+ "teamViewerConnector": "Connettore TeamViewer",
+ "telecomeExpenseManagement": "Gestione delle spese per telecomunicazioni",
+ "tenantAdmin": "Amministratore del tenant",
+ "tenantAdministration": "Amministrazione del tenant",
+ "termsAndConditions": "Condizioni",
+ "titles": "Titoli",
+ "troubleshootSupport": "Risoluzione dei problemi e supporto tecnico",
+ "user": "Utente",
+ "userExecutionStatus": "Stato dell'utente",
+ "warranty": "Fornitori di garanzia",
+ "wdacSupplementalPolicies": "Criteri supplementari per la modalità S",
+ "windows10DriverUpdate": "Aggiornamenti dei driver per Windows 10 e versioni successive (anteprima)",
+ "windows10QualityUpdate": "Aggiornamenti qualitativi per Windows 10 e versioni successive (anteprima)",
+ "windows10UpdateRings": "Anelli di aggiornamento per Windows 10 e versioni successive",
+ "windows10XPolicyFailures": "Errori dei criteri di Windows 10X",
+ "windowsEnterpriseCertificate": "Certificato Windows Enterprise",
+ "windowsManagement": "Script di PowerShell",
+ "windowsSideLoadingKeys": "Chiavi di sideload Windows",
+ "windowsSymantecCertificate": "Certificato DigiCert Windows",
+ "windowsThreatReport": "Stato dell'agente delle minacce"
+ },
+ "ScopeTypes": {
+ "allDevices": "Tutti i dispositivi",
+ "allUsers": "Tutti gli utenti",
+ "allUsersAndDevices": "Tutti gli utenti e tutti i dispositivi",
+ "selectedGroups": "Gruppi selezionati"
+ },
+ "OfficeApplicationType": {
+ "access": "Access",
+ "bing": "Microsoft Search come predefinito",
+ "excel": "Excel",
+ "groove": "OneDrive (Groove)",
+ "lync": "Skype for Business",
+ "oneDrive": "OneDrive Desktop",
+ "oneNote": "OneNote",
+ "outlook": "Outlook",
+ "powerPoint": "PowerPoint",
+ "publisher": "Publisher",
+ "teams": "Teams",
+ "word": "Word"
+ },
+ "ApplicableDeviceType": {
+ "iPad": "iPad",
+ "iPhoneAndIPod": "iPhone e iPod"
+ },
+ "Assignment": {
+ "AutoUpdateMode": {
+ "default": "Predefinito",
+ "header": "Priorità di aggiornamento",
+ "postponed": "Posticipata",
+ "priority": "Priorità alta"
+ },
+ "DeliveryOptimizationPriority": {
+ "backgroundNormal": "Sfondo",
+ "displayText": "Download del contenuto in {0}",
+ "foreground": "Primo piano",
+ "header": "Priorità di ottimizzazione recapito"
+ },
+ "RestartGracePeriod": {
+ "allowSnooze": "Consenti all'utente di posporre la notifica di riavvio",
+ "countdownDialog": "Selezionare quando visualizzare la finestra di dialogo per il conto alla rovescia prima del riavvio (minuti)",
+ "durationInMinutes": "Periodo di tolleranza per il riavvio del dispositivo (minuti)",
+ "snoozeDurationInMinutes": "Selezionare la durata della posposizione (minuti)"
+ },
+ "SoftwareInstallationTime": {
+ "TimeZone": {
+ "label": "Fuso orario",
+ "local": "Fuso orario del dispositivo",
+ "utc": "UTC"
+ },
+ "dateAndTimeLabel": "Data e ora",
+ "deadlineTimeColumnLabel": "Scadenza installazione",
+ "deadlineTimeDatePickerErrorMessage": "La data selezionata deve essere successiva alla data di disponibilità",
+ "deadlineTimeLabel": "Scadenza dell'installazione app",
+ "defaultTime": "Appena possibile",
+ "infoText": "Questa applicazione sarà disponibile immediatamente dopo la distribuzione, a meno che non si specifichi una data di disponibilità più avanti. Se si tratta di un'applicazione obbligatoria, è possibile specificare la scadenza per l'installazione.",
+ "specificTime": "Data o ora specifiche",
+ "startTimeColumnLabel": "Disponibilità",
+ "startTimeDatePickerErrorMessage": "La data selezionata deve essere precedente alla data di scadenza",
+ "startTimeLabel": "Disponibilità dell'app"
+ },
+ "restartGracePeriodHeader": "Periodo di tolleranza per il riavvio",
+ "restartGracePeriodLabel": "Periodo di tolleranza per il riavvio del dispositivo",
+ "summaryTitle": "Esperienza dell'utente finale"
+ },
+ "EnrollmentType": {
+ "devicesWithEnrollment": "Dispositivi gestiti",
+ "devicesWithoutEnrollment": "App gestite"
+ },
+ "PolicySet": {
+ "appManagement": "Gestione applicazioni",
+ "assignments": "Assegnazioni",
+ "basics": "Informazioni di base",
+ "deviceEnrollment": "Registrazione del dispositivo",
+ "deviceManagement": "Gestione dei dispositivi",
+ "scopeTags": "Tag di ambito",
+ "appConfigurationTitle": "Criteri di configurazione dell'app",
+ "appProtectionTitle": "Criteri di protezione delle app",
+ "appTitle": "App",
+ "iOSAppProvisioningTitle": "Profili di provisioning delle app iOS",
+ "deviceLimitRestrictionTitle": "Restrizioni sul limite di dispositivi",
+ "deviceTypeRestrictionTitle": "Restrizioni dei tipi di dispositivo",
+ "enrollmentStatusSettingTitle": "Pagine di stato della registrazione",
+ "windowsAutopilotDeploymentProfileTitle": "Profili di distribuzione di Windows Autopilot",
+ "deviceComplianceTitle": "Criteri di conformità del dispositivo",
+ "deviceConfigurationTitle": "Profili di configurazione del dispositivo",
+ "powershellScriptTitle": "Script di PowerShell"
+ },
+ "AzureIAMCommon": {
+ "CountryNames": {
+ "countryNameNR": "Nauru",
+ "countryNameBH": "Bahrein",
+ "countryNameZA": "Sudafrica",
+ "countryNameJO": "Giordania",
+ "countryNameSD": "Sudan",
+ "countryNameNU": "Niue",
+ "countryNameCZ": "Ceca, Repubblica",
+ "countryNameLT": "Lituania",
+ "countryNameTK": "Tokelau",
+ "countryNameEC": "Ecuador",
+ "countryNameVU": "Vanuatu",
+ "countryNameUG": "Uganda",
+ "countryNameLI": "Liechtenstein",
+ "countryNameHK": "Hong Kong - R.A.S.",
+ "countryNameGH": "Ghana",
+ "countryNameSA": "Arabia Saudita",
+ "countryNamePG": "Papua Nuova Guinea",
+ "countryNameBW": "Botswana",
+ "countryNameDG": "Diego Garcia",
+ "countryNameIN": "India",
+ "countryNameHN": "Honduras",
+ "countryNameRO": "Romania",
+ "countryNameKZ": "Kazakistan",
+ "countryNameLC": "Saint Lucia",
+ "countryNameGE": "Georgia",
+ "countryNameTT": "Trinidad e Tobago",
+ "countryNameMP": "Isole Marianne settentrionali",
+ "countryNameMV": "Maldive",
+ "countryNameFI": "Finlandia",
+ "countryNameNO": "Norvegia",
+ "countryNameEE": "Estonia",
+ "countryNameVE": "Venezuela",
+ "countryNameUZ": "Uzbekistan",
+ "countryNameME": "Montenegro",
+ "countryNameTJ": "Tagikistan",
+ "countryNameAW": "Aruba",
+ "countryNameFR": "Francia",
+ "countryNameOM": "Oman",
+ "countryNameAO": "Angola",
+ "countryNameIT": "Italia",
+ "countryNameAZ": "Azerbaigian",
+ "countryNameKG": "Kirghizistan",
+ "countryNameWF": "Wallis e Futuna",
+ "countryNameTL": "Timor Est",
+ "countryNameFK": "Isole Falkland (Isole Malvine)",
+ "countryNameGY": "Guyana",
+ "countryNameSS": "Sudan del Sud",
+ "countryNameMM": "Myanmar",
+ "countryNameHT": "Haiti",
+ "countryNameSY": "Siria",
+ "countryNameMD": "Moldova",
+ "countryNameVC": "Saint Vincent e Grenadine",
+ "countryNameID": "Indonesia",
+ "countryNameRE": "Riunione",
+ "countryNameER": "Eritrea",
+ "countryNameMK": "Macedonia del Nord",
+ "countryNameTG": "Togo",
+ "countryNamePF": "Polinesia francese",
+ "countryNameKY": "Isole Cayman",
+ "countryNameIO": "Territorio britannico dell'Oceano Indiano",
+ "countryNameRU": "Russia",
+ "countryNameMA": "Marocco",
+ "countryNameAU": "Australia",
+ "countryNameBO": "Bolivia",
+ "countryNameVA": "Santa Sede (Stato della Città del Vaticano)",
+ "countryNameVG": "Isole Vergini Britanniche",
+ "countryNameFM": "Micronesia",
+ "countryNameAQ": "Antartide",
+ "countryNameZM": "Zambia",
+ "countryNameBR": "Brasile",
+ "countryNameIS": "Islanda",
+ "countryNamePE": "Perù",
+ "countryNameBG": "Bulgaria",
+ "countryNamePR": "Portorico",
+ "countryNameGI": "Gibilterra",
+ "countryNameBS": "Bahamas",
+ "countryNameJE": "Jersey",
+ "countryNameMO": "RAS di Macao",
+ "countryNameRW": "Ruanda",
+ "countryNameAS": "Samoa americane",
+ "countryNameBQ": "Bonaire, Sint Eustatius e Saba",
+ "countryNameMF": "Saint Martin",
+ "countryNameTM": "Turkmenistan",
+ "countryNameML": "Mali",
+ "countryNameTO": "Tonga",
+ "countryNameNC": "Nuova Caledonia",
+ "countryNameAC": "Isola Ascensione",
+ "countryNameBN": "Brunei",
+ "countryNameBD": "Bangladesh",
+ "countryNameMW": "Malawi",
+ "countryNameGM": "Gambia",
+ "countryNameGA": "Gabon",
+ "countryNameCA": "Canada",
+ "countryNameSH": "Sant'Elena",
+ "countryNameYT": "Mayotte",
+ "countryNameMN": "Mongolia",
+ "countryNamePA": "Panama",
+ "countryNameCM": "Camerun",
+ "countryNameNE": "Niger",
+ "countryNameCW": "Curaçao",
+ "countryNameJP": "Giappone",
+ "countryNameCY": "Cipro",
+ "countryNameCD": "Repubblica democratica del Congo",
+ "countryNameTN": "Tunisia",
+ "countryNameTR": "Turchia",
+ "countryNameWS": "Samoa",
+ "countryNameSE": "Svezia",
+ "countryNameXK": "Kosovo",
+ "countryNameKH": "Cambogia",
+ "countryNamePL": "Polonia",
+ "countryNameDZ": "Algeria",
+ "countryNameLR": "Liberia",
+ "countryNameSO": "Somalia",
+ "countryNameDM": "Dominica",
+ "countryNameEG": "Egitto",
+ "countryNameGF": "Guyana francese",
+ "countryNameNZ": "Nuova Zelanda",
+ "countryNamePS": "Autorità Palestinese",
+ "countryNameIL": "Israele",
+ "countryNameSL": "Sierra Leone",
+ "countryNameGR": "Grecia",
+ "countryNameNG": "Nigeria",
+ "countryNameMR": "Mauritania",
+ "countryNameVI": "Isole Vergini Americane",
+ "countryNameGQ": "Guinea Equatoriale",
+ "countryNameMX": "Messico",
+ "countryNameDJ": "Gibuti",
+ "countryNameGN": "Guinea",
+ "countryNameCN": "Cina",
+ "countryNameMZ": "Mozambico",
+ "countryNameBV": "Isola Bouvet",
+ "countryNameNF": "Norfolk",
+ "countryNameTZ": "Tanzania",
+ "countryNameAI": "Anguilla",
+ "countryNameGS": "Georgia del Sud e Sandwich Australi",
+ "countryNameRS": "Serbia",
+ "countryNameCC": "Isole Cocos (Keeling)",
+ "countryNameNA": "Namibia",
+ "countryNameDE": "Germania",
+ "countryNameCG": "Repubblica del Congo",
+ "countryNameKW": "Kuwait",
+ "countryNameMH": "Marshall",
+ "countryNameVN": "Vietnam",
+ "countryNameBY": "Bielorussia",
+ "countryNameMY": "Malaysia",
+ "countryNameST": "São Tomé e Príncipe",
+ "countryNameLS": "Lesotho",
+ "countryNameBI": "Burundi",
+ "countryNameTD": "Ciad",
+ "countryNameCX": "Isola Christmas",
+ "countryNameIR": "Iran",
+ "countryNameTV": "Tuvalu",
+ "countryNameGW": "Guinea-Bissau",
+ "countryNameUA": "Ucraina",
+ "countryNameCU": "Cuba",
+ "countryNameCO": "Colombia",
+ "countryNameNI": "Nicaragua",
+ "countryNameHR": "Croazia",
+ "countryNameSC": "Seychelles",
+ "countryNameNL": "Paesi Bassi",
+ "countryNameUM": "Altre isole americane del Pacifico",
+ "countryNameIM": "Isola di Man",
+ "countryNameFJ": "Figi",
+ "countryNameSR": "Suriname",
+ "countryNameGT": "Guatemala",
+ "countryNameSM": "San Marino",
+ "countryNameLA": "Laos",
+ "countryNameGB": "Regno Unito",
+ "countryNameBB": "Barbados",
+ "countryNameSI": "Slovenia",
+ "countryNameAM": "Armenia",
+ "countryNameAR": "Argentina",
+ "countryNamePM": "Saint-Pierre e Miquelon",
+ "countryNameTF": "Terre Australi e Antartiche Francesi",
+ "countryNameDO": "Dominicana, Repubblica",
+ "countryNameZW": "Zimbabwe",
+ "countryNameMQ": "Martinica",
+ "countryNamePT": "Portogallo",
+ "countryNameCF": "Repubblica Centrafricana",
+ "countryNameBE": "Belgio",
+ "countryNameKM": "Comore",
+ "countryNameLY": "Libia",
+ "countryNameIE": "Irlanda",
+ "countryNameKP": "Corea del Nord",
+ "countryNameGG": "Guernsey",
+ "countryNameSK": "Slovacchia",
+ "countryNameTC": "Isole Turks e Caicos",
+ "countryNameNP": "Nepal",
+ "countryNameBF": "Burkina Faso",
+ "countryNameYE": "Yemen",
+ "countryNameBA": "Bosnia ed Erzegovina",
+ "countryNameGP": "Guadalupa",
+ "countryNameMS": "Montserrat",
+ "countryNameCL": "Cile",
+ "countryNameIQ": "Iraq",
+ "countryNameSJ": "Svalbard e Isola Jan Mayen",
+ "countryNameAX": "Isole Åland",
+ "countryNameKE": "Kenya",
+ "countryNameGU": "Guam",
+ "countryNameBM": "Bermuda",
+ "countryNameFO": "Fær Øer",
+ "countryNameBL": "Saint-Barthélemy",
+ "countryNameLB": "Libano",
+ "countryNameJM": "Giamaica",
+ "countryNameAF": "Afghanistan",
+ "countryNameES": "Spagna",
+ "countryNameMC": "Monaco",
+ "countryNameSG": "Singapore",
+ "countryNameAL": "Albania",
+ "countryNameSN": "Senegal",
+ "countryNameSZ": "Swaziland",
+ "countryNameBZ": "Belize",
+ "countryNameCI": "Côte d'Ivoire (Costa d'Avorio)",
+ "countryNameTW": "Taiwan",
+ "countryNameUY": "Uruguay",
+ "countryNameCK": "Isole Cook",
+ "countryNameTH": "Thailandia",
+ "countryNameHM": "Heard e McDonald",
+ "countryNameGD": "Grenada",
+ "countryNameUS": "Stati Uniti",
+ "countryNameAT": "Austria",
+ "countryNameKR": "Repubblica di Corea",
+ "countryNamePK": "Pakistan",
+ "countryNameDK": "Danimarca",
+ "countryNameSV": "El Salvador",
+ "countryNamePW": "Palau",
+ "countryNameET": "Etiopia",
+ "countryNameMG": "Madagascar",
+ "countryNameCR": "Costa Rica",
+ "countryNameLU": "Lussemburgo",
+ "countryNameQA": "Qatar",
+ "countryNameBT": "Bhutan",
+ "countryNameSB": "Isole Salomone",
+ "countryNameAE": "Emirati Arabi Uniti",
+ "countryNameAD": "Andorra",
+ "countryNameCV": "Cabo Verde",
+ "countryNameAG": "Antigua e Barbuda",
+ "countryNameMU": "Mauritius",
+ "countryNameHU": "Ungheria",
+ "countryNameSX": "Sint Maarten",
+ "countryNameCH": "Svizzera",
+ "countryNamePN": "Isole Pitcairn",
+ "countryNameGL": "Groenlandia",
+ "countryNamePH": "Filippine",
+ "countryNameMT": "Malta",
+ "countryNameKN": "Saint Kitts e Nevis",
+ "countryNameLK": "Sri Lanka",
+ "countryNameKI": "Kiribati",
+ "countryNameBJ": "Benin",
+ "countryNameLV": "Lettonia",
+ "countryNamePY": "Paraguay"
+ }
+ }
}
diff --git a/Documentation/Strings-ja.json b/Documentation/Strings-ja.json
index 71c3927..7169af2 100644
--- a/Documentation/Strings-ja.json
+++ b/Documentation/Strings-ja.json
@@ -1,1842 +1,4 @@
{
- "InstallContextType": {
- "device": "デバイス",
- "deviceContext": "デバイス コンテキスト",
- "user": "ユーザー",
- "userContext": "ユーザー コンテキスト"
- },
- "WipPolicySettings": {
- "addNetworkBoundary": "ネットワーク境界の追加",
- "addNetworkBoundaryButton": "ネットワーク境界の追加...",
- "allowWindowsSearch": "暗号化された会社のデータとストア アプリの検索を Windows Search に許可する",
- "authoritativeIpRanges": "エンタープライズ IP 範囲の一覧を優先する (自動検出しない)",
- "authoritativeProxyServers": "エンタープライズ プロキシ サーバーの一覧を優先する (自動検出しない)",
- "boundaryType": "境界の種類",
- "cloudResources": "クラウド リソース",
- "corporateIdentity": "会社の ID",
- "dataRecoveryCert": "データ回復エージェント (DRA) 証明書をアップロードして、暗号化されたデータの回復を許可します",
- "editNetworkBoundary": "ネットワーク境界の編集",
- "enrollmentState": "登録の状態",
- "iPv4Ranges": "IPv4 範囲",
- "iPv6Ranges": "IPv6 範囲",
- "internalProxyServers": "内部プロキシ サーバー",
- "maxInactivityTime": "デバイスが PIN またはパスワードでロックされるまでの最大のアイドル時間 (分)",
- "maxPasswordAttempts": "デバイスがワイプされるまでの認証失敗の回数",
- "mdmDiscoveryUrl": "MDM 探索 URL",
- "mdmRequiredSettingsInfo": "このポリシーは、Windows 10 Anniversary Edition 以降にのみ適用されます。このポリシーでは保護を適用するために Windows Information Protection (WIP) を使用します。",
- "minimumPinLength": "PIN に必要な最小文字数を設定します",
- "name": "名前",
- "networkBoundariesGridEmptyText": "追加したネットワーク境界がここに表示されます",
- "networkBoundary": "ネットワーク境界",
- "networkDomainNames": "ネットワーク ドメイン",
- "neutralResources": "ニュートラル リソース",
- "passportForWork": "Windows にサインインする方法として Windows Hello for Business を使います",
- "pinExpiration": "PIN を変更するようにシステムからユーザーに要求が出されるまでの期間 (日数) を指定します",
- "pinHistory": "再利用できないユーザー アカウントに関連付けることができる以前の PIN の数を指定します",
- "pinLowercaseLetters": "Windows Hello for Business 用の PIN に小文字を使うことを構成します",
- "pinSpecialCharacters": "Windows Hello for Business 用の PIN に特殊文字を使うことを構成します",
- "pinUppercaseLetters": "Windows Hello for Business 用の PIN に大文字を使うことを構成します",
- "protectUnderLock": "デバイスのロック時にアプリから会社のデータにアクセスできないようにします。Windows 10 Mobile のみに適用されます",
- "protectedDomainNames": "保護されたドメイン",
- "proxyServers": "プロキシ サーバー",
- "requireAppPin": "デバイス PIN が管理されている場合にアプリ PIN を無効にする",
- "requiredSettings": "必須の設定",
- "requiredSettingsInfo": "スコープを変更するか、このポリシーを削除すると、会社のデータの暗号化が解除されます。",
- "revokeOnMdmHandoff": "デバイスを MDM に登録するときに、保護されたデータへのアクセス権を取り消す",
- "revokeOnUnenroll": "登録解除時に暗号化キーを取り消す",
- "rmsTemplateForEdp": "Azure RMS に使うテンプレート ID を指定します",
- "showWipIcon": "エンタープライズ データ保護アイコンを表示します",
- "type": "種類",
- "useRmsForWip": "Azure RMS を WIP のために使います",
- "value": "値",
- "weRequiredSettingsInfo": "このポリシーは、Windows 10 Creators Update 以降にのみ適用されます。ポリシーでは保護を適用するために Windows Information Protection (WIP) と Windows MAM を使用します。",
- "wipProtectionMode": "Windows Information Protection モード",
- "withEnrollment": "登録済み",
- "withoutEnrollment": "未登録"
- },
- "EdgeAppConfig": {
- "AllowedURLs": {
- "title": "許可された URL",
- "tooltip": "ユーザーが作業コンテキスト内でアクセスを許可されるサイトを指定します。他のサイトは許可されません。許可/ブロックのどちらかを選択してリストを構成できますが、両方を選択することはできません。"
- },
- "ApplicationProxyRedirection": {
- "header": "アプリケーション プロキシ",
- "title": "アプリケーション プロキシのリダイレクト",
- "tooltip": "アプリ プロキシのリダイレクトを有効にすると、企業リンクとオンプレミスの Web アプリへのアクセスがユーザーに付与されます。"
- },
- "BlockedURLs": {
- "title": "ブロックする URL",
- "tooltip": "ユーザー用にブロックされるサイトを作業コンテキスト内で指定します。他のすべてのサイトは許可されます。許可/ブロックのどちらかを選択してリストを構成できますが、両方を選択することはできません。"
- },
- "Bookmarks": {
- "header": "マネージド ブックマーク",
- "tooltip": "作業コンテキストで Microsoft Edge を使用するときにユーザーが利用できるように、ブックマークされた URL の一覧を入力します。",
- "uRL": "URL"
- },
- "HomepageURL": {
- "header": "管理対象のホームページ",
- "title": "ホームページのショートカットの URL",
- "tooltip": "Microsoft Edge で新しいタブを開いたときに、検索バーの下に最初のアイコンとしてユーザーに表示される、ホームページのショートカットを構成します。"
- },
- "PersonalContext": {
- "label": "制限付きサイトを個人用コンテキストにリダイレクトする",
- "tooltip": "ユーザーが制限されたサイトを開くために個人のコンテキストに移行することを許可するかどうかを構成します。"
- }
- },
- "AzureIAM": {
- "AdrsUserActionSelectionWarning": {
- "conditions": "デバイスの登録が必要な条件は、\"デバイスの登録または参加\" ユーザー操作では利用できません。",
- "message": "\"デバイスの登録または参加\" ユーザー アクション用に作成されたポリシーで使用できるのは \"多要素認証を要求する\" のみです。{0}"
- },
- "AuthContext": {
- "Included": {
- "none": "クラウド アプリ、アクション、認証コンテキストが選択されていません",
- "plural": "{0} 個の認証コンテキストを含む",
- "singular": "1 個の認証コンテキストを含む"
- },
- "InfoBlade": {
- "createTitle": "認証コンテキストの追加",
- "descPlaceholder": "認証コンテキストの説明を追加してください",
- "modifyTitle": "認証コンテキストの変更",
- "namePlaceholder": "例: 信頼できる場所、信頼できるデバイス、強力な認可",
- "publishDesc": "アプリに発行すると、アプリで認証コンテキストが使用できるようになります。タグの条件付きアクセス ポリシーの構成が完了したら、発行してください。[詳細情報][1]\n[1]:https://go.microsoft.com/fwlink/?linkid=2150966",
- "publishLabel": "アプリに発行",
- "titleDesc": "アプリケーションのデータとアクションを保護するために使用される認証コンテキストを構成します。アプリケーション管理者が理解できる名前と説明をお使いください。[詳細情報][1]\n[1]:https://go.microsoft.com/fwlink/?linkid=2150965"
- },
- "Notify": {
- "failure": "{0} を更新できませんでした",
- "modifying": "{0} を変更しています",
- "success": "{0} が正常に更新されました"
- },
- "WhatIf": {
- "selected": "含まれる認証コンテキスト"
- },
- "addNewStepUp": "新しい認証コンテキスト",
- "checkBoxInfo": "このポリシーが適用される認証コンテキストを選択します",
- "configure": "認証コンテキストの構成",
- "createCA": "条件付きアクセス ポリシーを認証コンテキストに割り当てる",
- "dataGrid": "認証コンテキストの一覧",
- "description": "説明",
- "documentation": "ドキュメント",
- "getStarted": "概要",
- "label": "認証コンテキスト (プレビュー)",
- "menuLabel": "認証コンテキスト (プレビュー)",
- "name": "名前",
- "noAuthContextSet": "認証コンテキストがありません",
- "noData": "表示する認証コンテキストがありません",
- "selectionInfo": "認証コンテキストは、SharePoint や Microsoft Cloud App Security などのアプリのアプリケーション データとアクションを保護するために使用されます。",
- "step": "ステップ",
- "tabDescription": "アプリのデータとアクションを保護するために、認証コンテキストを管理します。[詳細情報][1]\n[1]:https://go.microsoft.com/fwlink/?linkid=2150965",
- "tagResources": "認証コンテキストを含むリソースをタグ付けする"
- },
- "AuthenticationStrength": {
- "Mode": {
- "deviceBasedPush": "Microsoft Authenticator (電話によるサインイン)",
- "deviceBasedPushFido2X509Certificate": "Microsoft Authenticator (電話によるサインイン) + FIDO 2 + 証明書ベースの認証",
- "deviceBasedPushX509CertificateSingleFactor": "Microsoft Authenticator (電話によるサインイン) + FIDO 2 + 証明書ベースの認証 (単一要素)",
- "email": "メールのワンタイム パス",
- "emailOtp": "メール OTP",
- "federatedMultiFactor": "フェデレーション多要素",
- "federatedSingleFactor": "フェデレーション単一要因",
- "federatedSingleFactorFederatedMultiFactor": "フェデレーション単一要素 + フェデレーション多要素",
- "fido2": "FIDO 2 セキュリティ キー",
- "fido2X509CertificateSingleFactor": "FIDO 2 セキュリティ キー + 証明書ベースの認証 (単一要素)",
- "hardwareOath": "ハードウェア OTP",
- "hardwareOathX509CertificateSingleFactor": "ハードウェア OTP + 証明書ベースの認証 (単一要素)",
- "microsoftAuthenticatorPSIX509CertificateSingleFactor": "Microsoft Authenticator (電話によるサインイン) + 証明書ベースの認証 (単一要素)",
- "microsoftAuthenticatorPsi": "Microsoft Authenticator (電話によるサインイン)",
- "microsoftAuthenticatorPush": "Microsoft Authenticator (プッシュ通知)",
- "microsoftAuthenticatorPushX509CertificateSingleFactor": "Microsoft Authenticator (プッシュ通知) + 証明書ベースの認証 (単一要素)",
- "none": "なし",
- "password": "パスワード",
- "passwordDeviceBasedPush": "パスワード + Microsoft Authenticator (電話によるサインイン)",
- "passwordFido2": "パスワード + FIDO 2 セキュリティ キー",
- "passwordHardwareOath": "パスワード + ハードウェア OTP",
- "passwordMicrosoftAuthenticatorPSI": "パスワード + Microsoft Authenticator (電話によるサインイン)",
- "passwordMicrosoftAuthenticatorPush": "パスワード + Microsoft Authenticator (プッシュ通知)",
- "passwordSms": "パスワード + SMS",
- "passwordSoftwareOath": "パスワード + ソフトウェア OTP",
- "passwordTemporaryAccessPassMultiUse": "パスワード + 一時アクセス パス (複数使用)",
- "passwordTemporaryAccessPassOneTime": "パスワード + 一時アクセス パス (1 回限りの使用)",
- "passwordVoice": "パスワード + 音声",
- "sms": "SMS",
- "smsSignIn": "SMS サインイン",
- "smsX509CertificateSingleFactor": "SMS + 証明書ベースの認証 (単一要素)",
- "softwareOath": "ソフトウェア OTP",
- "softwareOathX509CertificateSingleFactor": "ソフトウェア OTP + 証明書ベースの認証 (単一要素)",
- "temporaryAccessPassMultiUse": "一時アクセス パス (複数使用)",
- "temporaryAccessPassMultiUseX509CertificateSingleFactor": "一時アクセス パス (複数使用) + 証明書ベースの認証 (単一要素)",
- "temporaryAccessPassOneTime": "一時アクセス パス (1 回限りの使用)",
- "temporaryAccessPassOneTimeX509CertificateSingleFactor": "一時アクセス パス (1 回限りの使用) + 証明書ベースの認証 (単一要素)",
- "voice": "音声",
- "voiceX509CertificateSingleFactor": "音声 + 証明書ベースの認証 (単一要素)",
- "windowsHelloForBusiness": "Windows Hello for Business",
- "x509CertificateMultiFactor": "証明書ベースの認証 (多要素)",
- "x509CertificateSingleFactor": "証明書ベースの認証 (単一要素)"
- }
- },
- "CAS": {
- "BuiltinPolicy": {
- "Option": {
- "blockDownloads": "ダウンロードをブロックする (プレビュー)",
- "monitorOnly": "監視のみ (プレビュー)",
- "protectDownloads": "ダウンロードを保護する (プレビュー)",
- "useCustomControls": "カスタム ポリシーを使用する..."
- },
- "ariaLabel": "適用するアプリの条件付きアクセス制御の種類を選択します"
- }
- },
- "ChooseApplications": {
- "Grid": {
- "appIdAria": "アプリ ID: {0}"
- },
- "LowerGrid": {
- "ariaLabel": "選択したクラウド アプリの一覧"
- },
- "UpperGrid": {
- "ariaLabel": "検索用語に一致するクラウド アプリの一覧"
- }
- },
- "ChooseLocations": {
- "Validation": {
- "failed": "[選択された場所] を使用する場合、少なくとも 1 つの場所を選択する必要があります。",
- "selector": "少なくとも 1 つの場所を選択してください"
- }
- },
- "ClientApp": {
- "Clients": {
- "Validation": {
- "failed": "次のクライアントのうち、少なくとも 1 つを選択する必要があります"
- }
- }
- },
- "ClientConditionsInfo": {
- "browserAndModern": "このポリシーは、ブラウザーと先進認証アプリにのみ適用されます。すべてのクライアント アプリにポリシーを適用するには、クライアント アプリの条件を有効にし、すべてのクライアント アプリを選択してください。",
- "classicExperience": "このポリシーが作成されたため、既定のクライアント アプリの構成が更新されました。",
- "legacyAuth": "構成されていない場合、ポリシーは、最新および従来の認証を含むすべてのクライアント アプリに適用されるようになりました。"
- },
- "CloudAppFilterBlade": {
- "AssignmentFilter": {
- "header": "属性",
- "placeholder": "属性を選択"
- },
- "Configure": {
- "infoBalloon": "ポリシーを適用するアプリ フィルターを構成します。"
- },
- "NoPermissions": {
- "learnMoreAria": "カスタム セキュリティ属性のアクセス許可に関する詳細情報。",
- "message": "カスタム セキュリティ属性を使用するために必要なアクセス許可がありません。"
- },
- "gridHeader": "カスタム セキュリティ属性を使用すると、ルール ビルダーまたはルール構文テキスト ボックスを使用して、フィルター ルールを作成または編集できます。プレビューでは、文字列型の属性のみがサポートされています。整数型またはブール型の属性は表示されません。",
- "learnMoreAria": "ルール ビルダーと構文テキスト ボックスの使用に関する詳細情報。",
- "noAttributes": "フィルター処理できるカスタム属性はありません。このフィルターを使用するには、いくつかの属性を構成する必要があります。",
- "title": "Edit filter (Preview)"
- },
- "CloudAppsUserActions": {
- "any": "すべてのクラウド アプリまたはアクション",
- "infoBalloon": "テストするクラウド アプリまたはユーザー アクション。例: 'SharePoint Online'",
- "learnMore": "すべてまたは特定のクラウド アプリまたはアクションに基づいて、アクセスを制御します。",
- "learnMoreB2C": "すべてまたは特定のクラウド アプリに基づいて、アクセスを制御します。",
- "title": "クラウド アプリまたは操作"
- },
- "CloudappsSelectionBlade": {
- "Excluded": {
- "gridAria": "除外されたクラウド アプリの一覧"
- },
- "Filter": {
- "configured": "構成済み",
- "label": "Edit filter (Preview)",
- "with": "{1} による {0}"
- },
- "Included": {
- "gridAria": "含まれているクラウド アプリの一覧"
- },
- "Validation": {
- "authContext": "[認証コンテキスト] では、少なくとも 1 つのサブ項目を構成する必要があります。",
- "selectApps": "\"{0}\" を構成する必要があります",
- "selector": "少なくとも 1 つのアプリを選択してください。",
- "userActions": "[ユーザー操作] では、少なくとも 1 つのサブ項目を構成する必要があります。"
- }
- },
- "DeviceState": {
- "LearnMore": {
- "message": "Control user access when the device the user is signing-in from is not \"Hybrid Azure AD joined\" or \"marked as compliant\".\n '{0}' has been deprecated. Use '{1}' instead."
- }
- },
- "Errors": {
- "notFound": "ポリシーが見つからなかったか、削除されています。",
- "notFoundDetailed": "ポリシー \"{0}\" が存在しません。削除された可能性があります。"
- },
- "NamedLocation": {
- "Form": {
- "CountryLookup": {
- "ariaLabel": "国の検索方法",
- "gps": "GPS 座標による場所の特定",
- "info": "条件付きアクセス ポリシーの場所の条件が構成されている場合、ユーザーは、認証アプリから GPS の場所を共有するように求められます。 ",
- "ip": "IP アドレスによる場所の特定 (IPv4 のみ)"
- },
- "Header": {
- "new": "新しい場所 ({0})",
- "update": "場所の更新 ({0})"
- },
- "IP": {
- "learn": "ネームド ロケーションの IPv4 と IPv6 の範囲を構成します。\n[詳細情報][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
- },
- "Include": {
- "infoBalloon": "不明な国または地域とは、特定の国または地域に関連付けられていない IP アドレスです。[詳細情報][1]\n\nこれには、以下が含まれます。\n* IPv6 アドレス\n* 直接マッピングされていない IPv4 アドレス\n[1]: https://aka.ms/canamedlocations\n",
- "label": "不明な国またはリージョンを含める"
- },
- "Name": {
- "empty": "名前は空にできません",
- "placeholder": "この場所に名前を指定"
- },
- "PrivateLink": {
- "learn": "Azure AD のプライベート リンクを含むネームド ロケーションを新規作成します。\n[詳細情報][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
- },
- "Search": {
- "countries": "国の検索",
- "names": "名前を検索",
- "privateLinks": "プライベート リンクの検索"
- },
- "Trusted": {
- "label": "信頼できる場所としてマークする"
- },
- "enter": "新しい IPv4 または IPv6 の範囲を入力してください",
- "example": "例: 40.77.182.32/27 または 2a01:111::/32"
- },
- "Label": {
- "addCountries": "国の場所",
- "addIpRange": "IP 範囲の場所",
- "addPrivateLink": "Azure Private Link"
- },
- "Notification": {
- "Create": {
- "Failed": {
- "description": "新しい場所 ({0}) の作成でエラーが発生しました",
- "title": "作成に失敗しました"
- },
- "InProgress": {
- "description": "新しい場所 ({0}) を作成しています",
- "title": "作成中です"
- },
- "Success": {
- "description": "新しい場所 ({0}) の作成に成功しました",
- "title": "作成に成功しました"
- }
- },
- "Delete": {
- "Failed": {
- "description": "場所 ({0}) の削除でエラーが発生しました",
- "title": "削除に失敗しました"
- },
- "InProgress": {
- "description": "場所 ({0}) を削除しています",
- "title": "削除の進行中"
- },
- "Success": {
- "description": "場所 ({0}) の削除に成功しました",
- "title": "削除に成功しました"
- }
- },
- "Update": {
- "Failed": {
- "description": "場所 ({0}) の更新でエラーが発生しました",
- "title": "更新に失敗しました"
- },
- "InProgress": {
- "description": "場所 ({0}) を更新しています",
- "title": "更新が進行中"
- },
- "Success": {
- "description": "場所 ({0}) の更新に成功しました",
- "title": "更新に成功しました"
- }
- }
- },
- "PrivateLinks": {
- "grid": "プライベート リンクの一覧"
- },
- "Trusted": {
- "title": "信頼済みタイプ",
- "trusted": "信頼されている"
- },
- "Type": {
- "all": "すべての種類",
- "countries": "国",
- "ipRanges": "IP 範囲",
- "privateLinks": "プライベート リンク",
- "title": "場所の種類"
- },
- "iPRangeInvalidError": "値は有効な IPv4 または IPv6 の範囲である必要があります。",
- "iPRangeLinkOrSiteLocalError": "リンク ローカル アドレスまたはサイト ローカル アドレスとして検出された IP ネットワーク。",
- "iPRangeOctetError": "IP ネットワークの先頭を 0 または 255 にすることはできません。",
- "iPRangePrefixError": "IP ネットワーク プレフィックスは /{0} から /{1} の間である必要があります。",
- "iPRangePrivateError": "プライベート アドレスとして検出された IP ネットワーク。"
- },
- "Policies": {
- "Grid": {
- "aria": "条件付きアクセス ポリシーの一覧"
- },
- "countText": "{1} 個のポリシーのうち {0} 個が見つかりました",
- "countTextSingular": "1 個のポリシーのうち {0} 個が見つかりました",
- "search": "ポリシーの検索"
- },
- "Policy": {
- "Condition": {
- "ServicePrincipalRisk": {
- "description": "ポリシーを適用するために必要なサービス プリンシパルのリスク レベルを構成します",
- "infoBalloonContent": "選択したリスク レベルにポリシーを適用するようサービス プリンシパルのリスクを構成します",
- "title": "サービス プリンシパルのリスク"
- }
- }
- },
- "PolicyControlAuthStrength": {
- "MultiFactorAuthentication": {
- "description": "強力な認証を満たす方法の組み合わせ (パスワード + SMS など)",
- "displayName": "多要素認証 (MFA)"
- },
- "Passwordless": {
- "description": "強力な認証に適合するパスワードレスの方法 (Microsoft Authenticator など) ",
- "displayName": "パスワードレス MFA"
- },
- "PhishingResistant": {
- "description": "最も強力な認証のためのフィッシング防止のパスワードレス メソッド (FIDO2 セキュリティ キーなど)",
- "displayName": "フィッシング防止 MFA"
- }
- },
- "PolicyControlFedAuthMethod": {
- "certificate": "証明書の認証",
- "infoBubble": "必要な認証方法を指定してください。これは、ADFS などのフェデレーション プロバイダーが満たす必要があります。",
- "multifactor": "多要素認証",
- "require": "フェデレーション認証方法が必要 (プレビュー)",
- "whatIfFormat": "{0} - {1}"
- },
- "PolicyState": {
- "off": "オフ",
- "on": "オン",
- "reportOnly": "レポート専用"
- },
- "PolicyTemplates": {
- "Devices": {
- "description": "[デバイス] ポリシー テンプレート カテゴリを選択して、ネットワークにアクセスするデバイスを可視化します。アクセスを許可する前に、コンプライアンスと正常性状態を確認します。",
- "name": "デバイス"
- },
- "Identities": {
- "description": "ID ポリシー テンプレート カテゴリを選択して、デジタル資産全体で強力な認証を使用して各 ID を確認し、セキュリティで保護します。",
- "name": "ID"
- },
- "Summary": {
- "CloudApps": {
- "allCloudApps": "すべてのアプリ",
- "office365": "Office 365",
- "registerSecurityInfo": "セキュリティ情報の登録"
- },
- "Conditions": {
- "androidAndIOS": "デバイス プラットフォーム: Android および iOS",
- "anyDevice": "Android、iOS、Windows、Mac を除くすべてのデバイス",
- "anyDeviceStateExceptHybrid": "「準拠している」および「Hybrid Azure AD Join を使用した」以外のすべてのデバイスの状態",
- "anyLocation": "信頼以外のすべての場所",
- "browserMobileDesktop": "クライアント アプリ: ブラウザー、モバイル アプリ、デスクトップの各クライアント",
- "exchangeActiveSync": "クライアント アプリ: Exchange Active Sync、その他のクライアント",
- "windowsAndMac": "デバイス プラットフォーム: Windows および Mac"
- },
- "Devices": {
- "anyDevice": "任意のデバイス"
- },
- "Grant": {
- "appProtectionPolicy": "アプリ保護ポリシーが必要",
- "approvedClientApp": "承認されたクライアント アプリが必要",
- "blockAccess": "アクセスのブロック",
- "mfa": "多要素認証を要求する",
- "passwordChange": "パスワードの変更を要求する",
- "requireCompliantDevice": "デバイスは準拠しているとしてマーク済みであることが必要",
- "requireHybridAzureADDevice": "Hybrid Azure AD Join を使用したデバイスが必要"
- },
- "Session": {
- "appEnforcedRestrictions": "アプリによって適用される制限を使用する",
- "signInFrequency": "サインインの頻度と永続的なブラウザー セッションの禁止"
- },
- "UsersAndGroups": {
- "allUsers": "すべてのユーザー",
- "directoryRoles": "現在の管理者以外のディレクトリ ロール",
- "globalAdmin": "グローバル管理者",
- "noGuestAndAdmins": "ゲストと外部、グローバル管理者、現在の管理者以外のすべてのユーザー"
- },
- "azureManagement": "Azure の管理",
- "deviceFilters": "デバイスのフィルター",
- "devicePlatforms": "デバイス プラットフォーム"
- },
- "TemplateId": {
- "AppEnforcedRestrictions": {
- "description": "アンマネージド デバイスからの SharePoint、OneDrive、Exchange コンテンツへのアクセスをブロックまたは制限します。",
- "name": "CA014: アンマネージド デバイスに対してアプリケーションによって適用される制限を使用する",
- "title": "アンマネージド デバイスに対してアプリケーションによって適用される制限を使用する"
- },
- "ApprovedClientApps": {
- "description": "データ損失を防ぐために、組織は Intune アプリ保護を使用して、承認された先進認証クライアント アプリへのアクセスを制限できます。",
- "name": "CA012: 承認済みのクライアント アプリとアプリ保護を要求する",
- "title": "承認済みのクライアント アプリとアプリ保護を要求する"
- },
- "BlockAccessOnUnknowns": {
- "description": "デバイスの種類が不明またはサポートされていない場合、ユーザーは会社のリソースへのアクセスをブロックされます。",
- "name": "CA010: 不明なまたはサポートされていないデバイス プラットフォームのアクセスをブロックする",
- "title": "不明なまたはサポートされていないデバイス プラットフォームのアクセスをブロックする"
- },
- "BlockLegacyAuth": {
- "description": "多要素認証をバイパスするために使用できるレガシ認証エンドポイントをブロックします。",
- "name": "CA003: レガシ認証をブロックする",
- "title": "レガシ認証をブロックする"
- },
- "NoPersistentBrowserSession": {
- "description": "ブラウザーが閉じられた後もブラウザー セッションがサインインしたままにならないようにし、サインイン頻度を 1 時間に設定することで、アンマネージド デバイスでのユーザー アクセスを保護します。",
- "name": "CA011: 永続的なブラウザー セッションなし",
- "title": "永続的なブラウザー セッションなし"
- },
- "RequireCompliantOrHybridADAdmins": {
- "description": "特権管理者に、準拠または Hybrid Azure AD Join を使用したデバイスでの、リソースへのアクセスのみを行うように要求します。",
- "name": "CA009: 準拠しているか、Hybrid Azure AD Join を使用したデバイスを管理者に要求する",
- "title": "準拠しているか、Hybrid Azure AD Join を使用したデバイスを管理者に要求する"
- },
- "RequireCompliantOrHybridADAllUsers": {
- "description": "ユーザーにマネージド デバイスの使用または多要素認証の実行を要求することで、会社のリソースへのアクセスを保護します (macOS または Windows のみ)。",
- "name": "CA013: 準拠しているか、Hybrid Azure AD Join を使用したデバイス、または多要素認証をすべてのユーザーに要求する",
- "title": "準拠しているか、Hybrid Azure AD Join を使用したデバイス、または多要素認証をすべてのユーザーに要求する"
- },
- "RequireMFAAllUsers": {
- "description": "侵害のリスクを減らすために、すべてのユーザー アカウントに多要素認証を要求します。",
- "name": "CA004: すべてのユーザーに多要素認証を要求する",
- "title": "すべてのユーザーに多要素認証を要求する"
- },
- "RequireMFAForAdmins": {
- "description": "侵害のリスクを軽減するために、特権のある管理アカウントに多要素認証を要求します。このポリシーは、セキュリティの既定値と同じロールを対象とします。",
- "name": "CA001: すべての管理者に多要素認証を要求する",
- "title": "管理者に多要素認証を要求する"
- },
- "RequireMFAForAzureManagement": {
- "description": "Azure リソースへの特権アクセスを保護するには、多要素認証が必要です。",
- "name": "CA006: Azure 管理に多要素認証を要求する",
- "title": "Azure 管理に多要素認証を要求する"
- },
- "RequireMFAForGuestAccess": {
- "description": "ゲスト ユーザーが会社のリソースにアクセスするときに多要素認証を実行することを要求します。",
- "name": "CA005: ゲスト アクセスに多要素認証を要求する",
- "title": "ゲスト アクセスに多要素認証を要求する"
- },
- "RequireMFAForRiskySignIn": {
- "description": "サインイン リスクが中または高であることが検出された場合、多要素認証を要求します。(Azure AD Premium 2 ライセンスが必要)",
- "name": "CA007: 危険なサインインに多要素認証を要求する",
- "title": "危険なサインインに多要素認証を要求する"
- },
- "RequirePasswordChangeForHighRiskUsers": {
- "description": "ユーザー リスクが高であることが検出された場合、ユーザーにパスワードの変更を要求します。(Azure AD Premium 2 ライセンスが必要)",
- "name": "CA008: 危険性の高いユーザーにパスワードの変更を要求する",
- "title": "危険性の高いユーザーにパスワードの変更を要求する"
- },
- "RequireSecurityInfo": {
- "description": "ユーザーが Azure AD 多要素認証とセルフサービス パスワードに登録するタイミングと方法をセキュリティで保護します。",
- "name": "CA002: セキュリティ情報登録の保護",
- "title": "セキュリティ情報登録の保護"
- }
- },
- "TemplateState": {
- "BlockAccessOnUnknowns": {
- "title": "このポリシーを有効にすると、不明なデバイスの種類からのアクセスが禁止されます。ユーザーに影響しないことを確認するまで、レポート専用モードを使用することをお勧めします。"
- },
- "BlockLegacyAuth": {
- "description": "ユーザーに影響しないことを確認するまで、レポート専用モードを使用することをお勧めします。",
- "title": "このポリシーを有効にすると、すべてのユーザーのレガシ認証がブロックされます。"
- },
- "RequireCompliantOrHybridADAdmins": {
- "Description": {
- "on": "特権ユーザーに影響しないことを確認するまで、レポート専用モードを使用して開始することを検討してください。",
- "reportOnly": "準拠デバイスが必要なレポート専用モードのポリシーでは、デバイス コンプライアンスが強制されていない場合でも、ポリシーの評価時に、Mac、iOS、Android のユーザーにデバイス証明書を選択するよう求めるメッセージが表示される場合があります。このメッセージは、デバイスが準拠するまで繰り返される可能性があります。"
- },
- "Title": {
- "on": "このポリシーを有効にすると、マネージド デバイス (準拠または Hybrid Azure AD Join を使用しているなど) を使用しない限り、特権ユーザーのアクセスは禁止されます。有効にする前に、コンプライアンス ポリシーを構成しているか、または Hybrid Azure AD 構成を有効にしているかを確認してください。",
- "reportOnly": "有効にする前に、コンプライアンス ポリシーを構成しているか、または Hybrid Azure AD 構成を有効にしているかを確認してください。"
- }
- },
- "RequireCompliantOrHybridADAllUsers": {
- "Description": {
- "on": "このポリシーは、現在ログインしている管理者を除くすべてのユーザーに影響します。これがユーザーに影響しないことを確認するまで、レポート専用モードを使用して開始することを検討してください。"
- },
- "Title": {
- "on": "ご自分をロックアウトしないでください。デバイスが準拠または Hybrid Azure AD Join を使用しているか、または多要素認証を構成しているかを確認してください。",
- "reportOnly": "準拠デバイスが必要なレポート専用モードのポリシーでは、デバイス コンプライアンスが強制されていない場合でも、ポリシーの評価時に、Mac、iOS、Android のユーザーにデバイス証明書を選択するよう求めるメッセージが表示される場合があります。このメッセージは、デバイスが準拠するまで繰り返される可能性があります。"
- }
- },
- "RequireMfa": {
- "description": "オンプレミスのオブジェクトを同期するために緊急アクセス アカウントか Azure AD Connect を使用する場合、作成後にこのポリシーから以下のアカウントを除外しなければならない場合があります。"
- },
- "RequireMfaAdmins": {
- "description": "現在の管理者アカウントは自動的に除外されますが、それ以外はすべてポリシーの作成時に保護されます。まずはレポート専用モードを使用することをお勧めします。",
- "title": "自分自身をロックアウトしないでください。このポリシーは Azure portal に影響します。"
- },
- "RequireMfaAllUsers": {
- "description": "この変更を計画してすべてのユーザーにお知らせするまで、まずはレポート専用モードを使用することをお勧めします。",
- "title": "このポリシーを有効にすると、すべてのユーザーに多要素認証が強制されます。"
- },
- "RequireSecurityInfo": {
- "description": "会社のニーズに応じてこれらのアカウントを保護するため、構成をご確認ください。",
- "title": "このポリシーから除外されるユーザーとロール: ゲストや外部ユーザー、グローバル管理者、現在の管理者"
- }
- },
- "basics": "基本",
- "clientApps": "クライアント アプリ",
- "cloudApps": "クラウド アプリ",
- "cloudAppsOrActions": "クラウド アプリまたは操作 ",
- "conditions": "条件 ",
- "createNewPolicy": "テンプレートから新しいポリシーを作成 (プレビュー)",
- "createPolicy": "ポリシーの作成",
- "currentUser": "現在のユーザー",
- "customizeBuild": "ツールのカスタマイズ",
- "customizeTemplate": "テンプレート リストが、作成するポリシーの種類に基づいてカスタマイズされます",
- "excludedDevicePlatform": "除外されたデバイス プラットフォーム",
- "excludedDirectoryRoles": "除外されたディレクトリ ロール",
- "excludedLocation": "除外されたディレクトリ ロール",
- "excludedUsers": "除外されたユーザー",
- "grantControl": "制御の許可 ",
- "includeFilteredDevice": "フィルター処理されたデバイスをポリシーに含める",
- "includedDevicePlatform": "含められたデバイス プラットフォーム",
- "includedDirectoryRoles": "含められたディレクトリ ロール",
- "includedLocation": "含められた場所",
- "includedUsers": "含められたユーザー",
- "legacyAuthenticationClients": "レガシ認証クライアント",
- "namePolicy": "ポリシーに名前をつける",
- "next": "次へ",
- "policyName": "ポリシー名",
- "policyState": "ポリシーの状態",
- "policySummary": "ポリシーの概要",
- "policyTemplate": "ポリシー テンプレート",
- "previous": "前へ",
- "reviewAndCreate": "確認と作成",
- "riskLevels": "リスク レベル",
- "selectATemplate": "テンプレートの選択",
- "selectTemplate": "テンプレートの選択",
- "selectTemplateCategory": "テンプレート カテゴリの選択",
- "selectTemplateRecommendation": "応答に基づいて次のテンプレートをお勧めします",
- "sessionControl": "セッション制御 ",
- "signInFrequency": "サインインの頻度",
- "signInRisk": "サインイン リスク",
- "template": "テンプレート ",
- "templateCategory": "テンプレート カテゴリ",
- "userRisk": "ユーザーのリスク",
- "usersAndGroups": "ユーザーとグループ ",
- "viewPolicySummary": "ポリシーの概要を表示する "
- },
- "SSM": {
- "MemberSelector": {
- "description": "ユーザーとグループ"
- },
- "Notification": {
- "Migration": {
- "error": "継続的アクセス評価の設定を条件付きアクセス ポリシーに移行できませんでした",
- "inProgress": "継続的アクセス評価の設定の移行中",
- "success": "継続的アクセス評価の設定が条件付きアクセス ポリシーに正常に移行されました",
- "successDescription": "条件付きアクセス ポリシーに移動して、[CAE 設定から作成された CA ポリシー] という新規作成されたポリシーで、移行された設定をご確認ください。"
- },
- "error": "継続的アクセス評価の設定を更新できませんでした",
- "inProgress": "継続的アクセス評価の設定を更新しています",
- "success": "継続的アクセス評価の設定が正常に更新されました"
- },
- "PreviewOptions": {
- "disable": "プレビューを無効にする",
- "enable": "プレビューを有効にする"
- },
- "StrictLocationEnforcement": {
- "infoContent1": "ネットワーク パーティションまたは IPv4/IPv6 の不一致により、Azure AD とリソース プロバイダーによって同じクライアント デバイスから異なる IP が確認されました。厳密な場所の強制により、Azure AD とリソース プロバイダーによって確認された両方の IP アドレスに基づいて条件付きアクセス ポリシーが適用されます。",
- "infoContent2": "最大限のセキュリティを確保するには、Azure AD とリソース プロバイダーの両方によって確認できる IP をすべてネームド ロケーション ポリシーに含め、\"厳密な場所の強制\" モードを有効にすることをお勧めします。",
- "label": "厳密な場所の強制",
- "title": "その他の強制モード"
- },
- "bladeTitle": "継続的アクセス評価",
- "description": "ユーザーのアクセスが削除されるか、クライアントの IP アドレスが変更されるとき、継続的アクセス評価により、リソースとアプリケーションへのアクセスが凖リアルタイムで自動的にブロックされます。",
- "migrateLabel": "移行",
- "migrationError": "次のエラーにより、移行が失敗しました: {0}",
- "migrationInfo": "CAE 設定は、条件付きアクセス UX に移動されました。上の [移行] ボタンを使用して移行し、今後は条件付きアクセス ポリシーで構成してください。詳細については、こちらをクリックしてください。",
- "noLicenseMessage": "Azure AD Premium を使用してスマート セッション管理設定を管理する",
- "optionsPickerTitle": "継続的アクセス評価の有効化または無効化",
- "upsellInfo": "このページの設定を変更することはできなくなりました。ここでの設定は無視する必要があります。前の設定が適用されます。今後は、[条件付きアクセス] で CAE 設定を構成できます。詳細については、こちらをクリックしてください。"
- },
- "SessionLifetime": {
- "PersistentBrowser": {
- "Error": {
- "notAllApps": "永続的ブラウザー セッション ポリシーは、[すべてのクラウド アプリ] が選択されている場合にのみ正しく動作します。クラウド アプリの選択を更新してください。"
- },
- "Option": {
- "always": "常に永続的",
- "help": "永続的ブラウザー セッションを使用すると、ユーザーはブラウザー ウィンドウを閉じてから再び開いた後もサインイン状態を維持できます。
\n\n- この設定は、[すべてのクラウド アプリ] が選択されている場合に正しく動作します。
\n- これは、トークンの有効期間やサインインの頻度の設定には影響しません。
\n- これは、[会社のブランド] の [サインイン状態を維持するためのオプションを表示する] ポリシーをオーバーライドします。
\n- [永続的にしない] は、フェデレーション認証サービスから渡されるあらゆる永続的 SSO クレームをオーバーライドします。
\n- [永続的にしない] の場合、モバイル デバイスのアプリケーションや、アプリケーションとユーザーのモバイル ブラウザーとの間で SSO は実行されません。
\n",
- "label": "永続的なブラウザー セッション",
- "never": "永続的にしない"
- },
- "Warning": {
- "allApps": "永続的ブラウザー セッションは、[すべてのクラウド アプリ] が選択されている場合にのみ正しく動作します。クラウド アプリの選択を変更してください。詳細については、ここをクリックします。"
- }
- },
- "SignInFrequency": {
- "Aria": {
- "units": "時間または日数",
- "value": "頻度"
- },
- "Option": {
- "Day": {
- "plural": "{0} 日",
- "singular": "1 日"
- },
- "Hour": {
- "plural": "{0} 時間",
- "singular": "1 時間"
- },
- "daysOption": "日間",
- "everytime": "毎回",
- "help": "リソースにアクセスを試みるユーザーが再びサインインを求められるようになるまでの期間。既定の設定は、90 日のローリング ウィンドウです。つまり、ユーザーが自分のマシンで非アクティブな状態が 90 日以上続くと、その後初めてリソースにアクセスを試みる時に再認証が求められます。",
- "hoursOption": "時間",
- "label": "サインインの頻度",
- "placeholder": "単位の選択"
- }
- },
- "mainOption": "セッションの有効期間の変更",
- "mainOptionHelp": "ユーザーにメッセージを表示する頻度と、ブラウザー セッションを永続的にするかどうかを構成します。先進認証プロトコルがサポートされていないアプリケーションではこのポリシーが無視される可能性があります。その場合、アプリケーション開発者にお問い合わせください。"
- },
- "SigninRisk": {
- "LearnMore": {
- "message": "特定のサインイン リスク レベルに対応するため、ユーザー アクセスを制御します。"
- }
- },
- "SingleSelectorActive": {
- "failed": "このデータを読み込めません。",
- "reattempt": "データを読み込んでいます。{1} 個中 {0} 個を再試行します。"
- },
- "TimeCondition": {
- "Errors": {
- "both": "\"対象\" または \"対象外\" の時間の範囲が無効です。",
- "daysOfWeek": "{0}少なくとも 1 つの曜日を指定してください。",
- "endBeforeStart": "{0}開始日時が終了日時より前であることを確認してください。",
- "exclude": "\"対象外\" の時間の範囲が無効です。",
- "generic": "{0}曜日とタイム ゾーンの両方が設定されていることを確認してください。[終日] チェック ボックスがオフになっている場合は、開始時刻と終了時刻も設定する必要があります。",
- "include": "\"対象\" の時間の範囲が無効です。",
- "timeMissing": "{0}開始時刻と終了時刻の両方を指定してください。",
- "timeZone": "{0}タイム ゾーンを指定してください。",
- "timesAndZone": "{0}開始時刻、終了時刻、タイム ゾーンが設定されていることを確認してください。"
- }
- },
- "UserActions": {
- "Included": {
- "none": "クラウド アプリまたは操作が選択されていません",
- "plural": "{0} 個のユーザー操作が含まれています",
- "singular": "1 個のユーザー操作が含まれています"
- },
- "accessRequirement1": "レベル 1",
- "accessRequirement2": "レベル 2",
- "accessRequirement3": "レベル 3",
- "accessRequirementsLabel": "セキュリティで保護されたアプリ データにアクセスしています",
- "appsActionsAuthTitle": "クラウド アプリ、アクション、または認証コンテキスト",
- "appsOrActionsSelectorInfoBallonText": "アクセスされたアプリケーションまたはユーザー アクション",
- "appsOrActionsTitle": "クラウド アプリまたは操作",
- "label": "ユーザー操作",
- "mainOptionsLabel": "このポリシーが適用される対象を選択する",
- "registerOrJoinDevices": "デバイスの登録または参加",
- "registerSecurityInfo": "セキュリティ情報の登録",
- "selectionInfo": "このポリシーが適用される操作を選択します"
- },
- "UserSelectionBlade": {
- "DirectoryRoles": {
- "ariaLabel": "ディレクトリ ロールの選択"
- },
- "Excluded": {
- "gridAria": "除外されたユーザーの一覧"
- },
- "Included": {
- "gridAria": "含められたユーザーの一覧"
- },
- "Validation": {
- "customRoleIncluded": "\"ディレクトリ ロール\" には、少なくとも 1 つのカスタム ロールが含まれています",
- "customRoleSelected": "少なくとも 1 つのカスタム ロールが選択されています",
- "failed": "\"{0}\" を構成する必要があります",
- "roles": "少なくとも 1 つのロールを選択します",
- "usersGroups": "少なくとも 1 人のユーザーか 1 つのグループを選択します"
- },
- "learnMore": "ユーザーとグループ、ワークロード ID、ディレクトリ ロール、外部ゲストなど、ポリシーを適用するユーザーに基づいてアクセスを制御します。"
- },
- "ValidationResult": {
- "blockEveryonePolicy": "ポリシーの構成がサポートされていません。割り当てと制御を確認してください。",
- "invalidApplicationCondition": "無効なクラウド アプリケーションが選択されました",
- "invalidClientTypesCondition": "無効なクライアント アプリが選択されました",
- "invalidConditions": "割り当てが選択されていません",
- "invalidControls": "無効なコントロールが選択されました",
- "invalidDevicePlatformsCondition": "無効なデバイス プラットフォームが選択されました",
- "invalidDevicesCondition": "デバイスの構成が無効です。\"{0}\" の構成が無効である可能性があります。",
- "invalidGrantControlPolicy": "許可の制御が無効です",
- "invalidLocationsCondition": "無効な場所が選択されました",
- "invalidPolicy": "割り当てが選択されていません",
- "invalidSessionControlPolicy": "セッションの制御が無効です",
- "invalidSignInRisksCondition": "無効なサインイン リスクが選択されました",
- "invalidUserRisksCondition": "無効なユーザー リスクが選択されました",
- "invalidUsersCondition": "無効なユーザーが選択されました",
- "mamPolicyShouldOnlyTargetAndroidOrIosPlatforms": "MAM ポリシーは Android または iOS クライアント プラットフォームにのみ適用されます。",
- "notSupportedCombination": "ポリシーの構成はサポートされていません。サポートされているポリシーの詳細を確認してください。",
- "pending": "ポリシーを検証しています",
- "requireComplianceEveryonePolicy": "ポリシーの構成では、すべてのユーザーがデバイスに準拠する必要があります。選択した割り当てを確認してください。",
- "success": "有効なポリシー"
- },
- "VpnCert": {
- "Grid": {
- "aria": "VPN 証明書の一覧"
- }
- },
- "WarningsInfo": {
- "Controls": {
- "compliantDeviceEnabled": "自分自身をロックアウトしないでください。デバイスが準拠していることをご確認ください。",
- "domainJoinedDeviceEnabled": "自分自身をロックアウトしないでください。デバイスが Hybrid Azure AD Join を使用したであることをご確認ください。",
- "exchangeDisabled": "Exchange ActiveSync は、\"準拠しているデバイス\" と \"承認されたクライアント アプリ\" の制御のみをサポートしています。詳細については、ここをクリックしてください。",
- "exchangeDisabled2": "Exchange ActiveSync は、\"準拠しているデバイス\"、\"承認されたクライアント アプリ\"、\"準拠しているクライアント アプリ\" の制御のみをサポートしています。詳細については、ここをクリックしてください。",
- "notAvailableForSP": "ポリシーの割り当てで '{0}' が選択されているため、一部のコントロールを使用できません",
- "requireAuthOrMfa": "'{0}' と '{1}' は同時に使用できません。",
- "requireMfa": "新しい \"{0}\" パブリック プレビューのテストを行うことを検討してください",
- "requirePasswordChangeEnabled": "\"パスワードの変更が必要\" は、ポリシーが \"すべてのクラウド アプリ\" に割り当てられている場合にのみ使用できます"
- },
- "Policies": {
- "Linux": {
- "devicePlatformsReportOnlyPolicy": "準拠デバイスが必要なレポート専用モードのポリシーでは、macOS、iOS、Android、Linux のユーザーにデバイス証明書を選択するよう求めるメッセージが表示される場合があります。",
- "excludeDevicePlatforms": "デバイス プラットフォーム macOS、iOS、Android、Linux をこのポリシーから除外します。",
- "proceedAnywayDevicePlatforms": "選択した構成を続行します。macOS、iOS、Android、Linux のユーザーには、デバイスのコンプライアンス確認時にメッセージが表示される場合があります。"
- },
- "blockCurrentUserPolicy": "自分自身をロックアウトしないでください。まずは少数のユーザーにポリシーを適用して、想定どおりに動作するかどうかを確認することをお勧めします。また、このポリシーから少なくとも 1 人の管理者を除外することをお勧めします。こうすることで、アクセス権を保持し、変更が必要な場合にポリシーを更新できます。影響を受けるユーザーとアプリをご確認ください。",
- "devicePlatformsReportOnlyPolicy": "準拠デバイスが必要なレポート専用モードのポリシーでは、macOS、iOS、Android のユーザーにデバイス証明書を選択するよう求めるメッセージが表示される場合があります。",
- "excludeCurrentUserSelection": "現在のユーザー {0} をこのポリシーから除外してください。",
- "excludeDevicePlatforms": "デバイス プラットフォーム macOS、iOS、Android をこのポリシーから除外します。",
- "proceedAnywayDevicePlatforms": "選択した構成を続行します。macOS、iOS、Android のユーザーには、デバイスのコンプライアンス確認時にメッセージが表示される場合があります。",
- "proceedAnywaySelection": "自分のアカウントがこのポリシーの影響を受けることを理解しました。続行します。"
- },
- "ServicePrincipals": {
- "blockExchange": "Office 365 Exchange Online を選択すると、OneDrive や Teams などのアプリにも影響します。",
- "blockPortal": "自分自身をロックアウトしないでください。このポリシーは Azure portal に影響します。続行する前に、自分または他のユーザーがポータルに戻れることをご確認ください。",
- "blockPortalWithSession": "自分自身をロックアウトしないでください。このポリシーは Azure portal に影響します。続行する前に、自分または他のユーザーがポータルに戻れることをご確認ください。
\"すべてのクラウド アプリ\" が選択されている場合にのみ正常に機能する永続的ブラウザー セッション ポリシーを構成している場合は、この警告を無視してください。",
- "blockSharePoint": "SharePoint Online を選択すると、Microsoft Teams、Planner、Delve、MyAnalytics、Newsfeed などのアプリにも影響します。",
- "blockSkype": "Skype for Business Online を選択すると、Microsoft Teams にも影響があります。",
- "includeOrExclude": "'{0}' または '{1}' のアプリ フィルターを構成できますが、両方は構成できません。",
- "selectAppsNAForSP": "ポリシー割り当てで '{0}' が選択されているため、個々のクラウド アプリを選択できません",
- "teamsBlocked": "SharePoint Online や Exchange Online などのアプリがポリシーに含まれている場合は、Microsoft Teams も影響を受けます。"
- },
- "Users": {
- "blockAllUsers": "自分自身をロックアウトしないでください。このポリシーは、すべてのユーザーに影響します。まずは少数のユーザーにポリシーを適用して、想定どおりに動作するかどうかを確認することをお勧めします。"
- }
- },
- "WhatIf": {
- "Device": {
- "AttributesGrid": {
- "aria": "サインイン中に使用されたデバイス上の属性の一覧です。",
- "infoBalloon": "サインイン中に使用されたデバイス上の属性の一覧です。"
- }
- }
- },
- "advancedTabText": "詳細設定",
- "allCloudAppsErrorBox": "\"パスワードの変更が必要\" 許可が選択されている場合は、\"すべてのクラウド アプリ\" を選択する必要があります",
- "allDayCheckboxLabel": "終日",
- "allDevicePlatforms": "任意のデバイス",
- "allGuestUserInfoContent": "Azure AD B2B のゲストは含まれますが、SharePoint B2B のゲストは含まれません",
- "allGuestUserLabel": "すべてのゲストと外部ユーザー",
- "allRiskLevelsOption": "すべてのリスク レベル",
- "allTrustedLocationLabel": "すべての信頼できる場所",
- "allUserGroupSetSelectorLabel": "すべてのユーザーとグループが選択済み",
- "allUsersString": "すべてのユーザー",
- "and": "{0}および{1}",
- "andWithGrouping": "({0}) および {1} ",
- "androidDisplayName": "Android",
- "anyCloudAppSelection": "任意のクラウド アプリ",
- "appContextOptionInfoContent": "要求された認証タグ",
- "appContextOptionLabel": "要求された認証タグ (プレビュー)",
- "appContextUriPlaceholder": "例: uri:contoso.com:level3",
- "appEnforceInfoBubble": "アプリで適用された制限は、クラウド アプリ内で管理者の追加構成が必要になる場合があります。この制限は、新しいセッションのみに適用されます。",
- "appNotSetSeletorLabel": "0 個のクラウド アプリが選択されました",
- "applyConditionClientAppInfoBalloonContent": "特定のクライアント アプリにポリシーを適用するようクライアント アプリを構成します",
- "applyConditionDevicePlatformInfoBalloonContent": "特定のプラットフォームにポリシーを適用するようデバイス プラットフォームを構成します",
- "applyConditionDeviceStateInfoBalloonContent": "特定のデバイスの状態にポリシーを適用するようデバイスの状態を構成します",
- "applyConditionLocationInfoBalloonContent": "信頼できる/信頼できない場所にポリシーを適用するよう場所を構成します",
- "applyConditionSigninRiskInfoBalloonContent": "選択したリスク レベルにポリシーを適用するようサインイン リスクを構成します",
- "applyConditionUserRiskInfoBalloonContent": "選択したリスク レベルにポリシーを適用するようユーザー リスクを構成します",
- "applyConditonLabel": "構成",
- "ariaLabelPolicyDisabled": "ポリシーを無効にする",
- "ariaLabelPolicyEnabled": "ポリシーが有効です",
- "ariaLabelPolicyReportOnly": "ポリシーはレポート専用モードです",
- "blockAccess": "アクセスのブロック",
- "builtInDirectoryRoleLabel": "組み込みのディレクトリ ロール",
- "casCustomControlInfo": "Cloud App Security ポータルでカスタム ポリシーを構成する必要があります。このコントロールは、おすすめアプリですぐに機能し、どのアプリに対してもセルフ オンボーディングが可能です。両方のシナリオの詳細については、ここをクリックしてください。",
- "casInfoBubble": "このコントロールは、さまざまなクラウド アプリで使えます。",
- "casPreconfiguredControlInfo": "このコントロールは、おすすめアプリですぐに機能し、どのアプリに対してもセルフ オンボーディングが可能です。両方のシナリオの詳細については、ここをクリックしてください。",
- "cert64DownloadCol": "Base64 証明書のダウンロード",
- "cert64Name": "VpnBase64Cert",
- "certDownloadCol": "証明書のダウンロード",
- "certDurationCol": "有効期限",
- "certDurationStartCol": "有効期間の開始日",
- "certName": "VpnCert",
- "chooseApplicationsBladeSubtitle": "",
- "chooseApplicationsBladeTitle": "アプリケーションの選択",
- "chooseApplicationsCartSubitle": "",
- "chooseApplicationsCartTitle": "選択したアプリケーション",
- "chooseApplicationsEmpty": "アプリケーションなし",
- "chooseApplicationsNone": "なし",
- "chooseApplicationsNoneFound": "\"{0}\" は見つかりませんでした。別の名前または ID を試してください。",
- "chooseApplicationsPlural": "{0}、他 {1} 個",
- "chooseApplicationsReAuthEverytimeInfo": "アプリをお探しですか? 一部のアプリケーションは、[再認証が必要 – 毎回] セッション制御では使用できません",
- "chooseApplicationsRemove": "削除",
- "chooseApplicationsReturnedPlural": "{0} 個のアプリケーションが見つかりました",
- "chooseApplicationsReturnedSingular": "1 個のアプリケーションが見つかりました",
- "chooseApplicationsSearchBalloon": "名前または ID を入力して、アプリケーションを検索します。",
- "chooseApplicationsSearchHint": "アプリケーションの検索...",
- "chooseApplicationsSearchLabel": "アプリケーション",
- "chooseApplicationsSearching": "検索中...",
- "chooseApplicationsSelect": "選択",
- "chooseApplicationsSelected": "選択済み",
- "chooseApplicationsSingular": "{0}、他 1 個",
- "chooseApplicationsTooMany": "結果が多すぎて表示できません。検索ボックスを使用してフィルター処理してください。",
- "chooseLocationCorpnetItem": "企業ネットワーク",
- "chooseLocationSelectedLocationsLabel": "選択された場所",
- "chooseLocationTrustedIpsItem": "MFA 信頼済み IP",
- "chooseLocationsBladeSubtitle": "",
- "chooseLocationsBladeTitle": "場所の選択",
- "chooseLocationsCartSubitle": "",
- "chooseLocationsCartTitle": "選択された場所",
- "chooseLocationsEmpty": "場所がありません",
- "chooseLocationsExcludedSelectorTitle": "選択",
- "chooseLocationsIncludedSelectorTitle": "選択",
- "chooseLocationsNone": "なし",
- "chooseLocationsNoneFound": "\"{0}\" は見つかりませんでした。別の名前または ID を試してください。",
- "chooseLocationsPlural": "{0}、他 {1} 個",
- "chooseLocationsRemove": "削除",
- "chooseLocationsReturnedPlural": "{0} 個の場所が見つかりました",
- "chooseLocationsReturnedSingular": "1 つの場所が見つかりました",
- "chooseLocationsSearchBalloon": "名前を入力して、場所を検索します。",
- "chooseLocationsSearchHint": "場所の検索...",
- "chooseLocationsSearchLabel": "場所",
- "chooseLocationsSearching": "検索中...",
- "chooseLocationsSelect": "選択",
- "chooseLocationsSelected": "選択",
- "chooseLocationsSelectionBladeExcludedSelectorTitle": "選択",
- "chooseLocationsSelectionBladeIncludedSelectorTitle": "選択",
- "chooseLocationsSingular": "{0}、他 1 個",
- "chooseLocationsTooMany": "結果が多すぎて表示できません。検索ボックスを使用してフィルター処理してください。",
- "claimProviderAddCommandText": "新しいカスタム コントロール",
- "claimProviderAddNewBladeTitle": "新しいカスタム コントロール",
- "claimProviderDeleteCommand": "削除",
- "claimProviderDeleteDescription": "'{0}' を削除しますか? この操作は元に戻すことができません。",
- "claimProviderDeleteTitle": "よろしいですか?",
- "claimProviderEditInfoText": "クレーム プロバイダーによって指定された、カスタマイズされたコントロールの JSON を入力します。",
- "claimProviderNotificationCreateDescription": "'{0}' という名前のカスタム コントロールを作成しています",
- "claimProviderNotificationCreateFailedDescription": "カスタム コントロール '{0}' の作成に失敗しました。後でもう一度やり直してください。",
- "claimProviderNotificationCreateFailedTitle": "カスタム コントロールを作成できませんでした",
- "claimProviderNotificationCreateSuccessDescription": "'{0}' という名前のカスタム コントロールが作成されました",
- "claimProviderNotificationCreateSuccessTitle": "'{0}' を作成しました",
- "claimProviderNotificationCreateTitle": "'{0}' を作成しています",
- "claimProviderNotificationDeleteDescription": "'{0}' という名前のカスタム コントロールを削除しています",
- "claimProviderNotificationDeleteFailedDescription": "カスタム コントロール '{0}' の削除に失敗しました。後でもう一度やり直してください。",
- "claimProviderNotificationDeleteFailedTitle": "カスタム コントロールを削除できませんでした",
- "claimProviderNotificationDeleteSuccessDescription": "'{0}' という名前のカスタム コントロールが削除されました",
- "claimProviderNotificationDeleteSuccessTitle": "'{0}' を削除しました",
- "claimProviderNotificationDeleteTitle": "'{0}' を削除しています",
- "claimProviderNotificationUpdateDescription": "'{0}' という名前のカスタム コントロールを更新しています",
- "claimProviderNotificationUpdateFailedDescription": "カスタム コントロール '{0}' の更新に失敗しました。後でもう一度やり直してください。",
- "claimProviderNotificationUpdateFailedTitle": "カスタム コントロールを更新できませんでした",
- "claimProviderNotificationUpdateSuccessDescription": "'{0}' という名前のカスタム コントロールが更新されました",
- "claimProviderNotificationUpdateSuccessTitle": "'{0}' を更新しました",
- "claimProviderNotificationUpdateTitle": "'{0}' を更新しています",
- "claimProviderValidationAppIdInvalid": "\"AppId\" 値が無効です。確認して、もう一度やり直してください。",
- "claimProviderValidationClientIdMissing": "データに \"ClientId\" 値がありません。確認して、もう一度やり直してください。",
- "claimProviderValidationControlClaimsRequestedMissing": "\"Control\" に \"ClaimsRequested\" 値がありません。確認して、もう一度やり直してください。",
- "claimProviderValidationControlClaimsRequestedTypeMissing": "\"ClaimsRequested\" 項目に \"Type\" 値がありません。確認して、もう一度やり直してください。",
- "claimProviderValidationControlIdAlreadyExists": "\"Control\" の \"Id\" 値は既に存在します。確認して、もう一度やり直してください。",
- "claimProviderValidationControlIdMissing": "\"Control\" に \"Id\" 値がありません。確認して、もう一度やり直してください。",
- "claimProviderValidationControlIdReferencedInExistingPolicy": "\"Control\" の \"Id\" 値は、既存のポリシー内で参照されているため、削除できません。最初に、その値をポリシーから削除してください。",
- "claimProviderValidationControlIdTooManyControls": "\"Control\" プロパティに含まれるコントロールが多すぎます。確認し、もう一度やり直してください。",
- "claimProviderValidationControlIdValueReserved": "\"Control\" の \"Id\" 値は予約済みキーワードです。別の ID を使用してください。",
- "claimProviderValidationControlNameAlreadyExists": "\"Control\" の \"Name\" 値は既に存在します。確認して、もう一度やり直してください。",
- "claimProviderValidationControlNameMissing": "\"Control\" に \"Name\" 値がありません。確認して、もう一度やり直してください。",
- "claimProviderValidationControlsMissing": "データに \"Controls\" 値がありません。確認して、もう一度やり直してください。",
- "claimProviderValidationDiscoveryUrlMissing": "データに \"DiscoveryUrl\" 値がありません。確認して、もう一度やり直してください。",
- "claimProviderValidationInvalid": "指定されたデータが無効です。確認して、もう一度やり直してください。",
- "claimProviderValidationInvalidJsonDefinition": "カスタム コントロールを保存できません。JSON テキストを確認して、もう一度やり直してください。",
- "claimProviderValidationNameAlreadyExists": "\"Name\" 値は既に存在します。確認して、もう一度やり直してください。",
- "claimProviderValidationNameMissing": "データに \"Name\" 値がありません。確認して、もう一度やり直してください。",
- "claimProviderValidationUnknown": "指定されたデータの検証中に不明なエラーが発生しました。確認して、もう一度やり直してください。",
- "claimProvidersNone": "カスタム コントロールがありません",
- "claimProvidersSearchPlaceholder": "コントロールを検索します。",
- "classicPoilcyFilterTitle": "表示",
- "classicPolicyAllPlatforms": "すべてのプラットフォーム",
- "classicPolicyClientAppBrowserAndNative": "ブラウザー、モバイル アプリ、デスクトップの各クライアント",
- "classicPolicyCloudAppTitle": "クラウド アプリケーション",
- "classicPolicyControlAllow": "許可",
- "classicPolicyControlBlock": "ブロック",
- "classicPolicyControlBlockWhenNotAtWork": "社外ネットワークからの利用は、禁止する",
- "classicPolicyControlRequireCompliantDevice": "準拠しているデバイスが必要です",
- "classicPolicyControlRequireDomainJoinedDevice": "ドメインに参加しているデバイスが必要です",
- "classicPolicyControlRequireMfa": "多要素認証を要求する",
- "classicPolicyControlRequireMfaWhenNotAtWork": "社外ネットワークからの利用は、多要素認証を要求する",
- "classicPolicyDeleteCommand": "削除",
- "classicPolicyDeleteFailTitle": "クラシック ポリシーを削除できませんでした",
- "classicPolicyDeleteInProgressTitle": "クラシック ポリシーを削除しています",
- "classicPolicyDeleteSuccessTitle": "クラシック ポリシーが削除されました",
- "classicPolicyDetailBladeTitle": "詳細",
- "classicPolicyDisableCommand": "無効",
- "classicPolicyDisableConfirmation": "'{0}' を無効にしますか? この操作は元に戻すことができません。",
- "classicPolicyDisableFailDescription": "'{0}' を無効にできませんでした",
- "classicPolicyDisableFailTitle": "クラシック ポリシーを無効にできませんでした",
- "classicPolicyDisableInProgressDescription": "'{0}' を無効にしています",
- "classicPolicyDisableInProgressTitle": "クラシック ポリシーを無効にしています",
- "classicPolicyDisableSuccessDescription": "'{0}' が正常に無効化されました",
- "classicPolicyDisableSuccessTitle": "クラシック ポリシーが無効化されました",
- "classicPolicyEasSupportedPlatforms": "Exchange ActiveSync サポート対象プラットフォーム",
- "classicPolicyEasUnsupportedPlatforms": "Exchange ActiveSync サポート対象外プラットフォーム",
- "classicPolicyExcludedPlatformsTitle": "除外されているデバイス プラットフォーム",
- "classicPolicyFilterAll": "すべてのポリシー",
- "classicPolicyFilterDisabled": "無効なポリシー",
- "classicPolicyFilterEnabled": "有効なポリシー",
- "classicPolicyIncludeExcludeMembersDescription": "グループを除外することで、ポリシーの段階的な移行を実行できます。",
- "classicPolicyIncludeExcludeMembersTitle": "グループの包含/除外",
- "classicPolicyIncludedPlatformsTitle": "含められるデバイス プラットフォーム",
- "classicPolicyManualMigrationMessage": "このポリシーは、手動で移行する必要があります。",
- "classicPolicyMigrateCommand": "移行",
- "classicPolicyMigrateConfirmation": "'{0}' を移行しますか? このポリシーは、1 回だけ移行できます。",
- "classicPolicyMigrateFailDescription": "'{0}' を移行できませんでした",
- "classicPolicyMigrateFailTitle": "クラシック ポリシーを移行できませんでした",
- "classicPolicyMigrateInProgressDescription": "'{0}' を移行しています",
- "classicPolicyMigrateInProgressTitle": "クラシック ポリシーを移行しています",
- "classicPolicyMigrateRecommendText": "推奨: 新しい Azure Portal ポリシーに移行してください。",
- "classicPolicyMigrateSuccessTitle": "クラシック ポリシーが正常に移行されました",
- "classicPolicyMigratedSuccessDescription": "このクラシック ポリシーは、[ポリシー] の下で管理できるようになりました。",
- "classicPolicyMigratedSuccessDescriptionMultiple": "このクラシック ポリシーは、{0} 個の新しいポリシーとして移行されます。新しいポリシーは、[ポリシー] の下で管理できます。",
- "classicPolicyNoEditPermissionMsg": "このポリシーを編集するアクセス許可がありません。グローバル管理者およびセキュリティ管理者のみがポリシーを編集できます。詳細についてはここをクリックしてください。",
- "classicPolicySaveFailDescription": "'{0}' を保存できませんでした",
- "classicPolicySaveFailTitle": "クラシック ポリシーを保存できませんでした",
- "classicPolicySaveInProgressDescription": "'{0}' を保存しています",
- "classicPolicySaveInProgressTitle": "クラシック ポリシーを保存しています",
- "classicPolicySaveSuccessDescription": "'{0}' が正常に保存されました",
- "classicPolicySaveSuccessTitle": "クラシック ポリシーが保存されました",
- "clientAppBladeLegacyInfoBanner": "レガシー認証は現在サポートされていません",
- "clientAppBladeLegacyUpsellBanner": "サポートされていないクライアント アプリをブロックする (プレビュー)",
- "clientAppBladeTitle": "クライアント アプリ",
- "clientAppDescription": "このポリシーを適用するクライアント アプリを選択します",
- "clientAppExchangeActiveSync": "Exchange ActiveSync",
- "clientAppExchangeDisabledInfo": "Exchange ActiveSync は、Exchange Online が、選択されている唯一のクラウド アプリである場合に使用できます。詳細については、ここをクリックしてください",
- "clientAppExchangeWarning": "Exchange ActiveSync は、現在、その他すべての条件をサポートしていません",
- "clientAppLearnMore": "最新の認証を使用しない特定のクライアント アプリケーションを対象とするようユーザー アクセスを制御します。",
- "clientAppLegacyHeader": "レガシ認証クライアント",
- "clientAppMobileDesktop": "モバイル アプリとデスクトップ クライアント",
- "clientAppModernHeader": "先進認証クライアント",
- "clientAppOnlySupportedPlatforms": "サポートされているプラットフォームのみにポリシーを適用する",
- "clientAppSelectSpecificClientApps": "クライアント アプリの選択",
- "clientAppV2BladeTitle": "クライアント アプリ (プレビュー)",
- "clientAppWebBrowser": "ブラウザー",
- "clientAppsSelectedLabel": "{0} 件を含む",
- "clientTypeBrowser": "ブラウザー",
- "clientTypeEas": "Exchange ActiveSync クライアント",
- "clientTypeEasInfo": "レガシ認証のみを使用する Exchange ActiveSync クライアント。",
- "clientTypeModernAuth": "先進認証クライアント",
- "clientTypeOtherClients": "他のクライアント",
- "clientTypeOtherClientsInfo": "これには、古い Office クライアントとその他のメール プロトコル (POP、IMAP、SMTP など) が含まれます。[詳細情報][1]\n[1]: https://aka.ms/caclientapps\n",
- "cloudAppCountDiffBannerText": "このポリシーで構成されている {0} 個のクラウド アプリがディレクトリから削除されましたが、このポリシーの他のアプリには影響ありません。ポリシーのアプリケーション セクションを次回更新するときに、削除されたアプリは自動的に削除されます。",
- "cloudAppsSelectionBladeAllMicrosoftApps": "すべての Microsoft アプリ",
- "cloudAppsSelectionExcludeAllMicrosoftClients": "Microsoft のクラウド アプリ、デスクトップ アプリ、モバイル アプリを許可する (プレビュー)",
- "cloudappsSelectionBladeAllCloudapps": "すべてのクラウド アプリ",
- "cloudappsSelectionBladeExcludeDescription": "ポリシーから除外するクラウド アプリを選択します",
- "cloudappsSelectionBladeExcludedSelectorTitle": "除外されたクラウド アプリの選択",
- "cloudappsSelectionBladeIncludeDescription": "このポリシーが適用されるクラウド アプリを選択します",
- "cloudappsSelectionBladeIncludedSelectorTitle": "選択",
- "cloudappsSelectionBladeSelectedCloudapps": "アプリを選択",
- "cloudappsSelectorInfoBallonText": "ユーザーが作業のためにアクセスするサービス。例: 'Salesforce'",
- "cloudappsSelectorUserPlural": "{0} 個のアプリ",
- "cloudappsSelectorUserSingular": "1 個のアプリ",
- "conditionLabelMulti": "{0} 個の条件が選択されました",
- "conditionLabelOne": "1 個の条件が選択されました",
- "conditionalAccessBladeTitle": "条件付きアクセス",
- "conditionsNotSelectedLabel": "未構成",
- "conditionsReqPwSet": "\"パスワードの変更が必要\" 許可が現在選択されているため、一部のオプションは使用できません",
- "configureCasText": "Cloud App Security の構成",
- "configureCustomControlsText": "カスタム ポリシーの構成",
- "controlLabelMulti": "{0} 個のコントロールが選択されました",
- "controlLabelOne": "1 個のコントロールが選択されました",
- "controlValidatorText": "少なくとも 1 つのコントロールを選択してください",
- "controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
- "controlsDeviceComplianceInfoBubble": "デバイスは Intune に準拠している必要があります。デバイスが準拠していない場合、ユーザーはデバイスを準拠した状態にするよう求められます",
- "controlsDomainJoinedInfoBubble": "デバイスは Hybrid Azure AD Join を使用したである必要があります。",
- "controlsMamInfoBubble": "デバイスは、これらの承認されたクライアント アプリケーションを使用する必要があります。",
- "controlsMfaInfoBubble": "ユーザーは、電話やテキスト メッセージなど、追加のセキュリティ要件を完了する必要があります",
- "controlsOrAndInfoBubble": "ControlsOrAndInfoBubble",
- "controlsRequireCompliantAppInfoBubble": "デバイスでは、ポリシーで保護されたアプリを使用する必要があります。",
- "controlsRequirePasswordResetInfoBubble": "ユーザー リスクを軽減するために、パスワードを変更する必要があります。このオプションでは多要素認証も必要です。他のコントロールは使用できません。",
- "countriesRadiobuttonInfoBalloonContent": "サインインが行われている国/地域は、そのユーザーの IP アドレスで特定されます。",
- "createNewVpnCert": "新しい証明書",
- "createdTimeLabel": "作成時刻",
- "customRoleLabel": "カスタム ロール (サポートされていません)",
- "dateRangeTypeLabel": "期間",
- "daysOfWeekPlaceholderText": "曜日でフィルターしてください",
- "daysOfWeekTypeLabel": "曜日",
- "deletePolicyNoLicenseText": "このポリシーを今すぐ削除できます。削除すると、必要なライセンスを取得するまで、再作成することはできません。",
- "descriptionContentForControlsAndOr": "複数のコントロールの場合",
- "devicePlatform": "デバイス プラットフォーム",
- "devicePlatformConditionHelpDescription": "選択されたデバイス プラットフォームにポリシーを適用します。\n[詳細情報][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2044750",
- "devicePlatformInclude": "{0} 件を含む",
- "devicePlatformIncludeExclude": "{0} かつ {1} 件を除く",
- "devicePlatformNoSelectionError": "[デバイス プラットフォームの選択] では、1 つのサブ項目を選択する必要があります。",
- "devicePlatformsNone": "なし",
- "deviceSelectionBladeExcludeDescription": "ポリシーから除外するプラットフォームを選択します",
- "deviceSelectionBladeIncludeDescription": "このポリシーに含めるデバイス プラットフォームを選択します",
- "deviceStateAll": "すべてのデバイスの状態",
- "deviceStateCompliant": "デバイスは準拠としてマーク済み",
- "deviceStateCompliantInfoContent": "Intune に準拠しているデバイスはこのポリシーの評価から除外されるため、たとえばポリシーがアクセスをブロックする場合、Intune 準拠デバイスを除くすべてのデバイスがブロックされます。",
- "deviceStateConditionConfigureInfoContent": "デバイスの状態に基づいてポリシーを構成します",
- "deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Hybrid Azure AD joined' or 'marked as compliant'.\n '{0}' has been deprecated. Use '{1}' instead.",
- "deviceStateConditionSelectorLabel": "デバイスの状態 (プレビュー)",
- "deviceStateDomainJoined": "Hybrid Azure AD Join を使用したデバイス",
- "deviceStateDomainJoinedInfoContent": "Hybrid Azure AD Join を使用したデバイスはこのポリシーの評価から除外されるため、たとえばポリシーがアクセスをブロックする場合、Hybrid Azure AD Join を使用したデバイスを除くすべてのデバイスがブロックされます。",
- "deviceStateDomainJoinedInfoLinkText": "詳細情報。",
- "deviceStateExcludeDescription": "ポリシーからデバイスを除外するために使用するデバイスの状態の条件を選択します。",
- "deviceStateIncludeAndExcludeOneLabel": "{0} を含め、{1} を除外する",
- "deviceStateIncludeAndExcludeTwoLabel": "{0} を含め、{1}、{2} を除外する",
- "directoryRoleInfoContent": "組み込みのディレクトリ ロールにポリシーを割り当てます。",
- "directoryRolesLabel": "ディレクトリ ロール",
- "discardbutton": "破棄",
- "downloadDefaultFileName": "IP 範囲",
- "downloadExampleFileName": "例",
- "downloadExampleHeader": "これは、取得できるデータの種類のデモを含むサンプル ファイルです。# で始まる行は無視されます。",
- "endDatePickerLabel": "End",
- "endTimePickerLabel": "終了時刻",
- "enterCountryText": "IP アドレスと国はペアで評価されます。国を選択してください。",
- "enterIpText": "IP アドレスと国はペアで評価されます。IP アドレスを入力してください。",
- "enterUserText": "ユーザーが選択されていません。ユーザーを選択してください。",
- "evaluationResult": "評価の結果",
- "exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
- "exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync とサポートされているプラットフォームのみ",
- "excludeAllTrustedLocationSelectorText": "すべての信頼できる場所",
- "featureRequiresP2": "この機能には、Azure AD Premium 2 のライセンスが必要です。",
- "friday": "金曜日",
- "grantControls": "制御の許可",
- "gridNetworkTrusted": "信頼されている",
- "gridPolicyCreatedDateTime": "作成日",
- "gridPolicyEnabled": "有効",
- "gridPolicyModifiedDateTime": "更新日",
- "gridPolicyName": "ポリシー名",
- "gridPolicyState": "状態",
- "groupSelectionBladeExcludeDescription": "ポリシーから除外するグループを選択します",
- "groupSelectionBladeExcludedSelectorTitle": "除外するグループの選択",
- "groupSelectionBladeSelect": "グループの選択",
- "groupSelectorInfoBallonText": "ポリシーが適用されるディレクトリ内のグループ。例: 'パイロット グループ'",
- "groupsSelectionBladeTitle": "グループ",
- "helpCommonScenariosText": "一般的なシナリオに関心がある場合",
- "helpCondition1": "ユーザーが会社のネットワーク外にいる場合",
- "helpCondition2": "'マネージャー' グループのユーザーがサインインする場合",
- "helpConditionsTitle": "条件",
- "helpControl1": "多要素認証を使用してサインインする必要があります",
- "helpControl2": "Intune に準拠しているデバイスまたはドメインに参加しているデバイスを使用している必要があります",
- "helpControlsTitle": "制御",
- "helpIntroText": "条件付きアクセスを使用すると、特定の条件が発生したときにアクセス要件を適用することができます。いくつかの例を見てみましょう",
- "helpIntroTitle": "条件付きアクセスとは",
- "helpLearnMoreText": "条件付きアクセスの詳細を確認するには",
- "helpStartStep1": "[+ 新しいポリシー] をクリックして最初のポリシーを作成します",
- "helpStartStep2": "ポリシーの条件と制御を指定します",
- "helpStartStep3": "完了したら、忘れずにポリシーを有効にして作成します",
- "helpStartTitle": "作業の開始",
- "highRisk": "高",
- "includeAndExcludeAppsTextFormat": "次が含まれます: {0}。次が含まれません: {1}。",
- "includeAppsTextFormat": "次が含まれます: {0}。",
- "includeUnknownAreasCheckboxInfoBalloonContent": "不明な領域は、国/地域にマップできない IP アドレスです。",
- "includeUnknownAreasCheckboxLabel": "不明な領域を含める",
- "infoCommandLabel": "情報",
- "invalidCertDuration": "証明書の有効期間が無効です",
- "invalidIpAddress": "値には有効な IP アドレスを指定する必要があります",
- "invalidUriErrorMsg": "有効な URI を入力してください。例: 'uri:contoso.com:acr'",
- "iosDisplayName": "iOS",
- "linuxDisplayName": "Linux",
- "linuxDisplayNamePreview": "Linux (プレビュー)",
- "loadAll": "すべてを読み込む",
- "loading": "読み込み中...",
- "locationConfigureNamedLocationsText": "すべての信頼できる場所の構成",
- "locationConfigureNamedLocationsUri": "{0}/usermanagement/mfasettings.aspx?tenantid={1}&culture={2}",
- "locationNameTooLongError": "場所の名前が長すぎます。最大 256 文字です",
- "locationSelectionBladeExcludeDescription": "ポリシーから除外する場所を選択します",
- "locationSelectionBladeIncludeDescription": "このポリシーに含める場所を選択します",
- "locationsAllLocationsLabel": "すべての場所",
- "locationsAllNamedLocationsLabel": "すべての信頼済み IP",
- "locationsAllPrivateLinksLabel": "個人用テナント内のすべてのプライベート リンク",
- "locationsIncludeExcludeLabel": "{0}、すべての信頼済み IP を除外する",
- "locationsSelectedPrivateLinksLabel": "選択したプライベート リンク",
- "lowRisk": "低",
- "macOsDisplayName": "macOS",
- "managePoliciesLicenseText": "条件付きアクセス ポリシーを管理するには、組織で Azure AD Premium P1 または P2 が必要です。",
- "markAsTrustedCheckboxInfoBalloonContent": "信頼できる場所からサインインすると、ユーザーのサインイン リスクが低くなります。入力した IP 範囲が確立され、組織内で信用されていることがわかる場合のみ、この場所を信頼できる場所とマークしてください。",
- "markAsTrustedCheckboxLabel": "信頼できる場所としてマークする",
- "mediumRisk": "中",
- "memberSelectionCommandRemove": "削除",
- "menuItemClaimProviderControls": "カスタム コントロール (プレビュー)",
- "menuItemClassicPolicies": "クラシック ポリシー",
- "menuItemInsightsAndReporting": "分析情報とレポート",
- "menuItemManage": "管理",
- "menuItemNamedLocationsPreview": "ネームド ロケーション (プレビュー)",
- "menuItemNamedNetworks": "ネームド ロケーション",
- "menuItemPolicies": "ポリシー",
- "menuItemTermsOfUse": "利用規約",
- "modifiedTimeLabel": "変更時刻",
- "monday": "月曜日",
- "nameLabel": "名前",
- "namedLocationCountryInfoBanner": "国または地域にマップされるのは IPv4 アドレスのみです。IPv6 アドレスが不明な国または地域に含まれています。",
- "namedLocationTypeCountry": "国/地域 ",
- "namedLocationTypeLabel": "次を使用して場所を定義します:",
- "namedLocationUpsellBanner": "このビューは非推奨になりました。強化された新しい [ネームド ロケーション] ビューに移動してください。",
- "namedLocationsHelpDescription": "ネームド ロケーションは、誤検知を減らすために Azure AD セキュリティ レポートで使用されるほか、Azure AD 条件付きアクセス ポリシーでも使用されます。\n[詳細情報][1]\n[1]: https://aka.ms/namedlocationupdate",
- "namedNetworkAddIpRanges": "新しい IP 範囲の追加 (例: 40.77.182.32/27)",
- "namedNetworkCountryNeeded": "国を 1 つ以上選択する必要があります",
- "namedNetworkDeleteCommand": "削除",
- "namedNetworkDeleteDescription": "'{0}' を削除しますか? この操作は元に戻すことができません。",
- "namedNetworkDeleteTitle": "よろしいですか?",
- "namedNetworkDownloadIpRange": "ダウンロード",
- "namedNetworkInvalidRange": "値は有効な IP 範囲である必要があります。",
- "namedNetworkIpRangeNeeded": "有効な IP 範囲が 1 つ以上必要です",
- "namedNetworkIpRangesDescriptionContent": "組織の IP 範囲を構成します",
- "namedNetworkIpRangesTab": "IP 範囲",
- "namedNetworkListAdd": "新しい場所",
- "namedNetworkListConfigureTrustedIps": "MFA 信頼済み IP の構成",
- "namedNetworkNameDescription": "例: 'Redmond オフィス'",
- "namedNetworkNameInvalid": "指定された名前が無効です。",
- "namedNetworkNameRequired": "この場所に名前を指定する必要があります。",
- "namedNetworkNoIpRanges": "IP 範囲なし",
- "namedNetworkNotificationCreateDescription": "'{0}' という名前の場所を作成しています",
- "namedNetworkNotificationCreateFailedDescription": "場所 '{0}' の作成に失敗しました。後でもう一度試してください。",
- "namedNetworkNotificationCreateFailedTitle": "場所を作成できませんでした",
- "namedNetworkNotificationCreateSuccessDescription": "'{0}' という名前の場所を作成しました",
- "namedNetworkNotificationCreateSuccessTitle": "'{0}' を作成しました",
- "namedNetworkNotificationCreateTitle": "'{0}' を作成しています",
- "namedNetworkNotificationDeleteDescription": "'{0}' という名前の場所を削除しています",
- "namedNetworkNotificationDeleteFailedDescription": "場所 '{0}' の削除に失敗しました。後でもう一度試してください。",
- "namedNetworkNotificationDeleteFailedTitle": "場所を削除できませんでした",
- "namedNetworkNotificationDeleteSuccessDescription": "'{0}' という名前の場所を削除しました",
- "namedNetworkNotificationDeleteSuccessTitle": "'{0}' を削除しました",
- "namedNetworkNotificationDeleteTitle": "'{0}' を削除しています",
- "namedNetworkNotificationUpdateDescription": "'{0}' という名前の場所を更新しています",
- "namedNetworkNotificationUpdateFailedDescription": "場所 '{0}' の更新に失敗しました。後でもう一度試してください。",
- "namedNetworkNotificationUpdateFailedTitle": "場所を更新できませんでした",
- "namedNetworkNotificationUpdateSuccessDescription": "'{0}' という名前の場所を更新しました",
- "namedNetworkNotificationUpdateSuccessTitle": "'{0}' を更新しました",
- "namedNetworkNotificationUpdateTitle": "'{0}' を更新しています",
- "namedNetworkSearchPlaceholder": "場所を検索します。",
- "namedNetworkUploadFailedDescription": "指定されたファイルの解析でエラーが発生しました。各行が CIDR 形式のプレーンテキスト ファイルをアップロードするようにしてください。",
- "namedNetworkUploadFailedTitle": "'{0}' を解析できませんでした",
- "namedNetworkUploadInProgressDescription": "'{0}' から有効な CIDR 値を解析しようとしています。",
- "namedNetworkUploadInProgressTitle": "'{0}' を解析しています",
- "namedNetworkUploadInvalidDescription": "'{0}' が大きすぎるか、無効な形式です。",
- "namedNetworkUploadInvalidTitle": "'{0}' が無効です",
- "namedNetworkUploadIpRange": "アップロード",
- "namedNetworkUploadSuccessDescription": "{0} 行が分析されました。{1} 行は無効な形式です。{2} 行はスキップされました。",
- "namedNetworkUploadSuccessTitle": "'{0}' の解析が完了しました",
- "namedNetworksAdd": "新しいネームド ロケーション",
- "namedNetworksConditionHelpDescription": "物理的な場所に基づいてユーザー アクセスを制御します。\n[詳細][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
- "namedNetworksExcludeLabel": "{0} かつ {1} 件を除く",
- "namedNetworksHelpDescription": "ネームド ロケーションは、誤検知を減らすために Azure AD セキュリティ レポートで使用されるほか、Azure AD 条件付きアクセス ポリシーでも使用されます。\n[詳細情報][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
- "namedNetworksIncludeLabel": "{0} 件を含む",
- "namedNetworksNone": "ネームド ロケーションが見つかりません。",
- "namedNetworksTitle": "場所の構成",
- "namednetworkExceedingSizeErrorBladeTitle": "エラーの詳細",
- "namednetworkExceedingSizeErrorDetailText": "詳細については、ここをクリックしてください。",
- "namednetworkExceedingSizeErrorMessage": "ネームド ロケーションに許可されている最大ストレージを超えました。リストを短くしてもう一度試してください。ここをクリックすると、詳細が表示されます。",
- "newCertName": "新しい証明書",
- "noPolicyRowMessage": "ポリシーがありません",
- "noSPSelected": "サービス プリンシパルが選択されていません",
- "noUpdatePermissionMessage": "この設定を更新するアクセス許可がありません。アクセスするにはグローバル管理者にお問い合わせください。",
- "noUserSelected": "ユーザーが選択されていません",
- "noneRisk": "リスクなし",
- "office365Description": "これらのアプリには、Microsoft Flow、Microsoft Forms、Microsoft Teams、Office 365 Exchange Online、Office 365 SharePoint Online、Office 365 Yammer などが含まれます。",
- "office365InfoBox": "選択したアプリのうち少なくとも 1 つは Office 365 の一部です。代わりに、Office 365 アプリでポリシーを設定することをお勧めします。",
- "oneUserSelected": "1 人のユーザーが選ばれています",
- "onlyGlobalAdminsCanSaveThisPolicyConfig": "このポリシーを保存できるのは、全体管理者のみです。",
- "or": "{0}または{1}",
- "pickerDoneCommand": "完了",
- "policiesBladeAdPremiumUpsellBannerText": "Azure AD Premium を使用して独自のポリシーを作成し、クラウド アプリ、サインイン リスク、デバイス プラットフォームなど特定の条件をターゲットとします",
- "policiesBladeTitle": "ポリシー",
- "policiesBladeTitleWithAppName": "ポリシー: {0}",
- "policiesDisabledBannerText": "リンクされたサインオン属性が設定されたアプリケーションの場合、ポリシーの作成および編集は禁止されています。",
- "policiesHitMaxLimitStatusBarMessage": "このテナントのポリシーの最大数に達しました。さらに作成するには、その前にいくつかのポリシーを削除してください。",
- "policyAssignmentsSection": "割り当て",
- "policyBlockAllInfoBox": "構成されたポリシーはすべてのユーザーをブロックするため、サポートされていません。割り当てとコントロールを確認してください。このポリシーを保存する場合は、現在のユーザー {0} を除外します。",
- "policyCloudAppsDisplayTextAllApp": "すべてのアプリ",
- "policyCloudAppsLabel": "クラウド アプリ",
- "policyConditionClientAppDescription": "ユーザーがクラウド アプリへのアクセスに使用しているソフトウェア。例: 'ブラウザー'",
- "policyConditionClientAppV2Description": "ユーザーがクラウド アプリへのアクセスに使用しているソフトウェア。例: 'ブラウザー'",
- "policyConditionDevicePlatform": "デバイス プラットフォーム",
- "policyConditionDevicePlatformDescription": "ユーザーがサインインしているプラットフォーム。例: 'iOS'",
- "policyConditionLocation": "場所",
- "policyConditionLocationDescription": "ユーザーがサインインしている場所 (IP アドレスの範囲を使用して特定)",
- "policyConditionSigninRisk": "サインインのリスク",
- "policyConditionSigninRiskDescription": "対象ユーザー以外からのサインインの可能性。リスク レベルは高、中、または低になります。Azure AD Premium 2 ライセンスが必要です。",
- "policyConditionUserRisk": "ユーザーのリスク",
- "policyConditionUserRiskDescription": "ポリシーを適用するために必要なユーザー リスクのレベルを構成します",
- "policyConditioniClientApp": "クライアント アプリ",
- "policyConditioniClientAppV2": "クライアント アプリ (プレビュー)",
- "policyControlAllowAccessDisplayedName": "アクセス権の付与",
- "policyControlAuthenticationStrengthDisplayedName": "認証強度が必要 (プレビュー)",
- "policyControlBladeTitle": "許可",
- "policyControlBlockAccessDisplayedName": "アクセスのブロック",
- "policyControlCompliantDeviceDisplayedName": "デバイスは準拠しているとしてマーク済みである必要があります",
- "policyControlContentDescription": "アクセスをブロックまたは許可するため、アクセスの適用を制御します。",
- "policyControlInfoBallonText": "アクセスをブロックするか、アクセスを許可するために満たす必要のある追加要件を選択します",
- "policyControlMfaChallengeDisplayedName": "多要素認証を要求する",
- "policyControlRequireCompliantAppDisplayedName": "アプリの保護ポリシーが必要",
- "policyControlRequireDomainJoinedDisplayedName": "Hybrid Azure AD Join を使用したデバイスが必要",
- "policyControlRequireMamDisplayedName": "承認されたクライアント アプリが必要です",
- "policyControlRequiredPasswordChangeDisplayedName": "パスワードの変更を必須とする",
- "policyControlSelectAuthStrength": "認証強度が必要",
- "policyControlsNoControlsSelected": "0 個のコントロールが選択されました",
- "policyControlsSection": "アクセス制御",
- "policyCreatBladeTitle": "新規",
- "policyCreateButton": "作成",
- "policyCreateFailedMessage": "エラー: {0}",
- "policyCreateFailedTitle": "'{0}' を作成できませんでした",
- "policyCreateInProgressTitle": "'{0}' を作成しています",
- "policyCreateSuccessMessage": "'{0}' が正常に作成されました。[ポリシーの有効化] を [オン] に設定してある場合は、ポリシーが数分で有効になります。",
- "policyCreateSuccessTitle": "'{0}' が正常に作成されました",
- "policyDeleteConfirmation": "'{0}' を削除しますか? この操作は元に戻すことができません。",
- "policyDeleteFailTitle": "'{0}' の削除に失敗しました",
- "policyDeleteInProgressTitle": "'{0}' を削除しています",
- "policyDeleteSuccessTitle": "'{0}' が正常に削除されました",
- "policyEnforceLabel": "ポリシーの有効化",
- "policyErrorCannotSetSigninRisk": "サインイン リスクの条件を含むポリシーを保存するアクセス許可がありません。",
- "policyErrorNoPermission": "ポリシーを保存するアクセス許可を持っていません。全体管理者に問い合わせてください。",
- "policyErrorUnknown": "問題が発生しました。後でもう一度お試しください。",
- "policyFallbackWarningMessage": "MS Graph を使用して '{0}' を作成または更新できませんでした。AD グラフにフォールバックします。互換性のない条件を持つ MS Graph のポリシー エンドポイントを呼び出すときにバグが発生する可能性が最も高いため、以下のシナリオを調査してください。",
- "policyFallbackWarningTitle": "'{0}' の作成または更新が部分的に成功しました",
- "policyNameCannotBeEmpty": "ポリシー名を空にすることはできません",
- "policyNameDevice": "デバイス ポリシー",
- "policyNameFormat": "[{0}] {1}",
- "policyNameMam": "モバイル アプリの管理ポリシー",
- "policyNameMfaLocation": "MFA および場所ポリシー",
- "policyNamePlaceholderText": "例: 'デバイス準拠アプリ ポリシー'",
- "policyNameTooLongError": "ポリシー名が長すぎます。最大 256 文字です",
- "policyOff": "オフ",
- "policyOn": "オン",
- "policyReportOnly": "レポート専用",
- "policyReviewSection": "確認",
- "policySaveButton": "保存",
- "policyStatusIconDescription": "ポリシーが有効",
- "policyStatusIconEnabled": "有効な状態のアイコン",
- "policyTemplateName1": "アプリによって適用される制限を {0} のブラウザー アクセスに使用する",
- "policyTemplateName2": "マネージド デバイスで {0} のアクセスのみを許可する",
- "policyTemplateName3": "継続的アクセス評価の設定から移行されたポリシー",
- "policyTriggerRiskSpecific": "特定のリスク レベルの選択",
- "policyTriggersInfoBalloonText": "ポリシーが適用されるタイミングを定義する条件。例: '場所'",
- "policyTriggersNoConditionsSelected": "0 個の条件が選択されました",
- "policyTriggersSelectorLabel": "条件",
- "policyUpdateFailedMessage": "エラー: {0}",
- "policyUpdateFailedTitle": "{0} を更新できませんでした",
- "policyUpdateInProgressTitle": "{0}の更新中",
- "policyUpdateSuccessMessage": "{0} が正常に更新されました。[ポリシーの有効化] を [オン] に設定している場合は、ポリシーが数分で有効になります。",
- "policyUpdateSuccessTitle": "{0} が正常に更新されました",
- "primaryCol": "プライマリ",
- "privateLinkLabel": "Azure AD Private Link",
- "reportOnlyInfoBox": "レポート専用モード: サインイン時にポリシーが評価されてログに記録されますが、ユーザーに影響しません。",
- "requireAllControlsText": "選択したコントロールすべてが必要",
- "requireCompliantDevice": "準拠しているデバイスが必要です",
- "requireDomainJoined": "ドメインに参加しているデバイスが必要",
- "requireMFA": "多要素認証が必要",
- "requireOneControlText": "選択したコントロールのいずれかが必要",
- "resetFilters": "フィルターのリセット",
- "sPRequired": "サービス プリンシパルは必須です",
- "sPSelectorInfoBalloon": "テストするユーザーまたはサービス プリンシパル",
- "saturday": "土曜日",
- "searchTextTooLongError": "検索テキストが長すぎます。最大 256 文字",
- "securityDefaultsPolicyName": "セキュリティの既定値群",
- "securityDefaultsTextMessage": "条件付きアクセス ポリシーを有効にするには、セキュリティの既定値群を無効にする必要があります。",
- "securityDefaultsWarningMessage": "組織のセキュリティ構成を管理しようとしているようです。条件付きアクセス ポリシーを有効にする前に、まずセキュリティの既定値群を無効にする必要があります。",
- "selectDevicePlatforms": "デバイス プラットフォームの選択",
- "selectNamedNetworksSubtitle": "",
- "selectNamedNetworksTitle": "場所の選択",
- "selectedSP": "選択されたサービス プリンシパル",
- "servicePrincipalDataGridAria": "使用可能なサービス プリンシパルの一覧",
- "servicePrincipalDropDownLabel": "このポリシーは何に適用されますか?",
- "servicePrincipalInfoBox": "ポリシーの割り当てで '{0}' が選択されているため、一部の条件を使用できません",
- "servicePrincipalRadioAll": "所有されているすべてのサービス プリンシパル",
- "servicePrincipalRadioSelect": "サービス プリンシパルの選択",
- "servicePrincipalSelectionsAria": "選択されたサービス プリンシパル グリッド",
- "servicePrincipalSelectorAria": "選択されたサービス プリンシパルの一覧",
- "servicePrincipalSelectorMultiple": "{0} 個のサービス プリンシパルが選択済み",
- "servicePrincipalSelectorSingle": "1 つのサービス プリンシパルが選択済み",
- "servicePrincipalSpecificInc": "特定のサービス プリンシパルが含まれている",
- "servicePrincipals": "サービス プリンシパル",
- "sessionControlBladeTitle": "セッション",
- "sessionControlDescriptionContent": "特定のクラウド アプリケーション内で限定的なエクスペリエンスを有効にするため、セッション制御に基づいてアクセスを制御します。",
- "sessionControlDisableInfo": "この制御は、サポートされているアプリでのみ動作します。現在、Office 365、Exchange Online、SharePoint Online のみが、アプリによって適用される制限をサポートするクラウド アプリです。詳細についてはここをクリックしてください。",
- "sessionControlInfoBallonText": "セッション制御により、クラウド アプリ内での操作の制限が可能になります。",
- "sessionControls": "セッション制御",
- "sessionControlsAppEnforcedLabel": "アプリによって適用される制限を使用する",
- "sessionControlsCasLabel": "アプリの条件付きアクセス制御を使う",
- "sessionControlsSecureSignInLabel": "トークンのバインドが必要",
- "sharepointAppName": "SharePoint",
- "signinRiskDescription": "このポリシーを適用するサインイン リスク レベルを選択します",
- "signinRiskInclude": "{0} 件を含む",
- "signinRiskTriggerDescriptionContent": "サインイン リスク レベルの選択",
- "singleTenantServicePrincipalInfoBallonText": "ポリシーは、組織が所有するシングル テナントのサービス プリンシパルにのみ適用されます。詳細については、ここをクリックしてください ",
- "specificSigninRiskLevelsOption": "特定のサインイン リスク レベルを選択する",
- "specificUsersExcluded": "除外された特定のユーザー",
- "specificUsersIncluded": "組み込まれた特定のユーザー",
- "specificUsersIncludedAndExcluded": "除外および追加する特定のユーザー",
- "startDatePickerLabel": "開始時",
- "startFreeTrial": "無料試用版の開始",
- "startTimePickerLabel": "開始時刻",
- "sunday": "日曜日",
- "testButton": "What If",
- "thumbprintCol": "拇印",
- "thursday": "木曜日",
- "timeConditionAllTimesLabel": "日時指定なし",
- "timeConditionIntroText": "このポリシーが適用される時刻を構成します",
- "timeConditionSelectorInfoBallonContent": "ユーザーがサインインしている時間。たとえば、\"水曜日午前 9 時 - 午後 5 時 (PST)\"",
- "timeConditionSelectorLabel": "時間 (プレビュー)",
- "timeConditionSpecificLabel": "特定の時間",
- "timeSelectorAllTimesText": "日時指定なし",
- "timeSelectorSpecificTimesText": "特定の時間が構成されました",
- "timeZoneDropdownInfoBalloonContent": "時間の範囲を定義するタイム ゾーンを選択します。このポリシーは、すべてのタイム ゾーンのユーザーに適用されます。たとえば、あるユーザーの '水曜日午前 9 時 - 午後 5 時' は、別のタイム ゾーンのユーザーの場合に '水曜日午前 10 時 - 午後 6 時' になります。",
- "timeZoneDropdownLabel": "タイム ゾーン",
- "timeZoneDropdownPlaceholderText": "タイム ゾーンの選択",
- "tooManyPoliciesDescription": "現在表示されているポリシーは最初の 50 個のみです。すべてのポリシーを表示するには、ここをクリックしてください",
- "tooManyPoliciesTitle": "50 個を超えるポリシーが見つかりました",
- "trustedLocationStatusIconDescription": "場所は信頼されています",
- "trustedLocationStatusIconEnabled": "信頼された状態のアイコン",
- "tuesday": "火曜日",
- "uploadInBadState": "指定したファイルをアップロードできません。",
- "upsellAppsDescription": "機密情報を扱うアプリケーションでは、常時または会社のネットワーク外部からアクセスする場合のみ、多要素認証が必要です。",
- "upsellAppsTitle": "セキュリティで保護されたアプリケーション",
- "upsellBannerText": "無料の Premium 評価版を入手して、この機能を使用します",
- "upsellDataDescription": "会社のリソースへのアクセスを許可するには、デバイスは準拠としてマーク済みまたはHybrid Azure AD Join を使用したである必要があります。",
- "upsellDataTitle": "セキュリティで保護されたデータ",
- "upsellDescription": "条件付きアクセスは、会社のデータを安全に保つために必要な制御と保護を提供すると同時に、ユーザーが任意のデバイスから最適な作業を実行できるようにします。たとえば、会社のネットワーク外部からのアクセスを制限したり、コンプライアンス ポリシーを満たすデバイスへのアクセスを制限したりできます。",
- "upsellRiskDescription": "Microsoft の機械学習システムで検出されたリスク イベントには多要素認証が必要です。",
- "upsellRiskTitle": "リスクからの保護",
- "upsellTitle": "条件付きアクセス",
- "upsellWhyTitle": "条件付きアクセスを使用する理由",
- "userAppNoneOption": "なし",
- "userNamePlaceholderText": "ユーザー名の入力",
- "userNotSetSeletorLabel": "0 個のユーザーとグループが選択されました",
- "userOnlySelectionBladeExcludeDescription": "ポリシーから除外するユーザーを選択します",
- "userOrGroupSelectionCountDiffBannerText": "このポリシーで構成されている {0} がディレクトリから削除されましたが、このポリシーの他のユーザーとグループには影響ありません。ポリシーを次回更新するときに、削除されたユーザーおよびグループが自動的に削除されます。",
- "userOrSPNotSetSelectorLabel": "ユーザーまたはワークロード ID が選択されていません",
- "userOrSPSelectionBladeTitle": "ユーザーまたはワークロード ID",
- "userOrSPSelectorInfoBallonText": "ユーザー、グループ、サービス プリンシパルなど、ポリシーが適用されるディレクトリ内の ID",
- "userRequired": "ユーザーが必要",
- "userRiskErrorBox": "\"パスワードの変更が必要\" 許可が選択されている場合は、\"ユーザーのリスク\" 条件を選択する必要があります",
- "userSPRequired": "ユーザーまたはサービス プリンシパルは必須です",
- "userSPSelectorTitle": "ユーザーまたはワークロード ID",
- "userSelectionBladeAllUsersAndGroups": "すべてのユーザーとグループ",
- "userSelectionBladeExcludeDescription": "ポリシーから除外するユーザーとグループを選択します",
- "userSelectionBladeExcludeTabTitle": "対象外",
- "userSelectionBladeExcludedSelectorTitle": "対象外とするユーザーの選択",
- "userSelectionBladeIncludeDescription": "このポリシーが適用されるユーザーを選択します",
- "userSelectionBladeIncludeTabTitle": "対象",
- "userSelectionBladeIncludedSelectorTitle": "選択",
- "userSelectionBladeSelectUsers": "ユーザーの選択",
- "userSelectionBladeSelectedUsers": "ユーザーとグループの選択",
- "userSelectionBladeTitle": "ユーザーとグループ",
- "userSelectorBladeTitle": "ユーザー",
- "userSelectorExcluded": "{0} 件を除く",
- "userSelectorGroupPlural": "{0} グループ",
- "userSelectorGroupSingular": "1 グループ",
- "userSelectorIncluded": "{0} 件を含む",
- "userSelectorInfoBallonText": "ポリシーが適用されるディレクトリ内のユーザーとグループ。例: 'パイロット グループ'",
- "userSelectorSelected": "{0} 件を選択済み",
- "userSelectorTitle": "ユーザー",
- "userSelectorUserAndGroup": "{0}, {1}",
- "userSelectorUserPlural": "{0} のユーザー",
- "userSelectorUserSingular": "1 ユーザー",
- "userSelectorWithExclusion": "{0} および {1}",
- "usersGroupsLabel": "ユーザーとグループ",
- "viewApprovedAppsText": "承認されたクライアント アプリの一覧を表示します",
- "viewCompliantAppsText": "ポリシーで保護されたクライアント アプリの一覧を表示します",
- "vpnBladeTitle": "VPN 接続",
- "vpnCertCreateFailedMessage": "エラー: {0}",
- "vpnCertCreateFailedTitle": "{0} の作成に失敗しました",
- "vpnCertCreateInProgressTitle": "{0} を作成しています",
- "vpnCertCreateSuccessMessage": "{0} が正常に作成されました。",
- "vpnCertCreateSuccessTitle": "{0} が正常に作成されました",
- "vpnCertNoRowsMessage": "VPN 証明書が見つかりません",
- "vpnCertUpdateFailedMessage": "エラー: {0}",
- "vpnCertUpdateFailedTitle": "{0} を更新できませんでした",
- "vpnCertUpdateInProgressTitle": "{0}の更新中",
- "vpnCertUpdateSuccessMessage": "{0} が正常に更新されました。",
- "vpnCertUpdateSuccessTitle": "{0} が正常に更新されました",
- "vpnFeatureInfo": "VPN 接続と条件付きアクセスの詳細については、こちらをクリックしてください。",
- "vpnFeatureWarning": "Azure portal で VPN 証明書が作成されると、Azure AD はすぐにそれを利用して、存続期間が短い証明書を VPN クライアントに発行します。VPN クライアントの資格情報の検証に関する問題を回避するために、VPN 証明書を直ちに VPN サーバーに展開することが重要です。",
- "vpnMenuText": "VPN 接続",
- "vpncertDropdownDefaultOption": "期間",
- "vpncertDropdownInfoBalloonContent": "作成する証明書の有効期間を選択します",
- "vpncertDropdownLabel": "時間の選択",
- "vpncertDropdownOneyearOption": "1 年",
- "vpncertDropdownThreeyearOption": "3 年",
- "vpncertDropdownTwoyearOption": "2 年",
- "wednesday": "水曜日",
- "whatIfAppEnforcedControl": "アプリによって適用される制限を使用する",
- "whatIfBladeDescription": "特定の条件下でサインインする場合の、ユーザーに対する条件付きアクセスの影響をテストします。",
- "whatIfBladeTitle": "What If",
- "whatIfClassicPoliciesWarning": "クラシック ポリシーは、このツールでは評価されません。",
- "whatIfClientAppInfo": "ユーザーがサインインするときに使用するクライアント アプリ。「ブラウザー」などです。",
- "whatIfCountry": "国",
- "whatIfCountryInfo": "ユーザーがサインインしている国。",
- "whatIfDevicePlatformInfo": "ユーザーがサインインしているデバイス プラットフォーム。",
- "whatIfDeviceStateInfo": "ユーザーがサインインしているデバイスの状態",
- "whatIfEnterIpAddress": "IP アドレスを入力してください (例: 40.77.182.32)",
- "whatIfErrorInvalidIpAddress": "無効な IP アドレスが指定されました。",
- "whatIfEvaResultApplication": "クラウド アプリ",
- "whatIfEvaResultClientApps": "クライアント アプリ",
- "whatIfEvaResultDevicePlatform": "デバイス プラットフォーム",
- "whatIfEvaResultEmptyPolicy": "空のポリシー",
- "whatIfEvaResultInvalidCondition": "無効な条件",
- "whatIfEvaResultInvalidPolicy": "無効なポリシー",
- "whatIfEvaResultLocation": "場所",
- "whatIfEvaResultNotEnoughInformation": "情報不足",
- "whatIfEvaResultPolicyNotEnabled": "ポリシーが有効になっていません",
- "whatIfEvaResultSignInRisk": "サインイン リスク",
- "whatIfEvaResultUsers": "ユーザーとグループ",
- "whatIfIpAddress": "IP アドレス",
- "whatIfIpAddressInfo": "ユーザーがサインインしている IP アドレス。",
- "whatIfIpCountryInfoBoxText": "IP アドレスまたは国を使用する場合、両方のフィールドは必要になり、共に正しくマップする必要があります。",
- "whatIfPolicyAppliesTab": "適用するポリシー",
- "whatIfPolicyDoesNotApplyTab": "適用しないポリシー",
- "whatIfReasons": "このポリシーを適用しない理由",
- "whatIfSelectClientApp": "クライアント アプリの選択...",
- "whatIfSelectCountry": "国の選択...",
- "whatIfSelectDevicePlatform": "デバイス プラットフォームの選択...",
- "whatIfSelectPrivateLink": "プライベート リンクを選択してください...",
- "whatIfSelectServicePrincipalRisk": "サービス プリンシパルリスクを選択...",
- "whatIfSelectSignInRisk": "サインイン リスクを選択...",
- "whatIfSelectType": "ID の種類の選択",
- "whatIfSelectUserRisk": "ユーザー リスクの選択...",
- "whatIfServicePrincipalRiskInfo": "サービス プリンシパルに関連付けられているリスク レベル",
- "whatIfSignInRisk": "サインイン リスク",
- "whatIfSignInRiskInfo": "サインインに関連付けられているリスク レベル",
- "whatIfUnknownAreas": "不明な領域",
- "whatIfUserPickerLabel": "選択したユーザー",
- "whatIfUserPickerNoRowsLabel": "ユーザーまたはサービス プリンシパルが選択されていません",
- "whatIfUserRiskInfo": "ユーザーに関連付けられているリスク レベル",
- "whatIfUserSelectorInfo": "ディレクトリ内のテスト対象ユーザー",
- "windows365InfoBox": "Windows 365 を選択すると、クラウド PC と Azure Virtual Desktop セッション ホストへの接続に影響します。詳細については、こちらをクリックしてください。",
- "windowsDisplayName": "Windows",
- "windowsPhoneDisplayName": "Windows Phone",
- "workloadIdentities": "ワークロード ID (プレビュー)",
- "workloadIdentity": "ワークロード ID"
- },
- "ApplicableDeviceType": {
- "iPad": "iPad",
- "iPhoneAndIPod": "iPhone と iPod"
- },
- "TAPSettings": {
- "AllowedDataIngestionLocations": {
- "label": "選択したサービスからデータを開くことをユーザーに許可する",
- "tooltip": "ユーザーがデータを開くことのできるアプリケーション ストレージ サービスを選択します。その他のすべてのサービスはブロックされます。何もサービスを選択しないと、ユーザーはデータを開けなくなります。"
- },
- "AndroidBackup": {
- "label": "Android バックアップ サービスに組織データをバックアップ",
- "tooltip": "Android バックアップ サービスに組織データをバックアップできないようにするには、{0} を選択します。\r\nAndroid バックアップ サービスに組織データをバックアップできるようにするには {1} を選択します。\r\n個人データや管理されていないデータには影響しません。"
- },
- "AndroidBiometricAuthentication": {
- "label": "アクセスに PIN ではなく生体認証を使用",
- "tooltip": "アプリの PIN の代わりにユーザーが使用できる Android 認証方法 (存在する場合) を選択します。"
- },
- "AndroidFingerprint": {
- "label": "アクセスに PIN ではなく指紋を使用 (Android 6.0 以降)",
- "tooltip": "Android OS で Android デバイス ユーザーを認証するために指紋のスキャンを使用します。この機能は Android デバイスのネイティブの生体認証コントロールをサポートします。Samsung Pass などの OEM 固有の生体認証設定はサポートしません。許可した場合、対応デバイス上のアプリにアクセスするときにネイティブの生体認証コントロールを使用する必要があります。"
- },
- "AndroidOverrideFingerprint": {
- "label": "タイムアウト後は PIN で指紋をオーバーライドする"
- },
- "AppPIN": {
- "label": "デバイスの PIN が設定されている場合のアプリ PIN",
- "tooltip": "不要な場合、デバイス PIN が MDM 登録デバイスで設定されているなら、アプリにアクセスするためにアプリ PIN を使用する必要はありません。
\r\n\r\n注: Intune は、Android 上のサード パーティ EMM ソリューションによるデバイス登録を検出できません。"
- },
- "BlockDataIngestionIntoOrganizationDocuments": {
- "label": "データを開いて組織ドキュメントに読み込む",
- "tooltip1": "このアプリで [開く] オプションや他のオプションを使用してアカウント間でのデータの共有を行うことを禁止する場合は、[ブロック] を選択します。このアプリで [開く] オプションや他のオプションを使用してアカウント間でのデータの共有を行うことを許可する場合は、[許可] を選択します。",
- "tooltip2": "[ブロック] に設定する場合、[選択したサービスからユーザーがデータを開くことを許可する] の設定を構成して、組織のデータの場所として許可するサービスを指定できます。",
- "tooltip3": "注意: この設定は、[他のアプリからデータを受信] の設定が [ポリシーで管理されているアプリ] に設定されている場合にのみ適用されます。
\r\n注意: この設定はすべてのアプリケーションに適用されるわけではありません。詳細については、{0} をご覧ください。",
- "tooltip4": "注意: この設定は、[他のアプリからデータを受信] の設定が [ポリシーで管理されているアプリ] に設定されている場合にのみ適用されます。
\r\n注意: この設定はすべてのアプリケーションに適用されるわけではありません。詳細については、{0} または {0} をご覧ください。"
- },
- "ConnectToVpnOnLaunch": {
- "label": "アプリの起動時に Microsoft Tunnel の接続を開始する",
- "tooltip": "アプリの起動時に VPN への接続を許可する"
- },
- "CredentialsForAccess": {
- "label": "アクセスに職場または学校アカウントの資格情報を使用",
- "tooltip": "必須の場合、ポリシーで管理されているアプリにアクセスするには、職場または学校の資格情報を使用する必要があります。アプリへのアクセスに PIN または生体認証方式も必要な場合には、こうしたプロンプトに加えて、職場または学校アカウントの資格情報が必要になります。"
- },
- "CustomBrowserDisplayName": {
- "label": "アンマネージド ブラウザー名",
- "tooltip": "[アンマネージド ブラウザー ID] に関連付けられているブラウザーのアプリケーション名を入力してください。この名前は、指定されたブラウザーがインストールされていない場合にユーザーに表示されます。"
- },
- "CustomBrowserPackageId": {
- "label": "アンマネージド ブラウザー ID",
- "tooltip": "1 つのブラウザーのアプリケーション ID を入力してください。ポリシーで管理されているアプリケーションからの Web コンテンツ (http/s) が、指定されたブラウザーで開きます。"
- },
- "CustomBrowserProtocol": {
- "label": "アンマネージド ブラウザー プロトコル",
- "tooltip": "1 つのアンマネージド ブラウザーのプロトコルを入力します。ポリシーで管理されているアプリケーションからの Web コンテンツ (http/s) は、このプロトコルをサポートするすべてのアプリで開くことができます。
\r\n \r\n注意: プロトコル プレフィックスのみを含めます。ブラウザーで \"mybrowser://www.microsoft.com\" 形式のリンクが必要な場合は、\"mybrowser\" を入力してください。
"
- },
- "CustomDialerAppDisplayName": {
- "label": "ダイヤラー アプリ名"
- },
- "CustomDialerAppPackageId": {
- "label": "ダイヤラー アプリ パッケージ ID"
- },
- "CustomDialerAppProtocol": {
- "label": "ダイヤラー アプリ URL スキーム"
- },
- "Cutcopypaste": {
- "label": "他のアプリとの間で切り取り、コピー、貼り付けを制限する",
- "tooltip": "ご使用のアプリと、デバイス上にインストールされている他の承認済みアプリとの間で、データの切り取り、コピー、貼り付けを行います。アプリ間でこうした操作をすべてブロックするか、あらゆるアプリとの間で使用を許可するか、組織で管理するアプリだけが使用できるように制限するかのいずれかを選択します。
\r\n\r\n[貼り付けを使用する、ポリシー マネージド アプリ] の場合、別のアプリから貼り付けられたコンテンツを受け入れることができますが、ユーザーが他のアプリにコンテンツを共有することはできません (管理されているアプリとの共有を除く)。
"
- },
- "DialerRestrictionLevel": {
- "iosTooltip": "通常、ユーザーがアプリでハイパーリンク付きの電話番号を選択すると、電話番号が事前入力された状態でダイヤラー アプリが開き、通話準備が整っています。この設定では、ポリシー マネージド アプリから開始された場合に、この種のコンテンツ転送をどのように扱うかを選択します。この設定を有効にするには、追加の操作が必要になる場合があります。最初に、[除外するアプリを選択します] の一覧から tel と telprompt が削除されていることを確認します。次に、アプリケーションが新しいバージョンの Intune SDK (バージョン 12.7.0 以上) を使用していることを確認します。",
- "label": "電話通信データの転送先",
- "tooltip": "通常、ユーザーがアプリでハイパーリンク付きの電話番号を選択すると、ダイヤラー アプリが開きます。アプリでは、電話番号が事前設定されているので、すぐに通話できます。この設定では、この種類のコンテンツの転送について、ポリシーで管理されたアプリから開始された場合にどのように処理するかを選択します。"
- },
- "EncryptData": {
- "label": "組織データを暗号化",
- "link": "https://docs.microsoft.com/ja-jp/intune/app-protection-policy-settings-android#data-relocation-settings",
- "tooltip": "Intune アプリ層暗号化を使用して組織データの強制的に暗号化する場合は、{0} を選択します。\r\n
\r\nIntune アプリ層暗号化を使用して組織データを強制的に暗号化しない場合は、{1} を選択します。\r\n\r\n
\r\n注: Intune アプリ層暗号化の詳細については、{2} をご覧ください。"
- },
- "EncryptDataAndroid": {
- "tooltip": "[必要] を選択すると、このアプリの職場や学校のデータを暗号化できます。Intune では、Android キーストア システムと共に OpenSSL の 256 ビット AES 暗号化スキームを使用して、アプリ データを安全に暗号化します。データは、ファイル I/O タスク中に同期的に暗号化されます。デバイス ストレージ上のコンテンツは常に暗号化されます。前のバージョンの SDK を使用するコンテンツやアプリとの互換性のため、SDK では引き続き 128 ビット キーのサポートが提供されます。
\r\n\r\n暗号化の方法は FIPS 140-2 に準拠していません。
"
- },
- "EncryptDataIos": {
- "tooltip1": "[必要] を選択すると、このアプリの職場や学校のデータを暗号化できます。Intune では、デバイスがロックされている間にアプリ データを保護するため iOS/iPadOS デバイスに暗号化を強制します。アプリケーションでは、オプションとして、Intune APP SDK 暗号化を使用してアプリ データを暗号化することもできます。Intune APP SDK は iOS/iPadOS 暗号化方法を使用して 128 ビット AES 暗号化をアプリ データに適用します。",
- "tooltip2": "この設定を有効にすると、ユーザーが自分のデバイスにアクセスするために PIN を設定して使用しなければならなくなる可能性があります。デバイス PIN がない場合に暗号化が必要になると、ユーザーに対して \"このアプリにアクセスするには、デバイス PIN を最初に有効にすることが組織によって求められています\" というメッセージが表示され、PIN を設定するよう促されます。",
- "tooltip3": "Apple の公式ドキュメントを参照し、FIPS 140-2 に準拠している、または FIPS 140-2 の準拠が保留されている iOS 暗号化モジュールをご確認ください。"
- },
- "EncryptDataOnEnrolledDevices": {
- "label": "登録済みデバイスで組織データを暗号化",
- "tooltip": "すべてのデバイスで Intune アプリ層暗号化を使用して強制的に組織データを暗号化する場合は、{0} を選択します。
\r\n\r\n登録デバイスで Intune アプリ層暗号化を使用して組織データを強制的に暗号化しない場合は、{1} を選択します。"
- },
- "IOSBackup": {
- "label": "iTunes と iCloud のバックアップに組織データをバックアップ",
- "tooltip": "iTunes や iCloud に組織データをバックアップできないようにするには、{0} を選択します。\r\niTunes または iCloud に組織データをバックアップできるようにするには {1} を選択します。\r\n個人データや管理されていないデータには影響しません。"
- },
- "IOSFaceID": {
- "label": "アクセスに PIN ではなく Face ID を使用 (iOS 11 以降/iPadOS)",
- "tooltip": "Face ID は、iOS/iPadOS デバイスでユーザーを認証するのに顔認識テクノロジを使用します。Intune は LocalAuthentication API を呼び出して、Face ID を使用してユーザーを認証します。許可した場合、Face ID 対応デバイス上のアプリにアクセスするには Face ID を使用する必要があります。"
- },
- "IOSOverrideTouchId": {
- "label": "タイムアウト後は PIN で生体認証をオーバーライドする"
- },
- "IOSTouchId": {
- "label": "アクセスに PIN ではなく Touch ID を使用 (iOS 8 以降/iPadOS)",
- "tooltip": "Touch ID は、iOS デバイスでユーザーを認証するのに指紋認識テクノロジを使用します。Intune は LocalAuthentication API を呼び出して、Touch ID を使用してユーザーを認証します。許可した場合、Touch ID 対応デバイス上のアプリにアクセスするには Touch ID を使用する必要があります。"
- },
- "NotificationRestriction": {
- "label": "組織データの通知",
- "tooltip": "次のいずれかのオプションを選択して、このアプリおよびウェアラブルなどの任意の接続されているデバイスについて、組織のアカウントの通知を表示する方法を指定します:
\r\n{0}: 通知を共有しない。
\r\n{1}: 通知では組織データを共有しない。アプリケーションでサポートされていない場合は通知をブロックする。
\r\n{2}: すべての通知を共有する。
\r\n Android のみ:\r\n 注意: この設定はすべてのアプリケーションに適用されるわけではありません。詳細については、{3} を参照してください
\r\n \r\n iOS のみ:\r\n注意: この設定はすべてのアプリケーションに適用されるわけではありません。詳細については、{4} を参照してください
"
- },
- "OpenLinksManagedBrowser": {
- "label": "その他のアプリでの Web コンテンツの転送を制限する",
- "tooltip": "次のいずれかのオプションを選択して、このアプリで Web コンテンツを開くことのできるアプリを指定します:
\r\nEdge: Edge でのみ Web コンテンツを開くことを許可します
\r\nアンマネージド ブラウザー: [アンマネージド ブラウザー プロトコル] の設定によって定義されたアンマネージド ブラウザーでのみ Web コンテンツを開くことを許可します
\r\n任意のアプリ: どのアプリでも Web リンクを許可します
"
- },
- "OverrideBiometric": {
- "tooltip": "必須の場合、タイムアウト (非アクティブ分数) に従い、生体認証プロンプトが PIN プロンプトでオーバーライドされます。このタイムアウト値に達していない場合は生体認証プロンプトが引き続き表示されます。このタイムアウト値は、[(非アクティブ分数) 後にアクセス要件を再確認する] で指定された値より大きくなければなりません。"
- },
- "PinAccess": {
- "label": "アクセスに PIN を使用",
- "tooltip": "必須の場合、ポリシーで管理されたアプリにアクセスするには PIN を使用する必要があります。ユーザーは、職場または学校アカウントでアプリを初めて開くときにアクセス PIN を作成しなければなりません。"
- },
- "PinLength": {
- "label": "PIN の最小長を選択",
- "tooltip": "この設定では、PIN の最小桁数を指定します。"
- },
- "PinType": {
- "label": "PIN の種類",
- "tooltip": "数字 PIN はすべて数字です。パスコードは、英数字と特殊文字で構成されています。 "
- },
- "Printing": {
- "label": "組織データを出力する",
- "tooltip": "ブロックされている場合、アプリは保護されているデータを出力できません。"
- },
- "ReceiveData": {
- "label": "他のアプリからデータを受信",
- "tooltip": "このアプリがどのアプリからのデータを受信できるかを指定するため、次のオプションの中から 1 つを選択します。
\r\n\r\nなし: どのアプリからも組織ドキュメントやアカウントのデータを受信できません
\r\n\r\nポリシー マネージド アプリ: ポリシーで管理されている他のアプリからのみ、組織ドキュメントやアカウントのデータを受信できます\r\n
\r\n受信した組織データを持つすべてのアプリ: どのアプリからでも組織ドキュメントやアカウントのデータを受信でき、ユーザー アカウントのないすべての着信データを組織データとして扱います
\r\n\r\nすべてのアプリ: どのアプリからでも組織ドキュメントやアカウントのデータを受信できます"
- },
- "RecheckAccessAfter": {
- "label": "非アクティブの時間(分)後にアクセス権を再確認します\r\n\r\n",
- "tooltip": "ポリシーで管理されているアプリが非アクティブな状態のまま、指定された非アクティブ分数を超過すると、アプリが起動した後、再確認すべきアクセス要件 (つまり、PIN、条件付き起動設定) を入力するよう求めるプロンプトが表示されます。"
- },
- "RestrictKeyboards": {
- "duplicatePackageError": "パッケージ ID は一意である必要があります。",
- "invalidPackageError": "パッケージ ID が無効です",
- "label": "承認済みキーボード",
- "select": "承認するキーボードの選択",
- "subtitle": "対象のアプリでユーザーが使用できるすべてのキーボードと入力方法を追加します。エンド ユーザーに表示したいキーボードの名前を入力してください。",
- "title": "承認済みキーボードの追加",
- "toolTip": "[必要] を選択し、このポリシーに対して承認されたキーボードの一覧を指定します。詳細情報。"
- },
- "SaveData": {
- "label": "組織データのコピーを保存",
- "tooltip": "[名前を付けて保存] を使用して、選択したストレージ サービス以外の新しい場所に組織データのコピーを保存できないようにする場合は、{0} を選択します。\r\n [名前を付けて保存] を使用して新しい場所に組織データのコピーを保存できるようにする場合は、{1} を選択します。
\r\n\r\n\r\n注: この設定は、すべてのアプリケーションに適用されるわけではありません。詳しくは、{2} をご覧ください。\r\n"
- },
- "SaveDataToSelected": {
- "label": "選択したサービスにユーザーがコピーを保存することを許可",
- "tooltip": "ユーザーが組織データのコピーを保存できるストレージ サービスを選択します。その他のすべてのサービスはブロックされます。何もサービスを選択しないと、ユーザーは組織データのコピーを保存できなくなります。"
- },
- "ScreenCaptureAndAndroidAssistant": {
- "label": "画面キャプチャと Google アシスタント\r\n",
- "tooltip": "ブロックすると、ポリシーで管理されているアプリの使用時に、画面キャプチャと Google アシスタント アプリ スキャンの両方の機能が無効にされます。この機能は、通常の Google アシスタント アプリをサポートしています。Google の Assist API を使用したサード パーティ製アシスタントはサポートされていません。[ブロック] を選択すると、職場または学校アカウントでアプリを使用している場合は、アプリ スイッチャーのプレビュー画像も不鮮明になります。"
- },
- "SendData": {
- "label": "他のアプリに組織データを送信",
- "tooltip": "このアプリからどのアプリに組織データを送信できるかを指定するため、次のオプションの中から 1 つを選択します。
\r\n\r\n\r\nなし: どのアプリにも組織データを送信できません
\r\n\r\n\r\nポリシー マネージド アプリ: ポリシーで管理されている他のアプリにだけ、組織データを送信できます
\r\n\r\n\r\nOS 共有利用のポリシー マネージド アプリ: ポリシーで管理されている他のアプリに組織データを送信することと、登録デバイス上の他の MDM 管理アプリに組織ドキュメントを送信することだけができます
\r\n\r\n\r\nOpen-In/Share フィルター利用のポリシー マネージド アプリ: ポリシーで管理されている他のアプリにだけ組織データを送信することを許可し、OS の [Open-In/Share] ダイアログをフィルター処理して、ポリシーで管理されているアプリのみを表示します\r\n
\r\n\r\nすべてのアプリ: すべてのアプリに組織データを送信できます"
- },
- "SimplePin": {
- "label": "単純な PIN",
- "tooltip": "ブロックすると、ユーザーは単純な PIN を作成できません。単純な PIN とは、1234、ABCD、1111 などの一連の続き番号や数字の繰り返しです。種類 'パスコード' の単純な PIN をブロックすると、パスコードには少なくとも 1 つの数字、文字、特殊文字が含まれていなければなりません。"
- },
- "SyncContacts": {
- "label": "ポリシー マネージド アプリ データとネイティブ アプリまたはアドインの同期"
- },
- "ThirdPartyKeyboards": {
- "infoBox": "キーボード制限はアプリのすべてのエリアに適用されます。複数の識別子をサポートするアプリの個人用アカウントは、この制限の影響を受けます。詳細をご確認ください。",
- "label": "サード パーティのキーボード"
- },
- "Timeout": {
- "label": "タイムアウト (非アクティブ分数)"
- },
- "Tap": {
- "numberOfDays": "日数",
- "pinResetAfterNumberOfDays": "PIN をリセットするまでの日数",
- "previousPinBlockCount": "維持対象の以前の PIN 値の数を選択する"
- }
- },
- "WindowsFeatureUpdateProfile": {
- "Details": {
- "Description": {
- "label": "説明"
- },
- "FeatureDeploymentSettings": {
- "header": "機能展開設定"
- },
- "FeatureUpdateVersion": {
- "infoballoon": "この機能でデバイスをダウングレードすることはできません。",
- "label": "展開する機能更新プログラム"
- },
- "GradualRolloutEndDate": {
- "label": "最後のグループの状態"
- },
- "GradualRolloutInterval": {
- "label": "グループ間の日数"
- },
- "GradualRolloutStartDate": {
- "label": "最初のグループの状態"
- },
- "Name": {
- "label": "名前"
- },
- "RolloutOptions": {
- "label": "ロールアウト オプション"
- },
- "RolloutSettings": {
- "header": "Windows Update でいつ更新プログラムを利用したいですか?"
- },
- "ScopeSettings": {
- "header": "このポリシーのスコープ タグを構成する"
- },
- "StartDateOnlyStartDate": {
- "label": "最初の利用可能日"
- },
- "bladeTitle": "機能の更新プログラムの展開",
- "deploymentSettingsTitle": "デプロイの設定",
- "loadError": "読み込みに失敗しました。",
- "windows11EULA": "この機能更新プログラムを選択して展開すると、(1) 該当する Windows ライセンスがボリューム ライセンスで購入されたか、(2) 組織をバインドする権限を持ち、関連する Microsoft ソフトウェア ライセンス条項 ({0}) を受け入れているデバイスにこのオペレーティング システムを適用することに同意したものと見なされます。"
- },
- "Notifications": {
- "deploymentSaved": "\"{0}\" が保存されました。",
- "newFeatureUpdateDeploymentCreated": "新しい機能更新プログラムの展開が作成されました。"
- },
- "TabName": {
- "deploymentSettings": "デプロイの設定",
- "groupAssignmentSettings": "割り当て",
- "scopeSettings": "スコープ タグ"
- }
- },
- "OfficeUpdateChannel": {
- "current": "最新チャネル",
- "deferred": "半期エンタープライズ チャンネル",
- "firstReleaseCurrent": "最新チャンネル (プレビュー版)",
- "firstReleaseDeferred": "半期エンタープライズ チャンネル (プレビュー)",
- "monthlyEnterprise": "月次エンタープライズ チャネル",
- "placeHolder": "1 つ選んでください"
- },
- "Win32ReturnCodes": {
- "CodeTypes": {
- "failed": "失敗",
- "hardReboot": "ハード リブート",
- "retry": "再試行",
- "softReboot": "ソフト リブート",
- "success": "成功"
- },
- "Columns": {
- "codeType": "コードの種類",
- "returnCode": "リターン コード"
- },
- "bladeTitle": "リターン コード",
- "gridAriaLabel": "リターン コード",
- "header": "インストール後の動作を示すリターン コードを指定します。",
- "onAddAnnounceMessage": "{1} のアイテム {0} が追加されたリターン コード",
- "onDeleteSuccess": "リターン コード {0} が正常に削除されました",
- "returnCodeAlreadyUsedValidation": "リターン コードは既に使用されています。",
- "returnCodeMustBeIntegerValidation": "リターン コードは整数である必要があります。",
- "returnCodeShouldBeAtLeast": "リターン コードは {0} 以上である必要があります。",
- "returnCodeShouldBeAtMost": "リターン コードは {0} 以下である必要があります。",
- "selectorLabel": "リターン コード"
- },
- "SecurityTemplate": {
- "aSR": "攻撃面の減少",
- "accountProtection": "アカウント保護",
- "allDevices": "すべてのデバイス",
- "antivirus": "ウイルス対策",
- "antivirusReporting": "ウイルス対策レポート (プレビュー)",
- "conditionalAccess": "条件付きアクセス",
- "deviceCompliance": "デバイスのポリシー準拠",
- "diskEncryption": "ディスクの暗号化",
- "eDR": "エンドポイントの検出と応答",
- "firewall": "ファイアウォール",
- "helpSupport": "ヘルプとサポート",
- "setup": "セットアップ",
- "wdapt": "Microsoft Defender for Endpoint"
- },
- "PolicySet": {
- "appManagement": "アプリケーション管理",
- "assignments": "割り当て",
- "basics": "基本",
- "deviceEnrollment": "デバイスの登録",
- "deviceManagement": "デバイス管理",
- "scopeTags": "スコープ タグ",
- "appConfigurationTitle": "アプリ構成ポリシー",
- "appProtectionTitle": "アプリ保護ポリシー",
- "appTitle": "アプリ",
- "iOSAppProvisioningTitle": "iOS アプリ プロビジョニング プロファイル",
- "deviceLimitRestrictionTitle": "デバイスの上限数の制限",
- "deviceTypeRestrictionTitle": "デバイスの種類の制限",
- "enrollmentStatusSettingTitle": "登録ステータ スページ",
- "windowsAutopilotDeploymentProfileTitle": "Windows Autopilot Deployment プロファイル",
- "deviceComplianceTitle": "デバイス コンプライアンス ポリシー",
- "deviceConfigurationTitle": "デバイス構成プロファイル",
- "powershellScriptTitle": "PowerShell スクリプト"
- },
- "AssignmentAction": {
- "exclude": "除外",
- "include": "含まれるアクセス許可",
- "includeAllDevicesVirtualGroup": "含まれるアクセス許可",
- "includeAllUsersVirtualGroup": "含まれるアクセス許可"
- },
- "WindowsFeatureUpdate": {
- "EndOFSupportStatus": {
- "notSupported": "未サポート",
- "supportEnding": "サポート終了間近",
- "supported": "サポートあり"
- }
- },
- "InstallIntent": {
- "available": "登録済みデバイスで使用可能",
- "availableWithoutEnrollment": "登録の有無にかかわらず使用可能",
- "required": "必須",
- "uninstall": "アンインストール"
- },
"OutlookAppConfig": {
"DataProtectionConfiguration": {
"header": "データ保護の構成"
@@ -1938,307 +100,864 @@
"themesEnabledTitle": "有効なテーマ",
"themesEnabledTooltip": "ユーザーがカスタムの視覚テーマを使用できるかどうかを指定します。"
},
- "TAP": {
- "AccessRequirements": {
- "infoText": "ユーザーが作業コンテキスト内のアプリにアクセスするために満たす必要のある PIN と資格情報の要件を構成します。"
- },
- "DataProtection": {
- "infoText": "このグループには、切り取り、コピー、貼り付け、名前を付けて保存を制限するなどのデータ損失防止 (DLP) コントロールが含まれています。これらの設定によって、ユーザーがアプリ内でデータを操作する方法が決まります。"
- },
- "DeviceTypes": {
- "selectOne": "デバイスの種類を少なくとも 1 つ選択してください。"
- },
- "TargetedApps": {
- "TargetToAll": {
- "label": "デバイスのすべての種類のアプリをターゲットにする"
- },
- "infoText": "このポリシーを様々なデバイスのアプリに適用する方法を選択してください。次に、少なくとも 1 つのアプリを追加してください。",
- "selectOne": "ポリシーを作成するには、少なくとも 1 つのアプリを選択します。"
- }
- },
- "TACSettings": {
- "edgeSettings": "Microsoft Edge の構成設定",
- "edgeWindowsDataProtectionSettings": "Microsoft Edge (Windows) のデータ保護設定 - プレビュー",
- "edgeWindowsSettings": "Microsoft Edge (Windows) の構成設定 - プレビュー",
- "generalAppConfig": "一般的なアプリの構成",
- "generalSettings": "一般的な構成設定",
- "outlookSMIMEConfig": "Outlook S/MIME の設定",
- "outlookSettings": "Outlook の構成設定",
- "sMIME": "S/MIME"
- },
- "OfficeApplicationAdditionalType": {
- "projectProRetail": "Project Online Desktop Client",
- "visioProRetail": "Visio Online プラン 2"
- },
- "Win32Requirements": {
- "AdditionalRequirements": {
- "File": {
- "fileOrFolderToolTip": "選択した要件としてのファイルまたはフォルダー。",
- "pathToolTip": "検出するファイルまたはフォルダーの完全なパス。",
- "property": "プロパティ",
- "valueToolTip": "選択した検出方法に一致する要件値を選択します。日付と時刻の要件は、現地の形式で入力してください。"
- },
- "GridColumns": {
- "pathOrScript": "パス/スクリプト",
- "type": "種類"
- },
- "Registry": {
- "keyPath": "キー パス",
- "keyPathTooltip": "必要な値を含むレジストリ エントリの完全なパス。",
- "operator": "演算子",
- "operatorTooltip": "比較演算子を選択します。",
- "registryRequirement": "レジストリ キーの要件",
- "registryRequirementTooltip": "レジストリ キーの要件の比較を選択します。",
- "valueName": "値の名前",
- "valueNameTooltip": "必要なレジストリ値の名前。"
- },
- "RequirementTypeOptions": {
- "fileType": "ファイル",
- "registry": "レジストリ",
- "script": "スクリプト"
- },
- "Script": {
- "RequirementMethodOptions": {
- "boolean": "ブール値",
- "dateTime": "日時",
- "float": "浮動小数点",
- "integer": "整数",
- "string": "文字列",
- "version": "バージョン"
- },
- "ScriptContent": {
- "emptyMessage": "スクリプトの内容を空にすることはできません。"
- },
- "duplicateName": "スクリプト名 {0} は既に使用されています。別の名前を指定してください。",
- "enforceSignatureCheck": "スクリプト署名チェックを強制",
- "enforceSignatureCheckTooltip": "スクリプトに信頼できる発行元の署名があることを確認するには、[はい] を選択します。署名がある場合、スクリプトは警告やプロンプトなしで実行されます。スクリプトはブロックされずに実行されます。[いいえ] (既定) を選択すると、署名の検証なしで、エンドユーザーの確認に基づいてスクリプトが実行されます。",
- "loggedOnCredentials": "このスクリプトをログオンしたユーザーの資格情報を使用して実行する",
- "loggedOnCredentialsTooltip": "サインインしたデバイスの資格情報を使用してスクリプトを実行します。",
- "operatorTooltip": "要件の比較演算子を選択します。",
- "requirementMethod": "出力データの型を選択する",
- "requirementMethodTooltip": "検出の一致の要件を特定する際に使用するデータ型を選択します。",
- "scriptFile": "スクリプト ファイル",
- "scriptFileTooltip": "クライアント上でアプリのプレゼンスを検出する PowerShell スクリプトを選択します。アプリが検出されると、要件プロセスにより、終了コード 0 値が指定され、STDOUT に文字列値が書き込まれます。",
- "scriptName": "スクリプト名",
- "value": "値",
- "valueTooltip": "選択した検出方法に一致する要件値を選択します。日付と時刻の要件は、現地の形式で入力してください。"
- },
- "bladeTitle": "要件規則の追加",
- "createRequirementHeader": "要件を作成します。",
- "header": "追加の要件規則を構成する",
- "label": "追加の要件規則",
- "noRequirementsSelectedPlaceholder": "要件は指定されていません。",
- "requirementType": "要件の種類",
- "requirementTypeTooltip": "要件の検証方法を特定するために使用する検出方法の種類を選択してください。"
- },
- "architectures": "オペレーティング システムのアーキテクチャ",
- "architecturesTooltip": "アプリのインストールに必要なアーキテクチャを選択します。",
- "bladeTitle": "必要条件",
- "diskSpace": "必要なディスク領域 (MB)",
- "diskSpaceTooltip": "アプリをインストールするためにシステム ドライブに必要な空きディスク領域です。",
- "header": "アプリをインストールする前にデバイスが満たす必要のある要件を指定します:",
- "maximumTextFieldValue": "値は、{0} 以下である必要があります。",
- "minimumCpuSpeed": "必要な最小 CPU 速度 (MHz)",
- "minimumCpuSpeedTooltip": "アプリのインストールに必要な最小 CPU 速度です。",
- "minimumLogicalProcessors": "必要な論理プロセッサの最小数",
- "minimumLogicalProcessorsTooltip": "アプリのインストールに必要な論理プロセッサの最小数です。",
- "minimumOperatingSystem": "最低限のオペレーティング システム",
- "minimumOperatingSystemTooltip": "アプリのインストールに必要な最小オペレーティング システムを選択します。",
- "minumumTextFieldValue": "値は、{0} 以上である必要があります。",
- "physicalMemory": "必要な物理メモリ (MB)",
- "physicalMemoryTooltip": "アプリのインストールに必要な物理メモリ (RAM) です。",
- "selectorLabel": "必要条件",
- "validNumber": "有効な数値を入力してください。"
- },
- "ArchitectureOptions": {
- "sixtyFourBit": "64 ビット",
- "thirtyTwoBit": "32 ビット"
- },
- "Countries": {
- "ae": "アラブ首長国連邦",
- "ag": "アンティグア・バーブーダ",
- "ai": "アンギラ",
- "al": "アルバニア",
- "am": "アルメニア",
- "ao": "アンゴラ",
- "ar": "アルゼンチン",
- "at": "オーストリア",
- "au": "オーストラリア",
- "az": "アゼルバイジャン",
- "bb": "バルバドス",
- "be": "ベルギー",
- "bf": "ブルキナファソ",
- "bg": "ブルガリア",
- "bh": "バーレーン",
- "bj": "ベナン",
- "bm": "バミューダ",
- "bn": "ブルネイ",
- "bo": "ボリビア",
- "br": "ブラジル",
- "bs": "バハマ",
- "bt": "ブータン",
- "bw": "ボツワナ",
- "by": "ベラルーシ",
- "bz": "ベリーズ",
- "ca": "カナダ",
- "cg": "コンゴ共和国",
- "ch": "スイス",
- "cl": "チリ",
- "cn": "中国",
- "co": "コロンビア",
- "cr": "コスタリカ",
- "cv": "カーボベルデ",
- "cy": "キプロス",
- "cz": "チェコ共和国",
- "de": "ドイツ",
- "dk": "デンマーク",
- "dm": "ドミニカ国",
- "do": "ドミニカ共和国",
- "dz": "アルジェリア",
- "ec": "エクアドル",
- "ee": "エストニア",
- "eg": "エジプト",
- "es": "スペイン",
- "fi": "フィンランド",
- "fj": "フィジー",
- "fm": "ミクロネシア連邦",
- "fr": "フランス",
- "gb": "イギリス",
- "gd": "グレナダ",
- "gh": "ガーナ",
- "gm": "ガンビア",
- "gr": "ギリシャ",
- "gt": "グアテマラ",
- "gw": "ギニアビサウ",
- "gy": "ガイアナ",
- "hk": "香港",
- "hn": "ホンジュラス",
- "hr": "クロアチア",
- "hu": "ハンガリー",
- "id": "インドネシア",
- "ie": "アイルランド",
- "il": "イスラエル",
- "in": "インド",
- "is": "アイスランド",
- "it": "イタリア",
- "jm": "ジャマイカ",
- "jo": "ヨルダン",
- "jp": "日本",
- "ke": "ケニア",
- "kg": "キルギス",
- "kh": "カンボジア",
- "kn": "セントクリストファー・ネイビス",
- "kr": "大韓民国",
- "kw": "クウェート",
- "ky": "ケイマン諸島",
- "kz": "カザフスタン",
- "la": "ラオス人民民主共和国",
- "lb": "レバノン",
- "lc": "セントルシア",
- "lk": "スリランカ",
- "lr": "リベリア",
- "lt": "リトアニア",
- "lu": "ルクセンブルク",
- "lv": "ラトビア",
- "md": "モルドバ共和国",
- "mg": "マダガスカル",
- "mk": "北マケドニア",
- "ml": "マリ",
- "mn": "モンゴル国",
- "mo": "マカオ",
- "mr": "モーリタニア",
- "ms": "モントセラト",
- "mt": "マルタ",
- "mu": "モーリシャス",
- "mw": "マラウイ",
- "mx": "メキシコ",
- "my": "マレーシア",
- "mz": "モザンビーク",
- "na": "ナミビア",
- "ne": "ニジェール",
- "ng": "ナイジェリア",
- "ni": "ニカラグア",
- "nl": "オランダ",
- "no": "ノルウェー",
- "np": "ネパール",
- "nz": "ニュージーランド",
- "om": "オマーン",
- "pa": "パナマ",
- "pe": "ペルー",
- "pg": "パプアニューギニア",
- "ph": "フィリピン",
- "pk": "パキスタン",
- "pl": "ポーランド",
- "pt": "ポルトガル",
- "pw": "パラオ",
- "py": "パラグアイ",
- "qa": "カタール",
- "ro": "ルーマニア",
- "ru": "ロシア",
- "sa": "サウジアラビア",
- "sb": "ソロモン諸島",
- "sc": "セーシェル",
- "se": "スウェーデン",
- "sg": "シンガポール",
- "si": "スロベニア",
- "sk": "スロバキア",
- "sl": "シエラレオネ",
- "sn": "セネガル",
- "sr": "スリナム",
- "st": "サントメ・プリンシペ",
- "sv": "エルサルバドル",
- "sz": "スワジランド",
- "tc": "タークス・カイコス諸島",
- "td": "チャド",
- "th": "タイ",
- "tj": "タジキスタン",
- "tm": "トルクメニスタン",
- "tn": "チュニジア",
- "tr": "トルコ",
- "tt": "トリニダード・トバゴ",
- "tw": "台湾",
- "tz": "タンザニア",
- "ua": "ウクライナ",
- "ug": "ウガンダ",
- "us": "米国",
- "uy": "ウルグアイ",
- "uz": "ウズベキスタン",
- "vc": "セントビンセントおよびグレナディーン諸島",
- "ve": "ベネズエラ",
- "vg": "英領ヴァージン諸島",
- "vn": "ベトナム",
- "ye": "イエメン",
- "za": "南アフリカ",
- "zw": "ジンバブエ"
+ "Languages": {
+ "ar-aE": "アラビア語 (アラブ首長国連邦)",
+ "ar-bH": "アラビア語 (バーレーン)",
+ "ar-dZ": "アラビア語 (アルジェリア)",
+ "ar-eG": "アラビア語 (エジプト)",
+ "ar-iQ": "アラビア語 (イラク)",
+ "ar-jO": "アラビア語 (ヨルダン)",
+ "ar-kW": "アラビア語 (クウェート)",
+ "ar-lB": "アラビア語 (レバノン)",
+ "ar-lY": "アラビア語 (リビア)",
+ "ar-mA": "アラビア語 (モロッコ)",
+ "ar-oM": "アラビア語 (オマーン)",
+ "ar-qA": "アラビア語 (カタール)",
+ "ar-sA": "アラビア語 (サウジアラビア)",
+ "ar-sY": "アラビア語 (シリア)",
+ "ar-tN": "アラビア語 (チュニジア)",
+ "ar-yE": "アラビア語 (イエメン)",
+ "az-cyrl": "アゼルバイジャン語 (キリル、アゼルバイジャン)",
+ "az-latn": "アゼルバイジャン語 (ラテン、アゼルバイジャン)",
+ "bn-bD": "ベンガル語 (バングラデシュ)",
+ "bn-iN": "ベンガル語 (インド)",
+ "bs-cyrl": "ボスニア語 (キリル)",
+ "bs-latn": "ボスニア語 (ラテン)",
+ "zh-cN": "中国語 (中華人民共和国)",
+ "zh-hK": "中国語 (香港: 中華人民共和国香港特別行政区)",
+ "zh-mO": "中国語 (マカオ S.A.R.)",
+ "zh-sG": "中国語 (シンガポール)",
+ "zh-tW": "中国語 (台湾)",
+ "hr-bA": "クロアチア語 (ラテン)",
+ "hr-hR": "クロアチア語 (クロアチア)",
+ "nl-bE": "オランダ語 (ベルギー)",
+ "nl-nL": "オランダ語 (オランダ)",
+ "en-aU": "英語 (オーストラリア)",
+ "en-bZ": "英語 (ベリーズ)",
+ "en-cA": "英語 (カナダ)",
+ "en-cabn": "英語 (カリブ)",
+ "en-iE": "英語 (アイルランド)",
+ "en-iN": "英語 (インド)",
+ "en-jM": "英語 (ジャマイカ)",
+ "en-mY": "英語 (マレーシア)",
+ "en-nZ": "英語 (ニュージーランド)",
+ "en-pH": "英語 (フィリピン共和国)",
+ "en-sG": "英語 (シンガポール)",
+ "en-tT": "英語 (トリニダード・トバゴ)",
+ "en-uK": "英語 (英国)",
+ "en-uS": "英語 (米国)",
+ "en-zA": "英語 (南アフリカ)",
+ "en-zW": "英語 (ジンバブエ)",
+ "fr-bE": "フランス語 (ベルギー)",
+ "fr-cA": "フランス語 (カナダ)",
+ "fr-cH": "フランス語 (スイス)",
+ "fr-fR": "フランス語 (フランス)",
+ "fr-lU": "フランス語 (ルクセンブルク)",
+ "fr-mC": "フランス語 (モナコ)",
+ "de-aT": "ドイツ語 (オーストリア)",
+ "de-cH": "ドイツ語 (スイス)",
+ "de-dE": "ドイツ語 (ドイツ)",
+ "de-lI": "ドイツ語 (リヒテンシュタイン)",
+ "de-lU": "ドイツ語 (ルクセンブルク)",
+ "iu-cans": "イヌクティトット語 (カナダ音節文字、カナダ)",
+ "iu-latn": "イヌクティトット語 (ラテン、カナダ)",
+ "it-cH": "イタリア語 (スイス)",
+ "it-iT": "イタリア語 (イタリア)",
+ "ms-bN": "マレー語 (ブルネイ・ダルサラーム国)",
+ "ms-mY": "マレー語 (マレーシア)",
+ "mn-cN": "モンゴル語 (伝統的モンゴル文字、中国)",
+ "mn-mN": "モンゴル語 (キリル、モンゴル)",
+ "no-nB": "ノルウェー語ブークモール (ノルウェー)",
+ "no-nn": "ノルウェー語 ニーノシク (ノルウェー)",
+ "pt-bR": "ポルトガル語 (ブラジル)",
+ "pt-pT": "ポルトガル語 (ポルトガル)",
+ "quz-bO": "ケチュア語 (ボリビア)",
+ "quz-eC": "ケチュア語 (エクアドル)",
+ "quz-pE": "ケチュア語 (ペルー)",
+ "smj-nO": "ルレ サーミ語 (ノルウェー)",
+ "smj-sE": "ルレ サーミ語 (スウェーデン)",
+ "se-fI": "北サーミ語 (フィンランド)",
+ "se-nO": "北サーミ語 (ノルウェー)",
+ "se-sE": "北サーミ語 (スウェーデン)",
+ "sma-nO": "南サーミ語 (ノルウェー)",
+ "sma-sE": "南サーミ語 (スウェーデン)",
+ "smn": "イナリ サーミ語 (フィンランド)",
+ "sms": "スコルト サーミ語 (フィンランド)",
+ "sr-Cyrl-bA": "セルビア語 (キリル)",
+ "sr-Cyrl-rS": "セルビア語 (キリル、セルビアおよびモンテネグロ (旧))",
+ "sr-Latn-bA": "セルビア語 (ラテン)",
+ "sr-Latn-rS": "セルビア語 (ラテン、セルビア)",
+ "dsb": "低地ソルブ語 (ドイツ)",
+ "hsb": "高地ソルブ語 (ドイツ)",
+ "es-es-tradnl": "スペイン語 (スペイン、トラディショナル ソート)",
+ "es-aR": "スペイン語 (アルゼンチン)",
+ "es-bO": "スペイン語 (ボリビア)",
+ "es-cL": "スペイン語 (チリ)",
+ "es-cO": "スペイン語 (コロンビア)",
+ "es-cR": "スペイン語 (コスタリカ)",
+ "es-dO": "スペイン語 (ドミニカ共和国)",
+ "es-eC": "スペイン語 (エクアドル)",
+ "es-eS": "スペイン語 (スペイン)",
+ "es-gT": "スペイン語 (グアテマラ)",
+ "es-hN": "スペイン語 (ホンジュラス)",
+ "es-mX": "スペイン語 (メキシコ)",
+ "es-nI": "スペイン語 (ニカラグア)",
+ "es-pA": "スペイン語 (パナマ)",
+ "es-pE": "スペイン語 (ペルー)",
+ "es-pR": "スペイン語 (プエルトリコ)",
+ "es-pY": "スペイン語 (パラグアイ)",
+ "es-sV": "スペイン語 (エルサルバドル)",
+ "es-uS": "スペイン語 (米国)",
+ "es-uY": "スペイン語 (ウルグアイ)",
+ "es-vE": "スペイン語 (ベネズエラ)",
+ "sv-fI": "スウェーデン語 (フィンランド)",
+ "uz-cyrl": "ウズベク語 (キリル、ウズベキスタン)",
+ "uz-latn": "ウズベク語 (ラテン、ウズベキスタン)",
+ "af": "アフリカーンス語 (南アフリカ)",
+ "sq": "アルバニア語 (アルバニア)",
+ "am": "アムハラ語 (エチオピア)",
+ "hy": "アルメニア語 (アルメニア)",
+ "as": "アッサム語 (インド)",
+ "ba": "バシュキール語 (ロシア)",
+ "eu": "バスク語 (バスク語)",
+ "be": "ベラルーシ語 (ベラルーシ)",
+ "br": "ブルトン語 (フランス)",
+ "bg": "ブルガリア語 (ブルガリア)",
+ "ca": "カタルニア語 (カタルニア語)",
+ "co": "コルシカ語 (フランス)",
+ "cs": "チェコ語 (チェコ共和国)",
+ "da": "デンマーク語 (デンマーク)",
+ "prs": "ダリー語 (アフガニスタン)",
+ "dv": "ディヘビ語 (モルディブ)",
+ "et": "エストニア語 (エストニア)",
+ "fo": "フェロー語 (フェロー諸島)",
+ "fil": "フィリピノ語 (フィリピン)",
+ "fi": "フィンランド語 (フィンランド)",
+ "gl": "ガリシア語 (ガリシア)",
+ "ka": "ジョージア語 (ジョージア)",
+ "el": "ギリシャ語 (ギリシャ)",
+ "gu": "グジャラート語 (インド)",
+ "ha": "ハウサ語 (ラテン、ナイジェリア)",
+ "he": "ヘブライ語 (イスラエル)",
+ "hi": "ヒンディー語 (インド)",
+ "hu": "ハンガリー語 (ハンガリー)",
+ "is": "アイスランド語 (アイスランド)",
+ "ig": "イボ語 (ナイジェリア)",
+ "id": "インドネシア語 (インドネシア)",
+ "ga": "アイルランド語 (アイルランド)",
+ "xh": "コサ語 (南アフリカ)",
+ "zu": "ズールー語 (南アフリカ)",
+ "ja": "日本語 (日本)",
+ "kn": "カナラ語 (インド)",
+ "kk": "カザフ語 (カザフスタン)",
+ "km": "クメール語 (カンボジア)",
+ "rw": "キニアルワンダ語 (ルワンダ)",
+ "sw": "スワヒリ語 (ケニア)",
+ "kok": "コンカニ語 (インド)",
+ "ko": "韓国語 (韓国)",
+ "ky": "キルギス語 (キルギス)",
+ "lo": "ラオス語 (ラオス人民民主共和国)",
+ "lv": "ラトビア語 (ラトビア)",
+ "lt": "リトアニア語 (リトアニア)",
+ "lb": "ルクセンブルク語 (ルクセンブルク)",
+ "mk": "マケドニア語 (北マケドニア)",
+ "ml": "マラヤーラム語 (インド)",
+ "mt": "マルタ語 (マルタ)",
+ "mi": "マオリ語 (ニュージーランド)",
+ "mr": "マラーティー語 (インド)",
+ "moh": "モホーク語 (モホーク)",
+ "ne": "ネパール語 (ネパール)",
+ "oc": "オクシタン語 (フランス)",
+ "or": "オディア語 (インド)",
+ "ps": "パシュトゥー語 (アフガニスタン)",
+ "fa": "ペルシャ語",
+ "pl": "ポーランド語 (ポーランド)",
+ "pa": "パンジャーブ語 (インド)",
+ "ro": "ルーマニア語 (ルーマニア)",
+ "rm": "ロマンシュ語 (スイス)",
+ "ru": "ロシア語 (ロシア)",
+ "sa": "サンスクリット語 (インド)",
+ "st": "セソト サ レボア語 (南アフリカ)",
+ "tn": "セツワナ語 (南アフリカ)",
+ "si": "シンハラ語 (スリランカ)",
+ "sk": "スロバキア語 (スロバキア)",
+ "sl": "スロベニア語 (スロベニア)",
+ "sv": "スウェーデン語 (スウェーデン)",
+ "syr": "シリア語 (シリア)",
+ "tg": "タジク語 (キリル、タジキスタン)",
+ "ta": "タミール語 (インド)",
+ "tt": "タタール語 (ロシア)",
+ "te": "テルグ語 (インド)",
+ "th": "タイ語 (タイ)",
+ "bo": "チベット語 (中国)",
+ "tr": "トルコ語 (トルコ)",
+ "tk": "トルクメン語 (トルクメニスタン)",
+ "uk": "ウクライナ語 (ウクライナ)",
+ "ur": "ウルドゥー語 (パキスタン・イスラム共和国)",
+ "vi": "ベトナム語 (ベトナム)",
+ "cy": "ウェールズ語 (イギリス)",
+ "wo": "ウォロフ語 (セネガル)",
+ "ii": "イ語 (中国)",
+ "yo": "ヨルバ語 (ナイジェリア)"
+ },
+ "Category": {
+ "airPlay": "AirPlay",
+ "airPrint": "AirPrint",
+ "androidDefenderAtp": "Microsoft Defender for Endpoint",
+ "androidDeviceOwnerApplications": "アプリケーション",
+ "androidForWorkPassword": "デバイスのパスワード",
+ "appManagement": "アプリを許可またはブロックします",
+ "applicationGuard": "Microsoft Defender Application Guard",
+ "applicationRestrictions": "制限付きアプリ",
+ "applicationVisibility": "アプリの表示/非表示",
+ "applications": "アプリ ストア",
+ "applicationsAndGames": "アプリ ストア、ドキュメント表示、ゲーム",
+ "applicationsAndGoogle": "Google Play ストア",
+ "appsAndExperience": "アプリとエクスペリエンス",
+ "associatedDomains": "関連付けられたドメイン",
+ "autonomousSingleAppMode": "自律的シングル App モード",
+ "azureOperationalInsights": "Azure Operational Insights",
+ "bitLocker": "Windows 暗号化",
+ "browser": "ブラウザー",
+ "builtinApps": "組み込みアプリ",
+ "cellular": "携帯ネットワーク",
+ "cloudAndStorage": "クラウドとストレージ",
+ "cloudPrint": "クラウド プリンター",
+ "complianceEmailProfile": "電子メール",
+ "connectedDevices": "接続されているデバイス",
+ "connectivity": "携帯ネットワークと接続性",
+ "contentCaching": "コンテンツ キャッシング",
+ "controlPanelAndSettings": "コントロール パネルと設定",
+ "credentialGuard": "Microsoft Defender Credential Guard",
+ "customCompliance": "カスタム コンプライアンス",
+ "customCompliancePreview": "カスタム コンプライアンス (プレビュー)",
+ "customConfiguration": "カスタム構成プロファイル",
+ "customOMASettings": "OMA-URI のカスタム設定",
+ "customPreferences": "設定ファイル",
+ "defender": "Microsoft Defender ウイルス対策",
+ "defenderAntivirus": "Microsoft Defender ウイルス対策",
+ "defenderExploitGuard": "Microsoft Defender Exploit Guard",
+ "defenderFirewall": "Microsoft Defender ファイアウォール",
+ "defenderLocalSecurityOptions": "ローカル デバイスのセキュリティ オプション",
+ "defenderSecurityCenter": "Microsoft Defender セキュリティ センター",
+ "deliveryOptimization": "配信の最適化",
+ "derivedCredentialAuthenticationConfiguration": "派生資格情報",
+ "deviceExperience": "デバイス エクスペリエンス",
+ "deviceFirmwareConfigurationInterface": "デバイスのファームウェア構成インターフェイス",
+ "deviceGuard": "Microsoft Defender アプリケーション制御",
+ "deviceHealth": "デバイスの正常性",
+ "devicePassword": "デバイスのパスワード",
+ "deviceProperties": "デバイスのプロパティ",
+ "deviceRestrictions": "全般",
+ "deviceSecurity": "システム セキュリティ",
+ "display": "表示",
+ "domainJoin": "ドメインへの参加",
+ "domains": "ドメイン",
+ "edgeBrowser": "Microsoft Edge 従来版 (バージョン 45 以前)",
+ "edgeBrowserSmartScreen": "Microsoft Defender SmartScreen",
+ "edgeKiosk": "Microsoft Edge キオスク モード",
+ "editionUpgrade": "エディションのアップグレード",
+ "education": "教育",
+ "educationDeviceCerts": "デバイスの証明書",
+ "educationStudentCerts": "学生の証明書",
+ "educationTakeATest": "テストの実行",
+ "educationTeacherCerts": "教師の証明書",
+ "emailProfile": "電子メール",
+ "enterpriseDataProtection": "Windows Information Protection",
+ "expeditedCheckin": "モバイル デバイス管理の構成",
+ "extensibleSingleSignOn": "シングル サインオン アプリ拡張機能",
+ "filevault": "FileVault",
+ "firewall": "ファイアウォール",
+ "games": "ゲーム",
+ "gatekeeper": "ゲートキーパー",
+ "healthMonitoring": "正常性の監視",
+ "homeScreenLayout": "ホーム画面のレイアウト",
+ "iOSWallpaper": "壁紙",
+ "importedPFX": "PKCS のインポートされた証明書",
+ "iosDefenderAtp": "Microsoft Defender for Endpoint",
+ "iosKiosk": "キオスク",
+ "kernelExtensions": "カーネル拡張機能",
+ "keyboardAndDictionary": "キーボードと辞書",
+ "kiosk": "キオスク",
+ "kioskAndroidEnterprise": "専用端末",
+ "kioskConfiguration": "キオスク",
+ "kioskConfigurationV2": "キオスク",
+ "kioskWebBrowser": "キオスク Web ブラウザー",
+ "lockScreenMessage": "ロック画面のメッセージ",
+ "lockedScreenExperience": "ロック画面の動作",
+ "logging": "レポートとテレメトリ",
+ "loginItems": "ログイン項目",
+ "loginWindow": "ログイン ウィンドウ",
+ "macDefenderAtp": "Microsoft Defender for Endpoint",
+ "maintenance": "メンテナンス",
+ "malware": "マルウェア",
+ "messaging": "メッセージング",
+ "networkBoundary": "ネットワーク境界",
+ "networkProxy": "ネットワーク プロキシ",
+ "notifications": "アプリの通知",
+ "pKCS": "PKCS 証明書",
+ "password": "パスワード",
+ "personalProfile": "個人プロファイル",
+ "personalization": "個人用設定",
+ "policyOverride": "グループ ポリシーのオーバーライド",
+ "powerSettings": "電源設定",
+ "printer": "プリンター",
+ "privacy": "プライバシー",
+ "privacyPerApp": "アプリごとのプライバシー例外",
+ "privacyPreferences": "プライバシーの設定",
+ "projection": "プロジェクション",
+ "sCCMCompliance": "Configuration Manager のコンプライアンス",
+ "sCEP": "SCEP 証明書",
+ "sCEPProperties": "SCEP 証明書",
+ "sMode": "モードの切り替え (Windows Insider のみ)",
+ "safari": "Safari",
+ "search": "検索",
+ "session": "セッション",
+ "sharedDevice": "Shared iPad",
+ "sharedPCAccountManager": "共有のマルチユーザーのデバイス",
+ "singleSignOn": "シングル サインオン",
+ "smartScreen": "Microsoft Defender SmartScreen",
+ "softwareUpdates": "設定",
+ "start": "開始",
+ "systemExtensions": "システムの拡張機能",
+ "systemSecurity": "システム セキュリティ",
+ "trustedCert": "信頼済み証明書",
+ "updates": "更新",
+ "userRights": "ユーザー権限",
+ "usersAndAccounts": "ユーザーとアカウント",
+ "vPN": "基本 VPN",
+ "vPNApps": "自動 VPN",
+ "vPNAppsAndTrafficRules": "アプリとトラフィックの規則",
+ "vPNConditionalAccess": "条件付きアクセス",
+ "vPNConnectivity": "接続",
+ "vPNDNSTriggers": "DNS の設定",
+ "vPNIKEv2": "IKEv2 設定",
+ "vPNProxy": "プロキシ",
+ "vPNSplitTunneling": "分割トンネリング",
+ "vPNTrustedNetwork": "信頼されたネットワーク検出",
+ "webContentFilter": "Web コンテンツ フィルター",
+ "wiFi": "Wi-Fi",
+ "win10Wifi": "Wi-Fi",
+ "windowsAtp": "Microsoft Defender for Endpoint",
+ "windowsDefenderATP": "Microsoft Defender for Endpoint",
+ "windowsHelloForBusiness": "Windows Hello for Business",
+ "windowsSpotlight": "Windows スポットライト",
+ "wiredNetwork": "ワイヤード (有線) ネットワーク",
+ "wireless": "ワイヤレス",
+ "wirelessProjection": "ワイヤレス投影",
+ "workProfile": "仕事用プロファイルの設定",
+ "workProfilePassword": "仕事用プロファイルのパスワード",
+ "xboxServices": "Xbox サービス",
+ "zebraMx": "MX プロファイル (Zebra のみ)",
+ "complianceActionsLabel": "コンプライアンス非対応に対するアクション"
+ },
+ "WindowsFeatureUpdateProfile": {
+ "Details": {
+ "Description": {
+ "label": "説明"
+ },
+ "FeatureDeploymentSettings": {
+ "header": "機能展開設定"
+ },
+ "FeatureUpdateVersion": {
+ "infoballoon": "この機能でデバイスをダウングレードすることはできません。",
+ "label": "展開する機能更新プログラム"
+ },
+ "GradualRolloutEndDate": {
+ "label": "最後のグループの状態"
+ },
+ "GradualRolloutInterval": {
+ "label": "グループ間の日数"
+ },
+ "GradualRolloutStartDate": {
+ "label": "最初のグループの状態"
+ },
+ "Name": {
+ "label": "名前"
+ },
+ "RolloutOptions": {
+ "label": "ロールアウト オプション"
+ },
+ "RolloutSettings": {
+ "header": "Windows Update でいつ更新プログラムを利用したいですか?"
+ },
+ "ScopeSettings": {
+ "header": "このポリシーのスコープ タグを構成する"
+ },
+ "StartDateOnlyStartDate": {
+ "label": "最初の利用可能日"
+ },
+ "bladeTitle": "機能の更新プログラムの展開",
+ "deploymentSettingsTitle": "デプロイの設定",
+ "loadError": "読み込みに失敗しました。",
+ "windows11EULA": "この機能更新プログラムを選択して展開すると、(1) 該当する Windows ライセンスがボリューム ライセンスで購入されたか、(2) 組織をバインドする権限を持ち、関連する Microsoft ソフトウェア ライセンス条項 ({0}) を受け入れているデバイスにこのオペレーティング システムを適用することに同意したものと見なされます。"
+ },
+ "Notifications": {
+ "deploymentSaved": "\"{0}\" が保存されました。",
+ "newFeatureUpdateDeploymentCreated": "新しい機能更新プログラムの展開が作成されました。"
+ },
+ "TabName": {
+ "deploymentSettings": "デプロイの設定",
+ "groupAssignmentSettings": "割り当て",
+ "scopeSettings": "スコープ タグ"
+ }
+ },
+ "WIPPinRequirements": {
+ "WipLowercaseCharacterPinRequirements": {
+ "allow": "PIN で小文字の使用を許可する",
+ "notAllow": "PIN で小文字の使用を許可しない",
+ "requireAtLeastOne": "PIN で小文字を 1 文字以上使うことを要求する"
+ },
+ "WipSpecialCharacterPinRequirements": {
+ "allow": "PIN で特殊文字の使用を許可する",
+ "notAllow": "PIN で特殊文字の使用を許可しない",
+ "requireAtLeastOne": "PIN で特殊文字を 1 文字以上使うことを要求する"
+ },
+ "WipUppercaseCharacterPinRequirements": {
+ "allow": "PIN で大文字の使用を許可する",
+ "notAllow": "PIN で大文字の使用を許可しない",
+ "requireAtLeastOne": "PIN で大文字を 1 文字以上使うことを要求する"
+ }
+ },
+ "OutlookAppConfigSettings": {
+ "AllowUserToChangeSetting": {
+ "title": "ユーザーに設定の変更を許可する",
+ "tooltip": "ユーザーに設定の変更を許可するかどうかを指定します。"
+ },
+ "AllowWorkAccounts": {
+ "title": "職場または学校アカウントのみ許可する",
+ "tooltip": "この設定を有効にすると、ユーザーは Outlook での個人用のメールおよびストレージ アカウントの追加ができません。ユーザーが Outlook に追加された個人用アカウントを持っている場合は、個人用アカウントを削除するように求められます。ユーザーが個人用アカウントを削除しない場合は、職場または学校アカウントを追加できません。"
+ },
+ "BlockExternalImages": {
+ "title": "外部画像をブロックする",
+ "tooltip": "外部画像のブロックを有効にすると、アプリはメッセージの本文に埋め込まれているインターネット上でホストされている画像をダウンロードしません。設定で構成しない場合、既定のアプリ設定はオフになっています。"
+ },
+ "ConfigureEmail": {
+ "title": "メール アカウント設定を構成する"
+ },
+ "DefaultAppSignatureSetting": {
+ "Tooltip": {
+ "android": "既定のアプリ署名では、アプリでメッセージを作成中に、既定の署名に「Outlook for Android の入手」を使用するかどうかを示します。設定がオフに構成されている場合、既定の署名は使用されませんが、ユーザー独自の署名を追加することができます。\r\n\r\n[未構成] に設定すると、既定のアプリ設定がオンになります。",
+ "iOS": "既定のアプリ署名では、アプリでメッセージを作成中に、既定の署名に「Outlook for iOSの入手」を使用するかどうかを示します。設定がオフに構成されている場合、既定の署名は使用されませんが、ユーザー独自の署名を追加することができます。\r\n\r\n[未構成] に設定すると、既定のアプリ設定がオンになります。"
+ },
+ "title": "既定のアプリ署名"
+ },
+ "OfficeFeedReplies": {
+ "title": "Discover フィード",
+ "tooltip": "Discover フィードは、最も頻繁にアクセスされている Office ファイルを明らかにします。既定では、Delve がユーザーに対して有効になっているときに、このフィードが有効になります。未構成として設定した場合、既定のアプリ設定はオンに設定されます。"
+ },
+ "OrganizeMailByThread": {
+ "title": "スレッド別にメールを整理",
+ "tooltip": "Outlook の既定の動作では、電子メールの会話がスレッド形式の会話ビューにまとめられます。この設定を無効にすると、Outlook で各メールが個別に表示され、スレッドごとにグループ化されません。"
+ },
+ "PlayMyEmails": {
+ "title": "メールの再生",
+ "tooltip": "アプリでは、メールの再生機能は既定では有効になっていませんが、受信トレイ内のバナーを介して対象ユーザーに宣伝されます。オフに設定すると、この機能はアプリ内の対象ユーザーに宣伝されなくなります。ユーザーは、この機能がオフに設定されている場合でも、アプリ内からメールの再生を手動で有効にすることを選択できます。未構成として設定した場合、既定のアプリ設定はオンになり、機能が対象ユーザーに宣伝されます。"
+ },
+ "SuggestedReplies": {
+ "title": "返信の提案",
+ "tooltip": "Outlook でメッセージを開くと、メッセージの下に返信が提案される場合があります。提案された返信を選択し、編集してから送信できます。"
+ },
+ "SyncCalendars": {
+ "title": "予定表の同期",
+ "tooltip": "ユーザーが Outlook カレンダーをネイティブのカレンダー アプリとデータベースと同期できるようにするかどうかを構成します。"
+ },
+ "TextPredictions": {
+ "title": "予測入力",
+ "tooltip": "Outlook では、メッセージを作成するときに、単語やフレーズを候補として表示できます。Outlook で候補が提示されたら、スワイプして受け入れます。未構成として設定されている場合、既定のアプリ設定は [オン] に設定されます。"
+ },
+ "ThemesEnabled": {
+ "title": "テーマの有効化",
+ "tooltip": "ユーザーがカスタム ビジュアル テーマを使用できるかどうかを指定します。"
+ }
+ },
+ "AssignmentFilters": {
+ "assignmentFilterColumnHeader": "フィルター",
+ "noFilters": "なし"
+ },
+ "Platform": {
+ "all": "すべて",
+ "android": "Android デバイス管理者",
+ "androidAOSP": "Android (AOSP)",
+ "androidEnterprise": "Android Enterprise",
+ "androidForWork": "Android Enterprise",
+ "androidWorkProfile": "Android Enterprise",
+ "common": "共通",
+ "iOS": "iOS/iPadOS",
+ "iosAndAndroidPlatformLabel": "iOS および Android",
+ "iosCommaAndroidPlatformLabel": "iOS、Android",
+ "linux": "Linux",
+ "macOS": "macOS",
+ "unknown": "不明",
+ "unsupported": "サポートなし",
+ "windows": "Windows",
+ "windows10": "Windows 10 以降",
+ "windows10CM": "Windows 10 以降 (ConfigMgr)",
+ "windows10Holo": "Windows 10 Holographic",
+ "windows10Mobile": "Windows 10 Mobile",
+ "windows10Team": "Windows 10 Team",
+ "windows10X": "Windows 10X",
+ "windows8": "Windows 8.1 以降",
+ "windows8And10": "Windows 8 および 10",
+ "windowsPhone": "Windows Phone 8.1",
+ "windows10AndLater": "Windows 10 以降",
+ "windows10AndWindowsServer": "Windows 10、Windows 11、および Windows Server (ConfigMgr)",
+ "windows10andLaterCM": "Windows 10 以降 (ConfigMgr)",
+ "holoLens": "HoloLens",
+ "surfaceHub2": "Surface Hub 2",
+ "surfaceHub2S": "Surface Hub 2S",
+ "windowsPC": "Windows PC"
+ },
+ "AppInformationTab": {
+ "Error": {
+ "multipleChildApps": "アップロードされたパッケージに 1 つのアプリが含まれている場合にのみ、macOS LOB アプリを管理対象としてインストールできます。"
+ },
+ "Info": {
+ "AppStoreUrl": {
+ "android": "Google Play ストアのアプリ一覧へのリンクを入力してください。例:",
+ "androidLink": "https://play.google.com/store/apps/details?id=com.microsoft.office.outlook",
+ "windows": "Microsoft Store のアプリ一覧へのリンクを入力してください。例:",
+ "windowsLink": "https://www.microsoft.com/en-us/p/microsoft-to-do-lists-tasks-reminders/9nblggh5r558"
+ },
+ "appPackageFile": "デバイスにサイドロードできる形式のアプリを含むファイル。有効なパッケージ タイプには次を含みます: Android (.apk)、iOS (.ipa)、macOS (.pkg、.intunemac)、Windows (.msi、.appx、.appxbundle、.msix、そして .msixbundle)。",
+ "applicableDeviceType": "このアプリをインストールできるデバイスの種類を選択します。",
+ "category": "ユーザーがポータル サイトで簡単に並べ替えや検索を行えるように、アプリを分類します。複数のカテゴリを選択することができます。",
+ "categoryLink": "https://docs.microsoft.com/en-us/intune/apps/apps-add#create-and-edit-categories-for-apps",
+ "description": "デバイスのユーザーがアプリの内容やアプリで実行可能な操作について理解できるようにします。この説明はポータル サイトでユーザーに表示されます。",
+ "developer": "アプリを開発した会社または個人の名前。この情報は、管理センターにサインインしているユーザーに表示されます。",
+ "displayVersion": "アプリのバージョン。この情報は、ポータル サイトでユーザーに表示されます。",
+ "infoUrl": "アプリに関する詳細情報が記載されている Web サイトまたはドキュメントに、ユーザーをリンクします。情報の URL は、ポータル サイトでユーザーに表示されます。",
+ "isFeatured": "おすすめアプリをポータル サイトに目立つように配置して、ユーザーがすぐにアクセスできるようにします。",
+ "learnMore": "詳細",
+ "logo": "アプリに関連付けられているロゴをアップロードします。このロゴはポータル サイト全体でアプリの横に表示されます。",
+ "macOSDmgAppPackageFile": "デバイスにサイドロード可能な形式でアプリを含むファイル。有効なパッケージの種類: .dmg。",
+ "minOperatingSystem": "アプリをインストールできる最も古いオペレーティング システムのバージョンを選択します。それより前のオペレーティング システムのデバイスにアプリを割り当てると、そのアプリはインストールされません。",
+ "name": "アプリの名前を追加します。この名前は、Intune アプリの一覧およびポータル サイトでユーザーに表示されます。",
+ "notes": "アプリに関する追加のメモを追加します。メモは、管理センターにサインインしているユーザーに表示されます。",
+ "owner": "ライセンスを管理しているか、このアプリの連絡先となっている組織内のユーザーの名前。この名前は、管理センターにサインインしているユーザーに表示されます。",
+ "packageName": "デバイスの製造元に連絡して、アプリのパッケージ名を取得してください。パッケージ名の例: com.example.app",
+ "privacyUrl": "アプリのプライバシーの設定と使用条件に関する詳細情報を希望するユーザーにリンクを提供します。プライバシー URL は、ポータルサイトでユーザーに表示されます。",
+ "publisher": "アプリを配布する開発者または会社の名前。この情報は、ポータル サイトでユーザーに表示されます。",
+ "selectApp": "Intune でデプロイする iOS ストア アプリをアプリ ストアで検索します。",
+ "useManagedBrowser": "必要に応じて、ユーザーが Web アプリを開くときに、そのアプリを Microsoft Edge または Intune Managed Browser などの Intune で保護されたブラウザーで開きます。この設定は iOS と Android の両方のデバイスに適用されます。",
+ "useManagedBrowserLink": "https://docs.microsoft.com/en-us/intune/apps/app-configuration-managed-browser",
+ "win32AppPackageFile": "デバイスにサイドロードできる形式でお客様のアプリを含むファイルです。有効なパッケージの種類: .intunewin。"
+ },
+ "descriptionPreview": "プレビュー",
+ "descriptionRequired": "説明が必要です。",
+ "editDescription": "説明を編集します",
+ "macOSMinOperatingSystemAdditionalInfo": ".pkg ファイルをアップロードするために必要な最小オペレーティング システムは macOS 10.14 です。.intunemac ファイルをアップロードして、以前の最小オペレーティング システムを選択します。",
+ "name": "アプリ情報",
+ "nameForOfficeSuitApp": "アプリ スイートの情報"
+ },
+ "Tooltips": {
+ "PolicySettings": {
+ "TouchId1": {
+ "android": "Android では、PIN の代わりに指紋識別の使用を許可できます。ユーザーは、職場アカウントを使用してこのアプリにアクセスするときに指紋を提供するように求められます。",
+ "iOS": "iOS/iPadOS デバイスでは、PIN ではなく指紋確認の使用を許可できます。ユーザーは、職場アカウントを使用してこのアプリにアクセスするときに指紋の入力を求められます。",
+ "mac": "Mac デバイスでは、PIN ではなく指紋確認の使用を許可できます。ユーザーは、職場アカウントを使用してこのアプリにアクセスするときに指紋の入力を求められます。"
+ },
+ "appSharingFromLevel1": "次のオプションからひとつを選択し、このアプリがデータを受信するアプリを指定してください。",
+ "appSharingFromLevel2": "{0}: 他のポリシー マネージド アプリからのみ、組織ドキュメントやアカウントのデータを受信できます",
+ "appSharingFromLevel3": "{0}: どのアプリからでも組織ドキュメントやアカウントのデータを受信できます",
+ "appSharingFromLevel4": "{0}: どのアプリからも組織ドキュメントやアカウントのデータを受信できません",
+ "appSharingFromLevel5": "{0}: 任意のアプリからのデータ転送を許可して、ユーザー ID がないすべての受信データを組織データとして処理します。",
+ "appSharingToLevel1": "次のオプションからひとつを選択し、このアプリがデータを送信するアプリを指定してください。",
+ "appSharingToLevel2": "{0}: 他のポリシー マネージド アプリにだけ、組織データを送信できます",
+ "appSharingToLevel3": "{0}: すべてのアプリに組織データを送信できます",
+ "appSharingToLevel4": "{0}: どのアプリにも組織データを送信できません",
+ "appSharingToLevel5": "{0}: 他のポリシー マネージド アプリのみに転送を許可し、登録済みデバイスの他の MDM で管理されているアプリのみにファイルの転送を許可します",
+ "appSharingToLevel6": "{0}: 他のポリシー マネージド アプリのみに転送を許可し、OS の [Open In/Share] ダイアログをフィルター処理して、ポリシー マネージド アプリのみを表示します",
+ "conditionalEncryption1": "登録済みデバイスでデバイス暗号化が検出される場合、内部アプリ ストレージのアプリ暗号化を無効にするため {0} を選択します。",
+ "conditionalEncryption2": "メモ: Intune が検出できるのは、Intune MDM へのデバイス登録のみです。外部アプリ ストレージは引き続き暗号化されて、アンマネージド アプリケーションはデータにアクセスできないようになります。",
+ "contactSyncMac": "無効にすると、アプリで連絡先をネイティブのアドレス帳に保存することはできません。",
+ "contactsSync": "ポリシー マネージド アプリがデバイスのネイティブ アプリ (連絡先、予定表、ウィジェットなど) にデータを保存しないようにしたり、ポリシー マネージド アプリ内でアドインが使用されないようにするには、[ブロック] を選択します。[許可] を選択すると、ポリシー マネージド アプリはネイティブ アプリにデータを保存したり、ポリシー マネージド アプリでアドインがサポートされ、有効になっていれば、それらの機能を使用したりすることができます。
アプリによって、アプリ構成ポリシーに追加の構成機能が提供される場合もあります。詳細については、アプリのドキュメントを参照してください。",
+ "encryptionAndroid1": "Intune モバイル アプリケーション管理ポリシーに関連するアプリについては、暗号化は Microsoft によって提供されます。データはファイルの I/O 操作の間に、モバイル アプリケーション管理ポリシーの設定に従って同調的に暗号化されます。Android で管理されるアプリは、CBC モードで、プラットフォーム暗号化ライブラリを使用して AES-128 暗号化を使用します。暗号化の方法は FIPS 140-2 に準拠していません。SHA-256 暗号化は SigAlg パラメーターを使用した明示的な指示によりサポートされています。またデバイス 4.2 以上でのみ動作します。デバイス ストレージ上のコンテンツは常に暗号化されます。",
+ "encryptionAndroid2": "デバイスへのアクセスにPINが設定されない場合、アプリは起動されず、エンドユーザーには「会社により、このアプリケーションにアクセスするには、まずデバイスのPINを有効にする必要があります」というメッセージが表示されます。",
+ "encryptionMac1": "Intune モバイル アプリケーション管理ポリシーに関連するアプリについては、暗号化は Microsoft によって提供されます。データはファイルの I/O 操作の間に、モバイル アプリケーション管理ポリシーの設定に従って同調的に暗号化されます。Mac で管理されるアプリは、CBC モードで、プラットフォーム暗号化ライブラリを使用して AES-128 暗号化を使用します。暗号化の方法は FIPS 140-2 に準拠していません。SHA-256 暗号化は SigAlg パラメーターを使用した明示的な指示によりサポートされています。またデバイス 4.2 以上でのみ動作します。デバイス ストレージ上のコンテンツは常に暗号化されます。",
+ "faceId1": "必要に応じて、PIN の代わりに顔識別の使用を許可することができます。ユーザーは、職場アカウントでこのアプリにアクセスする際、顔識別を求められます。",
+ "faceId2": "PIN の代わりに顔識別でアプリにアクセスすることを許可するには、[はい] を選択します。",
+ "managementLevelsAndroid1": "このオプションを使用して、このポリシーを Android デバイス管理者用デバイス、Android Enterprise デバイス、アンマネージド デバイスのどれに適用するかを指定します。",
+ "managementLevelsAndroid2": "{0}: アンマネージド デバイスは、Intune MDM 管理が検出されないデバイスです。サードパーティの MDM ベンダーが含まれます。",
+ "managementLevelsAndroid3": "{0}: Android デバイス管理 API を使用した Intune の管理対象デバイスです。",
+ "managementLevelsAndroid4": "{0}: Android Enterprise 仕事用プロファイルまたは Android Enterprise フル デバイス管理を使用した Intune の管理対象デバイスです。",
+ "managementLevelsIos1": "このオプションを使用して、このポリシーを MDM マネージド デバイスとアンマネージド デバイスのどちらに適用するかを指定します。",
+ "managementLevelsIos2": "{0}: アンマネージド デバイスは、Intune MDM 管理が検出されないデバイスです。サードパーティの MDM ベンダーが含まれます。",
+ "managementLevelsIos3": "{0}: マネージド デバイスは Intune MDM で管理されます。",
+ "minAppVersion": "ユーザーがアプリに安全にアクセスするために必須の最小のアプリ バージョン番号を定義します。",
+ "minAppVersionWarning": "ユーザーがアプリに安全にアクセスするために推奨される最小のアプリ バージョン番号を定義します。",
+ "minOsVersion": "ユーザーがアプリに安全にアクセスするために必須の最小の OS バージョン番号を定義します。",
+ "minOsVersionWarning": "ユーザーがアプリに安全にアクセスするために推奨される最小の OS バージョン番号を定義します。",
+ "minPatchVersion": "ユーザーがアプリに安全にアクセスするために使用できる最も古い必須の Android セキュリティ パッチ レベルを定義します。",
+ "minPatchVersionWarning": "ユーザーがアプリに安全にアクセスするために使用できる最も古い推奨の Android セキュリティ パッチ レベルを定義します。",
+ "minSdkVersion": "ユーザーがアプリに安全にアクセスするために必須の最小の Intune アプリケーション保護ポリシー SDK バージョンを定義します。",
+ "requireAppPinDefault": "登録されたデバイスでデバイス ロックが検出されたときにアプリ PIN を無効にするには、[はい] を選びます。
",
+ "targetAllApps1": "このオプションを使用して、任意の管理状態のデバイスにあるアプリをポリシー対象とします。",
+ "targetAllApps2": "ポリシー競合の解決時に、ユーザーが特定の管理状態を対象とするポリシーを設定している場合にはこの設定は置き換えられます。",
+ "touchId2": "アプリへのアクセスに PIN ではなく指紋認証を要求するには {0} を選択します。"
+ },
+ "Tap": {
+ "pinResetAfterNumberOfDays": "ユーザーが PIN をリセットすることが必要になるまでの日数を指定します。",
+ "previousPinBlockCount": "この設定では、Intune で維持される以前の PIN の数を指定します。新しい PIN は、Intune が管理しているものとは別にする必要があります。"
+ },
+ "WipPolicySettings": {
+ "25": "",
+ "allowWindowsSearch": "暗号化されたデータを Windows Search が引き続き検索することを許可します。",
+ "authoritativeIpRanges": "Windows による IP 範囲の自動検出をオーバーライドする必要がある場合に、この設定を有効にします。",
+ "authoritativeProxyServers": "Windows によるプロキシ サーバーの自動検出をオーバーライドする必要がある場合に、この設定を有効にします。",
+ "checkInput": "入力が正しいかどうか確認します",
+ "dataRecoveryCert": "回復証明書は、暗号化キーの紛失または破損の際に、暗号化されたファイルを回復するために使用できる、暗号化ファイル システム (EFS) の特別な証明書です。回復証明書を作成し、ここに指定する必要があります。詳細はこちらをご覧ください",
+ "enterpriseCloudResources": "企業リソースとして扱い、Windows Information Protection ポリシーで保護するクラウド リソースを指定します。複数のリソースを指定するには、各リソースを '|' 文字で区切ります。
会社で構成したプロキシがある場合は、そのプロキシを指定できます。指定したクラウド リソースへのトラフィックは、そのプロキシを介してルーティングされます。
URL[,Proxy]|URL[,Proxy]
プロキシを指定しない場合: contoso.sharepoint.com|contoso.visualstudio.com
プロキシを指定する場合: contoso.sharepoint.com,proxy.contoso.com|contoso.visualstudio.com,proxy.contoso.com
",
+ "enterpriseIPv4Ranges": "企業ネットワークを構成する IPv4 範囲を指定します。指定した IPv4 範囲は、企業ネットワークの境界を定義するために、指定したエンタープライズ ネットワーク ドメイン名と組み合わせて使用されます
Windows Information Protection を有効にする場合、この設定は必須です。
複数の範囲を指定するには、各範囲をコンマで区切ります。
例: 3.4.0.1-3.4.255.255,192.168.1.1-192.168.255.255
",
+ "enterpriseIPv6Ranges": "企業ネットワークを構成する IPv6 範囲を指定します。指定した IPv6 範囲は、企業ネットワークの境界を定義するために、指定したエンタープライズ ネットワーク ドメイン名と組み合わせて使用されます。
複数の範囲を指定するには、各範囲をコンマで区切ります。
例: 2001:4898:dc05::-2001:4898:dc05:ffff:ffff:ffff:ffff:ffff,2a01:110::-2a01:110:7fff:ffff:ffff:ffff:ffff:ffff
",
+ "enterpriseInternalProxyServers": "会社で構成したプロキシがある場合は、そのプロキシを指定できます。エンタープライズ クラウド リソースの設定で指定したクラウド リソースへのトラフィックは、そのプロキシを介してルーティングされます。
複数の値を指定するには、各値をセミコロンで区切ります。
例: contoso.internalproxy1.com;contoso.internalproxy2.com
",
+ "enterpriseNetworkDomainNames": "企業ネットワークを構成する DNS 名を指定します。指定した DNS 名は、企業ネットワークの境界を定義するために、指定した IP 範囲と組み合わせて使用されます。複数の値を指定するには、各値をコンマで区切ります。
Windows Information Protection を有効にする場合、この設定は必須です。
例: corp.contoso.com,region.contoso.com
",
+ "enterpriseProtectedDomainNames": "企業ネットワークを構成する DNS 名を指定します。指定した DNS 名は、企業ネットワーク境界を定義するために、指定した IP 範囲と組み合わせて使用されます。複数の値を指定するには、各値を '|' で区切ります。
Windows Information Protection を有効にする場合、この設定は必須です。
例: corp.contoso.com|region.contoso.com
",
+ "enterpriseProxyServers": "外部接続するプロキシ サーバーが企業ネットワーク内にある場合は、ここでそのプロキシ サーバーを指定します。プロキシ サーバーのアドレスを指定する際に、トラフィックを許可し、Windows Information Protection で保護するポートも指定する必要があります。
注: この一覧には、エンタープライズ内部プロキシ サーバーの一覧に含まれているサーバーを含めないでください。複数の値を指定するには、各値をセミコロンで区切ります。
例: proxy.contoso.com:80;proxy2.contoso.com:80
",
+ "maxInactivityTime1": "デバイスが PIN またはパスワードでロックされるまでの最大のアイドル時間 (分) を指定します。ユーザーは、設定アプリで指定した最大値より小さい既存のタイムアウト値を選ぶことができます。ただし、Lumia 950 と 950XL の場合、このポリシーで設定した値とは無関係に、最大タイムアウト値は 5 分です。",
+ "maxInactivityTime2": "0 (既定) - タイムアウトは定義されていません。既定値の '0' は、'タイムアウト値は定義されていない' という意味に解釈されます。",
+ "maxPasswordAttempts1": "このポリシーは、モバイル デバイスとデスクトップとで動作が異なります。",
+ "maxPasswordAttempts2": "モバイル デバイスでは、このポリシーによって設定された値にユーザーが達した時点で、デバイスがワイプされます。",
+ "maxPasswordAttempts3": "デスクトップでは、このポリシーに設定された値にユーザーが達したとき、デバイスはワイプされません。その代わりに、デスクトップは BitLocker 回復モードに置かれます。その場合、データにアクセスすることはできなくなりますが、回復は可能です。BitLocker が有効にされていない場合は、このポリシーを強制することができません。",
+ "maxPasswordAttempts4": "失敗回数が制限値に達する前に、ユーザーはロック画面に送られ、これ以上失敗するとコンピューターがロックされるという警告が出ます。制限値に達すると、デバイスは自動的に再起動し、BitLocker 回復ページが表示されます。このページでは、ユーザーに BitLocker 回復キーが要求されます。",
+ "maxPasswordAttempts5": "0 (既定) - 間違った PIN またはパスワードを入力した後に、デバイスがワイプされることはありません。",
+ "maxPasswordAttempts6": "すべてのポリシー値が 0 の場合、最も安全な値は 0 です。それ以外の場合は、最小ポリシーの値が最も安全な値です。",
+ "mdmDiscoveryUrl": "MDM に登録したユーザーが使うことになる MDM 登録エンドポイントの URL を指定します。既定では、これは Intune に指定されます。",
+ "minimumPinLength1": "PIN に必要な最小文字数を設定する整数値。既定値は 4 です。このポリシー設定に構成できる最小数は 4 です。構成できる最大数は、PIN の最大長ポリシー設定で構成された数、または 127 のうち、どちらか小さいほうです。",
+ "minimumPinLength2": "このポリシー設定を構成した場合は、PIN の長さはこの数以上にする必要があります。このポリシー設定を無効にした場合、または構成しなかった場合は、PIN の長さは 4 以上にする必要があります。",
+ "name": "このネットワーク境界の名前",
+ "neutralResources": "会社に認証リダイレクト エンドポイントがある場合は、ここでそれらのエンドポイントを指定します。ここで指定した場所は、リダイレクトの前に、接続のコンテキストに応じて、個人用または会社用と見なされます。
複数の値を指定する場合は、各値をコンマで区切ります。
例: sts.contoso.com,sts.contoso2.com
",
+ "passportForWork1": "Windows にサインインする方法として Windows Hello for Business を設定する値。",
+ "passportForWork2": "既定値は true です。このポリシーを false に設定した場合、ユーザーは Windows Hello for Business のプロビジョニングを実行できません。ただし、Azure Active Directory に参加している携帯電話は例外で、プロビジョニングが必要です。",
+ "pinExpiration": "このポリシー設定に構成できる最大数は 730 です。このポリシー設定に構成できる最小数は 0 です。このポリシーを 0 に設定した場合、ユーザーの PIN に有効期限はなくなります。",
+ "pinHistory1": "このポリシー設定に構成できる最大数は 50 です。このポリシー設定に構成できる最小数は 0 です。このポリシーを 0 に設定した場合、以前の PIN を格納する必要はありません。",
+ "pinHistory2": "ユーザーの現在の PIN は、ユーザー アカウントに関連付けられた PIN のセットに含まれます。PIN をリセットすると、PIN の履歴は消去されます。",
+ "protectUnderLock": "デバイスがロック状態の間、アプリのコンテンツを保護します。",
+ "protectionModeBlock": "ブロック: 保護されたアプリからエンタープライズ データが離れることをブロックします。
",
+ "protectionModeOff": "オフ: ユーザーは保護されたアプリのデータを自由に再配置できます。アクションはログに記録されません。
",
+ "protectionModeOverride": "上書きの許可:ユーザーが、保護されたアプリから保護されていないアプリにデータを再配置しようとすると、プロンプトが表示されます。このプロンプトをオーバーライドすることを選択すると、そのアクションはログに記録されます。
",
+ "protectionModeSilent": "サイレント: ユーザーは保護されたアプリのデータを自由に再配置できます。それらのアクションはログに記録されます。
",
+ "required": "必要な領域",
+ "revokeOnMdmHandoff": "Windows 10 バージョン 1703 に追加されました。このポリシーは、デバイスが MAM から MDM へアップグレードされたときに WIP キーを取り消すかどうかを制御します。[オフ] に設定された場合、キーは取り消されず、アップグレード後もユーザーは引き続き、保護されたファイルにアクセスできます。MAM サービスと同じ WIP EnterpriseID を使って MDM サービスが構成されている場合には、これが推奨されます。",
+ "revokeOnUnenroll": "デバイスがこのポリシーから登録解除されると、暗号化キーが失効します。",
+ "rmsTemplateForEdp": "RMS 暗号化に TemplateID GUID を使います。Azure RMS テンプレートを使うと、IT 管理者は、RMS で保護されたファイルにアクセスできるユーザーと、ユーザーがアクセスできる時間の長さについて詳細を構成することができます。",
+ "showWipIcon": "ユーザーが会社のコンテキストで操作している場合に、アイコンのオーバーレイ表示によってそのことがユーザーに通知されます。",
+ "useRmsForWip": "WIP に対して Azure RMS 暗号化を許可するかどうかを指定します。"
+ },
+ "requireAppPin": "登録されたデバイスでデバイス ロックが検出されたときにアプリ PIN を無効にするには、[はい] を選んでください。
注: サード パーティの EMM ソリューションが iOS/iPadOS で使用されている場合、Intune ではデバイスの登録を検出できません。
"
+ },
+ "Autopilot": {
+ "AssignResourceAccount": {
+ "createNewCommandMenu": "新規作成",
+ "createNewResourceAccountInfo": "\r\n登録中に新しいリソース アカウントを作成します。リソース アカウントはリソース アカウント テーブルにすぐに追加されますが、デバイスが登録され、Surface Hub サブスクリプションが検証されるまでアクティブになりません。リソース アカウントの詳細をご確認ください
\r\n ",
+ "createNewResourceTitle": "新しいリソース アカウントの作成",
+ "deviceNameInvalid": "デバイス名の形式が無効です",
+ "deviceNameRequired": "デバイス名が必要です",
+ "editResourceAccountLabel": "編集",
+ "selectExistingCommandMenu": "既存のものを選択"
+ },
+ "Device": {
+ "ComputerName": {
+ "validFormat": "名前の長さは 15 文字以内にする必要があり、使用できるのは文字 (a から z、A から Z)、数字 (0 から 9)、ハイフンです。名前に数字のみを含めることはできません。名前に空白スペースを含めることはできません。"
+ },
+ "Header": {
+ "addressableUserName": "ユーザー フレンドリ名",
+ "azureADDevice": "関連付けられている Azure AD デバイス",
+ "batch": "グループ タグ",
+ "dateAssigned": "割り当て日",
+ "deviceAccountFriendlyName": "デバイス アカウントのフレンドリ名",
+ "deviceAccountPwd": "デバイス アカウントのパスワード",
+ "deviceAccountUpn": "Device account",
+ "deviceDisplayName": "デバイス名",
+ "deviceName": "デバイス名",
+ "deviceUseType": "デバイスの使用タイプ",
+ "enrollmentState": "登録の状態",
+ "intuneDevice": "関連付けられている Intune デバイス",
+ "lastContacted": "最終接続",
+ "make": "製造元",
+ "model": "モデル",
+ "profile": "割り当てられたプロファイル",
+ "profileStatus": "プロファイルの状態",
+ "purchaseOrderId": "注文書",
+ "resourceAccount": "リソース アカウント",
+ "serialNumber": "シリアル番号",
+ "userPrincipalName": "ユーザー"
+ },
+ "SurfaceHub": {
+ "friendlyNameRequired": "フレンドリ名は必須です。",
+ "pwdRequired": "パスワードが必要です。",
+ "upnRequired": "デバイス アカウントが必要です",
+ "upnValidFormat": "値には、文字 (a から z、A から Z)、数字 (0 から 9)、ハイフンを含めることができます。値に空白スペースを含めることはできません。"
+ }
+ },
+ "DeviceUseType": {
+ "meetingAndPresentation": "会議とプレゼンテーション",
+ "teamCollaboration": "チームのグループ作業"
+ },
+ "Devices": {
+ "featureDescription": "Windows Autopilot を使用して、ユーザーの out-of-box experience (OOBE) をカスタマイズできます。",
+ "importErrorStatus": "一部のデバイスがインポートされませんでした。詳細については、こちらをクリックします。",
+ "importPendingStatus": "インポートが進行中です。経過時間: {0} 分。この処理には最大 {1} 分かかります。"
+ },
+ "DirectoryService": {
+ "activeDirectoryAD": "Hybrid Azure AD Join を使用した",
+ "activeDirectoryADLabel": "Autopilot を使った Hybrid Azure AD",
+ "azureAD": "Azure AD 参加済み",
+ "unknownType": "不明な種類"
+ },
+ "Filter": {
+ "enrollmentState": "状態",
+ "profile": "プロファイルの状態"
+ },
+ "OOBE": {
+ "AddressableUserName": {
+ "validateEmpty": "ユーザー フレンドリ名を空にすることはできません。"
+ },
+ "ApplyComputerNameTemplate": {
+ "infoBalloon": "登録中にデバイスに名前を追加するための、名前付けテンプレートを作成します。",
+ "label": "デバイス名のテンプレートを適用する"
+ },
+ "ApplyComputerNameTemplateDisabled": {
+ "label": "Hybrid Azure AD Join を使用した種類の Autopilot Deployment プロファイルの場合、ドメイン参加構成で指定されている設定によってデバイスの名前が指定される。"
+ },
+ "ComputerNameTemplate": {
+ "emptyValue": "MyCompany-%RAND:4%",
+ "label": "名前の入力",
+ "noDisallowedChars": "名前には、英数字、ハイフン、%SERIAL%、%RAND:x% のいずれかのみを含める必要があります",
+ "serialLength": "使用できるのは %SERIAL% で 7 文字以内です",
+ "validateLessThan15Chars": "名前の長さは 15 文字以下にする必要があります",
+ "validateNoSpaces": "コンピューター名にスペースを含めることはできません。",
+ "validateNotAllNumbers": "名前には、文字とハイフンの両方またはそのいずれかを含める必要もあります",
+ "validateNotEmpty": "名前を空にすることはできません。",
+ "validateOnlyOneMacro": "名前には、%SERIAL% か %RAND:x% のいずれかのみを含める必要があります"
+ },
+ "ConfigureComputerNameTemplate": {
+ "description": "デバイスに一意の名前を作成します。名前の長さは 15 文字以内にする必要があります。また、文字 (a-z、A-Z)、数字 (0-9)、ハイフンを使用することができます。名前に数字のみを含めることはできません。名前に空白スペースを含めることはできません。%SERIAL% マクロを使用して、ハードウェア固有のシリアル番号を追加します。または、%RAND:x% マクロを使用してランダムな数値の文字列を追加します。ここでは、x は追加する桁数に相当します。"
+ },
+ "EnableWhiteGlove": {
+ "infoBalloon": "Windows キーを 5 回押すことで、ユーザー認証なしで OOBE を実行してデバイスを登録し、システム コンテキストのアプリと設定をプロビジョニングできるようにします。ユーザー コンテキストのアプリと設定はユーザーがサインインしたときに配信されます。",
+ "label": "事前プロビジョニングされたデプロイを許可する"
+ },
+ "HybridAzureADSkipConnectivityCheck": {
+ "infoBalloon": "Autopilot Hybrid Azure AD の結合フローは、OOBE 中にドメイン コントローラーの接続を確立していない場合でも続行されます。",
+ "label": "AD 接続の確認をスキップする (プレビュー)"
+ },
+ "accountType": "ユーザー アカウントの種類",
+ "accountTypeInfo": "ユーザーがデバイス上の管理者と標準ユーザーのどちらであるかを指定します。この設定は、グローバル管理者と会社の管理者のどちらのアカウントにも適用されないことにご注意ください。これらのアカウントは、Azure AD 内のすべての管理機能へのアクセス権を持っているため、標準ユーザーにすることはできません。",
+ "configOOBEInfo": "\r\nAutopilot デバイスの out-of-box experience を構成します\r\n
",
+ "configureDevice": "配置モード",
+ "configureDeviceHintForSurfaceHub2": "Autopilot では、Surface Hub 2 に対して自動展開モードのみをサポートしています。このモードでは、ユーザーと登録されたデバイスとの関連付けは行われないため、ユーザーの資格情報は必要ありません。",
+ "configureDeviceHintForWindowsPC": "\r\n 展開モードは、デバイスをプロビジョニングするためにユーザーの資格情報を入力する必要があるかどうかを指定します。\r\n
\r\n \r\n - \r\n ユーザー ドリブン: デバイスは、そのデバイスを登録するユーザーに関連付けられます。デバイスをプロビジョニングするには、ユーザーの資格情報が必要です\r\n
\r\n - \r\n 自己展開 (プレビュー): デバイスは、そのデバイスを登録するユーザーと関連付けられません。デバイスをプロビジョニングするためにユーザーの資格情報は必要はありません\r\n
\r\n
",
+ "createSurfaceHub2Info": "Surface Hub 2 デバイスの Autopilot 登録設定を構成します。既定で、Autopilot では OOBE 中のユーザー認証のスキップが有効です。Surface Hub 2 向け Windows Autopilot の詳細をご確認ください。",
+ "createWindowsPCInfo": "\r\n\r\n次のオプションは自己展開モードで Autopilot デバイスに対して自動的に有効になります。\r\n
\r\n\r\n - \r\n 職場または自宅での使用の選択をスキップ\r\n
\r\n - \r\n OEM 登録および OneDrive 構成のスキップ\r\n
\r\n - \r\n OOBE でのユーザー認証のスキップ\r\n
\r\n
",
+ "endUserDevice": "ユーザー ドリブン",
+ "hideEscapeLink": "アカウントの変更オプションを非表示にする",
+ "hideEscapeLinkInfo": "アカウントの変更オプションと別のアカウントでやり直すオプションが、デバイスの初期セットアップ中に、会社のサインイン ページとドメインのエラー ページにそれぞれ表示されます。これらのオプションを非表示にするには、Azure Active Directory で会社のブランドを構成する必要があります (Windows 10 の 1809 以降または Windows 11 が必要)。",
+ "info": "AutoPilot プロファイルの設定により、最初に Windows を起動するときにユーザーに表示する out-of-box experience を定義します。",
+ "language": "言語 (リージョン)",
+ "languageInfo": "使用する言語と地域を指定します。",
+ "licenseAgreement": "マイクロソフト ソフトウェア ライセンス条項",
+ "licenseAgreementInfo": "ユーザーに EULA を表示するかどうかを指定します。",
+ "plugAndForgetDevice": "自己展開 (プレビュー)",
+ "plugAndForgetGA": "自己展開",
+ "privacySettingWarning": "診断データ コレクションの既定値が、Windows 10 バージョン 1903 以降、または Windows 11 を実行しているデバイスで変更されました。 ",
+ "privacySettings": "プライバシーの設定",
+ "privacySettingsInfo": "プライバシーの設定をユーザーに表示するかどうかを指定します。",
+ "showCortanaConfigurationPage": "Cortana 構成",
+ "showCortanaConfigurationPageInfo": "表示により、起動時に Cortana 構成の導入が有効になります。",
+ "skipEULAWarning": "ライセンス条項の非表示に関する重要な情報",
+ "skipKeyboardSelection": "キーボードを自動的に構成する",
+ "skipKeyboardSelectionInfo": "true の場合、[言語] が設定されているとキーボードの選択ページをスキップします。",
+ "subtitle": "AutoPilot プロファイル",
+ "title": "Out-of-box experience (OOBE)",
+ "useOSDefaultLanguage": "オペレーティング システムの既定値",
+ "userSelect": "ユーザーの選択"
+ },
+ "Sync": {
+ "lastRequestedLabel": "最後の同期要求",
+ "lastSuccessfulLabel": "前回成功した同期",
+ "syncInProgress": "同期しています。しばらくしてからもう一度ご確認ください。",
+ "syncInitiated": "AutoPilot 設定の同期を開始しました。",
+ "syncSettingsTitle": "AutoPilot 設定の同期"
+ },
+ "Title": {
+ "devices": "Windows AutoPilot デバイス"
+ },
+ "Tooltips": {
+ "addressableUserName": "デバイスの設定中に表示されるグリーティング名。",
+ "azureADDevice": "関連付けられているデバイスについては、デバイスの詳細に移動します。N/A は、関連付けられているデバイスがないことを意味します。",
+ "batch": "デバイスのグループを識別するために使用できる文字列属性。Intune のグループ タグ フィールドが Azure AD デバイスの OrderID 属性にマップされます。",
+ "dateAssigned": "プロファイルがデバイスに割り当てられたときのタイムスタンプ。",
+ "deviceAccountFriendlyName": "Surface Hub デバイスのデバイス アカウント フレンドリ名",
+ "deviceAccountPwd": "Surface Hub デバイスのデバイス アカウント パスワード",
+ "deviceAccountUpn": "Surface Hub デバイスのデバイス アカウント メール",
+ "deviceDisplayName": "デバイスの一意の名前を構成します。Hybrid Azure AD Join を使用したデプロイでは、この名前は無視されます。デバイス名は、Hybrid Azure AD デバイスのドメイン参加プロファイルからのものです。",
+ "deviceName": "ユーザーがデバイスを検出して接続しようとしたときに表示される名前です。",
+ "deviceUseType": " デバイスが選択内容に基づいて設定されます。後でいつでも設定を変更できます。\r\n \r\n - 会議とプレゼンテーションでは、Windows Hello は有効になっておらず、セッションごとにデータが削除されます。\r\n
\r\n - チームのグループ作業では、Windows Hello は有効になっており、すぐにサインインできるようにプロファイルが保存されます
\r\n
",
+ "enrollmentState": "デバイスが登録されているかどうかを指定します。",
+ "intuneDevice": "関連付けられているデバイスについては、デバイスの詳細に移動します。N/A は、関連付けられているデバイスがないことを意味します。",
+ "lastContacted": "デバイスへの最終接続時のタイムスタンプ。",
+ "make": "選択したデバイスの製造元。",
+ "model": "選択したデバイスのモデル",
+ "profile": "デバイスに割り当てられているプロファイルの名前。",
+ "profileStatus": "プロファイルがデバイスに割り当てられているかどうか指定します。",
+ "purchaseOrderId": "発注 ID",
+ "resourceAccount": "デバイスの ID またはユーザー プリンシパル名 (UPN)。",
+ "serialNumber": "選択したデバイスのシリアル番号。",
+ "userPrincipalName": "デバイスの設定中に認証を事前設定するユーザー。"
+ },
+ "allDevices": "すべてのデバイス",
+ "allDevicesAlreadyAssignedError": "Autopilot プロファイルは、既にすべてのデバイスに割り当てられています。",
+ "assignFailedDescription": "{0} の割り当てを更新できませんでした。",
+ "assignFailedTitle": "AutoPilot プロファイル割り当てを更新できませんでした。",
+ "assignSuccessDescription": "{0} の割り当てが正常に更新されました。",
+ "assignSuccessTitle": "AutoPilot プロファイル割り当ては正常に更新されました。",
+ "assignSufaceHub2ProfileNextStep": "この展開の次の手順",
+ "assignSurfaceHub2ProfileToDeviceGroup": "1. このプロファイルを少なくとも 1 つのデバイス グループに割り当てる",
+ "assignSurfaceHub2ProfileToResourceAccount": "2. このプロファイルを展開する Surface Hub デバイスごとにリソース アカウントに割り当てる",
+ "assignedDevicesCount": "割り当てられたデバイス",
+ "assignedDevicesResourceAccountDescription": "このプロファイルをデバイスに展開するには、デバイスにリソースアカウントを割り当てる必要があります。一度に 1 つのデバイスを選択して既存のリソース アカウントを割り当てるか、新しいリソース アカウントを作成してください。リソースアカウントの詳細をご確認ください
",
+ "assignedDevicesResourceAccountStatusBarMessage": "このテーブルには、このプロファイルが割り当てられている Surface Hub 2 デバイスのみが一覧表示されます。",
+ "assigningDescription": "{0} の割り当てを更新中です。",
+ "assigningTitle": "AutoPilot プロファイル割り当てを更新しています。",
+ "autoremediationContext": "We've detected a hardware change on this device. We're trying to automatically register the new hardware. You don't need to do anything now; the status will be updated at the next check in with the result. Learn more about resetting the profile.",
+ "autoremediationTitle": "Device {0} has a fix pending",
+ "cannotDeleteMessage": "このプロファイルは、グループに割り当てられます。このプロファイルを削除する前に、このプロファイルからすべてのグループの割り当てを解除する必要があります。",
+ "cannotDeleteTitle": "'{0}' を削除できない",
+ "createdDateTime": "作成済み",
+ "deleteMessage": "この AutoPilot プロファイルを削除すると、このプロファイルに割り当て済みのデバイスに [割り当てなし] と表示されます。",
+ "deleteMessageWithPolicySet": "{0} は、1 つまたは複数のポリシー セットに含まれています。{0} を削除すると、これらのポリシー セットを使用してそれを割り当てることができなくなります。",
+ "deleteTitle": "このプロファイルを削除しますか?",
+ "description": "説明",
+ "deviceType": "デバイスの種類",
+ "deviceUse": "デバイスの使用",
+ "directoryServiceHintForSurfaceHub2": " \r\n Autopilot では、Surface Hub 2 デバイスに対して Azure AD 参加済みのみをサポートしています。デバイスが組織内の Active Directory (AD) に参加する方法を指定します。\r\n
\r\n \r\n - \r\n Azure AD 参加済み: オンプレミスの Windows Server Active Directory が含まれない、クラウド専用。\r\n
\r\n
\r\n ",
+ "directoryServiceHintForWindowsPC": "\r\n \r\n デバイスが組織内の Active Directory (AD) に参加する方法を指定します。\r\n
\r\n \r\n - \r\n Azure AD 参加済み: オンプレミスの Windows Server Active Directory が含まれない、クラウド専用\r\n
\r\n
\r\n ",
+ "getAssignedDevicesCountError": "割り当て済みデバイス数のフェッチ中にエラーが発生しました。",
+ "getAssignmentsError": "AutoPilot プロファイル割り当てのフェッチ中にエラーが発生しました。",
+ "harvestDeviceId": "すべての対象デバイスを Autopilot に変換する",
+ "harvestDeviceIdDescription": "既定では、このプロファイルは Autopilot サービスから同期された Autopilot デバイスのみに適用できます。",
+ "harvestDeviceIdInfo": "\r\n 対象デバイスがまだ登録されていない場合は、[はい] をクリックして、すべての対象デバイスを Autopilot に登録します。登録されたデバイスで次に Windows OOBE (Out of Box Experience) を実行する場合、割り当てられた Autopilot シナリオが実行されます。\r\n
\r\n 特定の Autopilot シナリオには、それぞれ必要な Windows の最低ビルドがあることにご注意ください。デバイスに、シナリオの実行に必要な最低ビルドがあることをご確認ください。\r\n
\r\n このプロファイルを削除しても、対象のデバイスは Autopilot から削除されません。Autopilot からデバイスを削除するには、Windows Autopilot デバイス ビューをご利用ください。\r\n",
+ "harvestDeviceIdWarning": "変換後、Autopilot デバイスは、Autopilot デバイス リストから削除するだけで元に戻すことができます。",
+ "holoLensCommandMenu": "HoloLens",
+ "info": "Windows AutoPilot Deployment プロファイルを使用して、デバイスの out-of-box experience をカスタマイズできます。",
+ "invalidProfileNameMessage": "文字 \"{0}\" は許可されていません",
+ "joinTypeLabel": "Azure AD への参加の種類",
+ "lastModifiedDateTime": "最終更新:",
+ "manualRemediationContext": "We've detected a hardware change on this device. It won't automatically receive an Autopilot profile when it's reset unless you register the device again. Learn more about resetting the profile.",
+ "manualRemediationTitle": "Device {0} needs your attention",
+ "name": "名前",
+ "noAutopilotProfile": "AutoPilot プロファイルがありません",
+ "notEnoughPermissionAssignedError": "選択した 1 つ以上のグループにこのプロファイルを割り当てるためのアクセス許可が不十分です。管理者にお問い合わせください。",
+ "profile": "プロファイル",
+ "resourceAccountStatusBarMessage": "このプロファイルが展開される各 Surface Hub 2 デバイスにリソース アカウントが必要です。詳細についてはクリックしてください。",
+ "selectServices": "デバイスが参加するディレクトリ サービスを選択します",
+ "surfaceHub2CommandMenu": "Surface Hub 2",
+ "surfaceHub2SCommandMenu": "Surface Hub 2S",
+ "userAffinityLabel": "配置モード",
+ "windowsPCCommandMenu": "Windows PC",
+ "directoryServiceLabel": "Azure AD への参加の種類"
},
- "CategoryDescription": {
- "androidGeneralApplicationRestrictions": "社内での使用が承認されていないアプリをユーザーがインストールするときに通知を受け取るためにこれらの設定を使用します。制限されたアプリの一覧の種類を選択します。
\r\n 禁止されたアプリ - ユーザーがインストールするときに通知を受け取るアプリの一覧。
\r\n 承認されたアプリ - 社内での使用が承認されているアプリの一覧。この一覧にないアプリをユーザーがインストールするときに通知されます。
\r\n ",
- "androidZebraMxZebraMx": "MX プロファイルを XML 形式でアップロードして Zebra デバイスを構成します。",
- "iosDeviceFeaturesAirprint": "これらの設定を使用して、ネットワーク上の AirPrint 互換プリンターに自動的に接続するように iOS デバイスを構成します。プリンターの IP アドレスとリソース パスが必要です。",
- "iosDeviceFeaturesExtensibleSingleSignOn": "IOS 13.0 以降を実行しているデバイスに対してシングル サインオン (SSO) を有効にするアプリ拡張機能を構成します。",
- "iosDeviceFeaturesHomeScreenLayout": "iOS デバイスのドックおよびホーム画面のレイアウトを構成します。特定のデバイスでは、表示できるアイテム数が制限されている場合があります。",
- "iosDeviceFeaturesIOSWallpaper": "iOS デバイスのホーム画面とロック画面の両方またはそのいずれかに表示される画像を表示します。\r\n それぞれの場所に固有の画像を表示するには、ロック画面の画像を指定したプロファイルを 1 つと、ホーム画面の画像を指定したプロファイルを 1 つ作成します。\r\n 次に、両方のプロファイルをユーザーに割り当てます。\r\n
\r\n \r\n - 最大ファイル サイズ: 750 KB
\r\n - ファイルの種類: PNG、JPG、JPEG
\r\n
\r\n ",
- "iosDeviceFeaturesNotifications": "アプリの通知設定を指定します。iOS 9.3 以降をサポートします。",
- "iosDeviceFeaturesSharedDevice": "ロック画面に表示される省略可能なテキストを指定してください。これは iOS 9.3 以降でサポートされています。詳細情報",
- "iosGeneralApplicationRestrictions": "社内での使用が承認されていないアプリをユーザーがインストールするときに通知を受け取るためにこれらの設定を使用します。制限されたアプリの一覧の種類を選択します。
\r\n 禁止されたアプリ - ユーザーがインストールするときに通知を受け取るアプリの一覧。
\r\n 承認されたアプリ - 社内での使用が承認されているアプリの一覧。この一覧にないアプリをユーザーがインストールするときに通知されます。
\r\n ",
- "iosGeneralApplicationVisibility": "ユーザーが表示または起動できる iOS アプリを指定するには、表示するアプリの一覧を使用します。ユーザーが表示または起動できない iOS アプリを指定するには、非表示のアプリの一覧を使用します。",
- "iosGeneralAutonomousSingleAppMode": "このリストに追加してデバイスに割り当てたアプリは、そのアプリの起動後はそのアプリだけを実行するようにデバイスをロックするか、特定のアクションの実行中 (たとえば、テストの実行中) にデバイスをロックすることができます。アクションが完了するか、制限が削除されると、デバイスは通常の状態に戻ります。",
- "iosGeneralKiosk": "キオスク モードでは、さまざまな設定をデバイス内にロックするか、デバイスで実行できる 1 つのアプリを指定します。このモードは、デバイスで 1 つのデモ アプリだけを実行する、小売店などの環境で便利です。",
- "macDeviceFeaturesAirprint": "これらの設定を使って macOS デバイスを構成し、ネットワーク上で AirPrint と互換性のあるプリンターに自動的に接続します。プリンターの IP アドレスとリソース パスが必要です。",
- "macDeviceFeaturesAssociatedDomains": "組織のアプリと Web サイトの間でデータとサインイン資格情報を共有するように、関連付けられたドメインを構成します。このプロファイルは、macOS 10.15 以降を実行しているデバイスに適用できます。",
- "macDeviceFeaturesExtensibleSingleSignOn": "macOS 10.15 以降を実行しているデバイスに対してシングル サインオン (SSO) を有効にするアプリ拡張機能を構成します。",
- "macDeviceFeaturesLoginItems": "ユーザーがデバイスにログインするときに開くアプリ、ファイル、およびフォルダーを選択します。選択したアプリを開く方法をユーザーが変更できないようにする場合、ユーザーの構成からアプリを非表示にすることができます。",
- "macDeviceFeaturesLoginWindow": "ユーザーのログイン前後の macOS ログイン画面の外観と、利用可能な機能を構成します。",
- "macExtensionsKernelExtensions": "これらの設定は、10.13.2 以降を実行している macOS デバイスのカーネル拡張機能ポリシーを構成する場合に使用します。",
- "macGeneralDomains": "ユーザーが送信または受信するメールのうち、ここで指定したドメインと一致しないものは、信頼されていないメールとしてマークされます。",
- "windows10EndpointProtectionApplicationGuard": "Microsoft Edge を使用している間は、Microsoft Defender Application Guard により、組織によって信頼済みと定義されていないサイトから環境が保護されます。分離されたネットワーク境界の一覧に含まれないサイトにユーザーがアクセスすると、そのサイトは Hyper-V の仮想ブラウズ セッションで開きます。信頼済みサイトはネットワーク境界によって定義され、これはデバイスの構成で設定できます。この機能は、64 ビットの Windows 10 以降を実行するデバイスでのみ使用可能です。",
- "windows10EndpointProtectionCredentialGuard": "Credential Guard を有効にすると、次の必須設定が有効になります。\r\n
\r\n \r\n - 仮想化ベースのセキュリティを有効にする: 次の再起動時に仮想化ベースのセキュリティ (VBS) をオンにします。仮想化ベースのセキュリティでは、Windows ハイパーバイザーを使用してセキュリティ サービスのサポートを提供します。
\r\n
\r\n - セキュア ブートと直接メモリ アクセス: セキュア ブートと直接メモリ アクセス (DMA) を使用して VBS をオンにします。
\r\n
\r\n ",
- "windows10EndpointProtectionDeviceGuard": "Microsoft Defender アプリケーション制御による監査が必要であるか、実行しても差し支えないとの信頼をそこから得られる追加のアプリを選択します。Windows コンポーネントと Windows ストアのすべてのアプリは、実行しても差し支えないとの信頼を自動的に得ます。
\r\n [監査のみ] モードで実行しているアプリケーションはブロックされません。[監査のみ] モードの場合、すべてのイベントがローカル クライアントのログに記録されます。\r\n ",
- "windows10GeneralPrivacyPerApp": "[既定のプライバシー] で定義したのとは異なるプライバシー動作を設定するアプリを追加します。",
- "windows10NetworkBoundaryNetworkBoundary": "ネットワーク境界は、クラウドでホストされているドメインや、エンタープライズ ネットワーク上のコンピューターの IP アドレスの範囲などのエンタープライズ リソースの一覧です。これらの場所に存在するデータを保護するポリシーを適用するには、ネットワーク境界を定義します。",
- "windowsHealthMonitoring": "Windows の正常性の監視ポリシーを構成します。",
- "windowsPhoneGeneralApplicationRestrictions": "Windows Phone は、禁止アプリ一覧で指定されたアプリや、承認済みアプリ一覧で指定されていないアプリをユーザーがインストールしたり起動したりするのを阻止できます。マネージド アプリはすべて、承認済み一覧に追加する必要があります。"
- },
"MinimumOperatingSystem": {
"Android": {
"v10": "Android 10.0",
@@ -2435,6 +1154,304 @@
"excludedGroups": "除外されたグループ",
"licenseType": "ライセンスの種類"
},
+ "TAP": {
+ "AccessRequirements": {
+ "infoText": "ユーザーが作業コンテキスト内のアプリにアクセスするために満たす必要のある PIN と資格情報の要件を構成します。"
+ },
+ "DataProtection": {
+ "infoText": "このグループには、切り取り、コピー、貼り付け、名前を付けて保存を制限するなどのデータ損失防止 (DLP) コントロールが含まれています。これらの設定によって、ユーザーがアプリ内でデータを操作する方法が決まります。"
+ },
+ "DeviceTypes": {
+ "selectOne": "デバイスの種類を少なくとも 1 つ選択してください。"
+ },
+ "TargetedApps": {
+ "TargetToAll": {
+ "label": "デバイスのすべての種類のアプリをターゲットにする"
+ },
+ "infoText": "このポリシーを様々なデバイスのアプリに適用する方法を選択してください。次に、少なくとも 1 つのアプリを追加してください。",
+ "selectOne": "ポリシーを作成するには、少なくとも 1 つのアプリを選択します。"
+ }
+ },
+ "AssignmentAction": {
+ "exclude": "除外",
+ "include": "含まれるアクセス許可",
+ "includeAllDevicesVirtualGroup": "含まれるアクセス許可",
+ "includeAllUsersVirtualGroup": "含まれるアクセス許可"
+ },
+ "AppType": {
+ "androidEnterpriseSystemApp": "Android Enterprise システム アプリ",
+ "androidForWorkApp": "マネージド Google Play ストア アプリ",
+ "androidLobApp": "Android 基幹業務アプリ",
+ "androidStoreApp": "Android ストア アプリ",
+ "builtInAndroid": "組み込み Android アプリ",
+ "builtInApp": "組み込みアプリ",
+ "builtInIos": "組み込みの iOS アプリ",
+ "default": "",
+ "iosLobApp": "iOS 基幹業務アプリ",
+ "iosStoreApp": "iOS ストア アプリ",
+ "iosVppApp": "iOS Volume Purchase Program アプリ",
+ "lineOfBusinessApp": "基幹業務アプリ",
+ "macOSDmgApp": "macOS のアプリ (DMG)",
+ "macOSEdgeApp": "Microsoft Edge (macOS)",
+ "macOSLobApp": "macOS 基幹業務アプリ",
+ "macOSMdatpApp": "Microsoft Defender ATP (macOS)",
+ "macOSOfficeSuiteApp": "Microsoft 365 アプリ (macOS)",
+ "macOsVppApp": "macOS Volume Purchase Program アプリ",
+ "managedAndroidLobApp": "マネージド Android 基幹業務アプリ",
+ "managedAndroidStoreApp": "マネージド Android ストア アプリ",
+ "managedGooglePlayApp": "マネージド Google Play ストア アプリ",
+ "managedGooglePlayPrivateApp": "マネージド Google Play プライベート アプリ",
+ "managedGooglePlayWebApp": "マネージド Google Play Web リンク",
+ "managedIosLobApp": "マネージド iOS 基幹業務アプリ",
+ "managedIosStoreApp": "マネージド iOS ストア アプリ",
+ "microsoftStoreForBusinessApp": "ビジネス向け Microsoft ストア アプリ",
+ "microsoftStoreForBusinessReleaseManagedApp": "ビジネス向け Microsoft Store ",
+ "officeSuiteApp": "Microsoft 365 Apps (Windows 10 以降)",
+ "webApp": "Web リンク",
+ "windowsAppXLobApp": "Windows AppX 基幹業務アプリ",
+ "windowsClassicApp": "Windows アプリ (Win32)",
+ "windowsEdgeApp": "Microsoft Edge (Windows 10 以降)",
+ "windowsMobileMsiLobApp": "Windows MSI 基幹業務アプリ",
+ "windowsPhone81AppXBundleLobApp": "Windows Phone 8.1 AppX 基幹業務アプリ",
+ "windowsPhone81AppXLobApp": "Windows Phone 8.1 AppX 基幹業務アプリ",
+ "windowsPhone81StoreApp": "Windows Phone 8.1 ストア アプリ",
+ "windowsPhoneXapLobApp": "Windows Phone XAP 基幹業務アプリ",
+ "windowsStoreApp": "Microsoft Store アプリ",
+ "windowsUniversalAppXLobApp": "Windows Universal AppX 基幹業務アプリ",
+ "windowsUniversalLobApp": "Windows Universal 基幹業務アプリ"
+ },
+ "TAPSettings": {
+ "AllowedDataIngestionLocations": {
+ "label": "選択したサービスからデータを開くことをユーザーに許可する",
+ "tooltip": "ユーザーがデータを開くことのできるアプリケーション ストレージ サービスを選択します。その他のすべてのサービスはブロックされます。何もサービスを選択しないと、ユーザーはデータを開けなくなります。"
+ },
+ "AndroidBackup": {
+ "label": "Android バックアップ サービスに組織データをバックアップ",
+ "tooltip": "Android バックアップ サービスに組織データをバックアップできないようにするには、{0} を選択します。\r\nAndroid バックアップ サービスに組織データをバックアップできるようにするには {1} を選択します。\r\n個人データや管理されていないデータには影響しません。"
+ },
+ "AndroidBiometricAuthentication": {
+ "label": "アクセスに PIN ではなく生体認証を使用",
+ "tooltip": "アプリの PIN の代わりにユーザーが使用できる Android 認証方法 (存在する場合) を選択します。"
+ },
+ "AndroidFingerprint": {
+ "label": "アクセスに PIN ではなく指紋を使用 (Android 6.0 以降)",
+ "tooltip": "Android OS で Android デバイス ユーザーを認証するために指紋のスキャンを使用します。この機能は Android デバイスのネイティブの生体認証コントロールをサポートします。Samsung Pass などの OEM 固有の生体認証設定はサポートしません。許可した場合、対応デバイス上のアプリにアクセスするときにネイティブの生体認証コントロールを使用する必要があります。"
+ },
+ "AndroidOverrideFingerprint": {
+ "label": "タイムアウト後は PIN で指紋をオーバーライドする"
+ },
+ "AppPIN": {
+ "label": "デバイスの PIN が設定されている場合のアプリ PIN",
+ "tooltip": "不要な場合、デバイス PIN が MDM 登録デバイスで設定されているなら、アプリにアクセスするためにアプリ PIN を使用する必要はありません。
\r\n\r\n注: Intune は、Android 上のサード パーティ EMM ソリューションによるデバイス登録を検出できません。"
+ },
+ "BlockDataIngestionIntoOrganizationDocuments": {
+ "label": "データを開いて組織ドキュメントに読み込む",
+ "tooltip1": "このアプリで [開く] オプションや他のオプションを使用してアカウント間でのデータの共有を行うことを禁止する場合は、[ブロック] を選択します。このアプリで [開く] オプションや他のオプションを使用してアカウント間でのデータの共有を行うことを許可する場合は、[許可] を選択します。",
+ "tooltip2": "[ブロック] に設定する場合、[選択したサービスからユーザーがデータを開くことを許可する] の設定を構成して、組織のデータの場所として許可するサービスを指定できます。",
+ "tooltip3": "注意: この設定は、[他のアプリからデータを受信] の設定が [ポリシーで管理されているアプリ] に設定されている場合にのみ適用されます。
\r\n注意: この設定はすべてのアプリケーションに適用されるわけではありません。詳細については、{0} をご覧ください。",
+ "tooltip4": "注意: この設定は、[他のアプリからデータを受信] の設定が [ポリシーで管理されているアプリ] に設定されている場合にのみ適用されます。
\r\n注意: この設定はすべてのアプリケーションに適用されるわけではありません。詳細については、{0} または {0} をご覧ください。"
+ },
+ "ConnectToVpnOnLaunch": {
+ "label": "アプリの起動時に Microsoft Tunnel の接続を開始する",
+ "tooltip": "アプリの起動時に VPN への接続を許可する"
+ },
+ "CredentialsForAccess": {
+ "label": "アクセスに職場または学校アカウントの資格情報を使用",
+ "tooltip": "必須の場合、ポリシーで管理されているアプリにアクセスするには、職場または学校の資格情報を使用する必要があります。アプリへのアクセスに PIN または生体認証方式も必要な場合には、こうしたプロンプトに加えて、職場または学校アカウントの資格情報が必要になります。"
+ },
+ "CustomBrowserDisplayName": {
+ "label": "アンマネージド ブラウザー名",
+ "tooltip": "[アンマネージド ブラウザー ID] に関連付けられているブラウザーのアプリケーション名を入力してください。この名前は、指定されたブラウザーがインストールされていない場合にユーザーに表示されます。"
+ },
+ "CustomBrowserPackageId": {
+ "label": "アンマネージド ブラウザー ID",
+ "tooltip": "1 つのブラウザーのアプリケーション ID を入力してください。ポリシーで管理されているアプリケーションからの Web コンテンツ (http/s) が、指定されたブラウザーで開きます。"
+ },
+ "CustomBrowserProtocol": {
+ "label": "アンマネージド ブラウザー プロトコル",
+ "tooltip": "1 つのアンマネージド ブラウザーのプロトコルを入力します。ポリシーで管理されているアプリケーションからの Web コンテンツ (http/s) は、このプロトコルをサポートするすべてのアプリで開くことができます。
\r\n \r\n注意: プロトコル プレフィックスのみを含めます。ブラウザーで \"mybrowser://www.microsoft.com\" 形式のリンクが必要な場合は、\"mybrowser\" を入力してください。
"
+ },
+ "CustomDialerAppDisplayName": {
+ "label": "ダイヤラー アプリ名"
+ },
+ "CustomDialerAppPackageId": {
+ "label": "ダイヤラー アプリ パッケージ ID"
+ },
+ "CustomDialerAppProtocol": {
+ "label": "ダイヤラー アプリ URL スキーム"
+ },
+ "Cutcopypaste": {
+ "label": "他のアプリとの間で切り取り、コピー、貼り付けを制限する",
+ "tooltip": "ご使用のアプリと、デバイス上にインストールされている他の承認済みアプリとの間で、データの切り取り、コピー、貼り付けを行います。アプリ間でこうした操作をすべてブロックするか、あらゆるアプリとの間で使用を許可するか、組織で管理するアプリだけが使用できるように制限するかのいずれかを選択します。
\r\n\r\n[貼り付けを使用する、ポリシー マネージド アプリ] の場合、別のアプリから貼り付けられたコンテンツを受け入れることができますが、ユーザーが他のアプリにコンテンツを共有することはできません (管理されているアプリとの共有を除く)。
"
+ },
+ "DialerRestrictionLevel": {
+ "iosTooltip": "通常、ユーザーがアプリでハイパーリンク付きの電話番号を選択すると、電話番号が事前入力された状態でダイヤラー アプリが開き、通話準備が整っています。この設定では、ポリシー マネージド アプリから開始された場合に、この種のコンテンツ転送をどのように扱うかを選択します。この設定を有効にするには、追加の操作が必要になる場合があります。最初に、[除外するアプリを選択します] の一覧から tel と telprompt が削除されていることを確認します。次に、アプリケーションが新しいバージョンの Intune SDK (バージョン 12.7.0 以上) を使用していることを確認します。",
+ "label": "電話通信データの転送先",
+ "tooltip": "通常、ユーザーがアプリでハイパーリンク付きの電話番号を選択すると、ダイヤラー アプリが開きます。アプリでは、電話番号が事前設定されているので、すぐに通話できます。この設定では、この種類のコンテンツの転送について、ポリシーで管理されたアプリから開始された場合にどのように処理するかを選択します。"
+ },
+ "EncryptData": {
+ "label": "組織データを暗号化",
+ "link": "https://docs.microsoft.com/ja-jp/intune/app-protection-policy-settings-android#data-relocation-settings",
+ "tooltip": "Intune アプリ層暗号化を使用して組織データの強制的に暗号化する場合は、{0} を選択します。\r\n
\r\nIntune アプリ層暗号化を使用して組織データを強制的に暗号化しない場合は、{1} を選択します。\r\n\r\n
\r\n注: Intune アプリ層暗号化の詳細については、{2} をご覧ください。"
+ },
+ "EncryptDataAndroid": {
+ "tooltip": "[必要] を選択すると、このアプリの職場や学校のデータを暗号化できます。Intune では、Android キーストア システムと共に OpenSSL の 256 ビット AES 暗号化スキームを使用して、アプリ データを安全に暗号化します。データは、ファイル I/O タスク中に同期的に暗号化されます。デバイス ストレージ上のコンテンツは常に暗号化されます。前のバージョンの SDK を使用するコンテンツやアプリとの互換性のため、SDK では引き続き 128 ビット キーのサポートが提供されます。
\r\n\r\n暗号化の方法は FIPS 140-2 に準拠していません。
"
+ },
+ "EncryptDataIos": {
+ "tooltip1": "[必要] を選択すると、このアプリの職場や学校のデータを暗号化できます。Intune では、デバイスがロックされている間にアプリ データを保護するため iOS/iPadOS デバイスに暗号化を強制します。アプリケーションでは、オプションとして、Intune APP SDK 暗号化を使用してアプリ データを暗号化することもできます。Intune APP SDK は iOS/iPadOS 暗号化方法を使用して 128 ビット AES 暗号化をアプリ データに適用します。",
+ "tooltip2": "この設定を有効にすると、ユーザーが自分のデバイスにアクセスするために PIN を設定して使用しなければならなくなる可能性があります。デバイス PIN がない場合に暗号化が必要になると、ユーザーに対して \"このアプリにアクセスするには、デバイス PIN を最初に有効にすることが組織によって求められています\" というメッセージが表示され、PIN を設定するよう促されます。",
+ "tooltip3": "Apple の公式ドキュメントを参照し、FIPS 140-2 に準拠している、または FIPS 140-2 の準拠が保留されている iOS 暗号化モジュールをご確認ください。"
+ },
+ "EncryptDataOnEnrolledDevices": {
+ "label": "登録済みデバイスで組織データを暗号化",
+ "tooltip": "すべてのデバイスで Intune アプリ層暗号化を使用して強制的に組織データを暗号化する場合は、{0} を選択します。
\r\n\r\n登録デバイスで Intune アプリ層暗号化を使用して組織データを強制的に暗号化しない場合は、{1} を選択します。"
+ },
+ "IOSBackup": {
+ "label": "iTunes と iCloud のバックアップに組織データをバックアップ",
+ "tooltip": "iTunes や iCloud に組織データをバックアップできないようにするには、{0} を選択します。\r\niTunes または iCloud に組織データをバックアップできるようにするには {1} を選択します。\r\n個人データや管理されていないデータには影響しません。"
+ },
+ "IOSFaceID": {
+ "label": "アクセスに PIN ではなく Face ID を使用 (iOS 11 以降/iPadOS)",
+ "tooltip": "Face ID は、iOS/iPadOS デバイスでユーザーを認証するのに顔認識テクノロジを使用します。Intune は LocalAuthentication API を呼び出して、Face ID を使用してユーザーを認証します。許可した場合、Face ID 対応デバイス上のアプリにアクセスするには Face ID を使用する必要があります。"
+ },
+ "IOSOverrideTouchId": {
+ "label": "タイムアウト後は PIN で生体認証をオーバーライドする"
+ },
+ "IOSTouchId": {
+ "label": "アクセスに PIN ではなく Touch ID を使用 (iOS 8 以降/iPadOS)",
+ "tooltip": "Touch ID は、iOS デバイスでユーザーを認証するのに指紋認識テクノロジを使用します。Intune は LocalAuthentication API を呼び出して、Touch ID を使用してユーザーを認証します。許可した場合、Touch ID 対応デバイス上のアプリにアクセスするには Touch ID を使用する必要があります。"
+ },
+ "NotificationRestriction": {
+ "label": "組織データの通知",
+ "tooltip": "次のいずれかのオプションを選択して、このアプリおよびウェアラブルなどの任意の接続されているデバイスについて、組織のアカウントの通知を表示する方法を指定します:
\r\n{0}: 通知を共有しない。
\r\n{1}: 通知では組織データを共有しない。アプリケーションでサポートされていない場合は通知をブロックする。
\r\n{2}: すべての通知を共有する。
\r\n Android のみ:\r\n 注意: この設定はすべてのアプリケーションに適用されるわけではありません。詳細については、{3} を参照してください
\r\n \r\n iOS のみ:\r\n注意: この設定はすべてのアプリケーションに適用されるわけではありません。詳細については、{4} を参照してください
"
+ },
+ "OpenLinksManagedBrowser": {
+ "label": "その他のアプリでの Web コンテンツの転送を制限する",
+ "tooltip": "次のいずれかのオプションを選択して、このアプリで Web コンテンツを開くことのできるアプリを指定します:
\r\nEdge: Edge でのみ Web コンテンツを開くことを許可します
\r\nアンマネージド ブラウザー: [アンマネージド ブラウザー プロトコル] の設定によって定義されたアンマネージド ブラウザーでのみ Web コンテンツを開くことを許可します
\r\n任意のアプリ: どのアプリでも Web リンクを許可します
"
+ },
+ "OverrideBiometric": {
+ "tooltip": "必須の場合、タイムアウト (非アクティブ分数) に従い、生体認証プロンプトが PIN プロンプトでオーバーライドされます。このタイムアウト値に達していない場合は生体認証プロンプトが引き続き表示されます。このタイムアウト値は、[(非アクティブ分数) 後にアクセス要件を再確認する] で指定された値より大きくなければなりません。"
+ },
+ "PinAccess": {
+ "label": "アクセスに PIN を使用",
+ "tooltip": "必須の場合、ポリシーで管理されたアプリにアクセスするには PIN を使用する必要があります。ユーザーは、職場または学校アカウントでアプリを初めて開くときにアクセス PIN を作成しなければなりません。"
+ },
+ "PinLength": {
+ "label": "PIN の最小長を選択",
+ "tooltip": "この設定では、PIN の最小桁数を指定します。"
+ },
+ "PinType": {
+ "label": "PIN の種類",
+ "tooltip": "数字 PIN はすべて数字です。パスコードは、英数字と特殊文字で構成されています。 "
+ },
+ "Printing": {
+ "label": "組織データを出力する",
+ "tooltip": "ブロックされている場合、アプリは保護されているデータを出力できません。"
+ },
+ "ReceiveData": {
+ "label": "他のアプリからデータを受信",
+ "tooltip": "このアプリがどのアプリからのデータを受信できるかを指定するため、次のオプションの中から 1 つを選択します。
\r\n\r\nなし: どのアプリからも組織ドキュメントやアカウントのデータを受信できません
\r\n\r\nポリシー マネージド アプリ: ポリシーで管理されている他のアプリからのみ、組織ドキュメントやアカウントのデータを受信できます\r\n
\r\n受信した組織データを持つすべてのアプリ: どのアプリからでも組織ドキュメントやアカウントのデータを受信でき、ユーザー アカウントのないすべての着信データを組織データとして扱います
\r\n\r\nすべてのアプリ: どのアプリからでも組織ドキュメントやアカウントのデータを受信できます"
+ },
+ "RecheckAccessAfter": {
+ "label": "非アクティブの時間(分)後にアクセス権を再確認します\r\n\r\n",
+ "tooltip": "ポリシーで管理されているアプリが非アクティブな状態のまま、指定された非アクティブ分数を超過すると、アプリが起動した後、再確認すべきアクセス要件 (つまり、PIN、条件付き起動設定) を入力するよう求めるプロンプトが表示されます。"
+ },
+ "RestrictKeyboards": {
+ "duplicatePackageError": "パッケージ ID は一意である必要があります。",
+ "invalidPackageError": "パッケージ ID が無効です",
+ "label": "承認済みキーボード",
+ "select": "承認するキーボードの選択",
+ "subtitle": "対象のアプリでユーザーが使用できるすべてのキーボードと入力方法を追加します。エンド ユーザーに表示したいキーボードの名前を入力してください。",
+ "title": "承認済みキーボードの追加",
+ "toolTip": "[必要] を選択し、このポリシーに対して承認されたキーボードの一覧を指定します。詳細情報。"
+ },
+ "SaveData": {
+ "label": "組織データのコピーを保存",
+ "tooltip": "[名前を付けて保存] を使用して、選択したストレージ サービス以外の新しい場所に組織データのコピーを保存できないようにする場合は、{0} を選択します。\r\n [名前を付けて保存] を使用して新しい場所に組織データのコピーを保存できるようにする場合は、{1} を選択します。
\r\n\r\n\r\n注: この設定は、すべてのアプリケーションに適用されるわけではありません。詳しくは、{2} をご覧ください。\r\n"
+ },
+ "SaveDataToSelected": {
+ "label": "選択したサービスにユーザーがコピーを保存することを許可",
+ "tooltip": "ユーザーが組織データのコピーを保存できるストレージ サービスを選択します。その他のすべてのサービスはブロックされます。何もサービスを選択しないと、ユーザーは組織データのコピーを保存できなくなります。"
+ },
+ "ScreenCaptureAndAndroidAssistant": {
+ "label": "画面キャプチャと Google アシスタント\r\n",
+ "tooltip": "ブロックすると、ポリシーで管理されているアプリの使用時に、画面キャプチャと Google アシスタント アプリ スキャンの両方の機能が無効にされます。この機能は、通常の Google アシスタント アプリをサポートしています。Google の Assist API を使用したサード パーティ製アシスタントはサポートされていません。[ブロック] を選択すると、職場または学校アカウントでアプリを使用している場合は、アプリ スイッチャーのプレビュー画像も不鮮明になります。"
+ },
+ "SendData": {
+ "label": "他のアプリに組織データを送信",
+ "tooltip": "このアプリからどのアプリに組織データを送信できるかを指定するため、次のオプションの中から 1 つを選択します。
\r\n\r\n\r\nなし: どのアプリにも組織データを送信できません
\r\n\r\n\r\nポリシー マネージド アプリ: ポリシーで管理されている他のアプリにだけ、組織データを送信できます
\r\n\r\n\r\nOS 共有利用のポリシー マネージド アプリ: ポリシーで管理されている他のアプリに組織データを送信することと、登録デバイス上の他の MDM 管理アプリに組織ドキュメントを送信することだけができます
\r\n\r\n\r\nOpen-In/Share フィルター利用のポリシー マネージド アプリ: ポリシーで管理されている他のアプリにだけ組織データを送信することを許可し、OS の [Open-In/Share] ダイアログをフィルター処理して、ポリシーで管理されているアプリのみを表示します\r\n
\r\n\r\nすべてのアプリ: すべてのアプリに組織データを送信できます"
+ },
+ "SimplePin": {
+ "label": "単純な PIN",
+ "tooltip": "ブロックすると、ユーザーは単純な PIN を作成できません。単純な PIN とは、1234、ABCD、1111 などの一連の続き番号や数字の繰り返しです。種類 'パスコード' の単純な PIN をブロックすると、パスコードには少なくとも 1 つの数字、文字、特殊文字が含まれていなければなりません。"
+ },
+ "SyncContacts": {
+ "label": "ポリシー マネージド アプリ データとネイティブ アプリまたはアドインの同期"
+ },
+ "ThirdPartyKeyboards": {
+ "infoBox": "キーボード制限はアプリのすべてのエリアに適用されます。複数の識別子をサポートするアプリの個人用アカウントは、この制限の影響を受けます。詳細をご確認ください。",
+ "label": "サード パーティのキーボード"
+ },
+ "Timeout": {
+ "label": "タイムアウト (非アクティブ分数)"
+ },
+ "Tap": {
+ "numberOfDays": "日数",
+ "pinResetAfterNumberOfDays": "PIN をリセットするまでの日数",
+ "previousPinBlockCount": "維持対象の以前の PIN 値の数を選択する"
+ }
+ },
+ "ScheduledAction": {
+ "Form": {
+ "editBlockActionInfo": "すべてのコンプライアンス ポリシー用に 1 つのブロック アクションが必要です。",
+ "graceperiod": "スケジュール (コンプライアンス違反となってからの日数)",
+ "graceperiodInfo": "非準拠になってから何日経過したら、このアクションをユーザーのデバイスに対してトリガーするかを指定します",
+ "subtitle": "アクション パラメーターを指定する",
+ "title": "アクション パラメーター"
+ },
+ "List": {
+ "gracePeriodDay": "コンプライアンス違反の発生後 {0} 日",
+ "gracePeriodDays": "コンプライアンス違反の発生後 {0} 日",
+ "gracePeriodHour": "コンプライアンス違反の発生後 {0} 時間",
+ "gracePeriodHours": "コンプライアンス違反の発生後 {0} 時間",
+ "gracePeriodMinute": "コンプライアンス違反の発生後 {0} 分",
+ "gracePeriodMinutes": "コンプライアンス違反の発生後 {0} 分",
+ "immediately": "即時",
+ "schedule": "スケジュール",
+ "scheduleInfoBalloon": "コンプライアンス違反の発生後の日数",
+ "subtitle": "準拠していないデバイスでのアクションのシーケンスを指定する",
+ "title": "アクション"
+ },
+ "Notification": {
+ "additionalEmailLabel": "その他",
+ "additionalRecipients": "追加の受信者 (電子メールによる)",
+ "additionalRecipientsBladeTitle": "その他の受信者を選択する",
+ "emailAddressPrompt": "電子メール アドレスを (コンマで区切って) 入力してください",
+ "invalidEmail": "無効な電子メール アドレス",
+ "messageTemplate": "メッセージ テンプレート",
+ "noneSelected": "1 つも選択されていません",
+ "notSelected": "選択されていません",
+ "numSelected": "{0} 件選択済み",
+ "selected": "選択済み"
+ },
+ "block": "デバイスに非準拠のマークを付ける",
+ "lockDevice": "デバイスのロック (ローカル アクション)",
+ "lockDeviceWithPasscode": "デバイスのロック (ローカル アクション)",
+ "noAction": "アクションなし",
+ "noActionRow": "アクションなし。アクションを追加するには [追加] を選んでください",
+ "pushNotification": "エンド ユーザーにプッシュ通知を送信する",
+ "remoteLock": "準拠していないデバイスをリモートでロックします",
+ "removeSourceAccessProfile": "ソース アクセス プロファイルの削除",
+ "retire": "準拠していないデバイスを削除します",
+ "wipe": "ワイプ",
+ "emailNotification": "メールをエンド ユーザーに送信する"
+ },
+ "InstallIntent": {
+ "available": "登録済みデバイスで使用可能",
+ "availableWithoutEnrollment": "登録の有無にかかわらず使用可能",
+ "required": "必須",
+ "uninstall": "アンインストール"
+ },
"EnrollmentStatusScreen": {
"Apps": {
"managedApps": "マネージド アプリ",
@@ -2466,142 +1483,61 @@
"resetToggle": "インストール エラーが発生した場合にデバイスのリセットをユーザーに許可する",
"timeout": "インストールに要する時間が指定された分数を超えたらエラーを表示します"
},
- "EnrollmentType": {
- "devicesWithEnrollment": "マネージド デバイス",
- "devicesWithoutEnrollment": "マネージド アプリ"
- },
- "ApplicabilityRules": {
- "GridLabel": {
- "property": "プロパティ",
- "rule": "ルール",
- "ruleDetails": "ルールの詳細",
- "value": "値"
- },
- "assignIf": "プロファイルを割り当てる条件:",
- "deleteWarning": "これにより、選択した適用性ルールが削除されます",
- "dontAssignIf": "プロファイルを割り当てない条件:",
- "editionDisplayText": "{0} {1}",
- "editionDisplayTextMore": "さらに {0} 個",
- "instructions": "割り当てられたグループ内にこのプロファイルを適用する方法を指定してください。Intune では、これらのルールの結合条件に一致するデバイスにのみプロファイルを適用します。",
- "maxText": "最大",
- "minText": "最小",
- "noActionRow": "適用性ルールが指定されていません",
- "oSVersion": "1.2.3.4 など",
- "toText": "から",
- "windows10Education": "Windows 10/11 Education",
- "windows10EducationN": "Windows 10/11 Education N",
- "windows10Enterprise": "Windows 10/11 Enterprise",
- "windows10EnterpriseN": "Windows 10/11 Enterprise N",
- "windows10HolographicEnterprise": "Windows 10 Holographic for Business",
- "windows10Home": "Windows 10/11 Home",
- "windows10HomeChina": "Windows 10 Home China",
- "windows10HomeN": "Windows 10/11 Home N",
- "windows10HomeSingleLanguage": "Windows 10/11 Home Single Language",
- "windows10IoTCore": "Windows 10 IoT Core",
- "windows10IoTCoreCommercial": "Windows 10 IoT Core Commercial",
- "windows10Mobile": "Windows 10 Mobile",
- "windows10MobileEnterprise": "Windows 10 Mobile Enterprise",
- "windows10OsEdition": "OS のエディション",
- "windows10OsVersion": "OS のバージョン",
- "windows10Professional": "Windows 10/11 Professional",
- "windows10ProfessionalEducation": "Windows 10/11 Professional Education",
- "windows10ProfessionalEducationN": "Windows 10/11 Professional Education N",
- "windows10ProfessionalN": "Windows 10 Professional N",
- "windows10ProfessionalWorkstation": "Windows 10/11 Professional Workstation",
- "windows10ProfessionalWorkstationN": "Windows 10/11 Professional Workstation N"
+ "Devices": {
+ "General": {
+ "android": "Android"
+ },
+ "aOSP": "Android オープンソース プロジェクト",
+ "android": "Android デバイス管理者",
+ "androidWorkProfile": "Android Enterprise (仕事用プロファイル)",
+ "iOS": "iOS/iPadOS",
+ "mac": "macOS",
+ "windows": "Windows (MDM)",
+ "windows10": "Windows 10 以降",
+ "windowsHomeSku": "Windows Home SKU",
+ "windowsMobile": "Windows Mobile"
+ },
+ "AppInfoBalloonText": {
+ "Certificate": {
+ "customSubjectName": "CN={{UserName}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US\r\nor\r\nCN={{AAD_Device_ID}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US",
+ "keySize": "キーに含まれるビット数を選択します。",
+ "keyUsage": "証明書の公開キーを交換するために必要な暗号化操作を指定します。",
+ "renewalThreshold": "デバイスで証明書の更新をリクエストできるようになるまでの残りの証明書の有効期間の割合 (1% から 99% まで) を入力します。Intune の推奨値は 20% です。(1-99)",
+ "rootCert": "以前に構成されて割り当てられたルートの CA 証明書プロファイルを選択してください。CA 証明書は、このプロファイル (現在構成中のプロファイル) の証明書を発行する CA のルート証明書と一致する必要があります。",
+ "scepServerUrl": "SCEP を使用して証明書を発行する NDES サーバーの URL を入力します (HTTPS にする必要があります)。例: https://contoso.com/certsrv/mscep/mscep.dll",
+ "scepServerUrls": "SCEP を使用して証明書を発行する NDES サーバーについて 1 つまたは複数の URL を追加します (HTTPS にする必要があります)。例: https://contoso.com/certsrv/mscep/mscep.dll",
+ "subjectAlternativeName": "サブジェクトの別名",
+ "subjectNameFormat": "サブジェクト名の形式",
+ "validityPeriod": "証明書の有効期限が切れるまでの残りの期間を示しています。証明書のテンプレートに示されている有効期間に等しいかそれより少ない値を入力してください。既定値は 1 年です。"
+ },
+ "appInstallContext": "これにより、このアプリに関連するインストール コンテキストが指定されます。デュアル モードのアプリでは、このアプリに必要なコンテキストを選択してください。他のすべてのアプリでは、これはパッケージに基づき事前に選択されていて、変更できません。",
+ "autoUpdateMode": "アプリの更新の優先順位を構成します。アプリを更新する前に、デバイスを WiFi に接続し、充電し、アクティブに使用しないようにするには、[既定値] を選択します。デバイスでの課金状態、WiFi 機能、エンド ユーザーアクティビティに関係なく、開発者がアプリを公開したらすぐにアプリを更新するには、[高優先度] を選択します。[延期] を選択して、アプリの更新を最大 90 日間見送ります。[高優先度] と [延期] は DO デバイスにしか効力を発しません。",
+ "configurationSettingsFormat": "構成設定の形式のテキスト",
+ "ignoreVersionDetection": "(Google Chrome などの) アプリ開発者によって自動的に更新されるアプリの場合は、これを [はい] に設定します。",
+ "ignoreVersionDetectionMacOSLobApp": "アプリ開発者によって自動的に更新されるアプリ、またはインストール前にアプリの bundleID のみを確認する場合は、[はい] を選択します。インストール前にアプリの bundleID とバージョン番号を確認する場合は、[いいえ] を選択してます。",
+ "installAsManagedMacOSLobApp": "この設定は macOS 11 以降にのみ適用されます。macOS 10.15 以下の場合、アプリはインストールされますが、管理されません。",
+ "installContextDropdown": "適切なインストール コンテキストを選択します。ユーザー コンテキストでは対象のユーザーにのみアプリがインストールされますが、デバイス コンテキストではデバイス上のすべてのユーザーにアプリがインストールされます。",
+ "ldapUrl": "これは、クライアントがメール受信者のパブリック暗号化キーを取得できる LDAP ホスト名です。キーが使用可能になると、電子メールは暗号化されます。サポートされている形式: - ldap.example.com
\r\n- ldap.example.com:123
\r\n- ldap://ldap.example.com
- ldap://ldap.example.com:123
- ldaps://ldap.example.com
\r\n- ldaps://ldap.example.com:123
",
+ "permissionsSettings": "関連付けられているアプリのランタイム アクセス許可を選択します。",
+ "policyAssociatedApp": "このポリシーを関連付けるアプリを選びます。",
+ "policyConfigurationSettings": "このポリシーの構成設定を定義するために使用する方法を選びます。",
+ "policyDescription": "必要に応じて、この構成ポリシーの説明を入力します。",
+ "policyEnrollmentType": "これらの設定をデバイス管理と Intune SDK で作成されたアプリのどちらで管理するかを選択します。",
+ "policyName": "この構成ポリシーの名前を入力します。",
+ "policyPlatform": "このアプリ構成ポリシーを適用するプラットフォームを選びます。",
+ "policyProfileType": "このアプリ構成プロファイルが適用されるデバイス プロファイルの種類を選択します",
+ "policySMime": "Outlook の S/MIME 署名および暗号化の設定を構成します。",
+ "sMimeDeployCertsFromIntune": "Outlook で使用する S/MIME 証明書を Intune から配信するかどうかを指定します。\r\nIntune では、ポータル サイトでユーザーに署名および暗号化証明書を自動的に展開できます。",
+ "sMimeEnable": "電子メールを作成するときに、S/MIME コントロールを有効にするかどうかを指定してください",
+ "sMimeEnableAllowChange": "ユーザーに [S/MIME を有効にする] 設定の変更を許可するかどうかを指定します。",
+ "sMimeEncryptAllEmails": "すべての電子メールを暗号化する必要があるかどうかを指定します。\r\n暗号化すると、目的の受信者のみが読み取れるようにデータは暗号化テキストに変換されます。",
+ "sMimeEncryptAllEmailsAllowChange": "ユーザーに [すべての電子メールを暗号化する] 設定の変更を許可するかどうかを指定します。",
+ "sMimeEncryptionCertProfile": "電子メール暗号化の証明書プロファイルを指定します。",
+ "sMimeSignAllEmails": "すべての電子メールに署名が必要かどうかを指定します。\r\nデジタル署名は、電子メールの信頼性を検証し、コンテンツが伝送中に改ざんされていないことを保証します。",
+ "sMimeSignAllEmailsAllowChange": "ユーザーに [すべての電子メールに署名する] 設定の変更を許可するかどうかを指定します。",
+ "sMimeSigningCertProfile": "電子メール署名の証明書プロファイルを指定します。",
+ "sMimeUserNotificationType": "Outlook の S/MIME 証明書を取得するためポータル サイトを開く必要があることをユーザーに通知する方法。"
},
- "BooleanActions": {
- "allow": "許可",
- "block": "ブロック",
- "configured": "構成済み",
- "disable": "無効にする",
- "dontRequire": "必要としない",
- "enable": "有効にする",
- "hide": "非表示",
- "limit": "上限",
- "notConfigured": "構成されていません",
- "require": "必要",
- "show": "表示",
- "yes": "はい"
- },
- "ProactiveRemediations": {
- "Create": {
- "Basics": {
- "DescriptionMultiLineTextBox": {
- "label": "説明",
- "placeholder": "説明を入力します"
- },
- "NameTextBox": {
- "label": "名前",
- "placeholder": "名前の入力"
- },
- "PublisherTextBox": {
- "label": "公開者",
- "placeholder": "パブリッシャーを入力してください"
- },
- "VersionTextBox": {
- "label": "バージョン"
- },
- "headerDescription": "作成した検出および修復スクリプトから新しいカスタム スクリプト パッケージを作成します。"
- },
- "ScopeTags": {
- "headerDescription": "スクリプト パッケージを割り当てるグループを 1 つ以上選択します。"
- },
- "Settings": {
- "DetectionScriptMultiLineTextBox": {
- "label": "検出スクリプト",
- "placeholder": "入力スクリプト テキスト",
- "requiredValidationMessage": "検出スクリプトを入力してください"
- },
- "EnforceScriptSignatureCheckOptionPicker": {
- "label": "スクリプト署名チェックを強制"
- },
- "LoggedOnCredentialsOptionPicker": {
- "label": "このスクリプトをログオンした資格情報を使用して実行する"
- },
- "RemediationScript": {
- "infoBox": "修復スクリプトがないため、このスクリプトは検出専用モードで実行されます。"
- },
- "RemediationScriptMultiLineTextBox": {
- "label": "修復スクリプト",
- "placeholder": "入力スクリプト テキスト"
- },
- "RunIn64BitPSOptionPicker": {
- "label": "64 ビットの PowerShell でスクリプトを実行する"
- },
- "ScriptMultiLineTextBox": {
- "base64EncodingValidationMessage": "スクリプトが無効です。スクリプトで使用されている 1 つまたは複数の文字が無効です。"
- },
- "headerDescription": "お客様が記述したスクリプトからカスタム スクリプト パッケージが作成されます。既定では、スクリプトは割り当てられたデバイスで毎日実行されます。",
- "infoBox": "このスクリプトは読み取り専用です。このスクリプトの一部の設定が無効になっている可能性があります。"
- },
- "title": "カスタム スクリプトの作成",
- "ScriptProperties": {
- "GridHeaders": {
- "interval": "間隔",
- "time": "日付と時刻"
- },
- "Interval": {
- "day": "毎日繰り返す",
- "days": "{0} 日おきに繰り返す",
- "hour": "1 時間ごとに繰り返す",
- "hours": "{0} 時間おきに繰り返します",
- "month": "毎月繰り返す",
- "months": "{0} か月おきに繰り返す",
- "week": "毎週繰り返す",
- "weeks": "{0} 週間おきに繰り返す"
- },
- "Time": {
- "utc": "{0} (UTC)",
- "utcWithDate": "{1} {0} (UTC)",
- "withDate": "{1} {0}"
- }
- }
- },
- "Edit": {
- "title": "編集 - {0}"
- }
- },
"WindowsManagement": {
"Assignment": {
"noAssignmentCustomAttributeDisplayText": "カスタム属性を少なくとも 1 つのグループに割り当てます。割り当てを編集するには、[プロパティ] に移動します。",
@@ -2708,910 +1644,6 @@
"shellScriptObjectName": "シェル スクリプト",
"successfullySavedPolicy": "{0} を保存しました"
},
- "AssignmentFilters": {
- "assignmentFilterColumnHeader": "フィルター",
- "noFilters": "なし"
- },
- "Category": {
- "airPlay": "AirPlay",
- "airPrint": "AirPrint",
- "androidDefenderAtp": "Microsoft Defender for Endpoint",
- "androidDeviceOwnerApplications": "アプリケーション",
- "androidForWorkPassword": "デバイスのパスワード",
- "appManagement": "アプリを許可またはブロックします",
- "applicationGuard": "Microsoft Defender Application Guard",
- "applicationRestrictions": "制限付きアプリ",
- "applicationVisibility": "アプリの表示/非表示",
- "applications": "アプリ ストア",
- "applicationsAndGames": "アプリ ストア、ドキュメント表示、ゲーム",
- "applicationsAndGoogle": "Google Play ストア",
- "appsAndExperience": "アプリとエクスペリエンス",
- "associatedDomains": "関連付けられたドメイン",
- "autonomousSingleAppMode": "自律的シングル App モード",
- "azureOperationalInsights": "Azure Operational Insights",
- "bitLocker": "Windows 暗号化",
- "browser": "ブラウザー",
- "builtinApps": "組み込みアプリ",
- "cellular": "携帯ネットワーク",
- "cloudAndStorage": "クラウドとストレージ",
- "cloudPrint": "クラウド プリンター",
- "complianceEmailProfile": "電子メール",
- "connectedDevices": "接続されているデバイス",
- "connectivity": "携帯ネットワークと接続性",
- "contentCaching": "コンテンツ キャッシング",
- "controlPanelAndSettings": "コントロール パネルと設定",
- "credentialGuard": "Microsoft Defender Credential Guard",
- "customCompliance": "カスタム コンプライアンス",
- "customCompliancePreview": "カスタム コンプライアンス (プレビュー)",
- "customConfiguration": "カスタム構成プロファイル",
- "customOMASettings": "OMA-URI のカスタム設定",
- "customPreferences": "設定ファイル",
- "defender": "Microsoft Defender ウイルス対策",
- "defenderAntivirus": "Microsoft Defender ウイルス対策",
- "defenderExploitGuard": "Microsoft Defender Exploit Guard",
- "defenderFirewall": "Microsoft Defender ファイアウォール",
- "defenderLocalSecurityOptions": "ローカル デバイスのセキュリティ オプション",
- "defenderSecurityCenter": "Microsoft Defender セキュリティ センター",
- "deliveryOptimization": "配信の最適化",
- "derivedCredentialAuthenticationConfiguration": "派生資格情報",
- "deviceExperience": "デバイス エクスペリエンス",
- "deviceFirmwareConfigurationInterface": "デバイスのファームウェア構成インターフェイス",
- "deviceGuard": "Microsoft Defender アプリケーション制御",
- "deviceHealth": "デバイスの正常性",
- "devicePassword": "デバイスのパスワード",
- "deviceProperties": "デバイスのプロパティ",
- "deviceRestrictions": "全般",
- "deviceSecurity": "システム セキュリティ",
- "display": "表示",
- "domainJoin": "ドメインへの参加",
- "domains": "ドメイン",
- "edgeBrowser": "Microsoft Edge 従来版 (バージョン 45 以前)",
- "edgeBrowserSmartScreen": "Microsoft Defender SmartScreen",
- "edgeKiosk": "Microsoft Edge キオスク モード",
- "editionUpgrade": "エディションのアップグレード",
- "education": "教育",
- "educationDeviceCerts": "デバイスの証明書",
- "educationStudentCerts": "学生の証明書",
- "educationTakeATest": "テストの実行",
- "educationTeacherCerts": "教師の証明書",
- "emailProfile": "電子メール",
- "enterpriseDataProtection": "Windows Information Protection",
- "expeditedCheckin": "モバイル デバイス管理の構成",
- "extensibleSingleSignOn": "シングル サインオン アプリ拡張機能",
- "filevault": "FileVault",
- "firewall": "ファイアウォール",
- "games": "ゲーム",
- "gatekeeper": "ゲートキーパー",
- "healthMonitoring": "正常性の監視",
- "homeScreenLayout": "ホーム画面のレイアウト",
- "iOSWallpaper": "壁紙",
- "importedPFX": "PKCS のインポートされた証明書",
- "iosDefenderAtp": "Microsoft Defender for Endpoint",
- "iosKiosk": "キオスク",
- "kernelExtensions": "カーネル拡張機能",
- "keyboardAndDictionary": "キーボードと辞書",
- "kiosk": "キオスク",
- "kioskAndroidEnterprise": "専用端末",
- "kioskConfiguration": "キオスク",
- "kioskConfigurationV2": "キオスク",
- "kioskWebBrowser": "キオスク Web ブラウザー",
- "lockScreenMessage": "ロック画面のメッセージ",
- "lockedScreenExperience": "ロック画面の動作",
- "logging": "レポートとテレメトリ",
- "loginItems": "ログイン項目",
- "loginWindow": "ログイン ウィンドウ",
- "macDefenderAtp": "Microsoft Defender for Endpoint",
- "maintenance": "メンテナンス",
- "malware": "マルウェア",
- "messaging": "メッセージング",
- "networkBoundary": "ネットワーク境界",
- "networkProxy": "ネットワーク プロキシ",
- "notifications": "アプリの通知",
- "pKCS": "PKCS 証明書",
- "password": "パスワード",
- "personalProfile": "個人プロファイル",
- "personalization": "個人用設定",
- "policyOverride": "グループ ポリシーのオーバーライド",
- "powerSettings": "電源設定",
- "printer": "プリンター",
- "privacy": "プライバシー",
- "privacyPerApp": "アプリごとのプライバシー例外",
- "privacyPreferences": "プライバシーの設定",
- "projection": "プロジェクション",
- "sCCMCompliance": "Configuration Manager のコンプライアンス",
- "sCEP": "SCEP 証明書",
- "sCEPProperties": "SCEP 証明書",
- "sMode": "モードの切り替え (Windows Insider のみ)",
- "safari": "Safari",
- "search": "検索",
- "session": "セッション",
- "sharedDevice": "Shared iPad",
- "sharedPCAccountManager": "共有のマルチユーザーのデバイス",
- "singleSignOn": "シングル サインオン",
- "smartScreen": "Microsoft Defender SmartScreen",
- "softwareUpdates": "設定",
- "start": "開始",
- "systemExtensions": "システムの拡張機能",
- "systemSecurity": "システム セキュリティ",
- "trustedCert": "信頼済み証明書",
- "updates": "更新",
- "userRights": "ユーザー権限",
- "usersAndAccounts": "ユーザーとアカウント",
- "vPN": "基本 VPN",
- "vPNApps": "自動 VPN",
- "vPNAppsAndTrafficRules": "アプリとトラフィックの規則",
- "vPNConditionalAccess": "条件付きアクセス",
- "vPNConnectivity": "接続",
- "vPNDNSTriggers": "DNS の設定",
- "vPNIKEv2": "IKEv2 設定",
- "vPNProxy": "プロキシ",
- "vPNSplitTunneling": "分割トンネリング",
- "vPNTrustedNetwork": "信頼されたネットワーク検出",
- "webContentFilter": "Web コンテンツ フィルター",
- "wiFi": "Wi-Fi",
- "win10Wifi": "Wi-Fi",
- "windowsAtp": "Microsoft Defender for Endpoint",
- "windowsDefenderATP": "Microsoft Defender for Endpoint",
- "windowsHelloForBusiness": "Windows Hello for Business",
- "windowsSpotlight": "Windows スポットライト",
- "wiredNetwork": "ワイヤード (有線) ネットワーク",
- "wireless": "ワイヤレス",
- "wirelessProjection": "ワイヤレス投影",
- "workProfile": "仕事用プロファイルの設定",
- "workProfilePassword": "仕事用プロファイルのパスワード",
- "xboxServices": "Xbox サービス",
- "zebraMx": "MX プロファイル (Zebra のみ)",
- "complianceActionsLabel": "コンプライアンス非対応に対するアクション"
- },
- "MicrosoftEdgeChannel": {
- "beta": "Beta",
- "dev": "Dev",
- "stable": "Stable"
- },
- "ConfigurationTypes": {
- "Table": {
- "androidDeviceOwnerGeneral": "デバイスの制限 (デバイス所有者)",
- "androidForWorkGeneral": "デバイスの制限 (仕事用プロファイル)"
- },
- "androidCustom": "カスタム",
- "androidDeviceOwnerGeneral": "デバイスの制限",
- "androidDeviceOwnerPkcs": "PKCS 証明書",
- "androidDeviceOwnerScep": "SCEP 証明書",
- "androidDeviceOwnerTrustedCertificate": "信頼済み証明書",
- "androidDeviceOwnerVpn": "VPN",
- "androidDeviceOwnerWiFi": "Wi-Fi",
- "androidEmailProfile": "メール (Samsung KNOX のみ)",
- "androidForWorkCustom": "カスタム",
- "androidForWorkEmailProfile": "電子メール",
- "androidForWorkGeneral": "デバイスの制限",
- "androidForWorkImportedPFX": "PKCS のインポートされた証明書",
- "androidForWorkOemConfig": "OEMConfig",
- "androidForWorkPKCS": "PKCS 証明書",
- "androidForWorkSCEP": "SCEP 証明書",
- "androidForWorkTrustedCertificate": "信頼済み証明書",
- "androidForWorkVpn": "VPN",
- "androidForWorkWiFi": "Wi-Fi",
- "androidGeneral": "デバイスの制限",
- "androidImportedPFX": "PKCS のインポートされた証明書",
- "androidPKCS": "PKCS 証明書",
- "androidSCEP": "SCEP 証明書",
- "androidTrustedCertificate": "信頼済み証明書",
- "androidVPN": "VPN",
- "androidWiFi": "Wi-Fi",
- "androidZebraMx": "MX プロファイル (Zebra のみ)",
- "complianceAndroid": "Android コンプライアンス ポリシー",
- "complianceAndroidDeviceOwner": "フル マネージド、専用、会社所有の仕事用プロファイル",
- "complianceAndroidEnterprise": "個人所有の仕事用プロファイル",
- "complianceAndroidForWork": "Android for Work コンプライアンス ポリシー",
- "complianceIos": "iOS コンプライアンス ポリシー",
- "complianceMac": "Mac コンプライアンス ポリシー",
- "complianceWindows10": "Windows 10 以降のコンプライアンス ポリシー",
- "complianceWindows10Mobile": "Windows 10 Mobileコンプライアンス ポリシー",
- "complianceWindows8": "Windows 8 コンプライアンス ポリシー",
- "complianceWindowsPhone": "Windows Phone コンプライアンス ポリシー",
- "exchangeActiveSync": "Exchange Active Sync",
- "iosCustom": "カスタム",
- "iosDerivedCredentialAuthenticationConfiguration": "派生 PIV 資格情報",
- "iosDeviceFeatures": "デバイス機能",
- "iosEDU": "教育",
- "iosEducation": "教育",
- "iosEmailProfile": "電子メール",
- "iosGeneral": "デバイスの制限",
- "iosImportedPFX": "PKCS のインポートされた証明書",
- "iosPKCS": "PKCS 証明書",
- "iosPresets": "プリセット",
- "iosSCEP": "SCEP 証明書",
- "iosTrustedCertificate": "信頼済み証明書",
- "iosVPN": "VPN",
- "iosVPNZscaler": "VPN",
- "iosWiFi": "Wi-Fi",
- "macCustom": "カスタム",
- "macDeviceFeatures": "デバイス機能",
- "macEndpointProtection": "Endpoint Protection",
- "macExtensions": "拡張機能",
- "macGeneral": "デバイスの制限",
- "macImportedPFX": "PKCS のインポートされた証明書",
- "macSCEP": "SCEP 証明書",
- "macTrustedCertificate": "信頼済み証明書",
- "macVPN": "VPN",
- "macWiFi": "Wi-Fi",
- "settingsCatalog": "設定カタログ (プレビュー)",
- "unsupported": "サポートなし",
- "windows10AdministrativeTemplate": "管理用テンプレート (プレビュー)",
- "windows10Atp": "Microsoft Defender for Endpoint (Windows 10 以降を実行するデスクトップ デバイス)",
- "windows10Custom": "カスタム",
- "windows10DesktopSoftwareUpdate": "ソフトウェア更新プログラム",
- "windows10DeviceFirmwareConfigurationInterface": "デバイスのファームウェア構成インターフェイス",
- "windows10EmailProfile": "電子メール",
- "windows10EndpointProtection": "Endpoint Protection",
- "windows10EnterpriseDataProtection": "Windows Information Protection",
- "windows10General": "デバイスの制限",
- "windows10ImportedPFX": "PKCS のインポートされた証明書",
- "windows10Kiosk": "キオスク",
- "windows10NetworkBoundary": "ネットワーク境界",
- "windows10PKCS": "PKCS 証明書",
- "windows10PolicyOverride": "グループ ポリシーのオーバーライド",
- "windows10SCEP": "SCEP 証明書",
- "windows10SecureAssessmentProfile": "教育プロファイル",
- "windows10SharedPC": "共有のマルチユーザーのデバイス",
- "windows10TeamGeneral": "デバイスの制限 (Windows 10 Team)",
- "windows10TrustedCertificate": "信頼済み証明書",
- "windows10VPN": "VPN",
- "windows10WiFi": "Wi-Fi",
- "windows10WiFiCustom": "Wi-Fi カスタム",
- "windows8General": "デバイスの制限",
- "windows8SCEP": "SCEP 証明書",
- "windows8TrustedCertificate": "信頼済み証明書",
- "windows8VPN": "VPN",
- "windows8WiFi": "Wi-Fi インポート",
- "windowsDeliveryOptimization": "配信の最適化",
- "windowsDomainJoin": "ドメインへの参加",
- "windowsEditionUpgrade": "エディションのアップグレードおよびモードの切り替え",
- "windowsIdentityProtection": "ID 保護",
- "windowsPhoneCustom": "カスタム",
- "windowsPhoneEmailProfile": "電子メール",
- "windowsPhoneGeneral": "デバイスの制限",
- "windowsPhoneImportedPFX": "PKCS のインポートされた証明書",
- "windowsPhoneSCEP": "SCEP 証明書",
- "windowsPhoneTrustedCertificate": "信頼済み証明書",
- "windowsPhoneVPN": "VPN",
- "IosUpdate": "iOS 更新ポリシー"
- },
- "WindowsEnrollment": {
- "coManagementAuthorityDesc": "Configuration Manager 統合の共同管理設定を構成します",
- "coManagementAuthorityTitle": "共同管理の設定",
- "deploymentProfiles": "Windows AutoPilot Deployment プロファイル",
- "description": "ユーザーまたは管理者が Windows 10/11 PC を Intune に登録する 7 つの異なる方法について説明します。",
- "descriptionLabel": "Windows 登録方法",
- "enrollmentStatusPage": "登録ステータス ページ"
- },
- "Platform": {
- "all": "すべて",
- "android": "Android デバイス管理者",
- "androidAOSP": "Android (AOSP)",
- "androidEnterprise": "Android Enterprise",
- "androidForWork": "Android Enterprise",
- "androidWorkProfile": "Android Enterprise",
- "common": "共通",
- "iOS": "iOS/iPadOS",
- "iosAndAndroidPlatformLabel": "iOS および Android",
- "iosCommaAndroidPlatformLabel": "iOS、Android",
- "linux": "Linux",
- "macOS": "macOS",
- "unknown": "不明",
- "unsupported": "サポートなし",
- "windows": "Windows",
- "windows10": "Windows 10 以降",
- "windows10CM": "Windows 10 以降 (ConfigMgr)",
- "windows10Holo": "Windows 10 Holographic",
- "windows10Mobile": "Windows 10 Mobile",
- "windows10Team": "Windows 10 Team",
- "windows10X": "Windows 10X",
- "windows8": "Windows 8.1 以降",
- "windows8And10": "Windows 8 および 10",
- "windowsPhone": "Windows Phone 8.1",
- "windows10AndLater": "Windows 10 以降",
- "windows10AndWindowsServer": "Windows 10、Windows 11、および Windows Server (ConfigMgr)",
- "windows10andLaterCM": "Windows 10 以降 (ConfigMgr)",
- "holoLens": "HoloLens",
- "surfaceHub2": "Surface Hub 2",
- "surfaceHub2S": "Surface Hub 2S",
- "windowsPC": "Windows PC"
- },
- "EnrollmentRestrictions": {
- "DeletePayloadLink": {
- "content": "{0} は、1 つ以上のポリシー セットに含まれています。{0} を削除すると、これらのポリシー セットを使用してそれを割り当てることができなくなります。削除しますか?",
- "contentWithError": "{0} は、1 つ以上のポリシー セットに含まれている可能性があります。{0} を削除すると、これらのポリシー セットを使用してそれを割り当てることができなくなります。削除しますか?",
- "header": "この制限を削除しますか?"
- },
- "DeviceLimit": {
- "description": "ユーザーが登録できるデバイスの最大数を指定します。",
- "header": "デバイスの上限数の制限",
- "info": "各ユーザーが登録できるデバイス数を定義します。"
- },
- "DeviceType": {
- "VersionValidation": {
- "aOSP": "1.0 以上でなければなりません。",
- "android": "有効なバージョン番号を入力してください。例: 5.0、5.5.1、6.0.0.1",
- "androidForWork": "有効なバージョン番号を入力してください。例: 5.0、5.1.1",
- "iOS": "有効なバージョン番号を入力してください。例: 9.0、10.0、9.0.2",
- "mac": "有効なバージョン番号を入力してください。例: 10、10.10、10.10.1",
- "min": "下限は {0} 以上にする必要があります",
- "minMax": "最小バージョンは最大バージョン以下にする必要があります。",
- "windows": "10.0 以上である必要があります。8.1 デバイスを許可するには空白のままにします",
- "windowsMobile": "10.0 以上である必要があります。8.1 デバイスを許可するには空白のままにします"
- },
- "allPlatformsBlocked": "すべてのデバイス プラットフォームがブロックされています。プラットフォームの登録を許可して、プラットフォームを構成できるようにしてください。",
- "blockManufacturerPlaceHolder": "製造元の名前",
- "blockManufacturersHeader": "ブロックされた製造元",
- "cannotRestrict": "サポートされていない制限です",
- "configurationDescription": "登録するデバイスで適合する必要のあるプラットフォーム構成の制限を指定します。登録後のデバイスを制限するには、コンプライアンス ポリシーを使用します。バージョンは major.minor.build として定義します。バージョンの制限事項はポータル サイトで登録されたデバイスにのみ適用されます。既定では、Intune はデバイスを個人の所有として分類します。デバイスを会社の所有として分類するには、追加の操作が必要です。",
- "configurationDescriptionLabel": "登録制限の設定に関する詳細情報",
- "configurations": "プラットフォームの構成",
- "deviceManufacturer": "デバイス製造元",
- "header": "デバイスの種類の制限",
- "info": "登録できるプラットフォーム、バージョン、および管理の種類を定義します。",
- "manufacturer": "製造元",
- "max": "最大",
- "maxVersion": "最大バージョン",
- "min": "最小",
- "minVersion": "最小バージョン",
- "newPlatforms": "新しいプラットフォームを許可しました。プラットフォーム構成を更新することをご検討ください。",
- "personal": "個人所有",
- "platform": "プラットフォーム",
- "platformDescription": "次のフラットフォームの登録を許可できます。ブロック プラットフォームのみサポートされません。許可されるプラットフォームは追加の登録制限を指定して構成できます。",
- "platformSettings": "プラットフォームの設定",
- "platforms": "プラットフォームの選択",
- "platformsSelected": "{0} 個のプラットフォームが選択されています",
- "type": "種類",
- "versions": "versions",
- "versionsRange": "最小/最大の許容範囲:",
- "windowsTooltip": "モバイル デバイス管理から登録を制限します。PC エージェントのインストールは制限されません。Windows 10 および Windows 11 のバージョンのみがサポートされています。Windows 8.1 を許可するにはバージョンを空白のままにします。"
- },
- "Priority": {
- "saved": "優先順位の制限が正しく保存されました。"
- },
- "Row": {
- "announce": "優先度: {0}、名前: {1}、割り当て済み: {2}"
- },
- "Table": {
- "deployed": "展開済み",
- "name": "名前",
- "priority": "優先度"
- },
- "Type": {
- "limit": "デバイスの上限数の制限",
- "type": "デバイスの種類の制限"
- },
- "allUsers": "すべてのユーザー",
- "androidRestrictions": "Android の制限",
- "create": "制限を作成",
- "defaultLimitDescription": "これは既定のデバイスの上限数の制限であり、グループ メンバーシップに関係なく、すべてのユーザーに最も低い優先順位で適用されます。",
- "defaultTypeDescription": "これは既定のデバイスの種類の制限であり、グループ メンバーシップに関係なく、すべてのユーザーに最も低い優先順位で適用されます。",
- "defaultWhfbDescription": "これは Windows Hello for Business の既定の構成であり、グループ メンバーシップに関係なく、すべてのユーザーに最も低い優先順位で適用されます。",
- "deleteMessage": "影響を受けるユーザーには、割り当てられている優先度が次に高い制限が適用されます。他の制限が割り当てられていない場合は既定の制限が適用されます。",
- "deleteTitle": "{0} 制限を削除しますか?",
- "descriptionHint": "制限の設定によって特徴づけられる、業務での使用または制限のレベルの短い説明文。",
- "edit": "制限の編集",
- "info": "デバイスは、そのユーザーに割り当てられている優先順位の最も高い登録制限に準拠している必要があります。優先順位を変更するには、デバイスの制限をドラッグします。既定の制限は、どのユーザーでも優先順位が最低であり、ユーザーのいない登録を管理します。既定の制限を編集することはできますが、削除することはできません。",
- "iosRestrictions": "iOS の制限",
- "mDM": "MDM",
- "macRestrictions": "MacOS の制限",
- "maxVersion": "最大バージョン",
- "minVersion": "最小バージョン",
- "nameHint": "これは、制限セットを識別するために表示される主属性になります。",
- "noAssignmentsStatusBar": "少なくとも 1 つのグループに制限を割り当てます。[プロパティ] をクリックしてください。",
- "notFound": "制限が見つかりません。既に削除されている可能性があります。",
- "personallyOwned": "個人所有のデバイス",
- "restriction": "制限",
- "restrictionLowerCase": "制限",
- "restrictionType": "Restriction Type",
- "selectType": "制限の種類の選択",
- "selectValidation": "プラットフォームを選択してください",
- "typeHint": "デバイスのプロパティを制限するには、[デバイスの種類の制限] を選びます。ユーザーあたりのデバイス数を制限するには、[デバイスの上限数の制限] を選びます。",
- "typeRequired": "制限の種類が必要です。",
- "winPhoneRestrictions": "Windows Phone の制限",
- "windowsRestrictions": "Windows の制限"
- },
- "Titles": {
- "ChromeOs": {
- "devices": "Chrome OS デバイス"
- },
- "ManagedDesktop": {
- "adminContacts": "管理者の連絡先",
- "appPackaging": "アプリのパッケージ化",
- "devices": "デバイス",
- "feedback": "フィードバック",
- "gettingStarted": "はじめに",
- "messages": "メッセージ",
- "onlineResources": "オンライン リソース",
- "serviceRequests": "サービス要求",
- "settings": "設定",
- "tenantEnrollment": "テナント登録"
- },
- "actions": "コンプライアンス非対応に対するアクション",
- "advancedExchangeSettings": "Exchange Online の設定",
- "advancedThreatProtection": "Microsoft Defender for Endpoint",
- "allApps": "すべてのアプリ",
- "allDevices": "すべてのデバイス",
- "androidFotaDeployments": "Android FOTA 展開",
- "appBundles": "アプリ バンドル",
- "appCategories": "アプリのカテゴリ",
- "appConfigPolicies": "アプリ構成ポリシー",
- "appInstallStatus": "アプリ インストールの状態",
- "appLicences": "アプリ ライセンス",
- "appProtectionPolicies": "アプリ保護ポリシー",
- "appProtectionStatus": "アプリの保護状態",
- "appSelectiveWipe": "アプリの選択的ワイプ",
- "appleVppTokens": "Apple VPP トークン",
- "apps": "アプリ",
- "assign": "割り当て",
- "assignedPermissions": "割り当てられたアクセス許可",
- "assignedRoles": "割り当てられたロール",
- "autopilotDeploymentReport": "Autopilot Deployment (プレビュー)",
- "brandingAndCustomization": "カスタマイズ",
- "cartProfiles": "カート プロファイル",
- "certificateConnectors": "証明書のコネクタ",
- "chromeEnterprise": "Chrome Enterprise",
- "compliancePolicies": "コンプライアンス ポリシー",
- "complianceScriptManagement": "スクリプト",
- "complianceScriptManagementPreview": "スクリプト (プレビュー)",
- "complianceSettings": "コンプライアンス ポリシー設定",
- "conditionStatements": "条件ステートメント",
- "conditions": "場所",
- "configMgr": "Microsoft Endpoint Configuration Manager",
- "configurationProfiles": "構成プロファイル",
- "configurationProfilesPreview": "構成プロファイル (プレビュー)",
- "connectorsAndTokens": "コネクタとトークン",
- "corporateDeviceIdentifiers": "業務用デバイスの ID",
- "customAttributes": "カスタム属性",
- "customNotifications": "カスタム通知",
- "deploymentSettings": "デプロイの設定",
- "derivedCredentials": "派生資格情報",
- "deviceActions": "デバイス アクション",
- "deviceCategories": "デバイス カテゴリ",
- "deviceCleanUp": "デバイスのクリーンアップ ルール",
- "deviceEnrollmentManagers": "デバイス登録マネージャー",
- "deviceExecutionStatus": "デバイスの状態",
- "deviceLimitEnrollmentRestrictions": "登録デバイスの上限数制限",
- "deviceTypeEnrollmentRestrictions": "登録デバイスのプラットフォームの制限",
- "devices": "デバイス",
- "discoveredApps": "検出されたアプリ",
- "embeddedSIM": "eSIM 携帯ネットワーク プロファイル (プレビュー)",
- "enrollDevices": "デバイスの登録",
- "enrollmentFailures": "登録エラー",
- "enrollmentNotifications": "登録の通知 (プレビュー)",
- "enrollmentRestrictions": "登録制限",
- "exchangeActiveSync": "Exchange ActiveSync",
- "exchangeServiceConnectors": "Exchange サービス コネクタ",
- "failuresForFeatureUpdates": "機能の更新エラー (プレビュー)",
- "failuresForQualityUpdates": "Windows の優先更新プログラムのエラー (プレビュー)",
- "featureFlighting": "機能フライティング",
- "featureUpdateDeployments": "Windows 10 以降向け機能更新プログラム (プレビュー)",
- "flighting": "フライティング",
- "fotaUpdate": "ファームウェアの上書き更新",
- "groupPolicy": "管理用テンプレート",
- "groupPolicyAnalytics": "グループ ポリシー分析",
- "helpSupport": "ヘルプとサポート",
- "helpSupportReplacement": "ヘルプとサポート ({0})",
- "iOSAppProvisioning": "iOS アプリ プロビジョニング プロファイル",
- "incompleteUserEnrollments": "不完全なユーザー登録",
- "intuneRemoteAssistance": "リモート ヘルプ (プレビュー)",
- "iosUpdates": "iOS または iPadOS のポリシーの更新",
- "legacyPcManagement": "レガシ PC 管理",
- "macOSSoftwareUpdate": "macOS のポリシーを更新する",
- "macOSSoftwareUpdateAccountSummaries": "MacOS デバイスのインストール状態",
- "macOSSoftwareUpdateCategorySummaries": "ソフトウェア更新プログラムの概要",
- "macOSSoftwareUpdateStateSummaries": "更新",
- "managedGooglePlay": "マネージド Google Play",
- "msfb": "ビジネス向け Microsoft ストア",
- "myPermissions": "アクセス許可",
- "notifications": "通知",
- "officeApps": "Office アプリ",
- "officeProPlusPolicies": "Office アプリのポリシー",
- "onPremise": "オンプレミス",
- "onPremisesConnector": "Exchange ActiveSync のオンプレミス コネクタ",
- "onPremisesDeviceAccess": "Exchange ActiveSync デバイス",
- "onPremisesManageAccess": "Exchange On-Premises のアクセス",
- "outOfDateIosDevices": "iOS デバイスのインストール エラー",
- "overview": "概要",
- "partnerDeviceManagement": "パートナー デバイスの管理",
- "perUpdateRingDeploymentState": "更新プログラムごとのリングの展開の状態",
- "permissions": "アクセス許可",
- "platformApps": "{0} のアプリ",
- "platformDevices": "{0} のデバイス",
- "platformEnrollment": "{0} 登録",
- "policies": "ポリシー",
- "previewMDMDevices": "すべてのマネージド デバイス (プレビュー)",
- "profiles": "プロファイル",
- "properties": "プロパティ",
- "reports": "レポート",
- "retireNoncompliantDevices": "準拠していないデバイスの削除",
- "retireNoncompliantDevicesPreview": "Retire noncompliant devices (preview)",
- "role": "ロール",
- "scriptManagement": "スクリプト",
- "securityBaselines": "セキュリティのベースライン",
- "serviceToServiceConnector": "Exchange Online Connector",
- "shellScripts": "シェル スクリプト",
- "teamViewerConnector": "TeamViewer コネクタ",
- "telecomeExpenseManagement": "通信費管理",
- "tenantAdmin": "テナント管理",
- "tenantAdministration": "テナント管理",
- "termsAndConditions": "使用条件",
- "titles": "タイトル",
- "troubleshootSupport": "トラブルシューティング + サポート",
- "user": "ユーザー",
- "userExecutionStatus": "ユーザーの状態",
- "warranty": "保証ベンダー",
- "wdacSupplementalPolicies": "S モードの補足ポリシー",
- "windows10DriverUpdate": "Windows 10 とそれ以降向けドライバー更新プログラム (プレビュー)",
- "windows10QualityUpdate": "Windows 10 以降向け品質更新プログラム (プレビュー)",
- "windows10UpdateRings": "Windows 10 以降向け更新リング",
- "windows10XPolicyFailures": "Windows 10X のポリシー エラー",
- "windowsEnterpriseCertificate": "Windows Enterprise 証明書",
- "windowsManagement": "PowerShell スクリプト",
- "windowsSideLoadingKeys": "Windows サイドローディング キー",
- "windowsSymantecCertificate": "Windows DigiCert 証明書",
- "windowsThreatReport": "脅威エージェントの状態"
- },
- "ScopeTypes": {
- "allDevices": "すべてのデバイス",
- "allUsers": "すべてのユーザー",
- "allUsersAndDevices": "すべてのユーザーとすべてのデバイス",
- "selectedGroups": "選択したグループ"
- },
- "DetectionRules": {
- "ComparisonOperators": {
- "equals": "指定の値に等しい",
- "greaterThan": "次の値より大きい",
- "greaterThanOrEqualTo": "以上",
- "lessThan": "より小さい",
- "lessThanOrEqualTo": "以下",
- "notEqualTo": "次の値に等しくない"
- },
- "CustomScript": {
- "enforceSignatureCheck": "スクリプトの署名の確認を強制し、スクリプトをサイレント実行する",
- "enforceSignatureCheckTooltip": "スクリプトに信頼できる発行元の署名があることを確認するには、[はい] を選択します。署名がある場合、スクリプトは警告やプロンプトを表示せずに実行されます。スクリプトはブロックされずに実行されます。[いいえ] (既定) を選択すると、署名の検証なしで、エンドユーザーの確認に基づいてスクリプトが実行されます。",
- "header": "カスタム検出スクリプトを使用する",
- "runAs32Bit": "64 ビット クライアントで 32 ビット プロセスとしてスクリプトを実行する",
- "runAs32BitTooltip": "[はい] を選択すると、64 ビット クライアント上でスクリプトは 32 ビット プロセス内で実行されます。[いいえ] (既定) を選択すると、64 ビット クライアント上でスクリプトは 64 ビット プロセス内で実行されます。32 ビット クライアントでは、スクリプトは 32 ビット プロセス内で実行されます。",
- "scriptFile": "スクリプト ファイル",
- "scriptFileNotSelectedValidation": "スクリプト ファイルが選択されていません。",
- "scriptFileTooltip": "クライアント上でアプリのプレゼンスを検出する PowerShell スクリプトを選択します。アプリは、スクリプトが終了コード 0 値を返し、かつ STDOUT に文字列値を書き込んだ場合に検出されます。"
- },
- "Manual": {
- "FileRule": {
- "DetectionMethodOptions": {
- "dateCreated": "作成日",
- "dateModified": "変更日",
- "doesNotExist": "ファイルまたはフォルダーが存在しません",
- "fileOrFolderExists": "ファイルまたはフォルダーが存在する",
- "sizeInMB": "サイズ (MB)",
- "version": "文字列 (バージョン)"
- },
- "associatedWith32Bit": "64 ビット クライアント上で 32 ビット アプリに関連付ける",
- "associatedWith32BitTooltip": "[はい] を選択すると、64 ビット クライアント上ですべてのパス環境変数が 32 ビットのコンテキストに展開されます。[いいえ] (既定) を選択すると、64 ビット クライアント上ですべてのパス変数が 64 ビットのコンテキストに展開されます。32 ビットのクライアントでは、常に 32 ビットのコンテキストが使用されます。",
- "detectionMethod": "検出方法",
- "detectionMethodTooltip": "アプリのプレゼンスを検証するために使用する検出方法の種類を選択します。",
- "fileOrFolder": "ファイルまたはフォルダー",
- "fileOrFolderToolTip": "検出するファイルまたはフォルダーです。",
- "operator": "演算子",
- "operatorTooltip": "比較の検証に使用する検出方法の演算子を選択します。",
- "path": "パス",
- "pathTooltip": "検出するファイルまたはフォルダーを含んでいるフォルダーの完全パス。",
- "value": "値",
- "valueTooltip": "選択した検出方法に一致する値を選択します。日付の検出方法はローカル時刻で入力してください。"
- },
- "GridColumns": {
- "pathOrCode": "パス/コード",
- "type": "種類"
- },
- "MsiRule": {
- "operator": "演算子",
- "operatorTooltip": "MSI 製品のバージョン検証の比較演算子を選択します。",
- "productCode": "MSI 製品コード",
- "productCodeTooltip": "アプリの有効な MSI 製品コードです。",
- "productVersion": "値",
- "productVersionCheck": "MSI 製品のバージョンの確認",
- "productVersionCheckTooltip": "MSI 製品コードだけでなく MSI 製品バージョンも確認するには、[はい] を選択します。",
- "productVersionTooltip": "アプリの MSI 製品バージョンを入力します。"
- },
- "RegistryRule": {
- "DetectionMethodOptions": {
- "integerComparison": "整数値を比較",
- "keyDoesNotExist": "キーがありません",
- "keyExists": "キーが存在します",
- "stringComparison": "文字列を比較",
- "valueDoesNotExist": "値が存在しない",
- "valueExists": "値が存在する",
- "versionComparison": "バージョンの比較"
- },
- "associatedWith32Bit": "64 ビット クライアント上で 32 ビット アプリに関連付ける",
- "associatedWith32BitTooltip": "64 ビット クライアント上で 32 ビットのレジストリを検索するには、[はい] を選択します。[いいえ] (既定) を選択すると、64 ビット クライアント上で 64 ビットのレジストリが検索されます。32 ビットのクライアントでは、常に 32 ビットのレジストリが検索されます。",
- "detectionMethod": "検出方法",
- "detectionMethodTooltip": "アプリのプレゼンスを検証するために使用する検出方法の種類を選択します。",
- "keyPath": "キー パス",
- "keyPathTooltip": "検出する値を含むレジストリ エントリの完全なパス。",
- "operator": "演算子",
- "operatorTooltip": "比較の検証に使用する検出方法の演算子を選択します。",
- "value": "値",
- "valueName": "値の名前",
- "valueNameTooltip": "検出するレジストリ値の名前。",
- "valueTooltip": "選択した検出方法に一致する値を選択します。"
- },
- "RuleTypeOptions": {
- "file": "ファイル",
- "mSI": "MSI",
- "registry": "レジストリ"
- },
- "gridAriaLabel": "検出規則",
- "header": "このアプリのプレゼンスを示す規則を作成します。",
- "noRulesSelectedPlaceholder": "規則は指定されていません。",
- "ruleTableLimit": "検出規則は 25 個まで追加できます",
- "ruleType": "規則の種類",
- "ruleTypeTooltip": "追加する検出ルールの種類を選択します。"
- },
- "RuleConfigurationOptions": {
- "customScript": "カスタム検出スクリプトを使用する",
- "manual": "検出規則を手動で構成する"
- },
- "bladeTitle": "検出規則",
- "header": "アプリのプレゼンスを検出するために使用されるアプリ固有のルールを構成します。",
- "rulesFormat": "規則の形式",
- "rulesFormatTooltip": "検出規則を手動で構成するか、またはカスタム スクリプトを使用してアプリのプレゼンスを検出するかを選択します。",
- "selectorLabel": "検出規則"
- },
- "AppType": {
- "androidEnterpriseSystemApp": "Android Enterprise システム アプリ",
- "androidForWorkApp": "マネージド Google Play ストア アプリ",
- "androidLobApp": "Android 基幹業務アプリ",
- "androidStoreApp": "Android ストア アプリ",
- "builtInAndroid": "組み込み Android アプリ",
- "builtInApp": "組み込みアプリ",
- "builtInIos": "組み込みの iOS アプリ",
- "default": "",
- "iosLobApp": "iOS 基幹業務アプリ",
- "iosStoreApp": "iOS ストア アプリ",
- "iosVppApp": "iOS Volume Purchase Program アプリ",
- "lineOfBusinessApp": "基幹業務アプリ",
- "macOSDmgApp": "macOS のアプリ (DMG)",
- "macOSEdgeApp": "Microsoft Edge (macOS)",
- "macOSLobApp": "macOS 基幹業務アプリ",
- "macOSMdatpApp": "Microsoft Defender ATP (macOS)",
- "macOSOfficeSuiteApp": "Microsoft 365 アプリ (macOS)",
- "macOsVppApp": "macOS Volume Purchase Program アプリ",
- "managedAndroidLobApp": "マネージド Android 基幹業務アプリ",
- "managedAndroidStoreApp": "マネージド Android ストア アプリ",
- "managedGooglePlayApp": "マネージド Google Play ストア アプリ",
- "managedGooglePlayPrivateApp": "マネージド Google Play プライベート アプリ",
- "managedGooglePlayWebApp": "マネージド Google Play Web リンク",
- "managedIosLobApp": "マネージド iOS 基幹業務アプリ",
- "managedIosStoreApp": "マネージド iOS ストア アプリ",
- "microsoftStoreForBusinessApp": "ビジネス向け Microsoft ストア アプリ",
- "microsoftStoreForBusinessReleaseManagedApp": "ビジネス向け Microsoft Store ",
- "officeSuiteApp": "Microsoft 365 Apps (Windows 10 以降)",
- "webApp": "Web リンク",
- "windowsAppXLobApp": "Windows AppX 基幹業務アプリ",
- "windowsClassicApp": "Windows アプリ (Win32)",
- "windowsEdgeApp": "Microsoft Edge (Windows 10 以降)",
- "windowsMobileMsiLobApp": "Windows MSI 基幹業務アプリ",
- "windowsPhone81AppXBundleLobApp": "Windows Phone 8.1 AppX 基幹業務アプリ",
- "windowsPhone81AppXLobApp": "Windows Phone 8.1 AppX 基幹業務アプリ",
- "windowsPhone81StoreApp": "Windows Phone 8.1 ストア アプリ",
- "windowsPhoneXapLobApp": "Windows Phone XAP 基幹業務アプリ",
- "windowsStoreApp": "Microsoft Store アプリ",
- "windowsUniversalAppXLobApp": "Windows Universal AppX 基幹業務アプリ",
- "windowsUniversalLobApp": "Windows Universal 基幹業務アプリ"
- },
- "PolicyType": {
- "AttackSurfaceReductionRules": {
- "configMgr": "攻撃の回避規則 (ConfigMgr)"
- },
- "EndpointDetectionandResponse": {
- "mDE": "エンドポイントの検出と応答"
- },
- "EndpointSecurityTemplate": {
- "aSRAppBrowserSecurity": "アプリとブラウザーの分離",
- "aSRApplicationControl": "アプリケーション制御",
- "aSRAttackSurfaceReduction": "攻撃の回避規則",
- "aSRDeviceControl": "デバイス制御",
- "aSRExploitProtection": "Exploit Protection",
- "aSRWebProtection": "Web 保護 (Microsoft Edge レガシ)",
- "aVExclusions": "Microsoft Defender ウイルス対策の除外",
- "antivirus": "Microsoft Defender ウイルス対策",
- "cloudPC": "Windows 365 セキュリティ ベースライン",
- "default": "エンドポイント セキュリティ",
- "defenderTest": "Microsoft Defender for Endpoint デモ",
- "diskEncryption": "Bitlocker",
- "eDR": "エンドポイントの検出と応答",
- "edgeSecurityBaseline": "Microsoft Edge ベースライン",
- "edgeSecurityBaselinePreview": "プレビュー: Microsoft Edge ベースライン",
- "editionUpgradeConfiguration": "エディションのアップグレードおよびモードの切り替え",
- "firewall": "Microsoft Defender ファイアウォール",
- "firewallRules": "Microsoft Defender ファイアウォール規則",
- "identityProtection": "アカウント保護",
- "identityProtectionPreview": "アカウント保護 (プレビュー)",
- "mDMSecurityBaseline1810": "2018 年 10 月の Windows 10 以降の MDM セキュリティ ベースライン",
- "mDMSecurityBaseline1810Preview": "プレビュー: 2018 年 10 月の Windows 10 以降の MDM セキュリティ ベースライン",
- "mDMSecurityBaseline1810PreviewBeta": "プレビュー: 2018 年 10 月の Windows 10 MDM セキュリティ ベースライン (ベータ版)",
- "mDMSecurityBaseline1906": "2019 年 5 月の Windows 10 以降の MDM セキュリティ ベースライン",
- "mDMSecurityBaseline2004": "2020 年 8 月の Windows 10 以降の MDM セキュリティ ベースライン",
- "mDMSecurityBaseline2101": "2020 年 12 月の Windows 10 以降の MDM セキュリティ ベースライン",
- "macOSAntivirus": "ウイルス対策",
- "macOSDiskEncryption": "FileVault",
- "macOSFirewall": "macOS ファイアウォール",
- "microsoftDefenderBaseline": "Microsoft Defender for Endpoint ベースライン",
- "office365Baseline": "Microsoft Office O365 ベースライン",
- "office365BaselinePreview": "プレビュー: Microsoft Office O365 ベースライン",
- "securityBaselines": "セキュリティ ベースライン",
- "test": "テスト テンプレート",
- "testFirewallRulesSecurityTemplateName": "Microsoft Defender ファイアウォール規則 (テスト)",
- "testIdentityProtectionSecurityTemplateName": "アカウントの保護 (テスト)",
- "windowsSecurityExperience": "Windows セキュリティ エクスペリエンス"
- },
- "Firewall": {
- "mDE": "Microsoft Defender ファイアウォール"
- },
- "FirewallRules": {
- "mDE": "Microsoft Defender ファイアウォール規則"
- },
- "administrativeTemplates": "管理用テンプレート",
- "androidCompliancePolicy": "Android コンプライアンス ポリシー",
- "aospDeviceOwnerCompliancePolicy": "Android (AOSP) コンプライアンス ポリシー",
- "applicationControl": "アプリケーション制御",
- "custom": "カスタム",
- "deliveryOptimization": "配信の最適化",
- "derivedPersonalIdentityVerificationCredential": "派生資格情報",
- "deviceFeatures": "デバイス機能",
- "deviceFirmwareConfigurationInterface": "デバイスのファームウェア構成インターフェイス",
- "deviceLock": "デバイス ロック",
- "deviceOwner": "フル マネージド、専用、会社所有の仕事用プロファイル",
- "deviceRestrictions": "デバイスの制限",
- "deviceRestrictionsWindows10Team": "デバイスの制限 (Windows 10 Team)",
- "domainJoinPreview": "ドメインへの参加",
- "editionUpgradeAndModeSwitch": "エディションのアップグレードおよびモードの切り替え",
- "education": "教育",
- "email": "電子メール",
- "emailSamsungKnoxOnly": "メール (Samsung KNOX のみ)",
- "endpointProtection": "Endpoint Protection",
- "expeditedCheckin": "モバイル デバイス管理の構成",
- "exploitProtection": "Exploit Protection",
- "extensions": "拡張機能",
- "hardwareConfigurations": "BIOS 構成",
- "identityProtection": "Identity Protection",
- "iosCompliancePolicy": "iOS コンプライアンス ポリシー",
- "kiosk": "キオスク",
- "macCompliancePolicy": "Mac コンプライアンス ポリシー",
- "microsoftDefenderAntivirus": "Microsoft Defender ウイルス対策",
- "microsoftDefenderAntivirusexclusions": "Microsoft Defender ウイルス対策の除外",
- "microsoftDefenderAtpWindows10Desktop": "Microsoft Defender for Endpoint (Windows 10 以降を実行するデスクトップ デバイス)",
- "microsoftDefenderFirewallRules": "Microsoft Defender ファイアウォール規則",
- "microsoftEdgeBaseline": "Microsoft Edge ベースライン",
- "mxProfileZebraOnly": "MX プロファイル (Zebra のみ)",
- "networkBoundary": "ネットワーク境界",
- "oemConfig": "OEMConfig",
- "overrideGroupPolicy": "グループ ポリシーのオーバーライド",
- "pkcsCertificate": "PKCS 証明書",
- "pkcsImportedCertificate": "PKCS のインポートされた証明書",
- "preferenceFile": "設定ファイル",
- "presets": "プリセット",
- "scepCertificate": "SCEP 証明書",
- "secureAssessmentEducation": "セキュリティで保護された評価 (教育)",
- "settingsCatalog": "設定カタログ",
- "sharedMultiUserDevice": "共有のマルチユーザーのデバイス",
- "softwareUpdates": "ソフトウェア更新プログラム",
- "trustedCertificate": "信頼済み証明書",
- "unknown": "不明",
- "unsupported": "サポートされていません",
- "vpn": "VPN",
- "wiFi": "Wi-Fi",
- "wiFiImport": "Wi-Fi インポート",
- "windows10CompliancePolicy": "Windows 10/11 コンプライアンス ポリシー",
- "windows10MobileCompliancePolicy": "Windows 10 Mobileコンプライアンス ポリシー",
- "windows10XScep": "SCEP 証明書 - テスト",
- "windows10XTrustedCertificate": "信頼された証明書 - テスト",
- "windows10XVPN": "VPN - テスト",
- "windows10XWifi": "WIFI - テスト",
- "windows8CompliancePolicy": "Windows 8 コンプライアンス ポリシー",
- "windowsHealthMonitoring": "Windows の正常性の監視",
- "windowsInformationProtection": "Windows Information Protection",
- "windowsPhoneCompliancePolicy": "Windows Phone コンプライアンス ポリシー",
- "windowsUpdateforBusiness": "Windows Update for Business",
- "wiredNetwork": "ワイヤード (有線) ネットワーク",
- "workProfile": "個人所有の仕事用プロファイル"
- },
- "OfficeSuiteAppsTab": {
- "acceptLicenseOnBehalfOfUsersLabel": "ユーザーの代理で Microsoft ソフトウェアライセンス条項に同意する",
- "appSuiteConfigurationLabel": "アプリ スイートの構成",
- "appSuiteInformationLabel": "アプリ スイートの情報",
- "appsToBeInstalledLabel": "スイートの一部としてインストールされるアプリ",
- "architectureLabel": "アーキテクチャ",
- "architectureTooltip": "デバイスに Microsoft 365 アプリの 32 ビット版または 64 ビット版のいずれかがインストールされているかを定義します。",
- "configurationDesignerLabel": "構成デザイナー",
- "configurationFileLabel": "構成ファイル",
- "configurationSettingsFormatLabel": "構成設定の形式",
- "configureAppSuiteLabel": "アプリ スイートの構成",
- "configuredLabel": "構成済み",
- "currentVersionLabel": "現在のバージョン",
- "currentVersionTooltip": "これは、このスイートで構成されている現在の Office のバージョンです。この値は、新しいバージョンが構成されて保存されるときに更新されます。",
- "enableMicrosoftSearchAsDefaultTooltip": "Bing での Microsoft Search 用の Google Chrome 拡張機能がデバイスにインストールされているかどうかを判断するのに役立つバックグラウンド サービスをインストールします。",
- "enterXmlDataLabel": "XML データを入力する",
- "languagesLabel": "言語",
- "languagesTooltip": "既定では、Intune はオペレーティング システムの既定の言語で Office をインストールします。インストールする追加の言語を選択します。",
- "learnMoreText": "詳細",
- "newUpdateChannelTooltip": "アプリを新しい機能で更新する頻度を定義します。",
- "noCurrentVersionText": "現在のバージョンではありません",
- "noLanguagesSelectedLabel": "言語が選択されていない",
- "notConfiguredLabel": "構成されていません",
- "propertiesLabel": "プロパティ",
- "removeOtherVersionsLabel": "その他のバージョンの削除",
- "removeOtherVersionsTooltip": "[はい] を選択して、ユーザー デバイスから他のバージョンの Office (MSI) を削除します。",
- "selectOfficeAppsLabel": "Office アプリを選択する",
- "selectOfficeAppsTooltip": "スイートの一部としてインストールする Office 365 アプリを選択します。",
- "selectOtherOfficeAppsLabel": "他の Office アプリを選択する (ライセンスが必要)",
- "selectOtherOfficeAppsTooltip": "これらの他の Office アプリのライセンスをお持ちの場合、そのアプリを Intune に登録することもできます。",
- "specificVersionLabel": "特定バージョン",
- "updateChannelLabel": "更新チャネル",
- "updateChannelTooltip": "アプリを新しい機能で更新する頻度を定義します。
\r\n月次 - 使用可能になったらすぐに Office の最新の機能をユーザーに提供します。
\r\n月次エンタープライズ チャネル - 1 か月に 1 回、毎月第 2 火曜日に最新の機能をユーザーに提供します。
\r\n月次 (対象指定) - 近日中に提供される月次チャネル リリースを早期に提供します。これはサポートされている更新チャネルであり、通常、新機能を含む月次チャネル リリースの場合は少なくとも 1 週間前に利用できます。
\r\n半期 - Office の新機能を 1 年間に数回のみ提供します。
\r\n半期 (対象指定) - パイロット ユーザーとアプリケーション互換性テスト担当者に、次の半期をテストする機会を提供します。",
- "useMicrosoftSearchAsDefault": "Microsoft Search in Bing のバックグラウンド サービスをインストールする",
- "useSharedComputerActivationLabel": "共有コンピューターのライセンス認証を使用",
- "useSharedComputerActivationTooltip": "共有コンピューターのアクティブ化を使用すると、複数のユーザーが使用するコンピューターに Microsoft 365 アプリを展開できます。通常、ユーザーは、5 台の PC など、限られた数のデバイス上でしか Microsoft 365 アプリをインストールしてアクティブ化できません。共有コンピューターのアクティブ化で Microsoft 365 アプリを使用すると、PC の数の制限を受けません。",
- "versionToInstallLabel": "インストールするバージョン",
- "versionToInstallTooltip": "インストールする Office のバージョンを選択します。",
- "xLanguagesSelectedLabel": "{0} 個の言語が選択済み",
- "xmlConfigurationLabel": "XML 構成"
- },
- "OfficeApplicationType": {
- "access": "Access",
- "bing": "Microsoft Search (既定)",
- "excel": "Excel",
- "groove": "OneDrive (Groove)",
- "lync": "Skype for Business",
- "oneDrive": "OneDrive デスクトップ",
- "oneNote": "OneNote",
- "outlook": "Outlook",
- "powerPoint": "PowerPoint",
- "publisher": "Publisher",
- "teams": "Teams",
- "word": "Word"
- },
- "WindowsQualityUpdateProfile": {
- "Details": {
- "DaysUntilForcedReboot": {
- "label": "再起動が強制されるまでの待機日数"
- },
- "Description": {
- "label": "説明"
- },
- "Name": {
- "label": "名前"
- },
- "QualityUpdateRelease": {
- "label": "デバイスの OS バージョンが次より小さい場合に品質更新プログラムを迅速にインストールする:"
- },
- "bladeTitle": "Windows 10 以降の品質更新プログラム (プレビュー)",
- "loadError": "読み込みに失敗しました。"
- },
- "TabName": {
- "qualityUpdateSettings": "設定"
- },
- "infoBoxText": "既存の Windows 10 以降の更新リング ポリシー以外で現在利用可能な専用の品質更新プログラム コントロールは、指定された修正プログラム レベルより低いデバイスの品質更新プログラムを迅速に処理する機能だけです。今後、追加のコントロールが使用可能になります。",
- "warningBoxText": "ソフトウェア更新プログラムを迅速にインストール処理すると、必要に応じてコンプライアンスを満たすまでの時間を短縮するのに役立ちますが、エンド ユーザーの生産性に大きく影響します。営業時間中の再起動が大幅に増えるおそれがあります。"
- },
- "Devices": {
- "General": {
- "android": "Android"
- },
- "aOSP": "Android オープンソース プロジェクト",
- "android": "Android デバイス管理者",
- "androidWorkProfile": "Android Enterprise (仕事用プロファイル)",
- "iOS": "iOS/iPadOS",
- "mac": "macOS",
- "windows": "Windows (MDM)",
- "windows10": "Windows 10 以降",
- "windowsHomeSku": "Windows Home SKU",
- "windowsMobile": "Windows Mobile"
- },
"SettingDetails": {
"CustomPolicyConfigurationProfile": {
"uploadControlPlaceHolderText": "構成プロファイル ファイルを選択してください"
@@ -3675,7 +1707,7 @@
"aESGCM128": "AES-128-GCM (16 オクテット ICV)",
"aESGCM256": "AES-256-GCM (16 オクテット ICV)",
"aadSharedDeviceDataClearAppsDescription": "共有デバイス モード用に最適化されていないアプリをリストに追加します。共有デバイス モード用に最適化されたアプリからユーザーがサインアウトするたびに、アプリのローカル データがクリアされます。Android 9 以降を実行している、共有モードに登録されている専用デバイスで使用できます。",
- "aadSharedDeviceDataClearAppsName": "共有デバイス モード用に最適化されていないアプリでローカル データをクリアする (パブリック プレビュー)",
+ "aadSharedDeviceDataClearAppsName": "共有デバイス モード用に最適化されていないアプリでローカル データをクリアする",
"accountsPageDescription": "[設定] アプリの [アカウント] へのアクセスをブロックします。",
"accountsPageName": "アカウント",
"accountsSignInAssistantSettingsDescription": "Microsoft サインイン アシスタント サービス (wlidsvc) をブロックします。この設定が構成されていない場合、wlidsvc NT サービスはユーザーが制御できます (手動で開始)",
@@ -5503,7 +3535,7 @@
"enableEndUserAccessToDefenderName": "Defender へのエンドユーザー アクセス",
"enableEngagedRestartDescription": "再起動猶予期間に切り替えることをユーザーに許可する設定を有効にします。",
"enableEngagedRestartName": "ユーザーに再起動を許可する (再起動猶予期間)",
- "enableIdentityPrivacyDescription": "このプロパティは、入力されたテキストでユーザー名をマスクします。たとえば、'anonymous' と入力すると、実際のユーザー名を使ってこの Wi-Fi 接続に認証する各ユーザーは、'anonymous' として表示されます。",
+ "enableIdentityPrivacyDescription": "このプロパティでは、入力したテキストでユーザー名がマスキングされます。たとえば、「anonymous」と入力すると、実際のユーザー名を使用してこの Wi-Fi 接続で認証を受ける各ユーザーは `anonymous` として表示されます。デバイス ベースの証明書認証を使用する場合は、これが必要になる場合があります。",
"enableIdentityPrivacyName": "ID プライバシー (外部 ID)",
"enableNetworkInspectionSystemDescription": "Network Inspection System (NIS) で署名によって検出された悪意のあるトラフィックをブロックします",
"enableNetworkInspectionSystemName": "Network Inspection System (NIS)",
@@ -7252,6 +5284,8 @@
"presharedKeyEncodingDescription": "事前共有キーを UTF-8 を使用してエンコードします。",
"presharedKeyEncodingName": "事前共有キーのエンコード",
"preventAny": "境界を越えて共有できないようにする",
+ "primaryAuthenticationMethodName": "プライマリ認証方法",
+ "primaryAuthenticationMethodTEAPDescription": "ユーザーを認証する主な方法を選択します。[証明書] を選択する場合は、デバイスにも展開されている証明書プロファイル (SCEP または PKCS) のいずれかを選択します。これは、デバイスからサーバーに提示される ID 証明書です。",
"primarySMTPAddressOption": "プライマリ SMTP アドレス",
"printersColumns": "例: プリンターの DNS 名",
"printersDescription": "ネットワーク ホスト名に基づいてプリンターを自動的に準備します。この設定では、共有プリンターはサポートされません。",
@@ -7663,6 +5697,8 @@
"searchEnableRemoteQueriesName": "リモート クエリ",
"secondActiveEthernet": "2 番目のアクティブなイーサネット",
"secondEthernet": "2 番目のイーサネット",
+ "secondaryAuthenticationMethodName": "セカンダリ認証方法",
+ "secondaryAuthenticationMethodTEAPDescription": "ユーザーを認証する 2 つ目の方法を選択します。[証明書] を選択する場合は、デバイスにも展開されている証明書プロファイル (SCEP または PKCS) のいずれかを選択します。これは、デバイスからサーバーに提示される ID 証明書です。",
"secretKey": "秘密鍵:",
"secureBootEnabledDescription": "デバイス上でセキュア ブートの有効化が必要",
"secureBootEnabledName": "デバイス上でセキュア ブートの有効化が必要",
@@ -8074,6 +6110,7 @@
"systemUpdateWindow9": "午前 4 時 30 分",
"systemWindowsBlockedDescription": "トースト、着信、発信、システム警告、システム エラーなどのウィンドウ通知を無効にします。",
"systemWindowsBlockedName": "通知ウィンドウ",
+ "tEAPName": "Tunnel EAP (TEAP)",
"tLSMinMax": "TLS の最小バージョンは、TLS の最大バージョン以下である必要があります。",
"tLSVersionRangeMaximum": "TLS バージョン範囲の最大",
"tLSVersionRangeMaximumDescription": "TLS の最大バージョン 1.0、1.1、1.2 を入力してください。空白のままにすると、既定値の 1.2 が使用されます。",
@@ -8126,6 +6163,17 @@
"timeWindowSameStartEndDayTime": "終了日時を開始日時と同じにすることはできません。",
"timeZoneDescription": "対象デバイスのタイム ゾーンを選択します。",
"timeZoneName": "タイム ゾーン",
+ "timeoutFifteenMinutes": "15 分",
+ "timeoutFiveMinutes": "5 分",
+ "timeoutFourHours": "4 時間",
+ "timeoutNever": "タイムアウトなし",
+ "timeoutOneHour": "1 時間",
+ "timeoutOneMinute": "1 分",
+ "timeoutTenMinutes": "10 分",
+ "timeoutThirtyMinutes": "30 分間",
+ "timeoutThreeMinutes": "3 分",
+ "timeoutTwoHours": "2 時間",
+ "timeoutTwoMinutes": "2 分",
"toggleConfigurationPkgDescription": "Microsoft Defender for Endpoint クライアントのオンボードに使用する署名付き構成パッケージをアップロードしてください",
"toggleConfigurationPkgName": "Microsoft Defender for Endpoint クライアント構成パッケージの種類:",
"trafficRuleAppName": "アプリ",
@@ -8824,6 +6872,33 @@
"win10WifiWirelessSecurityTypeName": "ワイヤレス セキュリティの種類",
"win10WifiWirelessSecurityTypeOpen": "開く (認証なし)",
"win10WifiWirelessSecurityTypeWPA": "WPA/WPA2 - パーソナル",
+ "win10WiredAuthenticationModeDescription": "ユーザーとデバイスのいずれかを認証するか、またはゲスト認証を使用する (なし) かを選択します。証明書認証を使用する場合、証明書の種類が認証の種類と一致していることをご確認ください。",
+ "win10WiredAuthenticationModeName": "認証モード",
+ "win10WiredAuthenticationPeriodDescription": "クライアントで失敗にするまでに認証の試行を待機する秒数。1 から 3600 までの数値を選択してください。値を指定しないと、18 秒が使用されます。",
+ "win10WiredAuthenticationPeriodName": "認証期間",
+ "win10WiredAuthenticationRetryDelayPeriodDescription": "認証が失敗してから次の認証が試行されるまでの秒数。1 から 3600 の値を選択してください。値を指定しないと、1 秒が使用されます。",
+ "win10WiredAuthenticationRetryDelayPeriodName": "認証の再試行の遅延期間",
+ "win10WiredFIPSComplianceDescription": "デジタル式に格納された機密扱いではない機密情報を保護するために暗号化ベースのセキュリティ システムを使用するすべての米国連邦政府機関では、FIPS 140-2 標準に対する検証が必要です。",
+ "win10WiredFIPSComplianceName": "ワイヤード (有線) プロファイルを Federal Information Processing Standards (FIPS) に強制的に準拠させる",
+ "win10WiredGuest": "ゲスト",
+ "win10WiredMachine": "マシン",
+ "win10WiredMachineOrUser": "ユーザーまたはマシン",
+ "win10WiredMaximumAuthenticationFailuresDescription": "この資格情報セットの認証エラーの最大数を入力してください。値を指定しないと、試行回数は 1 回になります。",
+ "win10WiredMaximumAuthenticationFailuresName": "認証エラーの最大数",
+ "win10WiredMaximumEAPOLStartMessagesDescription": "EAPOL-Start メッセージの数に 1 から 100 の値を選択してください。値を指定しないと、最大 3 件のメッセージが送信されます。",
+ "win10WiredMaximumEAPOLStartMessagesName": "EAPOL-Start の最大数",
+ "win10WiredNetworkAuthenticationBlockPeriodDescription": "認証ブロック期間 (分)。認証の試行が失敗した後に自動認証の試行がブロックされる期間を指定するために使用します。0 から 1440 までの値を選択してください。",
+ "win10WiredNetworkAuthenticationBlockPeriodName": "ブロック期間 (分)",
+ "win10WiredNetworkAuthenticationModeName": "認証モード",
+ "win10WiredNetworkDoNotEnforceName": "強制しない",
+ "win10WiredNetworkEnforce8021XDescription": "ワイヤード (有線) ネットワークの自動構成サービスでポート認証に 802.1X の使用を必須にするかどうかを指定します。",
+ "win10WiredNetworkEnforce8021XName": "802.1x",
+ "win10WiredNetworkEnforceName": "強制",
+ "win10WiredRememberCredentialsDescription": "ワイヤード (有線) ネットワークへの初回接続時にユーザーの資格情報を入力するときにキャッシュを有効にするかどうかを選択します。キャッシュ済みの資格情報は後の接続に使用され、ユーザーが再入力する必要はありません。この設定を構成しない場合は、[はい] に設定するのと同じ操作です。",
+ "win10WiredRememberCredentialsName": "ログオンするたびに資格情報を記憶する",
+ "win10WiredStartPeriodDescription": "EAPOL-Start メッセージを送信するまでに待機する秒数。1 から 3600 の値を選択してください。値を指定しないと、5 秒が使用されます。",
+ "win10WiredStartPeriodName": "開始期間",
+ "win10WiredUser": "ユーザー",
"win10appLockerApplicationControlAllowDescription": "これらのアプリの実行は許可されます",
"win10appLockerApplicationControlAllowName": "強制",
"win10appLockerApplicationControlAuditComponentsAndStoreAppsDescription": "[監査のみ] モードでは、すべてのイベントがローカルのクライアント イベント ログに記録されますが、アプリの実行はブロックされません。Windows コンポーネントと Microsoft ストア アプリは、セキュリティ要件に合格したものとしてログに記録されます。",
@@ -9165,7 +7240,6 @@
"deviceConditionsInfoParagraph2": "登録済みデバイスについて類似のデバイス ベースの設定を構成できます。",
"deviceConditionsInfoParagraph2LinkText": "登録済みデバイスのデバイス コンプライアンス設定の構成については、こちらを参照してください。",
"deviceId": "デバイス ID",
- "deviceLockComplexityValidationFailureNotes": "注:
\r\n\r\n - デバイスのロックでは、 Android 11 以降を対象とした \"低\"、\"中\" または \"高\" のパスワードの複雑性が必要になる場合があります。Android 10 以前で動作しているデバイスでは、複雑性の値を\"低/中/高\" に設定すると、 既定で \"低の複雑性\" に対して予期される動作になります。
\r\n - 以下のパスワード定義は変更される可能性があります。様々なパスワードの複雑性レベルの最新の定義に関しては DevicePolicyManager|Android Developers を参照してください|。
\r\n
\r\n\r\n低
\r\n\r\n - パスワードは、連続するシーケンス (4444) または順番のシーケンス (1234、4321、2468) を使ったパターンや PIN でも構いません。
\r\n
\r\n\r\n中
\r\n\r\n - 長さが 4 文字以上で繰り返し (4444) や順番のシーケンス (1234, 4321, 2468) などを使っていない PIN
\r\n - 長さが 4 文字以上、英文字パスワード
\r\n - 長さが 4 文字以上の英数字パスワード
\r\n
\r\n\r\n高
\r\n\r\n - 長さが 8 文字以上で繰り返し (4444) や順番 (1234, 4321, 2468) のシーケンスのない PIN
\r\n - 長さが 6 文字以上の英文字のパスワード
\r\n - 長さが 6 文字以上の英数字パスワード
\r\n
\r\n",
"deviceLockedOpenFilesOptionsText": "デバイスがロックされていて、開いているファイルがあるとき",
"deviceLockedOptionText": "デバイスのロック時",
"deviceManufacturer": "デバイス製造元",
@@ -9463,7 +7537,7 @@
"reporting": "レポート",
"reports": "レポート",
"require": "必要",
- "requireDeviceLockComplexityOnApps": "デバイス ロックの複雑性を要求する",
+ "requireDeviceLockOnApps": "Require device lock",
"requireThreatScanOnApps": "アプリの脅威のスキャンが必須",
"requiredField": "このフィールドを空にすることはできません",
"requiredSafetyNetEvaluationType": "必要な SafetyNet 評価の種類",
@@ -9659,6 +7733,7 @@
"yourDataIsBeingDownloadedEllipsis": "データがダウンロードされています。これには時間がかかる場合があります...",
"yourDataIsBeingDownloadedMinutes": "データがダウンロードされています。これには数分かかる場合があります...",
"yourProtectionLevel": "保護のレベル",
+ "rules": "ルール",
"basics": "基本",
"modeTableHeader": "グループ モード",
"appAssignmentMsg": "グループ",
@@ -9695,221 +7770,2042 @@
"licenseTypeDevice": "デバイス",
"licenseTypeUser": "ユーザー"
},
- "Languages": {
- "ar-aE": "アラビア語 (アラブ首長国連邦)",
- "ar-bH": "アラビア語 (バーレーン)",
- "ar-dZ": "アラビア語 (アルジェリア)",
- "ar-eG": "アラビア語 (エジプト)",
- "ar-iQ": "アラビア語 (イラク)",
- "ar-jO": "アラビア語 (ヨルダン)",
- "ar-kW": "アラビア語 (クウェート)",
- "ar-lB": "アラビア語 (レバノン)",
- "ar-lY": "アラビア語 (リビア)",
- "ar-mA": "アラビア語 (モロッコ)",
- "ar-oM": "アラビア語 (オマーン)",
- "ar-qA": "アラビア語 (カタール)",
- "ar-sA": "アラビア語 (サウジアラビア)",
- "ar-sY": "アラビア語 (シリア)",
- "ar-tN": "アラビア語 (チュニジア)",
- "ar-yE": "アラビア語 (イエメン)",
- "az-cyrl": "アゼルバイジャン語 (キリル、アゼルバイジャン)",
- "az-latn": "アゼルバイジャン語 (ラテン、アゼルバイジャン)",
- "bn-bD": "ベンガル語 (バングラデシュ)",
- "bn-iN": "ベンガル語 (インド)",
- "bs-cyrl": "ボスニア語 (キリル)",
- "bs-latn": "ボスニア語 (ラテン)",
- "zh-cN": "中国語 (中華人民共和国)",
- "zh-hK": "中国語 (香港: 中華人民共和国香港特別行政区)",
- "zh-mO": "中国語 (マカオ S.A.R.)",
- "zh-sG": "中国語 (シンガポール)",
- "zh-tW": "中国語 (台湾)",
- "hr-bA": "クロアチア語 (ラテン)",
- "hr-hR": "クロアチア語 (クロアチア)",
- "nl-bE": "オランダ語 (ベルギー)",
- "nl-nL": "オランダ語 (オランダ)",
- "en-aU": "英語 (オーストラリア)",
- "en-bZ": "英語 (ベリーズ)",
- "en-cA": "英語 (カナダ)",
- "en-cabn": "英語 (カリブ)",
- "en-iE": "英語 (アイルランド)",
- "en-iN": "英語 (インド)",
- "en-jM": "英語 (ジャマイカ)",
- "en-mY": "英語 (マレーシア)",
- "en-nZ": "英語 (ニュージーランド)",
- "en-pH": "英語 (フィリピン共和国)",
- "en-sG": "英語 (シンガポール)",
- "en-tT": "英語 (トリニダード・トバゴ)",
- "en-uK": "英語 (英国)",
- "en-uS": "英語 (米国)",
- "en-zA": "英語 (南アフリカ)",
- "en-zW": "英語 (ジンバブエ)",
- "fr-bE": "フランス語 (ベルギー)",
- "fr-cA": "フランス語 (カナダ)",
- "fr-cH": "フランス語 (スイス)",
- "fr-fR": "フランス語 (フランス)",
- "fr-lU": "フランス語 (ルクセンブルク)",
- "fr-mC": "フランス語 (モナコ)",
- "de-aT": "ドイツ語 (オーストリア)",
- "de-cH": "ドイツ語 (スイス)",
- "de-dE": "ドイツ語 (ドイツ)",
- "de-lI": "ドイツ語 (リヒテンシュタイン)",
- "de-lU": "ドイツ語 (ルクセンブルク)",
- "iu-cans": "イヌクティトット語 (カナダ音節文字、カナダ)",
- "iu-latn": "イヌクティトット語 (ラテン、カナダ)",
- "it-cH": "イタリア語 (スイス)",
- "it-iT": "イタリア語 (イタリア)",
- "ms-bN": "マレー語 (ブルネイ・ダルサラーム国)",
- "ms-mY": "マレー語 (マレーシア)",
- "mn-cN": "モンゴル語 (伝統的モンゴル文字、中国)",
- "mn-mN": "モンゴル語 (キリル、モンゴル)",
- "no-nB": "ノルウェー語ブークモール (ノルウェー)",
- "no-nn": "ノルウェー語 ニーノシク (ノルウェー)",
- "pt-bR": "ポルトガル語 (ブラジル)",
- "pt-pT": "ポルトガル語 (ポルトガル)",
- "quz-bO": "ケチュア語 (ボリビア)",
- "quz-eC": "ケチュア語 (エクアドル)",
- "quz-pE": "ケチュア語 (ペルー)",
- "smj-nO": "ルレ サーミ語 (ノルウェー)",
- "smj-sE": "ルレ サーミ語 (スウェーデン)",
- "se-fI": "北サーミ語 (フィンランド)",
- "se-nO": "北サーミ語 (ノルウェー)",
- "se-sE": "北サーミ語 (スウェーデン)",
- "sma-nO": "南サーミ語 (ノルウェー)",
- "sma-sE": "南サーミ語 (スウェーデン)",
- "smn": "イナリ サーミ語 (フィンランド)",
- "sms": "スコルト サーミ語 (フィンランド)",
- "sr-Cyrl-bA": "セルビア語 (キリル)",
- "sr-Cyrl-rS": "セルビア語 (キリル、セルビアおよびモンテネグロ (旧))",
- "sr-Latn-bA": "セルビア語 (ラテン)",
- "sr-Latn-rS": "セルビア語 (ラテン、セルビア)",
- "dsb": "低地ソルブ語 (ドイツ)",
- "hsb": "高地ソルブ語 (ドイツ)",
- "es-es-tradnl": "スペイン語 (スペイン、トラディショナル ソート)",
- "es-aR": "スペイン語 (アルゼンチン)",
- "es-bO": "スペイン語 (ボリビア)",
- "es-cL": "スペイン語 (チリ)",
- "es-cO": "スペイン語 (コロンビア)",
- "es-cR": "スペイン語 (コスタリカ)",
- "es-dO": "スペイン語 (ドミニカ共和国)",
- "es-eC": "スペイン語 (エクアドル)",
- "es-eS": "スペイン語 (スペイン)",
- "es-gT": "スペイン語 (グアテマラ)",
- "es-hN": "スペイン語 (ホンジュラス)",
- "es-mX": "スペイン語 (メキシコ)",
- "es-nI": "スペイン語 (ニカラグア)",
- "es-pA": "スペイン語 (パナマ)",
- "es-pE": "スペイン語 (ペルー)",
- "es-pR": "スペイン語 (プエルトリコ)",
- "es-pY": "スペイン語 (パラグアイ)",
- "es-sV": "スペイン語 (エルサルバドル)",
- "es-uS": "スペイン語 (米国)",
- "es-uY": "スペイン語 (ウルグアイ)",
- "es-vE": "スペイン語 (ベネズエラ)",
- "sv-fI": "スウェーデン語 (フィンランド)",
- "uz-cyrl": "ウズベク語 (キリル、ウズベキスタン)",
- "uz-latn": "ウズベク語 (ラテン、ウズベキスタン)",
- "af": "アフリカーンス語 (南アフリカ)",
- "sq": "アルバニア語 (アルバニア)",
- "am": "アムハラ語 (エチオピア)",
- "hy": "アルメニア語 (アルメニア)",
- "as": "アッサム語 (インド)",
- "ba": "バシュキール語 (ロシア)",
- "eu": "バスク語 (バスク語)",
- "be": "ベラルーシ語 (ベラルーシ)",
- "br": "ブルトン語 (フランス)",
- "bg": "ブルガリア語 (ブルガリア)",
- "ca": "カタルニア語 (カタルニア語)",
- "co": "コルシカ語 (フランス)",
- "cs": "チェコ語 (チェコ共和国)",
- "da": "デンマーク語 (デンマーク)",
- "prs": "ダリー語 (アフガニスタン)",
- "dv": "ディヘビ語 (モルディブ)",
- "et": "エストニア語 (エストニア)",
- "fo": "フェロー語 (フェロー諸島)",
- "fil": "フィリピノ語 (フィリピン)",
- "fi": "フィンランド語 (フィンランド)",
- "gl": "ガリシア語 (ガリシア)",
- "ka": "ジョージア語 (ジョージア)",
- "el": "ギリシャ語 (ギリシャ)",
- "gu": "グジャラート語 (インド)",
- "ha": "ハウサ語 (ラテン、ナイジェリア)",
- "he": "ヘブライ語 (イスラエル)",
- "hi": "ヒンディー語 (インド)",
- "hu": "ハンガリー語 (ハンガリー)",
- "is": "アイスランド語 (アイスランド)",
- "ig": "イボ語 (ナイジェリア)",
- "id": "インドネシア語 (インドネシア)",
- "ga": "アイルランド語 (アイルランド)",
- "xh": "コサ語 (南アフリカ)",
- "zu": "ズールー語 (南アフリカ)",
- "ja": "日本語 (日本)",
- "kn": "カナラ語 (インド)",
- "kk": "カザフ語 (カザフスタン)",
- "km": "クメール語 (カンボジア)",
- "rw": "キニアルワンダ語 (ルワンダ)",
- "sw": "スワヒリ語 (ケニア)",
- "kok": "コンカニ語 (インド)",
- "ko": "韓国語 (韓国)",
- "ky": "キルギス語 (キルギス)",
- "lo": "ラオス語 (ラオス人民民主共和国)",
- "lv": "ラトビア語 (ラトビア)",
- "lt": "リトアニア語 (リトアニア)",
- "lb": "ルクセンブルク語 (ルクセンブルク)",
- "mk": "マケドニア語 (北マケドニア)",
- "ml": "マラヤーラム語 (インド)",
- "mt": "マルタ語 (マルタ)",
- "mi": "マオリ語 (ニュージーランド)",
- "mr": "マラーティー語 (インド)",
- "moh": "モホーク語 (モホーク)",
- "ne": "ネパール語 (ネパール)",
- "oc": "オクシタン語 (フランス)",
- "or": "オディア語 (インド)",
- "ps": "パシュトゥー語 (アフガニスタン)",
- "fa": "ペルシャ語",
- "pl": "ポーランド語 (ポーランド)",
- "pa": "パンジャーブ語 (インド)",
- "ro": "ルーマニア語 (ルーマニア)",
- "rm": "ロマンシュ語 (スイス)",
- "ru": "ロシア語 (ロシア)",
- "sa": "サンスクリット語 (インド)",
- "st": "セソト サ レボア語 (南アフリカ)",
- "tn": "セツワナ語 (南アフリカ)",
- "si": "シンハラ語 (スリランカ)",
- "sk": "スロバキア語 (スロバキア)",
- "sl": "スロベニア語 (スロベニア)",
- "sv": "スウェーデン語 (スウェーデン)",
- "syr": "シリア語 (シリア)",
- "tg": "タジク語 (キリル、タジキスタン)",
- "ta": "タミール語 (インド)",
- "tt": "タタール語 (ロシア)",
- "te": "テルグ語 (インド)",
- "th": "タイ語 (タイ)",
- "bo": "チベット語 (中国)",
- "tr": "トルコ語 (トルコ)",
- "tk": "トルクメン語 (トルクメニスタン)",
- "uk": "ウクライナ語 (ウクライナ)",
- "ur": "ウルドゥー語 (パキスタン・イスラム共和国)",
- "vi": "ベトナム語 (ベトナム)",
- "cy": "ウェールズ語 (イギリス)",
- "wo": "ウォロフ語 (セネガル)",
- "ii": "イ語 (中国)",
- "yo": "ヨルバ語 (ナイジェリア)"
- },
- "AppProtection": {
- "allAppTypes": "すべてのアプリの種類を対象にする",
- "androidPlatformLabel": "Android",
- "appsInAndroidWorkProfile": "Android 作業プロファイルでのアプリ",
- "appsOnIntuneManagedDevices": "Intune マネージド デバイス上のアプリ",
- "appsOnUnmanagedDevices": "アンマネージド デバイス上のアプリ",
- "iOSPlatformLabel": "iOS/iPadOS",
- "iosAndroidMacPlatformLabel": "iOS、Android、Mac",
- "iosAndroidPlatformLabel": "iOS、Android",
- "macPlatformLabel": "Mac",
- "notAvailable": "使用できません",
- "windows10PlatformLabel": "Windows 10 以降",
- "withEnrollment": "登録済み",
- "withoutEnrollment": "未登録"
- },
+ "ApplicabilityRules": {
+ "GridLabel": {
+ "property": "プロパティ",
+ "rule": "ルール",
+ "ruleDetails": "ルールの詳細",
+ "value": "値"
+ },
+ "assignIf": "プロファイルを割り当てる条件:",
+ "deleteWarning": "これにより、選択した適用性ルールが削除されます",
+ "dontAssignIf": "プロファイルを割り当てない条件:",
+ "editionDisplayText": "{0} {1}",
+ "editionDisplayTextMore": "さらに {0} 個",
+ "instructions": "割り当てられたグループ内にこのプロファイルを適用する方法を指定してください。Intune では、これらのルールの結合条件に一致するデバイスにのみプロファイルを適用します。",
+ "maxText": "最大",
+ "minText": "最小",
+ "noActionRow": "適用性ルールが指定されていません",
+ "oSVersion": "1.2.3.4 など",
+ "toText": "から",
+ "windows10Education": "Windows 10/11 Education",
+ "windows10EducationN": "Windows 10/11 Education N",
+ "windows10Enterprise": "Windows 10/11 Enterprise",
+ "windows10EnterpriseN": "Windows 10/11 Enterprise N",
+ "windows10HolographicEnterprise": "Windows 10 Holographic for Business",
+ "windows10Home": "Windows 10/11 Home",
+ "windows10HomeChina": "Windows 10 Home China",
+ "windows10HomeN": "Windows 10/11 Home N",
+ "windows10HomeSingleLanguage": "Windows 10/11 Home Single Language",
+ "windows10IoTCore": "Windows 10 IoT Core",
+ "windows10IoTCoreCommercial": "Windows 10 IoT Core Commercial",
+ "windows10Mobile": "Windows 10 Mobile",
+ "windows10MobileEnterprise": "Windows 10 Mobile Enterprise",
+ "windows10OsEdition": "OS のエディション",
+ "windows10OsVersion": "OS のバージョン",
+ "windows10Professional": "Windows 10/11 Professional",
+ "windows10ProfessionalEducation": "Windows 10/11 Professional Education",
+ "windows10ProfessionalEducationN": "Windows 10/11 Professional Education N",
+ "windows10ProfessionalN": "Windows 10 Professional N",
+ "windows10ProfessionalWorkstation": "Windows 10/11 Professional Workstation",
+ "windows10ProfessionalWorkstationN": "Windows 10/11 Professional Workstation N"
+ },
+ "DetectionRules": {
+ "ComparisonOperators": {
+ "equals": "指定の値に等しい",
+ "greaterThan": "次の値より大きい",
+ "greaterThanOrEqualTo": "以上",
+ "lessThan": "より小さい",
+ "lessThanOrEqualTo": "以下",
+ "notEqualTo": "次の値に等しくない"
+ },
+ "CustomScript": {
+ "enforceSignatureCheck": "スクリプトの署名の確認を強制し、スクリプトをサイレント実行する",
+ "enforceSignatureCheckTooltip": "スクリプトに信頼できる発行元の署名があることを確認するには、[はい] を選択します。署名がある場合、スクリプトは警告やプロンプトを表示せずに実行されます。スクリプトはブロックされずに実行されます。[いいえ] (既定) を選択すると、署名の検証なしで、エンドユーザーの確認に基づいてスクリプトが実行されます。",
+ "header": "カスタム検出スクリプトを使用する",
+ "runAs32Bit": "64 ビット クライアントで 32 ビット プロセスとしてスクリプトを実行する",
+ "runAs32BitTooltip": "[はい] を選択すると、64 ビット クライアント上でスクリプトは 32 ビット プロセス内で実行されます。[いいえ] (既定) を選択すると、64 ビット クライアント上でスクリプトは 64 ビット プロセス内で実行されます。32 ビット クライアントでは、スクリプトは 32 ビット プロセス内で実行されます。",
+ "scriptFile": "スクリプト ファイル",
+ "scriptFileNotSelectedValidation": "スクリプト ファイルが選択されていません。",
+ "scriptFileTooltip": "クライアント上でアプリのプレゼンスを検出する PowerShell スクリプトを選択します。アプリは、スクリプトが終了コード 0 値を返し、かつ STDOUT に文字列値を書き込んだ場合に検出されます。",
+ "scriptSizeLimitValidation": "検出スクリプトが許可されている最大サイズを超えています。これを解決するには、検出スクリプトのサイズを小さくします。"
+ },
+ "Manual": {
+ "FileRule": {
+ "DetectionMethodOptions": {
+ "dateCreated": "作成日",
+ "dateModified": "変更日",
+ "doesNotExist": "ファイルまたはフォルダーが存在しません",
+ "fileOrFolderExists": "ファイルまたはフォルダーが存在する",
+ "sizeInMB": "サイズ (MB)",
+ "version": "文字列 (バージョン)"
+ },
+ "associatedWith32Bit": "64 ビット クライアント上で 32 ビット アプリに関連付ける",
+ "associatedWith32BitTooltip": "[はい] を選択すると、64 ビット クライアント上ですべてのパス環境変数が 32 ビットのコンテキストに展開されます。[いいえ] (既定) を選択すると、64 ビット クライアント上ですべてのパス変数が 64 ビットのコンテキストに展開されます。32 ビットのクライアントでは、常に 32 ビットのコンテキストが使用されます。",
+ "detectionMethod": "検出方法",
+ "detectionMethodTooltip": "アプリのプレゼンスを検証するために使用する検出方法の種類を選択します。",
+ "fileOrFolder": "ファイルまたはフォルダー",
+ "fileOrFolderToolTip": "検出するファイルまたはフォルダーです。",
+ "operator": "演算子",
+ "operatorTooltip": "比較の検証に使用する検出方法の演算子を選択します。",
+ "path": "パス",
+ "pathTooltip": "検出するファイルまたはフォルダーを含んでいるフォルダーの完全パス。",
+ "value": "値",
+ "valueTooltip": "選択した検出方法に一致する値を選択します。日付の検出方法はローカル時刻で入力してください。"
+ },
+ "GridColumns": {
+ "pathOrCode": "パス/コード",
+ "type": "種類"
+ },
+ "MsiRule": {
+ "operator": "演算子",
+ "operatorTooltip": "MSI 製品のバージョン検証の比較演算子を選択します。",
+ "productCode": "MSI 製品コード",
+ "productCodeTooltip": "アプリの有効な MSI 製品コードです。",
+ "productVersion": "値",
+ "productVersionCheck": "MSI 製品のバージョンの確認",
+ "productVersionCheckTooltip": "MSI 製品コードだけでなく MSI 製品バージョンも確認するには、[はい] を選択します。",
+ "productVersionTooltip": "アプリの MSI 製品バージョンを入力します。"
+ },
+ "RegistryRule": {
+ "DetectionMethodOptions": {
+ "integerComparison": "整数値を比較",
+ "keyDoesNotExist": "キーがありません",
+ "keyExists": "キーが存在します",
+ "stringComparison": "文字列を比較",
+ "valueDoesNotExist": "値が存在しない",
+ "valueExists": "値が存在する",
+ "versionComparison": "バージョンの比較"
+ },
+ "associatedWith32Bit": "64 ビット クライアント上で 32 ビット アプリに関連付ける",
+ "associatedWith32BitTooltip": "64 ビット クライアント上で 32 ビットのレジストリを検索するには、[はい] を選択します。[いいえ] (既定) を選択すると、64 ビット クライアント上で 64 ビットのレジストリが検索されます。32 ビットのクライアントでは、常に 32 ビットのレジストリが検索されます。",
+ "detectionMethod": "検出方法",
+ "detectionMethodTooltip": "アプリのプレゼンスを検証するために使用する検出方法の種類を選択します。",
+ "keyPath": "キー パス",
+ "keyPathTooltip": "検出する値を含むレジストリ エントリの完全なパス。",
+ "operator": "演算子",
+ "operatorTooltip": "比較の検証に使用する検出方法の演算子を選択します。",
+ "value": "値",
+ "valueName": "値の名前",
+ "valueNameTooltip": "検出するレジストリ値の名前。",
+ "valueTooltip": "選択した検出方法に一致する値を選択します。"
+ },
+ "RuleTypeOptions": {
+ "file": "ファイル",
+ "mSI": "MSI",
+ "registry": "レジストリ"
+ },
+ "gridAriaLabel": "検出規則",
+ "header": "このアプリのプレゼンスを示す規則を作成します。",
+ "noRulesSelectedPlaceholder": "規則は指定されていません。",
+ "ruleTableLimit": "検出規則は 25 個まで追加できます",
+ "ruleType": "規則の種類",
+ "ruleTypeTooltip": "追加する検出ルールの種類を選択します。"
+ },
+ "RuleConfigurationOptions": {
+ "customScript": "カスタム検出スクリプトを使用する",
+ "manual": "検出規則を手動で構成する"
+ },
+ "bladeTitle": "検出規則",
+ "header": "アプリのプレゼンスを検出するために使用されるアプリ固有のルールを構成します。",
+ "rulesFormat": "規則の形式",
+ "rulesFormatTooltip": "検出規則を手動で構成するか、またはカスタム スクリプトを使用してアプリのプレゼンスを検出するかを選択します。",
+ "selectorLabel": "検出規則"
+ },
+ "PolicyType": {
+ "AttackSurfaceReductionRules": {
+ "configMgr": "攻撃の回避規則 (ConfigMgr)"
+ },
+ "EndpointDetectionandResponse": {
+ "mDE": "エンドポイントの検出と応答"
+ },
+ "EndpointSecurityTemplate": {
+ "aSRAppBrowserSecurity": "アプリとブラウザーの分離",
+ "aSRApplicationControl": "アプリケーション制御",
+ "aSRAttackSurfaceReduction": "攻撃の回避規則",
+ "aSRDeviceControl": "デバイス制御",
+ "aSRExploitProtection": "Exploit Protection",
+ "aSRWebProtection": "Web 保護 (Microsoft Edge レガシ)",
+ "aVExclusions": "Microsoft Defender ウイルス対策の除外",
+ "antivirus": "Microsoft Defender ウイルス対策",
+ "cloudPC": "Windows 365 セキュリティ ベースライン",
+ "default": "エンドポイント セキュリティ",
+ "defenderTest": "Microsoft Defender for Endpoint デモ",
+ "diskEncryption": "Bitlocker",
+ "eDR": "エンドポイントの検出と応答",
+ "edgeSecurityBaseline": "Microsoft Edge ベースライン",
+ "edgeSecurityBaselinePreview": "プレビュー: Microsoft Edge ベースライン",
+ "editionUpgradeConfiguration": "エディションのアップグレードおよびモードの切り替え",
+ "firewall": "Microsoft Defender ファイアウォール",
+ "firewallRules": "Microsoft Defender ファイアウォール規則",
+ "identityProtection": "アカウント保護",
+ "identityProtectionPreview": "アカウント保護 (プレビュー)",
+ "mDMSecurityBaseline1810": "2018 年 10 月の Windows 10 以降の MDM セキュリティ ベースライン",
+ "mDMSecurityBaseline1810Preview": "プレビュー: 2018 年 10 月の Windows 10 以降の MDM セキュリティ ベースライン",
+ "mDMSecurityBaseline1810PreviewBeta": "プレビュー: 2018 年 10 月の Windows 10 MDM セキュリティ ベースライン (ベータ版)",
+ "mDMSecurityBaseline1906": "2019 年 5 月の Windows 10 以降の MDM セキュリティ ベースライン",
+ "mDMSecurityBaseline2004": "2020 年 8 月の Windows 10 以降の MDM セキュリティ ベースライン",
+ "mDMSecurityBaseline2101": "2020 年 12 月の Windows 10 以降の MDM セキュリティ ベースライン",
+ "macOSAntivirus": "ウイルス対策",
+ "macOSDiskEncryption": "FileVault",
+ "macOSFirewall": "macOS ファイアウォール",
+ "microsoftDefenderBaseline": "Microsoft Defender for Endpoint ベースライン",
+ "office365Baseline": "Microsoft Office O365 ベースライン",
+ "office365BaselinePreview": "プレビュー: Microsoft Office O365 ベースライン",
+ "securityBaselines": "セキュリティ ベースライン",
+ "test": "テスト テンプレート",
+ "testFirewallRulesSecurityTemplateName": "Microsoft Defender ファイアウォール規則 (テスト)",
+ "testIdentityProtectionSecurityTemplateName": "アカウントの保護 (テスト)",
+ "windowsSecurityExperience": "Windows セキュリティ エクスペリエンス"
+ },
+ "Firewall": {
+ "mDE": "Microsoft Defender ファイアウォール"
+ },
+ "FirewallRules": {
+ "mDE": "Microsoft Defender ファイアウォール規則"
+ },
+ "administrativeTemplates": "管理用テンプレート",
+ "androidCompliancePolicy": "Android コンプライアンス ポリシー",
+ "aospDeviceOwnerCompliancePolicy": "Android (AOSP) コンプライアンス ポリシー",
+ "applicationControl": "アプリケーション制御",
+ "custom": "カスタム",
+ "deliveryOptimization": "配信の最適化",
+ "derivedPersonalIdentityVerificationCredential": "派生資格情報",
+ "deviceFeatures": "デバイス機能",
+ "deviceFirmwareConfigurationInterface": "デバイスのファームウェア構成インターフェイス",
+ "deviceLock": "デバイス ロック",
+ "deviceOwner": "フル マネージド、専用、会社所有の仕事用プロファイル",
+ "deviceRestrictions": "デバイスの制限",
+ "deviceRestrictionsWindows10Team": "デバイスの制限 (Windows 10 Team)",
+ "domainJoinPreview": "ドメインへの参加",
+ "editionUpgradeAndModeSwitch": "エディションのアップグレードおよびモードの切り替え",
+ "education": "教育",
+ "email": "電子メール",
+ "emailSamsungKnoxOnly": "メール (Samsung KNOX のみ)",
+ "endpointProtection": "Endpoint Protection",
+ "expeditedCheckin": "モバイル デバイス管理の構成",
+ "exploitProtection": "Exploit Protection",
+ "extensions": "拡張機能",
+ "hardwareConfigurations": "BIOS 構成",
+ "identityProtection": "Identity Protection",
+ "iosCompliancePolicy": "iOS コンプライアンス ポリシー",
+ "kiosk": "キオスク",
+ "macCompliancePolicy": "Mac コンプライアンス ポリシー",
+ "microsoftDefenderAntivirus": "Microsoft Defender ウイルス対策",
+ "microsoftDefenderAntivirusexclusions": "Microsoft Defender ウイルス対策の除外",
+ "microsoftDefenderAtpWindows10Desktop": "Microsoft Defender for Endpoint (Windows 10 以降を実行するデスクトップ デバイス)",
+ "microsoftDefenderFirewallRules": "Microsoft Defender ファイアウォール規則",
+ "microsoftEdgeBaseline": "Microsoft Edge ベースライン",
+ "mxProfileZebraOnly": "MX プロファイル (Zebra のみ)",
+ "networkBoundary": "ネットワーク境界",
+ "oemConfig": "OEMConfig",
+ "overrideGroupPolicy": "グループ ポリシーのオーバーライド",
+ "pkcsCertificate": "PKCS 証明書",
+ "pkcsImportedCertificate": "PKCS のインポートされた証明書",
+ "preferenceFile": "設定ファイル",
+ "presets": "プリセット",
+ "scepCertificate": "SCEP 証明書",
+ "secureAssessmentEducation": "セキュリティで保護された評価 (教育)",
+ "settingsCatalog": "設定カタログ",
+ "sharedMultiUserDevice": "共有のマルチユーザーのデバイス",
+ "softwareUpdates": "ソフトウェア更新プログラム",
+ "trustedCertificate": "信頼済み証明書",
+ "unknown": "不明",
+ "unsupported": "サポートされていません",
+ "vpn": "VPN",
+ "wiFi": "Wi-Fi",
+ "wiFiImport": "Wi-Fi インポート",
+ "windows10CompliancePolicy": "Windows 10/11 コンプライアンス ポリシー",
+ "windows10MobileCompliancePolicy": "Windows 10 Mobileコンプライアンス ポリシー",
+ "windows10XScep": "SCEP 証明書 - テスト",
+ "windows10XTrustedCertificate": "信頼された証明書 - テスト",
+ "windows10XVPN": "VPN - テスト",
+ "windows10XWifi": "WIFI - テスト",
+ "windows8CompliancePolicy": "Windows 8 コンプライアンス ポリシー",
+ "windowsHealthMonitoring": "Windows の正常性の監視",
+ "windowsInformationProtection": "Windows Information Protection",
+ "windowsPhoneCompliancePolicy": "Windows Phone コンプライアンス ポリシー",
+ "windowsUpdateforBusiness": "Windows Update for Business",
+ "wiredNetwork": "ワイヤード (有線) ネットワーク",
+ "workProfile": "個人所有の仕事用プロファイル"
+ },
+ "Win32Requirements": {
+ "AdditionalRequirements": {
+ "File": {
+ "fileOrFolderToolTip": "選択した要件としてのファイルまたはフォルダー。",
+ "pathToolTip": "検出するファイルまたはフォルダーの完全なパス。",
+ "property": "プロパティ",
+ "valueToolTip": "選択した検出方法に一致する要件値を選択します。日付と時刻の要件は、現地の形式で入力してください。"
+ },
+ "GridColumns": {
+ "pathOrScript": "パス/スクリプト",
+ "type": "種類"
+ },
+ "Registry": {
+ "keyPath": "キー パス",
+ "keyPathTooltip": "必要な値を含むレジストリ エントリの完全なパス。",
+ "operator": "演算子",
+ "operatorTooltip": "比較演算子を選択します。",
+ "registryRequirement": "レジストリ キーの要件",
+ "registryRequirementTooltip": "レジストリ キーの要件の比較を選択します。",
+ "valueName": "値の名前",
+ "valueNameTooltip": "必要なレジストリ値の名前。"
+ },
+ "RequirementTypeOptions": {
+ "fileType": "ファイル",
+ "registry": "レジストリ",
+ "script": "スクリプト"
+ },
+ "Script": {
+ "RequirementMethodOptions": {
+ "boolean": "ブール値",
+ "dateTime": "日時",
+ "float": "浮動小数点",
+ "integer": "整数",
+ "string": "文字列",
+ "version": "バージョン"
+ },
+ "ScriptContent": {
+ "emptyMessage": "スクリプトの内容を空にすることはできません。"
+ },
+ "duplicateName": "スクリプト名 {0} は既に使用されています。別の名前を指定してください。",
+ "enforceSignatureCheck": "スクリプト署名チェックを強制",
+ "enforceSignatureCheckTooltip": "スクリプトに信頼できる発行元の署名があることを確認するには、[はい] を選択します。署名がある場合、スクリプトは警告やプロンプトなしで実行されます。スクリプトはブロックされずに実行されます。[いいえ] (既定) を選択すると、署名の検証なしで、エンドユーザーの確認に基づいてスクリプトが実行されます。",
+ "loggedOnCredentials": "このスクリプトをログオンしたユーザーの資格情報を使用して実行する",
+ "loggedOnCredentialsTooltip": "サインインしたデバイスの資格情報を使用してスクリプトを実行します。",
+ "operatorTooltip": "要件の比較演算子を選択します。",
+ "requirementMethod": "出力データの型を選択する",
+ "requirementMethodTooltip": "検出の一致の要件を特定する際に使用するデータ型を選択します。",
+ "scriptFile": "スクリプト ファイル",
+ "scriptFileTooltip": "クライアント上でアプリのプレゼンスを検出する PowerShell スクリプトを選択します。アプリが検出されると、要件プロセスにより、終了コード 0 値が指定され、STDOUT に文字列値が書き込まれます。",
+ "scriptName": "スクリプト名",
+ "value": "値",
+ "valueTooltip": "選択した検出方法に一致する要件値を選択します。日付と時刻の要件は、現地の形式で入力してください。"
+ },
+ "bladeTitle": "要件規則の追加",
+ "createRequirementHeader": "要件を作成します。",
+ "header": "追加の要件規則を構成する",
+ "label": "追加の要件規則",
+ "noRequirementsSelectedPlaceholder": "要件は指定されていません。",
+ "requirementType": "要件の種類",
+ "requirementTypeTooltip": "要件の検証方法を特定するために使用する検出方法の種類を選択してください。"
+ },
+ "architectures": "オペレーティング システムのアーキテクチャ",
+ "architecturesTooltip": "アプリのインストールに必要なアーキテクチャを選択します。",
+ "bladeTitle": "必要条件",
+ "diskSpace": "必要なディスク領域 (MB)",
+ "diskSpaceTooltip": "アプリをインストールするためにシステム ドライブに必要な空きディスク領域です。",
+ "header": "アプリをインストールする前にデバイスが満たす必要のある要件を指定します:",
+ "maximumTextFieldValue": "値は、{0} 以下である必要があります。",
+ "minimumCpuSpeed": "必要な最小 CPU 速度 (MHz)",
+ "minimumCpuSpeedTooltip": "アプリのインストールに必要な最小 CPU 速度です。",
+ "minimumLogicalProcessors": "必要な論理プロセッサの最小数",
+ "minimumLogicalProcessorsTooltip": "アプリのインストールに必要な論理プロセッサの最小数です。",
+ "minimumOperatingSystem": "最低限のオペレーティング システム",
+ "minimumOperatingSystemTooltip": "アプリのインストールに必要な最小オペレーティング システムを選択します。",
+ "minumumTextFieldValue": "値は、{0} 以上である必要があります。",
+ "physicalMemory": "必要な物理メモリ (MB)",
+ "physicalMemoryTooltip": "アプリのインストールに必要な物理メモリ (RAM) です。",
+ "selectorLabel": "必要条件",
+ "validNumber": "有効な数値を入力してください。"
+ },
+ "AzureIAM": {
+ "AdrsUserActionSelectionWarning": {
+ "conditions": "デバイスの登録が必要な条件は、\"デバイスの登録または参加\" ユーザー操作では利用できません。",
+ "message": "\"デバイスの登録または参加\" ユーザー アクション用に作成されたポリシーで使用できるのは \"多要素認証を要求する\" のみです。{0}"
+ },
+ "AuthContext": {
+ "Delete": {
+ "failure": "{0} を削除できませんでした",
+ "failureCa": "{0} は CA ポリシーによって参照されているため、削除できませんでした",
+ "modifying": "{0} を削除しています",
+ "success": "{0} が正常に削除されました"
+ },
+ "Included": {
+ "none": "クラウド アプリ、アクション、認証コンテキストが選択されていません",
+ "plural": "{0} 個の認証コンテキストを含む",
+ "singular": "1 個の認証コンテキストを含む"
+ },
+ "InfoBlade": {
+ "createTitle": "認証コンテキストの追加",
+ "descPlaceholder": "認証コンテキストの説明を追加してください",
+ "modifyTitle": "認証コンテキストの変更",
+ "namePlaceholder": "例: 信頼できる場所、信頼できるデバイス、強力な認可",
+ "publishDesc": "アプリに発行すると、アプリで認証コンテキストが使用できるようになります。タグの条件付きアクセス ポリシーの構成が完了したら、発行してください。[詳細情報][1]\n[1]:https://go.microsoft.com/fwlink/?linkid=2150966",
+ "publishLabel": "アプリに発行",
+ "titleDesc": "アプリケーションのデータとアクションを保護するために使用される認証コンテキストを構成します。アプリケーション管理者が理解できる名前と説明をお使いください。[詳細情報][1]\n[1]:https://go.microsoft.com/fwlink/?linkid=2150965"
+ },
+ "Notify": {
+ "failure": "{0} を更新できませんでした",
+ "modifying": "{0} を変更しています",
+ "success": "{0} が正常に更新されました"
+ },
+ "WhatIf": {
+ "selected": "含まれる認証コンテキスト"
+ },
+ "addNewStepUp": "新しい認証コンテキスト",
+ "checkBoxInfo": "このポリシーが適用される認証コンテキストを選択します",
+ "configure": "認証コンテキストの構成",
+ "createCA": "条件付きアクセス ポリシーを認証コンテキストに割り当てる",
+ "dataGrid": "認証コンテキストの一覧",
+ "deleteFailedByReference": "You cannot delete this authentication context because it is being referenced by CA policies.",
+ "description": "説明",
+ "documentation": "ドキュメント",
+ "getStarted": "概要",
+ "label": "認証コンテキスト (プレビュー)",
+ "menuLabel": "認証コンテキスト (プレビュー)",
+ "name": "名前",
+ "noAuthContextConfigured": "認証コンテキストが構成されていません。",
+ "noAuthContextSet": "認証コンテキストがありません",
+ "noData": "表示する認証コンテキストがありません",
+ "selectionInfo": "認証コンテキストは、SharePoint や Microsoft Cloud App Security などのアプリのアプリケーション データとアクションを保護するために使用されます。",
+ "step": "ステップ",
+ "tabDescription": "アプリのデータとアクションを保護するために、認証コンテキストを管理します。[詳細情報][1]\n[1]:https://go.microsoft.com/fwlink/?linkid=2150965",
+ "tagResources": "認証コンテキストを含むリソースをタグ付けする"
+ },
+ "AuthenticationStrength": {
+ "Mode": {
+ "deviceBasedPush": "Microsoft Authenticator (電話によるサインイン)",
+ "deviceBasedPushFido2X509Certificate": "Microsoft Authenticator (電話によるサインイン) + FIDO 2 + 証明書ベースの認証",
+ "deviceBasedPushX509CertificateSingleFactor": "Microsoft Authenticator (電話によるサインイン) + FIDO 2 + 証明書ベースの認証 (単一要素)",
+ "email": "メールのワンタイム パスコード",
+ "emailOtp": "メールのワンタイム パスコード",
+ "federatedMultiFactor": "フェデレーション多要素",
+ "federatedSingleFactor": "フェデレーション単一要因",
+ "federatedSingleFactorFederatedMultiFactor": "フェデレーション単一要素 + フェデレーション多要素",
+ "fido2": "FIDO 2 セキュリティ キー",
+ "fido2X509CertificateSingleFactor": "FIDO 2 セキュリティ キー + 証明書ベースの認証 (単一要素)",
+ "hardwareOath": "ハードウェア OATH トークン",
+ "hardwareOathEmail": "ハードウェア OATH トークン + メールのワンタイム パスコード",
+ "hardwareOathX509CertificateSingleFactor": "ハードウェア OATH トークン + 証明書ベース認証 (単一要素)",
+ "microsoftAuthenticatorPSIX509CertificateSingleFactor": "Microsoft Authenticator (電話によるサインイン) + 証明書ベースの認証 (単一要素)",
+ "microsoftAuthenticatorPsi": "Microsoft Authenticator (電話によるサインイン)",
+ "microsoftAuthenticatorPush": "Microsoft Authenticator (プッシュ通知)",
+ "microsoftAuthenticatorPushEmail": "Microsoft Authenticator (プッシュ通知) + メールのワンタイム パスコード",
+ "microsoftAuthenticatorPushX509CertificateSingleFactor": "Microsoft Authenticator (プッシュ通知) + 証明書ベースの認証 (単一要素)",
+ "none": "なし",
+ "password": "パスワード",
+ "passwordDeviceBasedPush": "パスワード + Microsoft Authenticator (電話によるサインイン)",
+ "passwordFido2": "パスワード + FIDO 2 セキュリティ キー",
+ "passwordHardwareOath": "パスワード + ハードウェア OATH トークン",
+ "passwordMicrosoftAuthenticatorPSI": "パスワード + Microsoft Authenticator (電話によるサインイン)",
+ "passwordMicrosoftAuthenticatorPush": "パスワード + Microsoft Authenticator (プッシュ通知)",
+ "passwordSms": "パスワード + SMS",
+ "passwordSoftwareOath": "パスワード + ソフトウェア OATH トークン",
+ "passwordTemporaryAccessPassMultiUse": "パスワード + 一時アクセス パス (複数使用)",
+ "passwordTemporaryAccessPassOneTime": "パスワード + 一時アクセス パス (1 回限りの使用)",
+ "passwordVoice": "パスワード + 音声",
+ "sms": "SMS",
+ "smsEmail": "SMS + メールのワンタイム パスコード",
+ "smsSignIn": "SMS サインイン",
+ "smsX509CertificateSingleFactor": "SMS + 証明書ベースの認証 (単一要素)",
+ "softwareOath": "ソフトウェア OATH トークン",
+ "softwareOathEmail": "ソフトウェア OATH トークン + メールのワンタイム パスコード",
+ "softwareOathX509CertificateSingleFactor": "ソフトウェア OATH トークン + 証明書ベースの認証 (単一要素)",
+ "temporaryAccessPassMultiUse": "一時アクセス パス (複数使用)",
+ "temporaryAccessPassMultiUseX509CertificateSingleFactor": "一時アクセス パス (複数使用) + 証明書ベースの認証 (単一要素)",
+ "temporaryAccessPassOneTime": "一時アクセス パス (1 回限りの使用)",
+ "temporaryAccessPassOneTimeX509CertificateSingleFactor": "一時アクセス パス (1 回限りの使用) + 証明書ベースの認証 (単一要素)",
+ "voice": "音声",
+ "voiceEmail": "音声 + メールのワンタイム パスコード",
+ "voiceX509CertificateSingleFactor": "音声 + 証明書ベースの認証 (単一要素)",
+ "windowsHelloForBusiness": "Windows Hello for Business",
+ "x509CertificateMultiFactor": "証明書ベースの認証 (多要素)",
+ "x509CertificateSingleFactor": "証明書ベースの認証 (単一要素)"
+ }
+ },
+ "CAS": {
+ "BuiltinPolicy": {
+ "Option": {
+ "blockDownloads": "ダウンロードをブロックする (プレビュー)",
+ "monitorOnly": "監視のみ (プレビュー)",
+ "protectDownloads": "ダウンロードを保護する (プレビュー)",
+ "useCustomControls": "カスタム ポリシーを使用する..."
+ },
+ "ariaLabel": "適用するアプリの条件付きアクセス制御の種類を選択します"
+ }
+ },
+ "ChooseApplications": {
+ "Grid": {
+ "appIdAria": "アプリ ID: {0}"
+ },
+ "LowerGrid": {
+ "ariaLabel": "選択したクラウド アプリの一覧"
+ },
+ "UpperGrid": {
+ "ariaLabel": "検索用語に一致するクラウド アプリの一覧"
+ }
+ },
+ "ChooseLocations": {
+ "Validation": {
+ "failed": "[選択された場所] を使用する場合、少なくとも 1 つの場所を選択する必要があります。",
+ "selector": "少なくとも 1 つの場所を選択してください"
+ }
+ },
+ "ClientApp": {
+ "Clients": {
+ "Validation": {
+ "failed": "次のクライアントのうち、少なくとも 1 つを選択する必要があります"
+ }
+ }
+ },
+ "ClientConditionsInfo": {
+ "browserAndModern": "このポリシーは、ブラウザーと先進認証アプリにのみ適用されます。すべてのクライアント アプリにポリシーを適用するには、クライアント アプリの条件を有効にし、すべてのクライアント アプリを選択してください。",
+ "classicExperience": "このポリシーが作成されたため、既定のクライアント アプリの構成が更新されました。",
+ "legacyAuth": "構成されていない場合、ポリシーは、最新および従来の認証を含むすべてのクライアント アプリに適用されるようになりました。"
+ },
+ "CloudAppFilterBlade": {
+ "AssignmentFilter": {
+ "header": "属性",
+ "placeholder": "属性を選択"
+ },
+ "Configure": {
+ "infoBalloon": "ポリシーを適用するアプリ フィルターを構成します。"
+ },
+ "NoPermissions": {
+ "learnMoreAria": "カスタム セキュリティ属性のアクセス許可に関する詳細情報。",
+ "message": "カスタム セキュリティ属性を使用するために必要なアクセス許可がありません。"
+ },
+ "gridHeader": "カスタム セキュリティ属性を使用すると、ルール ビルダーまたはルール構文テキスト ボックスを使用して、フィルター ルールを作成または編集できます。プレビューでは、文字列型の属性のみがサポートされています。整数型またはブール型の属性は表示されません。",
+ "learnMoreAria": "ルール ビルダーと構文テキスト ボックスの使用に関する詳細情報。",
+ "noAttributes": "フィルター処理できるカスタム属性はありません。このフィルターを使用するには、いくつかの属性を構成する必要があります。",
+ "title": "フィルターの編集 (プレビュー)"
+ },
+ "CloudAppsUserActions": {
+ "any": "すべてのクラウド アプリまたはアクション",
+ "infoBalloon": "テストするクラウド アプリまたはユーザー アクション。例: 'SharePoint Online'",
+ "learnMore": "すべてまたは特定のクラウド アプリまたはアクションに基づいて、アクセスを制御します。",
+ "learnMoreB2C": "すべてまたは特定のクラウド アプリに基づいて、アクセスを制御します。",
+ "title": "クラウド アプリまたは操作"
+ },
+ "CloudappsSelectionBlade": {
+ "Excluded": {
+ "gridAria": "除外されたクラウド アプリの一覧"
+ },
+ "Filter": {
+ "configured": "構成済み",
+ "label": "フィルターの編集 (プレビュー)",
+ "with": "{1} による {0}"
+ },
+ "Included": {
+ "gridAria": "含まれているクラウド アプリの一覧"
+ },
+ "Validation": {
+ "authContext": "[認証コンテキスト] では、少なくとも 1 つのサブ項目を構成する必要があります。",
+ "selectApps": "\"{0}\" を構成する必要があります",
+ "selector": "少なくとも 1 つのアプリを選択してください。",
+ "userActions": "[ユーザー操作] では、少なくとも 1 つのサブ項目を構成する必要があります。"
+ }
+ },
+ "DeviceState": {
+ "LearnMore": {
+ "message": "ユーザーがサインインしているデバイスが [Hybrid Azure AD Join を使用した] または [準拠としてマーク済み] でない場合にユーザー アクセスを制御します。\n これは非推奨になりました。代わりに '{1}' をお使いください。"
+ }
+ },
+ "Errors": {
+ "notFound": "ポリシーが見つからなかったか、削除されています。",
+ "notFoundDetailed": "ポリシー \"{0}\" が存在しません。削除された可能性があります。"
+ },
+ "GuestsOrExternalUsers": {
+ "allExternalTenantsLabel": "すべての Azure AD 組織",
+ "b2bCollaborationGuestLabel": "B2B Collaboration ゲスト ユーザー",
+ "b2bCollaborationMemberLabel": "B2B Collaboration メンバー ユーザー",
+ "b2bDirectConnectUserLabel": "B2B 直接接続ユーザー",
+ "enumeratedExternalTenantsError": "外部テナントを少なくとも 1 つ選択してください。",
+ "enumeratedExternalTenantsLabel": "Azure AD 組織の選択",
+ "externalTenantsLabel": "外部 Azure AD 組織の指定",
+ "externalUserDropdownLabel": "ゲストまたは外部ユーザーの種類の選択",
+ "externalUsersError": "外部ゲストまたはユーザーの種類を少なくとも 1 つ選択してください",
+ "guestOrExternalUsersInfoContent": "B2B Collaboration、B2B 直接接続、その他の種類の外部ユーザーが含まれます。",
+ "guestOrExternalUsersLabel": "ゲストまたは外部ユーザー",
+ "internalGuestLabel": "ローカル ゲスト ユーザー",
+ "otherExternalUserLabel": "その他の外部ユーザー"
+ },
+ "NamedLocation": {
+ "Form": {
+ "CountryLookup": {
+ "ariaLabel": "国の検索方法",
+ "gps": "GPS 座標による場所の特定",
+ "info": "条件付きアクセス ポリシーの場所の条件が構成されている場合、ユーザーは、認証アプリから GPS の場所を共有するように求められます。 ",
+ "ip": "IP アドレスによる場所の特定 (IPv4 のみ)"
+ },
+ "Header": {
+ "new": "新しい場所 ({0})",
+ "update": "場所の更新 ({0})"
+ },
+ "IP": {
+ "learn": "ネームド ロケーションの IPv4 と IPv6 の範囲を構成します。\n[詳細情報][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
+ },
+ "Include": {
+ "infoBalloon": "不明な国または地域とは、特定の国または地域に関連付けられていない IP アドレスです。[詳細情報][1]\n\nこれには、以下が含まれます。\n* IPv6 アドレス\n* 直接マッピングされていない IPv4 アドレス\n[1]: https://aka.ms/canamedlocations\n",
+ "label": "不明な国またはリージョンを含める"
+ },
+ "Name": {
+ "empty": "名前は空にできません",
+ "placeholder": "この場所に名前を指定"
+ },
+ "PrivateLink": {
+ "learn": "Azure AD のプライベート リンクを含むネームド ロケーションを新規作成します。\n[詳細情報][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
+ },
+ "Search": {
+ "countries": "国の検索",
+ "names": "名前を検索",
+ "privateLinks": "プライベート リンクの検索"
+ },
+ "Trusted": {
+ "label": "信頼できる場所としてマークする"
+ },
+ "enter": "新しい IPv4 または IPv6 の範囲を入力してください",
+ "example": "例: 40.77.182.32/27 または 2a01:111::/32"
+ },
+ "Label": {
+ "addCountries": "国の場所",
+ "addIpRange": "IP 範囲の場所",
+ "addPrivateLink": "Azure Private Link"
+ },
+ "Notification": {
+ "Create": {
+ "Failed": {
+ "description": "新しい場所 ({0}) の作成でエラーが発生しました",
+ "title": "作成に失敗しました"
+ },
+ "InProgress": {
+ "description": "新しい場所 ({0}) を作成しています",
+ "title": "作成中です"
+ },
+ "Success": {
+ "description": "新しい場所 ({0}) の作成に成功しました",
+ "title": "作成に成功しました"
+ }
+ },
+ "Delete": {
+ "Failed": {
+ "description": "場所 ({0}) の削除でエラーが発生しました",
+ "title": "削除に失敗しました"
+ },
+ "InProgress": {
+ "description": "場所 ({0}) を削除しています",
+ "title": "削除の進行中"
+ },
+ "Success": {
+ "description": "場所 ({0}) の削除に成功しました",
+ "title": "削除に成功しました"
+ }
+ },
+ "Update": {
+ "Failed": {
+ "description": "場所 ({0}) の更新でエラーが発生しました",
+ "title": "更新に失敗しました"
+ },
+ "InProgress": {
+ "description": "場所 ({0}) を更新しています",
+ "title": "更新が進行中"
+ },
+ "Success": {
+ "description": "場所 ({0}) の更新に成功しました",
+ "title": "更新に成功しました"
+ }
+ }
+ },
+ "PrivateLinks": {
+ "grid": "プライベート リンクの一覧"
+ },
+ "Trusted": {
+ "title": "信頼済みタイプ",
+ "trusted": "信頼されている"
+ },
+ "Type": {
+ "all": "すべての種類",
+ "countries": "国",
+ "ipRanges": "IP 範囲",
+ "privateLinks": "プライベート リンク",
+ "title": "場所の種類"
+ },
+ "iPRangeInvalidError": "値は有効な IPv4 または IPv6 の範囲である必要があります。",
+ "iPRangeLinkOrSiteLocalError": "リンク ローカル アドレスまたはサイト ローカル アドレスとして検出された IP ネットワーク。",
+ "iPRangeOctetError": "IP ネットワークの先頭を 0 または 255 にすることはできません。",
+ "iPRangePrefixError": "IP ネットワーク プレフィックスは /{0} から /{1} の間である必要があります。",
+ "iPRangePrivateError": "プライベート アドレスとして検出された IP ネットワーク。"
+ },
+ "NamedNetwork": {
+ "List": {
+ "gridAria": "名前付きの場所のリスト"
+ }
+ },
+ "Policies": {
+ "Grid": {
+ "aria": "条件付きアクセス ポリシーの一覧"
+ },
+ "countText": "{1} 個のポリシーのうち {0} 個が見つかりました",
+ "countTextSingular": "1 個のポリシーのうち {0} 個が見つかりました",
+ "search": "ポリシーの検索"
+ },
+ "Policy": {
+ "Condition": {
+ "ServicePrincipalRisk": {
+ "description": "ポリシーを適用するために必要なサービス プリンシパルのリスク レベルを構成します",
+ "infoBalloonContent": "選択したリスク レベルにポリシーを適用するようサービス プリンシパルのリスクを構成します",
+ "title": "サービス プリンシパル リスク (プレビュー)"
+ }
+ }
+ },
+ "PolicyControlAuthStrength": {
+ "MultiFactorAuthentication": {
+ "description": "強力な認証を満たす方法の組み合わせ (パスワード + SMS など)",
+ "displayName": "多要素認証 (MFA)"
+ },
+ "Passwordless": {
+ "description": "強力な認証に適合するパスワードレスの方法 (Microsoft Authenticator など) ",
+ "displayName": "パスワードレス MFA"
+ },
+ "PhishingResistant": {
+ "description": "最も強力な認証のためのフィッシング防止のパスワードレス メソッド (FIDO2 セキュリティ キーなど)",
+ "displayName": "フィッシング防止 MFA"
+ }
+ },
+ "PolicyControlFedAuthMethod": {
+ "ariaLabel": "Learn more about requiring authentication methods satisfied by federation providers.",
+ "certificate": "証明書の認証",
+ "infoBubble": "必要な認証方法を指定してください。これは、ADFS などのフェデレーション プロバイダーが満たす必要があります。",
+ "multifactor": "多要素認証",
+ "require": "フェデレーション認証方法が必要 (プレビュー)",
+ "whatIfFormat": "{0} - {1}"
+ },
+ "PolicyState": {
+ "off": "オフ",
+ "on": "オン",
+ "reportOnly": "レポート専用"
+ },
+ "PolicyTemplates": {
+ "Devices": {
+ "description": "[デバイス] ポリシー テンプレート カテゴリを選択して、ネットワークにアクセスするデバイスを可視化します。アクセスを許可する前に、コンプライアンスと正常性状態を確認します。",
+ "name": "デバイス"
+ },
+ "Identities": {
+ "description": "ID ポリシー テンプレート カテゴリを選択して、デジタル資産全体で強力な認証を使用して各 ID を確認し、セキュリティで保護します。",
+ "name": "ID"
+ },
+ "Summary": {
+ "CloudApps": {
+ "allCloudApps": "すべてのアプリ",
+ "office365": "Office 365",
+ "registerSecurityInfo": "セキュリティ情報の登録"
+ },
+ "Conditions": {
+ "androidAndIOS": "デバイス プラットフォーム: Android および iOS",
+ "anyDevice": "Android、iOS、Windows、Mac を除くすべてのデバイス",
+ "anyDeviceStateExceptHybrid": "「準拠している」および「Hybrid Azure AD Join を使用した」以外のすべてのデバイスの状態",
+ "anyLocation": "信頼以外のすべての場所",
+ "browserMobileDesktop": "クライアント アプリ: ブラウザー、モバイル アプリ、デスクトップの各クライアント",
+ "exchangeActiveSync": "クライアント アプリ: Exchange Active Sync、その他のクライアント",
+ "windowsAndMac": "デバイス プラットフォーム: Windows および Mac"
+ },
+ "Devices": {
+ "anyDevice": "任意のデバイス"
+ },
+ "Grant": {
+ "appProtectionPolicy": "アプリ保護ポリシーが必要",
+ "approvedClientApp": "承認されたクライアント アプリが必要",
+ "blockAccess": "アクセスのブロック",
+ "mfa": "多要素認証を要求する",
+ "passwordChange": "パスワードの変更を要求する",
+ "requireCompliantDevice": "デバイスは準拠しているとしてマーク済みであることが必要",
+ "requireHybridAzureADDevice": "Hybrid Azure AD Join を使用したデバイスが必要"
+ },
+ "Session": {
+ "appEnforcedRestrictions": "アプリによって適用される制限を使用する",
+ "signInFrequency": "サインインの頻度と永続的なブラウザー セッションの禁止"
+ },
+ "UsersAndGroups": {
+ "allUsers": "すべてのユーザー",
+ "directoryRoles": "現在の管理者以外のディレクトリ ロール",
+ "globalAdmin": "グローバル管理者",
+ "noGuestAndAdmins": "ゲストと外部、グローバル管理者、現在の管理者以外のすべてのユーザー"
+ },
+ "azureManagement": "Azure の管理",
+ "deviceFilters": "デバイスのフィルター",
+ "devicePlatforms": "デバイス プラットフォーム"
+ },
+ "TemplateId": {
+ "AppEnforcedRestrictions": {
+ "description": "アンマネージド デバイスからの SharePoint、OneDrive、Exchange コンテンツへのアクセスをブロックまたは制限します。",
+ "name": "CA014: アンマネージド デバイスに対してアプリケーションによって適用される制限を使用する",
+ "title": "アンマネージド デバイスに対してアプリケーションによって適用される制限を使用する"
+ },
+ "ApprovedClientApps": {
+ "description": "データ損失を防ぐために、組織は Intune アプリ保護を使用して、承認された先進認証クライアント アプリへのアクセスを制限できます。",
+ "name": "CA012: 承認済みのクライアント アプリとアプリ保護を要求する",
+ "title": "承認済みのクライアント アプリとアプリ保護を要求する"
+ },
+ "BlockAccessOnUnknowns": {
+ "description": "デバイスの種類が不明またはサポートされていない場合、ユーザーは会社のリソースへのアクセスをブロックされます。",
+ "name": "CA010: 不明なまたはサポートされていないデバイス プラットフォームのアクセスをブロックする",
+ "title": "不明なまたはサポートされていないデバイス プラットフォームのアクセスをブロックする"
+ },
+ "BlockLegacyAuth": {
+ "description": "多要素認証をバイパスするために使用できるレガシ認証エンドポイントをブロックします。",
+ "name": "CA003: レガシ認証をブロックする",
+ "title": "レガシ認証をブロックする"
+ },
+ "NoPersistentBrowserSession": {
+ "description": "ブラウザーが閉じられた後もブラウザー セッションがサインインしたままにならないようにし、サインイン頻度を 1 時間に設定することで、アンマネージド デバイスでのユーザー アクセスを保護します。",
+ "name": "CA011: 永続的なブラウザー セッションなし",
+ "title": "永続的なブラウザー セッションなし"
+ },
+ "RequireCompliantOrHybridADAdmins": {
+ "description": "特権管理者に、準拠または Hybrid Azure AD Join を使用したデバイスでの、リソースへのアクセスのみを行うように要求します。",
+ "name": "CA009: 準拠しているか、Hybrid Azure AD Join を使用したデバイスを管理者に要求する",
+ "title": "準拠しているか、Hybrid Azure AD Join を使用したデバイスを管理者に要求する"
+ },
+ "RequireCompliantOrHybridADAllUsers": {
+ "description": "ユーザーにマネージド デバイスの使用または多要素認証の実行を要求することで、会社のリソースへのアクセスを保護します (macOS または Windows のみ)。",
+ "name": "CA013: 準拠しているか、Hybrid Azure AD Join を使用したデバイス、または多要素認証をすべてのユーザーに要求する",
+ "title": "準拠しているか、Hybrid Azure AD Join を使用したデバイス、または多要素認証をすべてのユーザーに要求する"
+ },
+ "RequireMFAAllUsers": {
+ "description": "侵害のリスクを減らすために、すべてのユーザー アカウントに多要素認証を要求します。",
+ "name": "CA004: すべてのユーザーに多要素認証を要求する",
+ "title": "すべてのユーザーに多要素認証を要求する"
+ },
+ "RequireMFAForAdmins": {
+ "description": "侵害のリスクを軽減するために、特権のある管理アカウントに多要素認証を要求します。このポリシーは、セキュリティの既定値と同じロールを対象とします。",
+ "name": "CA001: すべての管理者に多要素認証を要求する",
+ "title": "管理者に多要素認証を要求する"
+ },
+ "RequireMFAForAzureManagement": {
+ "description": "Azure リソースへの特権アクセスを保護するには、多要素認証が必要です。",
+ "name": "CA006: Azure 管理に多要素認証を要求する",
+ "title": "Azure 管理に多要素認証を要求する"
+ },
+ "RequireMFAForGuestAccess": {
+ "description": "ゲスト ユーザーが会社のリソースにアクセスするときに多要素認証を実行することを要求します。",
+ "name": "CA005: ゲスト アクセスに多要素認証を要求する",
+ "title": "ゲスト アクセスに多要素認証を要求する"
+ },
+ "RequireMFAForRiskySignIn": {
+ "description": "サインイン リスクが中または高であることが検出された場合、多要素認証を要求します。(Azure AD Premium 2 ライセンスが必要)",
+ "name": "CA007: 危険なサインインに多要素認証を要求する",
+ "title": "危険なサインインに多要素認証を要求する"
+ },
+ "RequirePasswordChangeForHighRiskUsers": {
+ "description": "ユーザー リスクが高であることが検出された場合、ユーザーにパスワードの変更を要求します。(Azure AD Premium 2 ライセンスが必要)",
+ "name": "CA008: 危険性の高いユーザーにパスワードの変更を要求する",
+ "title": "危険性の高いユーザーにパスワードの変更を要求する"
+ },
+ "RequireSecurityInfo": {
+ "description": "ユーザーが Azure AD 多要素認証とセルフサービス パスワードに登録するタイミングと方法をセキュリティで保護します。",
+ "name": "CA002: セキュリティ情報登録の保護",
+ "title": "セキュリティ情報登録の保護"
+ }
+ },
+ "TemplateState": {
+ "BlockAccessOnUnknowns": {
+ "title": "このポリシーを有効にすると、不明なデバイスの種類からのアクセスが禁止されます。ユーザーに影響しないことを確認するまで、レポート専用モードを使用することをお勧めします。"
+ },
+ "BlockLegacyAuth": {
+ "description": "ユーザーに影響しないことを確認するまで、レポート専用モードを使用することをお勧めします。",
+ "title": "このポリシーを有効にすると、すべてのユーザーのレガシ認証がブロックされます。"
+ },
+ "RequireCompliantOrHybridADAdmins": {
+ "Description": {
+ "on": "特権ユーザーに影響しないことを確認するまで、レポート専用モードを使用して開始することを検討してください。",
+ "reportOnly": "準拠デバイスが必要なレポート専用モードのポリシーでは、デバイス コンプライアンスが強制されていない場合でも、ポリシーの評価時に、Mac、iOS、Android のユーザーにデバイス証明書を選択するよう求めるメッセージが表示される場合があります。このメッセージは、デバイスが準拠するまで繰り返される可能性があります。"
+ },
+ "Title": {
+ "on": "このポリシーを有効にすると、マネージド デバイス (準拠または Hybrid Azure AD Join を使用しているなど) を使用しない限り、特権ユーザーのアクセスは禁止されます。有効にする前に、コンプライアンス ポリシーを構成しているか、または Hybrid Azure AD 構成を有効にしているかを確認してください。",
+ "reportOnly": "有効にする前に、コンプライアンス ポリシーを構成しているか、または Hybrid Azure AD 構成を有効にしているかを確認してください。"
+ }
+ },
+ "RequireCompliantOrHybridADAllUsers": {
+ "Description": {
+ "on": "このポリシーは、現在ログインしている管理者を除くすべてのユーザーに影響します。これがユーザーに影響しないことを確認するまで、レポート専用モードを使用して開始することを検討してください。"
+ },
+ "Title": {
+ "on": "ご自分をロックアウトしないでください。デバイスが準拠または Hybrid Azure AD Join を使用しているか、または多要素認証を構成しているかを確認してください。",
+ "reportOnly": "準拠デバイスが必要なレポート専用モードのポリシーでは、デバイス コンプライアンスが強制されていない場合でも、ポリシーの評価時に、Mac、iOS、Android のユーザーにデバイス証明書を選択するよう求めるメッセージが表示される場合があります。このメッセージは、デバイスが準拠するまで繰り返される可能性があります。"
+ }
+ },
+ "RequireMfa": {
+ "description": "オンプレミスのオブジェクトを同期するために緊急アクセス アカウントか Azure AD Connect を使用する場合、作成後にこのポリシーから以下のアカウントを除外しなければならない場合があります。"
+ },
+ "RequireMfaAdmins": {
+ "description": "現在の管理者アカウントは自動的に除外されますが、それ以外はすべてポリシーの作成時に保護されます。まずはレポート専用モードを使用することをお勧めします。",
+ "title": "自分自身をロックアウトしないでください。このポリシーは Azure portal に影響します。"
+ },
+ "RequireMfaAllUsers": {
+ "description": "この変更を計画してすべてのユーザーにお知らせするまで、まずはレポート専用モードを使用することをお勧めします。",
+ "title": "このポリシーを有効にすると、すべてのユーザーに多要素認証が強制されます。"
+ },
+ "RequireSecurityInfo": {
+ "description": "会社のニーズに応じてこれらのアカウントを保護するため、構成をご確認ください。",
+ "title": "このポリシーから除外されるユーザーとロール: ゲストや外部ユーザー、グローバル管理者、現在の管理者"
+ }
+ },
+ "basics": "基本",
+ "clientApps": "クライアント アプリ",
+ "cloudApps": "クラウド アプリ",
+ "cloudAppsOrActions": "クラウド アプリまたは操作 ",
+ "conditions": "条件 ",
+ "createNewPolicy": "テンプレートから新しいポリシーを作成 (プレビュー)",
+ "createPolicy": "ポリシーの作成",
+ "currentUser": "現在のユーザー",
+ "customizeBuild": "ツールのカスタマイズ",
+ "customizeTemplate": "テンプレート リストが、作成するポリシーの種類に基づいてカスタマイズされます",
+ "excludedDevicePlatform": "除外されたデバイス プラットフォーム",
+ "excludedDirectoryRoles": "除外されたディレクトリ ロール",
+ "excludedLocation": "除外されたディレクトリ ロール",
+ "excludedUsers": "除外されたユーザー",
+ "grantControl": "制御の許可 ",
+ "includeFilteredDevice": "フィルター処理されたデバイスをポリシーに含める",
+ "includedDevicePlatform": "含められたデバイス プラットフォーム",
+ "includedDirectoryRoles": "含められたディレクトリ ロール",
+ "includedLocation": "含められた場所",
+ "includedUsers": "含められたユーザー",
+ "legacyAuthenticationClients": "レガシ認証クライアント",
+ "namePolicy": "ポリシーに名前をつける",
+ "next": "次へ",
+ "policyName": "ポリシー名",
+ "policyState": "ポリシーの状態",
+ "policySummary": "ポリシーの概要",
+ "policyTemplate": "ポリシー テンプレート",
+ "previous": "前へ",
+ "reviewAndCreate": "確認と作成",
+ "riskLevels": "リスク レベル",
+ "selectATemplate": "テンプレートの選択",
+ "selectTemplate": "テンプレートの選択",
+ "selectTemplateCategory": "テンプレート カテゴリの選択",
+ "selectTemplateRecommendation": "応答に基づいて次のテンプレートをお勧めします",
+ "sessionControl": "セッション制御 ",
+ "signInFrequency": "サインインの頻度",
+ "signInRisk": "サインイン リスク",
+ "template": "テンプレート ",
+ "templateCategory": "テンプレート カテゴリ",
+ "userRisk": "ユーザーのリスク",
+ "usersAndGroups": "ユーザーとグループ ",
+ "viewPolicySummary": "ポリシーの概要を表示する "
+ },
+ "SSM": {
+ "MemberSelector": {
+ "description": "ユーザーとグループ"
+ },
+ "Notification": {
+ "Migration": {
+ "error": "継続的アクセス評価の設定を条件付きアクセス ポリシーに移行できませんでした",
+ "inProgress": "継続的アクセス評価の設定の移行中",
+ "success": "継続的アクセス評価の設定が条件付きアクセス ポリシーに正常に移行されました",
+ "successDescription": "条件付きアクセス ポリシーに移動して、[CAE 設定から作成された CA ポリシー] という新規作成されたポリシーで、移行された設定をご確認ください。"
+ },
+ "error": "継続的アクセス評価の設定を更新できませんでした",
+ "inProgress": "継続的アクセス評価の設定を更新しています",
+ "success": "継続的アクセス評価の設定が正常に更新されました"
+ },
+ "PreviewOptions": {
+ "disable": "プレビューを無効にする",
+ "enable": "プレビューを有効にする"
+ },
+ "StrictLocationEnforcement": {
+ "infoContent1": "ネットワーク パーティションまたは IPv4/IPv6 の不一致により、Azure AD とリソース プロバイダーによって同じクライアント デバイスから異なる IP が確認されました。厳密な場所の強制により、Azure AD とリソース プロバイダーによって確認された両方の IP アドレスに基づいて条件付きアクセス ポリシーが適用されます。",
+ "infoContent2": "最大限のセキュリティを確保するには、Azure AD とリソース プロバイダーの両方によって確認できる IP をすべてネームド ロケーション ポリシーに含め、\"厳密な場所の強制\" モードを有効にすることをお勧めします。",
+ "label": "厳密な場所の強制",
+ "title": "その他の強制モード"
+ },
+ "bladeTitle": "継続的アクセス評価",
+ "description": "ユーザーのアクセスが削除されるか、クライアントの IP アドレスが変更されるとき、継続的アクセス評価により、リソースとアプリケーションへのアクセスが凖リアルタイムで自動的にブロックされます。",
+ "migrateLabel": "移行",
+ "migrationError": "次のエラーにより、移行が失敗しました: {0}",
+ "migrationInfo": "CAE 設定は、条件付きアクセス UX に移動されました。上の [移行] ボタンを使用して移行し、今後は条件付きアクセス ポリシーで構成してください。詳細については、こちらをクリックしてください。",
+ "noLicenseMessage": "Azure AD Premium を使用してスマート セッション管理設定を管理する",
+ "optionsPickerTitle": "継続的アクセス評価の有効化または無効化",
+ "upsellInfo": "このページの設定を変更することはできなくなりました。ここでの設定は無視する必要があります。前の設定が適用されます。今後は、[条件付きアクセス] で CAE 設定を構成できます。詳細については、こちらをクリックしてください。"
+ },
+ "SelectOrganizations": {
+ "Blade": {
+ "Lower": {
+ "gridAria": "選択された組織の一覧"
+ },
+ "Upper": {
+ "gridAria": "利用可能な組織の一覧"
+ },
+ "description": "Azure AD 組織を追加するため、そのドメイン名の 1 つを入力します。",
+ "notFoundResult": "見つかりませんでした",
+ "searchBoxPlaceholder": "テナント ID またはドメイン名",
+ "subTitle": "Azure AD 組織"
+ },
+ "Selector": {
+ "AdditionalDetails": {
+ "aria": "組織 ID: {0}"
+ },
+ "DisplayText": {
+ "multiple": "{0} 個の Azure AD 組織が選択されました",
+ "single": "1 個の Azure AD 組織が選択されました"
+ },
+ "gridAria": "選択された組織の一覧"
+ }
+ },
+ "SessionLifetime": {
+ "PersistentBrowser": {
+ "Error": {
+ "notAllApps": "永続的ブラウザー セッション ポリシーは、[すべてのクラウド アプリ] が選択されている場合にのみ正しく動作します。クラウド アプリの選択を更新してください。"
+ },
+ "Option": {
+ "always": "常に永続的",
+ "help": "永続的ブラウザー セッションを使用すると、ユーザーはブラウザー ウィンドウを閉じてから再び開いた後もサインイン状態を維持できます。
\n\n- この設定は、[すべてのクラウド アプリ] が選択されている場合に正しく動作します。
\n- これは、トークンの有効期間やサインインの頻度の設定には影響しません。
\n- これは、[会社のブランド] の [サインイン状態を維持するためのオプションを表示する] ポリシーをオーバーライドします。
\n- [永続的にしない] は、フェデレーション認証サービスから渡されるあらゆる永続的 SSO クレームをオーバーライドします。
\n- [永続的にしない] の場合、モバイル デバイスのアプリケーションや、アプリケーションとユーザーのモバイル ブラウザーとの間で SSO は実行されません。
\n",
+ "label": "永続的なブラウザー セッション",
+ "never": "永続的にしない"
+ },
+ "Warning": {
+ "allApps": "永続的ブラウザー セッションは、[すべてのクラウド アプリ] が選択されている場合にのみ正しく動作します。クラウド アプリの選択を変更してください。詳細については、ここをクリックします。"
+ }
+ },
+ "SignInFrequency": {
+ "Aria": {
+ "units": "時間または日数",
+ "value": "頻度"
+ },
+ "Option": {
+ "Day": {
+ "plural": "{0} 日",
+ "singular": "1 日"
+ },
+ "Hour": {
+ "plural": "{0} 時間",
+ "singular": "1 時間"
+ },
+ "daysOption": "日間",
+ "everytime": "毎回",
+ "help": "リソースにアクセスを試みるユーザーが再びサインインを求められるようになるまでの期間。既定の設定は、90 日のローリング ウィンドウです。つまり、ユーザーが自分のマシンで非アクティブな状態が 90 日以上続くと、その後初めてリソースにアクセスを試みる時に再認証が求められます。",
+ "hoursOption": "時間",
+ "label": "サインインの頻度",
+ "placeholder": "単位の選択"
+ }
+ },
+ "mainOption": "セッションの有効期間の変更",
+ "mainOptionHelp": "ユーザーにメッセージを表示する頻度と、ブラウザー セッションを永続的にするかどうかを構成します。先進認証プロトコルがサポートされていないアプリケーションではこのポリシーが無視される可能性があります。その場合、アプリケーション開発者にお問い合わせください。"
+ },
+ "SigninRisk": {
+ "LearnMore": {
+ "message": "特定のサインイン リスク レベルに対応するため、ユーザー アクセスを制御します。"
+ }
+ },
+ "SingleSelectorActive": {
+ "failed": "このデータを読み込めません。",
+ "reattempt": "データを読み込んでいます。{1} 個中 {0} 個を再試行します。"
+ },
+ "TimeCondition": {
+ "Errors": {
+ "both": "\"対象\" または \"対象外\" の時間の範囲が無効です。",
+ "daysOfWeek": "{0}少なくとも 1 つの曜日を指定してください。",
+ "endBeforeStart": "{0}開始日時が終了日時より前であることを確認してください。",
+ "exclude": "\"対象外\" の時間の範囲が無効です。",
+ "generic": "{0}曜日とタイム ゾーンの両方が設定されていることを確認してください。[終日] チェック ボックスがオフになっている場合は、開始時刻と終了時刻も設定する必要があります。",
+ "include": "\"対象\" の時間の範囲が無効です。",
+ "timeMissing": "{0}開始時刻と終了時刻の両方を指定してください。",
+ "timeZone": "{0}タイム ゾーンを指定してください。",
+ "timesAndZone": "{0}開始時刻、終了時刻、タイム ゾーンが設定されていることを確認してください。"
+ }
+ },
+ "UserActions": {
+ "Included": {
+ "none": "クラウド アプリまたは操作が選択されていません",
+ "plural": "{0} 個のユーザー操作が含まれています",
+ "singular": "1 個のユーザー操作が含まれています"
+ },
+ "accessRequirement1": "レベル 1",
+ "accessRequirement2": "レベル 2",
+ "accessRequirement3": "レベル 3",
+ "accessRequirementsLabel": "セキュリティで保護されたアプリ データにアクセスしています",
+ "appsActionsAuthTitle": "クラウド アプリ、アクション、または認証コンテキスト",
+ "appsOrActionsSelectorInfoBallonText": "アクセスされたアプリケーションまたはユーザー アクション",
+ "appsOrActionsTitle": "クラウド アプリまたは操作",
+ "label": "ユーザー操作",
+ "mainOptionsLabel": "このポリシーが適用される対象を選択する",
+ "registerOrJoinDevices": "デバイスの登録または参加",
+ "registerSecurityInfo": "セキュリティ情報の登録",
+ "selectionInfo": "このポリシーが適用される操作を選択します",
+ "whatIf": "ユーザー操作が含まれています"
+ },
+ "UserSelectionBlade": {
+ "DirectoryRoles": {
+ "ariaLabel": "ディレクトリ ロールの選択"
+ },
+ "Excluded": {
+ "gridAria": "除外されたユーザーの一覧"
+ },
+ "Included": {
+ "gridAria": "含められたユーザーの一覧"
+ },
+ "Validation": {
+ "customRoleIncluded": "\"ディレクトリ ロール\" には、少なくとも 1 つのカスタム ロールが含まれています",
+ "customRoleSelected": "少なくとも 1 つのカスタム ロールが選択されています",
+ "failed": "\"{0}\" を構成する必要があります",
+ "roles": "少なくとも 1 つのロールを選択します",
+ "usersGroups": "少なくとも 1 人のユーザーか 1 つのグループを選択します"
+ },
+ "learnMore": "ユーザーとグループ、ワークロード ID、ディレクトリ ロール、外部ゲストなど、ポリシーを適用するユーザーに基づいてアクセスを制御します。"
+ },
+ "ValidationResult": {
+ "blockEveryonePolicy": "ポリシーの構成がサポートされていません。割り当てと制御を確認してください。",
+ "invalidApplicationCondition": "無効なクラウド アプリケーションが選択されました",
+ "invalidClientTypesCondition": "無効なクライアント アプリが選択されました",
+ "invalidConditions": "割り当てが選択されていません",
+ "invalidControls": "無効なコントロールが選択されました",
+ "invalidDevicePlatformsCondition": "無効なデバイス プラットフォームが選択されました",
+ "invalidDevicesCondition": "デバイスの構成が無効です。\"{0}\" の構成が無効である可能性があります。",
+ "invalidGrantControlPolicy": "許可の制御が無効です",
+ "invalidLocationsCondition": "無効な場所が選択されました",
+ "invalidPolicy": "割り当てが選択されていません",
+ "invalidSessionControlPolicy": "セッションの制御が無効です",
+ "invalidSignInRisksCondition": "無効なサインイン リスクが選択されました",
+ "invalidUserRisksCondition": "無効なユーザー リスクが選択されました",
+ "invalidUsersCondition": "無効なユーザーが選択されました",
+ "mamPolicyShouldOnlyTargetAndroidOrIosPlatforms": "MAM ポリシーは Android または iOS クライアント プラットフォームにのみ適用されます。",
+ "notSupportedCombination": "ポリシーの構成はサポートされていません。サポートされているポリシーの詳細を確認してください。",
+ "pending": "ポリシーを検証しています",
+ "requireComplianceEveryonePolicy": "ポリシーの構成では、すべてのユーザーがデバイスに準拠する必要があります。選択した割り当てを確認してください。",
+ "success": "有効なポリシー"
+ },
+ "VpnCert": {
+ "Grid": {
+ "aria": "VPN 証明書の一覧"
+ }
+ },
+ "WarningsInfo": {
+ "Controls": {
+ "compliantDeviceEnabled": "自分自身をロックアウトしないでください。デバイスが準拠していることをご確認ください。",
+ "domainJoinedDeviceEnabled": "自分自身をロックアウトしないでください。デバイスが Hybrid Azure AD Join を使用したであることをご確認ください。",
+ "exchangeDisabled": "Exchange ActiveSync は、\"準拠しているデバイス\" と \"承認されたクライアント アプリ\" の制御のみをサポートしています。詳細については、ここをクリックしてください。",
+ "exchangeDisabled2": "Exchange ActiveSync は、\"準拠しているデバイス\"、\"承認されたクライアント アプリ\"、\"準拠しているクライアント アプリ\" の制御のみをサポートしています。詳細については、ここをクリックしてください。",
+ "notAvailableForSP": "ポリシーの割り当てで '{0}' が選択されているため、一部のコントロールを使用できません",
+ "requireAuthOrMfa": "'{0}' と '{1}' は同時に使用できません。",
+ "requireMfa": "新しい \"{0}\" パブリック プレビューのテストを行うことを検討してください",
+ "requirePasswordChangeEnabled": "\"パスワードの変更が必要\" は、ポリシーが \"すべてのクラウド アプリ\" に割り当てられている場合にのみ使用できます"
+ },
+ "Policies": {
+ "Linux": {
+ "devicePlatformsReportOnlyPolicy": "準拠デバイスが必要なレポート専用モードのポリシーでは、macOS、iOS、Android、Linux のユーザーにデバイス証明書を選択するよう求めるメッセージが表示される場合があります。",
+ "excludeDevicePlatforms": "デバイス プラットフォーム macOS、iOS、Android、Linux をこのポリシーから除外します。",
+ "proceedAnywayDevicePlatforms": "選択した構成を続行します。macOS、iOS、Android、Linux のユーザーには、デバイスのコンプライアンス確認時にメッセージが表示される場合があります。"
+ },
+ "blockCurrentUserPolicy": "自分自身をロックアウトしないでください。まずは少数のユーザーにポリシーを適用して、想定どおりに動作するかどうかを確認することをお勧めします。また、このポリシーから少なくとも 1 人の管理者を除外することをお勧めします。こうすることで、アクセス権を保持し、変更が必要な場合にポリシーを更新できます。影響を受けるユーザーとアプリをご確認ください。",
+ "devicePlatformsReportOnlyPolicy": "準拠デバイスが必要なレポート専用モードのポリシーでは、macOS、iOS、Android のユーザーにデバイス証明書を選択するよう求めるメッセージが表示される場合があります。",
+ "excludeCurrentUserSelection": "現在のユーザー {0} をこのポリシーから除外してください。",
+ "excludeDevicePlatforms": "デバイス プラットフォーム macOS、iOS、Android をこのポリシーから除外します。",
+ "proceedAnywayDevicePlatforms": "選択した構成を続行します。macOS、iOS、Android のユーザーには、デバイスのコンプライアンス確認時にメッセージが表示される場合があります。",
+ "proceedAnywaySelection": "自分のアカウントがこのポリシーの影響を受けることを理解しました。続行します。"
+ },
+ "ServicePrincipals": {
+ "blockExchange": "Office 365 Exchange Online を選択すると、OneDrive や Teams などのアプリにも影響します。",
+ "blockPortal": "自分自身をロックアウトしないでください。このポリシーは Azure portal に影響します。続行する前に、自分または他のユーザーがポータルに戻れることをご確認ください。",
+ "blockPortalWithSession": "自分自身をロックアウトしないでください。このポリシーは Azure portal に影響します。続行する前に、自分または他のユーザーがポータルに戻れることをご確認ください。
\"すべてのクラウド アプリ\" が選択されている場合にのみ正常に機能する永続的ブラウザー セッション ポリシーを構成している場合は、この警告を無視してください。",
+ "blockSharePoint": "SharePoint Online を選択すると、Microsoft Teams、Planner、Delve、MyAnalytics、Newsfeed などのアプリにも影響します。",
+ "blockSkype": "Skype for Business Online を選択すると、Microsoft Teams にも影響があります。",
+ "includeOrExclude": "'{0}' または '{1}' のアプリ フィルターを構成できますが、両方は構成できません。",
+ "selectAppsNAForSP": "ポリシー割り当てで '{0}' が選択されているため、個々のクラウド アプリを選択できません",
+ "teamsBlocked": "SharePoint Online や Exchange Online などのアプリがポリシーに含まれている場合は、Microsoft Teams も影響を受けます。"
+ },
+ "Users": {
+ "blockAllUsers": "自分自身をロックアウトしないでください。このポリシーは、すべてのユーザーに影響します。まずは少数のユーザーにポリシーを適用して、想定どおりに動作するかどうかを確認することをお勧めします。"
+ }
+ },
+ "WhatIf": {
+ "Device": {
+ "AttributesGrid": {
+ "aria": "サインイン中に使用されたデバイス上の属性の一覧です。",
+ "infoBalloon": "サインイン中に使用されたデバイス上の属性の一覧です。"
+ }
+ }
+ },
+ "advancedTabText": "詳細設定",
+ "allCloudAppsErrorBox": "\"パスワードの変更が必要\" 許可が選択されている場合は、\"すべてのクラウド アプリ\" を選択する必要があります",
+ "allCloudAppsReauth": "[サインインの頻度 (毎回)] セッション制御と [サインイン リスク] 条件が選択されている場合は、[すべてのクラウド アプリ] を選択する必要があります",
+ "allCloudOrSpecificApps": "[サインインの頻度 (毎回)] セッション コントロールでは、[すべてのクラウド アプリ] または特にサポートされているアプリを選択する必要があります",
+ "allDayCheckboxLabel": "終日",
+ "allDevicePlatforms": "任意のデバイス",
+ "allGuestUserInfoContent": "Azure AD B2B のゲストは含まれますが、SharePoint B2B のゲストは含まれません",
+ "allGuestUserLabel": "すべてのゲストと外部ユーザー",
+ "allRiskLevelsOption": "すべてのリスク レベル",
+ "allTrustedLocationLabel": "すべての信頼できる場所",
+ "allUserGroupSetSelectorLabel": "すべてのユーザーとグループが選択済み",
+ "allUsersReauth": "[サインインの頻度 (毎回)] セッション コントロールでは、[すべてのユーザー] を選択する必要があります",
+ "allUsersString": "すべてのユーザー",
+ "and": "{0}および{1}",
+ "andWithGrouping": "({0}) および {1} ",
+ "androidDisplayName": "Android",
+ "anyCloudAppSelection": "任意のクラウド アプリ",
+ "appContextOptionInfoContent": "要求された認証タグ",
+ "appContextOptionLabel": "要求された認証タグ (プレビュー)",
+ "appContextUriPlaceholder": "例: uri:contoso.com:level3",
+ "appEnforceInfoBubble": "アプリで適用された制限は、クラウド アプリ内で管理者の追加構成が必要になる場合があります。この制限は、新しいセッションのみに適用されます。",
+ "appNotSetSeletorLabel": "0 個のクラウド アプリが選択されました",
+ "applyConditionClientAppInfoBalloonContent": "特定のクライアント アプリにポリシーを適用するようクライアント アプリを構成します",
+ "applyConditionDevicePlatformInfoBalloonContent": "特定のプラットフォームにポリシーを適用するようデバイス プラットフォームを構成します",
+ "applyConditionDeviceStateInfoBalloonContent": "特定のデバイスの状態にポリシーを適用するようデバイスの状態を構成します",
+ "applyConditionLocationInfoBalloonContent": "信頼できる/信頼できない場所にポリシーを適用するよう場所を構成します",
+ "applyConditionSigninRiskInfoBalloonContent": "選択したリスク レベルにポリシーを適用するようサインイン リスクを構成します",
+ "applyConditionUserRiskInfoBalloonContent": "選択したリスク レベルにポリシーを適用するようユーザー リスクを構成します",
+ "applyConditonLabel": "構成",
+ "ariaLabelPolicyDisabled": "ポリシーを無効にする",
+ "ariaLabelPolicyEnabled": "ポリシーが有効です",
+ "ariaLabelPolicyReportOnly": "ポリシーはレポート専用モードです",
+ "blockAccess": "アクセスのブロック",
+ "builtInDirectoryRoleLabel": "組み込みのディレクトリ ロール",
+ "casCustomControlInfo": "Cloud App Security ポータルでカスタム ポリシーを構成する必要があります。このコントロールは、おすすめアプリですぐに機能し、どのアプリに対してもセルフ オンボーディングが可能です。両方のシナリオの詳細については、ここをクリックしてください。",
+ "casInfoBubble": "このコントロールは、さまざまなクラウド アプリで使えます。",
+ "casPreconfiguredControlInfo": "このコントロールは、おすすめアプリですぐに機能し、どのアプリに対してもセルフ オンボーディングが可能です。両方のシナリオの詳細については、ここをクリックしてください。",
+ "cert64DownloadCol": "Base64 証明書のダウンロード",
+ "cert64Name": "VpnBase64Cert",
+ "certDownloadCol": "証明書のダウンロード",
+ "certDurationCol": "有効期限",
+ "certDurationStartCol": "有効期間の開始日",
+ "certName": "VpnCert",
+ "certainApps": "[多要素認証が必要] と [パスワードの変更を要求する] の許可が選択されていない場合、[サインインの頻度 (毎回)] が有効になるのは特にサポートされているアプリのみです",
+ "chooseApplicationsBladeSubtitle": "",
+ "chooseApplicationsBladeTitle": "アプリケーションの選択",
+ "chooseApplicationsCartSubitle": "",
+ "chooseApplicationsCartTitle": "選択したアプリケーション",
+ "chooseApplicationsEmpty": "アプリケーションなし",
+ "chooseApplicationsNone": "なし",
+ "chooseApplicationsNoneFound": "\"{0}\" は見つかりませんでした。別の名前または ID を試してください。",
+ "chooseApplicationsPlural": "{0}、他 {1} 個",
+ "chooseApplicationsReAuthEverytimeInfo": "アプリをお探しですか? 一部のアプリケーションは、[再認証が必要 – 毎回] セッション制御では使用できません",
+ "chooseApplicationsRemove": "削除",
+ "chooseApplicationsReturnedPlural": "{0} 個のアプリケーションが見つかりました",
+ "chooseApplicationsReturnedSingular": "1 個のアプリケーションが見つかりました",
+ "chooseApplicationsSearchBalloon": "名前または ID を入力して、アプリケーションを検索します。",
+ "chooseApplicationsSearchHint": "アプリケーションの検索...",
+ "chooseApplicationsSearchLabel": "アプリケーション",
+ "chooseApplicationsSearching": "検索中...",
+ "chooseApplicationsSelect": "選択",
+ "chooseApplicationsSelected": "選択済み",
+ "chooseApplicationsSingular": "{0}、他 1 個",
+ "chooseApplicationsTooMany": "結果が多すぎて表示できません。検索ボックスを使用してフィルター処理してください。",
+ "chooseLocationCorpnetItem": "企業ネットワーク",
+ "chooseLocationSelectedLocationsLabel": "選択された場所",
+ "chooseLocationTrustedIpsItem": "MFA 信頼済み IP",
+ "chooseLocationsBladeSubtitle": "",
+ "chooseLocationsBladeTitle": "場所の選択",
+ "chooseLocationsCartSubitle": "",
+ "chooseLocationsCartTitle": "選択された場所",
+ "chooseLocationsEmpty": "場所がありません",
+ "chooseLocationsExcludedSelectorTitle": "選択",
+ "chooseLocationsIncludedSelectorTitle": "選択",
+ "chooseLocationsNone": "なし",
+ "chooseLocationsNoneFound": "\"{0}\" は見つかりませんでした。別の名前または ID を試してください。",
+ "chooseLocationsPlural": "{0}、他 {1} 個",
+ "chooseLocationsRemove": "削除",
+ "chooseLocationsReturnedPlural": "{0} 個の場所が見つかりました",
+ "chooseLocationsReturnedSingular": "1 つの場所が見つかりました",
+ "chooseLocationsSearchBalloon": "名前を入力して、場所を検索します。",
+ "chooseLocationsSearchHint": "場所の検索...",
+ "chooseLocationsSearchLabel": "場所",
+ "chooseLocationsSearching": "検索中...",
+ "chooseLocationsSelect": "選択",
+ "chooseLocationsSelected": "選択",
+ "chooseLocationsSelectionBladeExcludedSelectorTitle": "選択",
+ "chooseLocationsSelectionBladeIncludedSelectorTitle": "選択",
+ "chooseLocationsSingular": "{0}、他 1 個",
+ "chooseLocationsTooMany": "結果が多すぎて表示できません。検索ボックスを使用してフィルター処理してください。",
+ "claimProviderAddCommandText": "新しいカスタム コントロール",
+ "claimProviderAddNewBladeTitle": "新しいカスタム コントロール",
+ "claimProviderDeleteCommand": "削除",
+ "claimProviderDeleteDescription": "'{0}' を削除しますか? この操作は元に戻すことができません。",
+ "claimProviderDeleteTitle": "よろしいですか?",
+ "claimProviderEditInfoText": "クレーム プロバイダーによって指定された、カスタマイズされたコントロールの JSON を入力します。",
+ "claimProviderNotificationCreateDescription": "'{0}' という名前のカスタム コントロールを作成しています",
+ "claimProviderNotificationCreateFailedDescription": "カスタム コントロール '{0}' の作成に失敗しました。後でもう一度やり直してください。",
+ "claimProviderNotificationCreateFailedTitle": "カスタム コントロールを作成できませんでした",
+ "claimProviderNotificationCreateSuccessDescription": "'{0}' という名前のカスタム コントロールが作成されました",
+ "claimProviderNotificationCreateSuccessTitle": "'{0}' を作成しました",
+ "claimProviderNotificationCreateTitle": "'{0}' を作成しています",
+ "claimProviderNotificationDeleteDescription": "'{0}' という名前のカスタム コントロールを削除しています",
+ "claimProviderNotificationDeleteFailedDescription": "カスタム コントロール '{0}' の削除に失敗しました。後でもう一度やり直してください。",
+ "claimProviderNotificationDeleteFailedTitle": "カスタム コントロールを削除できませんでした",
+ "claimProviderNotificationDeleteSuccessDescription": "'{0}' という名前のカスタム コントロールが削除されました",
+ "claimProviderNotificationDeleteSuccessTitle": "'{0}' を削除しました",
+ "claimProviderNotificationDeleteTitle": "'{0}' を削除しています",
+ "claimProviderNotificationUpdateDescription": "'{0}' という名前のカスタム コントロールを更新しています",
+ "claimProviderNotificationUpdateFailedDescription": "カスタム コントロール '{0}' の更新に失敗しました。後でもう一度やり直してください。",
+ "claimProviderNotificationUpdateFailedTitle": "カスタム コントロールを更新できませんでした",
+ "claimProviderNotificationUpdateSuccessDescription": "'{0}' という名前のカスタム コントロールが更新されました",
+ "claimProviderNotificationUpdateSuccessTitle": "'{0}' を更新しました",
+ "claimProviderNotificationUpdateTitle": "'{0}' を更新しています",
+ "claimProviderValidationAppIdInvalid": "\"AppId\" 値が無効です。確認して、もう一度やり直してください。",
+ "claimProviderValidationClientIdMissing": "データに \"ClientId\" 値がありません。確認して、もう一度やり直してください。",
+ "claimProviderValidationControlClaimsRequestedMissing": "\"Control\" に \"ClaimsRequested\" 値がありません。確認して、もう一度やり直してください。",
+ "claimProviderValidationControlClaimsRequestedTypeMissing": "\"ClaimsRequested\" 項目に \"Type\" 値がありません。確認して、もう一度やり直してください。",
+ "claimProviderValidationControlIdAlreadyExists": "\"Control\" の \"Id\" 値は既に存在します。確認して、もう一度やり直してください。",
+ "claimProviderValidationControlIdMissing": "\"Control\" に \"Id\" 値がありません。確認して、もう一度やり直してください。",
+ "claimProviderValidationControlIdReferencedInExistingPolicy": "\"Control\" の \"Id\" 値は、既存のポリシー内で参照されているため、削除できません。最初に、その値をポリシーから削除してください。",
+ "claimProviderValidationControlIdTooManyControls": "\"Control\" プロパティに含まれるコントロールが多すぎます。確認し、もう一度やり直してください。",
+ "claimProviderValidationControlIdValueReserved": "\"Control\" の \"Id\" 値は予約済みキーワードです。別の ID を使用してください。",
+ "claimProviderValidationControlNameAlreadyExists": "\"Control\" の \"Name\" 値は既に存在します。確認して、もう一度やり直してください。",
+ "claimProviderValidationControlNameMissing": "\"Control\" に \"Name\" 値がありません。確認して、もう一度やり直してください。",
+ "claimProviderValidationControlsMissing": "データに \"Controls\" 値がありません。確認して、もう一度やり直してください。",
+ "claimProviderValidationDiscoveryUrlMissing": "データに \"DiscoveryUrl\" 値がありません。確認して、もう一度やり直してください。",
+ "claimProviderValidationInvalid": "指定されたデータが無効です。確認して、もう一度やり直してください。",
+ "claimProviderValidationInvalidJsonDefinition": "カスタム コントロールを保存できません。JSON テキストを確認して、もう一度やり直してください。",
+ "claimProviderValidationNameAlreadyExists": "\"Name\" 値は既に存在します。確認して、もう一度やり直してください。",
+ "claimProviderValidationNameMissing": "データに \"Name\" 値がありません。確認して、もう一度やり直してください。",
+ "claimProviderValidationUnknown": "指定されたデータの検証中に不明なエラーが発生しました。確認して、もう一度やり直してください。",
+ "claimProvidersNone": "カスタム コントロールがありません",
+ "claimProvidersSearchPlaceholder": "コントロールを検索します。",
+ "classicPoilcyFilterTitle": "表示",
+ "classicPolicyAllPlatforms": "すべてのプラットフォーム",
+ "classicPolicyClientAppBrowserAndNative": "ブラウザー、モバイル アプリ、デスクトップの各クライアント",
+ "classicPolicyCloudAppTitle": "クラウド アプリケーション",
+ "classicPolicyControlAllow": "許可",
+ "classicPolicyControlBlock": "ブロック",
+ "classicPolicyControlBlockWhenNotAtWork": "社外ネットワークからの利用は、禁止する",
+ "classicPolicyControlRequireCompliantDevice": "準拠しているデバイスが必要です",
+ "classicPolicyControlRequireDomainJoinedDevice": "ドメインに参加しているデバイスが必要です",
+ "classicPolicyControlRequireMfa": "多要素認証を要求する",
+ "classicPolicyControlRequireMfaWhenNotAtWork": "社外ネットワークからの利用は、多要素認証を要求する",
+ "classicPolicyDeleteCommand": "削除",
+ "classicPolicyDeleteFailTitle": "クラシック ポリシーを削除できませんでした",
+ "classicPolicyDeleteInProgressTitle": "クラシック ポリシーを削除しています",
+ "classicPolicyDeleteSuccessTitle": "クラシック ポリシーが削除されました",
+ "classicPolicyDetailBladeTitle": "詳細",
+ "classicPolicyDisableCommand": "無効",
+ "classicPolicyDisableConfirmation": "'{0}' を無効にしますか? この操作は元に戻すことができません。",
+ "classicPolicyDisableFailDescription": "'{0}' を無効にできませんでした",
+ "classicPolicyDisableFailTitle": "クラシック ポリシーを無効にできませんでした",
+ "classicPolicyDisableInProgressDescription": "'{0}' を無効にしています",
+ "classicPolicyDisableInProgressTitle": "クラシック ポリシーを無効にしています",
+ "classicPolicyDisableSuccessDescription": "'{0}' が正常に無効化されました",
+ "classicPolicyDisableSuccessTitle": "クラシック ポリシーが無効化されました",
+ "classicPolicyEasSupportedPlatforms": "Exchange ActiveSync サポート対象プラットフォーム",
+ "classicPolicyEasUnsupportedPlatforms": "Exchange ActiveSync サポート対象外プラットフォーム",
+ "classicPolicyExcludedPlatformsTitle": "除外されているデバイス プラットフォーム",
+ "classicPolicyFilterAll": "すべてのポリシー",
+ "classicPolicyFilterDisabled": "無効なポリシー",
+ "classicPolicyFilterEnabled": "有効なポリシー",
+ "classicPolicyIncludeExcludeMembersDescription": "グループを除外することで、ポリシーの段階的な移行を実行できます。",
+ "classicPolicyIncludeExcludeMembersTitle": "グループの包含/除外",
+ "classicPolicyIncludedPlatformsTitle": "含められるデバイス プラットフォーム",
+ "classicPolicyManualMigrationMessage": "このポリシーは、手動で移行する必要があります。",
+ "classicPolicyMigrateCommand": "移行",
+ "classicPolicyMigrateConfirmation": "'{0}' を移行しますか? このポリシーは、1 回だけ移行できます。",
+ "classicPolicyMigrateFailDescription": "'{0}' を移行できませんでした",
+ "classicPolicyMigrateFailTitle": "クラシック ポリシーを移行できませんでした",
+ "classicPolicyMigrateInProgressDescription": "'{0}' を移行しています",
+ "classicPolicyMigrateInProgressTitle": "クラシック ポリシーを移行しています",
+ "classicPolicyMigrateRecommendText": "推奨: 新しい Azure Portal ポリシーに移行してください。",
+ "classicPolicyMigrateSuccessTitle": "クラシック ポリシーが正常に移行されました",
+ "classicPolicyMigratedSuccessDescription": "このクラシック ポリシーは、[ポリシー] の下で管理できるようになりました。",
+ "classicPolicyMigratedSuccessDescriptionMultiple": "このクラシック ポリシーは、{0} 個の新しいポリシーとして移行されます。新しいポリシーは、[ポリシー] の下で管理できます。",
+ "classicPolicyNoEditPermissionMsg": "このポリシーを編集するアクセス許可がありません。グローバル管理者およびセキュリティ管理者のみがポリシーを編集できます。詳細についてはここをクリックしてください。",
+ "classicPolicySaveFailDescription": "'{0}' を保存できませんでした",
+ "classicPolicySaveFailTitle": "クラシック ポリシーを保存できませんでした",
+ "classicPolicySaveInProgressDescription": "'{0}' を保存しています",
+ "classicPolicySaveInProgressTitle": "クラシック ポリシーを保存しています",
+ "classicPolicySaveSuccessDescription": "'{0}' が正常に保存されました",
+ "classicPolicySaveSuccessTitle": "クラシック ポリシーが保存されました",
+ "clientAppBladeLegacyInfoBanner": "レガシー認証は現在サポートされていません",
+ "clientAppBladeLegacyUpsellBanner": "サポートされていないクライアント アプリをブロックする (プレビュー)",
+ "clientAppBladeTitle": "クライアント アプリ",
+ "clientAppDescription": "このポリシーを適用するクライアント アプリを選択します",
+ "clientAppExchangeActiveSync": "Exchange ActiveSync",
+ "clientAppExchangeDisabledInfo": "Exchange ActiveSync は、Exchange Online が、選択されている唯一のクラウド アプリである場合に使用できます。詳細については、ここをクリックしてください",
+ "clientAppExchangeWarning": "Exchange ActiveSync は、現在、その他すべての条件をサポートしていません",
+ "clientAppLearnMore": "最新の認証を使用しない特定のクライアント アプリケーションを対象とするようユーザー アクセスを制御します。",
+ "clientAppLegacyHeader": "レガシ認証クライアント",
+ "clientAppMobileDesktop": "モバイル アプリとデスクトップ クライアント",
+ "clientAppModernHeader": "先進認証クライアント",
+ "clientAppOnlySupportedPlatforms": "サポートされているプラットフォームのみにポリシーを適用する",
+ "clientAppSelectSpecificClientApps": "クライアント アプリの選択",
+ "clientAppV2BladeTitle": "クライアント アプリ (プレビュー)",
+ "clientAppWebBrowser": "ブラウザー",
+ "clientAppsSelectedLabel": "{0} 件を含む",
+ "clientTypeBrowser": "ブラウザー",
+ "clientTypeEas": "Exchange ActiveSync クライアント",
+ "clientTypeEasInfo": "レガシ認証のみを使用する Exchange ActiveSync クライアント。",
+ "clientTypeModernAuth": "先進認証クライアント",
+ "clientTypeOtherClients": "他のクライアント",
+ "clientTypeOtherClientsInfo": "これには、古い Office クライアントとその他のメール プロトコル (POP、IMAP、SMTP など) が含まれます。[詳細情報][1]\n[1]: https://aka.ms/caclientapps\n",
+ "cloudAppCountDiffBannerText": "このポリシーで構成されている {0} 個のクラウド アプリがディレクトリから削除されましたが、このポリシーの他のアプリには影響ありません。ポリシーのアプリケーション セクションを次回更新するときに、削除されたアプリは自動的に削除されます。",
+ "cloudAppsSelectionBladeAllMicrosoftApps": "すべての Microsoft アプリ",
+ "cloudAppsSelectionExcludeAllMicrosoftClients": "Microsoft のクラウド アプリ、デスクトップ アプリ、モバイル アプリを許可する (プレビュー)",
+ "cloudappsSelectionBladeAllCloudapps": "すべてのクラウド アプリ",
+ "cloudappsSelectionBladeExcludeDescription": "ポリシーから除外するクラウド アプリを選択します",
+ "cloudappsSelectionBladeExcludedSelectorTitle": "除外されたクラウド アプリの選択",
+ "cloudappsSelectionBladeIncludeDescription": "このポリシーが適用されるクラウド アプリを選択します",
+ "cloudappsSelectionBladeIncludedSelectorTitle": "選択",
+ "cloudappsSelectionBladeSelectedCloudapps": "アプリを選択",
+ "cloudappsSelectorInfoBallonText": "ユーザーが作業のためにアクセスするサービス。例: 'Salesforce'",
+ "cloudappsSelectorPluralExcluded": "{0} 個のアプリが除外されました",
+ "cloudappsSelectorPluralIncluded": "{0} 個のアプリが含められました",
+ "cloudappsSelectorSingularExcluded": "1 個のアプリが除外されました",
+ "cloudappsSelectorSingularIncluded": "1 個のアプリが含められました",
+ "cloudappsSelectorUserPlural": "{0} 個のアプリ",
+ "cloudappsSelectorUserSingular": "1 個のアプリ",
+ "conditionLabelMulti": "{0} 個の条件が選択されました",
+ "conditionLabelOne": "1 個の条件が選択されました",
+ "conditionalAccessBladeTitle": "条件付きアクセス",
+ "conditionsNotSelectedLabel": "未構成",
+ "conditionsReqMfaReauthSet": "[多要素認証が必要] 許可と [サインインの頻度 (毎回)] セッション制御が現在選択されているため、一部のオプションは使用できません",
+ "conditionsReqPwSet": "\"パスワードの変更が必要\" 許可が現在選択されているため、一部のオプションは使用できません",
+ "configureCasText": "Cloud App Security の構成",
+ "configureCustomControlsText": "カスタム ポリシーの構成",
+ "controlLabelMulti": "{0} 個のコントロールが選択されました",
+ "controlLabelOne": "1 個のコントロールが選択されました",
+ "controlValidatorText": "少なくとも 1 つのコントロールを選択してください",
+ "controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
+ "controlsDeviceComplianceAriaLabel": "Learn more about requiring compliant devices.",
+ "controlsDeviceComplianceInfoBubble": "Device must be Intune compliant. If the device is non-compliant, the user will be prompted to bring the device under compliance.",
+ "controlsDomainJoinedAriaLabel": "Learn more about requiring hybrid Azure AD joined devices.",
+ "controlsDomainJoinedInfoBubble": "デバイスは Hybrid Azure AD Join を使用したである必要があります。",
+ "controlsMamAriaLabel": "Learn more about requiring approved client applications.",
+ "controlsMamInfoBubble": "デバイスは、これらの承認されたクライアント アプリケーションを使用する必要があります。",
+ "controlsMfaInfoBubble": "ユーザーは、電話やテキスト メッセージなど、追加のセキュリティ要件を完了する必要があります",
+ "controlsOrAndInfoBubble": "ControlsOrAndInfoBubble",
+ "controlsRequireCompliantAppAriaLabel": "Learn more about requiring policy protected apps.",
+ "controlsRequireCompliantAppInfoBubble": "デバイスでは、ポリシーで保護されたアプリを使用する必要があります。",
+ "controlsRequirePasswordResetAriaLabel": "Learn more about requiring a password change.",
+ "controlsRequirePasswordResetInfoBubble": "ユーザー リスクを軽減するために、パスワードを変更する必要があります。このオプションでは多要素認証も必要です。他のコントロールは使用できません。",
+ "countriesRadiobuttonInfoBalloonContent": "サインインが行われている国/地域は、そのユーザーの IP アドレスで特定されます。",
+ "createNewVpnCert": "新しい証明書",
+ "createdTimeLabel": "作成時刻",
+ "customRoleLabel": "カスタム ロール (サポートされていません)",
+ "dateRangeTypeLabel": "期間",
+ "daysOfWeekPlaceholderText": "曜日でフィルターしてください",
+ "daysOfWeekTypeLabel": "曜日",
+ "deletePolicyNoLicenseText": "このポリシーを今すぐ削除できます。削除すると、必要なライセンスを取得するまで、再作成することはできません。",
+ "descriptionContentForControlsAndOr": "複数のコントロールの場合",
+ "devicePlatform": "デバイス プラットフォーム",
+ "devicePlatformConditionHelpDescription": "選択されたデバイス プラットフォームにポリシーを適用します。\n[詳細情報][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2044750",
+ "devicePlatformInclude": "{0} 件を含む",
+ "devicePlatformIncludeExclude": "{0} かつ {1} 件を除く",
+ "devicePlatformNoSelectionError": "[デバイス プラットフォームの選択] では、1 つのサブ項目を選択する必要があります。",
+ "devicePlatformsNone": "なし",
+ "deviceSelectionBladeExcludeDescription": "ポリシーから除外するプラットフォームを選択します",
+ "deviceSelectionBladeIncludeDescription": "このポリシーに含めるデバイス プラットフォームを選択します",
+ "deviceStateAll": "すべてのデバイスの状態",
+ "deviceStateCompliant": "デバイスは準拠としてマーク済み",
+ "deviceStateCompliantInfoContent": "Intune に準拠しているデバイスはこのポリシーの評価から除外されるため、たとえばポリシーがアクセスをブロックする場合、Intune 準拠デバイスを除くすべてのデバイスがブロックされます。",
+ "deviceStateConditionConfigureInfoContent": "デバイスの状態に基づいてポリシーを構成します",
+ "deviceStateConditionSelectorInfoContent": "ユーザーがサインインしているデバイスが [Hybrid Azure AD Join を使用した] と [準拠としてマーク済み] のどちらであるかを示します。\n これは非推奨になりました。代わりに '{1}' をお使いください。",
+ "deviceStateConditionSelectorLabel": "デバイスの状態 (非推奨)",
+ "deviceStateDomainJoined": "Hybrid Azure AD Join を使用したデバイス",
+ "deviceStateDomainJoinedInfoContent": "Hybrid Azure AD Join を使用したデバイスはこのポリシーの評価から除外されるため、たとえばポリシーがアクセスをブロックする場合、Hybrid Azure AD Join を使用したデバイスを除くすべてのデバイスがブロックされます。",
+ "deviceStateDomainJoinedInfoLinkText": "詳細情報。",
+ "deviceStateExcludeDescription": "ポリシーからデバイスを除外するために使用するデバイスの状態の条件を選択します。",
+ "deviceStateIncludeAndExcludeOneLabel": "{0} を含め、{1} を除外する",
+ "deviceStateIncludeAndExcludeTwoLabel": "{0} を含め、{1}、{2} を除外する",
+ "directoryRoleInfoContent": "組み込みのディレクトリ ロールにポリシーを割り当てます。",
+ "directoryRolesLabel": "ディレクトリ ロール",
+ "discardbutton": "破棄",
+ "downloadDefaultFileName": "IP 範囲",
+ "downloadExampleFileName": "例",
+ "downloadExampleHeader": "これは、取得できるデータの種類のデモを含むサンプル ファイルです。# で始まる行は無視されます。",
+ "endDatePickerLabel": "End",
+ "endTimePickerLabel": "終了時刻",
+ "enterCountryText": "IP アドレスと国はペアで評価されます。国を選択してください。",
+ "enterIpText": "IP アドレスと国はペアで評価されます。IP アドレスを入力してください。",
+ "enterUserText": "ユーザーが選択されていません。ユーザーを選択してください。",
+ "evaluationResult": "評価の結果",
+ "exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
+ "exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync とサポートされているプラットフォームのみ",
+ "excludeAllTrustedLocationSelectorText": "すべての信頼できる場所",
+ "featureRequiresP2": "この機能には、Azure AD Premium 2 のライセンスが必要です。",
+ "friday": "金曜日",
+ "grantControls": "制御の許可",
+ "gridNetworkTrusted": "信頼されている",
+ "gridPolicyCreatedDateTime": "作成日",
+ "gridPolicyEnabled": "有効",
+ "gridPolicyModifiedDateTime": "更新日",
+ "gridPolicyName": "ポリシー名",
+ "gridPolicyState": "状態",
+ "groupSelectionBladeExcludeDescription": "ポリシーから除外するグループを選択します",
+ "groupSelectionBladeExcludedSelectorTitle": "除外するグループの選択",
+ "groupSelectionBladeSelect": "グループの選択",
+ "groupSelectorInfoBallonText": "ポリシーが適用されるディレクトリ内のグループ。例: 'パイロット グループ'",
+ "groupsSelectionBladeTitle": "グループ",
+ "helpCommonScenariosText": "一般的なシナリオに関心がある場合",
+ "helpCondition1": "ユーザーが会社のネットワーク外にいる場合",
+ "helpCondition2": "'マネージャー' グループのユーザーがサインインする場合",
+ "helpConditionsTitle": "条件",
+ "helpControl1": "多要素認証を使用してサインインする必要があります",
+ "helpControl2": "Intune に準拠しているデバイスまたはドメインに参加しているデバイスを使用している必要があります",
+ "helpControlsTitle": "制御",
+ "helpIntroText": "条件付きアクセスを使用すると、特定の条件が発生したときにアクセス要件を適用することができます。いくつかの例を見てみましょう",
+ "helpIntroTitle": "条件付きアクセスとは",
+ "helpLearnMoreText": "条件付きアクセスの詳細を確認するには",
+ "helpStartStep1": "[+ 新しいポリシー] をクリックして最初のポリシーを作成します",
+ "helpStartStep2": "ポリシーの条件と制御を指定します",
+ "helpStartStep3": "完了したら、忘れずにポリシーを有効にして作成します",
+ "helpStartTitle": "作業の開始",
+ "highRisk": "高",
+ "includeAndExcludeAppsTextFormat": "次が含まれます: {0}。次が含まれません: {1}。",
+ "includeAppsTextFormat": "次が含まれます: {0}。",
+ "includeUnknownAreasCheckboxInfoBalloonContent": "不明な領域は、国/地域にマップできない IP アドレスです。",
+ "includeUnknownAreasCheckboxLabel": "不明な領域を含める",
+ "infoCommandLabel": "情報",
+ "invalidCertDuration": "証明書の有効期間が無効です",
+ "invalidIpAddress": "値には有効な IP アドレスを指定する必要があります",
+ "invalidUriErrorMsg": "有効な URI を入力してください。例: 'uri:contoso.com:acr'",
+ "iosDisplayName": "iOS",
+ "linuxDisplayName": "Linux",
+ "loadAll": "すべてを読み込む",
+ "loading": "読み込み中...",
+ "locationConfigureNamedLocationsText": "すべての信頼できる場所の構成",
+ "locationConfigureNamedLocationsUri": "{0}/usermanagement/mfasettings.aspx?tenantid={1}&culture={2}",
+ "locationNameTooLongError": "場所の名前が長すぎます。最大 256 文字です",
+ "locationSelectionBladeExcludeDescription": "ポリシーから除外する場所を選択します",
+ "locationSelectionBladeIncludeDescription": "このポリシーに含める場所を選択します",
+ "locationsAllLocationsLabel": "すべての場所",
+ "locationsAllNamedLocationsLabel": "すべての信頼済み IP",
+ "locationsAllPrivateLinksLabel": "個人用テナント内のすべてのプライベート リンク",
+ "locationsIncludeExcludeLabel": "{0}、すべての信頼済み IP を除外する",
+ "locationsSelectedPrivateLinksLabel": "選択したプライベート リンク",
+ "lowRisk": "低",
+ "macOsDisplayName": "macOS",
+ "managePoliciesLicenseText": "条件付きアクセス ポリシーを管理するには、組織で Azure AD Premium P1 または P2 が必要です。",
+ "markAsTrustedCheckboxInfoBalloonContent": "信頼できる場所からサインインすると、ユーザーのサインイン リスクが低くなります。入力した IP 範囲が確立され、組織内で信用されていることがわかる場合のみ、この場所を信頼できる場所とマークしてください。",
+ "markAsTrustedCheckboxLabel": "信頼できる場所としてマークする",
+ "mediumRisk": "中",
+ "memberSelectionCommandRemove": "削除",
+ "menuItemClaimProviderControls": "カスタム コントロール (プレビュー)",
+ "menuItemClassicPolicies": "クラシック ポリシー",
+ "menuItemInsightsAndReporting": "分析情報とレポート",
+ "menuItemManage": "管理",
+ "menuItemNamedLocationsPreview": "ネームド ロケーション (プレビュー)",
+ "menuItemNamedNetworks": "ネームド ロケーション",
+ "menuItemPolicies": "ポリシー",
+ "menuItemTermsOfUse": "利用規約",
+ "modifiedTimeLabel": "変更時刻",
+ "monday": "月曜日",
+ "nameLabel": "名前",
+ "namedLocationCountryInfoBanner": "国または地域にマップされるのは IPv4 アドレスのみです。IPv6 アドレスが不明な国または地域に含まれています。",
+ "namedLocationTypeCountry": "国/地域 ",
+ "namedLocationTypeLabel": "次を使用して場所を定義します:",
+ "namedLocationUpsellBanner": "このビューは非推奨になりました。強化された新しい [ネームド ロケーション] ビューに移動してください。",
+ "namedLocationsHelpDescription": "ネームド ロケーションは、誤検知を減らすために Azure AD セキュリティ レポートで使用されるほか、Azure AD 条件付きアクセス ポリシーでも使用されます。\n[詳細情報][1]\n[1]: https://aka.ms/namedlocationupdate",
+ "namedNetworkAddIpRanges": "新しい IP 範囲の追加 (例: 40.77.182.32/27)",
+ "namedNetworkCountryNeeded": "国を 1 つ以上選択する必要があります",
+ "namedNetworkDeleteCommand": "削除",
+ "namedNetworkDeleteDescription": "'{0}' を削除しますか? この操作は元に戻すことができません。",
+ "namedNetworkDeleteTitle": "よろしいですか?",
+ "namedNetworkDownloadIpRange": "ダウンロード",
+ "namedNetworkInvalidRange": "値は有効な IP 範囲である必要があります。",
+ "namedNetworkIpRangeNeeded": "有効な IP 範囲が 1 つ以上必要です",
+ "namedNetworkIpRangesDescriptionContent": "組織の IP 範囲を構成します",
+ "namedNetworkIpRangesTab": "IP 範囲",
+ "namedNetworkListAdd": "新しい場所",
+ "namedNetworkListConfigureTrustedIps": "MFA 信頼済み IP の構成",
+ "namedNetworkNameDescription": "例: 'Redmond オフィス'",
+ "namedNetworkNameInvalid": "指定された名前が無効です。",
+ "namedNetworkNameRequired": "この場所に名前を指定する必要があります。",
+ "namedNetworkNoIpRanges": "IP 範囲なし",
+ "namedNetworkNotificationCreateDescription": "'{0}' という名前の場所を作成しています",
+ "namedNetworkNotificationCreateFailedDescription": "場所 '{0}' の作成に失敗しました。後でもう一度試してください。",
+ "namedNetworkNotificationCreateFailedTitle": "場所を作成できませんでした",
+ "namedNetworkNotificationCreateSuccessDescription": "'{0}' という名前の場所を作成しました",
+ "namedNetworkNotificationCreateSuccessTitle": "'{0}' を作成しました",
+ "namedNetworkNotificationCreateTitle": "'{0}' を作成しています",
+ "namedNetworkNotificationDeleteDescription": "'{0}' という名前の場所を削除しています",
+ "namedNetworkNotificationDeleteFailedDescription": "場所 '{0}' の削除に失敗しました。後でもう一度試してください。",
+ "namedNetworkNotificationDeleteFailedTitle": "場所を削除できませんでした",
+ "namedNetworkNotificationDeleteSuccessDescription": "'{0}' という名前の場所を削除しました",
+ "namedNetworkNotificationDeleteSuccessTitle": "'{0}' を削除しました",
+ "namedNetworkNotificationDeleteTitle": "'{0}' を削除しています",
+ "namedNetworkNotificationUpdateDescription": "'{0}' という名前の場所を更新しています",
+ "namedNetworkNotificationUpdateFailedDescription": "場所 '{0}' の更新に失敗しました。後でもう一度試してください。",
+ "namedNetworkNotificationUpdateFailedTitle": "場所を更新できませんでした",
+ "namedNetworkNotificationUpdateSuccessDescription": "'{0}' という名前の場所を更新しました",
+ "namedNetworkNotificationUpdateSuccessTitle": "'{0}' を更新しました",
+ "namedNetworkNotificationUpdateTitle": "'{0}' を更新しています",
+ "namedNetworkSearchPlaceholder": "場所を検索します。",
+ "namedNetworkUploadFailedDescription": "指定されたファイルの解析でエラーが発生しました。各行が CIDR 形式のプレーンテキスト ファイルをアップロードするようにしてください。",
+ "namedNetworkUploadFailedTitle": "'{0}' を解析できませんでした",
+ "namedNetworkUploadInProgressDescription": "'{0}' から有効な CIDR 値を解析しようとしています。",
+ "namedNetworkUploadInProgressTitle": "'{0}' を解析しています",
+ "namedNetworkUploadInvalidDescription": "'{0}' が大きすぎるか、無効な形式です。",
+ "namedNetworkUploadInvalidTitle": "'{0}' が無効です",
+ "namedNetworkUploadIpRange": "アップロード",
+ "namedNetworkUploadSuccessDescription": "{0} 行が分析されました。{1} 行は無効な形式です。{2} 行はスキップされました。",
+ "namedNetworkUploadSuccessTitle": "'{0}' の解析が完了しました",
+ "namedNetworksAdd": "新しいネームド ロケーション",
+ "namedNetworksConditionHelpDescription": "物理的な場所に基づいてユーザー アクセスを制御します。\n[詳細][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
+ "namedNetworksExcludeLabel": "{0} かつ {1} 件を除く",
+ "namedNetworksHelpDescription": "ネームド ロケーションは、誤検知を減らすために Azure AD セキュリティ レポートで使用されるほか、Azure AD 条件付きアクセス ポリシーでも使用されます。\n[詳細情報][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
+ "namedNetworksIncludeLabel": "{0} 件を含む",
+ "namedNetworksNone": "ネームド ロケーションが見つかりません。",
+ "namedNetworksTitle": "場所の構成",
+ "namednetworkExceedingSizeErrorBladeTitle": "エラーの詳細",
+ "namednetworkExceedingSizeErrorDetailText": "詳細については、ここをクリックしてください。",
+ "namednetworkExceedingSizeErrorMessage": "ネームド ロケーションに許可されている最大ストレージを超えました。リストを短くしてもう一度試してください。ここをクリックすると、詳細が表示されます。",
+ "needMfaSecondary": "[サインインの頻度 (毎回)] が [セカンダリ認証方法のみ] と一緒に選択されている場合は、[多要素認証が必要] を選択する必要があります",
+ "newCertName": "新しい証明書",
+ "noAttributePermissionsError": "ポリシーを作成または更新するための十分な特権がありません。動的フィルターを追加または編集するには、属性定義の閲覧者ロールが必要です。",
+ "noPolicyRowMessage": "ポリシーがありません",
+ "noSPSelected": "サービス プリンシパルが選択されていません",
+ "noUpdatePermissionMessage": "この設定を更新するアクセス許可がありません。アクセスするにはグローバル管理者にお問い合わせください。",
+ "noUserSelected": "ユーザーが選択されていません",
+ "noneRisk": "リスクなし",
+ "office365Description": "これらのアプリには、Microsoft Flow、Microsoft Forms、Microsoft Teams、Office 365 Exchange Online、Office 365 SharePoint Online、Office 365 Yammer などが含まれます。",
+ "office365InfoBox": "選択したアプリのうち少なくとも 1 つは Office 365 の一部です。代わりに、Office 365 アプリでポリシーを設定することをお勧めします。",
+ "oneUserSelected": "1 人のユーザーが選ばれています",
+ "onlyGlobalAdminsCanSaveThisPolicyConfig": "このポリシーを保存できるのは、全体管理者のみです。",
+ "or": "{0}または{1}",
+ "pickerDoneCommand": "完了",
+ "policiesBladeAdPremiumUpsellBannerText": "Azure AD Premium を使用して独自のポリシーを作成し、クラウド アプリ、サインイン リスク、デバイス プラットフォームなど特定の条件をターゲットとします",
+ "policiesBladeTitle": "ポリシー",
+ "policiesBladeTitleWithAppName": "ポリシー: {0}",
+ "policiesDisabledBannerText": "リンクされたサインオン属性が設定されたアプリケーションの場合、ポリシーの作成および編集は禁止されています。",
+ "policiesHitMaxLimitStatusBarMessage": "このテナントのポリシーの最大数に達しました。さらに作成するには、その前にいくつかのポリシーを削除してください。",
+ "policyAssignmentsSection": "割り当て",
+ "policyBlockAllInfoBox": "構成されたポリシーはすべてのユーザーをブロックするため、サポートされていません。割り当てとコントロールを確認してください。このポリシーを保存する場合は、現在のユーザー {0} を除外します。",
+ "policyCloudAppsDisplayTextAllApp": "すべてのアプリ",
+ "policyCloudAppsLabel": "クラウド アプリ",
+ "policyConditionClientAppDescription": "ユーザーがクラウド アプリへのアクセスに使用しているソフトウェア。例: 'ブラウザー'",
+ "policyConditionClientAppV2Description": "ユーザーがクラウド アプリへのアクセスに使用しているソフトウェア。例: 'ブラウザー'",
+ "policyConditionDevicePlatform": "デバイス プラットフォーム",
+ "policyConditionDevicePlatformDescription": "ユーザーがサインインしているプラットフォーム。例: 'iOS'",
+ "policyConditionLocation": "場所",
+ "policyConditionLocationDescription": "ユーザーがサインインしている場所 (IP アドレスの範囲を使用して特定)",
+ "policyConditionSigninRisk": "サインインのリスク",
+ "policyConditionSigninRiskDescription": "対象ユーザー以外からのサインインの可能性。リスク レベルは高、中、または低になります。Azure AD Premium 2 ライセンスが必要です。",
+ "policyConditionUserRisk": "ユーザーのリスク",
+ "policyConditionUserRiskDescription": "ポリシーを適用するために必要なユーザー リスクのレベルを構成します",
+ "policyConditioniClientApp": "クライアント アプリ",
+ "policyConditioniClientAppV2": "クライアント アプリ (プレビュー)",
+ "policyControlAllowAccessDisplayedName": "アクセス権の付与",
+ "policyControlAuthenticationStrengthDisplayedName": "認証強度が必要 (プレビュー)",
+ "policyControlBladeTitle": "許可",
+ "policyControlBlockAccessDisplayedName": "アクセスのブロック",
+ "policyControlCompliantDeviceDisplayedName": "デバイスは準拠しているとしてマーク済みである必要があります",
+ "policyControlContentDescription": "アクセスをブロックまたは許可するため、アクセスの適用を制御します。",
+ "policyControlInfoBallonText": "アクセスをブロックするか、アクセスを許可するために満たす必要のある追加要件を選択します",
+ "policyControlMfaChallengeDisplayedName": "多要素認証を要求する",
+ "policyControlRequireCompliantAppDisplayedName": "アプリの保護ポリシーが必要",
+ "policyControlRequireDomainJoinedDisplayedName": "Hybrid Azure AD Join を使用したデバイスが必要",
+ "policyControlRequireMamDisplayedName": "承認されたクライアント アプリが必要です",
+ "policyControlRequiredPasswordChangeDisplayedName": "パスワードの変更を必須とする",
+ "policyControlSelectAuthStrength": "認証強度が必要",
+ "policyControlsNoControlsSelected": "0 個のコントロールが選択されました",
+ "policyControlsSection": "アクセス制御",
+ "policyCreatBladeTitle": "新規",
+ "policyCreateButton": "作成",
+ "policyCreateFailedMessage": "エラー: {0}",
+ "policyCreateFailedTitle": "'{0}' を作成できませんでした",
+ "policyCreateInProgressTitle": "'{0}' を作成しています",
+ "policyCreateSuccessMessage": "'{0}' が正常に作成されました。[ポリシーの有効化] を [オン] に設定してある場合は、ポリシーが数分で有効になります。",
+ "policyCreateSuccessTitle": "'{0}' が正常に作成されました",
+ "policyDeleteConfirmation": "'{0}' を削除しますか? この操作は元に戻すことができません。",
+ "policyDeleteFailTitle": "'{0}' の削除に失敗しました",
+ "policyDeleteInProgressTitle": "'{0}' を削除しています",
+ "policyDeleteSuccessTitle": "'{0}' が正常に削除されました",
+ "policyEnforceLabel": "ポリシーの有効化",
+ "policyErrorCannotSetSigninRisk": "サインイン リスクの条件を含むポリシーを保存するアクセス許可がありません。",
+ "policyErrorNoPermission": "ポリシーを保存するアクセス許可を持っていません。全体管理者に問い合わせてください。",
+ "policyErrorUnknown": "問題が発生しました。後でもう一度お試しください。",
+ "policyFallbackWarningMessage": "MS Graph を使用して '{0}' を作成または更新できませんでした。AD グラフにフォールバックします。互換性のない条件を持つ MS Graph のポリシー エンドポイントを呼び出すときにバグが発生する可能性が最も高いため、以下のシナリオを調査してください。",
+ "policyFallbackWarningTitle": "'{0}' の作成または更新が部分的に成功しました",
+ "policyNameCannotBeEmpty": "ポリシー名を空にすることはできません",
+ "policyNameDevice": "デバイス ポリシー",
+ "policyNameFormat": "[{0}] {1}",
+ "policyNameMam": "モバイル アプリの管理ポリシー",
+ "policyNameMfaLocation": "MFA および場所ポリシー",
+ "policyNamePlaceholderText": "例: 'デバイス準拠アプリ ポリシー'",
+ "policyNameTooLongError": "ポリシー名が長すぎます。最大 256 文字です",
+ "policyOff": "オフ",
+ "policyOn": "オン",
+ "policyReportOnly": "レポート専用",
+ "policyReviewSection": "確認",
+ "policySaveButton": "保存",
+ "policyStatusIconDescription": "ポリシーが有効",
+ "policyStatusIconEnabled": "有効な状態のアイコン",
+ "policyTemplateName1": "アプリによって適用される制限を {0} のブラウザー アクセスに使用する",
+ "policyTemplateName2": "マネージド デバイスで {0} のアクセスのみを許可する",
+ "policyTemplateName3": "継続的アクセス評価の設定から移行されたポリシー",
+ "policyTriggerRiskSpecific": "特定のリスク レベルの選択",
+ "policyTriggersInfoBalloonText": "ポリシーが適用されるタイミングを定義する条件。例: '場所'",
+ "policyTriggersNoConditionsSelected": "0 個の条件が選択されました",
+ "policyTriggersSelectorLabel": "条件",
+ "policyUpdateFailedMessage": "エラー: {0}",
+ "policyUpdateFailedTitle": "{0} を更新できませんでした",
+ "policyUpdateInProgressTitle": "{0}の更新中",
+ "policyUpdateSuccessMessage": "{0} が正常に更新されました。[ポリシーの有効化] を [オン] に設定している場合は、ポリシーが数分で有効になります。",
+ "policyUpdateSuccessTitle": "{0} が正常に更新されました",
+ "primaryCol": "プライマリ",
+ "privateLinkLabel": "Azure AD Private Link",
+ "reportOnlyInfoBox": "レポート専用モード: サインイン時にポリシーが評価されてログに記録されますが、ユーザーに影響しません。",
+ "requireAllControlsText": "選択したコントロールすべてが必要",
+ "requireCompliantDevice": "準拠しているデバイスが必要です",
+ "requireDomainJoined": "ドメインに参加しているデバイスが必要",
+ "requireGrantReauth": "[サインインの頻度 (毎回)] セッション コントロールには、[すべてのクラウド アプリ] が選択されている場合、[多要素認証が必要] または [パスワードの変更を要求する] 許可コントロールが必要です",
+ "requireMFA": "多要素認証が必要",
+ "requireMfaReauth": "[サインインの頻度 (毎回)] セッション コントロールには、[サインイン リスク] に対して [多要素認証が必要] 許可コントロールが必要です",
+ "requireOneControlText": "選択したコントロールのいずれかが必要",
+ "requirePasswordChangeReauth": "[サインインの頻度 (毎回)] セッション コントロールには、[ユーザー リスク] に対して [パスワードの変更を要求する] 許可コントロールが必要です",
+ "requireRiskReauth": "[サインインの頻度 (毎回)] セッション コントロールには、[すべてのクラウド アプリ] が選択されている場合、[ユーザー リスク] または [サインイン リスク] セッション コントロールが必要です。",
+ "resetFilters": "フィルターのリセット",
+ "sPRequired": "サービス プリンシパルは必須です",
+ "sPSelectorInfoBalloon": "テストするユーザーまたはサービス プリンシパル",
+ "saturday": "土曜日",
+ "searchTextTooLongError": "検索テキストが長すぎます。最大 256 文字",
+ "securityDefaultsPolicyName": "セキュリティの既定値群",
+ "securityDefaultsTextMessage": "条件付きアクセス ポリシーを有効にするには、セキュリティの既定値群を無効にする必要があります。",
+ "securityDefaultsWarningMessage": "組織のセキュリティ構成を管理しようとしているようです。条件付きアクセス ポリシーを有効にする前に、まずセキュリティの既定値群を無効にする必要があります。",
+ "selectDevicePlatforms": "デバイス プラットフォームの選択",
+ "selectNamedNetworksSubtitle": "",
+ "selectNamedNetworksTitle": "場所の選択",
+ "selectedSP": "選択されたサービス プリンシパル",
+ "servicePrincipalDataGridAria": "使用可能なサービス プリンシパルの一覧",
+ "servicePrincipalDropDownLabel": "このポリシーは何に適用されますか?",
+ "servicePrincipalInfoBox": "ポリシーの割り当てで '{0}' が選択されているため、一部の条件を使用できません",
+ "servicePrincipalRadioAll": "所有されているすべてのサービス プリンシパル",
+ "servicePrincipalRadioSelect": "サービス プリンシパルの選択",
+ "servicePrincipalSelectionsAria": "選択されたサービス プリンシパル グリッド",
+ "servicePrincipalSelectorAria": "選択されたサービス プリンシパルの一覧",
+ "servicePrincipalSelectorMultiple": "{0} 個のサービス プリンシパルが選択済み",
+ "servicePrincipalSelectorSingle": "1 つのサービス プリンシパルが選択済み",
+ "servicePrincipalSpecificInc": "特定のサービス プリンシパルが含まれている",
+ "servicePrincipals": "サービス プリンシパル",
+ "sessionControlBladeTitle": "セッション",
+ "sessionControlDescriptionContent": "特定のクラウド アプリケーション内で限定的なエクスペリエンスを有効にするため、セッション制御に基づいてアクセスを制御します。",
+ "sessionControlDisableInfo": "この制御は、サポートされているアプリでのみ動作します。現在、Office 365、Exchange Online、SharePoint Online のみが、アプリによって適用される制限をサポートするクラウド アプリです。詳細についてはここをクリックしてください。",
+ "sessionControlInfoBallonText": "セッション制御により、クラウド アプリ内での操作の制限が可能になります。",
+ "sessionControls": "セッション制御",
+ "sessionControlsAppEnforcedLabel": "アプリによって適用される制限を使用する",
+ "sessionControlsCasLabel": "アプリの条件付きアクセス制御を使う",
+ "sessionControlsSecureSignInLabel": "トークンのバインドが必要",
+ "sharepointAppName": "SharePoint",
+ "signinRiskDescription": "このポリシーを適用するサインイン リスク レベルを選択します",
+ "signinRiskInclude": "{0} 件を含む",
+ "signinRiskReauth": "[多要素認証が必要] 許可と [サインインの頻度 (毎回)] セッション制御が選択されている場合は、[サインイン リスク] 条件を選択する必要があります",
+ "signinRiskTriggerDescriptionContent": "サインイン リスク レベルの選択",
+ "singleTenantServicePrincipalInfoBallonText": "ポリシーは、組織が所有するシングル テナントのサービス プリンシパルにのみ適用されます。詳細については、ここをクリックしてください ",
+ "specificSigninRiskLevelsOption": "特定のサインイン リスク レベルを選択する",
+ "specificUsersExcluded": "除外された特定のユーザー",
+ "specificUsersIncluded": "組み込まれた特定のユーザー",
+ "specificUsersIncludedAndExcluded": "除外および追加する特定のユーザー",
+ "startDatePickerLabel": "開始時",
+ "startFreeTrial": "無料試用版の開始",
+ "startTimePickerLabel": "開始時刻",
+ "sunday": "日曜日",
+ "testButton": "What If",
+ "thumbprintCol": "拇印",
+ "thursday": "木曜日",
+ "timeConditionAllTimesLabel": "日時指定なし",
+ "timeConditionIntroText": "このポリシーが適用される時刻を構成します",
+ "timeConditionSelectorInfoBallonContent": "ユーザーがサインインしている時間。たとえば、\"水曜日午前 9 時 - 午後 5 時 (PST)\"",
+ "timeConditionSelectorLabel": "時間 (プレビュー)",
+ "timeConditionSpecificLabel": "特定の時間",
+ "timeSelectorAllTimesText": "日時指定なし",
+ "timeSelectorSpecificTimesText": "特定の時間が構成されました",
+ "timeZoneDropdownInfoBalloonContent": "時間の範囲を定義するタイム ゾーンを選択します。このポリシーは、すべてのタイム ゾーンのユーザーに適用されます。たとえば、あるユーザーの '水曜日午前 9 時 - 午後 5 時' は、別のタイム ゾーンのユーザーの場合に '水曜日午前 10 時 - 午後 6 時' になります。",
+ "timeZoneDropdownLabel": "タイム ゾーン",
+ "timeZoneDropdownPlaceholderText": "タイム ゾーンの選択",
+ "tooManyPoliciesDescription": "現在表示されているポリシーは最初の 50 個のみです。すべてのポリシーを表示するには、ここをクリックしてください",
+ "tooManyPoliciesTitle": "50 個を超えるポリシーが見つかりました",
+ "trustedLocationStatusIconDescription": "場所は信頼されています",
+ "trustedLocationStatusIconEnabled": "信頼された状態のアイコン",
+ "tuesday": "火曜日",
+ "uploadInBadState": "指定したファイルをアップロードできません。",
+ "upsellAppsDescription": "機密情報を扱うアプリケーションでは、常時または会社のネットワーク外部からアクセスする場合のみ、多要素認証が必要です。",
+ "upsellAppsTitle": "セキュリティで保護されたアプリケーション",
+ "upsellBannerText": "無料の Premium 評価版を入手して、この機能を使用します",
+ "upsellDataDescription": "会社のリソースへのアクセスを許可するには、デバイスは準拠としてマーク済みまたはHybrid Azure AD Join を使用したである必要があります。",
+ "upsellDataTitle": "セキュリティで保護されたデータ",
+ "upsellDescription": "条件付きアクセスは、会社のデータを安全に保つために必要な制御と保護を提供すると同時に、ユーザーが任意のデバイスから最適な作業を実行できるようにします。たとえば、会社のネットワーク外部からのアクセスを制限したり、コンプライアンス ポリシーを満たすデバイスへのアクセスを制限したりできます。",
+ "upsellRiskDescription": "Microsoft の機械学習システムで検出されたリスク イベントには多要素認証が必要です。",
+ "upsellRiskTitle": "リスクからの保護",
+ "upsellTitle": "条件付きアクセス",
+ "upsellWhyTitle": "条件付きアクセスを使用する理由",
+ "userAppNoneOption": "なし",
+ "userNamePlaceholderText": "ユーザー名の入力",
+ "userNotSetSeletorLabel": "0 個のユーザーとグループが選択されました",
+ "userOnlySelectionBladeExcludeDescription": "ポリシーから除外するユーザーを選択します",
+ "userOrGroupSelectionCountDiffBannerText": "このポリシーで構成されている {0} がディレクトリから削除されましたが、このポリシーの他のユーザーとグループには影響ありません。ポリシーを次回更新するときに、削除されたユーザーおよびグループが自動的に削除されます。",
+ "userOrSPNotSetSelectorLabel": "ユーザーまたはワークロード ID が選択されていません",
+ "userOrSPSelectionBladeTitle": "ユーザーまたはワークロード ID",
+ "userOrSPSelectorInfoBallonText": "ユーザー、グループ、サービス プリンシパルなど、ポリシーが適用されるディレクトリ内の ID",
+ "userRequired": "ユーザーが必要",
+ "userRiskErrorBox": "\"パスワードの変更が必要\" 許可が選択されている場合は、\"ユーザーのリスク\" 条件を選択する必要があります",
+ "userRiskReauth": "[パスワードの変更を要求する] 許可と [サインインの頻度 (毎回)] セッション制御が選択されている場合は、[サインイン リスク] ではなく [ユーザーのリスク] 条件を選択する必要があります",
+ "userSPRequired": "ユーザーまたはサービス プリンシパルは必須です",
+ "userSPSelectorTitle": "ユーザーまたはワークロード ID",
+ "userSelectionBladeAllUsersAndGroups": "すべてのユーザーとグループ",
+ "userSelectionBladeExcludeDescription": "ポリシーから除外するユーザーとグループを選択します",
+ "userSelectionBladeExcludeTabTitle": "対象外",
+ "userSelectionBladeExcludedSelectorTitle": "対象外とするユーザーの選択",
+ "userSelectionBladeIncludeDescription": "このポリシーが適用されるユーザーを選択します",
+ "userSelectionBladeIncludeTabTitle": "対象",
+ "userSelectionBladeIncludedSelectorTitle": "選択",
+ "userSelectionBladeSelectUsers": "ユーザーの選択",
+ "userSelectionBladeSelectedUsers": "ユーザーとグループの選択",
+ "userSelectionBladeTitle": "ユーザーとグループ",
+ "userSelectorBladeTitle": "ユーザー",
+ "userSelectorExcluded": "{0} 件を除く",
+ "userSelectorGroupPlural": "{0} グループ",
+ "userSelectorGroupSingular": "1 グループ",
+ "userSelectorIncluded": "{0} 件を含む",
+ "userSelectorInfoBallonText": "ポリシーが適用されるディレクトリ内のユーザーとグループ。例: 'パイロット グループ'",
+ "userSelectorSelected": "{0} 件を選択済み",
+ "userSelectorTitle": "ユーザー",
+ "userSelectorUserAndGroup": "{0}, {1}",
+ "userSelectorUserPlural": "{0} のユーザー",
+ "userSelectorUserSingular": "1 ユーザー",
+ "userSelectorWithExclusion": "{0} および {1}",
+ "usersGroupsLabel": "ユーザーとグループ",
+ "viewApprovedAppsText": "承認されたクライアント アプリの一覧を表示します",
+ "viewCompliantAppsText": "ポリシーで保護されたクライアント アプリの一覧を表示します",
+ "vpnBladeTitle": "VPN 接続",
+ "vpnCertCreateFailedMessage": "エラー: {0}",
+ "vpnCertCreateFailedTitle": "{0} の作成に失敗しました",
+ "vpnCertCreateInProgressTitle": "{0} を作成しています",
+ "vpnCertCreateSuccessMessage": "{0} が正常に作成されました。",
+ "vpnCertCreateSuccessTitle": "{0} が正常に作成されました",
+ "vpnCertNoRowsMessage": "VPN 証明書が見つかりません",
+ "vpnCertUpdateFailedMessage": "エラー: {0}",
+ "vpnCertUpdateFailedTitle": "{0} を更新できませんでした",
+ "vpnCertUpdateInProgressTitle": "{0}の更新中",
+ "vpnCertUpdateSuccessMessage": "{0} が正常に更新されました。",
+ "vpnCertUpdateSuccessTitle": "{0} が正常に更新されました",
+ "vpnFeatureInfo": "VPN 接続と条件付きアクセスの詳細については、こちらをクリックしてください。",
+ "vpnFeatureWarning": "Azure portal で VPN 証明書が作成されると、Azure AD はすぐにそれを利用して、存続期間が短い証明書を VPN クライアントに発行します。VPN クライアントの資格情報の検証に関する問題を回避するために、VPN 証明書を直ちに VPN サーバーに展開することが重要です。",
+ "vpnMenuText": "VPN 接続",
+ "vpncertDropdownDefaultOption": "期間",
+ "vpncertDropdownInfoBalloonContent": "作成する証明書の有効期間を選択します",
+ "vpncertDropdownLabel": "時間の選択",
+ "vpncertDropdownOneyearOption": "1 年",
+ "vpncertDropdownThreeyearOption": "3 年",
+ "vpncertDropdownTwoyearOption": "2 年",
+ "wednesday": "水曜日",
+ "whatIfAppEnforcedControl": "アプリによって適用される制限を使用する",
+ "whatIfBladeDescription": "特定の条件下でサインインする場合の、ユーザーに対する条件付きアクセスの影響をテストします。",
+ "whatIfBladeTitle": "What If",
+ "whatIfClassicPoliciesWarning": "クラシック ポリシーは、このツールでは評価されません。",
+ "whatIfClientAppInfo": "ユーザーがサインインするときに使用するクライアント アプリ。「ブラウザー」などです。",
+ "whatIfCountry": "国",
+ "whatIfCountryInfo": "ユーザーがサインインしている国。",
+ "whatIfDevicePlatformInfo": "ユーザーがサインインしているデバイス プラットフォーム。",
+ "whatIfDeviceStateInfo": "ユーザーがサインインしているデバイスの状態",
+ "whatIfEnterIpAddress": "IP アドレスを入力してください (例: 40.77.182.32)",
+ "whatIfErrorInvalidIpAddress": "無効な IP アドレスが指定されました。",
+ "whatIfEvaResultApplication": "クラウド アプリ",
+ "whatIfEvaResultClientApps": "クライアント アプリ",
+ "whatIfEvaResultDevicePlatform": "デバイス プラットフォーム",
+ "whatIfEvaResultEmptyPolicy": "空のポリシー",
+ "whatIfEvaResultInvalidCondition": "無効な条件",
+ "whatIfEvaResultInvalidPolicy": "無効なポリシー",
+ "whatIfEvaResultLocation": "場所",
+ "whatIfEvaResultNotEnoughInformation": "情報不足",
+ "whatIfEvaResultPolicyNotEnabled": "ポリシーが有効になっていません",
+ "whatIfEvaResultSignInRisk": "サインイン リスク",
+ "whatIfEvaResultUsers": "ユーザーとグループ",
+ "whatIfIpAddress": "IP アドレス",
+ "whatIfIpAddressInfo": "ユーザーがサインインしている IP アドレス。",
+ "whatIfIpCountryInfoBoxText": "IP アドレスまたは国を使用する場合、両方のフィールドは必要になり、共に正しくマップする必要があります。",
+ "whatIfPolicyAppliesTab": "適用するポリシー",
+ "whatIfPolicyDoesNotApplyTab": "適用しないポリシー",
+ "whatIfReasons": "このポリシーを適用しない理由",
+ "whatIfSelectClientApp": "クライアント アプリの選択...",
+ "whatIfSelectCountry": "国の選択...",
+ "whatIfSelectDevicePlatform": "デバイス プラットフォームの選択...",
+ "whatIfSelectPrivateLink": "プライベート リンクを選択してください...",
+ "whatIfSelectServicePrincipalRisk": "サービス プリンシパルリスクを選択...",
+ "whatIfSelectSignInRisk": "サインイン リスクを選択...",
+ "whatIfSelectType": "ID の種類の選択",
+ "whatIfSelectUserRisk": "ユーザー リスクの選択...",
+ "whatIfServicePrincipalRiskInfo": "サービス プリンシパルに関連付けられているリスク レベル",
+ "whatIfSignInRisk": "サインイン リスク",
+ "whatIfSignInRiskInfo": "サインインに関連付けられているリスク レベル",
+ "whatIfUnknownAreas": "不明な領域",
+ "whatIfUserPickerLabel": "選択したユーザー",
+ "whatIfUserPickerNoRowsLabel": "ユーザーまたはサービス プリンシパルが選択されていません",
+ "whatIfUserRiskInfo": "ユーザーに関連付けられているリスク レベル",
+ "whatIfUserSelectorInfo": "ディレクトリ内のテスト対象ユーザー",
+ "windows365InfoBox": "Windows 365 を選択すると、クラウド PC と Azure Virtual Desktop セッション ホストへの接続に影響します。詳細については、こちらをクリックしてください。",
+ "windowsDisplayName": "Windows",
+ "windowsPhoneDisplayName": "Windows Phone",
+ "workloadIdentities": "ワークロード ID (プレビュー)",
+ "workloadIdentity": "ワークロード ID"
+ },
+ "AppResources": {
+ "AppSettingsUx": {
+ "assignmentFilterColumnHeader": "フィルター",
+ "assignmentFilterTypeColumnHeader": "フィルター モード",
+ "assignmentToast": "エンド ユーザーの通知",
+ "assignmentTypeTableHeader": "割り当ての種類",
+ "deadlineTimeColumnLabel": "インストールの期限",
+ "deliveryOptimizationPriorityHeader": "配信の最適化の優先度",
+ "groupTableHeader": "グループ",
+ "installContextLabel": "コンテキストのインストール",
+ "isRemovable": "削除可能としてインストール",
+ "licenseTypeLabel": "ライセンスの種類",
+ "modeTableHeader": "グループ モード",
+ "policySet": "ポリシー セット",
+ "restartGracePeriodHeader": "再起動の猶予期間",
+ "startTimeColumnLabel": "可用性",
+ "tracks": "トラック",
+ "uninstallOnRemoval": "デバイスの削除時にアンインストールする",
+ "updateMode": "優先度の更新",
+ "vPN": "VPN"
+ },
+ "AppType": {
+ "aADWebApp": "AAD Web アプリ",
+ "androidEnterpriseSystemApp": "Android Enterprise システム アプリ",
+ "androidForWorkApp": "マネージド Google Play ストア アプリ",
+ "androidLobApp": "Android 基幹業務アプリ",
+ "androidStoreApp": "Android ストア アプリ",
+ "builtInAndroid": "組み込み Android アプリ",
+ "builtInApp": "組み込みアプリ",
+ "builtInIos": "組み込みの iOS アプリ",
+ "iosLobApp": "iOS 基幹業務アプリ",
+ "iosStoreApp": "iOS ストア アプリ",
+ "iosVppApp": "iOS Volume Purchase Program アプリ",
+ "lineOfBusinessApp": "基幹業務アプリ",
+ "macOSDmgApp": "macOS のアプリ (DMG)",
+ "macOSEdgeApp": "Microsoft Edge (macOS)",
+ "macOSLobApp": "macOS 基幹業務アプリ",
+ "macOSMdatpApp": "Microsoft Defender ATP (macOS)",
+ "macOSOfficeSuiteApp": "macOS Office スイート",
+ "macOsVppApp": "macOS Volume Purchase Program アプリ",
+ "managedAndroidLobApp": "マネージド Android 基幹業務アプリ",
+ "managedAndroidStoreApp": "マネージド Android ストア アプリ",
+ "managedGooglePlayApp": "マネージド Google Play ストア アプリ",
+ "managedGooglePlayPrivateApp": "マネージド Google Play プライベート アプリ",
+ "managedGooglePlayWebApp": "マネージド Google Play Web リンク",
+ "managedIosLobApp": "マネージド iOS 基幹業務アプリ",
+ "managedIosStoreApp": "マネージド iOS ストア アプリ",
+ "microsoftStoreForBusinessApp": "ビジネス向け Microsoft ストア アプリ",
+ "microsoftStoreForBusinessReleaseManagedApp": "ビジネス向け Microsoft ストア",
+ "officeAddIn": "Office アドイン",
+ "officeSuiteApp": "Microsoft 365 Apps (Windows 10 以降)",
+ "sharePointApp": "SharePoint アプリ",
+ "teamsApp": "Teams アプリ",
+ "webApp": "Web リンク",
+ "windowsAppXLobApp": "Windows AppX 基幹業務アプリ",
+ "windowsClassicApp": "Windows アプリ (Win32)",
+ "windowsEdgeApp": "Microsoft Edge (Windows 10 以降)",
+ "windowsMobileMsiLobApp": "Windows MSI 基幹業務アプリ",
+ "windowsPhone81AppXBundleLobApp": "Windows Phone 8.1 AppX 基幹業務アプリ",
+ "windowsPhone81AppXLobApp": "Windows Phone 8.1 AppX 基幹業務アプリ",
+ "windowsPhone81StoreApp": "Windows Phone 8.1 ストア アプリ",
+ "windowsPhoneXapLobApp": "Windows Phone XAP 基幹業務アプリ",
+ "windowsStoreApp": "Microsoft Store アプリ",
+ "windowsUniversalAppXLobApp": "Windows Universal AppX 基幹業務アプリ",
+ "windowsUniversalLobApp": "Windows Universal 基幹業務アプリ"
+ },
+ "AppTypePlatform": {
+ "android": "Android",
+ "ios": "iOS",
+ "macOs": "macOS",
+ "web": "Web",
+ "windows": "Windows"
+ },
+ "AssignmentAction": {
+ "exclude": "除外",
+ "include": "含まれる",
+ "includeAllDevicesVirtualGroup": "含まれる",
+ "includeAllUsersVirtualGroup": "含まれる"
+ },
+ "AssignmentToast": {
+ "hideAll": "すべてのトースト通知を非表示にする",
+ "showAll": "すべてのトースト通知を表示する",
+ "showReboot": "コンピューターの再起動時にトースト通知を表示する"
+ },
+ "DeliveryOptimizationPriority": {
+ "backgroundNormal": "バックグラウンド",
+ "displayText": "{0} でのコンテンツ ダウンロード",
+ "foreground": "前景",
+ "header": "配信の最適化の優先度"
+ },
+ "DeviceRestartBehaviorOptions": {
+ "allow": "アプリのインストールによるデバイスの強制的な再起動を許可する",
+ "basedOnReturnCode": "リターン コードを基に動作を決定する",
+ "force": "Intune によってデバイスの必須の再起動が強制実行されるようにする",
+ "suppress": "何もしない"
+ },
+ "FilterType": {
+ "exclude": "除外する",
+ "include": "含む",
+ "none": "なし"
+ },
+ "InstallIntent": {
+ "available": "登録済みデバイスで使用可能",
+ "availableWithoutEnrollment": "登録の有無にかかわらず使用可能",
+ "notApplicable": "該当なし",
+ "required": "必須",
+ "uninstall": "アンインストール"
+ },
+ "SettingType": {
+ "assignmentType": "割り当ての種類",
+ "deviceLicensing": "ライセンスの種類",
+ "installContext": "デバイスの削除時にアンインストールする",
+ "toastSettings": "エンド ユーザーの通知",
+ "vpnConfiguration": "VPN"
+ },
+ "UpdateMode": {
+ "default": "既定",
+ "postponed": "延期",
+ "priority": "高優先度"
+ }
+ },
+ "WindowsEnrollment": {
+ "coManagementAuthorityDesc": "Configuration Manager 統合の共同管理設定を構成します",
+ "coManagementAuthorityTitle": "共同管理の設定",
+ "deploymentProfiles": "Windows AutoPilot Deployment プロファイル",
+ "description": "ユーザーまたは管理者が Windows 10/11 PC を Intune に登録する 7 つの異なる方法について説明します。",
+ "descriptionLabel": "Windows 登録方法",
+ "enrollmentStatusPage": "登録ステータス ページ"
+ },
+ "Win32Program": {
+ "DeviceRestartBehaviorOptions": {
+ "allow": "アプリのインストールによるデバイスの強制的な再起動を許可する",
+ "basedOnReturnCode": "リターン コードを基に動作を決定する",
+ "force": "Intune によってデバイスの必須の再起動が強制実行されるようにする",
+ "suppress": "何もしない"
+ },
+ "RunAsAccountOptions": {
+ "system": "システム",
+ "user": "ユーザー"
+ },
+ "bladeTitle": "プログラム",
+ "deviceRestartBehavior": "デバイスの再起動",
+ "deviceRestartBehaviorTooltip": "アプリが正常にインストールされた後の、デバイスの再起動の動作を選択します。リターン コードの構成設定に基づいてデバイスを再起動するには、[リターン コードを基に動作を決定する] を選択してください。MSI ベースのアプリのインストール中にデバイスの再起動を抑止するには、[何もしない] を選択してください。再起動を抑止せずにアプリのインストールを完了できるようにするには、[アプリのインストールによるデバイスの強制的な再起動を許可する] を選択してください。アプリのインストールが正常に完了した後、常にデバイスを再起動するには、[Intune によってデバイスの必須の再起動が強制実行されるようにする] を選択してください。",
+ "header": "アプリをインストール/アンインストールするコマンドを指定します:",
+ "installCommand": "インストール コマンド",
+ "installCommandMaxLengthErrorMessage": "インストール コマンドは、許可されている最大長の 1024 文字以下でなければなりません。",
+ "installCommandTooltip": "このアプリをインストールするために使用する完全なインストール コマンド ラインです。",
+ "runAs32Bit": "64 ビット クライアント上でインストール/アンインストール コマンドを 32 ビット プロセス内で実行する",
+ "runAs32BitTooltip": "64 ビット クライアント上でアプリのインストール/アンインストールを 32 ビット プロセス内で実行するには、[はい] を選択します。[いいえ] (既定) を選択すると、64 ビット クライアント上でアプリのインストール/アンインストールが 64 ビット プロセス内で実行されます。32 ビットのクライアントでは、常に 32 ビット プロセスが使用されます。",
+ "runAsAccount": "インストールの処理",
+ "runAsAccountTooltip": "サポートされている場合、このアプリをすべてのユーザーにインストールするには、[システム] を選択します。このアプリをデバイスにログインしているユーザーにインストールするには、[ユーザー] を選択します。2 つの目的の MSI アプリでは、変更すると、最初のインストール時にデバイスに適用された値が復元されるまで、更新とアンインストールが正常に完了しなくなります。",
+ "selectorLabel": "プログラム",
+ "uninstallCommand": "アンインストール コマンド",
+ "uninstallCommandTooltip": "このアプリをアンインストールするために使用する完全なアンインストール コマンド ラインです。"
+ },
+ "CategoryDescription": {
+ "androidGeneralApplicationRestrictions": "社内での使用が承認されていないアプリをユーザーがインストールするときに通知を受け取るためにこれらの設定を使用します。制限されたアプリの一覧の種類を選択します。
\r\n 禁止されたアプリ - ユーザーがインストールするときに通知を受け取るアプリの一覧。
\r\n 承認されたアプリ - 社内での使用が承認されているアプリの一覧。この一覧にないアプリをユーザーがインストールするときに通知されます。
\r\n ",
+ "androidZebraMxZebraMx": "MX プロファイルを XML 形式でアップロードして Zebra デバイスを構成します。",
+ "iosDeviceFeaturesAirprint": "これらの設定を使用して、ネットワーク上の AirPrint 互換プリンターに自動的に接続するように iOS デバイスを構成します。プリンターの IP アドレスとリソース パスが必要です。",
+ "iosDeviceFeaturesExtensibleSingleSignOn": "IOS 13.0 以降を実行しているデバイスに対してシングル サインオン (SSO) を有効にするアプリ拡張機能を構成します。",
+ "iosDeviceFeaturesHomeScreenLayout": "iOS デバイスのドックおよびホーム画面のレイアウトを構成します。特定のデバイスでは、表示できるアイテム数が制限されている場合があります。",
+ "iosDeviceFeaturesIOSWallpaper": "iOS デバイスのホーム画面とロック画面の両方またはそのいずれかに表示される画像を表示します。\r\n それぞれの場所に固有の画像を表示するには、ロック画面の画像を指定したプロファイルを 1 つと、ホーム画面の画像を指定したプロファイルを 1 つ作成します。\r\n 次に、両方のプロファイルをユーザーに割り当てます。\r\n
\r\n \r\n - 最大ファイル サイズ: 750 KB
\r\n - ファイルの種類: PNG、JPG、JPEG
\r\n
\r\n ",
+ "iosDeviceFeaturesNotifications": "アプリの通知設定を指定します。iOS 9.3 以降をサポートします。",
+ "iosDeviceFeaturesSharedDevice": "ロック画面に表示される省略可能なテキストを指定してください。これは iOS 9.3 以降でサポートされています。詳細情報",
+ "iosGeneralApplicationRestrictions": "社内での使用が承認されていないアプリをユーザーがインストールするときに通知を受け取るためにこれらの設定を使用します。制限されたアプリの一覧の種類を選択します。
\r\n 禁止されたアプリ - ユーザーがインストールするときに通知を受け取るアプリの一覧。
\r\n 承認されたアプリ - 社内での使用が承認されているアプリの一覧。この一覧にないアプリをユーザーがインストールするときに通知されます。
\r\n ",
+ "iosGeneralApplicationVisibility": "ユーザーが表示または起動できる iOS アプリを指定するには、表示するアプリの一覧を使用します。ユーザーが表示または起動できない iOS アプリを指定するには、非表示のアプリの一覧を使用します。",
+ "iosGeneralAutonomousSingleAppMode": "このリストに追加してデバイスに割り当てたアプリは、そのアプリの起動後はそのアプリだけを実行するようにデバイスをロックするか、特定のアクションの実行中 (たとえば、テストの実行中) にデバイスをロックすることができます。アクションが完了するか、制限が削除されると、デバイスは通常の状態に戻ります。",
+ "iosGeneralKiosk": "キオスク モードでは、さまざまな設定をデバイス内にロックするか、デバイスで実行できる 1 つのアプリを指定します。このモードは、デバイスで 1 つのデモ アプリだけを実行する、小売店などの環境で便利です。",
+ "macDeviceFeaturesAirprint": "これらの設定を使って macOS デバイスを構成し、ネットワーク上で AirPrint と互換性のあるプリンターに自動的に接続します。プリンターの IP アドレスとリソース パスが必要です。",
+ "macDeviceFeaturesAssociatedDomains": "組織のアプリと Web サイトの間でデータとサインイン資格情報を共有するように、関連付けられたドメインを構成します。このプロファイルは、macOS 10.15 以降を実行しているデバイスに適用できます。",
+ "macDeviceFeaturesExtensibleSingleSignOn": "macOS 10.15 以降を実行しているデバイスに対してシングル サインオン (SSO) を有効にするアプリ拡張機能を構成します。",
+ "macDeviceFeaturesLoginItems": "ユーザーがデバイスにログインするときに開くアプリ、ファイル、およびフォルダーを選択します。選択したアプリを開く方法をユーザーが変更できないようにする場合、ユーザーの構成からアプリを非表示にすることができます。",
+ "macDeviceFeaturesLoginWindow": "ユーザーのログイン前後の macOS ログイン画面の外観と、利用可能な機能を構成します。",
+ "macExtensionsKernelExtensions": "これらの設定は、10.13.2 以降を実行している macOS デバイスのカーネル拡張機能ポリシーを構成する場合に使用します。",
+ "macGeneralDomains": "ユーザーが送信または受信するメールのうち、ここで指定したドメインと一致しないものは、信頼されていないメールとしてマークされます。",
+ "windows10EndpointProtectionApplicationGuard": "Microsoft Edge を使用している間は、Microsoft Defender Application Guard により、組織によって信頼済みと定義されていないサイトから環境が保護されます。分離されたネットワーク境界の一覧に含まれないサイトにユーザーがアクセスすると、そのサイトは Hyper-V の仮想ブラウズ セッションで開きます。信頼済みサイトはネットワーク境界によって定義され、これはデバイスの構成で設定できます。この機能は、64 ビットの Windows 10 以降を実行するデバイスでのみ使用可能です。",
+ "windows10EndpointProtectionCredentialGuard": "Credential Guard を有効にすると、次の必須設定が有効になります。\r\n
\r\n \r\n - 仮想化ベースのセキュリティを有効にする: 次の再起動時に仮想化ベースのセキュリティ (VBS) をオンにします。仮想化ベースのセキュリティでは、Windows ハイパーバイザーを使用してセキュリティ サービスのサポートを提供します。
\r\n
\r\n - セキュア ブートと直接メモリ アクセス: セキュア ブートと直接メモリ アクセス (DMA) を使用して VBS をオンにします。
\r\n
\r\n ",
+ "windows10EndpointProtectionDeviceGuard": "Microsoft Defender アプリケーション制御による監査が必要であるか、実行しても差し支えないとの信頼をそこから得られる追加のアプリを選択します。Windows コンポーネントと Windows ストアのすべてのアプリは、実行しても差し支えないとの信頼を自動的に得ます。
\r\n [監査のみ] モードで実行しているアプリケーションはブロックされません。[監査のみ] モードの場合、すべてのイベントがローカル クライアントのログに記録されます。\r\n ",
+ "windows10GeneralPrivacyPerApp": "[既定のプライバシー] で定義したのとは異なるプライバシー動作を設定するアプリを追加します。",
+ "windows10NetworkBoundaryNetworkBoundary": "ネットワーク境界は、クラウドでホストされているドメインや、エンタープライズ ネットワーク上のコンピューターの IP アドレスの範囲などのエンタープライズ リソースの一覧です。これらの場所に存在するデータを保護するポリシーを適用するには、ネットワーク境界を定義します。",
+ "windowsHealthMonitoring": "Windows の正常性の監視ポリシーを構成します。",
+ "windowsPhoneGeneralApplicationRestrictions": "Windows Phone は、禁止アプリ一覧で指定されたアプリや、承認済みアプリ一覧で指定されていないアプリをユーザーがインストールしたり起動したりするのを阻止できます。マネージド アプリはすべて、承認済み一覧に追加する必要があります。"
+ },
"Inputs": {
"accountDomain": "アカウントのドメイン",
"accountDomainHint": "例: contosodomain",
@@ -9962,6 +9858,7 @@
"displayNameLabel": "名前",
"displayVersionHint": "アプリのバージョンを入力します",
"displayVersionLabel": "アプリのバージョン",
+ "displayVersionLengthCheck": "表示バージョンの長さは最大 130 文字までにする必要があります",
"eBookCategoryNameLabel": "既定の名前",
"emailAccount": "メール アカウント名",
"emailAccountHint": "例: 会社のメール",
@@ -10066,385 +9963,51 @@
"xmlFormatInvalid": "XML ポリシーの形式が無効です。",
"xmlTooLarge": "入力サイズは 1 MB 未満である必要があります。"
},
- "Tooltips": {
- "PolicySettings": {
- "TouchId1": {
- "android": "Android では、PIN の代わりに指紋識別の使用を許可できます。ユーザーは、職場アカウントを使用してこのアプリにアクセスするときに指紋を提供するように求められます。",
- "iOS": "iOS/iPadOS デバイスでは、PIN ではなく指紋確認の使用を許可できます。ユーザーは、職場アカウントを使用してこのアプリにアクセスするときに指紋の入力を求められます。",
- "mac": "Mac デバイスでは、PIN ではなく指紋確認の使用を許可できます。ユーザーは、職場アカウントを使用してこのアプリにアクセスするときに指紋の入力を求められます。"
- },
- "appSharingFromLevel1": "次のオプションからひとつを選択し、このアプリがデータを受信するアプリを指定してください。",
- "appSharingFromLevel2": "{0}: 他のポリシー マネージド アプリからのみ、組織ドキュメントやアカウントのデータを受信できます",
- "appSharingFromLevel3": "{0}: どのアプリからでも組織ドキュメントやアカウントのデータを受信できます",
- "appSharingFromLevel4": "{0}: どのアプリからも組織ドキュメントやアカウントのデータを受信できません",
- "appSharingFromLevel5": "{0}: 任意のアプリからのデータ転送を許可して、ユーザー ID がないすべての受信データを組織データとして処理します。",
- "appSharingToLevel1": "次のオプションからひとつを選択し、このアプリがデータを送信するアプリを指定してください。",
- "appSharingToLevel2": "{0}: 他のポリシー マネージド アプリにだけ、組織データを送信できます",
- "appSharingToLevel3": "{0}: すべてのアプリに組織データを送信できます",
- "appSharingToLevel4": "{0}: どのアプリにも組織データを送信できません",
- "appSharingToLevel5": "{0}: 他のポリシー マネージド アプリのみに転送を許可し、登録済みデバイスの他の MDM で管理されているアプリのみにファイルの転送を許可します",
- "appSharingToLevel6": "{0}: 他のポリシー マネージド アプリのみに転送を許可し、OS の [Open In/Share] ダイアログをフィルター処理して、ポリシー マネージド アプリのみを表示します",
- "conditionalEncryption1": "登録済みデバイスでデバイス暗号化が検出される場合、内部アプリ ストレージのアプリ暗号化を無効にするため {0} を選択します。",
- "conditionalEncryption2": "メモ: Intune が検出できるのは、Intune MDM へのデバイス登録のみです。外部アプリ ストレージは引き続き暗号化されて、アンマネージド アプリケーションはデータにアクセスできないようになります。",
- "contactSyncMac": "無効にすると、アプリで連絡先をネイティブのアドレス帳に保存することはできません。",
- "contactsSync": "ポリシー マネージド アプリがデバイスのネイティブ アプリ (連絡先、予定表、ウィジェットなど) にデータを保存しないようにしたり、ポリシー マネージド アプリ内でアドインが使用されないようにするには、[ブロック] を選択します。[許可] を選択すると、ポリシー マネージド アプリはネイティブ アプリにデータを保存したり、ポリシー マネージド アプリでアドインがサポートされ、有効になっていれば、それらの機能を使用したりすることができます。
アプリによって、アプリ構成ポリシーに追加の構成機能が提供される場合もあります。詳細については、アプリのドキュメントを参照してください。",
- "encryptionAndroid1": "Intune モバイル アプリケーション管理ポリシーに関連するアプリについては、暗号化は Microsoft によって提供されます。データはファイルの I/O 操作の間に、モバイル アプリケーション管理ポリシーの設定に従って同調的に暗号化されます。Android で管理されるアプリは、CBC モードで、プラットフォーム暗号化ライブラリを使用して AES-128 暗号化を使用します。暗号化の方法は FIPS 140-2 に準拠していません。SHA-256 暗号化は SigAlg パラメーターを使用した明示的な指示によりサポートされています。またデバイス 4.2 以上でのみ動作します。デバイス ストレージ上のコンテンツは常に暗号化されます。",
- "encryptionAndroid2": "デバイスへのアクセスにPINが設定されない場合、アプリは起動されず、エンドユーザーには「会社により、このアプリケーションにアクセスするには、まずデバイスのPINを有効にする必要があります」というメッセージが表示されます。",
- "encryptionMac1": "Intune モバイル アプリケーション管理ポリシーに関連するアプリについては、暗号化は Microsoft によって提供されます。データはファイルの I/O 操作の間に、モバイル アプリケーション管理ポリシーの設定に従って同調的に暗号化されます。Mac で管理されるアプリは、CBC モードで、プラットフォーム暗号化ライブラリを使用して AES-128 暗号化を使用します。暗号化の方法は FIPS 140-2 に準拠していません。SHA-256 暗号化は SigAlg パラメーターを使用した明示的な指示によりサポートされています。またデバイス 4.2 以上でのみ動作します。デバイス ストレージ上のコンテンツは常に暗号化されます。",
- "faceId1": "必要に応じて、PIN の代わりに顔識別の使用を許可することができます。ユーザーは、職場アカウントでこのアプリにアクセスする際、顔識別を求められます。",
- "faceId2": "PIN の代わりに顔識別でアプリにアクセスすることを許可するには、[はい] を選択します。",
- "managementLevelsAndroid1": "このオプションを使用して、このポリシーを Android デバイス管理者用デバイス、Android Enterprise デバイス、アンマネージド デバイスのどれに適用するかを指定します。",
- "managementLevelsAndroid2": "{0}: アンマネージド デバイスは、Intune MDM 管理が検出されないデバイスです。サードパーティの MDM ベンダーが含まれます。",
- "managementLevelsAndroid3": "{0}: Android デバイス管理 API を使用した Intune の管理対象デバイスです。",
- "managementLevelsAndroid4": "{0}: Android Enterprise 仕事用プロファイルまたは Android Enterprise フル デバイス管理を使用した Intune の管理対象デバイスです。",
- "managementLevelsIos1": "このオプションを使用して、このポリシーを MDM マネージド デバイスとアンマネージド デバイスのどちらに適用するかを指定します。",
- "managementLevelsIos2": "{0}: アンマネージド デバイスは、Intune MDM 管理が検出されないデバイスです。サードパーティの MDM ベンダーが含まれます。",
- "managementLevelsIos3": "{0}: マネージド デバイスは Intune MDM で管理されます。",
- "minAppVersion": "ユーザーがアプリに安全にアクセスするために必須の最小のアプリ バージョン番号を定義します。",
- "minAppVersionWarning": "ユーザーがアプリに安全にアクセスするために推奨される最小のアプリ バージョン番号を定義します。",
- "minOsVersion": "ユーザーがアプリに安全にアクセスするために必須の最小の OS バージョン番号を定義します。",
- "minOsVersionWarning": "ユーザーがアプリに安全にアクセスするために推奨される最小の OS バージョン番号を定義します。",
- "minPatchVersion": "ユーザーがアプリに安全にアクセスするために使用できる最も古い必須の Android セキュリティ パッチ レベルを定義します。",
- "minPatchVersionWarning": "ユーザーがアプリに安全にアクセスするために使用できる最も古い推奨の Android セキュリティ パッチ レベルを定義します。",
- "minSdkVersion": "ユーザーがアプリに安全にアクセスするために必須の最小の Intune アプリケーション保護ポリシー SDK バージョンを定義します。",
- "requireAppPinDefault": "登録されたデバイスでデバイス ロックが検出されたときにアプリ PIN を無効にするには、[はい] を選びます。
",
- "targetAllApps1": "このオプションを使用して、任意の管理状態のデバイスにあるアプリをポリシー対象とします。",
- "targetAllApps2": "ポリシー競合の解決時に、ユーザーが特定の管理状態を対象とするポリシーを設定している場合にはこの設定は置き換えられます。",
- "touchId2": "アプリへのアクセスに PIN ではなく指紋認証を要求するには {0} を選択します。"
- },
- "Tap": {
- "pinResetAfterNumberOfDays": "ユーザーが PIN をリセットすることが必要になるまでの日数を指定します。",
- "previousPinBlockCount": "この設定では、Intune で維持される以前の PIN の数を指定します。新しい PIN は、Intune が管理しているものとは別にする必要があります。"
+ "WindowsFeatureUpdate": {
+ "EndOFSupportStatus": {
+ "notSupported": "未サポート",
+ "supportEnding": "サポート終了間近",
+ "supported": "サポートあり"
+ }
},
- "WipPolicySettings": {
- "25": "",
- "allowWindowsSearch": "暗号化されたデータを Windows Search が引き続き検索することを許可します。",
- "authoritativeIpRanges": "Windows による IP 範囲の自動検出をオーバーライドする必要がある場合に、この設定を有効にします。",
- "authoritativeProxyServers": "Windows によるプロキシ サーバーの自動検出をオーバーライドする必要がある場合に、この設定を有効にします。",
- "checkInput": "入力が正しいかどうか確認します",
- "dataRecoveryCert": "回復証明書は、暗号化キーの紛失または破損の際に、暗号化されたファイルを回復するために使用できる、暗号化ファイル システム (EFS) の特別な証明書です。回復証明書を作成し、ここに指定する必要があります。詳細はこちらをご覧ください",
- "enterpriseCloudResources": "企業リソースとして扱い、Windows Information Protection ポリシーで保護するクラウド リソースを指定します。複数のリソースを指定するには、各リソースを '|' 文字で区切ります。
会社で構成したプロキシがある場合は、そのプロキシを指定できます。指定したクラウド リソースへのトラフィックは、そのプロキシを介してルーティングされます。
URL[,Proxy]|URL[,Proxy]
プロキシを指定しない場合: contoso.sharepoint.com|contoso.visualstudio.com
プロキシを指定する場合: contoso.sharepoint.com,proxy.contoso.com|contoso.visualstudio.com,proxy.contoso.com
",
- "enterpriseIPv4Ranges": "企業ネットワークを構成する IPv4 範囲を指定します。指定した IPv4 範囲は、企業ネットワークの境界を定義するために、指定したエンタープライズ ネットワーク ドメイン名と組み合わせて使用されます
Windows Information Protection を有効にする場合、この設定は必須です。
複数の範囲を指定するには、各範囲をコンマで区切ります。
例: 3.4.0.1-3.4.255.255,192.168.1.1-192.168.255.255
",
- "enterpriseIPv6Ranges": "企業ネットワークを構成する IPv6 範囲を指定します。指定した IPv6 範囲は、企業ネットワークの境界を定義するために、指定したエンタープライズ ネットワーク ドメイン名と組み合わせて使用されます。
複数の範囲を指定するには、各範囲をコンマで区切ります。
例: 2001:4898:dc05::-2001:4898:dc05:ffff:ffff:ffff:ffff:ffff,2a01:110::-2a01:110:7fff:ffff:ffff:ffff:ffff:ffff
",
- "enterpriseInternalProxyServers": "会社で構成したプロキシがある場合は、そのプロキシを指定できます。エンタープライズ クラウド リソースの設定で指定したクラウド リソースへのトラフィックは、そのプロキシを介してルーティングされます。
複数の値を指定するには、各値をセミコロンで区切ります。
例: contoso.internalproxy1.com;contoso.internalproxy2.com
",
- "enterpriseNetworkDomainNames": "企業ネットワークを構成する DNS 名を指定します。指定した DNS 名は、企業ネットワークの境界を定義するために、指定した IP 範囲と組み合わせて使用されます。複数の値を指定するには、各値をコンマで区切ります。
Windows Information Protection を有効にする場合、この設定は必須です。
例: corp.contoso.com,region.contoso.com
",
- "enterpriseProtectedDomainNames": "企業ネットワークを構成する DNS 名を指定します。指定した DNS 名は、企業ネットワーク境界を定義するために、指定した IP 範囲と組み合わせて使用されます。複数の値を指定するには、各値を '|' で区切ります。
Windows Information Protection を有効にする場合、この設定は必須です。
例: corp.contoso.com|region.contoso.com
",
- "enterpriseProxyServers": "外部接続するプロキシ サーバーが企業ネットワーク内にある場合は、ここでそのプロキシ サーバーを指定します。プロキシ サーバーのアドレスを指定する際に、トラフィックを許可し、Windows Information Protection で保護するポートも指定する必要があります。
注: この一覧には、エンタープライズ内部プロキシ サーバーの一覧に含まれているサーバーを含めないでください。複数の値を指定するには、各値をセミコロンで区切ります。
例: proxy.contoso.com:80;proxy2.contoso.com:80
",
- "maxInactivityTime1": "デバイスが PIN またはパスワードでロックされるまでの最大のアイドル時間 (分) を指定します。ユーザーは、設定アプリで指定した最大値より小さい既存のタイムアウト値を選ぶことができます。ただし、Lumia 950 と 950XL の場合、このポリシーで設定した値とは無関係に、最大タイムアウト値は 5 分です。",
- "maxInactivityTime2": "0 (既定) - タイムアウトは定義されていません。既定値の '0' は、'タイムアウト値は定義されていない' という意味に解釈されます。",
- "maxPasswordAttempts1": "このポリシーは、モバイル デバイスとデスクトップとで動作が異なります。",
- "maxPasswordAttempts2": "モバイル デバイスでは、このポリシーによって設定された値にユーザーが達した時点で、デバイスがワイプされます。",
- "maxPasswordAttempts3": "デスクトップでは、このポリシーに設定された値にユーザーが達したとき、デバイスはワイプされません。その代わりに、デスクトップは BitLocker 回復モードに置かれます。その場合、データにアクセスすることはできなくなりますが、回復は可能です。BitLocker が有効にされていない場合は、このポリシーを強制することができません。",
- "maxPasswordAttempts4": "失敗回数が制限値に達する前に、ユーザーはロック画面に送られ、これ以上失敗するとコンピューターがロックされるという警告が出ます。制限値に達すると、デバイスは自動的に再起動し、BitLocker 回復ページが表示されます。このページでは、ユーザーに BitLocker 回復キーが要求されます。",
- "maxPasswordAttempts5": "0 (既定) - 間違った PIN またはパスワードを入力した後に、デバイスがワイプされることはありません。",
- "maxPasswordAttempts6": "すべてのポリシー値が 0 の場合、最も安全な値は 0 です。それ以外の場合は、最小ポリシーの値が最も安全な値です。",
- "mdmDiscoveryUrl": "MDM に登録したユーザーが使うことになる MDM 登録エンドポイントの URL を指定します。既定では、これは Intune に指定されます。",
- "minimumPinLength1": "PIN に必要な最小文字数を設定する整数値。既定値は 4 です。このポリシー設定に構成できる最小数は 4 です。構成できる最大数は、PIN の最大長ポリシー設定で構成された数、または 127 のうち、どちらか小さいほうです。",
- "minimumPinLength2": "このポリシー設定を構成した場合は、PIN の長さはこの数以上にする必要があります。このポリシー設定を無効にした場合、または構成しなかった場合は、PIN の長さは 4 以上にする必要があります。",
- "name": "このネットワーク境界の名前",
- "neutralResources": "会社に認証リダイレクト エンドポイントがある場合は、ここでそれらのエンドポイントを指定します。ここで指定した場所は、リダイレクトの前に、接続のコンテキストに応じて、個人用または会社用と見なされます。
複数の値を指定する場合は、各値をコンマで区切ります。
例: sts.contoso.com,sts.contoso2.com
",
- "passportForWork1": "Windows にサインインする方法として Windows Hello for Business を設定する値。",
- "passportForWork2": "既定値は true です。このポリシーを false に設定した場合、ユーザーは Windows Hello for Business のプロビジョニングを実行できません。ただし、Azure Active Directory に参加している携帯電話は例外で、プロビジョニングが必要です。",
- "pinExpiration": "このポリシー設定に構成できる最大数は 730 です。このポリシー設定に構成できる最小数は 0 です。このポリシーを 0 に設定した場合、ユーザーの PIN に有効期限はなくなります。",
- "pinHistory1": "このポリシー設定に構成できる最大数は 50 です。このポリシー設定に構成できる最小数は 0 です。このポリシーを 0 に設定した場合、以前の PIN を格納する必要はありません。",
- "pinHistory2": "ユーザーの現在の PIN は、ユーザー アカウントに関連付けられた PIN のセットに含まれます。PIN をリセットすると、PIN の履歴は消去されます。",
- "protectUnderLock": "デバイスがロック状態の間、アプリのコンテンツを保護します。",
- "protectionModeBlock": "ブロック: 保護されたアプリからエンタープライズ データが離れることをブロックします。
",
- "protectionModeOff": "オフ: ユーザーは保護されたアプリのデータを自由に再配置できます。アクションはログに記録されません。
",
- "protectionModeOverride": "上書きの許可:ユーザーが、保護されたアプリから保護されていないアプリにデータを再配置しようとすると、プロンプトが表示されます。このプロンプトをオーバーライドすることを選択すると、そのアクションはログに記録されます。
",
- "protectionModeSilent": "サイレント: ユーザーは保護されたアプリのデータを自由に再配置できます。それらのアクションはログに記録されます。
",
- "required": "必要な領域",
- "revokeOnMdmHandoff": "Windows 10 バージョン 1703 に追加されました。このポリシーは、デバイスが MAM から MDM へアップグレードされたときに WIP キーを取り消すかどうかを制御します。[オフ] に設定された場合、キーは取り消されず、アップグレード後もユーザーは引き続き、保護されたファイルにアクセスできます。MAM サービスと同じ WIP EnterpriseID を使って MDM サービスが構成されている場合には、これが推奨されます。",
- "revokeOnUnenroll": "デバイスがこのポリシーから登録解除されると、暗号化キーが失効します。",
- "rmsTemplateForEdp": "RMS 暗号化に TemplateID GUID を使います。Azure RMS テンプレートを使うと、IT 管理者は、RMS で保護されたファイルにアクセスできるユーザーと、ユーザーがアクセスできる時間の長さについて詳細を構成することができます。",
- "showWipIcon": "ユーザーが会社のコンテキストで操作している場合に、アイコンのオーバーレイ表示によってそのことがユーザーに通知されます。",
- "useRmsForWip": "WIP に対して Azure RMS 暗号化を許可するかどうかを指定します。"
+ "SecurityTemplate": {
+ "aSR": "攻撃面の減少",
+ "accountProtection": "アカウント保護",
+ "allDevices": "すべてのデバイス",
+ "antivirus": "ウイルス対策",
+ "antivirusReporting": "ウイルス対策レポート (プレビュー)",
+ "conditionalAccess": "条件付きアクセス",
+ "deviceCompliance": "デバイスのポリシー準拠",
+ "diskEncryption": "ディスクの暗号化",
+ "eDR": "エンドポイントの検出と応答",
+ "firewall": "ファイアウォール",
+ "helpSupport": "ヘルプとサポート",
+ "setup": "セットアップ",
+ "wdapt": "Microsoft Defender for Endpoint"
+ },
+ "Win32ReturnCodes": {
+ "CodeTypes": {
+ "failed": "失敗",
+ "hardReboot": "ハード リブート",
+ "retry": "再試行",
+ "softReboot": "ソフト リブート",
+ "success": "成功"
},
- "requireAppPin": "登録されたデバイスでデバイス ロックが検出されたときにアプリ PIN を無効にするには、[はい] を選んでください。
注: サード パーティの EMM ソリューションが iOS/iPadOS で使用されている場合、Intune ではデバイスの登録を検出できません。
"
- },
- "AppInfoBalloonText": {
- "Certificate": {
- "customSubjectName": "CN={{UserName}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US\r\nor\r\nCN={{AAD_Device_ID}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US",
- "keySize": "キーに含まれるビット数を選択します。",
- "keyUsage": "証明書の公開キーを交換するために必要な暗号化操作を指定します。",
- "renewalThreshold": "デバイスで証明書の更新をリクエストできるようになるまでの残りの証明書の有効期間の割合 (1% から 99% まで) を入力します。Intune の推奨値は 20% です。(1-99)",
- "rootCert": "以前に構成されて割り当てられたルートの CA 証明書プロファイルを選択してください。CA 証明書は、このプロファイル (現在構成中のプロファイル) の証明書を発行する CA のルート証明書と一致する必要があります。",
- "scepServerUrl": "SCEP を使用して証明書を発行する NDES サーバーの URL を入力します (HTTPS にする必要があります)。例: https://contoso.com/certsrv/mscep/mscep.dll",
- "scepServerUrls": "SCEP を使用して証明書を発行する NDES サーバーについて 1 つまたは複数の URL を追加します (HTTPS にする必要があります)。例: https://contoso.com/certsrv/mscep/mscep.dll",
- "subjectAlternativeName": "サブジェクトの別名",
- "subjectNameFormat": "サブジェクト名の形式",
- "validityPeriod": "証明書の有効期限が切れるまでの残りの期間を示しています。証明書のテンプレートに示されている有効期間に等しいかそれより少ない値を入力してください。既定値は 1 年です。"
- },
- "appInstallContext": "これにより、このアプリに関連するインストール コンテキストが指定されます。デュアル モードのアプリでは、このアプリに必要なコンテキストを選択してください。他のすべてのアプリでは、これはパッケージに基づき事前に選択されていて、変更できません。",
- "autoUpdateMode": "アプリの更新の優先度を構成します。[デフォルト] を選択すると、アプリを更新する前に、デバイスを WiFi に接続し、充電状態にし、アクティブに使用しないようにするよう求めます。デバイスでの課金状態、WiFi 機能、エンド ユーザー アクティビティに関係なく、開発者がアプリを公開したらすぐにアプリを更新するには、 [高優先度] を選択します。高優先度は、DO デバイスでのみ有効になります。",
- "configurationSettingsFormat": "構成設定の形式のテキスト",
- "ignoreVersionDetection": "(Google Chrome などの) アプリ開発者によって自動的に更新されるアプリの場合は、これを [はい] に設定します。",
- "ignoreVersionDetectionMacOSLobApp": "アプリ開発者によって自動的に更新されるアプリ、またはインストール前にアプリの bundleID のみを確認する場合は、[はい] を選択します。インストール前にアプリの bundleID とバージョン番号を確認する場合は、[いいえ] を選択してます。",
- "installAsManagedMacOSLobApp": "この設定は macOS 11 以降にのみ適用されます。macOS 10.15 以下の場合、アプリはインストールされますが、管理されません。",
- "installContextDropdown": "適切なインストール コンテキストを選択します。ユーザー コンテキストでは対象のユーザーにのみアプリがインストールされますが、デバイス コンテキストではデバイス上のすべてのユーザーにアプリがインストールされます。",
- "ldapUrl": "これは、クライアントがメール受信者のパブリック暗号化キーを取得できる LDAP ホスト名です。キーが使用可能になると、電子メールは暗号化されます。サポートされている形式: - ldap.example.com
\r\n- ldap.example.com:123
\r\n- ldap://ldap.example.com
- ldap://ldap.example.com:123
- ldaps://ldap.example.com
\r\n- ldaps://ldap.example.com:123
",
- "permissionsSettings": "関連付けられているアプリのランタイム アクセス許可を選択します。",
- "policyAssociatedApp": "このポリシーを関連付けるアプリを選びます。",
- "policyConfigurationSettings": "このポリシーの構成設定を定義するために使用する方法を選びます。",
- "policyDescription": "必要に応じて、この構成ポリシーの説明を入力します。",
- "policyEnrollmentType": "これらの設定をデバイス管理と Intune SDK で作成されたアプリのどちらで管理するかを選択します。",
- "policyName": "この構成ポリシーの名前を入力します。",
- "policyPlatform": "このアプリ構成ポリシーを適用するプラットフォームを選びます。",
- "policyProfileType": "このアプリ構成プロファイルが適用されるデバイス プロファイルの種類を選択します",
- "policySMime": "Outlook の S/MIME 署名および暗号化の設定を構成します。",
- "sMimeDeployCertsFromIntune": "Outlook で使用する S/MIME 証明書を Intune から配信するかどうかを指定します。\r\nIntune では、ポータル サイトでユーザーに署名および暗号化証明書を自動的に展開できます。",
- "sMimeEnable": "電子メールを作成するときに、S/MIME コントロールを有効にするかどうかを指定してください",
- "sMimeEnableAllowChange": "ユーザーに [S/MIME を有効にする] 設定の変更を許可するかどうかを指定します。",
- "sMimeEncryptAllEmails": "すべての電子メールを暗号化する必要があるかどうかを指定します。\r\n暗号化すると、目的の受信者のみが読み取れるようにデータは暗号化テキストに変換されます。",
- "sMimeEncryptAllEmailsAllowChange": "ユーザーに [すべての電子メールを暗号化する] 設定の変更を許可するかどうかを指定します。",
- "sMimeEncryptionCertProfile": "電子メール暗号化の証明書プロファイルを指定します。",
- "sMimeSignAllEmails": "すべての電子メールに署名が必要かどうかを指定します。\r\nデジタル署名は、電子メールの信頼性を検証し、コンテンツが伝送中に改ざんされていないことを保証します。",
- "sMimeSignAllEmailsAllowChange": "ユーザーに [すべての電子メールに署名する] 設定の変更を許可するかどうかを指定します。",
- "sMimeSigningCertProfile": "電子メール署名の証明書プロファイルを指定します。",
- "sMimeUserNotificationType": "Outlook の S/MIME 証明書を取得するためポータル サイトを開く必要があることをユーザーに通知する方法。"
- },
- "WindowsQualityUpdateDaysUntilForcedReboot": {
- "oneDay": "1 日",
- "twoDays": "2 日",
- "zeroDays": "0 日"
- },
- "Autopilot": {
- "AssignResourceAccount": {
- "createNewCommandMenu": "新規作成",
- "createNewResourceAccountInfo": "\r\n登録中に新しいリソース アカウントを作成します。リソース アカウントはリソース アカウント テーブルにすぐに追加されますが、デバイスが登録され、Surface Hub サブスクリプションが検証されるまでアクティブになりません。リソース アカウントの詳細をご確認ください
\r\n ",
- "createNewResourceTitle": "新しいリソース アカウントの作成",
- "deviceNameInvalid": "デバイス名の形式が無効です",
- "deviceNameRequired": "デバイス名が必要です",
- "editResourceAccountLabel": "編集",
- "selectExistingCommandMenu": "既存のものを選択"
- },
- "Device": {
- "ComputerName": {
- "validFormat": "名前の長さは 15 文字以内にする必要があり、使用できるのは文字 (a から z、A から Z)、数字 (0 から 9)、ハイフンです。名前に数字のみを含めることはできません。名前に空白スペースを含めることはできません。"
- },
- "Header": {
- "addressableUserName": "ユーザー フレンドリ名",
- "azureADDevice": "関連付けられている Azure AD デバイス",
- "batch": "グループ タグ",
- "dateAssigned": "割り当て日",
- "deviceDisplayName": "デバイス名",
- "deviceName": "デバイス名",
- "deviceUseType": "デバイスの使用タイプ",
- "enrollmentState": "登録の状態",
- "intuneDevice": "関連付けられている Intune デバイス",
- "lastContacted": "最終接続",
- "make": "製造元",
- "model": "モデル",
- "profile": "割り当てられたプロファイル",
- "profileStatus": "プロファイルの状態",
- "purchaseOrderId": "注文書",
- "resourceAccount": "リソース アカウント",
- "serialNumber": "シリアル番号",
- "userPrincipalName": "ユーザー"
- }
- },
- "DeviceUseType": {
- "meetingAndPresentation": "会議とプレゼンテーション",
- "teamCollaboration": "チームのグループ作業"
- },
- "Devices": {
- "featureDescription": "Windows Autopilot を使用して、ユーザーの out-of-box experience (OOBE) をカスタマイズできます。",
- "importErrorStatus": "一部のデバイスがインポートされませんでした。詳細については、こちらをクリックします。",
- "importPendingStatus": "インポートが進行中です。経過時間: {0} 分。この処理には最大 {1} 分かかります。"
- },
- "DirectoryService": {
- "activeDirectoryAD": "Hybrid Azure AD Join を使用した",
- "activeDirectoryADLabel": "Autopilot を使った Hybrid Azure AD",
- "azureAD": "Azure AD 参加済み",
- "unknownType": "不明な種類"
- },
- "Filter": {
- "enrollmentState": "状態",
- "profile": "プロファイルの状態"
- },
- "OOBE": {
- "AddressableUserName": {
- "validateEmpty": "ユーザー フレンドリ名を空にすることはできません。"
- },
- "ApplyComputerNameTemplate": {
- "infoBalloon": "登録中にデバイスに名前を追加するための、名前付けテンプレートを作成します。",
- "label": "デバイス名のテンプレートを適用する"
- },
- "ApplyComputerNameTemplateDisabled": {
- "label": "Hybrid Azure AD Join を使用した種類の Autopilot Deployment プロファイルの場合、ドメイン参加構成で指定されている設定によってデバイスの名前が指定される。"
- },
- "ComputerNameTemplate": {
- "emptyValue": "MyCompany-%RAND:4%",
- "label": "名前の入力",
- "noDisallowedChars": "名前には、英数字、ハイフン、%SERIAL%、%RAND:x% のいずれかのみを含める必要があります",
- "serialLength": "使用できるのは %SERIAL% で 7 文字以内です",
- "validateLessThan15Chars": "名前の長さは 15 文字以下にする必要があります",
- "validateNoSpaces": "コンピューター名にスペースを含めることはできません。",
- "validateNotAllNumbers": "名前には、文字とハイフンの両方またはそのいずれかを含める必要もあります",
- "validateNotEmpty": "名前を空にすることはできません。",
- "validateOnlyOneMacro": "名前には、%SERIAL% か %RAND:x% のいずれかのみを含める必要があります"
- },
- "ConfigureComputerNameTemplate": {
- "description": "デバイスに一意の名前を作成します。名前の長さは 15 文字以内にする必要があります。また、文字 (a-z、A-Z)、数字 (0-9)、ハイフンを使用することができます。名前に数字のみを含めることはできません。名前に空白スペースを含めることはできません。%SERIAL% マクロを使用して、ハードウェア固有のシリアル番号を追加します。または、%RAND:x% マクロを使用してランダムな数値の文字列を追加します。ここでは、x は追加する桁数に相当します。"
- },
- "EnableWhiteGlove": {
- "infoBalloon": "Windows キーを 5 回押すことで、ユーザー認証なしで OOBE を実行してデバイスを登録し、システム コンテキストのアプリと設定をプロビジョニングできるようにします。ユーザー コンテキストのアプリと設定はユーザーがサインインしたときに配信されます。",
- "label": "事前プロビジョニングされたデプロイを許可する"
- },
- "HybridAzureADSkipConnectivityCheck": {
- "infoBalloon": "Autopilot Hybrid Azure AD の結合フローは、OOBE 中にドメイン コントローラーの接続を確立していない場合でも続行されます。",
- "label": "AD 接続の確認をスキップする (プレビュー)"
- },
- "accountType": "ユーザー アカウントの種類",
- "accountTypeInfo": "ユーザーがデバイス上の管理者と標準ユーザーのどちらであるかを指定します。この設定は、グローバル管理者と会社の管理者のどちらのアカウントにも適用されないことにご注意ください。これらのアカウントは、Azure AD 内のすべての管理機能へのアクセス権を持っているため、標準ユーザーにすることはできません。",
- "configOOBEInfo": "\r\nAutopilot デバイスの out-of-box experience を構成します\r\n
",
- "configureDevice": "配置モード",
- "configureDeviceHintForSurfaceHub2": "Autopilot では、Surface Hub 2 に対して自動展開モードのみをサポートしています。このモードでは、ユーザーと登録されたデバイスとの関連付けは行われないため、ユーザーの資格情報は必要ありません。",
- "configureDeviceHintForWindowsPC": "\r\n 展開モードは、デバイスをプロビジョニングするためにユーザーの資格情報を入力する必要があるかどうかを指定します。\r\n
\r\n \r\n - \r\n ユーザー ドリブン: デバイスは、そのデバイスを登録するユーザーに関連付けられます。デバイスをプロビジョニングするには、ユーザーの資格情報が必要です\r\n
\r\n - \r\n 自己展開 (プレビュー): デバイスは、そのデバイスを登録するユーザーと関連付けられません。デバイスをプロビジョニングするためにユーザーの資格情報は必要はありません\r\n
\r\n
",
- "createSurfaceHub2Info": "Surface Hub 2 デバイスの Autopilot 登録設定を構成します。既定で、Autopilot では OOBE 中のユーザー認証のスキップが有効です。Surface Hub 2 向け Windows Autopilot の詳細をご確認ください。",
- "createWindowsPCInfo": "\r\n\r\n次のオプションは自己展開モードで Autopilot デバイスに対して自動的に有効になります。\r\n
\r\n\r\n - \r\n 職場または自宅での使用の選択をスキップ\r\n
\r\n - \r\n OEM 登録および OneDrive 構成のスキップ\r\n
\r\n - \r\n OOBE でのユーザー認証のスキップ\r\n
\r\n
",
- "endUserDevice": "ユーザー ドリブン",
- "hideEscapeLink": "アカウントの変更オプションを非表示にする",
- "hideEscapeLinkInfo": "アカウントの変更オプションと別のアカウントでやり直すオプションが、デバイスの初期セットアップ中に、会社のサインイン ページとドメインのエラー ページにそれぞれ表示されます。これらのオプションを非表示にするには、Azure Active Directory で会社のブランドを構成する必要があります (Windows 10 の 1809 以降または Windows 11 が必要)。",
- "info": "AutoPilot プロファイルの設定により、最初に Windows を起動するときにユーザーに表示する out-of-box experience を定義します。",
- "language": "言語 (リージョン)",
- "languageInfo": "使用する言語と地域を指定します。",
- "licenseAgreement": "マイクロソフト ソフトウェア ライセンス条項",
- "licenseAgreementInfo": "ユーザーに EULA を表示するかどうかを指定します。",
- "plugAndForgetDevice": "自己展開 (プレビュー)",
- "plugAndForgetGA": "自己展開",
- "privacySettingWarning": "診断データ コレクションの既定値が、Windows 10 バージョン 1903 以降、または Windows 11 を実行しているデバイスで変更されました。 ",
- "privacySettings": "プライバシーの設定",
- "privacySettingsInfo": "プライバシーの設定をユーザーに表示するかどうかを指定します。",
- "showCortanaConfigurationPage": "Cortana 構成",
- "showCortanaConfigurationPageInfo": "表示により、起動時に Cortana 構成の導入が有効になります。",
- "skipEULAWarning": "ライセンス条項の非表示に関する重要な情報",
- "skipKeyboardSelection": "キーボードを自動的に構成する",
- "skipKeyboardSelectionInfo": "true の場合、[言語] が設定されているとキーボードの選択ページをスキップします。",
- "subtitle": "AutoPilot プロファイル",
- "title": "Out-of-box experience (OOBE)",
- "useOSDefaultLanguage": "オペレーティング システムの既定値",
- "userSelect": "ユーザーの選択"
- },
- "Sync": {
- "lastRequestedLabel": "最後の同期要求",
- "lastSuccessfulLabel": "前回成功した同期",
- "syncInProgress": "同期しています。しばらくしてからもう一度ご確認ください。",
- "syncInitiated": "AutoPilot 設定の同期を開始しました。",
- "syncSettingsTitle": "AutoPilot 設定の同期"
- },
- "Title": {
- "devices": "Windows AutoPilot デバイス"
- },
- "Tooltips": {
- "addressableUserName": "デバイスの設定中に表示されるグリーティング名。",
- "azureADDevice": "関連付けられているデバイスについては、デバイスの詳細に移動します。N/A は、関連付けられているデバイスがないことを意味します。",
- "batch": "デバイスのグループを識別するために使用できる文字列属性。Intune のグループ タグ フィールドが Azure AD デバイスの OrderID 属性にマップされます。",
- "dateAssigned": "プロファイルがデバイスに割り当てられたときのタイムスタンプ。",
- "deviceDisplayName": "デバイスの一意の名前を構成します。Hybrid Azure AD Join を使用したデプロイでは、この名前は無視されます。デバイス名は、Hybrid Azure AD デバイスのドメイン参加プロファイルからのものです。",
- "deviceName": "ユーザーがデバイスを検出して接続しようとしたときに表示される名前です。",
- "deviceUseType": " デバイスが選択内容に基づいて設定されます。後でいつでも設定を変更できます。\r\n \r\n - 会議とプレゼンテーションでは、Windows Hello は有効になっておらず、セッションごとにデータが削除されます。\r\n
\r\n - チームのグループ作業では、Windows Hello は有効になっており、すぐにサインインできるようにプロファイルが保存されます
\r\n
",
- "enrollmentState": "デバイスが登録されているかどうかを指定します。",
- "intuneDevice": "関連付けられているデバイスについては、デバイスの詳細に移動します。N/A は、関連付けられているデバイスがないことを意味します。",
- "lastContacted": "デバイスへの最終接続時のタイムスタンプ。",
- "make": "選択したデバイスの製造元。",
- "model": "選択したデバイスのモデル",
- "profile": "デバイスに割り当てられているプロファイルの名前。",
- "profileStatus": "プロファイルがデバイスに割り当てられているかどうか指定します。",
- "purchaseOrderId": "発注 ID",
- "resourceAccount": "デバイスの ID またはユーザー プリンシパル名 (UPN)。",
- "serialNumber": "選択したデバイスのシリアル番号。",
- "userPrincipalName": "デバイスの設定中に認証を事前設定するユーザー。"
- },
- "allDevices": "すべてのデバイス",
- "allDevicesAlreadyAssignedError": "Autopilot プロファイルは、既にすべてのデバイスに割り当てられています。",
- "assignFailedDescription": "{0} の割り当てを更新できませんでした。",
- "assignFailedTitle": "AutoPilot プロファイル割り当てを更新できませんでした。",
- "assignSuccessDescription": "{0} の割り当てが正常に更新されました。",
- "assignSuccessTitle": "AutoPilot プロファイル割り当ては正常に更新されました。",
- "assignSufaceHub2ProfileNextStep": "この展開の次の手順",
- "assignSurfaceHub2ProfileToDeviceGroup": "1. このプロファイルを少なくとも 1 つのデバイス グループに割り当てる",
- "assignSurfaceHub2ProfileToResourceAccount": "2. このプロファイルを展開する Surface Hub デバイスごとにリソース アカウントに割り当てる",
- "assignedDevicesCount": "割り当てられたデバイス",
- "assignedDevicesResourceAccountDescription": "このプロファイルをデバイスに展開するには、デバイスにリソースアカウントを割り当てる必要があります。一度に 1 つのデバイスを選択して既存のリソース アカウントを割り当てるか、新しいリソース アカウントを作成してください。リソースアカウントの詳細をご確認ください
",
- "assignedDevicesResourceAccountStatusBarMessage": "このテーブルには、このプロファイルが割り当てられている Surface Hub 2 デバイスのみが一覧表示されます。",
- "assigningDescription": "{0} の割り当てを更新中です。",
- "assigningTitle": "AutoPilot プロファイル割り当てを更新しています。",
- "cannotDeleteMessage": "このプロファイルは、グループに割り当てられます。このプロファイルを削除する前に、このプロファイルからすべてのグループの割り当てを解除する必要があります。",
- "cannotDeleteTitle": "'{0}' を削除できない",
- "createdDateTime": "作成済み",
- "deleteMessage": "この AutoPilot プロファイルを削除すると、このプロファイルに割り当て済みのデバイスに [割り当てなし] と表示されます。",
- "deleteMessageWithPolicySet": "{0} は、1 つまたは複数のポリシー セットに含まれています。{0} を削除すると、これらのポリシー セットを使用してそれを割り当てることができなくなります。",
- "deleteTitle": "このプロファイルを削除しますか?",
- "description": "説明",
- "deviceType": "デバイスの種類",
- "deviceUse": "デバイスの使用",
- "directoryServiceHintForSurfaceHub2": " \r\n Autopilot では、Surface Hub 2 デバイスに対して Azure AD 参加済みのみをサポートしています。デバイスが組織内の Active Directory (AD) に参加する方法を指定します。\r\n
\r\n \r\n - \r\n Azure AD 参加済み: オンプレミスの Windows Server Active Directory が含まれない、クラウド専用。\r\n
\r\n
\r\n ",
- "directoryServiceHintForWindowsPC": "\r\n \r\n デバイスが組織内の Active Directory (AD) に参加する方法を指定します。\r\n
\r\n \r\n - \r\n Azure AD 参加済み: オンプレミスの Windows Server Active Directory が含まれない、クラウド専用\r\n
\r\n
\r\n ",
- "getAssignedDevicesCountError": "割り当て済みデバイス数のフェッチ中にエラーが発生しました。",
- "getAssignmentsError": "AutoPilot プロファイル割り当てのフェッチ中にエラーが発生しました。",
- "harvestDeviceId": "すべての対象デバイスを Autopilot に変換する",
- "harvestDeviceIdDescription": "既定では、このプロファイルは Autopilot サービスから同期された Autopilot デバイスのみに適用できます。",
- "harvestDeviceIdInfo": "\r\n 対象デバイスがまだ登録されていない場合は、[はい] をクリックして、すべての対象デバイスを Autopilot に登録します。登録されたデバイスで次に Windows OOBE (Out of Box Experience) を実行する場合、割り当てられた Autopilot シナリオが実行されます。\r\n
\r\n 特定の Autopilot シナリオには、それぞれ必要な Windows の最低ビルドがあることにご注意ください。デバイスに、シナリオの実行に必要な最低ビルドがあることをご確認ください。\r\n
\r\n このプロファイルを削除しても、対象のデバイスは Autopilot から削除されません。Autopilot からデバイスを削除するには、Windows Autopilot デバイス ビューをご利用ください。\r\n",
- "harvestDeviceIdWarning": "変換後、Autopilot デバイスは、Autopilot デバイス リストから削除するだけで元に戻すことができます。",
- "holoLensCommandMenu": "HoloLens",
- "info": "Windows AutoPilot Deployment プロファイルを使用して、デバイスの out-of-box experience をカスタマイズできます。",
- "invalidProfileNameMessage": "文字 \"{0}\" は許可されていません",
- "joinTypeLabel": "Azure AD への参加の種類",
- "lastModifiedDateTime": "最終更新:",
- "name": "名前",
- "noAutopilotProfile": "AutoPilot プロファイルがありません",
- "notEnoughPermissionAssignedError": "選択した 1 つ以上のグループにこのプロファイルを割り当てるためのアクセス許可が不十分です。管理者にお問い合わせください。",
- "profile": "プロファイル",
- "resourceAccountStatusBarMessage": "このプロファイルが展開される各 Surface Hub 2 デバイスにリソース アカウントが必要です。詳細についてはクリックしてください。",
- "selectServices": "デバイスが参加するディレクトリ サービスを選択します",
- "surfaceHub2CommandMenu": "Surface Hub 2",
- "surfaceHub2SCommandMenu": "Surface Hub 2S",
- "userAffinityLabel": "配置モード",
- "windowsPCCommandMenu": "Windows PC",
- "directoryServiceLabel": "Azure AD への参加の種類"
- },
- "AppInformationTab": {
- "Error": {
- "multipleChildApps": "アップロードされたパッケージに 1 つのアプリが含まれている場合にのみ、macOS LOB アプリを管理対象としてインストールできます。"
- },
- "Info": {
- "AppStoreUrl": {
- "android": "Google Play ストアのアプリ一覧へのリンクを入力してください。例:",
- "androidLink": "https://play.google.com/store/apps/details?id=com.microsoft.office.outlook",
- "windows": "Microsoft Store のアプリ一覧へのリンクを入力してください。例:",
- "windowsLink": "https://www.microsoft.com/en-us/p/microsoft-to-do-lists-tasks-reminders/9nblggh5r558"
- },
- "appPackageFile": "デバイスにサイドロードできる形式のアプリを含むファイルです。有効なパッケージの種類には、Android (.apk)、iOS (.ipa)、macOS (.intunemac)、Windows (.msi、.appx、.appxbundle、.msix、.msixbundle) があります。",
- "applicableDeviceType": "このアプリをインストールできるデバイスの種類を選択します。",
- "category": "ユーザーがポータル サイトで簡単に並べ替えや検索を行えるように、アプリを分類します。複数のカテゴリを選択することができます。",
- "categoryLink": "https://docs.microsoft.com/en-us/intune/apps/apps-add#create-and-edit-categories-for-apps",
- "description": "デバイスのユーザーがアプリの内容やアプリで実行可能な操作について理解できるようにします。この説明はポータル サイトでユーザーに表示されます。",
- "developer": "アプリを開発した会社または個人の名前。この情報は、管理センターにサインインしているユーザーに表示されます。",
- "displayVersion": "アプリのバージョン。この情報は、ポータル サイトでユーザーに表示されます。",
- "infoUrl": "アプリに関する詳細情報が記載されている Web サイトまたはドキュメントに、ユーザーをリンクします。情報の URL は、ポータル サイトでユーザーに表示されます。",
- "isFeatured": "おすすめアプリをポータル サイトに目立つように配置して、ユーザーがすぐにアクセスできるようにします。",
- "learnMore": "詳細",
- "logo": "アプリに関連付けられているロゴをアップロードします。このロゴはポータル サイト全体でアプリの横に表示されます。",
- "macOSDmgAppPackageFile": "デバイスにサイドロード可能な形式でアプリを含むファイル。有効なパッケージの種類: .dmg。",
- "minOperatingSystem": "アプリをインストールできる最も古いオペレーティング システムのバージョンを選択します。それより前のオペレーティング システムのデバイスにアプリを割り当てると、そのアプリはインストールされません。",
- "name": "アプリの名前を追加します。この名前は、Intune アプリの一覧およびポータル サイトでユーザーに表示されます。",
- "notes": "アプリに関する追加のメモを追加します。メモは、管理センターにサインインしているユーザーに表示されます。",
- "owner": "ライセンスを管理しているか、このアプリの連絡先となっている組織内のユーザーの名前。この名前は、管理センターにサインインしているユーザーに表示されます。",
- "packageName": "デバイスの製造元に連絡して、アプリのパッケージ名を取得してください。パッケージ名の例: com.example.app",
- "privacyUrl": "アプリのプライバシーの設定と使用条件に関する詳細情報を希望するユーザーにリンクを提供します。プライバシー URL は、ポータルサイトでユーザーに表示されます。",
- "publisher": "アプリを配布する開発者または会社の名前。この情報は、ポータル サイトでユーザーに表示されます。",
- "selectApp": "Intune でデプロイする iOS ストア アプリをアプリ ストアで検索します。",
- "useManagedBrowser": "必要に応じて、ユーザーが Web アプリを開くときに、そのアプリを Microsoft Edge または Intune Managed Browser などの Intune で保護されたブラウザーで開きます。この設定は iOS と Android の両方のデバイスに適用されます。",
- "useManagedBrowserLink": "https://docs.microsoft.com/en-us/intune/apps/app-configuration-managed-browser",
- "win32AppPackageFile": "デバイスにサイドロードできる形式でお客様のアプリを含むファイルです。有効なパッケージの種類: .intunewin。"
- },
- "descriptionPreview": "プレビュー",
- "descriptionRequired": "説明が必要です。",
- "editDescription": "説明を編集します",
- "name": "アプリ情報",
- "nameForOfficeSuitApp": "アプリ スイートの情報"
- },
+ "Columns": {
+ "codeType": "コードの種類",
+ "returnCode": "リターン コード"
+ },
+ "bladeTitle": "リターン コード",
+ "gridAriaLabel": "リターン コード",
+ "header": "インストール後の動作を示すリターン コードを指定します。",
+ "onAddAnnounceMessage": "{1} のアイテム {0} が追加されたリターン コード",
+ "onDeleteSuccess": "リターン コード {0} が正常に削除されました",
+ "returnCodeAlreadyUsedValidation": "リターン コードは既に使用されています。",
+ "returnCodeMustBeIntegerValidation": "リターン コードは整数である必要があります。",
+ "returnCodeShouldBeAtLeast": "リターン コードは {0} 以上である必要があります。",
+ "returnCodeShouldBeAtMost": "リターン コードは {0} 以下である必要があります。",
+ "selectorLabel": "リターン コード"
+ },
"NotificationMessage": {
"NotificationMessageTemplatesTab": {
"arabic": "アラビア語",
@@ -10516,84 +10079,599 @@
"localeLabel": "ロケール",
"isDefaultLocale": "既定である"
},
- "Win32Program": {
- "DeviceRestartBehaviorOptions": {
- "allow": "アプリのインストールによるデバイスの強制的な再起動を許可する",
- "basedOnReturnCode": "リターン コードを基に動作を決定する",
- "force": "Intune によってデバイスの必須の再起動が強制実行されるようにする",
- "suppress": "何もしない"
- },
- "RunAsAccountOptions": {
- "system": "システム",
- "user": "ユーザー"
- },
- "bladeTitle": "プログラム",
- "deviceRestartBehavior": "デバイスの再起動",
- "deviceRestartBehaviorTooltip": "アプリが正常にインストールされた後の、デバイスの再起動の動作を選択します。リターン コードの構成設定に基づいてデバイスを再起動するには、[リターン コードを基に動作を決定する] を選択してください。MSI ベースのアプリのインストール中にデバイスの再起動を抑止するには、[何もしない] を選択してください。再起動を抑止せずにアプリのインストールを完了できるようにするには、[アプリのインストールによるデバイスの強制的な再起動を許可する] を選択してください。アプリのインストールが正常に完了した後、常にデバイスを再起動するには、[Intune によってデバイスの必須の再起動が強制実行されるようにする] を選択してください。",
- "header": "アプリをインストール/アンインストールするコマンドを指定します:",
- "installCommand": "インストール コマンド",
- "installCommandMaxLengthErrorMessage": "インストール コマンドは、許可されている最大長の 1024 文字以下でなければなりません。",
- "installCommandTooltip": "このアプリをインストールするために使用する完全なインストール コマンド ラインです。",
- "runAs32Bit": "64 ビット クライアント上でインストール/アンインストール コマンドを 32 ビット プロセス内で実行する",
- "runAs32BitTooltip": "64 ビット クライアント上でアプリのインストール/アンインストールを 32 ビット プロセス内で実行するには、[はい] を選択します。[いいえ] (既定) を選択すると、64 ビット クライアント上でアプリのインストール/アンインストールが 64 ビット プロセス内で実行されます。32 ビットのクライアントでは、常に 32 ビット プロセスが使用されます。",
- "runAsAccount": "インストールの処理",
- "runAsAccountTooltip": "サポートされている場合、このアプリをすべてのユーザーにインストールするには、[システム] を選択します。このアプリをデバイスにログインしているユーザーにインストールするには、[ユーザー] を選択します。2 つの目的の MSI アプリでは、変更すると、最初のインストール時にデバイスに適用された値が復元されるまで、更新とアンインストールが正常に完了しなくなります。",
- "selectorLabel": "プログラム",
- "uninstallCommand": "アンインストール コマンド",
- "uninstallCommandTooltip": "このアプリをアンインストールするために使用する完全なアンインストール コマンド ラインです。"
- },
- "OutlookAppConfigSettings": {
- "AllowUserToChangeSetting": {
- "title": "ユーザーに設定の変更を許可する",
- "tooltip": "ユーザーに設定の変更を許可するかどうかを指定します。"
- },
- "AllowWorkAccounts": {
- "title": "職場または学校アカウントのみ許可する",
- "tooltip": "この設定を有効にすると、ユーザーは Outlook での個人用のメールおよびストレージ アカウントの追加ができません。ユーザーが Outlook に追加された個人用アカウントを持っている場合は、個人用アカウントを削除するように求められます。ユーザーが個人用アカウントを削除しない場合は、職場または学校アカウントを追加できません。"
- },
- "BlockExternalImages": {
- "title": "外部画像をブロックする",
- "tooltip": "外部画像のブロックを有効にすると、アプリはメッセージの本文に埋め込まれているインターネット上でホストされている画像をダウンロードしません。設定で構成しない場合、既定のアプリ設定はオフになっています。"
- },
- "ConfigureEmail": {
- "title": "メール アカウント設定を構成する"
- },
- "DefaultAppSignatureSetting": {
- "Tooltip": {
- "android": "既定のアプリ署名では、アプリでメッセージを作成中に、既定の署名に「Outlook for Android の入手」を使用するかどうかを示します。設定がオフに構成されている場合、既定の署名は使用されませんが、ユーザー独自の署名を追加することができます。\r\n\r\n[未構成] に設定すると、既定のアプリ設定がオンになります。",
- "iOS": "既定のアプリ署名では、アプリでメッセージを作成中に、既定の署名に「Outlook for iOSの入手」を使用するかどうかを示します。設定がオフに構成されている場合、既定の署名は使用されませんが、ユーザー独自の署名を追加することができます。\r\n\r\n[未構成] に設定すると、既定のアプリ設定がオンになります。"
- },
- "title": "既定のアプリ署名"
- },
- "OfficeFeedReplies": {
- "title": "Discover フィード",
- "tooltip": "Discover フィードは、最も頻繁にアクセスされている Office ファイルを明らかにします。既定では、Delve がユーザーに対して有効になっているときに、このフィードが有効になります。未構成として設定した場合、既定のアプリ設定はオンに設定されます。"
- },
- "OrganizeMailByThread": {
- "title": "スレッド別にメールを整理",
- "tooltip": "Outlook の既定の動作では、電子メールの会話がスレッド形式の会話ビューにまとめられます。この設定を無効にすると、Outlook で各メールが個別に表示され、スレッドごとにグループ化されません。"
- },
- "PlayMyEmails": {
- "title": "メールの再生",
- "tooltip": "アプリでは、メールの再生機能は既定では有効になっていませんが、受信トレイ内のバナーを介して対象ユーザーに宣伝されます。オフに設定すると、この機能はアプリ内の対象ユーザーに宣伝されなくなります。ユーザーは、この機能がオフに設定されている場合でも、アプリ内からメールの再生を手動で有効にすることを選択できます。未構成として設定した場合、既定のアプリ設定はオンになり、機能が対象ユーザーに宣伝されます。"
- },
- "SuggestedReplies": {
- "title": "返信の提案",
- "tooltip": "Outlook でメッセージを開くと、メッセージの下に返信が提案される場合があります。提案された返信を選択し、編集してから送信できます。"
- },
- "SyncCalendars": {
- "title": "予定表の同期",
- "tooltip": "ユーザーが Outlook カレンダーをネイティブのカレンダー アプリとデータベースと同期できるようにするかどうかを構成します。"
- },
- "TextPredictions": {
- "title": "予測入力",
- "tooltip": "Outlook では、メッセージを作成するときに、単語やフレーズを候補として表示できます。Outlook で候補が提示されたら、スワイプして受け入れます。未構成として設定されている場合、既定のアプリ設定は [オン] に設定されます。"
+ "WindowsQualityUpdateProfile": {
+ "Details": {
+ "DaysUntilForcedReboot": {
+ "label": "再起動が強制されるまでの待機日数"
+ },
+ "Description": {
+ "label": "説明"
+ },
+ "Name": {
+ "label": "名前"
+ },
+ "QualityUpdateRelease": {
+ "label": "デバイスの OS バージョンが次より小さい場合に品質更新プログラムを迅速にインストールする:"
+ },
+ "bladeTitle": "Windows 10 以降の品質更新プログラム (プレビュー)",
+ "loadError": "読み込みに失敗しました。"
+ },
+ "TabName": {
+ "qualityUpdateSettings": "設定"
+ },
+ "infoBoxText": "既存の Windows 10 以降の更新リング ポリシー以外で現在利用可能な専用の品質更新プログラム コントロールは、指定された修正プログラム レベルより低いデバイスの品質更新プログラムを迅速に処理する機能だけです。今後、追加のコントロールが使用可能になります。",
+ "warningBoxText": "ソフトウェア更新プログラムを迅速にインストール処理すると、必要に応じてコンプライアンスを満たすまでの時間を短縮するのに役立ちますが、エンド ユーザーの生産性に大きく影響します。営業時間中の再起動が大幅に増えるおそれがあります。"
+ },
+ "TermsOfUse": {
+ "Languages": {
+ "addLanguage": "Add language",
+ "af": "Afrikaans",
+ "am": "Amharic",
+ "arSA": "Arabic (Saudi Arabia)",
+ "as": "Assamese",
+ "az": "Azerbaijani",
+ "be": "Belarusian",
+ "bg": "Bulgarian",
+ "bn": "Bangla",
+ "bnIN": "Bangla (India)",
+ "bs": "Bosnian",
+ "ca": "Catalan",
+ "caESvalencia": "Valencian (Spain)",
+ "cs": "Czech",
+ "cy": "Welsh",
+ "da": "Danish",
+ "de": "German",
+ "default": "Default",
+ "defaultDetailsTag": "{0} (Default)",
+ "el": "Greek",
+ "en": "English",
+ "enGB": "English (United Kingdom)",
+ "es": "Spanish",
+ "esMX": "Spanish (Mexico)",
+ "et": "Estonian",
+ "eu": "Basque",
+ "fa": "Persian",
+ "fi": "Finnish",
+ "fil": "Filipino",
+ "fr": "French",
+ "frCA": "French (Canada)",
+ "ga": "Irish",
+ "gd": "Scottish Gaelic",
+ "gl": "Galician",
+ "gu": "Gujarati",
+ "ha": "Hausa",
+ "he": "Hebrew",
+ "hi": "Hindi",
+ "hr": "Croatian",
+ "hu": "Hungarian",
+ "hy": "Armenian",
+ "id": "Indonesian",
+ "ig": "Igbo",
+ "is": "Icelandic",
+ "it": "Italian",
+ "ja": "Japanese",
+ "ka": "Georgian",
+ "kk": "Kazakh",
+ "km": "Khmer",
+ "kn": "Kannada",
+ "ko": "Korean",
+ "kok": "Konkani",
+ "kuArab": "Central Kurdish (Arabic)",
+ "ky": "Kyrgyz",
+ "languageOptions": "Language Options",
+ "lb": "Luxembourgish",
+ "lo": "Lao",
+ "lt": "Lithuanian",
+ "lv": "Latvian",
+ "mi": "Maori",
+ "mk": "Macedonian",
+ "ml": "Malayalam",
+ "mn": "Mongolian",
+ "mr": "Marathi",
+ "ms": "Malay",
+ "mt": "Maltese",
+ "ne": "Nepali",
+ "nl": "Dutch",
+ "nnNO": "Norwegian, Nynorsk (Norway)",
+ "no": "Norwegian",
+ "notSpecified": "Language not specified",
+ "nso": "Sesotho sa Leboa",
+ "or": "Odia",
+ "paArabPK": "Punjabi (Islamic Republic of Pakistan)",
+ "paIN": "Punjabi (India)",
+ "pl": "Polish",
+ "prs": "Dari",
+ "ptBR": "Portuguese (Brazil)",
+ "ptPT": "Portuguese (Portugal)",
+ "quz": "Quechua",
+ "ro": "Romanian",
+ "ru": "Russian",
+ "rw": "Kinyarwanda",
+ "sd": "Sindhi",
+ "si": "Sinhala",
+ "sk": "Slovak",
+ "sl": "Slovenian",
+ "sq": "Albanian",
+ "srCyrlBA": "Serbian (Cyrillic, Bosnia and Herzegovina)",
+ "srCyrlRS": "Serbian (Cyrillic, Serbia)",
+ "srLatnRS": "Serbian (Latin, Serbia)",
+ "sv": "Swedish",
+ "sw": "Kiswahili",
+ "ta": "Tamil",
+ "te": "Telugu",
+ "tg": "Tajik",
+ "th": "Thai",
+ "ti": "Tigrinya",
+ "tk": "Turkmen",
+ "tn": "Setswana",
+ "tr": "Turkish",
+ "tt": "Tatar",
+ "ug": "Uyghur",
+ "uk": "Ukrainian",
+ "ur": "Urdu",
+ "uz": "Uzbek",
+ "vi": "Vietnamese",
+ "wo": "Wolof",
+ "xh": "isiXhosa",
+ "yo": "Yoruba",
+ "zhHans": "Chinese (Simplified)",
+ "zhHant": "Chinese (Traditional)",
+ "zu": "isiZulu"
+ },
+ "AcceptanceExpirationFrequency": {
+ "annually": "Annually",
+ "biannually": "Bi-annually",
+ "monthly": "Monthly",
+ "quarterly": "Quarterly"
},
- "ThemesEnabled": {
- "title": "テーマの有効化",
- "tooltip": "ユーザーがカスタム ビジュアル テーマを使用できるかどうかを指定します。"
- }
- },
+ "Wizard": {
+ "AgreementTargetEntityScope": {
+ "NotSelected": {
+ "label": "None selected"
+ },
+ "selectEntityTitle": "Select group",
+ "title": "Select group"
+ },
+ "PolicyFile": {
+ "Languages": {
+ "Empty": {
+ "default": "Select default language",
+ "nonDefault": "Select a language"
+ }
+ },
+ "Validations": {
+ "duplicateLanguage": "Oops, {0} appears to be selected multiple times. Language selection must be unique."
+ }
+ },
+ "PolicyTemplate": {
+ "InfoBox": {
+ "allGuestsAllApps": "A conditional access policy will be created for all guests and all cloud apps. This policy impacts the Azure portal. Once this is created you might be required to sign-out and sign-in.",
+ "allUsersAllApps": "A conditional access policy will be created for all users and all cloud apps. This policy impacts the Azure portal. Once this is created you will be required to sign-out and sign-in.",
+ "custom": "Select the users, groups, and apps that this Terms of Use will be applied to.",
+ "noPolicy": "This terms of use will appear in the grant control list when creating a conditional access policy."
+ }
+ },
+ "Section": {
+ "conditionalAccessSubtitle": "Enforce with conditional access policy templates",
+ "conditionalAccessTitle": "Conditional access",
+ "termsOfUseSubtitle": "Create and upload documents",
+ "termsOfUseTitle": "Terms of use"
+ },
+ "acceptanceDurationInfo": "The terms of use will be enforced immediately and each user will have to re-consent every specified number of days.",
+ "acceptanceDurationLabel": "Duration before re-acceptance required (days)",
+ "acceptanceDurationPlaceholder": "Example: '90'",
+ "acceptanceExpirationFrequencyInfo": "Require users to consent on a recurring basis.",
+ "acceptanceExpirationFrequencyLabel": "Frequency",
+ "acceptanceExpirationStartDateTimeInfo": "The terms of use will be enforced immediately and users will be required to re-consent on this date.",
+ "acceptanceExpirationStartDateTimeLabel": "Expire starting on",
+ "agreementIsPerDeviceAcceptanceRequiredInfo": "The end users will be required to consent to the terms of use on every device.",
+ "agreementIsPerDeviceAcceptanceRequiredLabel": "Require users to consent on every device",
+ "agreementIsViewingBeforeAcceptanceRequiredInfo": "The end users will be required to view the terms of use prior to accepting.",
+ "agreementIsViewingBeforeAcceptanceRequiredLabel": "Require users to expand the terms of use",
+ "agreementNameInfo": "Name will be used to manage the terms of use within the Azure portal.",
+ "agreementNameLabel": "Name",
+ "agreementNamePlaceholderText": "Example: 'All users terms of use'",
+ "agreementRequirmentLabel": "Required Upon",
+ "agreementTargetEntityLabel": "Users targeted",
+ "agreementUploadPolicyLabel": "Terms of use",
+ "agreementUploadPolicyPlaceholderText": "Upload required PDF",
+ "createButtonLabel": "Create",
+ "createPolicyInfo": "In order to enforce the terms of use, a conditional access policy is required. You can create a conditional access policy targeted to specific users and applications later or use one of the predefined templates.",
+ "createPolicyLabel": "Create a policy",
+ "isAcceptanceExpirationEnabledInfo": "The terms of use will be enforced immediately and all users will be forced to re-consent on a schedule.",
+ "isAcceptanceExpirationEnabledLabel": "Expire consents",
+ "pdfValidationInvalidFileFormat": "The file must be in the .pdf format.",
+ "policyFilesInfo": "Upload a PDF file containing the terms of use that your end users must accept. Based on end user preferences they will be shown the appropriate language or if not match the default language will be shown.
For end users agreeing on mobile devices, we recommend the PDF font size to be at least 24 pt.
Display name will be the title of the terms of use that is presented to the end user.",
+ "policyFilesLabel": "Terms of use document",
+ "policyTemplateInfo": "These templates are pre configured conditional access policies that are targeted to specific users and applications.",
+ "policyTemplateLabel": "Policy templates",
+ "title": "New terms of use"
+ }
+ },
+ "TACSettings": {
+ "edgeSettings": "Microsoft Edge の構成設定",
+ "edgeWindowsDataProtectionSettings": "Microsoft Edge (Windows) のデータ保護設定 - プレビュー",
+ "edgeWindowsSettings": "Microsoft Edge (Windows) の構成設定 - プレビュー",
+ "generalAppConfig": "一般的なアプリの構成",
+ "generalSettings": "一般的な構成設定",
+ "outlookSMIMEConfig": "Outlook S/MIME の設定",
+ "outlookSettings": "Outlook の構成設定",
+ "sMIME": "S/MIME"
+ },
+ "MicrosoftEdgeChannel": {
+ "beta": "Beta",
+ "dev": "Dev",
+ "stable": "Stable"
+ },
+ "WipPolicySettings": {
+ "addNetworkBoundary": "ネットワーク境界の追加",
+ "addNetworkBoundaryButton": "ネットワーク境界の追加...",
+ "allowWindowsSearch": "暗号化された会社のデータとストア アプリの検索を Windows Search に許可する",
+ "authoritativeIpRanges": "エンタープライズ IP 範囲の一覧を優先する (自動検出しない)",
+ "authoritativeProxyServers": "エンタープライズ プロキシ サーバーの一覧を優先する (自動検出しない)",
+ "boundaryType": "境界の種類",
+ "cloudResources": "クラウド リソース",
+ "corporateIdentity": "会社の ID",
+ "dataRecoveryCert": "データ回復エージェント (DRA) 証明書をアップロードして、暗号化されたデータの回復を許可します",
+ "editNetworkBoundary": "ネットワーク境界の編集",
+ "enrollmentState": "登録の状態",
+ "iPv4Ranges": "IPv4 範囲",
+ "iPv6Ranges": "IPv6 範囲",
+ "internalProxyServers": "内部プロキシ サーバー",
+ "maxInactivityTime": "デバイスが PIN またはパスワードでロックされるまでの最大のアイドル時間 (分)",
+ "maxPasswordAttempts": "デバイスがワイプされるまでの認証失敗の回数",
+ "mdmDiscoveryUrl": "MDM 探索 URL",
+ "mdmRequiredSettingsInfo": "このポリシーは、Windows 10 Anniversary Edition 以降にのみ適用されます。このポリシーでは保護を適用するために Windows Information Protection (WIP) を使用します。",
+ "minimumPinLength": "PIN に必要な最小文字数を設定します",
+ "name": "名前",
+ "networkBoundariesGridEmptyText": "追加したネットワーク境界がここに表示されます",
+ "networkBoundary": "ネットワーク境界",
+ "networkDomainNames": "ネットワーク ドメイン",
+ "neutralResources": "ニュートラル リソース",
+ "passportForWork": "Windows にサインインする方法として Windows Hello for Business を使います",
+ "pinExpiration": "PIN を変更するようにシステムからユーザーに要求が出されるまでの期間 (日数) を指定します",
+ "pinHistory": "再利用できないユーザー アカウントに関連付けることができる以前の PIN の数を指定します",
+ "pinLowercaseLetters": "Windows Hello for Business 用の PIN に小文字を使うことを構成します",
+ "pinSpecialCharacters": "Windows Hello for Business 用の PIN に特殊文字を使うことを構成します",
+ "pinUppercaseLetters": "Windows Hello for Business 用の PIN に大文字を使うことを構成します",
+ "protectUnderLock": "デバイスのロック時にアプリから会社のデータにアクセスできないようにします。Windows 10 Mobile のみに適用されます",
+ "protectedDomainNames": "保護されたドメイン",
+ "proxyServers": "プロキシ サーバー",
+ "requireAppPin": "デバイス PIN が管理されている場合にアプリ PIN を無効にする",
+ "requiredSettings": "必須の設定",
+ "requiredSettingsInfo": "スコープを変更するか、このポリシーを削除すると、会社のデータの暗号化が解除されます。",
+ "revokeOnMdmHandoff": "デバイスを MDM に登録するときに、保護されたデータへのアクセス権を取り消す",
+ "revokeOnUnenroll": "登録解除時に暗号化キーを取り消す",
+ "rmsTemplateForEdp": "Azure RMS に使うテンプレート ID を指定します",
+ "showWipIcon": "エンタープライズ データ保護アイコンを表示します",
+ "type": "種類",
+ "useRmsForWip": "Azure RMS を WIP のために使います",
+ "value": "値",
+ "weRequiredSettingsInfo": "このポリシーは、Windows 10 Creators Update 以降にのみ適用されます。ポリシーでは保護を適用するために Windows Information Protection (WIP) と Windows MAM を使用します。",
+ "wipProtectionMode": "Windows Information Protection モード",
+ "withEnrollment": "登録済み",
+ "withoutEnrollment": "未登録"
+ },
+ "OfficeApplicationAdditionalType": {
+ "projectProRetail": "Project Online Desktop Client",
+ "visioProRetail": "Visio Online プラン 2"
+ },
+ "Countries": {
+ "ae": "アラブ首長国連邦",
+ "ag": "アンティグア・バーブーダ",
+ "ai": "アンギラ",
+ "al": "アルバニア",
+ "am": "アルメニア",
+ "ao": "アンゴラ",
+ "ar": "アルゼンチン",
+ "at": "オーストリア",
+ "au": "オーストラリア",
+ "az": "アゼルバイジャン",
+ "bb": "バルバドス",
+ "be": "ベルギー",
+ "bf": "ブルキナファソ",
+ "bg": "ブルガリア",
+ "bh": "バーレーン",
+ "bj": "ベナン",
+ "bm": "バミューダ",
+ "bn": "ブルネイ",
+ "bo": "ボリビア",
+ "br": "ブラジル",
+ "bs": "バハマ",
+ "bt": "ブータン",
+ "bw": "ボツワナ",
+ "by": "ベラルーシ",
+ "bz": "ベリーズ",
+ "ca": "カナダ",
+ "cg": "コンゴ共和国",
+ "ch": "スイス",
+ "cl": "チリ",
+ "cn": "中国",
+ "co": "コロンビア",
+ "cr": "コスタリカ",
+ "cv": "カーボベルデ",
+ "cy": "キプロス",
+ "cz": "チェコ共和国",
+ "de": "ドイツ",
+ "dk": "デンマーク",
+ "dm": "ドミニカ国",
+ "do": "ドミニカ共和国",
+ "dz": "アルジェリア",
+ "ec": "エクアドル",
+ "ee": "エストニア",
+ "eg": "エジプト",
+ "es": "スペイン",
+ "fi": "フィンランド",
+ "fj": "フィジー",
+ "fm": "ミクロネシア連邦",
+ "fr": "フランス",
+ "gb": "イギリス",
+ "gd": "グレナダ",
+ "gh": "ガーナ",
+ "gm": "ガンビア",
+ "gr": "ギリシャ",
+ "gt": "グアテマラ",
+ "gw": "ギニアビサウ",
+ "gy": "ガイアナ",
+ "hk": "香港",
+ "hn": "ホンジュラス",
+ "hr": "クロアチア",
+ "hu": "ハンガリー",
+ "id": "インドネシア",
+ "ie": "アイルランド",
+ "il": "イスラエル",
+ "in": "インド",
+ "is": "アイスランド",
+ "it": "イタリア",
+ "jm": "ジャマイカ",
+ "jo": "ヨルダン",
+ "jp": "日本",
+ "ke": "ケニア",
+ "kg": "キルギス",
+ "kh": "カンボジア",
+ "kn": "セントクリストファー・ネイビス",
+ "kr": "大韓民国",
+ "kw": "クウェート",
+ "ky": "ケイマン諸島",
+ "kz": "カザフスタン",
+ "la": "ラオス人民民主共和国",
+ "lb": "レバノン",
+ "lc": "セントルシア",
+ "lk": "スリランカ",
+ "lr": "リベリア",
+ "lt": "リトアニア",
+ "lu": "ルクセンブルク",
+ "lv": "ラトビア",
+ "md": "モルドバ共和国",
+ "mg": "マダガスカル",
+ "mk": "北マケドニア",
+ "ml": "マリ",
+ "mn": "モンゴル国",
+ "mo": "マカオ",
+ "mr": "モーリタニア",
+ "ms": "モントセラト",
+ "mt": "マルタ",
+ "mu": "モーリシャス",
+ "mw": "マラウイ",
+ "mx": "メキシコ",
+ "my": "マレーシア",
+ "mz": "モザンビーク",
+ "na": "ナミビア",
+ "ne": "ニジェール",
+ "ng": "ナイジェリア",
+ "ni": "ニカラグア",
+ "nl": "オランダ",
+ "no": "ノルウェー",
+ "np": "ネパール",
+ "nz": "ニュージーランド",
+ "om": "オマーン",
+ "pa": "パナマ",
+ "pe": "ペルー",
+ "pg": "パプアニューギニア",
+ "ph": "フィリピン",
+ "pk": "パキスタン",
+ "pl": "ポーランド",
+ "pt": "ポルトガル",
+ "pw": "パラオ",
+ "py": "パラグアイ",
+ "qa": "カタール",
+ "ro": "ルーマニア",
+ "ru": "ロシア",
+ "sa": "サウジアラビア",
+ "sb": "ソロモン諸島",
+ "sc": "セーシェル",
+ "se": "スウェーデン",
+ "sg": "シンガポール",
+ "si": "スロベニア",
+ "sk": "スロバキア",
+ "sl": "シエラレオネ",
+ "sn": "セネガル",
+ "sr": "スリナム",
+ "st": "サントメ・プリンシペ",
+ "sv": "エルサルバドル",
+ "sz": "スワジランド",
+ "tc": "タークス・カイコス諸島",
+ "td": "チャド",
+ "th": "タイ",
+ "tj": "タジキスタン",
+ "tm": "トルクメニスタン",
+ "tn": "チュニジア",
+ "tr": "トルコ",
+ "tt": "トリニダード・トバゴ",
+ "tw": "台湾",
+ "tz": "タンザニア",
+ "ua": "ウクライナ",
+ "ug": "ウガンダ",
+ "us": "米国",
+ "uy": "ウルグアイ",
+ "uz": "ウズベキスタン",
+ "vc": "セントビンセントおよびグレナディーン諸島",
+ "ve": "ベネズエラ",
+ "vg": "英領ヴァージン諸島",
+ "vn": "ベトナム",
+ "ye": "イエメン",
+ "za": "南アフリカ",
+ "zw": "ジンバブエ"
+ },
+ "OfficeUpdateChannel": {
+ "current": "最新チャネル",
+ "deferred": "半期エンタープライズ チャンネル",
+ "firstReleaseCurrent": "最新チャンネル (プレビュー版)",
+ "firstReleaseDeferred": "半期エンタープライズ チャンネル (プレビュー)",
+ "monthlyEnterprise": "月次エンタープライズ チャネル",
+ "placeHolder": "1 つ選んでください"
+ },
+ "AppProtection": {
+ "allAppTypes": "すべてのアプリの種類を対象にする",
+ "androidPlatformLabel": "Android",
+ "appsInAndroidWorkProfile": "Android 作業プロファイルでのアプリ",
+ "appsOnIntuneManagedDevices": "Intune マネージド デバイス上のアプリ",
+ "appsOnUnmanagedDevices": "アンマネージド デバイス上のアプリ",
+ "iOSPlatformLabel": "iOS/iPadOS",
+ "iosAndroidMacPlatformLabel": "iOS、Android、Mac",
+ "iosAndroidPlatformLabel": "iOS、Android",
+ "macPlatformLabel": "Mac",
+ "notAvailable": "使用できません",
+ "windows10PlatformLabel": "Windows 10 以降",
+ "withEnrollment": "登録済み",
+ "withoutEnrollment": "未登録"
+ },
+ "InstallContextType": {
+ "device": "デバイス",
+ "deviceContext": "デバイス コンテキスト",
+ "user": "ユーザー",
+ "userContext": "ユーザー コンテキスト"
+ },
+ "ProactiveRemediations": {
+ "Create": {
+ "Basics": {
+ "DescriptionMultiLineTextBox": {
+ "label": "説明",
+ "placeholder": "説明を入力します"
+ },
+ "NameTextBox": {
+ "label": "名前",
+ "placeholder": "名前の入力"
+ },
+ "PublisherTextBox": {
+ "label": "公開者",
+ "placeholder": "パブリッシャーを入力してください"
+ },
+ "VersionTextBox": {
+ "label": "バージョン"
+ },
+ "headerDescription": "作成した検出および修復スクリプトから新しいカスタム スクリプト パッケージを作成します。"
+ },
+ "ScopeTags": {
+ "headerDescription": "スクリプト パッケージを割り当てるグループを 1 つ以上選択します。"
+ },
+ "Settings": {
+ "DetectionScriptMultiLineTextBox": {
+ "label": "検出スクリプト",
+ "placeholder": "入力スクリプト テキスト",
+ "requiredValidationMessage": "検出スクリプトを入力してください"
+ },
+ "EnforceScriptSignatureCheckOptionPicker": {
+ "label": "スクリプト署名チェックを強制"
+ },
+ "LoggedOnCredentialsOptionPicker": {
+ "label": "このスクリプトをログオンした資格情報を使用して実行する"
+ },
+ "RemediationScript": {
+ "infoBox": "修復スクリプトがないため、このスクリプトは検出専用モードで実行されます。"
+ },
+ "RemediationScriptMultiLineTextBox": {
+ "label": "修復スクリプト",
+ "placeholder": "入力スクリプト テキスト"
+ },
+ "RunIn64BitPSOptionPicker": {
+ "label": "64 ビットの PowerShell でスクリプトを実行する"
+ },
+ "ScriptMultiLineTextBox": {
+ "base64EncodingValidationMessage": "スクリプトが無効です。スクリプトで使用されている 1 つまたは複数の文字が無効です。"
+ },
+ "headerDescription": "お客様が記述したスクリプトからカスタム スクリプト パッケージが作成されます。既定では、スクリプトは割り当てられたデバイスで毎日実行されます。",
+ "infoBox": "このスクリプトは読み取り専用です。このスクリプトの一部の設定が無効になっている可能性があります。"
+ },
+ "title": "カスタム スクリプトの作成",
+ "ScriptProperties": {
+ "GridHeaders": {
+ "interval": "間隔",
+ "time": "日付と時刻"
+ },
+ "Interval": {
+ "day": "毎日繰り返す",
+ "days": "{0} 日おきに繰り返す",
+ "hour": "1 時間ごとに繰り返す",
+ "hours": "{0} 時間おきに繰り返します",
+ "month": "毎月繰り返す",
+ "months": "{0} か月おきに繰り返す",
+ "week": "毎週繰り返す",
+ "weeks": "{0} 週間おきに繰り返す"
+ },
+ "Time": {
+ "utc": "{0} (UTC)",
+ "utcWithDate": "{1} {0} (UTC)",
+ "withDate": "{1} {0}"
+ }
+ }
+ },
+ "Edit": {
+ "title": "編集 - {0}"
+ }
+ },
+ "EdgeAppConfig": {
+ "AllowedURLs": {
+ "title": "許可された URL",
+ "tooltip": "ユーザーが作業コンテキスト内でアクセスを許可されるサイトを指定します。他のサイトは許可されません。許可/ブロックのどちらかを選択してリストを構成できますが、両方を選択することはできません。"
+ },
+ "ApplicationProxyRedirection": {
+ "header": "アプリケーション プロキシ",
+ "title": "アプリケーション プロキシのリダイレクト",
+ "tooltip": "アプリ プロキシのリダイレクトを有効にすると、企業リンクとオンプレミスの Web アプリへのアクセスがユーザーに付与されます。"
+ },
+ "BlockedURLs": {
+ "title": "ブロックする URL",
+ "tooltip": "ユーザー用にブロックされるサイトを作業コンテキスト内で指定します。他のすべてのサイトは許可されます。許可/ブロックのどちらかを選択してリストを構成できますが、両方を選択することはできません。"
+ },
+ "Bookmarks": {
+ "header": "マネージド ブックマーク",
+ "tooltip": "作業コンテキストで Microsoft Edge を使用するときにユーザーが利用できるように、ブックマークされた URL の一覧を入力します。",
+ "uRL": "URL"
+ },
+ "HomepageURL": {
+ "header": "管理対象のホームページ",
+ "title": "ホームページのショートカットの URL",
+ "tooltip": "Microsoft Edge で新しいタブを開いたときに、検索バーの下に最初のアイコンとしてユーザーに表示される、ホームページのショートカットを構成します。"
+ },
+ "PersonalContext": {
+ "label": "制限付きサイトを個人用コンテキストにリダイレクトする",
+ "tooltip": "ユーザーが制限されたサイトを開くために個人のコンテキストに移行することを許可するかどうかを構成します。"
+ }
+ },
+ "BooleanActions": {
+ "allow": "許可",
+ "block": "ブロック",
+ "configured": "構成済み",
+ "disable": "無効にする",
+ "dontRequire": "必要としない",
+ "enable": "有効にする",
+ "hide": "非表示",
+ "limit": "上限",
+ "notConfigured": "構成されていません",
+ "require": "必要",
+ "show": "表示",
+ "yes": "はい"
+ },
+ "ArchitectureOptions": {
+ "sixtyFourBit": "64 ビット",
+ "thirtyTwoBit": "32 ビット"
+ },
+ "WindowsQualityUpdateDaysUntilForcedReboot": {
+ "oneDay": "1 日",
+ "twoDays": "2 日",
+ "zeroDays": "0 日"
+ },
"SoftwareUpdates": {
"BladeTitles": {
"overview": "概要"
@@ -10800,66 +10878,732 @@
"notScannedYet": "まだスキャンされていません",
"outOfDateIosDevices": "古い iOS デバイス"
},
- "ScheduledAction": {
- "Form": {
- "editBlockActionInfo": "すべてのコンプライアンス ポリシー用に 1 つのブロック アクションが必要です。",
- "graceperiod": "スケジュール (コンプライアンス違反となってからの日数)",
- "graceperiodInfo": "非準拠になってから何日経過したら、このアクションをユーザーのデバイスに対してトリガーするかを指定します",
- "subtitle": "アクション パラメーターを指定する",
- "title": "アクション パラメーター"
- },
- "List": {
- "gracePeriodDay": "コンプライアンス違反の発生後 {0} 日",
- "gracePeriodDays": "コンプライアンス違反の発生後 {0} 日",
- "gracePeriodHour": "コンプライアンス違反の発生後 {0} 時間",
- "gracePeriodHours": "コンプライアンス違反の発生後 {0} 時間",
- "gracePeriodMinute": "コンプライアンス違反の発生後 {0} 分",
- "gracePeriodMinutes": "コンプライアンス違反の発生後 {0} 分",
- "immediately": "即時",
- "schedule": "スケジュール",
- "scheduleInfoBalloon": "コンプライアンス違反の発生後の日数",
- "subtitle": "準拠していないデバイスでのアクションのシーケンスを指定する",
- "title": "アクション"
- },
- "Notification": {
- "additionalEmailLabel": "その他",
- "additionalRecipients": "追加の受信者 (電子メールによる)",
- "additionalRecipientsBladeTitle": "その他の受信者を選択する",
- "emailAddressPrompt": "電子メール アドレスを (コンマで区切って) 入力してください",
- "invalidEmail": "無効な電子メール アドレス",
- "messageTemplate": "メッセージ テンプレート",
- "noneSelected": "1 つも選択されていません",
- "notSelected": "選択されていません",
- "numSelected": "{0} 件選択済み",
- "selected": "選択済み"
+ "ConfigurationTypes": {
+ "Table": {
+ "androidDeviceOwnerGeneral": "デバイスの制限 (デバイス所有者)",
+ "androidForWorkGeneral": "デバイスの制限 (仕事用プロファイル)"
+ },
+ "androidCustom": "カスタム",
+ "androidDeviceOwnerGeneral": "デバイスの制限",
+ "androidDeviceOwnerPkcs": "PKCS 証明書",
+ "androidDeviceOwnerScep": "SCEP 証明書",
+ "androidDeviceOwnerTrustedCertificate": "信頼済み証明書",
+ "androidDeviceOwnerVpn": "VPN",
+ "androidDeviceOwnerWiFi": "Wi-Fi",
+ "androidEmailProfile": "メール (Samsung KNOX のみ)",
+ "androidForWorkCustom": "カスタム",
+ "androidForWorkEmailProfile": "電子メール",
+ "androidForWorkGeneral": "デバイスの制限",
+ "androidForWorkImportedPFX": "PKCS のインポートされた証明書",
+ "androidForWorkOemConfig": "OEMConfig",
+ "androidForWorkPKCS": "PKCS 証明書",
+ "androidForWorkSCEP": "SCEP 証明書",
+ "androidForWorkTrustedCertificate": "信頼済み証明書",
+ "androidForWorkVpn": "VPN",
+ "androidForWorkWiFi": "Wi-Fi",
+ "androidGeneral": "デバイスの制限",
+ "androidImportedPFX": "PKCS のインポートされた証明書",
+ "androidPKCS": "PKCS 証明書",
+ "androidSCEP": "SCEP 証明書",
+ "androidTrustedCertificate": "信頼済み証明書",
+ "androidVPN": "VPN",
+ "androidWiFi": "Wi-Fi",
+ "androidZebraMx": "MX プロファイル (Zebra のみ)",
+ "complianceAndroid": "Android コンプライアンス ポリシー",
+ "complianceAndroidDeviceOwner": "フル マネージド、専用、会社所有の仕事用プロファイル",
+ "complianceAndroidEnterprise": "個人所有の仕事用プロファイル",
+ "complianceAndroidForWork": "Android for Work コンプライアンス ポリシー",
+ "complianceIos": "iOS コンプライアンス ポリシー",
+ "complianceMac": "Mac コンプライアンス ポリシー",
+ "complianceWindows10": "Windows 10 以降のコンプライアンス ポリシー",
+ "complianceWindows10Mobile": "Windows 10 Mobileコンプライアンス ポリシー",
+ "complianceWindows8": "Windows 8 コンプライアンス ポリシー",
+ "complianceWindowsPhone": "Windows Phone コンプライアンス ポリシー",
+ "exchangeActiveSync": "Exchange Active Sync",
+ "iosCustom": "カスタム",
+ "iosDerivedCredentialAuthenticationConfiguration": "派生 PIV 資格情報",
+ "iosDeviceFeatures": "デバイス機能",
+ "iosEDU": "教育",
+ "iosEducation": "教育",
+ "iosEmailProfile": "電子メール",
+ "iosGeneral": "デバイスの制限",
+ "iosImportedPFX": "PKCS のインポートされた証明書",
+ "iosPKCS": "PKCS 証明書",
+ "iosPresets": "プリセット",
+ "iosSCEP": "SCEP 証明書",
+ "iosTrustedCertificate": "信頼済み証明書",
+ "iosVPN": "VPN",
+ "iosVPNZscaler": "VPN",
+ "iosWiFi": "Wi-Fi",
+ "macCustom": "カスタム",
+ "macDeviceFeatures": "デバイス機能",
+ "macEndpointProtection": "Endpoint Protection",
+ "macExtensions": "拡張機能",
+ "macGeneral": "デバイスの制限",
+ "macImportedPFX": "PKCS のインポートされた証明書",
+ "macSCEP": "SCEP 証明書",
+ "macTrustedCertificate": "信頼済み証明書",
+ "macVPN": "VPN",
+ "macWiFi": "Wi-Fi",
+ "settingsCatalog": "設定カタログ (プレビュー)",
+ "unsupported": "サポートなし",
+ "windows10AdministrativeTemplate": "管理用テンプレート (プレビュー)",
+ "windows10Atp": "Microsoft Defender for Endpoint (Windows 10 以降を実行するデスクトップ デバイス)",
+ "windows10Custom": "カスタム",
+ "windows10DesktopSoftwareUpdate": "ソフトウェア更新プログラム",
+ "windows10DeviceFirmwareConfigurationInterface": "デバイスのファームウェア構成インターフェイス",
+ "windows10EmailProfile": "電子メール",
+ "windows10EndpointProtection": "Endpoint Protection",
+ "windows10EnterpriseDataProtection": "Windows Information Protection",
+ "windows10General": "デバイスの制限",
+ "windows10ImportedPFX": "PKCS のインポートされた証明書",
+ "windows10Kiosk": "キオスク",
+ "windows10NetworkBoundary": "ネットワーク境界",
+ "windows10PKCS": "PKCS 証明書",
+ "windows10PolicyOverride": "グループ ポリシーのオーバーライド",
+ "windows10SCEP": "SCEP 証明書",
+ "windows10SecureAssessmentProfile": "教育プロファイル",
+ "windows10SharedPC": "共有のマルチユーザーのデバイス",
+ "windows10TeamGeneral": "デバイスの制限 (Windows 10 Team)",
+ "windows10TrustedCertificate": "信頼済み証明書",
+ "windows10VPN": "VPN",
+ "windows10WiFi": "Wi-Fi",
+ "windows10WiFiCustom": "Wi-Fi カスタム",
+ "windows8General": "デバイスの制限",
+ "windows8SCEP": "SCEP 証明書",
+ "windows8TrustedCertificate": "信頼済み証明書",
+ "windows8VPN": "VPN",
+ "windows8WiFi": "Wi-Fi インポート",
+ "windowsDeliveryOptimization": "配信の最適化",
+ "windowsDomainJoin": "ドメインへの参加",
+ "windowsEditionUpgrade": "エディションのアップグレードおよびモードの切り替え",
+ "windowsIdentityProtection": "ID 保護",
+ "windowsPhoneCustom": "カスタム",
+ "windowsPhoneEmailProfile": "電子メール",
+ "windowsPhoneGeneral": "デバイスの制限",
+ "windowsPhoneImportedPFX": "PKCS のインポートされた証明書",
+ "windowsPhoneSCEP": "SCEP 証明書",
+ "windowsPhoneTrustedCertificate": "信頼済み証明書",
+ "windowsPhoneVPN": "VPN",
+ "IosUpdate": "iOS 更新ポリシー"
+ },
+ "OfficeSuiteAppsTab": {
+ "acceptLicenseOnBehalfOfUsersLabel": "ユーザーの代理で Microsoft ソフトウェアライセンス条項に同意する",
+ "appSuiteConfigurationLabel": "アプリ スイートの構成",
+ "appSuiteInformationLabel": "アプリ スイートの情報",
+ "appsToBeInstalledLabel": "スイートの一部としてインストールされるアプリ",
+ "architectureLabel": "アーキテクチャ",
+ "architectureTooltip": "デバイスに Microsoft 365 アプリの 32 ビット版または 64 ビット版のいずれかがインストールされているかを定義します。",
+ "configurationDesignerLabel": "構成デザイナー",
+ "configurationFileLabel": "構成ファイル",
+ "configurationSettingsFormatLabel": "構成設定の形式",
+ "configureAppSuiteLabel": "アプリ スイートの構成",
+ "configuredLabel": "構成済み",
+ "currentVersionLabel": "現在のバージョン",
+ "currentVersionTooltip": "これは、このスイートで構成されている現在の Office のバージョンです。この値は、新しいバージョンが構成されて保存されるときに更新されます。",
+ "enableMicrosoftSearchAsDefaultTooltip": "Bing での Microsoft Search 用の Google Chrome 拡張機能がデバイスにインストールされているかどうかを判断するのに役立つバックグラウンド サービスをインストールします。",
+ "enterXmlDataLabel": "XML データを入力する",
+ "languagesLabel": "言語",
+ "languagesTooltip": "既定では、Intune はオペレーティング システムの既定の言語で Office をインストールします。インストールする追加の言語を選択します。",
+ "learnMoreText": "詳細",
+ "newUpdateChannelTooltip": "アプリを新しい機能で更新する頻度を定義します。",
+ "noCurrentVersionText": "現在のバージョンではありません",
+ "noLanguagesSelectedLabel": "言語が選択されていない",
+ "notConfiguredLabel": "構成されていません",
+ "propertiesLabel": "プロパティ",
+ "removeOtherVersionsLabel": "その他のバージョンの削除",
+ "removeOtherVersionsTooltip": "[はい] を選択して、ユーザー デバイスから他のバージョンの Office (MSI) を削除します。",
+ "selectOfficeAppsLabel": "Office アプリを選択する",
+ "selectOfficeAppsTooltip": "スイートの一部としてインストールする Office 365 アプリを選択します。",
+ "selectOtherOfficeAppsLabel": "他の Office アプリを選択する (ライセンスが必要)",
+ "selectOtherOfficeAppsTooltip": "これらの他の Office アプリのライセンスをお持ちの場合、そのアプリを Intune に登録することもできます。",
+ "specificVersionLabel": "特定バージョン",
+ "updateChannelLabel": "更新チャネル",
+ "updateChannelTooltip": "アプリを新しい機能で更新する頻度を定義します。
\r\n月次 - 使用可能になったらすぐに Office の最新の機能をユーザーに提供します。
\r\n月次エンタープライズ チャネル - 1 か月に 1 回、毎月第 2 火曜日に最新の機能をユーザーに提供します。
\r\n月次 (対象指定) - 近日中に提供される月次チャネル リリースを早期に提供します。これはサポートされている更新チャネルであり、通常、新機能を含む月次チャネル リリースの場合は少なくとも 1 週間前に利用できます。
\r\n半期 - Office の新機能を 1 年間に数回のみ提供します。
\r\n半期 (対象指定) - パイロット ユーザーとアプリケーション互換性テスト担当者に、次の半期をテストする機会を提供します。",
+ "useMicrosoftSearchAsDefault": "Microsoft Search in Bing のバックグラウンド サービスをインストールする",
+ "useSharedComputerActivationLabel": "共有コンピューターのライセンス認証を使用",
+ "useSharedComputerActivationTooltip": "共有コンピューターのアクティブ化を使用すると、複数のユーザーが使用するコンピューターに Microsoft 365 アプリを展開できます。通常、ユーザーは、5 台の PC など、限られた数のデバイス上でしか Microsoft 365 アプリをインストールしてアクティブ化できません。共有コンピューターのアクティブ化で Microsoft 365 アプリを使用すると、PC の数の制限を受けません。",
+ "versionToInstallLabel": "インストールするバージョン",
+ "versionToInstallTooltip": "インストールする Office のバージョンを選択します。",
+ "xLanguagesSelectedLabel": "{0} 個の言語が選択済み",
+ "xmlConfigurationLabel": "XML 構成"
+ },
+ "EnrollmentRestrictions": {
+ "DeletePayloadLink": {
+ "content": "{0} は、1 つ以上のポリシー セットに含まれています。{0} を削除すると、これらのポリシー セットを使用してそれを割り当てることができなくなります。削除しますか?",
+ "contentWithError": "{0} は、1 つ以上のポリシー セットに含まれている可能性があります。{0} を削除すると、これらのポリシー セットを使用してそれを割り当てることができなくなります。削除しますか?",
+ "header": "この制限を削除しますか?"
+ },
+ "DeviceLimit": {
+ "description": "ユーザーが登録できるデバイスの最大数を指定します。",
+ "header": "デバイスの上限数の制限",
+ "info": "各ユーザーが登録できるデバイス数を定義します。"
+ },
+ "DeviceType": {
+ "VersionValidation": {
+ "aOSP": "1.0 以上でなければなりません。",
+ "android": "有効なバージョン番号を入力してください。例: 5.0、5.5.1、6.0.0.1",
+ "androidForWork": "有効なバージョン番号を入力してください。例: 5.0、5.1.1",
+ "iOS": "有効なバージョン番号を入力してください。例: 9.0、10.0、9.0.2",
+ "mac": "有効なバージョン番号を入力してください。例: 10、10.10、10.10.1",
+ "min": "下限は {0} 以上にする必要があります",
+ "minMax": "最小バージョンは最大バージョン以下にする必要があります。",
+ "windows": "10.0 以上である必要があります。8.1 デバイスを許可するには空白のままにします",
+ "windowsMobile": "10.0 以上である必要があります。8.1 デバイスを許可するには空白のままにします"
+ },
+ "allPlatformsBlocked": "すべてのデバイス プラットフォームがブロックされています。プラットフォームの登録を許可して、プラットフォームを構成できるようにしてください。",
+ "blockManufacturerPlaceHolder": "製造元の名前",
+ "blockManufacturersHeader": "ブロックされた製造元",
+ "cannotRestrict": "サポートされていない制限です",
+ "configurationDescription": "登録するデバイスで適合する必要のあるプラットフォーム構成の制限を指定します。登録後のデバイスを制限するには、コンプライアンス ポリシーを使用します。バージョンは major.minor.build として定義します。バージョンの制限事項はポータル サイトで登録されたデバイスにのみ適用されます。既定では、Intune はデバイスを個人の所有として分類します。デバイスを会社の所有として分類するには、追加の操作が必要です。",
+ "configurationDescriptionLabel": "登録制限の設定に関する詳細情報",
+ "configurations": "プラットフォームの構成",
+ "deviceManufacturer": "デバイス製造元",
+ "header": "デバイスの種類の制限",
+ "info": "登録できるプラットフォーム、バージョン、および管理の種類を定義します。",
+ "manufacturer": "製造元",
+ "max": "最大",
+ "maxVersion": "最大バージョン",
+ "min": "最小",
+ "minVersion": "最小バージョン",
+ "newPlatforms": "新しいプラットフォームを許可しました。プラットフォーム構成を更新することをご検討ください。",
+ "personal": "個人所有",
+ "platform": "プラットフォーム",
+ "platformDescription": "次のフラットフォームの登録を許可できます。ブロック プラットフォームのみサポートされません。許可されるプラットフォームは追加の登録制限を指定して構成できます。",
+ "platformSettings": "プラットフォームの設定",
+ "platforms": "プラットフォームの選択",
+ "platformsSelected": "{0} 個のプラットフォームが選択されています",
+ "type": "種類",
+ "versions": "versions",
+ "versionsRange": "最小/最大の許容範囲:",
+ "windowsTooltip": "モバイル デバイス管理から登録を制限します。PC エージェントのインストールは制限されません。Windows 10 および Windows 11 のバージョンのみがサポートされています。Windows 8.1 を許可するにはバージョンを空白のままにします。"
+ },
+ "Priority": {
+ "saved": "優先順位の制限が正しく保存されました。"
+ },
+ "Row": {
+ "announce": "優先度: {0}、名前: {1}、割り当て済み: {2}"
+ },
+ "Table": {
+ "deployed": "展開済み",
+ "name": "名前",
+ "priority": "優先度"
},
- "block": "デバイスに非準拠のマークを付ける",
- "lockDevice": "デバイスのロック (ローカル アクション)",
- "lockDeviceWithPasscode": "デバイスのロック (ローカル アクション)",
- "noAction": "アクションなし",
- "noActionRow": "アクションなし。アクションを追加するには [追加] を選んでください",
- "pushNotification": "エンド ユーザーにプッシュ通知を送信する",
- "remoteLock": "準拠していないデバイスをリモートでロックします",
- "removeSourceAccessProfile": "ソース アクセス プロファイルの削除",
- "retire": "準拠していないデバイスを削除します",
- "wipe": "ワイプ",
- "emailNotification": "メールをエンド ユーザーに送信する"
- },
- "WIPPinRequirements": {
- "WipLowercaseCharacterPinRequirements": {
- "allow": "PIN で小文字の使用を許可する",
- "notAllow": "PIN で小文字の使用を許可しない",
- "requireAtLeastOne": "PIN で小文字を 1 文字以上使うことを要求する"
- },
- "WipSpecialCharacterPinRequirements": {
- "allow": "PIN で特殊文字の使用を許可する",
- "notAllow": "PIN で特殊文字の使用を許可しない",
- "requireAtLeastOne": "PIN で特殊文字を 1 文字以上使うことを要求する"
- },
- "WipUppercaseCharacterPinRequirements": {
- "allow": "PIN で大文字の使用を許可する",
- "notAllow": "PIN で大文字の使用を許可しない",
- "requireAtLeastOne": "PIN で大文字を 1 文字以上使うことを要求する"
- }
- }
+ "Type": {
+ "limit": "デバイスの上限数の制限",
+ "type": "デバイスの種類の制限"
+ },
+ "allUsers": "すべてのユーザー",
+ "androidRestrictions": "Android の制限",
+ "create": "制限を作成",
+ "defaultLimitDescription": "これは既定のデバイスの上限数の制限であり、グループ メンバーシップに関係なく、すべてのユーザーに最も低い優先順位で適用されます。",
+ "defaultTypeDescription": "これは既定のデバイスの種類の制限であり、グループ メンバーシップに関係なく、すべてのユーザーに最も低い優先順位で適用されます。",
+ "defaultWhfbDescription": "これは Windows Hello for Business の既定の構成であり、グループ メンバーシップに関係なく、すべてのユーザーに最も低い優先順位で適用されます。",
+ "deleteMessage": "影響を受けるユーザーには、割り当てられている優先度が次に高い制限が適用されます。他の制限が割り当てられていない場合は既定の制限が適用されます。",
+ "deleteTitle": "{0} 制限を削除しますか?",
+ "descriptionHint": "制限の設定によって特徴づけられる、業務での使用または制限のレベルの短い説明文。",
+ "edit": "制限の編集",
+ "info": "デバイスは、そのユーザーに割り当てられている優先順位の最も高い登録制限に準拠している必要があります。優先順位を変更するには、デバイスの制限をドラッグします。既定の制限は、どのユーザーでも優先順位が最低であり、ユーザーのいない登録を管理します。既定の制限を編集することはできますが、削除することはできません。",
+ "iosRestrictions": "iOS の制限",
+ "mDM": "MDM",
+ "macRestrictions": "MacOS の制限",
+ "maxVersion": "最大バージョン",
+ "minVersion": "最小バージョン",
+ "nameHint": "これは、制限セットを識別するために表示される主属性になります。",
+ "noAssignmentsStatusBar": "少なくとも 1 つのグループに制限を割り当てます。[プロパティ] をクリックしてください。",
+ "notFound": "制限が見つかりません。既に削除されている可能性があります。",
+ "personallyOwned": "個人所有のデバイス",
+ "restriction": "制限",
+ "restrictionLowerCase": "制限",
+ "restrictionType": "Restriction Type",
+ "selectType": "制限の種類の選択",
+ "selectValidation": "プラットフォームを選択してください",
+ "typeHint": "デバイスのプロパティを制限するには、[デバイスの種類の制限] を選びます。ユーザーあたりのデバイス数を制限するには、[デバイスの上限数の制限] を選びます。",
+ "typeRequired": "制限の種類が必要です。",
+ "winPhoneRestrictions": "Windows Phone の制限",
+ "windowsRestrictions": "Windows の制限"
+ },
+ "Titles": {
+ "ChromeOs": {
+ "devices": "Chrome OS デバイス"
+ },
+ "ManagedDesktop": {
+ "adminContacts": "管理者の連絡先",
+ "appPackaging": "アプリのパッケージ化",
+ "devices": "デバイス",
+ "feedback": "フィードバック",
+ "gettingStarted": "はじめに",
+ "messages": "メッセージ",
+ "onlineResources": "オンライン リソース",
+ "serviceRequests": "サービス要求",
+ "settings": "設定",
+ "tenantEnrollment": "テナント登録"
+ },
+ "actions": "コンプライアンス非対応に対するアクション",
+ "advancedExchangeSettings": "Exchange Online の設定",
+ "advancedThreatProtection": "Microsoft Defender for Endpoint",
+ "allApps": "すべてのアプリ",
+ "allDevices": "すべてのデバイス",
+ "androidFotaDeployments": "Android FOTA 展開",
+ "appBundles": "アプリ バンドル",
+ "appCategories": "アプリのカテゴリ",
+ "appConfigPolicies": "アプリ構成ポリシー",
+ "appInstallStatus": "アプリ インストールの状態",
+ "appLicences": "アプリ ライセンス",
+ "appProtectionPolicies": "アプリ保護ポリシー",
+ "appProtectionStatus": "アプリの保護状態",
+ "appSelectiveWipe": "アプリの選択的ワイプ",
+ "appleVppTokens": "Apple VPP トークン",
+ "apps": "アプリ",
+ "assign": "割り当て",
+ "assignedPermissions": "割り当てられたアクセス許可",
+ "assignedRoles": "割り当てられたロール",
+ "autopilotDeploymentReport": "Autopilot Deployment (プレビュー)",
+ "brandingAndCustomization": "カスタマイズ",
+ "cartProfiles": "カート プロファイル",
+ "certificateConnectors": "証明書のコネクタ",
+ "chromeEnterprise": "Chrome Enterprise",
+ "compliancePolicies": "コンプライアンス ポリシー",
+ "complianceScriptManagement": "スクリプト",
+ "complianceScriptManagementPreview": "スクリプト (プレビュー)",
+ "complianceSettings": "コンプライアンス ポリシー設定",
+ "conditionStatements": "条件ステートメント",
+ "conditions": "場所",
+ "configMgr": "Microsoft Endpoint Configuration Manager",
+ "configurationProfiles": "構成プロファイル",
+ "configurationProfilesPreview": "構成プロファイル (プレビュー)",
+ "connectorsAndTokens": "コネクタとトークン",
+ "corporateDeviceIdentifiers": "業務用デバイスの ID",
+ "customAttributes": "カスタム属性",
+ "customNotifications": "カスタム通知",
+ "deploymentSettings": "デプロイの設定",
+ "derivedCredentials": "派生資格情報",
+ "deviceActions": "デバイス アクション",
+ "deviceCategories": "デバイス カテゴリ",
+ "deviceCleanUp": "デバイスのクリーンアップ ルール",
+ "deviceEnrollmentManagers": "デバイス登録マネージャー",
+ "deviceExecutionStatus": "デバイスの状態",
+ "deviceLimitEnrollmentRestrictions": "登録デバイスの上限数制限",
+ "deviceTypeEnrollmentRestrictions": "登録デバイスのプラットフォームの制限",
+ "devices": "デバイス",
+ "discoveredApps": "検出されたアプリ",
+ "embeddedSIM": "eSIM 携帯ネットワーク プロファイル (プレビュー)",
+ "enrollDevices": "デバイスの登録",
+ "enrollmentFailures": "登録エラー",
+ "enrollmentNotifications": "登録の通知 (プレビュー)",
+ "enrollmentRestrictions": "登録制限",
+ "exchangeActiveSync": "Exchange ActiveSync",
+ "exchangeServiceConnectors": "Exchange サービス コネクタ",
+ "failuresForFeatureUpdates": "機能の更新エラー (プレビュー)",
+ "failuresForQualityUpdates": "Windows の優先更新プログラムのエラー (プレビュー)",
+ "featureFlighting": "機能フライティング",
+ "featureUpdateDeployments": "Windows 10 以降向け機能更新プログラム (プレビュー)",
+ "flighting": "フライティング",
+ "fotaUpdate": "ファームウェアの上書き更新",
+ "groupPolicy": "管理用テンプレート",
+ "groupPolicyAnalytics": "グループ ポリシー分析",
+ "helpSupport": "ヘルプとサポート",
+ "helpSupportReplacement": "ヘルプとサポート ({0})",
+ "iOSAppProvisioning": "iOS アプリ プロビジョニング プロファイル",
+ "incompleteUserEnrollments": "不完全なユーザー登録",
+ "intuneRemoteAssistance": "リモート ヘルプ (プレビュー)",
+ "iosUpdates": "iOS または iPadOS のポリシーの更新",
+ "legacyPcManagement": "レガシ PC 管理",
+ "macOSSoftwareUpdate": "macOS のポリシーを更新する",
+ "macOSSoftwareUpdateAccountSummaries": "MacOS デバイスのインストール状態",
+ "macOSSoftwareUpdateCategorySummaries": "ソフトウェア更新プログラムの概要",
+ "macOSSoftwareUpdateStateSummaries": "更新",
+ "managedGooglePlay": "マネージド Google Play",
+ "msfb": "ビジネス向け Microsoft ストア",
+ "myPermissions": "アクセス許可",
+ "notifications": "通知",
+ "officeApps": "Office アプリ",
+ "officeProPlusPolicies": "Office アプリのポリシー",
+ "onPremise": "オンプレミス",
+ "onPremisesConnector": "Exchange ActiveSync のオンプレミス コネクタ",
+ "onPremisesDeviceAccess": "Exchange ActiveSync デバイス",
+ "onPremisesManageAccess": "Exchange On-Premises のアクセス",
+ "outOfDateIosDevices": "iOS デバイスのインストール エラー",
+ "overview": "概要",
+ "partnerDeviceManagement": "パートナー デバイスの管理",
+ "perUpdateRingDeploymentState": "更新プログラムごとのリングの展開の状態",
+ "permissions": "アクセス許可",
+ "platformApps": "{0} のアプリ",
+ "platformDevices": "{0} のデバイス",
+ "platformEnrollment": "{0} 登録",
+ "policies": "ポリシー",
+ "previewMDMDevices": "すべてのマネージド デバイス (プレビュー)",
+ "profiles": "プロファイル",
+ "properties": "プロパティ",
+ "reports": "レポート",
+ "retireNoncompliantDevices": "準拠していないデバイスの削除",
+ "retireNoncompliantDevicesPreview": "Retire noncompliant devices (preview)",
+ "role": "ロール",
+ "scriptManagement": "スクリプト",
+ "securityBaselines": "セキュリティのベースライン",
+ "serviceToServiceConnector": "Exchange Online Connector",
+ "shellScripts": "シェル スクリプト",
+ "teamViewerConnector": "TeamViewer コネクタ",
+ "telecomeExpenseManagement": "通信費管理",
+ "tenantAdmin": "テナント管理",
+ "tenantAdministration": "テナント管理",
+ "termsAndConditions": "使用条件",
+ "titles": "タイトル",
+ "troubleshootSupport": "トラブルシューティング + サポート",
+ "user": "ユーザー",
+ "userExecutionStatus": "ユーザーの状態",
+ "warranty": "保証ベンダー",
+ "wdacSupplementalPolicies": "S モードの補足ポリシー",
+ "windows10DriverUpdate": "Windows 10 とそれ以降向けドライバー更新プログラム (プレビュー)",
+ "windows10QualityUpdate": "Windows 10 以降向け品質更新プログラム (プレビュー)",
+ "windows10UpdateRings": "Windows 10 以降向け更新リング",
+ "windows10XPolicyFailures": "Windows 10X のポリシー エラー",
+ "windowsEnterpriseCertificate": "Windows Enterprise 証明書",
+ "windowsManagement": "PowerShell スクリプト",
+ "windowsSideLoadingKeys": "Windows サイドローディング キー",
+ "windowsSymantecCertificate": "Windows DigiCert 証明書",
+ "windowsThreatReport": "脅威エージェントの状態"
+ },
+ "ScopeTypes": {
+ "allDevices": "すべてのデバイス",
+ "allUsers": "すべてのユーザー",
+ "allUsersAndDevices": "すべてのユーザーとすべてのデバイス",
+ "selectedGroups": "選択したグループ"
+ },
+ "OfficeApplicationType": {
+ "access": "Access",
+ "bing": "Microsoft Search (既定)",
+ "excel": "Excel",
+ "groove": "OneDrive (Groove)",
+ "lync": "Skype for Business",
+ "oneDrive": "OneDrive デスクトップ",
+ "oneNote": "OneNote",
+ "outlook": "Outlook",
+ "powerPoint": "PowerPoint",
+ "publisher": "Publisher",
+ "teams": "Teams",
+ "word": "Word"
+ },
+ "ApplicableDeviceType": {
+ "iPad": "iPad",
+ "iPhoneAndIPod": "iPhone と iPod"
+ },
+ "Assignment": {
+ "AutoUpdateMode": {
+ "default": "既定",
+ "header": "優先度の更新",
+ "postponed": "延期",
+ "priority": "高優先度"
+ },
+ "DeliveryOptimizationPriority": {
+ "backgroundNormal": "バックグラウンド",
+ "displayText": "{0} でのコンテンツ ダウンロード",
+ "foreground": "前景",
+ "header": "配信の最適化の優先度"
+ },
+ "RestartGracePeriod": {
+ "allowSnooze": "ユーザーが再起動の通知を一時停止できるようにする",
+ "countdownDialog": "再起動が発生する前に再起動のカウントダウン ダイアログ ボックスが表示されるタイミングを選択します (分)",
+ "durationInMinutes": "デバイス再起動の猶予期間 (分)",
+ "snoozeDurationInMinutes": "一時停止の期間を選択します (分)"
+ },
+ "SoftwareInstallationTime": {
+ "TimeZone": {
+ "label": "タイム ゾーン",
+ "local": "デバイスのタイム ゾーン",
+ "utc": "UTC"
+ },
+ "dateAndTimeLabel": "日時",
+ "deadlineTimeColumnLabel": "インストールの期限",
+ "deadlineTimeDatePickerErrorMessage": "選択した日付は利用可能な日付よりも後である必要があります",
+ "deadlineTimeLabel": "アプリのインストール期限",
+ "defaultTime": "直ちに",
+ "infoText": "このアプリケーションは、次の使用可能時間を指定しない限り、デプロイ後すぐに利用できるようになります。これが必須のアプリケーションの場合は、インストールの期限を指定できます。",
+ "specificTime": "特定の日付と時刻",
+ "startTimeColumnLabel": "可用性",
+ "startTimeDatePickerErrorMessage": "選択した日付は、期限よりも前にする必要があります",
+ "startTimeLabel": "アプリの可用性"
+ },
+ "restartGracePeriodHeader": "再起動の猶予期間",
+ "restartGracePeriodLabel": "デバイス再起動の猶予期間",
+ "summaryTitle": "エンド ユーザー エクスペリエンス"
+ },
+ "EnrollmentType": {
+ "devicesWithEnrollment": "マネージド デバイス",
+ "devicesWithoutEnrollment": "マネージド アプリ"
+ },
+ "PolicySet": {
+ "appManagement": "アプリケーション管理",
+ "assignments": "割り当て",
+ "basics": "基本",
+ "deviceEnrollment": "デバイスの登録",
+ "deviceManagement": "デバイス管理",
+ "scopeTags": "スコープ タグ",
+ "appConfigurationTitle": "アプリ構成ポリシー",
+ "appProtectionTitle": "アプリ保護ポリシー",
+ "appTitle": "アプリ",
+ "iOSAppProvisioningTitle": "iOS アプリ プロビジョニング プロファイル",
+ "deviceLimitRestrictionTitle": "デバイスの上限数の制限",
+ "deviceTypeRestrictionTitle": "デバイスの種類の制限",
+ "enrollmentStatusSettingTitle": "登録ステータ スページ",
+ "windowsAutopilotDeploymentProfileTitle": "Windows Autopilot Deployment プロファイル",
+ "deviceComplianceTitle": "デバイス コンプライアンス ポリシー",
+ "deviceConfigurationTitle": "デバイス構成プロファイル",
+ "powershellScriptTitle": "PowerShell スクリプト"
+ },
+ "AzureIAMCommon": {
+ "CountryNames": {
+ "countryNameNR": "ナウル",
+ "countryNameBH": "バーレーン",
+ "countryNameZA": "南アフリカ",
+ "countryNameJO": "ヨルダン",
+ "countryNameSD": "スーダン",
+ "countryNameNU": "ニウエ",
+ "countryNameCZ": "チェコ共和国",
+ "countryNameLT": "リトアニア",
+ "countryNameTK": "トケラウ諸島",
+ "countryNameEC": "エクアドル",
+ "countryNameVU": "バヌアツ",
+ "countryNameUG": "ウガンダ",
+ "countryNameLI": "リヒテンシュタイン",
+ "countryNameHK": "香港特別行政区",
+ "countryNameGH": "ガーナ",
+ "countryNameSA": "サウジアラビア",
+ "countryNamePG": "パプアニューギニア",
+ "countryNameBW": "ボツワナ",
+ "countryNameDG": "ディエゴ ガルシア",
+ "countryNameIN": "インド",
+ "countryNameHN": "ホンジュラス",
+ "countryNameRO": "ルーマニア",
+ "countryNameKZ": "カザフスタン",
+ "countryNameLC": "セントルシア",
+ "countryNameGE": "ジョージア",
+ "countryNameTT": "トリニダード・トバゴ",
+ "countryNameMP": "北マリアナ諸島",
+ "countryNameMV": "モルディブ",
+ "countryNameFI": "フィンランド",
+ "countryNameNO": "ノルウェイ",
+ "countryNameEE": "エストニア",
+ "countryNameVE": "ベネズエラ",
+ "countryNameUZ": "ウズベキスタン",
+ "countryNameME": "モンテネグロ",
+ "countryNameTJ": "タジキスタン",
+ "countryNameAW": "アルバ",
+ "countryNameFR": "フランス",
+ "countryNameOM": "オマーン",
+ "countryNameAO": "アンゴラ",
+ "countryNameIT": "イタリア",
+ "countryNameAZ": "アゼルバイジャン",
+ "countryNameKG": "キルギス",
+ "countryNameWF": "ウォリス・フツナ",
+ "countryNameTL": "ティモール・レステ",
+ "countryNameFK": "フォークランド諸島",
+ "countryNameGY": "ガイアナ",
+ "countryNameSS": "南スーダン",
+ "countryNameMM": "ミャンマー",
+ "countryNameHT": "ハイチ",
+ "countryNameSY": "シリア",
+ "countryNameMD": "モルドバ",
+ "countryNameVC": "セントビンセント及びグレナディーン諸島",
+ "countryNameID": "インドネシア",
+ "countryNameRE": "レユニオン",
+ "countryNameER": "エリトリア",
+ "countryNameMK": "北マケドニア",
+ "countryNameTG": "トーゴ",
+ "countryNamePF": "仏領ポリネシア",
+ "countryNameKY": "ケイマン諸島",
+ "countryNameIO": "英領インド洋地域",
+ "countryNameRU": "ロシア",
+ "countryNameMA": "モロッコ",
+ "countryNameAU": "オーストラリア",
+ "countryNameBO": "ボリビア",
+ "countryNameVA": "教皇庁 (バチカン市国)",
+ "countryNameVG": "英領バージン諸島",
+ "countryNameFM": "ミクロネシア",
+ "countryNameAQ": "南極",
+ "countryNameZM": "ザンビア",
+ "countryNameBR": "ブラジル",
+ "countryNameIS": "アイスランド",
+ "countryNamePE": "ペルー",
+ "countryNameBG": "ブルガリア",
+ "countryNamePR": "プエルトリコ",
+ "countryNameGI": "ジブラルタル",
+ "countryNameBS": "バハマ",
+ "countryNameJE": "ジャージー島",
+ "countryNameMO": "マカオ特別行政区",
+ "countryNameRW": "ルワンダ",
+ "countryNameAS": "米領サモア",
+ "countryNameBQ": "ボネール島、セント・ユースタティウス島、サバ島",
+ "countryNameMF": "サン・マルタン",
+ "countryNameTM": "トルクメニスタン",
+ "countryNameML": "マリ",
+ "countryNameTO": "トンガ",
+ "countryNameNC": "ニューカレドニア",
+ "countryNameAC": "アセンション島",
+ "countryNameBN": "ブルネイ",
+ "countryNameBD": "バングラデシュ",
+ "countryNameMW": "マラウイ",
+ "countryNameGM": "ガンビア",
+ "countryNameGA": "ガボン",
+ "countryNameCA": "カナダ",
+ "countryNameSH": "セントヘレナ",
+ "countryNameYT": "マヨット",
+ "countryNameMN": "モンゴル",
+ "countryNamePA": "パナマ",
+ "countryNameCM": "カメルーン",
+ "countryNameNE": "ニジェール",
+ "countryNameCW": "キュラソー島",
+ "countryNameJP": "日本",
+ "countryNameCY": "キプロス",
+ "countryNameCD": "コンゴ民主共和国",
+ "countryNameTN": "チュニジア",
+ "countryNameTR": "トルコ",
+ "countryNameWS": "サモア",
+ "countryNameSE": "スウェーデン",
+ "countryNameXK": "コソボ",
+ "countryNameKH": "カンボジア",
+ "countryNamePL": "ポーランド",
+ "countryNameDZ": "アルジェリア",
+ "countryNameLR": "リベリア",
+ "countryNameSO": "ソマリア",
+ "countryNameDM": "ドミニカ国",
+ "countryNameEG": "エジプト",
+ "countryNameGF": "仏領ギアナ",
+ "countryNameNZ": "ニュージーランド",
+ "countryNamePS": "パレスチナ自治政府",
+ "countryNameIL": "イスラエル",
+ "countryNameSL": "シエラレオネ",
+ "countryNameGR": "ギリシャ",
+ "countryNameNG": "ナイジェリア",
+ "countryNameMR": "モーリタニア",
+ "countryNameVI": "米領バージン諸島",
+ "countryNameGQ": "赤道ギニア",
+ "countryNameMX": "メキシコ",
+ "countryNameDJ": "ジブチ",
+ "countryNameGN": "ギニア",
+ "countryNameCN": "中国",
+ "countryNameMZ": "モザンビーク",
+ "countryNameBV": "ブーベ島",
+ "countryNameNF": "ノーフォーク島",
+ "countryNameTZ": "タンザニア",
+ "countryNameAI": "アンギラ",
+ "countryNameGS": "サウスジョージア・サウスサンドウィッチ諸島",
+ "countryNameRS": "セルビア",
+ "countryNameCC": "ココス(キーリング)諸島",
+ "countryNameNA": "ナミビア",
+ "countryNameDE": "ドイツ",
+ "countryNameCG": "コンゴ共和国",
+ "countryNameKW": "クウェート",
+ "countryNameMH": "マーシャル諸島",
+ "countryNameVN": "ベトナム",
+ "countryNameBY": "ベラルーシ",
+ "countryNameMY": "マレーシア",
+ "countryNameST": "サントメ・プリンシペ",
+ "countryNameLS": "レソト",
+ "countryNameBI": "ブルンジ",
+ "countryNameTD": "チャド",
+ "countryNameCX": "クリスマス島",
+ "countryNameIR": "イラン",
+ "countryNameTV": "ツバル",
+ "countryNameGW": "ギニアビサウ",
+ "countryNameUA": "ウクライナ",
+ "countryNameCU": "キューバ",
+ "countryNameCO": "コロンビア",
+ "countryNameNI": "ニカラグア",
+ "countryNameHR": "クロアチア",
+ "countryNameSC": "セーシェル",
+ "countryNameNL": "オランダ",
+ "countryNameUM": "その他の米領諸島",
+ "countryNameIM": "マン島",
+ "countryNameFJ": "フィジー",
+ "countryNameSR": "スリナム",
+ "countryNameGT": "グアテマラ",
+ "countryNameSM": "サンマリノ",
+ "countryNameLA": "ラオス",
+ "countryNameGB": "イギリス",
+ "countryNameBB": "バルバドス",
+ "countryNameSI": "スロベニア",
+ "countryNameAM": "アルメニア",
+ "countryNameAR": "アルゼンチン",
+ "countryNamePM": "サンピエール・ミクロン",
+ "countryNameTF": "フランス領南極地方",
+ "countryNameDO": "ドミニカ共和国",
+ "countryNameZW": "ジンバブエ",
+ "countryNameMQ": "マルティニーク",
+ "countryNamePT": "ポルトガル",
+ "countryNameCF": "中央アフリカ共和国",
+ "countryNameBE": "ベルギー",
+ "countryNameKM": "コモロ",
+ "countryNameLY": "リビア",
+ "countryNameIE": "アイルランド",
+ "countryNameKP": "北朝鮮",
+ "countryNameGG": "ガーンジー島",
+ "countryNameSK": "スロバキア",
+ "countryNameTC": "タークス・カイコス諸島",
+ "countryNameNP": "ネパール",
+ "countryNameBF": "ブルキナファソ",
+ "countryNameYE": "イエメン",
+ "countryNameBA": "ボスニア・ヘルツェゴビナ",
+ "countryNameGP": "グアドループ",
+ "countryNameMS": "モントセラト",
+ "countryNameCL": "チリ",
+ "countryNameIQ": "イラク",
+ "countryNameSJ": "スバールバル諸島・ヤンマイエン島",
+ "countryNameAX": "オーランド諸島",
+ "countryNameKE": "ケニア",
+ "countryNameGU": "グアム",
+ "countryNameBM": "バミューダ諸島",
+ "countryNameFO": "フェロー諸島",
+ "countryNameBL": "サン・バルテルミー",
+ "countryNameLB": "レバノン",
+ "countryNameJM": "ジャマイカ",
+ "countryNameAF": "アフガニスタン",
+ "countryNameES": "スペイン",
+ "countryNameMC": "モナコ",
+ "countryNameSG": "シンガポール",
+ "countryNameAL": "アルバニア",
+ "countryNameSN": "セネガル",
+ "countryNameSZ": "スワジランド",
+ "countryNameBZ": "ベリーズ",
+ "countryNameCI": "コートジボワール",
+ "countryNameTW": "台湾",
+ "countryNameUY": "ウルグアイ",
+ "countryNameCK": "クック諸島",
+ "countryNameTH": "タイ",
+ "countryNameHM": "ハード・マクドナルド諸島",
+ "countryNameGD": "グレナダ",
+ "countryNameUS": "米国",
+ "countryNameAT": "オーストリア",
+ "countryNameKR": "大韓民国",
+ "countryNamePK": "パキスタン",
+ "countryNameDK": "デンマーク",
+ "countryNameSV": "エルサルバドル",
+ "countryNamePW": "パラオ",
+ "countryNameET": "エチオピア",
+ "countryNameMG": "マダガスカル",
+ "countryNameCR": "コスタリカ",
+ "countryNameLU": "ルクセンブルク",
+ "countryNameQA": "カタール",
+ "countryNameBT": "ブータン",
+ "countryNameSB": "ソロモン諸島",
+ "countryNameAE": "アラブ首長国連邦",
+ "countryNameAD": "アンドラ",
+ "countryNameCV": "カーボベルデ",
+ "countryNameAG": "アンティグア・バーブーダ",
+ "countryNameMU": "モーリシャス",
+ "countryNameHU": "ハンガリー",
+ "countryNameSX": "シント・マールテン島",
+ "countryNameCH": "スイス",
+ "countryNamePN": "ピトケアン",
+ "countryNameGL": "グリーンランド",
+ "countryNamePH": "フィリピン",
+ "countryNameMT": "マルタ",
+ "countryNameKN": "セントクリストファー・ネーヴィス",
+ "countryNameLK": "スリランカ",
+ "countryNameKI": "キリバス",
+ "countryNameBJ": "ベナン",
+ "countryNameLV": "ラトビア",
+ "countryNamePY": "パラグアイ"
+ }
+ }
}
diff --git a/Documentation/Strings-ko.json b/Documentation/Strings-ko.json
index 8c49c99..b86bffd 100644
--- a/Documentation/Strings-ko.json
+++ b/Documentation/Strings-ko.json
@@ -1,1842 +1,4 @@
{
- "InstallContextType": {
- "device": "디바이스",
- "deviceContext": "디바이스 컨텍스트",
- "user": "사용자",
- "userContext": "사용자 컨텍스트"
- },
- "WipPolicySettings": {
- "addNetworkBoundary": "네트워크 경계 추가",
- "addNetworkBoundaryButton": "네트워크 경계 추가...",
- "allowWindowsSearch": "Windows Search에서 암호화된 회사 데이터 및 스토어 앱을 검색할 수 있도록 허용",
- "authoritativeIpRanges": "엔터프라이즈 IP 범위 목록을 신뢰할 수 있음(자동 검색 안 함)",
- "authoritativeProxyServers": "엔터프라이즈 프록시 서버 목록을 신뢰할 수 있음(자동 검색 안 함)",
- "boundaryType": "경계 유형",
- "cloudResources": "클라우드 리소스",
- "corporateIdentity": "회사 ID",
- "dataRecoveryCert": "암호화된 데이터를 복구할 수 있도록 DRA(데이터 복구 에이전트) 인증서를 업로드합니다.",
- "editNetworkBoundary": "네트워크 경계 편집",
- "enrollmentState": "등록 상태",
- "iPv4Ranges": "IPv4 범위",
- "iPv6Ranges": "IPv6 범위",
- "internalProxyServers": "내부 프록시 서버",
- "maxInactivityTime": "디바이스가 유휴 상태로 전환된 후 디바이스의 PIN 또는 암호가 잠기게 되는 최대 허용 시간(분)",
- "maxPasswordAttempts": "디바이스가 초기화되기 전 허용되는 인증 실패 횟수",
- "mdmDiscoveryUrl": "MDM 검색 URL",
- "mdmRequiredSettingsInfo": "이 정책은 Windows 10 1주년 버전 이상에만 적용됩니다. 이 정책에서는 WIP(Windows Information Protection)를 사용하여 보호를 적용합니다.",
- "minimumPinLength": "PIN에 대해 필요한 최소 문자 수를 설정합니다.",
- "name": "이름",
- "networkBoundariesGridEmptyText": "추가하는 모든 네트워크 경계가 여기에 표시됩니다.",
- "networkBoundary": "네트워크 경계",
- "networkDomainNames": "네트워크 도메인",
- "neutralResources": "중립 리소스",
- "passportForWork": "Windows에 로그인하는 방법으로 비즈니스용 Windows Hello를 사용합니다.",
- "pinExpiration": "시스템에서 사용자에게 PIN을 변경하도록 요구하기 전에 PIN을 사용할 수 있는 기간(일)을 지정합니다.",
- "pinHistory": "다시 사용할 수 없는 사용자 계정에 연결할 수 있는 이전 PIN의 숫자를 지정합니다.",
- "pinLowercaseLetters": "비즈니스용 Windows Hello PIN에 소문자 사용을 구성합니다.",
- "pinSpecialCharacters": "비즈니스용 Windows Hello PIN에 특수 문자 사용을 구성합니다.",
- "pinUppercaseLetters": "비즈니스용 Windows Hello PIN에 대문자 사용을 구성합니다.",
- "protectUnderLock": "디바이스가 잠긴 경우 앱에서 회사 데이터에 액세스할 수 없도록 합니다. Windows 10 Mobile에만 적용됩니다.",
- "protectedDomainNames": "보호되는 도메인",
- "proxyServers": "프록시 서버",
- "requireAppPin": "디바이스 PIN이 관리될 때 앱 PIN을 사용 안 함",
- "requiredSettings": "필수 설정",
- "requiredSettingsInfo": "범위를 변경하거나 이 정책을 제거하면 회사 데이터의 암호가 해독됩니다.",
- "revokeOnMdmHandoff": "디바이스가 MDM에 등록될 때 보호된 데이터에 대한 액세스 취소",
- "revokeOnUnenroll": "등록 취소 시 암호화 키 취소",
- "rmsTemplateForEdp": "Azure RMS에 대해 사용할 템플릿 ID를 지정합니다.",
- "showWipIcon": "엔터프라이즈 데이터 보호 아이콘 표시",
- "type": "형식",
- "useRmsForWip": "WIP에 대해 Azure RMS 사용",
- "value": "값",
- "weRequiredSettingsInfo": "이 정책은 Windows 10 크리에이터스 업데이트 이상에만 적용됩니다. 이 정책에서는 WIP(Windows Information Protection) 및 Windows MAM을 사용하여 보호를 적용합니다.",
- "wipProtectionMode": "Windows Information Protection 모드",
- "withEnrollment": "등록 있음",
- "withoutEnrollment": "등록 없음"
- },
- "EdgeAppConfig": {
- "AllowedURLs": {
- "title": "허용된 URL",
- "tooltip": "업무 중에 사용자가 액세스할 수 있는 사이트를 지정합니다. 다른 사이트는 허용되지 않습니다. 허용/차단 목록 중 하나만 구성할 수 있으며, 둘 다 구성할 수는 없습니다. "
- },
- "ApplicationProxyRedirection": {
- "header": "애플리케이션 프록시",
- "title": "애플리케이션 프록시 리디렉션",
- "tooltip": "앱 프록시 리디렉션을 사용하도록 설정하여 사용자에게 회사 링크 및 온-프레미스 웹앱에 대한 액세스 권한을 부여합니다."
- },
- "BlockedURLs": {
- "title": "차단된 URL",
- "tooltip": "업무 중에 사용자에 대해 차단되는 사이트를 지정합니다. 다른 사이트는 모두 허용됩니다. 허용/차단 목록 중 하나만 구성할 수 있으며, 둘 다 구성할 수는 없습니다. "
- },
- "Bookmarks": {
- "header": "관리형 책갈피",
- "tooltip": "업무 중에 Microsoft Edge를 사용할 때 사용자가 사용할 수 있는 책갈피로 지정된 URL 목록을 입력합니다.",
- "uRL": "URL"
- },
- "HomepageURL": {
- "header": "관리되는 홈페이지",
- "title": "홈페이지 바로 가기 URL",
- "tooltip": "사용자가 Microsoft Edge에서 새 탭을 열 때 검색 창 아래에 첫 번째 아이콘으로 표시되는 홈페이지 바로 가기를 구성합니다."
- },
- "PersonalContext": {
- "label": "제한된 사이트를 개인 컨텍스트로 리디렉션",
- "tooltip": "사용자가 제한된 사이트를 열기 위해 개인 컨텍스트로의 전환을 허용받아야 하는지를 구성합니다."
- }
- },
- "AzureIAM": {
- "AdrsUserActionSelectionWarning": {
- "conditions": "장치 등록이 필요한 조건은 \"등록 또는 참가 장치\" 사용자 작업을 통해 사용할 수 없습니다.",
- "message": "\"디바이스 등록 또는 가입\" 사용자 작업에 대해 만들어진 정책에서만 \"다단계 인증 필요\"를 사용할 수 있습니다.{0}"
- },
- "AuthContext": {
- "Included": {
- "none": "선택한 클라우드 앱, 작업 또는 인증 컨텍스트가 없습니다.",
- "plural": "{0}개 인증 컨텍스트가 포함됨",
- "singular": "1개 인증 컨텍스트가 포함됨"
- },
- "InfoBlade": {
- "createTitle": "인증 컨텍스트 추가",
- "descPlaceholder": "인증 컨텍스트에 대한 설명 추가",
- "modifyTitle": "인증 컨텍스트 수정",
- "namePlaceholder": "예: 신뢰할 수 있는 위치, 신뢰할 수 있는 디바이스, 강력한 인증",
- "publishDesc": "앱에 게시하면 앱에서 인증 컨텍스트를 사용할 수 있습니다. 태그에 대한 조건부 액세스 정책 구성을 완료한 후에 게시합니다. [자세한 정보][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150966",
- "publishLabel": "앱에 게시",
- "titleDesc": "애플리케이션 데이터 및 작업을 보호하는 데 사용되는 인증 컨텍스트를 구성합니다. 애플리케이션 관리자가 인식할 수 있는 이름 및 설명을 사용합니다. [자세한 정보][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150965"
- },
- "Notify": {
- "failure": "{0} 업데이트 실패",
- "modifying": "{0} 수정",
- "success": "{0} 업데이트 성공"
- },
- "WhatIf": {
- "selected": "인증 컨텍스트가 포함됨"
- },
- "addNewStepUp": "새 인증 컨텍스트",
- "checkBoxInfo": "이 정책이 적용될 인증 컨텍스트를 선택합니다.",
- "configure": "인증 컨텍스트 구성",
- "createCA": "인증 컨텍스트에 조건부 액세스 정책 할당",
- "dataGrid": "인증 컨텍스트 목록",
- "description": "설명",
- "documentation": "설명서",
- "getStarted": "시작하기",
- "label": "인증 컨텍스트(미리 보기)",
- "menuLabel": "인증 컨텍스트(미리 보기)",
- "name": "이름",
- "noAuthContextSet": "인증 컨텍스트가 없습니다.",
- "noData": "표시할 인증 컨텍스트 없음",
- "selectionInfo": "인증 컨텍스트는 SharePoint, Microsoft Cloud App Security와 같은 앱에서 애플리케이션 데이터와 동작을 보호하는 데 사용됩니다.",
- "step": "단계",
- "tabDescription": "앱에서 데이터 및 작업을 보호하기 위해 인증 컨텍스트를 관리합니다. [자세한 정보][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150965",
- "tagResources": "인증 컨텍스트를 사용하여 리소스에 태그 지정"
- },
- "AuthenticationStrength": {
- "Mode": {
- "deviceBasedPush": "Microsoft Authenticator(전화 로그인)",
- "deviceBasedPushFido2X509Certificate": "Microsoft Authenticator(전화 로그인) + Fido 2 + 인증서 기반 인증",
- "deviceBasedPushX509CertificateSingleFactor": "Microsoft Authenticator(전화 로그인) + Fido 2 + 인증서 기반 인증(단일 단계)",
- "email": "일회성 전자 메일 보내기",
- "emailOtp": "전자 메일 OTP",
- "federatedMultiFactor": "페더레이션된 다단계",
- "federatedSingleFactor": "페더레이션된 단일 인수",
- "federatedSingleFactorFederatedMultiFactor": "페더레이션된 단일 요소 + 페더레이션된 다단계",
- "fido2": "FIDO 2 보안 키",
- "fido2X509CertificateSingleFactor": "FIDO 2 보안 키 + 인증서 기반 인증(단일 단계)",
- "hardwareOath": "하드웨어 OTP",
- "hardwareOathX509CertificateSingleFactor": "하드웨어 OTP + 인증서 기반 인증(단일 단계)",
- "microsoftAuthenticatorPSIX509CertificateSingleFactor": "Microsoft Authenticator(전화 로그인) + 인증서 기반 인증(단일 단계)",
- "microsoftAuthenticatorPsi": "Microsoft Authenticator(전화 로그인)",
- "microsoftAuthenticatorPush": "Microsoft Authenticator - 푸시 알림",
- "microsoftAuthenticatorPushX509CertificateSingleFactor": "Microsoft Authenticator(푸시 알림) + 인증서 기반 인증(단일 단계)",
- "none": "없음",
- "password": "암호",
- "passwordDeviceBasedPush": "암호 + Microsoft Authenticator(전화 로그인)",
- "passwordFido2": "암호 + FIDO 2 보안 키",
- "passwordHardwareOath": "암호 + 하드웨어 OTP",
- "passwordMicrosoftAuthenticatorPSI": "암호 + Microsoft Authenticator(전화 로그인)",
- "passwordMicrosoftAuthenticatorPush": "암호 + Microsoft Authenticator - 푸시 알림",
- "passwordSms": "암호 + SMS",
- "passwordSoftwareOath": "암호 + 소프트웨어 OTP",
- "passwordTemporaryAccessPassMultiUse": "암호 + 임시 액세스 패스(다중 사용)",
- "passwordTemporaryAccessPassOneTime": "암호 + 임시 액세스 패스(일회성 사용)",
- "passwordVoice": "암호 + 음성",
- "sms": "SMS",
- "smsSignIn": "SMS 로그인",
- "smsX509CertificateSingleFactor": "SMS + 인증서 기반 인증(단일 단계)",
- "softwareOath": "소프트웨어 OTP",
- "softwareOathX509CertificateSingleFactor": "소프트웨어 OTP + 인증서 기반 인증(단일 단계)",
- "temporaryAccessPassMultiUse": "임시 액세스 패스(다중 사용)",
- "temporaryAccessPassMultiUseX509CertificateSingleFactor": "임시 액세스 패스(다중 사용) + 인증서 기반 인증(단일 단계)",
- "temporaryAccessPassOneTime": "임시 액세스 패스(일회성 사용)",
- "temporaryAccessPassOneTimeX509CertificateSingleFactor": "임시 액세스 패스(일회성 사용) + 인증서 기반 인증(단일 단계)",
- "voice": "Voice",
- "voiceX509CertificateSingleFactor": "음성 + 인증서 기반 인증(단일 단계)",
- "windowsHelloForBusiness": "비즈니스용 Windows Hello",
- "x509CertificateMultiFactor": "인증서 기반 인증(Multi-Factor)",
- "x509CertificateSingleFactor": "인증서 기반 인증(단일 단계)"
- }
- },
- "CAS": {
- "BuiltinPolicy": {
- "Option": {
- "blockDownloads": "다운로드 차단(미리 보기)",
- "monitorOnly": "모니터만(미리 보기)",
- "protectDownloads": "다운로드 보호(미리 보기)",
- "useCustomControls": "사용자 지정 정책 사용..."
- },
- "ariaLabel": "적용할 조건부 액세스 앱 컨트롤 종류 선택"
- }
- },
- "ChooseApplications": {
- "Grid": {
- "appIdAria": "앱 ID: {0}"
- },
- "LowerGrid": {
- "ariaLabel": "선택된 클라우드 앱 목록"
- },
- "UpperGrid": {
- "ariaLabel": "검색 용어와 일치하는 클라우드 앱 목록"
- }
- },
- "ChooseLocations": {
- "Validation": {
- "failed": "\"선택한 위치\"에서 하나 이상의 위치를 선택해야 합니다.",
- "selector": "하나 이상의 위치를 선택하세요."
- }
- },
- "ClientApp": {
- "Clients": {
- "Validation": {
- "failed": "다음 클라이언트 중 하나 이상을 선택해야 합니다."
- }
- }
- },
- "ClientConditionsInfo": {
- "browserAndModern": "이 정책은 브라우저 및 최신 인증 앱에만 적용됩니다. 모든 클라이언트 앱에 정책을 적용하려면 클라이언트 앱 조건을 사용하도록 설정하고 모든 클라이언트 앱을 선택하세요.",
- "classicExperience": "이 정책을 만든 후로 기본 클라이언트 앱 구성이 업데이트되었습니다.",
- "legacyAuth": "구성되지 않은 경우 이제 정책이 최신 및 레거시 인증을 포함한 모든 클라이언트 앱에 적용됩니다."
- },
- "CloudAppFilterBlade": {
- "AssignmentFilter": {
- "header": "특성",
- "placeholder": "특성 선택"
- },
- "Configure": {
- "infoBalloon": "정책을 적용할 앱 필터를 구성합니다."
- },
- "NoPermissions": {
- "learnMoreAria": "사용자 지정 보안 특성 권한에 대한 자세한 정보입니다.",
- "message": "사용자 지정 보안 특성을 사용하는 데 필요한 권한이 없습니다."
- },
- "gridHeader": "사용자 지정 보안 특성을 사용하여 규칙 작성기 또는 규칙 구문 텍스트 상자를 사용하여 필터 규칙을 만들거나 편집할 수 있습니다. 미리 보기에서는 문자열 형식의 특성만 지원됩니다. 정수 또는 부울 형식의 특성은 표시되지 않습니다.",
- "learnMoreAria": "규칙 작성기 및 구문 텍스트 상자를 사용하는 방법에 대한 자세한 정보입니다.",
- "noAttributes": "필터링할 수 있는 사용자 지정 특성이 없습니다. 이 필터를 사용하려면 일부 특성을 구성해야 합니다.",
- "title": "Edit filter (Preview)"
- },
- "CloudAppsUserActions": {
- "any": "임의 클라우드 앱 또는 작업",
- "infoBalloon": "테스트할 클라우드 앱 또는 사용자 작업입니다(예: 'SharePoint Online').",
- "learnMore": "모든 또는 특정 클라우드 앱 또는 작업을 기반으로 액세스를 제어합니다.",
- "learnMoreB2C": "모든 또는 특정 클라우드 앱을 기반으로 액세스를 제어합니다.",
- "title": "클라우드 앱 또는 작업"
- },
- "CloudappsSelectionBlade": {
- "Excluded": {
- "gridAria": "제외된 클라우드 앱 목록"
- },
- "Filter": {
- "configured": "구성됨",
- "label": "Edit filter (Preview)",
- "with": "{0}({1} 포함)"
- },
- "Included": {
- "gridAria": "포함된 클라우드 앱 목록"
- },
- "Validation": {
- "authContext": "\"인증 컨텍스트\"를 사용하여 하나 이상의 하위 항목을 구성해야 합니다.",
- "selectApps": "\"{0}\"을(를) 구성해야 합니다.",
- "selector": "앱을 하나 이상 선택하세요.",
- "userActions": "\"사용자 작업\"을 사용하여 하나 이상의 하위 항목을 구성해야 합니다."
- }
- },
- "DeviceState": {
- "LearnMore": {
- "message": "Control user access when the device the user is signing-in from is not \"Hybrid Azure AD joined\" or \"marked as compliant\".\n '{0}' has been deprecated. Use '{1}' instead."
- }
- },
- "Errors": {
- "notFound": "정책을 찾을 수 없거나 정책이 삭제되었습니다.",
- "notFoundDetailed": "정책 \"{0}\"이(가) 더 이상 존재하지 않습니다. 삭제되었을 수 있습니다."
- },
- "NamedLocation": {
- "Form": {
- "CountryLookup": {
- "ariaLabel": "국가 조회 방법",
- "gps": "GPS 좌표로 위치 확인",
- "info": "조건부 액세스 정책의 위치 조건이 구성되면 Authenticator 앱에서 GPS 위치 공유 요청 메시지가 표시됩니다. ",
- "ip": "IP 주소로 위치 확인(IPv4에만 해당)"
- },
- "Header": {
- "new": "새 위치({0})",
- "update": "위치({0}) 업데이트"
- },
- "IP": {
- "learn": "명명된 위치 IPv4 및 IPv6 범위를 구성합니다.\n[자세한 정보][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
- },
- "Include": {
- "infoBalloon": "알 수 없는 국가/지역은 특정 국가나 지역과 연결되지 않은 IP 주소입니다. [자세한 정보][1]\n\n여기에는 다음이 포함됩니다.\n* IPv6 주소\n* 직접 매핑이 없는 IPv4 주소\n[1]: https://aka.ms/canamedlocations\n",
- "label": "알 수 없는 국가/지역 포함"
- },
- "Name": {
- "empty": "이름은 비워 둘 수 없습니다.",
- "placeholder": "이 위치의 이름 지정"
- },
- "PrivateLink": {
- "learn": "Azure AD에 대한 사설 링크를 포함하는 새 명명된 위치를 만듭니다.\n[자세히 알아보기][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
- },
- "Search": {
- "countries": "국가 검색",
- "names": "이름 검색",
- "privateLinks": "사설 링크 검색"
- },
- "Trusted": {
- "label": "신뢰할 수 있는 위치로 표시"
- },
- "enter": "새 IPv4 또는 IPv6 범위 입력",
- "example": "예: 40.77.182.32/27 또는 2a01:111::/32"
- },
- "Label": {
- "addCountries": "국가 위치",
- "addIpRange": "IP 범위 위치",
- "addPrivateLink": "Azure Private Link"
- },
- "Notification": {
- "Create": {
- "Failed": {
- "description": "새 위치({0}) 만들기 실패",
- "title": "만드는 데 실패했습니다."
- },
- "InProgress": {
- "description": "새 위치({0})를 만드는 중",
- "title": "만들기 진행 중"
- },
- "Success": {
- "description": "새 위치({0}) 만들기 성공",
- "title": "만드는 데 성공했습니다."
- }
- },
- "Delete": {
- "Failed": {
- "description": "위치({0}) 삭제 실패",
- "title": "삭제하는 데 실패했습니다."
- },
- "InProgress": {
- "description": "위치({0})를 삭제하는 중",
- "title": "삭제 진행 중"
- },
- "Success": {
- "description": "위치({0}) 삭제 성공",
- "title": "삭제했습니다."
- }
- },
- "Update": {
- "Failed": {
- "description": "위치({0}) 업데이트 실패",
- "title": "업데이트에 실패했습니다."
- },
- "InProgress": {
- "description": "위치({0})를 업데이트하는 중",
- "title": "업데이트 진행 중"
- },
- "Success": {
- "description": "위치({0}) 업데이트 성공",
- "title": "업데이트에 성공했습니다."
- }
- }
- },
- "PrivateLinks": {
- "grid": "사설 링크 목록"
- },
- "Trusted": {
- "title": "신뢰할 수 있는 형식",
- "trusted": "인증 신뢰"
- },
- "Type": {
- "all": "모든 형식",
- "countries": "국가",
- "ipRanges": "IP 범위",
- "privateLinks": "사설 링크",
- "title": "위치 유형"
- },
- "iPRangeInvalidError": "값은 유효한 IPv4 또는 IPv6 범위여야 합니다.",
- "iPRangeLinkOrSiteLocalError": "IP 네트워크가 링크 로컬 또는 사이트 로컬 주소로 검색되었습니다.",
- "iPRangeOctetError": "IP 네트워크는 0 또는 255로 시작할 수 없습니다.",
- "iPRangePrefixError": "IP 네트워크 접두사는 /{0}에서 /{1} 사이여야 합니다.",
- "iPRangePrivateError": "IP 네트워크가 프라이빗 주소로 검색되었습니다."
- },
- "Policies": {
- "Grid": {
- "aria": "조건부 액세스 정책 목록"
- },
- "countText": "{1}개 중 {0}개 정책을 찾았습니다.",
- "countTextSingular": "1개 중 {0}개 정책을 찾았습니다.",
- "search": "정책 검색"
- },
- "Policy": {
- "Condition": {
- "ServicePrincipalRisk": {
- "description": "정책을 적용하는 데 필요한 서비스 사용자 위험 수준을 구성합니다",
- "infoBalloonContent": "선택한 위험 수준에 정책을 적용하도록 서비스 사용자 위험 구성",
- "title": "서비스 사용자 위험"
- }
- }
- },
- "PolicyControlAuthStrength": {
- "MultiFactorAuthentication": {
- "description": "암호 + SMS와 같은 강력한 인증을 충족하는 방법의 조합",
- "displayName": "MFA(다단계 인증)"
- },
- "Passwordless": {
- "description": "Microsoft Authenticator와 같은 강력한 인증을 충족하는 암호 없는 방법",
- "displayName": "암호 없는 MFA"
- },
- "PhishingResistant": {
- "description": "FIDO2 보안 키와 같은 가장 강력한 인증을 위한 피싱 방지 암호 없는 방법",
- "displayName": "피싱 방지 MFA"
- }
- },
- "PolicyControlFedAuthMethod": {
- "certificate": "인증서 인증",
- "infoBubble": "ADFS 등의 페더레이션 공급자가 만족해야 하는 필요한 인증 방법을 지정하세요.",
- "multifactor": "다단계 인증",
- "require": "페더레이션된 인증 방법 필요(미리 보기)",
- "whatIfFormat": "{0} - {1}"
- },
- "PolicyState": {
- "off": "끄기",
- "on": "설정",
- "reportOnly": "보고서 전용"
- },
- "PolicyTemplates": {
- "Devices": {
- "description": "디바이스 정책 템플릿 범주를 선택하여 네트워크에 액세스하는 디바이스를 파악합니다. 액세스 권한을 부여하기 전에 규정 준수 및 상태를 확인하세요.",
- "name": "디바이스"
- },
- "Identities": {
- "description": "ID 정책 템플릿 범주를 선택하여 전체 디지털 자산에서 강력한 인증으로 각 ID를 확인하고 보호합니다.",
- "name": "ID"
- },
- "Summary": {
- "CloudApps": {
- "allCloudApps": "모든 앱",
- "office365": "Office 365",
- "registerSecurityInfo": "보안 정보 등록"
- },
- "Conditions": {
- "androidAndIOS": "장치 플랫폼: Android 및 IOS",
- "anyDevice": "Android, IOS, Windows 및 Mac을 제외한 모든 장치",
- "anyDeviceStateExceptHybrid": "규정 준수 및 하이브리드 Azure AD 조인을 제외한 모든 장치 상태",
- "anyLocation": "신뢰할 수 있는 위치를 제외한 모든 위치",
- "browserMobileDesktop": "클라이언트 앱: 브라우저, 모바일 앱 및 데스크톱 클라이언트",
- "exchangeActiveSync": "클라이언트 앱: Exchange Active Sync, 기타 클라이언트",
- "windowsAndMac": "장치 플랫폼: Windows 및 Mac"
- },
- "Devices": {
- "anyDevice": "모든 디바이스"
- },
- "Grant": {
- "appProtectionPolicy": "앱 보호 정책 필요",
- "approvedClientApp": "승인된 클라이언트 앱 필요",
- "blockAccess": "접근 차단",
- "mfa": "다단계 인증 필요",
- "passwordChange": "암호 변경 필요",
- "requireCompliantDevice": "준수 상태로 표시된 디바이스 필요",
- "requireHybridAzureADDevice": "하이브리드 Azure AD 조인된 디바이스 필요"
- },
- "Session": {
- "appEnforcedRestrictions": "앱 적용 제한 사용",
- "signInFrequency": "로그인 빈도 및 비영구 브라우저 세션"
- },
- "UsersAndGroups": {
- "allUsers": "모든 사용자",
- "directoryRoles": "현재 관리자를 제외한 디렉토리 역할",
- "globalAdmin": "전역 관리자",
- "noGuestAndAdmins": "게스트 및 외부를 제외한 모든 사용자, 전역 관리자, 현재 관리자"
- },
- "azureManagement": "Azure 관리",
- "deviceFilters": "디바이스용 필터",
- "devicePlatforms": "디바이스 플랫폼"
- },
- "TemplateId": {
- "AppEnforcedRestrictions": {
- "description": "관리되지 않는 장치에서 SharePoint, OneDrive 및 Exchange 콘텐츠에 대한 액세스를 차단하거나 제한합니다.",
- "name": "CA014: 관리되지 않는 장치에 대한 응용 프로그램 적용 제한 사용",
- "title": "관리되지 않는 장치에 대한 애플리케이션 적용 제한 사용"
- },
- "ApprovedClientApps": {
- "description": "데이터 손실을 방지하기 위해 조직은 Intune 앱 보호를 사용하여 승인된 최신 인증 클라이언트 앱에 대한 액세스를 제한할 수 있습니다.",
- "name": "CA012: 승인된 클라이언트 앱 및 앱 보호 필요",
- "title": "승인된 클라이언트 앱 및 앱 보호 필요"
- },
- "BlockAccessOnUnknowns": {
- "description": "장치 유형을 알 수 없거나 지원되지 않는 경우 사용자는 회사 리소스에 액세스할 수 없습니다.",
- "name": "CA010: 알 수 없거나 지원되지 않는 장치 플랫폼에 대한 액세스 차단",
- "title": "알 수 없거나 지원되지 않는 장치 플랫폼에 대한 액세스 차단"
- },
- "BlockLegacyAuth": {
- "description": "다단계 인증을 우회하는 데 사용할 수 있는 레거시 인증 끝점을 차단합니다.",
- "name": "CA003: 레거시 인증 차단",
- "title": "기존 인증 차단"
- },
- "NoPersistentBrowserSession": {
- "description": "브라우저를 닫은 후 브라우저 세션이 로그인 상태로 유지되지 않도록 하고 로그인 빈도를 1시간으로 설정하여 관리되지 않는 장치에서 사용자 액세스를 보호합니다.",
- "name": "CA011: 지속적인 브라우저 세션이 없음",
- "title": "지속적인 브라우저 세션 없음"
- },
- "RequireCompliantOrHybridADAdmins": {
- "description": "규정 준수 또는 하이브리드 Azure AD 조인된 장치를 사용할 때 권한 있는 관리자가 리소스에만 액세스하도록 요구합니다.",
- "name": "CA009: 관리자를 위한 호환 또는 하이브리드 Azure AD 조인된 장치 필요",
- "title": "관리자를 위한 규격 또는 하이브리드 Azure AD 조인된 장치 필요"
- },
- "RequireCompliantOrHybridADAllUsers": {
- "description": "사용자가 관리 장치를 사용하거나 다단계 인증을 수행하도록 요구하여 회사 리소스에 대한 액세스를 보호합니다(macOS 또는 Windows만 해당).",
- "name": "CA013: 모든 사용자에 대해 호환 또는 하이브리드 Azure AD 조인된 장치 또는 다단계 인증 필요",
- "title": "모든 사용자에 대해 규정 준수 또는 하이브리드 Azure AD 조인된 장치 또는 다단계 인증 필요"
- },
- "RequireMFAAllUsers": {
- "description": "손상 위험을 줄이기 위해 모든 사용자 계정에 대해 다단계 인증을 요구합니다.",
- "name": "CA004: 모든 사용자에 대해 다단계 인증 필요",
- "title": "모든 사용자에 대해 다단계 인증 요구"
- },
- "RequireMFAForAdmins": {
- "description": "손상 위험을 줄이기 위해 권한 있는 관리 계정에 대해 다단계 인증을 요구합니다. 이 정책은 보안 기본값과 동일한 역할을 대상으로 합니다.",
- "name": "CA001: 관리자에 대한 다단계 인증 필요",
- "title": "관리자를 위한 다단계 인증 필요"
- },
- "RequireMFAForAzureManagement": {
- "description": "Azure 리소스에 대한 권한 있는 액세스를 보호하려면 다단계 인증이 필요합니다.",
- "name": "CA006: Azure 관리를 위한 다단계 인증 필요",
- "title": "Azure 관리를 위한 다단계 인증 필요"
- },
- "RequireMFAForGuestAccess": {
- "description": "게스트 사용자가 회사 리소스에 액세스할 때 다단계 인증을 수행하도록 요구합니다.",
- "name": "CA005: 게스트 액세스를 위한 다단계 인증 필요",
- "title": "게스트 액세스에 다단계 인증 필요"
- },
- "RequireMFAForRiskySignIn": {
- "description": "로그인 위험이 중간 또는 높은 것으로 감지되면 다단계 인증이 필요합니다(Azure AD Premium 2 라이선스 필요).",
- "name": "CA007: 위험한 로그인에 대해 다단계 인증 필요",
- "title": "위험한 로그인을 위해 다단계 인증 필요"
- },
- "RequirePasswordChangeForHighRiskUsers": {
- "description": "사용자 위험이 높은 것으로 감지되면 사용자에게 암호를 변경하도록 요구합니다(Azure AD Premium 2 라이선스 필요).",
- "name": "CA008: 고위험 사용자에 대한 암호 변경 필요",
- "title": "고위험 사용자에 대한 암호 변경 요구"
- },
- "RequireSecurityInfo": {
- "description": "사용자가 Azure AD 다단계 인증 및 셀프 서비스 암호에 등록하는 시기와 방법을 보호합니다. ",
- "name": "CA002: 보안 정보 등록 보안",
- "title": "보안 정보 등록 보안"
- }
- },
- "TemplateState": {
- "BlockAccessOnUnknowns": {
- "title": "이 정책을 사용하면 알 수 없는 장치 유형의 액세스가 방지됩니다. 사용자에게 영향을 미치지 않는다는 것을 확인할 때까지 보고 전용 모드를 사용하는 것이 좋습니다."
- },
- "BlockLegacyAuth": {
- "description": "사용자에게 영향을 미치지 않는다는 것을 확인할 때까지 보고 전용 모드를 사용하는 것을 고려하세요.",
- "title": "이 정책을 사용하면 모든 사용자에 대한 레거시 인증이 차단됩니다."
- },
- "RequireCompliantOrHybridADAdmins": {
- "Description": {
- "on": "권한 있는 사용자에게 영향을 미치지 않는다는 것을 확인할 때까지 보고 전용 모드를 사용하는 것을 고려하세요.",
- "reportOnly": "규정 준수 장치가 필요한 보고 전용 모드의 정책은 장치 규정 준수가 적용되지 않더라도 Mac, iOS 및 Android 사용자에게 정책 평가 중에 장치 인증서를 선택하라는 메시지를 표시할 수 있습니다. 이러한 프롬프트는 장치가 규정을 준수할 때까지 반복될 수 있습니다."
- },
- "Title": {
- "on": "이 정책을 사용하면 규정 준수 또는 하이브리드 Azure AD 조인과 같은 관리되는 장치를 사용하지 않는 한 권한 있는 사용자가 액세스할 수 없습니다. 사용하기 전에 규정 준수 정책을 구성했거나 하이브리드 Azure AD 구성을 사용했는지 확인합니다.",
- "reportOnly": "사용하기 전에 규정 준수 정책을 구성했거나 하이브리드 Azure AD 구성을 사용했는지 확인합니다."
- }
- },
- "RequireCompliantOrHybridADAllUsers": {
- "Description": {
- "on": "이 정책은 현재 로그인한 관리자를 제외한 모든 사용자에게 적용됩니다. 이것이 사용자에게 영향을 미치지 않는다는 것을 확인할 때까지 보고 전용 모드를 사용하는 것을 고려하세요."
- },
- "Title": {
- "on": "자신을 잠그지 마세요! 장치가 호환되는지 또는 하이브리드 Azure AD 조인인지 또는 다단계 인증을 구성했는지 확인합니다.",
- "reportOnly": "규정 준수 장치가 필요한 보고 전용 모드의 정책은 장치 규정 준수가 적용되지 않더라도 Mac, iOS 및 Android 사용자에게 정책 평가 중에 장치 인증서를 선택하라는 메시지를 표시할 수 있습니다. 이러한 프롬프트는 장치가 규정을 준수할 때까지 반복될 수 있습니다."
- }
- },
- "RequireMfa": {
- "description": "긴급 액세스 계정을 사용하거나 Azure AD 연결을 사용하여 온-프레미스 개체를 동기화하는 경우 생성 후 이러한 계정을 이 정책에서 제외해야 할 수 있습니다."
- },
- "RequireMfaAdmins": {
- "description": "현재 관리자 계정은 자동으로 제외되지만 다른 모든 계정은 정책 생성 시 보호됩니다. 처음에는 보고 전용 모드를 사용하는 것이 좋습니다.",
- "title": "자신을 잠그지 마세요! 이 정책은 Azure Portal에 영향을 줍니다."
- },
- "RequireMfaAllUsers": {
- "description": "이 변경 사항을 계획하여 모든 사용자에게 전달할 때까지 보고서 전용 모드를 사용하는 것이 좋습니다.",
- "title": "이 정책을 사용하면 모든 사용자에 대해 다단계 인증이 시행됩니다."
- },
- "RequireSecurityInfo": {
- "description": "회사 요구 사항에 따라 이러한 계정을 보호하기 위해 구성을 검토해야 합니다.",
- "title": "다음 사용자 및 역할은 이 정책에서 제외됩니다. 게스트 및 외부 사용자, 전역 관리자, 현재 관리자"
- }
- },
- "basics": "기본",
- "clientApps": "클라이언트 앱",
- "cloudApps": "클라우드 앱",
- "cloudAppsOrActions": "클라우드 앱 또는 작업 ",
- "conditions": "조건 ",
- "createNewPolicy": "템플릿에서 새 정책 만들기(미리 보기)",
- "createPolicy": "정책 생성",
- "currentUser": "현재 사용자",
- "customizeBuild": "빌드 사용자 지정",
- "customizeTemplate": "템플릿 목록은 만들려는 정책 유형에 따라 사용자 지정됩니다.",
- "excludedDevicePlatform": "제외된 디바이스 플랫폼",
- "excludedDirectoryRoles": "제외된 디렉터리 역할",
- "excludedLocation": "제외된 디렉터리 역할",
- "excludedUsers": "제외된 사용자",
- "grantControl": "제어 권한 부여 ",
- "includeFilteredDevice": "정책에 필터링된 디바이스 포함",
- "includedDevicePlatform": "포함된 디바이스 플랫폼",
- "includedDirectoryRoles": "포함된 디렉터리 역할",
- "includedLocation": "포함된 위치",
- "includedUsers": "포함된 사용자",
- "legacyAuthenticationClients": "레거시 인증 클라이언트",
- "namePolicy": "정책 이름 지정",
- "next": "다음",
- "policyName": "정책 이름",
- "policyState": "정책 상태",
- "policySummary": "정책 요약",
- "policyTemplate": "정책 템플릿",
- "previous": "이전",
- "reviewAndCreate": "검토 + 만들기",
- "riskLevels": "위험 수준",
- "selectATemplate": "템플릿 선택",
- "selectTemplate": "템플릿 선택",
- "selectTemplateCategory": "템플릿 범주 선택",
- "selectTemplateRecommendation": "응답에 따라 다음 템플릿을 사용하는 것이 좋습니다.",
- "sessionControl": "세션 제어 ",
- "signInFrequency": "로그인 빈도",
- "signInRisk": "로그인 위험",
- "template": "템플릿 ",
- "templateCategory": "템플릿 범주",
- "userRisk": "사용자 위험",
- "usersAndGroups": "사용자 및 그룹 ",
- "viewPolicySummary": "정책 요약 보기 "
- },
- "SSM": {
- "MemberSelector": {
- "description": "사용자 및 그룹"
- },
- "Notification": {
- "Migration": {
- "error": "연속 액세스 평가 설정을 조건부 액세스 정책으로 마이그레이션하지 못함",
- "inProgress": "지속적인 액세스 권한 평가 설정을 마이그레이션하는 중",
- "success": "연속 액세스 평가 설정을 조건부 액세스 정책으로 마이그레이션함",
- "successDescription": "조건부 액세스 정책을 진행하여 \"CAE 설정에서 만든 CA 정책\"이라는 이름의 새로 만든 정책에서 마이그레이션된 설정을 확인하세요."
- },
- "error": "지속적인 액세스 권한 평가 설정을 업데이트하지 못했습니다.",
- "inProgress": "지속적인 액세스 권한 평가 설정을 업데이트하는 중",
- "success": "지속적인 액세스 권한 평가 설정을 업데이트했습니다."
- },
- "PreviewOptions": {
- "disable": "미리 보기 사용 안 함",
- "enable": "미리 보기 사용"
- },
- "StrictLocationEnforcement": {
- "infoContent1": "네트워크 파티션 또는 IPv4/IPv6 불일치로 인해 동일한 클라이언트 디바이스에서 Azure AD 및 리소스 공급자가 다른 IP를 확인할 수 있습니다. 엄격한 위치 적용은 Azure AD와 리소스 공급자에서 확인하는 두 IP 주소를 기준으로 조건부 액세스 정책을 적용합니다.",
- "infoContent2": "최대 보안을 보장하려면 Azure AD와 리소스 공급자에서 확인할 수 있는 모든 IP를 명명된 위치 정책에 포함하고 \"엄격한 위치 적용\" 모드를 켜는 것이 좋습니다.",
- "label": "엄격한 위치 적용",
- "title": "추가 적용 모드"
- },
- "bladeTitle": "지속적인 액세스 권한 평가",
- "description": "사용자의 액세스 권한이 제거되거나 클라이언트 IP 주소가 변경되면 지속적인 액세스 권한 평가가 거의 실시간으로 리소스 및 애플리케이션에 대한 액세스를 자동 차단합니다. ",
- "migrateLabel": "마이그레이션",
- "migrationError": "{0} 오류로 인해 마이그레이션하지 못했습니다.",
- "migrationInfo": "CAE 설정이 조건부 액세스 UX로 이동되었습니다. 위의 \"마이그레이션\" 단추로 마이그레이션하고 조건부 액세스 정책을 계속 진행하여 구성하세요. 자세한 내용을 보려면 여기를 클릭하세요.",
- "noLicenseMessage": "Azure AD Premium에서 스마트 세션 관리 설정 관리",
- "optionsPickerTitle": "지속적인 액세스 권한 평가 사용/사용 안 함",
- "upsellInfo": "이 페이지의 설정을 더 이상 변경할 수 없으며 여기에서 설정을 무시해야 합니다. 이전 설정이 적용됩니다. 앞으로 조건부 액세스에서 CAE 설정을 구성할 수 있습니다. 자세히 알아보려면 여기를 클릭하세요."
- },
- "SessionLifetime": {
- "PersistentBrowser": {
- "Error": {
- "notAllApps": "영구 브라우저 세션 정책은 [모든 클라우드 앱]을 선택했을 때만 올바르게 작동합니다. 클라우드 앱 선택 항목을 업데이트하세요."
- },
- "Option": {
- "always": "항상 영구적임",
- "help": "영구 브라우저 세션을 사용하면 사용자가 브라우저 창을 닫았다가 다시 열어도 로그인 상태가 유지됩니다.
\n\n- 이 설정은 \"모든 클라우드 앱\"을 선택했을 때 올바르게 작동합니다.
\n- 이는 토큰 수명 또는 로그인 빈도 설정에 영향을 주지 않습니다.
\n- 이는 회사 브랜딩에서 \"로그인 상태를 유지하는 옵션 표시\" 정책을 재정의합니다.
\n- \"영구적이지 않음\"은 페더레이션 인증 서비스에서 통과된 모든 영구 SSO 클레임을 재정의합니다.
\n- \"영구적이지 않음\"은 여러 애플리케이션에서 그리고 여러 애플리케이션 간에 모바일 디바이스 및 사용자의 모바일 브라우저에서의 SSO를 금지합니다.
\n",
- "label": "영구 브라우저 세션",
- "never": "영구적이지 않음"
- },
- "Warning": {
- "allApps": "영구 브라우저 세션은 [모든 클라우드 앱]을 선택했을 때만 올바르게 작동합니다. 클라우드 앱 선택 항목을 변경하세요. 자세한 내용을 보려면 여기를 클릭하세요."
- }
- },
- "SignInFrequency": {
- "Aria": {
- "units": "시간 또는 일",
- "value": "빈도"
- },
- "Option": {
- "Day": {
- "plural": "{0}일",
- "singular": "1일"
- },
- "Hour": {
- "plural": "{0}시간",
- "singular": "1시간"
- },
- "daysOption": "일",
- "everytime": "매번",
- "help": "사용자가 리소스에 액세스하려고 할 때 다시 로그인할지를 묻기까지 걸리는 기간입니다. 기본 설정은 90일(롤링 기간)입니다. 즉, 사용자가 머신에서 90일 이상 비활성 상태였다가 리소스에 액세스하려고 처음 시도할 때 사용자에게 다시 인증하라는 메시지가 표시됩니다.",
- "hoursOption": "시간",
- "label": "로그인 빈도",
- "placeholder": "단위 선택 "
- }
- },
- "mainOption": "세션 수명 수정",
- "mainOptionHelp": "사용자에게 메시지가 표시되는 빈도와 브라우저 세션이 지속될지 여부를 구성합니다. 최신 인증 프로토콜을 지원하지 않는 애플리케이션은 이러한 정책을 준수하지 않을 수 있습니다. 그러한 경우 애플리케이션 개발자에게 문의하세요."
- },
- "SigninRisk": {
- "LearnMore": {
- "message": "사용자 액세스를 제어하여 특정 로그인 위험 수준에 대응합니다."
- }
- },
- "SingleSelectorActive": {
- "failed": "이 데이터를 로드할 수 없습니다.",
- "reattempt": "데이터를 로드합니다. {1} 중 {0}을(를) 다시 시도합니다."
- },
- "TimeCondition": {
- "Errors": {
- "both": "\"포함\" 또는 \"제외\" 시간 범위가 잘못되었습니다.",
- "daysOfWeek": "{0} 요일을 하나 이상 지정해야 합니다.",
- "endBeforeStart": "{0} 시작 날짜/시간이 종료 날짜/시간보다 이전이어야 합니다.",
- "exclude": "\"제외\" 시간 범위가 잘못되었습니다.",
- "generic": "{0} 요일 및 표준 시간대를 설정해야 합니다. \"하루 종일\"을 선택하지 않은 경우 시작 시간 및 종료 시간도 설정해야 합니다.",
- "include": "\"포함\" 시간 범위가 잘못되었습니다.",
- "timeMissing": "{0} 시작 시간과 종료 시간을 모두 지정해야 합니다.",
- "timeZone": "{0} 표준 시간대를 지정해야 합니다.",
- "timesAndZone": "{0} 시작 시간, 종료 시간 및 표준 시간대를 지정해야 합니다."
- }
- },
- "UserActions": {
- "Included": {
- "none": "선택한 클라우드 앱 또는 작업 없음",
- "plural": "{0}개 사용자 작업 포함됨",
- "singular": "1개 사용자 작업 포함됨"
- },
- "accessRequirement1": "수준 1",
- "accessRequirement2": "수준 2",
- "accessRequirement3": "수준 3",
- "accessRequirementsLabel": "보안 앱 데이터 액세스",
- "appsActionsAuthTitle": "클라우드 앱, 작업 또는 인증 컨텍스트",
- "appsOrActionsSelectorInfoBallonText": "액세스한 애플리케이션 또는 사용자 작업",
- "appsOrActionsTitle": "클라우드 앱 또는 작업",
- "label": "사용자 작업",
- "mainOptionsLabel": "이 정책을 적용할 항목을 선택합니다.",
- "registerOrJoinDevices": "디바이스 등록 또는 가입",
- "registerSecurityInfo": "보안 정보 등록",
- "selectionInfo": "이 정책이 적용될 작업을 선택합니다."
- },
- "UserSelectionBlade": {
- "DirectoryRoles": {
- "ariaLabel": "디렉터리 역할 선택"
- },
- "Excluded": {
- "gridAria": "제외된 사용자 목록"
- },
- "Included": {
- "gridAria": "포함된 사용자 목록"
- },
- "Validation": {
- "customRoleIncluded": "\"디렉터리 역할\"에 사용자 지정 역할이 하나 이상 포함되어 있습니다.",
- "customRoleSelected": "사용자 지정 역할을 하나 이상 선택함",
- "failed": "\"{0}\"을(를) 구성해야 합니다.",
- "roles": "역할을 하나 이상 선택하세요.",
- "usersGroups": "사용자나 그룹을 하나 이상 선택하세요."
- },
- "learnMore": "사용자 및 그룹, 워크로드 ID, 디렉터리 역할 또는 외부 게스트와 같이 정책을 적용할 대상에 따라 액세스를 제어합니다."
- },
- "ValidationResult": {
- "blockEveryonePolicy": "정책 구성이 지원되지 않습니다. 할당 및 제어를 검토하세요.",
- "invalidApplicationCondition": "잘못된 클라우드 애플리케이션이 선택됨",
- "invalidClientTypesCondition": "잘못된 클라이언트 앱이 선택됨",
- "invalidConditions": "할당이 선택되지 않음",
- "invalidControls": "잘못된 컨트롤이 선택됨",
- "invalidDevicePlatformsCondition": "잘못된 디바이스 플랫폼이 선택됨",
- "invalidDevicesCondition": "잘못된 장치 구성입니다. 잘못된 \"{0}\" 구성일 수 있습니다.",
- "invalidGrantControlPolicy": "잘못된 권한 부여 컨트롤",
- "invalidLocationsCondition": "잘못된 위치가 선택됨",
- "invalidPolicy": "할당이 선택되지 않음",
- "invalidSessionControlPolicy": "잘못된 세션 컨트롤",
- "invalidSignInRisksCondition": "잘못된 로그인 위험이 선택됨",
- "invalidUserRisksCondition": "잘못된 사용자 위험이 선택됨",
- "invalidUsersCondition": "잘못된 사용자가 선택됨",
- "mamPolicyShouldOnlyTargetAndroidOrIosPlatforms": "MAM 정책은 Android 또는 iOS 클라이언트 플랫폼에만 적용할 수 있습니다.",
- "notSupportedCombination": "정책 구성이 지원되지 않습니다. 지원되는 정책에 대해 자세히 알아보세요.",
- "pending": "위반 정책",
- "requireComplianceEveryonePolicy": "정책 구성을 위해서는 모든 사용자의 디바이스 준수가 필요합니다. 선택된 할당을 검토하세요.",
- "success": "유효한 정책"
- },
- "VpnCert": {
- "Grid": {
- "aria": "VPN 인증서 목록"
- }
- },
- "WarningsInfo": {
- "Controls": {
- "compliantDeviceEnabled": "자신이 잠기지 않도록 하세요. 디바이스가 규격 디바이스인지 확인하세요.",
- "domainJoinedDeviceEnabled": "자신이 잠기지 않도록 하세요. 디바이스가 하이브리드 Azure AD 조인된 디바이스인지 확인하세요.",
- "exchangeDisabled": "Exchange ActiveSync는 \"준수 디바이스\"와 \"승인된 클라이언트 앱\" 컨트롤만 지원합니다. 자세히 알아보려면 클릭하세요.",
- "exchangeDisabled2": "Exchange ActiveSync는 \"호환 디바이스\", \"승인된 클라이언트 앱\", \"호환 클라이언트 앱\" 컨트롤만 지원합니다. 자세히 알아보려면 클릭하세요.",
- "notAvailableForSP": "정책 할당에서 '{0}' 선택으로 인해 일부 컨트롤을 사용할 수 없습니다.",
- "requireAuthOrMfa": "\"{0}\"은(는) \"{1}\"와(과) 함께 사용할 수 없습니다.",
- "requireMfa": "새 \"{0}\" 공개 미리 보기를 테스트하는 것이 좋습니다.",
- "requirePasswordChangeEnabled": "\"암호 변경 필요\"는 정책이 \"모든 클라우드 앱\"에 할당된 경우에만 사용할 수 있습니다."
- },
- "Policies": {
- "Linux": {
- "devicePlatformsReportOnlyPolicy": "규격 디바이스가 필요한 보고서 전용 모드의 정책은 macOS, iOS, Android, Linux의 사용자에게 디바이스 인증서를 선택하라는 메시지를 표시할 수 있습니다.",
- "excludeDevicePlatforms": "이 정책에서 디바이스 플랫폼 macOS, iOS, Android, Linux를 제외합니다.",
- "proceedAnywayDevicePlatforms": "선택한 구성을 계속 진행합니다. macOS, iOS, Android, Linux의 사용자에게는 디바이스의 규정 준수 여부가 확인되면 프롬프트가 표시될 수 있습니다."
- },
- "blockCurrentUserPolicy": "자신이 잠기지 않도록 하세요. 소규모 사용자 세트에 정책을 적용하여 이 정책이 예상대로 작동하는지 확인하는 것이 좋습니다. 또한 이 정책에서 한 명 이상의 관리자를 제외하는 것이 좋습니다. 이렇게 하면 계속 액세스하면서도 변경이 필요할 때 정책을 업데이트할 수 있습니다. 영향을 받는 사용자 및 앱을 확인하세요.",
- "devicePlatformsReportOnlyPolicy": "규격 디바이스가 필요한 보고서 전용 모드의 정책은 macOS, iOS 및 Android의 사용자에게 디바이스 인증서를 선택하라는 메시지를 표시할 수 있습니다.",
- "excludeCurrentUserSelection": "이 정책에서 현재 사용자 {0}을(를) 제외합니다.",
- "excludeDevicePlatforms": "이 정책에서 디바이스 플랫폼 macOS, iOS 및 Android를 제외합니다.",
- "proceedAnywayDevicePlatforms": "선택한 구성을 계속 진행합니다. macOS, iOS 및 Android의 사용자에게는 디바이스의 규정 준수 여부가 확인되면 프롬프트가 표시될 수 있습니다.",
- "proceedAnywaySelection": "내 계정이 이 정책의 영향을 받는다는 것을 이해합니다. 그래도 계속합니다."
- },
- "ServicePrincipals": {
- "blockExchange": "Office 365 Exchange Online을 선택하면 OneDrive 및 Teams과 같은 앱에도 영향을 줍니다.",
- "blockPortal": "자신이 잠기지 않도록 하세요. 이 정책은 Azure Portal에 영향을 줍니다. 계속하려면 먼저 사용자 또는 다른 사람이 포털로 돌아올 수 있는지 확인하세요.",
- "blockPortalWithSession": "계정이 잠기지 않도록 주의하세요. 이 정책은 Azure Portal에 영향을 줍니다. 계속하기 전에 본인 또는 다른 사용자가 포털로 돌아올 수 있는지 확인합니다.
\"모든 클라우드 앱\"을 선택한 경우에만 제대로 작동하는 영구 브라우저 세션 정책을 구성하려는 경우에는 이 경고를 무시하세요.",
- "blockSharePoint": "SharePoint Online을 선택하면 Microsoft Teams, Planner, Delve, MyAnalytics 및 Newsfeed와 같은 앱에도 영향을 미칩니다.",
- "blockSkype": "비즈니스용 Skype Online을 선택하면 Microsoft Teams에도 영향을 줍니다.",
- "includeOrExclude": "'{0}' 또는 '{1}'에 대한 앱 필터를 구성할 수 있지만 두 가지를 모두 다 구성할 수는 없습니다.",
- "selectAppsNAForSP": "정책 할당의 '{0}' 선택으로 인해 개별 클라우드 앱을 선택할 수 없습니다.",
- "teamsBlocked": "SharePoint Online 및 Exchange Online과 같은 앱이 정책에 포함된 경우에 Microsoft Teams도 영향을 받습니다."
- },
- "Users": {
- "blockAllUsers": "계정이 잠기지 않도록 주의하세요. 이 정책은 모든 사용자에게 영향을 미칩니다. 먼저 적은 수의 사용자에게 정책을 적용하여 정책이 예상대로 작동하는지 확인하는 것이 좋습니다."
- }
- },
- "WhatIf": {
- "Device": {
- "AttributesGrid": {
- "aria": "로그인하는 동안 사용하는 디바이스의 특성 목록입니다.",
- "infoBalloon": "로그인하는 동안 사용하는 디바이스의 특성 목록입니다."
- }
- }
- },
- "advancedTabText": "고급",
- "allCloudAppsErrorBox": "\"암호 변경 필요\" 권한을 선택하면 \"모든 클라우드 앱\"을 선택해야 합니다.",
- "allDayCheckboxLabel": "하루 종일",
- "allDevicePlatforms": "모든 디바이스",
- "allGuestUserInfoContent": "Azure AD B2B 게스트를 포함하지만 SharePoint B2B 게스트는 포함하지 않음",
- "allGuestUserLabel": "모든 게스트 및 외부 사용자",
- "allRiskLevelsOption": "모든 위험 수준",
- "allTrustedLocationLabel": "모든 신뢰된 위치",
- "allUserGroupSetSelectorLabel": "모든 사용자 및 그룹 선택됨",
- "allUsersString": "모든 사용자",
- "and": "{0} 및 {1}",
- "andWithGrouping": "({0}) 및 {1}",
- "androidDisplayName": "Android",
- "anyCloudAppSelection": "모든 클라우드 앱",
- "appContextOptionInfoContent": "요청한 인증 태그",
- "appContextOptionLabel": "요청한 인증 태그(미리 보기)",
- "appContextUriPlaceholder": "예: uri:contoso.com:level3",
- "appEnforceInfoBubble": "앱에서 적용하는 제한에는 클라우드 앱 내에서 추가 관리자 구성이 필요할 수 있습니다. 제한은 새 세션에 대해서만 효과가 적용됩니다.",
- "appNotSetSeletorLabel": "0개의 클라우드 앱이 선택됨",
- "applyConditionClientAppInfoBalloonContent": "클라이언트 앱을 구성하여 특정 클라이언트 앱에 정책 적용",
- "applyConditionDevicePlatformInfoBalloonContent": "디바이스 플랫폼을 구성하여 특정 플랫폼에 정책 적용",
- "applyConditionDeviceStateInfoBalloonContent": "특정 디바이스 상태에 정책을 적용하도록 디바이스 상태를 구성",
- "applyConditionLocationInfoBalloonContent": "위치를 구성하여 신뢰할 수 있는/신뢰할 수 없는 위치에 정책 적용",
- "applyConditionSigninRiskInfoBalloonContent": "로그인 위험을 구성하여 선택된 위험 수준에 정책 적용",
- "applyConditionUserRiskInfoBalloonContent": "선택한 위험 수준에 정책을 적용하도록 사용자 위험 구성",
- "applyConditonLabel": "구성",
- "ariaLabelPolicyDisabled": "정책이 사용하지 않도록 설정되었습니다.",
- "ariaLabelPolicyEnabled": "정책을 사용함",
- "ariaLabelPolicyReportOnly": "정책이 보고서 전용 모드임",
- "blockAccess": "액세스 차단",
- "builtInDirectoryRoleLabel": "기본 제공 디렉터리 역할",
- "casCustomControlInfo": "Cloud App Security 포털에서 사용자 지정 정책을 구성해야 합니다. 이 컨트롤은 피처링된 앱에서 즉시 작동하며 모든 앱에서 자체 온보딩이 가능합니다. 두 가지 시나리오에 대해 자세히 알아보려면 여기를 클릭하세요.",
- "casInfoBubble": "이 제어는 다양한 클라우드 앱에서 작동합니다.",
- "casPreconfiguredControlInfo": "이 컨트롤은 추천 앱에서 즉시 작동하며 모든 앱에서 자체 온보딩이 가능합니다. 두 가지 시나리오에 대해 자세히 알아보려면 여기를 클릭하세요.",
- "cert64DownloadCol": "base64 인증서 다운로드",
- "cert64Name": "VpnBase64Cert",
- "certDownloadCol": "인증서 다운로드",
- "certDurationCol": "만료",
- "certDurationStartCol": "유효 기간",
- "certName": "VpnCert",
- "chooseApplicationsBladeSubtitle": "",
- "chooseApplicationsBladeTitle": "애플리케이션 선택",
- "chooseApplicationsCartSubitle": "",
- "chooseApplicationsCartTitle": "애플리케이션을 선택함",
- "chooseApplicationsEmpty": "애플리케이션 없음",
- "chooseApplicationsNone": "없음",
- "chooseApplicationsNoneFound": "\"{0}\"을(를) 찾을 수 없습니다. 다른 이름 또는 ID를 사용해 보세요.",
- "chooseApplicationsPlural": "{0} 및 {1}개 더",
- "chooseApplicationsReAuthEverytimeInfo": "앱을 찾고 계신가요? 일부 응용 프로그램은 \"재인증 필요 – 매번\" 세션 컨트롤과 함께 사용할 수 없음",
- "chooseApplicationsRemove": "제거",
- "chooseApplicationsReturnedPlural": "{0}개 애플리케이션을 찾음",
- "chooseApplicationsReturnedSingular": "1개 애플리케이션을 찾음",
- "chooseApplicationsSearchBalloon": "애플리케이션의 이름 또는 ID를 입력해서 검색합니다.",
- "chooseApplicationsSearchHint": "애플리케이션 검색...",
- "chooseApplicationsSearchLabel": "애플리케이션",
- "chooseApplicationsSearching": "검색 중...",
- "chooseApplicationsSelect": "선택",
- "chooseApplicationsSelected": "선택됨",
- "chooseApplicationsSingular": "{0} 및 1개 더",
- "chooseApplicationsTooMany": "보다 많은 결과가 표시될 수 있습니다. 검색 상자를 사용해서 필터링하세요.",
- "chooseLocationCorpnetItem": "기업 네트워크",
- "chooseLocationSelectedLocationsLabel": "선택한 위치",
- "chooseLocationTrustedIpsItem": "MFA에서 신뢰할 수 있는 IP",
- "chooseLocationsBladeSubtitle": "",
- "chooseLocationsBladeTitle": "위치 선택",
- "chooseLocationsCartSubitle": "",
- "chooseLocationsCartTitle": "선택한 위치",
- "chooseLocationsEmpty": "위치 없음",
- "chooseLocationsExcludedSelectorTitle": "선택",
- "chooseLocationsIncludedSelectorTitle": "선택",
- "chooseLocationsNone": "없음",
- "chooseLocationsNoneFound": "\"{0}\"을(를) 찾을 수 없습니다. 다른 이름 또는 ID를 사용해 보세요.",
- "chooseLocationsPlural": "{0} 및 {1}개 더",
- "chooseLocationsRemove": "제거",
- "chooseLocationsReturnedPlural": "위치 {0}개 찾음",
- "chooseLocationsReturnedSingular": "위치 1개 찾음",
- "chooseLocationsSearchBalloon": "위치의 이름을 입력하여 검색합니다.",
- "chooseLocationsSearchHint": "위치를 검색합니다...",
- "chooseLocationsSearchLabel": "위치",
- "chooseLocationsSearching": "검색 중...",
- "chooseLocationsSelect": "선택",
- "chooseLocationsSelected": "선택됨",
- "chooseLocationsSelectionBladeExcludedSelectorTitle": "선택",
- "chooseLocationsSelectionBladeIncludedSelectorTitle": "선택",
- "chooseLocationsSingular": "{0} 및 1개 더",
- "chooseLocationsTooMany": "보다 많은 결과가 표시될 수 있습니다. 검색 상자를 사용해서 필터링하세요.",
- "claimProviderAddCommandText": "새 사용자 지정 컨트롤",
- "claimProviderAddNewBladeTitle": "새 사용자 지정 컨트롤",
- "claimProviderDeleteCommand": "삭제",
- "claimProviderDeleteDescription": "\"{0}\"을(를) 삭제하시겠습니까? 이 작업은 실행 취소할 수 없습니다.",
- "claimProviderDeleteTitle": "계속할까요?",
- "claimProviderEditInfoText": "클레임 공급자가 제공한 사용자 지정 컨트롤의 JSON을 입력하십시오.",
- "claimProviderNotificationCreateDescription": "사용자 지정 컨트롤 '{0}'을(를) 만드는 중입니다.",
- "claimProviderNotificationCreateFailedDescription": "사용자 지정 컨트롤 '{0}'을(를) 만들지 못했습니다. 나중에 다시 시도하십시오.",
- "claimProviderNotificationCreateFailedTitle": "사용자 지정 컨트롤을 만들지 못했습니다.",
- "claimProviderNotificationCreateSuccessDescription": "사용자 지정 컨트롤 '{0}'을(를) 만들었습니다.",
- "claimProviderNotificationCreateSuccessTitle": "{0} 만듦",
- "claimProviderNotificationCreateTitle": "{0}을(를) 만드는 중",
- "claimProviderNotificationDeleteDescription": "사용자 지정 컨트롤 '{0}'을(를) 삭제하는 중입니다.",
- "claimProviderNotificationDeleteFailedDescription": "사용자 지정 컨트롤 '{0}'을(를) 삭제하지 못했습니다. 나중에 다시 시도하십시오.",
- "claimProviderNotificationDeleteFailedTitle": "사용자 지정 컨트롤을 삭제하지 못했습니다.",
- "claimProviderNotificationDeleteSuccessDescription": "사용자 지정 컨트롤 '{0}'을(를) 삭제했습니다.",
- "claimProviderNotificationDeleteSuccessTitle": "'{0}'을(를) 삭제함",
- "claimProviderNotificationDeleteTitle": "'{0}'을(를) 삭제하는 중",
- "claimProviderNotificationUpdateDescription": "사용자 지정 컨트롤 '{0}'을(를) 업데이트하는 중입니다.",
- "claimProviderNotificationUpdateFailedDescription": "사용자 지정 컨트롤 '{0}'을(를) 업데이트하지 못했습니다. 나중에 다시 시도하십시오.",
- "claimProviderNotificationUpdateFailedTitle": "사용자 지정 컨트롤을 업데이트하지 못했습니다.",
- "claimProviderNotificationUpdateSuccessDescription": "사용자 지정 컨트롤 '{0}'을(를) 업데이트했습니다.",
- "claimProviderNotificationUpdateSuccessTitle": "\"{0}\"을(를) 업데이트함",
- "claimProviderNotificationUpdateTitle": "{0} 업데이트 중",
- "claimProviderValidationAppIdInvalid": "\"AppId\" 값이 잘못되었습니다. 검토하고 다시 시도하십시오.",
- "claimProviderValidationClientIdMissing": "데이터에서 \"ClientId\" 값이 누락되었습니다. 검토하고 다시 시도하십시오.",
- "claimProviderValidationControlClaimsRequestedMissing": "\"Control\"에서 \"ClaimsRequested\" 값이 누락되었습니다. 검토하고 다시 시도하십시오.",
- "claimProviderValidationControlClaimsRequestedTypeMissing": "\"ClaimsRequested\" 항목에서 \"Type\" 값이 누락되었습니다. 검토하고 다시 시도하십시오.",
- "claimProviderValidationControlIdAlreadyExists": "\"Control\" \"Id\" 값이 이미 있습니다. 검토하고 다시 시도하십시오.",
- "claimProviderValidationControlIdMissing": "\"Control\"에서 \"Id\" 값이 누락되었습니다. 검토하고 다시 시도하십시오.",
- "claimProviderValidationControlIdReferencedInExistingPolicy": "\"Control\" \"Id\" 값이 기존 정책에서 참조되기 때문에 해당 값을 제거할 수 없습니다. 먼저 해당 값을 정책에서 제거하십시오.",
- "claimProviderValidationControlIdTooManyControls": "\"Control\" 속성에 컨트롤이 너무 많습니다. 검토 후 다시 시도하세요.",
- "claimProviderValidationControlIdValueReserved": "\"Control\" \"Id\" 값이 예약된 키워드입니다. 다른 ID를 사용하십시오.",
- "claimProviderValidationControlNameAlreadyExists": "\"Control\" \"Name\" 값이 이미 있습니다. 검토하고 다시 시도하십시오.",
- "claimProviderValidationControlNameMissing": "\"Control\"에서 \"Name\" 값이 누락되었습니다. 검토하고 다시 시도하십시오.",
- "claimProviderValidationControlsMissing": "데이터에서 \"Controls\" 값이 누락되었습니다. 검토하고 다시 시도하십시오.",
- "claimProviderValidationDiscoveryUrlMissing": "데이터에서 \"DiscoveryUrl\" 값이 누락되었습니다. 검토하고 다시 시도하십시오.",
- "claimProviderValidationInvalid": "제공된 데이터가 잘못되었습니다. 검토하고 다시 시도하십시오.",
- "claimProviderValidationInvalidJsonDefinition": "사용자 지정 컨트롤을 저장할 수 없습니다. JSON 텍스트를 검토하고 다시 시도하십시오.",
- "claimProviderValidationNameAlreadyExists": "\"Name\" 값이 이미 있습니다. 검토하고 다시 시도하십시오.",
- "claimProviderValidationNameMissing": "데이터에서 \"Name\" 값이 누락되었습니다. 검토하고 다시 시도하십시오.",
- "claimProviderValidationUnknown": "제공된 데이터의 유효성을 검사하는 중 알 수 없는 오류가 발생했습니다. 검토하고 다시 시도하십시오.",
- "claimProvidersNone": "사용자 지정 컨트롤 없음",
- "claimProvidersSearchPlaceholder": "검색 컨트롤입니다.",
- "classicPoilcyFilterTitle": "표시",
- "classicPolicyAllPlatforms": "모든 플랫폼",
- "classicPolicyClientAppBrowserAndNative": "브라우저, 모바일 앱 및 데스크톱 클라이언트",
- "classicPolicyCloudAppTitle": "클라우드 애플리케이션",
- "classicPolicyControlAllow": "허용",
- "classicPolicyControlBlock": "차단",
- "classicPolicyControlBlockWhenNotAtWork": "작업 중이 아닐 때 액세스 차단",
- "classicPolicyControlRequireCompliantDevice": "준수 디바이스 필요",
- "classicPolicyControlRequireDomainJoinedDevice": "도메인 가입 디바이스 필요",
- "classicPolicyControlRequireMfa": "다단계 인증이 필요함",
- "classicPolicyControlRequireMfaWhenNotAtWork": "회사가 아닐 경우 다단계 인증 기능 필요",
- "classicPolicyDeleteCommand": "삭제",
- "classicPolicyDeleteFailTitle": "클래식 정책을 삭제하지 못함",
- "classicPolicyDeleteInProgressTitle": "클래식 정책을 삭제하는 중",
- "classicPolicyDeleteSuccessTitle": "클래식 정책이 삭제됨",
- "classicPolicyDetailBladeTitle": "세부 정보",
- "classicPolicyDisableCommand": "사용 안 함",
- "classicPolicyDisableConfirmation": "'{0}'을(를) 사용하지 않도록 설정하시겠습니까? 이 작업은 실행 취소할 수 없습니다.",
- "classicPolicyDisableFailDescription": "'{0}'을(를) 사용하지 않도록 설정하지 못함",
- "classicPolicyDisableFailTitle": "클래식 정책을 사용하지 않도록 설정하지 못함",
- "classicPolicyDisableInProgressDescription": "'{0}'을(를) 사용하지 않도록 설정하는 중",
- "classicPolicyDisableInProgressTitle": "클래식 정책을 사용하지 않도록 설정하는 중",
- "classicPolicyDisableSuccessDescription": "'{0}'을(를) 사용하지 않도록 설정함",
- "classicPolicyDisableSuccessTitle": "클래식 정책 사용 안 함",
- "classicPolicyEasSupportedPlatforms": "Exchange ActiveSync 지원 플랫폼",
- "classicPolicyEasUnsupportedPlatforms": "Exchange ActiveSync 비지원 플랫폼",
- "classicPolicyExcludedPlatformsTitle": "제외된 디바이스 플랫폼",
- "classicPolicyFilterAll": "모든 정책",
- "classicPolicyFilterDisabled": "사용하지 않도록 설정된 정책",
- "classicPolicyFilterEnabled": "사용하도록 설정된 정책",
- "classicPolicyIncludeExcludeMembersDescription": "그룹을 제외하여 정책의 단계적 마이그레이션을 수행할 수 있습니다.",
- "classicPolicyIncludeExcludeMembersTitle": "그룹 포함/제외",
- "classicPolicyIncludedPlatformsTitle": "포함된 디바이스 플랫폼",
- "classicPolicyManualMigrationMessage": "이 정책은 수동으로 마이그레이션해야 합니다.",
- "classicPolicyMigrateCommand": "마이그레이션",
- "classicPolicyMigrateConfirmation": "'{0}'을(를) 마이그레이션하시겠습니까? 이 정책은 한 번만 마이그레이션할 수 있습니다.",
- "classicPolicyMigrateFailDescription": "'{0}'을(를) 마이그레이션하지 못함",
- "classicPolicyMigrateFailTitle": "클래식 정책을 마이그레이션하지 못함",
- "classicPolicyMigrateInProgressDescription": "'{0}'을(를) 마이그레이션하는 중",
- "classicPolicyMigrateInProgressTitle": "클래식 정책을 마이그레이션하는 중",
- "classicPolicyMigrateRecommendText": "권장 사항: 새 Azure Portal 정책을 마이그레이션하십시오.",
- "classicPolicyMigrateSuccessTitle": "클래식 정책을 마이그레이션함",
- "classicPolicyMigratedSuccessDescription": "이 클래식 정책은 이제 [정책]에서 관리할 수 있습니다.",
- "classicPolicyMigratedSuccessDescriptionMultiple": "클래식 정책이 {0}개의 새 정책으로 마이그레이션되었습니다. 새 정책은 [정책]에서 관리할 수 있습니다.",
- "classicPolicyNoEditPermissionMsg": "이 정책을 편집할 수 있는 권한이 없습니다. 전역 관리자 및 보안 관리자만 정책을 편집할 수 있습니다. 자세한 내용을 알아보려면 여기를 클릭하세요.",
- "classicPolicySaveFailDescription": "'{0}'을(를) 저장하지 못함",
- "classicPolicySaveFailTitle": "클래식 정책을 저장하지 못함",
- "classicPolicySaveInProgressDescription": "'{0}'을(를) 저장하는 중",
- "classicPolicySaveInProgressTitle": "클래식 정책을 저장하는 중",
- "classicPolicySaveSuccessDescription": "'{0}'을(를) 저장함",
- "classicPolicySaveSuccessTitle": "클래식 정책이 저장됨",
- "clientAppBladeLegacyInfoBanner": "레거시 인증이 현재 지원되지 않음",
- "clientAppBladeLegacyUpsellBanner": "지원되지 않는 클라이언트 앱 차단(미리 보기)",
- "clientAppBladeTitle": "클라이언트 앱",
- "clientAppDescription": "이 정책이 적용될 클라이언트 앱 선택",
- "clientAppExchangeActiveSync": "Exchange ActiveSync",
- "clientAppExchangeDisabledInfo": "Exchange Online만 클라우드 앱으로 선택된 경우 Exchange ActiveSync를 사용할 수 있습니다. 자세히 알아보려면 클릭",
- "clientAppExchangeWarning": "Exchange ActiveSync는 현재 다른 모든 조건을 지원하지 않습니다.",
- "clientAppLearnMore": "사용자 액세스를 제어하여 최신 인증을 사용하지 않는 특정 클라이언트 애플리케이션을 대상으로 지정합니다.",
- "clientAppLegacyHeader": "레거시 인증 클라이언트",
- "clientAppMobileDesktop": "모바일 앱 및 데스크톱 클라이언트",
- "clientAppModernHeader": "최신 인증 클라이언트",
- "clientAppOnlySupportedPlatforms": "지원되는 플랫폼에만 정책 적용",
- "clientAppSelectSpecificClientApps": "클라이언트 앱 선택",
- "clientAppV2BladeTitle": "클라이언트 앱(미리 보기)",
- "clientAppWebBrowser": "브라우저",
- "clientAppsSelectedLabel": "{0}개 포함됨",
- "clientTypeBrowser": "브라우저",
- "clientTypeEas": "Exchange ActiveSync 클라이언트",
- "clientTypeEasInfo": "레거시 인증만 사용하는 Exchange ActiveSync 클라이언트입니다.",
- "clientTypeModernAuth": "최신 인증 클라이언트",
- "clientTypeOtherClients": "기타 클라이언트",
- "clientTypeOtherClientsInfo": "여기에는 이전 버전의 Office 클라이언트와 기타 메일 프로토콜(POP, IMAP, SMTP 등)이 포함됩니다. [자세한 정보][1]\n[1]: https://aka.ms/caclientapps\n",
- "cloudAppCountDiffBannerText": "이 정책에 구성된 클라우드 앱 {0}개가 디렉터리에서 삭제되었지만 정책에서 다른 앱에 영향을 주지 않습니다. 다음에 정책의 애플리케이션 섹션을 업데이트하면 삭제된 앱이 자동으로 제거됩니다.",
- "cloudAppsSelectionBladeAllMicrosoftApps": "모든 Microsoft 앱",
- "cloudAppsSelectionExcludeAllMicrosoftClients": "Microsoft 클라우드, 데스크톱 및 모바일 앱 허용(미리 보기)",
- "cloudappsSelectionBladeAllCloudapps": "모든 클라우드 앱",
- "cloudappsSelectionBladeExcludeDescription": "정책에서 제외할 클라우드 앱 선택",
- "cloudappsSelectionBladeExcludedSelectorTitle": "제외된 클라우드 앱 선택",
- "cloudappsSelectionBladeIncludeDescription": "이 정책을 적용할 클라우드 앱 선택",
- "cloudappsSelectionBladeIncludedSelectorTitle": "선택",
- "cloudappsSelectionBladeSelectedCloudapps": "앱 선택",
- "cloudappsSelectorInfoBallonText": "사용자가 작업을 수행하기 위해 액세스하는 서비스입니다(예: 'Salesforce').",
- "cloudappsSelectorUserPlural": "앱 {0}개",
- "cloudappsSelectorUserSingular": "앱 1개",
- "conditionLabelMulti": "조건 {0}개 선택됨",
- "conditionLabelOne": "조건 1개 선택됨",
- "conditionalAccessBladeTitle": "조건부 액세스",
- "conditionsNotSelectedLabel": "구성하지 못함",
- "conditionsReqPwSet": "현재 선택된 \"암호 변경 필요\" 권한으로 인해 일부 옵션을 사용할 수 없습니다.",
- "configureCasText": "Cloud App Security 구성",
- "configureCustomControlsText": "사용자 지정 정책 구성",
- "controlLabelMulti": "컨트롤 {0}개 선택됨",
- "controlLabelOne": "컨트롤 1개 선택됨",
- "controlValidatorText": "컨트롤을 하나 이상 선택하세요.",
- "controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
- "controlsDeviceComplianceInfoBubble": "디바이스가 Intune을 준수해야 합니다. 디바이스가 Intune을 준수하지 않는 경우 사용자에게 디바이스의 준수를 요구하는 메시지가 표시됩니다.",
- "controlsDomainJoinedInfoBubble": "디바이스는 하이브리드 Azure AD 조인되어야 합니다.",
- "controlsMamInfoBubble": "디바이스가 이러한 승인된 클라이언트 애플리케이션을 사용해야 합니다.",
- "controlsMfaInfoBubble": "사용자는 전화 통화, 텍스트 등의 추가 보안 요구 사항을 완료해야 합니다.",
- "controlsOrAndInfoBubble": "ControlsOrAndInfoBubble",
- "controlsRequireCompliantAppInfoBubble": "디바이스가 정책으로 보호된 앱을 사용해야 합니다.",
- "controlsRequirePasswordResetInfoBubble": "사용자 위험을 낮추기 위해 암호를 변경해야 합니다. 이 옵션을 사용하려면 다단계 인증도 필요합니다. 다른 제어는 사용할 수 없습니다.",
- "countriesRadiobuttonInfoBalloonContent": "사용자의 IP 주소에 따라 로그인하는 국가/지역입니다.",
- "createNewVpnCert": "새 인증서",
- "createdTimeLabel": "만든 시간",
- "customRoleLabel": "사용자 지정 역할(지원되지 않음)",
- "dateRangeTypeLabel": "날짜 범위",
- "daysOfWeekPlaceholderText": "요일 필터링",
- "daysOfWeekTypeLabel": "요일",
- "deletePolicyNoLicenseText": "이제 이 정책을 삭제할 수 있습니다. 삭제하는 경우 필요한 라이선스를 얻기 전까지 다시 만들 수 없습니다.",
- "descriptionContentForControlsAndOr": "여러 컨트롤의 경우",
- "devicePlatform": "디바이스 플랫폼",
- "devicePlatformConditionHelpDescription": "선택한 디바이스 플랫폼에 정책을 적용합니다.\n[자세한 정보][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2044750",
- "devicePlatformInclude": "{0}개 포함됨",
- "devicePlatformIncludeExclude": "{0}, {1}개 제외됨",
- "devicePlatformNoSelectionError": "디바이스 플랫폼을 선택하려면 하위 항목을 하나 선택해야 합니다.",
- "devicePlatformsNone": "없음",
- "deviceSelectionBladeExcludeDescription": "정책에서 제외할 플랫폼 선택",
- "deviceSelectionBladeIncludeDescription": "이 정책에 포함할 디바이스 플랫폼 선택",
- "deviceStateAll": "모든 디바이스 상태",
- "deviceStateCompliant": "디바이스가 준수 상태로 표시됨",
- "deviceStateCompliantInfoContent": "Intune을 준수하는 디바이스는 이 정책의 평가에서 제외됩니다. 즉, 예를 들어 정책이 액세스를 차단하는 경우 Intune을 준수하는 디바이스 외의 모든 디바이스가 차단됩니다.",
- "deviceStateConditionConfigureInfoContent": "디바이스 상태에 따라 정책 구성",
- "deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Hybrid Azure AD joined' or 'marked as compliant'.\n '{0}' has been deprecated. Use '{1}' instead.",
- "deviceStateConditionSelectorLabel": "디바이스 상태(미리 보기)",
- "deviceStateDomainJoined": "하이브리드 Azure AD 조인된 디바이스",
- "deviceStateDomainJoinedInfoContent": "하이브리드 Azure AD 조인된 디바이스는 이 정책의 평가에서 제외됩니다. 즉, 예를 들어 정책이 액세스를 차단하는 경우 하이브리드 Azure AD 조인된 디바이스 외의 모든 디바이스가 차단됩니다.",
- "deviceStateDomainJoinedInfoLinkText": "자세히 알아보세요.",
- "deviceStateExcludeDescription": "정책에서 디바이스를 제외하는 데 사용된 디바이스 상태 조건을 선택합니다.",
- "deviceStateIncludeAndExcludeOneLabel": "{0} 포함 및 {1} 제외",
- "deviceStateIncludeAndExcludeTwoLabel": "{0} 포함 및 {1}, {2} 제외",
- "directoryRoleInfoContent": "기본 제공 디렉터리 역할에 정책을 할당합니다.",
- "directoryRolesLabel": "디렉터리 역할",
- "discardbutton": "취소",
- "downloadDefaultFileName": "IP 범위",
- "downloadExampleFileName": "예",
- "downloadExampleHeader": "수락될 수 있는 데이터의 종류를 보여주는 예제 파일입니다. #로 시작하는 줄은 무시됩니다.",
- "endDatePickerLabel": "끝",
- "endTimePickerLabel": "종료 시간",
- "enterCountryText": "IP 주소 및 국가는 쌍으로 평가됩니다. 국가를 입력하세요.",
- "enterIpText": "IP 주소 및 국가는 쌍으로 평가됩니다. IP 주소를 입력하세요.",
- "enterUserText": "사용자를 선택하지 않았습니다. 사용자를 선택하세요.",
- "evaluationResult": "평가 결과",
- "exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
- "exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "지원되는 플랫폼이 있는 Exchange ActiveSync만",
- "excludeAllTrustedLocationSelectorText": "모든 신뢰할 수 있는 위치 제외",
- "featureRequiresP2": "이 기능을 사용하려면 Azure AD Premium 2개의 라이선스가 필요합니다.",
- "friday": "금요일",
- "grantControls": "컨트롤 권한 부여",
- "gridNetworkTrusted": "인증 신뢰",
- "gridPolicyCreatedDateTime": "만든 날짜",
- "gridPolicyEnabled": "사용",
- "gridPolicyModifiedDateTime": "수정한 날짜",
- "gridPolicyName": "정책 이름",
- "gridPolicyState": "상태",
- "groupSelectionBladeExcludeDescription": "정책에서 제외할 그룹 선택",
- "groupSelectionBladeExcludedSelectorTitle": "제외된 그룹 선택",
- "groupSelectionBladeSelect": "그룹 선택",
- "groupSelectorInfoBallonText": "정책이 적용되는 디렉터리의 그룹입니다. 예: '파일럿 그룹'",
- "groupsSelectionBladeTitle": "그룹",
- "helpCommonScenariosText": "일반 시나리오에 관심이 있으신가요?",
- "helpCondition1": "사용자가 한 명이라도 회사 네트워크 외부에 있는 경우",
- "helpCondition2": "‘Managers’ 그룹의 사용자가 로그인하는 경우",
- "helpConditionsTitle": "조건",
- "helpControl1": "다단계 인증을 사용해서 로그인해야 합니다.",
- "helpControl2": "Intune 준수 디바이스 또는 도메인에 가입된 디바이스를 사용해야 합니다.",
- "helpControlsTitle": "컨트롤",
- "helpIntroText": "조건부 액세스를 사용하면 특정 조건이 발생하는 경우 액세스 요구 사항을 적용할 수 있습니다. 몇 가지 예제를 살펴보겠습니다.",
- "helpIntroTitle": "조건부 액세스란 무엇인가요?",
- "helpLearnMoreText": "조건부 액세스에 대해 자세히 알고 싶으신가요?",
- "helpStartStep1": "[+ 새 정책]을 클릭하여 첫 번째 정책 만들기",
- "helpStartStep2": "정책 조건 및 제어를 지정합니다.",
- "helpStartStep3": "완료한 후에는 정책을 사용하도록 설정하고 만듭니다.",
- "helpStartTitle": "시작",
- "highRisk": "높음",
- "includeAndExcludeAppsTextFormat": "포함: {0}. 제외: {1}.",
- "includeAppsTextFormat": "포함: {0}.",
- "includeUnknownAreasCheckboxInfoBalloonContent": "알 수 없는 영역은 국가/지역으로 매핑할 수 없는 IP 주소입니다.",
- "includeUnknownAreasCheckboxLabel": "알 수 없는 영역 포함",
- "infoCommandLabel": "정보",
- "invalidCertDuration": "잘못된 인증서 기간",
- "invalidIpAddress": "값이 올바른 IP 주소여야 합니다.",
- "invalidUriErrorMsg": "유효한 URI를 입력하세요(예: 'uri:contoso.com:acr'). ",
- "iosDisplayName": "iOS",
- "linuxDisplayName": "Linux",
- "linuxDisplayNamePreview": "Linux(미리 보기)",
- "loadAll": "전체 로드",
- "loading": "로딩 중...",
- "locationConfigureNamedLocationsText": "신뢰된 모든 위치를 구성",
- "locationConfigureNamedLocationsUri": "{0}/usermanagement/mfasettings.aspx?tenantid={1}&culture={2}",
- "locationNameTooLongError": "위치 이름이 너무 깁니다. 최대 길이는 256자입니다.",
- "locationSelectionBladeExcludeDescription": "정책에서 제외할 위치 선택",
- "locationSelectionBladeIncludeDescription": "이 정책에 포함할 위치 선택",
- "locationsAllLocationsLabel": "임의의 위치",
- "locationsAllNamedLocationsLabel": "신뢰할 수 있는 모든 IP",
- "locationsAllPrivateLinksLabel": "내 테넌트의 모든 사설 링크",
- "locationsIncludeExcludeLabel": "{0}, 모든 신뢰할 수 있는 IP 제외",
- "locationsSelectedPrivateLinksLabel": "선택한 사설 링크",
- "lowRisk": "낮음",
- "macOsDisplayName": "macOS",
- "managePoliciesLicenseText": "조건부 액세스 정책을 관리하려면 조직에 Azure AD Premium P1 또는 P2가 있어야 합니다.",
- "markAsTrustedCheckboxInfoBalloonContent": "신뢰할 수 있는 위치에서 로그인하면 사용자의 로그인 위험이 낮아집니다. 입력한 IP 범위가 조직에 설정되어 신뢰할 수 있는 경우 이 위치만 신뢰할 수 있음으로 표시하세요.",
- "markAsTrustedCheckboxLabel": "신뢰할 수 있는 위치로 표시",
- "mediumRisk": "보통",
- "memberSelectionCommandRemove": "제거",
- "menuItemClaimProviderControls": "사용자 지정 제어(미리 보기)",
- "menuItemClassicPolicies": "클래식 정책",
- "menuItemInsightsAndReporting": "인사이트 및 보고",
- "menuItemManage": "관리",
- "menuItemNamedLocationsPreview": "명명된 위치(미리 보기)",
- "menuItemNamedNetworks": "명명된 위치",
- "menuItemPolicies": "정책",
- "menuItemTermsOfUse": "사용 약관",
- "modifiedTimeLabel": "수정한 시간",
- "monday": "월요일",
- "nameLabel": "이름",
- "namedLocationCountryInfoBanner": "IPv4 주소만 국가/지역에 매핑됩니다. IPv6 주소는 알 수 없는 국가/지역에 포함되어 있습니다.",
- "namedLocationTypeCountry": "국가/지역",
- "namedLocationTypeLabel": "사용 위치 정의:",
- "namedLocationUpsellBanner": "이 보기는 더 이상 사용되지 않습니다. 새롭게 개선된 '명명된 위치' 보기로 이동합니다.",
- "namedLocationsHelpDescription": "명명된 위치는 가양성 및 Azure AD 조건부 액세스 정책을 줄이기 위해 Azure AD 보안 보고서에서 사용됩니다.\n[자세한 정보][1]\n[1]: https://aka.ms/namedlocationupdate",
- "namedNetworkAddIpRanges": "새 IP 범위(예: 40.77.182.32/27) 추가",
- "namedNetworkCountryNeeded": "국가를 하나 이상 선택해야 함",
- "namedNetworkDeleteCommand": "삭제",
- "namedNetworkDeleteDescription": "\"{0}\"을(를) 삭제하시겠습니까? 이 작업은 실행 취소할 수 없습니다.",
- "namedNetworkDeleteTitle": "계속할까요?",
- "namedNetworkDownloadIpRange": "다운로드",
- "namedNetworkInvalidRange": "값은 올바른 IP 범위여야 합니다.",
- "namedNetworkIpRangeNeeded": "하나 이상의 유효한 IP 범위가 필요합니다.",
- "namedNetworkIpRangesDescriptionContent": "조직의 IP 범위 구성",
- "namedNetworkIpRangesTab": "IP 범위",
- "namedNetworkListAdd": "새 위치",
- "namedNetworkListConfigureTrustedIps": "MFA에서 신뢰할 수 있는 IP 구성",
- "namedNetworkNameDescription": "예: 'Redmond 사무실'",
- "namedNetworkNameInvalid": "제공된 이름이 잘못되었습니다.",
- "namedNetworkNameRequired": "이 위치에 대한 이름을 제공해야 합니다.",
- "namedNetworkNoIpRanges": "IP 범위 없음",
- "namedNetworkNotificationCreateDescription": "이름이 '{0}'인 위치를 만드는 중",
- "namedNetworkNotificationCreateFailedDescription": "'{0}' 위치를 만들지 못했습니다. 나중에 다시 시도하세요.",
- "namedNetworkNotificationCreateFailedTitle": "위치를 만들지 못함",
- "namedNetworkNotificationCreateSuccessDescription": "이름이 '{0}'인 위치를 만듦",
- "namedNetworkNotificationCreateSuccessTitle": "{0} 만듦",
- "namedNetworkNotificationCreateTitle": "{0}을(를) 만드는 중",
- "namedNetworkNotificationDeleteDescription": "이름이 '{0}'인 위치를 삭제하는 중",
- "namedNetworkNotificationDeleteFailedDescription": "'{0}' 위치를 삭제하지 못했습니다. 나중에 다시 시도하세요.",
- "namedNetworkNotificationDeleteFailedTitle": "위치를 삭제하지 못함",
- "namedNetworkNotificationDeleteSuccessDescription": "이름이 '{0}'인 위치를 삭제함",
- "namedNetworkNotificationDeleteSuccessTitle": "'{0}'을(를) 삭제함",
- "namedNetworkNotificationDeleteTitle": "'{0}'을(를) 삭제하는 중",
- "namedNetworkNotificationUpdateDescription": "이름이 '{0}'인 위치를 업데이트 중",
- "namedNetworkNotificationUpdateFailedDescription": "'{0}' 위치를 업데이트하지 못했습니다. 나중에 다시 시도하세요.",
- "namedNetworkNotificationUpdateFailedTitle": "위치를 업데이트하지 못함",
- "namedNetworkNotificationUpdateSuccessDescription": "이름이 '{0}'인 위치를 업데이트함",
- "namedNetworkNotificationUpdateSuccessTitle": "\"{0}\"을(를) 업데이트함",
- "namedNetworkNotificationUpdateTitle": "{0} 업데이트 중",
- "namedNetworkSearchPlaceholder": "위치를 검색합니다.",
- "namedNetworkUploadFailedDescription": "제공된 파일을 구문 분석하는 데 오류가 발생했습니다. 각 줄이 CIDR 형식으로 된 일반 텍스트 파일을 업로드했는지 확인하세요.",
- "namedNetworkUploadFailedTitle": "'{0}'을(를) 구문 분석하지 못했습니다.",
- "namedNetworkUploadInProgressDescription": "'{0}'의 CIDR 값을 구문 분석하려고 시도하는 중입니다.",
- "namedNetworkUploadInProgressTitle": "'{0}' 구문 분석 중",
- "namedNetworkUploadInvalidDescription": "'{0}'이(가) 너무 크거나 잘못된 형식입니다.",
- "namedNetworkUploadInvalidTitle": "'{0}'이(가) 잘못됨",
- "namedNetworkUploadIpRange": "업로드",
- "namedNetworkUploadSuccessDescription": "{0}줄을 분석했습니다. {1}의 형식이 잘못되었습니다. {2}줄을 건너뛰었습니다.",
- "namedNetworkUploadSuccessTitle": "'{0}' 구문 분석을 마침",
- "namedNetworksAdd": "새 명명된 위치",
- "namedNetworksConditionHelpDescription": "물리적 위치에 따라 사용자 액세스를 제어합니다.\n[자세한 정보][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
- "namedNetworksExcludeLabel": "{0}, {1}개 제외됨",
- "namedNetworksHelpDescription": "명명된 위치는 가양성 및 Azure AD 조건부 액세스 정책을 줄이기 위해 Azure AD 보안 보고서에서 사용됩니다.\n[자세한 정보][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
- "namedNetworksIncludeLabel": "{0}개 포함됨",
- "namedNetworksNone": "명명된 위치를 찾을 수 없습니다.",
- "namedNetworksTitle": "위치 구성",
- "namednetworkExceedingSizeErrorBladeTitle": "오류 정보",
- "namednetworkExceedingSizeErrorDetailText": "자세한 내용을 보려면 여기를 클릭하세요.",
- "namednetworkExceedingSizeErrorMessage": "명명된 위치에 허용되는 최대 스토리지 수를 초과했습니다. 더 짧은 목록으로 다시 시도하세요. 자세한 내용을 보려면 여기를 클릭하세요.",
- "newCertName": "새 인증서",
- "noPolicyRowMessage": "정책 없음",
- "noSPSelected": "선택된 서비스 사용자가 없습니다.",
- "noUpdatePermissionMessage": "이러한 설정을 업데이트할 수 있는 권한이 없습니다. 액세스 권한을 얻으려면 전역 관리자에게 문의하세요.",
- "noUserSelected": "사용자 선택 안 됨",
- "noneRisk": "위험 없음",
- "office365Description": "이러한 앱에는 Microsoft Flow, Microsoft Forms, Microsoft Teams, Office 365 Exchange Online, Office 365 SharePoint Online, Office 365 Yammer 등이 포함됩니다.",
- "office365InfoBox": "선택한 앱 중 하나 이상이 Office 365에 속해 있습니다. 대신 Office 365 앱에서 이 정책을 설정하는 것이 좋습니다.",
- "oneUserSelected": "사용자가 한 명 선택됨",
- "onlyGlobalAdminsCanSaveThisPolicyConfig": "전역 관리자만 이 정책을 저장할 수 있습니다.",
- "or": "{0} 또는 {1}",
- "pickerDoneCommand": "완료",
- "policiesBladeAdPremiumUpsellBannerText": "Azure AD Premium을 통해 클라우드 앱, 로그인 위험 및 디바이스 플랫폼와 같은 대상별 조건 및 사용자 고유의 정책 만들기",
- "policiesBladeTitle": "정책",
- "policiesBladeTitleWithAppName": "정책: {0}",
- "policiesDisabledBannerText": "연결된 로그온 특성이 있는 애플리케이션의 정책 만들기와 편집은 금지됩니다.",
- "policiesHitMaxLimitStatusBarMessage": "이 테넌트에 대한 최대 정책 수에 도달했습니다. 추가 생성하기 전에 일부 정책을 삭제하세요.",
- "policyAssignmentsSection": "할당",
- "policyBlockAllInfoBox": "구성된 정책은 모든 사용자를 차단하므로 지원되지 않습니다. 할당 및 컨트롤을 검토합니다. 이 정책을 저장하려면 현재 사용자 {0}을(를) 제외합니다.",
- "policyCloudAppsDisplayTextAllApp": "모든 앱",
- "policyCloudAppsLabel": "클라우드 앱",
- "policyConditionClientAppDescription": "사용자가 클라우드 앱에 액세스하는 데 사용하는 소프트웨어입니다(예: '브라우저').",
- "policyConditionClientAppV2Description": "사용자가 클라우드 앱에 액세스하는 데 사용하는 소프트웨어입니다(예: '브라우저').",
- "policyConditionDevicePlatform": "디바이스 플랫폼",
- "policyConditionDevicePlatformDescription": "사용자가 로그인하는 플랫폼입니다(예: 'iOS').",
- "policyConditionLocation": "위치",
- "policyConditionLocationDescription": "사용자가 로그인하는 위치(IP 주소 범위를 사용하여 확인)입니다.",
- "policyConditionSigninRisk": "로그인 위험",
- "policyConditionSigninRiskDescription": "사용자 이외의 누군가가 로그인했을 가능성입니다. 위험 수준은 높음, 중간 또는 낮음이 될 수 있습니다. Azure AD Premium 2 라이선스가 필요합니다.",
- "policyConditionUserRisk": "사용자 위험",
- "policyConditionUserRiskDescription": "정책을 적용하기 위해 필요한 사용자 위험 수준 구성",
- "policyConditioniClientApp": "클라이언트 앱",
- "policyConditioniClientAppV2": "클라이언트 앱(미리 보기)",
- "policyControlAllowAccessDisplayedName": "액세스 허용",
- "policyControlAuthenticationStrengthDisplayedName": "인증 강도 필요(미리 보기)",
- "policyControlBladeTitle": "허용",
- "policyControlBlockAccessDisplayedName": "액세스 차단",
- "policyControlCompliantDeviceDisplayedName": "준수 상태로 표시된 디바이스 필요",
- "policyControlContentDescription": "액세스를 차단하거나 부여하기 위해 액세스 시행을 제어합니다.",
- "policyControlInfoBallonText": "액세스를 차단하거나, 액세스를 허용하기 위해 충족해야 하는 추가 요구 사항 선택",
- "policyControlMfaChallengeDisplayedName": "다단계 인증 기능 필요",
- "policyControlRequireCompliantAppDisplayedName": "앱 보호 정책 필요",
- "policyControlRequireDomainJoinedDisplayedName": "하이브리드 Azure AD 조인된 디바이스 필요",
- "policyControlRequireMamDisplayedName": "승인된 클라이언트 앱 필요",
- "policyControlRequiredPasswordChangeDisplayedName": "암호 변경 필요",
- "policyControlSelectAuthStrength": "인증 강도 필요",
- "policyControlsNoControlsSelected": "컨트롤 0개 선택됨",
- "policyControlsSection": "액세스 제어",
- "policyCreatBladeTitle": "새로 만들기",
- "policyCreateButton": "만들기",
- "policyCreateFailedMessage": "오류: {0}",
- "policyCreateFailedTitle": "'{0}'을(를) 만들지 못함",
- "policyCreateInProgressTitle": "{0}을(를) 만드는 중",
- "policyCreateSuccessMessage": "'{0}'을(를) 만들었습니다. [정책을 사용하도록 설정]이 [켜기]로 설정되어 있으면 몇 분 후에 정책을 사용할 수 있습니다.",
- "policyCreateSuccessTitle": "'{0}'을(를) 만듦",
- "policyDeleteConfirmation": "\"{0}\"을(를) 삭제하시겠습니까? 이 작업은 실행 취소할 수 없습니다.",
- "policyDeleteFailTitle": "'{0}'을(를) 삭제하지 못함",
- "policyDeleteInProgressTitle": "'{0}'을(를) 삭제하는 중",
- "policyDeleteSuccessTitle": "'{0}'을(를) 삭제함",
- "policyEnforceLabel": "정책 사용",
- "policyErrorCannotSetSigninRisk": "로그인 위험 조건을 포함하는 정책을 저장할 권한이 없습니다.",
- "policyErrorNoPermission": "정책을 저장할 권한이 없습니다. 전역 관리자에게 문의하세요.",
- "policyErrorUnknown": "오류가 발생했습니다. 나중에 다시 시도하세요.",
- "policyFallbackWarningMessage": "MS Graph를 사용하여 '{0}'을(를) 만들거나 업데이트하지 못하여 AD Graph로 대체됩니다. 호환되지 않는 조건으로 MS Graph에 대한 정책 엔드포인트를 호출할 때 버그가 있을 가능성이 높으므로 다음 시나리오를 확인하세요.",
- "policyFallbackWarningTitle": "'{0}'을(를) 만들거나 업데이트하는 데 부분적으로 성공했습니다.",
- "policyNameCannotBeEmpty": "정책 이름은 비워 둘 수 없습니다.",
- "policyNameDevice": "디바이스 정책",
- "policyNameFormat": "[{0}] {1}",
- "policyNameMam": "모바일 앱 관리 정책",
- "policyNameMfaLocation": "MFA 및 위치 정책",
- "policyNamePlaceholderText": "예: '디바이스 준수 앱 정책'",
- "policyNameTooLongError": "정책 이름이 너무 깁니다. 최대 256자 사용",
- "policyOff": "끄기",
- "policyOn": "설정",
- "policyReportOnly": "보고서 전용",
- "policyReviewSection": "검토",
- "policySaveButton": "저장",
- "policyStatusIconDescription": "정책을 사용함",
- "policyStatusIconEnabled": "상태 아이콘을 사용함",
- "policyTemplateName1": "{0} 브라우저 액세스에 대해 앱 적용 제한 사용",
- "policyTemplateName2": "관리되는 디바이스에서만 {0} 액세스 허용",
- "policyTemplateName3": "지속적인 액세스 평가 설정에서 마이그레이션된 정책",
- "policyTriggerRiskSpecific": "특정 위험 수준 선택",
- "policyTriggersInfoBalloonText": "정책을 적용할 때를 정의하는 조건입니다(예: '위치').",
- "policyTriggersNoConditionsSelected": "조건 0개 선택됨",
- "policyTriggersSelectorLabel": "조건",
- "policyUpdateFailedMessage": "오류: {0}",
- "policyUpdateFailedTitle": "{0} 업데이트 실패",
- "policyUpdateInProgressTitle": "{0} 업데이트 중",
- "policyUpdateSuccessMessage": "{0}을(를) 업데이트했습니다. [정책 사용]이 [켜기]로 설정되어 있으면 몇 분 후에 정책이 활성화됩니다.",
- "policyUpdateSuccessTitle": "{0} 업데이트 성공",
- "primaryCol": "주",
- "privateLinkLabel": "Azure AD Private Link",
- "reportOnlyInfoBox": "보고서 전용 모드: 정책은 로그인할 때 평가 및 기록되지만 사용자에게 영향을 주지 않습니다.",
- "requireAllControlsText": "선택된 컨트롤이 모두 필요함",
- "requireCompliantDevice": "준수 디바이스 필요",
- "requireDomainJoined": "도메인에 가입된 디바이스 필요",
- "requireMFA": "다단계 인증 필요",
- "requireOneControlText": "선택된 컨트롤 중 하나 필요",
- "resetFilters": "필터 재설정",
- "sPRequired": "서비스 사용자 필요",
- "sPSelectorInfoBalloon": "테스트하려는 사용자 또는 서비스 사용자",
- "saturday": "토요일",
- "searchTextTooLongError": "검색 텍스트가 너무 깁니다. 최대 256자",
- "securityDefaultsPolicyName": "보안 기본값",
- "securityDefaultsTextMessage": "조건부 액세스 정책을 사용하도록 설정하려면 보안 기본값을 비활성화해야 합니다.",
- "securityDefaultsWarningMessage": "조직의 보안 구성을 관리하려는 것 같습니다. 조건부 액세스 정책을 사용하도록 설정하기 전에 먼저 보안 기본값을 사용하지 않도록 설정해야 합니다.",
- "selectDevicePlatforms": "디바이스 플랫폼 선택",
- "selectNamedNetworksSubtitle": "",
- "selectNamedNetworksTitle": "검색 위치",
- "selectedSP": "선택된 서비스 사용자",
- "servicePrincipalDataGridAria": "사용 가능한 서비스 사용자 목록",
- "servicePrincipalDropDownLabel": "이 정책은 어떤 항목에 적용됩니까?",
- "servicePrincipalInfoBox": "정책 할당에서 '{0}' 선택으로 인해 일부 조건을 사용할 수 없습니다.",
- "servicePrincipalRadioAll": "소유한 모든 서비스 사용자",
- "servicePrincipalRadioSelect": "서비스 사용자 선택",
- "servicePrincipalSelectionsAria": "선택한 서비스 사용자 표",
- "servicePrincipalSelectorAria": "선택한 서비스 사용자 목록",
- "servicePrincipalSelectorMultiple": "{0} 서비스 사용자가 선택됨",
- "servicePrincipalSelectorSingle": "서비스 사용자 1명 선택됨",
- "servicePrincipalSpecificInc": "특정 서비스 사용자 포함됨",
- "servicePrincipals": "서비스 원칙",
- "sessionControlBladeTitle": "세션",
- "sessionControlDescriptionContent": "세션 컨트롤을 기반으로 액세스를 제어하여 특정 클라우드 애플리케이션 내에서 제한된 환경을 사용하도록 설정합니다.",
- "sessionControlDisableInfo": "이 컨트롤은 지원되는 앱에서만 작동합니다. 현재 앱 적용 제한을 지원하는 클라우드 앱은 Office 365, Exchange Online 및 SharePoint Online뿐입니다. 자세히 알아보려면 여기를 클릭하세요.",
- "sessionControlInfoBallonText": "세션 컨트롤은 클라우드 앱 내에서 제한된 환경을 사용하도록 설정합니다.",
- "sessionControls": "세션 컨트롤",
- "sessionControlsAppEnforcedLabel": "앱 적용 제한 사용",
- "sessionControlsCasLabel": "조건부 액세스 앱 제어 사용",
- "sessionControlsSecureSignInLabel": "토큰 바인딩 필요",
- "sharepointAppName": "SharePoint",
- "signinRiskDescription": "이 정책을 적용할 로그인 위험 수준 선택",
- "signinRiskInclude": "{0}개 포함됨",
- "signinRiskTriggerDescriptionContent": "로그인 위험 수준 선택",
- "singleTenantServicePrincipalInfoBallonText": "정책은 조직이 소유한 단일 테넌트 서비스 사용자에만 적용됩니다. 자세히 알아보려면 여기를 클릭하세요. ",
- "specificSigninRiskLevelsOption": "특정 로그인 위험 수준 선택",
- "specificUsersExcluded": "특정 사용자가 제외됨",
- "specificUsersIncluded": "특정 사용자가 포함됨",
- "specificUsersIncludedAndExcluded": "특정 사용자 제외 및 포함",
- "startDatePickerLabel": "시작",
- "startFreeTrial": "평가판 시작",
- "startTimePickerLabel": "시작 시간",
- "sunday": "일요일",
- "testButton": "What If",
- "thumbprintCol": "지문",
- "thursday": "목요일",
- "timeConditionAllTimesLabel": "항상",
- "timeConditionIntroText": "이 정책이 적용될 시간 구성",
- "timeConditionSelectorInfoBallonContent": "사용자가 로그인하는 시간입니다. 예: \"수요일, 오전 9시 - 오후 5시 PST\"",
- "timeConditionSelectorLabel": "시간(미리 보기)",
- "timeConditionSpecificLabel": "특정 시간(미리 보기)",
- "timeSelectorAllTimesText": "항상",
- "timeSelectorSpecificTimesText": "구성한 특정 시간",
- "timeZoneDropdownInfoBalloonContent": "시간 범위를 정의한 표준 시간대를 선택하세요. 이 정책은 모든 표준 시간대의 사용자에게 적용됩니다. 예를 들어 한 사용자의 '수요일, 오전 9시 - 오후 5시'는 다른 표준 시간대 사용자의 경우 '수요일, 오전 10시 - 오후 6시'가 됩니다.",
- "timeZoneDropdownLabel": "표준 시간대",
- "timeZoneDropdownPlaceholderText": "표준 시간대 선택",
- "tooManyPoliciesDescription": "지금은 처음 50개 정책만 표시됩니다. 모든 정책을 보려면 여기를 클릭하세요.",
- "tooManyPoliciesTitle": "50개가 넘는 정책이 있음",
- "trustedLocationStatusIconDescription": "위치를 신뢰할 수 있음",
- "trustedLocationStatusIconEnabled": "신뢰할 수 있는 상태 아이콘",
- "tuesday": "화요일",
- "uploadInBadState": "지정된 파일을 업로드할 수 없습니다.",
- "upsellAppsDescription": "중요한 애플리케이션에 대해 항상, 또는 회사 네트워크 외부의 애플리케이션에 대해서만 다단계 인증을 요구합니다.",
- "upsellAppsTitle": "보안 애플리케이션",
- "upsellBannerText": "무료 Premium 평가판을 받아서 이 기능을 사용하세요.",
- "upsellDataDescription": "회사 리소스에 액세스를 허용하려면 준수 상태로 표시된 디바이스나 하이브리드 Azure AD 조인된 디바이스가 필요합니다.",
- "upsellDataTitle": "보안 데이터",
- "upsellDescription": "조건부 액세스는 회사 데이터를 안전하게 유지하는 데 필요한 제어 및 보호를 제공하는 한편, 직원들이 모든 디바이스에서 최고의 작업을 수행할 수 있는 환경을 제공합니다. 예를 들어, 회사 네트워크 외부에서 액세스를 제한하거나 준수 정책을 충족하는 디바이스만 액세스하도록 제한할 수 있습니다.",
- "upsellRiskDescription": "Microsoft의 기계 학습 시스템을 통해 검색된 위험 이벤트에 대해 다단계 인증을 요구합니다.",
- "upsellRiskTitle": "위험으로부터 보호",
- "upsellTitle": "조건부 액세스",
- "upsellWhyTitle": "조건부 액세스를 사용하는 이유는 무엇인가요?",
- "userAppNoneOption": "없음",
- "userNamePlaceholderText": "사용자 이름 입력",
- "userNotSetSeletorLabel": "0명의 사용자 및 그룹이 선택됨",
- "userOnlySelectionBladeExcludeDescription": "정책에서 제외할 사용자 선택",
- "userOrGroupSelectionCountDiffBannerText": "이 정책에 구성된 {0}이(가) 디렉터리에서 삭제되었지만 정책에서 다른 사용자 및 그룹에 영향을 주지 않습니다. 다음에 정책을 업데이트하면 삭제된 사용자 및/또는 그룹이 자동으로 제거됩니다.",
- "userOrSPNotSetSelectorLabel": "0명의 사용자 또는 워크로드 ID가 선택됨",
- "userOrSPSelectionBladeTitle": "사용자 또는 워크로드 ID",
- "userOrSPSelectorInfoBallonText": "사용자, 그룹 및 서비스 사용자를 포함하여 정책이 적용되는 디렉터리의 ID",
- "userRequired": "사용자가 필요함",
- "userRiskErrorBox": "\"암호 변경 필요\" 권한을 선택하면 \"사용자 위험\" 조건을 선택해야 합니다.",
- "userSPRequired": "사용자 또는 서비스 주체 필요",
- "userSPSelectorTitle": "사용자 또는 워크로드 ID",
- "userSelectionBladeAllUsersAndGroups": "모든 사용자 및 그룹",
- "userSelectionBladeExcludeDescription": "정책에서 제외할 사용자 및 그룹 선택",
- "userSelectionBladeExcludeTabTitle": "제외",
- "userSelectionBladeExcludedSelectorTitle": "제외된 사용자 선택",
- "userSelectionBladeIncludeDescription": "이 정책이 적용될 사용자를 선택합니다.",
- "userSelectionBladeIncludeTabTitle": "포함",
- "userSelectionBladeIncludedSelectorTitle": "선택",
- "userSelectionBladeSelectUsers": "사용자 선택",
- "userSelectionBladeSelectedUsers": "사용자 및 그룹 선택",
- "userSelectionBladeTitle": "사용자 및 그룹",
- "userSelectorBladeTitle": "사용자",
- "userSelectorExcluded": "{0} 제외됨",
- "userSelectorGroupPlural": "그룹 {0}개",
- "userSelectorGroupSingular": "그룹 1개",
- "userSelectorIncluded": "{0}개 포함됨",
- "userSelectorInfoBallonText": "디렉터리에서 정책이 적용되는 사용자 및 그룹입니다(예: '파일럿 그룹').",
- "userSelectorSelected": "{0}이(가) 선택됨",
- "userSelectorTitle": "사용자",
- "userSelectorUserAndGroup": "{0}, {1}",
- "userSelectorUserPlural": "{0} 사용자",
- "userSelectorUserSingular": "사용자 1명",
- "userSelectorWithExclusion": "{0} 및 {1}",
- "usersGroupsLabel": "사용자 및 그룹",
- "viewApprovedAppsText": "승인된 클라이언트 앱 목록 보기",
- "viewCompliantAppsText": "정책으로 보호된 클라이언트 앱 목록 보기",
- "vpnBladeTitle": "VPN 연결",
- "vpnCertCreateFailedMessage": "오류: {0}",
- "vpnCertCreateFailedTitle": "{0}을(를) 만들지 못했습니다.",
- "vpnCertCreateInProgressTitle": "{0} 만드는 중",
- "vpnCertCreateSuccessMessage": "{0}을(를) 만들었습니다.",
- "vpnCertCreateSuccessTitle": "{0}을(를) 만들었습니다.",
- "vpnCertNoRowsMessage": "VPN 인증서를 찾을 수 없음",
- "vpnCertUpdateFailedMessage": "오류: {0}",
- "vpnCertUpdateFailedTitle": "{0} 업데이트 실패",
- "vpnCertUpdateInProgressTitle": "{0} 업데이트 중",
- "vpnCertUpdateSuccessMessage": "{0}을(를) 업데이트했습니다.",
- "vpnCertUpdateSuccessTitle": "{0} 업데이트 성공",
- "vpnFeatureInfo": "VPN 연결 및 조건부 액세스에 대한 자세한 내용을 보려면 여기를 클릭하세요.",
- "vpnFeatureWarning": "Azure Portal에서 VPN 인증서를 만들면 Azure AD는 바로 VPN 클라이언트에 대해 짧은 수명의 인증서를 발급하는 데 사용됩니다. Vpn 클라이언트의 자격 증명 확인에 문제가 발생하지 않도록 vpn 인증서를 VPN 서버에 즉시 배포하는 것이 중요합니다.",
- "vpnMenuText": "VPN 연결",
- "vpncertDropdownDefaultOption": "기간",
- "vpncertDropdownInfoBalloonContent": "만들 인증서의 기간 선택",
- "vpncertDropdownLabel": "기간 선택",
- "vpncertDropdownOneyearOption": "1년",
- "vpncertDropdownThreeyearOption": "3년",
- "vpncertDropdownTwoyearOption": "2년",
- "wednesday": "수요일",
- "whatIfAppEnforcedControl": "앱 적용 제한 사용",
- "whatIfBladeDescription": "특정 조건에서 로그인하는 경우 사용자에 대한 조건부 액세스의 영향을 테스트합니다.",
- "whatIfBladeTitle": "What If",
- "whatIfClassicPoliciesWarning": "클래식 정책은 이 도구에서 평가되지 않습니다.",
- "whatIfClientAppInfo": "사용자가 로그인하는 클라이언트 앱입니다(예: '브라우저').",
- "whatIfCountry": "국가",
- "whatIfCountryInfo": "사용자가 로그인하는 국가입니다.",
- "whatIfDevicePlatformInfo": "사용자가 로그인하는 디바이스 플랫폼입니다.",
- "whatIfDeviceStateInfo": "사용자가 로그인하고 있는 디바이스 상태입니다.",
- "whatIfEnterIpAddress": "IP 주소(예: 40.77.182.32) 입력",
- "whatIfErrorInvalidIpAddress": "잘못된 IP 주소를 지정했습니다.",
- "whatIfEvaResultApplication": "클라우드 앱",
- "whatIfEvaResultClientApps": "클라이언트 앱",
- "whatIfEvaResultDevicePlatform": "디바이스 플랫폼",
- "whatIfEvaResultEmptyPolicy": "빈 정책",
- "whatIfEvaResultInvalidCondition": "잘못된 조건",
- "whatIfEvaResultInvalidPolicy": "잘못된 정책",
- "whatIfEvaResultLocation": "위치",
- "whatIfEvaResultNotEnoughInformation": "정보가 부족함",
- "whatIfEvaResultPolicyNotEnabled": "사용하도록 설정되지 않은 정책",
- "whatIfEvaResultSignInRisk": "로그인 위험",
- "whatIfEvaResultUsers": "사용자 및 그룹",
- "whatIfIpAddress": "IP 주소",
- "whatIfIpAddressInfo": "사용자가 로그인하는 IP 주소입니다.",
- "whatIfIpCountryInfoBoxText": "IP 주소 또는 국가를 사용하는 경우 두 필드 모두 필수이며 함께 올바르게 매핑되어야 합니다.",
- "whatIfPolicyAppliesTab": "적용되는 정책",
- "whatIfPolicyDoesNotApplyTab": "적용되지 않는 정책",
- "whatIfReasons": "이 정책이 적용되지 않는 이유",
- "whatIfSelectClientApp": "클라이언트 앱 선택...",
- "whatIfSelectCountry": "국가 선택...",
- "whatIfSelectDevicePlatform": "디바이스 플랫폼 선택...",
- "whatIfSelectPrivateLink": "프라이빗 링크 선택...",
- "whatIfSelectServicePrincipalRisk": "서비스 사용자 위험 선택...",
- "whatIfSelectSignInRisk": "로그인 위험 선택",
- "whatIfSelectType": "ID 유형 선택",
- "whatIfSelectUserRisk": "사용자 위험 선택...",
- "whatIfServicePrincipalRiskInfo": "서비스 사용자와 관련된 위험 수준",
- "whatIfSignInRisk": "로그인 위험",
- "whatIfSignInRiskInfo": "로그인과 관련된 위험 수준입니다.",
- "whatIfUnknownAreas": "알 수 없는 영역",
- "whatIfUserPickerLabel": "선택한 사용자",
- "whatIfUserPickerNoRowsLabel": "사용자 또는 서비스 주체가 선택되지 않음",
- "whatIfUserRiskInfo": "사용자와 관련된 위험 수준",
- "whatIfUserSelectorInfo": "디렉터리에서 테스트할 대상 사용자",
- "windows365InfoBox": "Windows 365를 선택하면 Cloud PC 및 Azure Virtual Desktop 세션 호스트에 대한 연결에 영향을 줍니다. 자세히 알아보려면 여기를 클릭하세요.",
- "windowsDisplayName": "Windows",
- "windowsPhoneDisplayName": "Windows Phone",
- "workloadIdentities": "워크로드 ID(미리 보기)",
- "workloadIdentity": "워크로드 ID"
- },
- "ApplicableDeviceType": {
- "iPad": "iPad",
- "iPhoneAndIPod": "iPhone 및 iPod"
- },
- "TAPSettings": {
- "AllowedDataIngestionLocations": {
- "label": "사용자가 선택한 서비스에서 데이터를 열도록 허용",
- "tooltip": "사용자가 데이터를 열 수 있는 애플리케이션 스토리지 서비스를 선택합니다. 기타 모든 서비스는 차단됩니다. 서비스를 선택하지 않으면 사용자가 데이터를 열 수 없게 됩니다."
- },
- "AndroidBackup": {
- "label": "Android 백업 서비스에 조직 데이터 백업",
- "tooltip": "Android 백업 서비스에 조직 데이터가 백업되지 않도록 하려면 {0}을(를) 선택합니다. \r\nAndroid 백업 서비스에 조직 데이터의 백업을 허용하려면 {1}을(를) 선택합니다. \r\n개인 데이터 또는 비관리형 데이터는 영향을 받지 않습니다."
- },
- "AndroidBiometricAuthentication": {
- "label": "액세스에 PIN 대신 생체 인식 사용",
- "tooltip": "사용자가 앱 PIN 대신 사용할 수 있는 Android 인증 방법(있는 경우)을 선택합니다."
- },
- "AndroidFingerprint": {
- "label": "액세스에 PIN 대신 지문 사용(Android 6.0 이상)",
- "tooltip": "Android OS는 지문 스캔을 사용하여 Android 디바이스 사용자를 인증합니다. 이 기능은 Android 디바이스에서 네이티브 생체 인식 제어를 지원합니다. Samsung Pass 같은 OEM별 생체 인식 설정은 지원되지 않습니다. 허용되는 경우, 지원 디바이스에서 앱에 액세스하는 데 네이티브 생체 인식 제어를 사용해야 합니다."
- },
- "AndroidOverrideFingerprint": {
- "label": "시간 제한 후 PIN을 사용하여 지문 재정의"
- },
- "AppPIN": {
- "label": "디바이스 PIN이 설정된 경우 앱 PIN",
- "tooltip": "필요하지 않은 경우라면 MDM 등록 디바이스에 디바이스 PIN이 설정된 경우 앱에 액세스하기 위해 앱 PIN을 사용할 필요가 없습니다.
\r\n\r\n참고: Intune은 Android의 타사 EMM 솔루션에서 디바이스 등록을 검색할 수 없습니다."
- },
- "BlockDataIngestionIntoOrganizationDocuments": {
- "label": "조직 문서로 데이터 열기",
- "tooltip1": "이 앱의 계정 간에 데이터를 공유하기 위해 열기 옵션이나 기타 옵션을 사용하지 않도록 설정하려면 차단을 선택합니다. 이 앱의 계정 간에 데이터를 공유하기 위해 열기 옵션이나 기타 옵션을 사용하도록 허용하려면 허용을 선택합니다.",
- "tooltip2": "차단으로 설정하면 조직 데이터 위치에 사용할 수 있는 서비스를 지정하도록 사용자가 선택한 서비스에서 데이터를 열도록 허용 설정을 구성할 수 있습니다.",
- "tooltip3": "참고: 이 설정은 \"다른 앱에서 데이터 수신\" 설정이 \"정책 관리 앱\"으로 설정된 경우에만 적용됩니다.
\r\n참고: 이 설정은 일부 애플리케이션에는 적용되지 않습니다. 자세한 내용은 {0}을(를) 참조하세요.",
- "tooltip4": "참고: 이 설정은 \"다른 앱에서 데이터 수신\" 설정이 \"정책 관리 앱\"으로 설정된 경우에만 적용됩니다.
\r\n참고: 이 설정은 일부 애플리케이션에는 적용되지 않습니다. 자세한 내용은 {0} 또는 {0}을(를) 참조하세요."
- },
- "ConnectToVpnOnLaunch": {
- "label": "앱 실행 시 Microsoft Tunnel 연결 시작",
- "tooltip": "앱 실행 시 VPN에 대한 연결 허용"
- },
- "CredentialsForAccess": {
- "label": "액세스에 회사 또는 학교 계정 자격 증명 사용",
- "tooltip": "필요한 경우 정책 관리 앱에 액세스하기 위해 회사 또는 학교 자격 증명을 사용해야 합니다. 앱에 액세스하기 위해 PIN 또는 생체 인식 방법이 필요할 수도 있는 경우, 해당 프롬프트뿐 아니라 회사 또는 학교 계정 자격 증명이 필요합니다."
- },
- "CustomBrowserDisplayName": {
- "label": "비관리형 브라우저 이름",
- "tooltip": "\"비관리형 브라우저 ID\"와 연결된 브라우저의 애플리케이션 이름을 입력합니다. 이 이름은 지정된 브라우저가 설치되지 않은 경우 사용자에게 표시됩니다."
- },
- "CustomBrowserPackageId": {
- "label": "비관리형 브라우저 ID",
- "tooltip": "단일 브라우저의 애플리케이션 ID를 입력합니다. 정책 관리형 애플리케이션의 웹 콘텐츠(http/s)가 지정된 브라우저에서 열립니다."
- },
- "CustomBrowserProtocol": {
- "label": "비관리형 브라우저 프로토콜",
- "tooltip": "비관리형 단일 브라우저의 프로토콜을 입력합니다. 정책 관리형 애플리케이션의 웹 콘텐츠(http/s)는 이 프로토콜을 지원하는 모든 앱에서 열립니다.
\r\n \r\n참고: 프로토콜 접두사만 포함됩니다. 브라우저에 \"mybrowser://www.microsoft.com\" 형식의 링크가 필요한 경우, \"mybrowser\"를 입력하세요.
"
- },
- "CustomDialerAppDisplayName": {
- "label": "전화 걸기 앱 이름"
- },
- "CustomDialerAppPackageId": {
- "label": "전화 걸기 앱 패키지 ID"
- },
- "CustomDialerAppProtocol": {
- "label": "전화 걸기 앱 URL 구성표"
- },
- "Cutcopypaste": {
- "label": "다른 앱에서 잘라내기, 복사 및 붙여넣기 제한",
- "tooltip": "디바이스에 설치된 앱과 기타 승인된 앱 간에 데이터를 잘라내고 복사하고 붙여넣습니다. 이러한 작업을 완전히 차단하거나, 모든 앱에서 이러한 작업을 사용하도록 허용하거나, 조직에서 관리하는 앱으로만 제한하도록 선택합니다.
\r\n\r\n정책 관리 앱에 붙여넣기는 다른 앱에서 붙여넣은 들어오는 콘텐츠를 수락하는 옵션을 제공합니다. 그러나 관리 앱과 공유하지 않는 경우 사용자가 외부와 콘텐츠를 공유하는 것을 차단합니다.
"
- },
- "DialerRestrictionLevel": {
- "iosTooltip": "일반적으로 사용자가 앱에서 하이퍼링크된 전화 번호를 선택하면 전화 번호가 미리 채워져 있고 바로 통화할 수 있는 상태로 전화 걸기 앱이 열립니다. 이 설정의 경우 정책 관리 앱에서 시작될 때 이 콘텐츠 전송 유형을 처리하는 방법을 선택합니다 .이 설정을 적용하려면 단계를 추가로 수행해야 합니다. 먼저 [제외할 앱 목록 선택]에서 tel 및 telprompt가 제거되었는지 확인합니다. 그런 다음 애플리케이션이 최신 버전의 Intune SDK(버전 12.7.0 이상)를 사용하는지 확인합니다.",
- "label": "자격 증명 모음으로 데이터 전송",
- "tooltip": "일반적으로 사용자가 앱에서 하이퍼링크된 전화 번호를 선택하면 전화 번호가 미리 채워져 있고 통화 준비가 끝난 상태로 전화 걸기 앱이 열립니다. 이 설정의 경우 정책 관리 앱에서 시작될 때 이 콘텐츠 전송 유형을 처리하는 방법을 선택합니다."
- },
- "EncryptData": {
- "label": "조직 데이터 암호화",
- "link": "https://docs.microsoft.com/en-us/intune/app-protection-policy-settings-android#data-relocation-settings",
- "tooltip": "Intune 앱 계층 암호화로 조직 데이터 암호화를 적용하려면 {0}을(를) 선택합니다.\r\n
\r\nIntune 앱 계층 암호화로 조직 데이터 암호화를 적용하지 않으려면 {1}을(를) 선택합니다.\r\n\r\n
\r\n참고: Intune 앱 계층 암호화에 대한 자세한 내용은 {2}을(를) 참조하세요."
- },
- "EncryptDataAndroid": {
- "tooltip": "이 앱에서 회사 또는 학교 데이터 암호화를 사용하도록 설정하려면 필요를 선택합니다. Intune에서는 앱 데이터를 안전하게 암호화하기 위해 Android 키 저장소 시스템과 함께 OpenSSL, 256비트 AES 암호화 체계를 사용합니다. 파일 I/O 작업 중 데이터가 동기적으로 암호화됩니다. 디바이스 스토리지의 콘텐츠는 항상 암호화됩니다. SDK는 이전 SDK 버전을 사용하는 콘텐츠 및 앱과의 호환성을 위해 128비트 키를 계속 지원합니다.
\r\n\r\n이 암호화 방법은 FIPS 140-2를 준수하지 않습니다.
"
- },
- "EncryptDataIos": {
- "tooltip1": "이 앱에서 회사 또는 학교 데이터 암호화를 사용하도록 설정하려면 필요를 선택합니다. Intune은 디바이스가 잠겨 있는 동안 앱 데이터를 보호하기 위해 iOS/iPadOS 디바이스 암호화를 적용합니다. 애플리케이션은 Intune 앱 SDK 암호화를 사용하여 앱 데이터를 선택적으로 암호화할 수 있습니다. Intune 앱 SDK는 iOS/iPadOS 암호화 방법을 사용하여 128비트 AES 암호화를 앱 데이터에 적용합니다.",
- "tooltip2": "이 설정을 사용하도록 설정하면 사용자는 디바이스에 액세스하기 위해 PIN을 설정하고 사용해야 할 수 있습니다. 디바이스 PIN이 없고 암호화가 필요한 경우 사용자는 \"조직에서 이 앱에 액세스하려면 먼저 디바이스 PIN을 사용하도록 설정해야 합니다.\"라는 메시지와 함께 PIN을 설정하라는 메시지가 표시됩니다.",
- "tooltip3": "FIPS 140-2 준수 또는 FIPS 140-2 준수 보류 중인 iOS 암호화 모듈을 보려면 공식 Apple 설명서로 이동하세요."
- },
- "EncryptDataOnEnrolledDevices": {
- "label": "등록된 디바이스에서 조직 데이터 암호화",
- "tooltip": "모든 디바이스에서 Intune 앱 계층 암호화로 조직 데이터 암호화를 적용하려면 {0}을(를) 선택합니다.
\r\n\r\n등록된 디바이스에서 Intune 앱 계층 암호화로 조직 데이터 암호화를 적용하지 않으려면 {1}을(를) 선택합니다."
- },
- "IOSBackup": {
- "label": "iTunes 및 iCloud 백업에 조직 데이터 백업",
- "tooltip": "iTunes 또는 iCloud에 조직 데이터가 백업되지 않도록 하려면 {0}을(를) 선택합니다. \r\niTunes 또는 iCloud에 조직 데이터의 백업을 허용하려면 {1}을(를) 선택합니다. \r\n개인 데이터 또는 비관리형 데이터는 영향을 받지 않습니다."
- },
- "IOSFaceID": {
- "label": "액세스에 PIN 대신 Face ID 사용(iOS 11 이상/iPadOS)",
- "tooltip": "Face ID는 얼굴 인식 기술을 사용하여 iOS/iPadOS 디바이스에서 사용자를 인증합니다. Intune은 LocalAuthentication API를 호출하여 Face ID를 사용하는 사용자를 인증합니다. 허용되는 경우, Face ID 지원 디바이스에서 앱에 액세스하는 데 Face ID를 사용해야 합니다."
- },
- "IOSOverrideTouchId": {
- "label": "시간 초과 후 PIN을 사용하여 생체 인식 재정의"
- },
- "IOSTouchId": {
- "label": "액세스에 PIN 대신 Touch ID 사용(iOS 8 이상/iPadOS)",
- "tooltip": "Touch ID는 지문 인식 기술을 사용하여 iOS 디바이스에서 사용자를 인증합니다. Intune은 LocalAuthentication API를 호출하여 Touch ID를 사용하는 사용자를 인증합니다. 허용되는 경우 Touch ID 지원 디바이스에서 앱에 액세스하는 데 Touch ID를 사용해야 합니다."
- },
- "NotificationRestriction": {
- "label": "조직 데이터 알림",
- "tooltip": "이 앱 및 연결된 모든 디바이스(예: 착용식 컴퓨터)에서 조직 계정에 대한 알림이 표시되는 방식을 지정하려면 다음 옵션 중 하나를 선택하세요.
\r\n{0}: 알림을 공유하지 않습니다.
\r\n{1}: 알림의 조직 데이터를 공유하지 않습니다. 애플리케이션에서 지원되지 않는 경우 알림이 차단됩니다.
\r\n{2}: 모든 알림을 공유합니다.
\r\n Android에만 해당:\r\n 참고: 이 설정은 모든 애플리케이션에 적용되지는 않습니다. 자세한 내용은 {3}을(를) 참조하세요.
\r\n \r\n iOS에만 해당:\r\n참고: 이 설정은 모든 애플리케이션에 적용되지는 않습니다. 자세한 내용은 {4}을(를) 참조하세요.
"
- },
- "OpenLinksManagedBrowser": {
- "label": "다른 앱을 사용한 웹 콘텐츠 전송 제한",
- "tooltip": "다음 옵션 중 하나를 선택하여 이 앱에서 웹 콘텐츠를 열 수 있는 앱을 지정합니다.
\r\nEdge: 웹 콘텐츠를 Edge에서만 열 수 있습니다.
\r\n비관리형 브라우저: 웹 콘텐츠를 \"비관리형 브라우저 프로토콜\" 설정에 정의된 비관리형 브라우저에서만 열 수 있습니다.
\r\n모든 앱: 모든 앱에서 웹 링크를 허용합니다.
"
- },
- "OverrideBiometric": {
- "tooltip": "필요한 경우 시간 제한(비활성 시간(분))에 따라 PIN 프롬프트가 생체 인식 프롬프트를 재정의합니다. 이 시간 제한 값이 충족되지 않는 경우 생체 인식 프롬프트는 계속 표시됩니다. 이 시간 제한 값은 '다음 시간(비활성 시간(분)) 후에 액세스 요구 사항 다시 확인' 아래에 지정된 값보다 커야 합니다. "
- },
- "PinAccess": {
- "label": "액세스에 PIN 사용",
- "tooltip": "필요한 경우 정책 관리 앱에 액세스하기 위해 PIN을 사용해야 합니다. 사용자는 처음으로 회사 또는 학교 계정으로 앱을 열 때 액세스 PIN을 만들어야 합니다."
- },
- "PinLength": {
- "label": "최소 PIN 길이 선택",
- "tooltip": "이 설정은 PIN의 최소 자릿수를 지정합니다."
- },
- "PinType": {
- "label": "PIN 형식",
- "tooltip": "숫자 PIN은 모두 숫자로 구성됩니다. 암호는 영숫자와 특수 문자로 구성됩니다. "
- },
- "Printing": {
- "label": "조직 데이터를 인쇄하는 중",
- "tooltip": "차단한 경우 앱에서 보호된 데이터를 인쇄할 수 없습니다."
- },
- "ReceiveData": {
- "label": "다른 앱에서 데이터 받기",
- "tooltip": "다음 옵션 중 하나를 선택하여 이 앱이 데이터를 받을 수 있는 앱을 지정하세요.
\r\n\r\n없음: 모든 앱에서 조직 문서 또는 계정의 데이터를 받는 것을 허용하지 않음
\r\n\r\n정책 관리 앱: 다른 정책 관리 앱에서 조직 문서 또는 계정의 데이터를 받는 것만 허용\r\n
\r\n들어오는 조직 데이터가 있는 모든 앱: 모든 앱에서 조직 문서 또는 계정의 데이터를 받는 것을 허용하고 사용자 계정이 없는 모든 들어오는 데이터를 조직 데이터로 처리
\r\n\r\n모든 앱: 모든 앱에서 조직 문서 또는 계정의 데이터를 받는 것을 허용"
- },
- "RecheckAccessAfter": {
- "label": "다음 시간(비활성 시간(분)) 후에 액세스 요구 사항 다시 확인\r\n\r\n",
- "tooltip": "정책 관리 앱이 지정된 비활성 시간(분)보다 더 오랫동안 비활성 상태이면 앱에서 앱이 시작된 후 액세스 요구 사항(PIN, 조건부 시작 설정) 다시 확인을 묻습니다."
- },
- "RestrictKeyboards": {
- "duplicatePackageError": "패키지 ID는 고유해야 합니다.",
- "invalidPackageError": "유효하지 않은 패키지 ID",
- "label": "승인된 키보드",
- "select": "승인할 키보드 선택",
- "subtitle": "사용자가 대상 앱에서 사용할 수 있는 모든 키보드 및 입력 방법을 추가합니다. 최종 사용자에게 표시하려는 키보드 이름을 입력합니다.",
- "title": "승인된 키보드 추가",
- "toolTip": "[필수]를 선택한 후 이 정책에 대해 승인된 키보드 목록을 지정합니다. 자세히 알아보세요."
- },
- "SaveData": {
- "label": "조직 데이터의 복사본 저장",
- "tooltip": "\"다른 이름으로 저장\"을 사용하여 선택한 스토리지 서비스 외의 새 위치로 조직 데이터의 복사본이 저장되지 않도록 하려면 {0}을(를) 선택합니다.\r\n \"다른 이름으로 저장\"을 사용하여 새 위치로 조직 데이터의 복사본 저장을 허용하려면 {1}을(를) 선택합니다.
\r\n\r\n\r\n참고: 이 설정은 일부 애플리케이션에 적용되지 않습니다. 자세한 내용은 {2}을(를) 참조하세요.\r\n"
- },
- "SaveDataToSelected": {
- "label": "사용자가 선택한 서비스에 복사본을 저장하도록 허용",
- "tooltip": "사용자가 조직 데이터의 복사본을 저장할 수 있는 스토리지 서비스를 선택합니다. 기타 모든 서비스는 차단됩니다. 서비스를 선택하지 않으면 사용자가 조직 데이터의 복사본을 저장할 수 없게 됩니다."
- },
- "ScreenCaptureAndAndroidAssistant": {
- "label": "화면 캡처 및 Google Assistant\r\n",
- "tooltip": "차단하면 정책 관리 앱을 사용할 때 화면 캡처 및 Google Assistant 앱 검색 기능이 둘 다 사용하지 않도록 설정됩니다. 이 기능은 일반적인 Google Assistant 앱을 지원합니다. Google의 Assist API를 사용하는 타사 Assistant는 지원되지 않습니다. [차단]을 선택하면 회사 또는 학교 계정으로 앱을 사용할 때 최근 실행 앱 미리 보기 이미지가 흐리게 표시됩니다."
- },
- "SendData": {
- "label": "다른 앱에 조직 데이터 보내기",
- "tooltip": "다음 옵션 중 하나를 선택하여 이 앱이 조직 데이터를 보낼 수 있는 앱을 지정하세요.
\r\n\r\n\r\n없음: 모든 앱에 조직 데이터를 보내는 것을 허용하지 않음
\r\n\r\n\r\n정책 관리 앱: 다른 정책 관리 앱에 조직 데이터를 보내는 것만 허용
\r\n\r\n\r\nOS 공유가 적용된 정책 관리 앱: 다른 정책 관리 앱에 조직 데이터를 보내는 것과 등록된 디바이스에서 다른 MIM 관리 앱에 조직 문서를 보내는 것만 허용
\r\n\r\n\r\n여는 위치/공유 필터링이 적용된 정책 관리 앱: 조직 데이터를 다른 정책 관리형 앱에 보내고 OS [여는 위치]/[공유] 대화 상자를 필터링하여 정책 관리형 앱 표시만 허용\r\n
\r\n\r\n모든 앱: 조직 데이터를 모든 앱에 보내는 것을 허용"
- },
- "SimplePin": {
- "label": "단순 PIN",
- "tooltip": "차단된 경우 사용자는 단순 PIN을 만들 수 없습니다. 단순 PIN은 1234, ABCD, 1111처럼 연속 문자열 또는 반복되는 숫자입니다. '암호' 형식의 단순 PIN을 차단하려면 암호에 하나 이상의 숫자, 문자 및 특수 문자가 포함되어야 합니다."
- },
- "SyncContacts": {
- "label": "기본 앱 또는 추가 기능을 통한 정책 관리 앱 데이터 동기화"
- },
- "ThirdPartyKeyboards": {
- "infoBox": "키보드 제한은 앱의 모든 영역에 적용됩니다. 여러 ID를 지원하는 앱의 개인 계정은 이 제한의 영향을 받습니다. 자세히 알아보세요.",
- "label": "타사 키보드"
- },
- "Timeout": {
- "label": "시간 제한(비활성 시간(분))"
- },
- "Tap": {
- "numberOfDays": "일 수",
- "pinResetAfterNumberOfDays": "다음 일수 후 PIN 재설정",
- "previousPinBlockCount": "유지할 이전 PIN 값 수 선택"
- }
- },
- "WindowsFeatureUpdateProfile": {
- "Details": {
- "Description": {
- "label": "설명"
- },
- "FeatureDeploymentSettings": {
- "header": "기능 배포 설정"
- },
- "FeatureUpdateVersion": {
- "infoballoon": "이 기능은 디바이스를 다운그레이드할 수 없습니다.",
- "label": "배포할 기능 업데이트"
- },
- "GradualRolloutEndDate": {
- "label": "마지막 그룹 가용성"
- },
- "GradualRolloutInterval": {
- "label": "그룹 사이 일 수"
- },
- "GradualRolloutStartDate": {
- "label": "첫 번째 그룹 가용성"
- },
- "Name": {
- "label": "이름"
- },
- "RolloutOptions": {
- "label": "롤아웃 옵션"
- },
- "RolloutSettings": {
- "header": "Windows 업데이트에서 업데이트를 언제 사용할 수 있게 할까요?"
- },
- "ScopeSettings": {
- "header": "이 정책의 범위 태그를 구성합니다."
- },
- "StartDateOnlyStartDate": {
- "label": "사용 가능한 첫 번째 날짜"
- },
- "bladeTitle": "기능 업데이트 배포",
- "deploymentSettingsTitle": "배포 설정",
- "loadError": "로드하지 못했습니다.",
- "windows11EULA": "배포할 이 기능 업데이트를 선택하면 이 운영 체제를 장치에 적용할 때 (1) 해당 Windows 라이선스를 볼륨 라이선싱을 통해 구입했거나 (2) 조직을 구속할 권한이 있고 조직을 대신하여 여기에서 확인할 수 있는 Microsoft 소프트웨어 사용 조건을 수락한다는 데 동의하는 것입니다. {0}"
- },
- "Notifications": {
- "deploymentSaved": "\"{0}\"이(가) 저장되었습니다.",
- "newFeatureUpdateDeploymentCreated": "새 기능 업데이트 배포가 생성되었습니다."
- },
- "TabName": {
- "deploymentSettings": "배포 설정",
- "groupAssignmentSettings": "할당",
- "scopeSettings": "범위 태그"
- }
- },
- "OfficeUpdateChannel": {
- "current": "현재 채널",
- "deferred": "반기 엔터프라이즈 채널",
- "firstReleaseCurrent": "현재 채널(미리 보기)",
- "firstReleaseDeferred": "반기 엔터프라이즈 채널(미리 보기)",
- "monthlyEnterprise": "월 단위 기업 채널",
- "placeHolder": "하나 선택"
- },
- "Win32ReturnCodes": {
- "CodeTypes": {
- "failed": "실패",
- "hardReboot": "하드 재부팅",
- "retry": "다시 시도",
- "softReboot": "소프트 재부팅",
- "success": "성공"
- },
- "Columns": {
- "codeType": "코드 형식",
- "returnCode": "반환 코드"
- },
- "bladeTitle": "반환 코드",
- "gridAriaLabel": "반환 코드",
- "header": "설치 후 동작을 나타내기 위한 반환 코드 지정:",
- "onAddAnnounceMessage": "반환 코드를 통해 {0}/{1}개의 항목이 추가됨",
- "onDeleteSuccess": "반환 코드 {0}을(를) 삭제함",
- "returnCodeAlreadyUsedValidation": "반환 코드가 이미 사용되었습니다.",
- "returnCodeMustBeIntegerValidation": "반환 코드는 정수여야 합니다.",
- "returnCodeShouldBeAtLeast": "반환 코드는 {0} 이상이어야 합니다.",
- "returnCodeShouldBeAtMost": "반환 코드는 {0} 이하여야 합니다.",
- "selectorLabel": "반환 코드"
- },
- "SecurityTemplate": {
- "aSR": "공격 표면 감소",
- "accountProtection": "계정 보호",
- "allDevices": "모든 디바이스",
- "antivirus": "바이러스 백신",
- "antivirusReporting": "바이러스 백신 보고(미리 보기)",
- "conditionalAccess": "조건부 액세스",
- "deviceCompliance": "디바이스 준수",
- "diskEncryption": "디스크 암호화",
- "eDR": "엔드포인트 검색 및 응답",
- "firewall": "방화벽",
- "helpSupport": "도움말 및 지원",
- "setup": "설치",
- "wdapt": "엔드포인트용 Microsoft Defender"
- },
- "PolicySet": {
- "appManagement": "애플리케이션 관리",
- "assignments": "할당",
- "basics": "기본",
- "deviceEnrollment": "디바이스 등록",
- "deviceManagement": "디바이스 관리",
- "scopeTags": "범위 태그",
- "appConfigurationTitle": "앱 구성 정책",
- "appProtectionTitle": "앱 보호 정책",
- "appTitle": "앱",
- "iOSAppProvisioningTitle": "iOS 앱 프로비저닝 프로필",
- "deviceLimitRestrictionTitle": "디바이스 개수 제한",
- "deviceTypeRestrictionTitle": "디바이스 유형 제한",
- "enrollmentStatusSettingTitle": "등록 상태 페이지",
- "windowsAutopilotDeploymentProfileTitle": "Windows Autopilot 배포 프로필",
- "deviceComplianceTitle": "디바이스 준수 정책",
- "deviceConfigurationTitle": "디바이스 구성 프로필",
- "powershellScriptTitle": "Powershell 스크립트"
- },
- "AssignmentAction": {
- "exclude": "제외",
- "include": "포함됨",
- "includeAllDevicesVirtualGroup": "포함됨",
- "includeAllUsersVirtualGroup": "포함됨"
- },
- "WindowsFeatureUpdate": {
- "EndOFSupportStatus": {
- "notSupported": "지원되지 않음",
- "supportEnding": "지원 종료",
- "supported": "지원함"
- }
- },
- "InstallIntent": {
- "available": "등록된 디바이스에 사용 가능",
- "availableWithoutEnrollment": "등록 유무에 상관없이 사용 가능",
- "required": "필수",
- "uninstall": "제거"
- },
"OutlookAppConfig": {
"DataProtectionConfiguration": {
"header": "데이터 보호 구성"
@@ -1938,307 +100,864 @@
"themesEnabledTitle": "테마 사용",
"themesEnabledTooltip": "사용자가 사용자 지정 시각적 개체 테마를 사용할 수 있는지 여부를 지정합니다."
},
- "TAP": {
- "AccessRequirements": {
- "infoText": "사용자가 업무용으로 앱에 액세스하기 위해 충족해야 하는 PIN 및 자격 증명 요구 사항을 구성합니다."
- },
- "DataProtection": {
- "infoText": "이 그룹에는 잘라내기, 복사, 붙여넣기, 저장 제한과 같은 DLP(데이터 유실 방지) 컨트롤이 포함됩니다. 이 설정은 사용자가 앱의 데이터와 상호작용하는 방법을 결정합니다."
- },
- "DeviceTypes": {
- "selectOne": "하나 이상의 디바이스 유형을 선택합니다."
- },
- "TargetedApps": {
- "TargetToAll": {
- "label": "모든 디바이스 유형에 있는 앱으로 대상 지정"
- },
- "infoText": "다른 디바이스의 앱에 이 정책을 적용하는 방법을 선택한 다음 앱을 하나 이상 추가합니다.",
- "selectOne": "정책을 만들려면 앱을 하나 이상 선택하세요."
- }
- },
- "TACSettings": {
- "edgeSettings": "Edge 구성 설정",
- "edgeWindowsDataProtectionSettings": "Edge(Windows) 데이터 보호 설정 - 미리 보기",
- "edgeWindowsSettings": "Edge(Windows) 구성 설정 - 미리 보기",
- "generalAppConfig": "일반 앱 구성",
- "generalSettings": "일반 구성 설정",
- "outlookSMIMEConfig": "Outlook S/MIME 설정",
- "outlookSettings": "Outlook 구성 설정",
- "sMIME": "S/MIME"
- },
- "OfficeApplicationAdditionalType": {
- "projectProRetail": "Project Online 데스크톱 클라이언트",
- "visioProRetail": "Visio Online 플랜 2"
- },
- "Win32Requirements": {
- "AdditionalRequirements": {
- "File": {
- "fileOrFolderToolTip": "선택한 요구 사항으로써 파일 또는 폴더입니다.",
- "pathToolTip": "검색할 파일 또는 폴더의 전체 경로입니다.",
- "property": "속성",
- "valueToolTip": "선택한 검색 방법과 일치하는 요구 사항 값을 선택합니다. 날짜 및 시간 요구 사항은 현지 형식으로 입력해야 합니다."
- },
- "GridColumns": {
- "pathOrScript": "경로/스크립트",
- "type": "형식"
- },
- "Registry": {
- "keyPath": "키 경로",
- "keyPathTooltip": "요구 사항으로써 값을 포함하는 레지스트리 항목의 전체 경로입니다.",
- "operator": "연산자",
- "operatorTooltip": "비교 연산자를 선택합니다.",
- "registryRequirement": "레지스트리 키 요구 사항",
- "registryRequirementTooltip": "레지스트리 키 요구 사항 비교를 선택합니다.",
- "valueName": "값 이름",
- "valueNameTooltip": "필요한 레지스트리 값의 이름입니다."
- },
- "RequirementTypeOptions": {
- "fileType": "파일",
- "registry": "레지스트리",
- "script": "스크립트"
- },
- "Script": {
- "RequirementMethodOptions": {
- "boolean": "부울",
- "dateTime": "날짜 및 시간",
- "float": "부동 소수점",
- "integer": "정수",
- "string": "문자열",
- "version": "버전"
- },
- "ScriptContent": {
- "emptyMessage": "스크립트 콘텐츠는 비워 둘 수 없습니다."
- },
- "duplicateName": "스크립트 이름 {0}이(가)이미 사용 중입니다. 다른 이름을 입력하세요.",
- "enforceSignatureCheck": "스크립트 서명 확인 적용",
- "enforceSignatureCheckTooltip": "스크립트가 신뢰할 수 있는 게시자에 의해 서명되었는지 확인하려면 '예'를 선택합니다(경고나 메시지가 표시되지 않고 스크립트가 실행되도록 함). 스크립트가 차단 해제된 상태로 실행됩니다. 서명 확인 없이 최종 사용자 확인으로 스크립트를 실행하려면 '아니요'(기본값)를 선택합니다.",
- "loggedOnCredentials": "로그온된 자격 증명을 사용하여 이 스크립트 실행",
- "loggedOnCredentialsTooltip": "로그인한 디바이스 자격 증명을 사용하여 스크립트 실행",
- "operatorTooltip": "요구 사항 비교 연산자를 선택합니다.",
- "requirementMethod": "출력 데이터 형식 선택",
- "requirementMethodTooltip": "검색 일치 요구 사항을 확인할 때 사용하는 데이터 형식을 선택합니다.",
- "scriptFile": "스크립트 파일",
- "scriptFileTooltip": "클라이언트에서 앱의 존재를 검색하는 PowerShell 스크립트를 선택합니다. 앱이 검색되면 요구 사항 프로세스에서 0 값 종료 코드를 제공하고 STDOUT에 문자열 값을 씁니다.",
- "scriptName": "스크립트 이름",
- "value": "값",
- "valueTooltip": "선택한 검색 방법과 일치하는 요구 사항 값을 선택합니다. 날짜 및 시간 요구 사항은 현지 형식으로 입력해야 합니다."
- },
- "bladeTitle": "요구 사항 규칙 추가",
- "createRequirementHeader": "요구 사항을 만듭니다.",
- "header": "추가 요구 사항 규칙 구성",
- "label": "추가 요구 사항 규칙",
- "noRequirementsSelectedPlaceholder": "요구 사항이 지정되지 않았습니다.",
- "requirementType": "요구 사항 유형",
- "requirementTypeTooltip": "요구 사항을 확인하는 방법을 결정하는 데 사용되는 검색 방법 유형을 선택합니다."
- },
- "architectures": "운영 체제 아키텍처",
- "architecturesTooltip": "앱을 설치하는 데 필요한 아키텍처를 선택합니다.",
- "bladeTitle": "요구 사항",
- "diskSpace": "필요한 디스크 공간(MB)",
- "diskSpaceTooltip": "앱을 설치하는 데 필요한 시스템 드라이브의 사용 가능한 디스크 공간입니다.",
- "header": "앱을 설치하기 전에 디바이스가 충족해야 하는 요구 사항 지정:",
- "maximumTextFieldValue": "값은 {0} 이하여야 합니다.",
- "minimumCpuSpeed": "필요한 최소 CPU 속도(MHz)",
- "minimumCpuSpeedTooltip": "앱을 설치하는 데 필요한 최소 CPU 속도입니다.",
- "minimumLogicalProcessors": "필요한 최소 논리 프로세서 수",
- "minimumLogicalProcessorsTooltip": "앱을 설치하는 데 필요한 최소 논리 프로세서 수입니다.",
- "minimumOperatingSystem": "최소 운영 체제",
- "minimumOperatingSystemTooltip": "앱을 설치하는 데 필요한 최소 운영 체제를 선택합니다.",
- "minumumTextFieldValue": "값은 {0} 이상이어야 합니다.",
- "physicalMemory": "필요한 실제 메모리(MB)",
- "physicalMemoryTooltip": "앱을 설치하는 데 필요한 실제 메모리(RAM)입니다.",
- "selectorLabel": "요구 사항",
- "validNumber": "유효한 숫자를 입력하세요."
- },
- "ArchitectureOptions": {
- "sixtyFourBit": "64비트",
- "thirtyTwoBit": "32비트"
- },
- "Countries": {
- "ae": "아랍에미리트",
- "ag": "앤티가 바부다",
- "ai": "앵귈라",
- "al": "알바니아",
- "am": "아르메니아",
- "ao": "앙골라",
- "ar": "아르헨티나",
- "at": "오스트리아",
- "au": "오스트레일리아",
- "az": "아제르바이잔",
- "bb": "바베이도스",
- "be": "벨기에",
- "bf": "부르키나파소",
- "bg": "불가리아",
- "bh": "바레인",
- "bj": "베냉",
- "bm": "버뮤다",
- "bn": "브루나이",
- "bo": "볼리비아",
- "br": "브라질",
- "bs": "바하마",
- "bt": "부탄",
- "bw": "보츠와나",
- "by": "벨라루스",
- "bz": "벨리즈",
- "ca": "캐나다",
- "cg": "콩고 공화국",
- "ch": "스위스",
- "cl": "칠레",
- "cn": "중국",
- "co": "콜롬비아",
- "cr": "코스타리카",
- "cv": "카보베르데",
- "cy": "키프로스",
- "cz": "체코 공화국",
- "de": "독일",
- "dk": "덴마크",
- "dm": "도미니카",
- "do": "도미니카 공화국",
- "dz": "알제리",
- "ec": "에콰도르",
- "ee": "에스토니아",
- "eg": "이집트",
- "es": "스페인",
- "fi": "핀란드",
- "fj": "피지",
- "fm": "미크로네시아",
- "fr": "프랑스",
- "gb": "영국",
- "gd": "그레나다",
- "gh": "가나",
- "gm": "감비아",
- "gr": "그리스",
- "gt": "과테말라",
- "gw": "기니비사우",
- "gy": "가이아나",
- "hk": "홍콩",
- "hn": "온두라스",
- "hr": "크로아티아",
- "hu": "헝가리",
- "id": "인도네시아",
- "ie": "아일랜드",
- "il": "이스라엘",
- "in": "인도",
- "is": "아이슬란드",
- "it": "이탈리아",
- "jm": "자메이카",
- "jo": "요르단",
- "jp": "일본",
- "ke": "케냐",
- "kg": "키르기스스탄",
- "kh": "캄보디아",
- "kn": "세인트키츠 네비스",
- "kr": "대한민국",
- "kw": "쿠웨이트",
- "ky": "케이맨 제도",
- "kz": "카자흐스탄",
- "la": "라오스",
- "lb": "레바논",
- "lc": "세인트 루시아",
- "lk": "스리랑카",
- "lr": "라이베리아",
- "lt": "리투아니아",
- "lu": "룩셈부르크",
- "lv": "라트비아",
- "md": "몰도바 공화국",
- "mg": "마다가스카르",
- "mk": "북마케도니아",
- "ml": "말리",
- "mn": "몽골",
- "mo": "마카오",
- "mr": "모리타니",
- "ms": "몬트세라트",
- "mt": "몰타",
- "mu": "모리셔스",
- "mw": "말라위",
- "mx": "멕시코",
- "my": "말레이시아",
- "mz": "모잠비크",
- "na": "나미비아",
- "ne": "니제르",
- "ng": "나이지리아",
- "ni": "니카라과",
- "nl": "네덜란드",
- "no": "노르웨이",
- "np": "네팔",
- "nz": "뉴질랜드",
- "om": "오만",
- "pa": "파나마",
- "pe": "페루",
- "pg": "파푸아뉴기니",
- "ph": "필리핀",
- "pk": "파키스탄",
- "pl": "폴란드",
- "pt": "포르투갈",
- "pw": "팔라우",
- "py": "파라과이",
- "qa": "카타르",
- "ro": "루마니아",
- "ru": "러시아",
- "sa": "사우디아라비아",
- "sb": "솔로몬 제도",
- "sc": "세이셸",
- "se": "스웨덴",
- "sg": "싱가포르",
- "si": "슬로베니아",
- "sk": "슬로바키아",
- "sl": "시에라리온",
- "sn": "세네갈",
- "sr": "수리남",
- "st": "상투메 프린시페",
- "sv": "엘살바도르",
- "sz": "스와질란드",
- "tc": "터크스 케이커스",
- "td": "차드",
- "th": "태국",
- "tj": "타지키스탄",
- "tm": "투르크메니스탄",
- "tn": "튀니지",
- "tr": "터키",
- "tt": "트리니다드 토바고",
- "tw": "대만",
- "tz": "탄자니아",
- "ua": "우크라이나",
- "ug": "우간다",
- "us": "미국",
- "uy": "우루과이",
- "uz": "우즈베키스탄",
- "vc": "세인트 빈센트 그레나딘",
- "ve": "베네수엘라",
- "vg": "영국령 버진 아일랜드",
- "vn": "베트남",
- "ye": "예멘",
- "za": "남아프리카 공화국",
- "zw": "짐바브웨"
+ "Languages": {
+ "ar-aE": "아랍어(아랍에미리트)",
+ "ar-bH": "아랍어(바레인)",
+ "ar-dZ": "아랍어(알제리)",
+ "ar-eG": "아랍어(이집트)",
+ "ar-iQ": "아랍어(이라크)",
+ "ar-jO": "아랍어(요르단)",
+ "ar-kW": "아랍어(쿠웨이트)",
+ "ar-lB": "아랍어(레바논)",
+ "ar-lY": "아랍어(리비아)",
+ "ar-mA": "아랍어(모로코)",
+ "ar-oM": "아랍어(오만)",
+ "ar-qA": "아랍어(카타르)",
+ "ar-sA": "아랍어(사우디아라비아)",
+ "ar-sY": "아랍어(시리아)",
+ "ar-tN": "아랍어(튀니지)",
+ "ar-yE": "아랍어(예멘)",
+ "az-cyrl": "아제르바이잔어(키릴 자모, 아제르바이잔)",
+ "az-latn": "아제르바이잔어(라틴 문자, 아제르바이잔)",
+ "bn-bD": "벵골어(방글라데시)",
+ "bn-iN": "벵골어(인도)",
+ "bs-cyrl": "보스니아어(키릴 자모)",
+ "bs-latn": "보스니아어(라틴 문자)",
+ "zh-cN": "중국어(PRC)",
+ "zh-hK": "중국어(홍콩 특별 행정구)",
+ "zh-mO": "중국어(마카오 특별 행정구)",
+ "zh-sG": "중국어(싱가포르)",
+ "zh-tW": "중국어(대만)",
+ "hr-bA": "크로아티아어(라틴 문자)",
+ "hr-hR": "크로아티아어(크로아티아)",
+ "nl-bE": "네덜란드어(벨기에)",
+ "nl-nL": "네덜란드어(네덜란드)",
+ "en-aU": "영어(오스트레일리아)",
+ "en-bZ": "영어(벨리즈)",
+ "en-cA": "영어(캐나다)",
+ "en-cabn": "영어(카리브 해)",
+ "en-iE": "영어(아일랜드)",
+ "en-iN": "영어(인도)",
+ "en-jM": "영어(자메이카)",
+ "en-mY": "영어(말레이시아)",
+ "en-nZ": "영어(뉴질랜드)",
+ "en-pH": "영어(필리핀)",
+ "en-sG": "영어(싱가포르)",
+ "en-tT": "영어(트리니다드 토바고)",
+ "en-uK": "영어(영국)",
+ "en-uS": "영어(미국)",
+ "en-zA": "영어(남아프리카 공화국)",
+ "en-zW": "영어(짐바브웨)",
+ "fr-bE": "프랑스어(벨기에)",
+ "fr-cA": "프랑스어(캐나다)",
+ "fr-cH": "프랑스어(스위스)",
+ "fr-fR": "프랑스어(프랑스)",
+ "fr-lU": "프랑스어(룩셈부르크)",
+ "fr-mC": "프랑스어(모나코)",
+ "de-aT": "독일어(오스트리아)",
+ "de-cH": "독일어(스위스)",
+ "de-dE": "독일어(독일)",
+ "de-lI": "독일어(리히텐슈타인)",
+ "de-lU": "독일어(룩셈부르크)",
+ "iu-cans": "이눅티투트어(음절형, 캐나다)",
+ "iu-latn": "이눅티투트어(라틴 문자, 캐나다)",
+ "it-cH": "이탈리아어(스위스)",
+ "it-iT": "이탈리아어(이탈리아)",
+ "ms-bN": "말레이어(브루나이)",
+ "ms-mY": "말레이어(말레이시아)",
+ "mn-cN": "몽골어(전통 몽골어, 중국)",
+ "mn-mN": "몽골어(키릴 자모, 몽골)",
+ "no-nB": "노르웨이어, 복말(노르웨이)",
+ "no-nn": "노르웨이어(니노르스크, 노르웨이)",
+ "pt-bR": "포르투갈어(브라질)",
+ "pt-pT": "포르투갈어(포르투갈)",
+ "quz-bO": "케추아어(볼리비아)",
+ "quz-eC": "케추아어(에콰도르)",
+ "quz-pE": "케추아어(페루)",
+ "smj-nO": "룰레 라프어(노르웨이)",
+ "smj-sE": "룰레 라프어(스웨덴)",
+ "se-fI": "북부 라프어(핀란드)",
+ "se-nO": "북부 라프어(노르웨이)",
+ "se-sE": "북부 라프어(스웨덴)",
+ "sma-nO": "남부 라프어(노르웨이)",
+ "sma-sE": "남부 라프어(스웨덴)",
+ "smn": "이나리 라프어(핀란드)",
+ "sms": "스콜트 라프어(핀란드)",
+ "sr-Cyrl-bA": "세르비아어(키릴 자모)",
+ "sr-Cyrl-rS": "세르비아어(키릴 자모, 세르비아-몬테네그로)",
+ "sr-Latn-bA": "세르비아어(라틴 문자)",
+ "sr-Latn-rS": "세르비아어(라틴 문자, 세르비아)",
+ "dsb": "저지 소르비아어(독일)",
+ "hsb": "고지 소르비아어(독일)",
+ "es-es-tradnl": "스페인어(스페인, 전통 정렬)",
+ "es-aR": "스페인어(아르헨티나)",
+ "es-bO": "스페인어(볼리비아)",
+ "es-cL": "스페인어(칠레)",
+ "es-cO": "스페인어(콜롬비아)",
+ "es-cR": "스페인어(코스타리카)",
+ "es-dO": "스페인어(도미니카 공화국)",
+ "es-eC": "스페인어(에콰도르)",
+ "es-eS": "스페인어(스페인)",
+ "es-gT": "스페인어(과테말라)",
+ "es-hN": "스페인어(온두라스)",
+ "es-mX": "스페인어(멕시코)",
+ "es-nI": "스페인어(니카라과)",
+ "es-pA": "스페인어(파나마)",
+ "es-pE": "스페인어(페루)",
+ "es-pR": "스페인어(푸에르토리코)",
+ "es-pY": "스페인어(파라과이)",
+ "es-sV": "스페인어(엘살바도르)",
+ "es-uS": "스페인어(미국)",
+ "es-uY": "스페인어(우루과이)",
+ "es-vE": "스페인어(베네수엘라)",
+ "sv-fI": "스웨덴어(핀란드)",
+ "uz-cyrl": "우즈베크어(키릴 자모, 우즈베키스탄)",
+ "uz-latn": "우즈베크어(라틴 문자, 우즈베키스탄)",
+ "af": "아프리칸스어(남아프리카 공화국)",
+ "sq": "알바니아어(알바니아)",
+ "am": "암하라어(에티오피아)",
+ "hy": "아르메니아어(아르메니아)",
+ "as": "아삼어(인도)",
+ "ba": "바슈키르어(러시아)",
+ "eu": "바스크어(바스크어)",
+ "be": "벨라루스어(벨로루시)",
+ "br": "브르타뉴어(프랑스)",
+ "bg": "불가리아어(불가리아)",
+ "ca": "카탈로니아어(카탈로니아어)",
+ "co": "코르시카어(프랑스)",
+ "cs": "체코어(체코)",
+ "da": "덴마크어(덴마크)",
+ "prs": "다리어(아프가니스탄)",
+ "dv": "디베히어(몰디브)",
+ "et": "에스토니아어(에스토니아)",
+ "fo": "페로어(페로 제도)",
+ "fil": "필리핀어(필리핀)",
+ "fi": "핀란드어(핀란드)",
+ "gl": "갈리시아어(갈리시아)",
+ "ka": "조지아어(그루지야)",
+ "el": "그리스어(그리스)",
+ "gu": "구자라트어(인도)",
+ "ha": "하우사어(라틴 문자, 나이지리아)",
+ "he": "히브리어(이스라엘)",
+ "hi": "힌디어(인도)",
+ "hu": "헝가리어(헝가리)",
+ "is": "아이슬란드어(아이슬란드)",
+ "ig": "이그보어(나이지리아)",
+ "id": "인도네시아어(인도네시아)",
+ "ga": "아일랜드어(아일랜드)",
+ "xh": "코사어(남아프리카 공화국)",
+ "zu": "줄루어(남아프리카 공화국)",
+ "ja": "일본어(일본)",
+ "kn": "칸나다어(인도)",
+ "kk": "카자흐어(카자흐스탄)",
+ "km": "크메르어(캄보디아)",
+ "rw": "키냐르완다어(르완다)",
+ "sw": "스와힐리어(케냐)",
+ "kok": "코카니어(인도)",
+ "ko": "한국어(대한민국)",
+ "ky": "키르기스어(키르기스스탄)",
+ "lo": "라오어(라오스)",
+ "lv": "라트비아어(라트비아)",
+ "lt": "리투아니아어(리투아니아)",
+ "lb": "룩셈부르크어(룩셈부르크)",
+ "mk": "마케도니아어(북마케도니아)",
+ "ml": "몽골어(인도)",
+ "mt": "몰타어(몰타)",
+ "mi": "마오리어(뉴질랜드)",
+ "mr": "마라티어(인도)",
+ "moh": "모호크어(모호크)",
+ "ne": "네팔어(네팔)",
+ "oc": "오크어(프랑스)",
+ "or": "오디아어(인도)",
+ "ps": "파슈토어(아프가니스탄)",
+ "fa": "페르시아어",
+ "pl": "폴란드어(폴란드)",
+ "pa": "펀잡어(인도)",
+ "ro": "루마니아어(루마니아)",
+ "rm": "로만시어(스위스)",
+ "ru": "러시아어(러시아)",
+ "sa": "산스크리트어(인도)",
+ "st": "세소토 사 레보아어(남아프리카 공화국)",
+ "tn": "세츠와나어(남아프리카 공화국)",
+ "si": "스리랑카어(스리랑카)",
+ "sk": "슬로바키아어(슬로바키아)",
+ "sl": "슬로베니아어(슬로베니아)",
+ "sv": "스웨덴어(스웨덴)",
+ "syr": "시리아어(시리아)",
+ "tg": "타지크어(키릴 자모, 타지키스탄)",
+ "ta": "타밀어(인도)",
+ "tt": "타타르어(러시아)",
+ "te": "텔루구어(인도)",
+ "th": "태국어(태국)",
+ "bo": "티베트어(중국)",
+ "tr": "터키어(터키)",
+ "tk": "투르크멘어(투르크메니스탄)",
+ "uk": "우크라이나어(우크라이나)",
+ "ur": "우르두어(파키스탄)",
+ "vi": "베트남어(베트남)",
+ "cy": "웨일스어(영국)",
+ "wo": "월로프어(세네갈)",
+ "ii": "이 문자(중국)",
+ "yo": "요루바어(나이지리아)"
+ },
+ "Category": {
+ "airPlay": "AirPlay",
+ "airPrint": "AirPrint",
+ "androidDefenderAtp": "엔드포인트용 Microsoft Defender",
+ "androidDeviceOwnerApplications": "애플리케이션",
+ "androidForWorkPassword": "디바이스 암호",
+ "appManagement": "앱 차단 또는 허용",
+ "applicationGuard": "Microsoft Defender Application Guard",
+ "applicationRestrictions": "제한된 앱",
+ "applicationVisibility": "앱 표시 또는 숨기기",
+ "applications": "앱 스토어",
+ "applicationsAndGames": "앱 스토어, 문서 보기, 게임",
+ "applicationsAndGoogle": "Google Play 스토어",
+ "appsAndExperience": "앱 및 환경",
+ "associatedDomains": "연결된 도메인",
+ "autonomousSingleAppMode": "자치 단일 앱 모드",
+ "azureOperationalInsights": "Azure Operational Insights",
+ "bitLocker": "Windows 암호화",
+ "browser": "브라우저",
+ "builtinApps": "기본 제공 앱",
+ "cellular": "셀룰러",
+ "cloudAndStorage": "클라우드 및 스토리지",
+ "cloudPrint": "클라우드 프린터",
+ "complianceEmailProfile": "전자 메일",
+ "connectedDevices": "연결된 디바이스",
+ "connectivity": "셀룰러 및 연결",
+ "contentCaching": "콘텐츠 캐싱",
+ "controlPanelAndSettings": "제어판 및 설정",
+ "credentialGuard": "Microsoft Defender Credential Guard",
+ "customCompliance": "사용자 지정 규정 준수",
+ "customCompliancePreview": "사용자 지정 규정 준수(미리 보기)",
+ "customConfiguration": "사용자 지정 구성 프로필",
+ "customOMASettings": "사용자 지정 OMA-URI 설정",
+ "customPreferences": "기본 설정 파일",
+ "defender": "Microsoft Defender 바이러스 백신",
+ "defenderAntivirus": "Microsoft Defender 바이러스 백신",
+ "defenderExploitGuard": "Microsoft Defender Exploit Guard",
+ "defenderFirewall": "Microsoft Defender 방화벽",
+ "defenderLocalSecurityOptions": "로컬 디바이스 보안 옵션",
+ "defenderSecurityCenter": "Microsoft Defender 보안 센터",
+ "deliveryOptimization": "제공 최적화",
+ "derivedCredentialAuthenticationConfiguration": "파생된 자격 증명",
+ "deviceExperience": "디바이스 환경",
+ "deviceFirmwareConfigurationInterface": "디바이스 펌웨어 구성 인터페이스",
+ "deviceGuard": "Microsoft Defender 애플리케이션 제어",
+ "deviceHealth": "디바이스 상태",
+ "devicePassword": "디바이스 암호",
+ "deviceProperties": "디바이스 속성",
+ "deviceRestrictions": "일반",
+ "deviceSecurity": "시스템 보안",
+ "display": "표시",
+ "domainJoin": "도메인 가입",
+ "domains": "도메인",
+ "edgeBrowser": "Microsoft Edge 레거시(버전 45 이하)",
+ "edgeBrowserSmartScreen": "Microsoft Defender SmartScreen",
+ "edgeKiosk": "Microsoft Edge 키오스크 모드",
+ "editionUpgrade": "버전 업그레이드",
+ "education": "교육",
+ "educationDeviceCerts": "디바이스 인증서",
+ "educationStudentCerts": "학생 인증서",
+ "educationTakeATest": "테스트 수행",
+ "educationTeacherCerts": "교사 인증서",
+ "emailProfile": "전자 메일",
+ "enterpriseDataProtection": "Windows Information Protection",
+ "expeditedCheckin": "모바일 디바이스 관리 구성",
+ "extensibleSingleSignOn": "Single Sign-On 앱 확장",
+ "filevault": "FileVault",
+ "firewall": "방화벽",
+ "games": "게임",
+ "gatekeeper": "게이트키퍼",
+ "healthMonitoring": "상태 모니터링",
+ "homeScreenLayout": "홈 화면 레이아웃",
+ "iOSWallpaper": "배경 무늬",
+ "importedPFX": "PKCS 가져온 인증서",
+ "iosDefenderAtp": "엔드포인트용 Microsoft Defender",
+ "iosKiosk": "키오스크",
+ "kernelExtensions": "커널 확장",
+ "keyboardAndDictionary": "키보드 및 사전",
+ "kiosk": "키오스크",
+ "kioskAndroidEnterprise": "전용 디바이스",
+ "kioskConfiguration": "키오스크",
+ "kioskConfigurationV2": "키오스크",
+ "kioskWebBrowser": "키오스크 웹 브라우저",
+ "lockScreenMessage": "잠금 화면 메시지",
+ "lockedScreenExperience": "잠긴 화면 환경",
+ "logging": "보고 및 원격 분석",
+ "loginItems": "로그인 항목",
+ "loginWindow": "로그인 창",
+ "macDefenderAtp": "엔드포인트용 Microsoft Defender",
+ "maintenance": "유지 관리",
+ "malware": "맬웨어",
+ "messaging": "메시징",
+ "networkBoundary": "네트워크 경계",
+ "networkProxy": "네트워크 프록시",
+ "notifications": "앱 알림",
+ "pKCS": "PKCS 인증서",
+ "password": "암호",
+ "personalProfile": "개인 프로필",
+ "personalization": "개인 설정",
+ "policyOverride": "그룹 정책 재정의",
+ "powerSettings": "전원 설정",
+ "printer": "프린터",
+ "privacy": "개인정보취급방침",
+ "privacyPerApp": "앱별 개인 정보 보호 예외",
+ "privacyPreferences": "개인 정보 기본 설정",
+ "projection": "프로젝션",
+ "sCCMCompliance": "Configuration Manager 준수",
+ "sCEP": "SCEP 인증서",
+ "sCEPProperties": "SCEP 인증서",
+ "sMode": "모드 전환(Windows 참가자인 경우에만)",
+ "safari": "Safari",
+ "search": "검색",
+ "session": "세션",
+ "sharedDevice": "공유 iPad",
+ "sharedPCAccountManager": "공유 다중 사용자 디바이스",
+ "singleSignOn": "Single Sign-On",
+ "smartScreen": "Microsoft Defender SmartScreen",
+ "softwareUpdates": "설정",
+ "start": "시작",
+ "systemExtensions": "시스템 확장",
+ "systemSecurity": "시스템 보안",
+ "trustedCert": "신뢰할 수 있는 인증서",
+ "updates": "업데이트",
+ "userRights": "사용자 권한",
+ "usersAndAccounts": "사용자 및 계정",
+ "vPN": "기본 VPN",
+ "vPNApps": "자동 VPN",
+ "vPNAppsAndTrafficRules": "앱 및 트래픽 규칙",
+ "vPNConditionalAccess": "조건부 액세스",
+ "vPNConnectivity": "연결",
+ "vPNDNSTriggers": "DNS 설정",
+ "vPNIKEv2": "IKEv2 설정",
+ "vPNProxy": "프록시",
+ "vPNSplitTunneling": "분할 터널링",
+ "vPNTrustedNetwork": "신뢰할 수 있는 네트워크 검색",
+ "webContentFilter": "웹 콘텐츠 필터",
+ "wiFi": "Wi-Fi",
+ "win10Wifi": "Wi-Fi",
+ "windowsAtp": "엔드포인트용 Microsoft Defender",
+ "windowsDefenderATP": "엔드포인트용 Microsoft Defender",
+ "windowsHelloForBusiness": "비즈니스용 Windows Hello",
+ "windowsSpotlight": "Windows 추천",
+ "wiredNetwork": "유선 네트워크",
+ "wireless": "무선",
+ "wirelessProjection": "무선 프로젝션",
+ "workProfile": "회사 프로필 설정",
+ "workProfilePassword": "회사 프로필 암호",
+ "xboxServices": "Xbox 서비스",
+ "zebraMx": "MX 프로필(Zebra만)",
+ "complianceActionsLabel": "비준수에 대한 작업"
+ },
+ "WindowsFeatureUpdateProfile": {
+ "Details": {
+ "Description": {
+ "label": "설명"
+ },
+ "FeatureDeploymentSettings": {
+ "header": "기능 배포 설정"
+ },
+ "FeatureUpdateVersion": {
+ "infoballoon": "이 기능은 디바이스를 다운그레이드할 수 없습니다.",
+ "label": "배포할 기능 업데이트"
+ },
+ "GradualRolloutEndDate": {
+ "label": "마지막 그룹 가용성"
+ },
+ "GradualRolloutInterval": {
+ "label": "그룹 사이 일 수"
+ },
+ "GradualRolloutStartDate": {
+ "label": "첫 번째 그룹 가용성"
+ },
+ "Name": {
+ "label": "이름"
+ },
+ "RolloutOptions": {
+ "label": "롤아웃 옵션"
+ },
+ "RolloutSettings": {
+ "header": "Windows 업데이트에서 업데이트를 언제 사용할 수 있게 할까요?"
+ },
+ "ScopeSettings": {
+ "header": "이 정책의 범위 태그를 구성합니다."
+ },
+ "StartDateOnlyStartDate": {
+ "label": "사용 가능한 첫 번째 날짜"
+ },
+ "bladeTitle": "기능 업데이트 배포",
+ "deploymentSettingsTitle": "배포 설정",
+ "loadError": "로드하지 못했습니다.",
+ "windows11EULA": "배포할 이 기능 업데이트를 선택하면 이 운영 체제를 장치에 적용할 때 (1) 해당 Windows 라이선스를 볼륨 라이선싱을 통해 구입했거나 (2) 조직을 구속할 권한이 있고 조직을 대신하여 여기에서 확인할 수 있는 Microsoft 소프트웨어 사용 조건을 수락한다는 데 동의하는 것입니다. {0}"
+ },
+ "Notifications": {
+ "deploymentSaved": "\"{0}\"이(가) 저장되었습니다.",
+ "newFeatureUpdateDeploymentCreated": "새 기능 업데이트 배포가 생성되었습니다."
+ },
+ "TabName": {
+ "deploymentSettings": "배포 설정",
+ "groupAssignmentSettings": "할당",
+ "scopeSettings": "범위 태그"
+ }
+ },
+ "WIPPinRequirements": {
+ "WipLowercaseCharacterPinRequirements": {
+ "allow": "PIN에 소문자 사용 허용",
+ "notAllow": "PIN에 소문자 사용 허용 안 함",
+ "requireAtLeastOne": "PIN에 소문자를 하나 이상 사용해야 함"
+ },
+ "WipSpecialCharacterPinRequirements": {
+ "allow": "PIN에 특수 문자 사용 허용",
+ "notAllow": "PIN에 특수 문자 사용 허용 안 함",
+ "requireAtLeastOne": "PIN에 특수 문자를 하나 이상 사용해야 함"
+ },
+ "WipUppercaseCharacterPinRequirements": {
+ "allow": "PIN에 대문자 사용 허용",
+ "notAllow": "PIN에 대문자 사용 허용 안 함",
+ "requireAtLeastOne": "PIN에 대문자를 하나 이상 사용해야 함"
+ }
+ },
+ "OutlookAppConfigSettings": {
+ "AllowUserToChangeSetting": {
+ "title": "사용자가 설정을 변경할 수 있도록 허용",
+ "tooltip": "사용자가 설정을 변경할 수 있도록 허용할지를 지정합니다."
+ },
+ "AllowWorkAccounts": {
+ "title": "회사 또는 학교 계정만 허용",
+ "tooltip": " 이 설정을 사용하도록 설정하면 사용자가 Outlook 내에서 개인 메일 및 스토리지 계정을 추가할 수 없습니다. 사용자가 Outlook에 개인 계정을 추가한 경우 개인 계정을 제거하라는 메시지가 표시됩니다. 사용자가 개인 계정을 제거하지 않으면 회사 또는 학교 계정을 추가할 수 없습니다."
+ },
+ "BlockExternalImages": {
+ "title": "외부 이미지 차단",
+ "tooltip": "블록 외부 이미지를 사용하도록 설정하면 앱에서 인터넷에 호스트되어 있는 메시지 본문에 포함된 이미지 다운로드를 방지합니다. 구성되지 않도록 설정하면 기본 앱 설정이 [끄기]로 설정됩니다."
+ },
+ "ConfigureEmail": {
+ "title": "메일 계정 설정 구성"
+ },
+ "DefaultAppSignatureSetting": {
+ "Tooltip": {
+ "android": "기본 앱 서명은 앱이 메시지 작성 중 기본 서명으로 “Android용 Outlook 다운로드”를 사용할지 여부를 나타냅니다. 설정이 [끄기]로 구성된 경우 기본 서명은 사용되지 않지만, 사용자가 고유한 서명을 추가할 수 있습니다.\r\n\r\n[구성되지 않음]으로 설정된 경우 기본 앱 설정은 [켜기]로 설정됩니다.",
+ "iOS": "기본 앱 서명은 앱이 메시지 작성 중 기본 서명으로 “iOS용 Outlook 다운로드”를 사용할지 여부를 나타냅니다. 설정이 [끄기]로 구성된 경우 기본 서명은 사용되지 않지만, 사용자가 고유한 서명을 추가할 수 있습니다.\r\n\r\n[구성되지 않음]으로 설정된 경우 기본 앱 설정은 [켜기]로 설정됩니다."
+ },
+ "title": "기본 앱 서명"
+ },
+ "OfficeFeedReplies": {
+ "title": "피드 검색",
+ "tooltip": "피드 검색에는 가장 자주 액세스하는 Office 파일이 표시됩니다. 기본적으로, Delve가 해당 사용자에게 사용하도록 설정된 경우 이 피드를 사용할 수 있습니다. 구성되지 않음으로 설정하면 기본 앱 설정이 On으로 설정됩니다."
+ },
+ "OrganizeMailByThread": {
+ "title": "스레드별로 메일 구성",
+ "tooltip": "Outlook의 기본 동작은 메일 대화를 스레드된 대화 보기로 묶는 것입니다. 이 설정을 사용하지 않도록 설정하는 경우 Outlook은 각 메일을 개별적으로 표시하며 스레드별로 그룹화하지 않습니다."
+ },
+ "PlayMyEmails": {
+ "title": "내 전자 메일 재생",
+ "tooltip": "[내 전자 메일 재생] 기능은 앱에서 기본적으로 사용하도록 설정되어 있지 않지만 받은 편지함의 배너를 통해 적격 사용자로 기능의 수준이 올라갑니다. 이 기능이 [끄기]로 설정되면 앱에서 적격 사용자로 수준이 올라가지 않습니다. 사용자는 이 기능이 [끄기]로 설정된 경우에도 앱 내에서 [내 전자 메일 재생]을 수동으로 사용하도록 설정할 수 있습니다. [구성되지 않음]으로 설정하는 경우 기본 앱 설정은 [켜기]이며 적격 사용자로 기능의 수준이 올라갑니다."
+ },
+ "SuggestedReplies": {
+ "title": "제안된 회신",
+ "tooltip": "메시지를 여는 경우, Outlook에서 메시지 아래에 회신을 제안할 수 있습니다. 제안된 회신을 선택하면 회신을 보내기 전에 편집할 수 있습니다."
+ },
+ "SyncCalendars": {
+ "title": "일정 동기화",
+ "tooltip": "사용자가 Outlook 일정을 기본 일정 앱 및 데이터베이스와 동기화할 수 있는지 여부를 구성합니다."
+ },
+ "TextPredictions": {
+ "title": "텍스트 예측",
+ "tooltip": "Outlook에서 메시지를 작성할 때 단어와 구를 제안할 수 있습니다. Outlook에서 단어나 구를 제안하는 경우 수락하려면 제안된 단어나 구를 살짝 밉니다. [구성되지 않음]으로 설정하면 기본 앱 설정이 [켜기]로 설정됩니다."
+ },
+ "ThemesEnabled": {
+ "title": "테마 사용",
+ "tooltip": "사용자가 사용자 지정 시각적 개체 테마를 사용할 수 있는지 여부를 지정합니다."
+ }
+ },
+ "AssignmentFilters": {
+ "assignmentFilterColumnHeader": "필터",
+ "noFilters": "없음"
+ },
+ "Platform": {
+ "all": "모두",
+ "android": "Android 디바이스 관리자",
+ "androidAOSP": "Android(AOSP)",
+ "androidEnterprise": "Android Enterprise",
+ "androidForWork": "Android Enterprise",
+ "androidWorkProfile": "Android enterprise",
+ "common": "일반",
+ "iOS": "iOS/iPadOS",
+ "iosAndAndroidPlatformLabel": "iOS 및 Android",
+ "iosCommaAndroidPlatformLabel": "iOS, Android",
+ "linux": "Linux",
+ "macOS": "macOS",
+ "unknown": "알 수 없음",
+ "unsupported": "지원되지 않음",
+ "windows": "Windows",
+ "windows10": "Windows 10 이상",
+ "windows10CM": "Windows 10 이상(ConfigMgr)",
+ "windows10Holo": "Windows 10 Holographic",
+ "windows10Mobile": "Windows 10 Mobile",
+ "windows10Team": "Windows 10 Team",
+ "windows10X": "Windows 10X",
+ "windows8": "Windows 8.1 이상",
+ "windows8And10": "Windows 8 및 10",
+ "windowsPhone": "Windows Phone 8.1",
+ "windows10AndLater": "Windows 10 이상",
+ "windows10AndWindowsServer": "Windows 10, Windows 11 및 Windows Server(ConfigMgr)",
+ "windows10andLaterCM": "Windows 10 이상(ConfigMgr)",
+ "holoLens": "HoloLens",
+ "surfaceHub2": "Surface Hub 2",
+ "surfaceHub2S": "Surface Hub 2S",
+ "windowsPC": "Windows PC"
+ },
+ "AppInformationTab": {
+ "Error": {
+ "multipleChildApps": "macOS LOB 앱은 업로드된 패키지에 단일 앱이 포함되어 있는 경우에만 관리형으로 설치할 수 있습니다."
+ },
+ "Info": {
+ "AppStoreUrl": {
+ "android": "Google Play 저장소의 앱 목록 링크를 입력합니다. 예:",
+ "androidLink": "https://play.google.com/store/apps/details?id=com.microsoft.office.outlook",
+ "windows": "Microsoft Store의 앱 목록 링크를 입력합니다. 예:",
+ "windowsLink": "https://www.microsoft.com/en-us/p/microsoft-to-do-lists-tasks-reminders/9nblggh5r558"
+ },
+ "appPackageFile": "디바이스에 사이드로드할 수 있는 형식의 앱을 포함하는 파일입니다. 유효한 패키지 형식은 Android(.apk), iOS(.ipa), macOS(.pkg, .intunemac), Windows(.msi, .appx, .appxbundle, .msix, .msixbundle)입니다.",
+ "applicableDeviceType": "이 앱을 설치할 수 있는 디바이스 유형을 선택합니다.",
+ "category": "사용자가 회사 포털에서 보다 쉽게 정렬하고 찾을 수 있도록 앱을 분류합니다. 여러 범주를 선택할 수 있습니다.",
+ "categoryLink": "https://docs.microsoft.com/en-us/intune/apps/apps-add#create-and-edit-categories-for-apps",
+ "description": "디바이스 사용자가 앱의 용도 및/또는 앱에서 수행할 수 있는 작업을 이해하는 데 도움이 됩니다. 이 설명은 회사 포털에서 볼 수 있습니다.",
+ "developer": "앱을 개발한 회사 또는 개인의 이름입니다. 이 정보는 관리 센터에 로그인한 사용자에게 표시됩니다.",
+ "displayVersion": "앱의 버전입니다. 이 정보는 회사 포털의 사용자에게 표시됩니다.",
+ "infoUrl": "앱에 대한 자세한 정보가 있는 웹 사이트 또는 설명서에 사용자를 연결합니다. 정보 URL은 회사 포털의 사용자에게 표시됩니다.",
+ "isFeatured": "추천 앱은 사용자가 신속하게 확인할 수 있도록 회사 포털에 눈에 띄게 배치됩니다.",
+ "learnMore": "자세한 정보",
+ "logo": "앱에 연결된 로고를 업로드합니다. 이 로고는 회사 포털 전체에서 앱 옆에 표시됩니다.",
+ "macOSDmgAppPackageFile": "장치에서 사이드로드할 수 있는 형식으로 앱이 포함된 파일입니다. 유효한 패키지 유형: .dmg.",
+ "minOperatingSystem": "앱을 설치할 수 있는 최신 운영 체제 버전을 선택합니다. 이전 버전의 운영 체제가 설치된 디바이스에 앱을 할당하면 설치되지 않습니다.",
+ "name": "앱의 이름을 추가합니다. 이 이름은 Intune 앱 목록 및 회사 포털의 사용자에게 표시됩니다.",
+ "notes": "앱에 대한 추가 정보를 추가합니다. 참고는 관리 센터에 로그인한 사용자에게 표시됩니다.",
+ "owner": "조직의 라이선스를 관리하는 사용자의 이름이거나, 이 앱의 연락 지점입니다. 이 이름은 관리 센터에 로그인한 사용자에게 표시됩니다.",
+ "packageName": "앱의 패키지 이름을 확인하려면 장치 제조업체에 문의하세요. 패키지 이름 예시: com.example.app",
+ "privacyUrl": "앱의 개인 정보 설정 및 약관에 대한 자세한 정보를 보려는 사용자를 위한 링크를 제공합니다. 개인 정보 URL은 회사 포털의 사용자에게 표시됩니다.",
+ "publisher": "앱을 배포하는 개발자 또는 회사의 이름입니다. 이 정보는 회사 포털의 사용자에게 표시됩니다.",
+ "selectApp": "Intune으로 배포할 iOS 스토어 앱을 App Store에서 검색합니다.",
+ "useManagedBrowser": "필요한 경우 사용자가 웹 앱을 열 때 Microsoft Edge 또는 Intune Managed Browser 같은 Intune으로 보호되는 브라우저에서 열립니다. 이 설정은 iOS 및 Android 디바이스에 모두 적용됩니다.",
+ "useManagedBrowserLink": "https://docs.microsoft.com/en-us/intune/apps/app-configuration-managed-browser",
+ "win32AppPackageFile": "디바이스에서 사이드로드할 수 있는 형식으로 앱을 포함하는 파일입니다. 유효한 패키지 유형: .intunewin."
+ },
+ "descriptionPreview": "미리 보기",
+ "descriptionRequired": "설명은 필수입니다.",
+ "editDescription": "설명 편집",
+ "macOSMinOperatingSystemAdditionalInfo": ".pkg 파일을 업로드하기 위한 최소 운영 체제는 macOS 10.14입니다. 이전 최소 운영 체제를 선택하려면 .intunemac 파일을 업로드하세요.",
+ "name": "앱 정보",
+ "nameForOfficeSuitApp": "앱 제품군 정보"
+ },
+ "Tooltips": {
+ "PolicySettings": {
+ "TouchId1": {
+ "android": "Android에서는 PIN 대신에 지문 식별 사용을 허용할 수 있습니다. 사용자가 자신의 작업 계정으로 이 앱에 액세스할 때 지문을 제공하라는 메시지가 표시됩니다.",
+ "iOS": "iOS/iPadOS 디바이스에서 PIN 대신 지문 ID를 사용하도록 할 수 있습니다. 사용자가 회사 계정을 사용하여 이 앱에 액세스하려고 하면 지문을 제공하라는 메시지가 표시됩니다.",
+ "mac": "Mac 디바이스에서 PIN 대신 지문 ID를 사용하도록 할 수 있습니다. 사용자가 회사 계정을 사용하여 이 앱에 액세스하려고 하면 지문을 제공하라는 메시지가 표시됩니다."
+ },
+ "appSharingFromLevel1": "다음 옵션 중 하나를 선택하여 이 앱이 데이터를 수신할 수 있는 앱을 지정하세요.",
+ "appSharingFromLevel2": "{0}: 다른 정책 관리 앱에서만 조직 문서 또는 계정의 데이터 받기 허용",
+ "appSharingFromLevel3": "{0}: 모든 앱에서 조직 문서 또는 계정의 데이터 받기 허용",
+ "appSharingFromLevel4": "{0}: 모든 앱에서 조직 문서 또는 계정의 데이터 받기 허용 안 함",
+ "appSharingFromLevel5": "{0}: 모든 앱에서의 데이터 전송을 허용하고 사용자 ID 없이 들어오는 모든 데이터를 조직 데이터로 처리합니다.",
+ "appSharingToLevel1": "다음 옵션 중 하나를 선택하여 이 앱이 데이터를 전송할 수 있는 앱을 지정하세요.",
+ "appSharingToLevel2": "{0}: 조직 데이터를 다른 정책 관리 앱으로만 보내기 허용",
+ "appSharingToLevel3": "{0}: 조직 데이터를 모든 앱으로 보내기 허용",
+ "appSharingToLevel4": "{0}: 조직 데이터를 모든 앱으로 보내기 허용 안 함",
+ "appSharingToLevel5": "{0}: 등록된 디바이스의 다른 정책 관리 앱으로의 전송 및 다른 MDM 관리 앱으로의 파일 전송만 허용합니다.",
+ "appSharingToLevel6": "{0}: 다른 정책 관리 앱으로의 전송만 허용하고 OS [여는 위치]/[공유] 대화 상자를 필터링하여 정책 관리 앱만 표시합니다.",
+ "conditionalEncryption1": "등록된 디바이스에서 디바이스 암호화가 검색된 경우 내부 앱 스토리지에 대해 앱 암호화를 사용하지 않으려면 {0}을(를) 선택합니다.",
+ "conditionalEncryption2": "참고: Intune은 Intune MDM을 통해서만 디바이스 등록을 검색할 수 있습니다. 외부 앱 스토리지는 관리되지 않는 애플리케이션에서 데이터에 액세스할 수 없도록 여전히 암호화됩니다.",
+ "contactSyncMac": "사용하지 않도록 설정하면 앱이 기본 주소록에 연락처를 저장할 수 없습니다.",
+ "contactsSync": "차단을 선택하여 정책 관리 앱이 기본 앱(연락처, 일정 및 위젯)에 데이터를 저장하지 못하도록 하거나 정책 관리 앱 내에서 추가 기능을 사용하지 못하도록 합니다. 허용을 선택하면 해당 기능이 정책 관리 앱 내에서 지원되어 사용되는 경우, 정책 관리 앱이 기본 앱에 데이터를 저장하거나 추가 기능을 사용할 수 있습니다.
앱은 앱 구성 정책을 통해 추가 구성 기능을 제공할 수 있습니다. 자세한 내용은 앱 설명서를 참조하세요.",
+ "encryptionAndroid1": "Intune 모바일 애플리케이션 관리 정책과 연결된 앱의 경우 Microsoft에서 암호화를 제공합니다. 데이터는 모바일 애플리케이션 관리 정책의 설정에 따라 파일 I/O 작업 동안 동기적으로 암호화됩니다. Android의 관리되는 앱은 플랫폼 암호화 라이브러리를 사용하여 CBC 모드에서 AES-128 암호화를 사용합니다. 이 암호화 방법은 FIPS 140-2를 준수하지 않습니다. SHA-256 암호화는 SigAlg 매개 변수를 사용하는 명시적 명령으로 지원되며 디바이스 4.2 이상에서만 작동합니다. 디바이스 스토리지의 콘텐츠는 항상 암호화됩니다.",
+ "encryptionAndroid2": "앱 정책에서 암호화를 요구하면 최종 사용자는 디바이스에 액세스하기 위해 PIN을 설정하고 사용해야 합니다. 디바이스 액세스를 위해 설정된 PIN이 없으면 앱이 시작되지 않고 최종 사용자에게 \"이 애플리케이션에 액세스하려면 회사에서 먼저 디바이스 PIN을 사용하도록 설정해야 합니다.\" 메시지가 표시됩니다.",
+ "encryptionMac1": "Intune 모바일 애플리케이션 관리 정책과 연결된 앱의 경우 Microsoft에서 암호화를 제공합니다. 데이터는 모바일 애플리케이션 관리 정책의 설정에 따라 파일 I/O 작업 동안 동기적으로 암호화됩니다. Mac의 관리되는 앱은 플랫폼 암호화 라이브러리를 사용하여 CBC 모드에서 AES-128 암호화를 사용합니다. 이 암호화 방법은 FIPS 140-2를 준수하지 않습니다. SHA-256 암호화는 SigAlg 매개 변수를 사용하는 명시적 명령으로 지원되며 디바이스 4.2 이상에서만 작동합니다. 디바이스 스토리지의 콘텐츠는 항상 암호화됩니다.",
+ "faceId1": "해당하는 경우 PIN 대신 얼굴 인식 사용을 허용할 수 있습니다. 사용자가 회사 계정으로 이 앱에 액세스하면 얼굴 인식을 제공하라는 메시지가 표시됩니다.",
+ "faceId2": "앱 액세스를 위해 PIN 대신 얼굴 인식을 허용하려면 예를 선택합니다.",
+ "managementLevelsAndroid1": "이 정책이 Android 디바이스 관리자 디바이스, Android Enterprise 디바이스 또는 관리형 디바이스에 적용되는지 여부를 지정하려면 이 옵션을 사용합니다.",
+ "managementLevelsAndroid2": "{0}: 관리되지 않는 디바이스는 Intune MDM 관리가 검색되지 않은 디바이스입니다. 여기에는 타사 MDM 공급업체가 포함됩니다.",
+ "managementLevelsAndroid3": "{0}: Android 디바이스 관리 API를 사용하는 Intune 관리 디바이스입니다.",
+ "managementLevelsAndroid4": "{0}: Android Enterprise 회사 프로필 또는 Android Enterprise 전체 디바이스 관리를 사용하는 Intune 관리 디바이스입니다.",
+ "managementLevelsIos1": "이 정책이 MDM 관리 디바이스 또는 관리되지 않는 디바이스에 적용되는지를 지정하려면 이 옵션을 사용합니다.",
+ "managementLevelsIos2": "{0}: 관리되지 않는 디바이스는 Intune MDM 관리가 검색되지 않은 디바이스입니다. 여기에는 타사 MDM 공급업체가 포함됩니다.",
+ "managementLevelsIos3": "{0}: 관리 디바이스는 Intune MDM에서 관리됩니다.",
+ "minAppVersion": "사용자가 앱에 대한 보안 액세스 권한을 받아야 하는, 필요한 최소 앱 버전 번호를 정의합니다.",
+ "minAppVersionWarning": "사용자가 앱에 대한 보안 액세스 권한을 받아야 하는, 권장되는 최소 앱 버전 번호를 정의합니다.",
+ "minOsVersion": "사용자가 앱에 대한 보안 액세스 권한을 받아야 하는, 필요한 최소 OS 버전 번호를 정의합니다.",
+ "minOsVersionWarning": "사용자가 앱에 대한 보안 액세스 권한을 받아야 하는, 권장되는 최소 OS 버전 번호를 정의합니다.",
+ "minPatchVersion": "사용자가 앱에 안전하게 액세스할 수 있는 최소 필수 Android 보안 패치 레벨을 정의합니다.",
+ "minPatchVersionWarning": "사용자가 앱에 안전하게 액세스할 수 있는 최소 권장 Android 보안 패치 레벨을 정의합니다.",
+ "minSdkVersion": "사용자가 앱에 대한 보안 액세스 권한을 받아야 하는, 필요한 최소 Intune Application Protection Policy SDK 버전을 정의합니다.",
+ "requireAppPinDefault": "등록된 디바이스에서 디바이스 잠금이 검색되면 예를 선택하여 앱 PIN을 사용하지 않도록 설정하세요.
",
+ "targetAllApps1": "모든 관리 상태의 디바이스에 있는 앱에 대한 정책을 대상으로 하려면 이 옵션을 사용합니다.",
+ "targetAllApps2": "정책 충돌을 해결하는 동안 사용자에게 특정 관리 상태를 대상으로 하는 정책이 있는 경우 이 설정은 대체됩니다.",
+ "touchId2": "앱 액세스를 위해 PIN 대신 지문 ID를 요구하려면 {0}을(를) 선택합니다."
+ },
+ "Tap": {
+ "pinResetAfterNumberOfDays": "사용자가 PIN을 재설정해야 하기 전에 지나야 하는 일수를 지정합니다.",
+ "previousPinBlockCount": "이 설정은 Intune에서 유지할 이전 PIN 수를 지정합니다. 새 Pin은 Intune에서 유지 관리하는 PIN과 달라야 합니다."
+ },
+ "WipPolicySettings": {
+ "25": "",
+ "allowWindowsSearch": "이렇게 하면 Windows Search에서 암호화된 데이터를 계속 검색할 수 있습니다.",
+ "authoritativeIpRanges": "Windows의 IP 범위 자동 검색을 재정의하려면 이 설정을 사용하도록 설정합니다.",
+ "authoritativeProxyServers": "Windows의 프록시 서버 자동 검색을 재정의하려면 이 설정을 사용합니다.",
+ "checkInput": "입력의 유효성 확인",
+ "dataRecoveryCert": "복구 인증서는 암호화 키가 손실되었거나 손상된 경우 암호화된 파일을 복구하는 데 사용할 수 있는 특별한 EFS(파일 시스템 암호화) 인증서입니다. 복구 인증서를 만들고 여기서 지정해야 합니다. 자세한 내용은 여기를 참조하세요.",
+ "enterpriseCloudResources": "회사용으로 처리하고 Windows Information Protection 정책으로 보호할 클라우드 리소스를 지정합니다. '|' 문자로 개별 항목을 구분하여 리소스를 여러 개 지정할 수 있습니다.
회사에 프록시가 구성되어 있는 경우 지정한 클라우드 리소스에 대한 트래픽을 어떤 프록시를 통해 라우트할지 지정할 수 있습니다.
URL[,Proxy]|URL[,Proxy]
프록시를 사용하지 않는 경우: contoso.sharepoint.com|contoso.visualstudio.com
프록시를 사용하는 경우: contoso.sharepoint.com,proxy.contoso.com|contoso.visualstudio.com,proxy.contoso.com
",
+ "enterpriseIPv4Ranges": "회사 네트워크를 구성하는 IPv4 범위를 지정합니다. 이러한 범위는 회사 네트워크 경계를 정의하기 위해 지정하는 엔터프라이즈 네트워크 도메인 이름과 함께 사용됩니다.
이 설정을 사용하려면 Windows Information Protection을 사용하도록 설정해야 합니다.
쉼표로 개별 항목을 구분하여 범위를 여러 개 지정할 수 있습니다.
예: 3.4.0.1-3.4.255.255,192.168.1.1-192.168.255.255
",
+ "enterpriseIPv6Ranges": "회사 네트워크를 구성하는 IPv6 범위를 지정합니다. 이러한 범위는 회사 네트워크 경계를 정의하기 위해 지정하는 엔터프라이즈 네트워크 도메인 이름과 함께 사용됩니다.
쉼표로 개별 항목을 구분하여 범위를 여러 개 지정할 수 있습니다.
예: 2001:4898:dc05::-2001:4898:dc05:ffff:ffff:ffff:ffff:ffff,2a01:110::-2a01:110:7fff:ffff:ffff:ffff:ffff:ffff
",
+ "enterpriseInternalProxyServers": "회사에 프록시가 구성되어 있는 경우 엔터프라이즈 클라우드 리소스 설정에 지정된 클라우드 리소스에 대한 트래픽을 어떤 프록시를 통해 라우트할지 지정할 수 있습니다.
세미콜론으로 개별 항목을 구분하여 값을 여러 개 지정할 수 있습니다.
예: contoso.internalproxy1.com;contoso.internalproxy2.com
",
+ "enterpriseNetworkDomainNames": "회사 네트워크를 구성하는 DNS 이름을 지정합니다. 이러한 이름은 회사 네트워크 경계를 정의하기 위해 지정하는 IP 범위와 함께 사용됩니다. 쉼표로 개별 항목을 구분하여 값을 여러 개 지정할 수 있습니다.
이 설정을 사용하려면 Windows Information Protection을 사용하도록 설정해야 합니다.
예: corp.contoso.com,region.contoso.com
",
+ "enterpriseProtectedDomainNames": "기업 네트워크를 형성하는 DNS 이름을 지정합니다. 이 이름은 기업 네트워크 경계를 정의하는 IP 범위와 함께 사용됩니다. '|' 문자로 개별 항목을 구분하여 여러 개의 값을 지정할 수 있습니다.
이 설정을 사용하려면 Windows Information Protection을 활성화해야 합니다.
예: corp.contoso.com|region.contoso.com
",
+ "enterpriseProxyServers": "회사 네트워크에 외부 대상 프록시가 있는 경우 여기에서 지정합니다. 프록시 서버 주소를 지정하는 경우 트래픽을 허용하고 Windows Information Protection을 통해 보호할 포트도 지정해야 합니다.
참고: 이 목록은 [엔터프라이즈 내부 프록시 서버] 목록에 있는 서버를 포함해서는 안 됩니다. 세미콜론으로 개별 항목을 구분하여 값을 여러 개 지정할 수 있습니다.
예: proxy.contoso.com:80;proxy2.contoso.com:80
",
+ "maxInactivityTime1": "디바이스가 유휴 상태로 전환된 후 디바이스의 PIN 또는 암호가 잠기게 되는 최대 허용 시간(분)을 지정합니다. 사용자는 설정 앱에 지정된 최대 시간보다 적은 기존 시간 제한 값을 선택할 수 있습니다. Lumia 950 및 950XL의 경우, 이 정책으로 설정된 값에 상관없이 최대 시간 제한 값이 5분입니다.",
+ "maxInactivityTime2": "0(기본값) - 시간 제한이 정의되지 않았습니다. 기본값 '0'은 '시간 제한이 정의되지 않음'으로 해석됩니다.",
+ "maxPasswordAttempts1": "이 정책은 모바일 디바이스 및 데스크톱에서 다양하게 동작합니다.",
+ "maxPasswordAttempts2": "모바일 디바이스에서는 사용자가 이 정책에 의해 설정된 값에 도달하면 디바이스가 초기화됩니다.",
+ "maxPasswordAttempts3": "데스크톱에서는 사용자가 이 정책에 의해 설정된 값에 도달하면 초기화되지 않습니다. 대신 데스크톱은 BitLocker 복구 모드로 전환되어 데이터가 액세스할 수는 없지만 복구는 가능한 상태가 됩니다. BitLocker를 사용하도록 설정하지 않은 경우 정책을 적용할 수 없습니다.",
+ "maxPasswordAttempts4": "사용자는 실패한 시도 횟수 제한에 도달하기 전에 잠금 화면으로 전환되고 그 이상 실패하면 컴퓨터가 잠기게 된다는 경고를 받습니다. 사용자가 제한에 도달하면 디바이스가 자동으로 다시 부팅되고 BitLocker 복구 페이지가 표시됩니다. 이 페이지에서는 사용자에게 BitLocker 복구 키를 입력하라는 메시지를 표시합니다.",
+ "maxPasswordAttempts5": "0(기본값) - PIN 또는 암호를 잘못 입력하면 디바이스가 초기화되지 않습니다.",
+ "maxPasswordAttempts6": "모든 정책 값이 0인 경우 가장 안전한 값은 0입니다. 그렇지 않은 경우 최소 정책 값이 가장 안전한 값입니다.",
+ "mdmDiscoveryUrl": "MDM에 등록하는 사용자가 사용할 MDM 등록 엔드포인트에 대한 URL을 지정합니다. 기본적으로 이 URL은 Intune에 대해 지정됩니다.",
+ "minimumPinLength1": "PIN에 대해 필요한 최소 문자 수를 설정하는 정수 값입니다. 기본값은 4입니다. 이 정책 설정에 대해 구성할 수 있는 가장 적은 수는 4입니다. 구성할 수 있는 가장 큰 수는 최대 PIN 길이 정책 설정에 구성된 수 또는 127(둘 중 적은 수)보다 작아야 합니다.",
+ "minimumPinLength2": "이 정책 설정을 구성하는 경우 PIN 길이는 이 숫자보다 크거나 같아야 합니다. 이 정책 설정을 사용하지 않거나 구성하지 않는 경우 PIN 길이는 4보다 크기가 같아야 합니다.",
+ "name": "이 네트워크 경계의 이름",
+ "neutralResources": "회사에 인증 리디렉션 엔드포인트가 있으면 여기에 지정합니다. 여기에 지정된 위치는 리디렉션 이전의 연결 컨텍스트에 따라 개인용 또는 회사용으로 간주됩니다.
쉼표로 개별 항목을 구분하여 값을 여러 개 지정할 수 있습니다.
예: sts.contoso.com,sts.contoso2.com
",
+ "passportForWork1": "Windows에 로그인하는 방법으로 비즈니스용 Windows Hello를 설정하는 값입니다.",
+ "passportForWork2": "기본값은 true입니다. 이 정책을 false로 설정하는 경우 사용자는 프로비전이 필요한 Azure Active Directory 연결 모바일 휴대폰을 제외하고 비즈니스용 Windows Hello를 프로비전할 수 없습니다.",
+ "pinExpiration": "이 정책 설정에 대해 구성할 수 있는 가장 큰 수는 730입니다. 이 정책 설정에 대해 구성할 수 있는 가장 작은 수는 0입니다. 이 정책을 0으로 설정하면 사용자의 PIN이 만료되지 않습니다.",
+ "pinHistory1": "이 정책 설정에 대해 구성할 수 있는 가장 큰 수는 50입니다. 이 정책 설정에 대해 구성할 수 있는 가장 작은 수는 0입니다. 이 정책을 0으로 설정하면 이전 PIN의 스토리지가 필요하지 않습니다.",
+ "pinHistory2": "사용자의 현재 PIN은 사용자 계정과 연결된 PIN 집합에 포함됩니다. PIN 기록이 PIN 초기화를 통해 유지되지 않습니다.",
+ "protectUnderLock": "디바이스가 잠긴 상태인 동안 앱 콘텐츠를 보호합니다.",
+ "protectionModeBlock": "차단: 엔터프라이즈 데이터가 보호된 앱에서 나갈 수 없도록 차단합니다.
",
+ "protectionModeOff": "재정의 허용: 사용자가 보호된 앱에서 보호되지 않은 앱으로 데이터를 재배치하려고 할 때 메시지가 표시됩니다. 이 프롬프트를 재정의하도록 선택하면 작업이 기록됩니다.
",
+ "protectionModeOverride": "재정의 허용: 사용자가 보호된 앱에서 보호되지 않은 앱으로 데이터를 재배치하려고 할 때 메시지가 표시됩니다. 이 프롬프트를 재정의하도록 선택하면 작업이 기록됩니다.
",
+ "protectionModeSilent": "자동: 사용자가 보호된 앱에서 데이터를 재배치할 수 있습니다. 이러한 작업은 기록됩니다.
",
+ "required": "필요한 공간",
+ "revokeOnMdmHandoff": "Windows 10, 버전 1703에서 추가되었습니다. 이 정책은 디바이스가 MAM에서 MDM으로 업그레이드될 때 WIP 키를 취소할지 여부를 제어합니다. “끄기”로 설정하면 키가 취소되지 않으며 사용자는 업그레이드 후에도 보호된 파일에 계속 액세스할 수 있습니다. MDM 서비스가 MAM 서비스와 동일한 WIP EnterpriseID로 구성된 경우에 권장됩니다.",
+ "revokeOnUnenroll": "그러면 디바이스가 이 정책에서 등록 취소될 때 암호화 키가 해지됩니다.",
+ "rmsTemplateForEdp": "RMS 암호화에 대해 사용할 TemplateID GUID입니다. Azure RMS 템플릿을 통해 IT 관리자는 RMS로 보호된 파일에 액세스할 수 있는 사람과 액세스 가능한 기간에 대한 세부 정보를 구성할 수 있습니다.",
+ "showWipIcon": "회사 컨텍스트에서 작업할 때 아이콘을 겹쳐서 표시하여 사용자에게 알립니다.",
+ "useRmsForWip": "WIP에 대해 Azure RMS 암호화를 허용할지를 지정합니다."
+ },
+ "requireAppPin": "등록된 디바이스에서 디바이스 잠금이 검색되면 예를 선택하여 앱 PIN을 사용하지 않도록 설정하세요.
참고: Intune은 iOS/iPadOS에서 타사 EMM 솔루션을 사용하여 디바이스 등록을 검색할 수 없습니다.
"
+ },
+ "Autopilot": {
+ "AssignResourceAccount": {
+ "createNewCommandMenu": "새로 만들기",
+ "createNewResourceAccountInfo": "\r\n등록 중 새 리소스 계정을 만듭니다. 리소스 계정은 리소스 계정 테이블에 바로 추가되지만, 디바이스가 등록되고 Surface Hub 구독이 확인될 때까지 활성화되지 않습니다. 리소스 계정에 대한 자세한 정보
\r\n ",
+ "createNewResourceTitle": "새 리소스 계정 만들기",
+ "deviceNameInvalid": "디바이스 이름 형식이 잘못되었습니다.",
+ "deviceNameRequired": "디바이스 이름이 필요합니다.",
+ "editResourceAccountLabel": "편집",
+ "selectExistingCommandMenu": "기존 선택"
+ },
+ "Device": {
+ "ComputerName": {
+ "validFormat": "이름은 15자 이하여야 하며, 문자(a-z, A-Z), 숫자(0-9) 및 하이픈을 포함할 수 있습니다. 이름에 숫자만 사용해서는 안 됩니다. 이름은 공백을 포함할 수 없습니다."
+ },
+ "Header": {
+ "addressableUserName": "친숙한 이름",
+ "azureADDevice": "연결된 Azure AD 디바이스",
+ "batch": "그룹 태그",
+ "dateAssigned": "할당된 날짜",
+ "deviceAccountFriendlyName": "장치 계정 이름",
+ "deviceAccountPwd": "장치 계정 암호",
+ "deviceAccountUpn": "Device account",
+ "deviceDisplayName": "디바이스 이름",
+ "deviceName": "디바이스 이름",
+ "deviceUseType": "디바이스 사용 유형",
+ "enrollmentState": "등록 상태",
+ "intuneDevice": "연결된 Intune 디바이스",
+ "lastContacted": "마지막 연결",
+ "make": "제조업체",
+ "model": "모델",
+ "profile": "할당된 프로필",
+ "profileStatus": "프로필 상태",
+ "purchaseOrderId": "구매 주문",
+ "resourceAccount": "리소스 계정",
+ "serialNumber": "일련 번호",
+ "userPrincipalName": "사용자"
+ },
+ "SurfaceHub": {
+ "friendlyNameRequired": "식별 이름은 필수 항목입니다.",
+ "pwdRequired": "암호는 필수 항목입니다.",
+ "upnRequired": "장치 계정은 필수 항목입니다",
+ "upnValidFormat": "값에는 문자(a-z, A-Z), 숫자(0-9) 및 하이픈이 포함될 수 있습니다. 값에는 공백이 포함될 수 없습니다."
+ }
+ },
+ "DeviceUseType": {
+ "meetingAndPresentation": "모임 및 프레젠테이션",
+ "teamCollaboration": "팀 협업"
+ },
+ "Devices": {
+ "featureDescription": "Windows Autopilot을 사용하면 사용자의 OOBE(첫 실행 경험)를 사용자 지정할 수 있습니다.",
+ "importErrorStatus": "일부 디바이스를 가져오지 못했습니다. 자세한 내용을 보려면 여기를 클릭하세요.",
+ "importPendingStatus": "가져오기가 진행 중입니다. 경과된 시간: {0}분. 이 프로세스에는 최대 {1}분이 소요될 수 있습니다."
+ },
+ "DirectoryService": {
+ "activeDirectoryAD": "하이브리드 Azure AD 조인됨",
+ "activeDirectoryADLabel": "하이브리드 Azure AD(Autopilot 사용)",
+ "azureAD": "Azure AD 조인됨",
+ "unknownType": "알 수 없는 유형"
+ },
+ "Filter": {
+ "enrollmentState": "상태",
+ "profile": "프로필 상태"
+ },
+ "OOBE": {
+ "AddressableUserName": {
+ "validateEmpty": "사용자 이름은 비워 둘 수 없습니다."
+ },
+ "ApplyComputerNameTemplate": {
+ "infoBalloon": "명명 템플릿을 만들어 등록하는 동안 디바이스에 이름을 추가합니다.",
+ "label": "디바이스 이름 템플릿 적용"
+ },
+ "ApplyComputerNameTemplateDisabled": {
+ "label": "하이브리드 Azure AD 조인된 형식의 Autopilot 배포 프로필의 경우 디바이스 이름이 도메인 가입 구성에 지정된 설정을 사용하여 지정됩니다."
+ },
+ "ComputerNameTemplate": {
+ "emptyValue": "MyCompany-%RAND:4%",
+ "label": "이름 입력",
+ "noDisallowedChars": "이름에는 영숫자 문자, 하이픈, %SERIAL% 또는 %RAND:x%만 사용해야 합니다.",
+ "serialLength": "%SERIAL%에 7개가 넘는 문자를 사용할 수 없습니다.",
+ "validateLessThan15Chars": "이름은 15자 이하여야 합니다.",
+ "validateNoSpaces": "컴퓨터 이름에는 공백이 포함될 수 없습니다.",
+ "validateNotAllNumbers": "이름에는 문자 및/또는 하이픈도 사용해야 합니다.",
+ "validateNotEmpty": "이름은 비워 둘 수 없습니다.",
+ "validateOnlyOneMacro": "이름에는 %SERIAL% 또는 %RAND:x% 중 하나만 사용해야 합니다."
+ },
+ "ConfigureComputerNameTemplate": {
+ "description": "디바이스의 고유 이름을 만듭니다. 이름은 15자 이하여야 하며, 문자(a-z, A-Z), 숫자(0-9) 및 하이픈을 포함할 수 있습니다. 이름에 숫자만 사용해서는 안 됩니다. 이름에 공백을 사용할 수 없습니다. 하드웨어 특정 일련 번호를 추가하려면 %SERIAL% 매크로를 사용합니다. 또는 %RAND:x% 매크로를 사용하여 임의 숫자 문자열을 추가합니다. 여기서 x는 추가할 자릿수와 같습니다."
+ },
+ "EnableWhiteGlove": {
+ "infoBalloon": "디바이스를 등록하고 모든 시스템 컨텍스트 앱 및 설정을 프로비전하기 위해 Windows 키를 5번 눌러 사용자 인증 없이 OOBE를 실행하도록 설정합니다. 사용자가 로그인하면 사용자 컨텍스트 앱 및 설정이 제공됩니다.",
+ "label": "사전 프로비전된 배포 허용"
+ },
+ "HybridAzureADSkipConnectivityCheck": {
+ "infoBalloon": "Autopilot 하이브리드 Azure AD 조인 흐름은 OOBE 중에 도메인 컨트롤러 연결을 설정하지 않는 경우에도 계속 진행됩니다.",
+ "label": "AD 연결 확인 건너뛰기(미리 보기)"
+ },
+ "accountType": "사용자 계정 유형",
+ "accountTypeInfo": "사용자가 디바이스에서 관리자인지 아니면 표준 사용자인지를 지정합니다. 이 설정은 전역 관리자 또는 회사 관리자 계정에는 적용되지 않습니다. 이러한 계정은 Azure AD에서 모든 관리 기능에 액세스할 수 있으므로 표준 사용자일 수 없습니다.",
+ "configOOBEInfo": "\r\nAutopilot 디바이스의 첫 실행 경험 구성\r\n
",
+ "configureDevice": "배포 모드",
+ "configureDeviceHintForSurfaceHub2": "Autopilot은 Surface Hub 2의 자체 배포 모드만 지원합니다. 이 모드는 등록된 디바이스와 사용자를 연결하지 않으므로 사용자 자격 증명이 필요하지 않습니다.",
+ "configureDeviceHintForWindowsPC": "\r\n 배포 모드는 디바이스를 프로비전하기 위해 사용자가 자격 증명을 제공해야 하는지를 제어합니다.\r\n
\r\n \r\n - \r\n 사용자 구동: 디바이스가 디바이스를 등록하는 사용자와 연결되고 디바이스를 프로비전하는 데 사용자 자격 증명이 필요합니다.\r\n
\r\n - \r\n 자체 배포(미리 보기): 디바이스가 디바이스를 등록하는 사용자와 연결되지 않고 디바이스를 프로비전하는 데 사용자 자격 증명이 필요하지 않습니다.\r\n
\r\n
",
+ "createSurfaceHub2Info": "Surface Hub 2 디바이스의 Autopilot 등록 설정을 구성합니다. 기본적으로 Autopilot을 사용하면 OOBE 동안 사용자 인증을 건너뛸 수 있습니다. Surface Hub 2용 Windows Autopilot에 대해 자세히 알아보세요.",
+ "createWindowsPCInfo": "\r\n\r\n자체 배포 모드에서는 Autopilot 디바이스에 대해 다음 옵션이 자동으로 사용하도록 설정됩니다.\r\n
\r\n\r\n - \r\n 회사 또는 집 사용 선택 건너뛰기\r\n
\r\n - \r\n OEM 등록 및 OneDrive 구성 건너뛰기\r\n
\r\n - \r\n OOBE에서 사용자 인증 건너뛰기\r\n
\r\n
",
+ "endUserDevice": "사용자 구동",
+ "hideEscapeLink": "계정 변경 옵션 숨기기",
+ "hideEscapeLinkInfo": "회사 로그인 페이지 및 도메인 오류 페이지에서 초기 디바이스 설정 중에 계정을 변경하는 옵션과 다른 계정으로 다시 시작하는 옵션이 각각 나타납니다. 이러한 옵션을 숨기려면 Azure Active Directory에서 회사 브랜딩을 구성해야 합니다(Windows 10, 1809 이상, 또는 Windows 11 필요).",
+ "info": "AutoPilot 프로필 설정은 사용자가 Windows를 처음으로 시작할 때 표시되는 첫 실행 경험을 정의합니다. ",
+ "language": "언어(지역)",
+ "languageInfo": "사용할 언어 및 지역을 지정하세요.",
+ "licenseAgreement": "Microsoft 소프트웨어 사용 조건",
+ "licenseAgreementInfo": "사용자에게 EULA를 표시할지 여부를 지정합니다.",
+ "plugAndForgetDevice": "자체 배포(미리 보기)",
+ "plugAndForgetGA": "자체 배포",
+ "privacySettingWarning": "Windows 10, 버전 1903 이상, 또는 Windows 11을 실행하는 디바이스의 진단 데이터 수집에 대한 기본값이 변경되었습니다. ",
+ "privacySettings": "개인 정보 설정",
+ "privacySettingsInfo": "사용자에게 개인 정보 설정을 표시할지 여부를 지정합니다.",
+ "showCortanaConfigurationPage": "Cortana 구성",
+ "showCortanaConfigurationPageInfo": "[표시]는 시작하는 동안 Cortana 구성 소개를 활성화합니다.",
+ "skipEULAWarning": "사용 조건 숨기기에 대한 중요 정보",
+ "skipKeyboardSelection": "자동으로 키보드 구성",
+ "skipKeyboardSelectionInfo": "true이면 [언어]가 설정된 경우 키보드 선택 페이지를 건너뜁니다.",
+ "subtitle": "AutoPilot 프로필",
+ "title": "OOBE(첫 실행 경험)",
+ "useOSDefaultLanguage": "운영 체제 기본값",
+ "userSelect": "사용자 선택"
+ },
+ "Sync": {
+ "lastRequestedLabel": "마지막 동기화 요청",
+ "lastSuccessfulLabel": "마지막으로 성공한 동기화",
+ "syncInProgress": "동기화 진행 중입니다. 잠시 후 다시 확인하세요.",
+ "syncInitiated": "AutoPilot 설정 동기화가 시작되었습니다.",
+ "syncSettingsTitle": "AutoPilot 설정 동기화"
+ },
+ "Title": {
+ "devices": "Windows AutoPilot 디바이스"
+ },
+ "Tooltips": {
+ "addressableUserName": "디바이스를 설치하는 동안 표시되는 인사말 이름입니다.",
+ "azureADDevice": "연결된 디바이스에 대한 디바이스 세부 정보로 이동합니다. 해당 없음은 연결된 디바이스가 없음을 의미합니다.",
+ "batch": "디바이스 그룹을 식별하는 데 사용할 수 있는 문자열 특성입니다. Intune의 그룹 태그 필드는 Azure AD 디바이스에서 OrderID 특성에 매핑됩니다.",
+ "dateAssigned": "디바이스에 프로필이 할당되었을 때의 타임스탬프입니다.",
+ "deviceAccountFriendlyName": "Surface Hub 장치의 장치 계정 이름",
+ "deviceAccountPwd": "Surface Hub 장치의 장치 계정 암호",
+ "deviceAccountUpn": "Surface Hub 장치용 장치 계정 이메일",
+ "deviceDisplayName": "디바이스에 고유한 이름을 구성합니다. 이 이름은 하이브리드 Azure AD 조인된 배포에서 무시됩니다. 디바이스 이름은 하이브리드 Azure AD 디바이스에 대한 도메인 가입 프로필에서 계속 제공됩니다.",
+ "deviceName": "누군가가 디바이스를 검색하고 연결하려고 할 때 표시되는 이름입니다.",
+ "deviceUseType": " 선택에 따라 디바이스가 설정됩니다. 나중에 언제든지 설정에서 변경할 수 있습니다.\r\n \r\n - 모임과 프레젠테이션의 경우 Windows Hello가 켜지지 않으며 각 세션 후 데이터가 제거됩니다.\r\n
\r\n - 팀 협업의 경우 Windows Hello가 켜지며 빠른 로그인을 위해 프로필이 저장됩니다.
\r\n
",
+ "enrollmentState": "디바이스가 등록되었는지를 지정합니다.",
+ "intuneDevice": "연결된 디바이스에 대한 디바이스 세부 정보로 이동합니다. 해당 없음은 연결된 디바이스가 없음을 의미합니다.",
+ "lastContacted": "디바이스에 마지막으로 연결한 때의 타임스탬프입니다.",
+ "make": "선택한 디바이스의 제조업체입니다.",
+ "model": "선택한 디바이스의 모델",
+ "profile": "디바이스에 할당된 프로필의 이름입니다.",
+ "profileStatus": "프로필이 디바이스에 할당되는지를 지정합니다.",
+ "purchaseOrderId": "구매 주문 ID",
+ "resourceAccount": "디바이스의 ID 또는 UPN(사용자 계정 이름)입니다.",
+ "serialNumber": "선택한 디바이스의 일련 번호입니다.",
+ "userPrincipalName": "디바이스를 설치하는 동안 인증을 미리 채우는 사용자입니다."
+ },
+ "allDevices": "모든 장치",
+ "allDevicesAlreadyAssignedError": "Autopilot 프로필이 이미 모든 디바이스에 할당되었습니다.",
+ "assignFailedDescription": "{0}에 대한 할당을 업데이트하지 못했습니다.",
+ "assignFailedTitle": "Autopilot 프로필 할당을 업데이트하지 못했습니다.",
+ "assignSuccessDescription": "{0}에 대한 할당을 업데이트했습니다.",
+ "assignSuccessTitle": "AutoPilot 프로필 할당을 업데이트했습니다.",
+ "assignSufaceHub2ProfileNextStep": "이 배포에 대한 다음 단계",
+ "assignSurfaceHub2ProfileToDeviceGroup": "1. 하나 이상의 디바이스 그룹에 이 프로필을 할당합니다.",
+ "assignSurfaceHub2ProfileToResourceAccount": "2. 이 프로필을 배포하는 각 Surface Hub 디바이스에 리소스 계정을 할당합니다.",
+ "assignedDevicesCount": "할당된 디바이스",
+ "assignedDevicesResourceAccountDescription": "이 프로필을 디바이스에 배포하려면 디바이스에 리소스 계정을 할당해야 합니다. 한 번에 디바이스 하나를 선택하여 기존 리소스 계정을 할당하거나 새 리소스 계정을 만듭니다. 리소스 계정에 대한 자세한 정보
",
+ "assignedDevicesResourceAccountStatusBarMessage": "이 테이블은 이 프로필에 할당된 Surface Hub 2 디바이스만 나열합니다.",
+ "assigningDescription": "{0}에 대한 할당을 업데이트하는 중입니다.",
+ "assigningTitle": "AutoPilot 프로필 할당을 업데이트하는 중입니다.",
+ "autoremediationContext": "We've detected a hardware change on this device. We're trying to automatically register the new hardware. You don't need to do anything now; the status will be updated at the next check in with the result. Learn more about resetting the profile.",
+ "autoremediationTitle": "Device {0} has a fix pending",
+ "cannotDeleteMessage": "이 프로필은 그룹에 할당되어 있습니다. 이 프로필을 삭제하려면 먼저 이 프로필에서 모든 그룹을 할당 해제해야 합니다.",
+ "cannotDeleteTitle": "{0}을(를) 삭제할 수 없습니다.",
+ "createdDateTime": "만든 날짜",
+ "deleteMessage": "이 AutoPilot 프로필을 삭제하면 이 프로필에 할당된 디바이스는 모두 [할당되지 않음]으로 표시됩니다.",
+ "deleteMessageWithPolicySet": "{0}은(는) 하나 이상의 정책 집합에 포함되어 있습니다. {0}을(를) 삭제하면 이러한 정책 집합을 통해 더 이상 할당할 수 없게 됩니다.",
+ "deleteTitle": "이 프로필을 삭제하시겠습니까?",
+ "description": "설명",
+ "deviceType": "디바이스 유형",
+ "deviceUse": "디바이스 사용",
+ "directoryServiceHintForSurfaceHub2": " \r\n Autopilot은 Surface Hub 2 디바이스에 조인된 Azure AD만 지원합니다. 조직에서 디바이스의 AD(Active Directory) 조인 방법을 지정하세요.\r\n
\r\n \r\n - \r\n Azure AD 조인됨: 온-프레미스 Windows Server Active Directory가 없는 클라우드만\r\n
\r\n
\r\n ",
+ "directoryServiceHintForWindowsPC": "\r\n \r\n 조직에서 디바이스를 AD(Active Directory)에 조인하는 방법을 지정합니다.\r\n
\r\n \r\n - \r\n Azure AD 조인됨: 온-프레미스 Windows Server Active Directory를 사용하지 않는 클라우드 전용입니다.\r\n
\r\n
\r\n ",
+ "getAssignedDevicesCountError": "할당된 디바이스 수를 페치하는 동안 오류가 발생했습니다.",
+ "getAssignmentsError": "Autopilot 프로필 할당을 페치하는 동안 오류가 발생했습니다.",
+ "harvestDeviceId": "모든 대상 디바이스를 Autopilot으로 변환",
+ "harvestDeviceIdDescription": "기본적으로 이 프로필은 Autopilot 서비스에서 동기화된 Autopilot 디바이스에만 적용할 수 있습니다.",
+ "harvestDeviceIdInfo": "\r\n 이미 등록되지 않은 경우 대상이 지정된 모든 디바이스를 Autopilot에 등록하려면 [예]를 선택합니다. 다음번에 등록된 디바이스가 Windows OOBE(첫 실행 경험)를 진행하면 할당된 Autopilot 시나리오가 진행됩니다.\r\n
\r\n 특정 Autopilot 시나리오는 최소한의 특정 Windows 빌드가 필요합니다. 시나리오를 진행하려면 디바이스에 필요한 최소한의 빌드가 있는지 확인하세요.\r\n
\r\n 이 프로필을 제거해도 Autopilot에서 영향을 받는 디바이스는 제거되지 않습니다. Autopilot에서 디바이스를 제거하려면 Windows Autopilot 디바이스 보기를 사용하세요.\r\n ",
+ "harvestDeviceIdWarning": "Autopilot 디바이스를 변환한 후에는 Autopilot 디바이스 목록에서 삭제를 해야만 되돌릴 수 있습니다.",
+ "holoLensCommandMenu": "HoloLens",
+ "info": "Windows AutoPilot 배포 프로필을 사용하면 디바이스의 첫 실행 경험을 사용자 지정할 수 있습니다.",
+ "invalidProfileNameMessage": "문자 \"{0}\"은(는) 허용되지 않습니다.",
+ "joinTypeLabel": "Azure AD 조인 유형",
+ "lastModifiedDateTime": "마지막으로 수정한 날짜:",
+ "manualRemediationContext": "We've detected a hardware change on this device. It won't automatically receive an Autopilot profile when it's reset unless you register the device again. Learn more about resetting the profile.",
+ "manualRemediationTitle": "Device {0} needs your attention",
+ "name": "이름",
+ "noAutopilotProfile": "AutoPilot 프로필 없음",
+ "notEnoughPermissionAssignedError": "이 프로필을 선택한 하나 이상의 그룹에 할당할 권한이 없습니다. 관리자에게 문의하세요.",
+ "profile": "프로필",
+ "resourceAccountStatusBarMessage": "이 프로필이 배포되는 각 Surface Hub 2 디바이스의 리소스 계정이 필요합니다. 자세히 알아보려면 여기를 클릭하세요.",
+ "selectServices": "디바이스가 조인할 디렉터리 서비스 선택",
+ "surfaceHub2CommandMenu": "Surface Hub 2",
+ "surfaceHub2SCommandMenu": "Surface Hub 2S",
+ "userAffinityLabel": "배포 모드",
+ "windowsPCCommandMenu": "Windows PC",
+ "directoryServiceLabel": "Azure AD 조인 유형"
},
- "CategoryDescription": {
- "androidGeneralApplicationRestrictions": "이 설정을 사용하여 회사에서 사용이 승인되지 않은 앱을 어떤 사용자가 설치하는지 알 수 있습니다. 제한된 앱 목록 유형을 선택하세요.
\r\n 금지된 앱 - 사용자가 앱을 설치할 때 알림을 받고 싶은 앱 목록입니다.
\r\n 승인된 앱 - 회사에서 사용이 승인된 앱 목록입니다. 이 목록에 없는 앱을 사용자가 설치하면 알림을 받게 됩니다.
\r\n ",
- "androidZebraMxZebraMx": "MX 프로필을 XML 형식으로 업로드하여 Zebra 디바이스를 구성합니다.",
- "iosDeviceFeaturesAirprint": "네트워크의 AirPrint 호환 프린터에 자동으로 연결하도록 iOS 디바이스를 구성하는 데 이러한 설정을 사용합니다. 프린터의 IP 주소 및 리소스 경로가 필요합니다.",
- "iosDeviceFeaturesExtensibleSingleSignOn": "iOS 13.0 이상을 실행하는 디바이스에 SSO(Single Sign-On)를 사용하도록 설정하는 앱 확장을 구성합니다.",
- "iosDeviceFeaturesHomeScreenLayout": "iOS 디바이스에서 도크 및 홈 화면에 대한 레이아웃을 구성합니다. 특정 디바이스에서는 표시할 수 있는 항목 수가 제한될 수 있습니다.",
- "iosDeviceFeaturesIOSWallpaper": "iOS 디바이스의 홈 화면 및/또는 잠금 화면에 나타나는 이미지를 표시합니다.\r\n 각 위치에 고유한 이미지를 표시하려면 잠금 화면 이미지를 사용하여 프로필을 하나 만들고, 홈 화면 이미지를 사용하여 프로필을 하나 만듭니다.\r\n 그런 다음 두 프로필을 모두 사용자에게 할당합니다.\r\n
\r\n \r\n - 최대 파일 크기: 750KB
\r\n - 파일 형식: PNG, JPG 또는 JPEG
\r\n
\r\n ",
- "iosDeviceFeaturesNotifications": "앱에 대한 알림 설정을 지정합니다. iOS 9.3 이상을 지원합니다.",
- "iosDeviceFeaturesSharedDevice": "잠긴 화면에 표시되는 선택적 텍스트를 지정하세요. iOS 9.3 이상에서 지원됩니다. 자세한 정보",
- "iosGeneralApplicationRestrictions": "이 설정을 사용하여 회사에서 사용이 승인되지 않은 앱을 어떤 사용자가 설치하는지 알 수 있습니다. 제한된 앱 목록 유형을 선택하세요.
\r\n 금지된 앱 - 사용자가 앱을 설치할 때 알림을 받고 싶은 앱 목록입니다.
\r\n 승인된 앱 - 회사에서 사용이 승인된 앱 목록입니다. 이 목록에 없는 앱을 사용자가 설치하면 알림을 받게 됩니다.
\r\n ",
- "iosGeneralApplicationVisibility": "표시된 앱 목록을 사용하여 사용자가 보거나 실행할 수 있는 iOS 앱을 지정하세요. 숨겨진 앱 목록을 사용하여 사용자가 보거나 실행할 수 있는 iOS 앱을 지정하세요.",
- "iosGeneralAutonomousSingleAppMode": "이 목록에 추가하고 디바이스에 할당하는 앱은 해당 앱이 실행될 때에만 작동하도록 디바이스를 잠그거나, 특정 작업이 실행 중인 동안(예: 테스트 수행) 디바이스를 잠글 수 있습니다. 작업을 완료하거나 제한을 제거하면 디바이스가 정상 상태로 돌아옵니다.",
- "iosGeneralKiosk": "키오스크 모드는 다양한 설정을 디바이스에 잠그거나 디바이스에서 실행할 수 있는 단일 앱을 지정합니다. 이 모드는 디바이스에서 단일 데모 앱만 실행하려는 소매점과 같은 환경에서 유용합니다.",
- "macDeviceFeaturesAirprint": "이러한 설정을 사용하여 macOS 디바이스가 네트워크의 AirPrint 호환 프린터에 자동으로 연결되도록 구성합니다. 프린터의 IP 주소와 리소스 경로가 필요합니다.",
- "macDeviceFeaturesAssociatedDomains": "조직의 앱과 웹 사이트 간에 데이터와 로그인 자격 증명을 공유하도록 연결된 도메인을 구성합니다. 이 프로필은 macOS 10.15 이상을 실행하는 디바이스에 적용할 수 있습니다.",
- "macDeviceFeaturesExtensibleSingleSignOn": "macOS 10.15 이상을 실행하는 디바이스에 SSO(Single Sign-On)를 사용하도록 설정하는 앱 확장을 구성합니다.",
- "macDeviceFeaturesLoginItems": "사용자가 디바이스에 로그인할 때 열리는 앱, 파일 및 폴더를 선택합니다. 사용자가 선택된 앱이 열리는 방식을 변경하지 못하도록 하려는 경우 사용자 구성에서 앱을 숨길 수 있습니다.",
- "macDeviceFeaturesLoginWindow": "macOS 로그인 화면의 모양과 로그인 전후 사용자가 사용할 수 있는 기능을 구성합니다.",
- "macExtensionsKernelExtensions": "이러한 설정을 사용하여 10.13.2 이상을 실행하는 macOS 디바이스에서 커널 확장 정책을 구성합니다.",
- "macGeneralDomains": "사용자가 보내거나 받는 메일 중 여기에 지정하는 도메인과 일치하지 않는 메일은 신뢰할 수 없는 것으로 표시됩니다.",
- "windows10EndpointProtectionApplicationGuard": "Microsoft Edge를 사용하는 동안 Microsoft Defender Application Guard는 조직에서 신뢰할 수 있는 사이트로 정의되지 않은 사이트로부터 환경을 보호합니다. 사용자가 격리된 네트워크 경계 목록에 없는 사이트를 방문하면 사이트가 Hyper-V의 가상 브라우징 세션에서 열립니다. 신뢰할 수 있는 사이트는 [디바이스 구성]에서 구성할 수 있는 네트워크 경계에 의해 정의됩니다. 이 기능은 Windows 10(64비트) 이상의 운영체제가 설치된 디바이스에 대해서만 사용할 수 있습니다.",
- "windows10EndpointProtectionCredentialGuard": "Credential Guard를 사용하도록 설정하면 다음과 같은 필수 설정이 사용하도록 설정됩니다.\r\n
\r\n \r\n - 가상화 기반 보안 사용: 다음 다시 부팅 시 VBS(가상화 기반 보안)를 켭니다. 가상화 기반 보안에서는 Windows 하이퍼바이저를 사용하여 보안 서비스에 대한 지원을 제공합니다.
\r\n
\r\n - 보안 부팅 및 DMA(직접 메모리 액세스): 보안 부팅 및 DMA(직접 메모리 액세스)를 통해 VBS를 켭니다.
\r\n
\r\n ",
- "windows10EndpointProtectionDeviceGuard": "Microsoft Defender 애플리케이션 제어를 통해 감사해야 하거나 실행을 신뢰할 수 있는 추가 앱을 선택합니다. Windows 구성 요소 및 Windows 스토어의 모든 앱은 자동으로 실행이 신뢰됩니다.
\r\n \"감사 전용\" 모드에서 실행될 때는 애플리케이션이 차단되지 않습니다. \"감사 전용\" 모드에서는 모든 이벤트가 로컬 클라이언트 로그에 기록됩니다.\r\n ",
- "windows10GeneralPrivacyPerApp": "“기본 개인 정보 보호”에서 정의한 것과 개인 정보 보호 방식이 달라야 하는 앱을 추가합니다.",
- "windows10NetworkBoundaryNetworkBoundary": "네트워크 경계는 엔터프라이즈 네트워크에 있는 컴퓨터의 클라우드에 호스트된 도메인 및 IP 주소 범위 같은 엔터프라이즈 리소스의 목록입니다. 네트워크 경계를 정의하여 이러한 위치에 있는 데이터를 보호하는 정책을 적용하세요.",
- "windowsHealthMonitoring": "Windows 상태 모니터링 정책을 구성합니다.",
- "windowsPhoneGeneralApplicationRestrictions": "Windows Phone은 사용자가 금지된 앱 목록에 지정된 앱이나 승인된 앱 목록에서 지정되지 않은 앱을 설치 또는 실행하지 못하도록 차단할 수 있습니다. 관리되는 앱은 모두 승인된 목록에 추가해야 합니다."
- },
"MinimumOperatingSystem": {
"Android": {
"v10": "Android 10.0",
@@ -2435,6 +1154,304 @@
"excludedGroups": "제외된 그룹",
"licenseType": "라이선스 형식"
},
+ "TAP": {
+ "AccessRequirements": {
+ "infoText": "사용자가 업무용으로 앱에 액세스하기 위해 충족해야 하는 PIN 및 자격 증명 요구 사항을 구성합니다."
+ },
+ "DataProtection": {
+ "infoText": "이 그룹에는 잘라내기, 복사, 붙여넣기, 저장 제한과 같은 DLP(데이터 유실 방지) 컨트롤이 포함됩니다. 이 설정은 사용자가 앱의 데이터와 상호작용하는 방법을 결정합니다."
+ },
+ "DeviceTypes": {
+ "selectOne": "하나 이상의 디바이스 유형을 선택합니다."
+ },
+ "TargetedApps": {
+ "TargetToAll": {
+ "label": "모든 디바이스 유형에 있는 앱으로 대상 지정"
+ },
+ "infoText": "다른 디바이스의 앱에 이 정책을 적용하는 방법을 선택한 다음 앱을 하나 이상 추가합니다.",
+ "selectOne": "정책을 만들려면 앱을 하나 이상 선택하세요."
+ }
+ },
+ "AssignmentAction": {
+ "exclude": "제외",
+ "include": "포함됨",
+ "includeAllDevicesVirtualGroup": "포함됨",
+ "includeAllUsersVirtualGroup": "포함됨"
+ },
+ "AppType": {
+ "androidEnterpriseSystemApp": "Android Enterprise 시스템 앱",
+ "androidForWorkApp": "관리형 Google Play 스토어 앱",
+ "androidLobApp": "Android LOB(기간 업무) 앱",
+ "androidStoreApp": "Android 스토어 앱",
+ "builtInAndroid": "기본 제공 Android 앱",
+ "builtInApp": "기본 제공 앱",
+ "builtInIos": "기본 제공 iOS 앱",
+ "default": "",
+ "iosLobApp": "iOS LOB(기간 업무) 앱",
+ "iosStoreApp": "iOS 스토어 앱",
+ "iosVppApp": "iOS 대량 구매 프로그램 앱",
+ "lineOfBusinessApp": "LOB(기간 업무) 앱",
+ "macOSDmgApp": "macOS 앱(DMG)",
+ "macOSEdgeApp": "Microsoft Edge(macOS)",
+ "macOSLobApp": "macOS 기간 업무 앱",
+ "macOSMdatpApp": "Microsoft Defender ATP(macOS)",
+ "macOSOfficeSuiteApp": "Microsoft 365 앱(macOS)",
+ "macOsVppApp": "macOS Volume Purchase Program 앱",
+ "managedAndroidLobApp": "관리되는 Android LOB(기간 업무) 앱",
+ "managedAndroidStoreApp": "관리되는 Android 스토어 앱",
+ "managedGooglePlayApp": "관리형 Google Play 스토어 앱",
+ "managedGooglePlayPrivateApp": "관리형 Google Play 프라이빗 앱",
+ "managedGooglePlayWebApp": "관리형 Google Play 웹 링크",
+ "managedIosLobApp": "관리되는 iOS LOB(기간 업무) 앱",
+ "managedIosStoreApp": "관리되는 iOS 스토어 앱",
+ "microsoftStoreForBusinessApp": "비즈니스용 Microsoft 스토어 앱",
+ "microsoftStoreForBusinessReleaseManagedApp": "비즈니스용 Microsoft 스토어",
+ "officeSuiteApp": "Microsoft 365 앱(Windows 10 이상)",
+ "webApp": "웹 링크",
+ "windowsAppXLobApp": "Windows AppX LOB(기간 업무) 앱",
+ "windowsClassicApp": "Windows 앱(Win32)",
+ "windowsEdgeApp": "Microsoft Edge(Windows 10 이상)",
+ "windowsMobileMsiLobApp": "Windows MSI 기간 업무 앱",
+ "windowsPhone81AppXBundleLobApp": "Windows Phone 8.1 AppX LOB(기간 업무) 앱",
+ "windowsPhone81AppXLobApp": "Windows Phone 8.1 AppX LOB(기간 업무) 앱",
+ "windowsPhone81StoreApp": "Windows Phone 8.1 스토어 앱",
+ "windowsPhoneXapLobApp": "Windows Phone XAP LOB(기간 업무) 앱",
+ "windowsStoreApp": "Microsoft Store 앱",
+ "windowsUniversalAppXLobApp": "Windows Universal AppX LOB(기간 업무) 앱",
+ "windowsUniversalLobApp": "Windows 유니버설 사업 부문 앱"
+ },
+ "TAPSettings": {
+ "AllowedDataIngestionLocations": {
+ "label": "사용자가 선택한 서비스에서 데이터를 열도록 허용",
+ "tooltip": "사용자가 데이터를 열 수 있는 애플리케이션 스토리지 서비스를 선택합니다. 기타 모든 서비스는 차단됩니다. 서비스를 선택하지 않으면 사용자가 데이터를 열 수 없게 됩니다."
+ },
+ "AndroidBackup": {
+ "label": "Android 백업 서비스에 조직 데이터 백업",
+ "tooltip": "Android 백업 서비스에 조직 데이터가 백업되지 않도록 하려면 {0}을(를) 선택합니다. \r\nAndroid 백업 서비스에 조직 데이터의 백업을 허용하려면 {1}을(를) 선택합니다. \r\n개인 데이터 또는 비관리형 데이터는 영향을 받지 않습니다."
+ },
+ "AndroidBiometricAuthentication": {
+ "label": "액세스에 PIN 대신 생체 인식 사용",
+ "tooltip": "사용자가 앱 PIN 대신 사용할 수 있는 Android 인증 방법(있는 경우)을 선택합니다."
+ },
+ "AndroidFingerprint": {
+ "label": "액세스에 PIN 대신 지문 사용(Android 6.0 이상)",
+ "tooltip": "Android OS는 지문 스캔을 사용하여 Android 디바이스 사용자를 인증합니다. 이 기능은 Android 디바이스에서 네이티브 생체 인식 제어를 지원합니다. Samsung Pass 같은 OEM별 생체 인식 설정은 지원되지 않습니다. 허용되는 경우, 지원 디바이스에서 앱에 액세스하는 데 네이티브 생체 인식 제어를 사용해야 합니다."
+ },
+ "AndroidOverrideFingerprint": {
+ "label": "시간 제한 후 PIN을 사용하여 지문 재정의"
+ },
+ "AppPIN": {
+ "label": "디바이스 PIN이 설정된 경우 앱 PIN",
+ "tooltip": "필요하지 않은 경우라면 MDM 등록 디바이스에 디바이스 PIN이 설정된 경우 앱에 액세스하기 위해 앱 PIN을 사용할 필요가 없습니다.
\r\n\r\n참고: Intune은 Android의 타사 EMM 솔루션에서 디바이스 등록을 검색할 수 없습니다."
+ },
+ "BlockDataIngestionIntoOrganizationDocuments": {
+ "label": "조직 문서로 데이터 열기",
+ "tooltip1": "이 앱의 계정 간에 데이터를 공유하기 위해 열기 옵션이나 기타 옵션을 사용하지 않도록 설정하려면 차단을 선택합니다. 이 앱의 계정 간에 데이터를 공유하기 위해 열기 옵션이나 기타 옵션을 사용하도록 허용하려면 허용을 선택합니다.",
+ "tooltip2": "차단으로 설정하면 조직 데이터 위치에 사용할 수 있는 서비스를 지정하도록 사용자가 선택한 서비스에서 데이터를 열도록 허용 설정을 구성할 수 있습니다.",
+ "tooltip3": "참고: 이 설정은 \"다른 앱에서 데이터 수신\" 설정이 \"정책 관리 앱\"으로 설정된 경우에만 적용됩니다.
\r\n참고: 이 설정은 일부 애플리케이션에는 적용되지 않습니다. 자세한 내용은 {0}을(를) 참조하세요.",
+ "tooltip4": "참고: 이 설정은 \"다른 앱에서 데이터 수신\" 설정이 \"정책 관리 앱\"으로 설정된 경우에만 적용됩니다.
\r\n참고: 이 설정은 일부 애플리케이션에는 적용되지 않습니다. 자세한 내용은 {0} 또는 {0}을(를) 참조하세요."
+ },
+ "ConnectToVpnOnLaunch": {
+ "label": "앱 실행 시 Microsoft Tunnel 연결 시작",
+ "tooltip": "앱 실행 시 VPN에 대한 연결 허용"
+ },
+ "CredentialsForAccess": {
+ "label": "액세스에 회사 또는 학교 계정 자격 증명 사용",
+ "tooltip": "필요한 경우 정책 관리 앱에 액세스하기 위해 회사 또는 학교 자격 증명을 사용해야 합니다. 앱에 액세스하기 위해 PIN 또는 생체 인식 방법이 필요할 수도 있는 경우, 해당 프롬프트뿐 아니라 회사 또는 학교 계정 자격 증명이 필요합니다."
+ },
+ "CustomBrowserDisplayName": {
+ "label": "비관리형 브라우저 이름",
+ "tooltip": "\"비관리형 브라우저 ID\"와 연결된 브라우저의 애플리케이션 이름을 입력합니다. 이 이름은 지정된 브라우저가 설치되지 않은 경우 사용자에게 표시됩니다."
+ },
+ "CustomBrowserPackageId": {
+ "label": "비관리형 브라우저 ID",
+ "tooltip": "단일 브라우저의 애플리케이션 ID를 입력합니다. 정책 관리형 애플리케이션의 웹 콘텐츠(http/s)가 지정된 브라우저에서 열립니다."
+ },
+ "CustomBrowserProtocol": {
+ "label": "비관리형 브라우저 프로토콜",
+ "tooltip": "비관리형 단일 브라우저의 프로토콜을 입력합니다. 정책 관리형 애플리케이션의 웹 콘텐츠(http/s)는 이 프로토콜을 지원하는 모든 앱에서 열립니다.
\r\n \r\n참고: 프로토콜 접두사만 포함됩니다. 브라우저에 \"mybrowser://www.microsoft.com\" 형식의 링크가 필요한 경우, \"mybrowser\"를 입력하세요.
"
+ },
+ "CustomDialerAppDisplayName": {
+ "label": "전화 걸기 앱 이름"
+ },
+ "CustomDialerAppPackageId": {
+ "label": "전화 걸기 앱 패키지 ID"
+ },
+ "CustomDialerAppProtocol": {
+ "label": "전화 걸기 앱 URL 구성표"
+ },
+ "Cutcopypaste": {
+ "label": "다른 앱에서 잘라내기, 복사 및 붙여넣기 제한",
+ "tooltip": "디바이스에 설치된 앱과 기타 승인된 앱 간에 데이터를 잘라내고 복사하고 붙여넣습니다. 이러한 작업을 완전히 차단하거나, 모든 앱에서 이러한 작업을 사용하도록 허용하거나, 조직에서 관리하는 앱으로만 제한하도록 선택합니다.
\r\n\r\n정책 관리 앱에 붙여넣기는 다른 앱에서 붙여넣은 들어오는 콘텐츠를 수락하는 옵션을 제공합니다. 그러나 관리 앱과 공유하지 않는 경우 사용자가 외부와 콘텐츠를 공유하는 것을 차단합니다.
"
+ },
+ "DialerRestrictionLevel": {
+ "iosTooltip": "일반적으로 사용자가 앱에서 하이퍼링크된 전화 번호를 선택하면 전화 번호가 미리 채워져 있고 바로 통화할 수 있는 상태로 전화 걸기 앱이 열립니다. 이 설정의 경우 정책 관리 앱에서 시작될 때 이 콘텐츠 전송 유형을 처리하는 방법을 선택합니다 .이 설정을 적용하려면 단계를 추가로 수행해야 합니다. 먼저 [제외할 앱 목록 선택]에서 tel 및 telprompt가 제거되었는지 확인합니다. 그런 다음 애플리케이션이 최신 버전의 Intune SDK(버전 12.7.0 이상)를 사용하는지 확인합니다.",
+ "label": "자격 증명 모음으로 데이터 전송",
+ "tooltip": "일반적으로 사용자가 앱에서 하이퍼링크된 전화 번호를 선택하면 전화 번호가 미리 채워져 있고 통화 준비가 끝난 상태로 전화 걸기 앱이 열립니다. 이 설정의 경우 정책 관리 앱에서 시작될 때 이 콘텐츠 전송 유형을 처리하는 방법을 선택합니다."
+ },
+ "EncryptData": {
+ "label": "조직 데이터 암호화",
+ "link": "https://docs.microsoft.com/en-us/intune/app-protection-policy-settings-android#data-relocation-settings",
+ "tooltip": "Intune 앱 계층 암호화로 조직 데이터 암호화를 적용하려면 {0}을(를) 선택합니다.\r\n
\r\nIntune 앱 계층 암호화로 조직 데이터 암호화를 적용하지 않으려면 {1}을(를) 선택합니다.\r\n\r\n
\r\n참고: Intune 앱 계층 암호화에 대한 자세한 내용은 {2}을(를) 참조하세요."
+ },
+ "EncryptDataAndroid": {
+ "tooltip": "이 앱에서 회사 또는 학교 데이터 암호화를 사용하도록 설정하려면 필요를 선택합니다. Intune에서는 앱 데이터를 안전하게 암호화하기 위해 Android 키 저장소 시스템과 함께 OpenSSL, 256비트 AES 암호화 체계를 사용합니다. 파일 I/O 작업 중 데이터가 동기적으로 암호화됩니다. 디바이스 스토리지의 콘텐츠는 항상 암호화됩니다. SDK는 이전 SDK 버전을 사용하는 콘텐츠 및 앱과의 호환성을 위해 128비트 키를 계속 지원합니다.
\r\n\r\n이 암호화 방법은 FIPS 140-2를 준수하지 않습니다.
"
+ },
+ "EncryptDataIos": {
+ "tooltip1": "이 앱에서 회사 또는 학교 데이터 암호화를 사용하도록 설정하려면 필요를 선택합니다. Intune은 디바이스가 잠겨 있는 동안 앱 데이터를 보호하기 위해 iOS/iPadOS 디바이스 암호화를 적용합니다. 애플리케이션은 Intune 앱 SDK 암호화를 사용하여 앱 데이터를 선택적으로 암호화할 수 있습니다. Intune 앱 SDK는 iOS/iPadOS 암호화 방법을 사용하여 128비트 AES 암호화를 앱 데이터에 적용합니다.",
+ "tooltip2": "이 설정을 사용하도록 설정하면 사용자는 디바이스에 액세스하기 위해 PIN을 설정하고 사용해야 할 수 있습니다. 디바이스 PIN이 없고 암호화가 필요한 경우 사용자는 \"조직에서 이 앱에 액세스하려면 먼저 디바이스 PIN을 사용하도록 설정해야 합니다.\"라는 메시지와 함께 PIN을 설정하라는 메시지가 표시됩니다.",
+ "tooltip3": "FIPS 140-2 준수 또는 FIPS 140-2 준수 보류 중인 iOS 암호화 모듈을 보려면 공식 Apple 설명서로 이동하세요."
+ },
+ "EncryptDataOnEnrolledDevices": {
+ "label": "등록된 디바이스에서 조직 데이터 암호화",
+ "tooltip": "모든 디바이스에서 Intune 앱 계층 암호화로 조직 데이터 암호화를 적용하려면 {0}을(를) 선택합니다.
\r\n\r\n등록된 디바이스에서 Intune 앱 계층 암호화로 조직 데이터 암호화를 적용하지 않으려면 {1}을(를) 선택합니다."
+ },
+ "IOSBackup": {
+ "label": "iTunes 및 iCloud 백업에 조직 데이터 백업",
+ "tooltip": "iTunes 또는 iCloud에 조직 데이터가 백업되지 않도록 하려면 {0}을(를) 선택합니다. \r\niTunes 또는 iCloud에 조직 데이터의 백업을 허용하려면 {1}을(를) 선택합니다. \r\n개인 데이터 또는 비관리형 데이터는 영향을 받지 않습니다."
+ },
+ "IOSFaceID": {
+ "label": "액세스에 PIN 대신 Face ID 사용(iOS 11 이상/iPadOS)",
+ "tooltip": "Face ID는 얼굴 인식 기술을 사용하여 iOS/iPadOS 디바이스에서 사용자를 인증합니다. Intune은 LocalAuthentication API를 호출하여 Face ID를 사용하는 사용자를 인증합니다. 허용되는 경우, Face ID 지원 디바이스에서 앱에 액세스하는 데 Face ID를 사용해야 합니다."
+ },
+ "IOSOverrideTouchId": {
+ "label": "시간 초과 후 PIN을 사용하여 생체 인식 재정의"
+ },
+ "IOSTouchId": {
+ "label": "액세스에 PIN 대신 Touch ID 사용(iOS 8 이상/iPadOS)",
+ "tooltip": "Touch ID는 지문 인식 기술을 사용하여 iOS 디바이스에서 사용자를 인증합니다. Intune은 LocalAuthentication API를 호출하여 Touch ID를 사용하는 사용자를 인증합니다. 허용되는 경우 Touch ID 지원 디바이스에서 앱에 액세스하는 데 Touch ID를 사용해야 합니다."
+ },
+ "NotificationRestriction": {
+ "label": "조직 데이터 알림",
+ "tooltip": "이 앱 및 연결된 모든 디바이스(예: 착용식 컴퓨터)에서 조직 계정에 대한 알림이 표시되는 방식을 지정하려면 다음 옵션 중 하나를 선택하세요.
\r\n{0}: 알림을 공유하지 않습니다.
\r\n{1}: 알림의 조직 데이터를 공유하지 않습니다. 애플리케이션에서 지원되지 않는 경우 알림이 차단됩니다.
\r\n{2}: 모든 알림을 공유합니다.
\r\n Android에만 해당:\r\n 참고: 이 설정은 모든 애플리케이션에 적용되지는 않습니다. 자세한 내용은 {3}을(를) 참조하세요.
\r\n \r\n iOS에만 해당:\r\n참고: 이 설정은 모든 애플리케이션에 적용되지는 않습니다. 자세한 내용은 {4}을(를) 참조하세요.
"
+ },
+ "OpenLinksManagedBrowser": {
+ "label": "다른 앱을 사용한 웹 콘텐츠 전송 제한",
+ "tooltip": "다음 옵션 중 하나를 선택하여 이 앱에서 웹 콘텐츠를 열 수 있는 앱을 지정합니다.
\r\nEdge: 웹 콘텐츠를 Edge에서만 열 수 있습니다.
\r\n비관리형 브라우저: 웹 콘텐츠를 \"비관리형 브라우저 프로토콜\" 설정에 정의된 비관리형 브라우저에서만 열 수 있습니다.
\r\n모든 앱: 모든 앱에서 웹 링크를 허용합니다.
"
+ },
+ "OverrideBiometric": {
+ "tooltip": "필요한 경우 시간 제한(비활성 시간(분))에 따라 PIN 프롬프트가 생체 인식 프롬프트를 재정의합니다. 이 시간 제한 값이 충족되지 않는 경우 생체 인식 프롬프트는 계속 표시됩니다. 이 시간 제한 값은 '다음 시간(비활성 시간(분)) 후에 액세스 요구 사항 다시 확인' 아래에 지정된 값보다 커야 합니다. "
+ },
+ "PinAccess": {
+ "label": "액세스에 PIN 사용",
+ "tooltip": "필요한 경우 정책 관리 앱에 액세스하기 위해 PIN을 사용해야 합니다. 사용자는 처음으로 회사 또는 학교 계정으로 앱을 열 때 액세스 PIN을 만들어야 합니다."
+ },
+ "PinLength": {
+ "label": "최소 PIN 길이 선택",
+ "tooltip": "이 설정은 PIN의 최소 자릿수를 지정합니다."
+ },
+ "PinType": {
+ "label": "PIN 형식",
+ "tooltip": "숫자 PIN은 모두 숫자로 구성됩니다. 암호는 영숫자와 특수 문자로 구성됩니다. "
+ },
+ "Printing": {
+ "label": "조직 데이터를 인쇄하는 중",
+ "tooltip": "차단한 경우 앱에서 보호된 데이터를 인쇄할 수 없습니다."
+ },
+ "ReceiveData": {
+ "label": "다른 앱에서 데이터 받기",
+ "tooltip": "다음 옵션 중 하나를 선택하여 이 앱이 데이터를 받을 수 있는 앱을 지정하세요.
\r\n\r\n없음: 모든 앱에서 조직 문서 또는 계정의 데이터를 받는 것을 허용하지 않음
\r\n\r\n정책 관리 앱: 다른 정책 관리 앱에서 조직 문서 또는 계정의 데이터를 받는 것만 허용\r\n
\r\n들어오는 조직 데이터가 있는 모든 앱: 모든 앱에서 조직 문서 또는 계정의 데이터를 받는 것을 허용하고 사용자 계정이 없는 모든 들어오는 데이터를 조직 데이터로 처리
\r\n\r\n모든 앱: 모든 앱에서 조직 문서 또는 계정의 데이터를 받는 것을 허용"
+ },
+ "RecheckAccessAfter": {
+ "label": "다음 시간(비활성 시간(분)) 후에 액세스 요구 사항 다시 확인\r\n\r\n",
+ "tooltip": "정책 관리 앱이 지정된 비활성 시간(분)보다 더 오랫동안 비활성 상태이면 앱에서 앱이 시작된 후 액세스 요구 사항(PIN, 조건부 시작 설정) 다시 확인을 묻습니다."
+ },
+ "RestrictKeyboards": {
+ "duplicatePackageError": "패키지 ID는 고유해야 합니다.",
+ "invalidPackageError": "유효하지 않은 패키지 ID",
+ "label": "승인된 키보드",
+ "select": "승인할 키보드 선택",
+ "subtitle": "사용자가 대상 앱에서 사용할 수 있는 모든 키보드 및 입력 방법을 추가합니다. 최종 사용자에게 표시하려는 키보드 이름을 입력합니다.",
+ "title": "승인된 키보드 추가",
+ "toolTip": "[필수]를 선택한 후 이 정책에 대해 승인된 키보드 목록을 지정합니다. 자세히 알아보세요."
+ },
+ "SaveData": {
+ "label": "조직 데이터의 복사본 저장",
+ "tooltip": "\"다른 이름으로 저장\"을 사용하여 선택한 스토리지 서비스 외의 새 위치로 조직 데이터의 복사본이 저장되지 않도록 하려면 {0}을(를) 선택합니다.\r\n \"다른 이름으로 저장\"을 사용하여 새 위치로 조직 데이터의 복사본 저장을 허용하려면 {1}을(를) 선택합니다.
\r\n\r\n\r\n참고: 이 설정은 일부 애플리케이션에 적용되지 않습니다. 자세한 내용은 {2}을(를) 참조하세요.\r\n"
+ },
+ "SaveDataToSelected": {
+ "label": "사용자가 선택한 서비스에 복사본을 저장하도록 허용",
+ "tooltip": "사용자가 조직 데이터의 복사본을 저장할 수 있는 스토리지 서비스를 선택합니다. 기타 모든 서비스는 차단됩니다. 서비스를 선택하지 않으면 사용자가 조직 데이터의 복사본을 저장할 수 없게 됩니다."
+ },
+ "ScreenCaptureAndAndroidAssistant": {
+ "label": "화면 캡처 및 Google Assistant\r\n",
+ "tooltip": "차단하면 정책 관리 앱을 사용할 때 화면 캡처 및 Google Assistant 앱 검색 기능이 둘 다 사용하지 않도록 설정됩니다. 이 기능은 일반적인 Google Assistant 앱을 지원합니다. Google의 Assist API를 사용하는 타사 Assistant는 지원되지 않습니다. [차단]을 선택하면 회사 또는 학교 계정으로 앱을 사용할 때 최근 실행 앱 미리 보기 이미지가 흐리게 표시됩니다."
+ },
+ "SendData": {
+ "label": "다른 앱에 조직 데이터 보내기",
+ "tooltip": "다음 옵션 중 하나를 선택하여 이 앱이 조직 데이터를 보낼 수 있는 앱을 지정하세요.
\r\n\r\n\r\n없음: 모든 앱에 조직 데이터를 보내는 것을 허용하지 않음
\r\n\r\n\r\n정책 관리 앱: 다른 정책 관리 앱에 조직 데이터를 보내는 것만 허용
\r\n\r\n\r\nOS 공유가 적용된 정책 관리 앱: 다른 정책 관리 앱에 조직 데이터를 보내는 것과 등록된 디바이스에서 다른 MIM 관리 앱에 조직 문서를 보내는 것만 허용
\r\n\r\n\r\n여는 위치/공유 필터링이 적용된 정책 관리 앱: 조직 데이터를 다른 정책 관리형 앱에 보내고 OS [여는 위치]/[공유] 대화 상자를 필터링하여 정책 관리형 앱 표시만 허용\r\n
\r\n\r\n모든 앱: 조직 데이터를 모든 앱에 보내는 것을 허용"
+ },
+ "SimplePin": {
+ "label": "단순 PIN",
+ "tooltip": "차단된 경우 사용자는 단순 PIN을 만들 수 없습니다. 단순 PIN은 1234, ABCD, 1111처럼 연속 문자열 또는 반복되는 숫자입니다. '암호' 형식의 단순 PIN을 차단하려면 암호에 하나 이상의 숫자, 문자 및 특수 문자가 포함되어야 합니다."
+ },
+ "SyncContacts": {
+ "label": "기본 앱 또는 추가 기능을 통한 정책 관리 앱 데이터 동기화"
+ },
+ "ThirdPartyKeyboards": {
+ "infoBox": "키보드 제한은 앱의 모든 영역에 적용됩니다. 여러 ID를 지원하는 앱의 개인 계정은 이 제한의 영향을 받습니다. 자세히 알아보세요.",
+ "label": "타사 키보드"
+ },
+ "Timeout": {
+ "label": "시간 제한(비활성 시간(분))"
+ },
+ "Tap": {
+ "numberOfDays": "일 수",
+ "pinResetAfterNumberOfDays": "다음 일수 후 PIN 재설정",
+ "previousPinBlockCount": "유지할 이전 PIN 값 수 선택"
+ }
+ },
+ "ScheduledAction": {
+ "Form": {
+ "editBlockActionInfo": "모든 준수 정책에는 하나의 차단 작업이 필요합니다.",
+ "graceperiod": "일정(비준수 후 기간(일))",
+ "graceperiodInfo": "사용자의 디바이스에 대해 이 작업이 트리거되어야 하는 비준수 후 기간(일)을 지정합니다.",
+ "subtitle": "작업 매개 변수 지정",
+ "title": "작업 매개 변수"
+ },
+ "List": {
+ "gracePeriodDay": "비준수 후 {0}일",
+ "gracePeriodDays": "비준수 후 {0}일",
+ "gracePeriodHour": "비준수 후 {0}시간",
+ "gracePeriodHours": "비준수 후 {0}시간",
+ "gracePeriodMinute": "비준수 후 {0}분",
+ "gracePeriodMinutes": "비준수 후 {0}분",
+ "immediately": "즉시",
+ "schedule": "일정",
+ "scheduleInfoBalloon": "비규정 준수 후 기간(일)",
+ "subtitle": "비규격 디바이스에 대한 일련의 작업 지정",
+ "title": "작업"
+ },
+ "Notification": {
+ "additionalEmailLabel": "기타",
+ "additionalRecipients": "추가 받는 사람(메일을 통해)",
+ "additionalRecipientsBladeTitle": "추가 받는 사람 선택",
+ "emailAddressPrompt": "메일 주소 입력(쉼표로 구분)",
+ "invalidEmail": "잘못된 메일 주소",
+ "messageTemplate": "메시지 템플릿",
+ "noneSelected": "선택된 항목이 없음",
+ "notSelected": "선택되지 않음",
+ "numSelected": "{0}개 선택됨",
+ "selected": "선택됨"
+ },
+ "block": "디바이스를 비규격으로 표시",
+ "lockDevice": "잠금 디바이스(로컬 작업)",
+ "lockDeviceWithPasscode": "잠금 디바이스(로컬 작업)",
+ "noAction": "작업 없음",
+ "noActionRow": "작업이 없습니다. '추가'를 선택하여 작업을 추가하세요.",
+ "pushNotification": "최종 사용자에게 푸시 알림 보내기",
+ "remoteLock": "원격으로 비규격 디바이스 잠금",
+ "removeSourceAccessProfile": "소스 액세스 프로필 제거",
+ "retire": "비규격 디바이스 사용 중지",
+ "wipe": "초기화",
+ "emailNotification": "최종 사용자에게 메일 보내기"
+ },
+ "InstallIntent": {
+ "available": "등록된 디바이스에 사용 가능",
+ "availableWithoutEnrollment": "등록 유무에 상관없이 사용 가능",
+ "required": "필수",
+ "uninstall": "제거"
+ },
"EnrollmentStatusScreen": {
"Apps": {
"managedApps": "관리되는 앱",
@@ -2466,142 +1483,61 @@
"resetToggle": "설치 오류가 발생하는 경우 사용자가 디바이스를 초기화할 수 있도록 허용",
"timeout": "설치 작업이 지정된 시간(분)보다 오래 걸리는 경우 오류 표시"
},
- "EnrollmentType": {
- "devicesWithEnrollment": "관리 디바이스",
- "devicesWithoutEnrollment": "관리되는 앱"
- },
- "ApplicabilityRules": {
- "GridLabel": {
- "property": "속성",
- "rule": "규칙",
- "ruleDetails": "규칙 정보",
- "value": "값"
- },
- "assignIf": "다음과 같은 경우 프로필 할당",
- "deleteWarning": "선택한 적용 가능성 규칙이 삭제됩니다.",
- "dontAssignIf": "다음과 같은 경우 프로필을 할당하지 않음",
- "editionDisplayText": "{0} {1}",
- "editionDisplayTextMore": "및 추가 {0}개",
- "instructions": "할당된 그룹 내에서 이 프로필을 적용하는 방법을 지정합니다. Intune은 이러한 규칙의 결합된 조건을 충족하는 디바이스에만 프로필을 적용합니다.",
- "maxText": "최대",
- "minText": "최소",
- "noActionRow": "적용 가능성 규칙이 지정되지 않음",
- "oSVersion": "예: 1.2.3.4",
- "toText": "끝",
- "windows10Education": "Windows 10/11 Education",
- "windows10EducationN": "Windows 10/11 Education N",
- "windows10Enterprise": "Windows 10/11 Enterprise",
- "windows10EnterpriseN": "Windows 10/11 Enterprise KN",
- "windows10HolographicEnterprise": "비즈니스용 Windows 10 홀로그래픽",
- "windows10Home": "Windows 10/11 Home",
- "windows10HomeChina": "Windows 10 Home China",
- "windows10HomeN": "Windows 10/11 Home Kn",
- "windows10HomeSingleLanguage": "Windows 10/11 Home 단일 언어",
- "windows10IoTCore": "Windows 10 IoT Core",
- "windows10IoTCoreCommercial": "Windows 10 IoT Core Commercial",
- "windows10Mobile": "Windows 10 Mobile",
- "windows10MobileEnterprise": "Windows 10 Mobile Enterprise",
- "windows10OsEdition": "OS 버전",
- "windows10OsVersion": "OS 버전",
- "windows10Professional": "Windows 10/11 Professional",
- "windows10ProfessionalEducation": "Windows 10/11 Professional Education",
- "windows10ProfessionalEducationN": "Windows 10/11 Professional Education N",
- "windows10ProfessionalN": "Windows 10 Professional N",
- "windows10ProfessionalWorkstation": "Windows 10/11 Professional Workstation",
- "windows10ProfessionalWorkstationN": "Windows 10/11 Professional Workstation N"
+ "Devices": {
+ "General": {
+ "android": "Android"
+ },
+ "aOSP": "Android 오픈 소스 프로젝트",
+ "android": "Android 디바이스 관리자",
+ "androidWorkProfile": "Android Enterprise(회사 프로필)",
+ "iOS": "iOS/iPadOS",
+ "mac": "macOS",
+ "windows": "Windows(MDM)",
+ "windows10": "Windows 10 이상",
+ "windowsHomeSku": "Windows Home SKU",
+ "windowsMobile": "Windows Mobile"
+ },
+ "AppInfoBalloonText": {
+ "Certificate": {
+ "customSubjectName": "CN={{UserName}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US\r\nor\r\nCN={{AAD_Device_ID}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US",
+ "keySize": "키에 포함된 비트 수를 선택합니다.",
+ "keyUsage": "인증서의 공개 키를 교환하는 데 필요한 암호화 작업을 지정합니다.",
+ "renewalThreshold": "디바이스가 인증서의 갱신을 요청하기 전에 허용되는 남은 인증서 수명의 백분율(1~99%)을 입력합니다. Intune의 권장 값은 20%입니다(1~99%).",
+ "rootCert": "이전에 구성 및 할당된 루트 CA 인증서 프로필을 선택합니다. CA 인증서는 이 프로필(현재 구성 중인 프로필)에 대해 인증서를 발급 중인 CA의 루트 인증서와 일치해야 합니다.",
+ "scepServerUrl": "SCEP를 통해 인증서를 발급하는 NDES 서버의 URL을 입력합니다(HTTPS여야 함). 예: https://contoso.com/certsrv/mscep/mscep.dll",
+ "scepServerUrls": "SCEP를 통해 인증서를 발급하는 NDES 서버의 URL을 하나 이상 추가합니다(HTTPS여야 함). 예: https://contoso.com/certsrv/mscep/mscep.dll",
+ "subjectAlternativeName": "주체 대체 이름",
+ "subjectNameFormat": "주체 이름 형식",
+ "validityPeriod": "인증서가 만료되기 전까지 남은 시간입니다. 인증서 템플릿에 표시된 유효 기간보다 낮거나 같은 값을 입력합니다. 기본값은 1년으로 설정됩니다."
+ },
+ "appInstallContext": "이 앱과 연결할 설치 컨텍스트를 지정합니다. 이중 모드 앱의 경우 이 앱에 대해 원하는 컨텍스트를 선택합니다. 다른 모든 앱의 경우 이 옵션은 패키지에 따라 미리 선택되어 있으며 수정할 수 없습니다.",
+ "autoUpdateMode": "앱의 업데이트 우선 순위를 구성합니다. 앱을 업데이트하기 전에 장치가 Wi-Fi에 연결되고, 충전 중이고, 활발하게 사용되지 않도록 하려면 기본값을 선택합니다. 충전 상태, Wi-Fi 기능 또는 장치에서의 최종 사용자 활동에 관계없이 개발자가 앱을 게시하는 즉시 앱을 업데이트하려면 높은 우선 순위를 선택합니다. 최대 90일 동안 앱 업데이트를 취소하려면 연기됨을 선택합니다. 높은 우선 순위 및 연기는 DO 장치에만 적용됩니다.",
+ "configurationSettingsFormat": "구성 설정 형식 텍스트",
+ "ignoreVersionDetection": "Google Chrome처럼 앱 개발자가 자동으로 업데이트하는 앱의 경우 “예”로 설정합니다.",
+ "ignoreVersionDetectionMacOSLobApp": "앱 개발자가 자동으로 업데이트하는 앱의 경우 또는 설치 전에 앱 bundleID만 확인하려는 경우 \"예\"를 선택합니다. 설치 전에 앱 bundleID 및 버전 번호를 확인하려면 \"아니요\"를 선택합니다.",
+ "installAsManagedMacOSLobApp": "이 설정은 macOS 11 이상에만 적용됩니다. 앱이 설치되지만 macOS 10.15 이하에서는 관리되지 않습니다.",
+ "installContextDropdown": "적절한 설치 컨텍스트를 선택하세요. 사용자 컨텍스트는 대상 사용자에 대해서만 앱을 설치하는 반면 디바이스 컨텍스트는 디바이스의 모든 사용자에 대해 앱을 설치합니다.",
+ "ldapUrl": "클라이언트가 전자 메일 받는 사람에 대한 공개 암호화 키를 가져올 수 있는 LDAP 호스트 이름입니다. 키를 사용할 수 있게 되면 전자 메일이 암호화됩니다. 지원되는 형식: - ldap.example.com
\r\n- ldap.example.com:123
\r\n- ldap://ldap.example.com
- ldap://ldap.example.com:123
- ldaps://ldap.example.com
\r\n- ldaps://ldap.example.com:123
",
+ "permissionsSettings": "연결된 앱에 대한 런타임 권한을 선택합니다.",
+ "policyAssociatedApp": "이 정책과 연결할 앱을 선택합니다.",
+ "policyConfigurationSettings": "이 정책에 대한 구성 설정을 정의하는 데 사용할 방법을 선택합니다.",
+ "policyDescription": "필요에 따라 이 구성 정책에 대한 설명을 입력합니다.",
+ "policyEnrollmentType": "이 설정을 디바이스 관리 또는 Intune SDK로 만든 앱을 통해 관리할지를 선택하세요.",
+ "policyName": "이 구성 정책의 이름을 입력합니다.",
+ "policyPlatform": "이 앱 구성 정책을 적용할 플랫폼을 선택합니다.",
+ "policyProfileType": "이 앱 구성 프로필을 적용할 디바이스 프로필 유형을 선택합니다.",
+ "policySMime": "Outlook에 대한 S/MIME 서명 및 암호화 설정을 구성합니다.",
+ "sMimeDeployCertsFromIntune": "S/MIME 인증서가 Outlook에서 사용하기 위해 Intune에서 배달되는지 여부를 지정합니다.\r\nIntune은 회사 포털을 통해 자동으로 서명 및 암호화 인증서를 사용자에게 배포합니다.",
+ "sMimeEnable": "메일을 작성할 때 S/MIME 컨트롤 사용 여부를 지정합니다.",
+ "sMimeEnableAllowChange": "사용자가 [S/MIME 사용] 설정을 변경할 수 있도록 허용할지를 지정합니다.",
+ "sMimeEncryptAllEmails": "메일을 모두 암호화해야 하는지 여부를 지정합니다.\r\n암호화 기능은 의도된 수신자만 데이터를 읽을 수 있도록 데이터를 암호화 텍스트로 변환합니다.",
+ "sMimeEncryptAllEmailsAllowChange": "사용자가 [모든 메일 암호화] 설정을 변경할 수 있도록 허용할지를 지정합니다.",
+ "sMimeEncryptionCertProfile": "메일 암호화에 사용할 인증서 프로필을 지정하세요.",
+ "sMimeSignAllEmails": "모든 메일에 서명해야 하는지 여부를 지정합니다.\r\n디지털 서명은 메일의 신뢰성을 확인하고 전송 중에 내용이 훼손되지 않았는지 확인합니다.",
+ "sMimeSignAllEmailsAllowChange": "사용자가 [모든 메일 서명] 설정을 변경할 수 있도록 허용할지를 지정합니다.",
+ "sMimeSigningCertProfile": "메일 서명에 사용할 인증서 프로필을 지정하세요.",
+ "sMimeUserNotificationType": "Outlook용 S/MIME 인증서를 검색하려면 회사 포털을 열어야 함을 사용자에게 알리는 방법입니다."
},
- "BooleanActions": {
- "allow": "허용",
- "block": "차단",
- "configured": "구성됨",
- "disable": "사용 안 함",
- "dontRequire": "필요 없음",
- "enable": "사용",
- "hide": "숨기기",
- "limit": "제한",
- "notConfigured": "구성되지 않음",
- "require": "필요",
- "show": "표시",
- "yes": "예"
- },
- "ProactiveRemediations": {
- "Create": {
- "Basics": {
- "DescriptionMultiLineTextBox": {
- "label": "설명",
- "placeholder": "설명 입력"
- },
- "NameTextBox": {
- "label": "이름",
- "placeholder": "이름 입력"
- },
- "PublisherTextBox": {
- "label": "게시자",
- "placeholder": "게시자 입력"
- },
- "VersionTextBox": {
- "label": "버전"
- },
- "headerDescription": "작성한 검색 및 재구성 스크립트에서 새 사용자 지정 스크립트 패키지를 만듭니다."
- },
- "ScopeTags": {
- "headerDescription": "스크립트 패키지를 할당할 그룹을 하나 이상 선택합니다."
- },
- "Settings": {
- "DetectionScriptMultiLineTextBox": {
- "label": "검색 스크립트",
- "placeholder": "입력 스크립트 텍스트",
- "requiredValidationMessage": "검색 스크립트를 입력하세요."
- },
- "EnforceScriptSignatureCheckOptionPicker": {
- "label": "스크립트 서명 확인 적용"
- },
- "LoggedOnCredentialsOptionPicker": {
- "label": "로그온된 자격 증명을 사용하여 이 스크립트 실행"
- },
- "RemediationScript": {
- "infoBox": "이 스크립트는 재구성 스크립트가 없기 때문에 검색 전용 모드에서 실행됩니다."
- },
- "RemediationScriptMultiLineTextBox": {
- "label": "재구성 스크립트",
- "placeholder": "입력 스크립트 텍스트"
- },
- "RunIn64BitPSOptionPicker": {
- "label": "64비트 PowerShell에서 스크립트 실행"
- },
- "ScriptMultiLineTextBox": {
- "base64EncodingValidationMessage": "유효하지 않은 스크립트입니다. 스크립트에 사용된 하나 이상의 문자가 유효하지 않습니다."
- },
- "headerDescription": "작성한 스크립트에서 사용자 지정 스크립트 패키지를 만듭니다. 기본적으로 스크립트는 할당된 디바이스에서 매일 실행됩니다.",
- "infoBox": "이 스크립트는 읽기 전용입니다. 이 스크립트에 대한 일부 설정이 사용하지 않도록 설정될 수 있습니다."
- },
- "title": "사용자 지정 스크립트 만들기",
- "ScriptProperties": {
- "GridHeaders": {
- "interval": "간격",
- "time": "날짜 및 시간"
- },
- "Interval": {
- "day": "매일 반복",
- "days": "{0}일마다 반복",
- "hour": "매시간 반복",
- "hours": "{0}시간마다 반복",
- "month": "매달 반복",
- "months": "{0}개월마다 반복",
- "week": "매주 반복",
- "weeks": "{0}주마다 반복"
- },
- "Time": {
- "utc": "{0}(UTC)",
- "utcWithDate": "{0}(UTC)({1})",
- "withDate": "{0}({1})"
- }
- }
- },
- "Edit": {
- "title": "편집 - {0}"
- }
- },
"WindowsManagement": {
"Assignment": {
"noAssignmentCustomAttributeDisplayText": "하나 이상의 그룹에 사용자 지정 특성을 할당합니다. 할당을 편집하려면 [속성]으로 이동합니다.",
@@ -2708,910 +1644,6 @@
"shellScriptObjectName": "셸 스크립트",
"successfullySavedPolicy": "{0}을(를) 저장함"
},
- "AssignmentFilters": {
- "assignmentFilterColumnHeader": "필터",
- "noFilters": "없음"
- },
- "Category": {
- "airPlay": "AirPlay",
- "airPrint": "AirPrint",
- "androidDefenderAtp": "엔드포인트용 Microsoft Defender",
- "androidDeviceOwnerApplications": "애플리케이션",
- "androidForWorkPassword": "디바이스 암호",
- "appManagement": "앱 차단 또는 허용",
- "applicationGuard": "Microsoft Defender Application Guard",
- "applicationRestrictions": "제한된 앱",
- "applicationVisibility": "앱 표시 또는 숨기기",
- "applications": "앱 스토어",
- "applicationsAndGames": "앱 스토어, 문서 보기, 게임",
- "applicationsAndGoogle": "Google Play 스토어",
- "appsAndExperience": "앱 및 환경",
- "associatedDomains": "연결된 도메인",
- "autonomousSingleAppMode": "자치 단일 앱 모드",
- "azureOperationalInsights": "Azure Operational Insights",
- "bitLocker": "Windows 암호화",
- "browser": "브라우저",
- "builtinApps": "기본 제공 앱",
- "cellular": "셀룰러",
- "cloudAndStorage": "클라우드 및 스토리지",
- "cloudPrint": "클라우드 프린터",
- "complianceEmailProfile": "전자 메일",
- "connectedDevices": "연결된 디바이스",
- "connectivity": "셀룰러 및 연결",
- "contentCaching": "콘텐츠 캐싱",
- "controlPanelAndSettings": "제어판 및 설정",
- "credentialGuard": "Microsoft Defender Credential Guard",
- "customCompliance": "사용자 지정 규정 준수",
- "customCompliancePreview": "사용자 지정 규정 준수(미리 보기)",
- "customConfiguration": "사용자 지정 구성 프로필",
- "customOMASettings": "사용자 지정 OMA-URI 설정",
- "customPreferences": "기본 설정 파일",
- "defender": "Microsoft Defender 바이러스 백신",
- "defenderAntivirus": "Microsoft Defender 바이러스 백신",
- "defenderExploitGuard": "Microsoft Defender Exploit Guard",
- "defenderFirewall": "Microsoft Defender 방화벽",
- "defenderLocalSecurityOptions": "로컬 디바이스 보안 옵션",
- "defenderSecurityCenter": "Microsoft Defender 보안 센터",
- "deliveryOptimization": "제공 최적화",
- "derivedCredentialAuthenticationConfiguration": "파생된 자격 증명",
- "deviceExperience": "디바이스 환경",
- "deviceFirmwareConfigurationInterface": "디바이스 펌웨어 구성 인터페이스",
- "deviceGuard": "Microsoft Defender 애플리케이션 제어",
- "deviceHealth": "디바이스 상태",
- "devicePassword": "디바이스 암호",
- "deviceProperties": "디바이스 속성",
- "deviceRestrictions": "일반",
- "deviceSecurity": "시스템 보안",
- "display": "표시",
- "domainJoin": "도메인 가입",
- "domains": "도메인",
- "edgeBrowser": "Microsoft Edge 레거시(버전 45 이하)",
- "edgeBrowserSmartScreen": "Microsoft Defender SmartScreen",
- "edgeKiosk": "Microsoft Edge 키오스크 모드",
- "editionUpgrade": "버전 업그레이드",
- "education": "교육",
- "educationDeviceCerts": "디바이스 인증서",
- "educationStudentCerts": "학생 인증서",
- "educationTakeATest": "테스트 수행",
- "educationTeacherCerts": "교사 인증서",
- "emailProfile": "전자 메일",
- "enterpriseDataProtection": "Windows Information Protection",
- "expeditedCheckin": "모바일 디바이스 관리 구성",
- "extensibleSingleSignOn": "Single Sign-On 앱 확장",
- "filevault": "FileVault",
- "firewall": "방화벽",
- "games": "게임",
- "gatekeeper": "게이트키퍼",
- "healthMonitoring": "상태 모니터링",
- "homeScreenLayout": "홈 화면 레이아웃",
- "iOSWallpaper": "배경 무늬",
- "importedPFX": "PKCS 가져온 인증서",
- "iosDefenderAtp": "엔드포인트용 Microsoft Defender",
- "iosKiosk": "키오스크",
- "kernelExtensions": "커널 확장",
- "keyboardAndDictionary": "키보드 및 사전",
- "kiosk": "키오스크",
- "kioskAndroidEnterprise": "전용 디바이스",
- "kioskConfiguration": "키오스크",
- "kioskConfigurationV2": "키오스크",
- "kioskWebBrowser": "키오스크 웹 브라우저",
- "lockScreenMessage": "잠금 화면 메시지",
- "lockedScreenExperience": "잠긴 화면 환경",
- "logging": "보고 및 원격 분석",
- "loginItems": "로그인 항목",
- "loginWindow": "로그인 창",
- "macDefenderAtp": "엔드포인트용 Microsoft Defender",
- "maintenance": "유지 관리",
- "malware": "맬웨어",
- "messaging": "메시징",
- "networkBoundary": "네트워크 경계",
- "networkProxy": "네트워크 프록시",
- "notifications": "앱 알림",
- "pKCS": "PKCS 인증서",
- "password": "암호",
- "personalProfile": "개인 프로필",
- "personalization": "개인 설정",
- "policyOverride": "그룹 정책 재정의",
- "powerSettings": "전원 설정",
- "printer": "프린터",
- "privacy": "개인정보취급방침",
- "privacyPerApp": "앱별 개인 정보 보호 예외",
- "privacyPreferences": "개인 정보 기본 설정",
- "projection": "프로젝션",
- "sCCMCompliance": "Configuration Manager 준수",
- "sCEP": "SCEP 인증서",
- "sCEPProperties": "SCEP 인증서",
- "sMode": "모드 전환(Windows 참가자인 경우에만)",
- "safari": "Safari",
- "search": "검색",
- "session": "세션",
- "sharedDevice": "공유 iPad",
- "sharedPCAccountManager": "공유 다중 사용자 디바이스",
- "singleSignOn": "Single Sign-On",
- "smartScreen": "Microsoft Defender SmartScreen",
- "softwareUpdates": "설정",
- "start": "시작",
- "systemExtensions": "시스템 확장",
- "systemSecurity": "시스템 보안",
- "trustedCert": "신뢰할 수 있는 인증서",
- "updates": "업데이트",
- "userRights": "사용자 권한",
- "usersAndAccounts": "사용자 및 계정",
- "vPN": "기본 VPN",
- "vPNApps": "자동 VPN",
- "vPNAppsAndTrafficRules": "앱 및 트래픽 규칙",
- "vPNConditionalAccess": "조건부 액세스",
- "vPNConnectivity": "연결",
- "vPNDNSTriggers": "DNS 설정",
- "vPNIKEv2": "IKEv2 설정",
- "vPNProxy": "프록시",
- "vPNSplitTunneling": "분할 터널링",
- "vPNTrustedNetwork": "신뢰할 수 있는 네트워크 검색",
- "webContentFilter": "웹 콘텐츠 필터",
- "wiFi": "Wi-Fi",
- "win10Wifi": "Wi-Fi",
- "windowsAtp": "엔드포인트용 Microsoft Defender",
- "windowsDefenderATP": "엔드포인트용 Microsoft Defender",
- "windowsHelloForBusiness": "비즈니스용 Windows Hello",
- "windowsSpotlight": "Windows 추천",
- "wiredNetwork": "유선 네트워크",
- "wireless": "무선",
- "wirelessProjection": "무선 프로젝션",
- "workProfile": "회사 프로필 설정",
- "workProfilePassword": "회사 프로필 암호",
- "xboxServices": "Xbox 서비스",
- "zebraMx": "MX 프로필(Zebra만)",
- "complianceActionsLabel": "비준수에 대한 작업"
- },
- "MicrosoftEdgeChannel": {
- "beta": "Beta",
- "dev": "Dev",
- "stable": "Stable"
- },
- "ConfigurationTypes": {
- "Table": {
- "androidDeviceOwnerGeneral": "디바이스 제한(디바이스 소유자)",
- "androidForWorkGeneral": "디바이스 제한(회사 프로필)"
- },
- "androidCustom": "사용자 지정",
- "androidDeviceOwnerGeneral": "디바이스 제한",
- "androidDeviceOwnerPkcs": "PKCS 인증서",
- "androidDeviceOwnerScep": "SCEP 인증서",
- "androidDeviceOwnerTrustedCertificate": "신뢰할 수 있는 인증서",
- "androidDeviceOwnerVpn": "VPN",
- "androidDeviceOwnerWiFi": "Wi-Fi",
- "androidEmailProfile": "메일(삼성 KNOX 전용)",
- "androidForWorkCustom": "사용자 지정",
- "androidForWorkEmailProfile": "전자 메일",
- "androidForWorkGeneral": "디바이스 제한",
- "androidForWorkImportedPFX": "PKCS 가져온 인증서",
- "androidForWorkOemConfig": "OEMConfig",
- "androidForWorkPKCS": "PKCS 인증서",
- "androidForWorkSCEP": "SCEP 인증서",
- "androidForWorkTrustedCertificate": "신뢰할 수 있는 인증서",
- "androidForWorkVpn": "VPN",
- "androidForWorkWiFi": "Wi-Fi",
- "androidGeneral": "디바이스 제한",
- "androidImportedPFX": "PKCS 가져온 인증서",
- "androidPKCS": "PKCS 인증서",
- "androidSCEP": "SCEP 인증서",
- "androidTrustedCertificate": "신뢰할 수 있는 인증서",
- "androidVPN": "VPN",
- "androidWiFi": "Wi-Fi",
- "androidZebraMx": "MX 프로필(Zebra만)",
- "complianceAndroid": "Android 준수 정책",
- "complianceAndroidDeviceOwner": "완전 관리형, 전용 및 회사 소유 회사 프로필",
- "complianceAndroidEnterprise": "개인 소유 회사 프로필",
- "complianceAndroidForWork": "Android for Work 준수 정책",
- "complianceIos": "iOS 준수 정책",
- "complianceMac": "Mac 준수 정책",
- "complianceWindows10": "Windows 10 이상 규정 준수 정책",
- "complianceWindows10Mobile": "Windows 10 Mobile 준수 정책",
- "complianceWindows8": "Windows 8 준수 정책",
- "complianceWindowsPhone": "Windows Phone 준수 정책",
- "exchangeActiveSync": "Exchange Active Sync",
- "iosCustom": "사용자 지정",
- "iosDerivedCredentialAuthenticationConfiguration": "파생된 PIV 자격 증명",
- "iosDeviceFeatures": "디바이스 기능",
- "iosEDU": "교육",
- "iosEducation": "교육",
- "iosEmailProfile": "전자 메일",
- "iosGeneral": "디바이스 제한",
- "iosImportedPFX": "PKCS 가져온 인증서",
- "iosPKCS": "PKCS 인증서",
- "iosPresets": "미리 설정",
- "iosSCEP": "SCEP 인증서",
- "iosTrustedCertificate": "신뢰할 수 있는 인증서",
- "iosVPN": "VPN",
- "iosVPNZscaler": "VPN",
- "iosWiFi": "Wi-Fi",
- "macCustom": "사용자 지정",
- "macDeviceFeatures": "디바이스 기능",
- "macEndpointProtection": "엔드포인트 보호",
- "macExtensions": "확장",
- "macGeneral": "디바이스 제한",
- "macImportedPFX": "PKCS 가져온 인증서",
- "macSCEP": "SCEP 인증서",
- "macTrustedCertificate": "신뢰할 수 있는 인증서",
- "macVPN": "VPN",
- "macWiFi": "Wi-Fi",
- "settingsCatalog": "설정 카탈로그(미리 보기)",
- "unsupported": "지원되지 않음",
- "windows10AdministrativeTemplate": "관리 템플릿(미리 보기)",
- "windows10Atp": "엔드포인트용 Microsoft Defender(Windows 10 이상을 실행하는 데스크톱 디바이스)",
- "windows10Custom": "사용자 지정",
- "windows10DesktopSoftwareUpdate": "소프트웨어 업데이트",
- "windows10DeviceFirmwareConfigurationInterface": "디바이스 펌웨어 구성 인터페이스",
- "windows10EmailProfile": "전자 메일",
- "windows10EndpointProtection": "엔드포인트 보호",
- "windows10EnterpriseDataProtection": "Windows Information Protection",
- "windows10General": "디바이스 제한",
- "windows10ImportedPFX": "PKCS 가져온 인증서",
- "windows10Kiosk": "키오스크",
- "windows10NetworkBoundary": "네트워크 경계",
- "windows10PKCS": "PKCS 인증서",
- "windows10PolicyOverride": "그룹 정책 재정의",
- "windows10SCEP": "SCEP 인증서",
- "windows10SecureAssessmentProfile": "교육 프로필",
- "windows10SharedPC": "공유 다중 사용자 디바이스",
- "windows10TeamGeneral": "디바이스 제한(Windows 10 Team)",
- "windows10TrustedCertificate": "신뢰할 수 있는 인증서",
- "windows10VPN": "VPN",
- "windows10WiFi": "Wi-Fi",
- "windows10WiFiCustom": "Wi-Fi 사용자 지정",
- "windows8General": "디바이스 제한",
- "windows8SCEP": "SCEP 인증서",
- "windows8TrustedCertificate": "신뢰할 수 있는 인증서",
- "windows8VPN": "VPN",
- "windows8WiFi": "Wi-Fi 가져오기",
- "windowsDeliveryOptimization": "제공 최적화",
- "windowsDomainJoin": "도메인 가입",
- "windowsEditionUpgrade": "버전 업그레이드 및 모드 전환",
- "windowsIdentityProtection": "ID 보호",
- "windowsPhoneCustom": "사용자 지정",
- "windowsPhoneEmailProfile": "전자 메일",
- "windowsPhoneGeneral": "디바이스 제한",
- "windowsPhoneImportedPFX": "PKCS 가져온 인증서",
- "windowsPhoneSCEP": "SCEP 인증서",
- "windowsPhoneTrustedCertificate": "신뢰할 수 있는 인증서",
- "windowsPhoneVPN": "VPN",
- "IosUpdate": "iOS 업데이트 정책"
- },
- "WindowsEnrollment": {
- "coManagementAuthorityDesc": "Configuration Manager 통합에 대한 공동 관리 설정을 구성합니다.",
- "coManagementAuthorityTitle": "공동 관리 설정 ",
- "deploymentProfiles": "Windows AutoPilot 배포 프로필",
- "description": "사용자 또는 관리자가 Windows 10/11 PC를 Intune에 등록하는 7가지 방법을 알아봅니다.",
- "descriptionLabel": "Windows 등록 방법",
- "enrollmentStatusPage": "등록 상태 페이지"
- },
- "Platform": {
- "all": "모두",
- "android": "Android 디바이스 관리자",
- "androidAOSP": "Android(AOSP)",
- "androidEnterprise": "Android Enterprise",
- "androidForWork": "Android Enterprise",
- "androidWorkProfile": "Android enterprise",
- "common": "일반",
- "iOS": "iOS/iPadOS",
- "iosAndAndroidPlatformLabel": "iOS 및 Android",
- "iosCommaAndroidPlatformLabel": "iOS, Android",
- "linux": "Linux",
- "macOS": "macOS",
- "unknown": "알 수 없음",
- "unsupported": "지원되지 않음",
- "windows": "Windows",
- "windows10": "Windows 10 이상",
- "windows10CM": "Windows 10 이상(ConfigMgr)",
- "windows10Holo": "Windows 10 Holographic",
- "windows10Mobile": "Windows 10 Mobile",
- "windows10Team": "Windows 10 Team",
- "windows10X": "Windows 10X",
- "windows8": "Windows 8.1 이상",
- "windows8And10": "Windows 8 및 10",
- "windowsPhone": "Windows Phone 8.1",
- "windows10AndLater": "Windows 10 이상",
- "windows10AndWindowsServer": "Windows 10, Windows 11 및 Windows Server(ConfigMgr)",
- "windows10andLaterCM": "Windows 10 이상(ConfigMgr)",
- "holoLens": "HoloLens",
- "surfaceHub2": "Surface Hub 2",
- "surfaceHub2S": "Surface Hub 2S",
- "windowsPC": "Windows PC"
- },
- "EnrollmentRestrictions": {
- "DeletePayloadLink": {
- "content": "{0}은(는) 하나 이상의 정책 집합에 포함되어 있습니다. {0}을(를) 삭제하면 이러한 정책 집합을 통해 더 이상 할당할 수 없게 됩니다. 그래도 삭제하시겠습니까?",
- "contentWithError": "{0}은(는) 하나 이상의 정책 집합에 포함되어 있을 수 있습니다. {0}을(를) 삭제하면 이러한 정책 집합을 통해 더 이상 할당할 수 없게 됩니다. 그래도 삭제하시겠습니까?",
- "header": "이 제한을 삭제하시겠습니까?"
- },
- "DeviceLimit": {
- "description": "사용자가 등록할 수 있는 최대 디바이스 수를 지정합니다.",
- "header": "디바이스 개수 제한",
- "info": "각 사용자가 등록할 수 있는 디바이스 수를 정의합니다."
- },
- "DeviceType": {
- "VersionValidation": {
- "aOSP": "1.0 이상이어야 합니다.",
- "android": "올바른 버전 번호를 입력합니다. 예: 5.0, 5.5.1, 6.0.0.1",
- "androidForWork": "유효한 버전 번호를 입력합니다. 예: 5.0, 5.1.1",
- "iOS": "올바른 버전 번호를 입력합니다. 예: 9.0, 10.0, 9.0.2",
- "mac": "올바른 버전 번호를 입력하세요. 예: 10, 10.10, 10.10.1",
- "min": "최소값은 {0}보다 작을 수 없습니다.",
- "minMax": "최소 버전이 최대 버전보다 클 수 없습니다.",
- "windows": "10.0 이상이어야 합니다. 8.1 디바이스를 허용하려면 비워 둡니다.",
- "windowsMobile": "10.0 이상이어야 합니다. 8.1 디바이스를 허용하려면 비워 둡니다."
- },
- "allPlatformsBlocked": "모든 디바이스 플랫폼이 차단됩니다. 플랫폼 구성을 사용하려면 플랫폼 등록을 허용하세요.",
- "blockManufacturerPlaceHolder": "제조업체 이름",
- "blockManufacturersHeader": "차단된 제조업체",
- "cannotRestrict": "제한이 지원되지 않습니다.",
- "configurationDescription": "디바이스를 등록하기 위해 충족해야 하는 플랫폼 구성 제한을 지정합니다. 등록 후 준수 정책을 사용하여 디바이스를 제한할 수 있습니다. 버전을 major.minor.build로 정의합니다. 버전 제한은 회사 포털로 등록된 디바이스에만 적용됩니다. Intune은 기본적으로 디바이스를 개인 소유로 분류합니다. 디바이스를 회사 소유로 분류하려면 추가 작업이 필요합니다.",
- "configurationDescriptionLabel": "등록 제한 설정에 대해 자세히 알아보기",
- "configurations": "플랫폼 구성",
- "deviceManufacturer": "장치 제조업체",
- "header": "디바이스 유형 제한",
- "info": "등록할 수 있는 플랫폼, 버전 및 관리 유형을 정의합니다.",
- "manufacturer": "제조업체",
- "max": "최대",
- "maxVersion": "최대 버전",
- "min": "최소",
- "minVersion": "최소 버전",
- "newPlatforms": "새 플랫폼을 허용했습니다. 플랫폼 구성 업데이트를 고려하세요.",
- "personal": "개인적으로 소유함",
- "platform": "플랫폼",
- "platformDescription": "다음 플랫폼의 등록을 허용할 수 있습니다. 지원하지 않을 플랫폼만 차단합니다. 허용된 플랫폼에 대해 추가 등록 제한을 구성할 수 있습니다.",
- "platformSettings": "플랫폼 설정",
- "platforms": "플랫폼 선택",
- "platformsSelected": "{0}개의 플랫폼 선택됨",
- "type": "유형",
- "versions": "버전",
- "versionsRange": "최소/최대 범위 허용:",
- "windowsTooltip": "모바일 디바이스 관리를 통해 등록을 제한합니다. PC 에이전트 설치를 제한하지 않습니다. Windows 10 및 Windows 11 버전만 지원됩니다. Windows 8.1을 허용하려면 버전을 비워 두세요."
- },
- "Priority": {
- "saved": "제한 우선 순위를 저장했습니다."
- },
- "Row": {
- "announce": "우선 순위: {0}, 이름: {1}, 할당: {2}"
- },
- "Table": {
- "deployed": "배포됨",
- "name": "이름",
- "priority": "우선 순위"
- },
- "Type": {
- "limit": "디바이스 개수 제한",
- "type": "디바이스 유형 제한"
- },
- "allUsers": "모든 사용자",
- "androidRestrictions": "Android 제한 사항",
- "create": "제한 만들기",
- "defaultLimitDescription": "그룹 멤버 자격에 상관없이 모든 사용자에게 우선 순위가 가장 낮게 적용된 기본 디바이스 개수 제한입니다.",
- "defaultTypeDescription": "그룹 멤버 자격에 상관없이 모든 사용자에게 우선 순위가 가장 낮게 적용된 기본 디바이스 유형 제한입니다.",
- "defaultWhfbDescription": "그룹 멤버 자격과 상관없이 모든 사용자에게 우선 순위가 가장 낮게 적용된 기본 비즈니스용 Windows Hello 구성입니다.",
- "deleteMessage": "영향을 받는 사용자가 할당된 다음 최고 우선 순위 제한으로 제한되거나 다른 제한이 할당되지 않은 경우 기본 제한으로 제한됩니다.",
- "deleteTitle": "{0} 제한을 삭제할까요?",
- "descriptionHint": "제한 설정을 통해 특징이 지정된 비즈니스 사용 목적 또는 제한 수준을 간단히 설명합니다.",
- "edit": "편집 제한",
- "info": "디바이스는 사용자에게 할당된 우선 순위가 가장 높은 등록 제한을 준수해야 합니다. 디바이스 제한을 끌어서 우선 순위를 변경할 수 있습니다. 기본 제한은 모든 사용자에 대해 가장 낮은 우선 순위이며 사용자가 없는 등록을 제어합니다. 기본 제한을 편집할 수 있지만 삭제할 수는 없습니다.",
- "iosRestrictions": "iOS 제한 사항",
- "mDM": "MDM",
- "macRestrictions": "MacOS 제한 사항",
- "maxVersion": "최대 버전",
- "minVersion": "최소 버전",
- "nameHint": "제한 집합 식별을 위해 표시되는 주 특성입니다.",
- "noAssignmentsStatusBar": "하나 이상의 그룹에 제한을 할당하세요. [속성]을 클릭하세요.",
- "notFound": "제한을 찾을 수 없습니다. 이미 삭제되었을 수 있습니다.",
- "personallyOwned": "개인적으로 소유한 디바이스",
- "restriction": "제한",
- "restrictionLowerCase": "제한",
- "restrictionType": "Restriction type",
- "selectType": "제한 유형 선택",
- "selectValidation": "플랫폼 선택",
- "typeHint": "[디바이스 유형 제한]을 선택하여 디바이스 속성을 제한합니다. [디바이스 개수 제한]을 선택하여 사용자당 디바이스 수를 제한합니다.",
- "typeRequired": "제한 유형이 필요합니다.",
- "winPhoneRestrictions": "Windows Phone 제한 사항",
- "windowsRestrictions": "Windows 제한 사항"
- },
- "Titles": {
- "ChromeOs": {
- "devices": "Chrome OS 디바이스"
- },
- "ManagedDesktop": {
- "adminContacts": "관리자 연락처",
- "appPackaging": "앱 패키징",
- "devices": "장치",
- "feedback": "피드백",
- "gettingStarted": "시작",
- "messages": "메시지",
- "onlineResources": "온라인 리소스",
- "serviceRequests": "서비스 요청",
- "settings": "설정",
- "tenantEnrollment": "테넌트 등록"
- },
- "actions": "비준수에 대한 작업",
- "advancedExchangeSettings": "Exchange Online 설정",
- "advancedThreatProtection": "엔드포인트용 Microsoft Defender",
- "allApps": "모든 앱",
- "allDevices": "모든 디바이스",
- "androidFotaDeployments": "Android FOTA 배포",
- "appBundles": "앱 번들",
- "appCategories": "앱 범주",
- "appConfigPolicies": "앱 구성 정책",
- "appInstallStatus": "앱 설치 상태",
- "appLicences": "앱 라이선스",
- "appProtectionPolicies": "앱 보호 정책",
- "appProtectionStatus": "앱 보호 상태",
- "appSelectiveWipe": "앱 선택 초기화",
- "appleVppTokens": "Apple VPP 토큰",
- "apps": "앱",
- "assign": "할당",
- "assignedPermissions": "할당된 권한",
- "assignedRoles": "할당된 역할",
- "autopilotDeploymentReport": "Autopilot 배포(미리 보기)",
- "brandingAndCustomization": "사용자 지정",
- "cartProfiles": "카트 프로필",
- "certificateConnectors": "인증서 커넥터",
- "chromeEnterprise": "Chrome Enterprise",
- "compliancePolicies": "준수 정책",
- "complianceScriptManagement": "스크립트",
- "complianceScriptManagementPreview": "스크립트(미리 보기)",
- "complianceSettings": "준수 정책 설정",
- "conditionStatements": "조건 문",
- "conditions": "위치",
- "configMgr": "Microsoft Endpoint Configuration Manager",
- "configurationProfiles": "구성 프로필",
- "configurationProfilesPreview": "구성 프로필(미리 보기)",
- "connectorsAndTokens": "커넥터 및 토큰",
- "corporateDeviceIdentifiers": "회사 디바이스 식별자",
- "customAttributes": "사용자 지정 특성",
- "customNotifications": "사용자 지정 알림",
- "deploymentSettings": "배포 설정",
- "derivedCredentials": "파생된 자격 증명",
- "deviceActions": "디바이스 작업",
- "deviceCategories": "디바이스 범주",
- "deviceCleanUp": "디바이스 정리 규칙",
- "deviceEnrollmentManagers": "디바이스 등록 관리자",
- "deviceExecutionStatus": "디바이스 상태",
- "deviceLimitEnrollmentRestrictions": "등록 디바이스 개수 제한",
- "deviceTypeEnrollmentRestrictions": "등록 디바이스 플랫폼 제한",
- "devices": "디바이스",
- "discoveredApps": "검색된 앱",
- "embeddedSIM": "eSIM 셀룰러 프로필(미리 보기)",
- "enrollDevices": "디바이스 등록",
- "enrollmentFailures": "등록 오류",
- "enrollmentNotifications": "등록 알림(미리 보기)",
- "enrollmentRestrictions": "등록 제한",
- "exchangeActiveSync": "Exchange ActiveSync",
- "exchangeServiceConnectors": "Exchange 서비스 커넥터",
- "failuresForFeatureUpdates": "기능 업데이트 실패(미리 보기)",
- "failuresForQualityUpdates": "Windows 긴급 업데이트 오류(미리 보기)",
- "featureFlighting": "기능 플라이팅",
- "featureUpdateDeployments": "Windows 10 이상의 기능 업데이트(미리 보기)",
- "flighting": "플라이팅",
- "fotaUpdate": "펌웨어 무선 업데이트",
- "groupPolicy": "관리 템플릿",
- "groupPolicyAnalytics": "그룹 정책 분석",
- "helpSupport": "도움말 및 지원",
- "helpSupportReplacement": "도움말 및 지원({0})",
- "iOSAppProvisioning": "iOS 앱 프로비저닝 프로필",
- "incompleteUserEnrollments": "사용자 등록 미완료",
- "intuneRemoteAssistance": "원격 도움말(미리 보기)",
- "iosUpdates": "iOS/iPadOS용 정책 업데이트",
- "legacyPcManagement": "레거시 PC 관리",
- "macOSSoftwareUpdate": "macOS용 업데이트 정책",
- "macOSSoftwareUpdateAccountSummaries": "macOS 디바이스 설치 상태",
- "macOSSoftwareUpdateCategorySummaries": "소프트웨어 업데이트 요약",
- "macOSSoftwareUpdateStateSummaries": "업데이트",
- "managedGooglePlay": "관리되는 Google Play",
- "msfb": "비즈니스용 Microsoft 스토어",
- "myPermissions": "내 권한",
- "notifications": "알림",
- "officeApps": "Office 앱",
- "officeProPlusPolicies": "Office 앱 관련 정책",
- "onPremise": "온-프레미스",
- "onPremisesConnector": "Exchange ActiveSync 온-프레미스 커넥터",
- "onPremisesDeviceAccess": "Exchange ActiveSync 디바이스",
- "onPremisesManageAccess": "Exchange 온-프레미스 액세스",
- "outOfDateIosDevices": "iOS 디바이스에 대한 설치 오류",
- "overview": "개요",
- "partnerDeviceManagement": "파트너 디바이스 관리",
- "perUpdateRingDeploymentState": "업데이트 링 배포 상태별",
- "permissions": "사용 권한",
- "platformApps": "앱 {0}개",
- "platformDevices": "디바이스 {0}개",
- "platformEnrollment": "{0} 등록",
- "policies": "정책",
- "previewMDMDevices": "모든 관리되는 디바이스(미리 보기)",
- "profiles": "프로필",
- "properties": "속성",
- "reports": "보고서",
- "retireNoncompliantDevices": "비규격 디바이스 사용 중지",
- "retireNoncompliantDevicesPreview": "Retire noncompliant devices (preview)",
- "role": "역할",
- "scriptManagement": "스크립트",
- "securityBaselines": "보안 기준",
- "serviceToServiceConnector": "Exchange Online 커넥터",
- "shellScripts": "셸 스크립트",
- "teamViewerConnector": "TeamViewer Connector",
- "telecomeExpenseManagement": "Telecom Expense Management",
- "tenantAdmin": "테넌트 관리",
- "tenantAdministration": "테넌트 관리",
- "termsAndConditions": "사용 약관",
- "titles": "제목",
- "troubleshootSupport": "문제 해결 및 지원",
- "user": "사용자",
- "userExecutionStatus": "사용자 상태",
- "warranty": "보증 공급업체",
- "wdacSupplementalPolicies": "S 모드 추가 정책",
- "windows10DriverUpdate": "Windows 10 이상용 드라이버 업데이트(미리 보기)",
- "windows10QualityUpdate": "Windows 10 이상의 품질 업데이트(미리 보기)",
- "windows10UpdateRings": "Windows 10 이상용 링 업데이트",
- "windows10XPolicyFailures": "Windows 10X 정책 실패",
- "windowsEnterpriseCertificate": "Windows 엔터프라이즈 인증서",
- "windowsManagement": "PowerShell 스크립트",
- "windowsSideLoadingKeys": "Windows 테스트용 로드 키",
- "windowsSymantecCertificate": "Windows DigiCert 인증서",
- "windowsThreatReport": "위협 에이전트 상태"
- },
- "ScopeTypes": {
- "allDevices": "모든 디바이스",
- "allUsers": "모든 사용자",
- "allUsersAndDevices": "모든 사용자 및 모든 디바이스",
- "selectedGroups": "선택된 그룹"
- },
- "DetectionRules": {
- "ComparisonOperators": {
- "equals": "같음",
- "greaterThan": "보다 큼",
- "greaterThanOrEqualTo": "크거나 같음",
- "lessThan": "보다 작음",
- "lessThanOrEqualTo": "작거나 같음",
- "notEqualTo": "같지 않음"
- },
- "CustomScript": {
- "enforceSignatureCheck": "스크립트 서명 확인 적용 및 자동으로 스크립트 실행",
- "enforceSignatureCheckTooltip": "스크립트가 신뢰할 수 있는 게시자에 의해 서명되었는지 확인하려면 '예'를 선택합니다(경고나 메시지가 표시되지 않고 스크립트가 실행되도록 함). 스크립트가 차단 해제된 상태로 실행됩니다. 서명 확인 없이 최종 사용자 확인으로 스크립트를 실행하려면 '아니요'(기본값)를 선택합니다.",
- "header": "사용자 지정 검색 스크립트 사용",
- "runAs32Bit": "64비트 클라이언트에서 32비트 프로세스로 스크립트 실행",
- "runAs32BitTooltip": "64비트 클라이언트에서 32비트 프로세스로 스크립트를 실행하려면 '예'를 선택합니다. 64비트 클라이언트에서 64비트 프로세스로 스크립트를 실행하려면 '아니요'(기본값)를 선택합니다. 32비트 클라이언트는 32비트 프로세스로 스크립트를 실행합니다.",
- "scriptFile": "스크립트 파일",
- "scriptFileNotSelectedValidation": "스크립트 파일이 선택되지 않았습니다.",
- "scriptFileTooltip": "클라이언트에서 앱의 존재를 검색하는 PowerShell 스크립트를 선택합니다. 스크립트가 0 값 종료 코드를 반환하고 STDOUT에 문자열 값을 쓰면 앱이 검색됩니다."
- },
- "Manual": {
- "FileRule": {
- "DetectionMethodOptions": {
- "dateCreated": "만든 날짜",
- "dateModified": "수정한 날짜",
- "doesNotExist": "파일 또는 폴더 가 없습니다.",
- "fileOrFolderExists": "파일 또는 폴더가 있음",
- "sizeInMB": "크기(MB)",
- "version": "문자열(버전)"
- },
- "associatedWith32Bit": "64비트 클라이언트에서 32비트 앱과 연결됨",
- "associatedWith32BitTooltip": "64비트 클라이언트에서 32비트 컨텍스트에서 경로 환경 변수를 확장하려면 '예'를 선택합니다. 64비트 클라이언트에서 64비트 컨텍스트에서 경로 변수를 확장하려면 '아니요'(기본값)를 선택합니다. 32비트 클라이언트에서는 항상 32비트 컨텍스트가 사용됩니다.",
- "detectionMethod": "검색 방법",
- "detectionMethodTooltip": "앱의 존재 유효성을 검사하는 데 사용되는 검색 방법 유형을 선택합니다.",
- "fileOrFolder": "파일 또는 폴더",
- "fileOrFolderToolTip": "검색할 파일 또는 폴더입니다.",
- "operator": "연산자",
- "operatorTooltip": "비교의 유효성을 검사하는 데 사용되는 검색 방법의 연산자를 선택합니다.",
- "path": "경로",
- "pathTooltip": "검색할 파일 또는 폴더를 포함하는 폴더의 전체 경로입니다.",
- "value": "값",
- "valueTooltip": "선택한 검색 방법과 일치하는 값을 선택합니다. 데이터 검색 방법은 현지 시간으로 입력해야 합니다."
- },
- "GridColumns": {
- "pathOrCode": "경로/코드",
- "type": "종류"
- },
- "MsiRule": {
- "operator": "연산자",
- "operatorTooltip": "MSI 제품 버전 유효성 검사 비교의 연산자를 선택합니다.",
- "productCode": "MSI 제품 코드",
- "productCodeTooltip": "앱에 대해 유효한 MSI 제품 코드입니다.",
- "productVersion": "값",
- "productVersionCheck": "MSI 제품 버전 확인",
- "productVersionCheckTooltip": "MSI 제품 코드 외에 MSI 제품 버전을 확인하려면 '예'를 선택합니다.",
- "productVersionTooltip": "앱의 MSI 제품 버전을 입력합니다."
- },
- "RegistryRule": {
- "DetectionMethodOptions": {
- "integerComparison": "정수 비교",
- "keyDoesNotExist": "키가 없음",
- "keyExists": "키가 있음",
- "stringComparison": "문자열 비교",
- "valueDoesNotExist": "값이 없음",
- "valueExists": "값이 있음",
- "versionComparison": "버전 비교"
- },
- "associatedWith32Bit": "64비트 클라이언트에서 32비트 앱과 연결됨",
- "associatedWith32BitTooltip": "64비트 클라이언트에서 32비트 레지스트리를 검색하려면 '예'를 선택합니다. 64비트 클라이언트에서 64비트 레지스트리를 검색하려면 '아니요'(기본값)를 선택합니다. 32비트 클라이언트는 항상 32비트 레지스트리를 검색합니다.",
- "detectionMethod": "검색 방법",
- "detectionMethodTooltip": "앱의 존재 유효성을 검사하는 데 사용되는 검색 방법 유형을 선택합니다.",
- "keyPath": "키 경로",
- "keyPathTooltip": "검색할 값을 포함하는 레지스트리 항목의 전체 경로입니다.",
- "operator": "연산자",
- "operatorTooltip": "비교의 유효성을 검사하는 데 사용되는 검색 방법의 연산자를 선택합니다.",
- "value": "값",
- "valueName": "값 이름",
- "valueNameTooltip": "검색할 레지스트리 값의 이름입니다.",
- "valueTooltip": "선택한 검색 방법과 일치하는 값을 선택합니다."
- },
- "RuleTypeOptions": {
- "file": "파일",
- "mSI": "MSI",
- "registry": "레지스트리"
- },
- "gridAriaLabel": "검색 규칙",
- "header": "앱의 존재를 나타내는 규칙을 만듭니다.",
- "noRulesSelectedPlaceholder": "규칙이 지정되지 않았습니다.",
- "ruleTableLimit": "검색 규칙은 최대 25개까지 추가할 수 있음",
- "ruleType": "규칙 유형",
- "ruleTypeTooltip": "추가할 검색 규칙 유형을 선택합니다."
- },
- "RuleConfigurationOptions": {
- "customScript": "사용자 지정 검색 스크립트 사용",
- "manual": "수동으로 검색 규칙 구성"
- },
- "bladeTitle": "검색 규칙",
- "header": "앱의 존재를 검색하는 데 사용되는 앱 관련 규칙을 구성합니다.",
- "rulesFormat": "규칙 형식",
- "rulesFormatTooltip": "수동으로 검색 규칙을 구성하도록 선택하거나 사용자 지정 스크립트를 사용하여 앱의 존재를 검색하도록 선택합니다.",
- "selectorLabel": "검색 규칙"
- },
- "AppType": {
- "androidEnterpriseSystemApp": "Android Enterprise 시스템 앱",
- "androidForWorkApp": "관리형 Google Play 스토어 앱",
- "androidLobApp": "Android LOB(기간 업무) 앱",
- "androidStoreApp": "Android 스토어 앱",
- "builtInAndroid": "기본 제공 Android 앱",
- "builtInApp": "기본 제공 앱",
- "builtInIos": "기본 제공 iOS 앱",
- "default": "",
- "iosLobApp": "iOS LOB(기간 업무) 앱",
- "iosStoreApp": "iOS 스토어 앱",
- "iosVppApp": "iOS 대량 구매 프로그램 앱",
- "lineOfBusinessApp": "LOB(기간 업무) 앱",
- "macOSDmgApp": "macOS 앱(DMG)",
- "macOSEdgeApp": "Microsoft Edge(macOS)",
- "macOSLobApp": "macOS 기간 업무 앱",
- "macOSMdatpApp": "Microsoft Defender ATP(macOS)",
- "macOSOfficeSuiteApp": "Microsoft 365 앱(macOS)",
- "macOsVppApp": "macOS Volume Purchase Program 앱",
- "managedAndroidLobApp": "관리되는 Android LOB(기간 업무) 앱",
- "managedAndroidStoreApp": "관리되는 Android 스토어 앱",
- "managedGooglePlayApp": "관리형 Google Play 스토어 앱",
- "managedGooglePlayPrivateApp": "관리형 Google Play 프라이빗 앱",
- "managedGooglePlayWebApp": "관리형 Google Play 웹 링크",
- "managedIosLobApp": "관리되는 iOS LOB(기간 업무) 앱",
- "managedIosStoreApp": "관리되는 iOS 스토어 앱",
- "microsoftStoreForBusinessApp": "비즈니스용 Microsoft 스토어 앱",
- "microsoftStoreForBusinessReleaseManagedApp": "비즈니스용 Microsoft 스토어",
- "officeSuiteApp": "Microsoft 365 앱(Windows 10 이상)",
- "webApp": "웹 링크",
- "windowsAppXLobApp": "Windows AppX LOB(기간 업무) 앱",
- "windowsClassicApp": "Windows 앱(Win32)",
- "windowsEdgeApp": "Microsoft Edge(Windows 10 이상)",
- "windowsMobileMsiLobApp": "Windows MSI 기간 업무 앱",
- "windowsPhone81AppXBundleLobApp": "Windows Phone 8.1 AppX LOB(기간 업무) 앱",
- "windowsPhone81AppXLobApp": "Windows Phone 8.1 AppX LOB(기간 업무) 앱",
- "windowsPhone81StoreApp": "Windows Phone 8.1 스토어 앱",
- "windowsPhoneXapLobApp": "Windows Phone XAP LOB(기간 업무) 앱",
- "windowsStoreApp": "Microsoft Store 앱",
- "windowsUniversalAppXLobApp": "Windows Universal AppX LOB(기간 업무) 앱",
- "windowsUniversalLobApp": "Windows 유니버설 사업 부문 앱"
- },
- "PolicyType": {
- "AttackSurfaceReductionRules": {
- "configMgr": "공격 표면 감소 규칙(ConfigMgr)"
- },
- "EndpointDetectionandResponse": {
- "mDE": "엔드포인트 검색 및 응답"
- },
- "EndpointSecurityTemplate": {
- "aSRAppBrowserSecurity": "앱 및 브라우저 격리",
- "aSRApplicationControl": "애플리케이션 제어",
- "aSRAttackSurfaceReduction": "공격 표면 감소 규칙",
- "aSRDeviceControl": "디바이스 제어",
- "aSRExploitProtection": "Exploit Protection",
- "aSRWebProtection": "웹 보호(Microsoft Edge 레거시)",
- "aVExclusions": "Microsoft Defender 바이러스 백신 제외",
- "antivirus": "Microsoft Defender 바이러스 백신",
- "cloudPC": "Windows 365 보안 기준",
- "default": "엔드포인트 보안",
- "defenderTest": "엔드포인트용 Microsoft Defender 데모",
- "diskEncryption": "BitLocker",
- "eDR": "엔드포인트 검색 및 응답",
- "edgeSecurityBaseline": "Microsoft Edge 기준",
- "edgeSecurityBaselinePreview": "미리 보기: Microsoft Edge 기준선",
- "editionUpgradeConfiguration": "버전 업그레이드 및 모드 전환",
- "firewall": "Microsoft Defender 방화벽",
- "firewallRules": "Microsoft Defender 방화벽 규칙",
- "identityProtection": "계정 보호",
- "identityProtectionPreview": "계정 보호(미리 보기)",
- "mDMSecurityBaseline1810": "2018년 10월 Windows 10 이상용 MDM 보안 기준",
- "mDMSecurityBaseline1810Preview": "미리 보기: 2018년 10월 Windows 10 이상용 MDM 보안 기준",
- "mDMSecurityBaseline1810PreviewBeta": "미리 보기: 2018년 10월 Windows 10용 MDM 보안 기준(베타)",
- "mDMSecurityBaseline1906": "2019년 5월 Windows 10 이상용 MDM 보안 기준",
- "mDMSecurityBaseline2004": "2020년 8월 Windows 10 이상용 MDM 보안 기준",
- "mDMSecurityBaseline2101": "2020년 12월 Windows 10 이상용 MDM 보안 기준",
- "macOSAntivirus": "바이러스 백신",
- "macOSDiskEncryption": "FileVault",
- "macOSFirewall": "macOS 방화벽",
- "microsoftDefenderBaseline": "엔드포인트용 Microsoft Defender 기준",
- "office365Baseline": "Microsoft Office O365 기준",
- "office365BaselinePreview": "미리 보기: Microsoft Office O365 기준",
- "securityBaselines": "보안 기준",
- "test": "테스트 템플릿",
- "testFirewallRulesSecurityTemplateName": "Microsoft Defender 방화벽 규칙(테스트)",
- "testIdentityProtectionSecurityTemplateName": "계정 보호(테스트)",
- "windowsSecurityExperience": "Windows 보안 환경"
- },
- "Firewall": {
- "mDE": "Microsoft Defender 방화벽"
- },
- "FirewallRules": {
- "mDE": "Microsoft Defender 방화벽 규칙"
- },
- "administrativeTemplates": "관리 템플릿",
- "androidCompliancePolicy": "Android 준수 정책",
- "aospDeviceOwnerCompliancePolicy": "Android(AOSP) 규정 준수 정책",
- "applicationControl": "애플리케이션 제어",
- "custom": "사용자 지정",
- "deliveryOptimization": "제공 최적화",
- "derivedPersonalIdentityVerificationCredential": "파생된 자격 증명",
- "deviceFeatures": "디바이스 기능",
- "deviceFirmwareConfigurationInterface": "디바이스 펌웨어 구성 인터페이스",
- "deviceLock": "디바이스 잠금",
- "deviceOwner": "완전 관리형, 전용 및 회사 소유 회사 프로필",
- "deviceRestrictions": "디바이스 제한",
- "deviceRestrictionsWindows10Team": "디바이스 제한(Windows 10 Team)",
- "domainJoinPreview": "도메인 가입",
- "editionUpgradeAndModeSwitch": "버전 업그레이드 및 모드 전환",
- "education": "교육",
- "email": "전자 메일",
- "emailSamsungKnoxOnly": "메일(삼성 KNOX 전용)",
- "endpointProtection": "엔드포인트 보호",
- "expeditedCheckin": "모바일 디바이스 관리 구성",
- "exploitProtection": "Exploit Protection",
- "extensions": "확장",
- "hardwareConfigurations": "BIOS 구성",
- "identityProtection": "Id 보호",
- "iosCompliancePolicy": "iOS 준수 정책",
- "kiosk": "키오스크",
- "macCompliancePolicy": "Mac 준수 정책",
- "microsoftDefenderAntivirus": "Microsoft Defender 바이러스 백신",
- "microsoftDefenderAntivirusexclusions": "Microsoft Defender 바이러스 백신 제외",
- "microsoftDefenderAtpWindows10Desktop": "엔드포인트용 Microsoft Defender(Windows 10 이상을 실행하는 데스크톱 디바이스)",
- "microsoftDefenderFirewallRules": "Microsoft Defender 방화벽 규칙",
- "microsoftEdgeBaseline": "Microsoft Edge 기준선",
- "mxProfileZebraOnly": "MX 프로필(Zebra만)",
- "networkBoundary": "네트워크 경계",
- "oemConfig": "OEMConfig",
- "overrideGroupPolicy": "그룹 정책 재정의",
- "pkcsCertificate": "PKCS 인증서",
- "pkcsImportedCertificate": "PKCS 가져온 인증서",
- "preferenceFile": "기본 설정 파일",
- "presets": "미리 설정",
- "scepCertificate": "SCEP 인증서",
- "secureAssessmentEducation": "보안 평가(교육)",
- "settingsCatalog": "설정 카탈로그",
- "sharedMultiUserDevice": "공유 다중 사용자 디바이스",
- "softwareUpdates": "소프트웨어 업데이트",
- "trustedCertificate": "신뢰할 수 있는 인증서",
- "unknown": "알 수 없음",
- "unsupported": "지원되지 않음",
- "vpn": "VPN",
- "wiFi": "Wi-Fi",
- "wiFiImport": "Wi-Fi 가져오기",
- "windows10CompliancePolicy": "Windows 10/11 준수 정책",
- "windows10MobileCompliancePolicy": "Windows 10 Mobile 준수 정책",
- "windows10XScep": "SCEP 인증서 - 테스트",
- "windows10XTrustedCertificate": "신뢰할 수 있는 인증서 - 테스트",
- "windows10XVPN": "VPN - 테스트",
- "windows10XWifi": "WIFI - 테스트",
- "windows8CompliancePolicy": "Windows 8 준수 정책",
- "windowsHealthMonitoring": "Windows 상태 모니터링",
- "windowsInformationProtection": "Windows Information Protection",
- "windowsPhoneCompliancePolicy": "Windows Phone 준수 정책",
- "windowsUpdateforBusiness": "비즈니스용 Windows 업데이트",
- "wiredNetwork": "유선 네트워크",
- "workProfile": "개인 소유 회사 프로필"
- },
- "OfficeSuiteAppsTab": {
- "acceptLicenseOnBehalfOfUsersLabel": "사용자 대신 Microsoft 소프트웨어 사용 조건에 동의",
- "appSuiteConfigurationLabel": "앱 제품군 구성",
- "appSuiteInformationLabel": "앱 제품군 정보",
- "appsToBeInstalledLabel": "제품군의 일부로 설치할 앱",
- "architectureLabel": "아키텍처",
- "architectureTooltip": "디바이스에 32비트 또는 64비트 버전의 Microsoft 365 앱을 설치할지 여부를 정의합니다.",
- "configurationDesignerLabel": "구성 디자이너",
- "configurationFileLabel": "구성 파일",
- "configurationSettingsFormatLabel": "구성 설정 형식",
- "configureAppSuiteLabel": "앱 제품군 구성",
- "configuredLabel": "구성됨",
- "currentVersionLabel": "현재 버전",
- "currentVersionTooltip": "이 도구 모음에 구성된 Office의 현재 버전입니다. 이 값은 최신 버전이 구성 및 저장될 때 업데이트됩니다.",
- "enableMicrosoftSearchAsDefaultTooltip": "디바이스에서 Google Chrome용 Bing의 Microsoft Search 확장을 설치할지 여부를 결정하는 데 도움이 되는 백그라운드 서비스를 설치합니다.",
- "enterXmlDataLabel": "XML 데이터 입력",
- "languagesLabel": "언어",
- "languagesTooltip": "기본적으로 Intune에서는 운영 체제의 기본 언어를 사용하여 Office를 설치합니다. 설치할 추가 언어를 선택합니다.",
- "learnMoreText": "자세한 정보",
- "newUpdateChannelTooltip": "앱이 새 기능으로 업데이트되는 빈도를 정의합니다.",
- "noCurrentVersionText": "현재 버전 없음",
- "noLanguagesSelectedLabel": "선택한 언어가 없음",
- "notConfiguredLabel": "구성되지 않음",
- "propertiesLabel": "속성",
- "removeOtherVersionsLabel": "다른 버전 제거",
- "removeOtherVersionsTooltip": "사용자 디바이스에서 다른 버전의 Office(MSI)를 제거하려면 예를 선택합니다.",
- "selectOfficeAppsLabel": "Office 앱 선택",
- "selectOfficeAppsTooltip": "제품군의 일부로 설치하려는 Office 365 앱을 선택하세요.",
- "selectOtherOfficeAppsLabel": "다른 Office 앱 선택(라이선스 필요)",
- "selectOtherOfficeAppsTooltip": "이러한 추가 Office 앱에 대한 라이선스를 소유하는 경우 Intune에서도 이러한 라이선스를 할당할 수 있습니다.",
- "specificVersionLabel": "특정 버전",
- "updateChannelLabel": "업데이트 채널",
- "updateChannelTooltip": "앱이 새 기능으로 업데이트되는 빈도를 정의합니다.
\r\n월 단위 - 사용자에게 최신 Office 기능을 제공합니다.
\r\n월 단위 엔터프라이즈 채널 - 한 달에 한 번 매월 두 번째 화요일에 사용자에게 최신 Office 기능을 제공합니다.
\r\n월 단위(대상 지정) - 공개가 임박한 월 단위 채널 릴리스를 조기에 확인할 수 있습니다. 지원되는 업데이트 채널이며, 일반적으로 새 기능을 포함하는 월 단위 채널 릴리스인 경우 일주일에 한 번 이상 사용할 수 있습니다.
\r\n반기 단위 - 연간 몇 번에 걸쳐 사용자에게 새 Office 기능을 제공합니다.
\r\n반기 단위(대상 지정) - 파일럿 사용자 및 애플리케이션 호환성 테스터에게 다음번 반기 단위를 테스트할 수 있는 기회를 제공합니다.",
- "useMicrosoftSearchAsDefault": "Bing의 Microsoft Search에 대한 백그라운드 서비스 설치",
- "useSharedComputerActivationLabel": "공유 컴퓨터 인증 사용",
- "useSharedComputerActivationTooltip": "공유 컴퓨터 활성화를 활용하면 여러 사용자가 이용하는 컴퓨터에 Microsoft 365 앱을 배포할 수 있습니다. 일반적으로 사용자는 제한된 수의 디바이스(예: 5대)에만 Microsoft 365 앱을 설치하고 활성화할 수 있습니다. Microsoft 365 앱과 공유 컴퓨터 활성화를 함께 사용하는 것은 이 제한으로 계산되지 않습니다.",
- "versionToInstallLabel": "설치할 버전",
- "versionToInstallTooltip": "설치해야 하는 Office 버전을 선택합니다.",
- "xLanguagesSelectedLabel": "{0}개의 언어가 선택됨",
- "xmlConfigurationLabel": "XML 구성"
- },
- "OfficeApplicationType": {
- "access": "Access",
- "bing": "Microsoft Search를 기본값으로 사용",
- "excel": "Excel",
- "groove": "OneDrive(Groove)",
- "lync": "비즈니스용 Skype",
- "oneDrive": "OneDrive 데스크톱",
- "oneNote": "OneNote",
- "outlook": "Outlook",
- "powerPoint": "PowerPoint",
- "publisher": "Publisher",
- "teams": "Teams",
- "word": "Word"
- },
- "WindowsQualityUpdateProfile": {
- "Details": {
- "DaysUntilForcedReboot": {
- "label": "다시 시작이 적용될 때까지 대기할 일 수"
- },
- "Description": {
- "label": "설명"
- },
- "Name": {
- "label": "이름"
- },
- "QualityUpdateRelease": {
- "label": "디바이스 OS 버전이 다음보다 작은 경우 품질 업데이트를 신속하게 설치:"
- },
- "bladeTitle": "Windows 10 이상의 품질 업데이트(미리 보기)",
- "loadError": "로드하지 못했습니다."
- },
- "TabName": {
- "qualityUpdateSettings": "설정"
- },
- "infoBoxText": "기존 Windows 10 이상의 운영체제를 설치한 디바이스의 업데이트 링 정책 외에 현재 사용 가능한 유일한 전용 품질 업데이트 컨트롤은 지정된 패치 수준보다 뒤쳐진 디바이스에 대한 품질 업데이트를 신속히 처리하는 기능입니다. 향후 추가 컨트롤이 제공될 예정입니다.",
- "warningBoxText": "소프트웨어 업데이트를 신속하게 처리하면 필요한 경우 규정 준수 상태에 도달하는 시간을 줄이는 데 도움이 될 수 있지만 최종 사용자의 생산성에 미치는 영향이 커집니다. 업무 시간 중에 시스템을 다시 시작할 가능성이 훨씬 증가하기 때문입니다."
- },
- "Devices": {
- "General": {
- "android": "Android"
- },
- "aOSP": "Android 오픈 소스 프로젝트",
- "android": "Android 디바이스 관리자",
- "androidWorkProfile": "Android Enterprise(회사 프로필)",
- "iOS": "iOS/iPadOS",
- "mac": "macOS",
- "windows": "Windows(MDM)",
- "windows10": "Windows 10 이상",
- "windowsHomeSku": "Windows Home SKU",
- "windowsMobile": "Windows Mobile"
- },
"SettingDetails": {
"CustomPolicyConfigurationProfile": {
"uploadControlPlaceHolderText": "구성 프로필 파일 선택"
@@ -3675,7 +1707,7 @@
"aESGCM128": "AES-128-GCM (16-octet ICV)",
"aESGCM256": "AES-256-GCM (16-octet ICV)",
"aadSharedDeviceDataClearAppsDescription": "공유 디바이스 모드에 최적화되지 않은 앱을 목록에 추가합니다. 사용자가 공유 디바이스 모드에 최적화된 앱에서 로그아웃할 때마다 앱의 로컬 데이터가 지워집니다. Android 9 이상을 실행하는 공유 모드로 등록된 전용 디바이스에 사용할 수 있습니다.",
- "aadSharedDeviceDataClearAppsName": "공유 디바이스 모드에 최적화되지 않은 앱에서 로컬 데이터 지우기(공개 미리 보기)",
+ "aadSharedDeviceDataClearAppsName": "공유 디바이스 모드에 최적화되지 않은 앱에서 로컬 데이터 지우기",
"accountsPageDescription": "설정 앱의 [계정]에 대한 액세스를 차단합니다.",
"accountsPageName": "계정",
"accountsSignInAssistantSettingsDescription": "Microsoft 로그인 도우미 서비스(wlidsvc)를 차단합니다. 이 설정을 구성하지 않으면 wlidsvc NT 서비스를 사용자가 제어할 수 있습니다(수동 시작).",
@@ -5503,7 +3535,7 @@
"enableEndUserAccessToDefenderName": "Defender에 대한 최종 사용자 액세스",
"enableEngagedRestartDescription": "사용자가 개입형 다시 시작으로 전환할 수 있는 설정을 사용하도록 설정합니다.",
"enableEngagedRestartName": "사용자가 다시 시작할 수 있도록 허용(개입형 다시 시작)",
- "enableIdentityPrivacyDescription": "이 속성은 입력하는 텍스트로 사용자 이름을 가립니다. 예를 들어 '익명'을 입력하면 실제 사용자 이름을 사용하여 이 Wi-Fi 연결을 인증하는 각 사용자가 '익명'으로 표시됩니다.",
+ "enableIdentityPrivacyDescription": "이 속성은 입력한 텍스트로 사용자 이름을 마스킹합니다. 예를 들어 '익명'을 입력하면 실제 사용자 이름을 사용하여 이 Wi-Fi 연결로 인증하는 각 사용자가 '익명'으로 표시됩니다. 장치 기반 인증서 인증을 사용하는 경우 필요할 수 있습니다.",
"enableIdentityPrivacyName": "ID 개인 정보(외부 ID)",
"enableNetworkInspectionSystemDescription": "NIS(네트워크 검사 시스템)에서 서명을 통해 검색된 악성 트래픽을 차단합니다.",
"enableNetworkInspectionSystemName": "NIS(네트워크 검사 시스템)",
@@ -7252,6 +5284,8 @@
"presharedKeyEncodingDescription": "UTF-8을 사용하여 미리 공유한 키를 인코딩합니다.",
"presharedKeyEncodingName": "미리 공유한 키 인코딩",
"preventAny": "경계를 넘은 공유 방지",
+ "primaryAuthenticationMethodName": "기본 인증 방법",
+ "primaryAuthenticationMethodTEAPDescription": "사용자가 인증할 기본 방법을 선택합니다. 인증서를 선택하면 디바이스에 배포된 인증서 프로필(SCEP 또는 PKCS) 중 하나를 선택합니다. 디바이스에서 서버에 제공하는 ID 인증서입니다.",
"primarySMTPAddressOption": "기본 SMTP 주소",
"printersColumns": "예: 프린터 DNS 이름",
"printersDescription": "네트워크 호스트 이름에 따라 프린터를 자동으로 프로비전합니다. 이 설정은 공유 프린터를 지원하지 않습니다.",
@@ -7663,6 +5697,8 @@
"searchEnableRemoteQueriesName": "원격 쿼리",
"secondActiveEthernet": "두 번째 활성 이더넷",
"secondEthernet": "두 번째 이더넷",
+ "secondaryAuthenticationMethodName": "2차 인증 방법",
+ "secondaryAuthenticationMethodTEAPDescription": "사용자가 인증할 보조 방법을 선택합니다. 인증서를 선택하면 디바이스에 배포된 인증서 프로필(SCEP 또는 PKCS) 중 하나를 선택합니다. 디바이스에서 서버에 제공하는 ID 인증서입니다.",
"secretKey": "비밀 키:",
"secureBootEnabledDescription": "디바이스에서 보안 부팅을 사용하도록 설정해야 합니다.",
"secureBootEnabledName": "디바이스에서 보안 부팅을 사용하도록 설정해야 합니다.",
@@ -8074,6 +6110,7 @@
"systemUpdateWindow9": "오전 4:30",
"systemWindowsBlockedDescription": "알림, 수신 전화, 발신 전화, 시스템 경고, 시스템 오류 등 알림 창을 사용하지 않습니다.",
"systemWindowsBlockedName": "알림 창",
+ "tEAPName": "터널 EAP(TEAP)",
"tLSMinMax": "TLS 최소 버전은 TLS 최대 버전보다 작거나 같아야 합니다.",
"tLSVersionRangeMaximum": "최대 TLS 버전 범위",
"tLSVersionRangeMaximumDescription": "1.0, 1.1 또는 1.2 중 최대 TLS 버전을 입력합니다. 비워 두면 기본값인 1.2가 사용됩니다.",
@@ -8126,6 +6163,17 @@
"timeWindowSameStartEndDayTime": "종료 날짜/시간은 시작 날짜/시간과 같을 수 없습니다.",
"timeZoneDescription": "대상 디바이스의 표준 시간대를 선택합니다.",
"timeZoneName": "표준 시간대",
+ "timeoutFifteenMinutes": "15분",
+ "timeoutFiveMinutes": "5분",
+ "timeoutFourHours": "4시간",
+ "timeoutNever": "시간 제한 없음",
+ "timeoutOneHour": "1시간",
+ "timeoutOneMinute": "1분",
+ "timeoutTenMinutes": "10분",
+ "timeoutThirtyMinutes": "30분",
+ "timeoutThreeMinutes": "3분",
+ "timeoutTwoHours": "2시간",
+ "timeoutTwoMinutes": "2분",
"toggleConfigurationPkgDescription": "Microsoft Defender for Endpoint 클라이언트를 등록하는 데 사용할 서명된 구성 패키지를 업로드합니다.",
"toggleConfigurationPkgName": "Microsoft Defender for Endpoint 클라이언트 구성 패키지 형식:",
"trafficRuleAppName": "앱",
@@ -8824,6 +6872,33 @@
"win10WifiWirelessSecurityTypeName": "무선 보안 유형",
"win10WifiWirelessSecurityTypeOpen": "열기(인증 없음)",
"win10WifiWirelessSecurityTypeWPA": "WPA/WPA2-개인",
+ "win10WiredAuthenticationModeDescription": "사용자나 디바이스를 인증할지, 아니면 게스트 인증(없음)을 사용할지를 선택합니다. 인증서 인증을 사용하는 경우 인증서 유형이 인증 유형과 일치하는지 확인하세요.",
+ "win10WiredAuthenticationModeName": "인증 모드",
+ "win10WiredAuthenticationPeriodDescription": "인증 시도가 실패하기 전까지 클라이언트가 대기하는 시간(초)입니다. 1에서 3600 사이의 숫자를 선택하세요. 값을 지정하지 않으면 18초가 사용됩니다.",
+ "win10WiredAuthenticationPeriodName": "인증 기간",
+ "win10WiredAuthenticationRetryDelayPeriodDescription": "실패한 인증과 다음 인증 시도 사이의 시간(초)입니다. 1에서 3600 사이의 값을 선택하세요. 값을 지정하지 않으면 1초가 사용됩니다.",
+ "win10WiredAuthenticationRetryDelayPeriodName": "인증 다시 시도 지연 기간 ",
+ "win10WiredFIPSComplianceDescription": "암호화 기반 보안 시스템을 사용하여 디지털 방식으로 저장된 중요하지만 분류되지 않은 정보를 보호하는 모든 미국 연방 정부 기관의 경우 FIPS 140-2 표준에 대한 유효성 검사가 필요합니다.",
+ "win10WiredFIPSComplianceName": "유선 프로필이 FIPS(Federal Information Processing Standard)를 준수하도록 강제 적용",
+ "win10WiredGuest": "Guest",
+ "win10WiredMachine": "컴퓨터",
+ "win10WiredMachineOrUser": "사용자 또는 컴퓨터",
+ "win10WiredMaximumAuthenticationFailuresDescription": "이 자격 증명 집합에 대한 최대 인증 실패 수를 입력합니다. 값을 지정하지 않으면 1번의 시도가 사용됩니다.",
+ "win10WiredMaximumAuthenticationFailuresName": "최대 인증 실패 횟수",
+ "win10WiredMaximumEAPOLStartMessagesDescription": "1에서 100 사이의 EAPOL-Start 메시지 수를 선택합니다. 값을 지정하지 않으면 최대 3개의 메시지가 전송됩니다.",
+ "win10WiredMaximumEAPOLStartMessagesName": "최대 EAPOL-start",
+ "win10WiredNetworkAuthenticationBlockPeriodDescription": "인증 차단 기간(분)입니다. 인증 시도 실패 후 자동 인증 시도가 차단되는 기간을 지정하는 데 사용됩니다. 0에서 1440 사이의 값을 선택합니다.",
+ "win10WiredNetworkAuthenticationBlockPeriodName": "차단 기간(분)",
+ "win10WiredNetworkAuthenticationModeName": "인증 모드",
+ "win10WiredNetworkDoNotEnforceName": "적용 안 함",
+ "win10WiredNetworkEnforce8021XDescription": "유선 네트워크의 자동 구성 서비스에서 포트 인증에 802.1X를 사용해야 하는지 여부를 지정합니다.",
+ "win10WiredNetworkEnforce8021XName": "802.1x",
+ "win10WiredNetworkEnforceName": "적용",
+ "win10WiredRememberCredentialsDescription": "유선 네트워크에 처음 연결할 때 사용자의 자격 증명을 캐시할지 여부를 선택합니다. 캐시된 자격 증명은 후속 연결에 사용되며 사용자는 다시 입력할 필요가 없습니다. 이 설정을 구성하지 않는 것은 이 설정을 예로 설정하는 것과 같습니다.",
+ "win10WiredRememberCredentialsName": "로그온 시 자격 증명 기억",
+ "win10WiredStartPeriodDescription": "EAPOL-Start 메시지를 보내기 전까지 대기하는 시간(초)입니다. 1에서 3600 사이의 값을 선택하세요. 값을 지정하지 않으면 5초가 사용됩니다.",
+ "win10WiredStartPeriodName": "시작 기간",
+ "win10WiredUser": "사용자",
"win10appLockerApplicationControlAllowDescription": "이러한 앱은 실행할 수 있습니다.",
"win10appLockerApplicationControlAllowName": "적용",
"win10appLockerApplicationControlAuditComponentsAndStoreAppsDescription": "\"감사만\" 모드에서는 모든 이벤트를 로컬 클라이언트 이벤트 로그에 기록하지만, 앱 실행을 차단하지는 않습니다. Windows 구성 요소 및 Microsoft 스토어 앱은 보안 요구 사항을 통과한 것으로 기록됩니다.",
@@ -9165,7 +7240,6 @@
"deviceConditionsInfoParagraph2": "등록된 디바이스에 대해 비슷한 디바이스 기반 설정을 구성할 수 있습니다.",
"deviceConditionsInfoParagraph2LinkText": "등록된 디바이스의 디바이스 준수 설정 구성에 대해 자세히 알아보세요.",
"deviceId": "디바이스 ID",
- "deviceLockComplexityValidationFailureNotes": "참고:
\r\n\r\n - 장치 잠금에는 Android 11 이상을 대상으로 하는 LOW, MEDIUM 또는 HIGH의 암호 복잡성이 필요할 수 있습니다. Android 10 및 이전 버전에서 작동하는 장치의 경우 복잡성 값을 낮음/중간/높게 설정하면 기본적으로 \"낮은 복잡성\"에 대한 예상 동작으로 설정됩니다.
\r\n - 아래의 암호 정의는 변경될 수 있습니다. 다양한 암호 복잡성 수준에 대한 최신 업데이트 정의는 DevicePolicyManager|Android 개발자를 참조하세요.
\r\n
\r\n\r\n낮음
\r\n\r\n - 암호는 반복(4444) 또는 순서(1234, 4321, 2468) 시퀀스가 있는 패턴 또는 PIN일 수 있습니다.
\r\n
\r\n\r\n중간
\r\n\r\n - 최소 길이가 4자 이상인 반복(4444) 또는 순서(1234, 4321, 2468) 시퀀스가 없는 PIN
\r\n - 최소 길이가 4자 이상인 알파벳 암호
\r\n - 최소 길이가 4자 이상인 영숫자 암호
\r\n
\r\n\r\n높음
\r\n\r\n - 최소 길이가 8자 이상인 반복(4444) 또는 순서(1234, 4321, 2468) 시퀀스가 없는 PIN
\r\n - 최소 길이가 6자 이상인 알파벳 암호
\r\n - 최소 길이가 6자 이상인 알파벳 암호
\r\n
\r\n",
"deviceLockedOpenFilesOptionsText": "디바이스가 잠길 때 열린 파일이 있음",
"deviceLockedOptionText": "디바이스가 잠길 때",
"deviceManufacturer": "디바이스 제조업체",
@@ -9463,7 +7537,7 @@
"reporting": "보고",
"reports": "보고서",
"require": "필요",
- "requireDeviceLockComplexityOnApps": "디바이스 잠금 복잡성 필요",
+ "requireDeviceLockOnApps": "Require device lock",
"requireThreatScanOnApps": "앱에서 위협 검색 필요",
"requiredField": "이 필드는 비워 둘 수 없습니다.",
"requiredSafetyNetEvaluationType": "필요한 SafetyNet 평가 유형",
@@ -9659,6 +7733,7 @@
"yourDataIsBeingDownloadedEllipsis": "데이터를 다운로드하고 있습니다. 시간이 좀 걸릴 수 있습니다...",
"yourDataIsBeingDownloadedMinutes": "데이터가 다운로드 중이며 이 작업은 몇 분 정도 걸릴 수 있습니다...",
"yourProtectionLevel": "보호 수준",
+ "rules": "규칙",
"basics": "기본 사항",
"modeTableHeader": "그룹 모드",
"appAssignmentMsg": "그룹",
@@ -9695,221 +7770,2042 @@
"licenseTypeDevice": "디바이스",
"licenseTypeUser": "사용자"
},
- "Languages": {
- "ar-aE": "아랍어(아랍에미리트)",
- "ar-bH": "아랍어(바레인)",
- "ar-dZ": "아랍어(알제리)",
- "ar-eG": "아랍어(이집트)",
- "ar-iQ": "아랍어(이라크)",
- "ar-jO": "아랍어(요르단)",
- "ar-kW": "아랍어(쿠웨이트)",
- "ar-lB": "아랍어(레바논)",
- "ar-lY": "아랍어(리비아)",
- "ar-mA": "아랍어(모로코)",
- "ar-oM": "아랍어(오만)",
- "ar-qA": "아랍어(카타르)",
- "ar-sA": "아랍어(사우디아라비아)",
- "ar-sY": "아랍어(시리아)",
- "ar-tN": "아랍어(튀니지)",
- "ar-yE": "아랍어(예멘)",
- "az-cyrl": "아제르바이잔어(키릴 자모, 아제르바이잔)",
- "az-latn": "아제르바이잔어(라틴 문자, 아제르바이잔)",
- "bn-bD": "벵골어(방글라데시)",
- "bn-iN": "벵골어(인도)",
- "bs-cyrl": "보스니아어(키릴 자모)",
- "bs-latn": "보스니아어(라틴 문자)",
- "zh-cN": "중국어(PRC)",
- "zh-hK": "중국어(홍콩 특별 행정구)",
- "zh-mO": "중국어(마카오 특별 행정구)",
- "zh-sG": "중국어(싱가포르)",
- "zh-tW": "중국어(대만)",
- "hr-bA": "크로아티아어(라틴 문자)",
- "hr-hR": "크로아티아어(크로아티아)",
- "nl-bE": "네덜란드어(벨기에)",
- "nl-nL": "네덜란드어(네덜란드)",
- "en-aU": "영어(오스트레일리아)",
- "en-bZ": "영어(벨리즈)",
- "en-cA": "영어(캐나다)",
- "en-cabn": "영어(카리브 해)",
- "en-iE": "영어(아일랜드)",
- "en-iN": "영어(인도)",
- "en-jM": "영어(자메이카)",
- "en-mY": "영어(말레이시아)",
- "en-nZ": "영어(뉴질랜드)",
- "en-pH": "영어(필리핀)",
- "en-sG": "영어(싱가포르)",
- "en-tT": "영어(트리니다드 토바고)",
- "en-uK": "영어(영국)",
- "en-uS": "영어(미국)",
- "en-zA": "영어(남아프리카 공화국)",
- "en-zW": "영어(짐바브웨)",
- "fr-bE": "프랑스어(벨기에)",
- "fr-cA": "프랑스어(캐나다)",
- "fr-cH": "프랑스어(스위스)",
- "fr-fR": "프랑스어(프랑스)",
- "fr-lU": "프랑스어(룩셈부르크)",
- "fr-mC": "프랑스어(모나코)",
- "de-aT": "독일어(오스트리아)",
- "de-cH": "독일어(스위스)",
- "de-dE": "독일어(독일)",
- "de-lI": "독일어(리히텐슈타인)",
- "de-lU": "독일어(룩셈부르크)",
- "iu-cans": "이눅티투트어(음절형, 캐나다)",
- "iu-latn": "이눅티투트어(라틴 문자, 캐나다)",
- "it-cH": "이탈리아어(스위스)",
- "it-iT": "이탈리아어(이탈리아)",
- "ms-bN": "말레이어(브루나이)",
- "ms-mY": "말레이어(말레이시아)",
- "mn-cN": "몽골어(전통 몽골어, 중국)",
- "mn-mN": "몽골어(키릴 자모, 몽골)",
- "no-nB": "노르웨이어, 복말(노르웨이)",
- "no-nn": "노르웨이어(니노르스크, 노르웨이)",
- "pt-bR": "포르투갈어(브라질)",
- "pt-pT": "포르투갈어(포르투갈)",
- "quz-bO": "케추아어(볼리비아)",
- "quz-eC": "케추아어(에콰도르)",
- "quz-pE": "케추아어(페루)",
- "smj-nO": "룰레 라프어(노르웨이)",
- "smj-sE": "룰레 라프어(스웨덴)",
- "se-fI": "북부 라프어(핀란드)",
- "se-nO": "북부 라프어(노르웨이)",
- "se-sE": "북부 라프어(스웨덴)",
- "sma-nO": "남부 라프어(노르웨이)",
- "sma-sE": "남부 라프어(스웨덴)",
- "smn": "이나리 라프어(핀란드)",
- "sms": "스콜트 라프어(핀란드)",
- "sr-Cyrl-bA": "세르비아어(키릴 자모)",
- "sr-Cyrl-rS": "세르비아어(키릴 자모, 세르비아-몬테네그로)",
- "sr-Latn-bA": "세르비아어(라틴 문자)",
- "sr-Latn-rS": "세르비아어(라틴 문자, 세르비아)",
- "dsb": "저지 소르비아어(독일)",
- "hsb": "고지 소르비아어(독일)",
- "es-es-tradnl": "스페인어(스페인, 전통 정렬)",
- "es-aR": "스페인어(아르헨티나)",
- "es-bO": "스페인어(볼리비아)",
- "es-cL": "스페인어(칠레)",
- "es-cO": "스페인어(콜롬비아)",
- "es-cR": "스페인어(코스타리카)",
- "es-dO": "스페인어(도미니카 공화국)",
- "es-eC": "스페인어(에콰도르)",
- "es-eS": "스페인어(스페인)",
- "es-gT": "스페인어(과테말라)",
- "es-hN": "스페인어(온두라스)",
- "es-mX": "스페인어(멕시코)",
- "es-nI": "스페인어(니카라과)",
- "es-pA": "스페인어(파나마)",
- "es-pE": "스페인어(페루)",
- "es-pR": "스페인어(푸에르토리코)",
- "es-pY": "스페인어(파라과이)",
- "es-sV": "스페인어(엘살바도르)",
- "es-uS": "스페인어(미국)",
- "es-uY": "스페인어(우루과이)",
- "es-vE": "스페인어(베네수엘라)",
- "sv-fI": "스웨덴어(핀란드)",
- "uz-cyrl": "우즈베크어(키릴 자모, 우즈베키스탄)",
- "uz-latn": "우즈베크어(라틴 문자, 우즈베키스탄)",
- "af": "아프리칸스어(남아프리카 공화국)",
- "sq": "알바니아어(알바니아)",
- "am": "암하라어(에티오피아)",
- "hy": "아르메니아어(아르메니아)",
- "as": "아삼어(인도)",
- "ba": "바슈키르어(러시아)",
- "eu": "바스크어(바스크어)",
- "be": "벨라루스어(벨로루시)",
- "br": "브르타뉴어(프랑스)",
- "bg": "불가리아어(불가리아)",
- "ca": "카탈로니아어(카탈로니아어)",
- "co": "코르시카어(프랑스)",
- "cs": "체코어(체코)",
- "da": "덴마크어(덴마크)",
- "prs": "다리어(아프가니스탄)",
- "dv": "디베히어(몰디브)",
- "et": "에스토니아어(에스토니아)",
- "fo": "페로어(페로 제도)",
- "fil": "필리핀어(필리핀)",
- "fi": "핀란드어(핀란드)",
- "gl": "갈리시아어(갈리시아)",
- "ka": "조지아어(그루지야)",
- "el": "그리스어(그리스)",
- "gu": "구자라트어(인도)",
- "ha": "하우사어(라틴 문자, 나이지리아)",
- "he": "히브리어(이스라엘)",
- "hi": "힌디어(인도)",
- "hu": "헝가리어(헝가리)",
- "is": "아이슬란드어(아이슬란드)",
- "ig": "이그보어(나이지리아)",
- "id": "인도네시아어(인도네시아)",
- "ga": "아일랜드어(아일랜드)",
- "xh": "코사어(남아프리카 공화국)",
- "zu": "줄루어(남아프리카 공화국)",
- "ja": "일본어(일본)",
- "kn": "칸나다어(인도)",
- "kk": "카자흐어(카자흐스탄)",
- "km": "크메르어(캄보디아)",
- "rw": "키냐르완다어(르완다)",
- "sw": "스와힐리어(케냐)",
- "kok": "코카니어(인도)",
- "ko": "한국어(대한민국)",
- "ky": "키르기스어(키르기스스탄)",
- "lo": "라오어(라오스)",
- "lv": "라트비아어(라트비아)",
- "lt": "리투아니아어(리투아니아)",
- "lb": "룩셈부르크어(룩셈부르크)",
- "mk": "마케도니아어(북마케도니아)",
- "ml": "몽골어(인도)",
- "mt": "몰타어(몰타)",
- "mi": "마오리어(뉴질랜드)",
- "mr": "마라티어(인도)",
- "moh": "모호크어(모호크)",
- "ne": "네팔어(네팔)",
- "oc": "오크어(프랑스)",
- "or": "오디아어(인도)",
- "ps": "파슈토어(아프가니스탄)",
- "fa": "페르시아어",
- "pl": "폴란드어(폴란드)",
- "pa": "펀잡어(인도)",
- "ro": "루마니아어(루마니아)",
- "rm": "로만시어(스위스)",
- "ru": "러시아어(러시아)",
- "sa": "산스크리트어(인도)",
- "st": "세소토 사 레보아어(남아프리카 공화국)",
- "tn": "세츠와나어(남아프리카 공화국)",
- "si": "스리랑카어(스리랑카)",
- "sk": "슬로바키아어(슬로바키아)",
- "sl": "슬로베니아어(슬로베니아)",
- "sv": "스웨덴어(스웨덴)",
- "syr": "시리아어(시리아)",
- "tg": "타지크어(키릴 자모, 타지키스탄)",
- "ta": "타밀어(인도)",
- "tt": "타타르어(러시아)",
- "te": "텔루구어(인도)",
- "th": "태국어(태국)",
- "bo": "티베트어(중국)",
- "tr": "터키어(터키)",
- "tk": "투르크멘어(투르크메니스탄)",
- "uk": "우크라이나어(우크라이나)",
- "ur": "우르두어(파키스탄)",
- "vi": "베트남어(베트남)",
- "cy": "웨일스어(영국)",
- "wo": "월로프어(세네갈)",
- "ii": "이 문자(중국)",
- "yo": "요루바어(나이지리아)"
- },
- "AppProtection": {
- "allAppTypes": "모든 앱 유형을 대상으로 함",
- "androidPlatformLabel": "Android",
- "appsInAndroidWorkProfile": "Android 회사 프로필의 앱",
- "appsOnIntuneManagedDevices": "Intune 관리 디바이스의 앱",
- "appsOnUnmanagedDevices": "관리되지 않는 디바이스의 앱",
- "iOSPlatformLabel": "iOS/iPadOS",
- "iosAndroidMacPlatformLabel": "iOS, Android, Mac",
- "iosAndroidPlatformLabel": "iOS, Android",
- "macPlatformLabel": "MAC",
- "notAvailable": "사용할 수 없음",
- "windows10PlatformLabel": "Windows 10 이상",
- "withEnrollment": "등록 있음",
- "withoutEnrollment": "등록 없음"
- },
+ "ApplicabilityRules": {
+ "GridLabel": {
+ "property": "속성",
+ "rule": "규칙",
+ "ruleDetails": "규칙 정보",
+ "value": "값"
+ },
+ "assignIf": "다음과 같은 경우 프로필 할당",
+ "deleteWarning": "선택한 적용 가능성 규칙이 삭제됩니다.",
+ "dontAssignIf": "다음과 같은 경우 프로필을 할당하지 않음",
+ "editionDisplayText": "{0} {1}",
+ "editionDisplayTextMore": "및 추가 {0}개",
+ "instructions": "할당된 그룹 내에서 이 프로필을 적용하는 방법을 지정합니다. Intune은 이러한 규칙의 결합된 조건을 충족하는 디바이스에만 프로필을 적용합니다.",
+ "maxText": "최대",
+ "minText": "최소",
+ "noActionRow": "적용 가능성 규칙이 지정되지 않음",
+ "oSVersion": "예: 1.2.3.4",
+ "toText": "끝",
+ "windows10Education": "Windows 10/11 Education",
+ "windows10EducationN": "Windows 10/11 Education N",
+ "windows10Enterprise": "Windows 10/11 Enterprise",
+ "windows10EnterpriseN": "Windows 10/11 Enterprise KN",
+ "windows10HolographicEnterprise": "비즈니스용 Windows 10 홀로그래픽",
+ "windows10Home": "Windows 10/11 Home",
+ "windows10HomeChina": "Windows 10 Home China",
+ "windows10HomeN": "Windows 10/11 Home Kn",
+ "windows10HomeSingleLanguage": "Windows 10/11 Home 단일 언어",
+ "windows10IoTCore": "Windows 10 IoT Core",
+ "windows10IoTCoreCommercial": "Windows 10 IoT Core Commercial",
+ "windows10Mobile": "Windows 10 Mobile",
+ "windows10MobileEnterprise": "Windows 10 Mobile Enterprise",
+ "windows10OsEdition": "OS 버전",
+ "windows10OsVersion": "OS 버전",
+ "windows10Professional": "Windows 10/11 Professional",
+ "windows10ProfessionalEducation": "Windows 10/11 Professional Education",
+ "windows10ProfessionalEducationN": "Windows 10/11 Professional Education N",
+ "windows10ProfessionalN": "Windows 10 Professional N",
+ "windows10ProfessionalWorkstation": "Windows 10/11 Professional Workstation",
+ "windows10ProfessionalWorkstationN": "Windows 10/11 Professional Workstation N"
+ },
+ "DetectionRules": {
+ "ComparisonOperators": {
+ "equals": "같음",
+ "greaterThan": "보다 큼",
+ "greaterThanOrEqualTo": "크거나 같음",
+ "lessThan": "보다 작음",
+ "lessThanOrEqualTo": "작거나 같음",
+ "notEqualTo": "같지 않음"
+ },
+ "CustomScript": {
+ "enforceSignatureCheck": "스크립트 서명 확인 적용 및 자동으로 스크립트 실행",
+ "enforceSignatureCheckTooltip": "스크립트가 신뢰할 수 있는 게시자에 의해 서명되었는지 확인하려면 '예'를 선택합니다(경고나 메시지가 표시되지 않고 스크립트가 실행되도록 함). 스크립트가 차단 해제된 상태로 실행됩니다. 서명 확인 없이 최종 사용자 확인으로 스크립트를 실행하려면 '아니요'(기본값)를 선택합니다.",
+ "header": "사용자 지정 검색 스크립트 사용",
+ "runAs32Bit": "64비트 클라이언트에서 32비트 프로세스로 스크립트 실행",
+ "runAs32BitTooltip": "64비트 클라이언트에서 32비트 프로세스로 스크립트를 실행하려면 '예'를 선택합니다. 64비트 클라이언트에서 64비트 프로세스로 스크립트를 실행하려면 '아니요'(기본값)를 선택합니다. 32비트 클라이언트는 32비트 프로세스로 스크립트를 실행합니다.",
+ "scriptFile": "스크립트 파일",
+ "scriptFileNotSelectedValidation": "스크립트 파일이 선택되지 않았습니다.",
+ "scriptFileTooltip": "클라이언트에서 앱의 존재를 검색하는 PowerShell 스크립트를 선택합니다. 스크립트가 0 값 종료 코드를 반환하고 STDOUT에 문자열 값을 쓰면 앱이 검색됩니다.",
+ "scriptSizeLimitValidation": "검색 스크립트가 허용되는 최대 크기를 초과합니다. 검색 스크립트의 크기를 줄여 이 문제를 해결합니다."
+ },
+ "Manual": {
+ "FileRule": {
+ "DetectionMethodOptions": {
+ "dateCreated": "만든 날짜",
+ "dateModified": "수정한 날짜",
+ "doesNotExist": "파일 또는 폴더 가 없습니다.",
+ "fileOrFolderExists": "파일 또는 폴더가 있음",
+ "sizeInMB": "크기(MB)",
+ "version": "문자열(버전)"
+ },
+ "associatedWith32Bit": "64비트 클라이언트에서 32비트 앱과 연결됨",
+ "associatedWith32BitTooltip": "64비트 클라이언트에서 32비트 컨텍스트에서 경로 환경 변수를 확장하려면 '예'를 선택합니다. 64비트 클라이언트에서 64비트 컨텍스트에서 경로 변수를 확장하려면 '아니요'(기본값)를 선택합니다. 32비트 클라이언트에서는 항상 32비트 컨텍스트가 사용됩니다.",
+ "detectionMethod": "검색 방법",
+ "detectionMethodTooltip": "앱의 존재 유효성을 검사하는 데 사용되는 검색 방법 유형을 선택합니다.",
+ "fileOrFolder": "파일 또는 폴더",
+ "fileOrFolderToolTip": "검색할 파일 또는 폴더입니다.",
+ "operator": "연산자",
+ "operatorTooltip": "비교의 유효성을 검사하는 데 사용되는 검색 방법의 연산자를 선택합니다.",
+ "path": "경로",
+ "pathTooltip": "검색할 파일 또는 폴더를 포함하는 폴더의 전체 경로입니다.",
+ "value": "값",
+ "valueTooltip": "선택한 검색 방법과 일치하는 값을 선택합니다. 데이터 검색 방법은 현지 시간으로 입력해야 합니다."
+ },
+ "GridColumns": {
+ "pathOrCode": "경로/코드",
+ "type": "종류"
+ },
+ "MsiRule": {
+ "operator": "연산자",
+ "operatorTooltip": "MSI 제품 버전 유효성 검사 비교의 연산자를 선택합니다.",
+ "productCode": "MSI 제품 코드",
+ "productCodeTooltip": "앱에 대해 유효한 MSI 제품 코드입니다.",
+ "productVersion": "값",
+ "productVersionCheck": "MSI 제품 버전 확인",
+ "productVersionCheckTooltip": "MSI 제품 코드 외에 MSI 제품 버전을 확인하려면 '예'를 선택합니다.",
+ "productVersionTooltip": "앱의 MSI 제품 버전을 입력합니다."
+ },
+ "RegistryRule": {
+ "DetectionMethodOptions": {
+ "integerComparison": "정수 비교",
+ "keyDoesNotExist": "키가 없음",
+ "keyExists": "키가 있음",
+ "stringComparison": "문자열 비교",
+ "valueDoesNotExist": "값이 없음",
+ "valueExists": "값이 있음",
+ "versionComparison": "버전 비교"
+ },
+ "associatedWith32Bit": "64비트 클라이언트에서 32비트 앱과 연결됨",
+ "associatedWith32BitTooltip": "64비트 클라이언트에서 32비트 레지스트리를 검색하려면 '예'를 선택합니다. 64비트 클라이언트에서 64비트 레지스트리를 검색하려면 '아니요'(기본값)를 선택합니다. 32비트 클라이언트는 항상 32비트 레지스트리를 검색합니다.",
+ "detectionMethod": "검색 방법",
+ "detectionMethodTooltip": "앱의 존재 유효성을 검사하는 데 사용되는 검색 방법 유형을 선택합니다.",
+ "keyPath": "키 경로",
+ "keyPathTooltip": "검색할 값을 포함하는 레지스트리 항목의 전체 경로입니다.",
+ "operator": "연산자",
+ "operatorTooltip": "비교의 유효성을 검사하는 데 사용되는 검색 방법의 연산자를 선택합니다.",
+ "value": "값",
+ "valueName": "값 이름",
+ "valueNameTooltip": "검색할 레지스트리 값의 이름입니다.",
+ "valueTooltip": "선택한 검색 방법과 일치하는 값을 선택합니다."
+ },
+ "RuleTypeOptions": {
+ "file": "파일",
+ "mSI": "MSI",
+ "registry": "레지스트리"
+ },
+ "gridAriaLabel": "검색 규칙",
+ "header": "앱의 존재를 나타내는 규칙을 만듭니다.",
+ "noRulesSelectedPlaceholder": "규칙이 지정되지 않았습니다.",
+ "ruleTableLimit": "검색 규칙은 최대 25개까지 추가할 수 있음",
+ "ruleType": "규칙 유형",
+ "ruleTypeTooltip": "추가할 검색 규칙 유형을 선택합니다."
+ },
+ "RuleConfigurationOptions": {
+ "customScript": "사용자 지정 검색 스크립트 사용",
+ "manual": "수동으로 검색 규칙 구성"
+ },
+ "bladeTitle": "검색 규칙",
+ "header": "앱의 존재를 검색하는 데 사용되는 앱 관련 규칙을 구성합니다.",
+ "rulesFormat": "규칙 형식",
+ "rulesFormatTooltip": "수동으로 검색 규칙을 구성하도록 선택하거나 사용자 지정 스크립트를 사용하여 앱의 존재를 검색하도록 선택합니다.",
+ "selectorLabel": "검색 규칙"
+ },
+ "PolicyType": {
+ "AttackSurfaceReductionRules": {
+ "configMgr": "공격 표면 감소 규칙(ConfigMgr)"
+ },
+ "EndpointDetectionandResponse": {
+ "mDE": "엔드포인트 검색 및 응답"
+ },
+ "EndpointSecurityTemplate": {
+ "aSRAppBrowserSecurity": "앱 및 브라우저 격리",
+ "aSRApplicationControl": "애플리케이션 제어",
+ "aSRAttackSurfaceReduction": "공격 표면 감소 규칙",
+ "aSRDeviceControl": "디바이스 제어",
+ "aSRExploitProtection": "Exploit Protection",
+ "aSRWebProtection": "웹 보호(Microsoft Edge 레거시)",
+ "aVExclusions": "Microsoft Defender 바이러스 백신 제외",
+ "antivirus": "Microsoft Defender 바이러스 백신",
+ "cloudPC": "Windows 365 보안 기준",
+ "default": "엔드포인트 보안",
+ "defenderTest": "엔드포인트용 Microsoft Defender 데모",
+ "diskEncryption": "BitLocker",
+ "eDR": "엔드포인트 검색 및 응답",
+ "edgeSecurityBaseline": "Microsoft Edge 기준",
+ "edgeSecurityBaselinePreview": "미리 보기: Microsoft Edge 기준선",
+ "editionUpgradeConfiguration": "버전 업그레이드 및 모드 전환",
+ "firewall": "Microsoft Defender 방화벽",
+ "firewallRules": "Microsoft Defender 방화벽 규칙",
+ "identityProtection": "계정 보호",
+ "identityProtectionPreview": "계정 보호(미리 보기)",
+ "mDMSecurityBaseline1810": "2018년 10월 Windows 10 이상용 MDM 보안 기준",
+ "mDMSecurityBaseline1810Preview": "미리 보기: 2018년 10월 Windows 10 이상용 MDM 보안 기준",
+ "mDMSecurityBaseline1810PreviewBeta": "미리 보기: 2018년 10월 Windows 10용 MDM 보안 기준(베타)",
+ "mDMSecurityBaseline1906": "2019년 5월 Windows 10 이상용 MDM 보안 기준",
+ "mDMSecurityBaseline2004": "2020년 8월 Windows 10 이상용 MDM 보안 기준",
+ "mDMSecurityBaseline2101": "2020년 12월 Windows 10 이상용 MDM 보안 기준",
+ "macOSAntivirus": "바이러스 백신",
+ "macOSDiskEncryption": "FileVault",
+ "macOSFirewall": "macOS 방화벽",
+ "microsoftDefenderBaseline": "엔드포인트용 Microsoft Defender 기준",
+ "office365Baseline": "Microsoft Office O365 기준",
+ "office365BaselinePreview": "미리 보기: Microsoft Office O365 기준",
+ "securityBaselines": "보안 기준",
+ "test": "테스트 템플릿",
+ "testFirewallRulesSecurityTemplateName": "Microsoft Defender 방화벽 규칙(테스트)",
+ "testIdentityProtectionSecurityTemplateName": "계정 보호(테스트)",
+ "windowsSecurityExperience": "Windows 보안 환경"
+ },
+ "Firewall": {
+ "mDE": "Microsoft Defender 방화벽"
+ },
+ "FirewallRules": {
+ "mDE": "Microsoft Defender 방화벽 규칙"
+ },
+ "administrativeTemplates": "관리 템플릿",
+ "androidCompliancePolicy": "Android 준수 정책",
+ "aospDeviceOwnerCompliancePolicy": "Android(AOSP) 규정 준수 정책",
+ "applicationControl": "애플리케이션 제어",
+ "custom": "사용자 지정",
+ "deliveryOptimization": "제공 최적화",
+ "derivedPersonalIdentityVerificationCredential": "파생된 자격 증명",
+ "deviceFeatures": "디바이스 기능",
+ "deviceFirmwareConfigurationInterface": "디바이스 펌웨어 구성 인터페이스",
+ "deviceLock": "디바이스 잠금",
+ "deviceOwner": "완전 관리형, 전용 및 회사 소유 회사 프로필",
+ "deviceRestrictions": "디바이스 제한",
+ "deviceRestrictionsWindows10Team": "디바이스 제한(Windows 10 Team)",
+ "domainJoinPreview": "도메인 가입",
+ "editionUpgradeAndModeSwitch": "버전 업그레이드 및 모드 전환",
+ "education": "교육",
+ "email": "전자 메일",
+ "emailSamsungKnoxOnly": "메일(삼성 KNOX 전용)",
+ "endpointProtection": "엔드포인트 보호",
+ "expeditedCheckin": "모바일 디바이스 관리 구성",
+ "exploitProtection": "Exploit Protection",
+ "extensions": "확장",
+ "hardwareConfigurations": "BIOS 구성",
+ "identityProtection": "Id 보호",
+ "iosCompliancePolicy": "iOS 준수 정책",
+ "kiosk": "키오스크",
+ "macCompliancePolicy": "Mac 준수 정책",
+ "microsoftDefenderAntivirus": "Microsoft Defender 바이러스 백신",
+ "microsoftDefenderAntivirusexclusions": "Microsoft Defender 바이러스 백신 제외",
+ "microsoftDefenderAtpWindows10Desktop": "엔드포인트용 Microsoft Defender(Windows 10 이상을 실행하는 데스크톱 디바이스)",
+ "microsoftDefenderFirewallRules": "Microsoft Defender 방화벽 규칙",
+ "microsoftEdgeBaseline": "Microsoft Edge 기준선",
+ "mxProfileZebraOnly": "MX 프로필(Zebra만)",
+ "networkBoundary": "네트워크 경계",
+ "oemConfig": "OEMConfig",
+ "overrideGroupPolicy": "그룹 정책 재정의",
+ "pkcsCertificate": "PKCS 인증서",
+ "pkcsImportedCertificate": "PKCS 가져온 인증서",
+ "preferenceFile": "기본 설정 파일",
+ "presets": "미리 설정",
+ "scepCertificate": "SCEP 인증서",
+ "secureAssessmentEducation": "보안 평가(교육)",
+ "settingsCatalog": "설정 카탈로그",
+ "sharedMultiUserDevice": "공유 다중 사용자 디바이스",
+ "softwareUpdates": "소프트웨어 업데이트",
+ "trustedCertificate": "신뢰할 수 있는 인증서",
+ "unknown": "알 수 없음",
+ "unsupported": "지원되지 않음",
+ "vpn": "VPN",
+ "wiFi": "Wi-Fi",
+ "wiFiImport": "Wi-Fi 가져오기",
+ "windows10CompliancePolicy": "Windows 10/11 준수 정책",
+ "windows10MobileCompliancePolicy": "Windows 10 Mobile 준수 정책",
+ "windows10XScep": "SCEP 인증서 - 테스트",
+ "windows10XTrustedCertificate": "신뢰할 수 있는 인증서 - 테스트",
+ "windows10XVPN": "VPN - 테스트",
+ "windows10XWifi": "WIFI - 테스트",
+ "windows8CompliancePolicy": "Windows 8 준수 정책",
+ "windowsHealthMonitoring": "Windows 상태 모니터링",
+ "windowsInformationProtection": "Windows Information Protection",
+ "windowsPhoneCompliancePolicy": "Windows Phone 준수 정책",
+ "windowsUpdateforBusiness": "비즈니스용 Windows 업데이트",
+ "wiredNetwork": "유선 네트워크",
+ "workProfile": "개인 소유 회사 프로필"
+ },
+ "Win32Requirements": {
+ "AdditionalRequirements": {
+ "File": {
+ "fileOrFolderToolTip": "선택한 요구 사항으로써 파일 또는 폴더입니다.",
+ "pathToolTip": "검색할 파일 또는 폴더의 전체 경로입니다.",
+ "property": "속성",
+ "valueToolTip": "선택한 검색 방법과 일치하는 요구 사항 값을 선택합니다. 날짜 및 시간 요구 사항은 현지 형식으로 입력해야 합니다."
+ },
+ "GridColumns": {
+ "pathOrScript": "경로/스크립트",
+ "type": "형식"
+ },
+ "Registry": {
+ "keyPath": "키 경로",
+ "keyPathTooltip": "요구 사항으로써 값을 포함하는 레지스트리 항목의 전체 경로입니다.",
+ "operator": "연산자",
+ "operatorTooltip": "비교 연산자를 선택합니다.",
+ "registryRequirement": "레지스트리 키 요구 사항",
+ "registryRequirementTooltip": "레지스트리 키 요구 사항 비교를 선택합니다.",
+ "valueName": "값 이름",
+ "valueNameTooltip": "필요한 레지스트리 값의 이름입니다."
+ },
+ "RequirementTypeOptions": {
+ "fileType": "파일",
+ "registry": "레지스트리",
+ "script": "스크립트"
+ },
+ "Script": {
+ "RequirementMethodOptions": {
+ "boolean": "부울",
+ "dateTime": "날짜 및 시간",
+ "float": "부동 소수점",
+ "integer": "정수",
+ "string": "문자열",
+ "version": "버전"
+ },
+ "ScriptContent": {
+ "emptyMessage": "스크립트 콘텐츠는 비워 둘 수 없습니다."
+ },
+ "duplicateName": "스크립트 이름 {0}이(가)이미 사용 중입니다. 다른 이름을 입력하세요.",
+ "enforceSignatureCheck": "스크립트 서명 확인 적용",
+ "enforceSignatureCheckTooltip": "스크립트가 신뢰할 수 있는 게시자에 의해 서명되었는지 확인하려면 '예'를 선택합니다(경고나 메시지가 표시되지 않고 스크립트가 실행되도록 함). 스크립트가 차단 해제된 상태로 실행됩니다. 서명 확인 없이 최종 사용자 확인으로 스크립트를 실행하려면 '아니요'(기본값)를 선택합니다.",
+ "loggedOnCredentials": "로그온된 자격 증명을 사용하여 이 스크립트 실행",
+ "loggedOnCredentialsTooltip": "로그인한 디바이스 자격 증명을 사용하여 스크립트 실행",
+ "operatorTooltip": "요구 사항 비교 연산자를 선택합니다.",
+ "requirementMethod": "출력 데이터 형식 선택",
+ "requirementMethodTooltip": "검색 일치 요구 사항을 확인할 때 사용하는 데이터 형식을 선택합니다.",
+ "scriptFile": "스크립트 파일",
+ "scriptFileTooltip": "클라이언트에서 앱의 존재를 검색하는 PowerShell 스크립트를 선택합니다. 앱이 검색되면 요구 사항 프로세스에서 0 값 종료 코드를 제공하고 STDOUT에 문자열 값을 씁니다.",
+ "scriptName": "스크립트 이름",
+ "value": "값",
+ "valueTooltip": "선택한 검색 방법과 일치하는 요구 사항 값을 선택합니다. 날짜 및 시간 요구 사항은 현지 형식으로 입력해야 합니다."
+ },
+ "bladeTitle": "요구 사항 규칙 추가",
+ "createRequirementHeader": "요구 사항을 만듭니다.",
+ "header": "추가 요구 사항 규칙 구성",
+ "label": "추가 요구 사항 규칙",
+ "noRequirementsSelectedPlaceholder": "요구 사항이 지정되지 않았습니다.",
+ "requirementType": "요구 사항 유형",
+ "requirementTypeTooltip": "요구 사항을 확인하는 방법을 결정하는 데 사용되는 검색 방법 유형을 선택합니다."
+ },
+ "architectures": "운영 체제 아키텍처",
+ "architecturesTooltip": "앱을 설치하는 데 필요한 아키텍처를 선택합니다.",
+ "bladeTitle": "요구 사항",
+ "diskSpace": "필요한 디스크 공간(MB)",
+ "diskSpaceTooltip": "앱을 설치하는 데 필요한 시스템 드라이브의 사용 가능한 디스크 공간입니다.",
+ "header": "앱을 설치하기 전에 디바이스가 충족해야 하는 요구 사항 지정:",
+ "maximumTextFieldValue": "값은 {0} 이하여야 합니다.",
+ "minimumCpuSpeed": "필요한 최소 CPU 속도(MHz)",
+ "minimumCpuSpeedTooltip": "앱을 설치하는 데 필요한 최소 CPU 속도입니다.",
+ "minimumLogicalProcessors": "필요한 최소 논리 프로세서 수",
+ "minimumLogicalProcessorsTooltip": "앱을 설치하는 데 필요한 최소 논리 프로세서 수입니다.",
+ "minimumOperatingSystem": "최소 운영 체제",
+ "minimumOperatingSystemTooltip": "앱을 설치하는 데 필요한 최소 운영 체제를 선택합니다.",
+ "minumumTextFieldValue": "값은 {0} 이상이어야 합니다.",
+ "physicalMemory": "필요한 실제 메모리(MB)",
+ "physicalMemoryTooltip": "앱을 설치하는 데 필요한 실제 메모리(RAM)입니다.",
+ "selectorLabel": "요구 사항",
+ "validNumber": "유효한 숫자를 입력하세요."
+ },
+ "AzureIAM": {
+ "AdrsUserActionSelectionWarning": {
+ "conditions": "장치 등록이 필요한 조건은 \"등록 또는 참가 장치\" 사용자 작업을 통해 사용할 수 없습니다.",
+ "message": "\"디바이스 등록 또는 가입\" 사용자 작업에 대해 만들어진 정책에서만 \"다단계 인증 필요\"를 사용할 수 있습니다.{0}"
+ },
+ "AuthContext": {
+ "Delete": {
+ "failure": "{0} 삭제 실패",
+ "failureCa": "CA 정책에서 참조하므로 {0}을(를) 삭제하지 못했습니다.",
+ "modifying": "{0} 삭제 중",
+ "success": "{0}을(를) 삭제함"
+ },
+ "Included": {
+ "none": "선택한 클라우드 앱, 작업 또는 인증 컨텍스트가 없습니다.",
+ "plural": "{0}개 인증 컨텍스트가 포함됨",
+ "singular": "1개 인증 컨텍스트가 포함됨"
+ },
+ "InfoBlade": {
+ "createTitle": "인증 컨텍스트 추가",
+ "descPlaceholder": "인증 컨텍스트에 대한 설명 추가",
+ "modifyTitle": "인증 컨텍스트 수정",
+ "namePlaceholder": "예: 신뢰할 수 있는 위치, 신뢰할 수 있는 디바이스, 강력한 인증",
+ "publishDesc": "앱에 게시하면 앱에서 인증 컨텍스트를 사용할 수 있습니다. 태그에 대한 조건부 액세스 정책 구성을 완료한 후에 게시합니다. [자세한 정보][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150966",
+ "publishLabel": "앱에 게시",
+ "titleDesc": "애플리케이션 데이터 및 작업을 보호하는 데 사용되는 인증 컨텍스트를 구성합니다. 애플리케이션 관리자가 인식할 수 있는 이름 및 설명을 사용합니다. [자세한 정보][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150965"
+ },
+ "Notify": {
+ "failure": "{0} 업데이트 실패",
+ "modifying": "{0} 수정",
+ "success": "{0} 업데이트 성공"
+ },
+ "WhatIf": {
+ "selected": "인증 컨텍스트가 포함됨"
+ },
+ "addNewStepUp": "새 인증 컨텍스트",
+ "checkBoxInfo": "이 정책이 적용될 인증 컨텍스트를 선택합니다.",
+ "configure": "인증 컨텍스트 구성",
+ "createCA": "인증 컨텍스트에 조건부 액세스 정책 할당",
+ "dataGrid": "인증 컨텍스트 목록",
+ "deleteFailedByReference": "You cannot delete this authentication context because it is being referenced by CA policies.",
+ "description": "설명",
+ "documentation": "설명서",
+ "getStarted": "시작하기",
+ "label": "인증 컨텍스트(미리 보기)",
+ "menuLabel": "인증 컨텍스트(미리 보기)",
+ "name": "이름",
+ "noAuthContextConfigured": "인증 컨텍스트가 구성되지 않았습니다.",
+ "noAuthContextSet": "인증 컨텍스트가 없습니다.",
+ "noData": "표시할 인증 컨텍스트 없음",
+ "selectionInfo": "인증 컨텍스트는 SharePoint, Microsoft Cloud App Security와 같은 앱에서 애플리케이션 데이터와 동작을 보호하는 데 사용됩니다.",
+ "step": "단계",
+ "tabDescription": "앱에서 데이터 및 작업을 보호하기 위해 인증 컨텍스트를 관리합니다. [자세한 정보][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150965",
+ "tagResources": "인증 컨텍스트를 사용하여 리소스에 태그 지정"
+ },
+ "AuthenticationStrength": {
+ "Mode": {
+ "deviceBasedPush": "Microsoft Authenticator(전화 로그인)",
+ "deviceBasedPushFido2X509Certificate": "Microsoft Authenticator(전화 로그인) + Fido 2 + 인증서 기반 인증",
+ "deviceBasedPushX509CertificateSingleFactor": "Microsoft Authenticator(전화 로그인) + Fido 2 + 인증서 기반 인증(단일 단계)",
+ "email": "이메일 일회용 암호",
+ "emailOtp": "이메일 일회용 암호",
+ "federatedMultiFactor": "페더레이션된 다단계",
+ "federatedSingleFactor": "페더레이션된 단일 인수",
+ "federatedSingleFactorFederatedMultiFactor": "페더레이션된 단일 요소 + 페더레이션된 다단계",
+ "fido2": "FIDO 2 보안 키",
+ "fido2X509CertificateSingleFactor": "FIDO 2 보안 키 + 인증서 기반 인증(단일 단계)",
+ "hardwareOath": "하드웨어 OATH 토큰",
+ "hardwareOathEmail": "하드웨어 OATH 토큰 + 이메일 일회용 암호",
+ "hardwareOathX509CertificateSingleFactor": "하드웨어 OATH 토큰 + 인증서 기반 인증(단일 요소)",
+ "microsoftAuthenticatorPSIX509CertificateSingleFactor": "Microsoft Authenticator(전화 로그인) + 인증서 기반 인증(단일 단계)",
+ "microsoftAuthenticatorPsi": "Microsoft Authenticator(전화 로그인)",
+ "microsoftAuthenticatorPush": "Microsoft Authenticator - 푸시 알림",
+ "microsoftAuthenticatorPushEmail": "Microsoft Authenticator(푸시 알림) + 이메일 1회용 암호",
+ "microsoftAuthenticatorPushX509CertificateSingleFactor": "Microsoft Authenticator(푸시 알림) + 인증서 기반 인증(단일 단계)",
+ "none": "없음",
+ "password": "암호",
+ "passwordDeviceBasedPush": "암호 + Microsoft Authenticator(전화 로그인)",
+ "passwordFido2": "암호 + FIDO 2 보안 키",
+ "passwordHardwareOath": "암호 + 하드웨어 OATH 토큰",
+ "passwordMicrosoftAuthenticatorPSI": "암호 + Microsoft Authenticator(전화 로그인)",
+ "passwordMicrosoftAuthenticatorPush": "암호 + Microsoft Authenticator - 푸시 알림",
+ "passwordSms": "암호 + SMS",
+ "passwordSoftwareOath": "암호 + 소프트웨어 OATH 토큰",
+ "passwordTemporaryAccessPassMultiUse": "암호 + 임시 액세스 패스(다중 사용)",
+ "passwordTemporaryAccessPassOneTime": "암호 + 임시 액세스 패스(일회성 사용)",
+ "passwordVoice": "암호 + 음성",
+ "sms": "SMS",
+ "smsEmail": "SMS + 이메일 일회용 암호",
+ "smsSignIn": "SMS 로그인",
+ "smsX509CertificateSingleFactor": "SMS + 인증서 기반 인증(단일 단계)",
+ "softwareOath": "소프트웨어 OATH 토큰",
+ "softwareOathEmail": "소프트웨어 OATH 토큰 + 이메일 일회용 암호",
+ "softwareOathX509CertificateSingleFactor": "소프트웨어 OATH 토큰 + 인증서 기반 인증(단일 요소)",
+ "temporaryAccessPassMultiUse": "임시 액세스 패스(다중 사용)",
+ "temporaryAccessPassMultiUseX509CertificateSingleFactor": "임시 액세스 패스(다중 사용) + 인증서 기반 인증(단일 단계)",
+ "temporaryAccessPassOneTime": "임시 액세스 패스(일회성 사용)",
+ "temporaryAccessPassOneTimeX509CertificateSingleFactor": "임시 액세스 패스(일회성 사용) + 인증서 기반 인증(단일 단계)",
+ "voice": "Voice",
+ "voiceEmail": "음성 + 이메일 일회용 암호",
+ "voiceX509CertificateSingleFactor": "음성 + 인증서 기반 인증(단일 단계)",
+ "windowsHelloForBusiness": "비즈니스용 Windows Hello",
+ "x509CertificateMultiFactor": "인증서 기반 인증(Multi-Factor)",
+ "x509CertificateSingleFactor": "인증서 기반 인증(단일 단계)"
+ }
+ },
+ "CAS": {
+ "BuiltinPolicy": {
+ "Option": {
+ "blockDownloads": "다운로드 차단(미리 보기)",
+ "monitorOnly": "모니터만(미리 보기)",
+ "protectDownloads": "다운로드 보호(미리 보기)",
+ "useCustomControls": "사용자 지정 정책 사용..."
+ },
+ "ariaLabel": "적용할 조건부 액세스 앱 컨트롤 종류 선택"
+ }
+ },
+ "ChooseApplications": {
+ "Grid": {
+ "appIdAria": "앱 ID: {0}"
+ },
+ "LowerGrid": {
+ "ariaLabel": "선택된 클라우드 앱 목록"
+ },
+ "UpperGrid": {
+ "ariaLabel": "검색 용어와 일치하는 클라우드 앱 목록"
+ }
+ },
+ "ChooseLocations": {
+ "Validation": {
+ "failed": "\"선택한 위치\"에서 하나 이상의 위치를 선택해야 합니다.",
+ "selector": "하나 이상의 위치를 선택하세요."
+ }
+ },
+ "ClientApp": {
+ "Clients": {
+ "Validation": {
+ "failed": "다음 클라이언트 중 하나 이상을 선택해야 합니다."
+ }
+ }
+ },
+ "ClientConditionsInfo": {
+ "browserAndModern": "이 정책은 브라우저 및 최신 인증 앱에만 적용됩니다. 모든 클라이언트 앱에 정책을 적용하려면 클라이언트 앱 조건을 사용하도록 설정하고 모든 클라이언트 앱을 선택하세요.",
+ "classicExperience": "이 정책을 만든 후로 기본 클라이언트 앱 구성이 업데이트되었습니다.",
+ "legacyAuth": "구성되지 않은 경우 이제 정책이 최신 및 레거시 인증을 포함한 모든 클라이언트 앱에 적용됩니다."
+ },
+ "CloudAppFilterBlade": {
+ "AssignmentFilter": {
+ "header": "특성",
+ "placeholder": "특성 선택"
+ },
+ "Configure": {
+ "infoBalloon": "정책을 적용할 앱 필터를 구성합니다."
+ },
+ "NoPermissions": {
+ "learnMoreAria": "사용자 지정 보안 특성 권한에 대한 자세한 정보입니다.",
+ "message": "사용자 지정 보안 특성을 사용하는 데 필요한 권한이 없습니다."
+ },
+ "gridHeader": "사용자 지정 보안 특성을 사용하여 규칙 작성기 또는 규칙 구문 텍스트 상자를 사용하여 필터 규칙을 만들거나 편집할 수 있습니다. 미리 보기에서는 문자열 형식의 특성만 지원됩니다. 정수 또는 부울 형식의 특성은 표시되지 않습니다.",
+ "learnMoreAria": "규칙 작성기 및 구문 텍스트 상자를 사용하는 방법에 대한 자세한 정보입니다.",
+ "noAttributes": "필터링할 수 있는 사용자 지정 특성이 없습니다. 이 필터를 사용하려면 일부 특성을 구성해야 합니다.",
+ "title": "필터 편집(미리 보기)"
+ },
+ "CloudAppsUserActions": {
+ "any": "임의 클라우드 앱 또는 작업",
+ "infoBalloon": "테스트할 클라우드 앱 또는 사용자 작업입니다(예: 'SharePoint Online').",
+ "learnMore": "모든 또는 특정 클라우드 앱 또는 작업을 기반으로 액세스를 제어합니다.",
+ "learnMoreB2C": "모든 또는 특정 클라우드 앱을 기반으로 액세스를 제어합니다.",
+ "title": "클라우드 앱 또는 작업"
+ },
+ "CloudappsSelectionBlade": {
+ "Excluded": {
+ "gridAria": "제외된 클라우드 앱 목록"
+ },
+ "Filter": {
+ "configured": "구성됨",
+ "label": "필터 편집(미리 보기)",
+ "with": "{0}({1} 포함)"
+ },
+ "Included": {
+ "gridAria": "포함된 클라우드 앱 목록"
+ },
+ "Validation": {
+ "authContext": "\"인증 컨텍스트\"를 사용하여 하나 이상의 하위 항목을 구성해야 합니다.",
+ "selectApps": "\"{0}\"을(를) 구성해야 합니다.",
+ "selector": "앱을 하나 이상 선택하세요.",
+ "userActions": "\"사용자 작업\"을 사용하여 하나 이상의 하위 항목을 구성해야 합니다."
+ }
+ },
+ "DeviceState": {
+ "LearnMore": {
+ "message": "사용자가 로그인하는 장치가 \"하이브리드 Azure AD 조인\" 또는 \"준수로 표시\"되지 않은 경우 사용자 액세스를 제어합니다.\n 이 항목은 더 이상 사용되지 않습니다. '{1}'을(를) 대신 사용하세요."
+ }
+ },
+ "Errors": {
+ "notFound": "정책을 찾을 수 없거나 정책이 삭제되었습니다.",
+ "notFoundDetailed": "정책 \"{0}\"이(가) 더 이상 존재하지 않습니다. 삭제되었을 수 있습니다."
+ },
+ "GuestsOrExternalUsers": {
+ "allExternalTenantsLabel": "모든 Azure AD 조직",
+ "b2bCollaborationGuestLabel": "B2B collaboration 게스트 사용자",
+ "b2bCollaborationMemberLabel": "B2B collaboration 구성원 사용자",
+ "b2bDirectConnectUserLabel": "B2B 직접 연결 사용자",
+ "enumeratedExternalTenantsError": "하나 이상의 외부 테넌트를 선택하세요.",
+ "enumeratedExternalTenantsLabel": "Azure AD 조직 선택",
+ "externalTenantsLabel": "외부 Azure AD 조직 지정",
+ "externalUserDropdownLabel": "게스트 또는 외부 사용자 유형 선택",
+ "externalUsersError": "하나 이상의 외부 게스트 또는 사용자 유형 선택",
+ "guestOrExternalUsersInfoContent": "B2B Collaboration, B2B 직접 연결 및 기타 유형의 외부 사용자를 포함합니다.",
+ "guestOrExternalUsersLabel": "게스트 또는 외부 사용자",
+ "internalGuestLabel": "로컬 게스트 사용자",
+ "otherExternalUserLabel": "기타 외부 사용자"
+ },
+ "NamedLocation": {
+ "Form": {
+ "CountryLookup": {
+ "ariaLabel": "국가 조회 방법",
+ "gps": "GPS 좌표로 위치 확인",
+ "info": "조건부 액세스 정책의 위치 조건이 구성되면 Authenticator 앱에서 GPS 위치 공유 요청 메시지가 표시됩니다. ",
+ "ip": "IP 주소로 위치 확인(IPv4에만 해당)"
+ },
+ "Header": {
+ "new": "새 위치({0})",
+ "update": "위치({0}) 업데이트"
+ },
+ "IP": {
+ "learn": "명명된 위치 IPv4 및 IPv6 범위를 구성합니다.\n[자세한 정보][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
+ },
+ "Include": {
+ "infoBalloon": "알 수 없는 국가/지역은 특정 국가나 지역과 연결되지 않은 IP 주소입니다. [자세한 정보][1]\n\n여기에는 다음이 포함됩니다.\n* IPv6 주소\n* 직접 매핑이 없는 IPv4 주소\n[1]: https://aka.ms/canamedlocations\n",
+ "label": "알 수 없는 국가/지역 포함"
+ },
+ "Name": {
+ "empty": "이름은 비워 둘 수 없습니다.",
+ "placeholder": "이 위치의 이름 지정"
+ },
+ "PrivateLink": {
+ "learn": "Azure AD에 대한 사설 링크를 포함하는 새 명명된 위치를 만듭니다.\n[자세히 알아보기][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
+ },
+ "Search": {
+ "countries": "국가 검색",
+ "names": "이름 검색",
+ "privateLinks": "사설 링크 검색"
+ },
+ "Trusted": {
+ "label": "신뢰할 수 있는 위치로 표시"
+ },
+ "enter": "새 IPv4 또는 IPv6 범위 입력",
+ "example": "예: 40.77.182.32/27 또는 2a01:111::/32"
+ },
+ "Label": {
+ "addCountries": "국가 위치",
+ "addIpRange": "IP 범위 위치",
+ "addPrivateLink": "Azure Private Link"
+ },
+ "Notification": {
+ "Create": {
+ "Failed": {
+ "description": "새 위치({0}) 만들기 실패",
+ "title": "만드는 데 실패했습니다."
+ },
+ "InProgress": {
+ "description": "새 위치({0})를 만드는 중",
+ "title": "만들기 진행 중"
+ },
+ "Success": {
+ "description": "새 위치({0}) 만들기 성공",
+ "title": "만드는 데 성공했습니다."
+ }
+ },
+ "Delete": {
+ "Failed": {
+ "description": "위치({0}) 삭제 실패",
+ "title": "삭제하는 데 실패했습니다."
+ },
+ "InProgress": {
+ "description": "위치({0})를 삭제하는 중",
+ "title": "삭제 진행 중"
+ },
+ "Success": {
+ "description": "위치({0}) 삭제 성공",
+ "title": "삭제했습니다."
+ }
+ },
+ "Update": {
+ "Failed": {
+ "description": "위치({0}) 업데이트 실패",
+ "title": "업데이트에 실패했습니다."
+ },
+ "InProgress": {
+ "description": "위치({0})를 업데이트하는 중",
+ "title": "업데이트 진행 중"
+ },
+ "Success": {
+ "description": "위치({0}) 업데이트 성공",
+ "title": "업데이트에 성공했습니다."
+ }
+ }
+ },
+ "PrivateLinks": {
+ "grid": "사설 링크 목록"
+ },
+ "Trusted": {
+ "title": "신뢰할 수 있는 형식",
+ "trusted": "인증 신뢰"
+ },
+ "Type": {
+ "all": "모든 형식",
+ "countries": "국가",
+ "ipRanges": "IP 범위",
+ "privateLinks": "사설 링크",
+ "title": "위치 유형"
+ },
+ "iPRangeInvalidError": "값은 유효한 IPv4 또는 IPv6 범위여야 합니다.",
+ "iPRangeLinkOrSiteLocalError": "IP 네트워크가 링크 로컬 또는 사이트 로컬 주소로 검색되었습니다.",
+ "iPRangeOctetError": "IP 네트워크는 0 또는 255로 시작할 수 없습니다.",
+ "iPRangePrefixError": "IP 네트워크 접두사는 /{0}에서 /{1} 사이여야 합니다.",
+ "iPRangePrivateError": "IP 네트워크가 프라이빗 주소로 검색되었습니다."
+ },
+ "NamedNetwork": {
+ "List": {
+ "gridAria": "명명된 위치 목록"
+ }
+ },
+ "Policies": {
+ "Grid": {
+ "aria": "조건부 액세스 정책 목록"
+ },
+ "countText": "{1}개 중 {0}개 정책을 찾았습니다.",
+ "countTextSingular": "1개 중 {0}개 정책을 찾았습니다.",
+ "search": "정책 검색"
+ },
+ "Policy": {
+ "Condition": {
+ "ServicePrincipalRisk": {
+ "description": "정책을 적용하는 데 필요한 서비스 사용자 위험 수준을 구성합니다",
+ "infoBalloonContent": "선택한 위험 수준에 정책을 적용하도록 서비스 사용자 위험 구성",
+ "title": "서비스 주체 위험(미리 보기)"
+ }
+ }
+ },
+ "PolicyControlAuthStrength": {
+ "MultiFactorAuthentication": {
+ "description": "암호 + SMS와 같은 강력한 인증을 충족하는 방법의 조합",
+ "displayName": "MFA(다단계 인증)"
+ },
+ "Passwordless": {
+ "description": "Microsoft Authenticator와 같은 강력한 인증을 충족하는 암호 없는 방법",
+ "displayName": "암호 없는 MFA"
+ },
+ "PhishingResistant": {
+ "description": "FIDO2 보안 키와 같은 가장 강력한 인증을 위한 피싱 방지 암호 없는 방법",
+ "displayName": "피싱 방지 MFA"
+ }
+ },
+ "PolicyControlFedAuthMethod": {
+ "ariaLabel": "페더레이션 공급자가 충족하는 인증 방법을 요구하는 방법에 대해 자세히 알아봅니다.",
+ "certificate": "인증서 인증",
+ "infoBubble": "ADFS 등의 페더레이션 공급자가 만족해야 하는 필요한 인증 방법을 지정하세요.",
+ "multifactor": "다단계 인증",
+ "require": "페더레이션된 인증 방법 필요(미리 보기)",
+ "whatIfFormat": "{0} - {1}"
+ },
+ "PolicyState": {
+ "off": "끄기",
+ "on": "설정",
+ "reportOnly": "보고서 전용"
+ },
+ "PolicyTemplates": {
+ "Devices": {
+ "description": "디바이스 정책 템플릿 범주를 선택하여 네트워크에 액세스하는 디바이스를 파악합니다. 액세스 권한을 부여하기 전에 규정 준수 및 상태를 확인하세요.",
+ "name": "디바이스"
+ },
+ "Identities": {
+ "description": "ID 정책 템플릿 범주를 선택하여 전체 디지털 자산에서 강력한 인증으로 각 ID를 확인하고 보호합니다.",
+ "name": "ID"
+ },
+ "Summary": {
+ "CloudApps": {
+ "allCloudApps": "모든 앱",
+ "office365": "Office 365",
+ "registerSecurityInfo": "보안 정보 등록"
+ },
+ "Conditions": {
+ "androidAndIOS": "장치 플랫폼: Android 및 IOS",
+ "anyDevice": "Android, IOS, Windows 및 Mac을 제외한 모든 장치",
+ "anyDeviceStateExceptHybrid": "규정 준수 및 하이브리드 Azure AD 조인을 제외한 모든 장치 상태",
+ "anyLocation": "신뢰할 수 있는 위치를 제외한 모든 위치",
+ "browserMobileDesktop": "클라이언트 앱: 브라우저, 모바일 앱 및 데스크톱 클라이언트",
+ "exchangeActiveSync": "클라이언트 앱: Exchange Active Sync, 기타 클라이언트",
+ "windowsAndMac": "장치 플랫폼: Windows 및 Mac"
+ },
+ "Devices": {
+ "anyDevice": "모든 디바이스"
+ },
+ "Grant": {
+ "appProtectionPolicy": "앱 보호 정책 필요",
+ "approvedClientApp": "승인된 클라이언트 앱 필요",
+ "blockAccess": "접근 차단",
+ "mfa": "다단계 인증 필요",
+ "passwordChange": "암호 변경 필요",
+ "requireCompliantDevice": "준수 상태로 표시된 디바이스 필요",
+ "requireHybridAzureADDevice": "하이브리드 Azure AD 조인된 디바이스 필요"
+ },
+ "Session": {
+ "appEnforcedRestrictions": "앱 적용 제한 사용",
+ "signInFrequency": "로그인 빈도 및 비영구 브라우저 세션"
+ },
+ "UsersAndGroups": {
+ "allUsers": "모든 사용자",
+ "directoryRoles": "현재 관리자를 제외한 디렉토리 역할",
+ "globalAdmin": "전역 관리자",
+ "noGuestAndAdmins": "게스트 및 외부를 제외한 모든 사용자, 전역 관리자, 현재 관리자"
+ },
+ "azureManagement": "Azure 관리",
+ "deviceFilters": "디바이스용 필터",
+ "devicePlatforms": "디바이스 플랫폼"
+ },
+ "TemplateId": {
+ "AppEnforcedRestrictions": {
+ "description": "관리되지 않는 장치에서 SharePoint, OneDrive 및 Exchange 콘텐츠에 대한 액세스를 차단하거나 제한합니다.",
+ "name": "CA014: 관리되지 않는 장치에 대한 응용 프로그램 적용 제한 사용",
+ "title": "관리되지 않는 장치에 대한 애플리케이션 적용 제한 사용"
+ },
+ "ApprovedClientApps": {
+ "description": "데이터 손실을 방지하기 위해 조직은 Intune 앱 보호를 사용하여 승인된 최신 인증 클라이언트 앱에 대한 액세스를 제한할 수 있습니다.",
+ "name": "CA012: 승인된 클라이언트 앱 및 앱 보호 필요",
+ "title": "승인된 클라이언트 앱 및 앱 보호 필요"
+ },
+ "BlockAccessOnUnknowns": {
+ "description": "장치 유형을 알 수 없거나 지원되지 않는 경우 사용자는 회사 리소스에 액세스할 수 없습니다.",
+ "name": "CA010: 알 수 없거나 지원되지 않는 장치 플랫폼에 대한 액세스 차단",
+ "title": "알 수 없거나 지원되지 않는 장치 플랫폼에 대한 액세스 차단"
+ },
+ "BlockLegacyAuth": {
+ "description": "다단계 인증을 우회하는 데 사용할 수 있는 레거시 인증 끝점을 차단합니다.",
+ "name": "CA003: 레거시 인증 차단",
+ "title": "기존 인증 차단"
+ },
+ "NoPersistentBrowserSession": {
+ "description": "브라우저를 닫은 후 브라우저 세션이 로그인 상태로 유지되지 않도록 하고 로그인 빈도를 1시간으로 설정하여 관리되지 않는 장치에서 사용자 액세스를 보호합니다.",
+ "name": "CA011: 지속적인 브라우저 세션이 없음",
+ "title": "지속적인 브라우저 세션 없음"
+ },
+ "RequireCompliantOrHybridADAdmins": {
+ "description": "규정 준수 또는 하이브리드 Azure AD 조인된 장치를 사용할 때 권한 있는 관리자가 리소스에만 액세스하도록 요구합니다.",
+ "name": "CA009: 관리자를 위한 호환 또는 하이브리드 Azure AD 조인된 장치 필요",
+ "title": "관리자를 위한 규격 또는 하이브리드 Azure AD 조인된 장치 필요"
+ },
+ "RequireCompliantOrHybridADAllUsers": {
+ "description": "사용자가 관리 장치를 사용하거나 다단계 인증을 수행하도록 요구하여 회사 리소스에 대한 액세스를 보호합니다(macOS 또는 Windows만 해당).",
+ "name": "CA013: 모든 사용자에 대해 호환 또는 하이브리드 Azure AD 조인된 장치 또는 다단계 인증 필요",
+ "title": "모든 사용자에 대해 규정 준수 또는 하이브리드 Azure AD 조인된 장치 또는 다단계 인증 필요"
+ },
+ "RequireMFAAllUsers": {
+ "description": "손상 위험을 줄이기 위해 모든 사용자 계정에 대해 다단계 인증을 요구합니다.",
+ "name": "CA004: 모든 사용자에 대해 다단계 인증 필요",
+ "title": "모든 사용자에 대해 다단계 인증 요구"
+ },
+ "RequireMFAForAdmins": {
+ "description": "손상 위험을 줄이기 위해 권한 있는 관리 계정에 대해 다단계 인증을 요구합니다. 이 정책은 보안 기본값과 동일한 역할을 대상으로 합니다.",
+ "name": "CA001: 관리자에 대한 다단계 인증 필요",
+ "title": "관리자를 위한 다단계 인증 필요"
+ },
+ "RequireMFAForAzureManagement": {
+ "description": "Azure 리소스에 대한 권한 있는 액세스를 보호하려면 다단계 인증이 필요합니다.",
+ "name": "CA006: Azure 관리를 위한 다단계 인증 필요",
+ "title": "Azure 관리를 위한 다단계 인증 필요"
+ },
+ "RequireMFAForGuestAccess": {
+ "description": "게스트 사용자가 회사 리소스에 액세스할 때 다단계 인증을 수행하도록 요구합니다.",
+ "name": "CA005: 게스트 액세스를 위한 다단계 인증 필요",
+ "title": "게스트 액세스에 다단계 인증 필요"
+ },
+ "RequireMFAForRiskySignIn": {
+ "description": "로그인 위험이 중간 또는 높은 것으로 감지되면 다단계 인증이 필요합니다(Azure AD Premium 2 라이선스 필요).",
+ "name": "CA007: 위험한 로그인에 대해 다단계 인증 필요",
+ "title": "위험한 로그인을 위해 다단계 인증 필요"
+ },
+ "RequirePasswordChangeForHighRiskUsers": {
+ "description": "사용자 위험이 높은 것으로 감지되면 사용자에게 암호를 변경하도록 요구합니다(Azure AD Premium 2 라이선스 필요).",
+ "name": "CA008: 고위험 사용자에 대한 암호 변경 필요",
+ "title": "고위험 사용자에 대한 암호 변경 요구"
+ },
+ "RequireSecurityInfo": {
+ "description": "사용자가 Azure AD 다단계 인증 및 셀프 서비스 암호에 등록하는 시기와 방법을 보호합니다. ",
+ "name": "CA002: 보안 정보 등록 보안",
+ "title": "보안 정보 등록 보안"
+ }
+ },
+ "TemplateState": {
+ "BlockAccessOnUnknowns": {
+ "title": "이 정책을 사용하면 알 수 없는 장치 유형의 액세스가 방지됩니다. 사용자에게 영향을 미치지 않는다는 것을 확인할 때까지 보고 전용 모드를 사용하는 것이 좋습니다."
+ },
+ "BlockLegacyAuth": {
+ "description": "사용자에게 영향을 미치지 않는다는 것을 확인할 때까지 보고 전용 모드를 사용하는 것을 고려하세요.",
+ "title": "이 정책을 사용하면 모든 사용자에 대한 레거시 인증이 차단됩니다."
+ },
+ "RequireCompliantOrHybridADAdmins": {
+ "Description": {
+ "on": "권한 있는 사용자에게 영향을 미치지 않는다는 것을 확인할 때까지 보고 전용 모드를 사용하는 것을 고려하세요.",
+ "reportOnly": "규정 준수 장치가 필요한 보고 전용 모드의 정책은 장치 규정 준수가 적용되지 않더라도 Mac, iOS 및 Android 사용자에게 정책 평가 중에 장치 인증서를 선택하라는 메시지를 표시할 수 있습니다. 이러한 프롬프트는 장치가 규정을 준수할 때까지 반복될 수 있습니다."
+ },
+ "Title": {
+ "on": "이 정책을 사용하면 규정 준수 또는 하이브리드 Azure AD 조인과 같은 관리되는 장치를 사용하지 않는 한 권한 있는 사용자가 액세스할 수 없습니다. 사용하기 전에 규정 준수 정책을 구성했거나 하이브리드 Azure AD 구성을 사용했는지 확인합니다.",
+ "reportOnly": "사용하기 전에 규정 준수 정책을 구성했거나 하이브리드 Azure AD 구성을 사용했는지 확인합니다."
+ }
+ },
+ "RequireCompliantOrHybridADAllUsers": {
+ "Description": {
+ "on": "이 정책은 현재 로그인한 관리자를 제외한 모든 사용자에게 적용됩니다. 이것이 사용자에게 영향을 미치지 않는다는 것을 확인할 때까지 보고 전용 모드를 사용하는 것을 고려하세요."
+ },
+ "Title": {
+ "on": "자신을 잠그지 마세요! 장치가 호환되는지 또는 하이브리드 Azure AD 조인인지 또는 다단계 인증을 구성했는지 확인합니다.",
+ "reportOnly": "규정 준수 장치가 필요한 보고 전용 모드의 정책은 장치 규정 준수가 적용되지 않더라도 Mac, iOS 및 Android 사용자에게 정책 평가 중에 장치 인증서를 선택하라는 메시지를 표시할 수 있습니다. 이러한 프롬프트는 장치가 규정을 준수할 때까지 반복될 수 있습니다."
+ }
+ },
+ "RequireMfa": {
+ "description": "긴급 액세스 계정을 사용하거나 Azure AD 연결을 사용하여 온-프레미스 개체를 동기화하는 경우 생성 후 이러한 계정을 이 정책에서 제외해야 할 수 있습니다."
+ },
+ "RequireMfaAdmins": {
+ "description": "현재 관리자 계정은 자동으로 제외되지만 다른 모든 계정은 정책 생성 시 보호됩니다. 처음에는 보고 전용 모드를 사용하는 것이 좋습니다.",
+ "title": "자신을 잠그지 마세요! 이 정책은 Azure Portal에 영향을 줍니다."
+ },
+ "RequireMfaAllUsers": {
+ "description": "이 변경 사항을 계획하여 모든 사용자에게 전달할 때까지 보고서 전용 모드를 사용하는 것이 좋습니다.",
+ "title": "이 정책을 사용하면 모든 사용자에 대해 다단계 인증이 시행됩니다."
+ },
+ "RequireSecurityInfo": {
+ "description": "회사 요구 사항에 따라 이러한 계정을 보호하기 위해 구성을 검토해야 합니다.",
+ "title": "다음 사용자 및 역할은 이 정책에서 제외됩니다. 게스트 및 외부 사용자, 전역 관리자, 현재 관리자"
+ }
+ },
+ "basics": "기본",
+ "clientApps": "클라이언트 앱",
+ "cloudApps": "클라우드 앱",
+ "cloudAppsOrActions": "클라우드 앱 또는 작업 ",
+ "conditions": "조건 ",
+ "createNewPolicy": "템플릿에서 새 정책 만들기(미리 보기)",
+ "createPolicy": "정책 생성",
+ "currentUser": "현재 사용자",
+ "customizeBuild": "빌드 사용자 지정",
+ "customizeTemplate": "템플릿 목록은 만들려는 정책 유형에 따라 사용자 지정됩니다.",
+ "excludedDevicePlatform": "제외된 디바이스 플랫폼",
+ "excludedDirectoryRoles": "제외된 디렉터리 역할",
+ "excludedLocation": "제외된 디렉터리 역할",
+ "excludedUsers": "제외된 사용자",
+ "grantControl": "제어 권한 부여 ",
+ "includeFilteredDevice": "정책에 필터링된 디바이스 포함",
+ "includedDevicePlatform": "포함된 디바이스 플랫폼",
+ "includedDirectoryRoles": "포함된 디렉터리 역할",
+ "includedLocation": "포함된 위치",
+ "includedUsers": "포함된 사용자",
+ "legacyAuthenticationClients": "레거시 인증 클라이언트",
+ "namePolicy": "정책 이름 지정",
+ "next": "다음",
+ "policyName": "정책 이름",
+ "policyState": "정책 상태",
+ "policySummary": "정책 요약",
+ "policyTemplate": "정책 템플릿",
+ "previous": "이전",
+ "reviewAndCreate": "검토 + 만들기",
+ "riskLevels": "위험 수준",
+ "selectATemplate": "템플릿 선택",
+ "selectTemplate": "템플릿 선택",
+ "selectTemplateCategory": "템플릿 범주 선택",
+ "selectTemplateRecommendation": "응답에 따라 다음 템플릿을 사용하는 것이 좋습니다.",
+ "sessionControl": "세션 제어 ",
+ "signInFrequency": "로그인 빈도",
+ "signInRisk": "로그인 위험",
+ "template": "템플릿 ",
+ "templateCategory": "템플릿 범주",
+ "userRisk": "사용자 위험",
+ "usersAndGroups": "사용자 및 그룹 ",
+ "viewPolicySummary": "정책 요약 보기 "
+ },
+ "SSM": {
+ "MemberSelector": {
+ "description": "사용자 및 그룹"
+ },
+ "Notification": {
+ "Migration": {
+ "error": "연속 액세스 평가 설정을 조건부 액세스 정책으로 마이그레이션하지 못함",
+ "inProgress": "지속적인 액세스 권한 평가 설정을 마이그레이션하는 중",
+ "success": "연속 액세스 평가 설정을 조건부 액세스 정책으로 마이그레이션함",
+ "successDescription": "조건부 액세스 정책을 진행하여 \"CAE 설정에서 만든 CA 정책\"이라는 이름의 새로 만든 정책에서 마이그레이션된 설정을 확인하세요."
+ },
+ "error": "지속적인 액세스 권한 평가 설정을 업데이트하지 못했습니다.",
+ "inProgress": "지속적인 액세스 권한 평가 설정을 업데이트하는 중",
+ "success": "지속적인 액세스 권한 평가 설정을 업데이트했습니다."
+ },
+ "PreviewOptions": {
+ "disable": "미리 보기 사용 안 함",
+ "enable": "미리 보기 사용"
+ },
+ "StrictLocationEnforcement": {
+ "infoContent1": "네트워크 파티션 또는 IPv4/IPv6 불일치로 인해 동일한 클라이언트 디바이스에서 Azure AD 및 리소스 공급자가 다른 IP를 확인할 수 있습니다. 엄격한 위치 적용은 Azure AD와 리소스 공급자에서 확인하는 두 IP 주소를 기준으로 조건부 액세스 정책을 적용합니다.",
+ "infoContent2": "최대 보안을 보장하려면 Azure AD와 리소스 공급자에서 확인할 수 있는 모든 IP를 명명된 위치 정책에 포함하고 \"엄격한 위치 적용\" 모드를 켜는 것이 좋습니다.",
+ "label": "엄격한 위치 적용",
+ "title": "추가 적용 모드"
+ },
+ "bladeTitle": "지속적인 액세스 권한 평가",
+ "description": "사용자의 액세스 권한이 제거되거나 클라이언트 IP 주소가 변경되면 지속적인 액세스 권한 평가가 거의 실시간으로 리소스 및 애플리케이션에 대한 액세스를 자동 차단합니다. ",
+ "migrateLabel": "마이그레이션",
+ "migrationError": "{0} 오류로 인해 마이그레이션하지 못했습니다.",
+ "migrationInfo": "CAE 설정이 조건부 액세스 UX로 이동되었습니다. 위의 \"마이그레이션\" 단추로 마이그레이션하고 조건부 액세스 정책을 계속 진행하여 구성하세요. 자세한 내용을 보려면 여기를 클릭하세요.",
+ "noLicenseMessage": "Azure AD Premium에서 스마트 세션 관리 설정 관리",
+ "optionsPickerTitle": "지속적인 액세스 권한 평가 사용/사용 안 함",
+ "upsellInfo": "이 페이지의 설정을 더 이상 변경할 수 없으며 여기에서 설정을 무시해야 합니다. 이전 설정이 적용됩니다. 앞으로 조건부 액세스에서 CAE 설정을 구성할 수 있습니다. 자세히 알아보려면 여기를 클릭하세요."
+ },
+ "SelectOrganizations": {
+ "Blade": {
+ "Lower": {
+ "gridAria": "선택한 조직 목록"
+ },
+ "Upper": {
+ "gridAria": "사용 가능한 조직 목록"
+ },
+ "description": "도메인 이름 중 하나를 입력하여 Azure AD 조직을 추가합니다.",
+ "notFoundResult": "찾을 수 없음",
+ "searchBoxPlaceholder": "테넌트 ID 또는 도메인 이름",
+ "subTitle": "Azure AD 조직"
+ },
+ "Selector": {
+ "AdditionalDetails": {
+ "aria": "조직 ID: {0}"
+ },
+ "DisplayText": {
+ "multiple": "{0} Azure AD 조직 선택됨",
+ "single": "1 Azure AD 조직 선택됨"
+ },
+ "gridAria": "선택한 조직 목록"
+ }
+ },
+ "SessionLifetime": {
+ "PersistentBrowser": {
+ "Error": {
+ "notAllApps": "영구 브라우저 세션 정책은 [모든 클라우드 앱]을 선택했을 때만 올바르게 작동합니다. 클라우드 앱 선택 항목을 업데이트하세요."
+ },
+ "Option": {
+ "always": "항상 영구적임",
+ "help": "영구 브라우저 세션을 사용하면 사용자가 브라우저 창을 닫았다가 다시 열어도 로그인 상태가 유지됩니다.
\n\n- 이 설정은 \"모든 클라우드 앱\"을 선택했을 때 올바르게 작동합니다.
\n- 이는 토큰 수명 또는 로그인 빈도 설정에 영향을 주지 않습니다.
\n- 이는 회사 브랜딩에서 \"로그인 상태를 유지하는 옵션 표시\" 정책을 재정의합니다.
\n- \"영구적이지 않음\"은 페더레이션 인증 서비스에서 통과된 모든 영구 SSO 클레임을 재정의합니다.
\n- \"영구적이지 않음\"은 여러 애플리케이션에서 그리고 여러 애플리케이션 간에 모바일 디바이스 및 사용자의 모바일 브라우저에서의 SSO를 금지합니다.
\n",
+ "label": "영구 브라우저 세션",
+ "never": "영구적이지 않음"
+ },
+ "Warning": {
+ "allApps": "영구 브라우저 세션은 [모든 클라우드 앱]을 선택했을 때만 올바르게 작동합니다. 클라우드 앱 선택 항목을 변경하세요. 자세한 내용을 보려면 여기를 클릭하세요."
+ }
+ },
+ "SignInFrequency": {
+ "Aria": {
+ "units": "시간 또는 일",
+ "value": "빈도"
+ },
+ "Option": {
+ "Day": {
+ "plural": "{0}일",
+ "singular": "1일"
+ },
+ "Hour": {
+ "plural": "{0}시간",
+ "singular": "1시간"
+ },
+ "daysOption": "일",
+ "everytime": "매번",
+ "help": "사용자가 리소스에 액세스하려고 할 때 다시 로그인할지를 묻기까지 걸리는 기간입니다. 기본 설정은 90일(롤링 기간)입니다. 즉, 사용자가 머신에서 90일 이상 비활성 상태였다가 리소스에 액세스하려고 처음 시도할 때 사용자에게 다시 인증하라는 메시지가 표시됩니다.",
+ "hoursOption": "시간",
+ "label": "로그인 빈도",
+ "placeholder": "단위 선택 "
+ }
+ },
+ "mainOption": "세션 수명 수정",
+ "mainOptionHelp": "사용자에게 메시지가 표시되는 빈도와 브라우저 세션이 지속될지 여부를 구성합니다. 최신 인증 프로토콜을 지원하지 않는 애플리케이션은 이러한 정책을 준수하지 않을 수 있습니다. 그러한 경우 애플리케이션 개발자에게 문의하세요."
+ },
+ "SigninRisk": {
+ "LearnMore": {
+ "message": "사용자 액세스를 제어하여 특정 로그인 위험 수준에 대응합니다."
+ }
+ },
+ "SingleSelectorActive": {
+ "failed": "이 데이터를 로드할 수 없습니다.",
+ "reattempt": "데이터를 로드합니다. {1} 중 {0}을(를) 다시 시도합니다."
+ },
+ "TimeCondition": {
+ "Errors": {
+ "both": "\"포함\" 또는 \"제외\" 시간 범위가 잘못되었습니다.",
+ "daysOfWeek": "{0} 요일을 하나 이상 지정해야 합니다.",
+ "endBeforeStart": "{0} 시작 날짜/시간이 종료 날짜/시간보다 이전이어야 합니다.",
+ "exclude": "\"제외\" 시간 범위가 잘못되었습니다.",
+ "generic": "{0} 요일 및 표준 시간대를 설정해야 합니다. \"하루 종일\"을 선택하지 않은 경우 시작 시간 및 종료 시간도 설정해야 합니다.",
+ "include": "\"포함\" 시간 범위가 잘못되었습니다.",
+ "timeMissing": "{0} 시작 시간과 종료 시간을 모두 지정해야 합니다.",
+ "timeZone": "{0} 표준 시간대를 지정해야 합니다.",
+ "timesAndZone": "{0} 시작 시간, 종료 시간 및 표준 시간대를 지정해야 합니다."
+ }
+ },
+ "UserActions": {
+ "Included": {
+ "none": "선택한 클라우드 앱 또는 작업 없음",
+ "plural": "{0}개 사용자 작업 포함됨",
+ "singular": "1개 사용자 작업 포함됨"
+ },
+ "accessRequirement1": "수준 1",
+ "accessRequirement2": "수준 2",
+ "accessRequirement3": "수준 3",
+ "accessRequirementsLabel": "보안 앱 데이터 액세스",
+ "appsActionsAuthTitle": "클라우드 앱, 작업 또는 인증 컨텍스트",
+ "appsOrActionsSelectorInfoBallonText": "액세스한 애플리케이션 또는 사용자 작업",
+ "appsOrActionsTitle": "클라우드 앱 또는 작업",
+ "label": "사용자 작업",
+ "mainOptionsLabel": "이 정책을 적용할 항목을 선택합니다.",
+ "registerOrJoinDevices": "디바이스 등록 또는 가입",
+ "registerSecurityInfo": "보안 정보 등록",
+ "selectionInfo": "이 정책이 적용될 작업을 선택합니다.",
+ "whatIf": "사용자 작업 포함됨"
+ },
+ "UserSelectionBlade": {
+ "DirectoryRoles": {
+ "ariaLabel": "디렉터리 역할 선택"
+ },
+ "Excluded": {
+ "gridAria": "제외된 사용자 목록"
+ },
+ "Included": {
+ "gridAria": "포함된 사용자 목록"
+ },
+ "Validation": {
+ "customRoleIncluded": "\"디렉터리 역할\"에 사용자 지정 역할이 하나 이상 포함되어 있습니다.",
+ "customRoleSelected": "사용자 지정 역할을 하나 이상 선택함",
+ "failed": "\"{0}\"을(를) 구성해야 합니다.",
+ "roles": "역할을 하나 이상 선택하세요.",
+ "usersGroups": "사용자나 그룹을 하나 이상 선택하세요."
+ },
+ "learnMore": "사용자 및 그룹, 워크로드 ID, 디렉터리 역할 또는 외부 게스트와 같이 정책을 적용할 대상에 따라 액세스를 제어합니다."
+ },
+ "ValidationResult": {
+ "blockEveryonePolicy": "정책 구성이 지원되지 않습니다. 할당 및 제어를 검토하세요.",
+ "invalidApplicationCondition": "잘못된 클라우드 애플리케이션이 선택됨",
+ "invalidClientTypesCondition": "잘못된 클라이언트 앱이 선택됨",
+ "invalidConditions": "할당이 선택되지 않음",
+ "invalidControls": "잘못된 컨트롤이 선택됨",
+ "invalidDevicePlatformsCondition": "잘못된 디바이스 플랫폼이 선택됨",
+ "invalidDevicesCondition": "잘못된 장치 구성입니다. 잘못된 \"{0}\" 구성일 수 있습니다.",
+ "invalidGrantControlPolicy": "잘못된 권한 부여 컨트롤",
+ "invalidLocationsCondition": "잘못된 위치가 선택됨",
+ "invalidPolicy": "할당이 선택되지 않음",
+ "invalidSessionControlPolicy": "잘못된 세션 컨트롤",
+ "invalidSignInRisksCondition": "잘못된 로그인 위험이 선택됨",
+ "invalidUserRisksCondition": "잘못된 사용자 위험이 선택됨",
+ "invalidUsersCondition": "잘못된 사용자가 선택됨",
+ "mamPolicyShouldOnlyTargetAndroidOrIosPlatforms": "MAM 정책은 Android 또는 iOS 클라이언트 플랫폼에만 적용할 수 있습니다.",
+ "notSupportedCombination": "정책 구성이 지원되지 않습니다. 지원되는 정책에 대해 자세히 알아보세요.",
+ "pending": "위반 정책",
+ "requireComplianceEveryonePolicy": "정책 구성을 위해서는 모든 사용자의 디바이스 준수가 필요합니다. 선택된 할당을 검토하세요.",
+ "success": "유효한 정책"
+ },
+ "VpnCert": {
+ "Grid": {
+ "aria": "VPN 인증서 목록"
+ }
+ },
+ "WarningsInfo": {
+ "Controls": {
+ "compliantDeviceEnabled": "자신이 잠기지 않도록 하세요. 디바이스가 규격 디바이스인지 확인하세요.",
+ "domainJoinedDeviceEnabled": "자신이 잠기지 않도록 하세요. 디바이스가 하이브리드 Azure AD 조인된 디바이스인지 확인하세요.",
+ "exchangeDisabled": "Exchange ActiveSync는 \"준수 디바이스\"와 \"승인된 클라이언트 앱\" 컨트롤만 지원합니다. 자세히 알아보려면 클릭하세요.",
+ "exchangeDisabled2": "Exchange ActiveSync는 \"호환 디바이스\", \"승인된 클라이언트 앱\", \"호환 클라이언트 앱\" 컨트롤만 지원합니다. 자세히 알아보려면 클릭하세요.",
+ "notAvailableForSP": "정책 할당에서 '{0}' 선택으로 인해 일부 컨트롤을 사용할 수 없습니다.",
+ "requireAuthOrMfa": "\"{0}\"은(는) \"{1}\"와(과) 함께 사용할 수 없습니다.",
+ "requireMfa": "새 \"{0}\" 공개 미리 보기를 테스트하는 것이 좋습니다.",
+ "requirePasswordChangeEnabled": "\"암호 변경 필요\"는 정책이 \"모든 클라우드 앱\"에 할당된 경우에만 사용할 수 있습니다."
+ },
+ "Policies": {
+ "Linux": {
+ "devicePlatformsReportOnlyPolicy": "규격 디바이스가 필요한 보고서 전용 모드의 정책은 macOS, iOS, Android, Linux의 사용자에게 디바이스 인증서를 선택하라는 메시지를 표시할 수 있습니다.",
+ "excludeDevicePlatforms": "이 정책에서 디바이스 플랫폼 macOS, iOS, Android, Linux를 제외합니다.",
+ "proceedAnywayDevicePlatforms": "선택한 구성을 계속 진행합니다. macOS, iOS, Android, Linux의 사용자에게는 디바이스의 규정 준수 여부가 확인되면 프롬프트가 표시될 수 있습니다."
+ },
+ "blockCurrentUserPolicy": "자신이 잠기지 않도록 하세요. 소규모 사용자 세트에 정책을 적용하여 이 정책이 예상대로 작동하는지 확인하는 것이 좋습니다. 또한 이 정책에서 한 명 이상의 관리자를 제외하는 것이 좋습니다. 이렇게 하면 계속 액세스하면서도 변경이 필요할 때 정책을 업데이트할 수 있습니다. 영향을 받는 사용자 및 앱을 확인하세요.",
+ "devicePlatformsReportOnlyPolicy": "규격 디바이스가 필요한 보고서 전용 모드의 정책은 macOS, iOS 및 Android의 사용자에게 디바이스 인증서를 선택하라는 메시지를 표시할 수 있습니다.",
+ "excludeCurrentUserSelection": "이 정책에서 현재 사용자 {0}을(를) 제외합니다.",
+ "excludeDevicePlatforms": "이 정책에서 디바이스 플랫폼 macOS, iOS 및 Android를 제외합니다.",
+ "proceedAnywayDevicePlatforms": "선택한 구성을 계속 진행합니다. macOS, iOS 및 Android의 사용자에게는 디바이스의 규정 준수 여부가 확인되면 프롬프트가 표시될 수 있습니다.",
+ "proceedAnywaySelection": "내 계정이 이 정책의 영향을 받는다는 것을 이해합니다. 그래도 계속합니다."
+ },
+ "ServicePrincipals": {
+ "blockExchange": "Office 365 Exchange Online을 선택하면 OneDrive 및 Teams과 같은 앱에도 영향을 줍니다.",
+ "blockPortal": "자신이 잠기지 않도록 하세요. 이 정책은 Azure Portal에 영향을 줍니다. 계속하려면 먼저 사용자 또는 다른 사람이 포털로 돌아올 수 있는지 확인하세요.",
+ "blockPortalWithSession": "계정이 잠기지 않도록 주의하세요. 이 정책은 Azure Portal에 영향을 줍니다. 계속하기 전에 본인 또는 다른 사용자가 포털로 돌아올 수 있는지 확인합니다.
\"모든 클라우드 앱\"을 선택한 경우에만 제대로 작동하는 영구 브라우저 세션 정책을 구성하려는 경우에는 이 경고를 무시하세요.",
+ "blockSharePoint": "SharePoint Online을 선택하면 Microsoft Teams, Planner, Delve, MyAnalytics 및 Newsfeed와 같은 앱에도 영향을 미칩니다.",
+ "blockSkype": "비즈니스용 Skype Online을 선택하면 Microsoft Teams에도 영향을 줍니다.",
+ "includeOrExclude": "'{0}' 또는 '{1}'에 대한 앱 필터를 구성할 수 있지만 두 가지를 모두 다 구성할 수는 없습니다.",
+ "selectAppsNAForSP": "정책 할당의 '{0}' 선택으로 인해 개별 클라우드 앱을 선택할 수 없습니다.",
+ "teamsBlocked": "SharePoint Online 및 Exchange Online과 같은 앱이 정책에 포함된 경우에 Microsoft Teams도 영향을 받습니다."
+ },
+ "Users": {
+ "blockAllUsers": "계정이 잠기지 않도록 주의하세요. 이 정책은 모든 사용자에게 영향을 미칩니다. 먼저 적은 수의 사용자에게 정책을 적용하여 정책이 예상대로 작동하는지 확인하는 것이 좋습니다."
+ }
+ },
+ "WhatIf": {
+ "Device": {
+ "AttributesGrid": {
+ "aria": "로그인하는 동안 사용하는 디바이스의 특성 목록입니다.",
+ "infoBalloon": "로그인하는 동안 사용하는 디바이스의 특성 목록입니다."
+ }
+ }
+ },
+ "advancedTabText": "고급",
+ "allCloudAppsErrorBox": "\"암호 변경 필요\" 권한을 선택하면 \"모든 클라우드 앱\"을 선택해야 합니다.",
+ "allCloudAppsReauth": "\"매회 로그인 빈도\" 세션 제어 및 \"로그인 위험\" 조건이 선택된 경우 \"모든 클라우드 앱\"을 꼭 선택해야 합니다",
+ "allCloudOrSpecificApps": "\"매번 로그인 빈도\" 세션 컨트롤에는 \"모든 클라우드 앱\" 또는 특별히 지원되는 앱을 선택해야 합니다.",
+ "allDayCheckboxLabel": "하루 종일",
+ "allDevicePlatforms": "모든 디바이스",
+ "allGuestUserInfoContent": "Azure AD B2B 게스트를 포함하지만 SharePoint B2B 게스트는 포함하지 않음",
+ "allGuestUserLabel": "모든 게스트 및 외부 사용자",
+ "allRiskLevelsOption": "모든 위험 수준",
+ "allTrustedLocationLabel": "모든 신뢰된 위치",
+ "allUserGroupSetSelectorLabel": "모든 사용자 및 그룹 선택됨",
+ "allUsersReauth": "\"매번 로그인 빈도\" 세션 제어에서는 \"모든 사용자\"를 선택해야 합니다.",
+ "allUsersString": "모든 사용자",
+ "and": "{0} 및 {1}",
+ "andWithGrouping": "({0}) 및 {1}",
+ "androidDisplayName": "Android",
+ "anyCloudAppSelection": "모든 클라우드 앱",
+ "appContextOptionInfoContent": "요청한 인증 태그",
+ "appContextOptionLabel": "요청한 인증 태그(미리 보기)",
+ "appContextUriPlaceholder": "예: uri:contoso.com:level3",
+ "appEnforceInfoBubble": "앱에서 적용하는 제한에는 클라우드 앱 내에서 추가 관리자 구성이 필요할 수 있습니다. 제한은 새 세션에 대해서만 효과가 적용됩니다.",
+ "appNotSetSeletorLabel": "0개의 클라우드 앱이 선택됨",
+ "applyConditionClientAppInfoBalloonContent": "클라이언트 앱을 구성하여 특정 클라이언트 앱에 정책 적용",
+ "applyConditionDevicePlatformInfoBalloonContent": "디바이스 플랫폼을 구성하여 특정 플랫폼에 정책 적용",
+ "applyConditionDeviceStateInfoBalloonContent": "특정 디바이스 상태에 정책을 적용하도록 디바이스 상태를 구성",
+ "applyConditionLocationInfoBalloonContent": "위치를 구성하여 신뢰할 수 있는/신뢰할 수 없는 위치에 정책 적용",
+ "applyConditionSigninRiskInfoBalloonContent": "로그인 위험을 구성하여 선택된 위험 수준에 정책 적용",
+ "applyConditionUserRiskInfoBalloonContent": "선택한 위험 수준에 정책을 적용하도록 사용자 위험 구성",
+ "applyConditonLabel": "구성",
+ "ariaLabelPolicyDisabled": "정책이 사용하지 않도록 설정되었습니다.",
+ "ariaLabelPolicyEnabled": "정책을 사용함",
+ "ariaLabelPolicyReportOnly": "정책이 보고서 전용 모드임",
+ "blockAccess": "액세스 차단",
+ "builtInDirectoryRoleLabel": "기본 제공 디렉터리 역할",
+ "casCustomControlInfo": "Cloud App Security 포털에서 사용자 지정 정책을 구성해야 합니다. 이 컨트롤은 피처링된 앱에서 즉시 작동하며 모든 앱에서 자체 온보딩이 가능합니다. 두 가지 시나리오에 대해 자세히 알아보려면 여기를 클릭하세요.",
+ "casInfoBubble": "이 제어는 다양한 클라우드 앱에서 작동합니다.",
+ "casPreconfiguredControlInfo": "이 컨트롤은 추천 앱에서 즉시 작동하며 모든 앱에서 자체 온보딩이 가능합니다. 두 가지 시나리오에 대해 자세히 알아보려면 여기를 클릭하세요.",
+ "cert64DownloadCol": "base64 인증서 다운로드",
+ "cert64Name": "VpnBase64Cert",
+ "certDownloadCol": "인증서 다운로드",
+ "certDurationCol": "만료",
+ "certDurationStartCol": "유효 기간",
+ "certName": "VpnCert",
+ "certainApps": "\"다단계 인증 필요\" 및 \"암호 변경 필요\" 권한 부여가 선택되지 않은 경우 \"매번 로그인 빈도\"에 대해 특정 앱만 지원됩니다.",
+ "chooseApplicationsBladeSubtitle": "",
+ "chooseApplicationsBladeTitle": "애플리케이션 선택",
+ "chooseApplicationsCartSubitle": "",
+ "chooseApplicationsCartTitle": "애플리케이션을 선택함",
+ "chooseApplicationsEmpty": "애플리케이션 없음",
+ "chooseApplicationsNone": "없음",
+ "chooseApplicationsNoneFound": "\"{0}\"을(를) 찾을 수 없습니다. 다른 이름 또는 ID를 사용해 보세요.",
+ "chooseApplicationsPlural": "{0} 및 {1}개 더",
+ "chooseApplicationsReAuthEverytimeInfo": "앱을 찾고 계신가요? 일부 응용 프로그램은 \"재인증 필요 – 매번\" 세션 컨트롤과 함께 사용할 수 없음",
+ "chooseApplicationsRemove": "제거",
+ "chooseApplicationsReturnedPlural": "{0}개 애플리케이션을 찾음",
+ "chooseApplicationsReturnedSingular": "1개 애플리케이션을 찾음",
+ "chooseApplicationsSearchBalloon": "애플리케이션의 이름 또는 ID를 입력해서 검색합니다.",
+ "chooseApplicationsSearchHint": "애플리케이션 검색...",
+ "chooseApplicationsSearchLabel": "애플리케이션",
+ "chooseApplicationsSearching": "검색 중...",
+ "chooseApplicationsSelect": "선택",
+ "chooseApplicationsSelected": "선택됨",
+ "chooseApplicationsSingular": "{0} 및 1개 더",
+ "chooseApplicationsTooMany": "보다 많은 결과가 표시될 수 있습니다. 검색 상자를 사용해서 필터링하세요.",
+ "chooseLocationCorpnetItem": "기업 네트워크",
+ "chooseLocationSelectedLocationsLabel": "선택한 위치",
+ "chooseLocationTrustedIpsItem": "MFA에서 신뢰할 수 있는 IP",
+ "chooseLocationsBladeSubtitle": "",
+ "chooseLocationsBladeTitle": "위치 선택",
+ "chooseLocationsCartSubitle": "",
+ "chooseLocationsCartTitle": "선택한 위치",
+ "chooseLocationsEmpty": "위치 없음",
+ "chooseLocationsExcludedSelectorTitle": "선택",
+ "chooseLocationsIncludedSelectorTitle": "선택",
+ "chooseLocationsNone": "없음",
+ "chooseLocationsNoneFound": "\"{0}\"을(를) 찾을 수 없습니다. 다른 이름 또는 ID를 사용해 보세요.",
+ "chooseLocationsPlural": "{0} 및 {1}개 더",
+ "chooseLocationsRemove": "제거",
+ "chooseLocationsReturnedPlural": "위치 {0}개 찾음",
+ "chooseLocationsReturnedSingular": "위치 1개 찾음",
+ "chooseLocationsSearchBalloon": "위치의 이름을 입력하여 검색합니다.",
+ "chooseLocationsSearchHint": "위치를 검색합니다...",
+ "chooseLocationsSearchLabel": "위치",
+ "chooseLocationsSearching": "검색 중...",
+ "chooseLocationsSelect": "선택",
+ "chooseLocationsSelected": "선택됨",
+ "chooseLocationsSelectionBladeExcludedSelectorTitle": "선택",
+ "chooseLocationsSelectionBladeIncludedSelectorTitle": "선택",
+ "chooseLocationsSingular": "{0} 및 1개 더",
+ "chooseLocationsTooMany": "보다 많은 결과가 표시될 수 있습니다. 검색 상자를 사용해서 필터링하세요.",
+ "claimProviderAddCommandText": "새 사용자 지정 컨트롤",
+ "claimProviderAddNewBladeTitle": "새 사용자 지정 컨트롤",
+ "claimProviderDeleteCommand": "삭제",
+ "claimProviderDeleteDescription": "\"{0}\"을(를) 삭제하시겠습니까? 이 작업은 실행 취소할 수 없습니다.",
+ "claimProviderDeleteTitle": "계속할까요?",
+ "claimProviderEditInfoText": "클레임 공급자가 제공한 사용자 지정 컨트롤의 JSON을 입력하십시오.",
+ "claimProviderNotificationCreateDescription": "사용자 지정 컨트롤 '{0}'을(를) 만드는 중입니다.",
+ "claimProviderNotificationCreateFailedDescription": "사용자 지정 컨트롤 '{0}'을(를) 만들지 못했습니다. 나중에 다시 시도하십시오.",
+ "claimProviderNotificationCreateFailedTitle": "사용자 지정 컨트롤을 만들지 못했습니다.",
+ "claimProviderNotificationCreateSuccessDescription": "사용자 지정 컨트롤 '{0}'을(를) 만들었습니다.",
+ "claimProviderNotificationCreateSuccessTitle": "{0} 만듦",
+ "claimProviderNotificationCreateTitle": "{0}을(를) 만드는 중",
+ "claimProviderNotificationDeleteDescription": "사용자 지정 컨트롤 '{0}'을(를) 삭제하는 중입니다.",
+ "claimProviderNotificationDeleteFailedDescription": "사용자 지정 컨트롤 '{0}'을(를) 삭제하지 못했습니다. 나중에 다시 시도하십시오.",
+ "claimProviderNotificationDeleteFailedTitle": "사용자 지정 컨트롤을 삭제하지 못했습니다.",
+ "claimProviderNotificationDeleteSuccessDescription": "사용자 지정 컨트롤 '{0}'을(를) 삭제했습니다.",
+ "claimProviderNotificationDeleteSuccessTitle": "'{0}'을(를) 삭제함",
+ "claimProviderNotificationDeleteTitle": "'{0}'을(를) 삭제하는 중",
+ "claimProviderNotificationUpdateDescription": "사용자 지정 컨트롤 '{0}'을(를) 업데이트하는 중입니다.",
+ "claimProviderNotificationUpdateFailedDescription": "사용자 지정 컨트롤 '{0}'을(를) 업데이트하지 못했습니다. 나중에 다시 시도하십시오.",
+ "claimProviderNotificationUpdateFailedTitle": "사용자 지정 컨트롤을 업데이트하지 못했습니다.",
+ "claimProviderNotificationUpdateSuccessDescription": "사용자 지정 컨트롤 '{0}'을(를) 업데이트했습니다.",
+ "claimProviderNotificationUpdateSuccessTitle": "\"{0}\"을(를) 업데이트함",
+ "claimProviderNotificationUpdateTitle": "{0} 업데이트 중",
+ "claimProviderValidationAppIdInvalid": "\"AppId\" 값이 잘못되었습니다. 검토하고 다시 시도하십시오.",
+ "claimProviderValidationClientIdMissing": "데이터에서 \"ClientId\" 값이 누락되었습니다. 검토하고 다시 시도하십시오.",
+ "claimProviderValidationControlClaimsRequestedMissing": "\"Control\"에서 \"ClaimsRequested\" 값이 누락되었습니다. 검토하고 다시 시도하십시오.",
+ "claimProviderValidationControlClaimsRequestedTypeMissing": "\"ClaimsRequested\" 항목에서 \"Type\" 값이 누락되었습니다. 검토하고 다시 시도하십시오.",
+ "claimProviderValidationControlIdAlreadyExists": "\"Control\" \"Id\" 값이 이미 있습니다. 검토하고 다시 시도하십시오.",
+ "claimProviderValidationControlIdMissing": "\"Control\"에서 \"Id\" 값이 누락되었습니다. 검토하고 다시 시도하십시오.",
+ "claimProviderValidationControlIdReferencedInExistingPolicy": "\"Control\" \"Id\" 값이 기존 정책에서 참조되기 때문에 해당 값을 제거할 수 없습니다. 먼저 해당 값을 정책에서 제거하십시오.",
+ "claimProviderValidationControlIdTooManyControls": "\"Control\" 속성에 컨트롤이 너무 많습니다. 검토 후 다시 시도하세요.",
+ "claimProviderValidationControlIdValueReserved": "\"Control\" \"Id\" 값이 예약된 키워드입니다. 다른 ID를 사용하십시오.",
+ "claimProviderValidationControlNameAlreadyExists": "\"Control\" \"Name\" 값이 이미 있습니다. 검토하고 다시 시도하십시오.",
+ "claimProviderValidationControlNameMissing": "\"Control\"에서 \"Name\" 값이 누락되었습니다. 검토하고 다시 시도하십시오.",
+ "claimProviderValidationControlsMissing": "데이터에서 \"Controls\" 값이 누락되었습니다. 검토하고 다시 시도하십시오.",
+ "claimProviderValidationDiscoveryUrlMissing": "데이터에서 \"DiscoveryUrl\" 값이 누락되었습니다. 검토하고 다시 시도하십시오.",
+ "claimProviderValidationInvalid": "제공된 데이터가 잘못되었습니다. 검토하고 다시 시도하십시오.",
+ "claimProviderValidationInvalidJsonDefinition": "사용자 지정 컨트롤을 저장할 수 없습니다. JSON 텍스트를 검토하고 다시 시도하십시오.",
+ "claimProviderValidationNameAlreadyExists": "\"Name\" 값이 이미 있습니다. 검토하고 다시 시도하십시오.",
+ "claimProviderValidationNameMissing": "데이터에서 \"Name\" 값이 누락되었습니다. 검토하고 다시 시도하십시오.",
+ "claimProviderValidationUnknown": "제공된 데이터의 유효성을 검사하는 중 알 수 없는 오류가 발생했습니다. 검토하고 다시 시도하십시오.",
+ "claimProvidersNone": "사용자 지정 컨트롤 없음",
+ "claimProvidersSearchPlaceholder": "검색 컨트롤입니다.",
+ "classicPoilcyFilterTitle": "표시",
+ "classicPolicyAllPlatforms": "모든 플랫폼",
+ "classicPolicyClientAppBrowserAndNative": "브라우저, 모바일 앱 및 데스크톱 클라이언트",
+ "classicPolicyCloudAppTitle": "클라우드 애플리케이션",
+ "classicPolicyControlAllow": "허용",
+ "classicPolicyControlBlock": "차단",
+ "classicPolicyControlBlockWhenNotAtWork": "작업 중이 아닐 때 액세스 차단",
+ "classicPolicyControlRequireCompliantDevice": "준수 디바이스 필요",
+ "classicPolicyControlRequireDomainJoinedDevice": "도메인 가입 디바이스 필요",
+ "classicPolicyControlRequireMfa": "다단계 인증이 필요함",
+ "classicPolicyControlRequireMfaWhenNotAtWork": "회사가 아닐 경우 다단계 인증 기능 필요",
+ "classicPolicyDeleteCommand": "삭제",
+ "classicPolicyDeleteFailTitle": "클래식 정책을 삭제하지 못함",
+ "classicPolicyDeleteInProgressTitle": "클래식 정책을 삭제하는 중",
+ "classicPolicyDeleteSuccessTitle": "클래식 정책이 삭제됨",
+ "classicPolicyDetailBladeTitle": "세부 정보",
+ "classicPolicyDisableCommand": "사용 안 함",
+ "classicPolicyDisableConfirmation": "'{0}'을(를) 사용하지 않도록 설정하시겠습니까? 이 작업은 실행 취소할 수 없습니다.",
+ "classicPolicyDisableFailDescription": "'{0}'을(를) 사용하지 않도록 설정하지 못함",
+ "classicPolicyDisableFailTitle": "클래식 정책을 사용하지 않도록 설정하지 못함",
+ "classicPolicyDisableInProgressDescription": "'{0}'을(를) 사용하지 않도록 설정하는 중",
+ "classicPolicyDisableInProgressTitle": "클래식 정책을 사용하지 않도록 설정하는 중",
+ "classicPolicyDisableSuccessDescription": "'{0}'을(를) 사용하지 않도록 설정함",
+ "classicPolicyDisableSuccessTitle": "클래식 정책 사용 안 함",
+ "classicPolicyEasSupportedPlatforms": "Exchange ActiveSync 지원 플랫폼",
+ "classicPolicyEasUnsupportedPlatforms": "Exchange ActiveSync 비지원 플랫폼",
+ "classicPolicyExcludedPlatformsTitle": "제외된 디바이스 플랫폼",
+ "classicPolicyFilterAll": "모든 정책",
+ "classicPolicyFilterDisabled": "사용하지 않도록 설정된 정책",
+ "classicPolicyFilterEnabled": "사용하도록 설정된 정책",
+ "classicPolicyIncludeExcludeMembersDescription": "그룹을 제외하여 정책의 단계적 마이그레이션을 수행할 수 있습니다.",
+ "classicPolicyIncludeExcludeMembersTitle": "그룹 포함/제외",
+ "classicPolicyIncludedPlatformsTitle": "포함된 디바이스 플랫폼",
+ "classicPolicyManualMigrationMessage": "이 정책은 수동으로 마이그레이션해야 합니다.",
+ "classicPolicyMigrateCommand": "마이그레이션",
+ "classicPolicyMigrateConfirmation": "'{0}'을(를) 마이그레이션하시겠습니까? 이 정책은 한 번만 마이그레이션할 수 있습니다.",
+ "classicPolicyMigrateFailDescription": "'{0}'을(를) 마이그레이션하지 못함",
+ "classicPolicyMigrateFailTitle": "클래식 정책을 마이그레이션하지 못함",
+ "classicPolicyMigrateInProgressDescription": "'{0}'을(를) 마이그레이션하는 중",
+ "classicPolicyMigrateInProgressTitle": "클래식 정책을 마이그레이션하는 중",
+ "classicPolicyMigrateRecommendText": "권장 사항: 새 Azure Portal 정책을 마이그레이션하십시오.",
+ "classicPolicyMigrateSuccessTitle": "클래식 정책을 마이그레이션함",
+ "classicPolicyMigratedSuccessDescription": "이 클래식 정책은 이제 [정책]에서 관리할 수 있습니다.",
+ "classicPolicyMigratedSuccessDescriptionMultiple": "클래식 정책이 {0}개의 새 정책으로 마이그레이션되었습니다. 새 정책은 [정책]에서 관리할 수 있습니다.",
+ "classicPolicyNoEditPermissionMsg": "이 정책을 편집할 수 있는 권한이 없습니다. 전역 관리자 및 보안 관리자만 정책을 편집할 수 있습니다. 자세한 내용을 알아보려면 여기를 클릭하세요.",
+ "classicPolicySaveFailDescription": "'{0}'을(를) 저장하지 못함",
+ "classicPolicySaveFailTitle": "클래식 정책을 저장하지 못함",
+ "classicPolicySaveInProgressDescription": "'{0}'을(를) 저장하는 중",
+ "classicPolicySaveInProgressTitle": "클래식 정책을 저장하는 중",
+ "classicPolicySaveSuccessDescription": "'{0}'을(를) 저장함",
+ "classicPolicySaveSuccessTitle": "클래식 정책이 저장됨",
+ "clientAppBladeLegacyInfoBanner": "레거시 인증이 현재 지원되지 않음",
+ "clientAppBladeLegacyUpsellBanner": "지원되지 않는 클라이언트 앱 차단(미리 보기)",
+ "clientAppBladeTitle": "클라이언트 앱",
+ "clientAppDescription": "이 정책이 적용될 클라이언트 앱 선택",
+ "clientAppExchangeActiveSync": "Exchange ActiveSync",
+ "clientAppExchangeDisabledInfo": "Exchange Online만 클라우드 앱으로 선택된 경우 Exchange ActiveSync를 사용할 수 있습니다. 자세히 알아보려면 클릭",
+ "clientAppExchangeWarning": "Exchange ActiveSync는 현재 다른 모든 조건을 지원하지 않습니다.",
+ "clientAppLearnMore": "사용자 액세스를 제어하여 최신 인증을 사용하지 않는 특정 클라이언트 애플리케이션을 대상으로 지정합니다.",
+ "clientAppLegacyHeader": "레거시 인증 클라이언트",
+ "clientAppMobileDesktop": "모바일 앱 및 데스크톱 클라이언트",
+ "clientAppModernHeader": "최신 인증 클라이언트",
+ "clientAppOnlySupportedPlatforms": "지원되는 플랫폼에만 정책 적용",
+ "clientAppSelectSpecificClientApps": "클라이언트 앱 선택",
+ "clientAppV2BladeTitle": "클라이언트 앱(미리 보기)",
+ "clientAppWebBrowser": "브라우저",
+ "clientAppsSelectedLabel": "{0}개 포함됨",
+ "clientTypeBrowser": "브라우저",
+ "clientTypeEas": "Exchange ActiveSync 클라이언트",
+ "clientTypeEasInfo": "레거시 인증만 사용하는 Exchange ActiveSync 클라이언트입니다.",
+ "clientTypeModernAuth": "최신 인증 클라이언트",
+ "clientTypeOtherClients": "기타 클라이언트",
+ "clientTypeOtherClientsInfo": "여기에는 이전 버전의 Office 클라이언트와 기타 메일 프로토콜(POP, IMAP, SMTP 등)이 포함됩니다. [자세한 정보][1]\n[1]: https://aka.ms/caclientapps\n",
+ "cloudAppCountDiffBannerText": "이 정책에 구성된 클라우드 앱 {0}개가 디렉터리에서 삭제되었지만 정책에서 다른 앱에 영향을 주지 않습니다. 다음에 정책의 애플리케이션 섹션을 업데이트하면 삭제된 앱이 자동으로 제거됩니다.",
+ "cloudAppsSelectionBladeAllMicrosoftApps": "모든 Microsoft 앱",
+ "cloudAppsSelectionExcludeAllMicrosoftClients": "Microsoft 클라우드, 데스크톱 및 모바일 앱 허용(미리 보기)",
+ "cloudappsSelectionBladeAllCloudapps": "모든 클라우드 앱",
+ "cloudappsSelectionBladeExcludeDescription": "정책에서 제외할 클라우드 앱 선택",
+ "cloudappsSelectionBladeExcludedSelectorTitle": "제외된 클라우드 앱 선택",
+ "cloudappsSelectionBladeIncludeDescription": "이 정책을 적용할 클라우드 앱 선택",
+ "cloudappsSelectionBladeIncludedSelectorTitle": "선택",
+ "cloudappsSelectionBladeSelectedCloudapps": "앱 선택",
+ "cloudappsSelectorInfoBallonText": "사용자가 작업을 수행하기 위해 액세스하는 서비스입니다(예: 'Salesforce').",
+ "cloudappsSelectorPluralExcluded": "제외된 앱 {0}개",
+ "cloudappsSelectorPluralIncluded": "앱 {0}개 포함",
+ "cloudappsSelectorSingularExcluded": "앱 1개 제외됨",
+ "cloudappsSelectorSingularIncluded": "앱 1개 포함",
+ "cloudappsSelectorUserPlural": "앱 {0}개",
+ "cloudappsSelectorUserSingular": "앱 1개",
+ "conditionLabelMulti": "조건 {0}개 선택됨",
+ "conditionLabelOne": "조건 1개 선택됨",
+ "conditionalAccessBladeTitle": "조건부 액세스",
+ "conditionsNotSelectedLabel": "구성하지 못함",
+ "conditionsReqMfaReauthSet": "현재 선택되어 있는 \"다단계 인증 필요\" 부여 및 \"매번 로그인 빈도\" 세션 제어로 인해 일부 옵션을 사용할 수 없습니다.",
+ "conditionsReqPwSet": "현재 선택된 \"암호 변경 필요\" 권한으로 인해 일부 옵션을 사용할 수 없습니다.",
+ "configureCasText": "Cloud App Security 구성",
+ "configureCustomControlsText": "사용자 지정 정책 구성",
+ "controlLabelMulti": "컨트롤 {0}개 선택됨",
+ "controlLabelOne": "컨트롤 1개 선택됨",
+ "controlValidatorText": "컨트롤을 하나 이상 선택하세요.",
+ "controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
+ "controlsDeviceComplianceAriaLabel": "규격 디바이스를 요구하는 방법에 대해 자세히 알아보세요.",
+ "controlsDeviceComplianceInfoBubble": "디바이스가 Intune을 준수해야 합니다. 디바이스가 Intune을 준수하지 않는 경우 사용자에게 디바이스의 준수를 요구하는 메시지가 표시됩니다.",
+ "controlsDomainJoinedAriaLabel": "하이브리드 Azure AD 조인 디바이스를 요구하는 방법에 대해 자세히 알아보세요.",
+ "controlsDomainJoinedInfoBubble": "디바이스는 하이브리드 Azure AD 조인되어야 합니다.",
+ "controlsMamAriaLabel": "승인된 클라이언트 애플리케이션을 요구하는 방법에 대해 자세히 알아보세요.",
+ "controlsMamInfoBubble": "디바이스가 이러한 승인된 클라이언트 애플리케이션을 사용해야 합니다.",
+ "controlsMfaInfoBubble": "사용자는 전화 통화, 텍스트 등의 추가 보안 요구 사항을 완료해야 합니다.",
+ "controlsOrAndInfoBubble": "ControlsOrAndInfoBubble",
+ "controlsRequireCompliantAppAriaLabel": "정책으로 보호된 앱 요구 사항에 대해 자세히 알아보세요.",
+ "controlsRequireCompliantAppInfoBubble": "디바이스가 정책으로 보호된 앱을 사용해야 합니다.",
+ "controlsRequirePasswordResetAriaLabel": "암호 변경 요구 사항에 대해 자세히 알아봅니다.",
+ "controlsRequirePasswordResetInfoBubble": "사용자 위험을 낮추기 위해 암호를 변경해야 합니다. 이 옵션을 사용하려면 다단계 인증도 필요합니다. 다른 제어는 사용할 수 없습니다.",
+ "countriesRadiobuttonInfoBalloonContent": "사용자의 IP 주소에 따라 로그인하는 국가/지역입니다.",
+ "createNewVpnCert": "새 인증서",
+ "createdTimeLabel": "만든 시간",
+ "customRoleLabel": "사용자 지정 역할(지원되지 않음)",
+ "dateRangeTypeLabel": "날짜 범위",
+ "daysOfWeekPlaceholderText": "요일 필터링",
+ "daysOfWeekTypeLabel": "요일",
+ "deletePolicyNoLicenseText": "이제 이 정책을 삭제할 수 있습니다. 삭제하는 경우 필요한 라이선스를 얻기 전까지 다시 만들 수 없습니다.",
+ "descriptionContentForControlsAndOr": "여러 컨트롤의 경우",
+ "devicePlatform": "디바이스 플랫폼",
+ "devicePlatformConditionHelpDescription": "선택한 디바이스 플랫폼에 정책을 적용합니다.\n[자세한 정보][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2044750",
+ "devicePlatformInclude": "{0}개 포함됨",
+ "devicePlatformIncludeExclude": "{0}, {1}개 제외됨",
+ "devicePlatformNoSelectionError": "디바이스 플랫폼을 선택하려면 하위 항목을 하나 선택해야 합니다.",
+ "devicePlatformsNone": "없음",
+ "deviceSelectionBladeExcludeDescription": "정책에서 제외할 플랫폼 선택",
+ "deviceSelectionBladeIncludeDescription": "이 정책에 포함할 디바이스 플랫폼 선택",
+ "deviceStateAll": "모든 디바이스 상태",
+ "deviceStateCompliant": "디바이스가 준수 상태로 표시됨",
+ "deviceStateCompliantInfoContent": "Intune을 준수하는 디바이스는 이 정책의 평가에서 제외됩니다. 즉, 예를 들어 정책이 액세스를 차단하는 경우 Intune을 준수하는 디바이스 외의 모든 디바이스가 차단됩니다.",
+ "deviceStateConditionConfigureInfoContent": "디바이스 상태에 따라 정책 구성",
+ "deviceStateConditionSelectorInfoContent": "사용자가 로그인하는 장치가 '하이브리드 Azure AD 조인'되었거나 '준수 표시'인지 여부입니다.\n 이 항목은 더 이상 사용되지 않습니다. '{1}'을(를) 대신 사용하세요.",
+ "deviceStateConditionSelectorLabel": "디바이스 상태(사용되지 않음)",
+ "deviceStateDomainJoined": "하이브리드 Azure AD 조인된 디바이스",
+ "deviceStateDomainJoinedInfoContent": "하이브리드 Azure AD 조인된 디바이스는 이 정책의 평가에서 제외됩니다. 즉, 예를 들어 정책이 액세스를 차단하는 경우 하이브리드 Azure AD 조인된 디바이스 외의 모든 디바이스가 차단됩니다.",
+ "deviceStateDomainJoinedInfoLinkText": "자세히 알아보세요.",
+ "deviceStateExcludeDescription": "정책에서 디바이스를 제외하는 데 사용된 디바이스 상태 조건을 선택합니다.",
+ "deviceStateIncludeAndExcludeOneLabel": "{0} 포함 및 {1} 제외",
+ "deviceStateIncludeAndExcludeTwoLabel": "{0} 포함 및 {1}, {2} 제외",
+ "directoryRoleInfoContent": "기본 제공 디렉터리 역할에 정책을 할당합니다.",
+ "directoryRolesLabel": "디렉터리 역할",
+ "discardbutton": "취소",
+ "downloadDefaultFileName": "IP 범위",
+ "downloadExampleFileName": "예",
+ "downloadExampleHeader": "수락될 수 있는 데이터의 종류를 보여주는 예제 파일입니다. #로 시작하는 줄은 무시됩니다.",
+ "endDatePickerLabel": "끝",
+ "endTimePickerLabel": "종료 시간",
+ "enterCountryText": "IP 주소 및 국가는 쌍으로 평가됩니다. 국가를 입력하세요.",
+ "enterIpText": "IP 주소 및 국가는 쌍으로 평가됩니다. IP 주소를 입력하세요.",
+ "enterUserText": "사용자를 선택하지 않았습니다. 사용자를 선택하세요.",
+ "evaluationResult": "평가 결과",
+ "exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
+ "exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "지원되는 플랫폼이 있는 Exchange ActiveSync만",
+ "excludeAllTrustedLocationSelectorText": "모든 신뢰할 수 있는 위치 제외",
+ "featureRequiresP2": "이 기능을 사용하려면 Azure AD Premium 2개의 라이선스가 필요합니다.",
+ "friday": "금요일",
+ "grantControls": "컨트롤 권한 부여",
+ "gridNetworkTrusted": "인증 신뢰",
+ "gridPolicyCreatedDateTime": "만든 날짜",
+ "gridPolicyEnabled": "사용",
+ "gridPolicyModifiedDateTime": "수정한 날짜",
+ "gridPolicyName": "정책 이름",
+ "gridPolicyState": "상태",
+ "groupSelectionBladeExcludeDescription": "정책에서 제외할 그룹 선택",
+ "groupSelectionBladeExcludedSelectorTitle": "제외된 그룹 선택",
+ "groupSelectionBladeSelect": "그룹 선택",
+ "groupSelectorInfoBallonText": "정책이 적용되는 디렉터리의 그룹입니다. 예: '파일럿 그룹'",
+ "groupsSelectionBladeTitle": "그룹",
+ "helpCommonScenariosText": "일반 시나리오에 관심이 있으신가요?",
+ "helpCondition1": "사용자가 한 명이라도 회사 네트워크 외부에 있는 경우",
+ "helpCondition2": "‘Managers’ 그룹의 사용자가 로그인하는 경우",
+ "helpConditionsTitle": "조건",
+ "helpControl1": "다단계 인증을 사용해서 로그인해야 합니다.",
+ "helpControl2": "Intune 준수 디바이스 또는 도메인에 가입된 디바이스를 사용해야 합니다.",
+ "helpControlsTitle": "컨트롤",
+ "helpIntroText": "조건부 액세스를 사용하면 특정 조건이 발생하는 경우 액세스 요구 사항을 적용할 수 있습니다. 몇 가지 예제를 살펴보겠습니다.",
+ "helpIntroTitle": "조건부 액세스란 무엇인가요?",
+ "helpLearnMoreText": "조건부 액세스에 대해 자세히 알고 싶으신가요?",
+ "helpStartStep1": "[+ 새 정책]을 클릭하여 첫 번째 정책 만들기",
+ "helpStartStep2": "정책 조건 및 제어를 지정합니다.",
+ "helpStartStep3": "완료한 후에는 정책을 사용하도록 설정하고 만듭니다.",
+ "helpStartTitle": "시작",
+ "highRisk": "높음",
+ "includeAndExcludeAppsTextFormat": "포함: {0}. 제외: {1}.",
+ "includeAppsTextFormat": "포함: {0}.",
+ "includeUnknownAreasCheckboxInfoBalloonContent": "알 수 없는 영역은 국가/지역으로 매핑할 수 없는 IP 주소입니다.",
+ "includeUnknownAreasCheckboxLabel": "알 수 없는 영역 포함",
+ "infoCommandLabel": "정보",
+ "invalidCertDuration": "잘못된 인증서 기간",
+ "invalidIpAddress": "값이 올바른 IP 주소여야 합니다.",
+ "invalidUriErrorMsg": "유효한 URI를 입력하세요(예: 'uri:contoso.com:acr'). ",
+ "iosDisplayName": "iOS",
+ "linuxDisplayName": "Linux",
+ "loadAll": "전체 로드",
+ "loading": "로딩 중...",
+ "locationConfigureNamedLocationsText": "신뢰된 모든 위치를 구성",
+ "locationConfigureNamedLocationsUri": "{0}/usermanagement/mfasettings.aspx?tenantid={1}&culture={2}",
+ "locationNameTooLongError": "위치 이름이 너무 깁니다. 최대 길이는 256자입니다.",
+ "locationSelectionBladeExcludeDescription": "정책에서 제외할 위치 선택",
+ "locationSelectionBladeIncludeDescription": "이 정책에 포함할 위치 선택",
+ "locationsAllLocationsLabel": "임의의 위치",
+ "locationsAllNamedLocationsLabel": "신뢰할 수 있는 모든 IP",
+ "locationsAllPrivateLinksLabel": "내 테넌트의 모든 사설 링크",
+ "locationsIncludeExcludeLabel": "{0}, 모든 신뢰할 수 있는 IP 제외",
+ "locationsSelectedPrivateLinksLabel": "선택한 사설 링크",
+ "lowRisk": "낮음",
+ "macOsDisplayName": "macOS",
+ "managePoliciesLicenseText": "조건부 액세스 정책을 관리하려면 조직에 Azure AD Premium P1 또는 P2가 있어야 합니다.",
+ "markAsTrustedCheckboxInfoBalloonContent": "신뢰할 수 있는 위치에서 로그인하면 사용자의 로그인 위험이 낮아집니다. 입력한 IP 범위가 조직에 설정되어 신뢰할 수 있는 경우 이 위치만 신뢰할 수 있음으로 표시하세요.",
+ "markAsTrustedCheckboxLabel": "신뢰할 수 있는 위치로 표시",
+ "mediumRisk": "보통",
+ "memberSelectionCommandRemove": "제거",
+ "menuItemClaimProviderControls": "사용자 지정 제어(미리 보기)",
+ "menuItemClassicPolicies": "클래식 정책",
+ "menuItemInsightsAndReporting": "인사이트 및 보고",
+ "menuItemManage": "관리",
+ "menuItemNamedLocationsPreview": "명명된 위치(미리 보기)",
+ "menuItemNamedNetworks": "명명된 위치",
+ "menuItemPolicies": "정책",
+ "menuItemTermsOfUse": "사용 약관",
+ "modifiedTimeLabel": "수정한 시간",
+ "monday": "월요일",
+ "nameLabel": "이름",
+ "namedLocationCountryInfoBanner": "IPv4 주소만 국가/지역에 매핑됩니다. IPv6 주소는 알 수 없는 국가/지역에 포함되어 있습니다.",
+ "namedLocationTypeCountry": "국가/지역",
+ "namedLocationTypeLabel": "사용 위치 정의:",
+ "namedLocationUpsellBanner": "이 보기는 더 이상 사용되지 않습니다. 새롭게 개선된 '명명된 위치' 보기로 이동합니다.",
+ "namedLocationsHelpDescription": "명명된 위치는 가양성 및 Azure AD 조건부 액세스 정책을 줄이기 위해 Azure AD 보안 보고서에서 사용됩니다.\n[자세한 정보][1]\n[1]: https://aka.ms/namedlocationupdate",
+ "namedNetworkAddIpRanges": "새 IP 범위(예: 40.77.182.32/27) 추가",
+ "namedNetworkCountryNeeded": "국가를 하나 이상 선택해야 함",
+ "namedNetworkDeleteCommand": "삭제",
+ "namedNetworkDeleteDescription": "\"{0}\"을(를) 삭제하시겠습니까? 이 작업은 실행 취소할 수 없습니다.",
+ "namedNetworkDeleteTitle": "계속할까요?",
+ "namedNetworkDownloadIpRange": "다운로드",
+ "namedNetworkInvalidRange": "값은 올바른 IP 범위여야 합니다.",
+ "namedNetworkIpRangeNeeded": "하나 이상의 유효한 IP 범위가 필요합니다.",
+ "namedNetworkIpRangesDescriptionContent": "조직의 IP 범위 구성",
+ "namedNetworkIpRangesTab": "IP 범위",
+ "namedNetworkListAdd": "새 위치",
+ "namedNetworkListConfigureTrustedIps": "MFA에서 신뢰할 수 있는 IP 구성",
+ "namedNetworkNameDescription": "예: 'Redmond 사무실'",
+ "namedNetworkNameInvalid": "제공된 이름이 잘못되었습니다.",
+ "namedNetworkNameRequired": "이 위치에 대한 이름을 제공해야 합니다.",
+ "namedNetworkNoIpRanges": "IP 범위 없음",
+ "namedNetworkNotificationCreateDescription": "이름이 '{0}'인 위치를 만드는 중",
+ "namedNetworkNotificationCreateFailedDescription": "'{0}' 위치를 만들지 못했습니다. 나중에 다시 시도하세요.",
+ "namedNetworkNotificationCreateFailedTitle": "위치를 만들지 못함",
+ "namedNetworkNotificationCreateSuccessDescription": "이름이 '{0}'인 위치를 만듦",
+ "namedNetworkNotificationCreateSuccessTitle": "{0} 만듦",
+ "namedNetworkNotificationCreateTitle": "{0}을(를) 만드는 중",
+ "namedNetworkNotificationDeleteDescription": "이름이 '{0}'인 위치를 삭제하는 중",
+ "namedNetworkNotificationDeleteFailedDescription": "'{0}' 위치를 삭제하지 못했습니다. 나중에 다시 시도하세요.",
+ "namedNetworkNotificationDeleteFailedTitle": "위치를 삭제하지 못함",
+ "namedNetworkNotificationDeleteSuccessDescription": "이름이 '{0}'인 위치를 삭제함",
+ "namedNetworkNotificationDeleteSuccessTitle": "'{0}'을(를) 삭제함",
+ "namedNetworkNotificationDeleteTitle": "'{0}'을(를) 삭제하는 중",
+ "namedNetworkNotificationUpdateDescription": "이름이 '{0}'인 위치를 업데이트 중",
+ "namedNetworkNotificationUpdateFailedDescription": "'{0}' 위치를 업데이트하지 못했습니다. 나중에 다시 시도하세요.",
+ "namedNetworkNotificationUpdateFailedTitle": "위치를 업데이트하지 못함",
+ "namedNetworkNotificationUpdateSuccessDescription": "이름이 '{0}'인 위치를 업데이트함",
+ "namedNetworkNotificationUpdateSuccessTitle": "\"{0}\"을(를) 업데이트함",
+ "namedNetworkNotificationUpdateTitle": "{0} 업데이트 중",
+ "namedNetworkSearchPlaceholder": "위치를 검색합니다.",
+ "namedNetworkUploadFailedDescription": "제공된 파일을 구문 분석하는 데 오류가 발생했습니다. 각 줄이 CIDR 형식으로 된 일반 텍스트 파일을 업로드했는지 확인하세요.",
+ "namedNetworkUploadFailedTitle": "'{0}'을(를) 구문 분석하지 못했습니다.",
+ "namedNetworkUploadInProgressDescription": "'{0}'의 CIDR 값을 구문 분석하려고 시도하는 중입니다.",
+ "namedNetworkUploadInProgressTitle": "'{0}' 구문 분석 중",
+ "namedNetworkUploadInvalidDescription": "'{0}'이(가) 너무 크거나 잘못된 형식입니다.",
+ "namedNetworkUploadInvalidTitle": "'{0}'이(가) 잘못됨",
+ "namedNetworkUploadIpRange": "업로드",
+ "namedNetworkUploadSuccessDescription": "{0}줄을 분석했습니다. {1}의 형식이 잘못되었습니다. {2}줄을 건너뛰었습니다.",
+ "namedNetworkUploadSuccessTitle": "'{0}' 구문 분석을 마침",
+ "namedNetworksAdd": "새 명명된 위치",
+ "namedNetworksConditionHelpDescription": "물리적 위치에 따라 사용자 액세스를 제어합니다.\n[자세한 정보][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
+ "namedNetworksExcludeLabel": "{0}, {1}개 제외됨",
+ "namedNetworksHelpDescription": "명명된 위치는 가양성 및 Azure AD 조건부 액세스 정책을 줄이기 위해 Azure AD 보안 보고서에서 사용됩니다.\n[자세한 정보][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
+ "namedNetworksIncludeLabel": "{0}개 포함됨",
+ "namedNetworksNone": "명명된 위치를 찾을 수 없습니다.",
+ "namedNetworksTitle": "위치 구성",
+ "namednetworkExceedingSizeErrorBladeTitle": "오류 정보",
+ "namednetworkExceedingSizeErrorDetailText": "자세한 내용을 보려면 여기를 클릭하세요.",
+ "namednetworkExceedingSizeErrorMessage": "명명된 위치에 허용되는 최대 스토리지 수를 초과했습니다. 더 짧은 목록으로 다시 시도하세요. 자세한 내용을 보려면 여기를 클릭하세요.",
+ "needMfaSecondary": "\"2차 인증 방법만\"으로 \"로그인 빈도 매회\"를 선택한 경우 \"다단계 인증 필요\"를 선택해야 합니다.",
+ "newCertName": "새 인증서",
+ "noAttributePermissionsError": "정책을 생성하거나 업데이트할 권한이 없습니다. 동적 필터를 추가/편집하려면 속성 정의 리더 역할이 필요합니다.",
+ "noPolicyRowMessage": "정책 없음",
+ "noSPSelected": "선택된 서비스 사용자가 없습니다.",
+ "noUpdatePermissionMessage": "이러한 설정을 업데이트할 수 있는 권한이 없습니다. 액세스 권한을 얻으려면 전역 관리자에게 문의하세요.",
+ "noUserSelected": "사용자 선택 안 됨",
+ "noneRisk": "위험 없음",
+ "office365Description": "이러한 앱에는 Microsoft Flow, Microsoft Forms, Microsoft Teams, Office 365 Exchange Online, Office 365 SharePoint Online, Office 365 Yammer 등이 포함됩니다.",
+ "office365InfoBox": "선택한 앱 중 하나 이상이 Office 365에 속해 있습니다. 대신 Office 365 앱에서 이 정책을 설정하는 것이 좋습니다.",
+ "oneUserSelected": "사용자가 한 명 선택됨",
+ "onlyGlobalAdminsCanSaveThisPolicyConfig": "전역 관리자만 이 정책을 저장할 수 있습니다.",
+ "or": "{0} 또는 {1}",
+ "pickerDoneCommand": "완료",
+ "policiesBladeAdPremiumUpsellBannerText": "Azure AD Premium을 통해 클라우드 앱, 로그인 위험 및 디바이스 플랫폼와 같은 대상별 조건 및 사용자 고유의 정책 만들기",
+ "policiesBladeTitle": "정책",
+ "policiesBladeTitleWithAppName": "정책: {0}",
+ "policiesDisabledBannerText": "연결된 로그온 특성이 있는 애플리케이션의 정책 만들기와 편집은 금지됩니다.",
+ "policiesHitMaxLimitStatusBarMessage": "이 테넌트에 대한 최대 정책 수에 도달했습니다. 추가 생성하기 전에 일부 정책을 삭제하세요.",
+ "policyAssignmentsSection": "할당",
+ "policyBlockAllInfoBox": "구성된 정책은 모든 사용자를 차단하므로 지원되지 않습니다. 할당 및 컨트롤을 검토합니다. 이 정책을 저장하려면 현재 사용자 {0}을(를) 제외합니다.",
+ "policyCloudAppsDisplayTextAllApp": "모든 앱",
+ "policyCloudAppsLabel": "클라우드 앱",
+ "policyConditionClientAppDescription": "사용자가 클라우드 앱에 액세스하는 데 사용하는 소프트웨어입니다(예: '브라우저').",
+ "policyConditionClientAppV2Description": "사용자가 클라우드 앱에 액세스하는 데 사용하는 소프트웨어입니다(예: '브라우저').",
+ "policyConditionDevicePlatform": "디바이스 플랫폼",
+ "policyConditionDevicePlatformDescription": "사용자가 로그인하는 플랫폼입니다(예: 'iOS').",
+ "policyConditionLocation": "위치",
+ "policyConditionLocationDescription": "사용자가 로그인하는 위치(IP 주소 범위를 사용하여 확인)입니다.",
+ "policyConditionSigninRisk": "로그인 위험",
+ "policyConditionSigninRiskDescription": "사용자 이외의 누군가가 로그인했을 가능성입니다. 위험 수준은 높음, 중간 또는 낮음이 될 수 있습니다. Azure AD Premium 2 라이선스가 필요합니다.",
+ "policyConditionUserRisk": "사용자 위험",
+ "policyConditionUserRiskDescription": "정책을 적용하기 위해 필요한 사용자 위험 수준 구성",
+ "policyConditioniClientApp": "클라이언트 앱",
+ "policyConditioniClientAppV2": "클라이언트 앱(미리 보기)",
+ "policyControlAllowAccessDisplayedName": "액세스 허용",
+ "policyControlAuthenticationStrengthDisplayedName": "인증 강도 필요(미리 보기)",
+ "policyControlBladeTitle": "허용",
+ "policyControlBlockAccessDisplayedName": "액세스 차단",
+ "policyControlCompliantDeviceDisplayedName": "준수 상태로 표시된 디바이스 필요",
+ "policyControlContentDescription": "액세스를 차단하거나 부여하기 위해 액세스 시행을 제어합니다.",
+ "policyControlInfoBallonText": "액세스를 차단하거나, 액세스를 허용하기 위해 충족해야 하는 추가 요구 사항 선택",
+ "policyControlMfaChallengeDisplayedName": "다단계 인증 기능 필요",
+ "policyControlRequireCompliantAppDisplayedName": "앱 보호 정책 필요",
+ "policyControlRequireDomainJoinedDisplayedName": "하이브리드 Azure AD 조인된 디바이스 필요",
+ "policyControlRequireMamDisplayedName": "승인된 클라이언트 앱 필요",
+ "policyControlRequiredPasswordChangeDisplayedName": "암호 변경 필요",
+ "policyControlSelectAuthStrength": "인증 강도 필요",
+ "policyControlsNoControlsSelected": "컨트롤 0개 선택됨",
+ "policyControlsSection": "액세스 제어",
+ "policyCreatBladeTitle": "새로 만들기",
+ "policyCreateButton": "만들기",
+ "policyCreateFailedMessage": "오류: {0}",
+ "policyCreateFailedTitle": "'{0}'을(를) 만들지 못함",
+ "policyCreateInProgressTitle": "{0}을(를) 만드는 중",
+ "policyCreateSuccessMessage": "'{0}'을(를) 만들었습니다. [정책을 사용하도록 설정]이 [켜기]로 설정되어 있으면 몇 분 후에 정책을 사용할 수 있습니다.",
+ "policyCreateSuccessTitle": "'{0}'을(를) 만듦",
+ "policyDeleteConfirmation": "\"{0}\"을(를) 삭제하시겠습니까? 이 작업은 실행 취소할 수 없습니다.",
+ "policyDeleteFailTitle": "'{0}'을(를) 삭제하지 못함",
+ "policyDeleteInProgressTitle": "'{0}'을(를) 삭제하는 중",
+ "policyDeleteSuccessTitle": "'{0}'을(를) 삭제함",
+ "policyEnforceLabel": "정책 사용",
+ "policyErrorCannotSetSigninRisk": "로그인 위험 조건을 포함하는 정책을 저장할 권한이 없습니다.",
+ "policyErrorNoPermission": "정책을 저장할 권한이 없습니다. 전역 관리자에게 문의하세요.",
+ "policyErrorUnknown": "오류가 발생했습니다. 나중에 다시 시도하세요.",
+ "policyFallbackWarningMessage": "MS Graph를 사용하여 '{0}'을(를) 만들거나 업데이트하지 못하여 AD Graph로 대체됩니다. 호환되지 않는 조건으로 MS Graph에 대한 정책 엔드포인트를 호출할 때 버그가 있을 가능성이 높으므로 다음 시나리오를 확인하세요.",
+ "policyFallbackWarningTitle": "'{0}'을(를) 만들거나 업데이트하는 데 부분적으로 성공했습니다.",
+ "policyNameCannotBeEmpty": "정책 이름은 비워 둘 수 없습니다.",
+ "policyNameDevice": "디바이스 정책",
+ "policyNameFormat": "[{0}] {1}",
+ "policyNameMam": "모바일 앱 관리 정책",
+ "policyNameMfaLocation": "MFA 및 위치 정책",
+ "policyNamePlaceholderText": "예: '디바이스 준수 앱 정책'",
+ "policyNameTooLongError": "정책 이름이 너무 깁니다. 최대 256자 사용",
+ "policyOff": "끄기",
+ "policyOn": "설정",
+ "policyReportOnly": "보고서 전용",
+ "policyReviewSection": "검토",
+ "policySaveButton": "저장",
+ "policyStatusIconDescription": "정책을 사용함",
+ "policyStatusIconEnabled": "상태 아이콘을 사용함",
+ "policyTemplateName1": "{0} 브라우저 액세스에 대해 앱 적용 제한 사용",
+ "policyTemplateName2": "관리되는 디바이스에서만 {0} 액세스 허용",
+ "policyTemplateName3": "지속적인 액세스 평가 설정에서 마이그레이션된 정책",
+ "policyTriggerRiskSpecific": "특정 위험 수준 선택",
+ "policyTriggersInfoBalloonText": "정책을 적용할 때를 정의하는 조건입니다(예: '위치').",
+ "policyTriggersNoConditionsSelected": "조건 0개 선택됨",
+ "policyTriggersSelectorLabel": "조건",
+ "policyUpdateFailedMessage": "오류: {0}",
+ "policyUpdateFailedTitle": "{0} 업데이트 실패",
+ "policyUpdateInProgressTitle": "{0} 업데이트 중",
+ "policyUpdateSuccessMessage": "{0}을(를) 업데이트했습니다. [정책 사용]이 [켜기]로 설정되어 있으면 몇 분 후에 정책이 활성화됩니다.",
+ "policyUpdateSuccessTitle": "{0} 업데이트 성공",
+ "primaryCol": "주",
+ "privateLinkLabel": "Azure AD Private Link",
+ "reportOnlyInfoBox": "보고서 전용 모드: 정책은 로그인할 때 평가 및 기록되지만 사용자에게 영향을 주지 않습니다.",
+ "requireAllControlsText": "선택된 컨트롤이 모두 필요함",
+ "requireCompliantDevice": "준수 디바이스 필요",
+ "requireDomainJoined": "도메인에 가입된 디바이스 필요",
+ "requireGrantReauth": "\"모든 클라우드 앱\"이 선택된 경우 \"매번 로그인 빈도\" 세션 제어에는 \"다단계 인증 필요\" 또는 \"암호 변경 필요\" 권한 부여 컨트롤이 필요합니다.",
+ "requireMFA": "다단계 인증 필요",
+ "requireMfaReauth": "\"매번 로그인 빈도\" 세션 컨트롤에는 \"로그인 위험\"에 대한 \"다단계 인증 필요\" 권한 부여 컨트롤이 필요합니다.",
+ "requireOneControlText": "선택된 컨트롤 중 하나 필요",
+ "requirePasswordChangeReauth": "\"매번 로그인 빈도\" 세션 컨트롤에는 \"사용자 위험\"에 대한 \"암호 변경 필요\" 권한 부여 컨트롤이 필요합니다.",
+ "requireRiskReauth": "\"모든 클라우드 앱\"이 선택된 경우 \"매번 로그인 빈도\" 세션 컨트롤에는 \"사용자 위험\" 또는 \"로그인 위험\" 세션 컨트롤이 필요합니다.",
+ "resetFilters": "필터 재설정",
+ "sPRequired": "서비스 사용자 필요",
+ "sPSelectorInfoBalloon": "테스트하려는 사용자 또는 서비스 사용자",
+ "saturday": "토요일",
+ "searchTextTooLongError": "검색 텍스트가 너무 깁니다. 최대 256자",
+ "securityDefaultsPolicyName": "보안 기본값",
+ "securityDefaultsTextMessage": "조건부 액세스 정책을 사용하도록 설정하려면 보안 기본값을 비활성화해야 합니다.",
+ "securityDefaultsWarningMessage": "조직의 보안 구성을 관리하려는 것 같습니다. 조건부 액세스 정책을 사용하도록 설정하기 전에 먼저 보안 기본값을 사용하지 않도록 설정해야 합니다.",
+ "selectDevicePlatforms": "디바이스 플랫폼 선택",
+ "selectNamedNetworksSubtitle": "",
+ "selectNamedNetworksTitle": "검색 위치",
+ "selectedSP": "선택된 서비스 사용자",
+ "servicePrincipalDataGridAria": "사용 가능한 서비스 사용자 목록",
+ "servicePrincipalDropDownLabel": "이 정책은 어떤 항목에 적용됩니까?",
+ "servicePrincipalInfoBox": "정책 할당에서 '{0}' 선택으로 인해 일부 조건을 사용할 수 없습니다.",
+ "servicePrincipalRadioAll": "소유한 모든 서비스 사용자",
+ "servicePrincipalRadioSelect": "서비스 사용자 선택",
+ "servicePrincipalSelectionsAria": "선택한 서비스 사용자 표",
+ "servicePrincipalSelectorAria": "선택한 서비스 사용자 목록",
+ "servicePrincipalSelectorMultiple": "{0} 서비스 사용자가 선택됨",
+ "servicePrincipalSelectorSingle": "서비스 사용자 1명 선택됨",
+ "servicePrincipalSpecificInc": "특정 서비스 사용자 포함됨",
+ "servicePrincipals": "서비스 원칙",
+ "sessionControlBladeTitle": "세션",
+ "sessionControlDescriptionContent": "세션 컨트롤을 기반으로 액세스를 제어하여 특정 클라우드 애플리케이션 내에서 제한된 환경을 사용하도록 설정합니다.",
+ "sessionControlDisableInfo": "이 컨트롤은 지원되는 앱에서만 작동합니다. 현재 앱 적용 제한을 지원하는 클라우드 앱은 Office 365, Exchange Online 및 SharePoint Online뿐입니다. 자세히 알아보려면 여기를 클릭하세요.",
+ "sessionControlInfoBallonText": "세션 컨트롤은 클라우드 앱 내에서 제한된 환경을 사용하도록 설정합니다.",
+ "sessionControls": "세션 컨트롤",
+ "sessionControlsAppEnforcedLabel": "앱 적용 제한 사용",
+ "sessionControlsCasLabel": "조건부 액세스 앱 제어 사용",
+ "sessionControlsSecureSignInLabel": "토큰 바인딩 필요",
+ "sharepointAppName": "SharePoint",
+ "signinRiskDescription": "이 정책을 적용할 로그인 위험 수준 선택",
+ "signinRiskInclude": "{0}개 포함됨",
+ "signinRiskReauth": "\"다단계 인증 필요\" 부여 및 \"매번 로그인 빈도\" 세션 제어를 선택한 경우 \"로그인 위험\" 조건을 선택해야 합니다.",
+ "signinRiskTriggerDescriptionContent": "로그인 위험 수준 선택",
+ "singleTenantServicePrincipalInfoBallonText": "정책은 조직이 소유한 단일 테넌트 서비스 사용자에만 적용됩니다. 자세히 알아보려면 여기를 클릭하세요. ",
+ "specificSigninRiskLevelsOption": "특정 로그인 위험 수준 선택",
+ "specificUsersExcluded": "특정 사용자가 제외됨",
+ "specificUsersIncluded": "특정 사용자가 포함됨",
+ "specificUsersIncludedAndExcluded": "특정 사용자 제외 및 포함",
+ "startDatePickerLabel": "시작",
+ "startFreeTrial": "평가판 시작",
+ "startTimePickerLabel": "시작 시간",
+ "sunday": "일요일",
+ "testButton": "What If",
+ "thumbprintCol": "지문",
+ "thursday": "목요일",
+ "timeConditionAllTimesLabel": "항상",
+ "timeConditionIntroText": "이 정책이 적용될 시간 구성",
+ "timeConditionSelectorInfoBallonContent": "사용자가 로그인하는 시간입니다. 예: \"수요일, 오전 9시 - 오후 5시 PST\"",
+ "timeConditionSelectorLabel": "시간(미리 보기)",
+ "timeConditionSpecificLabel": "특정 시간(미리 보기)",
+ "timeSelectorAllTimesText": "항상",
+ "timeSelectorSpecificTimesText": "구성한 특정 시간",
+ "timeZoneDropdownInfoBalloonContent": "시간 범위를 정의한 표준 시간대를 선택하세요. 이 정책은 모든 표준 시간대의 사용자에게 적용됩니다. 예를 들어 한 사용자의 '수요일, 오전 9시 - 오후 5시'는 다른 표준 시간대 사용자의 경우 '수요일, 오전 10시 - 오후 6시'가 됩니다.",
+ "timeZoneDropdownLabel": "표준 시간대",
+ "timeZoneDropdownPlaceholderText": "표준 시간대 선택",
+ "tooManyPoliciesDescription": "지금은 처음 50개 정책만 표시됩니다. 모든 정책을 보려면 여기를 클릭하세요.",
+ "tooManyPoliciesTitle": "50개가 넘는 정책이 있음",
+ "trustedLocationStatusIconDescription": "위치를 신뢰할 수 있음",
+ "trustedLocationStatusIconEnabled": "신뢰할 수 있는 상태 아이콘",
+ "tuesday": "화요일",
+ "uploadInBadState": "지정된 파일을 업로드할 수 없습니다.",
+ "upsellAppsDescription": "중요한 애플리케이션에 대해 항상, 또는 회사 네트워크 외부의 애플리케이션에 대해서만 다단계 인증을 요구합니다.",
+ "upsellAppsTitle": "보안 애플리케이션",
+ "upsellBannerText": "무료 Premium 평가판을 받아서 이 기능을 사용하세요.",
+ "upsellDataDescription": "회사 리소스에 액세스를 허용하려면 준수 상태로 표시된 디바이스나 하이브리드 Azure AD 조인된 디바이스가 필요합니다.",
+ "upsellDataTitle": "보안 데이터",
+ "upsellDescription": "조건부 액세스는 회사 데이터를 안전하게 유지하는 데 필요한 제어 및 보호를 제공하는 한편, 직원들이 모든 디바이스에서 최고의 작업을 수행할 수 있는 환경을 제공합니다. 예를 들어, 회사 네트워크 외부에서 액세스를 제한하거나 준수 정책을 충족하는 디바이스만 액세스하도록 제한할 수 있습니다.",
+ "upsellRiskDescription": "Microsoft의 기계 학습 시스템을 통해 검색된 위험 이벤트에 대해 다단계 인증을 요구합니다.",
+ "upsellRiskTitle": "위험으로부터 보호",
+ "upsellTitle": "조건부 액세스",
+ "upsellWhyTitle": "조건부 액세스를 사용하는 이유는 무엇인가요?",
+ "userAppNoneOption": "없음",
+ "userNamePlaceholderText": "사용자 이름 입력",
+ "userNotSetSeletorLabel": "0명의 사용자 및 그룹이 선택됨",
+ "userOnlySelectionBladeExcludeDescription": "정책에서 제외할 사용자 선택",
+ "userOrGroupSelectionCountDiffBannerText": "이 정책에 구성된 {0}이(가) 디렉터리에서 삭제되었지만 정책에서 다른 사용자 및 그룹에 영향을 주지 않습니다. 다음에 정책을 업데이트하면 삭제된 사용자 및/또는 그룹이 자동으로 제거됩니다.",
+ "userOrSPNotSetSelectorLabel": "0명의 사용자 또는 워크로드 ID가 선택됨",
+ "userOrSPSelectionBladeTitle": "사용자 또는 워크로드 ID",
+ "userOrSPSelectorInfoBallonText": "사용자, 그룹 및 서비스 사용자를 포함하여 정책이 적용되는 디렉터리의 ID",
+ "userRequired": "사용자가 필요함",
+ "userRiskErrorBox": "\"암호 변경 필요\" 권한을 선택하면 \"사용자 위험\" 조건을 선택해야 합니다.",
+ "userRiskReauth": "\"암호 변경 필요\" 부여 및 \"매번 로그인 빈도\" 세션 제어가 선택된 경우 \"로그인 위험\"이 아닌 \"사용자 위험\" 조건을 선택해야 합니다.",
+ "userSPRequired": "사용자 또는 서비스 주체 필요",
+ "userSPSelectorTitle": "사용자 또는 워크로드 ID",
+ "userSelectionBladeAllUsersAndGroups": "모든 사용자 및 그룹",
+ "userSelectionBladeExcludeDescription": "정책에서 제외할 사용자 및 그룹 선택",
+ "userSelectionBladeExcludeTabTitle": "제외",
+ "userSelectionBladeExcludedSelectorTitle": "제외된 사용자 선택",
+ "userSelectionBladeIncludeDescription": "이 정책이 적용될 사용자를 선택합니다.",
+ "userSelectionBladeIncludeTabTitle": "포함",
+ "userSelectionBladeIncludedSelectorTitle": "선택",
+ "userSelectionBladeSelectUsers": "사용자 선택",
+ "userSelectionBladeSelectedUsers": "사용자 및 그룹 선택",
+ "userSelectionBladeTitle": "사용자 및 그룹",
+ "userSelectorBladeTitle": "사용자",
+ "userSelectorExcluded": "{0} 제외됨",
+ "userSelectorGroupPlural": "그룹 {0}개",
+ "userSelectorGroupSingular": "그룹 1개",
+ "userSelectorIncluded": "{0}개 포함됨",
+ "userSelectorInfoBallonText": "디렉터리에서 정책이 적용되는 사용자 및 그룹입니다(예: '파일럿 그룹').",
+ "userSelectorSelected": "{0}이(가) 선택됨",
+ "userSelectorTitle": "사용자",
+ "userSelectorUserAndGroup": "{0}, {1}",
+ "userSelectorUserPlural": "{0} 사용자",
+ "userSelectorUserSingular": "사용자 1명",
+ "userSelectorWithExclusion": "{0} 및 {1}",
+ "usersGroupsLabel": "사용자 및 그룹",
+ "viewApprovedAppsText": "승인된 클라이언트 앱 목록 보기",
+ "viewCompliantAppsText": "정책으로 보호된 클라이언트 앱 목록 보기",
+ "vpnBladeTitle": "VPN 연결",
+ "vpnCertCreateFailedMessage": "오류: {0}",
+ "vpnCertCreateFailedTitle": "{0}을(를) 만들지 못했습니다.",
+ "vpnCertCreateInProgressTitle": "{0} 만드는 중",
+ "vpnCertCreateSuccessMessage": "{0}을(를) 만들었습니다.",
+ "vpnCertCreateSuccessTitle": "{0}을(를) 만들었습니다.",
+ "vpnCertNoRowsMessage": "VPN 인증서를 찾을 수 없음",
+ "vpnCertUpdateFailedMessage": "오류: {0}",
+ "vpnCertUpdateFailedTitle": "{0} 업데이트 실패",
+ "vpnCertUpdateInProgressTitle": "{0} 업데이트 중",
+ "vpnCertUpdateSuccessMessage": "{0}을(를) 업데이트했습니다.",
+ "vpnCertUpdateSuccessTitle": "{0} 업데이트 성공",
+ "vpnFeatureInfo": "VPN 연결 및 조건부 액세스에 대한 자세한 내용을 보려면 여기를 클릭하세요.",
+ "vpnFeatureWarning": "Azure Portal에서 VPN 인증서를 만들면 Azure AD는 바로 VPN 클라이언트에 대해 짧은 수명의 인증서를 발급하는 데 사용됩니다. Vpn 클라이언트의 자격 증명 확인에 문제가 발생하지 않도록 vpn 인증서를 VPN 서버에 즉시 배포하는 것이 중요합니다.",
+ "vpnMenuText": "VPN 연결",
+ "vpncertDropdownDefaultOption": "기간",
+ "vpncertDropdownInfoBalloonContent": "만들 인증서의 기간 선택",
+ "vpncertDropdownLabel": "기간 선택",
+ "vpncertDropdownOneyearOption": "1년",
+ "vpncertDropdownThreeyearOption": "3년",
+ "vpncertDropdownTwoyearOption": "2년",
+ "wednesday": "수요일",
+ "whatIfAppEnforcedControl": "앱 적용 제한 사용",
+ "whatIfBladeDescription": "특정 조건에서 로그인하는 경우 사용자에 대한 조건부 액세스의 영향을 테스트합니다.",
+ "whatIfBladeTitle": "What If",
+ "whatIfClassicPoliciesWarning": "클래식 정책은 이 도구에서 평가되지 않습니다.",
+ "whatIfClientAppInfo": "사용자가 로그인하는 클라이언트 앱입니다(예: '브라우저').",
+ "whatIfCountry": "국가",
+ "whatIfCountryInfo": "사용자가 로그인하는 국가입니다.",
+ "whatIfDevicePlatformInfo": "사용자가 로그인하는 디바이스 플랫폼입니다.",
+ "whatIfDeviceStateInfo": "사용자가 로그인하고 있는 디바이스 상태입니다.",
+ "whatIfEnterIpAddress": "IP 주소(예: 40.77.182.32) 입력",
+ "whatIfErrorInvalidIpAddress": "잘못된 IP 주소를 지정했습니다.",
+ "whatIfEvaResultApplication": "클라우드 앱",
+ "whatIfEvaResultClientApps": "클라이언트 앱",
+ "whatIfEvaResultDevicePlatform": "디바이스 플랫폼",
+ "whatIfEvaResultEmptyPolicy": "빈 정책",
+ "whatIfEvaResultInvalidCondition": "잘못된 조건",
+ "whatIfEvaResultInvalidPolicy": "잘못된 정책",
+ "whatIfEvaResultLocation": "위치",
+ "whatIfEvaResultNotEnoughInformation": "정보가 부족함",
+ "whatIfEvaResultPolicyNotEnabled": "사용하도록 설정되지 않은 정책",
+ "whatIfEvaResultSignInRisk": "로그인 위험",
+ "whatIfEvaResultUsers": "사용자 및 그룹",
+ "whatIfIpAddress": "IP 주소",
+ "whatIfIpAddressInfo": "사용자가 로그인하는 IP 주소입니다.",
+ "whatIfIpCountryInfoBoxText": "IP 주소 또는 국가를 사용하는 경우 두 필드 모두 필수이며 함께 올바르게 매핑되어야 합니다.",
+ "whatIfPolicyAppliesTab": "적용되는 정책",
+ "whatIfPolicyDoesNotApplyTab": "적용되지 않는 정책",
+ "whatIfReasons": "이 정책이 적용되지 않는 이유",
+ "whatIfSelectClientApp": "클라이언트 앱 선택...",
+ "whatIfSelectCountry": "국가 선택...",
+ "whatIfSelectDevicePlatform": "디바이스 플랫폼 선택...",
+ "whatIfSelectPrivateLink": "프라이빗 링크 선택...",
+ "whatIfSelectServicePrincipalRisk": "서비스 사용자 위험 선택...",
+ "whatIfSelectSignInRisk": "로그인 위험 선택",
+ "whatIfSelectType": "ID 유형 선택",
+ "whatIfSelectUserRisk": "사용자 위험 선택...",
+ "whatIfServicePrincipalRiskInfo": "서비스 사용자와 관련된 위험 수준",
+ "whatIfSignInRisk": "로그인 위험",
+ "whatIfSignInRiskInfo": "로그인과 관련된 위험 수준입니다.",
+ "whatIfUnknownAreas": "알 수 없는 영역",
+ "whatIfUserPickerLabel": "선택한 사용자",
+ "whatIfUserPickerNoRowsLabel": "사용자 또는 서비스 주체가 선택되지 않음",
+ "whatIfUserRiskInfo": "사용자와 관련된 위험 수준",
+ "whatIfUserSelectorInfo": "디렉터리에서 테스트할 대상 사용자",
+ "windows365InfoBox": "Windows 365를 선택하면 Cloud PC 및 Azure Virtual Desktop 세션 호스트에 대한 연결에 영향을 줍니다. 자세히 알아보려면 여기를 클릭하세요.",
+ "windowsDisplayName": "Windows",
+ "windowsPhoneDisplayName": "Windows Phone",
+ "workloadIdentities": "워크로드 ID(미리 보기)",
+ "workloadIdentity": "워크로드 ID"
+ },
+ "AppResources": {
+ "AppSettingsUx": {
+ "assignmentFilterColumnHeader": "필터",
+ "assignmentFilterTypeColumnHeader": "필터 모드",
+ "assignmentToast": "최종 사용자 알림",
+ "assignmentTypeTableHeader": "할당 유형",
+ "deadlineTimeColumnLabel": "설치 최종 기한",
+ "deliveryOptimizationPriorityHeader": "배달 최적화 우선 순위",
+ "groupTableHeader": "그룹",
+ "installContextLabel": "설치 컨텍스트",
+ "isRemovable": "이동식으로 설치",
+ "licenseTypeLabel": "라이선스 유형",
+ "modeTableHeader": "그룹 모드",
+ "policySet": "정책 집합",
+ "restartGracePeriodHeader": "다시 시작 유예 기간",
+ "startTimeColumnLabel": "가용성",
+ "tracks": "트랙",
+ "uninstallOnRemoval": "디바이스 제거 시 제거",
+ "updateMode": "업데이트 우선 순위",
+ "vPN": "VPN"
+ },
+ "AppType": {
+ "aADWebApp": "AAD 웹앱",
+ "androidEnterpriseSystemApp": "Android Enterprise 시스템 앱",
+ "androidForWorkApp": "관리형 Google Play 스토어 앱",
+ "androidLobApp": "Android LOB(기간 업무) 앱",
+ "androidStoreApp": "Android 스토어 앱",
+ "builtInAndroid": "기본 제공 Android 앱",
+ "builtInApp": "기본 제공 앱",
+ "builtInIos": "기본 제공 iOS 앱",
+ "iosLobApp": "iOS LOB(기간 업무) 앱",
+ "iosStoreApp": "iOS 스토어 앱",
+ "iosVppApp": "iOS 대량 구매 프로그램 앱",
+ "lineOfBusinessApp": "LOB(기간 업무) 앱",
+ "macOSDmgApp": "macOS 앱(DMG)",
+ "macOSEdgeApp": "Microsoft Edge(macOS)",
+ "macOSLobApp": "macOS 기간 업무 앱",
+ "macOSMdatpApp": "Microsoft Defender ATP(macOS)",
+ "macOSOfficeSuiteApp": "macOS Office 제품군",
+ "macOsVppApp": "macOS Volume Purchase Program 앱",
+ "managedAndroidLobApp": "관리되는 Android LOB(기간 업무) 앱",
+ "managedAndroidStoreApp": "관리되는 Android 스토어 앱",
+ "managedGooglePlayApp": "관리형 Google Play 스토어 앱",
+ "managedGooglePlayPrivateApp": "관리형 Google Play 프라이빗 앱",
+ "managedGooglePlayWebApp": "관리형 Google Play 웹 링크",
+ "managedIosLobApp": "관리되는 iOS LOB(기간 업무) 앱",
+ "managedIosStoreApp": "관리되는 iOS 스토어 앱",
+ "microsoftStoreForBusinessApp": "비즈니스용 Microsoft 스토어 앱",
+ "microsoftStoreForBusinessReleaseManagedApp": "비즈니스용 Microsoft 스토어",
+ "officeAddIn": "Office 추가 기능",
+ "officeSuiteApp": "Microsoft 365 앱(Windows 10 이상)",
+ "sharePointApp": "SharePoint 앱",
+ "teamsApp": "Teams 앱",
+ "webApp": "웹 링크",
+ "windowsAppXLobApp": "Windows AppX LOB(기간 업무) 앱",
+ "windowsClassicApp": "Windows 앱(Win32)",
+ "windowsEdgeApp": "Microsoft Edge(Windows 10 이상)",
+ "windowsMobileMsiLobApp": "Windows MSI 기간 업무 앱",
+ "windowsPhone81AppXBundleLobApp": "Windows Phone 8.1 AppX LOB(기간 업무) 앱",
+ "windowsPhone81AppXLobApp": "Windows Phone 8.1 AppX LOB(기간 업무) 앱",
+ "windowsPhone81StoreApp": "Windows Phone 8.1 스토어 앱",
+ "windowsPhoneXapLobApp": "Windows Phone XAP LOB(기간 업무) 앱",
+ "windowsStoreApp": "Microsoft Store 앱",
+ "windowsUniversalAppXLobApp": "Windows Universal AppX LOB(기간 업무) 앱",
+ "windowsUniversalLobApp": "Windows 유니버설 사업 부문 앱"
+ },
+ "AppTypePlatform": {
+ "android": "Android",
+ "ios": "iOS",
+ "macOs": "macOS",
+ "web": "Web",
+ "windows": "Windows"
+ },
+ "AssignmentAction": {
+ "exclude": "제외됨",
+ "include": "포함됨",
+ "includeAllDevicesVirtualGroup": "포함됨",
+ "includeAllUsersVirtualGroup": "포함됨"
+ },
+ "AssignmentToast": {
+ "hideAll": "모든 알림 메시지 숨기기",
+ "showAll": "모든 알림 메시지 표시",
+ "showReboot": "컴퓨터 다시 시작에 대한 알림 메시지 표시"
+ },
+ "DeliveryOptimizationPriority": {
+ "backgroundNormal": "백그라운드",
+ "displayText": "{0}에서 콘텐츠 다운로드",
+ "foreground": "포그라운드",
+ "header": "배달 최적화 우선 순위"
+ },
+ "DeviceRestartBehaviorOptions": {
+ "allow": "앱을 설치하면 디바이스가 강제로 다시 시작될 수 있음",
+ "basedOnReturnCode": "반환 코드에 따라 동작 결정",
+ "force": "Intune에서 강제로 필수 디바이스를 다시 시작함",
+ "suppress": "구체적인 작업이 없음"
+ },
+ "FilterType": {
+ "exclude": "제외",
+ "include": "포함",
+ "none": "없음"
+ },
+ "InstallIntent": {
+ "available": "등록된 디바이스에 사용 가능",
+ "availableWithoutEnrollment": "등록 유무에 상관없이 사용 가능",
+ "notApplicable": "적용할 수 없음",
+ "required": "필수",
+ "uninstall": "제거"
+ },
+ "SettingType": {
+ "assignmentType": "할당 유형",
+ "deviceLicensing": "라이선스 형식",
+ "installContext": "디바이스 제거 시 제거",
+ "toastSettings": "최종 사용자 알림",
+ "vpnConfiguration": "VPN"
+ },
+ "UpdateMode": {
+ "default": "기본값",
+ "postponed": "연기됨",
+ "priority": "높은 우선 순위"
+ }
+ },
+ "WindowsEnrollment": {
+ "coManagementAuthorityDesc": "Configuration Manager 통합에 대한 공동 관리 설정을 구성합니다.",
+ "coManagementAuthorityTitle": "공동 관리 설정 ",
+ "deploymentProfiles": "Windows AutoPilot 배포 프로필",
+ "description": "사용자 또는 관리자가 Windows 10/11 PC를 Intune에 등록하는 7가지 방법을 알아봅니다.",
+ "descriptionLabel": "Windows 등록 방법",
+ "enrollmentStatusPage": "등록 상태 페이지"
+ },
+ "Win32Program": {
+ "DeviceRestartBehaviorOptions": {
+ "allow": "앱을 설치하면 디바이스가 강제로 다시 시작될 수 있음",
+ "basedOnReturnCode": "반환 코드에 따라 동작 결정",
+ "force": "Intune에서 강제로 필수 디바이스를 다시 시작함",
+ "suppress": "지정된 작업 없음"
+ },
+ "RunAsAccountOptions": {
+ "system": "시스템",
+ "user": "사용자"
+ },
+ "bladeTitle": "프로그램",
+ "deviceRestartBehavior": "디바이스 다시 시작 동작",
+ "deviceRestartBehaviorTooltip": "앱을 설치한 후 디바이스 다시 시작 동작을 선택합니다. 반환 코드 구성 설정을 기준으로 디바이스를 다시 시작하려면 '반환 코드에 따라 동작 결정'을 선택합니다. MSI 기반 앱에 대한 앱 설치 중에 디바이스 다시 시작 관련 메시지를 표시하지 않으려면 '특정 작업 없음'을 선택하세요. 다시 시작 관련 메시지 표시 여부와 관계없이 앱 설치를 완료할 수 있도록 하려면 '앱 설치 시 강제로 디바이스 다시 시작'을 선택하세요. 앱을 설치한 후에 항상 디바이스를 다시 시작하려면 'Intune에서 강제로 필수 디바이스를 다시 시작함'을 선택합니다.",
+ "header": "이 앱을 설치 및 제거하기 위한 명령 지정:",
+ "installCommand": "설치 명령",
+ "installCommandMaxLengthErrorMessage": "설치 명령은 허용되는 최대 길이인 1024자를 초과할 수 없습니다.",
+ "installCommandTooltip": "이 앱을 설치하는 데 사용되는 전체 설치 명령줄입니다.",
+ "runAs32Bit": "64비트 클라이언트에서 32비트 프로세스로 설치 및 제거 명령 실행",
+ "runAs32BitTooltip": "64비트 클라이언트에서 32비트 프로세스로 앱을 설치 및 제거하려면 '예'를 선택합니다. 64비트 클라이언트에서 64비트 프로세스로 앱을 설치 및 제거하려면 '아니요'(기본값)를 선택합니다. 32비트 클라이언트에서는 항상 32비트 프로세스가 사용됩니다.",
+ "runAsAccount": "설치 동작",
+ "runAsAccountTooltip": "지원되는 경우 모든 사용자에 대해 이 앱을 설치하려면 '시스템'을 선택합니다. 디바이스에 로그인한 사용자에 대해 이 앱을 설치하려면 '사용자'를 선택합니다. 이중 목적 MSI 앱의 경우 원래 설치 시 디바이스에 적용된 값이 복원될 때까지 변경 내용으로 인해 업데이트 및 제거가 완료되지 않습니다.",
+ "selectorLabel": "프로그램",
+ "uninstallCommand": "제거 명령",
+ "uninstallCommandTooltip": "이 앱을 제거하는 데 사용되는 전체 제거 명령줄입니다."
+ },
+ "CategoryDescription": {
+ "androidGeneralApplicationRestrictions": "이 설정을 사용하여 회사에서 사용이 승인되지 않은 앱을 어떤 사용자가 설치하는지 알 수 있습니다. 제한된 앱 목록 유형을 선택하세요.
\r\n 금지된 앱 - 사용자가 앱을 설치할 때 알림을 받고 싶은 앱 목록입니다.
\r\n 승인된 앱 - 회사에서 사용이 승인된 앱 목록입니다. 이 목록에 없는 앱을 사용자가 설치하면 알림을 받게 됩니다.
\r\n ",
+ "androidZebraMxZebraMx": "MX 프로필을 XML 형식으로 업로드하여 Zebra 디바이스를 구성합니다.",
+ "iosDeviceFeaturesAirprint": "네트워크의 AirPrint 호환 프린터에 자동으로 연결하도록 iOS 디바이스를 구성하는 데 이러한 설정을 사용합니다. 프린터의 IP 주소 및 리소스 경로가 필요합니다.",
+ "iosDeviceFeaturesExtensibleSingleSignOn": "iOS 13.0 이상을 실행하는 디바이스에 SSO(Single Sign-On)를 사용하도록 설정하는 앱 확장을 구성합니다.",
+ "iosDeviceFeaturesHomeScreenLayout": "iOS 디바이스에서 도크 및 홈 화면에 대한 레이아웃을 구성합니다. 특정 디바이스에서는 표시할 수 있는 항목 수가 제한될 수 있습니다.",
+ "iosDeviceFeaturesIOSWallpaper": "iOS 디바이스의 홈 화면 및/또는 잠금 화면에 나타나는 이미지를 표시합니다.\r\n 각 위치에 고유한 이미지를 표시하려면 잠금 화면 이미지를 사용하여 프로필을 하나 만들고, 홈 화면 이미지를 사용하여 프로필을 하나 만듭니다.\r\n 그런 다음 두 프로필을 모두 사용자에게 할당합니다.\r\n
\r\n \r\n - 최대 파일 크기: 750KB
\r\n - 파일 형식: PNG, JPG 또는 JPEG
\r\n
\r\n ",
+ "iosDeviceFeaturesNotifications": "앱에 대한 알림 설정을 지정합니다. iOS 9.3 이상을 지원합니다.",
+ "iosDeviceFeaturesSharedDevice": "잠긴 화면에 표시되는 선택적 텍스트를 지정하세요. iOS 9.3 이상에서 지원됩니다. 자세한 정보",
+ "iosGeneralApplicationRestrictions": "이 설정을 사용하여 회사에서 사용이 승인되지 않은 앱을 어떤 사용자가 설치하는지 알 수 있습니다. 제한된 앱 목록 유형을 선택하세요.
\r\n 금지된 앱 - 사용자가 앱을 설치할 때 알림을 받고 싶은 앱 목록입니다.
\r\n 승인된 앱 - 회사에서 사용이 승인된 앱 목록입니다. 이 목록에 없는 앱을 사용자가 설치하면 알림을 받게 됩니다.
\r\n ",
+ "iosGeneralApplicationVisibility": "표시된 앱 목록을 사용하여 사용자가 보거나 실행할 수 있는 iOS 앱을 지정하세요. 숨겨진 앱 목록을 사용하여 사용자가 보거나 실행할 수 있는 iOS 앱을 지정하세요.",
+ "iosGeneralAutonomousSingleAppMode": "이 목록에 추가하고 디바이스에 할당하는 앱은 해당 앱이 실행될 때에만 작동하도록 디바이스를 잠그거나, 특정 작업이 실행 중인 동안(예: 테스트 수행) 디바이스를 잠글 수 있습니다. 작업을 완료하거나 제한을 제거하면 디바이스가 정상 상태로 돌아옵니다.",
+ "iosGeneralKiosk": "키오스크 모드는 다양한 설정을 디바이스에 잠그거나 디바이스에서 실행할 수 있는 단일 앱을 지정합니다. 이 모드는 디바이스에서 단일 데모 앱만 실행하려는 소매점과 같은 환경에서 유용합니다.",
+ "macDeviceFeaturesAirprint": "이러한 설정을 사용하여 macOS 디바이스가 네트워크의 AirPrint 호환 프린터에 자동으로 연결되도록 구성합니다. 프린터의 IP 주소와 리소스 경로가 필요합니다.",
+ "macDeviceFeaturesAssociatedDomains": "조직의 앱과 웹 사이트 간에 데이터와 로그인 자격 증명을 공유하도록 연결된 도메인을 구성합니다. 이 프로필은 macOS 10.15 이상을 실행하는 디바이스에 적용할 수 있습니다.",
+ "macDeviceFeaturesExtensibleSingleSignOn": "macOS 10.15 이상을 실행하는 디바이스에 SSO(Single Sign-On)를 사용하도록 설정하는 앱 확장을 구성합니다.",
+ "macDeviceFeaturesLoginItems": "사용자가 디바이스에 로그인할 때 열리는 앱, 파일 및 폴더를 선택합니다. 사용자가 선택된 앱이 열리는 방식을 변경하지 못하도록 하려는 경우 사용자 구성에서 앱을 숨길 수 있습니다.",
+ "macDeviceFeaturesLoginWindow": "macOS 로그인 화면의 모양과 로그인 전후 사용자가 사용할 수 있는 기능을 구성합니다.",
+ "macExtensionsKernelExtensions": "이러한 설정을 사용하여 10.13.2 이상을 실행하는 macOS 디바이스에서 커널 확장 정책을 구성합니다.",
+ "macGeneralDomains": "사용자가 보내거나 받는 메일 중 여기에 지정하는 도메인과 일치하지 않는 메일은 신뢰할 수 없는 것으로 표시됩니다.",
+ "windows10EndpointProtectionApplicationGuard": "Microsoft Edge를 사용하는 동안 Microsoft Defender Application Guard는 조직에서 신뢰할 수 있는 사이트로 정의되지 않은 사이트로부터 환경을 보호합니다. 사용자가 격리된 네트워크 경계 목록에 없는 사이트를 방문하면 사이트가 Hyper-V의 가상 브라우징 세션에서 열립니다. 신뢰할 수 있는 사이트는 [디바이스 구성]에서 구성할 수 있는 네트워크 경계에 의해 정의됩니다. 이 기능은 Windows 10(64비트) 이상의 운영체제가 설치된 디바이스에 대해서만 사용할 수 있습니다.",
+ "windows10EndpointProtectionCredentialGuard": "Credential Guard를 사용하도록 설정하면 다음과 같은 필수 설정이 사용하도록 설정됩니다.\r\n
\r\n \r\n - 가상화 기반 보안 사용: 다음 다시 부팅 시 VBS(가상화 기반 보안)를 켭니다. 가상화 기반 보안에서는 Windows 하이퍼바이저를 사용하여 보안 서비스에 대한 지원을 제공합니다.
\r\n
\r\n - 보안 부팅 및 DMA(직접 메모리 액세스): 보안 부팅 및 DMA(직접 메모리 액세스)를 통해 VBS를 켭니다.
\r\n
\r\n ",
+ "windows10EndpointProtectionDeviceGuard": "Microsoft Defender 애플리케이션 제어를 통해 감사해야 하거나 실행을 신뢰할 수 있는 추가 앱을 선택합니다. Windows 구성 요소 및 Windows 스토어의 모든 앱은 자동으로 실행이 신뢰됩니다.
\r\n \"감사 전용\" 모드에서 실행될 때는 애플리케이션이 차단되지 않습니다. \"감사 전용\" 모드에서는 모든 이벤트가 로컬 클라이언트 로그에 기록됩니다.\r\n ",
+ "windows10GeneralPrivacyPerApp": "“기본 개인 정보 보호”에서 정의한 것과 개인 정보 보호 방식이 달라야 하는 앱을 추가합니다.",
+ "windows10NetworkBoundaryNetworkBoundary": "네트워크 경계는 엔터프라이즈 네트워크에 있는 컴퓨터의 클라우드에 호스트된 도메인 및 IP 주소 범위 같은 엔터프라이즈 리소스의 목록입니다. 네트워크 경계를 정의하여 이러한 위치에 있는 데이터를 보호하는 정책을 적용하세요.",
+ "windowsHealthMonitoring": "Windows 상태 모니터링 정책을 구성합니다.",
+ "windowsPhoneGeneralApplicationRestrictions": "Windows Phone은 사용자가 금지된 앱 목록에 지정된 앱이나 승인된 앱 목록에서 지정되지 않은 앱을 설치 또는 실행하지 못하도록 차단할 수 있습니다. 관리되는 앱은 모두 승인된 목록에 추가해야 합니다."
+ },
"Inputs": {
"accountDomain": "계정 도메인",
"accountDomainHint": "예: contosodomain",
@@ -9962,6 +9858,7 @@
"displayNameLabel": "이름",
"displayVersionHint": "앱 버전 입력",
"displayVersionLabel": "앱 버전",
+ "displayVersionLengthCheck": "디스플레이 버전의 길이는 최대 130자여야 합니다.",
"eBookCategoryNameLabel": "기본 이름",
"emailAccount": "메일 계정 이름",
"emailAccountHint": "예: 회사 메일",
@@ -10066,385 +9963,51 @@
"xmlFormatInvalid": "XML 정책 형식이 잘못되었습니다.",
"xmlTooLarge": "입력 크기는 1MB 미만이어야 합니다."
},
- "Tooltips": {
- "PolicySettings": {
- "TouchId1": {
- "android": "Android에서는 PIN 대신에 지문 식별 사용을 허용할 수 있습니다. 사용자가 자신의 작업 계정으로 이 앱에 액세스할 때 지문을 제공하라는 메시지가 표시됩니다.",
- "iOS": "iOS/iPadOS 디바이스에서 PIN 대신 지문 ID를 사용하도록 할 수 있습니다. 사용자가 회사 계정을 사용하여 이 앱에 액세스하려고 하면 지문을 제공하라는 메시지가 표시됩니다.",
- "mac": "Mac 디바이스에서 PIN 대신 지문 ID를 사용하도록 할 수 있습니다. 사용자가 회사 계정을 사용하여 이 앱에 액세스하려고 하면 지문을 제공하라는 메시지가 표시됩니다."
- },
- "appSharingFromLevel1": "다음 옵션 중 하나를 선택하여 이 앱이 데이터를 수신할 수 있는 앱을 지정하세요.",
- "appSharingFromLevel2": "{0}: 다른 정책 관리 앱에서만 조직 문서 또는 계정의 데이터 받기 허용",
- "appSharingFromLevel3": "{0}: 모든 앱에서 조직 문서 또는 계정의 데이터 받기 허용",
- "appSharingFromLevel4": "{0}: 모든 앱에서 조직 문서 또는 계정의 데이터 받기 허용 안 함",
- "appSharingFromLevel5": "{0}: 모든 앱에서의 데이터 전송을 허용하고 사용자 ID 없이 들어오는 모든 데이터를 조직 데이터로 처리합니다.",
- "appSharingToLevel1": "다음 옵션 중 하나를 선택하여 이 앱이 데이터를 전송할 수 있는 앱을 지정하세요.",
- "appSharingToLevel2": "{0}: 조직 데이터를 다른 정책 관리 앱으로만 보내기 허용",
- "appSharingToLevel3": "{0}: 조직 데이터를 모든 앱으로 보내기 허용",
- "appSharingToLevel4": "{0}: 조직 데이터를 모든 앱으로 보내기 허용 안 함",
- "appSharingToLevel5": "{0}: 등록된 디바이스의 다른 정책 관리 앱으로의 전송 및 다른 MDM 관리 앱으로의 파일 전송만 허용합니다.",
- "appSharingToLevel6": "{0}: 다른 정책 관리 앱으로의 전송만 허용하고 OS [여는 위치]/[공유] 대화 상자를 필터링하여 정책 관리 앱만 표시합니다.",
- "conditionalEncryption1": "등록된 디바이스에서 디바이스 암호화가 검색된 경우 내부 앱 스토리지에 대해 앱 암호화를 사용하지 않으려면 {0}을(를) 선택합니다.",
- "conditionalEncryption2": "참고: Intune은 Intune MDM을 통해서만 디바이스 등록을 검색할 수 있습니다. 외부 앱 스토리지는 관리되지 않는 애플리케이션에서 데이터에 액세스할 수 없도록 여전히 암호화됩니다.",
- "contactSyncMac": "사용하지 않도록 설정하면 앱이 기본 주소록에 연락처를 저장할 수 없습니다.",
- "contactsSync": "차단을 선택하여 정책 관리 앱이 기본 앱(연락처, 일정 및 위젯)에 데이터를 저장하지 못하도록 하거나 정책 관리 앱 내에서 추가 기능을 사용하지 못하도록 합니다. 허용을 선택하면 해당 기능이 정책 관리 앱 내에서 지원되어 사용되는 경우, 정책 관리 앱이 기본 앱에 데이터를 저장하거나 추가 기능을 사용할 수 있습니다.
앱은 앱 구성 정책을 통해 추가 구성 기능을 제공할 수 있습니다. 자세한 내용은 앱 설명서를 참조하세요.",
- "encryptionAndroid1": "Intune 모바일 애플리케이션 관리 정책과 연결된 앱의 경우 Microsoft에서 암호화를 제공합니다. 데이터는 모바일 애플리케이션 관리 정책의 설정에 따라 파일 I/O 작업 동안 동기적으로 암호화됩니다. Android의 관리되는 앱은 플랫폼 암호화 라이브러리를 사용하여 CBC 모드에서 AES-128 암호화를 사용합니다. 이 암호화 방법은 FIPS 140-2를 준수하지 않습니다. SHA-256 암호화는 SigAlg 매개 변수를 사용하는 명시적 명령으로 지원되며 디바이스 4.2 이상에서만 작동합니다. 디바이스 스토리지의 콘텐츠는 항상 암호화됩니다.",
- "encryptionAndroid2": "앱 정책에서 암호화를 요구하면 최종 사용자는 디바이스에 액세스하기 위해 PIN을 설정하고 사용해야 합니다. 디바이스 액세스를 위해 설정된 PIN이 없으면 앱이 시작되지 않고 최종 사용자에게 \"이 애플리케이션에 액세스하려면 회사에서 먼저 디바이스 PIN을 사용하도록 설정해야 합니다.\" 메시지가 표시됩니다.",
- "encryptionMac1": "Intune 모바일 애플리케이션 관리 정책과 연결된 앱의 경우 Microsoft에서 암호화를 제공합니다. 데이터는 모바일 애플리케이션 관리 정책의 설정에 따라 파일 I/O 작업 동안 동기적으로 암호화됩니다. Mac의 관리되는 앱은 플랫폼 암호화 라이브러리를 사용하여 CBC 모드에서 AES-128 암호화를 사용합니다. 이 암호화 방법은 FIPS 140-2를 준수하지 않습니다. SHA-256 암호화는 SigAlg 매개 변수를 사용하는 명시적 명령으로 지원되며 디바이스 4.2 이상에서만 작동합니다. 디바이스 스토리지의 콘텐츠는 항상 암호화됩니다.",
- "faceId1": "해당하는 경우 PIN 대신 얼굴 인식 사용을 허용할 수 있습니다. 사용자가 회사 계정으로 이 앱에 액세스하면 얼굴 인식을 제공하라는 메시지가 표시됩니다.",
- "faceId2": "앱 액세스를 위해 PIN 대신 얼굴 인식을 허용하려면 예를 선택합니다.",
- "managementLevelsAndroid1": "이 정책이 Android 디바이스 관리자 디바이스, Android Enterprise 디바이스 또는 관리형 디바이스에 적용되는지 여부를 지정하려면 이 옵션을 사용합니다.",
- "managementLevelsAndroid2": "{0}: 관리되지 않는 디바이스는 Intune MDM 관리가 검색되지 않은 디바이스입니다. 여기에는 타사 MDM 공급업체가 포함됩니다.",
- "managementLevelsAndroid3": "{0}: Android 디바이스 관리 API를 사용하는 Intune 관리 디바이스입니다.",
- "managementLevelsAndroid4": "{0}: Android Enterprise 회사 프로필 또는 Android Enterprise 전체 디바이스 관리를 사용하는 Intune 관리 디바이스입니다.",
- "managementLevelsIos1": "이 정책이 MDM 관리 디바이스 또는 관리되지 않는 디바이스에 적용되는지를 지정하려면 이 옵션을 사용합니다.",
- "managementLevelsIos2": "{0}: 관리되지 않는 디바이스는 Intune MDM 관리가 검색되지 않은 디바이스입니다. 여기에는 타사 MDM 공급업체가 포함됩니다.",
- "managementLevelsIos3": "{0}: 관리 디바이스는 Intune MDM에서 관리됩니다.",
- "minAppVersion": "사용자가 앱에 대한 보안 액세스 권한을 받아야 하는, 필요한 최소 앱 버전 번호를 정의합니다.",
- "minAppVersionWarning": "사용자가 앱에 대한 보안 액세스 권한을 받아야 하는, 권장되는 최소 앱 버전 번호를 정의합니다.",
- "minOsVersion": "사용자가 앱에 대한 보안 액세스 권한을 받아야 하는, 필요한 최소 OS 버전 번호를 정의합니다.",
- "minOsVersionWarning": "사용자가 앱에 대한 보안 액세스 권한을 받아야 하는, 권장되는 최소 OS 버전 번호를 정의합니다.",
- "minPatchVersion": "사용자가 앱에 안전하게 액세스할 수 있는 최소 필수 Android 보안 패치 레벨을 정의합니다.",
- "minPatchVersionWarning": "사용자가 앱에 안전하게 액세스할 수 있는 최소 권장 Android 보안 패치 레벨을 정의합니다.",
- "minSdkVersion": "사용자가 앱에 대한 보안 액세스 권한을 받아야 하는, 필요한 최소 Intune Application Protection Policy SDK 버전을 정의합니다.",
- "requireAppPinDefault": "등록된 디바이스에서 디바이스 잠금이 검색되면 예를 선택하여 앱 PIN을 사용하지 않도록 설정하세요.
",
- "targetAllApps1": "모든 관리 상태의 디바이스에 있는 앱에 대한 정책을 대상으로 하려면 이 옵션을 사용합니다.",
- "targetAllApps2": "정책 충돌을 해결하는 동안 사용자에게 특정 관리 상태를 대상으로 하는 정책이 있는 경우 이 설정은 대체됩니다.",
- "touchId2": "앱 액세스를 위해 PIN 대신 지문 ID를 요구하려면 {0}을(를) 선택합니다."
- },
- "Tap": {
- "pinResetAfterNumberOfDays": "사용자가 PIN을 재설정해야 하기 전에 지나야 하는 일수를 지정합니다.",
- "previousPinBlockCount": "이 설정은 Intune에서 유지할 이전 PIN 수를 지정합니다. 새 Pin은 Intune에서 유지 관리하는 PIN과 달라야 합니다."
+ "WindowsFeatureUpdate": {
+ "EndOFSupportStatus": {
+ "notSupported": "지원되지 않음",
+ "supportEnding": "지원 종료",
+ "supported": "지원함"
+ }
},
- "WipPolicySettings": {
- "25": "",
- "allowWindowsSearch": "이렇게 하면 Windows Search에서 암호화된 데이터를 계속 검색할 수 있습니다.",
- "authoritativeIpRanges": "Windows의 IP 범위 자동 검색을 재정의하려면 이 설정을 사용하도록 설정합니다.",
- "authoritativeProxyServers": "Windows의 프록시 서버 자동 검색을 재정의하려면 이 설정을 사용합니다.",
- "checkInput": "입력의 유효성 확인",
- "dataRecoveryCert": "복구 인증서는 암호화 키가 손실되었거나 손상된 경우 암호화된 파일을 복구하는 데 사용할 수 있는 특별한 EFS(파일 시스템 암호화) 인증서입니다. 복구 인증서를 만들고 여기서 지정해야 합니다. 자세한 내용은 여기를 참조하세요.",
- "enterpriseCloudResources": "회사용으로 처리하고 Windows Information Protection 정책으로 보호할 클라우드 리소스를 지정합니다. '|' 문자로 개별 항목을 구분하여 리소스를 여러 개 지정할 수 있습니다.
회사에 프록시가 구성되어 있는 경우 지정한 클라우드 리소스에 대한 트래픽을 어떤 프록시를 통해 라우트할지 지정할 수 있습니다.
URL[,Proxy]|URL[,Proxy]
프록시를 사용하지 않는 경우: contoso.sharepoint.com|contoso.visualstudio.com
프록시를 사용하는 경우: contoso.sharepoint.com,proxy.contoso.com|contoso.visualstudio.com,proxy.contoso.com
",
- "enterpriseIPv4Ranges": "회사 네트워크를 구성하는 IPv4 범위를 지정합니다. 이러한 범위는 회사 네트워크 경계를 정의하기 위해 지정하는 엔터프라이즈 네트워크 도메인 이름과 함께 사용됩니다.
이 설정을 사용하려면 Windows Information Protection을 사용하도록 설정해야 합니다.
쉼표로 개별 항목을 구분하여 범위를 여러 개 지정할 수 있습니다.
예: 3.4.0.1-3.4.255.255,192.168.1.1-192.168.255.255
",
- "enterpriseIPv6Ranges": "회사 네트워크를 구성하는 IPv6 범위를 지정합니다. 이러한 범위는 회사 네트워크 경계를 정의하기 위해 지정하는 엔터프라이즈 네트워크 도메인 이름과 함께 사용됩니다.
쉼표로 개별 항목을 구분하여 범위를 여러 개 지정할 수 있습니다.
예: 2001:4898:dc05::-2001:4898:dc05:ffff:ffff:ffff:ffff:ffff,2a01:110::-2a01:110:7fff:ffff:ffff:ffff:ffff:ffff
",
- "enterpriseInternalProxyServers": "회사에 프록시가 구성되어 있는 경우 엔터프라이즈 클라우드 리소스 설정에 지정된 클라우드 리소스에 대한 트래픽을 어떤 프록시를 통해 라우트할지 지정할 수 있습니다.
세미콜론으로 개별 항목을 구분하여 값을 여러 개 지정할 수 있습니다.
예: contoso.internalproxy1.com;contoso.internalproxy2.com
",
- "enterpriseNetworkDomainNames": "회사 네트워크를 구성하는 DNS 이름을 지정합니다. 이러한 이름은 회사 네트워크 경계를 정의하기 위해 지정하는 IP 범위와 함께 사용됩니다. 쉼표로 개별 항목을 구분하여 값을 여러 개 지정할 수 있습니다.
이 설정을 사용하려면 Windows Information Protection을 사용하도록 설정해야 합니다.
예: corp.contoso.com,region.contoso.com
",
- "enterpriseProtectedDomainNames": "기업 네트워크를 형성하는 DNS 이름을 지정합니다. 이 이름은 기업 네트워크 경계를 정의하는 IP 범위와 함께 사용됩니다. '|' 문자로 개별 항목을 구분하여 여러 개의 값을 지정할 수 있습니다.
이 설정을 사용하려면 Windows Information Protection을 활성화해야 합니다.
예: corp.contoso.com|region.contoso.com
",
- "enterpriseProxyServers": "회사 네트워크에 외부 대상 프록시가 있는 경우 여기에서 지정합니다. 프록시 서버 주소를 지정하는 경우 트래픽을 허용하고 Windows Information Protection을 통해 보호할 포트도 지정해야 합니다.
참고: 이 목록은 [엔터프라이즈 내부 프록시 서버] 목록에 있는 서버를 포함해서는 안 됩니다. 세미콜론으로 개별 항목을 구분하여 값을 여러 개 지정할 수 있습니다.
예: proxy.contoso.com:80;proxy2.contoso.com:80
",
- "maxInactivityTime1": "디바이스가 유휴 상태로 전환된 후 디바이스의 PIN 또는 암호가 잠기게 되는 최대 허용 시간(분)을 지정합니다. 사용자는 설정 앱에 지정된 최대 시간보다 적은 기존 시간 제한 값을 선택할 수 있습니다. Lumia 950 및 950XL의 경우, 이 정책으로 설정된 값에 상관없이 최대 시간 제한 값이 5분입니다.",
- "maxInactivityTime2": "0(기본값) - 시간 제한이 정의되지 않았습니다. 기본값 '0'은 '시간 제한이 정의되지 않음'으로 해석됩니다.",
- "maxPasswordAttempts1": "이 정책은 모바일 디바이스 및 데스크톱에서 다양하게 동작합니다.",
- "maxPasswordAttempts2": "모바일 디바이스에서는 사용자가 이 정책에 의해 설정된 값에 도달하면 디바이스가 초기화됩니다.",
- "maxPasswordAttempts3": "데스크톱에서는 사용자가 이 정책에 의해 설정된 값에 도달하면 초기화되지 않습니다. 대신 데스크톱은 BitLocker 복구 모드로 전환되어 데이터가 액세스할 수는 없지만 복구는 가능한 상태가 됩니다. BitLocker를 사용하도록 설정하지 않은 경우 정책을 적용할 수 없습니다.",
- "maxPasswordAttempts4": "사용자는 실패한 시도 횟수 제한에 도달하기 전에 잠금 화면으로 전환되고 그 이상 실패하면 컴퓨터가 잠기게 된다는 경고를 받습니다. 사용자가 제한에 도달하면 디바이스가 자동으로 다시 부팅되고 BitLocker 복구 페이지가 표시됩니다. 이 페이지에서는 사용자에게 BitLocker 복구 키를 입력하라는 메시지를 표시합니다.",
- "maxPasswordAttempts5": "0(기본값) - PIN 또는 암호를 잘못 입력하면 디바이스가 초기화되지 않습니다.",
- "maxPasswordAttempts6": "모든 정책 값이 0인 경우 가장 안전한 값은 0입니다. 그렇지 않은 경우 최소 정책 값이 가장 안전한 값입니다.",
- "mdmDiscoveryUrl": "MDM에 등록하는 사용자가 사용할 MDM 등록 엔드포인트에 대한 URL을 지정합니다. 기본적으로 이 URL은 Intune에 대해 지정됩니다.",
- "minimumPinLength1": "PIN에 대해 필요한 최소 문자 수를 설정하는 정수 값입니다. 기본값은 4입니다. 이 정책 설정에 대해 구성할 수 있는 가장 적은 수는 4입니다. 구성할 수 있는 가장 큰 수는 최대 PIN 길이 정책 설정에 구성된 수 또는 127(둘 중 적은 수)보다 작아야 합니다.",
- "minimumPinLength2": "이 정책 설정을 구성하는 경우 PIN 길이는 이 숫자보다 크거나 같아야 합니다. 이 정책 설정을 사용하지 않거나 구성하지 않는 경우 PIN 길이는 4보다 크기가 같아야 합니다.",
- "name": "이 네트워크 경계의 이름",
- "neutralResources": "회사에 인증 리디렉션 엔드포인트가 있으면 여기에 지정합니다. 여기에 지정된 위치는 리디렉션 이전의 연결 컨텍스트에 따라 개인용 또는 회사용으로 간주됩니다.
쉼표로 개별 항목을 구분하여 값을 여러 개 지정할 수 있습니다.
예: sts.contoso.com,sts.contoso2.com
",
- "passportForWork1": "Windows에 로그인하는 방법으로 비즈니스용 Windows Hello를 설정하는 값입니다.",
- "passportForWork2": "기본값은 true입니다. 이 정책을 false로 설정하는 경우 사용자는 프로비전이 필요한 Azure Active Directory 연결 모바일 휴대폰을 제외하고 비즈니스용 Windows Hello를 프로비전할 수 없습니다.",
- "pinExpiration": "이 정책 설정에 대해 구성할 수 있는 가장 큰 수는 730입니다. 이 정책 설정에 대해 구성할 수 있는 가장 작은 수는 0입니다. 이 정책을 0으로 설정하면 사용자의 PIN이 만료되지 않습니다.",
- "pinHistory1": "이 정책 설정에 대해 구성할 수 있는 가장 큰 수는 50입니다. 이 정책 설정에 대해 구성할 수 있는 가장 작은 수는 0입니다. 이 정책을 0으로 설정하면 이전 PIN의 스토리지가 필요하지 않습니다.",
- "pinHistory2": "사용자의 현재 PIN은 사용자 계정과 연결된 PIN 집합에 포함됩니다. PIN 기록이 PIN 초기화를 통해 유지되지 않습니다.",
- "protectUnderLock": "디바이스가 잠긴 상태인 동안 앱 콘텐츠를 보호합니다.",
- "protectionModeBlock": "차단: 엔터프라이즈 데이터가 보호된 앱에서 나갈 수 없도록 차단합니다.
",
- "protectionModeOff": "재정의 허용: 사용자가 보호된 앱에서 보호되지 않은 앱으로 데이터를 재배치하려고 할 때 메시지가 표시됩니다. 이 프롬프트를 재정의하도록 선택하면 작업이 기록됩니다.
",
- "protectionModeOverride": "재정의 허용: 사용자가 보호된 앱에서 보호되지 않은 앱으로 데이터를 재배치하려고 할 때 메시지가 표시됩니다. 이 프롬프트를 재정의하도록 선택하면 작업이 기록됩니다.
",
- "protectionModeSilent": "자동: 사용자가 보호된 앱에서 데이터를 재배치할 수 있습니다. 이러한 작업은 기록됩니다.
",
- "required": "필요한 공간",
- "revokeOnMdmHandoff": "Windows 10, 버전 1703에서 추가되었습니다. 이 정책은 디바이스가 MAM에서 MDM으로 업그레이드될 때 WIP 키를 취소할지 여부를 제어합니다. “끄기”로 설정하면 키가 취소되지 않으며 사용자는 업그레이드 후에도 보호된 파일에 계속 액세스할 수 있습니다. MDM 서비스가 MAM 서비스와 동일한 WIP EnterpriseID로 구성된 경우에 권장됩니다.",
- "revokeOnUnenroll": "그러면 디바이스가 이 정책에서 등록 취소될 때 암호화 키가 해지됩니다.",
- "rmsTemplateForEdp": "RMS 암호화에 대해 사용할 TemplateID GUID입니다. Azure RMS 템플릿을 통해 IT 관리자는 RMS로 보호된 파일에 액세스할 수 있는 사람과 액세스 가능한 기간에 대한 세부 정보를 구성할 수 있습니다.",
- "showWipIcon": "회사 컨텍스트에서 작업할 때 아이콘을 겹쳐서 표시하여 사용자에게 알립니다.",
- "useRmsForWip": "WIP에 대해 Azure RMS 암호화를 허용할지를 지정합니다."
+ "SecurityTemplate": {
+ "aSR": "공격 표면 감소",
+ "accountProtection": "계정 보호",
+ "allDevices": "모든 디바이스",
+ "antivirus": "바이러스 백신",
+ "antivirusReporting": "바이러스 백신 보고(미리 보기)",
+ "conditionalAccess": "조건부 액세스",
+ "deviceCompliance": "디바이스 준수",
+ "diskEncryption": "디스크 암호화",
+ "eDR": "엔드포인트 검색 및 응답",
+ "firewall": "방화벽",
+ "helpSupport": "도움말 및 지원",
+ "setup": "설치",
+ "wdapt": "엔드포인트용 Microsoft Defender"
+ },
+ "Win32ReturnCodes": {
+ "CodeTypes": {
+ "failed": "실패",
+ "hardReboot": "하드 재부팅",
+ "retry": "다시 시도",
+ "softReboot": "소프트 재부팅",
+ "success": "성공"
},
- "requireAppPin": "등록된 디바이스에서 디바이스 잠금이 검색되면 예를 선택하여 앱 PIN을 사용하지 않도록 설정하세요.
참고: Intune은 iOS/iPadOS에서 타사 EMM 솔루션을 사용하여 디바이스 등록을 검색할 수 없습니다.
"
- },
- "AppInfoBalloonText": {
- "Certificate": {
- "customSubjectName": "CN={{UserName}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US\r\nor\r\nCN={{AAD_Device_ID}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US",
- "keySize": "키에 포함된 비트 수를 선택합니다.",
- "keyUsage": "인증서의 공개 키를 교환하는 데 필요한 암호화 작업을 지정합니다.",
- "renewalThreshold": "디바이스가 인증서의 갱신을 요청하기 전에 허용되는 남은 인증서 수명의 백분율(1~99%)을 입력합니다. Intune의 권장 값은 20%입니다(1~99%).",
- "rootCert": "이전에 구성 및 할당된 루트 CA 인증서 프로필을 선택합니다. CA 인증서는 이 프로필(현재 구성 중인 프로필)에 대해 인증서를 발급 중인 CA의 루트 인증서와 일치해야 합니다.",
- "scepServerUrl": "SCEP를 통해 인증서를 발급하는 NDES 서버의 URL을 입력합니다(HTTPS여야 함). 예: https://contoso.com/certsrv/mscep/mscep.dll",
- "scepServerUrls": "SCEP를 통해 인증서를 발급하는 NDES 서버의 URL을 하나 이상 추가합니다(HTTPS여야 함). 예: https://contoso.com/certsrv/mscep/mscep.dll",
- "subjectAlternativeName": "주체 대체 이름",
- "subjectNameFormat": "주체 이름 형식",
- "validityPeriod": "인증서가 만료되기 전까지 남은 시간입니다. 인증서 템플릿에 표시된 유효 기간보다 낮거나 같은 값을 입력합니다. 기본값은 1년으로 설정됩니다."
- },
- "appInstallContext": "이 앱과 연결할 설치 컨텍스트를 지정합니다. 이중 모드 앱의 경우 이 앱에 대해 원하는 컨텍스트를 선택합니다. 다른 모든 앱의 경우 이 옵션은 패키지에 따라 미리 선택되어 있으며 수정할 수 없습니다.",
- "autoUpdateMode": "앱의 업데이트 우선 순위를 구성합니다. 앱을 업데이트하기 전에 장치가 Wi-Fi에 연결되고 충전 중이며 활발하게 사용되지 않도록 하려면 기본값을 선택합니다. 충전 상태, Wi-Fi 기능 또는 장치에서의 최종 사용자 활동에 관계없이 개발자가 앱을 게시하는 즉시 앱을 업데이트하려면 높은 우선 순위를 선택합니다. 높은 우선 순위는 DO 장치에만 적용됩니다.",
- "configurationSettingsFormat": "구성 설정 형식 텍스트",
- "ignoreVersionDetection": "Google Chrome처럼 앱 개발자가 자동으로 업데이트하는 앱의 경우 “예”로 설정합니다.",
- "ignoreVersionDetectionMacOSLobApp": "앱 개발자가 자동으로 업데이트하는 앱의 경우 또는 설치 전에 앱 bundleID만 확인하려는 경우 \"예\"를 선택합니다. 설치 전에 앱 bundleID 및 버전 번호를 확인하려면 \"아니요\"를 선택합니다.",
- "installAsManagedMacOSLobApp": "이 설정은 macOS 11 이상에만 적용됩니다. 앱이 설치되지만 macOS 10.15 이하에서는 관리되지 않습니다.",
- "installContextDropdown": "적절한 설치 컨텍스트를 선택하세요. 사용자 컨텍스트는 대상 사용자에 대해서만 앱을 설치하는 반면 디바이스 컨텍스트는 디바이스의 모든 사용자에 대해 앱을 설치합니다.",
- "ldapUrl": "클라이언트가 전자 메일 받는 사람에 대한 공개 암호화 키를 가져올 수 있는 LDAP 호스트 이름입니다. 키를 사용할 수 있게 되면 전자 메일이 암호화됩니다. 지원되는 형식: - ldap.example.com
\r\n- ldap.example.com:123
\r\n- ldap://ldap.example.com
- ldap://ldap.example.com:123
- ldaps://ldap.example.com
\r\n- ldaps://ldap.example.com:123
",
- "permissionsSettings": "연결된 앱에 대한 런타임 권한을 선택합니다.",
- "policyAssociatedApp": "이 정책과 연결할 앱을 선택합니다.",
- "policyConfigurationSettings": "이 정책에 대한 구성 설정을 정의하는 데 사용할 방법을 선택합니다.",
- "policyDescription": "필요에 따라 이 구성 정책에 대한 설명을 입력합니다.",
- "policyEnrollmentType": "이 설정을 디바이스 관리 또는 Intune SDK로 만든 앱을 통해 관리할지를 선택하세요.",
- "policyName": "이 구성 정책의 이름을 입력합니다.",
- "policyPlatform": "이 앱 구성 정책을 적용할 플랫폼을 선택합니다.",
- "policyProfileType": "이 앱 구성 프로필을 적용할 디바이스 프로필 유형을 선택합니다.",
- "policySMime": "Outlook에 대한 S/MIME 서명 및 암호화 설정을 구성합니다.",
- "sMimeDeployCertsFromIntune": "S/MIME 인증서가 Outlook에서 사용하기 위해 Intune에서 배달되는지 여부를 지정합니다.\r\nIntune은 회사 포털을 통해 자동으로 서명 및 암호화 인증서를 사용자에게 배포합니다.",
- "sMimeEnable": "메일을 작성할 때 S/MIME 컨트롤 사용 여부를 지정합니다.",
- "sMimeEnableAllowChange": "사용자가 [S/MIME 사용] 설정을 변경할 수 있도록 허용할지를 지정합니다.",
- "sMimeEncryptAllEmails": "메일을 모두 암호화해야 하는지 여부를 지정합니다.\r\n암호화 기능은 의도된 수신자만 데이터를 읽을 수 있도록 데이터를 암호화 텍스트로 변환합니다.",
- "sMimeEncryptAllEmailsAllowChange": "사용자가 [모든 메일 암호화] 설정을 변경할 수 있도록 허용할지를 지정합니다.",
- "sMimeEncryptionCertProfile": "메일 암호화에 사용할 인증서 프로필을 지정하세요.",
- "sMimeSignAllEmails": "모든 메일에 서명해야 하는지 여부를 지정합니다.\r\n디지털 서명은 메일의 신뢰성을 확인하고 전송 중에 내용이 훼손되지 않았는지 확인합니다.",
- "sMimeSignAllEmailsAllowChange": "사용자가 [모든 메일 서명] 설정을 변경할 수 있도록 허용할지를 지정합니다.",
- "sMimeSigningCertProfile": "메일 서명에 사용할 인증서 프로필을 지정하세요.",
- "sMimeUserNotificationType": "Outlook용 S/MIME 인증서를 검색하려면 회사 포털을 열어야 함을 사용자에게 알리는 방법입니다."
- },
- "WindowsQualityUpdateDaysUntilForcedReboot": {
- "oneDay": "1일",
- "twoDays": "2일",
- "zeroDays": "0일"
- },
- "Autopilot": {
- "AssignResourceAccount": {
- "createNewCommandMenu": "새로 만들기",
- "createNewResourceAccountInfo": "\r\n등록 중 새 리소스 계정을 만듭니다. 리소스 계정은 리소스 계정 테이블에 바로 추가되지만, 디바이스가 등록되고 Surface Hub 구독이 확인될 때까지 활성화되지 않습니다. 리소스 계정에 대한 자세한 정보
\r\n ",
- "createNewResourceTitle": "새 리소스 계정 만들기",
- "deviceNameInvalid": "디바이스 이름 형식이 잘못되었습니다.",
- "deviceNameRequired": "디바이스 이름이 필요합니다.",
- "editResourceAccountLabel": "편집",
- "selectExistingCommandMenu": "기존 선택"
- },
- "Device": {
- "ComputerName": {
- "validFormat": "이름은 15자 이하여야 하며, 문자(a-z, A-Z), 숫자(0-9) 및 하이픈을 포함할 수 있습니다. 이름에 숫자만 사용해서는 안 됩니다. 이름은 공백을 포함할 수 없습니다."
- },
- "Header": {
- "addressableUserName": "친숙한 이름",
- "azureADDevice": "연결된 Azure AD 디바이스",
- "batch": "그룹 태그",
- "dateAssigned": "할당된 날짜",
- "deviceDisplayName": "디바이스 이름",
- "deviceName": "디바이스 이름",
- "deviceUseType": "디바이스 사용 유형",
- "enrollmentState": "등록 상태",
- "intuneDevice": "연결된 Intune 디바이스",
- "lastContacted": "마지막 연결",
- "make": "제조업체",
- "model": "모델",
- "profile": "할당된 프로필",
- "profileStatus": "프로필 상태",
- "purchaseOrderId": "구매 주문",
- "resourceAccount": "리소스 계정",
- "serialNumber": "일련 번호",
- "userPrincipalName": "사용자"
- }
- },
- "DeviceUseType": {
- "meetingAndPresentation": "모임 및 프레젠테이션",
- "teamCollaboration": "팀 협업"
- },
- "Devices": {
- "featureDescription": "Windows Autopilot을 사용하면 사용자의 OOBE(첫 실행 경험)를 사용자 지정할 수 있습니다.",
- "importErrorStatus": "일부 디바이스를 가져오지 못했습니다. 자세한 내용을 보려면 여기를 클릭하세요.",
- "importPendingStatus": "가져오기가 진행 중입니다. 경과된 시간: {0}분. 이 프로세스에는 최대 {1}분이 소요될 수 있습니다."
- },
- "DirectoryService": {
- "activeDirectoryAD": "하이브리드 Azure AD 조인됨",
- "activeDirectoryADLabel": "하이브리드 Azure AD(Autopilot 사용)",
- "azureAD": "Azure AD 조인됨",
- "unknownType": "알 수 없는 유형"
- },
- "Filter": {
- "enrollmentState": "상태",
- "profile": "프로필 상태"
- },
- "OOBE": {
- "AddressableUserName": {
- "validateEmpty": "사용자 이름은 비워 둘 수 없습니다."
- },
- "ApplyComputerNameTemplate": {
- "infoBalloon": "명명 템플릿을 만들어 등록하는 동안 디바이스에 이름을 추가합니다.",
- "label": "디바이스 이름 템플릿 적용"
- },
- "ApplyComputerNameTemplateDisabled": {
- "label": "하이브리드 Azure AD 조인된 형식의 Autopilot 배포 프로필의 경우 디바이스 이름이 도메인 가입 구성에 지정된 설정을 사용하여 지정됩니다."
- },
- "ComputerNameTemplate": {
- "emptyValue": "MyCompany-%RAND:4%",
- "label": "이름 입력",
- "noDisallowedChars": "이름에는 영숫자 문자, 하이픈, %SERIAL% 또는 %RAND:x%만 사용해야 합니다.",
- "serialLength": "%SERIAL%에 7개가 넘는 문자를 사용할 수 없습니다.",
- "validateLessThan15Chars": "이름은 15자 이하여야 합니다.",
- "validateNoSpaces": "컴퓨터 이름에는 공백이 포함될 수 없습니다.",
- "validateNotAllNumbers": "이름에는 문자 및/또는 하이픈도 사용해야 합니다.",
- "validateNotEmpty": "이름은 비워 둘 수 없습니다.",
- "validateOnlyOneMacro": "이름에는 %SERIAL% 또는 %RAND:x% 중 하나만 사용해야 합니다."
- },
- "ConfigureComputerNameTemplate": {
- "description": "디바이스의 고유 이름을 만듭니다. 이름은 15자 이하여야 하며, 문자(a-z, A-Z), 숫자(0-9) 및 하이픈을 포함할 수 있습니다. 이름에 숫자만 사용해서는 안 됩니다. 이름에 공백을 사용할 수 없습니다. 하드웨어 특정 일련 번호를 추가하려면 %SERIAL% 매크로를 사용합니다. 또는 %RAND:x% 매크로를 사용하여 임의 숫자 문자열을 추가합니다. 여기서 x는 추가할 자릿수와 같습니다."
- },
- "EnableWhiteGlove": {
- "infoBalloon": "디바이스를 등록하고 모든 시스템 컨텍스트 앱 및 설정을 프로비전하기 위해 Windows 키를 5번 눌러 사용자 인증 없이 OOBE를 실행하도록 설정합니다. 사용자가 로그인하면 사용자 컨텍스트 앱 및 설정이 제공됩니다.",
- "label": "사전 프로비전된 배포 허용"
- },
- "HybridAzureADSkipConnectivityCheck": {
- "infoBalloon": "Autopilot 하이브리드 Azure AD 조인 흐름은 OOBE 중에 도메인 컨트롤러 연결을 설정하지 않는 경우에도 계속 진행됩니다.",
- "label": "AD 연결 확인 건너뛰기(미리 보기)"
- },
- "accountType": "사용자 계정 유형",
- "accountTypeInfo": "사용자가 디바이스에서 관리자인지 아니면 표준 사용자인지를 지정합니다. 이 설정은 전역 관리자 또는 회사 관리자 계정에는 적용되지 않습니다. 이러한 계정은 Azure AD에서 모든 관리 기능에 액세스할 수 있으므로 표준 사용자일 수 없습니다.",
- "configOOBEInfo": "\r\nAutopilot 디바이스의 첫 실행 경험 구성\r\n
",
- "configureDevice": "배포 모드",
- "configureDeviceHintForSurfaceHub2": "Autopilot은 Surface Hub 2의 자체 배포 모드만 지원합니다. 이 모드는 등록된 디바이스와 사용자를 연결하지 않으므로 사용자 자격 증명이 필요하지 않습니다.",
- "configureDeviceHintForWindowsPC": "\r\n 배포 모드는 디바이스를 프로비전하기 위해 사용자가 자격 증명을 제공해야 하는지를 제어합니다.\r\n
\r\n \r\n - \r\n 사용자 구동: 디바이스가 디바이스를 등록하는 사용자와 연결되고 디바이스를 프로비전하는 데 사용자 자격 증명이 필요합니다.\r\n
\r\n - \r\n 자체 배포(미리 보기): 디바이스가 디바이스를 등록하는 사용자와 연결되지 않고 디바이스를 프로비전하는 데 사용자 자격 증명이 필요하지 않습니다.\r\n
\r\n
",
- "createSurfaceHub2Info": "Surface Hub 2 디바이스의 Autopilot 등록 설정을 구성합니다. 기본적으로 Autopilot을 사용하면 OOBE 동안 사용자 인증을 건너뛸 수 있습니다. Surface Hub 2용 Windows Autopilot에 대해 자세히 알아보세요.",
- "createWindowsPCInfo": "\r\n\r\n자체 배포 모드에서는 Autopilot 디바이스에 대해 다음 옵션이 자동으로 사용하도록 설정됩니다.\r\n
\r\n\r\n - \r\n 회사 또는 집 사용 선택 건너뛰기\r\n
\r\n - \r\n OEM 등록 및 OneDrive 구성 건너뛰기\r\n
\r\n - \r\n OOBE에서 사용자 인증 건너뛰기\r\n
\r\n
",
- "endUserDevice": "사용자 구동",
- "hideEscapeLink": "계정 변경 옵션 숨기기",
- "hideEscapeLinkInfo": "회사 로그인 페이지 및 도메인 오류 페이지에서 초기 디바이스 설정 중에 계정을 변경하는 옵션과 다른 계정으로 다시 시작하는 옵션이 각각 나타납니다. 이러한 옵션을 숨기려면 Azure Active Directory에서 회사 브랜딩을 구성해야 합니다(Windows 10, 1809 이상, 또는 Windows 11 필요).",
- "info": "AutoPilot 프로필 설정은 사용자가 Windows를 처음으로 시작할 때 표시되는 첫 실행 경험을 정의합니다. ",
- "language": "언어(지역)",
- "languageInfo": "사용할 언어 및 지역을 지정하세요.",
- "licenseAgreement": "Microsoft 소프트웨어 사용 조건",
- "licenseAgreementInfo": "사용자에게 EULA를 표시할지 여부를 지정합니다.",
- "plugAndForgetDevice": "자체 배포(미리 보기)",
- "plugAndForgetGA": "자체 배포",
- "privacySettingWarning": "Windows 10, 버전 1903 이상, 또는 Windows 11을 실행하는 디바이스의 진단 데이터 수집에 대한 기본값이 변경되었습니다. ",
- "privacySettings": "개인 정보 설정",
- "privacySettingsInfo": "사용자에게 개인 정보 설정을 표시할지 여부를 지정합니다.",
- "showCortanaConfigurationPage": "Cortana 구성",
- "showCortanaConfigurationPageInfo": "[표시]는 시작하는 동안 Cortana 구성 소개를 활성화합니다.",
- "skipEULAWarning": "사용 조건 숨기기에 대한 중요 정보",
- "skipKeyboardSelection": "자동으로 키보드 구성",
- "skipKeyboardSelectionInfo": "true이면 [언어]가 설정된 경우 키보드 선택 페이지를 건너뜁니다.",
- "subtitle": "AutoPilot 프로필",
- "title": "OOBE(첫 실행 경험)",
- "useOSDefaultLanguage": "운영 체제 기본값",
- "userSelect": "사용자 선택"
- },
- "Sync": {
- "lastRequestedLabel": "마지막 동기화 요청",
- "lastSuccessfulLabel": "마지막으로 성공한 동기화",
- "syncInProgress": "동기화 진행 중입니다. 잠시 후 다시 확인하세요.",
- "syncInitiated": "AutoPilot 설정 동기화가 시작되었습니다.",
- "syncSettingsTitle": "AutoPilot 설정 동기화"
- },
- "Title": {
- "devices": "Windows AutoPilot 디바이스"
- },
- "Tooltips": {
- "addressableUserName": "디바이스를 설치하는 동안 표시되는 인사말 이름입니다.",
- "azureADDevice": "연결된 디바이스에 대한 디바이스 세부 정보로 이동합니다. 해당 없음은 연결된 디바이스가 없음을 의미합니다.",
- "batch": "디바이스 그룹을 식별하는 데 사용할 수 있는 문자열 특성입니다. Intune의 그룹 태그 필드는 Azure AD 디바이스에서 OrderID 특성에 매핑됩니다.",
- "dateAssigned": "디바이스에 프로필이 할당되었을 때의 타임스탬프입니다.",
- "deviceDisplayName": "디바이스에 고유한 이름을 구성합니다. 이 이름은 하이브리드 Azure AD 조인된 배포에서 무시됩니다. 디바이스 이름은 하이브리드 Azure AD 디바이스에 대한 도메인 가입 프로필에서 계속 제공됩니다.",
- "deviceName": "누군가가 디바이스를 검색하고 연결하려고 할 때 표시되는 이름입니다.",
- "deviceUseType": " 선택에 따라 디바이스가 설정됩니다. 나중에 언제든지 설정에서 변경할 수 있습니다.\r\n \r\n - 모임과 프레젠테이션의 경우 Windows Hello가 켜지지 않으며 각 세션 후 데이터가 제거됩니다.\r\n
\r\n - 팀 협업의 경우 Windows Hello가 켜지며 빠른 로그인을 위해 프로필이 저장됩니다.
\r\n
",
- "enrollmentState": "디바이스가 등록되었는지를 지정합니다.",
- "intuneDevice": "연결된 디바이스에 대한 디바이스 세부 정보로 이동합니다. 해당 없음은 연결된 디바이스가 없음을 의미합니다.",
- "lastContacted": "디바이스에 마지막으로 연결한 때의 타임스탬프입니다.",
- "make": "선택한 디바이스의 제조업체입니다.",
- "model": "선택한 디바이스의 모델",
- "profile": "디바이스에 할당된 프로필의 이름입니다.",
- "profileStatus": "프로필이 디바이스에 할당되는지를 지정합니다.",
- "purchaseOrderId": "구매 주문 ID",
- "resourceAccount": "디바이스의 ID 또는 UPN(사용자 계정 이름)입니다.",
- "serialNumber": "선택한 디바이스의 일련 번호입니다.",
- "userPrincipalName": "디바이스를 설치하는 동안 인증을 미리 채우는 사용자입니다."
- },
- "allDevices": "모든 장치",
- "allDevicesAlreadyAssignedError": "Autopilot 프로필이 이미 모든 디바이스에 할당되었습니다.",
- "assignFailedDescription": "{0}에 대한 할당을 업데이트하지 못했습니다.",
- "assignFailedTitle": "Autopilot 프로필 할당을 업데이트하지 못했습니다.",
- "assignSuccessDescription": "{0}에 대한 할당을 업데이트했습니다.",
- "assignSuccessTitle": "AutoPilot 프로필 할당을 업데이트했습니다.",
- "assignSufaceHub2ProfileNextStep": "이 배포에 대한 다음 단계",
- "assignSurfaceHub2ProfileToDeviceGroup": "1. 하나 이상의 디바이스 그룹에 이 프로필을 할당합니다.",
- "assignSurfaceHub2ProfileToResourceAccount": "2. 이 프로필을 배포하는 각 Surface Hub 디바이스에 리소스 계정을 할당합니다.",
- "assignedDevicesCount": "할당된 디바이스",
- "assignedDevicesResourceAccountDescription": "이 프로필을 디바이스에 배포하려면 디바이스에 리소스 계정을 할당해야 합니다. 한 번에 디바이스 하나를 선택하여 기존 리소스 계정을 할당하거나 새 리소스 계정을 만듭니다. 리소스 계정에 대한 자세한 정보
",
- "assignedDevicesResourceAccountStatusBarMessage": "이 테이블은 이 프로필에 할당된 Surface Hub 2 디바이스만 나열합니다.",
- "assigningDescription": "{0}에 대한 할당을 업데이트하는 중입니다.",
- "assigningTitle": "AutoPilot 프로필 할당을 업데이트하는 중입니다.",
- "cannotDeleteMessage": "이 프로필은 그룹에 할당되어 있습니다. 이 프로필을 삭제하려면 먼저 이 프로필에서 모든 그룹을 할당 해제해야 합니다.",
- "cannotDeleteTitle": "{0}을(를) 삭제할 수 없습니다.",
- "createdDateTime": "만든 날짜",
- "deleteMessage": "이 AutoPilot 프로필을 삭제하면 이 프로필에 할당된 디바이스는 모두 [할당되지 않음]으로 표시됩니다.",
- "deleteMessageWithPolicySet": "{0}은(는) 하나 이상의 정책 집합에 포함되어 있습니다. {0}을(를) 삭제하면 이러한 정책 집합을 통해 더 이상 할당할 수 없게 됩니다.",
- "deleteTitle": "이 프로필을 삭제하시겠습니까?",
- "description": "설명",
- "deviceType": "디바이스 유형",
- "deviceUse": "디바이스 사용",
- "directoryServiceHintForSurfaceHub2": " \r\n Autopilot은 Surface Hub 2 디바이스에 조인된 Azure AD만 지원합니다. 조직에서 디바이스의 AD(Active Directory) 조인 방법을 지정하세요.\r\n
\r\n \r\n - \r\n Azure AD 조인됨: 온-프레미스 Windows Server Active Directory가 없는 클라우드만\r\n
\r\n
\r\n ",
- "directoryServiceHintForWindowsPC": "\r\n \r\n 조직에서 디바이스를 AD(Active Directory)에 조인하는 방법을 지정합니다.\r\n
\r\n \r\n - \r\n Azure AD 조인됨: 온-프레미스 Windows Server Active Directory를 사용하지 않는 클라우드 전용입니다.\r\n
\r\n
\r\n ",
- "getAssignedDevicesCountError": "할당된 디바이스 수를 페치하는 동안 오류가 발생했습니다.",
- "getAssignmentsError": "Autopilot 프로필 할당을 페치하는 동안 오류가 발생했습니다.",
- "harvestDeviceId": "모든 대상 디바이스를 Autopilot으로 변환",
- "harvestDeviceIdDescription": "기본적으로 이 프로필은 Autopilot 서비스에서 동기화된 Autopilot 디바이스에만 적용할 수 있습니다.",
- "harvestDeviceIdInfo": "\r\n 이미 등록되지 않은 경우 대상이 지정된 모든 디바이스를 Autopilot에 등록하려면 [예]를 선택합니다. 다음번에 등록된 디바이스가 Windows OOBE(첫 실행 경험)를 진행하면 할당된 Autopilot 시나리오가 진행됩니다.\r\n
\r\n 특정 Autopilot 시나리오는 최소한의 특정 Windows 빌드가 필요합니다. 시나리오를 진행하려면 디바이스에 필요한 최소한의 빌드가 있는지 확인하세요.\r\n
\r\n 이 프로필을 제거해도 Autopilot에서 영향을 받는 디바이스는 제거되지 않습니다. Autopilot에서 디바이스를 제거하려면 Windows Autopilot 디바이스 보기를 사용하세요.\r\n ",
- "harvestDeviceIdWarning": "Autopilot 디바이스를 변환한 후에는 Autopilot 디바이스 목록에서 삭제를 해야만 되돌릴 수 있습니다.",
- "holoLensCommandMenu": "HoloLens",
- "info": "Windows AutoPilot 배포 프로필을 사용하면 디바이스의 첫 실행 경험을 사용자 지정할 수 있습니다.",
- "invalidProfileNameMessage": "문자 \"{0}\"은(는) 허용되지 않습니다.",
- "joinTypeLabel": "Azure AD 조인 유형",
- "lastModifiedDateTime": "마지막으로 수정한 날짜:",
- "name": "이름",
- "noAutopilotProfile": "AutoPilot 프로필 없음",
- "notEnoughPermissionAssignedError": "이 프로필을 선택한 하나 이상의 그룹에 할당할 권한이 없습니다. 관리자에게 문의하세요.",
- "profile": "프로필",
- "resourceAccountStatusBarMessage": "이 프로필이 배포되는 각 Surface Hub 2 디바이스의 리소스 계정이 필요합니다. 자세히 알아보려면 여기를 클릭하세요.",
- "selectServices": "디바이스가 조인할 디렉터리 서비스 선택",
- "surfaceHub2CommandMenu": "Surface Hub 2",
- "surfaceHub2SCommandMenu": "Surface Hub 2S",
- "userAffinityLabel": "배포 모드",
- "windowsPCCommandMenu": "Windows PC",
- "directoryServiceLabel": "Azure AD 조인 유형"
- },
- "AppInformationTab": {
- "Error": {
- "multipleChildApps": "macOS LOB 앱은 업로드된 패키지에 단일 앱이 포함되어 있는 경우에만 관리형으로 설치할 수 있습니다."
- },
- "Info": {
- "AppStoreUrl": {
- "android": "Google Play 저장소의 앱 목록 링크를 입력합니다. 예:",
- "androidLink": "https://play.google.com/store/apps/details?id=com.microsoft.office.outlook",
- "windows": "Microsoft Store의 앱 목록 링크를 입력합니다. 예:",
- "windowsLink": "https://www.microsoft.com/en-us/p/microsoft-to-do-lists-tasks-reminders/9nblggh5r558"
- },
- "appPackageFile": "디바이스에서 사이드로드할 수 있는 형식으로 앱을 포함하는 파일입니다. 유효한 패키지 유형에는 Android(.apk), iOS(.ipa), macOS(.intunemac), Windows(.msi, .appx, .appxbundle, .msix 및 .msixbundle)가 포함됩니다.",
- "applicableDeviceType": "이 앱을 설치할 수 있는 디바이스 유형을 선택합니다.",
- "category": "사용자가 회사 포털에서 보다 쉽게 정렬하고 찾을 수 있도록 앱을 분류합니다. 여러 범주를 선택할 수 있습니다.",
- "categoryLink": "https://docs.microsoft.com/en-us/intune/apps/apps-add#create-and-edit-categories-for-apps",
- "description": "디바이스 사용자가 앱의 용도 및/또는 앱에서 수행할 수 있는 작업을 이해하는 데 도움이 됩니다. 이 설명은 회사 포털에서 볼 수 있습니다.",
- "developer": "앱을 개발한 회사 또는 개인의 이름입니다. 이 정보는 관리 센터에 로그인한 사용자에게 표시됩니다.",
- "displayVersion": "앱의 버전입니다. 이 정보는 회사 포털의 사용자에게 표시됩니다.",
- "infoUrl": "앱에 대한 자세한 정보가 있는 웹 사이트 또는 설명서에 사용자를 연결합니다. 정보 URL은 회사 포털의 사용자에게 표시됩니다.",
- "isFeatured": "추천 앱은 사용자가 신속하게 확인할 수 있도록 회사 포털에 눈에 띄게 배치됩니다.",
- "learnMore": "자세한 정보",
- "logo": "앱에 연결된 로고를 업로드합니다. 이 로고는 회사 포털 전체에서 앱 옆에 표시됩니다.",
- "macOSDmgAppPackageFile": "장치에서 사이드로드할 수 있는 형식으로 앱이 포함된 파일입니다. 유효한 패키지 유형: .dmg.",
- "minOperatingSystem": "앱을 설치할 수 있는 최신 운영 체제 버전을 선택합니다. 이전 버전의 운영 체제가 설치된 디바이스에 앱을 할당하면 설치되지 않습니다.",
- "name": "앱의 이름을 추가합니다. 이 이름은 Intune 앱 목록 및 회사 포털의 사용자에게 표시됩니다.",
- "notes": "앱에 대한 추가 정보를 추가합니다. 참고는 관리 센터에 로그인한 사용자에게 표시됩니다.",
- "owner": "조직의 라이선스를 관리하는 사용자의 이름이거나, 이 앱의 연락 지점입니다. 이 이름은 관리 센터에 로그인한 사용자에게 표시됩니다.",
- "packageName": "앱의 패키지 이름을 확인하려면 장치 제조업체에 문의하세요. 패키지 이름 예시: com.example.app",
- "privacyUrl": "앱의 개인 정보 설정 및 약관에 대한 자세한 정보를 보려는 사용자를 위한 링크를 제공합니다. 개인 정보 URL은 회사 포털의 사용자에게 표시됩니다.",
- "publisher": "앱을 배포하는 개발자 또는 회사의 이름입니다. 이 정보는 회사 포털의 사용자에게 표시됩니다.",
- "selectApp": "Intune으로 배포할 iOS 스토어 앱을 App Store에서 검색합니다.",
- "useManagedBrowser": "필요한 경우 사용자가 웹 앱을 열 때 Microsoft Edge 또는 Intune Managed Browser 같은 Intune으로 보호되는 브라우저에서 열립니다. 이 설정은 iOS 및 Android 디바이스에 모두 적용됩니다.",
- "useManagedBrowserLink": "https://docs.microsoft.com/en-us/intune/apps/app-configuration-managed-browser",
- "win32AppPackageFile": "디바이스에서 사이드로드할 수 있는 형식으로 앱을 포함하는 파일입니다. 유효한 패키지 유형: .intunewin."
- },
- "descriptionPreview": "미리 보기",
- "descriptionRequired": "설명은 필수입니다.",
- "editDescription": "설명 편집",
- "name": "앱 정보",
- "nameForOfficeSuitApp": "앱 제품군 정보"
- },
+ "Columns": {
+ "codeType": "코드 형식",
+ "returnCode": "반환 코드"
+ },
+ "bladeTitle": "반환 코드",
+ "gridAriaLabel": "반환 코드",
+ "header": "설치 후 동작을 나타내기 위한 반환 코드 지정:",
+ "onAddAnnounceMessage": "반환 코드를 통해 {0}/{1}개의 항목이 추가됨",
+ "onDeleteSuccess": "반환 코드 {0}을(를) 삭제함",
+ "returnCodeAlreadyUsedValidation": "반환 코드가 이미 사용되었습니다.",
+ "returnCodeMustBeIntegerValidation": "반환 코드는 정수여야 합니다.",
+ "returnCodeShouldBeAtLeast": "반환 코드는 {0} 이상이어야 합니다.",
+ "returnCodeShouldBeAtMost": "반환 코드는 {0} 이하여야 합니다.",
+ "selectorLabel": "반환 코드"
+ },
"NotificationMessage": {
"NotificationMessageTemplatesTab": {
"arabic": "아랍어",
@@ -10516,84 +10079,599 @@
"localeLabel": "로캘",
"isDefaultLocale": "기본값 여부"
},
- "Win32Program": {
- "DeviceRestartBehaviorOptions": {
- "allow": "앱을 설치하면 디바이스가 강제로 다시 시작될 수 있음",
- "basedOnReturnCode": "반환 코드에 따라 동작 결정",
- "force": "Intune에서 강제로 필수 디바이스를 다시 시작함",
- "suppress": "지정된 작업 없음"
- },
- "RunAsAccountOptions": {
- "system": "시스템",
- "user": "사용자"
- },
- "bladeTitle": "프로그램",
- "deviceRestartBehavior": "디바이스 다시 시작 동작",
- "deviceRestartBehaviorTooltip": "앱을 설치한 후 디바이스 다시 시작 동작을 선택합니다. 반환 코드 구성 설정을 기준으로 디바이스를 다시 시작하려면 '반환 코드에 따라 동작 결정'을 선택합니다. MSI 기반 앱에 대한 앱 설치 중에 디바이스 다시 시작 관련 메시지를 표시하지 않으려면 '특정 작업 없음'을 선택하세요. 다시 시작 관련 메시지 표시 여부와 관계없이 앱 설치를 완료할 수 있도록 하려면 '앱 설치 시 강제로 디바이스 다시 시작'을 선택하세요. 앱을 설치한 후에 항상 디바이스를 다시 시작하려면 'Intune에서 강제로 필수 디바이스를 다시 시작함'을 선택합니다.",
- "header": "이 앱을 설치 및 제거하기 위한 명령 지정:",
- "installCommand": "설치 명령",
- "installCommandMaxLengthErrorMessage": "설치 명령은 허용되는 최대 길이인 1024자를 초과할 수 없습니다.",
- "installCommandTooltip": "이 앱을 설치하는 데 사용되는 전체 설치 명령줄입니다.",
- "runAs32Bit": "64비트 클라이언트에서 32비트 프로세스로 설치 및 제거 명령 실행",
- "runAs32BitTooltip": "64비트 클라이언트에서 32비트 프로세스로 앱을 설치 및 제거하려면 '예'를 선택합니다. 64비트 클라이언트에서 64비트 프로세스로 앱을 설치 및 제거하려면 '아니요'(기본값)를 선택합니다. 32비트 클라이언트에서는 항상 32비트 프로세스가 사용됩니다.",
- "runAsAccount": "설치 동작",
- "runAsAccountTooltip": "지원되는 경우 모든 사용자에 대해 이 앱을 설치하려면 '시스템'을 선택합니다. 디바이스에 로그인한 사용자에 대해 이 앱을 설치하려면 '사용자'를 선택합니다. 이중 목적 MSI 앱의 경우 원래 설치 시 디바이스에 적용된 값이 복원될 때까지 변경 내용으로 인해 업데이트 및 제거가 완료되지 않습니다.",
- "selectorLabel": "프로그램",
- "uninstallCommand": "제거 명령",
- "uninstallCommandTooltip": "이 앱을 제거하는 데 사용되는 전체 제거 명령줄입니다."
- },
- "OutlookAppConfigSettings": {
- "AllowUserToChangeSetting": {
- "title": "사용자가 설정을 변경할 수 있도록 허용",
- "tooltip": "사용자가 설정을 변경할 수 있도록 허용할지를 지정합니다."
- },
- "AllowWorkAccounts": {
- "title": "회사 또는 학교 계정만 허용",
- "tooltip": " 이 설정을 사용하도록 설정하면 사용자가 Outlook 내에서 개인 메일 및 스토리지 계정을 추가할 수 없습니다. 사용자가 Outlook에 개인 계정을 추가한 경우 개인 계정을 제거하라는 메시지가 표시됩니다. 사용자가 개인 계정을 제거하지 않으면 회사 또는 학교 계정을 추가할 수 없습니다."
- },
- "BlockExternalImages": {
- "title": "외부 이미지 차단",
- "tooltip": "블록 외부 이미지를 사용하도록 설정하면 앱에서 인터넷에 호스트되어 있는 메시지 본문에 포함된 이미지 다운로드를 방지합니다. 구성되지 않도록 설정하면 기본 앱 설정이 [끄기]로 설정됩니다."
- },
- "ConfigureEmail": {
- "title": "메일 계정 설정 구성"
- },
- "DefaultAppSignatureSetting": {
- "Tooltip": {
- "android": "기본 앱 서명은 앱이 메시지 작성 중 기본 서명으로 “Android용 Outlook 다운로드”를 사용할지 여부를 나타냅니다. 설정이 [끄기]로 구성된 경우 기본 서명은 사용되지 않지만, 사용자가 고유한 서명을 추가할 수 있습니다.\r\n\r\n[구성되지 않음]으로 설정된 경우 기본 앱 설정은 [켜기]로 설정됩니다.",
- "iOS": "기본 앱 서명은 앱이 메시지 작성 중 기본 서명으로 “iOS용 Outlook 다운로드”를 사용할지 여부를 나타냅니다. 설정이 [끄기]로 구성된 경우 기본 서명은 사용되지 않지만, 사용자가 고유한 서명을 추가할 수 있습니다.\r\n\r\n[구성되지 않음]으로 설정된 경우 기본 앱 설정은 [켜기]로 설정됩니다."
- },
- "title": "기본 앱 서명"
- },
- "OfficeFeedReplies": {
- "title": "피드 검색",
- "tooltip": "피드 검색에는 가장 자주 액세스하는 Office 파일이 표시됩니다. 기본적으로, Delve가 해당 사용자에게 사용하도록 설정된 경우 이 피드를 사용할 수 있습니다. 구성되지 않음으로 설정하면 기본 앱 설정이 On으로 설정됩니다."
- },
- "OrganizeMailByThread": {
- "title": "스레드별로 메일 구성",
- "tooltip": "Outlook의 기본 동작은 메일 대화를 스레드된 대화 보기로 묶는 것입니다. 이 설정을 사용하지 않도록 설정하는 경우 Outlook은 각 메일을 개별적으로 표시하며 스레드별로 그룹화하지 않습니다."
- },
- "PlayMyEmails": {
- "title": "내 전자 메일 재생",
- "tooltip": "[내 전자 메일 재생] 기능은 앱에서 기본적으로 사용하도록 설정되어 있지 않지만 받은 편지함의 배너를 통해 적격 사용자로 기능의 수준이 올라갑니다. 이 기능이 [끄기]로 설정되면 앱에서 적격 사용자로 수준이 올라가지 않습니다. 사용자는 이 기능이 [끄기]로 설정된 경우에도 앱 내에서 [내 전자 메일 재생]을 수동으로 사용하도록 설정할 수 있습니다. [구성되지 않음]으로 설정하는 경우 기본 앱 설정은 [켜기]이며 적격 사용자로 기능의 수준이 올라갑니다."
- },
- "SuggestedReplies": {
- "title": "제안된 회신",
- "tooltip": "메시지를 여는 경우, Outlook에서 메시지 아래에 회신을 제안할 수 있습니다. 제안된 회신을 선택하면 회신을 보내기 전에 편집할 수 있습니다."
- },
- "SyncCalendars": {
- "title": "일정 동기화",
- "tooltip": "사용자가 Outlook 일정을 기본 일정 앱 및 데이터베이스와 동기화할 수 있는지 여부를 구성합니다."
- },
- "TextPredictions": {
- "title": "텍스트 예측",
- "tooltip": "Outlook에서 메시지를 작성할 때 단어와 구를 제안할 수 있습니다. Outlook에서 단어나 구를 제안하는 경우 수락하려면 제안된 단어나 구를 살짝 밉니다. [구성되지 않음]으로 설정하면 기본 앱 설정이 [켜기]로 설정됩니다."
+ "WindowsQualityUpdateProfile": {
+ "Details": {
+ "DaysUntilForcedReboot": {
+ "label": "다시 시작이 적용될 때까지 대기할 일 수"
+ },
+ "Description": {
+ "label": "설명"
+ },
+ "Name": {
+ "label": "이름"
+ },
+ "QualityUpdateRelease": {
+ "label": "디바이스 OS 버전이 다음보다 작은 경우 품질 업데이트를 신속하게 설치:"
+ },
+ "bladeTitle": "Windows 10 이상의 품질 업데이트(미리 보기)",
+ "loadError": "로드하지 못했습니다."
+ },
+ "TabName": {
+ "qualityUpdateSettings": "설정"
+ },
+ "infoBoxText": "기존 Windows 10 이상의 운영체제를 설치한 디바이스의 업데이트 링 정책 외에 현재 사용 가능한 유일한 전용 품질 업데이트 컨트롤은 지정된 패치 수준보다 뒤쳐진 디바이스에 대한 품질 업데이트를 신속히 처리하는 기능입니다. 향후 추가 컨트롤이 제공될 예정입니다.",
+ "warningBoxText": "소프트웨어 업데이트를 신속하게 처리하면 필요한 경우 규정 준수 상태에 도달하는 시간을 줄이는 데 도움이 될 수 있지만 최종 사용자의 생산성에 미치는 영향이 커집니다. 업무 시간 중에 시스템을 다시 시작할 가능성이 훨씬 증가하기 때문입니다."
+ },
+ "TermsOfUse": {
+ "Languages": {
+ "addLanguage": "Add language",
+ "af": "Afrikaans",
+ "am": "Amharic",
+ "arSA": "Arabic (Saudi Arabia)",
+ "as": "Assamese",
+ "az": "Azerbaijani",
+ "be": "Belarusian",
+ "bg": "Bulgarian",
+ "bn": "Bangla",
+ "bnIN": "Bangla (India)",
+ "bs": "Bosnian",
+ "ca": "Catalan",
+ "caESvalencia": "Valencian (Spain)",
+ "cs": "Czech",
+ "cy": "Welsh",
+ "da": "Danish",
+ "de": "German",
+ "default": "Default",
+ "defaultDetailsTag": "{0} (Default)",
+ "el": "Greek",
+ "en": "English",
+ "enGB": "English (United Kingdom)",
+ "es": "Spanish",
+ "esMX": "Spanish (Mexico)",
+ "et": "Estonian",
+ "eu": "Basque",
+ "fa": "Persian",
+ "fi": "Finnish",
+ "fil": "Filipino",
+ "fr": "French",
+ "frCA": "French (Canada)",
+ "ga": "Irish",
+ "gd": "Scottish Gaelic",
+ "gl": "Galician",
+ "gu": "Gujarati",
+ "ha": "Hausa",
+ "he": "Hebrew",
+ "hi": "Hindi",
+ "hr": "Croatian",
+ "hu": "Hungarian",
+ "hy": "Armenian",
+ "id": "Indonesian",
+ "ig": "Igbo",
+ "is": "Icelandic",
+ "it": "Italian",
+ "ja": "Japanese",
+ "ka": "Georgian",
+ "kk": "Kazakh",
+ "km": "Khmer",
+ "kn": "Kannada",
+ "ko": "Korean",
+ "kok": "Konkani",
+ "kuArab": "Central Kurdish (Arabic)",
+ "ky": "Kyrgyz",
+ "languageOptions": "Language Options",
+ "lb": "Luxembourgish",
+ "lo": "Lao",
+ "lt": "Lithuanian",
+ "lv": "Latvian",
+ "mi": "Maori",
+ "mk": "Macedonian",
+ "ml": "Malayalam",
+ "mn": "Mongolian",
+ "mr": "Marathi",
+ "ms": "Malay",
+ "mt": "Maltese",
+ "ne": "Nepali",
+ "nl": "Dutch",
+ "nnNO": "Norwegian, Nynorsk (Norway)",
+ "no": "Norwegian",
+ "notSpecified": "Language not specified",
+ "nso": "Sesotho sa Leboa",
+ "or": "Odia",
+ "paArabPK": "Punjabi (Islamic Republic of Pakistan)",
+ "paIN": "Punjabi (India)",
+ "pl": "Polish",
+ "prs": "Dari",
+ "ptBR": "Portuguese (Brazil)",
+ "ptPT": "Portuguese (Portugal)",
+ "quz": "Quechua",
+ "ro": "Romanian",
+ "ru": "Russian",
+ "rw": "Kinyarwanda",
+ "sd": "Sindhi",
+ "si": "Sinhala",
+ "sk": "Slovak",
+ "sl": "Slovenian",
+ "sq": "Albanian",
+ "srCyrlBA": "Serbian (Cyrillic, Bosnia and Herzegovina)",
+ "srCyrlRS": "Serbian (Cyrillic, Serbia)",
+ "srLatnRS": "Serbian (Latin, Serbia)",
+ "sv": "Swedish",
+ "sw": "Kiswahili",
+ "ta": "Tamil",
+ "te": "Telugu",
+ "tg": "Tajik",
+ "th": "Thai",
+ "ti": "Tigrinya",
+ "tk": "Turkmen",
+ "tn": "Setswana",
+ "tr": "Turkish",
+ "tt": "Tatar",
+ "ug": "Uyghur",
+ "uk": "Ukrainian",
+ "ur": "Urdu",
+ "uz": "Uzbek",
+ "vi": "Vietnamese",
+ "wo": "Wolof",
+ "xh": "isiXhosa",
+ "yo": "Yoruba",
+ "zhHans": "Chinese (Simplified)",
+ "zhHant": "Chinese (Traditional)",
+ "zu": "isiZulu"
+ },
+ "AcceptanceExpirationFrequency": {
+ "annually": "Annually",
+ "biannually": "Bi-annually",
+ "monthly": "Monthly",
+ "quarterly": "Quarterly"
},
- "ThemesEnabled": {
- "title": "테마 사용",
- "tooltip": "사용자가 사용자 지정 시각적 개체 테마를 사용할 수 있는지 여부를 지정합니다."
- }
- },
+ "Wizard": {
+ "AgreementTargetEntityScope": {
+ "NotSelected": {
+ "label": "None selected"
+ },
+ "selectEntityTitle": "Select group",
+ "title": "Select group"
+ },
+ "PolicyFile": {
+ "Languages": {
+ "Empty": {
+ "default": "Select default language",
+ "nonDefault": "Select a language"
+ }
+ },
+ "Validations": {
+ "duplicateLanguage": "Oops, {0} appears to be selected multiple times. Language selection must be unique."
+ }
+ },
+ "PolicyTemplate": {
+ "InfoBox": {
+ "allGuestsAllApps": "A conditional access policy will be created for all guests and all cloud apps. This policy impacts the Azure portal. Once this is created you might be required to sign-out and sign-in.",
+ "allUsersAllApps": "A conditional access policy will be created for all users and all cloud apps. This policy impacts the Azure portal. Once this is created you will be required to sign-out and sign-in.",
+ "custom": "Select the users, groups, and apps that this Terms of Use will be applied to.",
+ "noPolicy": "This terms of use will appear in the grant control list when creating a conditional access policy."
+ }
+ },
+ "Section": {
+ "conditionalAccessSubtitle": "Enforce with conditional access policy templates",
+ "conditionalAccessTitle": "Conditional access",
+ "termsOfUseSubtitle": "Create and upload documents",
+ "termsOfUseTitle": "Terms of use"
+ },
+ "acceptanceDurationInfo": "The terms of use will be enforced immediately and each user will have to re-consent every specified number of days.",
+ "acceptanceDurationLabel": "Duration before re-acceptance required (days)",
+ "acceptanceDurationPlaceholder": "Example: '90'",
+ "acceptanceExpirationFrequencyInfo": "Require users to consent on a recurring basis.",
+ "acceptanceExpirationFrequencyLabel": "Frequency",
+ "acceptanceExpirationStartDateTimeInfo": "The terms of use will be enforced immediately and users will be required to re-consent on this date.",
+ "acceptanceExpirationStartDateTimeLabel": "Expire starting on",
+ "agreementIsPerDeviceAcceptanceRequiredInfo": "The end users will be required to consent to the terms of use on every device.",
+ "agreementIsPerDeviceAcceptanceRequiredLabel": "Require users to consent on every device",
+ "agreementIsViewingBeforeAcceptanceRequiredInfo": "The end users will be required to view the terms of use prior to accepting.",
+ "agreementIsViewingBeforeAcceptanceRequiredLabel": "Require users to expand the terms of use",
+ "agreementNameInfo": "Name will be used to manage the terms of use within the Azure portal.",
+ "agreementNameLabel": "Name",
+ "agreementNamePlaceholderText": "Example: 'All users terms of use'",
+ "agreementRequirmentLabel": "Required Upon",
+ "agreementTargetEntityLabel": "Users targeted",
+ "agreementUploadPolicyLabel": "Terms of use",
+ "agreementUploadPolicyPlaceholderText": "Upload required PDF",
+ "createButtonLabel": "Create",
+ "createPolicyInfo": "In order to enforce the terms of use, a conditional access policy is required. You can create a conditional access policy targeted to specific users and applications later or use one of the predefined templates.",
+ "createPolicyLabel": "Create a policy",
+ "isAcceptanceExpirationEnabledInfo": "The terms of use will be enforced immediately and all users will be forced to re-consent on a schedule.",
+ "isAcceptanceExpirationEnabledLabel": "Expire consents",
+ "pdfValidationInvalidFileFormat": "The file must be in the .pdf format.",
+ "policyFilesInfo": "Upload a PDF file containing the terms of use that your end users must accept. Based on end user preferences they will be shown the appropriate language or if not match the default language will be shown.
For end users agreeing on mobile devices, we recommend the PDF font size to be at least 24 pt.
Display name will be the title of the terms of use that is presented to the end user.",
+ "policyFilesLabel": "Terms of use document",
+ "policyTemplateInfo": "These templates are pre configured conditional access policies that are targeted to specific users and applications.",
+ "policyTemplateLabel": "Policy templates",
+ "title": "New terms of use"
+ }
+ },
+ "TACSettings": {
+ "edgeSettings": "Edge 구성 설정",
+ "edgeWindowsDataProtectionSettings": "Edge(Windows) 데이터 보호 설정 - 미리 보기",
+ "edgeWindowsSettings": "Edge(Windows) 구성 설정 - 미리 보기",
+ "generalAppConfig": "일반 앱 구성",
+ "generalSettings": "일반 구성 설정",
+ "outlookSMIMEConfig": "Outlook S/MIME 설정",
+ "outlookSettings": "Outlook 구성 설정",
+ "sMIME": "S/MIME"
+ },
+ "MicrosoftEdgeChannel": {
+ "beta": "Beta",
+ "dev": "Dev",
+ "stable": "Stable"
+ },
+ "WipPolicySettings": {
+ "addNetworkBoundary": "네트워크 경계 추가",
+ "addNetworkBoundaryButton": "네트워크 경계 추가...",
+ "allowWindowsSearch": "Windows Search에서 암호화된 회사 데이터 및 스토어 앱을 검색할 수 있도록 허용",
+ "authoritativeIpRanges": "엔터프라이즈 IP 범위 목록을 신뢰할 수 있음(자동 검색 안 함)",
+ "authoritativeProxyServers": "엔터프라이즈 프록시 서버 목록을 신뢰할 수 있음(자동 검색 안 함)",
+ "boundaryType": "경계 유형",
+ "cloudResources": "클라우드 리소스",
+ "corporateIdentity": "회사 ID",
+ "dataRecoveryCert": "암호화된 데이터를 복구할 수 있도록 DRA(데이터 복구 에이전트) 인증서를 업로드합니다.",
+ "editNetworkBoundary": "네트워크 경계 편집",
+ "enrollmentState": "등록 상태",
+ "iPv4Ranges": "IPv4 범위",
+ "iPv6Ranges": "IPv6 범위",
+ "internalProxyServers": "내부 프록시 서버",
+ "maxInactivityTime": "디바이스가 유휴 상태로 전환된 후 디바이스의 PIN 또는 암호가 잠기게 되는 최대 허용 시간(분)",
+ "maxPasswordAttempts": "디바이스가 초기화되기 전 허용되는 인증 실패 횟수",
+ "mdmDiscoveryUrl": "MDM 검색 URL",
+ "mdmRequiredSettingsInfo": "이 정책은 Windows 10 1주년 버전 이상에만 적용됩니다. 이 정책에서는 WIP(Windows Information Protection)를 사용하여 보호를 적용합니다.",
+ "minimumPinLength": "PIN에 대해 필요한 최소 문자 수를 설정합니다.",
+ "name": "이름",
+ "networkBoundariesGridEmptyText": "추가하는 모든 네트워크 경계가 여기에 표시됩니다.",
+ "networkBoundary": "네트워크 경계",
+ "networkDomainNames": "네트워크 도메인",
+ "neutralResources": "중립 리소스",
+ "passportForWork": "Windows에 로그인하는 방법으로 비즈니스용 Windows Hello를 사용합니다.",
+ "pinExpiration": "시스템에서 사용자에게 PIN을 변경하도록 요구하기 전에 PIN을 사용할 수 있는 기간(일)을 지정합니다.",
+ "pinHistory": "다시 사용할 수 없는 사용자 계정에 연결할 수 있는 이전 PIN의 숫자를 지정합니다.",
+ "pinLowercaseLetters": "비즈니스용 Windows Hello PIN에 소문자 사용을 구성합니다.",
+ "pinSpecialCharacters": "비즈니스용 Windows Hello PIN에 특수 문자 사용을 구성합니다.",
+ "pinUppercaseLetters": "비즈니스용 Windows Hello PIN에 대문자 사용을 구성합니다.",
+ "protectUnderLock": "디바이스가 잠긴 경우 앱에서 회사 데이터에 액세스할 수 없도록 합니다. Windows 10 Mobile에만 적용됩니다.",
+ "protectedDomainNames": "보호되는 도메인",
+ "proxyServers": "프록시 서버",
+ "requireAppPin": "디바이스 PIN이 관리될 때 앱 PIN을 사용 안 함",
+ "requiredSettings": "필수 설정",
+ "requiredSettingsInfo": "범위를 변경하거나 이 정책을 제거하면 회사 데이터의 암호가 해독됩니다.",
+ "revokeOnMdmHandoff": "디바이스가 MDM에 등록될 때 보호된 데이터에 대한 액세스 취소",
+ "revokeOnUnenroll": "등록 취소 시 암호화 키 취소",
+ "rmsTemplateForEdp": "Azure RMS에 대해 사용할 템플릿 ID를 지정합니다.",
+ "showWipIcon": "엔터프라이즈 데이터 보호 아이콘 표시",
+ "type": "형식",
+ "useRmsForWip": "WIP에 대해 Azure RMS 사용",
+ "value": "값",
+ "weRequiredSettingsInfo": "이 정책은 Windows 10 크리에이터스 업데이트 이상에만 적용됩니다. 이 정책에서는 WIP(Windows Information Protection) 및 Windows MAM을 사용하여 보호를 적용합니다.",
+ "wipProtectionMode": "Windows Information Protection 모드",
+ "withEnrollment": "등록 있음",
+ "withoutEnrollment": "등록 없음"
+ },
+ "OfficeApplicationAdditionalType": {
+ "projectProRetail": "Project Online 데스크톱 클라이언트",
+ "visioProRetail": "Visio Online 플랜 2"
+ },
+ "Countries": {
+ "ae": "아랍에미리트",
+ "ag": "앤티가 바부다",
+ "ai": "앵귈라",
+ "al": "알바니아",
+ "am": "아르메니아",
+ "ao": "앙골라",
+ "ar": "아르헨티나",
+ "at": "오스트리아",
+ "au": "오스트레일리아",
+ "az": "아제르바이잔",
+ "bb": "바베이도스",
+ "be": "벨기에",
+ "bf": "부르키나파소",
+ "bg": "불가리아",
+ "bh": "바레인",
+ "bj": "베냉",
+ "bm": "버뮤다",
+ "bn": "브루나이",
+ "bo": "볼리비아",
+ "br": "브라질",
+ "bs": "바하마",
+ "bt": "부탄",
+ "bw": "보츠와나",
+ "by": "벨라루스",
+ "bz": "벨리즈",
+ "ca": "캐나다",
+ "cg": "콩고 공화국",
+ "ch": "스위스",
+ "cl": "칠레",
+ "cn": "중국",
+ "co": "콜롬비아",
+ "cr": "코스타리카",
+ "cv": "카보베르데",
+ "cy": "키프로스",
+ "cz": "체코 공화국",
+ "de": "독일",
+ "dk": "덴마크",
+ "dm": "도미니카",
+ "do": "도미니카 공화국",
+ "dz": "알제리",
+ "ec": "에콰도르",
+ "ee": "에스토니아",
+ "eg": "이집트",
+ "es": "스페인",
+ "fi": "핀란드",
+ "fj": "피지",
+ "fm": "미크로네시아",
+ "fr": "프랑스",
+ "gb": "영국",
+ "gd": "그레나다",
+ "gh": "가나",
+ "gm": "감비아",
+ "gr": "그리스",
+ "gt": "과테말라",
+ "gw": "기니비사우",
+ "gy": "가이아나",
+ "hk": "홍콩",
+ "hn": "온두라스",
+ "hr": "크로아티아",
+ "hu": "헝가리",
+ "id": "인도네시아",
+ "ie": "아일랜드",
+ "il": "이스라엘",
+ "in": "인도",
+ "is": "아이슬란드",
+ "it": "이탈리아",
+ "jm": "자메이카",
+ "jo": "요르단",
+ "jp": "일본",
+ "ke": "케냐",
+ "kg": "키르기스스탄",
+ "kh": "캄보디아",
+ "kn": "세인트키츠 네비스",
+ "kr": "대한민국",
+ "kw": "쿠웨이트",
+ "ky": "케이맨 제도",
+ "kz": "카자흐스탄",
+ "la": "라오스",
+ "lb": "레바논",
+ "lc": "세인트 루시아",
+ "lk": "스리랑카",
+ "lr": "라이베리아",
+ "lt": "리투아니아",
+ "lu": "룩셈부르크",
+ "lv": "라트비아",
+ "md": "몰도바 공화국",
+ "mg": "마다가스카르",
+ "mk": "북마케도니아",
+ "ml": "말리",
+ "mn": "몽골",
+ "mo": "마카오",
+ "mr": "모리타니",
+ "ms": "몬트세라트",
+ "mt": "몰타",
+ "mu": "모리셔스",
+ "mw": "말라위",
+ "mx": "멕시코",
+ "my": "말레이시아",
+ "mz": "모잠비크",
+ "na": "나미비아",
+ "ne": "니제르",
+ "ng": "나이지리아",
+ "ni": "니카라과",
+ "nl": "네덜란드",
+ "no": "노르웨이",
+ "np": "네팔",
+ "nz": "뉴질랜드",
+ "om": "오만",
+ "pa": "파나마",
+ "pe": "페루",
+ "pg": "파푸아뉴기니",
+ "ph": "필리핀",
+ "pk": "파키스탄",
+ "pl": "폴란드",
+ "pt": "포르투갈",
+ "pw": "팔라우",
+ "py": "파라과이",
+ "qa": "카타르",
+ "ro": "루마니아",
+ "ru": "러시아",
+ "sa": "사우디아라비아",
+ "sb": "솔로몬 제도",
+ "sc": "세이셸",
+ "se": "스웨덴",
+ "sg": "싱가포르",
+ "si": "슬로베니아",
+ "sk": "슬로바키아",
+ "sl": "시에라리온",
+ "sn": "세네갈",
+ "sr": "수리남",
+ "st": "상투메 프린시페",
+ "sv": "엘살바도르",
+ "sz": "스와질란드",
+ "tc": "터크스 케이커스",
+ "td": "차드",
+ "th": "태국",
+ "tj": "타지키스탄",
+ "tm": "투르크메니스탄",
+ "tn": "튀니지",
+ "tr": "터키",
+ "tt": "트리니다드 토바고",
+ "tw": "대만",
+ "tz": "탄자니아",
+ "ua": "우크라이나",
+ "ug": "우간다",
+ "us": "미국",
+ "uy": "우루과이",
+ "uz": "우즈베키스탄",
+ "vc": "세인트 빈센트 그레나딘",
+ "ve": "베네수엘라",
+ "vg": "영국령 버진 아일랜드",
+ "vn": "베트남",
+ "ye": "예멘",
+ "za": "남아프리카 공화국",
+ "zw": "짐바브웨"
+ },
+ "OfficeUpdateChannel": {
+ "current": "현재 채널",
+ "deferred": "반기 엔터프라이즈 채널",
+ "firstReleaseCurrent": "현재 채널(미리 보기)",
+ "firstReleaseDeferred": "반기 엔터프라이즈 채널(미리 보기)",
+ "monthlyEnterprise": "월 단위 기업 채널",
+ "placeHolder": "하나 선택"
+ },
+ "AppProtection": {
+ "allAppTypes": "모든 앱 유형을 대상으로 함",
+ "androidPlatformLabel": "Android",
+ "appsInAndroidWorkProfile": "Android 회사 프로필의 앱",
+ "appsOnIntuneManagedDevices": "Intune 관리 디바이스의 앱",
+ "appsOnUnmanagedDevices": "관리되지 않는 디바이스의 앱",
+ "iOSPlatformLabel": "iOS/iPadOS",
+ "iosAndroidMacPlatformLabel": "iOS, Android, Mac",
+ "iosAndroidPlatformLabel": "iOS, Android",
+ "macPlatformLabel": "MAC",
+ "notAvailable": "사용할 수 없음",
+ "windows10PlatformLabel": "Windows 10 이상",
+ "withEnrollment": "등록 있음",
+ "withoutEnrollment": "등록 없음"
+ },
+ "InstallContextType": {
+ "device": "디바이스",
+ "deviceContext": "디바이스 컨텍스트",
+ "user": "사용자",
+ "userContext": "사용자 컨텍스트"
+ },
+ "ProactiveRemediations": {
+ "Create": {
+ "Basics": {
+ "DescriptionMultiLineTextBox": {
+ "label": "설명",
+ "placeholder": "설명 입력"
+ },
+ "NameTextBox": {
+ "label": "이름",
+ "placeholder": "이름 입력"
+ },
+ "PublisherTextBox": {
+ "label": "게시자",
+ "placeholder": "게시자 입력"
+ },
+ "VersionTextBox": {
+ "label": "버전"
+ },
+ "headerDescription": "작성한 검색 및 재구성 스크립트에서 새 사용자 지정 스크립트 패키지를 만듭니다."
+ },
+ "ScopeTags": {
+ "headerDescription": "스크립트 패키지를 할당할 그룹을 하나 이상 선택합니다."
+ },
+ "Settings": {
+ "DetectionScriptMultiLineTextBox": {
+ "label": "검색 스크립트",
+ "placeholder": "입력 스크립트 텍스트",
+ "requiredValidationMessage": "검색 스크립트를 입력하세요."
+ },
+ "EnforceScriptSignatureCheckOptionPicker": {
+ "label": "스크립트 서명 확인 적용"
+ },
+ "LoggedOnCredentialsOptionPicker": {
+ "label": "로그온된 자격 증명을 사용하여 이 스크립트 실행"
+ },
+ "RemediationScript": {
+ "infoBox": "이 스크립트는 재구성 스크립트가 없기 때문에 검색 전용 모드에서 실행됩니다."
+ },
+ "RemediationScriptMultiLineTextBox": {
+ "label": "재구성 스크립트",
+ "placeholder": "입력 스크립트 텍스트"
+ },
+ "RunIn64BitPSOptionPicker": {
+ "label": "64비트 PowerShell에서 스크립트 실행"
+ },
+ "ScriptMultiLineTextBox": {
+ "base64EncodingValidationMessage": "유효하지 않은 스크립트입니다. 스크립트에 사용된 하나 이상의 문자가 유효하지 않습니다."
+ },
+ "headerDescription": "작성한 스크립트에서 사용자 지정 스크립트 패키지를 만듭니다. 기본적으로 스크립트는 할당된 디바이스에서 매일 실행됩니다.",
+ "infoBox": "이 스크립트는 읽기 전용입니다. 이 스크립트에 대한 일부 설정이 사용하지 않도록 설정될 수 있습니다."
+ },
+ "title": "사용자 지정 스크립트 만들기",
+ "ScriptProperties": {
+ "GridHeaders": {
+ "interval": "간격",
+ "time": "날짜 및 시간"
+ },
+ "Interval": {
+ "day": "매일 반복",
+ "days": "{0}일마다 반복",
+ "hour": "매시간 반복",
+ "hours": "{0}시간마다 반복",
+ "month": "매달 반복",
+ "months": "{0}개월마다 반복",
+ "week": "매주 반복",
+ "weeks": "{0}주마다 반복"
+ },
+ "Time": {
+ "utc": "{0}(UTC)",
+ "utcWithDate": "{0}(UTC)({1})",
+ "withDate": "{0}({1})"
+ }
+ }
+ },
+ "Edit": {
+ "title": "편집 - {0}"
+ }
+ },
+ "EdgeAppConfig": {
+ "AllowedURLs": {
+ "title": "허용된 URL",
+ "tooltip": "업무 중에 사용자가 액세스할 수 있는 사이트를 지정합니다. 다른 사이트는 허용되지 않습니다. 허용/차단 목록 중 하나만 구성할 수 있으며, 둘 다 구성할 수는 없습니다. "
+ },
+ "ApplicationProxyRedirection": {
+ "header": "애플리케이션 프록시",
+ "title": "애플리케이션 프록시 리디렉션",
+ "tooltip": "앱 프록시 리디렉션을 사용하도록 설정하여 사용자에게 회사 링크 및 온-프레미스 웹앱에 대한 액세스 권한을 부여합니다."
+ },
+ "BlockedURLs": {
+ "title": "차단된 URL",
+ "tooltip": "업무 중에 사용자에 대해 차단되는 사이트를 지정합니다. 다른 사이트는 모두 허용됩니다. 허용/차단 목록 중 하나만 구성할 수 있으며, 둘 다 구성할 수는 없습니다. "
+ },
+ "Bookmarks": {
+ "header": "관리형 책갈피",
+ "tooltip": "업무 중에 Microsoft Edge를 사용할 때 사용자가 사용할 수 있는 책갈피로 지정된 URL 목록을 입력합니다.",
+ "uRL": "URL"
+ },
+ "HomepageURL": {
+ "header": "관리되는 홈페이지",
+ "title": "홈페이지 바로 가기 URL",
+ "tooltip": "사용자가 Microsoft Edge에서 새 탭을 열 때 검색 창 아래에 첫 번째 아이콘으로 표시되는 홈페이지 바로 가기를 구성합니다."
+ },
+ "PersonalContext": {
+ "label": "제한된 사이트를 개인 컨텍스트로 리디렉션",
+ "tooltip": "사용자가 제한된 사이트를 열기 위해 개인 컨텍스트로의 전환을 허용받아야 하는지를 구성합니다."
+ }
+ },
+ "BooleanActions": {
+ "allow": "허용",
+ "block": "차단",
+ "configured": "구성됨",
+ "disable": "사용 안 함",
+ "dontRequire": "필요 없음",
+ "enable": "사용",
+ "hide": "숨기기",
+ "limit": "제한",
+ "notConfigured": "구성되지 않음",
+ "require": "필요",
+ "show": "표시",
+ "yes": "예"
+ },
+ "ArchitectureOptions": {
+ "sixtyFourBit": "64비트",
+ "thirtyTwoBit": "32비트"
+ },
+ "WindowsQualityUpdateDaysUntilForcedReboot": {
+ "oneDay": "1일",
+ "twoDays": "2일",
+ "zeroDays": "0일"
+ },
"SoftwareUpdates": {
"BladeTitles": {
"overview": "개요"
@@ -10800,66 +10878,732 @@
"notScannedYet": "아직 검사하지 않음",
"outOfDateIosDevices": "오래된 iOS 디바이스"
},
- "ScheduledAction": {
- "Form": {
- "editBlockActionInfo": "모든 준수 정책에는 하나의 차단 작업이 필요합니다.",
- "graceperiod": "일정(비준수 후 기간(일))",
- "graceperiodInfo": "사용자의 디바이스에 대해 이 작업이 트리거되어야 하는 비준수 후 기간(일)을 지정합니다.",
- "subtitle": "작업 매개 변수 지정",
- "title": "작업 매개 변수"
- },
- "List": {
- "gracePeriodDay": "비준수 후 {0}일",
- "gracePeriodDays": "비준수 후 {0}일",
- "gracePeriodHour": "비준수 후 {0}시간",
- "gracePeriodHours": "비준수 후 {0}시간",
- "gracePeriodMinute": "비준수 후 {0}분",
- "gracePeriodMinutes": "비준수 후 {0}분",
- "immediately": "즉시",
- "schedule": "일정",
- "scheduleInfoBalloon": "비규정 준수 후 기간(일)",
- "subtitle": "비규격 디바이스에 대한 일련의 작업 지정",
- "title": "작업"
- },
- "Notification": {
- "additionalEmailLabel": "기타",
- "additionalRecipients": "추가 받는 사람(메일을 통해)",
- "additionalRecipientsBladeTitle": "추가 받는 사람 선택",
- "emailAddressPrompt": "메일 주소 입력(쉼표로 구분)",
- "invalidEmail": "잘못된 메일 주소",
- "messageTemplate": "메시지 템플릿",
- "noneSelected": "선택된 항목이 없음",
- "notSelected": "선택되지 않음",
- "numSelected": "{0}개 선택됨",
- "selected": "선택됨"
+ "ConfigurationTypes": {
+ "Table": {
+ "androidDeviceOwnerGeneral": "디바이스 제한(디바이스 소유자)",
+ "androidForWorkGeneral": "디바이스 제한(회사 프로필)"
+ },
+ "androidCustom": "사용자 지정",
+ "androidDeviceOwnerGeneral": "디바이스 제한",
+ "androidDeviceOwnerPkcs": "PKCS 인증서",
+ "androidDeviceOwnerScep": "SCEP 인증서",
+ "androidDeviceOwnerTrustedCertificate": "신뢰할 수 있는 인증서",
+ "androidDeviceOwnerVpn": "VPN",
+ "androidDeviceOwnerWiFi": "Wi-Fi",
+ "androidEmailProfile": "메일(삼성 KNOX 전용)",
+ "androidForWorkCustom": "사용자 지정",
+ "androidForWorkEmailProfile": "전자 메일",
+ "androidForWorkGeneral": "디바이스 제한",
+ "androidForWorkImportedPFX": "PKCS 가져온 인증서",
+ "androidForWorkOemConfig": "OEMConfig",
+ "androidForWorkPKCS": "PKCS 인증서",
+ "androidForWorkSCEP": "SCEP 인증서",
+ "androidForWorkTrustedCertificate": "신뢰할 수 있는 인증서",
+ "androidForWorkVpn": "VPN",
+ "androidForWorkWiFi": "Wi-Fi",
+ "androidGeneral": "디바이스 제한",
+ "androidImportedPFX": "PKCS 가져온 인증서",
+ "androidPKCS": "PKCS 인증서",
+ "androidSCEP": "SCEP 인증서",
+ "androidTrustedCertificate": "신뢰할 수 있는 인증서",
+ "androidVPN": "VPN",
+ "androidWiFi": "Wi-Fi",
+ "androidZebraMx": "MX 프로필(Zebra만)",
+ "complianceAndroid": "Android 준수 정책",
+ "complianceAndroidDeviceOwner": "완전 관리형, 전용 및 회사 소유 회사 프로필",
+ "complianceAndroidEnterprise": "개인 소유 회사 프로필",
+ "complianceAndroidForWork": "Android for Work 준수 정책",
+ "complianceIos": "iOS 준수 정책",
+ "complianceMac": "Mac 준수 정책",
+ "complianceWindows10": "Windows 10 이상 규정 준수 정책",
+ "complianceWindows10Mobile": "Windows 10 Mobile 준수 정책",
+ "complianceWindows8": "Windows 8 준수 정책",
+ "complianceWindowsPhone": "Windows Phone 준수 정책",
+ "exchangeActiveSync": "Exchange Active Sync",
+ "iosCustom": "사용자 지정",
+ "iosDerivedCredentialAuthenticationConfiguration": "파생된 PIV 자격 증명",
+ "iosDeviceFeatures": "디바이스 기능",
+ "iosEDU": "교육",
+ "iosEducation": "교육",
+ "iosEmailProfile": "전자 메일",
+ "iosGeneral": "디바이스 제한",
+ "iosImportedPFX": "PKCS 가져온 인증서",
+ "iosPKCS": "PKCS 인증서",
+ "iosPresets": "미리 설정",
+ "iosSCEP": "SCEP 인증서",
+ "iosTrustedCertificate": "신뢰할 수 있는 인증서",
+ "iosVPN": "VPN",
+ "iosVPNZscaler": "VPN",
+ "iosWiFi": "Wi-Fi",
+ "macCustom": "사용자 지정",
+ "macDeviceFeatures": "디바이스 기능",
+ "macEndpointProtection": "엔드포인트 보호",
+ "macExtensions": "확장",
+ "macGeneral": "디바이스 제한",
+ "macImportedPFX": "PKCS 가져온 인증서",
+ "macSCEP": "SCEP 인증서",
+ "macTrustedCertificate": "신뢰할 수 있는 인증서",
+ "macVPN": "VPN",
+ "macWiFi": "Wi-Fi",
+ "settingsCatalog": "설정 카탈로그(미리 보기)",
+ "unsupported": "지원되지 않음",
+ "windows10AdministrativeTemplate": "관리 템플릿(미리 보기)",
+ "windows10Atp": "엔드포인트용 Microsoft Defender(Windows 10 이상을 실행하는 데스크톱 디바이스)",
+ "windows10Custom": "사용자 지정",
+ "windows10DesktopSoftwareUpdate": "소프트웨어 업데이트",
+ "windows10DeviceFirmwareConfigurationInterface": "디바이스 펌웨어 구성 인터페이스",
+ "windows10EmailProfile": "전자 메일",
+ "windows10EndpointProtection": "엔드포인트 보호",
+ "windows10EnterpriseDataProtection": "Windows Information Protection",
+ "windows10General": "디바이스 제한",
+ "windows10ImportedPFX": "PKCS 가져온 인증서",
+ "windows10Kiosk": "키오스크",
+ "windows10NetworkBoundary": "네트워크 경계",
+ "windows10PKCS": "PKCS 인증서",
+ "windows10PolicyOverride": "그룹 정책 재정의",
+ "windows10SCEP": "SCEP 인증서",
+ "windows10SecureAssessmentProfile": "교육 프로필",
+ "windows10SharedPC": "공유 다중 사용자 디바이스",
+ "windows10TeamGeneral": "디바이스 제한(Windows 10 Team)",
+ "windows10TrustedCertificate": "신뢰할 수 있는 인증서",
+ "windows10VPN": "VPN",
+ "windows10WiFi": "Wi-Fi",
+ "windows10WiFiCustom": "Wi-Fi 사용자 지정",
+ "windows8General": "디바이스 제한",
+ "windows8SCEP": "SCEP 인증서",
+ "windows8TrustedCertificate": "신뢰할 수 있는 인증서",
+ "windows8VPN": "VPN",
+ "windows8WiFi": "Wi-Fi 가져오기",
+ "windowsDeliveryOptimization": "제공 최적화",
+ "windowsDomainJoin": "도메인 가입",
+ "windowsEditionUpgrade": "버전 업그레이드 및 모드 전환",
+ "windowsIdentityProtection": "ID 보호",
+ "windowsPhoneCustom": "사용자 지정",
+ "windowsPhoneEmailProfile": "전자 메일",
+ "windowsPhoneGeneral": "디바이스 제한",
+ "windowsPhoneImportedPFX": "PKCS 가져온 인증서",
+ "windowsPhoneSCEP": "SCEP 인증서",
+ "windowsPhoneTrustedCertificate": "신뢰할 수 있는 인증서",
+ "windowsPhoneVPN": "VPN",
+ "IosUpdate": "iOS 업데이트 정책"
+ },
+ "OfficeSuiteAppsTab": {
+ "acceptLicenseOnBehalfOfUsersLabel": "사용자 대신 Microsoft 소프트웨어 사용 조건에 동의",
+ "appSuiteConfigurationLabel": "앱 제품군 구성",
+ "appSuiteInformationLabel": "앱 제품군 정보",
+ "appsToBeInstalledLabel": "제품군의 일부로 설치할 앱",
+ "architectureLabel": "아키텍처",
+ "architectureTooltip": "디바이스에 32비트 또는 64비트 버전의 Microsoft 365 앱을 설치할지 여부를 정의합니다.",
+ "configurationDesignerLabel": "구성 디자이너",
+ "configurationFileLabel": "구성 파일",
+ "configurationSettingsFormatLabel": "구성 설정 형식",
+ "configureAppSuiteLabel": "앱 제품군 구성",
+ "configuredLabel": "구성됨",
+ "currentVersionLabel": "현재 버전",
+ "currentVersionTooltip": "이 도구 모음에 구성된 Office의 현재 버전입니다. 이 값은 최신 버전이 구성 및 저장될 때 업데이트됩니다.",
+ "enableMicrosoftSearchAsDefaultTooltip": "디바이스에서 Google Chrome용 Bing의 Microsoft Search 확장을 설치할지 여부를 결정하는 데 도움이 되는 백그라운드 서비스를 설치합니다.",
+ "enterXmlDataLabel": "XML 데이터 입력",
+ "languagesLabel": "언어",
+ "languagesTooltip": "기본적으로 Intune에서는 운영 체제의 기본 언어를 사용하여 Office를 설치합니다. 설치할 추가 언어를 선택합니다.",
+ "learnMoreText": "자세한 정보",
+ "newUpdateChannelTooltip": "앱이 새 기능으로 업데이트되는 빈도를 정의합니다.",
+ "noCurrentVersionText": "현재 버전 없음",
+ "noLanguagesSelectedLabel": "선택한 언어가 없음",
+ "notConfiguredLabel": "구성되지 않음",
+ "propertiesLabel": "속성",
+ "removeOtherVersionsLabel": "다른 버전 제거",
+ "removeOtherVersionsTooltip": "사용자 디바이스에서 다른 버전의 Office(MSI)를 제거하려면 예를 선택합니다.",
+ "selectOfficeAppsLabel": "Office 앱 선택",
+ "selectOfficeAppsTooltip": "제품군의 일부로 설치하려는 Office 365 앱을 선택하세요.",
+ "selectOtherOfficeAppsLabel": "다른 Office 앱 선택(라이선스 필요)",
+ "selectOtherOfficeAppsTooltip": "이러한 추가 Office 앱에 대한 라이선스를 소유하는 경우 Intune에서도 이러한 라이선스를 할당할 수 있습니다.",
+ "specificVersionLabel": "특정 버전",
+ "updateChannelLabel": "업데이트 채널",
+ "updateChannelTooltip": "앱이 새 기능으로 업데이트되는 빈도를 정의합니다.
\r\n월 단위 - 사용자에게 최신 Office 기능을 제공합니다.
\r\n월 단위 엔터프라이즈 채널 - 한 달에 한 번 매월 두 번째 화요일에 사용자에게 최신 Office 기능을 제공합니다.
\r\n월 단위(대상 지정) - 공개가 임박한 월 단위 채널 릴리스를 조기에 확인할 수 있습니다. 지원되는 업데이트 채널이며, 일반적으로 새 기능을 포함하는 월 단위 채널 릴리스인 경우 일주일에 한 번 이상 사용할 수 있습니다.
\r\n반기 단위 - 연간 몇 번에 걸쳐 사용자에게 새 Office 기능을 제공합니다.
\r\n반기 단위(대상 지정) - 파일럿 사용자 및 애플리케이션 호환성 테스터에게 다음번 반기 단위를 테스트할 수 있는 기회를 제공합니다.",
+ "useMicrosoftSearchAsDefault": "Bing의 Microsoft Search에 대한 백그라운드 서비스 설치",
+ "useSharedComputerActivationLabel": "공유 컴퓨터 인증 사용",
+ "useSharedComputerActivationTooltip": "공유 컴퓨터 활성화를 활용하면 여러 사용자가 이용하는 컴퓨터에 Microsoft 365 앱을 배포할 수 있습니다. 일반적으로 사용자는 제한된 수의 디바이스(예: 5대)에만 Microsoft 365 앱을 설치하고 활성화할 수 있습니다. Microsoft 365 앱과 공유 컴퓨터 활성화를 함께 사용하는 것은 이 제한으로 계산되지 않습니다.",
+ "versionToInstallLabel": "설치할 버전",
+ "versionToInstallTooltip": "설치해야 하는 Office 버전을 선택합니다.",
+ "xLanguagesSelectedLabel": "{0}개의 언어가 선택됨",
+ "xmlConfigurationLabel": "XML 구성"
+ },
+ "EnrollmentRestrictions": {
+ "DeletePayloadLink": {
+ "content": "{0}은(는) 하나 이상의 정책 집합에 포함되어 있습니다. {0}을(를) 삭제하면 이러한 정책 집합을 통해 더 이상 할당할 수 없게 됩니다. 그래도 삭제하시겠습니까?",
+ "contentWithError": "{0}은(는) 하나 이상의 정책 집합에 포함되어 있을 수 있습니다. {0}을(를) 삭제하면 이러한 정책 집합을 통해 더 이상 할당할 수 없게 됩니다. 그래도 삭제하시겠습니까?",
+ "header": "이 제한을 삭제하시겠습니까?"
+ },
+ "DeviceLimit": {
+ "description": "사용자가 등록할 수 있는 최대 디바이스 수를 지정합니다.",
+ "header": "디바이스 개수 제한",
+ "info": "각 사용자가 등록할 수 있는 디바이스 수를 정의합니다."
+ },
+ "DeviceType": {
+ "VersionValidation": {
+ "aOSP": "1.0 이상이어야 합니다.",
+ "android": "올바른 버전 번호를 입력합니다. 예: 5.0, 5.5.1, 6.0.0.1",
+ "androidForWork": "유효한 버전 번호를 입력합니다. 예: 5.0, 5.1.1",
+ "iOS": "올바른 버전 번호를 입력합니다. 예: 9.0, 10.0, 9.0.2",
+ "mac": "올바른 버전 번호를 입력하세요. 예: 10, 10.10, 10.10.1",
+ "min": "최소값은 {0}보다 작을 수 없습니다.",
+ "minMax": "최소 버전이 최대 버전보다 클 수 없습니다.",
+ "windows": "10.0 이상이어야 합니다. 8.1 디바이스를 허용하려면 비워 둡니다.",
+ "windowsMobile": "10.0 이상이어야 합니다. 8.1 디바이스를 허용하려면 비워 둡니다."
+ },
+ "allPlatformsBlocked": "모든 디바이스 플랫폼이 차단됩니다. 플랫폼 구성을 사용하려면 플랫폼 등록을 허용하세요.",
+ "blockManufacturerPlaceHolder": "제조업체 이름",
+ "blockManufacturersHeader": "차단된 제조업체",
+ "cannotRestrict": "제한이 지원되지 않습니다.",
+ "configurationDescription": "디바이스를 등록하기 위해 충족해야 하는 플랫폼 구성 제한을 지정합니다. 등록 후 준수 정책을 사용하여 디바이스를 제한할 수 있습니다. 버전을 major.minor.build로 정의합니다. 버전 제한은 회사 포털로 등록된 디바이스에만 적용됩니다. Intune은 기본적으로 디바이스를 개인 소유로 분류합니다. 디바이스를 회사 소유로 분류하려면 추가 작업이 필요합니다.",
+ "configurationDescriptionLabel": "등록 제한 설정에 대해 자세히 알아보기",
+ "configurations": "플랫폼 구성",
+ "deviceManufacturer": "장치 제조업체",
+ "header": "디바이스 유형 제한",
+ "info": "등록할 수 있는 플랫폼, 버전 및 관리 유형을 정의합니다.",
+ "manufacturer": "제조업체",
+ "max": "최대",
+ "maxVersion": "최대 버전",
+ "min": "최소",
+ "minVersion": "최소 버전",
+ "newPlatforms": "새 플랫폼을 허용했습니다. 플랫폼 구성 업데이트를 고려하세요.",
+ "personal": "개인적으로 소유함",
+ "platform": "플랫폼",
+ "platformDescription": "다음 플랫폼의 등록을 허용할 수 있습니다. 지원하지 않을 플랫폼만 차단합니다. 허용된 플랫폼에 대해 추가 등록 제한을 구성할 수 있습니다.",
+ "platformSettings": "플랫폼 설정",
+ "platforms": "플랫폼 선택",
+ "platformsSelected": "{0}개의 플랫폼 선택됨",
+ "type": "유형",
+ "versions": "버전",
+ "versionsRange": "최소/최대 범위 허용:",
+ "windowsTooltip": "모바일 디바이스 관리를 통해 등록을 제한합니다. PC 에이전트 설치를 제한하지 않습니다. Windows 10 및 Windows 11 버전만 지원됩니다. Windows 8.1을 허용하려면 버전을 비워 두세요."
+ },
+ "Priority": {
+ "saved": "제한 우선 순위를 저장했습니다."
+ },
+ "Row": {
+ "announce": "우선 순위: {0}, 이름: {1}, 할당: {2}"
+ },
+ "Table": {
+ "deployed": "배포됨",
+ "name": "이름",
+ "priority": "우선 순위"
},
- "block": "디바이스를 비규격으로 표시",
- "lockDevice": "잠금 디바이스(로컬 작업)",
- "lockDeviceWithPasscode": "잠금 디바이스(로컬 작업)",
- "noAction": "작업 없음",
- "noActionRow": "작업이 없습니다. '추가'를 선택하여 작업을 추가하세요.",
- "pushNotification": "최종 사용자에게 푸시 알림 보내기",
- "remoteLock": "원격으로 비규격 디바이스 잠금",
- "removeSourceAccessProfile": "소스 액세스 프로필 제거",
- "retire": "비규격 디바이스 사용 중지",
- "wipe": "초기화",
- "emailNotification": "최종 사용자에게 메일 보내기"
- },
- "WIPPinRequirements": {
- "WipLowercaseCharacterPinRequirements": {
- "allow": "PIN에 소문자 사용 허용",
- "notAllow": "PIN에 소문자 사용 허용 안 함",
- "requireAtLeastOne": "PIN에 소문자를 하나 이상 사용해야 함"
- },
- "WipSpecialCharacterPinRequirements": {
- "allow": "PIN에 특수 문자 사용 허용",
- "notAllow": "PIN에 특수 문자 사용 허용 안 함",
- "requireAtLeastOne": "PIN에 특수 문자를 하나 이상 사용해야 함"
- },
- "WipUppercaseCharacterPinRequirements": {
- "allow": "PIN에 대문자 사용 허용",
- "notAllow": "PIN에 대문자 사용 허용 안 함",
- "requireAtLeastOne": "PIN에 대문자를 하나 이상 사용해야 함"
- }
- }
+ "Type": {
+ "limit": "디바이스 개수 제한",
+ "type": "디바이스 유형 제한"
+ },
+ "allUsers": "모든 사용자",
+ "androidRestrictions": "Android 제한 사항",
+ "create": "제한 만들기",
+ "defaultLimitDescription": "그룹 멤버 자격에 상관없이 모든 사용자에게 우선 순위가 가장 낮게 적용된 기본 디바이스 개수 제한입니다.",
+ "defaultTypeDescription": "그룹 멤버 자격에 상관없이 모든 사용자에게 우선 순위가 가장 낮게 적용된 기본 디바이스 유형 제한입니다.",
+ "defaultWhfbDescription": "그룹 멤버 자격과 상관없이 모든 사용자에게 우선 순위가 가장 낮게 적용된 기본 비즈니스용 Windows Hello 구성입니다.",
+ "deleteMessage": "영향을 받는 사용자가 할당된 다음 최고 우선 순위 제한으로 제한되거나 다른 제한이 할당되지 않은 경우 기본 제한으로 제한됩니다.",
+ "deleteTitle": "{0} 제한을 삭제할까요?",
+ "descriptionHint": "제한 설정을 통해 특징이 지정된 비즈니스 사용 목적 또는 제한 수준을 간단히 설명합니다.",
+ "edit": "편집 제한",
+ "info": "디바이스는 사용자에게 할당된 우선 순위가 가장 높은 등록 제한을 준수해야 합니다. 디바이스 제한을 끌어서 우선 순위를 변경할 수 있습니다. 기본 제한은 모든 사용자에 대해 가장 낮은 우선 순위이며 사용자가 없는 등록을 제어합니다. 기본 제한을 편집할 수 있지만 삭제할 수는 없습니다.",
+ "iosRestrictions": "iOS 제한 사항",
+ "mDM": "MDM",
+ "macRestrictions": "MacOS 제한 사항",
+ "maxVersion": "최대 버전",
+ "minVersion": "최소 버전",
+ "nameHint": "제한 집합 식별을 위해 표시되는 주 특성입니다.",
+ "noAssignmentsStatusBar": "하나 이상의 그룹에 제한을 할당하세요. [속성]을 클릭하세요.",
+ "notFound": "제한을 찾을 수 없습니다. 이미 삭제되었을 수 있습니다.",
+ "personallyOwned": "개인적으로 소유한 디바이스",
+ "restriction": "제한",
+ "restrictionLowerCase": "제한",
+ "restrictionType": "Restriction type",
+ "selectType": "제한 유형 선택",
+ "selectValidation": "플랫폼 선택",
+ "typeHint": "[디바이스 유형 제한]을 선택하여 디바이스 속성을 제한합니다. [디바이스 개수 제한]을 선택하여 사용자당 디바이스 수를 제한합니다.",
+ "typeRequired": "제한 유형이 필요합니다.",
+ "winPhoneRestrictions": "Windows Phone 제한 사항",
+ "windowsRestrictions": "Windows 제한 사항"
+ },
+ "Titles": {
+ "ChromeOs": {
+ "devices": "Chrome OS 디바이스"
+ },
+ "ManagedDesktop": {
+ "adminContacts": "관리자 연락처",
+ "appPackaging": "앱 패키징",
+ "devices": "장치",
+ "feedback": "피드백",
+ "gettingStarted": "시작",
+ "messages": "메시지",
+ "onlineResources": "온라인 리소스",
+ "serviceRequests": "서비스 요청",
+ "settings": "설정",
+ "tenantEnrollment": "테넌트 등록"
+ },
+ "actions": "비준수에 대한 작업",
+ "advancedExchangeSettings": "Exchange Online 설정",
+ "advancedThreatProtection": "엔드포인트용 Microsoft Defender",
+ "allApps": "모든 앱",
+ "allDevices": "모든 디바이스",
+ "androidFotaDeployments": "Android FOTA 배포",
+ "appBundles": "앱 번들",
+ "appCategories": "앱 범주",
+ "appConfigPolicies": "앱 구성 정책",
+ "appInstallStatus": "앱 설치 상태",
+ "appLicences": "앱 라이선스",
+ "appProtectionPolicies": "앱 보호 정책",
+ "appProtectionStatus": "앱 보호 상태",
+ "appSelectiveWipe": "앱 선택 초기화",
+ "appleVppTokens": "Apple VPP 토큰",
+ "apps": "앱",
+ "assign": "할당",
+ "assignedPermissions": "할당된 권한",
+ "assignedRoles": "할당된 역할",
+ "autopilotDeploymentReport": "Autopilot 배포(미리 보기)",
+ "brandingAndCustomization": "사용자 지정",
+ "cartProfiles": "카트 프로필",
+ "certificateConnectors": "인증서 커넥터",
+ "chromeEnterprise": "Chrome Enterprise",
+ "compliancePolicies": "준수 정책",
+ "complianceScriptManagement": "스크립트",
+ "complianceScriptManagementPreview": "스크립트(미리 보기)",
+ "complianceSettings": "준수 정책 설정",
+ "conditionStatements": "조건 문",
+ "conditions": "위치",
+ "configMgr": "Microsoft Endpoint Configuration Manager",
+ "configurationProfiles": "구성 프로필",
+ "configurationProfilesPreview": "구성 프로필(미리 보기)",
+ "connectorsAndTokens": "커넥터 및 토큰",
+ "corporateDeviceIdentifiers": "회사 디바이스 식별자",
+ "customAttributes": "사용자 지정 특성",
+ "customNotifications": "사용자 지정 알림",
+ "deploymentSettings": "배포 설정",
+ "derivedCredentials": "파생된 자격 증명",
+ "deviceActions": "디바이스 작업",
+ "deviceCategories": "디바이스 범주",
+ "deviceCleanUp": "디바이스 정리 규칙",
+ "deviceEnrollmentManagers": "디바이스 등록 관리자",
+ "deviceExecutionStatus": "디바이스 상태",
+ "deviceLimitEnrollmentRestrictions": "등록 디바이스 개수 제한",
+ "deviceTypeEnrollmentRestrictions": "등록 디바이스 플랫폼 제한",
+ "devices": "디바이스",
+ "discoveredApps": "검색된 앱",
+ "embeddedSIM": "eSIM 셀룰러 프로필(미리 보기)",
+ "enrollDevices": "디바이스 등록",
+ "enrollmentFailures": "등록 오류",
+ "enrollmentNotifications": "등록 알림(미리 보기)",
+ "enrollmentRestrictions": "등록 제한",
+ "exchangeActiveSync": "Exchange ActiveSync",
+ "exchangeServiceConnectors": "Exchange 서비스 커넥터",
+ "failuresForFeatureUpdates": "기능 업데이트 실패(미리 보기)",
+ "failuresForQualityUpdates": "Windows 긴급 업데이트 오류(미리 보기)",
+ "featureFlighting": "기능 플라이팅",
+ "featureUpdateDeployments": "Windows 10 이상의 기능 업데이트(미리 보기)",
+ "flighting": "플라이팅",
+ "fotaUpdate": "펌웨어 무선 업데이트",
+ "groupPolicy": "관리 템플릿",
+ "groupPolicyAnalytics": "그룹 정책 분석",
+ "helpSupport": "도움말 및 지원",
+ "helpSupportReplacement": "도움말 및 지원({0})",
+ "iOSAppProvisioning": "iOS 앱 프로비저닝 프로필",
+ "incompleteUserEnrollments": "사용자 등록 미완료",
+ "intuneRemoteAssistance": "원격 도움말(미리 보기)",
+ "iosUpdates": "iOS/iPadOS용 정책 업데이트",
+ "legacyPcManagement": "레거시 PC 관리",
+ "macOSSoftwareUpdate": "macOS용 업데이트 정책",
+ "macOSSoftwareUpdateAccountSummaries": "macOS 디바이스 설치 상태",
+ "macOSSoftwareUpdateCategorySummaries": "소프트웨어 업데이트 요약",
+ "macOSSoftwareUpdateStateSummaries": "업데이트",
+ "managedGooglePlay": "관리되는 Google Play",
+ "msfb": "비즈니스용 Microsoft 스토어",
+ "myPermissions": "내 권한",
+ "notifications": "알림",
+ "officeApps": "Office 앱",
+ "officeProPlusPolicies": "Office 앱 관련 정책",
+ "onPremise": "온-프레미스",
+ "onPremisesConnector": "Exchange ActiveSync 온-프레미스 커넥터",
+ "onPremisesDeviceAccess": "Exchange ActiveSync 디바이스",
+ "onPremisesManageAccess": "Exchange 온-프레미스 액세스",
+ "outOfDateIosDevices": "iOS 디바이스에 대한 설치 오류",
+ "overview": "개요",
+ "partnerDeviceManagement": "파트너 디바이스 관리",
+ "perUpdateRingDeploymentState": "업데이트 링 배포 상태별",
+ "permissions": "사용 권한",
+ "platformApps": "앱 {0}개",
+ "platformDevices": "디바이스 {0}개",
+ "platformEnrollment": "{0} 등록",
+ "policies": "정책",
+ "previewMDMDevices": "모든 관리되는 디바이스(미리 보기)",
+ "profiles": "프로필",
+ "properties": "속성",
+ "reports": "보고서",
+ "retireNoncompliantDevices": "비규격 디바이스 사용 중지",
+ "retireNoncompliantDevicesPreview": "Retire noncompliant devices (preview)",
+ "role": "역할",
+ "scriptManagement": "스크립트",
+ "securityBaselines": "보안 기준",
+ "serviceToServiceConnector": "Exchange Online 커넥터",
+ "shellScripts": "셸 스크립트",
+ "teamViewerConnector": "TeamViewer Connector",
+ "telecomeExpenseManagement": "Telecom Expense Management",
+ "tenantAdmin": "테넌트 관리",
+ "tenantAdministration": "테넌트 관리",
+ "termsAndConditions": "사용 약관",
+ "titles": "제목",
+ "troubleshootSupport": "문제 해결 및 지원",
+ "user": "사용자",
+ "userExecutionStatus": "사용자 상태",
+ "warranty": "보증 공급업체",
+ "wdacSupplementalPolicies": "S 모드 추가 정책",
+ "windows10DriverUpdate": "Windows 10 이상용 드라이버 업데이트(미리 보기)",
+ "windows10QualityUpdate": "Windows 10 이상의 품질 업데이트(미리 보기)",
+ "windows10UpdateRings": "Windows 10 이상용 링 업데이트",
+ "windows10XPolicyFailures": "Windows 10X 정책 실패",
+ "windowsEnterpriseCertificate": "Windows 엔터프라이즈 인증서",
+ "windowsManagement": "PowerShell 스크립트",
+ "windowsSideLoadingKeys": "Windows 테스트용 로드 키",
+ "windowsSymantecCertificate": "Windows DigiCert 인증서",
+ "windowsThreatReport": "위협 에이전트 상태"
+ },
+ "ScopeTypes": {
+ "allDevices": "모든 디바이스",
+ "allUsers": "모든 사용자",
+ "allUsersAndDevices": "모든 사용자 및 모든 디바이스",
+ "selectedGroups": "선택된 그룹"
+ },
+ "OfficeApplicationType": {
+ "access": "Access",
+ "bing": "Microsoft Search를 기본값으로 사용",
+ "excel": "Excel",
+ "groove": "OneDrive(Groove)",
+ "lync": "비즈니스용 Skype",
+ "oneDrive": "OneDrive 데스크톱",
+ "oneNote": "OneNote",
+ "outlook": "Outlook",
+ "powerPoint": "PowerPoint",
+ "publisher": "Publisher",
+ "teams": "Teams",
+ "word": "Word"
+ },
+ "ApplicableDeviceType": {
+ "iPad": "iPad",
+ "iPhoneAndIPod": "iPhone 및 iPod"
+ },
+ "Assignment": {
+ "AutoUpdateMode": {
+ "default": "기본값",
+ "header": "업데이트 우선 순위",
+ "postponed": "연기됨",
+ "priority": "높은 우선 순위"
+ },
+ "DeliveryOptimizationPriority": {
+ "backgroundNormal": "배경",
+ "displayText": "{0}에서 콘텐츠 다운로드",
+ "foreground": "전경",
+ "header": "배달 최적화 우선 순위"
+ },
+ "RestartGracePeriod": {
+ "allowSnooze": "사용자가 다시 시작 알림을 다시 알리도록 허용",
+ "countdownDialog": "다시 시작하기 전에 카운트다운 다시 시작 대화 상자를 표시할 시간(분) 선택",
+ "durationInMinutes": "디바이스 다시 시작 유예 기간(분)",
+ "snoozeDurationInMinutes": "다시 알림 기간(분) 선택"
+ },
+ "SoftwareInstallationTime": {
+ "TimeZone": {
+ "label": "표준 시간대",
+ "local": "디바이스 표준 시간대",
+ "utc": "UTC"
+ },
+ "dateAndTimeLabel": "날짜 및 시간",
+ "deadlineTimeColumnLabel": "설치 최종 기한",
+ "deadlineTimeDatePickerErrorMessage": "선택한 날짜는 사용 가능한 날짜 이후여야 합니다.",
+ "deadlineTimeLabel": "앱 설치 최종 기한",
+ "defaultTime": "가능하면 빨리",
+ "infoText": "이 애플리케이션은 배포된 후 바로 사용할 수 있지만 아래에서 사용 가능 시간을 지정하는 경우는 예외입니다. 필수 애플리케이션인 경우 최종 설치 기한을 지정할 수 있습니다.",
+ "specificTime": "특정 날짜 및 시간",
+ "startTimeColumnLabel": "사용 가능",
+ "startTimeDatePickerErrorMessage": "선택한 날짜는 마감 날짜 이전이어야 합니다.",
+ "startTimeLabel": "앱 가용성"
+ },
+ "restartGracePeriodHeader": "유예 기간 다시 시작",
+ "restartGracePeriodLabel": "디바이스 다시 시작 유예 기간",
+ "summaryTitle": "최종 사용자 환경"
+ },
+ "EnrollmentType": {
+ "devicesWithEnrollment": "관리 디바이스",
+ "devicesWithoutEnrollment": "관리되는 앱"
+ },
+ "PolicySet": {
+ "appManagement": "애플리케이션 관리",
+ "assignments": "할당",
+ "basics": "기본",
+ "deviceEnrollment": "디바이스 등록",
+ "deviceManagement": "디바이스 관리",
+ "scopeTags": "범위 태그",
+ "appConfigurationTitle": "앱 구성 정책",
+ "appProtectionTitle": "앱 보호 정책",
+ "appTitle": "앱",
+ "iOSAppProvisioningTitle": "iOS 앱 프로비저닝 프로필",
+ "deviceLimitRestrictionTitle": "디바이스 개수 제한",
+ "deviceTypeRestrictionTitle": "디바이스 유형 제한",
+ "enrollmentStatusSettingTitle": "등록 상태 페이지",
+ "windowsAutopilotDeploymentProfileTitle": "Windows Autopilot 배포 프로필",
+ "deviceComplianceTitle": "디바이스 준수 정책",
+ "deviceConfigurationTitle": "디바이스 구성 프로필",
+ "powershellScriptTitle": "Powershell 스크립트"
+ },
+ "AzureIAMCommon": {
+ "CountryNames": {
+ "countryNameNR": "나우루",
+ "countryNameBH": "바레인",
+ "countryNameZA": "남아프리카 공화국",
+ "countryNameJO": "요르단",
+ "countryNameSD": "수단",
+ "countryNameNU": "니우에",
+ "countryNameCZ": "체코 공화국",
+ "countryNameLT": "리투아니아",
+ "countryNameTK": "토켈라우",
+ "countryNameEC": "에콰도르",
+ "countryNameVU": "바누아투",
+ "countryNameUG": "우간다",
+ "countryNameLI": "리히텐슈타인",
+ "countryNameHK": "홍콩 특별 행정구",
+ "countryNameGH": "가나",
+ "countryNameSA": "사우디아라비아",
+ "countryNamePG": "파푸아뉴기니",
+ "countryNameBW": "보츠와나",
+ "countryNameDG": "디에고 가르시아 섬",
+ "countryNameIN": "인도",
+ "countryNameHN": "온두라스",
+ "countryNameRO": "루마니아",
+ "countryNameKZ": "카자흐스탄",
+ "countryNameLC": "세인트 루시아",
+ "countryNameGE": "조지아",
+ "countryNameTT": "트리니다드 토바고",
+ "countryNameMP": "북마리아나 제도",
+ "countryNameMV": "몰디브",
+ "countryNameFI": "핀란드",
+ "countryNameNO": "노르웨이",
+ "countryNameEE": "에스토니아",
+ "countryNameVE": "베네수엘라",
+ "countryNameUZ": "우즈베키스탄",
+ "countryNameME": "몬테네그로",
+ "countryNameTJ": "타지키스탄",
+ "countryNameAW": "아루바",
+ "countryNameFR": "프랑스",
+ "countryNameOM": "오만",
+ "countryNameAO": "앙골라",
+ "countryNameIT": "이탈리아",
+ "countryNameAZ": "아제르바이잔",
+ "countryNameKG": "키르기스스탄",
+ "countryNameWF": "월리스 푸투나",
+ "countryNameTL": "동티모르",
+ "countryNameFK": "포클랜드 제도(Islas Malvinas)",
+ "countryNameGY": "가이아나",
+ "countryNameSS": "남수단",
+ "countryNameMM": "미얀마",
+ "countryNameHT": "아이티",
+ "countryNameSY": "시리아",
+ "countryNameMD": "몰도바",
+ "countryNameVC": "세인트 빈센트 그레나딘",
+ "countryNameID": "인도네시아",
+ "countryNameRE": "리유니언",
+ "countryNameER": "에리트리아",
+ "countryNameMK": "북마케도니아",
+ "countryNameTG": "토고",
+ "countryNamePF": "프랑스령 폴리네시아",
+ "countryNameKY": "케이맨 제도",
+ "countryNameIO": "영국령 인도양 식민지",
+ "countryNameRU": "러시아",
+ "countryNameMA": "모로코",
+ "countryNameAU": "오스트레일리아",
+ "countryNameBO": "볼리비아",
+ "countryNameVA": "교황청(바티칸 시국)",
+ "countryNameVG": "영국령 버진 아일랜드",
+ "countryNameFM": "미크로네시아",
+ "countryNameAQ": "남극 대륙",
+ "countryNameZM": "잠비아",
+ "countryNameBR": "브라질",
+ "countryNameIS": "아이슬란드",
+ "countryNamePE": "페루",
+ "countryNameBG": "불가리아",
+ "countryNamePR": "푸에르토리코",
+ "countryNameGI": "지브롤터",
+ "countryNameBS": "바하마",
+ "countryNameJE": "저지",
+ "countryNameMO": "마카오 특별 행정구",
+ "countryNameRW": "르완다",
+ "countryNameAS": "미국령 사모아",
+ "countryNameBQ": "보네르, 신트외스타티우스 및 사바",
+ "countryNameMF": "세인트마틴",
+ "countryNameTM": "투르크메니스탄",
+ "countryNameML": "말리",
+ "countryNameTO": "통가",
+ "countryNameNC": "뉴칼레도니아",
+ "countryNameAC": "어센션 섬",
+ "countryNameBN": "브루나이",
+ "countryNameBD": "방글라데시",
+ "countryNameMW": "말라위",
+ "countryNameGM": "감비아",
+ "countryNameGA": "가봉",
+ "countryNameCA": "캐나다",
+ "countryNameSH": "세인트 헬레나",
+ "countryNameYT": "마요트",
+ "countryNameMN": "몽골",
+ "countryNamePA": "파나마",
+ "countryNameCM": "카메룬",
+ "countryNameNE": "니제르",
+ "countryNameCW": "퀴라소",
+ "countryNameJP": "일본",
+ "countryNameCY": "키프로스",
+ "countryNameCD": "콩고 민주 공화국",
+ "countryNameTN": "튀니지",
+ "countryNameTR": "터키",
+ "countryNameWS": "사모아",
+ "countryNameSE": "스웨덴",
+ "countryNameXK": "코소보",
+ "countryNameKH": "캄보디아",
+ "countryNamePL": "폴란드",
+ "countryNameDZ": "알제리",
+ "countryNameLR": "라이베리아",
+ "countryNameSO": "소말리아",
+ "countryNameDM": "도미니카",
+ "countryNameEG": "이집트",
+ "countryNameGF": "프랑스령 기아나",
+ "countryNameNZ": "뉴질랜드",
+ "countryNamePS": "팔레스타인 자치 정부",
+ "countryNameIL": "이스라엘",
+ "countryNameSL": "시에라리온",
+ "countryNameGR": "그리스",
+ "countryNameNG": "나이지리아",
+ "countryNameMR": "모리타니",
+ "countryNameVI": "미국령 버진 아일랜드",
+ "countryNameGQ": "적도 기니",
+ "countryNameMX": "멕시코",
+ "countryNameDJ": "지부티",
+ "countryNameGN": "기니",
+ "countryNameCN": "중국",
+ "countryNameMZ": "모잠비크",
+ "countryNameBV": "부베 섬",
+ "countryNameNF": "노퍽 섬",
+ "countryNameTZ": "탄자니아",
+ "countryNameAI": "앵귈라",
+ "countryNameGS": "사우스 조지아 및 사우스 샌드위치 제도",
+ "countryNameRS": "세르비아",
+ "countryNameCC": "코코스 제도",
+ "countryNameNA": "나미비아",
+ "countryNameDE": "독일",
+ "countryNameCG": "콩고 공화국",
+ "countryNameKW": "쿠웨이트",
+ "countryNameMH": "마셜 제도",
+ "countryNameVN": "베트남",
+ "countryNameBY": "벨라루스",
+ "countryNameMY": "말레이시아",
+ "countryNameST": "상투메 프린시페",
+ "countryNameLS": "레소토",
+ "countryNameBI": "부룬디",
+ "countryNameTD": "차드",
+ "countryNameCX": "크리스마스 섬",
+ "countryNameIR": "이란",
+ "countryNameTV": "투발루",
+ "countryNameGW": "기니비사우",
+ "countryNameUA": "우크라이나",
+ "countryNameCU": "쿠바",
+ "countryNameCO": "콜롬비아",
+ "countryNameNI": "니카라과",
+ "countryNameHR": "크로아티아",
+ "countryNameSC": "세이셸",
+ "countryNameNL": "네덜란드",
+ "countryNameUM": "미국령 군소 제도",
+ "countryNameIM": "맨 섬",
+ "countryNameFJ": "피지",
+ "countryNameSR": "수리남",
+ "countryNameGT": "과테말라",
+ "countryNameSM": "산마리노",
+ "countryNameLA": "라오스",
+ "countryNameGB": "영국",
+ "countryNameBB": "바베이도스",
+ "countryNameSI": "슬로베니아",
+ "countryNameAM": "아르메니아",
+ "countryNameAR": "아르헨티나",
+ "countryNamePM": "생피에르앤드미클롱",
+ "countryNameTF": "프랑스령 남부와 남극지역",
+ "countryNameDO": "도미니카 공화국",
+ "countryNameZW": "짐바브웨",
+ "countryNameMQ": "마르티니크",
+ "countryNamePT": "포르투갈",
+ "countryNameCF": "중앙 아프리카 공화국",
+ "countryNameBE": "벨기에",
+ "countryNameKM": "코모로",
+ "countryNameLY": "리비아",
+ "countryNameIE": "아일랜드",
+ "countryNameKP": "북한",
+ "countryNameGG": "건지",
+ "countryNameSK": "슬로바키아",
+ "countryNameTC": "터크스 케이커스 제도",
+ "countryNameNP": "네팔",
+ "countryNameBF": "부르키나 파소",
+ "countryNameYE": "예멘",
+ "countryNameBA": "보스니아 헤르체고비나",
+ "countryNameGP": "과들루프",
+ "countryNameMS": "몬트세라트",
+ "countryNameCL": "칠레",
+ "countryNameIQ": "이라크",
+ "countryNameSJ": "스발바르제도-얀마웬섬",
+ "countryNameAX": "포클랜드 제도",
+ "countryNameKE": "케냐",
+ "countryNameGU": "괌",
+ "countryNameBM": "버뮤다",
+ "countryNameFO": "페로 제도",
+ "countryNameBL": "생바르텔레미 섬",
+ "countryNameLB": "레바논",
+ "countryNameJM": "자메이카",
+ "countryNameAF": "아프가니스탄",
+ "countryNameES": "스페인",
+ "countryNameMC": "모나코",
+ "countryNameSG": "싱가포르",
+ "countryNameAL": "알바니아",
+ "countryNameSN": "세네갈",
+ "countryNameSZ": "스와질란드",
+ "countryNameBZ": "벨리즈",
+ "countryNameCI": "코트디부아르",
+ "countryNameTW": "대만",
+ "countryNameUY": "우루과이",
+ "countryNameCK": "쿡 제도",
+ "countryNameTH": "태국",
+ "countryNameHM": "허드 섬 및 맥도널드 제도",
+ "countryNameGD": "그레나다",
+ "countryNameUS": "미국",
+ "countryNameAT": "오스트리아",
+ "countryNameKR": "한국",
+ "countryNamePK": "파키스탄",
+ "countryNameDK": "덴마크",
+ "countryNameSV": "엘살바도르",
+ "countryNamePW": "팔라우",
+ "countryNameET": "에티오피아",
+ "countryNameMG": "마다가스카르",
+ "countryNameCR": "코스타리카",
+ "countryNameLU": "룩셈부르크",
+ "countryNameQA": "카타르",
+ "countryNameBT": "부탄",
+ "countryNameSB": "솔로몬 제도",
+ "countryNameAE": "아랍에미리트",
+ "countryNameAD": "안도라",
+ "countryNameCV": "카보베르데",
+ "countryNameAG": "앤티가 바부다",
+ "countryNameMU": "모리셔스",
+ "countryNameHU": "헝가리",
+ "countryNameSX": "상마르탱 섬",
+ "countryNameCH": "스위스",
+ "countryNamePN": "핏케언 제도",
+ "countryNameGL": "그린란드",
+ "countryNamePH": "필리핀",
+ "countryNameMT": "몰타",
+ "countryNameKN": "세인트 크리스토퍼 네비스",
+ "countryNameLK": "스리랑카",
+ "countryNameKI": "키리바시",
+ "countryNameBJ": "베냉",
+ "countryNameLV": "라트비아",
+ "countryNamePY": "파라과이"
+ }
+ }
}
diff --git a/Documentation/Strings-nl.json b/Documentation/Strings-nl.json
index e8b5293..4bcf425 100644
--- a/Documentation/Strings-nl.json
+++ b/Documentation/Strings-nl.json
@@ -1,1842 +1,4 @@
{
- "InstallContextType": {
- "device": "Apparaat",
- "deviceContext": "Apparaatcontext",
- "user": "Gebruiker",
- "userContext": "Gebruikerscontext"
- },
- "WipPolicySettings": {
- "addNetworkBoundary": "Netwerkgrens toevoegen",
- "addNetworkBoundaryButton": "Netwerkgrens toevoegen...",
- "allowWindowsSearch": "Toestaan dat Windows Search versleutelde bedrijfsgegevens en Store-apps doorzoekt",
- "authoritativeIpRanges": "De lijst IP-bereiken van ondernemingen is bindend (geen automatische detectie toepassen)",
- "authoritativeProxyServers": "De lijst Proxyservers van onderneming is bindend (geen automatische detectie toepassen)",
- "boundaryType": "Grenstype",
- "cloudResources": "Cloudresources",
- "corporateIdentity": "Bedrijfsidentiteit",
- "dataRecoveryCert": "Een DRA-certificaat (Data Recovery Agent) uploaden zodat versleutelde gegevens kunnen worden hersteld",
- "editNetworkBoundary": "Netwerkgrens bewerken",
- "enrollmentState": "Inschrijvingsstatus",
- "iPv4Ranges": "IPv4-bereiken",
- "iPv6Ranges": "IPv6-bereiken",
- "internalProxyServers": "Interne proxyservers",
- "maxInactivityTime": "De maximale hoeveelheid tijd (in minuten) die het apparaat niet-actief mag zijn voordat het apparaat wordt vergrendeld met een pincode of wachtwoord",
- "maxPasswordAttempts": "Het aantal toegestane mislukte authenticaties voordat een apparaat wordt gewist",
- "mdmDiscoveryUrl": "Detectie-URL voor MDM",
- "mdmRequiredSettingsInfo": "Dit beleid is alleen van toepassing op Windows 10 Anniversary Edition en hoger. Met dit beleid word gebruikgemaakt van Windows Information Protection (WIP) voor beveiliging.",
- "minimumPinLength": "Het minimum aantal tekens instellen dat is vereist voor de pincode",
- "name": "Naam",
- "networkBoundariesGridEmptyText": "De netwerkgrenzen die u hebt toegevoegd, worden hier weergegeven",
- "networkBoundary": "De grens van het netwerk",
- "networkDomainNames": "Netwerkdomeinen",
- "neutralResources": "Neutrale resources",
- "passportForWork": "Windows Hello voor Bedrijven gebruiken als methode om u aan te melden bij Windows",
- "pinExpiration": "Opgeven gedurende welke periode (in dagen) een pincode mag worden gebruikt voordat de gebruiker deze van het systeem moet wijzigen",
- "pinHistory": "Het aantal oude pincodes dat kan worden toegewezen aan een gebruikersaccount opgeven die niet opnieuw kunnen worden gebruikt.",
- "pinLowercaseLetters": "Het gebruik van kleine letters in de pincode voor Windows Hello voor Bedrijven configureren",
- "pinSpecialCharacters": "Het gebruik van speciale tekens in de pincode voor Windows Hello voor Bedrijven configureren",
- "pinUppercaseLetters": "Het gebruik van hoofdletters in de pincode voor Windows Hello voor Bedrijven configureren",
- "protectUnderLock": "Voorkomen dat bedrijfsgegevens toegankelijk zijn via apps wanneer het apparaat is vergrendeld. Dit is alleen van toepassing op Windows 10 Mobile",
- "protectedDomainNames": "Beveiligde domeinen",
- "proxyServers": "Proxyservers",
- "requireAppPin": "App-pincode uitschakelen wanneer de pincode van het apparaat wordt beheerd",
- "requiredSettings": "Verplichte instellingen",
- "requiredSettingsInfo": "Als u het bereik wijzigt of dit beleid verwijdert, worden de bedrijfsgegevens ontsleuteld.",
- "revokeOnMdmHandoff": "Toegang tot beveiligde gegevens intrekken wanneer het apparaat wordt ingeschreven bij MDM",
- "revokeOnUnenroll": "Versleutelingssleutels intrekken bij het ongedaan maken van de registratie",
- "rmsTemplateForEdp": "De sjabloon-id opgeven die moet worden gebruikt voor Azure RMS",
- "showWipIcon": "Het pictogram voor ondernemingsgegevensbescherming weergeven",
- "type": "Type",
- "useRmsForWip": "Azure RMS voor WIP gebruiken",
- "value": "Waarde",
- "weRequiredSettingsInfo": "Dit beleid is alleen van toepassing op Windows 10-makersupdate en hoger. Met dit beleid word gebruikgemaakt van Windows Information Protection (WIP) en Windows MAM voor beveiliging.",
- "wipProtectionMode": "Modus Windows Information Protection",
- "withEnrollment": "Met inschrijving",
- "withoutEnrollment": "Zonder inschrijving"
- },
- "EdgeAppConfig": {
- "AllowedURLs": {
- "title": "Toegestane URL's",
- "tooltip": "Geef de sites op waartoe uw gebruikers toegang hebben in hun werkcontext. Er zijn geen andere sites toegestaan. U kunt ervoor kiezen om een lijst met toegestane/geblokkeerde apps te configureren, maar niet beide. "
- },
- "ApplicationProxyRedirection": {
- "header": "Toepassingsproxy",
- "title": "Toepassingsproxy omleiden",
- "tooltip": "Schakel de omleiding van toepassingsproxy's in om gebruikers toegang te geven tot koppelingen van het bedrijf en on-premises web-apps."
- },
- "BlockedURLs": {
- "title": "Geblokkeerde URL's",
- "tooltip": "Geef de sites op die voor uw gebruikers zijn geblokkeerd in hun werkcontext. Alle andere sites zijn toegestaan. U kunt ervoor kiezen om een lijst met toegestane/geblokkeerde apps te configureren, maar niet beide. "
- },
- "Bookmarks": {
- "header": "Beheerde bladwijzers",
- "tooltip": "Voer een lijst met URL-adressen in die beschikbaar zijn voor uw gebruikers wanneer ze gebruikmaken van Microsoft Edge in hun werkcontext.",
- "uRL": "URL"
- },
- "HomepageURL": {
- "header": "Beheerde startpagina",
- "title": "Snelkoppelings-URL voor startpagina",
- "tooltip": "Configureer een snelkoppeling voor de startpagina die voor gebruikers als het eerste pictogram onder de zoekbalk wordt weergegeven wanneer een nieuw tabblad wordt geopend in Microsoft Edge."
- },
- "PersonalContext": {
- "label": "Beperkte sites omleiden naar persoonlijke context",
- "tooltip": "Configureer of gebruikers mogen overschakelen naar hun persoonlijke context om beperkte sites te openen."
- }
- },
- "AzureIAM": {
- "AdrsUserActionSelectionWarning": {
- "conditions": "Voorwaarden waarvoor apparaatregistratie is vereist, zijn niet beschikbaar voor de gebruikersactie Apparaten registreren of toevoegen.",
- "message": "Alleen 'Meervoudige verificatie vereisen' kan worden gebruikt in beleid dat is gemaakt voor de gebruikersactie 'Apparaten registreren of toevoegen'.{0}"
- },
- "AuthContext": {
- "Included": {
- "none": "Er zijn geen cloud-apps,-acties of -verificatiecontexten geselecteerd",
- "plural": "{0} verificatiecontexten opgenomen",
- "singular": "1 verificatiecontext opgenomen"
- },
- "InfoBlade": {
- "createTitle": "Verificatiecontext toevoegen",
- "descPlaceholder": "Beschrijving voor de verificatiecontext toevoegen",
- "modifyTitle": "Verificatiecontext wijzigen",
- "namePlaceholder": "Bijvoorbeeld Vertrouwde locatie, Vertrouwd apparaat, Sterke autorisatie",
- "publishDesc": "Met Publiceren naar apps maakt u de verificatiecontext beschikbaar voor apps. Voer de publicatie uit zodra u het beleid voor voorwaardelijke toegang voor de tag hebt geconfigureerd. [Meer informatie][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150966",
- "publishLabel": "Publiceren naar apps",
- "titleDesc": "Configureer een verificatiecontext die wordt gebruikt om toepassingsgegevens en acties te beveiligen. Gebruik namen en beschrijvingen die toepassingsbeheerders kunnen begrijpen. [Meer informatie][1]\n[1]https://go.microsoft.com/fwlink/?linkid=2150965"
- },
- "Notify": {
- "failure": "Kan {0} niet bijwerken",
- "modifying": "{0} wijzigen",
- "success": "{0} is bijgewerkt"
- },
- "WhatIf": {
- "selected": "De verificatiecontext is opgenomen"
- },
- "addNewStepUp": "Nieuwe verificatiecontext",
- "checkBoxInfo": "De verificatiecontext selecteren waarop dit beleid van toepassing is",
- "configure": "Verificatiecontexten configureren",
- "createCA": "Beleid voor voorwaardelijke toegang toewijzen aan de verificatiecontext",
- "dataGrid": "Lijst met verificatiecontexten",
- "description": "Beschrijving",
- "documentation": "Documentatie",
- "getStarted": "Aan de slag",
- "label": "Verificatiecontext (preview)",
- "menuLabel": "Verificatiecontext (preview)",
- "name": "Naam",
- "noAuthContextSet": "Er zijn geen verificatiecontexten",
- "noData": "Er zijn geen verificatiecontexten om weer te geven",
- "selectionInfo": "Verificatiecontext wordt gebruikt om toepassingsgegevens en acties te beveiligen in apps als SharePoint en Microsoft Cloud App Security.",
- "step": "Stap",
- "tabDescription": "Beheer de verificatiecontext om gegevens en acties in uw apps te beveiligen. [Meer informatie][1]\n[1]https://go.microsoft.com/fwlink/?linkid=2150965",
- "tagResources": "Labelen van resources met een verificatiecontext"
- },
- "AuthenticationStrength": {
- "Mode": {
- "deviceBasedPush": "Microsoft Authenticator (aanmelding via telefoon)",
- "deviceBasedPushFido2X509Certificate": "Microsoft Authenticator (aanmelding via telefoon) + Fido 2 + verificatie op basis van certificaten",
- "deviceBasedPushX509CertificateSingleFactor": "Microsoft Authenticator (aanmelding via telefoon) + Fido 2 + verificatie op basis van certificaten (enkele factor)",
- "email": "Eenmalig toegangscode e-mailen",
- "emailOtp": "E-mail-OTP",
- "federatedMultiFactor": "Federatieve multi-factor",
- "federatedSingleFactor": "Federatieve enkelvoudige factor",
- "federatedSingleFactorFederatedMultiFactor": "Federatieve enkelvoudige factor + federatieve multi-factor",
- "fido2": "FIDO 2-beveiligingssleutel",
- "fido2X509CertificateSingleFactor": "FIDO 2-beveiligingssleutel + verificatie op basis van certificaten (enkele factor)",
- "hardwareOath": "Hardware-OTP",
- "hardwareOathX509CertificateSingleFactor": "Hardware-OTP + verificatie op basis van certificaten (enkele factor)",
- "microsoftAuthenticatorPSIX509CertificateSingleFactor": "Microsoft Authenticator (aanmelding via telefoon) + verificatie op basis van certificaten (enkele factor)",
- "microsoftAuthenticatorPsi": "Microsoft Authenticator (aanmelding via telefoon)",
- "microsoftAuthenticatorPush": "Microsoft Authenticator (pushmelding)",
- "microsoftAuthenticatorPushX509CertificateSingleFactor": "Microsoft Authenticator (pushmelding) + verificatie op basis van certificaten (enkele factor)",
- "none": "Geen",
- "password": "Wachtwoord",
- "passwordDeviceBasedPush": "Wachtwoord + Microsoft Authenticator (aanmelden via telefoon)",
- "passwordFido2": "Wachtwoord + FIDO 2-beveiligingssleutel",
- "passwordHardwareOath": "Wachtwoord + hardware-OTP",
- "passwordMicrosoftAuthenticatorPSI": "Wachtwoord + Microsoft Authenticator (aanmelden via telefoon)",
- "passwordMicrosoftAuthenticatorPush": "Wachtwoord + Microsoft Authenticator (pushmelding)",
- "passwordSms": "Wachtwoord + sms",
- "passwordSoftwareOath": "Wachtwoord en software-OTP",
- "passwordTemporaryAccessPassMultiUse": "Wachtwoord + tijdelijke toegangspas (meerdere toepassingen)",
- "passwordTemporaryAccessPassOneTime": "Wachtwoord + tijdelijke toegangspas (eenmalig gebruik)",
- "passwordVoice": "Wachtwoord + Spraak",
- "sms": "Sms-bericht",
- "smsSignIn": "Aanmelding via sms-bericht",
- "smsX509CertificateSingleFactor": "Sms + verificatie op basis van certificaten (enkele factor)",
- "softwareOath": "Software-OTP",
- "softwareOathX509CertificateSingleFactor": "Verificatie op basis van software-OTP en certificaten (enkele factor)",
- "temporaryAccessPassMultiUse": "Tijdelijke toegangspas (meerdere toepassingen)",
- "temporaryAccessPassMultiUseX509CertificateSingleFactor": "Tijdelijke toegangspas (meerdere toepassingen) + verificatie op basis van certificaten (enkele factor)",
- "temporaryAccessPassOneTime": "Tijdelijke toegangspas (eenmalig gebruik)",
- "temporaryAccessPassOneTimeX509CertificateSingleFactor": "Tijdelijke toegangspas (eenmalig gebruik) + verificatie op basis van certificaten (enkele factor)",
- "voice": "Voice",
- "voiceX509CertificateSingleFactor": "Verificatie op basis van spraak + certificaat (enkele factor)",
- "windowsHelloForBusiness": "Windows Hello voor Bedrijven",
- "x509CertificateMultiFactor": "Verificatie op basis van certificaten (multi-factor)",
- "x509CertificateSingleFactor": "Verificatie op basis van certificaten (enkele factor)"
- }
- },
- "CAS": {
- "BuiltinPolicy": {
- "Option": {
- "blockDownloads": "Downloads blokkeren (preview)",
- "monitorOnly": "Alleen bewaken (preview)",
- "protectDownloads": "Downloads beveiligen (preview)",
- "useCustomControls": "Aangepast beleid gebruiken..."
- },
- "ariaLabel": "Kies het soort app-beheer voor voorwaardelijke toegang dat moet worden toegepast"
- }
- },
- "ChooseApplications": {
- "Grid": {
- "appIdAria": "App-id: {0}"
- },
- "LowerGrid": {
- "ariaLabel": "Lijst met geselecteerde cloud-apps"
- },
- "UpperGrid": {
- "ariaLabel": "Lijst met cloud-apps die overeenkomen met de zoekterm"
- }
- },
- "ChooseLocations": {
- "Validation": {
- "failed": "U moet ten minste één locatie kiezen bij Geselecteerde locaties.",
- "selector": "U moet ten minste één locatie kiezen"
- }
- },
- "ClientApp": {
- "Clients": {
- "Validation": {
- "failed": "U moet ten minste één van de volgende clients selecteren"
- }
- }
- },
- "ClientConditionsInfo": {
- "browserAndModern": "Dit beleid geldt alleen voor de browser en moderne verificatie-apps. Schakel de voorwaarde voor client-apps in om het beleid toe te passen op alle client-apps en selecteer alle client-apps.",
- "classicExperience": "Sinds dit beleid is gemaakt, is de standaardconfiguratie van client-apps bijgewerkt.",
- "legacyAuth": "Als deze optie niet is geconfigureerd, is het beleid nu van toepassing op alle client-apps, inclusief moderne en klassieke machtigingen."
- },
- "CloudAppFilterBlade": {
- "AssignmentFilter": {
- "header": "Kenmerk",
- "placeholder": "Een kenmerk kiezen"
- },
- "Configure": {
- "infoBalloon": "Configureer de app-filters waarop u een beleid wilt toepassen."
- },
- "NoPermissions": {
- "learnMoreAria": "Meer informatie over machtigingen voor aangepaste beveiligingskenmerken.",
- "message": "U beschikt niet over de machtigingen die nodig zijn om aangepaste beveiligingskenmerken te gebruiken."
- },
- "gridHeader": "Met behulp van aangepaste beveiligingskenmerken kunt u de opbouwfunctie voor regels of het tekstvak regelsyntaxis gebruiken om de filterregels te maken of te bewerken. In de preview worden alleen kenmerken van het type Tekenreeks ondersteund. Kenmerken van het type Geheel getal of Booleaanse waarde worden niet weergegeven.",
- "learnMoreAria": "Meer informatie over het gebruik van de opbouwfunctie voor regels en het tekstvak voor de syntaxis.",
- "noAttributes": "Er zijn geen aangepaste kenmerken beschikbaar om op te filteren. U moet enkele attributen configureren om dit filter te gebruiken.",
- "title": "Edit filter (Preview)"
- },
- "CloudAppsUserActions": {
- "any": "Een cloud-app of actie",
- "infoBalloon": "Cloud-app of gebruikersactie die u wilt testen. Bijvoorbeeld SharePoint Online",
- "learnMore": "Toegangsbeheer op basis van alle of specifieke cloud-apps of acties.",
- "learnMoreB2C": "Toegangsbeheer op basis van alle of specifieke cloud-apps.",
- "title": "Cloud-apps of acties"
- },
- "CloudappsSelectionBlade": {
- "Excluded": {
- "gridAria": "Lijst met uitgesloten cloud-apps"
- },
- "Filter": {
- "configured": "Geconfigureerd",
- "label": "Edit filter (Preview)",
- "with": "{0} met {1}"
- },
- "Included": {
- "gridAria": "Lijst met opgenomen cloud-apps"
- },
- "Validation": {
- "authContext": "Met de optie Verificatiecontext moet u minimaal één subitem configureren.",
- "selectApps": "'{0}' moet zijn geconfigureerd",
- "selector": "Selecteer ten minste één app.",
- "userActions": "Met de optie Gebruikersacties moet u minimaal één subitem configureren."
- }
- },
- "DeviceState": {
- "LearnMore": {
- "message": "Control user access when the device the user is signing-in from is not \"Hybrid Azure AD joined\" or \"marked as compliant\".\n '{0}' has been deprecated. Use '{1}' instead."
- }
- },
- "Errors": {
- "notFound": "Het beleid is niet gevonden of is verwijderd.",
- "notFoundDetailed": "Het beleid {0} bestaat niet meer. Mogelijk is het verwijderd."
- },
- "NamedLocation": {
- "Form": {
- "CountryLookup": {
- "ariaLabel": "Zoekmethode voor landen",
- "gps": "Locatie bepalen op basis van GPS-coördinaten",
- "info": "Wanneer de locatievoorwaarde van een beleid voor voorwaardelijke toegang is geconfigureerd, worden gebruikers in de Authenticator-app gevraagd om hun GPS-locatie te delen. ",
- "ip": "Locatie bepalen op basis van IP-adres (alleen IPv4)"
- },
- "Header": {
- "new": "Nieuwe locatie ({0})",
- "update": "Updatelocatie ({0})"
- },
- "IP": {
- "learn": "Configureer IPv4- en IPv6-bereiken voor de benoemde locatie.\n[Meer informatie][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
- },
- "Include": {
- "infoBalloon": "Onbekende landen/regio's zijn IP-adressen die niet zijn gekoppeld aan een bepaald land of bepaalde regio. [Meer informatie][1]\n\nDit zijn onder andere:\n* IPv6-adressen\n* IPv4-adressen zonder directe toewijzing\n[1]: https://aka.ms/canamedlocations\n",
- "label": "Onbekende landen/regio's opnemen"
- },
- "Name": {
- "empty": "De naam mag niet leeg zijn",
- "placeholder": "Deze locatie een naam geven"
- },
- "PrivateLink": {
- "learn": "Maak een nieuwe benoemde locatie met Private Links voor Azure AD. \n[Meer informatie][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
- },
- "Search": {
- "countries": "Landen zoeken",
- "names": "Namen zoeken",
- "privateLinks": "Persoonlijke koppelingen zoeken"
- },
- "Trusted": {
- "label": "Als vertrouwde locatie markeren"
- },
- "enter": "Voer een nieuw IPv4- of IPv6-bereik in",
- "example": "bijvoorbeeld: 40.77.182.32/27 of 2a01:111::/32"
- },
- "Label": {
- "addCountries": "Locatie landen",
- "addIpRange": "Locatie van IP-bereiken",
- "addPrivateLink": "Persoonlijke koppelingen van Azure"
- },
- "Notification": {
- "Create": {
- "Failed": {
- "description": "Kan geen nieuwe locatie maken ({0})",
- "title": "Maken is mislukt"
- },
- "InProgress": {
- "description": "Nieuwe locatie maken ({0})",
- "title": "Item wordt gemaakt"
- },
- "Success": {
- "description": "Nieuwe locatie is gemaakt ({0})",
- "title": "Maken is voltooid"
- }
- },
- "Delete": {
- "Failed": {
- "description": "Kan de locatie niet verwijderen ({0})",
- "title": "Het verwijderen is mislukt"
- },
- "InProgress": {
- "description": "Locatie verwijderen ({0})",
- "title": "Bezig met verwijderen"
- },
- "Success": {
- "description": "De locatie is verwijderd ({0})",
- "title": "Het verwijderen is voltooid"
- }
- },
- "Update": {
- "Failed": {
- "description": "Kan de locatie niet bijwerken ({0})",
- "title": "Het bijwerken is mislukt"
- },
- "InProgress": {
- "description": "Locatie bijwerken ({0})",
- "title": "Bijwerken wordt uitgevoerd"
- },
- "Success": {
- "description": "De locatie is bijgewerkt ({0})",
- "title": "Het bijwerken is voltooid"
- }
- }
- },
- "PrivateLinks": {
- "grid": "Lijst met persoonlijke koppelingen"
- },
- "Trusted": {
- "title": "Vertrouwd type",
- "trusted": "Vertrouwd"
- },
- "Type": {
- "all": "Alle typen",
- "countries": "Landen/regio's",
- "ipRanges": "IP-bereiken",
- "privateLinks": "Persoonlijke koppelingen",
- "title": "Locatietype"
- },
- "iPRangeInvalidError": "De waarde moet een geldig IPv4- of IPv6-bereik zijn.",
- "iPRangeLinkOrSiteLocalError": "IP-netwerk gedetecteerd als een lokaal adres van koppeling of van een site.",
- "iPRangeOctetError": "Het IP-netwerk mag niet beginnen met 0 of 255.",
- "iPRangePrefixError": "Het IP-netwerkvoorvoegsel moet liggen tussen /{0} en /{1}",
- "iPRangePrivateError": "IP-netwerk gedetecteerd als privéadres."
- },
- "Policies": {
- "Grid": {
- "aria": "Lijst met beleidsregels voor voorwaardelijke toegang"
- },
- "countText": "{0} van {1} beleidsregels gevonden",
- "countTextSingular": "{0} van 1 beleidsregel gevonden",
- "search": "Beleidsregels zoeken"
- },
- "Policy": {
- "Condition": {
- "ServicePrincipalRisk": {
- "description": "Risiconiveaus voor service-principal configureren die nodig zijn om beleid af te dwingen",
- "infoBalloonContent": "Risico voor service-principal configureren om beleid toe te passen op geselecteerd(e) risiconiveau(s)",
- "title": "RIsico voor service-principal"
- }
- }
- },
- "PolicyControlAuthStrength": {
- "MultiFactorAuthentication": {
- "description": "Combinaties van methoden die voldoen aan sterke verificatie, zoals wachtwoord en sms",
- "displayName": "Multi-factor authentication (MFA)"
- },
- "Passwordless": {
- "description": "Methoden zonder wachtwoord die voldoen aan sterke verificatie, zoals Microsoft Authenticator ",
- "displayName": "MFA zonder wachtwoord"
- },
- "PhishingResistant": {
- "description": "Phishing-resistente, wachtwoordloze methoden voor de sterkste authenticatie, zoals FIDO2-beveiligingssleutel",
- "displayName": "MFA die bestendig tegen phishing is"
- }
- },
- "PolicyControlFedAuthMethod": {
- "certificate": "Certificaatverificatie",
- "infoBubble": "Geef een vereiste verificatiemethode op die moet worden voldaan door de federatieprovider, bijvoorbeeld ADFS.",
- "multifactor": "Meervoudige verificatie",
- "require": "Federatieve verificatiemethode vereisen (preview)",
- "whatIfFormat": "{0} - {1}"
- },
- "PolicyState": {
- "off": "Uit",
- "on": "Aan",
- "reportOnly": "Alleen rapporteren"
- },
- "PolicyTemplates": {
- "Devices": {
- "description": "Selecteer de categorie Apparatenbeleidssjabloon om inzicht te krijgen in apparaten die toegang hebben tot het netwerk. Controleer op naleving en integriteitsstatus voordat u toegang verleent.",
- "name": "Apparaten"
- },
- "Identities": {
- "description": "Selecteer de sjablooncategorie Identiteitenbeleid om elke identiteit te verifiëren en te beveiligen met sterke verificatie in alle digitale activa.",
- "name": "Identiteiten"
- },
- "Summary": {
- "CloudApps": {
- "allCloudApps": "Alle apps",
- "office365": "Office 365",
- "registerSecurityInfo": "Beveiligingsgegevens registreren"
- },
- "Conditions": {
- "androidAndIOS": "Apparaatplatform: Android en iOS",
- "anyDevice": "Elk apparaat behalve Android, iOS, Windows en Mac",
- "anyDeviceStateExceptHybrid": "Elke apparaatstatus behalve conform en hybride Microsoft Azure Active Directory-gekoppeld",
- "anyLocation": "Elke locatie behalve vertrouwd",
- "browserMobileDesktop": "Client-apps: browser, mobiele apps en desktopclients",
- "exchangeActiveSync": "Client-apps: Exchange Active Sync, andere clients",
- "windowsAndMac": "Apparaatplatform: Windows en Mac"
- },
- "Devices": {
- "anyDevice": "Elk apparaat"
- },
- "Grant": {
- "appProtectionPolicy": "Beleid voor app-beveiliging vereisen",
- "approvedClientApp": "Goedgekeurde client-apps vereisen",
- "blockAccess": "Toegang blokkeren",
- "mfa": "Meervoudige verificatie vereisen",
- "passwordChange": "Wachtwoordwijziging vereisen",
- "requireCompliantDevice": "Vereisen dat het apparaat moet worden gemarkeerd als compatibel",
- "requireHybridAzureADDevice": "Hybride Azure AD-gekoppeld apparaat vereisen"
- },
- "Session": {
- "appEnforcedRestrictions": "Door apps gehandhaafde beperkingen gebruiken",
- "signInFrequency": "Aanmeldingsfrequentie en nooit permanente browsersessie"
- },
- "UsersAndGroups": {
- "allUsers": "Alle gebruikers",
- "directoryRoles": "Directory-rollen behalve huidige beheerder",
- "globalAdmin": "Globale beheerder",
- "noGuestAndAdmins": "Alle gebruikers behalve gast en extern, globale beheerders, huidige beheerder"
- },
- "azureManagement": "Azure-beheer",
- "deviceFilters": "Filters voor apparaten",
- "devicePlatforms": "Apparaatplatforms"
- },
- "TemplateId": {
- "AppEnforcedRestrictions": {
- "description": "Toegang tot SharePoint-, OneDrive- en Exchange-inhoud van niet-beheerde apparaten blokkeren of beperken.",
- "name": "CA014: Door de toepassing afgedwongen beperkingen gebruiken voor niet-beheerde apparaten",
- "title": "Door de toepassing afgedwongen beperkingen gebruiken voor niet-beheerde apparaten"
- },
- "ApprovedClientApps": {
- "description": "Om gegevensverlies te voorkomen, kunnen organisaties de toegang tot goedgekeurde moderne verificatieclient-apps beperken met Intune-app-beveiliging.",
- "name": "CA012: Goedgekeurde client-apps en app-beveiliging vereisen",
- "title": "Goedgekeurde client-apps en app-beveiliging vereisen"
- },
- "BlockAccessOnUnknowns": {
- "description": "Gebruikers hebben geen toegang tot bedrijfsbronnen wanneer het apparaattype onbekend of niet wordt ondersteund.",
- "name": "CA010: Toegang blokkeren voor onbekend of niet-ondersteund apparaatplatform",
- "title": "Toegang blokkeren voor onbekend of niet-ondersteund apparaatplatform"
- },
- "BlockLegacyAuth": {
- "description": "Verouderde verificatie-eindpunten blokkeren die kunnen worden gebruikt om meervoudige verificatie te omzeilen. ",
- "name": "CA003: verouderde verificatie blokkeren",
- "title": "Verouderde verificatie blokkeren"
- },
- "NoPersistentBrowserSession": {
- "description": "Beveilig gebruikerstoegang op niet-beheerde apparaten door te voorkomen dat browsersessies aangemeld blijven nadat de browser is gesloten en door een aanmeldingsfrequentie in te stellen op 1 uur.",
- "name": "CA011: Geen permanente browsersessie",
- "title": "Geen permanente browsersessie"
- },
- "RequireCompliantOrHybridADAdmins": {
- "description": "Vereisen dat bevoegde beheerders alleen toegang hebben tot resources wanneer ze een compatibel of hybride Azure AD-gekoppeld apparaat gebruiken.",
- "name": "CA009: Conformiteit van hybride Microsoft Azure Active Directory-gekoppeld apparaat vereisen voor beheerders",
- "title": "Conformiteit van hybride Microsoft Azure Active Directory-gekoppeld apparaat vereisen voor beheerders"
- },
- "RequireCompliantOrHybridADAllUsers": {
- "description": "Beveilig de toegang tot bedrijfsbronnen door gebruikers te verplichten een beheerd apparaat te gebruiken of meervoudige verificatie uit te voeren. (alleen macOS of Windows)",
- "name": "CA013: Conformiteit van hybride Microsoft Azure Active Directory-gekoppeld apparaat of meervoudige verificatie vereisen voor alle gebruikers",
- "title": "Conformiteitb van hybride Microsoft Azure Active Directory-gekoppeld apparaat of meervoudige verificatie vereisen voor alle gebruikers"
- },
- "RequireMFAAllUsers": {
- "description": "Meervoudige verificatie vereisen voor alle gebruikersaccounts om het risico op inbreuk te verminderen.",
- "name": "CA004: Meervoudige verificatie vereisen voor alle gebruikers",
- "title": "Meervoudige verificatie vereisen voor alle gebruikers"
- },
- "RequireMFAForAdmins": {
- "description": "Meervoudige verificatie vereisen voor bevoegde beheerdersaccounts om het risico op inbreuk te beperken. Dit beleid is gericht op dezelfde rollen als de standaardbeveiliging.",
- "name": "CA001: Meervoudige verificatie vereisen voor beheerders",
- "title": "Meervoudige verificatie vereisen voor beheerders"
- },
- "RequireMFAForAzureManagement": {
- "description": "Vereis meervoudige verificatie om uitgebreide toegang tot Azure-resources te beveiligen.",
- "name": "CA006: Meervoudige verificatie vereisen voor Azure-beheer",
- "title": "Meervoudige verificatie vereisen voor Azure-beheer"
- },
- "RequireMFAForGuestAccess": {
- "description": "Vereisen dat gastgebruikers meervoudige verificatie uitvoeren bij toegang tot uw bedrijfsbronnen.",
- "name": "CA005: Meervoudige verificatie vereisen voor gasttoegang",
- "title": "Meervoudige verificatie vereisen voor gasttoegang"
- },
- "RequireMFAForRiskySignIn": {
- "description": "Meervoudige verificatie vereisen als wordt gedetecteerd dat het aanmeldingsrisico gemiddeld of hoog is. (Hiervoor is een Azure AD Premium 2-licentie vereist)",
- "name": "CA007: Meervoudige verificatie vereisen voor riskante aanmeldingen",
- "title": "Meervoudige verificatie vereisen voor riskante aanmeldingen"
- },
- "RequirePasswordChangeForHighRiskUsers": {
- "description": "Vereisen dat de gebruiker het wachtwoord wijzigt als het gebruikersrisico hoog is. (Hiervoor is een Azure AD Premium 2-licentie vereist)",
- "name": "CA008: Wachtwoordwijziging vereisen voor gebruikers met een hoog risico",
- "title": "Wachtwoordwijziging vereisen voor gebruikers met een hoog risico"
- },
- "RequireSecurityInfo": {
- "description": "Beveilig wanneer en hoe gebruikers zich registreren voor meervoudige verificatie via Microsoft Azure Active Directory en het wachtwoord van de selfservice. ",
- "name": "CA002: Registratie van beveiligingsgegevens beveiligen",
- "title": "Registratie van beveiligingsgegevens beveiligen"
- }
- },
- "TemplateState": {
- "BlockAccessOnUnknowns": {
- "title": "Als u dit beleid inschakelt, voorkomt u toegang tot een onbekend apparaattype. Overweeg om eerst de modus Alleen rapport te gebruiken totdat u hebt bevestigd dat dit geen invloed heeft op uw gebruikers."
- },
- "BlockLegacyAuth": {
- "description": "Overweeg om de modus Alleen rapport te gebruiken om mee te beginnen totdat u hebt bevestigd dat dit geen invloed heeft op uw gebruikers.",
- "title": "Als u dit beleid inschakelt, wordt verouderde verificatie voor al uw gebruikers geblokkeerd."
- },
- "RequireCompliantOrHybridADAdmins": {
- "Description": {
- "on": "Overweeg om de modus Alleen rapport te gebruiken om mee te beginnen totdat u hebt bevestigd dat dit geen invloed heeft op uw bevoegde gebruikers.",
- "reportOnly": "Beleidsregels in de modus Alleen rapporteren waarvoor compatibele apparaten zijn vereist, kunnen gebruikers op Mac, iOS en Android vragen om een apparaatcertificaat te selecteren tijdens de beleidsevaluatie, zelfs als apparaatnaleving niet wordt afgedwongen. Deze prompts kunnen worden herhaald totdat het apparaat compatibel is gemaakt."
- },
- "Title": {
- "on": "Als u dit beleid inschakelt, wordt elke toegang voor bevoegde gebruikers voorkomen, tenzij u een beheerd apparaat gebruikt, zoals compatibel of hybride Azure AD-gekoppeld. Zorg ervoor dat u uw nalevingsbeleid hebt geconfigureerd of hybride Azure AD-configuratie hebt ingeschakeld voordat u deze inschakelt.",
- "reportOnly": "Zorg ervoor dat u uw nalevingsbeleid hebt geconfigureerd of hybride Azure AD-configuratie hebt ingeschakeld voordat u deze inschakelt. "
- }
- },
- "RequireCompliantOrHybridADAllUsers": {
- "Description": {
- "on": "Dit beleid is van invloed op alle gebruikers, met uitzondering van de huidige aangemelde beheerder. Overweeg om de modus Alleen rapport te gebruiken om mee te beginnen totdat u hebt bevestigd dat dit geen invloed heeft op uw gebruikers."
- },
- "Title": {
- "on": "Sluit uzelf niet buiten! Zorg ervoor dat uw apparaat compatibel is of hybride Azure AD-gekoppeld is of dat u meervoudige verificatie hebt geconfigureerd. ",
- "reportOnly": "Beleidsregels in de modus Alleen rapporteren waarvoor compatibele apparaten zijn vereist, kunnen gebruikers op Mac, iOS en Android vragen om een apparaatcertificaat te selecteren tijdens de beleidsevaluatie, zelfs als apparaatnaleving niet wordt afgedwongen. Deze prompts kunnen herhaald worden totdat het apparaat voldoet aan het beleid."
- }
- },
- "RequireMfa": {
- "description": "Als u accounts voor noodtoegang of Azure AD Connect gebruikt om de on-premises objecten te synchroniseren, moet u deze accounts na het maken mogelijk uitsluiten van dit beleid."
- },
- "RequireMfaAdmins": {
- "description": "Houd er rekening mee dat het huidige beheerdersaccount automatisch wordt uitgesloten, maar alle andere accounts worden beveiligd bij het maken van beleid. U kunt de modus Alleen rapporteren gebruiken om te beginnen.",
- "title": "Sluit uzelf niet buiten! Dit beleid heeft invloed op de Azure Portal."
- },
- "RequireMfaAllUsers": {
- "description": "U kunt de modus alleen rapporteren gebruiken om te beginnen totdat u deze wijziging aan al uw gebruikers hebt doorgegeven.",
- "title": "Als u dit beleid inschakelt, wordt meervoudige verificatie voor al uw gebruikers afgedwongen."
- },
- "RequireSecurityInfo": {
- "description": "Controleer uw configuratie om deze accounts te beveiligen op basis van de behoeften van uw bedrijf.",
- "title": "De volgende gebruikers en rollen zijn uitgesloten van dit beleid: gasten en externe gebruikers, globale beheerders, huidige beheerder"
- }
- },
- "basics": "Basisinformatie",
- "clientApps": "Client-apps",
- "cloudApps": "Cloud-apps",
- "cloudAppsOrActions": "Cloud-apps of -acties ",
- "conditions": "Voorwaarden ",
- "createNewPolicy": "Nieuw beleid maken van sjablonen (preview)",
- "createPolicy": "Beleid maken",
- "currentUser": "Huidige gebruiker",
- "customizeBuild": "Uw build aanpassen",
- "customizeTemplate": "Sjabloonlijsten worden aangepast op basis van het type beleid dat u wilt maken",
- "excludedDevicePlatform": "Uitgesloten apparaatplatformen",
- "excludedDirectoryRoles": "Uitgesloten directoryrollen",
- "excludedLocation": "Uitgesloten directoryrollen",
- "excludedUsers": "Uitgesloten gebruikers",
- "grantControl": "Beheer toekennen ",
- "includeFilteredDevice": "Gefilterde apparaten opnemen in het beleid",
- "includedDevicePlatform": "Opgenomen apparaatplatformen",
- "includedDirectoryRoles": "Opgenomen directoryrollen",
- "includedLocation": "Inbegrepen locatie",
- "includedUsers": "Opgenomen gebruikers",
- "legacyAuthenticationClients": "Clients met verouderde verificatie",
- "namePolicy": "Uw beleid een naam geven",
- "next": "Volgende",
- "policyName": "Beleidsnaam",
- "policyState": "Beleidsstatus",
- "policySummary": "Beleidsoverzicht",
- "policyTemplate": "Beleidssjabloon",
- "previous": "Vorige",
- "reviewAndCreate": "Beoordelen en maken",
- "riskLevels": "Risiconiveaus",
- "selectATemplate": "Een sjabloon selecteren",
- "selectTemplate": "Sjabloon selecteren",
- "selectTemplateCategory": "Een sjablooncategorie selecteren",
- "selectTemplateRecommendation": "We raden de volgende sjablonen aan op basis van uw antwoord",
- "sessionControl": "Sessiebesturingselement ",
- "signInFrequency": "Aanmeldingsfrequentie",
- "signInRisk": "Aanmeldingsrisico",
- "template": "Sjabloon ",
- "templateCategory": "Sjablooncategorie",
- "userRisk": "Gebruikersrisico",
- "usersAndGroups": "Gebruikers en groepen ",
- "viewPolicySummary": "Beleidsoverzicht weergeven "
- },
- "SSM": {
- "MemberSelector": {
- "description": "Gebruikers en groepen"
- },
- "Notification": {
- "Migration": {
- "error": "Migreren van instellingen voor Continue toegangsevaluatie naar beleid voor voorwaardelijke toegang is mislukt",
- "inProgress": "Instellingen voor Continue toegangsevaluatie migreren",
- "success": "Migreren van instellingen voor Continue toegangsevaluatie naar beleid voor voorwaardelijke toegang is geslaagd",
- "successDescription": "Ga door naar het beleid voor voorwaardelijke toegang om de gemigreerde instellingen te bekijken in het zojuist gemaakte beleid met de naam 'CA-beleid gemaakt uit CAE-instellingen'."
- },
- "error": "Kan de instellingen voor Continue toegangsevaluatie niet bijwerken",
- "inProgress": "Instellingen voor Continue toegangsevaluatie bijwerken",
- "success": "Instellingen voor Continue toegangsevaluatie zijn bijgewerkt"
- },
- "PreviewOptions": {
- "disable": "Preview uitschakelen",
- "enable": "Preview inschakelen"
- },
- "StrictLocationEnforcement": {
- "infoContent1": "Er kunnen door Azure AD en een resourceprovider verschillende IP-adressen worden gezien vanaf hetzelfde clientapparaat vanwege een niet-overeenkomende netwerkpartitie of IPv4/IPv6. Door de strikte handhaving van de locatie wordt het beleid voor voorwaardelijke toegang afgedwongen op basis van de IP-adressen die worden gezien door Azure AD en de resourceprovider.",
- "infoContent2": "Voor een maximale beveiliging wordt aangeraden alle IP-adressen op te nemen die door zowel Azure AD als de resourceprovider kunnen worden gezien in uw benoemde-locatiebeleid en de modus Strikte locatieafdwinging in te schakelen.",
- "label": "Strikte locatieafdwinging",
- "title": "Aanvullende afdwingingsmodi"
- },
- "bladeTitle": "Continue toegangsevaluatie",
- "description": "Wanneer de toegang van een gebruiker wordt verwijderd of als het IP-adres van een client wordt gewijzigd, wordt toegang tot resources en toepassingen in bijna realtime automatisch geblokkeerd met Continue toegangsevaluatie. ",
- "migrateLabel": "Migreren",
- "migrationError": "De migratie is mislukt vanwege de volgende fout: {0}",
- "migrationInfo": "CAE-instelling is verplaatst onder Voorwaardelijke toegang UX, voer een migratie uit met de bovenstaande knop Migreren en configureer deze met het beleid voor voorwaardelijke toegang vanaf nu. Klik hier voor meer informatie.",
- "noLicenseMessage": "Instellingen voor slim sessiebeheer beheren met Azure AD Premium",
- "optionsPickerTitle": "Continue toegangsevaluatie inschakelen/uitschakelen",
- "upsellInfo": "U kunt de instellingen op deze pagina niet meer wijzigen en alle instellingen hier moeten worden genegeerd. Uw vorige instelling wordt bewaard. U kunt uw CAE-instellingen voortaan configureren onder Voorwaardelijke toegang. Klik hier voor meer informatie."
- },
- "SessionLifetime": {
- "PersistentBrowser": {
- "Error": {
- "notAllApps": "Een beleid voor permanente browsersessies werkt alleen correct als de optie Alle cloud-apps is geselecteerd. Werk uw selectie cloud-apps bij."
- },
- "Option": {
- "always": "Altijd permanent",
- "help": "In een permanente browsersessie kunnen gebruikers aangemeld blijven na het sluiten en opnieuw openen van hun browservenster.
\n\n- Deze instelling werkt correct als de optie Alle cloud-apps is geselecteerd
\n- Dit heeft geen invloed op de levensduur van tokens of de instelling van aanmeldingsfrequentie.
\n- Hiermee wordt het beleid Optie om aangemeld te blijven weergeven in de aangepaste huisstijl genegeerd.
\n- De optie Nooit permanent overschrijft eventuele permanente claims van eenmalige aanmelding die zijn doorgegeven vanuit federatieve verificatieservices.
\n- Nooit permanent voorkomt eenmalige aanmelding op mobiele apparaten in en tussen toepassingen en de mobiele browser van de gebruiker.
\n",
- "label": "Permanente browsersessie",
- "never": "Nooit permanent"
- },
- "Warning": {
- "allApps": "Permanente browsersessies werken alleen correct als de optie Alle cloud-apps is geselecteerd. Werk uw selectie cloud-apps bij. Klik hier voor meer informatie."
- }
- },
- "SignInFrequency": {
- "Aria": {
- "units": "Uren of dagen",
- "value": "Frequentie"
- },
- "Option": {
- "Day": {
- "plural": "{0} dagen",
- "singular": "1 dag"
- },
- "Hour": {
- "plural": "{0} uur",
- "singular": "1 uur"
- },
- "daysOption": "Dagen",
- "everytime": "Elke keer",
- "help": "De tijdsperiode voordat een gebruiker wordt gevraagd om zich opnieuw aan te melden als hij/zij probeert een resource te openen. De standaardinstelling is een lopende telling van 90 dagen. Dit houdt in dat gebruikers wordt gevraagd zich opnieuw te verifiëren wanneer zij voor het eerst weer proberen toegang tot een resource te krijgen nadat zij 90 dagen of langer niet actief zijn geweest op hun computer.",
- "hoursOption": "Uren",
- "label": "Aanmeldingsfrequentie",
- "placeholder": "Eenheden selecteren"
- }
- },
- "mainOption": "Levensduur van sessie wijzigen",
- "mainOptionHelp": "Instellen hoe vaak gebruikers vragen worden gesteld en of browsersessies permanent zijn. Toepassingen die geen moderne verificatieprotocollen ondersteunen, voldoen mogelijk niet aan dit beleid. Neem in dergelijke gevallen contact op met de toepassingsontwikkelaar."
- },
- "SigninRisk": {
- "LearnMore": {
- "message": "Beheer gebruikerstoegang om te reageren op specifieke risiconiveaus voor aanmeldingen."
- }
- },
- "SingleSelectorActive": {
- "failed": "Kan deze gegevens niet laden.",
- "reattempt": "Gegevens laden. Nieuwe poging {0} van {1}."
- },
- "TimeCondition": {
- "Errors": {
- "both": "Ongeldig tijdsbereik voor Opnemen of Uitsluiten.",
- "daysOfWeek": "{0} Geef ten minste één dag van de week op.",
- "endBeforeStart": "{0} Zorg ervoor dat de begindatum/-tijd vóór de einddatum/-tijd ligt.",
- "exclude": "Ongeldig tijdsbereik voor Uitsluiten.",
- "generic": "{0} U moet zowel de dagen van de week als de tijdzone instellen. Als u de optie voor de hele dag niet inschakelt, moet u ook een begin- en eindtijd instellen.",
- "include": "Ongeldig tijdsbereik voor Opnemen.",
- "timeMissing": "{0} Geef een begin- en eindtijd op.",
- "timeZone": "{0} Geef een tijdzone op.",
- "timesAndZone": "{0} Stel een begintijd, eindtijd en tijdzone in."
- }
- },
- "UserActions": {
- "Included": {
- "none": "Er zijn geen cloud-apps of acties geselecteerd",
- "plural": "{0} gebruikersacties zijn opgenomen",
- "singular": "1 gebruikersactie is opgenomen"
- },
- "accessRequirement1": "Niveau 1",
- "accessRequirement2": "Niveau 2",
- "accessRequirement3": "Niveau 3",
- "accessRequirementsLabel": "Toegang tot beveiligde app-gegevens",
- "appsActionsAuthTitle": "Cloud-apps, acties of verificatiecontext",
- "appsOrActionsSelectorInfoBallonText": "Toepassingen die worden geopend of gebruikersacties",
- "appsOrActionsTitle": "Cloud-apps of acties",
- "label": "Gebruikerssacties",
- "mainOptionsLabel": "Selecteren waarop dit beleid van toepassing is",
- "registerOrJoinDevices": "Apparaten registreren of toevoegen",
- "registerSecurityInfo": "Beveiligingsgegevens registreren",
- "selectionInfo": "De actie selecteren waarop dit beleid van toepassing is"
- },
- "UserSelectionBlade": {
- "DirectoryRoles": {
- "ariaLabel": "Directory-rollen kiezen"
- },
- "Excluded": {
- "gridAria": "Lijst met uitgesloten gebruikers"
- },
- "Included": {
- "gridAria": "Lijst met opgenomen gebruikers"
- },
- "Validation": {
- "customRoleIncluded": "Directory-rollen bevat ten minste één aangepaste rol",
- "customRoleSelected": "Er is ten minste één aangepaste rol geselecteerd",
- "failed": "U moet {0} configureren",
- "roles": "U moet ten minste één rol selecteren",
- "usersGroups": "U moet ten minste één gebruiker of groep selecteren"
- },
- "learnMore": "Beheer de toegang op basis van op wie het beleid van toepassing is, zoals gebruikers en groepen, workloadidentiteiten, directoryrollen of externe gasten."
- },
- "ValidationResult": {
- "blockEveryonePolicy": "De beleidsconfiguratie wordt niet ondersteund. Controleer de toewijzingen en besturingselementen.",
- "invalidApplicationCondition": "Ongeldige cloudtoepassingen geselecteerd",
- "invalidClientTypesCondition": "Ongeldige clienttoepassingen geselecteerd",
- "invalidConditions": "Er zijn geen toewijzingen geselecteerd",
- "invalidControls": "Ongeldige besturingselementen geselecteerd",
- "invalidDevicePlatformsCondition": "Ongeldige apparaatplatformen geselecteerd",
- "invalidDevicesCondition": "Ongeldige apparaatconfiguratie. Waarschijnlijk een ongeldige configuratie van '{0}'.",
- "invalidGrantControlPolicy": "Ongeldig verleend besturingselement",
- "invalidLocationsCondition": "Ongeldige locaties geselecteerd",
- "invalidPolicy": "Er zijn geen toewijzingen geselecteerd",
- "invalidSessionControlPolicy": "Ongeldig sessiebesturingselement",
- "invalidSignInRisksCondition": "Ongeldig aanmeldingsrisico geselecteerd",
- "invalidUserRisksCondition": "Ongeldig gebruikersrisico geselecteerd",
- "invalidUsersCondition": "Ongeldige gebruikers geselecteerd",
- "mamPolicyShouldOnlyTargetAndroidOrIosPlatforms": "Het MAM-beleid kan enkel worden toegepast op Android- of iOS-clientplatforms.",
- "notSupportedCombination": "Beleidsconfiguratie wordt niet ondersteund. Meer informatie over ondersteunde beleidsregels.",
- "pending": "Beleid valideren",
- "requireComplianceEveryonePolicy": "De configuratie van het beleid vereist apparaatcompatibiliteit voor alle gebruikers. Controleer de geselecteerde toewijzingen.",
- "success": "Geldig beleid"
- },
- "VpnCert": {
- "Grid": {
- "aria": "Lijst met VPN-certificaten"
- }
- },
- "WarningsInfo": {
- "Controls": {
- "compliantDeviceEnabled": "Sluit uzelf niet buiten. Zorg dat uw apparaat compatibel is.",
- "domainJoinedDeviceEnabled": "Sluit uzelf niet buiten. Controleer of uw apparaat hybride Azure AD-gekoppeld is.",
- "exchangeDisabled": "Exchange ActiveSync biedt alleen ondersteuning voor de besturingselementen voor compatibele apparaten en goedgekeurde client-apps. Klik voor meer informatie.",
- "exchangeDisabled2": "Exchange ActiveSync ondersteunt alleen de besturingselementen Compatibel apparaat, Goedgekeurde client-app en Compatibele client-app. Klik voor meer informatie.",
- "notAvailableForSP": "Sommige besturingselementen zijn niet beschikbaar vanwege de selectie {0} in beleidstoewijzing",
- "requireAuthOrMfa": "{0} kan niet worden gebruikt met {1}",
- "requireMfa": "Overweeg de nieuwe openbare preview-versie van de {0} te testen",
- "requirePasswordChangeEnabled": "Wijziging van wachtwoord vereisen kan alleen worden gebruikt wanneer het beleid is toegewezen aan Alle cloud-apps"
- },
- "Policies": {
- "Linux": {
- "devicePlatformsReportOnlyPolicy": "Met beleid in de modus Alleen rapporteren dat compatibele apparaten vereist, kunt u gebruikers van macOS, iOS, Android en Linux vragen om een certificaat voor het apparaat te selecteren.",
- "excludeDevicePlatforms": "Apparaatplatformen macOS, iOS, Android en Linux uitsluiten van dit beleid.",
- "proceedAnywayDevicePlatforms": "Ga door met de geselecteerde configuratie. Gebruikers van macOS, iOS, Android en Linux moeten mogelijk vragen beantwoorden wanneer het apparaat wordt gecontroleerd op naleving."
- },
- "blockCurrentUserPolicy": "Sluit uzelf niet buiten. U kunt een beleid het beste eerst op een klein aantal gebruikers toepassen om te controleren of de functie werkt zoals verwacht. Ook is het verstandig om ten minste één beheerder uit te sluiten van het beleid. Hierdoor hebt u nog steeds toegang en kunt u een beleid bijwerken als er een wijziging nodig is. Evalueer de betrokken gebruikers en apps.",
- "devicePlatformsReportOnlyPolicy": "Met beleid in de modus Alleen rapport dat compatibele apparaten vereist, kunt u gebruikers van macOS, iOS, en Android vragen om een certificaat voor het apparaat te selecteren.",
- "excludeCurrentUserSelection": "De huidige gebruiker ({0}) uitsluiten van dit beleid.",
- "excludeDevicePlatforms": "Apparaatplatformen macOS, iOS en Android uitsluiten van dit beleid.",
- "proceedAnywayDevicePlatforms": "Ga door met de geselecteerde configuratie. Gebruikers van macOS, iOS en Android moeten mogelijk vragen beantwoorden wanneer het apparaat wordt gecontroleerd op naleving.",
- "proceedAnywaySelection": "Ik begrijp dat mijn account gevolgen ondervindt door dit beleid. Doorgaan."
- },
- "ServicePrincipals": {
- "blockExchange": "Als u Office 365 Exchange Online selecteert, heeft dit ook invloed op apps als OneDrive en Teams",
- "blockPortal": "Sluit uzelf niet buiten. Dit beleid heeft invloed op Azure Portal. Voordat u doorgaat, moet u zorgen dat u of iemand anders toegang blijft houden tot de portal.",
- "blockPortalWithSession": "Sluit uzelf niet buiten. Dit beleid heeft invloed op Azure Portal. Voordat u doorgaat, moet u zorgen dat u of iemand anders toegang blijft houden tot de portal.
Negeer deze waarschuwing als u een beleid voor permanente browsersessies configureert dat alleen goed werkt als de optie Alle cloud-apps is geselecteerd.",
- "blockSharePoint": "Als u SharePoint Online selecteert, heeft dit ook invloed op apps als Microsoft Teams, Planner, Delve, MyAnalytics en Newsfeed.",
- "blockSkype": "Het selecteren van Skype voor Bedrijven Online is ook van invloed op Microsoft Teams.",
- "includeOrExclude": "U kunt het app-filter voor {0} of {1} configureren, maar niet voor beide.",
- "selectAppsNAForSP": "Afzonderlijke cloud-apps kunnen niet worden geselecteerd vanwege de selectie {0} in de beleidstoewijzing",
- "teamsBlocked": "Microsoft Teams wordt ook beïnvloed wanneer apps als SharePoint Online en Exchange Online zijn opgenomen in het beleid."
- },
- "Users": {
- "blockAllUsers": "Sluit uzelf niet buiten. Dit beleid geldt voor alle gebruikers. U kunt een beleid het beste eerst op een klein aantal gebruikers toepassen om te controleren of de functie werkt zoals verwacht."
- }
- },
- "WhatIf": {
- "Device": {
- "AttributesGrid": {
- "aria": "Lijst met kenmerken van het apparaat dat wordt gebruikt bij de aanmelding.",
- "infoBalloon": "Lijst met kenmerken van het apparaat dat wordt gebruikt bij de aanmelding."
- }
- }
- },
- "advancedTabText": "Geavanceerd",
- "allCloudAppsErrorBox": "Alle cloud-apps moet worden geselecteerd wanneer de toekenning Wachtwoordwijziging vereisen is geselecteerd",
- "allDayCheckboxLabel": "Hele dag",
- "allDevicePlatforms": "Elk apparaat",
- "allGuestUserInfoContent": "Inclusief Azure AD B2B-gasten, maar geen SharePoint B2B-gasten",
- "allGuestUserLabel": "Alle gastgebruikers en externe gebruikers",
- "allRiskLevelsOption": "Alle risiconiveaus",
- "allTrustedLocationLabel": "Alle vertrouwde locaties",
- "allUserGroupSetSelectorLabel": "Alle geselecteerde gebruikers en groepen",
- "allUsersString": "Alle gebruikers",
- "and": "{0} EN {1} ",
- "andWithGrouping": "({0}) EN {1} ",
- "androidDisplayName": "Android",
- "anyCloudAppSelection": "Een willekeurige cloud-app",
- "appContextOptionInfoContent": "Aangevraagde verificatietag",
- "appContextOptionLabel": "Aangevraagde verificatietag (preview)",
- "appContextUriPlaceholder": "Voorbeeld: uri:contoso.com:level3",
- "appEnforceInfoBubble": "Er zijn voor door apps gehandhaafde beperkingen mogelijk aanvullende beheerdersconfiguraties vereist in de cloud-apps. De beperkingen zijn alleen van toepassing op nieuwe sessies.",
- "appNotSetSeletorLabel": "0 cloud-apps geselecteerd",
- "applyConditionClientAppInfoBalloonContent": "Client-apps configureren om het beleid toe te passen op specifieke client-apps",
- "applyConditionDevicePlatformInfoBalloonContent": "Apparaatplatformen configureren om het beleid toe te passen op specifieke platformen",
- "applyConditionDeviceStateInfoBalloonContent": "Apparaatstatus configureren om het beleid toe te passen op specifieke apparaatstatussen",
- "applyConditionLocationInfoBalloonContent": "Locaties configureren om het beleid toe te passen op vertrouwde/niet-vertrouwde locaties",
- "applyConditionSigninRiskInfoBalloonContent": "Aanmeldingsrisico configureren om het beleid toe te passen op de geselecteerde risiconiveaus",
- "applyConditionUserRiskInfoBalloonContent": "Gebruikersrisico configureren om het beleid toe te passen op de geselecteerde risiconiveaus",
- "applyConditonLabel": "Configureren",
- "ariaLabelPolicyDisabled": "Beleid is uitgeschakeld",
- "ariaLabelPolicyEnabled": "Beleid is ingeschakeld",
- "ariaLabelPolicyReportOnly": "Het beleid bevindt zich in de modus voor alleen rapporteren",
- "blockAccess": "Toegang blokkeren",
- "builtInDirectoryRoleLabel": "Ingebouwde directory-rollen",
- "casCustomControlInfo": "Aangepaste beleidsregels moeten worden geconfigureerd in Cloud App Security-portal. Dit besturingselement werkt direct voor aanbevolen apps en kan zelfstandig worden uitgevoerd voor elke app. Klik hier voor meer informatie over beide scenario's.",
- "casInfoBubble": "Dit besturingselement is geschikt voor verschillende cloud-apps.",
- "casPreconfiguredControlInfo": "Dit besturingselement werkt direct voor aanbevolen apps en kan zelfstandig worden uitgevoerd voor elke app. Klik hier voor meer informatie over beide scenario's.",
- "cert64DownloadCol": "base64-certificaat downloaden",
- "cert64Name": "VpnBase64Cert",
- "certDownloadCol": "Certificaat downloaden",
- "certDurationCol": "Vervaldatum",
- "certDurationStartCol": "Geldig van",
- "certName": "VpnCert",
- "chooseApplicationsBladeSubtitle": "",
- "chooseApplicationsBladeTitle": "Toepassingen kiezen",
- "chooseApplicationsCartSubitle": "",
- "chooseApplicationsCartTitle": "Gekozen toepassingen",
- "chooseApplicationsEmpty": "Geen toepassingen",
- "chooseApplicationsNone": "Geen",
- "chooseApplicationsNoneFound": "Kan {0} niet vinden. Probeer een andere naam of een andere id.",
- "chooseApplicationsPlural": "{0} en nog {1}",
- "chooseApplicationsReAuthEverytimeInfo": "Bent u op zoek naar uw app? Sommige toepassingen kunnen niet worden gebruikt met sessiebeheer 'Telkens opnieuw verificatie vereisen'",
- "chooseApplicationsRemove": "Verwijderen",
- "chooseApplicationsReturnedPlural": "{0} toepassingen gevonden",
- "chooseApplicationsReturnedSingular": "1 toepassing gevonden",
- "chooseApplicationsSearchBalloon": "Zoek naar een toepassing door de naam of de id in te voeren.",
- "chooseApplicationsSearchHint": "Toepassingen zoeken...",
- "chooseApplicationsSearchLabel": "Toepassingen",
- "chooseApplicationsSearching": "Zoeken...",
- "chooseApplicationsSelect": "Selecteren",
- "chooseApplicationsSelected": "Geselecteerd",
- "chooseApplicationsSingular": "{0} en nog 1",
- "chooseApplicationsTooMany": "Meer resultaten dan kunnen worden weergegeven. Filter met behulp van het zoekvak.",
- "chooseLocationCorpnetItem": "Bedrijfsnetwerk",
- "chooseLocationSelectedLocationsLabel": "Geselecteerde locaties",
- "chooseLocationTrustedIpsItem": "Vertrouwde IP's voor MFA",
- "chooseLocationsBladeSubtitle": "",
- "chooseLocationsBladeTitle": "Locaties kiezen",
- "chooseLocationsCartSubitle": "",
- "chooseLocationsCartTitle": "Gekozen locaties",
- "chooseLocationsEmpty": "Geen locaties",
- "chooseLocationsExcludedSelectorTitle": "Selecteren",
- "chooseLocationsIncludedSelectorTitle": "Selecteren",
- "chooseLocationsNone": "Geen",
- "chooseLocationsNoneFound": "Kan {0} niet vinden. Probeer een andere naam of een andere id.",
- "chooseLocationsPlural": "{0} en nog {1}",
- "chooseLocationsRemove": "Verwijderen",
- "chooseLocationsReturnedPlural": "{0} locaties gevonden",
- "chooseLocationsReturnedSingular": "1 locatie gevonden",
- "chooseLocationsSearchBalloon": "Zoek naar een locatie door de naam in te voeren.",
- "chooseLocationsSearchHint": "Locaties zoeken...",
- "chooseLocationsSearchLabel": "Locaties",
- "chooseLocationsSearching": "Zoeken...",
- "chooseLocationsSelect": "Selecteren",
- "chooseLocationsSelected": "geselecteerd",
- "chooseLocationsSelectionBladeExcludedSelectorTitle": "Selecteren",
- "chooseLocationsSelectionBladeIncludedSelectorTitle": "Selecteren",
- "chooseLocationsSingular": "{0} en nog 1",
- "chooseLocationsTooMany": "Meer resultaten dan kunnen worden weergegeven. Filter met behulp van het zoekvak.",
- "claimProviderAddCommandText": "Nieuw aangepast besturingselement",
- "claimProviderAddNewBladeTitle": "Nieuw aangepast besturingselement",
- "claimProviderDeleteCommand": "Verwijderen",
- "claimProviderDeleteDescription": "Weet u zeker dat u {0} wilt verwijderen? Deze bewerking kan niet ongedaan worden gemaakt.",
- "claimProviderDeleteTitle": "Weet u het zeker?",
- "claimProviderEditInfoText": "Geef de JSON voor aangepaste besturingselementen op die is verstrekt door uw claimproviders.",
- "claimProviderNotificationCreateDescription": "Aangepast besturingselement {0} maken",
- "claimProviderNotificationCreateFailedDescription": "Kan het aangepaste besturingselement {0} niet maken. Probeer het later opnieuw.",
- "claimProviderNotificationCreateFailedTitle": "Kan het aangepaste besturingselement niet maken",
- "claimProviderNotificationCreateSuccessDescription": "Het aangepaste besturingselement {0} is gemaakt",
- "claimProviderNotificationCreateSuccessTitle": "{0} is gemaakt",
- "claimProviderNotificationCreateTitle": "{0} maken...",
- "claimProviderNotificationDeleteDescription": "Het aangepaste besturingselement {0} verwijderen",
- "claimProviderNotificationDeleteFailedDescription": "Kan het aangepaste besturingselement {0} niet verwijderen. Probeer het later opnieuw.",
- "claimProviderNotificationDeleteFailedTitle": "Kan het aangepaste besturingselement niet verwijderen",
- "claimProviderNotificationDeleteSuccessDescription": "Het aangepaste besturingselement {0} is verwijderd",
- "claimProviderNotificationDeleteSuccessTitle": "{0} is verwijderd",
- "claimProviderNotificationDeleteTitle": "{0} verwijderen...",
- "claimProviderNotificationUpdateDescription": "Het aangepaste besturingselement {0} bijwerken",
- "claimProviderNotificationUpdateFailedDescription": "Kan het aangepaste besturingselement {0} niet bijwerken. Probeer het later opnieuw.",
- "claimProviderNotificationUpdateFailedTitle": "Kan het aangepaste besturingselement niet bijwerken",
- "claimProviderNotificationUpdateSuccessDescription": "Het aangepaste besturingselement {0} is bijgewerkt",
- "claimProviderNotificationUpdateSuccessTitle": "{0} is bijgewerkt",
- "claimProviderNotificationUpdateTitle": "{0} bijwerken...",
- "claimProviderValidationAppIdInvalid": "De waarde AppId is ongeldig. Controleer dit en probeer het opnieuw.",
- "claimProviderValidationClientIdMissing": "In de gegevens ontbreekt de waarde ClientId. Controleer dit en probeer het opnieuw.",
- "claimProviderValidationControlClaimsRequestedMissing": "In het besturingselement ontbreekt de waarde ClaimsRequested. Controleer dit en probeer het opnieuw.",
- "claimProviderValidationControlClaimsRequestedTypeMissing": "In het item ClaimsRequested ontbreekt de waarde Type. Controleer dit en probeer het opnieuw.",
- "claimProviderValidationControlIdAlreadyExists": "De waarde Control Id bestaat al. Controleer dit en probeer het opnieuw.",
- "claimProviderValidationControlIdMissing": "In het besturingselement ontbreekt de waarde Id. Controleer dit en probeer het opnieuw.",
- "claimProviderValidationControlIdReferencedInExistingPolicy": "De waarde Id van het besturingselement kan niet worden verwijderd omdat ernaar wordt verwezen in een bestaand beleid. Verwijder deze eerst uit het beleid.",
- "claimProviderValidationControlIdTooManyControls": "De eigenschap Control bevat te veel besturingselementen. Controleer dit en probeer het opnieuw.",
- "claimProviderValidationControlIdValueReserved": "De waarde Control Id is een gereserveerd sleutelwoord. Gebruik een andere id.",
- "claimProviderValidationControlNameAlreadyExists": "De waarde Control Name bestaat al. Controleer dit en probeer het opnieuw.",
- "claimProviderValidationControlNameMissing": "In het besturingselement ontbreekt de waarde Name. Controleer dit en probeer het opnieuw.",
- "claimProviderValidationControlsMissing": "In de gegevens ontbreekt de waarde Controls. Controleer dit en probeer het opnieuw.",
- "claimProviderValidationDiscoveryUrlMissing": "In de gegevens ontbreekt de waarde DiscoveryUrl. Controleer dit en probeer het opnieuw.",
- "claimProviderValidationInvalid": "De verstrekte gegevens zijn ongeldig. Controleer dit en probeer het opnieuw.",
- "claimProviderValidationInvalidJsonDefinition": "Kan het aangepaste besturingselement niet opslaan. Controleer de JSON-tekst en probeer het opnieuw.",
- "claimProviderValidationNameAlreadyExists": "De waarde Name bestaat al. Controleer dit en probeer het opnieuw.",
- "claimProviderValidationNameMissing": "In de gegevens ontbreekt de waarde Name. Controleer dit en probeer het opnieuw.",
- "claimProviderValidationUnknown": "Er is een onbekende fout opgetreden tijdens het valideren van de verstrekte gegevens. Controleer dit en probeer het opnieuw.",
- "claimProvidersNone": "Geen aangepaste besturingselementen",
- "claimProvidersSearchPlaceholder": "Zoekbesturingselementen.",
- "classicPoilcyFilterTitle": "Weergeven",
- "classicPolicyAllPlatforms": "Alle platformen",
- "classicPolicyClientAppBrowserAndNative": "Browser, mobiele apps en bureaubladclients",
- "classicPolicyCloudAppTitle": "Cloudtoepassing",
- "classicPolicyControlAllow": "Toestaan",
- "classicPolicyControlBlock": "Blok",
- "classicPolicyControlBlockWhenNotAtWork": "Toegang blokkeren bij inactiviteit",
- "classicPolicyControlRequireCompliantDevice": "Compatibel apparaat vereisen",
- "classicPolicyControlRequireDomainJoinedDevice": "Apparaat dat is toegevoegd aan het domein vereisen",
- "classicPolicyControlRequireMfa": "Meervoudige verificatie vereisen",
- "classicPolicyControlRequireMfaWhenNotAtWork": "Meervoudige verificatie vereisen bij inactiviteit",
- "classicPolicyDeleteCommand": "Verwijderen",
- "classicPolicyDeleteFailTitle": "Kan klassiek beleid niet verwijderen",
- "classicPolicyDeleteInProgressTitle": "Klassiek beleid verwijderen",
- "classicPolicyDeleteSuccessTitle": "Klassiek beleid verwijderd",
- "classicPolicyDetailBladeTitle": "Details",
- "classicPolicyDisableCommand": "Uitschakelen",
- "classicPolicyDisableConfirmation": "Weet u zeker dat u {0} wilt uitschakelen? Deze bewerking kan niet ongedaan worden gemaakt.",
- "classicPolicyDisableFailDescription": "Kan {0} niet uitschakelen",
- "classicPolicyDisableFailTitle": "Kan klassiek beleid niet uitschakelen",
- "classicPolicyDisableInProgressDescription": "{0} uitschakelen",
- "classicPolicyDisableInProgressTitle": "Klassiek beleid uitschakelen",
- "classicPolicyDisableSuccessDescription": "{0} is uitgeschakeld",
- "classicPolicyDisableSuccessTitle": "Klassiek beleid is uitgeschakeld",
- "classicPolicyEasSupportedPlatforms": "Ondersteunde platformen voor Exchange ActiveSync",
- "classicPolicyEasUnsupportedPlatforms": "Niet-ondersteunde platformen voor Exchange ActiveSync",
- "classicPolicyExcludedPlatformsTitle": "Uitgesloten apparaatplatformen",
- "classicPolicyFilterAll": "Alle beleidsregels",
- "classicPolicyFilterDisabled": "Uitgeschakelde beleidsregels",
- "classicPolicyFilterEnabled": "Ingeschakelde beleidsregels",
- "classicPolicyIncludeExcludeMembersDescription": "Door groepen uit te sluiten kunt u een gefaseerde migratie van beleidsregels uitvoeren.",
- "classicPolicyIncludeExcludeMembersTitle": "Groepen opnemen/uitsluiten",
- "classicPolicyIncludedPlatformsTitle": "Opgenomen apparaatplatformen",
- "classicPolicyManualMigrationMessage": "Dit beleid moet handmatig worden gemigreerd.",
- "classicPolicyMigrateCommand": "Migreren",
- "classicPolicyMigrateConfirmation": "Weet u zeker dat u {0} wilt migreren? Dit beleid kan slechts eenmaal worden gemigreerd.",
- "classicPolicyMigrateFailDescription": "Kan {0} niet migreren",
- "classicPolicyMigrateFailTitle": "Kan klassiek beleid niet migreren",
- "classicPolicyMigrateInProgressDescription": "{0} migreren",
- "classicPolicyMigrateInProgressTitle": "Klassiek beleid migreren",
- "classicPolicyMigrateRecommendText": "Aanbeveling: migreren naar het nieuwe Azure Portal-beleid.",
- "classicPolicyMigrateSuccessTitle": "Klassiek beleid gemigreerd",
- "classicPolicyMigratedSuccessDescription": "Dit klassieke beleid kan nu worden beheerd onder Beleid.",
- "classicPolicyMigratedSuccessDescriptionMultiple": "Dit klassieke beleid is gemigreerd als nieuw {0}-beleid. Nieuw beleid kan worden beheerd onder Beleid.",
- "classicPolicyNoEditPermissionMsg": "U bent niet gemachtigd om dit beleid te bewerken. Alleen globale beheerders en beveiligingsbeheerders mogen het beleid bewerken. Klik hier voor meer informatie.",
- "classicPolicySaveFailDescription": "Kan {0} niet opslaan",
- "classicPolicySaveFailTitle": "Kan klassiek beleid niet opslaan",
- "classicPolicySaveInProgressDescription": "{0} opslaan",
- "classicPolicySaveInProgressTitle": "Klassiek beleid opslaan",
- "classicPolicySaveSuccessDescription": "{0} is opgeslagen",
- "classicPolicySaveSuccessTitle": "Klassiek beleid opgeslagen",
- "clientAppBladeLegacyInfoBanner": "Verificatie op basis van verouderde gegevens wordt momenteel niet ondersteund",
- "clientAppBladeLegacyUpsellBanner": "Niet-ondersteunde client-apps blokkeren (preview)",
- "clientAppBladeTitle": "Client-apps",
- "clientAppDescription": "De client-apps selecteren waarop dit beleid van toepassing is",
- "clientAppExchangeActiveSync": "Exchange ActiveSync",
- "clientAppExchangeDisabledInfo": "Exchange ActiveSync is beschikbaar wanneer Exchange Online de enige cloud-app is die is geselecteerd. Klik voor meer informatie",
- "clientAppExchangeWarning": "Exchange ActiveSync biedt momenteel geen ondersteuning voor alle andere voorwaarden",
- "clientAppLearnMore": "Beheer gebruikerstoegang om u op specifieke clienttoepassingen te richten zonder moderne verificatie te gebruiken.",
- "clientAppLegacyHeader": "Clients met verouderde verificatie",
- "clientAppMobileDesktop": "Mobiele apps en bureaubladclients",
- "clientAppModernHeader": "Moderne verificatieclients",
- "clientAppOnlySupportedPlatforms": "Het beleid toepassen op ondersteunde platformen",
- "clientAppSelectSpecificClientApps": "Client-apps selecteren",
- "clientAppV2BladeTitle": "Client-apps (preview)",
- "clientAppWebBrowser": "Browser",
- "clientAppsSelectedLabel": "{0} opgenomen",
- "clientTypeBrowser": "Browser",
- "clientTypeEas": "Exchange ActiveSync-clients",
- "clientTypeEasInfo": "Exchange ActiveSync-clients die alleen verouderde verificatie gebruiken.",
- "clientTypeModernAuth": "Moderne verificatieclients",
- "clientTypeOtherClients": "Andere clients",
- "clientTypeOtherClientsInfo": "Dit omvat de oudere Office-clients en andere e-mailprotocollen (POP, IMAP, SMTP enzovoort). [Meer informatie][1]\n[1]: https://aka.ms/caclientapps\n",
- "cloudAppCountDiffBannerText": "{0} cloud-apps die is/zijn geconfigureerd in dit beleid, is/zijn uit de map verwijderd, maar dit heeft geen invloed op de andere apps in het beleid. De volgende keer dat u de toepassingssectie van het beleid bijwerkt, worden de verwijderde apps automatisch verwijderd.",
- "cloudAppsSelectionBladeAllMicrosoftApps": "Alle Microsoft-apps",
- "cloudAppsSelectionExcludeAllMicrosoftClients": "Cloud-, desktop- en mobiele apps van Microsoft toestaan (preview)",
- "cloudappsSelectionBladeAllCloudapps": "Alle cloud-apps",
- "cloudappsSelectionBladeExcludeDescription": "De cloud-apps selecteren die van het beleid moeten worden uitgesloten",
- "cloudappsSelectionBladeExcludedSelectorTitle": "Uitgesloten cloud-apps selecteren",
- "cloudappsSelectionBladeIncludeDescription": "De cloud-apps selecteren waarop dit beleid van toepassing is",
- "cloudappsSelectionBladeIncludedSelectorTitle": "Selecteren",
- "cloudappsSelectionBladeSelectedCloudapps": "Apps selecteren",
- "cloudappsSelectorInfoBallonText": "Services waarmee de gebruiker werkzaamheden uitvoert, bijvoorbeeld Salesforce",
- "cloudappsSelectorUserPlural": "{0} apps",
- "cloudappsSelectorUserSingular": "1 app",
- "conditionLabelMulti": "{0} voorwaarden geselecteerd",
- "conditionLabelOne": "1 voorwaarde geselecteerd",
- "conditionalAccessBladeTitle": "Voorwaardelijke toegang",
- "conditionsNotSelectedLabel": "Niet geconfigureerd",
- "conditionsReqPwSet": "Een aantal opties is niet beschikbaar omdat de toekenning Wachtwoordwijziging vereisen momenteel is geselecteerd",
- "configureCasText": "Cloud App Security configureren",
- "configureCustomControlsText": "Aangepast beleid configureren",
- "controlLabelMulti": "{0} besturingselementen geselecteerd",
- "controlLabelOne": "1 besturingselement geselecteerd",
- "controlValidatorText": "Selecteer minstens één besturingselement",
- "controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
- "controlsDeviceComplianceInfoBubble": "Het apparaat moet compatibel zijn met Intune. Als het apparaat niet compatibel is, wordt de gebruiker gevraagd de nalevingsprocedure uit te voeren",
- "controlsDomainJoinedInfoBubble": "Apparaten moeten hybride Azure AD-gekoppeld zijn.",
- "controlsMamInfoBubble": "Op het apparaat moeten deze goedgekeurde clienttoepassingen worden gebruikt.",
- "controlsMfaInfoBubble": "De gebruiker moet voldoen aan aanvullende beveiligingsvereisten, bijvoorbeeld via een telefoongesprek of sms-bericht",
- "controlsOrAndInfoBubble": "ControlsOrAndInfoBubble",
- "controlsRequireCompliantAppInfoBubble": "Apparaat moet met beleid beveiligde apps gebruiken.",
- "controlsRequirePasswordResetInfoBubble": "Vereis een wachtwoordwijziging om het gebruikersrisico te verlagen. Voor deze optie is bovendien Multi-Factor Authentication vereist. Andere besturingselementen kunnen niet worden gebruikt.",
- "countriesRadiobuttonInfoBalloonContent": "Het land/de regio waaruit een aanmelding afkomstig is, wordt bepaald door het IP-adres van de gebruiker.",
- "createNewVpnCert": "Nieuw certificaat",
- "createdTimeLabel": "Aanmaaktijd",
- "customRoleLabel": "Aangepaste rollen (niet ondersteund)",
- "dateRangeTypeLabel": "Datumbereik",
- "daysOfWeekPlaceholderText": "Dagen van de week filteren",
- "daysOfWeekTypeLabel": "Dagen van de week",
- "deletePolicyNoLicenseText": "U kunt dit beleid nu verwijderen. Als het is verwijderd, kun u het niet opnieuw maken totdat u beschikt over de vereiste licenties.",
- "descriptionContentForControlsAndOr": "Voor meerdere besturingselementen",
- "devicePlatform": "Apparaatplatform",
- "devicePlatformConditionHelpDescription": "Beleid toepassen op de geselecteerde apparaatplatformen.\n[Meer informatie][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2044750",
- "devicePlatformInclude": "{0} opgenomen",
- "devicePlatformIncludeExclude": "{0} en {1} uitgesloten",
- "devicePlatformNoSelectionError": "Voor het selecteren van apparaatplatformen moet één subitem worden geselecteerd.",
- "devicePlatformsNone": "Geen",
- "deviceSelectionBladeExcludeDescription": "De platformen selecteren die van het beleid moeten worden uitgesloten",
- "deviceSelectionBladeIncludeDescription": "De apparaatplatformen selecteren die in dit beleid moeten worden opgenomen",
- "deviceStateAll": "Status Alle apparaten",
- "deviceStateCompliant": "Gemarkeerd als compatibel apparaat",
- "deviceStateCompliantInfoContent": "Apparaten die compatibel met Intune zijn, worden uitgesloten van de evaluatie van dit beleid. Als het beleid dus bijvoorbeeld de toegang blokkeert, worden alle apparaten die compatibel zijn met Intune geblokkeerd.",
- "deviceStateConditionConfigureInfoContent": "Beleid configureren op basis van de apparaatstatus",
- "deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Hybrid Azure AD joined' or 'marked as compliant'.\n '{0}' has been deprecated. Use '{1}' instead.",
- "deviceStateConditionSelectorLabel": "Apparaatstatus (preview)",
- "deviceStateDomainJoined": "Apparaat is hybride Azure AD-gekoppeld",
- "deviceStateDomainJoinedInfoContent": "Apparaten die hybride Azure AD-gekoppeld zijn, worden uitgesloten van de evaluatie van dit beleid. Als het beleid dus bijvoorbeeld de toegang blokkeert, worden alle apparaten geblokkeerd, behalve apparaten die hybride Azure AD-gekoppeld zijn.",
- "deviceStateDomainJoinedInfoLinkText": "Meer informatie.",
- "deviceStateExcludeDescription": "De apparaatstatusvoorwaarde selecteren die wordt gebruikt om apparaten van het beleid uit te sluiten.",
- "deviceStateIncludeAndExcludeOneLabel": "{0} en {1} uitsluiten",
- "deviceStateIncludeAndExcludeTwoLabel": "{0} en {1}, {2} uitsluiten",
- "directoryRoleInfoContent": "Beleid toewijzen aan ingebouwde directory-rollen.",
- "directoryRolesLabel": "Directory-rollen",
- "discardbutton": "Verwijderen",
- "downloadDefaultFileName": "IP-bereiken",
- "downloadExampleFileName": "Voorbeeld",
- "downloadExampleHeader": "Dit is een voorbeeldbestand waarin u kunt zien wat voor soort gegevens kunnen worden geaccepteerd. Regels die beginnen met # worden genegeerd.",
- "endDatePickerLabel": "Eindigt op",
- "endTimePickerLabel": "Eindtijd",
- "enterCountryText": "Het IP-adres en het land/regio worden als paar geëvalueerd. Selecteer het land.",
- "enterIpText": "Het IP-adres en het land/regio worden als paar geëvalueerd. Geef het IP-adres op.",
- "enterUserText": "Er is geen gebruiker geselecteerd. Selecteer een gebruiker.",
- "evaluationResult": "Resultaat van de evaluatie",
- "exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
- "exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Alleen Exchange ActiveSync met ondersteunde platformen",
- "excludeAllTrustedLocationSelectorText": "alle vertrouwde locaties",
- "featureRequiresP2": "Voor deze functie is Azure AD Premium 2-licentie vereist.",
- "friday": "vrijdag",
- "grantControls": "Besturingselementen toekennen",
- "gridNetworkTrusted": "Vertrouwd",
- "gridPolicyCreatedDateTime": "Aanmaakdatum",
- "gridPolicyEnabled": "Ingeschakeld",
- "gridPolicyModifiedDateTime": "Gewijzigd op",
- "gridPolicyName": "Beleidsnaam",
- "gridPolicyState": "Status",
- "groupSelectionBladeExcludeDescription": "De groepen selecteren die van het beleid zijn uitgesloten",
- "groupSelectionBladeExcludedSelectorTitle": "Uitgesloten groepen selecteren",
- "groupSelectionBladeSelect": "Groepen selecteren",
- "groupSelectorInfoBallonText": "Groepen in de map waarop het beleid van toepassing is, bijvoorbeeld Testfasegroep",
- "groupsSelectionBladeTitle": "Groepen",
- "helpCommonScenariosText": "Geïnteresseerd in veelvoorkomende scenario's?",
- "helpCondition1": "Wanneer een gebruiker zich buiten het netwerk van het bedrijf bevindt",
- "helpCondition2": "Wanneer gebruikers in de groep Beheerders zich aanmelden",
- "helpConditionsTitle": "Voorwaarden",
- "helpControl1": "Ze moeten zich aanmelden met meervoudige verificatie",
- "helpControl2": "Deze moeten gebruik maken van een apparaat dat conform Intune is of onderdeel van een domein is",
- "helpControlsTitle": "Besturingselementen",
- "helpIntroText": "Met voorwaardelijke toegang kunt u in specifieke omstandigheden toegangsvereisten afdwingen. Hier volgen enkele voorbeelden",
- "helpIntroTitle": "Wat is voorwaardelijke toegang?",
- "helpLearnMoreText": "Wilt u meer informatie over voorwaardelijke toegang?",
- "helpStartStep1": "Maak uw eerste beleid door op + Nieuw beleid te klikken",
- "helpStartStep2": "Geef beleidsvoorwaarden en -besturingselementen op",
- "helpStartStep3": "Wanneer u klaar bent, klikt u op Beleid inschakelen en op Maken",
- "helpStartTitle": "Aan de slag",
- "highRisk": "Hoog",
- "includeAndExcludeAppsTextFormat": "Opnemen: {0}. Uitsluiten: {1}.",
- "includeAppsTextFormat": "Opnemen: {0}",
- "includeUnknownAreasCheckboxInfoBalloonContent": "Onbekende gebieden zijn IP-adressen die niet kunnen worden toegewezen aan een land/regio.",
- "includeUnknownAreasCheckboxLabel": "Onbekende gebieden opnemen",
- "infoCommandLabel": "Info",
- "invalidCertDuration": "Ongeldige certificaatduur",
- "invalidIpAddress": "De waarde moet een geldig IP-adres zijn",
- "invalidUriErrorMsg": "Voer een geldige URI in. Bijvoorbeeld: uri:contoso.com:acr",
- "iosDisplayName": "iOS",
- "linuxDisplayName": "Linux",
- "linuxDisplayNamePreview": "Linux (preview-versie)",
- "loadAll": "Alles laden",
- "loading": "Laden...",
- "locationConfigureNamedLocationsText": "Alle vertrouwde locaties configureren",
- "locationConfigureNamedLocationsUri": "{0}/usermanagement/mfasettings.aspx?tenantid={1}&culture={2}",
- "locationNameTooLongError": "De locatienaam is te lang. U kunt maximaal 256 tekens gebruiken",
- "locationSelectionBladeExcludeDescription": "De locaties selecteren die van het beleid moeten worden uitgesloten",
- "locationSelectionBladeIncludeDescription": "De locaties selecteren die in dit beleid moeten worden opgenomen",
- "locationsAllLocationsLabel": "Elke locatie",
- "locationsAllNamedLocationsLabel": "Alle vertrouwde IP-adressen",
- "locationsAllPrivateLinksLabel": "Alle persoonlijke koppelingen in mijn tenant",
- "locationsIncludeExcludeLabel": "{0} en alle vertrouwde IP-adressen uitsluiten",
- "locationsSelectedPrivateLinksLabel": "Geselecteerde persoonlijke koppelingen",
- "lowRisk": "Laag",
- "macOsDisplayName": "macOS",
- "managePoliciesLicenseText": "Uw organisatie heeft Azure AD Premium P1 of P2 nodig voor het beheren van beleid voor voorwaardelijke toegang.",
- "markAsTrustedCheckboxInfoBalloonContent": "Met het aanmelden vanaf een vertrouwde locatie wordt het aanmeldingsrisico van een gebruiker verlaagd. Markeer deze locatie alleen als vertrouwd als u er zeker van bent dat de IP-bereiken bekend en betrouwbaar zijn in uw organisatie.",
- "markAsTrustedCheckboxLabel": "Als vertrouwde locatie markeren",
- "mediumRisk": "Gemiddeld",
- "memberSelectionCommandRemove": "Verwijderen",
- "menuItemClaimProviderControls": "Aangepaste besturingselementen (preview)",
- "menuItemClassicPolicies": "Klassieke beleidsregels",
- "menuItemInsightsAndReporting": "Inzichten en rapportage",
- "menuItemManage": "Beheren",
- "menuItemNamedLocationsPreview": "Benoemde locaties (preview-versie)",
- "menuItemNamedNetworks": "Benoemde locaties",
- "menuItemPolicies": "Beleidsregels",
- "menuItemTermsOfUse": "Gebruiksvoorwaarden",
- "modifiedTimeLabel": "Tijd gewijzigd",
- "monday": "maandag",
- "nameLabel": "Naam",
- "namedLocationCountryInfoBanner": "Alleen IPv4-adressen worden aan landen/regio's toegewezen. IPv6-adressen zijn opgenomen in onbekende landen/regio's.",
- "namedLocationTypeCountry": "Landen/regio's",
- "namedLocationTypeLabel": "De locatie definiëren met het volgende:",
- "namedLocationUpsellBanner": "Deze weergave is afgeschaft. Ga naar de nieuwe en verbeterde weergave 'Benoemde locaties'.",
- "namedLocationsHelpDescription": "Benoemde locaties worden gebruikt voor de Azure AD-beveiligingsrapporten voor het reduceren van het aantal fout-positieven en Azure AD-beleid voor voorwaardelijke toegang.\n[Meer informatie][1]\n[1]: https://aka.ms/namedlocationupdate",
- "namedNetworkAddIpRanges": "Een nieuw IP-bereik toevoegen (bijvoorbeeld 40.77.182.32/27)",
- "namedNetworkCountryNeeded": "U moet ten minste één land selecteren",
- "namedNetworkDeleteCommand": "Verwijderen",
- "namedNetworkDeleteDescription": "Weet u zeker dat u {0} wilt verwijderen? Deze bewerking kan niet ongedaan worden gemaakt.",
- "namedNetworkDeleteTitle": "Weet u het zeker?",
- "namedNetworkDownloadIpRange": "Downloaden",
- "namedNetworkInvalidRange": "De waarde moet een geldig IP-bereik zijn.",
- "namedNetworkIpRangeNeeded": "U hebt ten minste één geldig IP-bereik nodig",
- "namedNetworkIpRangesDescriptionContent": "Configureer de IP-adresbereiken van uw organisatie",
- "namedNetworkIpRangesTab": "IP-bereiken",
- "namedNetworkListAdd": "Nieuwe locatie",
- "namedNetworkListConfigureTrustedIps": "Vertrouwde IP's voor MFA configureren",
- "namedNetworkNameDescription": "Bijvoorbeeld: Kantoor in Redmond",
- "namedNetworkNameInvalid": "De opgegeven naam is ongeldig.",
- "namedNetworkNameRequired": "U moet een naam opgeven voor deze locatie.",
- "namedNetworkNoIpRanges": "Geen IP-bereiken",
- "namedNetworkNotificationCreateDescription": "De locatie {0} wordt gemaakt",
- "namedNetworkNotificationCreateFailedDescription": "Kan de locatie {0} niet maken. Probeer het later opnieuw.",
- "namedNetworkNotificationCreateFailedTitle": "Kan de locatie niet maken",
- "namedNetworkNotificationCreateSuccessDescription": "De locatie {0} is gemaakt",
- "namedNetworkNotificationCreateSuccessTitle": "{0} is gemaakt",
- "namedNetworkNotificationCreateTitle": "{0} maken...",
- "namedNetworkNotificationDeleteDescription": "De locatie {0} wordt verwijderd",
- "namedNetworkNotificationDeleteFailedDescription": "Kan de locatie {0} niet verwijderen. Probeer het later opnieuw.",
- "namedNetworkNotificationDeleteFailedTitle": "Kan de locatie niet verwijderen",
- "namedNetworkNotificationDeleteSuccessDescription": "De locatie {0} is verwijderd",
- "namedNetworkNotificationDeleteSuccessTitle": "{0} is verwijderd",
- "namedNetworkNotificationDeleteTitle": "{0} verwijderen...",
- "namedNetworkNotificationUpdateDescription": "De locatie {0} wordt bijgewerkt",
- "namedNetworkNotificationUpdateFailedDescription": "Kan de locatie {0} niet bijwerken. Probeer het later opnieuw.",
- "namedNetworkNotificationUpdateFailedTitle": "Kan de locatie niet bijwerken",
- "namedNetworkNotificationUpdateSuccessDescription": "De locatie {0} is bijgewerkt",
- "namedNetworkNotificationUpdateSuccessTitle": "{0} is bijgewerkt",
- "namedNetworkNotificationUpdateTitle": "{0} bijwerken...",
- "namedNetworkSearchPlaceholder": "Locaties zoeken.",
- "namedNetworkUploadFailedDescription": "Er is een fout opgetreden bij het parseren van het opgegeven bestand. Zorg ervoor dat u een bestand zonder opmaak en met alle regels in CIDR-indeling uploadt.",
- "namedNetworkUploadFailedTitle": "Kan {0} niet parseren",
- "namedNetworkUploadInProgressDescription": "Er wordt geprobeerd geldige CIDR-waarden uit {0} te parseren.",
- "namedNetworkUploadInProgressTitle": "{0} parseren",
- "namedNetworkUploadInvalidDescription": "{0} is te groot of heeft een ongeldige indeling.",
- "namedNetworkUploadInvalidTitle": "{0} is ongeldig",
- "namedNetworkUploadIpRange": "Uploaden",
- "namedNetworkUploadSuccessDescription": "Er zijn {0} regels geanalyseerd. {1} met een verkeerde indeling. {2} overgeslagen.",
- "namedNetworkUploadSuccessTitle": "Parseren van {0} is voltooid",
- "namedNetworksAdd": "Nieuwe benoemde locatie",
- "namedNetworksConditionHelpDescription": "Gebruikerstoegang beheren op basis van de fysieke locatie.\n[Meer informatie][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
- "namedNetworksExcludeLabel": "{0} en {1} uitgesloten",
- "namedNetworksHelpDescription": "Benoemde locaties worden gebruikt voor de Azure AD-beveiligingsrapporten voor het reduceren van het aantal fout-positieven en Azure AD-beleid voor voorwaardelijke toegang.\n[Meer informatie][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
- "namedNetworksIncludeLabel": "{0} opgenomen",
- "namedNetworksNone": "Kan geen benoemde locaties vinden.",
- "namedNetworksTitle": "Locaties configureren",
- "namednetworkExceedingSizeErrorBladeTitle": "Details van fout",
- "namednetworkExceedingSizeErrorDetailText": "Klik hier voor meer details.",
- "namednetworkExceedingSizeErrorMessage": "U hebt de maximale toegestane opslag voor benoemde locaties overschreden. Probeer het opnieuw met een kortere lijst. Klik hier voor meer informatie.",
- "newCertName": "nieuw certificaat",
- "noPolicyRowMessage": "Geen beleidsregels",
- "noSPSelected": "Er is geen service-principal geselecteerd",
- "noUpdatePermissionMessage": "U hebt geen machtigingen om deze instellingen bij te werken. Neem contact op met de globale beheerder om toegang aan te vragen.",
- "noUserSelected": "Geen gebruiker geselecteerd",
- "noneRisk": "Geen risico",
- "office365Description": "Deze apps omvatten onder meer Microsoft Flow, Microsoft Forms, Microsoft Teams, Office 365 Exchange Online, Office 365 SharePoint Online en Office 365 Yammer.",
- "office365InfoBox": "Ten minste één van de geselecteerde apps is onderdeel van Office 365. U kunt het beste in plaats hiervan het beleid instellen voor de Office 365-app.",
- "oneUserSelected": "1 gebruiker geselecteerd",
- "onlyGlobalAdminsCanSaveThisPolicyConfig": "Alleen globale beheerders kunnen dit beleid opslaan.",
- "or": "{0} OF {1} ",
- "pickerDoneCommand": "Gereed",
- "policiesBladeAdPremiumUpsellBannerText": "Maak uw eigen beleid en doelspecifieke voorwaarden zoals Cloud-apps, Aanmeldingsrisico en Apparaatplatformen met Azure AD Premium",
- "policiesBladeTitle": "Beleidsregels",
- "policiesBladeTitleWithAppName": "Beleid: {0}",
- "policiesDisabledBannerText": "Het maken en bewerken van beleid is niet toegestaan voor toepassingen waaraan een aanmeldingskenmerk is gekoppeld.",
- "policiesHitMaxLimitStatusBarMessage": "U hebt het maximale aantal beleidsregels voor deze tenant bereikt. Verwijder enkele beleidsregels voordat u er meer maakt.",
- "policyAssignmentsSection": "Toewijzingen",
- "policyBlockAllInfoBox": "Het geconfigureerde beleid blokkeert alle gebruikers, dus dit wordt niet ondersteund. Controleer de toewijzingen en besturingselementen. Sluit de huidige gebruiker {0} uit als u dit beleid wilt opslaan.",
- "policyCloudAppsDisplayTextAllApp": "Alle apps",
- "policyCloudAppsLabel": "Cloud-apps",
- "policyConditionClientAppDescription": "Software die de gebruiker implementeert voor toegang tot de cloud-app, bijvoorbeeld Browser",
- "policyConditionClientAppV2Description": "Software die de gebruiker implementeert voor toegang tot de cloud-app, bijvoorbeeld Browser",
- "policyConditionDevicePlatform": "Apparaatplatformen",
- "policyConditionDevicePlatformDescription": "Platform waarmee de gebruiker zich aanmeldt, bijvoorbeeld iOS",
- "policyConditionLocation": "Locaties",
- "policyConditionLocationDescription": "Locatie (bepaald op basis van IP-adresbereik) waarvandaan de gebruiker zich aanmeldt",
- "policyConditionSigninRisk": "Aanmeldingsrisico",
- "policyConditionSigninRiskDescription": "De kans dat iemand anders dan de gebruiker zich probeert aan te melden. Het risiconiveau kan hoog, gemiddeld of laag zijn. Hiervoor is een Azure AD Premium 2-licentie vereist.",
- "policyConditionUserRisk": "Gebruikersrisico",
- "policyConditionUserRiskDescription": "Gebruikersrisiconiveaus configureren die nodig zijn om beleid af te dwingen",
- "policyConditioniClientApp": "Client-apps",
- "policyConditioniClientAppV2": "Client-apps (preview)",
- "policyControlAllowAccessDisplayedName": "Toegang verlenen",
- "policyControlAuthenticationStrengthDisplayedName": "Verificatiesterkte vereisen (preview)",
- "policyControlBladeTitle": "Verlenen",
- "policyControlBlockAccessDisplayedName": "Toegang blokkeren",
- "policyControlCompliantDeviceDisplayedName": "Vereisen dat het apparaat moet worden gemarkeerd als compatibel",
- "policyControlContentDescription": "Het afdwingen van toegang beheren om toegang te blokkeren of te verlenen.",
- "policyControlInfoBallonText": "Toegang blokkeren of aanvullende vereisten selecteren waaraan moet worden voldaan voordat toegang wordt verleend",
- "policyControlMfaChallengeDisplayedName": "Meervoudige verificatie vereisen",
- "policyControlRequireCompliantAppDisplayedName": "Beleid voor app-beveiliging vereisen",
- "policyControlRequireDomainJoinedDisplayedName": "Hybride Azure AD-gekoppeld apparaat is vereist",
- "policyControlRequireMamDisplayedName": "Goedgekeurde client-apps vereisen",
- "policyControlRequiredPasswordChangeDisplayedName": "Wachtwoordwijziging vereisen",
- "policyControlSelectAuthStrength": "Verificatiesterkte vereisen",
- "policyControlsNoControlsSelected": "0 besturingselementen geselecteerd",
- "policyControlsSection": "Besturingselementen voor toegang",
- "policyCreatBladeTitle": "Nieuw",
- "policyCreateButton": "Maken",
- "policyCreateFailedMessage": "Fout: {0}",
- "policyCreateFailedTitle": "Kan {0} niet maken",
- "policyCreateInProgressTitle": "{0} maken...",
- "policyCreateSuccessMessage": "{0} is gemaakt. Het beleid wordt over enkele minuten ingeschakeld als u Beleid inschakelen hebt ingesteld op Aan.",
- "policyCreateSuccessTitle": "{0} is gemaakt",
- "policyDeleteConfirmation": "Weet u zeker dat u {0} wilt verwijderen? Deze bewerking kan niet ongedaan worden gemaakt.",
- "policyDeleteFailTitle": "Kan {0} niet verwijderen",
- "policyDeleteInProgressTitle": "{0} verwijderen...",
- "policyDeleteSuccessTitle": "{0} is verwijderd",
- "policyEnforceLabel": "Beleid inschakelen",
- "policyErrorCannotSetSigninRisk": "U beschikt niet over de benodigde machtigingen om een beleid met een voorwaarde voor aanmeldingsrisico op te slaan.",
- "policyErrorNoPermission": "U beschikt niet over de benodigde machtiging om het beleid op te slaan. Neem contact op met de globale beheerder.",
- "policyErrorUnknown": "Er is iets fout gegaan. Probeer het later opnieuw.",
- "policyFallbackWarningMessage": "Kan {0} niet maken of bijwerken met Microsoft Graph, wat resulteert in een terugval naar AD Graph. Onderzoek het volgende scenario omdat er waarschijnlijk een fout optreedt bij het aanroepen van het beleidseindpunt voor Microsoft Graph met een incompatibele voorwaarde.",
- "policyFallbackWarningTitle": "{0} maken of bijwerken is gedeeltelijk voltooid",
- "policyNameCannotBeEmpty": "De naam van het beleid mag niet leeg zijn",
- "policyNameDevice": "Apparaatbeleid",
- "policyNameFormat": "[{0}] {1}",
- "policyNameMam": "Mobile App Management-beleid",
- "policyNameMfaLocation": "MFA en locatiebeleid",
- "policyNamePlaceholderText": "Bijvoorbeeld: App-beleid voor apparaatcompatibiliteit",
- "policyNameTooLongError": "De beleidsnaam is te lang. U kunt maximaal 256 tekens gebruiken.",
- "policyOff": "Uit",
- "policyOn": "Aan",
- "policyReportOnly": "Alleen rapporteren",
- "policyReviewSection": "Beoordelen",
- "policySaveButton": "Opslaan",
- "policyStatusIconDescription": "Beleid ingeschakeld",
- "policyStatusIconEnabled": "Ingeschakeld statuspictogram",
- "policyTemplateName1": "Door apps gehandhaafde beperkingen gebruiken voor browsertoegang van {0}",
- "policyTemplateName2": "Alleen toegang tot beheerde apparaten toestaan voor {0}",
- "policyTemplateName3": "Het beleid is gemigreerd van instellingen van Continue toegangsevaluatie",
- "policyTriggerRiskSpecific": "Specifiek risiconiveau selecteren",
- "policyTriggersInfoBalloonText": "Voorwaarden waarmee wordt gedefinieerd wanneer het beleid van toepassing is, bijvoorbeeld locatie",
- "policyTriggersNoConditionsSelected": "0 voorwaarden geselecteerd",
- "policyTriggersSelectorLabel": "Voorwaarden",
- "policyUpdateFailedMessage": "Fout: {0}",
- "policyUpdateFailedTitle": "Kan {0} niet bijwerken",
- "policyUpdateInProgressTitle": "{0} bijwerken",
- "policyUpdateSuccessMessage": "{0} is bijgewerkt. Het beleid wordt over enkele minuten ingeschakeld als u Beleid inschakelen hebt ingesteld op Aan.",
- "policyUpdateSuccessTitle": "{0} is bijgewerkt",
- "primaryCol": "Primair",
- "privateLinkLabel": "Azure AD Private Link",
- "reportOnlyInfoBox": "Modus voor alleen rapporteren: beleidsregels worden geëvalueerd en geregistreerd tijdens aanmelden, maar dit heeft geen impact voor gebruikers.",
- "requireAllControlsText": "Alle geselecteerde besturingselementen vereisen",
- "requireCompliantDevice": "Compatibel apparaat vereisen",
- "requireDomainJoined": "Aan domein toegevoegd apparaat vereisen",
- "requireMFA": "Meervoudige verificatie vereisen ",
- "requireOneControlText": "Een van de geselecteerde besturingselementen vereisen",
- "resetFilters": "Filters opnieuw instellen",
- "sPRequired": "Service-principal vereist",
- "sPSelectorInfoBalloon": "De gebruiker of service-principal die u wilt testen",
- "saturday": "zaterdag",
- "searchTextTooLongError": "De zoektekst is te lang. Het maximum is 256 tekens",
- "securityDefaultsPolicyName": "Standaardinstellingen voor beveiliging",
- "securityDefaultsTextMessage": "Standaardinstellingen voor beveiliging moeten zijn uitgeschakeld om beleid voor voorwaardelijke toegang in te schakelen.",
- "securityDefaultsWarningMessage": "U gaat nu de beveiligingsconfiguraties van uw organisatie beheren. Goed hoor! U moet eerst de standaardinstellingen voor beveiliging uitschakelen voordat u een beleid voor voorwaardelijke toegang inschakelt.",
- "selectDevicePlatforms": "Apparaatplatformen selecteren",
- "selectNamedNetworksSubtitle": "",
- "selectNamedNetworksTitle": "Locaties selecteren",
- "selectedSP": "Geselecteerde service-principal",
- "servicePrincipalDataGridAria": "Lijst met beschikbare service-principals",
- "servicePrincipalDropDownLabel": "Waarop is dit beleid van toepassing?",
- "servicePrincipalInfoBox": "Sommige voorwaarden zijn niet beschikbaar vanwege de selectie '{0}' in beleidstoewijzing",
- "servicePrincipalRadioAll": "Alle service-principals in eigendom",
- "servicePrincipalRadioSelect": "Service-principal selecteren",
- "servicePrincipalSelectionsAria": "Geselecteerd service-principalsraster",
- "servicePrincipalSelectorAria": "Lijst met gekozen service-principals",
- "servicePrincipalSelectorMultiple": "{0} service-principal zijn geselecteerd",
- "servicePrincipalSelectorSingle": "1 service-principal is geselecteerd",
- "servicePrincipalSpecificInc": "Specifieke service-principals opgenomen",
- "servicePrincipals": "Service-principals",
- "sessionControlBladeTitle": "Sessie",
- "sessionControlDescriptionContent": "Beheer de toegang op basis van sessiebeheer om beperkte ervaringen in specifieke cloudtoepassingen in te schakelen.",
- "sessionControlDisableInfo": "Dit besturingselement werkt alleen bij ondersteunde apps. Office 365, Exchange Online en SharePoint Online zijn momenteel de enige cloud-apps die door apps gehandhaafde beperkingen ondersteunen. Klik hier voor meer informatie.",
- "sessionControlInfoBallonText": "Met de sessiebesturingselementen wordt de beperkte ervaring in een cloud-app ingeschakeld.",
- "sessionControls": "Sessiebesturingselementen",
- "sessionControlsAppEnforcedLabel": "Door apps gehandhaafde beperkingen gebruiken",
- "sessionControlsCasLabel": "App-beheer voor voorwaardelijke toegang gebruiken",
- "sessionControlsSecureSignInLabel": "Tokenbinding vereist",
- "sharepointAppName": "SharePoint",
- "signinRiskDescription": "Het niveau voor aanmeldingsrisico selecteren waarop dit beleid van toepassing is",
- "signinRiskInclude": "{0} opgenomen",
- "signinRiskTriggerDescriptionContent": "Het niveau voor het aanmeldingsrisico selecteren",
- "singleTenantServicePrincipalInfoBallonText": "Beleid is alleen van toepassing op service-principals met één tenant die eigendom zijn van uw organisatie. Klik hier voor meer informatie ",
- "specificSigninRiskLevelsOption": "Specifieke risiconiveaus voor aanmeldingen selecteren",
- "specificUsersExcluded": "specifieke gebruikers uitgesloten",
- "specificUsersIncluded": "Specifieke gebruikers opgenomen",
- "specificUsersIncludedAndExcluded": "Specifieke uitgesloten en opgenomen gebruikers",
- "startDatePickerLabel": "Start",
- "startFreeTrial": "Start een gratis proefversie",
- "startTimePickerLabel": "Begintijd",
- "sunday": "zondag",
- "testButton": "What If",
- "thumbprintCol": "Vingerafdruk",
- "thursday": "donderdag",
- "timeConditionAllTimesLabel": "Willekeurig",
- "timeConditionIntroText": "De tijd configureren waarop dit beleid van toepassing is",
- "timeConditionSelectorInfoBallonContent": "Wanneer de gebruiker zich aanmeldt, bijvoorbeeld woensdag van 09:00 - 17:00 uur CEST",
- "timeConditionSelectorLabel": "Tijd (preview)",
- "timeConditionSpecificLabel": "Specifieke tijden",
- "timeSelectorAllTimesText": "Willekeurig",
- "timeSelectorSpecificTimesText": "Specifieke geconfigureerde tijden",
- "timeZoneDropdownInfoBalloonContent": "Selecteer een tijdzone waarmee het tijdsbereik wordt gedefinieerd. Dit beleid is van toepassing op gebruikers in alle tijdzones. Zo kan 'woensdag van 9:00 - 17:00' het tijdsbereik voor de ene gebruiker zijn en 'woensdag van 10;00 - 18:00 uur' het tijdsbereik voor een gebruiker in een andere tijdzone.",
- "timeZoneDropdownLabel": "Tijdzone",
- "timeZoneDropdownPlaceholderText": "Selecteer een tijdzone",
- "tooManyPoliciesDescription": "Alleen de eerste 50 beleidsregels worden nu weergegeven. Klik hier om alle beleidsregels weer te geven",
- "tooManyPoliciesTitle": "Meer dan 50 beleidsregels gevonden",
- "trustedLocationStatusIconDescription": "De locatie is vertrouwd",
- "trustedLocationStatusIconEnabled": "Pictogram voor vertrouwde status",
- "tuesday": "dinsdag",
- "uploadInBadState": "Kan het opgegeven bestand niet uploaden.",
- "upsellAppsDescription": "Altijd meervoudige verificatie vereisen voor gevoelige toepassingen of alleen voor toepassingen buiten het bedrijfsnetwerk.",
- "upsellAppsTitle": "Beveiligde toepassingen",
- "upsellBannerText": "Neem een gratis Premium-proefversie als u deze functie wilt gebruiken",
- "upsellDataDescription": "Vereisen dat het apparaat moet worden gemarkeerd als compatibel of hybride Azure AD-gekoppeld voor toegang tot bedrijfsresources.",
- "upsellDataTitle": "Beveiligde gegevens",
- "upsellDescription": "Met voorwaardelijke toegang beschikt u over de controle en beveiliging die u nodig hebt om uw bedrijfsgegevens veilig te houden, terwijl gebruikers hun werkzaamheden op elk apparaat kunnen uitvoeren. U kunt bijvoorbeeld de toegang van buiten het bedrijfsnetwerk beperken of de toegang beperken tot apparaten die voldoen aan het nalevingsbeleid.",
- "upsellRiskDescription": "Vereis meervoudige verificatie voor risicogebeurtenissen die door het Machine Learning-systeem van Microsoft worden gedetecteerd.",
- "upsellRiskTitle": "Beschermen tegen risico's",
- "upsellTitle": "Voorwaardelijke toegang",
- "upsellWhyTitle": "Waarom zou ik voorwaardelijke toegang gebruiken?",
- "userAppNoneOption": "Geen",
- "userNamePlaceholderText": "Gebruikersnaam invoeren",
- "userNotSetSeletorLabel": "0 gebruikers en groepen geselecteerd",
- "userOnlySelectionBladeExcludeDescription": "De gebruikers selecteren die van het beleid moeten worden uitgesloten",
- "userOrGroupSelectionCountDiffBannerText": "{0} die zijn geconfigureerd in dit beleid, zijn uit de map verwijderd, maar dit heeft geen invloed op de andere gebruikers en groepen in het beleid. De volgende keer dat u het beleid bijwerkt, worden de verwijderde gebruikers en/of groepen automatisch verwijderd.",
- "userOrSPNotSetSelectorLabel": "0 gebruikers of werkbelastingsidentiteiten geselecteerd",
- "userOrSPSelectionBladeTitle": "Gebruikers of werkbelastingsidentiteiten",
- "userOrSPSelectorInfoBallonText": "Identiteiten in de map waarop het beleid van toepassing is, inclusief gebruikers, groepen en service-principals",
- "userRequired": "Gebruiker vereist",
- "userRiskErrorBox": "De voorwaarde Gebruikersrisico moet worden geselecteerd wanneer de toekenning Wachtwoordwijziging vereisen is geselecteerd",
- "userSPRequired": "Gebruiker of service-principal vereist",
- "userSPSelectorTitle": "Gebruiker of werkbelastingsidentiteit",
- "userSelectionBladeAllUsersAndGroups": "Alle gebruikers en groepen",
- "userSelectionBladeExcludeDescription": "De gebruikers en groepen selecteren die van het beleid moeten worden uitgesloten",
- "userSelectionBladeExcludeTabTitle": "Uitsluiten",
- "userSelectionBladeExcludedSelectorTitle": "Uitgesloten gebruikers selecteren",
- "userSelectionBladeIncludeDescription": "De gebruikers selecteren waarop dit beleid van toepassing is",
- "userSelectionBladeIncludeTabTitle": "Opnemen",
- "userSelectionBladeIncludedSelectorTitle": "Selecteren",
- "userSelectionBladeSelectUsers": "Gebruikers selecteren",
- "userSelectionBladeSelectedUsers": "Gebruikers en groepen selecteren",
- "userSelectionBladeTitle": "Gebruikers en groepen",
- "userSelectorBladeTitle": "Gebruikers",
- "userSelectorExcluded": "{0} uitgesloten",
- "userSelectorGroupPlural": "{0} groepen",
- "userSelectorGroupSingular": "1 groep",
- "userSelectorIncluded": "{0} opgenomen",
- "userSelectorInfoBallonText": "Gebruikers en groepen in de map waarop het beleid van toepassing is, bijvoorbeeld Testfasegroep",
- "userSelectorSelected": "{0} geselecteerd",
- "userSelectorTitle": "Gebruiker",
- "userSelectorUserAndGroup": "{0}, {1}",
- "userSelectorUserPlural": "{0} gebruikers",
- "userSelectorUserSingular": "1 gebruiker",
- "userSelectorWithExclusion": "{0} en {1}",
- "usersGroupsLabel": "Gebruikers en groepen",
- "viewApprovedAppsText": "Lijst met goedgekeurde clientapps weergeven",
- "viewCompliantAppsText": "Lijst met door beleid beveiligde client-apps weergeven",
- "vpnBladeTitle": "VPN-verbinding",
- "vpnCertCreateFailedMessage": "Fout: {0}",
- "vpnCertCreateFailedTitle": "Kan {0} niet maken",
- "vpnCertCreateInProgressTitle": "{0} maken",
- "vpnCertCreateSuccessMessage": "{0} is gemaakt.",
- "vpnCertCreateSuccessTitle": "{0} is gemaakt",
- "vpnCertNoRowsMessage": "Geen VPN-certificaten gevonden",
- "vpnCertUpdateFailedMessage": "Fout: {0}",
- "vpnCertUpdateFailedTitle": "Kan {0} niet bijwerken",
- "vpnCertUpdateInProgressTitle": "{0} bijwerken",
- "vpnCertUpdateSuccessMessage": "{0} is bijgewerkt.",
- "vpnCertUpdateSuccessTitle": "{0} is bijgewerkt",
- "vpnFeatureInfo": "Klik hier voor meer informatie over de VPN-verbinding en voorwaardelijke toegang.",
- "vpnFeatureWarning": "Nadat een VPN-certificaat is gemaakt in Azure Portal, wordt het direct door Azure AD gebruikt om certificaten met korte levensduur te verlenen aan de VPN-client. Het is van cruciaal belang dat het VPN-certificaat direct wordt geïmplementeerd op de VPN-server om eventuele problemen met de validatie van referenties van de VPN-client te voorkomen.",
- "vpnMenuText": "VPN-verbinding",
- "vpncertDropdownDefaultOption": "Duur",
- "vpncertDropdownInfoBalloonContent": "Selecteer de duur van het certificaat dat u wilt maken",
- "vpncertDropdownLabel": "Duur selecteren",
- "vpncertDropdownOneyearOption": "1 jaar",
- "vpncertDropdownThreeyearOption": "Drie jaar",
- "vpncertDropdownTwoyearOption": "Twee jaar",
- "wednesday": "woensdag",
- "whatIfAppEnforcedControl": "Door apps gehandhaafde beperkingen gebruiken",
- "whatIfBladeDescription": "De gevolgen van voorwaardelijke toegang op een gebruiker testen wanneer deze zich aanmeldt onder bepaalde omstandigheden.",
- "whatIfBladeTitle": "What If",
- "whatIfClassicPoliciesWarning": "Klassiek beleid wordt niet door dit hulpprogramma geëvalueerd.",
- "whatIfClientAppInfo": "De client-app waarmee de gebruiker zich aanmeldt, bijvoorbeeld Browser.",
- "whatIfCountry": "Land",
- "whatIfCountryInfo": "Het land waaruit de gebruiker zich aanmeldt.",
- "whatIfDevicePlatformInfo": "Het apparaatplatform waarmee de gebruiker zich aanmeldt.",
- "whatIfDeviceStateInfo": "De apparaatstatus waarmee de gebruiker zich aanmeldt",
- "whatIfEnterIpAddress": "IP-adres invoeren (bijvoorbeeld 40.77.182.32)",
- "whatIfErrorInvalidIpAddress": "Er is een ongeldig IP-adres opgegeven.",
- "whatIfEvaResultApplication": "Cloud-apps",
- "whatIfEvaResultClientApps": "Client-app",
- "whatIfEvaResultDevicePlatform": "Apparaatplatform",
- "whatIfEvaResultEmptyPolicy": "Leeg beleid",
- "whatIfEvaResultInvalidCondition": "Ongeldige voorwaarde",
- "whatIfEvaResultInvalidPolicy": "Ongeldig beleid",
- "whatIfEvaResultLocation": "Locatie",
- "whatIfEvaResultNotEnoughInformation": "Onvoldoende informatie",
- "whatIfEvaResultPolicyNotEnabled": "Beleid is niet ingeschakeld",
- "whatIfEvaResultSignInRisk": "Aanmeldingsrisico",
- "whatIfEvaResultUsers": "Gebruikers en groepen",
- "whatIfIpAddress": "IP-adres",
- "whatIfIpAddressInfo": "Het IP-adres waarvandaan de gebruiker zich aanmeldt.",
- "whatIfIpCountryInfoBoxText": "Als u een IP-adres of land/regio gebruikt, zijn beide velden vereist en moeten correct samen toegewezen zijn.",
- "whatIfPolicyAppliesTab": "Beleidsregels die worden toegepast",
- "whatIfPolicyDoesNotApplyTab": "Beleidsregels die niet worden toegepast",
- "whatIfReasons": "Redenen waarom dit beleid niet wordt toegepast",
- "whatIfSelectClientApp": "Een client-app selecteren...",
- "whatIfSelectCountry": "Land selecteren...",
- "whatIfSelectDevicePlatform": "Apparaatplatformen selecteren...",
- "whatIfSelectPrivateLink": "Privékoppeling selecteren...",
- "whatIfSelectServicePrincipalRisk": "Risico van service-principal selecteren...",
- "whatIfSelectSignInRisk": "Aanmeldingsrisico selecteren...",
- "whatIfSelectType": "Identiteitstype selecteren",
- "whatIfSelectUserRisk": "Gebruikersrisico selecteren...",
- "whatIfServicePrincipalRiskInfo": "Het risiconiveau dat is gekoppeld aan de service-principal",
- "whatIfSignInRisk": "Aanmeldingsrisico",
- "whatIfSignInRiskInfo": "Het risiconiveau gekoppeld aam de aanmelding",
- "whatIfUnknownAreas": "Onbekende gebieden",
- "whatIfUserPickerLabel": "Geselecteerde gebruiker",
- "whatIfUserPickerNoRowsLabel": "Er is geen gebruiker of service-principal geselecteerd",
- "whatIfUserRiskInfo": "Het risiconiveau dat is gekoppeld aan de gebruiker",
- "whatIfUserSelectorInfo": "Een gebruiker in de adreslijst die u wilt testen",
- "windows365InfoBox": "Als u Windows 365 selecteert, is dit van invloed op verbindingen met cloud-pc's en Azure Virtual Desktop-sessiehosts. Klik hier voor meer informatie.",
- "windowsDisplayName": "Windows",
- "windowsPhoneDisplayName": "Windows Phone",
- "workloadIdentities": "Werkbelastingsidentiteiten (preview-versie)",
- "workloadIdentity": "Workload-identiteit"
- },
- "ApplicableDeviceType": {
- "iPad": "iPad",
- "iPhoneAndIPod": "iPhone en iPod"
- },
- "TAPSettings": {
- "AllowedDataIngestionLocations": {
- "label": "Gebruikers toestaan om gegevens van geselecteerde services te openen",
- "tooltip": "Selecteer de opslagservices voor toepassingen waarvan gebruikers gegevens kunnen openen. Alle andere services worden geblokkeerd. Wanneer u geen services selecteert, kunnen gebruikers geen gegevens openen."
- },
- "AndroidBackup": {
- "label": "Back-up maken van organisatiegegevens in de Android-back-upservices",
- "tooltip": "Selecteer {0} om te voorkomen dat er van organisatiegegevens een back-up wordt gemaakt in de Android-back-upservices. \r\nSelecteer {1} om toe te staan dat er van organisatiegegevens een back-up wordt gemaakt in de Android-back-upservices. \r\nDit is niet van toepassing op persoonlijke of onbeheerde gegevens."
- },
- "AndroidBiometricAuthentication": {
- "label": "Biometrische gegevens in plaats van pincode voor toegang",
- "tooltip": "Kiezen welke Android-verificatiemethoden gebruikers kunnen gebruiken, indien mogelijk, in plaats van een app-pincode."
- },
- "AndroidFingerprint": {
- "label": "Vingerafdruk in plaats van een pincode voor toegang (Android 6.0+)",
- "tooltip": "Het Android-besturingssysteem gebruikt vingerafdrukscans om gebruikers van Android-apparaten te verifiëren. Deze functie ondersteunt de systeemeigen biometrische beheerelementen op Android-apparaten. Biometrische instellingen voor OEM, zoals Samsung Pass, worden niet ondersteund. Indien toegestaan, moeten systeemeigen biometrische beheerelementen worden gebruikt voor toegang tot de app op een compatibel apparaat."
- },
- "AndroidOverrideFingerprint": {
- "label": "Vingerafdruk overschrijven met pincode na time-out"
- },
- "AppPIN": {
- "label": "Pincode voor app wanneer pincode is ingesteld",
- "tooltip": "Als deze instelling niet is vereist, hoeft er geen app-pincode te worden gebruikt voor toegang tot de app als de pincode voor het apparaat is ingesteld op een apparaat dat in MDM is ingeschreven.
\r\n\r\nOpmerking: Intune kan in Android een apparaatinschrijving met een EMM-oplossing van derden niet detecteren."
- },
- "BlockDataIngestionIntoOrganizationDocuments": {
- "label": "Gegevens in organisatiedocumenten openen",
- "tooltip1": "Selecteer Blokkeren om het gebruik van de optie Openen of andere opties voor het delen van gegevens tussen accounts in deze app uit te schakelen. Selecteer Toestaan als u het gebruik van Openen en andere opties om gegevens te delen tussen accounts in deze app wilt toestaan.",
- "tooltip2": "Wanneer de optie Blokkeren is ingesteld, kunt u de volgende instelling configureren: Gebruiker toestaan om gegevens van geselecteerde services te openen. Zo kunt u aangeven welke services zijn toegestaan voor de locaties van de organisatiegegevens.",
- "tooltip3": "Opmerking: deze instelling wordt alleen toegepast als de instelling Gegevens ontvangen van andere apps is ingesteld op Door beleid beheerde apps.
\r\nOpmerking: Deze instelling is niet van toepassing op alle toepassingen. Zie {0} voor meer informatie.",
- "tooltip4": "Opmerking: deze instelling wordt alleen toegepast als de instelling Gegevens ontvangen van andere apps is ingesteld op Door beleid beheerde apps.
\r\nOpmerking: Deze instelling is niet van toepassing op alle toepassingen. Zie {0} of {0} voor meer informatie."
- },
- "ConnectToVpnOnLaunch": {
- "label": "Microsoft Tunnel-verbinding starten bij starten van app",
- "tooltip": "Verbinding met VPN toestaan wanneer de app wordt gestart"
- },
- "CredentialsForAccess": {
- "label": "De referenties van het werk- of schoolaccount voor toegang",
- "tooltip": "Indien nodig, moeten de referenties van het werk- of schoolaccount worden gebruikt voor toegang tot de app die door het beleid wordt beheerd. Als er ook een pincode of biometrische methoden vereist zijn voor toegang tot de app, wordt er naast die prompts gevraagd om de referenties van het werk- of schoolaccount."
- },
- "CustomBrowserDisplayName": {
- "label": "Naam onbeheerde browser",
- "tooltip": "Voer de toepassingsnaam in voor de browser die is gekoppeld aan de id van onbeheerde browser. Deze naam wordt weergegeven voor gebruikers als de opgegeven browser niet is geïnstalleerd."
- },
- "CustomBrowserPackageId": {
- "label": "Id van onbeheerde browser",
- "tooltip": "Voer de toepassings-id voor één browser in. Webinhoud (http/s) van door beleid beheerde toepassingen wordt geopend in de opgegeven browser."
- },
- "CustomBrowserProtocol": {
- "label": "Protocol onbeheerde browser",
- "tooltip": "Voer het protocol voor één onbeheerde browser in. Webinhoud (http/s) van door beleid beheerde toepassingen wordt geopend in alle apps die dit protocol ondersteunen.
\r\n \r\nOpmerking: Neem alleen het protocolprefix op. Als uw browser koppelingen in de vorm 'mybrowser://www.microsoft.com' vereist, voert u 'mybrowser' in.
"
- },
- "CustomDialerAppDisplayName": {
- "label": "Naam van kiezer-app"
- },
- "CustomDialerAppPackageId": {
- "label": "Pakket-id van kiezer-app"
- },
- "CustomDialerAppProtocol": {
- "label": "URL-schema van kiezer-app"
- },
- "Cutcopypaste": {
- "label": "Knippen, kopiëren en plakken tussen andere apps beperken",
- "tooltip": "Knippen, kopiëren en plakken van gegevens tussen uw app en andere goedgekeurde apps die op het apparaat zijn geïnstalleerd. Kies ervoor om deze bewerkingen volledig te blokkeren, toe te staan dat ze met alle apps kunnen worden uitgevoerd of deze te beperken tot de apps die door uw organisatie worden beheerd.
\r\n\r\nDoor beleid beheerde apps met inplakken stelt u in staat om binnenkomende inhoud die is geplakt vanuit een andere toepassing te accepteren. Gebruikers kunnen echter niet met externe apps inhoud delen, tenzij ze inhoud delen met een beheerde app.
"
- },
- "DialerRestrictionLevel": {
- "iosTooltip": "Wanneer een gebruiker een telefoonnummer met hyperlink selecteert in een app, wordt er meestal een kiezer-app geopend met het telefoonnummer ingevuld en klaar om te worden gebeld. Kies voor deze instelling hoe u dit type inhoudsoverdracht wilt verwerken wanneer het wordt gestart vanuit een door beleid beheerde app. Er zijn mogelijk aanvullende stappen nodig om deze instelling van kracht te laten worden. Controleer eerst of de tel en telprompt zijn verwijderd uit de lijst met uitgezonderde apps. Controleer vervolgens of de toepassing een nieuwere versie van Intune SDK (versie 12.7.0+) gebruikt.",
- "label": "Telecommunicatiegegevens overdragen aan",
- "tooltip": "Wanneer een gebruiker een telefoonnummerkoppeling selecteert in een app, wordt meestal een kiezer-app geopend met het telefoonnummer automatisch ingevuld en klaar om te worden gebeld. Kies voor deze instelling hoe u dit type inhoudsoverdracht wilt verwerken wanneer dit vanuit een door beleid beheerde app wordt gestart."
- },
- "EncryptData": {
- "label": "Organisatiegegevens versleutelen",
- "link": "https://docs.microsoft.com/en-us/intune/app-protection-policy-settings-android#data-relocation-settings",
- "tooltip": "Selecteer {0} om versleuteling van de organisatiegegevens met versleuteling op het niveau van apps van Intune af te dwingen.\r\n
\r\nSelecteer {1} om geen versleuteling van de organisatiegegevens met versleuteling op het niveau van apps van Intune af te dwingen.\r\n\r\n
\r\nOpmerking: zie {2} voor meer informatie over versleuteling op het niveau van apps van Intune."
- },
- "EncryptDataAndroid": {
- "tooltip": "Kies Vereisen om versleuteling van werk- of schoolgegevens in deze app in te schakelen. In Intune wordt een OpenSSL 256-bits AES-versleutelingsschema gebruikt in combinatie met het Android Keystore-systeem om app-gegevens veilig te versleutelen. Gegevens worden tijdens I/O-taken synchroon versleuteld. Inhoud in de apparaatopslag is altijd versleuteld. De SDK blijft 128-bits sleutels ondersteunen voor compatibiliteit met inhoud en apps waarvoor oudere SDK-versies worden gebruikt.
\r\n\r\nDe versleutelingsmethode is niet FIPS 140-2-compatibel.
"
- },
- "EncryptDataIos": {
- "tooltip1": "Kies Vereisen om versleuteling van werk- of schoolgegevens in deze app in te schakelen. Met Intune wordt iOS/iPadOS-apparaatversleuteling afgedwongen om app-gegevens te beveiligen wanneer het apparaat is vergrendeld. Optioneel kunnen app-gegevens met toepassingen worden versleuteld met behulp van Intune App SDK-versleuteling. Met de Intune App SDK worden iOS/iPadOS-cryptografiemethoden gebruikt om 128-bits AES-versleuteling op app-gegevens toe te passen.",
- "tooltip2": "Als u deze instelling inschakelt, kan de gebruiker worden verplicht een pincode voor toegang tot het apparaat in te stellen en te gebruiken. Als er geen apparaatpincode en -versleuteling is vereist, wordt de gebruiker gevraagd een pincode in te stellen en wordt het bericht 'Uw organisatie heeft ingesteld dat u eerst een pincode voor het apparaat moet inschakelen voor u toegang tot deze app kunt krijgen' weergegeven.",
- "tooltip3": "Ga naar de officiële Apple-documentatie om de iOS-versleutelingsmodules te bekijken die FIPS 140-2-compatibel zijn of waarvoor FIPS 140-2-compatibiliteit in behandeling is."
- },
- "EncryptDataOnEnrolledDevices": {
- "label": "Organisatiegegevens op ingeschreven apparaten versleutelen",
- "tooltip": "Selecteer {0} om versleuteling van de organisatiegegevens met versleuteling op het niveau van apps van Intune af te dwingen voor alle apparaten.
\r\n\r\nSelecteer {1} om geen versleuteling van de organisatiegegevens met versleuteling op het niveau van apps van Intune af te dwingen voor ingeschreven apparaten."
- },
- "IOSBackup": {
- "label": "Een back-up van organisatiegegevens maken in iTunes- en iCloud-back-ups",
- "tooltip": "Selecteer {0} om te voorkomen dat er een back-up van organisatiegegevens wordt gemaakt in iTunes of iCloud.\r\nSelecteer {1} om toe te staan dat er een back-up van organisatiegegevens wordt gemaakt in iTunes of iCloud.\r\nDit is niet van toepassing op persoonlijke of onbeheerde gegevens."
- },
- "IOSFaceID": {
- "label": "Face ID in plaats van pincode voor toegang (iOS 11+/iPadOS)",
- "tooltip": "Face ID maakt gebruik van gezichtsherkenningstechnologie om gebruikers op iOS/iPadOS-apparaten te verifiëren. Intune roept de LocalAuthentication-API aan om gebruikers te verifiëren met Face ID. Indien toegestaan, moet Face ID worden gebruikt voor toegang tot de app op een apparaat waarop Face ID kan worden gebruikt."
- },
- "IOSOverrideTouchId": {
- "label": "Biometrische gegevens overschrijven met pincode na time-out"
- },
- "IOSTouchId": {
- "label": "Touch ID in plaats van pincode voor toegang (iOS 8+/iPadOS)",
- "tooltip": "Touch ID maakt gebruik van vingerafdrukherkenningstechnologie om gebruikers op iOS-apparaten te verifiëren. Intune roept de LocalAuthentication-API aan om gebruikers te verifiëren met Touch ID. Indien toegestaan, moet Touch ID worden gebruikt voor toegang tot de app op een apparaat waarop Touch ID kan worden gebruikt."
- },
- "NotificationRestriction": {
- "label": "Meldingen van organisatiegegevens",
- "tooltip": "Selecteer een van de volgende opties om op te geven hoe meldingen voor organisatieaccounts worden weergegeven voor deze app en alle verbonden apparaten, bijvoorbeeld draagbare apparaten:
\r\n{0}: geen meldingen delen.
\r\n{1}: geen organisatiegegevens delen in meldingen. Als dit niet wordt ondersteund door de toepassing, worden de meldingen geblokkeerd.
\r\n{2}: alle meldingen delen.
\r\n Alleen Android:\r\n Opmerking: Deze instelling geldt niet voor alle toepassingen. Zie {3} voor meer informatie
\r\n \r\n Alleen iOS:\r\nOpmerking: Deze instelling geldt niet voor alle toepassingen. Zie {4} voor meer informatie
"
- },
- "OpenLinksManagedBrowser": {
- "label": "Overdracht van webinhoud met andere apps beperken",
- "tooltip": "Selecteer een van de volgende opties om de apps op te geven waarin deze app webinhoud kan openen:
\r\nEdge: toestaan dat webinhoud alleen wordt geopend in Edge
\r\nOnbeheerde browser: toestaan dat webinhoud alleen wordt geopend in de onbeheerde browser die is gedefinieerd met de instelling Protocol van onbeheerde browser
\r\nAlle apps: webkoppelingen in alle apps toestaan
"
- },
- "OverrideBiometric": {
- "tooltip": "Indien nodig, worden afhankelijk van de time-out (minuten van inactiviteit) biometrische prompts overschreven door een prompt voor de pincode. Als niet aan deze waarde voor de time-out wordt voldaan, wordt de biometrische prompt nog steeds weergegeven. Deze waarde voor de time-out moet groter zijn dan de opgegeven waarde onder 'Toegangsvereisten opnieuw controleren na (minuten van inactiviteit)'."
- },
- "PinAccess": {
- "label": "Pincode voor toegang",
- "tooltip": "Indien nodig, moet een pincode worden gebruikt om toegang te krijgen tot de door het beleid beheerde app. Gebruikers moeten de eerste keer dat ze de app in een werk- of schoolaccount-account openen een pincode voor toegang maken."
- },
- "PinLength": {
- "label": "Minimumlengte van de pincode selecteren:",
- "tooltip": "Met deze instelling wordt het minimale aantal cijfers voor een pincode opgegeven."
- },
- "PinType": {
- "label": "Type pincode",
- "tooltip": "Numerieke pincodes bestaan uit alle cijfers. Wachtwoordcodes bestaan uit alfanumerieke tekens en speciale tekens."
- },
- "Printing": {
- "label": "Organisatiegegevens afdrukken",
- "tooltip": "Als deze instelling is geblokkeerd, kunnen er geen beveiligde gegevens worden afgedrukt met de app."
- },
- "ReceiveData": {
- "label": "Gegevens ontvangen van andere apps",
- "tooltip": "Selecteer een van de volgende opties om aan te geven van welke apps deze app gegevens kan ontvangen:
\r\n\r\nGeen: niet toestaan dat gegevens in organisatiedocumenten of -accounts worden ontvangen van apps
\r\n\r\nDoor beleid beheerde apps: alleen toestaan dat gegevens in organisatiedocumenten of -accounts worden ontvangen die afkomstig zijn van andere door beleid beheerde apps\r\n
\r\nApps met inkomende organisatiegegevens: toestaan dat gegevens in organisatiedocumenten of -accounts worden ontvangen die afkomstig zijn van apps en alle inkomende gegevens zonder een gebruikersaccount behandelen als organisatiegegevens
\r\n\r\nAlle apps: toestaan dat gegevens uit alle apps in organisatiedocumenten of -accounts worden ontvangen"
- },
- "RecheckAccessAfter": {
- "label": "De toegangsvereisten opnieuw controleren na (minuten van inactiviteit)\r\n\r\n",
- "tooltip": "Als de door beleid beheerde app langer inactief is dan het opgegeven aantal minuten van inactiviteit, wordt door de app gevraagd om de toegangsvereisten (bijvoorbeeld de pincode of de instellingen voor voorwaardelijk starten) opnieuw te controleren nadat de app is gestart."
- },
- "RestrictKeyboards": {
- "duplicatePackageError": "De pakket-id moet uniek zijn.",
- "invalidPackageError": "Ongeldige pakket-id",
- "label": "Goedgekeurde toetsenborden",
- "select": "Selecteer toetsenborden om goed te keuren",
- "subtitle": "Alle toetsenborden en invoermethoden toevoegen die gebruikers mogen gebruiken met doel-apps. Voer de naam van het toetsenbord in zoals u wilt dat deze wordt weergegeven aan de eindgebruiker.",
- "title": "Goedgekeurde toetsenborden toevoegen",
- "toolTip": "Selecteer Vereist en geef vervolgens een lijst met goedgekeurde toetsenborden voor dit beleid op. Meer informatie. "
- },
- "SaveData": {
- "label": "Kopieën van organisatiegegevens opslaan",
- "tooltip": "Selecteer {0} om te voorkomen dat met 'Opslaan als' een kopie van organisatiegegevens wordt opgeslagen in een andere locatie dan de geselecteerde opslagservices.\r\n Selecteer {1} om toe te staan dat met 'Opslaan als' een kopie van organisatiegegevens wordt opgeslagen in een andere locatie.
\r\n\r\n\r\nOpmerking: Deze instelling geldt niet voor alle toepassingen. Zie {2} voor meer informatie.\r\n"
- },
- "SaveDataToSelected": {
- "label": "De gebruiker toestaan om kopieën op te slaan in de geselecteerde services",
- "tooltip": "Selecteer de opslagservices waarin gebruikers kopieën van organisatiegegevens kunnen opslaan. Alle andere services worden geblokkeerd. Wanneer u geen services selecteert, kunnen gebruikers geen kopie van organisatiegegevens opslaan."
- },
- "ScreenCaptureAndAndroidAssistant": {
- "label": "Schermopname en Google Assistant\r\n",
- "tooltip": "Als deze instelling is geblokkeerd, worden de scanfuncties van Schermopname en de Google Assistant-app uitgeschakeld wanneer u de door het beleid beheerde app gebruikt. Deze functie ondersteunt de gangbare Google Assistant-app. Assistenten van derden die gebruikmaken van de Assist-API van Google worden niet ondersteund. Als u Blokkeren kiest, wordt ook de voorbeeldafbeelding van App-Switcher vervaagd als u de app gebruikt met een werk- of schoolaccount."
- },
- "SendData": {
- "label": "Organisatiegegevens naar andere apps verzenden",
- "tooltip": "Selecteer een van de volgende opties om aan te geven naar welke apps deze app organisatiegegevens kan verzenden:
\r\n\r\n\r\nGeen: niet toestaan dat organisatiegegevens naar apps worden verzonden
\r\n\r\n\r\nDoor beleid beheerde apps: alleen toestaan dat organisatiegegevens naar andere door beleid beheerde apps worden verzonden
\r\n\r\n\r\nDoor beleid beheerde apps met delen van het besturingssysteem: alleen toestaan dat organisatiegegevens naar andere door beleid beheerde apps worden verzonden en dat organisatiedocumenten naar andere door MDM beheerde apps op ingeschreven apparaten worden verzonden
\r\n\r\n\r\nDoor beleid beheerde apps met filteren op 'Openen in/delen': alleen toestaan dat organisatiegegevens naar andere door beleid beheerde apps worden verzonden en dat dialoogvensters 'Openen in/delen' van het besturingssysteem worden gefilterd zodat alleen door beleid beheerde apps worden weergegeven\r\n
\r\n\r\nAlle apps: toestaan dat organisatiegegevens naar alle apps worden verzonden"
- },
- "SimplePin": {
- "label": "Eenvoudige pincode",
- "tooltip": "Als de optie voor blokkeren is ingesteld, kunnen gebruikers geen eenvoudige pincode maken. Een eenvoudige pincode is een tekenreeks van opeenvolgende of herhaalde cijfers, zoals 1234, ABCD of 1111. Als u een eenvoudige pincode van het type 'Wachtwoordcode' blokkeert, moet de wachtwoordcode ten minste één cijfer, één letter en één speciaal teken bevatten."
- },
- "SyncContacts": {
- "label": "Door beleid beheerde app-gegevens synchroniseren met systeemeigen apps of invoegtoepassingen"
- },
- "ThirdPartyKeyboards": {
- "infoBox": "Toetsenbordbeperkingen zijn van toepassing op alle gebieden van een app. Persoonlijke accounts voor apps die meerdere identiteiten ondersteunen, worden beïnvloed door deze beperkingen. Meer informatie.",
- "label": "Toetsenborden van derden"
- },
- "Timeout": {
- "label": "Time-out (minuten van inactiviteit)"
- },
- "Tap": {
- "numberOfDays": "Aantal dagen",
- "pinResetAfterNumberOfDays": "Aantal dagen waarna pincode opnieuw moet worden ingesteld",
- "previousPinBlockCount": "Aantal te onderhouden eerdere pincodewaarden selecteren"
- }
- },
- "WindowsFeatureUpdateProfile": {
- "Details": {
- "Description": {
- "label": "Beschrijving"
- },
- "FeatureDeploymentSettings": {
- "header": "Instellingen voor implementatie van functies"
- },
- "FeatureUpdateVersion": {
- "infoballoon": "Met deze functie kan geen downgrade voor een apparaat worden uitgevoerd.",
- "label": "De functie-update die moet worden geïmplementeerd"
- },
- "GradualRolloutEndDate": {
- "label": "Beschikbaarheid laatste groep"
- },
- "GradualRolloutInterval": {
- "label": "Dagen tussen groepen"
- },
- "GradualRolloutStartDate": {
- "label": "Beschikbaarheid eerste groep"
- },
- "Name": {
- "label": "Naam"
- },
- "RolloutOptions": {
- "label": "Implementatieopties"
- },
- "RolloutSettings": {
- "header": "Wanneer wilt u de update beschikbaar maken in Windows Update?"
- },
- "ScopeSettings": {
- "header": "Bereiktags voor dit beleid configureren."
- },
- "StartDateOnlyStartDate": {
- "label": "Eerste beschikbare datum"
- },
- "bladeTitle": "Implementaties van onderdelenupdate",
- "deploymentSettingsTitle": "Implementatie-instellingen",
- "loadError": "Kan niet laden.",
- "windows11EULA": "Door deze onderdelenupdate voor implementeren in te schakelen gaat u ermee akkoord dat bij het toepassen van dit besturingssysteem op een apparaat (1) de toepasselijke Windows-licentie is aangeschaft via de volumelicentie of (2) dat u gemachtigd bent om uw organisatie te binden en namens haar de relevante Licentievoorwaarden voor Microsoft-software accepteert die u hier {0} kunt vinden."
- },
- "Notifications": {
- "deploymentSaved": "{0} is opgeslagen.",
- "newFeatureUpdateDeploymentCreated": "Nieuwe implementatie voor onderdelenupdate gemaakt."
- },
- "TabName": {
- "deploymentSettings": "Implementatie-instellingen",
- "groupAssignmentSettings": "Toewijzingen",
- "scopeSettings": "Bereiktags"
- }
- },
- "OfficeUpdateChannel": {
- "current": "Huidig kanaal",
- "deferred": "Halfjaarlijks ondernemingskanaal",
- "firstReleaseCurrent": "Huidig kanaal (preview-versie)",
- "firstReleaseDeferred": "Halfjaarlijks ondernemingskanaal (preview-versie)",
- "monthlyEnterprise": "Monthly-kanaal (Enterprise)",
- "placeHolder": "Kies een optie"
- },
- "Win32ReturnCodes": {
- "CodeTypes": {
- "failed": "Mislukt",
- "hardReboot": "Hard opstarten",
- "retry": "Opnieuw",
- "softReboot": "Zacht opstarten",
- "success": "Geslaagd"
- },
- "Columns": {
- "codeType": "Codetype",
- "returnCode": "Retourcode"
- },
- "bladeTitle": "Retourcodes",
- "gridAriaLabel": "Retourcodes",
- "header": "Geef de retourcodes op het gedrag na installatie op te geven:",
- "onAddAnnounceMessage": "Item {0} van {1} met toegevoegde code retourneren",
- "onDeleteSuccess": "De retourcode is {0} verwijderd",
- "returnCodeAlreadyUsedValidation": "De retourcode wordt al gebruikt.",
- "returnCodeMustBeIntegerValidation": "De retourcode moet een geheel getal zijn.",
- "returnCodeShouldBeAtLeast": "De retourcode moet ten minste {0} zijn.",
- "returnCodeShouldBeAtMost": "De retourcode mag maximaal {0} zijn.",
- "selectorLabel": "Retourcodes"
- },
- "SecurityTemplate": {
- "aSR": "Kwetsbaarheid voor aanvallen verminderen",
- "accountProtection": "Accountbeveiliging",
- "allDevices": "Alle apparaten",
- "antivirus": "Antivirus",
- "antivirusReporting": "Antivirusrapportage (preview)",
- "conditionalAccess": "Voorwaardelijke toegang",
- "deviceCompliance": "Apparaatnaleving",
- "diskEncryption": "Schijfversleuteling",
- "eDR": "Eindpuntdetectie en -reactie",
- "firewall": "Firewall",
- "helpSupport": "Help en ondersteuning",
- "setup": "Installatie",
- "wdapt": "Microsoft Defender for Endpoint"
- },
- "PolicySet": {
- "appManagement": "Toepassingsbeheer",
- "assignments": "Toewijzingen",
- "basics": "Grondbeginselen",
- "deviceEnrollment": "Apparaatinschrijving",
- "deviceManagement": "Apparaatbeheer",
- "scopeTags": "Bereiktags",
- "appConfigurationTitle": "App-configuratiebeleid",
- "appProtectionTitle": "App-beveiligingsbeleid",
- "appTitle": "Apps",
- "iOSAppProvisioningTitle": "Inrichtingsprofielen voor iOS-app",
- "deviceLimitRestrictionTitle": "Beperkingen voor apparaatlimieten",
- "deviceTypeRestrictionTitle": "Beperkingen voor apparaattypen",
- "enrollmentStatusSettingTitle": "Inschrijvingsstatuspagina's",
- "windowsAutopilotDeploymentProfileTitle": "Windows AutoPilot-implementatieprofielen",
- "deviceComplianceTitle": "Beleidsregels voor apparaatcompatibiliteit",
- "deviceConfigurationTitle": "Apparaatconfiguratieprofielen",
- "powershellScriptTitle": "PowerShell-scripts"
- },
- "AssignmentAction": {
- "exclude": "Uitgesloten",
- "include": "Inbegrepen",
- "includeAllDevicesVirtualGroup": "Inbegrepen",
- "includeAllUsersVirtualGroup": "Inbegrepen"
- },
- "WindowsFeatureUpdate": {
- "EndOFSupportStatus": {
- "notSupported": "Niet ondersteund",
- "supportEnding": "Ondersteuning eindigt",
- "supported": "Ondersteund"
- }
- },
- "InstallIntent": {
- "available": "Beschikbaar voor ingeschreven apparaten",
- "availableWithoutEnrollment": "Beschikbaar met of zonder inschrijving",
- "required": "Vereist",
- "uninstall": "Verwijderen"
- },
"OutlookAppConfig": {
"DataProtectionConfiguration": {
"header": "Configuratie voor gegevensbeveiliging"
@@ -1938,307 +100,864 @@
"themesEnabledTitle": "Thema's zijn ingeschakeld",
"themesEnabledTooltip": "Opgeven of de gebruiker een aangepast visueel thema mag gebruiken."
},
- "TAP": {
- "AccessRequirements": {
- "infoText": "Configureer de pincode- en referentievereisten waaraan gebruikers moeten voldoen voor toegang tot apps in een werkomgeving."
- },
- "DataProtection": {
- "infoText": "Deze groep bevat besturingselementen voor preventie van gegevensverlies (DLP), zoals beperkingen voor Knippen, Kopiëren, Plakken en Opslaan als. Met deze instellingen wordt bepaald hoe gebruikers met gegevens in de apps kunnen werken."
- },
- "DeviceTypes": {
- "selectOne": "Selecteer ten minste één apparaattype."
- },
- "TargetedApps": {
- "TargetToAll": {
- "label": "Richten op apps op alle apparaattypen"
- },
- "infoText": "Kies hoe u dit beleid op apps op verschillende apparaten wilt toepassen. Voeg vervolgens ten minste één app toe.",
- "selectOne": "Selecteer ten minste één app om een beleid te maken."
- }
- },
- "TACSettings": {
- "edgeSettings": "Configuratie-instellingen voor Microsoft Edge",
- "edgeWindowsDataProtectionSettings": "Instellingen voor gegevensbescherming van Microsoft Edge (Windows) - Preview",
- "edgeWindowsSettings": "Instellingen voor configuratie van Microsoft Edge (Windows) - Preview",
- "generalAppConfig": "Algemene app-configuratie",
- "generalSettings": "Algemene configuratie-instellingen",
- "outlookSMIMEConfig": "S/MIME-instellingen voor Outlook",
- "outlookSettings": "Configuratie-instellingen voor Outlook",
- "sMIME": "S/MIME"
- },
- "OfficeApplicationAdditionalType": {
- "projectProRetail": "Project Online Desktop Client",
- "visioProRetail": "Visio Online-abonnement 2"
- },
- "Win32Requirements": {
- "AdditionalRequirements": {
- "File": {
- "fileOrFolderToolTip": "Het bestand of de map als de geselecteerde vereiste.",
- "pathToolTip": "Het volledige pad van het bestand of de map die u wilt detecteren.",
- "property": "Eigenschap",
- "valueToolTip": "Selecteer een waarde voor de vereiste die overeenkomt met de geselecteerde detectiemethode. Een vereiste voor datum en tijd moet u in de lokale tijdnotatie invoeren."
- },
- "GridColumns": {
- "pathOrScript": "Pad/script",
- "type": "Type"
- },
- "Registry": {
- "keyPath": "Sleutelpad",
- "keyPathTooltip": "Het volledige pad van de registervermelding die de waarde als vereiste bevat.",
- "operator": "Operator",
- "operatorTooltip": "Selecteer de operator voor de vergelijking.",
- "registryRequirement": "Vereiste voor registersleutel",
- "registryRequirementTooltip": "Selecteer de vergelijking van de vereiste voor de registersleutel.",
- "valueName": "Waardenaam",
- "valueNameTooltip": "De naam van de vereiste registerwaarde."
- },
- "RequirementTypeOptions": {
- "fileType": "Bestand",
- "registry": "Register",
- "script": "Script"
- },
- "Script": {
- "RequirementMethodOptions": {
- "boolean": "Booleaans",
- "dateTime": "Datum en tijd",
- "float": "Drijvende komma",
- "integer": "Geheel getal",
- "string": "Tekenreeks",
- "version": "Versie"
- },
- "ScriptContent": {
- "emptyMessage": "Scriptinhoud mag niet leeg zijn."
- },
- "duplicateName": "De scriptnaam {0} is al gebruikt. Voer een andere naam in.",
- "enforceSignatureCheck": "Controle van scripthandtekening afdwingen",
- "enforceSignatureCheckTooltip": "Selecteer Ja om op te geven dat het script is ondertekend door een vertrouwde uitgever. Hierdoor kan het script zonder waarschuwingen of prompts worden uitgevoerd. Het script wordt niet geblokkeerd en wordt uitgevoerd. Selecteer Nee (standaardwaarde) om het script met bevestiging door de eindgebruiker maar zonder handtekeningverificatie uit te voeren.",
- "loggedOnCredentials": "Dit script uitvoeren met referenties van aangemelde gebruiker",
- "loggedOnCredentialsTooltip": "Het script uitvoeren met de referenties van het aangemelde apparaat.",
- "operatorTooltip": "Selecteer de operator voor de vergelijking van vereisten.",
- "requirementMethod": "Uitvoergegevenstype selecteren",
- "requirementMethodTooltip": "Selecteer het gegevenstype dat wordt gebruikt bij het bepalen van een vereiste voor detectieovereenkomsten.",
- "scriptFile": "Scriptbestand",
- "scriptFileTooltip": "Selecteer een PowerShell-script waarmee de aanwezigheid van een app op de client wordt gedetecteerd. Als de app wordt gedetecteerd, wordt met het proces van de vereist een afsluitcode met de waarde 0 geretourneerd en een tekenreekswaarde naar STDOUT geschreven.",
- "scriptName": "Scriptnaam",
- "value": "Waarde",
- "valueTooltip": "Selecteer een waarde voor de vereiste die overeenkomt met de geselecteerde detectiemethode. Een vereiste voor datum en tijd moet u in de lokale tijdnotatie invoeren."
- },
- "bladeTitle": "Een vereisteregel toevoegen",
- "createRequirementHeader": "Maak een vereiste.",
- "header": "Aanvullende vereisteregels configureren",
- "label": "Aanvullende vereistenregels",
- "noRequirementsSelectedPlaceholder": "Er zijn geen vereisten opgegeven.",
- "requirementType": "Vereistetype",
- "requirementTypeTooltip": "Kies het type detectiemethode dat wordt gebruikt om te bepalen hoe een vereiste wordt gevalideerd."
- },
- "architectures": "Architectuur van besturingssysteem",
- "architecturesTooltip": "Kies de architecturen die nodig zijn voor het installeren van de app.",
- "bladeTitle": "Vereisten",
- "diskSpace": "Vereiste schijfruimte (MB)",
- "diskSpaceTooltip": "Vrije schijfruimte die nodig is op het systeemstation voor het installeren van de app.",
- "header": "Geef de vereisten op waaraan apparaten moeten voldoen voordat de app wordt geïnstalleerd:",
- "maximumTextFieldValue": "De waarde mag maximaal {0} zijn.",
- "minimumCpuSpeed": "Minimale vereiste processorsnelheid (MHz)",
- "minimumCpuSpeedTooltip": "De minimale processorsnelheid die is vereist om de app te installeren.",
- "minimumLogicalProcessors": "Minimale aantal vereiste logische processors",
- "minimumLogicalProcessorsTooltip": "Het minimale aantal logische processors dat is vereist om de app te installeren.",
- "minimumOperatingSystem": "Minimumversie van het besturingssysteem",
- "minimumOperatingSystemTooltip": "Selecteer de minimumversie van het besturingssysteem die nodig is voor het installeren van de app.",
- "minumumTextFieldValue": "De waarde moet ten minste {0} zijn.",
- "physicalMemory": "Vereiste fysieke geheugen (MB)",
- "physicalMemoryTooltip": "Fysieke geheugen (RAM) dat is vereist om de app te installeren.",
- "selectorLabel": "Vereisten",
- "validNumber": "Voer een geldig getal in"
- },
- "ArchitectureOptions": {
- "sixtyFourBit": "64-bits",
- "thirtyTwoBit": "32-bits"
- },
- "Countries": {
- "ae": "Verenigde Arabische Emiraten",
- "ag": "Antigua en Barbuda",
- "ai": "Anguilla",
- "al": "Albanië",
- "am": "Armenië",
- "ao": "Angola",
- "ar": "Argentinië",
- "at": "Oostenrijk",
- "au": "Australië",
- "az": "Azerbeidzjan",
- "bb": "Barbados",
- "be": "België",
- "bf": "Burkina Faso",
- "bg": "Bulgarije",
- "bh": "Bahrein",
- "bj": "Benin",
- "bm": "Bermuda",
- "bn": "Brunei",
- "bo": "Bolivia",
- "br": "Brazilië",
- "bs": "Bahama's",
- "bt": "Bhutan",
- "bw": "Botswana",
- "by": "Belarus",
- "bz": "Belize",
- "ca": "Canada",
- "cg": "Republiek Congo",
- "ch": "Zwitserland",
- "cl": "Chili",
- "cn": "China",
- "co": "Colombia",
- "cr": "Costa Rica",
- "cv": "Republiek van Cabo Verde",
- "cy": "Cyprus",
- "cz": "Tsjechië",
- "de": "Duitsland",
- "dk": "Denemarken",
- "dm": "Dominica",
- "do": "Dominicaanse Republiek",
- "dz": "Algerije",
- "ec": "Ecuador",
- "ee": "Estland",
- "eg": "Egypte",
- "es": "Spanje",
- "fi": "Finland",
- "fj": "Fiji",
- "fm": "Federale Staten van Micronesia",
- "fr": "Frankrijk",
- "gb": "Verenigd Koninkrijk",
- "gd": "Grenada",
- "gh": "Ghana",
- "gm": "Gambia",
- "gr": "Griekenland",
- "gt": "Guatemala",
- "gw": "Guinee-Bissau",
- "gy": "Guyana",
- "hk": "Hongkong SAR",
- "hn": "Honduras",
- "hr": "Kroatië",
- "hu": "Hongarije",
- "id": "Indonesië",
- "ie": "Ierland",
- "il": "Israël",
- "in": "India",
- "is": "IJsland",
- "it": "Italië",
- "jm": "Jamaica",
- "jo": "Jordanië",
- "jp": "Japan",
- "ke": "Kenia",
- "kg": "Kirgistan",
- "kh": "Cambodja",
- "kn": "Saint Kitts en Nevis",
- "kr": "Republiek Korea",
- "kw": "Koeweit",
- "ky": "Kaaimaneilanden",
- "kz": "Kazachstan",
- "la": "Democratische Volksrepubliek Laos",
- "lb": "Libanon",
- "lc": "Saint Lucia",
- "lk": "Sri Lanka",
- "lr": "Liberia",
- "lt": "Litouwen",
- "lu": "Luxemburg",
- "lv": "Letland",
- "md": "Republiek Moldavië",
- "mg": "Madagaskar",
- "mk": "Noord-Macedonië",
- "ml": "Mali",
- "mn": "Mongolië",
- "mo": "Macau",
- "mr": "Mauritanië",
- "ms": "Montserrat",
- "mt": "Malta",
- "mu": "Mauritius",
- "mw": "Malawi",
- "mx": "Mexico",
- "my": "Maleisië",
- "mz": "Mozambique",
- "na": "Namibië",
- "ne": "Niger",
- "ng": "Nigeria",
- "ni": "Nicaragua",
- "nl": "Nederland",
- "no": "Noorwegen",
- "np": "Nepal",
- "nz": "Nieuw-Zeeland",
- "om": "Oman",
- "pa": "Panama",
- "pe": "Peru",
- "pg": "Papoea-Nieuw-Guinea",
- "ph": "Filippijnen",
- "pk": "Pakistan",
- "pl": "Polen",
- "pt": "Portugal",
- "pw": "Palau",
- "py": "Paraguay",
- "qa": "Qatar",
- "ro": "Roemenië",
- "ru": "Rusland",
- "sa": "Saoedi-Arabië",
- "sb": "Salomonseilanden",
- "sc": "Seychellen",
- "se": "Zweden",
- "sg": "Singapore",
- "si": "Slovenië",
- "sk": "Slowakije",
- "sl": "Sierra Leone",
- "sn": "Senegal",
- "sr": "Suriname",
- "st": "Sao Tomé en Principe",
- "sv": "El Salvador",
- "sz": "Swaziland",
- "tc": "Turks- en Caicoseilanden",
- "td": "Tsjaad",
- "th": "Thailand",
- "tj": "Tadzjikistan",
- "tm": "Turkmenistan",
- "tn": "Tunesië",
- "tr": "Turkije",
- "tt": "Trinidad en Tobago",
- "tw": "Taiwan",
- "tz": "Tanzania",
- "ua": "Oekraïne",
- "ug": "Oeganda",
- "us": "Verenigde Staten",
- "uy": "Uruguay",
- "uz": "Oezbekistan",
- "vc": "St. Vincent en de Grenadines",
- "ve": "Venezuela",
- "vg": "Britse Maagdeneilanden",
- "vn": "Vietnam",
- "ye": "Jemen",
- "za": "Zuid-Afrika",
- "zw": "Zimbabwe"
+ "Languages": {
+ "ar-aE": "Arabisch (V.A.E.)",
+ "ar-bH": "Arabisch (Bahrein)",
+ "ar-dZ": "Arabisch (Algerije)",
+ "ar-eG": "Arabisch (Egypte)",
+ "ar-iQ": "Arabisch (Irak)",
+ "ar-jO": "Arabisch (Jordanië)",
+ "ar-kW": "Arabisch (Koeweit)",
+ "ar-lB": "Arabisch (Libanon)",
+ "ar-lY": "Arabisch (Libië)",
+ "ar-mA": "Arabisch (Marokko)",
+ "ar-oM": "Arabisch (Oman)",
+ "ar-qA": "Arabisch (Qatar)",
+ "ar-sA": "Arabisch (Saoedi-Arabië)",
+ "ar-sY": "Arabisch (Syrië)",
+ "ar-tN": "Arabisch (Tunesië)",
+ "ar-yE": "Arabisch (Jemen)",
+ "az-cyrl": "Azerbeidzjaans (Cyrillisch, Azerbeidzjan)",
+ "az-latn": "Azerbeidzjaans (Latijns, Azerbeidzjan)",
+ "bn-bD": "Bengaals (Bangladesh)",
+ "bn-iN": "Bangla (India)",
+ "bs-cyrl": "Bosnisch (Cyrillisch)",
+ "bs-latn": "Bosnisch (Latijns)",
+ "zh-cN": "Chinees (Volksrepubliek China)",
+ "zh-hK": "Chinees (Hongkong SAR)",
+ "zh-mO": "Chinees (Macao SAR)",
+ "zh-sG": "Chinees (Singapore)",
+ "zh-tW": "Chinees (Taiwan)",
+ "hr-bA": "Kroatisch (Latijn)",
+ "hr-hR": "Kroatisch (Kroatië)",
+ "nl-bE": "Nederlands (België)",
+ "nl-nL": "Nederlands (Nederland)",
+ "en-aU": "Engels (Australië)",
+ "en-bZ": "Engels (Belize)",
+ "en-cA": "Engels (Canada)",
+ "en-cabn": "Engels (Caribisch Gebied)",
+ "en-iE": "Engels (Ierland)",
+ "en-iN": "Engels (India)",
+ "en-jM": "Engels (Jamaica)",
+ "en-mY": "Engels (Maleisië)",
+ "en-nZ": "Engels (Nieuw-Zeeland)",
+ "en-pH": "Engels (Republiek der Filipijnen)",
+ "en-sG": "Engels (Singapore)",
+ "en-tT": "Engels (Trinidad en Tobago)",
+ "en-uK": "Engels (Verenigd Koninkrijk)",
+ "en-uS": "Engels (Verenigde Staten)",
+ "en-zA": "Engels (Zuid-Afrika)",
+ "en-zW": "Engels (Zimbabwe)",
+ "fr-bE": "Frans (België)",
+ "fr-cA": "Frans (Canada)",
+ "fr-cH": "Frans (Zwitserland)",
+ "fr-fR": "Frans (Frankrijk)",
+ "fr-lU": "Frans (Luxemburg)",
+ "fr-mC": "Frans (Monaco)",
+ "de-aT": "Duits (Oostenrijk)",
+ "de-cH": "Duits (Zwitserland)",
+ "de-dE": "Duits (Duitsland)",
+ "de-lI": "Duits (Liechtenstein)",
+ "de-lU": "Duits (Luxemburg)",
+ "iu-cans": "Inuktitut (syllabische tekens, Canada)",
+ "iu-latn": "Inuktitut (Latijns, Canada)",
+ "it-cH": "Italiaans (Zwitserland)",
+ "it-iT": "Italiaans (Italië)",
+ "ms-bN": "Maleis (Brunei Darussalam)",
+ "ms-mY": "Maleis (Maleisië)",
+ "mn-cN": "Mongools (Traditioneel Mongools, Volksrepubliek China)",
+ "mn-mN": "Mongools (Cyrillisch, Mongolië)",
+ "no-nB": "Noors, Bokmål (Noorwegen)",
+ "no-nn": "Noors, Nynorsk (Noorwegen)",
+ "pt-bR": "Portugees (Brazilië)",
+ "pt-pT": "Portugees (Portugal)",
+ "quz-bO": "Quechua (Bolivia)",
+ "quz-eC": "Quechua (Ecuador)",
+ "quz-pE": "Quechua (Peru)",
+ "smj-nO": "Sami, Lule (Noorwegen)",
+ "smj-sE": "Sami, Lule (Zweden)",
+ "se-fI": "Sami, noordelijk (Finland)",
+ "se-nO": "Sami, noordelijk (Noorwegen)",
+ "se-sE": "Sami, noordelijk (Zweden)",
+ "sma-nO": "Sami, zuidelijk (Noorwegen)",
+ "sma-sE": "Sami, zuidelijk (Zweden)",
+ "smn": "Sami, Inari (Finland)",
+ "sms": "Sami, Skolt (Finland)",
+ "sr-Cyrl-bA": "Servisch (Cyrillisch)",
+ "sr-Cyrl-rS": "Servisch (Cyrillisch, Servië en Montenegro (voormalig))",
+ "sr-Latn-bA": "Servisch (Latijns)",
+ "sr-Latn-rS": "Servisch (Latijns, Servië)",
+ "dsb": "Neder-Sorbisch (Duitsland)",
+ "hsb": "Opper-Sorbisch (Duitsland)",
+ "es-es-tradnl": "Spaans (Spanje, traditioneel)",
+ "es-aR": "Spaans (Argentinië)",
+ "es-bO": "Spaans (Bolivia)",
+ "es-cL": "Spaans (Chili)",
+ "es-cO": "Spaans (Colombia)",
+ "es-cR": "Spaans (Costa Rica)",
+ "es-dO": "Spaans (Dominicaanse Republiek)",
+ "es-eC": "Spaans (Ecuador)",
+ "es-eS": "Spaans (Spanje)",
+ "es-gT": "Spaans (Guatemala)",
+ "es-hN": "Spaans (Honduras)",
+ "es-mX": "Spaans (Mexico)",
+ "es-nI": "Spaans (Nicaragua)",
+ "es-pA": "Spaans (Panama)",
+ "es-pE": "Spaans (Peru)",
+ "es-pR": "Spaans (Puerto Rico)",
+ "es-pY": "Spaans (Paraguay)",
+ "es-sV": "Spaans (El Salvador)",
+ "es-uS": "Spaans (Verenigde Staten)",
+ "es-uY": "Spaans (Uruguay)",
+ "es-vE": "Spaans [Venezuele]",
+ "sv-fI": "Zweeds (Finland)",
+ "uz-cyrl": "Oezbeeks (Cyrillisch, Oezbekistan)",
+ "uz-latn": "Oezbeeks (Latijns, Oezbekistan)",
+ "af": "Afrikaans (Zuid-Afrika)",
+ "sq": "Albanees (Albanië)",
+ "am": "Amhaars (Ethiopië)",
+ "hy": "Armeens (Armenië)",
+ "as": "Assamees (India)",
+ "ba": "Bashkir (Rusland)",
+ "eu": "Baskisch (Baskisch)",
+ "be": "Belarussisch (Belarus)",
+ "br": "Bretons (Frankrijk)",
+ "bg": "Bulgaars (Bulgarije)",
+ "ca": "Catalaans (Catalaans)",
+ "co": "Corsicaans (Frankrijk)",
+ "cs": "Tsjechisch (Tsjechische Republiek)",
+ "da": "Deens (Denemarken)",
+ "prs": "Dari (Afghanistan)",
+ "dv": "Divehi (Maldiven)",
+ "et": "Estisch (Estland)",
+ "fo": "Faeröers (Faröer)",
+ "fil": "Filipijns (Filipijnen)",
+ "fi": "Fins (Finland)",
+ "gl": "Galicisch (Gallicië)",
+ "ka": "Georgisch (Georgië)",
+ "el": "Grieks (Griekenland)",
+ "gu": "Gujarati (India)",
+ "ha": "Hausa (Latijns, Nigeria)",
+ "he": "Hebreeuws (Israël)",
+ "hi": "Hindi (India)",
+ "hu": "Hongaars (Hongarije)",
+ "is": "IJslands (IJsland)",
+ "ig": "Igbo (Nigeria)",
+ "id": "Indonesisch (Indonesië)",
+ "ga": "Iers (Ierland)",
+ "xh": "isiXhosa (Zuid-Afrika)",
+ "zu": "isiZulu (Zuid-Afrika)",
+ "ja": "Japans (Japan)",
+ "kn": "Kannada (India)",
+ "kk": "Kazachs (Kazachstan)",
+ "km": "Khmer (Cambodja)",
+ "rw": "Kinyarwanda (Rwanda)",
+ "sw": "Kiswahili (Kenia)",
+ "kok": "Konkani (India)",
+ "ko": "Koreaans (Korea)",
+ "ky": "Kirgizisch (Kirgizië)",
+ "lo": "Lao (Democratische Volksrepubliek Laos)",
+ "lv": "Lets (Letland)",
+ "lt": "Litouws (Litouwen)",
+ "lb": "Luxemburgs (Luxemburg)",
+ "mk": "Macedonisch (Noord-Macedonië)",
+ "ml": "Malayalam (India)",
+ "mt": "Maltees (Malta)",
+ "mi": "Maori (Nieuw-Zeeland)",
+ "mr": "Marathi (India)",
+ "moh": "Mohawk (Mohawk)",
+ "ne": "Nepalees (Nepal)",
+ "oc": "Occitaans (Frankrijk)",
+ "or": "Odia (India)",
+ "ps": "Pashto (Afghanistan)",
+ "fa": "Perzisch",
+ "pl": "Pools (Polen)",
+ "pa": "Punjabi (India)",
+ "ro": "Roemeens (Roemenië)",
+ "rm": "Romaans (Zwitserland)",
+ "ru": "Russisch (Rusland)",
+ "sa": "Sanskriet (India)",
+ "st": "Sesotho sa Leboa (Zuid-Afrika)",
+ "tn": "Setswana (Zuid-Afrika)",
+ "si": "Sinhala (Sri Lanka)",
+ "sk": "Slowaaks (Slowakije)",
+ "sl": "Sloveens (Slovenië)",
+ "sv": "Zweeds (Zweden)",
+ "syr": "Syrisch (Syrië)",
+ "tg": "Tadzjieks (Cyrillisch, Tadzjikistan)",
+ "ta": "Tamil (India)",
+ "tt": "Tataars (Rusland)",
+ "te": "Telugu (India)",
+ "th": "Thai (Thailand)",
+ "bo": "Tibetaans (Volksrepubliek China)",
+ "tr": "Turks (Turkije)",
+ "tk": "Turkmeens (Turkmenistan)",
+ "uk": "Oekraïens (Oekraïne)",
+ "ur": "Oerdoe (Islamitische Republiek Pakistan)",
+ "vi": "Vietnamees (Vietnam)",
+ "cy": "Welsh (Verenigd Koninkrijk)",
+ "wo": "Wolof (Senegal)",
+ "ii": "Yi (Volksrepubliek China)",
+ "yo": "Yoruba (Nigeria)"
+ },
+ "Category": {
+ "airPlay": "AirPlay",
+ "airPrint": "AirPrint",
+ "androidDefenderAtp": "Microsoft Defender for Endpoint",
+ "androidDeviceOwnerApplications": "Toepassingen",
+ "androidForWorkPassword": "Apparaatwachtwoord",
+ "appManagement": "Apps blokkeren of toestaan",
+ "applicationGuard": "Microsoft Defender Application Guard",
+ "applicationRestrictions": "Beperkte apps",
+ "applicationVisibility": "Apps weergeven of verbergen",
+ "applications": "App Store",
+ "applicationsAndGames": "App Store, documentweergave, gaming",
+ "applicationsAndGoogle": "Google Play Store",
+ "appsAndExperience": "Apps en ervaring",
+ "associatedDomains": "Gekoppelde domeinen",
+ "autonomousSingleAppMode": "Autonome modus voor enkele app",
+ "azureOperationalInsights": "Azure Operational Insights",
+ "bitLocker": "Windows-versleuteling",
+ "browser": "Browser",
+ "builtinApps": "Geïntegreerde apps",
+ "cellular": "Mobiel",
+ "cloudAndStorage": "Cloud en opslag",
+ "cloudPrint": "Cloudprinter",
+ "complianceEmailProfile": "E-mail",
+ "connectedDevices": "Verbonden apparaten",
+ "connectivity": "Mobiel en connectiviteit",
+ "contentCaching": "Cacheopslag van inhoud",
+ "controlPanelAndSettings": "Configuratiescherm en Instellingen",
+ "credentialGuard": "Microsoft Defender Credential Guard",
+ "customCompliance": "Aangepaste naleving",
+ "customCompliancePreview": "Aangepaste naleving (preview)",
+ "customConfiguration": "Aangepast configuratieprofiel",
+ "customOMASettings": "Aangepaste OMA-URI-instellingen",
+ "customPreferences": "Voorkeursbestand",
+ "defender": "Microsoft Defender Antivirus",
+ "defenderAntivirus": "Microsoft Defender Antivirus",
+ "defenderExploitGuard": "Microsoft Defender Exploit Guard",
+ "defenderFirewall": "Microsoft Defender Firewall",
+ "defenderLocalSecurityOptions": "Beveiligingsopties lokaal apparaat",
+ "defenderSecurityCenter": "Microsoft Defender-beveiligingscentrum",
+ "deliveryOptimization": "Delivery Optimization",
+ "derivedCredentialAuthenticationConfiguration": "Afgeleide referentie",
+ "deviceExperience": "Apparaat-ervaring",
+ "deviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
+ "deviceGuard": "Microsoft Defender-toepassingsbeheer",
+ "deviceHealth": "Apparaatstatus",
+ "devicePassword": "Apparaatwachtwoord",
+ "deviceProperties": "Apparaateigenschappen",
+ "deviceRestrictions": "Algemeen",
+ "deviceSecurity": "Systeembeveiliging",
+ "display": "Weergeven",
+ "domainJoin": "Domeindeelname",
+ "domains": "Domeinen",
+ "edgeBrowser": "Microsoft Edge Legacy (versie 45 en eerder)",
+ "edgeBrowserSmartScreen": "Microsoft Defender SmartScreen",
+ "edgeKiosk": "Microsoft Edge-kioskmodus",
+ "editionUpgrade": "Editie-upgrade",
+ "education": "Educatief",
+ "educationDeviceCerts": "Apparaatcertificaten",
+ "educationStudentCerts": "Studentcertificaten",
+ "educationTakeATest": "Een test uitvoeren",
+ "educationTeacherCerts": "Docentcertificaten",
+ "emailProfile": "E-mail",
+ "enterpriseDataProtection": "Windows Information Protection",
+ "expeditedCheckin": "Configuratie voor Mobile Device Management",
+ "extensibleSingleSignOn": "App-extensie voor eenmalige aanmelding",
+ "filevault": "FileVault",
+ "firewall": "Firewall",
+ "games": "Games",
+ "gatekeeper": "Gatekeeper",
+ "healthMonitoring": "Statuscontrole",
+ "homeScreenLayout": "Indeling startscherm",
+ "iOSWallpaper": "Achtergrond",
+ "importedPFX": "Geïmporteerd PKCS-certificaat",
+ "iosDefenderAtp": "Microsoft Defender for Endpoint",
+ "iosKiosk": "Kiosk",
+ "kernelExtensions": "Kernelextensies",
+ "keyboardAndDictionary": "Toetsenbord en woordenboek",
+ "kiosk": "Kiosk",
+ "kioskAndroidEnterprise": "Toegewezen apparaten",
+ "kioskConfiguration": "Kiosk",
+ "kioskConfigurationV2": "Kiosk",
+ "kioskWebBrowser": "Kiosk Web Browser",
+ "lockScreenMessage": "Bericht voor vergrendelingsscherm",
+ "lockedScreenExperience": "Ervaring vergrendeld scherm",
+ "logging": "Rapportage en telemetrie",
+ "loginItems": "Aanmeldingsitems",
+ "loginWindow": "Aanmeldingsvenster",
+ "macDefenderAtp": "Microsoft Defender for Endpoint",
+ "maintenance": "Onderhoud",
+ "malware": "Malware",
+ "messaging": "Berichten",
+ "networkBoundary": "De grens van het netwerk",
+ "networkProxy": "Netwerkproxy",
+ "notifications": "App-meldingen",
+ "pKCS": "PKCS-certificaat",
+ "password": "Wachtwoord",
+ "personalProfile": "Persoonlijk profiel",
+ "personalization": "Persoonlijke instellingen",
+ "policyOverride": "Groepsbeleid overschrijven",
+ "powerSettings": "Energie-instellingen",
+ "printer": "Printer",
+ "privacy": "Privacy",
+ "privacyPerApp": "Privacyuitzonderingen per app",
+ "privacyPreferences": "Privacyvoorkeuren",
+ "projection": "Projectie",
+ "sCCMCompliance": "Configuration Manager-naleving",
+ "sCEP": "SCEP-certificaat",
+ "sCEPProperties": "SCEP-certificaat",
+ "sMode": "Overschakelen naar andere modus (alleen Windows Insider)",
+ "safari": "Safari",
+ "search": "Zoeken",
+ "session": "Sessie",
+ "sharedDevice": "Gedeelde iPad",
+ "sharedPCAccountManager": "Gedeeld apparaat voor meerdere gebruikers",
+ "singleSignOn": "Eenmalige aanmelding",
+ "smartScreen": "Microsoft Defender SmartScreen",
+ "softwareUpdates": "Instellingen",
+ "start": "Begin",
+ "systemExtensions": "Systeemextensies",
+ "systemSecurity": "Systeembeveiliging",
+ "trustedCert": "Vertrouwd certificaat",
+ "updates": "Updates",
+ "userRights": "Gebruikersrechten",
+ "usersAndAccounts": "Gebruikers en accounts",
+ "vPN": "Basis-VPN",
+ "vPNApps": "Automatische VPN",
+ "vPNAppsAndTrafficRules": "Apps en verkeersregels",
+ "vPNConditionalAccess": "Voorwaardelijke toegang",
+ "vPNConnectivity": "Connectiviteit",
+ "vPNDNSTriggers": "DNS-instellingen",
+ "vPNIKEv2": "IKEv2-instellingen",
+ "vPNProxy": "Proxy",
+ "vPNSplitTunneling": "Split tunneling",
+ "vPNTrustedNetwork": "Vertrouwde netwerkdetectie",
+ "webContentFilter": "Webinhoudsfilter",
+ "wiFi": "Wi-Fi",
+ "win10Wifi": "Wi-Fi",
+ "windowsAtp": "Microsoft Defender for Endpoint",
+ "windowsDefenderATP": "Microsoft Defender for Endpoint",
+ "windowsHelloForBusiness": "Windows Hello voor Bedrijven",
+ "windowsSpotlight": "Windows-spotlight",
+ "wiredNetwork": "Bekabeld netwerk",
+ "wireless": "Draadloos",
+ "wirelessProjection": "Draadloze projectie",
+ "workProfile": "Werkprofielinstellingen",
+ "workProfilePassword": "Werkprofielwachtwoord",
+ "xboxServices": "Xbox-services",
+ "zebraMx": "MX-profiel (alleen Zebra)",
+ "complianceActionsLabel": "Acties voor niet-naleving"
+ },
+ "WindowsFeatureUpdateProfile": {
+ "Details": {
+ "Description": {
+ "label": "Beschrijving"
+ },
+ "FeatureDeploymentSettings": {
+ "header": "Instellingen voor implementatie van functies"
+ },
+ "FeatureUpdateVersion": {
+ "infoballoon": "Met deze functie kan geen downgrade voor een apparaat worden uitgevoerd.",
+ "label": "De functie-update die moet worden geïmplementeerd"
+ },
+ "GradualRolloutEndDate": {
+ "label": "Beschikbaarheid laatste groep"
+ },
+ "GradualRolloutInterval": {
+ "label": "Dagen tussen groepen"
+ },
+ "GradualRolloutStartDate": {
+ "label": "Beschikbaarheid eerste groep"
+ },
+ "Name": {
+ "label": "Naam"
+ },
+ "RolloutOptions": {
+ "label": "Implementatieopties"
+ },
+ "RolloutSettings": {
+ "header": "Wanneer wilt u de update beschikbaar maken in Windows Update?"
+ },
+ "ScopeSettings": {
+ "header": "Bereiktags voor dit beleid configureren."
+ },
+ "StartDateOnlyStartDate": {
+ "label": "Eerste beschikbare datum"
+ },
+ "bladeTitle": "Implementaties van onderdelenupdate",
+ "deploymentSettingsTitle": "Implementatie-instellingen",
+ "loadError": "Kan niet laden.",
+ "windows11EULA": "Door deze onderdelenupdate voor implementeren in te schakelen gaat u ermee akkoord dat bij het toepassen van dit besturingssysteem op een apparaat (1) de toepasselijke Windows-licentie is aangeschaft via de volumelicentie of (2) dat u gemachtigd bent om uw organisatie te binden en namens haar de relevante Licentievoorwaarden voor Microsoft-software accepteert die u hier {0} kunt vinden."
+ },
+ "Notifications": {
+ "deploymentSaved": "{0} is opgeslagen.",
+ "newFeatureUpdateDeploymentCreated": "Nieuwe implementatie voor onderdelenupdate gemaakt."
+ },
+ "TabName": {
+ "deploymentSettings": "Implementatie-instellingen",
+ "groupAssignmentSettings": "Toewijzingen",
+ "scopeSettings": "Bereiktags"
+ }
+ },
+ "WIPPinRequirements": {
+ "WipLowercaseCharacterPinRequirements": {
+ "allow": "Kleine letters toestaan in een pincode",
+ "notAllow": "Geen kleine letters toestaan in een pincode",
+ "requireAtLeastOne": "Minimaal één kleine letter vereisen in een pincode"
+ },
+ "WipSpecialCharacterPinRequirements": {
+ "allow": "Speciale tekens toestaan in een pincode",
+ "notAllow": "Geen speciale tekens toestaan in een pincode",
+ "requireAtLeastOne": "Minimaal één speciaal teken vereisen in een pincode"
+ },
+ "WipUppercaseCharacterPinRequirements": {
+ "allow": "Hoofdletters toestaan in een pincode",
+ "notAllow": "Geen hoofdletters toestaan in een pincode",
+ "requireAtLeastOne": "Minimaal één hoofdletter vereisen in een pincode"
+ }
+ },
+ "OutlookAppConfigSettings": {
+ "AllowUserToChangeSetting": {
+ "title": "Toestaan dat de gebruiker de instelling kan wijzigen",
+ "tooltip": "Geef aan of de gebruiker de synchronisatie-instelling mag wijzigen."
+ },
+ "AllowWorkAccounts": {
+ "title": "Alleen werk- of schoolaccounts toestaan",
+ "tooltip": " Als u deze instelling inschakelt, kunnen gebruikers geen persoonlijke e-mail- en opslagaccounts toevoegen in Outlook. Als de gebruiker een persoonlijk account heeft toegevoegd aan Outlook, wordt de gebruiker gevraagd om dit te verwijderen. Als de gebruiker het persoonlijke account niet verwijdert, kan het werk- of schoolaccount niet worden toegevoegd."
+ },
+ "BlockExternalImages": {
+ "title": "Externe afbeeldingen blokkeren",
+ "tooltip": "Als de optie Externe afbeeldingen blokkeren is ingeschakeld, wordt met de app voorkomen dat afbeeldingen die op internet worden gehost en in de berichttekst zijn ingesloten, kunnen worden gedownload. Als de optie niet is geconfigureerd, wordt standaard de app-instelling Uit gebruikt"
+ },
+ "ConfigureEmail": {
+ "title": "Instellingen van e-mailaccount configureren"
+ },
+ "DefaultAppSignatureSetting": {
+ "Tooltip": {
+ "android": "In de standaardhandtekening voor de app wordt aangegeven of 'Outlook voor Android downloaden' als standaardhandtekening voor de app wordt gebruikt tijdens het opstellen van berichten. Als de instelling op Uit is ingesteld, wordt de standaardhandtekening niet gebruikt; gebruikers kunnen echter wel hun eigen handtekening toevoegen.\r\n\r\nWanneer deze instelling op Niet geconfigureerd is ingesteld, wordt de standaardinstelling voor de app ingesteld op Aan.",
+ "iOS": "In de standaardhandtekening voor de app wordt aangegeven of 'Outlook voor iOS downloaden' als standaardhandtekening voor de app wordt gebruikt tijdens het opstellen van berichten. Als de instelling op Uit is ingesteld, wordt de standaardhandtekening niet gebruikt; gebruikers kunnen echter wel hun eigen handtekening toevoegen.\r\n\r\nWanneer deze instelling op Niet geconfigureerd is ingesteld, wordt de standaardinstelling voor de app ingesteld op Aan."
+ },
+ "title": "Standaardhandtekening voor apps"
+ },
+ "OfficeFeedReplies": {
+ "title": "Feed detecteren",
+ "tooltip": "Feeds detecteren van uw meest gebruikte Office-bestanden. Deze feed is standaard ingeschakeld wanneer Delve is ingeschakeld voor de gebruiker. Wanneer de instelling niet is geconfigureerd, is de app standaard ingesteld op Aan."
+ },
+ "OrganizeMailByThread": {
+ "title": "E-mailberichten rangschikken op thread",
+ "tooltip": "Standaard worden e-mailconversaties in Outlook gebundeld in een weergave met gespreksthreads. Als deze instelling is uitgeschakeld, wordt elk e-mailbericht in Outlook afzonderlijk weergegeven en worden berichten niet op thread gegroepeerd."
+ },
+ "PlayMyEmails": {
+ "title": "Mijn e-mailberichten afspelen",
+ "tooltip": "De functie Mijn e-mailberichten afspelen is standaard niet ingeschakeld in de app, maar wordt aangeboden aan in aanmerking komende gebruikers via een banner in het Postvak IN. Wanneer deze functie is ingesteld op Uit, wordt deze niet aangeboden aan in aanmerking komende gebruikers in de app. Gebruikers kunnen ervoor kiezen Mijn e-mailberichten afspelen handmatig in te schakelen vanuit de app, zelfs wanneer deze functie is ingesteld op Uit. Als deze optie is ingesteld als Niet geconfigureerd, is de standaardinstelling voor de app Aan en wordt de functie aangeboden aan in aanmerking komende gebruikers."
+ },
+ "SuggestedReplies": {
+ "title": "Voorgestelde antwoorden",
+ "tooltip": "Wanneer u een bericht opent, kan Outlook antwoorden voorstellen onder het bericht. Als u een voorgesteld antwoord selecteert, kunt u het antwoord bewerken voordat u het verzendt."
+ },
+ "SyncCalendars": {
+ "title": "Agenda's synchroniseren",
+ "tooltip": "Configureren of gebruikers hun Outlook-agenda kunnen synchroniseren met de systeemeigen agenda-app en -database."
+ },
+ "TextPredictions": {
+ "title": "Tekstvoorspellingen",
+ "tooltip": "Outlook kan woorden en zinsdelen voorstellen bij het opstellen van berichten. Wanneer Outlook een suggestie geeft, kunt u vegen om deze te accepteren. Wanneer deze functie niet is geconfigureerd, is de app-standaardinstelling Aan."
+ },
+ "ThemesEnabled": {
+ "title": "Thema's zijn ingeschakeld",
+ "tooltip": "Opgeven of de gebruiker een aangepast visueel thema mag gebruiken."
+ }
+ },
+ "AssignmentFilters": {
+ "assignmentFilterColumnHeader": "Filter",
+ "noFilters": "Geen"
+ },
+ "Platform": {
+ "all": "Alles",
+ "android": "Android-apparaatbeheerder",
+ "androidAOSP": "Android (AOSP)",
+ "androidEnterprise": "Android Enterprise",
+ "androidForWork": "Android Enterprise",
+ "androidWorkProfile": "Android Enterprise",
+ "common": "Algemeen",
+ "iOS": "iOS/iPadOS",
+ "iosAndAndroidPlatformLabel": "iOS en Android",
+ "iosCommaAndroidPlatformLabel": "iOS, Android",
+ "linux": "Linux",
+ "macOS": "macOS",
+ "unknown": "Onbekend",
+ "unsupported": "Niet-ondersteund",
+ "windows": "Windows",
+ "windows10": "Windows 10 en later",
+ "windows10CM": "Windows 10 en hoger (ConfigMgr)",
+ "windows10Holo": "Windows 10 Holographic",
+ "windows10Mobile": "Windows 10 Mobile",
+ "windows10Team": "Windows 10 Team",
+ "windows10X": "Windows 10X",
+ "windows8": "Windows 8.1 en later",
+ "windows8And10": "Windows 8 en 10",
+ "windowsPhone": "Windows Phone 8.1",
+ "windows10AndLater": "Windows 10 en later",
+ "windows10AndWindowsServer": "Windows 10, Windows 11 en Windows Server (ConfigMgr)",
+ "windows10andLaterCM": "Windows 10 en hoger (ConfigMgr)",
+ "holoLens": "HoloLens",
+ "surfaceHub2": "Surface Hub 2",
+ "surfaceHub2S": "Surface Hub 2S",
+ "windowsPC": "Windows-pc"
+ },
+ "AppInformationTab": {
+ "Error": {
+ "multipleChildApps": "Een macOS LOB-app kan alleen worden geïnstalleerd als beheerd wanneer het geüploade pakket één app bevat."
+ },
+ "Info": {
+ "AppStoreUrl": {
+ "android": "Voer de koppeling naar de app-vermelding in Google Play Store in. Bijvoorbeeld:",
+ "androidLink": "https://play.google.com/store/apps/details?id=com.microsoft.office.outlook",
+ "windows": "Voer de koppeling naar de app-vermelding in Microsoft Store in. Bijvoorbeeld:",
+ "windowsLink": "https://www.microsoft.com/en-us/p/microsoft-to-do-lists-tasks-reminders/9nblggh5r558"
+ },
+ "appPackageFile": "Een bestand dat uw app bevat in een indeling die kan worden gesideload op een apparaat. Geldige pakkettypen zijn onder andere Android (.apk), iOS (.ipa), macOS (.pkg, .intunemac), Windows (.msi, .appx, .appxbundle, .msix, and .msixbundle).",
+ "applicableDeviceType": "Selecteer de apparaattypen waarop deze app kan worden geïnstalleerd.",
+ "category": "Geef categorieën voor de app op zodat gebruikers gemakkelijker kunnen sorteren en zoeken in de bedrijfsportal. U kunt meerdere categorieën kiezen.",
+ "categoryLink": "https://docs.microsoft.com/en-us/intune/apps/apps-add#create-and-edit-categories-for-apps",
+ "description": "Help uw apparaatgebruikers te begrijpen wat de app is en/of wat ze kunnen doen in de app. Deze beschrijving is zichtbaar in de bedrijfsportal.",
+ "developer": "De naam van het bedrijf of de persoon die de app heeft ontwikkeld. Deze informatie is zichtbaar voor personen die zijn aangemeld bij het beheercentrum.",
+ "displayVersion": "De versie van de app. Deze informatie is zichtbaar voor gebruikers in de bedrijfsportal.",
+ "infoUrl": "Personen koppelen aan een website of documentatie met meer informatie over de app. De informatie-URL is zichtbaar voor gebruikers in de bedrijfsportal.",
+ "isFeatured": "Aanbevolen apps worden opvallend weergegeven in de bedrijfsportal zodat gebruikers ze snel kunnen gebruiken.",
+ "learnMore": "Meer informatie",
+ "logo": "Upload een logo dat is gekoppeld aan de app. Dit logo wordt overal in de bedrijfsportal naast de app weergegeven.",
+ "macOSDmgAppPackageFile": "Een bestand dat uw app bevat in een indeling die op een apparaat kan worden geladen. Geldig pakkettype: .dmg.",
+ "minOperatingSystem": "Selecteer de oudste versie van het besturingssysteem waarop de app mag worden geïnstalleerd. Als u de app aan een apparaat met een ouder besturingssysteem toewijst, wordt deze niet geïnstalleerd.",
+ "name": "Voeg een naam voor de app toe. Deze naam wordt weergegeven in de lijst met apps van Intune en voor gebruikers in de bedrijfsportal.",
+ "notes": "Voeg aanvullende opmerkingen over de app toe. Notities zijn zichtbaar voor personen die zijn aangemeld bij het beheercentrum.",
+ "owner": "De naam van de persoon in uw organisatie die de licentieverlening beheert of die de contactpersoon voor deze app is. Deze naam is zichtbaar voor personen die zijn aangemeld bij het beheercentrum.",
+ "packageName": "Neem contact op met de fabrikant van het apparaat om de pakketnaam van de app op te halen. Voorbeeld van een pakketnaam: com.example.app",
+ "privacyUrl": "Geef een koppeling op voor mensen die meer informatie willen hebben over de privacyinstellingen en voorwaarden van de app. De privacy-URL is zichtbaar voor gebruikers in de bedrijfsportal.",
+ "publisher": "De naam van de ontwikkelaar of het bedrijf dat de app distribueert. Deze informatie is zichtbaar voor gebruikers in de bedrijfsportal.",
+ "selectApp": "Zoek in de App Store naar iOS Store-apps die u wilt implementeren met Intune.",
+ "useManagedBrowser": "Als dit vereist is en een gebruiker de web-app opent, wordt deze geopend in een door Intune beveiligde browser zoals Microsoft Edge of Intune Managed Browser. Deze instelling is van toepassing op iOS- en Android-apparaten.",
+ "useManagedBrowserLink": "https://docs.microsoft.com/en-us/intune/apps/app-configuration-managed-browser",
+ "win32AppPackageFile": "Een bestand dat uw app bevat in een indeling die kan worden gesideload op een apparaat. Geldig pakkettype: .intunewin."
+ },
+ "descriptionPreview": "Preview",
+ "descriptionRequired": "Een beschrijving is vereist.",
+ "editDescription": "Beschrijving bewerken",
+ "macOSMinOperatingSystemAdditionalInfo": "Het minimale besturingssysteem voor het uploaden van een PKG-bestand is macOS 10.14. Upload een .intunemac-bestand om een ouder minimaal besturingssysteem te selecteren.",
+ "name": "App-gegevens",
+ "nameForOfficeSuitApp": "Gegevens over de app-suite"
+ },
+ "Tooltips": {
+ "PolicySettings": {
+ "TouchId1": {
+ "android": "In Android kunt u identificatie met een vingerafdruk in plaats van een pincode toestaan. Gebruikers worden om hun vingerafdruk gevraagd wanneer ze deze app openen met hun werkaccount.",
+ "iOS": "U kunt op iOS/iPadOS-apparaten identificatie met een vingerafdruk in plaats van met een pincode toestaan. Gebruikers worden gevraagd om hun vingerafdruk wanneer ze hun werkaccount gebruiken om toegang tot deze app te krijgen.",
+ "mac": "U kunt op Mac-apparaten identificatie met een vingerafdruk toestaan in plaats van met een pincode. Gebruikers wordt gevraagd om hun vingerafdruk wanneer ze hun werkaccount gebruiken om toegang tot deze app te krijgen."
+ },
+ "appSharingFromLevel1": "Selecteer een van de volgende opties om de apps op te geven waarvan deze app gegevens kan ontvangen:",
+ "appSharingFromLevel2": "{0}: alleen toestaan dat gegevens in organisatiedocumenten of -accounts worden ontvangen die afkomstig zijn van andere door beleid beheerde apps",
+ "appSharingFromLevel3": "{0}: toestaan dat gegevens uit alle apps worden ontvangen in organisatiedocumenten of -accounts",
+ "appSharingFromLevel4": "{0}: niet toestaan dat gegevens uit alle apps worden ontvangen in organisatiedocumenten of -accounts",
+ "appSharingFromLevel5": "{0}: gegevensoverdracht toestaan van elke app en alle inkomende gegevens zonder gebruikers-id verwerken als organisatiegegevens.",
+ "appSharingToLevel1": "Selecteer een van de volgende opties om de apps op te geven waarnaar deze app gegevens kan verzenden:",
+ "appSharingToLevel2": "{0}: alleen toestaan dat organisatiegegevens worden verzonden naar andere door beleid beheerde apps",
+ "appSharingToLevel3": "{0}: toestaan dat organisatiegegevens naar alle apps worden verzonden",
+ "appSharingToLevel4": "{0}: niet toestaan dat organisatiegegevens naar alle apps worden verzonden",
+ "appSharingToLevel5": "{0}: alleen overdracht toestaan naar andere door beleid beheerde apps en bestandsoverdracht naar andere met MDM beheerde apps op ingeschreven apparaten",
+ "appSharingToLevel6": "{0}: alleen overdracht toestaan naar andere door beleid beheerde apps en dialoogvensters voor openen in/delen van het besturingssysteem filteren om alleen door beleid beheerde apps weer te geven",
+ "conditionalEncryption1": "Selecteer {0} om app-versleuteling voor interne app-opslag uit te schakelen wanneer apparaatversleuteling op een geregistreerd apparaat wordt gedetecteerd.",
+ "conditionalEncryption2": "Opmerking: Intune kan alleen apparaatregistratie detecteren met Intune MDM. Externe app-opslag is nog wel versleuteld om ervoor te zorgen dat gegevens niet toegankelijk zijn voor onbeheerde toepassingen.",
+ "contactSyncMac": "Indien uitgeschakeld, kunnen apps geen contactpersonen opslaan in het systeemeigen adresboek.",
+ "contactsSync": "Kies Block om te voorkomen dat door beleid beheerde apps gegevens opslaan in de systeemeigen apps van het apparaat (zoals Contactpersonen, Agenda en widgets) of om het gebruik van invoegtoepassingen in de door beleid beheerde apps te voorkomen. Als u Allow kiest, kan de door beleid beheerde app gegevens opslaan in de systeemeigen apps of invoegtoepassingen gebruiken, als deze functies worden ondersteund en ingeschakeld in de door beleid beheerde app.
Apps kunnen extra configuratiemogelijkheden bieden met app-configuratiebeleid. Zie de documentatie van de app voor meer informatie.",
+ "encryptionAndroid1": "Voor apps die zijn gekoppeld met een Intune Mobile Application Management-beleid wordt versleuteling geleverd door Microsoft. Gegevens worden synchroon versleuteld tijdens I/O-bewerkingen in het bestand volgens de instellingen in het Mobile Application Management-beleid. Beheerde apps in Android gebruiken AES-128-versleuteling in de CBC-modus waarbij de versleutelingsbibliotheken van het platform worden gebruikt. De versleutelingsmethode is niet FIPS 140-2-compatibel. SHA-256-versleuteling wordt ondersteund als een expliciete instructie met de SigAlg-parameter en werkt alleen op apparaten met versie 4.2 en hoger. Inhoud in de apparaatopslag wordt altijd versleuteld.",
+ "encryptionAndroid2": "Wanneer u versleuteling vereist in uw app-beleid, moeten eindgebruikers een pincode instellen en gebruiken wanneer ze hun apparaat gebruiken. Als er geen pincode is ingesteld voor apparaattoegang, worden de apps niet gestart en zien eindgebruikers het volgende bericht: Uw bedrijf heeft vereist dat u eerst een apparaatpincode moet inschakelen om deze toepassing te gebruiken.",
+ "encryptionMac1": "Microsoft levert de versleuteling voor apps die zijn gekoppeld aan een Intune-beheerbeleid voor mobiele toepassingen. Gegevens worden synchroon versleuteld tijdens I/O-bewerkingen voor bestanden op basis van de instellingen in het beheerbeleid voor mobiele toepassingen. Beheerde apps in Mac gebruiken AES-128-versleuteling in de CBC-modus, waarbij de versleutelingsbibliotheken van het platform worden gebruikt. De versleutelingsmethode is niet FIPS 140-2-compatibel. SHA-256-versleuteling wordt ondersteund als expliciete instructie met de parameter SigAlg en werkt alleen op apparaten met versie 4.2 en hoger. De inhoud in de apparaatopslag wordt altijd versleuteld.",
+ "faceId1": "Indien van toepassing kunt u het gebruik van een gezichts-id toestaan in plaats van een pincode. Gebruikers wordt gevraagd een gezichts-id op te geven wanneer ze toegang tot deze app willen hebben met hun werkaccount.",
+ "faceId2": "Selecteer Ja om een gezichts-id toe te staan in plaats van een pincode voor toegang tot de app.",
+ "managementLevelsAndroid1": "U gebruikt deze optie om op te geven of dit beleid van toepassing is op apparaten met Android-apparaatbeheerder, Android Enterprise-apparaten of onbeheerde apparaten.",
+ "managementLevelsAndroid2": "{0}: Onbeheerde apparaten zijn apparaten waarop het Intune MDM-beheer niet is aangetroffen. Hierbij inbegrepen zijn MDM-leveranciers als derde partij.",
+ "managementLevelsAndroid3": "{0}: Door Intune beheerde apparaten met de Android Device Administration API.",
+ "managementLevelsAndroid4": "{0}: Door Intune beheerde apparaten met Android Enterprise-werkprofielen of volledig apparaatbeheer van Android Enterprise.",
+ "managementLevelsIos1": "U gebruikt deze optie om op te geven of dit beleid van toepassing is op door MDM beheerde apparaten of onbeheerde apparaten.",
+ "managementLevelsIos2": "{0}: Onbeheerde apparaten zijn apparaten waarop het Intune MDM-beheer niet is aangetroffen. Hierbij inbegrepen zijn MDM-leveranciers als derde partij.",
+ "managementLevelsIos3": "{0}: Beheerde apparaten zijn apparaten die worden beheerd door Intune MDM.",
+ "minAppVersion": "Het minimale app-versienummer definiëren waarover de gebruiker moet beschikken om veilig toegang tot de app te krijgen.",
+ "minAppVersionWarning": "Het aanbevolen minimale app-versienummer definiëren waarover de gebruiker moet beschikken om veilig toegang tot de app te krijgen.",
+ "minOsVersion": "Het minimale besturingssysteemversienummer definiëren waarover de gebruiker moet beschikken om veilig toegang tot de app te krijgen.",
+ "minOsVersionWarning": "Het aanbevolen minimale besturingssysteemversienummer definiëren waarover de gebruiker moet beschikken om veilig toegang tot de app te krijgen.",
+ "minPatchVersion": "Het oudste vereiste niveau van de Android-beveiligingspatch dat een gebruiker kan hebben om beveiligde toegang tot de app te krijgen.",
+ "minPatchVersionWarning": "Het oudste aanbevolen niveau van de Android-beveiligingspatch dat een gebruiker kan hebben om beveiligde toegang tot de app te krijgen.",
+ "minSdkVersion": "Het minimale versie van Intune Application Protection Policy SDK definiëren waarover de gebruiker moet beschikken om veilig toegang tot de app te krijgen.",
+ "requireAppPinDefault": "Selecteer Ja om de pincode van de app uit te schakelen wanneer een apparaatvergrendeling wordt gedetecteerd op een ingeschreven apparaat.
",
+ "targetAllApps1": "U gebruikt deze optie om uw beleid te richten op apps op apparaten met alle mogelijke beheerstatussen.",
+ "targetAllApps2": "Tijdens de oplossing van beleidsconflicten wordt deze instelling vervangen als een gebruiker een doelbeleid voor een specifieke beheerstatus heeft.",
+ "touchId2": "Selecteer {0} om voor toegang tot de app een vingerafdruk te vereisen in plaats van een pincode."
+ },
+ "Tap": {
+ "pinResetAfterNumberOfDays": "Geef op na hoeveel dagen de gebruiker de pincode opnieuw moet instellen.",
+ "previousPinBlockCount": "Met deze instelling geeft u het aantal eerdere pincodes op dat door Intune wordt bewaard. Eventuele nieuwe pincodes moeten anders zijn dan de pincodes die in Intune worden bewaard."
+ },
+ "WipPolicySettings": {
+ "25": "",
+ "allowWindowsSearch": "Zodoende kunt u met Windows Search blijven zoeken in versleutelde gegevens.",
+ "authoritativeIpRanges": "Schakel deze instelling in als u de Windows-functie voor het automatisch detecteren van IP-bereiken wilt negeren.",
+ "authoritativeProxyServers": "Schakel deze instelling in als u de Windows-functie voor het automatisch detecteren van proxyservers wilt negeren.",
+ "checkInput": "Controleer de geldigheid van de invoer",
+ "dataRecoveryCert": "Een herstelcertificaat is een speciaal EFS-certificaat (Encrypting File System) dat u kunt gebruiken om versleutelde bestanden te herstellen als de versleutelingssleutel is zoekgeraakt of beschadigd. U moet het herstelcertificaat maken en hier opgeven. Klik hier voor meer informatie",
+ "enterpriseCloudResources": "Geef op dat cloudresources worden behandeld als bedrijfsresources en worden beschermd met het Windows Information Protection-beleid. U kunt meerdere resources opgeven door afzonderlijke items met het teken | te scheiden.
Als in uw bedrijf een proxy is geconfigureerd, kunt u opgeven via welke proxy het verkeer naar de opgegeven cloudresources wordt geleid.
URL[,Proxy]|URL[,Proxy]
Zonder proxy: contoso.sharepoint.com|contoso.visualstudio.com
Met proxy: contoso.sharepoint.com,proxy.contoso.com|contoso.visualstudio.com,proxy.contoso.com
",
+ "enterpriseIPv4Ranges": "Geef de IPv4-bereiken van het bedrijfsnetwerk op. Deze worden gebruikt in combinatie met de domeinnamen van het bedrijfsnetwerk die u opgeeft als grens van het bedrijfsnetwerk.
Deze instelling is vereist om Windows Information Protection in te schakelen.
U kunt meerdere bereikwaarden opgeven door afzonderlijke items met een komma te scheiden.\\
Bijvoorbeeld: 3.4.0.1-3.4.255.255,192.168.1.1-192.168.255.255
",
+ "enterpriseIPv6Ranges": "Geef de IPv6-bereiken van het bedrijfsnetwerk op. Deze worden gebruikt in combinatie met de domeinnamen van het bedrijfsnetwerk die u opgeeft als grens van het bedrijfsnetwerk.
U kunt meerdere bereikwaarden opgeven door afzonderlijke items met een komma te scheiden.
Bijvoorbeeld: 2001:4898:dc05::-2001:4898:dc05:ffff:ffff:ffff:ffff:ffff,2a01:110::-2a01:110:7fff:ffff:ffff:ffff:ffff:ffff
",
+ "enterpriseInternalProxyServers": "Als in uw bedrijf een proxy is geconfigureerd, kunt u opgeven via welke proxy het verkeer naar de cloudresources wordt geleid die zijn opgegeven in de instellingen voor bedrijfscloudresources.
U kunt meerdere waarden opgeven door afzonderlijke items met een puntkomma te scheiden
Bijvoorbeeld: contoso.internalproxy1.com;contoso.internalproxy2.com
",
+ "enterpriseNetworkDomainNames": "Geef de DNS-namen van het bedrijfsnetwerk op. Deze worden gebruikt in combinatie met de IP-bereiken die u opgeeft als grens van het bedrijfsnetwerk. U kunt meerdere waarden opgeven door afzonderlijke items met een komma te scheiden.
Deze instelling is vereist om Windows Information Protection in te schakelen.
Bijvoorbeeld: corp.contoso.com,region.contoso.com
",
+ "enterpriseProtectedDomainNames": "Geef de DNS-namen van het bedrijfsnetwerk op. Deze worden gebruikt in combinatie met de IP-bereiken die u opgeeft als grens van het bedrijfsnetwerk. U kunt meerdere waarden opgeven door afzonderlijke items met een '|' te scheiden.
Deze instelling is vereist om Windows Information Protection in te schakelen.
Bijvoorbeeld: corp.contoso.com,region.contoso.com
",
+ "enterpriseProxyServers": "Als uw bedrijfsnetwerk extern gerichte proxy's bevat, geeft u deze hier op. Wanneer u het adres van een proxyserver opgeeft, moet u ook opgeven via welke poort het verkeer is toegestaan en wordt beschermd met Windows Information Protection.
Opmerking: Deze lijst mag geen servers bevatten die voorkomen in de lijst met interne proxyservers van de onderneming. U kunt meerdere waarden opgeven door afzonderlijke items met een puntkomma te scheiden.
Bijvoorbeeld: proxy.contoso.com:80;proxy2.contoso.com:80
",
+ "maxInactivityTime1": "Hiermee geeft u de maximale hoeveelheid tijd op (in minuten) die het apparaat niet-actief mag zijn voordat het apparaat wordt vergrendeld met een pincode of wachtwoord. Gebruikers kunnen elke bestaande time-outwaarde opgeven die lager is dan de maximale tijd die is opgegeven in de app Instellingen. De Lumia 950 en 950XL hebben een maximale time-outwaarde van vijf minuten, ongeacht de waard die wordt ingesteld door dit beleid.",
+ "maxInactivityTime2": "0 (standaardinstelling): Er is geen time-out op gedefinieerd. De standaardinstelling 0 wordt geïnterpreteerd als 'Geen time-out gedefinieerd.'",
+ "maxPasswordAttempts1": "Dit beleid vertoont verschillend gedrag op een mobiel apparaat en een desktop.",
+ "maxPasswordAttempts2": "Wanneer op een mobiel apparaat de waarde wordt bereikt die is ingesteld door dit beleid, wordt het apparaat gewist.",
+ "maxPasswordAttempts3": "Wanneer een gebruiker op een desktop de waarde bereikt die is ingesteld door dit beleid, wordt de desktop niet gewist. In plaats daarvan wordt de BitLocker-herstelmodus ingeschakeld voor de desktop, waardoor de gegevens niet meer toegankelijk zijn, maar nog wel kunnen worden hersteld. Als BitLocker niet is ingeschakeld, kan het beleid niet worden afgedwongen.",
+ "maxPasswordAttempts4": "Voordat de gebruiker de limiet voor het aantal mislukte pogingen bereikt, wordt deze doorgestuurd naar het vergrendelingsscherm en gewaarschuwd dat bij nog meer mislukte pogingen de computer wordt vergrendeld. Wanneer de gebruiker de limiet bereikt, wordt het apparaat automatisch opnieuw opgestart en wordt de BitLocker-herstelpagina weergegeven. De gebruiker wordt gevraagd de BitLocker-herstelsleutel op deze pagina in te voeren.",
+ "maxPasswordAttempts5": "0 (standaardinstelling): het apparaat wordt nooit gewist nadat er een onjuiste pincode of onjuist wachtwoord is ingevoerd.",
+ "maxPasswordAttempts6": "De veiligste waarde is 0 als alle beleidswaarden = 0. Anders is de beleidswaarde Min de veiligste waarde.",
+ "mdmDiscoveryUrl": "Hier kunt u de URL van het eindpunt voor de MDM-registratie opgeven dat voor de registratie bij MDM wordt gebruikt. Dit wordt standaard opgegeven voor Intune.",
+ "minimumPinLength1": "Geheel getal waarmee het minimale aantal vereiste tekens voor de pincode wordt opgegeven. De standaardwaarde is 4. Het laagste getal dat u voor deze beleidsinstelling kunt configureren, is 4. Het hoogste getal dat u kunt configureren moet kleiner zijn dan het getal in de beleidsinstelling voor de maximale pincodelengte of het getal 127, afhankelijk van welke waarde lager is.",
+ "minimumPinLength2": "Als u deze beleidsinstelling configureert, moet de lengte van de pincode groter zijn dan of gelijk zijn aan dit getal. Als u deze beleidsinstelling uitschakelt of niet configureert, moet de lengte van de pincode groter zijn dan of gelijk zijn aan 4.",
+ "name": "De naam van deze netwerkgrens",
+ "neutralResources": "Als uw bedrijf omleidingseindpunten voor verificatie heeft, moet u deze hier opgeven. De locaties die u hier opgeeft, worden noch als persoonlijk, noch als zakelijk beschouwd, afhankelijk van de context van de nieuwe verbinding.
U kunt meerdere waarden opgeven door afzonderlijke items met een komma te scheiden.
Bijvoorbeeld: sts.contoso.com,sts.contoso2.com
",
+ "passportForWork1": "Waarde waarmee Windows Hello voor Bedrijven wordt ingesteld als methode voor de aanmelding bij Windows.",
+ "passportForWork2": "De standaardwaarde is true. Als u dit beleid instelt op false, kan de gebruiker Windows Hello voor Bedrijven alleen inrichten op mobiele telefoons die zijn toegevoegd aan Azure Active Directory en waarvoor inrichting is vereist.",
+ "pinExpiration": "Het hoogste getal dat u voor deze beleidsinstelling kunt configureren, is 730. Het laagste getal dat u voor deze beleidsinstelling kunt configureren, is 0. Als dit beleid wordt ingesteld op 0, verloopt de pincode van de gebruiker nooit.",
+ "pinHistory1": "Het hoogste getal dat u voor deze beleidsinstelling kunt configureren is 50. Het laagste getal dat u voor deze beleidsinstelling kunt configureren is 0. Als dit beleid wordt ingesteld op 0, hoeven eerder gebruikte pincodes niet verplicht worden opgeslagen.",
+ "pinHistory2": "De huidige pincode van de gebruiker in de set pincodes die is gekoppeld aan het gebruikersaccount. Als een pincode opnieuw wordt ingesteld, wordt de pincodegeschiedenis niet bewaard.",
+ "protectUnderLock": "Beschermt de app-inhoud wanneer het apparaat zich in een vergrendelde status bevindt.",
+ "protectionModeBlock": "Blokkeren: er wordt voorkomen dat ondernemingsgegevens de app kunnen verlaten.
",
+ "protectionModeOff": "Uit: De gebruiker kan gegevens verplaatsen buiten de beveiligde apps. Er worden geen acties geregistreerd in het logboek.
",
+ "protectionModeOverride": "Onderdrukkingen toestaan: De gebruiker wordt om invoer gevraagd wanneer deze gegevens van een beveiligde naar een niet-beveiligde app probeert te verplaatsen. Als de gebruiker ervoor kiest deze prompt te negeren, wordt de actie geregistreerd in het logboek.
",
+ "protectionModeSilent": "Stil:De gebruiker kan gegevens verplaatsen buiten de beveiligde apps. Deze acties worden geregistreerd in het logboek.
",
+ "required": "Vereist",
+ "revokeOnMdmHandoff": "Toegevoegd aan Windows 10, versie 1703. Met dit beleid wordt bepaald of de WIP-sleutels worden ingetrokken als er voor een apparaat een upgrade wordt uitgevoerd van MAM naar MDM. Indien ingesteld op Uit, worden de sleutels niet ingetrokken en heeft de gebruikers na de upgrade nog toegang tot de beschermde bestanden. Dit wordt aanbevolen als de MDM-service is geconfigureerd met dezelfde WIP EnterpriseID als de MAM-service.",
+ "revokeOnUnenroll": "Als de registratie van een apparaat voor dit beleid ongedaan wordt gemaakt, worden de versleutelingssleutels ingetrokken.",
+ "rmsTemplateForEdp": "De TemplateID GUID die moet worden gebruikt voor RMS-versleuteling. De IT-beheerder kan met de Azure RMS-sjabloon configureren wie toegang tot het met RMS beveiligde bestand heeft en hoe lang.",
+ "showWipIcon": "Door een overlay met een pictogram toe te voegen, kan de gebruiker zien of er sprake is van een bedrijfscontext.",
+ "useRmsForWip": "Hiermee wordt aangegeven of Azure RMS-versleuteling is toegestaan voor WIP."
+ },
+ "requireAppPin": "Selecteer Ja om de pincode van de app uit te schakelen wanneer een apparaatvergrendeling wordt gedetecteerd op een ingeschreven apparaat.
Opmerking: met Intune kan apparaatinschrijving niet worden gedetecteerd met een EMM-oplossing van derden in iOS/iPadOS.
"
+ },
+ "Autopilot": {
+ "AssignResourceAccount": {
+ "createNewCommandMenu": "Nieuwe maken",
+ "createNewResourceAccountInfo": "\r\nMaak een nieuw resourceaccount tijdens de registratie. Het resourceaccount wordt direct aan de tabel met resourceaccounts toegevoegd, maar wordt pas actief als het apparaat is ingeschreven en het Surface Hub-abonnement is gecontroleerd. Meer informatie over resourceaccounts
\r\n ",
+ "createNewResourceTitle": "Nieuw resourceaccount maken",
+ "deviceNameInvalid": "De apparaatnaam heeft een ongeldige indeling",
+ "deviceNameRequired": "Een apparaatnaam is vereist",
+ "editResourceAccountLabel": "Bewerken",
+ "selectExistingCommandMenu": "Bestaande selecteren"
+ },
+ "Device": {
+ "ComputerName": {
+ "validFormat": "Namen mogen maximaal 15 tekens bevatten en mogen letters (a-z, A-Z), cijfers (0-9) en afbreekstreepjes bevatten. Namen mogen niet alleen cijfers bevatten. Namen mogen geen spatie bevatten."
+ },
+ "Header": {
+ "addressableUserName": "Beschrijvende naam van gebruiker",
+ "azureADDevice": "Gekoppeld Azure AD-apparaat",
+ "batch": "Groepstag",
+ "dateAssigned": "Datum van toewijzing",
+ "deviceAccountFriendlyName": "Beschrijvende naam van apparaataccount",
+ "deviceAccountPwd": "Wachtwoord van apparaataccount",
+ "deviceAccountUpn": "Device account",
+ "deviceDisplayName": "Apparaatnaam",
+ "deviceName": "Apparaatnaam",
+ "deviceUseType": "Type apparaatgebruik",
+ "enrollmentState": "Inschrijvingsstatus",
+ "intuneDevice": "Gekoppeld Intune-apparaat",
+ "lastContacted": "Voor het laatst contact opgenomen",
+ "make": "Fabrikant",
+ "model": "Model",
+ "profile": "Toegewezen profiel",
+ "profileStatus": "Profielstatus",
+ "purchaseOrderId": "Inkooporder",
+ "resourceAccount": "Resourceaccount",
+ "serialNumber": "Serienummer",
+ "userPrincipalName": "Gebruiker"
+ },
+ "SurfaceHub": {
+ "friendlyNameRequired": "Een beschrijvende naam is vereist",
+ "pwdRequired": "Het wachtwoord is vereist.",
+ "upnRequired": "Er is een apparaataccount vereist",
+ "upnValidFormat": "Waarden kunnen letters (a-z, A-Z), cijfers (0-9) en afbreekstreepjes bevatten. Waarden mogen geen lege ruimte bevatten."
+ }
+ },
+ "DeviceUseType": {
+ "meetingAndPresentation": "Vergadering en presentaties",
+ "teamCollaboration": "Teamsamenwerking"
+ },
+ "Devices": {
+ "featureDescription": "Met Windows Autopilot kunt u de out-of-box-experience (OOBE) voor uw apparaten aanpassen.",
+ "importErrorStatus": "Enkele apparaten zijn niet geïmporteerd. Klik hier voor meer informatie.",
+ "importPendingStatus": "Importeren wordt uitgevoerd. Verstreken tijd: {0} min. Dit proces kan tot {1} minuten duren."
+ },
+ "DirectoryService": {
+ "activeDirectoryAD": "Hybride Azure AD-gekoppeld",
+ "activeDirectoryADLabel": "Hybride Azure AD met Autopilot",
+ "azureAD": "Toegevoegd aan Azure AD",
+ "unknownType": "Onbekend type"
+ },
+ "Filter": {
+ "enrollmentState": "Status",
+ "profile": "Profielstatus"
+ },
+ "OOBE": {
+ "AddressableUserName": {
+ "validateEmpty": "Beschrijvende naam van gebruiker mag niet leeg zijn."
+ },
+ "ApplyComputerNameTemplate": {
+ "infoBalloon": "Maak een naamgevingssjabloon om namen aan uw apparaten toe te voegen tijdens de registratie.",
+ "label": "Sjabloon voor apparaatnamen toepassen"
+ },
+ "ApplyComputerNameTemplateDisabled": {
+ "label": "Voor Autopilot-implementatieprofielen die hybride Azure AD-gekoppeld zijn, krijgen computers een naam op basis van instellingen die zijn opgegeven in de configuratie van de domeindeelname."
+ },
+ "ComputerNameTemplate": {
+ "emptyValue": "MyCompany-%RAND:4%",
+ "label": "Een naam invoeren",
+ "noDisallowedChars": "De naam mag alleen alfanumerieke tekens, afbreekstreepjes, %SERIAL% of %RAND:x% bevatten",
+ "serialLength": "Mag niet meer dan 7 tekens met %SERIAL% bevatten",
+ "validateLessThan15Chars": "De naam mag maximaal 15 tekens bevatten",
+ "validateNoSpaces": "Computernamen mogen geen spaties bevatten",
+ "validateNotAllNumbers": "De naam moet ook letters en/of afbreekstreepjes bevatten",
+ "validateNotEmpty": "Naam kan niet leeg zijn",
+ "validateOnlyOneMacro": "De naam mag alleen één v%SERIAL% of %RAND:x% bevatten"
+ },
+ "ConfigureComputerNameTemplate": {
+ "description": "Maak een unieke naam voor uw apparaten. Namen mogen maximaal 15 tekens bevatten en mogen letters (a-z, A-Z), cijfers (0-9) en afbreekstreepjes bevatten. Namen mogen niet alleen cijfers bevatten. Namen mogen geen spaties bevatten. Gebruik de macro %SERIAL% om een hardwarespecifiek serienummer toe te voegen. U kunt eventueel de macro %RAND:x% gebruiken om een willekeurige tekenreeks van getallen toe te voegen, waarbij x staat voor het aantal toe te voegen cijfers."
+ },
+ "EnableWhiteGlove": {
+ "infoBalloon": "Inschakelen dat met het vijf maal indrukken van de Windows-toets OOBE zonder gebruikersverificatie wordt uitgevoerd om het apparaat in te schrijven en alle apps en instellingen voor de systeemcontext in te richten. Apps en instellingen voor de gebruikerscontext worden beschikbaar gemaakt wanneer de gebruiker zich aanmeldt.",
+ "label": "Vooraf ingerichte implementatie toestaan"
+ },
+ "HybridAzureADSkipConnectivityCheck": {
+ "infoBalloon": "De Auto Pilot Hybrid Azure AD-deelnamestroom wordt voortgezet, zelfs als deze geen domeincontrollerconnectiviteit tot stand brengt tijdens OOBE.",
+ "label": "Controle van AD-verbinding overslaan (preview-versie)"
+ },
+ "accountType": "Gebruikersaccounttype",
+ "accountTypeInfo": "Geef op of gebruikers beheerders of standaardgebruikers zijn op het apparaat. Deze instelling geldt niet voor accounts van globale beheerders of bedrijfsbeheerders. Deze accounts kunnen geen standaardgebruikers zijn, omdat ze toegang hebben tot alle beheerfuncties in Azure AD.",
+ "configOOBEInfo": "\r\nDe out-of-box-ervaring voor uw Autopilot-apparaten configureren\r\n
",
+ "configureDevice": "Implementatiemodus",
+ "configureDeviceHintForSurfaceHub2": "Autopilot ondersteunt alleen de zelfimplementatiemodus voor Surface Hub 2. In deze modus wordt de gebruiker niet gekoppeld aan het ingeschreven apparaat, zodat er geen gebruikersreferenties zijn vereist.",
+ "configureDeviceHintForWindowsPC": "\r\n De implementatiemodus bepaalt of een gebruiker referenties moet opgeven om het apparaat in te richten.\r\n
\r\n \r\n - \r\n Op basis van gebruiker: apparaten zijn gekoppeld aan de gebruiker die het apparaat inschrijft en er zijn gebruikersreferenties vereist om het apparaat in te richten \r\n
\r\n - \r\n Zelf-implementerend (preview): apparaten zijn niet gekoppeld aan de gebruiker die het apparaat inschrijft en er zijn geen gebruikersreferenties vereist om het apparaat in te richten\r\n
\r\n
",
+ "createSurfaceHub2Info": "Configureer de Autopilot-inschrijvingsinstellingen voor uw Surface Hub 2-apparaten. In Autopilot wordt gebruikersverificatie standaard overgeslagen tijdens OOBE. Meer informatie over Windows Autopilot voor Surface Hub 2.",
+ "createWindowsPCInfo": "\r\n\r\nDe volgende opties worden automatisch ingeschakeld voor Autopilot-apparaten in de modus voor zelfimplementatie:\r\n
\r\n\r\n - \r\n Selectie van Werk of Thuisgebruik overslaan\r\n
\r\n - \r\n OEM-registratie en OneDrive-configuratie overslaan\r\n
\r\n - \r\n Gebruikersverificatie in OOBE overslaan\r\n
\r\n
",
+ "endUserDevice": "Op basis van gebruiker",
+ "hideEscapeLink": "Opties voor het wijzigen van het account verbergen",
+ "hideEscapeLinkInfo": "Opties om het account te wijzigen en opnieuw te beginnen met een ander account worden respectievelijk weergegeven tijdens de eerste keer dat een apparaat op de aanmeldingspagina van het bedrijf wordt ingesteld en op de domeinfoutpagina. Als u deze opties wilt verbergen, moet u in Azure Active Directory een aangepaste huisstijl configureren (vereist Windows 10, 1809 of hoger, of Windows 11).",
+ "info": "Met de AutoPilot-profielinstellingen wordt de Out-Of-Box Experience gedefinieerd die gebruikers zien als ze Windows voor de eerste keer starten. ",
+ "language": "Taal (regio)",
+ "languageInfo": "De te gebruiken taal en regio opgeven.",
+ "licenseAgreement": "Licentiebepalingen van Microsoft-software",
+ "licenseAgreementInfo": "Opgeven of de gebruiksrechtovereenkomst moet worden weergeven aan gebruikers.",
+ "plugAndForgetDevice": "Zelf-implementerend (preview)",
+ "plugAndForgetGA": "Zelf implementeren",
+ "privacySettingWarning": "De standaardwaarde voor het verzamelen van diagnostische gegevens is gewijzigd voor apparaten met Windows 10, versie 1903 en hoger of Windows 11. ",
+ "privacySettings": "Privacyinstellingen",
+ "privacySettingsInfo": "Opgeven of de privacyinstellingen moeten worden weergegeven aan gebruikers.",
+ "showCortanaConfigurationPage": "Cortana-configuratie",
+ "showCortanaConfigurationPageInfo": "Met Weergeven wordt de Cortana-configuratie-introductie ingeschakeld tijdens het opstarten.",
+ "skipEULAWarning": "Belangrijke informatie over het verbergen van licentievoorwaarden",
+ "skipKeyboardSelection": "Toetsenbord automatisch configureren",
+ "skipKeyboardSelectionInfo": "Als de waarde Waar is ingesteld, wordt de pagina Toetsenbord selecteren overgeslagen als de taal is ingesteld.",
+ "subtitle": "AutoPilot-profielen",
+ "title": "Out-Of-Box Experience (OOBE)",
+ "useOSDefaultLanguage": "Standaardbesturingssysteem",
+ "userSelect": "Gebruikersselectie"
+ },
+ "Sync": {
+ "lastRequestedLabel": "Laatste synchronisatieaanvraag",
+ "lastSuccessfulLabel": "Laatste voltooide synchronisatie",
+ "syncInProgress": "De synchronisatie wordt uitgevoerd. Probeer het later opnieuw.",
+ "syncInitiated": "AutoPilot-instellingen synchroniseren is geïnitialiseerd.",
+ "syncSettingsTitle": "AutoPilot-instellingen synchroniseren"
+ },
+ "Title": {
+ "devices": "Windows AutoPilot-apparaten"
+ },
+ "Tooltips": {
+ "addressableUserName": "Begroetingsnaam die tijdens de installatie van apparaat wordt weergegeven.",
+ "azureADDevice": "Ga naar Apparaatdetails voor het gekoppelde apparaat. N.v.t. betekent dat er geen gekoppeld apparaat is.",
+ "batch": "Een tekenreekskenmerk dat kan worden gebruikt om een groep apparaten te identificeren. Met het veld Groepstag van Intune wordt het kenmerk OrderID op Azure AD-apparaten toegewezen.",
+ "dateAssigned": "Tijdstempel van het moment waarop het profiel is toegewezen aan het apparaat.",
+ "deviceAccountFriendlyName": "Beschrijvende naam van apparaataccount voor Surface Hub-apparaten",
+ "deviceAccountPwd": "Wachtwoord van apparaataccount voor Surface Hub-apparaten",
+ "deviceAccountUpn": "E-mailadres van apparaataccount voor Surface Hub-apparaten",
+ "deviceDisplayName": "Een unieke naam voor een apparaat configureren. Deze naam wordt genegeerd in implementaties die hybride Azure AD-gekoppeld zijn. De apparaatnaam is nog steeds afkomstig uit het profiel voor domeindeelname voor hybride Azure AD-apparaten.",
+ "deviceName": "De naam die wordt weergegeven wanneer iemand heeft geprobeerd het apparaat te detecteren en verbinding te maken.",
+ "deviceUseType": " Het apparaat wordt ingesteld op basis van uw keuze. U kunt later altijd wijzigingen aanbrengen in de instellingen.\r\n \r\n - Voor vergaderingen en presentaties is Windows Hello niet ingeschakeld en worden de gegevens na elke sessie verwijderd.\r\n
\r\n - Voor teamsamenwerking is Windows Hello ingeschakeld en worden de profielen opgeslagen voor snelle aanmelding
\r\n
",
+ "enrollmentState": "Hiermee wordt aangegeven of het apparaat is ingeschreven.",
+ "intuneDevice": "Ga naar Apparaatdetails voor het gekoppelde apparaat. N.v.t. betekent dat er geen gekoppeld apparaat is.",
+ "lastContacted": "Tijdstempel van het moment waarop voor het laatst contact is opgenomen met het apparaat.",
+ "make": "Fabrikant van het geselecteerde apparaat.",
+ "model": "Model van het geselecteerde apparaat",
+ "profile": "Naam van het profiel dat is toegewezen aan het apparaat.",
+ "profileStatus": "Hiermee wordt aangegeven of er een profiel aan het apparaat is toegewezen.",
+ "purchaseOrderId": "Inkooporder-id",
+ "resourceAccount": "De id van het apparaat of de user principal name (UPN).",
+ "serialNumber": "Serienummer van het geselecteerde apparaat.",
+ "userPrincipalName": "Gebruiker naar vooraf ingevulde verificatie tijdens de installatie van het apparaat."
+ },
+ "allDevices": "Alle apparaten",
+ "allDevicesAlreadyAssignedError": "Er is al een Autopilot-profiel toegewezen aan alle apparaten.",
+ "assignFailedDescription": "Kan de toewijzingen voor {0} niet bijwerken.",
+ "assignFailedTitle": "Kan de AutoPilot-profieltoewijzingen niet bijwerken.",
+ "assignSuccessDescription": "De toewijzingen voor {0} zijn bijgewerkt.",
+ "assignSuccessTitle": "De AutoPilot-profieltoewijzingen zijn bijgewerkt.",
+ "assignSufaceHub2ProfileNextStep": "Volgende stappen voor deze implementatie",
+ "assignSurfaceHub2ProfileToDeviceGroup": "1. Wijs dit profiel toe aan minstens één apparaatgroep",
+ "assignSurfaceHub2ProfileToResourceAccount": "2. Wijs een resourceaccount toe aan elk Surface Hub-apparaat waarop u dit profiel implementeert",
+ "assignedDevicesCount": "Toegewezen apparaten",
+ "assignedDevicesResourceAccountDescription": "Als u dit profiel op een apparaat wilt implementeren, moet u een resourceaccount toewijzen aan het apparaat. Selecteer één apparaat per keer om een bestaand resourceaccount toe te wijzen of om een nieuw account te maken. Meer informatie over resourceaccounts
",
+ "assignedDevicesResourceAccountStatusBarMessage": "In deze tabel vindt u alleen de Surface Hub 2-apparaten waaraan dit profiel is toegewezen.",
+ "assigningDescription": "Toewijzingen voor {0} bijwerken.",
+ "assigningTitle": "AutoPilot-profieltoewijzingen bijwerken.",
+ "autoremediationContext": "We've detected a hardware change on this device. We're trying to automatically register the new hardware. You don't need to do anything now; the status will be updated at the next check in with the result. Learn more about resetting the profile.",
+ "autoremediationTitle": "Device {0} has a fix pending",
+ "cannotDeleteMessage": "Dit profiel is toegewezen aan groepen. U moet de toewijzing van alle groepen aan dit profiel ongedaan maken voordat u het kunt verwijderen.",
+ "cannotDeleteTitle": "Kan {0} niet verwijderen",
+ "createdDateTime": "Gemaakt",
+ "deleteMessage": "Als u dit AutoPilot-profiel verwijdert, verschijnt bij apparaten die aan deze categorie zijn toegewezen de melding Niet toegewezen.",
+ "deleteMessageWithPolicySet": "{0} maakt deel uit van een of meer beleidssets. Als u {0} verwijdert, kunt u deze niet langer toewijzen via deze beleidssets.",
+ "deleteTitle": "Weet u zeker dat u dit profiel wilt verwijderen?",
+ "description": "Beschrijving",
+ "deviceType": "Apparaattype",
+ "deviceUse": "Apparaatgebruik",
+ "directoryServiceHintForSurfaceHub2": " \r\n Autopilot ondersteunt alleen de optie Aan Azure AD toegevoegd voor Surface Hub 2-apparaten. Geef aan hoe apparaten worden toegevoegd aan Active Directory (AD) in uw organisatie.\r\n
\r\n \r\n - \r\n Aan Azure AD toegevoegd: alleen in de cloud zonder on-premises Windows Server Active Directory.\r\n
\r\n
\r\n ",
+ "directoryServiceHintForWindowsPC": "\r\n \r\n Opgeven hoe apparaten worden toegevoegd aan Active Directory (AD) in uw organisatie:\r\n
\r\n \r\n - \r\n Toegevoegd aan Azure AD: alleen in de cloud zonder een on-premises Windows Server Active Directory\r\n
\r\n
\r\n ",
+ "getAssignedDevicesCountError": "Er is een fout opgetreden bij het ophalen van het aantal toegewezen apparaten.",
+ "getAssignmentsError": "Er is een fout opgetreden bij het ophalen van de AutoPilot-profieltoewijzingen.",
+ "harvestDeviceId": "Alle doelapparaten converteren naar Autopilot",
+ "harvestDeviceIdDescription": "Dit profiel kan standaard alleen worden toegepast op Autopilot-apparaten die zijn gesynchroniseerd vanuit de Autopilot-service.",
+ "harvestDeviceIdInfo": "\r\n Selecteer Ja als u alle doelapparaten bij Autopilot wilt registreren als deze nog niet zijn geregistreerd. De volgende keer dat geregistreerde apparaten de Windows Out of Box Experience (OOBE) doorlopen, wordt het toegewezen Autopilot-scenario toegepast.\r\n
\r\n Houd er rekening mee dat voor bepaalde Autopilot-scenario's specifieke minimale builds van Windows vereist zijn. Controleer of uw apparaat de vereiste minimumbuild heeft om het scenario te doorlopen.\r\n
\r\n Als u het profiel verwijdert, worden betrokken apparaten niet verwijderd uit Autopilot. Als u een apparaat wilt verwijderen uit Autopilot, gebruikt u de weergave Windows Autopilot-apparaten.\r\n ",
+ "harvestDeviceIdWarning": "Na de conversie kunt u Autopilot-apparaten alleen herstellen door de apparaten te verwijderen uit de lijst met Autopilot-apparaten.",
+ "holoLensCommandMenu": "HoloLens",
+ "info": "Met Windows AutoPilot Deployment-profielen kunt u de out-of-box experience voor uw apparaten aanpassen.",
+ "invalidProfileNameMessage": "Het teken {0} is niet toegestaan",
+ "joinTypeLabel": "Deelnemen aan Azure AD als",
+ "lastModifiedDateTime": "Laatst gewijzigd:",
+ "manualRemediationContext": "We've detected a hardware change on this device. It won't automatically receive an Autopilot profile when it's reset unless you register the device again. Learn more about resetting the profile.",
+ "manualRemediationTitle": "Device {0} needs your attention",
+ "name": "Naam",
+ "noAutopilotProfile": "Geen AutoPilot-profielen",
+ "notEnoughPermissionAssignedError": "U hebt onvoldoende machtigingen om dit profiel toe te wijzen aan een of meer van uw geselecteerde groepen. Neem contact op met uw beheerder.",
+ "profile": "profiel",
+ "resourceAccountStatusBarMessage": "Er is een resourceaccount vereist voor elk Surface Hub 2-apparaat waarvoor dit profiel is geïmplementeerd. Klik voor meer informatie.",
+ "selectServices": "Selecteer adreslijstservice-apparaten die worden toegevoegd",
+ "surfaceHub2CommandMenu": "Surface Hub 2",
+ "surfaceHub2SCommandMenu": "Surface Hub 2S",
+ "userAffinityLabel": "Implementatiemodus",
+ "windowsPCCommandMenu": "Windows-pc",
+ "directoryServiceLabel": "Toevoegen aan Azure AD als"
},
- "CategoryDescription": {
- "androidGeneralApplicationRestrictions": "Gebruik deze instellingen om op de hoogte blijven over welke gebruikers apps installeren die niet zijn goedgekeurd voor gebruik in uw bedrijf. Selecteer het type lijst voor beperkte apps:
\r\n Verboden apps - een lijst met apps waarover u een melding wilt ontvangen als gebruikers ze installeren.
\r\n Goedgekeurde apps - een lijst met apps die zijn goedgekeurd voor gebruik in uw bedrijf. Wanneer gebruikers een app installeren die niet in deze lijst voorkomt, ontvangt u een melding.
\r\n ",
- "androidZebraMxZebraMx": "Zebra-apparaten configureren door een MX-profiel in XML-indeling te uploaden.",
- "iosDeviceFeaturesAirprint": "Gebruik deze instellingen om iOS-apparaten zodanig te configureren dat ze automatisch verbinding maken met printers in uw netwerk die compatibel zijn met AirPrint. U hebt het IP-adres en het resourcepad van uw printers nodig.",
- "iosDeviceFeaturesExtensibleSingleSignOn": "Een app-extensie configureren waarmee eenmalige aanmelding (SSO) wordt ingeschakeld voor apparaten met iOS 13.0 of hoger.",
- "iosDeviceFeaturesHomeScreenLayout": "De indeling configureren voor het dock- en startscherm op iOS-apparaten. Bepaalde apparaten kennen limieten voor het aantal items dat kan worden weergegeven.",
- "iosDeviceFeaturesIOSWallpaper": "Een afbeelding weergeven die wordt weergegeven op het startscherm en/of het vergrendelingsscherm van iOS-apparaten.\r\n Als u op elke locatie een unieke afbeelding wilt weergeven, maakt u een profiel met een afbeelding voor het vergrendelingsscherm en een profiel met een afbeelding voor het startscherm.\r\n Wijs vervolgens beide profielen aan uw gebruikers toe.\r\n
\r\n \r\n - Maximale bestandsgrootte: 750 kB
\r\n - Bestandstype: PNG, JPG of JPEG
\r\n
\r\n ",
- "iosDeviceFeaturesNotifications": "Meldingsinstellingen voor apps opgeven. Ondersteunt iOS 9.3 en hoger.",
- "iosDeviceFeaturesSharedDevice": "Optionele tekst opgeven die wordt weergegeven op het vergrendelingsscherm. De functie wordt ondersteund voor iOS 9.3 en hoger. Meer informatie",
- "iosGeneralApplicationRestrictions": "Gebruik deze instellingen om op de hoogte blijven over welke gebruikers apps installeren die niet zijn goedgekeurd voor gebruik in uw bedrijf. Selecteer het type lijst voor beperkte apps:
\r\n Verboden apps - een lijst met apps waarover u een melding wilt ontvangen als gebruikers ze installeren.
\r\n Goedgekeurde apps - een lijst met apps die zijn goedgekeurd voor gebruik in uw bedrijf. Wanneer gebruikers een app installeren die niet in deze lijst voorkomt, ontvangt u een melding.
\r\n ",
- "iosGeneralApplicationVisibility": "In de lijst Apps weergeven kunt u de iOS-apps opgeven die gebruikers kunnen zien of starten. In de lijst met verborgen apps kunt u de iOS-apps opgeven die gebruikers niet kunnen zien of starten.",
- "iosGeneralAutonomousSingleAppMode": "Apps die u aan deze lijst toevoegt en toewijst aan een apparaat, kunnen het apparaat vergrendelen zodra de app is gestart, zodat alleen de desbetreffende app kan worden uitgevoerd. Of het apparaat kan worden vergrendeld terwijl er een bepaalde acties wordt uitgevoerd (bijvoorbeeld wanneer u een test maakt). Zodra de actie is voltooid of u de beperking verwijdert, keert het apparaat terug naar de normale status.",
- "iosGeneralKiosk": "Met de kioskmodus worden verschillende instellingen in een apparaat vergrendeld of wordt er één app gespecificeerd die op het apparaat mag worden uitgevoerd. Dit kan handig zijn wanneer er bijvoorbeeld in een winkel slechts één demo-app op het apparaat mag worden uitgevoerd.",
- "macDeviceFeaturesAirprint": "Gebruik deze instellingen om macOS-apparaten zodanig te configureren dat ze automatisch verbinding maken met printers in uw netwerk die compatibel zijn met AirPrint. U hebt het IP-adres en het resourcepad van uw printers nodig.",
- "macDeviceFeaturesAssociatedDomains": "De gekoppelde domeinen configureren voor het delen van gegevens en aanmeldingsreferenties tussen de apps en websites van uw organisatie. Dit profiel kan worden toegepast op apparaten met macOS 10.15 of hoger.",
- "macDeviceFeaturesExtensibleSingleSignOn": "Een app-extensie configureren waarmee eenmalige aanmelding (SSO) wordt ingeschakeld voor apparaten met macOS 10.15 of hoger.",
- "macDeviceFeaturesLoginItems": "Kies welke apps, bestanden en mappen worden geopend wanneer gebruikers zich aanmelden bij hun apparaten. Als u niet wilt dat gebruikers de weergave van de geselecteerde apps kunnen wijzigen, kunt u de app verbergen in de gebruikersconfiguratie.",
- "macDeviceFeaturesLoginWindow": "Configureer het uiterlijk van het macOS-aanmeldingsscherm en de functies die beschikbaar zijn voor gebruikers voordat en nadat ze zich hebben aangemeld.",
- "macExtensionsKernelExtensions": "Met deze instellingen kunt u het beleid voor kernelextensies configureren op apparaten met macOS 10.13.2 of hoger.",
- "macGeneralDomains": "E-mailberichten die de gebruiker verzendt of ontvangt die niet overeenkomen met de domeinen die u hier opgeeft, worden gemarkeerd als niet-vertrouwd.",
- "windows10EndpointProtectionApplicationGuard": "Tijdens het gebruik van Microsoft Edge beveiligt Microsoft Defender Application Guard uw omgeving tegen sites die door uw organisatie niet als vertrouwd zijn gedefinieerd. Als gebruikers sites bezoeken die niet worden vermeld in uw geïsoleerde netwerkgrens, worden deze sites geopend in een virtuele browsersessie in Hyper-V. Vertrouwde sites worden gedefinieerd door een netwerkgrens, die in Apparaatconfiguratie kan worden geconfigureerd. Deze functie is alleen beschikbaar voor apparaten met 64-bits Windows 10 of hoger.",
- "windows10EndpointProtectionCredentialGuard": "Als u Credential Guard inschakelt, worden de volgende vereiste instellingen ingeschakeld:\r\n
\r\n \r\n - Beveiliging op basis van virtualisatie inschakelen: hiermee wordt beveiliging op basis van virtualisatie ingeschakeld bij de volgende keer opnieuw opstarten. Voor beveiliging op basis van virtualisatie wordt Windows Hypervisor gebruikt ter ondersteuning van beveiligingsservices.
\r\n
\r\n - Beveiligd opstarten met directe geheugentoegang: hiermee wordt beveiliging op basis van virtualisatie ingeschakeld met beveiligd opstarten en directe geheugentoegang (DMA).
\r\n
\r\n ",
- "windows10EndpointProtectionDeviceGuard": "Kies aanvullende apps die moeten worden gecontroleerd of kunnen worden vertrouwd door Microsoft Defender-toepassingsbeheer. Windows-onderdelen en alle apps uit Windows Store worden automatisch vertrouwd.
\r\n Toepassingen worden niet geblokkeerd wanneer ze in de modus Alleen controle worden uitgevoerd. De modus Alleen controle legt alle gebeurtenissen vast in de logboeken van de lokale client.\r\n ",
- "windows10GeneralPrivacyPerApp": "Voeg apps toe waarvoor een ander privacygedrag moet gelden dan wat u in 'Standaardprivacy' hebt gedefinieerd.",
- "windows10NetworkBoundaryNetworkBoundary": "De grens van het netwerk is de lijst met ondernemingsresources, zoals in de cloud gehoste domeinen en IP-adresbereiken voor computers op het bedrijfsnetwerk. Stel netwerkgrenzen in om beleid toe te passen ter bescherming van de gegevens die zich op deze locaties bevinden.",
- "windowsHealthMonitoring": "Het beleid voor statuscontrole van Windows configureren.",
- "windowsPhoneGeneralApplicationRestrictions": "Met Windows Phone kunt u voorkomen dat gebruikers apps installeren of starten die in de lijst met niet-toegestane apps staan of die niet voorkomen in de lijst met goedgekeurde apps. Alle beheerde apps moeten worden toegevoegd aan de goedgekeurde lijst."
- },
"MinimumOperatingSystem": {
"Android": {
"v10": "Android 10.0",
@@ -2435,6 +1154,304 @@
"excludedGroups": "Uitgesloten groepen",
"licenseType": "Licentietype"
},
+ "TAP": {
+ "AccessRequirements": {
+ "infoText": "Configureer de pincode- en referentievereisten waaraan gebruikers moeten voldoen voor toegang tot apps in een werkomgeving."
+ },
+ "DataProtection": {
+ "infoText": "Deze groep bevat besturingselementen voor preventie van gegevensverlies (DLP), zoals beperkingen voor Knippen, Kopiëren, Plakken en Opslaan als. Met deze instellingen wordt bepaald hoe gebruikers met gegevens in de apps kunnen werken."
+ },
+ "DeviceTypes": {
+ "selectOne": "Selecteer ten minste één apparaattype."
+ },
+ "TargetedApps": {
+ "TargetToAll": {
+ "label": "Richten op apps op alle apparaattypen"
+ },
+ "infoText": "Kies hoe u dit beleid op apps op verschillende apparaten wilt toepassen. Voeg vervolgens ten minste één app toe.",
+ "selectOne": "Selecteer ten minste één app om een beleid te maken."
+ }
+ },
+ "AssignmentAction": {
+ "exclude": "Uitgesloten",
+ "include": "Inbegrepen",
+ "includeAllDevicesVirtualGroup": "Inbegrepen",
+ "includeAllUsersVirtualGroup": "Inbegrepen"
+ },
+ "AppType": {
+ "androidEnterpriseSystemApp": "Android Enterprise-systeem-app",
+ "androidForWorkApp": "Beheerde Google Play Store-app",
+ "androidLobApp": "Line-Of-Business-app voor Android",
+ "androidStoreApp": "Android Store-app",
+ "builtInAndroid": "Ingebouwde Android-app",
+ "builtInApp": "Ingebouwde app",
+ "builtInIos": "Ingebouwde iOS-app",
+ "default": "",
+ "iosLobApp": "Line-Of-Business-app voor iOS",
+ "iosStoreApp": "iOS Store-app",
+ "iosVppApp": "Volume Purchase Program-app voor iOS",
+ "lineOfBusinessApp": "Line-Of-Business-app",
+ "macOSDmgApp": "macOS-app (DMG)",
+ "macOSEdgeApp": "Microsoft Edge (macOS)",
+ "macOSLobApp": "Line-Of-Business-app voor macOS",
+ "macOSMdatpApp": "Microsoft Defender ATP (macOS)",
+ "macOSOfficeSuiteApp": "Microsoft 365-apps (macOS)",
+ "macOsVppApp": "Volume Purchase Program-app voor macOS",
+ "managedAndroidLobApp": "Beheerde Line-Of-Business-app voor Android",
+ "managedAndroidStoreApp": "Beheerde Android Store-app",
+ "managedGooglePlayApp": "Beheerde Google Play Store-app",
+ "managedGooglePlayPrivateApp": "Persoonlijke beheerde Google Play-app",
+ "managedGooglePlayWebApp": "Webkoppeling voor beheerde Google Play",
+ "managedIosLobApp": "Beheerde Line-Of-Business-app voor iOS",
+ "managedIosStoreApp": "Beheerde iOS Store-app",
+ "microsoftStoreForBusinessApp": "Microsoft Store voor Bedrijven-app",
+ "microsoftStoreForBusinessReleaseManagedApp": "Microsoft Store voor Bedrijven",
+ "officeSuiteApp": "Microsoft 365-apps (Windows 10 en hoger)",
+ "webApp": "Webkoppeling",
+ "windowsAppXLobApp": "AppX Line-Of-Business-app voor Windows",
+ "windowsClassicApp": "Windows-app (Win32)",
+ "windowsEdgeApp": "Microsoft Edge (Windows 10 en hoger)",
+ "windowsMobileMsiLobApp": "MSI Line-Of-Business-app voor Windows",
+ "windowsPhone81AppXBundleLobApp": "AppX Line-Of-Business-app voor Windows Phone 8.1",
+ "windowsPhone81AppXLobApp": "AppX Line-Of-Business-app voor Windows Phone 8.1",
+ "windowsPhone81StoreApp": "Windows Phone 8.1 Store-app",
+ "windowsPhoneXapLobApp": "XAP Line-Of-Business-app voor Windows Phone",
+ "windowsStoreApp": "Microsoft Store-app",
+ "windowsUniversalAppXLobApp": "Universele AppX Line-Of-Business-app voor Windows",
+ "windowsUniversalLobApp": "Universele Line-Of-Business-app voor Windows"
+ },
+ "TAPSettings": {
+ "AllowedDataIngestionLocations": {
+ "label": "Gebruikers toestaan om gegevens van geselecteerde services te openen",
+ "tooltip": "Selecteer de opslagservices voor toepassingen waarvan gebruikers gegevens kunnen openen. Alle andere services worden geblokkeerd. Wanneer u geen services selecteert, kunnen gebruikers geen gegevens openen."
+ },
+ "AndroidBackup": {
+ "label": "Back-up maken van organisatiegegevens in de Android-back-upservices",
+ "tooltip": "Selecteer {0} om te voorkomen dat er van organisatiegegevens een back-up wordt gemaakt in de Android-back-upservices. \r\nSelecteer {1} om toe te staan dat er van organisatiegegevens een back-up wordt gemaakt in de Android-back-upservices. \r\nDit is niet van toepassing op persoonlijke of onbeheerde gegevens."
+ },
+ "AndroidBiometricAuthentication": {
+ "label": "Biometrische gegevens in plaats van pincode voor toegang",
+ "tooltip": "Kiezen welke Android-verificatiemethoden gebruikers kunnen gebruiken, indien mogelijk, in plaats van een app-pincode."
+ },
+ "AndroidFingerprint": {
+ "label": "Vingerafdruk in plaats van een pincode voor toegang (Android 6.0+)",
+ "tooltip": "Het Android-besturingssysteem gebruikt vingerafdrukscans om gebruikers van Android-apparaten te verifiëren. Deze functie ondersteunt de systeemeigen biometrische beheerelementen op Android-apparaten. Biometrische instellingen voor OEM, zoals Samsung Pass, worden niet ondersteund. Indien toegestaan, moeten systeemeigen biometrische beheerelementen worden gebruikt voor toegang tot de app op een compatibel apparaat."
+ },
+ "AndroidOverrideFingerprint": {
+ "label": "Vingerafdruk overschrijven met pincode na time-out"
+ },
+ "AppPIN": {
+ "label": "Pincode voor app wanneer pincode is ingesteld",
+ "tooltip": "Als deze instelling niet is vereist, hoeft er geen app-pincode te worden gebruikt voor toegang tot de app als de pincode voor het apparaat is ingesteld op een apparaat dat in MDM is ingeschreven.
\r\n\r\nOpmerking: Intune kan in Android een apparaatinschrijving met een EMM-oplossing van derden niet detecteren."
+ },
+ "BlockDataIngestionIntoOrganizationDocuments": {
+ "label": "Gegevens in organisatiedocumenten openen",
+ "tooltip1": "Selecteer Blokkeren om het gebruik van de optie Openen of andere opties voor het delen van gegevens tussen accounts in deze app uit te schakelen. Selecteer Toestaan als u het gebruik van Openen en andere opties om gegevens te delen tussen accounts in deze app wilt toestaan.",
+ "tooltip2": "Wanneer de optie Blokkeren is ingesteld, kunt u de volgende instelling configureren: Gebruiker toestaan om gegevens van geselecteerde services te openen. Zo kunt u aangeven welke services zijn toegestaan voor de locaties van de organisatiegegevens.",
+ "tooltip3": "Opmerking: deze instelling wordt alleen toegepast als de instelling Gegevens ontvangen van andere apps is ingesteld op Door beleid beheerde apps.
\r\nOpmerking: Deze instelling is niet van toepassing op alle toepassingen. Zie {0} voor meer informatie.",
+ "tooltip4": "Opmerking: deze instelling wordt alleen toegepast als de instelling Gegevens ontvangen van andere apps is ingesteld op Door beleid beheerde apps.
\r\nOpmerking: Deze instelling is niet van toepassing op alle toepassingen. Zie {0} of {0} voor meer informatie."
+ },
+ "ConnectToVpnOnLaunch": {
+ "label": "Microsoft Tunnel-verbinding starten bij starten van app",
+ "tooltip": "Verbinding met VPN toestaan wanneer de app wordt gestart"
+ },
+ "CredentialsForAccess": {
+ "label": "De referenties van het werk- of schoolaccount voor toegang",
+ "tooltip": "Indien nodig, moeten de referenties van het werk- of schoolaccount worden gebruikt voor toegang tot de app die door het beleid wordt beheerd. Als er ook een pincode of biometrische methoden vereist zijn voor toegang tot de app, wordt er naast die prompts gevraagd om de referenties van het werk- of schoolaccount."
+ },
+ "CustomBrowserDisplayName": {
+ "label": "Naam onbeheerde browser",
+ "tooltip": "Voer de toepassingsnaam in voor de browser die is gekoppeld aan de id van onbeheerde browser. Deze naam wordt weergegeven voor gebruikers als de opgegeven browser niet is geïnstalleerd."
+ },
+ "CustomBrowserPackageId": {
+ "label": "Id van onbeheerde browser",
+ "tooltip": "Voer de toepassings-id voor één browser in. Webinhoud (http/s) van door beleid beheerde toepassingen wordt geopend in de opgegeven browser."
+ },
+ "CustomBrowserProtocol": {
+ "label": "Protocol onbeheerde browser",
+ "tooltip": "Voer het protocol voor één onbeheerde browser in. Webinhoud (http/s) van door beleid beheerde toepassingen wordt geopend in alle apps die dit protocol ondersteunen.
\r\n \r\nOpmerking: Neem alleen het protocolprefix op. Als uw browser koppelingen in de vorm 'mybrowser://www.microsoft.com' vereist, voert u 'mybrowser' in.
"
+ },
+ "CustomDialerAppDisplayName": {
+ "label": "Naam van kiezer-app"
+ },
+ "CustomDialerAppPackageId": {
+ "label": "Pakket-id van kiezer-app"
+ },
+ "CustomDialerAppProtocol": {
+ "label": "URL-schema van kiezer-app"
+ },
+ "Cutcopypaste": {
+ "label": "Knippen, kopiëren en plakken tussen andere apps beperken",
+ "tooltip": "Knippen, kopiëren en plakken van gegevens tussen uw app en andere goedgekeurde apps die op het apparaat zijn geïnstalleerd. Kies ervoor om deze bewerkingen volledig te blokkeren, toe te staan dat ze met alle apps kunnen worden uitgevoerd of deze te beperken tot de apps die door uw organisatie worden beheerd.
\r\n\r\nDoor beleid beheerde apps met inplakken stelt u in staat om binnenkomende inhoud die is geplakt vanuit een andere toepassing te accepteren. Gebruikers kunnen echter niet met externe apps inhoud delen, tenzij ze inhoud delen met een beheerde app.
"
+ },
+ "DialerRestrictionLevel": {
+ "iosTooltip": "Wanneer een gebruiker een telefoonnummer met hyperlink selecteert in een app, wordt er meestal een kiezer-app geopend met het telefoonnummer ingevuld en klaar om te worden gebeld. Kies voor deze instelling hoe u dit type inhoudsoverdracht wilt verwerken wanneer het wordt gestart vanuit een door beleid beheerde app. Er zijn mogelijk aanvullende stappen nodig om deze instelling van kracht te laten worden. Controleer eerst of de tel en telprompt zijn verwijderd uit de lijst met uitgezonderde apps. Controleer vervolgens of de toepassing een nieuwere versie van Intune SDK (versie 12.7.0+) gebruikt.",
+ "label": "Telecommunicatiegegevens overdragen aan",
+ "tooltip": "Wanneer een gebruiker een telefoonnummerkoppeling selecteert in een app, wordt meestal een kiezer-app geopend met het telefoonnummer automatisch ingevuld en klaar om te worden gebeld. Kies voor deze instelling hoe u dit type inhoudsoverdracht wilt verwerken wanneer dit vanuit een door beleid beheerde app wordt gestart."
+ },
+ "EncryptData": {
+ "label": "Organisatiegegevens versleutelen",
+ "link": "https://docs.microsoft.com/en-us/intune/app-protection-policy-settings-android#data-relocation-settings",
+ "tooltip": "Selecteer {0} om versleuteling van de organisatiegegevens met versleuteling op het niveau van apps van Intune af te dwingen.\r\n
\r\nSelecteer {1} om geen versleuteling van de organisatiegegevens met versleuteling op het niveau van apps van Intune af te dwingen.\r\n\r\n
\r\nOpmerking: zie {2} voor meer informatie over versleuteling op het niveau van apps van Intune."
+ },
+ "EncryptDataAndroid": {
+ "tooltip": "Kies Vereisen om versleuteling van werk- of schoolgegevens in deze app in te schakelen. In Intune wordt een OpenSSL 256-bits AES-versleutelingsschema gebruikt in combinatie met het Android Keystore-systeem om app-gegevens veilig te versleutelen. Gegevens worden tijdens I/O-taken synchroon versleuteld. Inhoud in de apparaatopslag is altijd versleuteld. De SDK blijft 128-bits sleutels ondersteunen voor compatibiliteit met inhoud en apps waarvoor oudere SDK-versies worden gebruikt.
\r\n\r\nDe versleutelingsmethode is niet FIPS 140-2-compatibel.
"
+ },
+ "EncryptDataIos": {
+ "tooltip1": "Kies Vereisen om versleuteling van werk- of schoolgegevens in deze app in te schakelen. Met Intune wordt iOS/iPadOS-apparaatversleuteling afgedwongen om app-gegevens te beveiligen wanneer het apparaat is vergrendeld. Optioneel kunnen app-gegevens met toepassingen worden versleuteld met behulp van Intune App SDK-versleuteling. Met de Intune App SDK worden iOS/iPadOS-cryptografiemethoden gebruikt om 128-bits AES-versleuteling op app-gegevens toe te passen.",
+ "tooltip2": "Als u deze instelling inschakelt, kan de gebruiker worden verplicht een pincode voor toegang tot het apparaat in te stellen en te gebruiken. Als er geen apparaatpincode en -versleuteling is vereist, wordt de gebruiker gevraagd een pincode in te stellen en wordt het bericht 'Uw organisatie heeft ingesteld dat u eerst een pincode voor het apparaat moet inschakelen voor u toegang tot deze app kunt krijgen' weergegeven.",
+ "tooltip3": "Ga naar de officiële Apple-documentatie om de iOS-versleutelingsmodules te bekijken die FIPS 140-2-compatibel zijn of waarvoor FIPS 140-2-compatibiliteit in behandeling is."
+ },
+ "EncryptDataOnEnrolledDevices": {
+ "label": "Organisatiegegevens op ingeschreven apparaten versleutelen",
+ "tooltip": "Selecteer {0} om versleuteling van de organisatiegegevens met versleuteling op het niveau van apps van Intune af te dwingen voor alle apparaten.
\r\n\r\nSelecteer {1} om geen versleuteling van de organisatiegegevens met versleuteling op het niveau van apps van Intune af te dwingen voor ingeschreven apparaten."
+ },
+ "IOSBackup": {
+ "label": "Een back-up van organisatiegegevens maken in iTunes- en iCloud-back-ups",
+ "tooltip": "Selecteer {0} om te voorkomen dat er een back-up van organisatiegegevens wordt gemaakt in iTunes of iCloud.\r\nSelecteer {1} om toe te staan dat er een back-up van organisatiegegevens wordt gemaakt in iTunes of iCloud.\r\nDit is niet van toepassing op persoonlijke of onbeheerde gegevens."
+ },
+ "IOSFaceID": {
+ "label": "Face ID in plaats van pincode voor toegang (iOS 11+/iPadOS)",
+ "tooltip": "Face ID maakt gebruik van gezichtsherkenningstechnologie om gebruikers op iOS/iPadOS-apparaten te verifiëren. Intune roept de LocalAuthentication-API aan om gebruikers te verifiëren met Face ID. Indien toegestaan, moet Face ID worden gebruikt voor toegang tot de app op een apparaat waarop Face ID kan worden gebruikt."
+ },
+ "IOSOverrideTouchId": {
+ "label": "Biometrische gegevens overschrijven met pincode na time-out"
+ },
+ "IOSTouchId": {
+ "label": "Touch ID in plaats van pincode voor toegang (iOS 8+/iPadOS)",
+ "tooltip": "Touch ID maakt gebruik van vingerafdrukherkenningstechnologie om gebruikers op iOS-apparaten te verifiëren. Intune roept de LocalAuthentication-API aan om gebruikers te verifiëren met Touch ID. Indien toegestaan, moet Touch ID worden gebruikt voor toegang tot de app op een apparaat waarop Touch ID kan worden gebruikt."
+ },
+ "NotificationRestriction": {
+ "label": "Meldingen van organisatiegegevens",
+ "tooltip": "Selecteer een van de volgende opties om op te geven hoe meldingen voor organisatieaccounts worden weergegeven voor deze app en alle verbonden apparaten, bijvoorbeeld draagbare apparaten:
\r\n{0}: geen meldingen delen.
\r\n{1}: geen organisatiegegevens delen in meldingen. Als dit niet wordt ondersteund door de toepassing, worden de meldingen geblokkeerd.
\r\n{2}: alle meldingen delen.
\r\n Alleen Android:\r\n Opmerking: Deze instelling geldt niet voor alle toepassingen. Zie {3} voor meer informatie
\r\n \r\n Alleen iOS:\r\nOpmerking: Deze instelling geldt niet voor alle toepassingen. Zie {4} voor meer informatie
"
+ },
+ "OpenLinksManagedBrowser": {
+ "label": "Overdracht van webinhoud met andere apps beperken",
+ "tooltip": "Selecteer een van de volgende opties om de apps op te geven waarin deze app webinhoud kan openen:
\r\nEdge: toestaan dat webinhoud alleen wordt geopend in Edge
\r\nOnbeheerde browser: toestaan dat webinhoud alleen wordt geopend in de onbeheerde browser die is gedefinieerd met de instelling Protocol van onbeheerde browser
\r\nAlle apps: webkoppelingen in alle apps toestaan
"
+ },
+ "OverrideBiometric": {
+ "tooltip": "Indien nodig, worden afhankelijk van de time-out (minuten van inactiviteit) biometrische prompts overschreven door een prompt voor de pincode. Als niet aan deze waarde voor de time-out wordt voldaan, wordt de biometrische prompt nog steeds weergegeven. Deze waarde voor de time-out moet groter zijn dan de opgegeven waarde onder 'Toegangsvereisten opnieuw controleren na (minuten van inactiviteit)'."
+ },
+ "PinAccess": {
+ "label": "Pincode voor toegang",
+ "tooltip": "Indien nodig, moet een pincode worden gebruikt om toegang te krijgen tot de door het beleid beheerde app. Gebruikers moeten de eerste keer dat ze de app in een werk- of schoolaccount-account openen een pincode voor toegang maken."
+ },
+ "PinLength": {
+ "label": "Minimumlengte van de pincode selecteren:",
+ "tooltip": "Met deze instelling wordt het minimale aantal cijfers voor een pincode opgegeven."
+ },
+ "PinType": {
+ "label": "Type pincode",
+ "tooltip": "Numerieke pincodes bestaan uit alle cijfers. Wachtwoordcodes bestaan uit alfanumerieke tekens en speciale tekens."
+ },
+ "Printing": {
+ "label": "Organisatiegegevens afdrukken",
+ "tooltip": "Als deze instelling is geblokkeerd, kunnen er geen beveiligde gegevens worden afgedrukt met de app."
+ },
+ "ReceiveData": {
+ "label": "Gegevens ontvangen van andere apps",
+ "tooltip": "Selecteer een van de volgende opties om aan te geven van welke apps deze app gegevens kan ontvangen:
\r\n\r\nGeen: niet toestaan dat gegevens in organisatiedocumenten of -accounts worden ontvangen van apps
\r\n\r\nDoor beleid beheerde apps: alleen toestaan dat gegevens in organisatiedocumenten of -accounts worden ontvangen die afkomstig zijn van andere door beleid beheerde apps\r\n
\r\nApps met inkomende organisatiegegevens: toestaan dat gegevens in organisatiedocumenten of -accounts worden ontvangen die afkomstig zijn van apps en alle inkomende gegevens zonder een gebruikersaccount behandelen als organisatiegegevens
\r\n\r\nAlle apps: toestaan dat gegevens uit alle apps in organisatiedocumenten of -accounts worden ontvangen"
+ },
+ "RecheckAccessAfter": {
+ "label": "De toegangsvereisten opnieuw controleren na (minuten van inactiviteit)\r\n\r\n",
+ "tooltip": "Als de door beleid beheerde app langer inactief is dan het opgegeven aantal minuten van inactiviteit, wordt door de app gevraagd om de toegangsvereisten (bijvoorbeeld de pincode of de instellingen voor voorwaardelijk starten) opnieuw te controleren nadat de app is gestart."
+ },
+ "RestrictKeyboards": {
+ "duplicatePackageError": "De pakket-id moet uniek zijn.",
+ "invalidPackageError": "Ongeldige pakket-id",
+ "label": "Goedgekeurde toetsenborden",
+ "select": "Selecteer toetsenborden om goed te keuren",
+ "subtitle": "Alle toetsenborden en invoermethoden toevoegen die gebruikers mogen gebruiken met doel-apps. Voer de naam van het toetsenbord in zoals u wilt dat deze wordt weergegeven aan de eindgebruiker.",
+ "title": "Goedgekeurde toetsenborden toevoegen",
+ "toolTip": "Selecteer Vereist en geef vervolgens een lijst met goedgekeurde toetsenborden voor dit beleid op. Meer informatie. "
+ },
+ "SaveData": {
+ "label": "Kopieën van organisatiegegevens opslaan",
+ "tooltip": "Selecteer {0} om te voorkomen dat met 'Opslaan als' een kopie van organisatiegegevens wordt opgeslagen in een andere locatie dan de geselecteerde opslagservices.\r\n Selecteer {1} om toe te staan dat met 'Opslaan als' een kopie van organisatiegegevens wordt opgeslagen in een andere locatie.
\r\n\r\n\r\nOpmerking: Deze instelling geldt niet voor alle toepassingen. Zie {2} voor meer informatie.\r\n"
+ },
+ "SaveDataToSelected": {
+ "label": "De gebruiker toestaan om kopieën op te slaan in de geselecteerde services",
+ "tooltip": "Selecteer de opslagservices waarin gebruikers kopieën van organisatiegegevens kunnen opslaan. Alle andere services worden geblokkeerd. Wanneer u geen services selecteert, kunnen gebruikers geen kopie van organisatiegegevens opslaan."
+ },
+ "ScreenCaptureAndAndroidAssistant": {
+ "label": "Schermopname en Google Assistant\r\n",
+ "tooltip": "Als deze instelling is geblokkeerd, worden de scanfuncties van Schermopname en de Google Assistant-app uitgeschakeld wanneer u de door het beleid beheerde app gebruikt. Deze functie ondersteunt de gangbare Google Assistant-app. Assistenten van derden die gebruikmaken van de Assist-API van Google worden niet ondersteund. Als u Blokkeren kiest, wordt ook de voorbeeldafbeelding van App-Switcher vervaagd als u de app gebruikt met een werk- of schoolaccount."
+ },
+ "SendData": {
+ "label": "Organisatiegegevens naar andere apps verzenden",
+ "tooltip": "Selecteer een van de volgende opties om aan te geven naar welke apps deze app organisatiegegevens kan verzenden:
\r\n\r\n\r\nGeen: niet toestaan dat organisatiegegevens naar apps worden verzonden
\r\n\r\n\r\nDoor beleid beheerde apps: alleen toestaan dat organisatiegegevens naar andere door beleid beheerde apps worden verzonden
\r\n\r\n\r\nDoor beleid beheerde apps met delen van het besturingssysteem: alleen toestaan dat organisatiegegevens naar andere door beleid beheerde apps worden verzonden en dat organisatiedocumenten naar andere door MDM beheerde apps op ingeschreven apparaten worden verzonden
\r\n\r\n\r\nDoor beleid beheerde apps met filteren op 'Openen in/delen': alleen toestaan dat organisatiegegevens naar andere door beleid beheerde apps worden verzonden en dat dialoogvensters 'Openen in/delen' van het besturingssysteem worden gefilterd zodat alleen door beleid beheerde apps worden weergegeven\r\n
\r\n\r\nAlle apps: toestaan dat organisatiegegevens naar alle apps worden verzonden"
+ },
+ "SimplePin": {
+ "label": "Eenvoudige pincode",
+ "tooltip": "Als de optie voor blokkeren is ingesteld, kunnen gebruikers geen eenvoudige pincode maken. Een eenvoudige pincode is een tekenreeks van opeenvolgende of herhaalde cijfers, zoals 1234, ABCD of 1111. Als u een eenvoudige pincode van het type 'Wachtwoordcode' blokkeert, moet de wachtwoordcode ten minste één cijfer, één letter en één speciaal teken bevatten."
+ },
+ "SyncContacts": {
+ "label": "Door beleid beheerde app-gegevens synchroniseren met systeemeigen apps of invoegtoepassingen"
+ },
+ "ThirdPartyKeyboards": {
+ "infoBox": "Toetsenbordbeperkingen zijn van toepassing op alle gebieden van een app. Persoonlijke accounts voor apps die meerdere identiteiten ondersteunen, worden beïnvloed door deze beperkingen. Meer informatie.",
+ "label": "Toetsenborden van derden"
+ },
+ "Timeout": {
+ "label": "Time-out (minuten van inactiviteit)"
+ },
+ "Tap": {
+ "numberOfDays": "Aantal dagen",
+ "pinResetAfterNumberOfDays": "Aantal dagen waarna pincode opnieuw moet worden ingesteld",
+ "previousPinBlockCount": "Aantal te onderhouden eerdere pincodewaarden selecteren"
+ }
+ },
+ "ScheduledAction": {
+ "Form": {
+ "editBlockActionInfo": "Er is één blokkeringsactie vereist voor alle nalevingsbeleid.",
+ "graceperiod": "Schema (dagen na niet-naleving)",
+ "graceperiodInfo": "Opgeven na hoeveel dagen van niet-compatibiliteit deze actie moet worden geactiveerd voor het apparaat van de gebruiker",
+ "subtitle": "Actieparameters opgeven",
+ "title": "Actieparameters"
+ },
+ "List": {
+ "gracePeriodDay": "{0} dag na niet-naleving",
+ "gracePeriodDays": "{0} dagen na niet-naleving",
+ "gracePeriodHour": "{0} uur na niet-naleving",
+ "gracePeriodHours": "{0} uur na niet-naleving",
+ "gracePeriodMinute": "{0} minuut na niet-naleving",
+ "gracePeriodMinutes": "{0} minuten na niet-naleving",
+ "immediately": "Onmiddellijk",
+ "schedule": "Schema",
+ "scheduleInfoBalloon": "Dagen na niet-naleving",
+ "subtitle": "Een reeks acties op niet-compatibele apparaten opgeven",
+ "title": "Acties"
+ },
+ "Notification": {
+ "additionalEmailLabel": "Overige",
+ "additionalRecipients": "Extra geadresseerden (via e-mail)",
+ "additionalRecipientsBladeTitle": "Aanvullende ontvangers selecteren",
+ "emailAddressPrompt": "E-mailadressen invoeren (gescheiden door komma's)",
+ "invalidEmail": "Ongeldig e-mailadres",
+ "messageTemplate": "Berichtsjabloon",
+ "noneSelected": "Niets geselecteerd",
+ "notSelected": "Niet geselecteerd",
+ "numSelected": "{0} geselecteerd",
+ "selected": "Geselecteerd"
+ },
+ "block": "Het apparaat als niet-compatibel markeren",
+ "lockDevice": "Apparaat vergrendelen (lokale actie)",
+ "lockDeviceWithPasscode": "Apparaat vergrendelen (lokale actie)",
+ "noAction": "Geen actie",
+ "noActionRow": "Geen acties. Selecteer Toevoegen om een actie toe te voegen",
+ "pushNotification": "Pushmelding verzenden naar eindgebruiker",
+ "remoteLock": "Het niet-compatibele apparaat extern vergrendelen",
+ "removeSourceAccessProfile": "Brontoegangsprofiel verwijderen",
+ "retire": "Het niet-compatibele apparaat buiten gebruik stellen",
+ "wipe": "Wissen",
+ "emailNotification": "E-mail verzenden naar de eindgebruiker"
+ },
+ "InstallIntent": {
+ "available": "Beschikbaar voor ingeschreven apparaten",
+ "availableWithoutEnrollment": "Beschikbaar met of zonder inschrijving",
+ "required": "Vereist",
+ "uninstall": "Verwijderen"
+ },
"EnrollmentStatusScreen": {
"Apps": {
"managedApps": "Beheerde apps",
@@ -2466,142 +1483,61 @@
"resetToggle": "Toestaan dat gebruikers het apparaat opnieuw instellen als er een installatiefout optreedt",
"timeout": "Een foutbericht weergeven als de installatie langer duurt dan het opgegeven aantal minuten"
},
- "EnrollmentType": {
- "devicesWithEnrollment": "Beheerde apparaten",
- "devicesWithoutEnrollment": "Beheerde apps"
- },
- "ApplicabilityRules": {
- "GridLabel": {
- "property": "Eigenschap",
- "rule": "Regel",
- "ruleDetails": "Regeldetails",
- "value": "Waarde"
- },
- "assignIf": "Profiel toewijzen als",
- "deleteWarning": "Hiermee wordt de geselecteerde regel voor toepasselijkheid verwijderd",
- "dontAssignIf": "Profiel niet toewijzen als",
- "editionDisplayText": "{0} {1}",
- "editionDisplayTextMore": "en nog {0}",
- "instructions": "Geef op hoe dit profiel moet worden toegepast binnen een toegewezen groep. Intune past het profiel alleen toe op apparaten die voldoen aan de gecombineerde criteria van deze regels.",
- "maxText": "Maximaal",
- "minText": "Minimaal",
- "noActionRow": "Er zijn geen regels voor toepasselijkheid opgegeven",
- "oSVersion": "bijvoorbeeld 1.2.3.4",
- "toText": "tot",
- "windows10Education": "Windows 10/11 Education",
- "windows10EducationN": "Windows 10/11 Education N",
- "windows10Enterprise": "Windows 10/11 Enterprise",
- "windows10EnterpriseN": "Windows 10/11 Enterprise N",
- "windows10HolographicEnterprise": "Windows 10 Holographic for Business",
- "windows10Home": "Windows 10/11 Home",
- "windows10HomeChina": "Windows 10 Home China",
- "windows10HomeN": "Windows 10/11 Home N",
- "windows10HomeSingleLanguage": "Windows 10/11 Home Single Language",
- "windows10IoTCore": "Windows 10 IoT Core",
- "windows10IoTCoreCommercial": "Windows 10 IoT Core Commercial",
- "windows10Mobile": "Windows 10 Mobile",
- "windows10MobileEnterprise": "Windows 10 Mobile Enterprise",
- "windows10OsEdition": "Editie besturingssysteem",
- "windows10OsVersion": "Besturingssysteemversie",
- "windows10Professional": "Windows 10/11 Professional",
- "windows10ProfessionalEducation": "Windows 10/11 Professional Education",
- "windows10ProfessionalEducationN": "Windows 10/11 Professional Education N",
- "windows10ProfessionalN": "Windows 10 Professional N",
- "windows10ProfessionalWorkstation": "Windows 10/11 Professional Workstation",
- "windows10ProfessionalWorkstationN": "Windows 10/11 Professional Workstation N"
+ "Devices": {
+ "General": {
+ "android": "Android"
+ },
+ "aOSP": "Android-opensource-project",
+ "android": "Android-apparaatbeheerder",
+ "androidWorkProfile": "Android Enterprise (werkprofiel)",
+ "iOS": "iOS/iPadOS",
+ "mac": "macOS",
+ "windows": "Windows (MDM)",
+ "windows10": "Windows 10 en later",
+ "windowsHomeSku": "Windows Home-SKU",
+ "windowsMobile": "Windows Mobile"
+ },
+ "AppInfoBalloonText": {
+ "Certificate": {
+ "customSubjectName": "CN={{UserName}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US\r\nor\r\nCN={{AAD_Device_ID}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US",
+ "keySize": "Selecteer het aantal bits dat in de sleutel is opgenomen.",
+ "keyUsage": "Geef de cryptografische actie op die nodig is voor het uitwisselen van de openbare sleutel van het certificaat.",
+ "renewalThreshold": "Geef het percentage (tussen 1 en 99 procent) op van de resterende levensduur van het certificaat dat is toegestaan voordat een apparaat vernieuwing van het certificaat kan aanvragen. De aanbevolen waarde voor Intune is 20%. (1-99)",
+ "rootCert": "Kies een eerder geconfigureerd en toegewezen certificaatprofiel van een basis-CA. Het CA-certificaat moet overeenkomen met het basiscertificaat van de CA die het certificaat verleent voor dit profiel (hetgeen u momenteel configureert).",
+ "scepServerUrl": "Voer een URL in voor de NDES-server waarmee certificaten worden uitgegeven via SCEP (moet HTTPS zijn), bijvoorbeeld https://contoso.com/certsrv/mscep/mscep.dll",
+ "scepServerUrls": "Voer een of meer URL's in voor de NDES-server waarmee certificaten worden uitgegeven via SCEP (moet HTTPS zijn), bijvoorbeeld https://contoso.com/certsrv/mscep/mscep.dll",
+ "subjectAlternativeName": "Alternatieve naam voor onderwerp",
+ "subjectNameFormat": "Indeling van de onderwerpnaam",
+ "validityPeriod": "De resterende tijd voordat het certificaat verloopt. Voer een waarde in die gelijk is aan of lager is dan de geldigheidsperiode die wordt weergegeven in de certificaatsjabloon. Is standaard ingesteld op een jaar."
+ },
+ "appInstallContext": "Hiermee bepaalt u de installatiecontext die moet worden gekoppeld aan deze app. Selecteer de gewenste context apps met dubbele modus. Voor alle andere toepassingen wordt dit vooraf geselecteerd op basis van het pakket; dit kan niet worden gewijzigd.",
+ "autoUpdateMode": "Configureer de updateprioriteit voor de app. Selecteer Standaard om te vereisen dat het apparaat is verbonden met Wi-Fi, dat deze opgeladen wordt en niet actief wordt gebruikt voordat u de app bijwerkt. Selecteer Hoge prioriteit om de app bij te werken zodra de ontwikkelaar de app heeft gepubliceerd, ongeacht oplaadstatus, Wi-Fi-mogelijkheden of activiteiten van eindgebruikers op het apparaat. Selecteer Uitgesteld om af te zien van app-updates voor maximaal 90 dagen. Hoge prioriteit en Uitgesteld worden alleen van kracht op DO-apparaten.",
+ "configurationSettingsFormat": "Tekstopmaak van de configuratie-instellingen",
+ "ignoreVersionDetection": "Stel dit in op Yes voor toepassingen die automatisch worden bijgewerkt door de app-ontwikkelaar (zoals Google Chrome).",
+ "ignoreVersionDetectionMacOSLobApp": "Selecteer Ja voor apps die automatisch worden bijgewerkt door de app-ontwikkelaar of om alleen te controleren op app-bundleID voor de installatie. Selecteer Nee om te controleren op app-bundleID en versienummer vóór de installatie.",
+ "installAsManagedMacOSLobApp": "Deze instelling is alleen van toepassing op macOS 11 en hoger. De app wordt geïnstalleerd, maar wordt niet beheerd op macOS 10.15 en lager.",
+ "installContextDropdown": "Selecteer de juiste installatiecontext. In de gebruikerscontext wordt de app alleen geïnstalleerd voor de gebruiker waarop de app is gericht; in de apparaatcontext wordt de app voor alle gebruikers op het apparaat geïnstalleerd.",
+ "ldapUrl": "Dit is de LDAP-hostnaam waar clients openbare versleutelingssleutels kunnen downloaden voor e-mailontvangers. E-mailberichten worden versleuteld als er een sleutel beschikbaar is. Ondersteunde indelingen: - ldap.example.com
\r\n- ldap.example.com:123
\r\n- ldap://ldap.example.com
- ldap://ldap.example.com:123
- ldaps://ldap.example.com
\r\n- ldaps://ldap.example.com:123
",
+ "permissionsSettings": "Selecteer runtime-machtigingen voor de bijbehorende app.",
+ "policyAssociatedApp": "Selecteer de app waaraan dit beleid wordt gekoppeld.",
+ "policyConfigurationSettings": "Selecteer de methode die u wilt gebruiken om de configuratie-instellingen van dit beleid te definiëren.",
+ "policyDescription": "U kunt optioneel een beschrijving van dit configuratiebeleid invoeren.",
+ "policyEnrollmentType": "Kies of deze instellingen worden beheerd via apparaatbeheer of via apps die zijn gemaakt met Intune SDK.",
+ "policyName": "Voer een naam voor dit configuratiebeleid in.",
+ "policyPlatform": "Selecteer het platform waarop dit app-configuratiebeleid van toepassing is.",
+ "policyProfileType": "Selecteer de apparaatprofieltypen waarop dit app-configuratieprofiel van toepassing is",
+ "policySMime": "S/MIME-ondertekening en versleutelingsinstellingen voor Outlook configureren.",
+ "sMimeDeployCertsFromIntune": "Opgeven of er S/MIME-certificaten worden geleverd via Intune voor gebruik met Outlook.\r\nMet Intune kunnen certificaten voor ondertekening en versleuteling automatisch voor gebruikers worden geïmplementeerd via de bedrijfsportal.",
+ "sMimeEnable": "Opgeven of S/MIME-besturingselementen zijn ingeschakeld bij het opstellen van een e-mailbericht",
+ "sMimeEnableAllowChange": "Geef aan of de gebruiker de instelling S/MIME inschakelen mag wijzigen.",
+ "sMimeEncryptAllEmails": "Opgeven of alle e-mailberichten moeten worden versleuteld.\r\nTijdens de versleuteling worden gegevens met een coderingstekst geconverteerd zodat alleen de beoogde ontvanger het e-mailbericht kan lezen.",
+ "sMimeEncryptAllEmailsAllowChange": "Geef aan of de gebruiker de instelling Alle e-mailberichten versleutelen mag wijzigen.",
+ "sMimeEncryptionCertProfile": "Certificaatprofiel voor versleuteling van e-mails opgeven.",
+ "sMimeSignAllEmails": "Opgeven of alle e-mailberichten moeten worden ondertekend.\r\nMet een digitale handtekening wordt de echtheid van het e-mailbericht gecontroleerd om ervoor te zorgen dat de inhoud niet onrechtmatig kan worden gewijzigd tijdens de overdracht.",
+ "sMimeSignAllEmailsAllowChange": "Geef aan of de gebruiker de instelling Alle e-mails ondertekenen mag wijzigen.",
+ "sMimeSigningCertProfile": "Certificaatprofiel voor het ondertekenen van e-mails opgeven.",
+ "sMimeUserNotificationType": "De methode waarmee gebruikers worden geïnformeerd dat ze de bedrijfsportal moeten openen om S/MIME-certificaten voor Outlook op te halen."
},
- "BooleanActions": {
- "allow": "Toestaan",
- "block": "Blokkeren",
- "configured": "Geconfigureerd",
- "disable": "Uitschakelen",
- "dontRequire": "Niet vereisen",
- "enable": "Inschakelen",
- "hide": "Verbergen",
- "limit": "Limiet",
- "notConfigured": "Niet geconfigureerd",
- "require": "Vereisen",
- "show": "Weergeven",
- "yes": "Ja"
- },
- "ProactiveRemediations": {
- "Create": {
- "Basics": {
- "DescriptionMultiLineTextBox": {
- "label": "Beschrijving",
- "placeholder": "Een beschrijving invoeren..."
- },
- "NameTextBox": {
- "label": "Naam",
- "placeholder": "Een naam invoeren"
- },
- "PublisherTextBox": {
- "label": "Uitgever",
- "placeholder": "Voer een uitgever in"
- },
- "VersionTextBox": {
- "label": "Versie"
- },
- "headerDescription": "Maak een nieuw aangepast scriptpakket op basis van detectie- en herstelscripts die u hebt geschreven."
- },
- "ScopeTags": {
- "headerDescription": "Selecteer een of meer groepen om het scriptpakket toe te wijzen."
- },
- "Settings": {
- "DetectionScriptMultiLineTextBox": {
- "label": "Detectiescript",
- "placeholder": "Scripttekst invoeren",
- "requiredValidationMessage": "Voer het detectiescript in"
- },
- "EnforceScriptSignatureCheckOptionPicker": {
- "label": "Controle van scripthandtekening afdwingen"
- },
- "LoggedOnCredentialsOptionPicker": {
- "label": "Dit script uitvoeren met de referenties van de aangemelde gebruiker"
- },
- "RemediationScript": {
- "infoBox": "Dit script wordt uitgevoerd in de modus voor alleen detecteren omdat er geen herstelscript is."
- },
- "RemediationScriptMultiLineTextBox": {
- "label": "Script voor automatisch doorvoeren",
- "placeholder": "Scripttekst invoeren"
- },
- "RunIn64BitPSOptionPicker": {
- "label": "Script uitvoeren in 64-bits PowerShell"
- },
- "ScriptMultiLineTextBox": {
- "base64EncodingValidationMessage": "Ongeldig script. Een of meer tekens die in het script worden gebruikt, zijn ongeldig."
- },
- "headerDescription": "Maak een aangepast scriptpakket op basis van de door u geschreven scripts. Standaard worden scripts elke dag op toegewezen apparaten uitgevoerd.",
- "infoBox": "Dit script is alleen-lezen. Een aantal instellingen voor dit script is mogelijk uitgeschakeld."
- },
- "title": "Aangepast script maken",
- "ScriptProperties": {
- "GridHeaders": {
- "interval": "Interval",
- "time": "Datum en tijd"
- },
- "Interval": {
- "day": "Wordt elke dag herhaald",
- "days": "Wordt om de {0} dagen herhaald",
- "hour": "Wordt elk uur herhaald",
- "hours": "Wordt om de {0} uur herhaald",
- "month": "Wordt elke maand herhaald",
- "months": "Wordt om de {0} maanden herhaald",
- "week": "Wordt elke week herhaald",
- "weeks": "Wordt om de {0} weken herhaald"
- },
- "Time": {
- "utc": "{0} (UTC)",
- "utcWithDate": "{0} (UTC) op {1}",
- "withDate": "{0} op {1}"
- }
- }
- },
- "Edit": {
- "title": "Bewerken - {0}"
- }
- },
"WindowsManagement": {
"Assignment": {
"noAssignmentCustomAttributeDisplayText": "U moet het aangepaste kenmerk aan ten minste één groep toewijzen. Ga naar Eigenschappen om toewijzingen te bewerken.",
@@ -2708,910 +1644,6 @@
"shellScriptObjectName": "Shell-script",
"successfullySavedPolicy": "{0} opgeslagen"
},
- "AssignmentFilters": {
- "assignmentFilterColumnHeader": "Filter",
- "noFilters": "Geen"
- },
- "Category": {
- "airPlay": "AirPlay",
- "airPrint": "AirPrint",
- "androidDefenderAtp": "Microsoft Defender for Endpoint",
- "androidDeviceOwnerApplications": "Toepassingen",
- "androidForWorkPassword": "Apparaatwachtwoord",
- "appManagement": "Apps blokkeren of toestaan",
- "applicationGuard": "Microsoft Defender Application Guard",
- "applicationRestrictions": "Beperkte apps",
- "applicationVisibility": "Apps weergeven of verbergen",
- "applications": "App Store",
- "applicationsAndGames": "App Store, documentweergave, gaming",
- "applicationsAndGoogle": "Google Play Store",
- "appsAndExperience": "Apps en ervaring",
- "associatedDomains": "Gekoppelde domeinen",
- "autonomousSingleAppMode": "Autonome modus voor enkele app",
- "azureOperationalInsights": "Azure Operational Insights",
- "bitLocker": "Windows-versleuteling",
- "browser": "Browser",
- "builtinApps": "Geïntegreerde apps",
- "cellular": "Mobiel",
- "cloudAndStorage": "Cloud en opslag",
- "cloudPrint": "Cloudprinter",
- "complianceEmailProfile": "E-mail",
- "connectedDevices": "Verbonden apparaten",
- "connectivity": "Mobiel en connectiviteit",
- "contentCaching": "Cacheopslag van inhoud",
- "controlPanelAndSettings": "Configuratiescherm en Instellingen",
- "credentialGuard": "Microsoft Defender Credential Guard",
- "customCompliance": "Aangepaste naleving",
- "customCompliancePreview": "Aangepaste naleving (preview)",
- "customConfiguration": "Aangepast configuratieprofiel",
- "customOMASettings": "Aangepaste OMA-URI-instellingen",
- "customPreferences": "Voorkeursbestand",
- "defender": "Microsoft Defender Antivirus",
- "defenderAntivirus": "Microsoft Defender Antivirus",
- "defenderExploitGuard": "Microsoft Defender Exploit Guard",
- "defenderFirewall": "Microsoft Defender Firewall",
- "defenderLocalSecurityOptions": "Beveiligingsopties lokaal apparaat",
- "defenderSecurityCenter": "Microsoft Defender-beveiligingscentrum",
- "deliveryOptimization": "Delivery Optimization",
- "derivedCredentialAuthenticationConfiguration": "Afgeleide referentie",
- "deviceExperience": "Apparaat-ervaring",
- "deviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
- "deviceGuard": "Microsoft Defender-toepassingsbeheer",
- "deviceHealth": "Apparaatstatus",
- "devicePassword": "Apparaatwachtwoord",
- "deviceProperties": "Apparaateigenschappen",
- "deviceRestrictions": "Algemeen",
- "deviceSecurity": "Systeembeveiliging",
- "display": "Weergeven",
- "domainJoin": "Domeindeelname",
- "domains": "Domeinen",
- "edgeBrowser": "Microsoft Edge Legacy (versie 45 en eerder)",
- "edgeBrowserSmartScreen": "Microsoft Defender SmartScreen",
- "edgeKiosk": "Microsoft Edge-kioskmodus",
- "editionUpgrade": "Editie-upgrade",
- "education": "Educatief",
- "educationDeviceCerts": "Apparaatcertificaten",
- "educationStudentCerts": "Studentcertificaten",
- "educationTakeATest": "Een test uitvoeren",
- "educationTeacherCerts": "Docentcertificaten",
- "emailProfile": "E-mail",
- "enterpriseDataProtection": "Windows Information Protection",
- "expeditedCheckin": "Configuratie voor Mobile Device Management",
- "extensibleSingleSignOn": "App-extensie voor eenmalige aanmelding",
- "filevault": "FileVault",
- "firewall": "Firewall",
- "games": "Games",
- "gatekeeper": "Gatekeeper",
- "healthMonitoring": "Statuscontrole",
- "homeScreenLayout": "Indeling startscherm",
- "iOSWallpaper": "Achtergrond",
- "importedPFX": "Geïmporteerd PKCS-certificaat",
- "iosDefenderAtp": "Microsoft Defender for Endpoint",
- "iosKiosk": "Kiosk",
- "kernelExtensions": "Kernelextensies",
- "keyboardAndDictionary": "Toetsenbord en woordenboek",
- "kiosk": "Kiosk",
- "kioskAndroidEnterprise": "Toegewezen apparaten",
- "kioskConfiguration": "Kiosk",
- "kioskConfigurationV2": "Kiosk",
- "kioskWebBrowser": "Kiosk Web Browser",
- "lockScreenMessage": "Bericht voor vergrendelingsscherm",
- "lockedScreenExperience": "Ervaring vergrendeld scherm",
- "logging": "Rapportage en telemetrie",
- "loginItems": "Aanmeldingsitems",
- "loginWindow": "Aanmeldingsvenster",
- "macDefenderAtp": "Microsoft Defender for Endpoint",
- "maintenance": "Onderhoud",
- "malware": "Malware",
- "messaging": "Berichten",
- "networkBoundary": "De grens van het netwerk",
- "networkProxy": "Netwerkproxy",
- "notifications": "App-meldingen",
- "pKCS": "PKCS-certificaat",
- "password": "Wachtwoord",
- "personalProfile": "Persoonlijk profiel",
- "personalization": "Persoonlijke instellingen",
- "policyOverride": "Groepsbeleid overschrijven",
- "powerSettings": "Energie-instellingen",
- "printer": "Printer",
- "privacy": "Privacy",
- "privacyPerApp": "Privacyuitzonderingen per app",
- "privacyPreferences": "Privacyvoorkeuren",
- "projection": "Projectie",
- "sCCMCompliance": "Configuration Manager-naleving",
- "sCEP": "SCEP-certificaat",
- "sCEPProperties": "SCEP-certificaat",
- "sMode": "Overschakelen naar andere modus (alleen Windows Insider)",
- "safari": "Safari",
- "search": "Zoeken",
- "session": "Sessie",
- "sharedDevice": "Gedeelde iPad",
- "sharedPCAccountManager": "Gedeeld apparaat voor meerdere gebruikers",
- "singleSignOn": "Eenmalige aanmelding",
- "smartScreen": "Microsoft Defender SmartScreen",
- "softwareUpdates": "Instellingen",
- "start": "Begin",
- "systemExtensions": "Systeemextensies",
- "systemSecurity": "Systeembeveiliging",
- "trustedCert": "Vertrouwd certificaat",
- "updates": "Updates",
- "userRights": "Gebruikersrechten",
- "usersAndAccounts": "Gebruikers en accounts",
- "vPN": "Basis-VPN",
- "vPNApps": "Automatische VPN",
- "vPNAppsAndTrafficRules": "Apps en verkeersregels",
- "vPNConditionalAccess": "Voorwaardelijke toegang",
- "vPNConnectivity": "Connectiviteit",
- "vPNDNSTriggers": "DNS-instellingen",
- "vPNIKEv2": "IKEv2-instellingen",
- "vPNProxy": "Proxy",
- "vPNSplitTunneling": "Split tunneling",
- "vPNTrustedNetwork": "Vertrouwde netwerkdetectie",
- "webContentFilter": "Webinhoudsfilter",
- "wiFi": "Wi-Fi",
- "win10Wifi": "Wi-Fi",
- "windowsAtp": "Microsoft Defender for Endpoint",
- "windowsDefenderATP": "Microsoft Defender for Endpoint",
- "windowsHelloForBusiness": "Windows Hello voor Bedrijven",
- "windowsSpotlight": "Windows-spotlight",
- "wiredNetwork": "Bekabeld netwerk",
- "wireless": "Draadloos",
- "wirelessProjection": "Draadloze projectie",
- "workProfile": "Werkprofielinstellingen",
- "workProfilePassword": "Werkprofielwachtwoord",
- "xboxServices": "Xbox-services",
- "zebraMx": "MX-profiel (alleen Zebra)",
- "complianceActionsLabel": "Acties voor niet-naleving"
- },
- "MicrosoftEdgeChannel": {
- "beta": "Beta",
- "dev": "Dev",
- "stable": "Stable"
- },
- "ConfigurationTypes": {
- "Table": {
- "androidDeviceOwnerGeneral": "Apparaatbeperkingen (apparaateigenaar)",
- "androidForWorkGeneral": "Apparaatbeperkingen (werkprofiel)"
- },
- "androidCustom": "Aangepast",
- "androidDeviceOwnerGeneral": "Apparaatbeperkingen",
- "androidDeviceOwnerPkcs": "PKCS-certificaat",
- "androidDeviceOwnerScep": "SCEP-certificaat",
- "androidDeviceOwnerTrustedCertificate": "Vertrouwd certificaat",
- "androidDeviceOwnerVpn": "VPN",
- "androidDeviceOwnerWiFi": "Wi-Fi",
- "androidEmailProfile": "E-mail (alleen Samsung KNOX)",
- "androidForWorkCustom": "Aangepast",
- "androidForWorkEmailProfile": "E-mail",
- "androidForWorkGeneral": "Apparaatbeperkingen",
- "androidForWorkImportedPFX": "Geïmporteerd PKCS-certificaat",
- "androidForWorkOemConfig": "OEMConfig",
- "androidForWorkPKCS": "PKCS-certificaat",
- "androidForWorkSCEP": "SCEP-certificaat",
- "androidForWorkTrustedCertificate": "Vertrouwd certificaat",
- "androidForWorkVpn": "VPN",
- "androidForWorkWiFi": "Wi-Fi",
- "androidGeneral": "Apparaatbeperkingen",
- "androidImportedPFX": "Geïmporteerd PKCS-certificaat",
- "androidPKCS": "PKCS-certificaat",
- "androidSCEP": "SCEP-certificaat",
- "androidTrustedCertificate": "Vertrouwd certificaat",
- "androidVPN": "VPN",
- "androidWiFi": "Wi-Fi",
- "androidZebraMx": "MX-profiel (alleen Zebra)",
- "complianceAndroid": "Nalevingsbeleid van Android",
- "complianceAndroidDeviceOwner": "Volledig beheerde en toegewezen werkprofielen in bedrijfseigendom",
- "complianceAndroidEnterprise": "Werkprofiel in persoonlijk eigendom",
- "complianceAndroidForWork": "Android for Work-nalevingsbeleid",
- "complianceIos": "Nalevingsbeleid van iOS",
- "complianceMac": "Nalevingsbeleid van Mac",
- "complianceWindows10": "Nalevingsbeleid Windows 10 en hoger",
- "complianceWindows10Mobile": "Nalevingsbeleid van Windows 10 Mobile",
- "complianceWindows8": "Nalevingsbeleid van Windows 8",
- "complianceWindowsPhone": "Nalevingsbeleid van Windows Phone",
- "exchangeActiveSync": "Exchange Active Sync",
- "iosCustom": "Aangepast",
- "iosDerivedCredentialAuthenticationConfiguration": "Afgeleide PIV-referentie",
- "iosDeviceFeatures": "Apparaatfuncties",
- "iosEDU": "Educatief",
- "iosEducation": "Educatief",
- "iosEmailProfile": "E-mail",
- "iosGeneral": "Apparaatbeperkingen",
- "iosImportedPFX": "Geïmporteerd PKCS-certificaat",
- "iosPKCS": "PKCS-certificaat",
- "iosPresets": "Voorinstellingen",
- "iosSCEP": "SCEP-certificaat",
- "iosTrustedCertificate": "Vertrouwd certificaat",
- "iosVPN": "VPN",
- "iosVPNZscaler": "VPN",
- "iosWiFi": "Wi-Fi",
- "macCustom": "Aangepast",
- "macDeviceFeatures": "Apparaatfuncties",
- "macEndpointProtection": "Endpoint Protection",
- "macExtensions": "Uitbreidingen",
- "macGeneral": "Apparaatbeperkingen",
- "macImportedPFX": "Geïmporteerd PKCS-certificaat",
- "macSCEP": "SCEP-certificaat",
- "macTrustedCertificate": "Vertrouwd certificaat",
- "macVPN": "VPN",
- "macWiFi": "Wi-Fi",
- "settingsCatalog": "Catalogus met instellingen (preview-versie)",
- "unsupported": "Niet-ondersteund",
- "windows10AdministrativeTemplate": "Beheersjablonen (preview-versie)",
- "windows10Atp": "Microsoft Defender voor Eindpunt (desktopapparaten met Windows 10 of hoger)",
- "windows10Custom": "Aangepast",
- "windows10DesktopSoftwareUpdate": "Software-updates",
- "windows10DeviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
- "windows10EmailProfile": "E-mail",
- "windows10EndpointProtection": "Endpoint Protection",
- "windows10EnterpriseDataProtection": "Windows Information Protection",
- "windows10General": "Apparaatbeperkingen",
- "windows10ImportedPFX": "Geïmporteerd PKCS-certificaat",
- "windows10Kiosk": "Kiosk",
- "windows10NetworkBoundary": "De grens van het netwerk",
- "windows10PKCS": "PKCS-certificaat",
- "windows10PolicyOverride": "Groepsbeleid overschrijven",
- "windows10SCEP": "SCEP-certificaat",
- "windows10SecureAssessmentProfile": "Opleidingsprofiel",
- "windows10SharedPC": "Gedeeld apparaat voor meerdere gebruikers",
- "windows10TeamGeneral": "Apparaatbeperkingen (Windows 10 Team)",
- "windows10TrustedCertificate": "Vertrouwd certificaat",
- "windows10VPN": "VPN",
- "windows10WiFi": "Wi-Fi",
- "windows10WiFiCustom": "Wi-Fi aangepast",
- "windows8General": "Apparaatbeperkingen",
- "windows8SCEP": "SCEP-certificaat",
- "windows8TrustedCertificate": "Vertrouwd certificaat",
- "windows8VPN": "VPN",
- "windows8WiFi": "Wi-Fi importeren",
- "windowsDeliveryOptimization": "Delivery Optimization",
- "windowsDomainJoin": "Domeindeelname",
- "windowsEditionUpgrade": "Editie-upgrade en modus wisselen",
- "windowsIdentityProtection": "Identity Protection",
- "windowsPhoneCustom": "Aangepast",
- "windowsPhoneEmailProfile": "E-mail",
- "windowsPhoneGeneral": "Apparaatbeperkingen",
- "windowsPhoneImportedPFX": "Geïmporteerd PKCS-certificaat",
- "windowsPhoneSCEP": "SCEP-certificaat",
- "windowsPhoneTrustedCertificate": "Vertrouwd certificaat",
- "windowsPhoneVPN": "VPN",
- "IosUpdate": "iOS-updatebeleid"
- },
- "WindowsEnrollment": {
- "coManagementAuthorityDesc": "Co-beheerinstellingen configureren voor Configuration Manager-integratie",
- "coManagementAuthorityTitle": "Instellingen voor co-beheer ",
- "deploymentProfiles": "Windows AutoPilot-implementatieprofielen",
- "description": "Meer informatie over de zeven verschillende manieren waarop een Windows 10/11-pc kan worden ingeschreven bij Intune door gebruikers of beheerders.",
- "descriptionLabel": "Windows-inschrijvingsmethoden",
- "enrollmentStatusPage": "Pagina Status van de inschrijving"
- },
- "Platform": {
- "all": "Alles",
- "android": "Android-apparaatbeheerder",
- "androidAOSP": "Android (AOSP)",
- "androidEnterprise": "Android Enterprise",
- "androidForWork": "Android Enterprise",
- "androidWorkProfile": "Android Enterprise",
- "common": "Algemeen",
- "iOS": "iOS/iPadOS",
- "iosAndAndroidPlatformLabel": "iOS en Android",
- "iosCommaAndroidPlatformLabel": "iOS, Android",
- "linux": "Linux",
- "macOS": "macOS",
- "unknown": "Onbekend",
- "unsupported": "Niet-ondersteund",
- "windows": "Windows",
- "windows10": "Windows 10 en later",
- "windows10CM": "Windows 10 en hoger (ConfigMgr)",
- "windows10Holo": "Windows 10 Holographic",
- "windows10Mobile": "Windows 10 Mobile",
- "windows10Team": "Windows 10 Team",
- "windows10X": "Windows 10X",
- "windows8": "Windows 8.1 en later",
- "windows8And10": "Windows 8 en 10",
- "windowsPhone": "Windows Phone 8.1",
- "windows10AndLater": "Windows 10 en later",
- "windows10AndWindowsServer": "Windows 10, Windows 11 en Windows Server (ConfigMgr)",
- "windows10andLaterCM": "Windows 10 en hoger (ConfigMgr)",
- "holoLens": "HoloLens",
- "surfaceHub2": "Surface Hub 2",
- "surfaceHub2S": "Surface Hub 2S",
- "windowsPC": "Windows-pc"
- },
- "EnrollmentRestrictions": {
- "DeletePayloadLink": {
- "content": "{0} maakt deel uit van een of meer beleidssets. Als u {0} verwijdert, kunt u deze niet langer toewijzen via deze beleidssets. Wilt u toch verwijderen?",
- "contentWithError": "{0} maakt mogelijk deel uit van een of meer beleidssets. Als u {0} verwijdert, kunt u deze niet langer toewijzen via deze beleidssets. Wilt u toch verwijderen?",
- "header": "Weet u zeker dat u deze beperking wilt verwijderen?"
- },
- "DeviceLimit": {
- "description": "Geef het maximum aantal apparaten op dat een gebruiker kan registreren.",
- "header": "Beperkingen voor apparaatlimieten",
- "info": "Hiermee geeft u op hoeveel apparaten elke gebruiker kan registreren."
- },
- "DeviceType": {
- "VersionValidation": {
- "aOSP": "Moet 1,0 of hoger zijn.",
- "android": "Voer een geldig versienummer in. Voorbeelden: 5.0, 5.5.1, 6.0.0.1",
- "androidForWork": "Voer een geldig versienummer in. Voorbeelden: 5.0, 5.1.1",
- "iOS": "Voer een geldig versienummer in. Voorbeelden: 9.0, 10.0, 9.0.2",
- "mac": "Voer een geldig versienummer in. Voorbeelden: 10, 10.10, 10.10.1",
- "min": "De minimumwaarde mag niet lager zijn dan {0}",
- "minMax": "De minimale versie mag niet groter zijn dan de maximale versie.",
- "windows": "Moet 10.0 of hoger zijn. Laat dit leeg als u ook 8.1-apparaten wilt toestaan.",
- "windowsMobile": "Moet 10.0 of hoger zijn. Laat dit leeg als u ook 8.1-apparaten wilt toestaan."
- },
- "allPlatformsBlocked": "Alle apparaatplatformen zijn geblokkeerd. Sta platforminschrijving toe om platformconfiguratie in te schakelen.",
- "blockManufacturerPlaceHolder": "Naam van fabrikant",
- "blockManufacturersHeader": "Geblokkeerde fabrikanten",
- "cannotRestrict": "De beperking wordt niet ondersteund",
- "configurationDescription": "Hiermee geeft u de configuratiebeperkingen voor het platform op waaraan een apparaat moet voldoen om te kunnen worden geregistreerd. Gebruik regels voor nalevingsbeleid om apparaten na de registratie te beperken. Geef versies als major.minor.build op. Versiebeperkingen zijn alleen van toepassing op apparaten die zijn geregistreerd bij de bedrijfsportal. Apparaten worden in Intune standaard geclassificeerd als persoonlijke apparaten. Er is aanvullende actie vereist als u apparaten wilt classificeren als apparaten in bedrijfseigendom.",
- "configurationDescriptionLabel": "Meer informatie over het instellen van inschrijvingsbeperkingen",
- "configurations": "Platformen configureren",
- "deviceManufacturer": "Fabrikant van apparaat",
- "header": "Beperkingen voor apparaattypen",
- "info": "Hiermee geeft u op welke platformen, besturingssysteemversies en eigendomstypen kunnen worden geregistreerd.",
- "manufacturer": "Fabrikant",
- "max": "Max.",
- "maxVersion": "Maximumversie",
- "min": "Min",
- "minVersion": "Minimumversie",
- "newPlatforms": "U hebt nieuwe platformen toegestaan. Werk de platformconfiguraties bij.",
- "personal": "Persoonlijk eigendom",
- "platform": "Platform",
- "platformDescription": "U kunt de volgende platformen inschrijven. Blokkeer alleen platformen die u niet ondersteunt. Toegestane platformen kunnen worden geconfigureerd met aanvullende inschrijvingsbeperkingen.",
- "platformSettings": "Platforminstellingen",
- "platforms": "Platformen selecteren",
- "platformsSelected": "{0} platformen geselecteerd",
- "type": "Type",
- "versions": "versies",
- "versionsRange": "Min/max bereik toestaan:",
- "windowsTooltip": "Hiermee beperkt u de inschrijving via Mobile Device Management. De installatie van de pc-agent wordt niet beperkt. Alleen Windows 10- en Windows 11-versies worden ondersteund. Laat dit leeg als u Windows 8.1 wilt toestaan."
- },
- "Priority": {
- "saved": "De prioriteiten van de beperking zijn opgeslagen."
- },
- "Row": {
- "announce": "Prioriteit: {0}, naam: {1}, toegewezen: {2}"
- },
- "Table": {
- "deployed": "Geïmplementeerd",
- "name": "Naam",
- "priority": "Prioriteit"
- },
- "Type": {
- "limit": "Beperking voor apparaatlimiet",
- "type": "Beperking voor apparaattype"
- },
- "allUsers": "Alle gebruikers",
- "androidRestrictions": "Android-beperkingen",
- "create": "Beperking maken",
- "defaultLimitDescription": "Dit is de standaardlimietbeperking voor apparaten die met de laagste prioriteit wordt toegepast op alle gebruikers, ongeacht hun groepslidmaatschap.",
- "defaultTypeDescription": "Dit is de standaardtypebeperking voor apparaten die met de laagste prioriteit wordt toegepast op alle gebruikers, ongeacht hun groepslidmaatschap.",
- "defaultWhfbDescription": "Dit is de standaardconfiguratie voor typebeperking voor Windows Hello voor Bedrijven die met de laagste prioriteit wordt toegepast op alle gebruikers, ongeacht hun groepslidmaatschap.",
- "deleteMessage": "Betrokken gebruikers worden beperkt door de toegewezen beperking van het volgende niveau of door de standaardbeperking als er geen andere beperking is toegewezen.",
- "deleteTitle": "Weet u zeker dat u de beperking {0} wilt verwijderen?",
- "descriptionHint": "Korte alinea met een beschrijving van het zakelijke gebruik of het beperkingsniveau op basis van de instellingen van de beperking.",
- "edit": "Beperking bewerken",
- "info": "Een apparaat moet voldoen aan de beperkingen met hoogste prioriteit voor inschrijving die zijn toegewezen aan de gebruiker. U kunt een apparaatbeperking slepen om de prioriteit te wijzigen. Standaardbeperkingen hebben de laagste prioriteit voor alle gebruikers en zijn van toepassing op inschrijvingen zonder gebruiker. Standaardbeperkingen kunnen worden bewerkt, maar niet verwijderd.",
- "iosRestrictions": "iOS-beperkingen",
- "mDM": "MDM",
- "macRestrictions": "MacOS-beperkingen",
- "maxVersion": "Maximale versie",
- "minVersion": "Minimale versie",
- "nameHint": "Dit is het primaire kenmerk dat zichtbaar is voor de identificatie van de ingestelde beperking.",
- "noAssignmentsStatusBar": "Wijs de beperking toe aan minimaal één groep. Klik op Eigenschappen.",
- "notFound": "Beperking niet gevonden. Het is mogelijk al verwijderd.",
- "personallyOwned": "Apparaten met persoonlijke eigendom",
- "restriction": "Beperking",
- "restrictionLowerCase": "beperking",
- "restrictionType": "Beperkingstype",
- "selectType": "Beperkingstype selecteren",
- "selectValidation": "Selecteer een platform",
- "typeHint": "Kies Apparaattypebeperking om de apparaateigenschappen te beperken. Kies Apparaatlimietbeperking om het aantal apparaten per gebruiker te beperken.",
- "typeRequired": "Beperkingstype is vereist.",
- "winPhoneRestrictions": "Windows Phone-beperkingen",
- "windowsRestrictions": "Windows-beperkingen"
- },
- "Titles": {
- "ChromeOs": {
- "devices": "Chrome OS-apparaten"
- },
- "ManagedDesktop": {
- "adminContacts": "Contactpersonen van beheerder",
- "appPackaging": "Apps verpakken",
- "devices": "Apparaten",
- "feedback": "Feedback",
- "gettingStarted": "Aan de slag",
- "messages": "Berichten",
- "onlineResources": "Onlineresources",
- "serviceRequests": "Serviceaanvragen",
- "settings": "Instellingen",
- "tenantEnrollment": "Tenantinschrijving"
- },
- "actions": "Acties voor niet-naleving",
- "advancedExchangeSettings": "Instellingen voor Exchange Online",
- "advancedThreatProtection": "Microsoft Defender for Endpoint",
- "allApps": "Alle apps",
- "allDevices": "Alle apparaten",
- "androidFotaDeployments": "Android FOTA-implementaties",
- "appBundles": "App-bundels",
- "appCategories": "App-categorieën",
- "appConfigPolicies": "App-configuratiebeleid",
- "appInstallStatus": "Installatiestatus van de app",
- "appLicences": "App-licenties",
- "appProtectionPolicies": "App-beveiligingsbeleid",
- "appProtectionStatus": "Status van de app-beveiliging",
- "appSelectiveWipe": "App selectief wissen",
- "appleVppTokens": "Apple VPP-tokens",
- "apps": "Apps",
- "assign": "Toewijzingen",
- "assignedPermissions": "Toegewezen machtigingen",
- "assignedRoles": "Toegewezen rollen",
- "autopilotDeploymentReport": "Autopilot-implementaties (preview-versie)",
- "brandingAndCustomization": "Aanpassen",
- "cartProfiles": "Winkelwagenprofielen",
- "certificateConnectors": "Certificaatconnectors",
- "chromeEnterprise": "Chrome Enterprise",
- "compliancePolicies": "Nalevingsbeleid",
- "complianceScriptManagement": "Scripts",
- "complianceScriptManagementPreview": "Scripts (preview)",
- "complianceSettings": "Instellingen van het nalevingsbeleid",
- "conditionStatements": "Voorwaarde-instructies",
- "conditions": "Locaties",
- "configMgr": "Microsoft Endpoint Configuration Manager",
- "configurationProfiles": "Configuratieprofielen",
- "configurationProfilesPreview": "Configuratieprofielen (preview)",
- "connectorsAndTokens": "Connectors en tokens",
- "corporateDeviceIdentifiers": "Bedrijfsapparaat-id's",
- "customAttributes": "Aangepaste kenmerken",
- "customNotifications": "Aangepaste meldingen",
- "deploymentSettings": "Implementatie-instellingen",
- "derivedCredentials": "Afgeleide referenties",
- "deviceActions": "Apparaatacties",
- "deviceCategories": "Apparaatcategorieën",
- "deviceCleanUp": "Regels voor opschonen van apparaat",
- "deviceEnrollmentManagers": "Apparaatinschrijvingsmanagers",
- "deviceExecutionStatus": "Apparaatstatus",
- "deviceLimitEnrollmentRestrictions": "Beperkingen op registratie van apparaatlimiet",
- "deviceTypeEnrollmentRestrictions": "Beperkingen op registratie van platform",
- "devices": "Apparaten",
- "discoveredApps": "Gedetecteerde apps",
- "embeddedSIM": "eSIM mobiele profielen (preview-versie)",
- "enrollDevices": "Apparaten inschrijven",
- "enrollmentFailures": "Mislukte registraties",
- "enrollmentNotifications": "Inschrijvingsmeldingen (preview)",
- "enrollmentRestrictions": "Inschrijvingsbeperkingen",
- "exchangeActiveSync": "Exchange ActiveSync",
- "exchangeServiceConnectors": "Exchange-serviceconnectors",
- "failuresForFeatureUpdates": "Fouten bij updates voor functies (preview-versie)",
- "failuresForQualityUpdates": "Fouten in versnelde updates van Windows (preview-versie)",
- "featureFlighting": "Functieflighting",
- "featureUpdateDeployments": "Onderdelenupdates voor Windows 10 en hoger (preview)",
- "flighting": "Flighting",
- "fotaUpdate": "Geautomatiseerde firmware-update",
- "groupPolicy": "Beheersjablonen",
- "groupPolicyAnalytics": "Groepsbeleidsanalyse",
- "helpSupport": "Help en ondersteuning",
- "helpSupportReplacement": "Help en ondersteuning ({0})",
- "iOSAppProvisioning": "Inrichtingsprofielen voor iOS-app",
- "incompleteUserEnrollments": "Onvolledige gebruikersinschrijvingen",
- "intuneRemoteAssistance": "Hulp op afstand (preview)",
- "iosUpdates": "Beleid voor iOS/iPadOS bijwerken",
- "legacyPcManagement": "Beheer van verouderde pc's",
- "macOSSoftwareUpdate": "Updatebeleid voor macOS",
- "macOSSoftwareUpdateAccountSummaries": "Installatiestatus voor macOS-apparaten",
- "macOSSoftwareUpdateCategorySummaries": "Samenvatting van software-updates",
- "macOSSoftwareUpdateStateSummaries": "updates",
- "managedGooglePlay": "Beheerde Google Play",
- "msfb": "Microsoft Store voor Bedrijven",
- "myPermissions": "Mijn machtigingen",
- "notifications": "Meldingen",
- "officeApps": "Office-apps",
- "officeProPlusPolicies": "Beleidsregels voor Office-apps",
- "onPremise": "On-premises",
- "onPremisesConnector": "On-premises Exchange ActiveSync-connector",
- "onPremisesDeviceAccess": "Exchange ActiveSync-apparaten",
- "onPremisesManageAccess": "On-premises toegang tot Exchange",
- "outOfDateIosDevices": "Installatiefouten voor iOS-apparaten",
- "overview": "Overzicht",
- "partnerDeviceManagement": "Apparaatbeheer partner",
- "perUpdateRingDeploymentState": "Implementatiestatus per updatering",
- "permissions": "Machtigingen",
- "platformApps": "{0} apps",
- "platformDevices": "{0} apparaten",
- "platformEnrollment": "Inschrijving {0}",
- "policies": "Beleid",
- "previewMDMDevices": "Alle beheerde apparaten (preview)",
- "profiles": "Profielen",
- "properties": "Eigenschappen",
- "reports": "Rapporten",
- "retireNoncompliantDevices": "Niet-compatibele apparaten buiten gebruik stellen",
- "retireNoncompliantDevicesPreview": "Retire noncompliant devices (preview)",
- "role": "Rol",
- "scriptManagement": "Scripts",
- "securityBaselines": "Beveiligingsbasislijnen",
- "serviceToServiceConnector": "Exchange Online-connector",
- "shellScripts": "Shell-scripts",
- "teamViewerConnector": "TeamViewer-connector",
- "telecomeExpenseManagement": "Onkostenbeheer voor telecommunicatie",
- "tenantAdmin": "Tenantbeheerder",
- "tenantAdministration": "Tenantbeheer",
- "termsAndConditions": "Voorwaarden",
- "titles": "Titels",
- "troubleshootSupport": "probleemoplossing en ondersteuning",
- "user": "Gebruiker",
- "userExecutionStatus": "Gebruikersstatus",
- "warranty": "Leveranciers van garantie",
- "wdacSupplementalPolicies": "Aanvullende beleidsregels S-modus",
- "windows10DriverUpdate": "Stuurprogramma-updates voor Windows 10 en hoger (preview-versie)",
- "windows10QualityUpdate": "Kwaliteitsupdates voor Windows 10 en hoger (preview)",
- "windows10UpdateRings": "Ringen bijwerken voor Windows 10 en hoger",
- "windows10XPolicyFailures": "Fouten met Windows 10X-beleid",
- "windowsEnterpriseCertificate": "Windows Enterprise-certificaat",
- "windowsManagement": "PowerShell-scripts",
- "windowsSideLoadingKeys": "Windows-sleutels voor extern laden",
- "windowsSymantecCertificate": "Windows-DigiCert-certificaat",
- "windowsThreatReport": "Status van dreigingsagent"
- },
- "ScopeTypes": {
- "allDevices": "Alle apparaten",
- "allUsers": "Alle gebruikers",
- "allUsersAndDevices": "Alle gebruikers en alle apparaten",
- "selectedGroups": "Geselecteerde groepen"
- },
- "DetectionRules": {
- "ComparisonOperators": {
- "equals": "Is gelijk aan",
- "greaterThan": "Groter dan",
- "greaterThanOrEqualTo": "Groter dan of gelijk aan",
- "lessThan": "Kleiner dan",
- "lessThanOrEqualTo": "Kleiner dan of gelijk aan",
- "notEqualTo": "Niet gelijk aan"
- },
- "CustomScript": {
- "enforceSignatureCheck": "Controle van scripthandtekening afdwingen en script op de achtergrond uitvoeren",
- "enforceSignatureCheckTooltip": "Selecteer Ja om op te geven dat het script is ondertekend door een vertrouwde uitgever. Hierdoor kan het script worden uitgevoerd zonder waarschuwingen of prompts. Het script wordt niet geblokkeerd en uitgevoerd. Selecteer Nee (standaard) om het script uit te voeren met bevestiging door de eindgebruiker zonder handtekeningverificatie.",
- "header": "Een aangepast detectiescript gebruiken",
- "runAs32Bit": "Script uitvoeren als 32 bitsproces op 64 bitsclients",
- "runAs32BitTooltip": "Selecteer Ja als u het script in een 32 bitsproces op 64 bitsclients wilt uitvoeren. Selecteer Nee (standaard) als u het script in een 64 bitsproces op 64 bitsclients wilt uitvoeren. 32 bitsclients voeren het script uit in een 32 bitsproces.",
- "scriptFile": "Scriptbestand",
- "scriptFileNotSelectedValidation": "Er is geen scriptbestand geselecteerd.",
- "scriptFileTooltip": "Selecteer een PowerShell-script waarmee de aanwezigheid van een app op de client wordt gedetecteerd. De app wordt gedetecteerd als het script zowel een afsluitcode van de waarde 0 retourneert als een tekenreekswaarde naar STDOUT schrijft."
- },
- "Manual": {
- "FileRule": {
- "DetectionMethodOptions": {
- "dateCreated": "Gemaakt op",
- "dateModified": "Gewijzigd op",
- "doesNotExist": "Het bestand of de map bestaat niet.",
- "fileOrFolderExists": "Bestand of map bestaat",
- "sizeInMB": "Grootte in MB",
- "version": "Tekenreeks (versie)"
- },
- "associatedWith32Bit": "Gekoppeld aan een 32 bitsapp op 64 bitsclients",
- "associatedWith32BitTooltip": "Selecteer Ja als u omgevingsvariabelen in het pad in de 32 bitscontext op 64 bitsclients wilt uitbreiden. Selecteer Nee (standaard) als u padvariabelen wilt uitbreiden in de 64 bitscontext op 64 bitsclients. 32 bitsclients gebruiken altijd de 32 bitscontext.",
- "detectionMethod": "Detectiemethode",
- "detectionMethodTooltip": "Selecteer het type detectiemethode voor het valideren van de aanwezigheid van de app.",
- "fileOrFolder": "Bestand of map",
- "fileOrFolderToolTip": "Het bestand of de map voor de detectie.",
- "operator": "Operator",
- "operatorTooltip": "Selecteer de operator voor de detectiemethode voor het valideren van de vergelijking.",
- "path": "Pad",
- "pathTooltip": "Het volledige pad van de map met het bestand of de map die u wilt detecteren.",
- "value": "Waarde",
- "valueTooltip": "Selecteer een waarde die overeenkomt met de geselecteerde detectiemethode. Methoden voor datumdetectie moeten in de lokale tijd worden ingevoerd."
- },
- "GridColumns": {
- "pathOrCode": "Pad/code",
- "type": "Type"
- },
- "MsiRule": {
- "operator": "Operator",
- "operatorTooltip": "Selecteer de operator voor de validatievergelijking van de MSI-productversie.",
- "productCode": "MSI-productcode",
- "productCodeTooltip": "Een geldige MSI-productcode voor de app.",
- "productVersion": "Waarde",
- "productVersionCheck": "Versiecontrole van MSI-product",
- "productVersionCheckTooltip": "Selecteer Ja om de MSI-productversie en de MSI-productcode te controleren.",
- "productVersionTooltip": "Voer de MSI-productversie voor de app in."
- },
- "RegistryRule": {
- "DetectionMethodOptions": {
- "integerComparison": "Vergelijking van geheel getal",
- "keyDoesNotExist": "Sleutel bestaat niet",
- "keyExists": "Sleutel bestaat",
- "stringComparison": "Vergelijking van tekenreeks",
- "valueDoesNotExist": "Waarde bestaat niet",
- "valueExists": "Waarde bestaat",
- "versionComparison": "Vergelijking van versies"
- },
- "associatedWith32Bit": "Gekoppeld aan een 32 bitsapp op 64 bitsclients",
- "associatedWith32BitTooltip": "Selecteer Ja als u het 32 bitsregister op 64 bitsclients wilt zoeken. Selecteer Nee (standaard) as u het 64 bitsregister op 64 bitsclients wilt zoeken. 32 bitsclients zoeken altijd naar het 32 bitsregister.",
- "detectionMethod": "Detectiemethode",
- "detectionMethodTooltip": "Selecteer het type detectiemethode voor het valideren van de aanwezigheid van de app.",
- "keyPath": "Sleutelpad",
- "keyPathTooltip": "Het volledige pad van de registervermelding die de waarde bevat die u wilt detecteren.",
- "operator": "Operator",
- "operatorTooltip": "Selecteer de operator voor de detectiemethode voor het valideren van de vergelijking.",
- "value": "Waarde",
- "valueName": "Waardenaam",
- "valueNameTooltip": "De naam van de registerwaarde die u wilt detecteren.",
- "valueTooltip": "Selecteer een waarde die overeenkomt met de geselecteerde detectiemethode."
- },
- "RuleTypeOptions": {
- "file": "Bestand",
- "mSI": "MSI",
- "registry": "Register"
- },
- "gridAriaLabel": "Detectieregels",
- "header": "Maak een regel die de aanwezigheid van de app aangeeft.",
- "noRulesSelectedPlaceholder": "Er zijn geen machtigingen opgegeven.",
- "ruleTableLimit": "U kunt maximaal 25 detectieregels toevoegen",
- "ruleType": "Regeltype",
- "ruleTypeTooltip": "Kies het type detectieregel dat u wilt toevoegen."
- },
- "RuleConfigurationOptions": {
- "customScript": "Een aangepast detectiescript gebruiken",
- "manual": "Detectieregels handmatig configureren"
- },
- "bladeTitle": "Detectieregels",
- "header": "Configureer specifieke regels voor de app voor het bepalen van de aanwezigheid van de app.",
- "rulesFormat": "Regelnotatie",
- "rulesFormatTooltip": "Kies of u de detectieregels handmatig wilt configureren of een aangepast script wilt gebruiken voor het detecteren van de aanwezigheid van de app.",
- "selectorLabel": "Detectieregels"
- },
- "AppType": {
- "androidEnterpriseSystemApp": "Android Enterprise-systeem-app",
- "androidForWorkApp": "Beheerde Google Play Store-app",
- "androidLobApp": "Line-Of-Business-app voor Android",
- "androidStoreApp": "Android Store-app",
- "builtInAndroid": "Ingebouwde Android-app",
- "builtInApp": "Ingebouwde app",
- "builtInIos": "Ingebouwde iOS-app",
- "default": "",
- "iosLobApp": "Line-Of-Business-app voor iOS",
- "iosStoreApp": "iOS Store-app",
- "iosVppApp": "Volume Purchase Program-app voor iOS",
- "lineOfBusinessApp": "Line-Of-Business-app",
- "macOSDmgApp": "macOS-app (DMG)",
- "macOSEdgeApp": "Microsoft Edge (macOS)",
- "macOSLobApp": "Line-Of-Business-app voor macOS",
- "macOSMdatpApp": "Microsoft Defender ATP (macOS)",
- "macOSOfficeSuiteApp": "Microsoft 365-apps (macOS)",
- "macOsVppApp": "Volume Purchase Program-app voor macOS",
- "managedAndroidLobApp": "Beheerde Line-Of-Business-app voor Android",
- "managedAndroidStoreApp": "Beheerde Android Store-app",
- "managedGooglePlayApp": "Beheerde Google Play Store-app",
- "managedGooglePlayPrivateApp": "Persoonlijke beheerde Google Play-app",
- "managedGooglePlayWebApp": "Webkoppeling voor beheerde Google Play",
- "managedIosLobApp": "Beheerde Line-Of-Business-app voor iOS",
- "managedIosStoreApp": "Beheerde iOS Store-app",
- "microsoftStoreForBusinessApp": "Microsoft Store voor Bedrijven-app",
- "microsoftStoreForBusinessReleaseManagedApp": "Microsoft Store voor Bedrijven",
- "officeSuiteApp": "Microsoft 365-apps (Windows 10 en hoger)",
- "webApp": "Webkoppeling",
- "windowsAppXLobApp": "AppX Line-Of-Business-app voor Windows",
- "windowsClassicApp": "Windows-app (Win32)",
- "windowsEdgeApp": "Microsoft Edge (Windows 10 en hoger)",
- "windowsMobileMsiLobApp": "MSI Line-Of-Business-app voor Windows",
- "windowsPhone81AppXBundleLobApp": "AppX Line-Of-Business-app voor Windows Phone 8.1",
- "windowsPhone81AppXLobApp": "AppX Line-Of-Business-app voor Windows Phone 8.1",
- "windowsPhone81StoreApp": "Windows Phone 8.1 Store-app",
- "windowsPhoneXapLobApp": "XAP Line-Of-Business-app voor Windows Phone",
- "windowsStoreApp": "Microsoft Store-app",
- "windowsUniversalAppXLobApp": "Universele AppX Line-Of-Business-app voor Windows",
- "windowsUniversalLobApp": "Universele Line-Of-Business-app voor Windows"
- },
- "PolicyType": {
- "AttackSurfaceReductionRules": {
- "configMgr": "Regels voor het verminderen van kwetsbaarheid voor aanvallen (ConfigMgr)"
- },
- "EndpointDetectionandResponse": {
- "mDE": "Eindpuntdetectie en -reactie"
- },
- "EndpointSecurityTemplate": {
- "aSRAppBrowserSecurity": "App- en browserisolatie",
- "aSRApplicationControl": "Toepassingsbeheer",
- "aSRAttackSurfaceReduction": "Regels voor het verminderen van kwetsbaarheid voor aanvallen",
- "aSRDeviceControl": "Apparaatbeheer",
- "aSRExploitProtection": "Exploit Protection",
- "aSRWebProtection": "Webbeveiliging (Microsoft Edge verouderd)",
- "aVExclusions": "Microsoft Defender Antivirus-uitsluitingen",
- "antivirus": "Microsoft Defender Antivirus",
- "cloudPC": "Windows 365-beveiligingsbasislijn",
- "default": "Eindpuntbeveliging",
- "defenderTest": "Demo voor Microsoft Defender for Endpoint",
- "diskEncryption": "BitLocker",
- "eDR": "Eindpuntdetectie en -reactie",
- "edgeSecurityBaseline": "Microsoft Edge-basislijn",
- "edgeSecurityBaselinePreview": "Preview-versie: Microsoft Edge-basislijn",
- "editionUpgradeConfiguration": "Editie-upgrade en modus wisselen",
- "firewall": "Microsoft Defender Firewall",
- "firewallRules": "Microsoft Defender Firewall-regels",
- "identityProtection": "Accountbeveiliging",
- "identityProtectionPreview": "Accountbeveiliging (preview-versie)",
- "mDMSecurityBaseline1810": "MDM-beveiligingsbasislijn voor Windows 10 en hoger voor oktober 2018",
- "mDMSecurityBaseline1810Preview": "Preview: MDM-beveiligingsbasislijn voor Windows 10 en hoger voor oktober 2018",
- "mDMSecurityBaseline1810PreviewBeta": "Preview: MDM-beveiligingsbasislijn voor Windows 10 voor oktober 2018 (bètaversie)",
- "mDMSecurityBaseline1906": "MDM-beveiligingsbasislijn voor Windows 10 en hoger voor mei 2019",
- "mDMSecurityBaseline2004": "MDM-beveiligingsbasislijn voor Windows 10 en hoger voor augustus 2020",
- "mDMSecurityBaseline2101": "MDM-beveiligingsbasislijn voor Windows 10 en hoger decemeber 2020",
- "macOSAntivirus": "Antivirus",
- "macOSDiskEncryption": "FileVault",
- "macOSFirewall": "macOS-firewall",
- "microsoftDefenderBaseline": "Basislijn voor Microsoft Defender for Endpoint",
- "office365Baseline": "Microsoft Office O365-basislijn",
- "office365BaselinePreview": "Preview: Microsoft Office O365-basislijn",
- "securityBaselines": "Beveiligingsbasislijnen",
- "test": "Testsjabloon",
- "testFirewallRulesSecurityTemplateName": "Microsoft Defender Firewall-regels (Test)",
- "testIdentityProtectionSecurityTemplateName": "Accountbeveiliging (test)",
- "windowsSecurityExperience": "Windows-beveiligingservaring"
- },
- "Firewall": {
- "mDE": "Microsoft Defender Firewall"
- },
- "FirewallRules": {
- "mDE": "Microsoft Defender Firewall-regels"
- },
- "administrativeTemplates": "Beheersjablonen",
- "androidCompliancePolicy": "Nalevingsbeleid van Android",
- "aospDeviceOwnerCompliancePolicy": "Nalevingsbeleid van Android (AOSP)",
- "applicationControl": "Toepassingsbeheer",
- "custom": "Aangepast",
- "deliveryOptimization": "Delivery Optimization",
- "derivedPersonalIdentityVerificationCredential": "Afgeleide referentie",
- "deviceFeatures": "Apparaatfuncties",
- "deviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
- "deviceLock": "Apparaatvergrendeling",
- "deviceOwner": "Volledig beheerde en toegewezen werkprofielen in bedrijfseigendom",
- "deviceRestrictions": "Apparaatbeperkingen",
- "deviceRestrictionsWindows10Team": "Apparaatbeperkingen (Windows 10 Team)",
- "domainJoinPreview": "Domeindeelname",
- "editionUpgradeAndModeSwitch": "Editie-upgrade en modus wisselen",
- "education": "Educatief",
- "email": "E-mail",
- "emailSamsungKnoxOnly": "E-mail (alleen Samsung KNOX)",
- "endpointProtection": "Endpoint Protection",
- "expeditedCheckin": "Configuratie voor Mobile Device Management",
- "exploitProtection": "Exploit Protection",
- "extensions": "Extensies",
- "hardwareConfigurations": "BIOS-configuraties",
- "identityProtection": "Identity Protection",
- "iosCompliancePolicy": "Nalevingsbeleid van iOS",
- "kiosk": "Kiosk",
- "macCompliancePolicy": "Nalevingsbeleid van Mac",
- "microsoftDefenderAntivirus": "Microsoft Defender Antivirus",
- "microsoftDefenderAntivirusexclusions": "Microsoft Defender Antivirus-uitsluitingen",
- "microsoftDefenderAtpWindows10Desktop": "Microsoft Defender voor Eindpunt (desktopapparaten met Windows 10 of hoger)",
- "microsoftDefenderFirewallRules": "Microsoft Defender Firewall-regels",
- "microsoftEdgeBaseline": "Microsoft Edge-basislijn",
- "mxProfileZebraOnly": "MX-profiel (alleen Zebra)",
- "networkBoundary": "De grens van het netwerk",
- "oemConfig": "OEMConfig",
- "overrideGroupPolicy": "Groepsbeleid overschrijven",
- "pkcsCertificate": "PKCS-certificaat",
- "pkcsImportedCertificate": "Geïmporteerd PKCS-certificaat",
- "preferenceFile": "Voorkeursbestand",
- "presets": "Voorinstellingen",
- "scepCertificate": "SCEP-certificaat",
- "secureAssessmentEducation": "Veilige evaluatie (onderwijs)",
- "settingsCatalog": "Catalogus met instellingen",
- "sharedMultiUserDevice": "Gedeeld apparaat voor meerdere gebruikers",
- "softwareUpdates": "Software-updates",
- "trustedCertificate": "Vertrouwd certificaat",
- "unknown": "Onbekend",
- "unsupported": "Niet-ondersteund",
- "vpn": "VPN",
- "wiFi": "Wi-Fi",
- "wiFiImport": "Wi-Fi importeren",
- "windows10CompliancePolicy": "Nalevingsbeleid van Windows 10/11",
- "windows10MobileCompliancePolicy": "Nalevingsbeleid van Windows 10 Mobile",
- "windows10XScep": "SCEP-certificaat - TEST",
- "windows10XTrustedCertificate": "Vertrouwd certificaat - TEST",
- "windows10XVPN": "VPN - TEST",
- "windows10XWifi": "Wi-Fi - TEST",
- "windows8CompliancePolicy": "Nalevingsbeleid van Windows 8",
- "windowsHealthMonitoring": "Windows-statuscontrole",
- "windowsInformationProtection": "Windows Information Protection",
- "windowsPhoneCompliancePolicy": "Nalevingsbeleid van Windows Phone",
- "windowsUpdateforBusiness": "Windows Update voor Bedrijven",
- "wiredNetwork": "Bekabeld netwerk",
- "workProfile": "Werkprofiel in persoonlijk eigendom"
- },
- "OfficeSuiteAppsTab": {
- "acceptLicenseOnBehalfOfUsersLabel": "De licentievoorwaarden voor Microsoft-software accepteren namens gebruikers",
- "appSuiteConfigurationLabel": "Configuratie van de app-suite",
- "appSuiteInformationLabel": "Gegevens over de app-suite",
- "appsToBeInstalledLabel": "Apps die moeten worden geïnstalleerd als onderdeel van de suite",
- "architectureLabel": "Architectuur",
- "architectureTooltip": "Hiermee wordt bepaald of de 32 of 64 bitseditie van Microsoft 365-apps op apparaten wordt geïnstalleerd.",
- "configurationDesignerLabel": "Configuratie-ontwerper",
- "configurationFileLabel": "Configuratiebestand",
- "configurationSettingsFormatLabel": "Indeling van de configuratie-instellingen",
- "configureAppSuiteLabel": "App-suite configureren",
- "configuredLabel": "Geconfigureerd",
- "currentVersionLabel": "Huidige versie",
- "currentVersionTooltip": "Dit is de huidige Office-versie die in deze suite is geconfigureerd. Deze waarde wordt bijgewerkt wanneer een nieuwe versie wordt geconfigureerd en opgeslagen.",
- "enableMicrosoftSearchAsDefaultTooltip": "Hiermee wordt een achtergrondservice geïnstalleerd waarmee wordt bepaald of voor Google Chrome een Microsoft-extensie voor zoeken in Bing is geïnstalleerd op het apparaat.",
- "enterXmlDataLabel": "XML-gegevens invoeren",
- "languagesLabel": "Talen",
- "languagesTooltip": "Standaard wordt Office door Intune geïnstalleerd met de standaardtaal van het besturingssysteem. Kies de aanvullende talen die u wilt installeren.",
- "learnMoreText": "Meer informatie",
- "newUpdateChannelTooltip": "Hiermee wordt bepaald hoe vaak de app wordt bijgewerkt met nieuwe functies.",
- "noCurrentVersionText": "Er is geen huidige versie",
- "noLanguagesSelectedLabel": "Er zijn geen talen geselecteerd",
- "notConfiguredLabel": "Niet geconfigureerd",
- "propertiesLabel": "Eigenschappen",
- "removeOtherVersionsLabel": "Andere versies verwijderen",
- "removeOtherVersionsTooltip": "Selecteer Ja om andere versies van Office (MSI) van gebruikersapparaten te verwijderen.",
- "selectOfficeAppsLabel": "Office-apps selecteren",
- "selectOfficeAppsTooltip": "Selecteer de Office 365-apps die u als onderdeel van de suite wilt installeren.",
- "selectOtherOfficeAppsLabel": "Andere Office-apps selecteren (licentie vereist)",
- "selectOtherOfficeAppsTooltip": "Als u licenties voor deze aanvullende Office-apps hebt, kunt u deze ook toewijzen met Intune.",
- "specificVersionLabel": "Specifieke versie",
- "updateChannelLabel": "Updatekanaal",
- "updateChannelTooltip": "Hiermee wordt gedefinieerd hoe vaak de app wordt bijgewerkt met nieuwe functies.
\r\nMaandelijks: gebruikers van de nieuwste Office-functies voorzien zodra deze beschikbaar zijn.
\r\nMonthly Enterprise-kanaal: gebruikers eenmaal per maand, op de tweede dinsdag van de maand, van de nieuwste Office-functies voorzien.
\r\nMonthly-kanaal (Targeted): een vroegtijdige weergave verstrekken bij de volgende release van het Monthly-kanaal. Dit is een ondersteund updatekanaal en is doorgaans minstens een week vóór de release van het Monthly-kanaal met nieuwe functies beschikbaar.
\r\nHalfjaarlijks: gebruikers slechts enkele malen per jaar van nieuwe Office-functies voorzien.
\r\nSemi-Annual-kanaal (Targeted): proefgebruikers en testers voor toepassingscompatibiliteit de mogelijkheid bieden om het volgende halfjaar te testen.",
- "useMicrosoftSearchAsDefault": "Achtergrondservice voor Microsoft Search installeren in Bing",
- "useSharedComputerActivationLabel": "Activering van gedeelde computers gebruiken",
- "useSharedComputerActivationTooltip": "Met activering van gedeelde computers kunt u Microsoft 365-apps implementeren op computers die door meerdere gebruikers worden gebruikt. Normaal kunnen gebruikers Microsoft 365-apps alleen installeren en activeren op een beperkt aantal apparaten, bijvoorbeeld vijf pc's. Het gebruik van Microsoft 365-apps met activering van gedeelde computers telt niet mee in die limiet.",
- "versionToInstallLabel": "Versie die moet worden geïnstalleerd",
- "versionToInstallTooltip": "Selecteer de Office-versie die moet worden geïnstalleerd.",
- "xLanguagesSelectedLabel": "{0} talen/taal geselecteerd",
- "xmlConfigurationLabel": "XML-configuratie"
- },
- "OfficeApplicationType": {
- "access": "Access",
- "bing": "Microsoft Search als standaard",
- "excel": "Excel",
- "groove": "OneDrive (Groove)",
- "lync": "Skype voor Bedrijven",
- "oneDrive": "OneDrive Desktop",
- "oneNote": "OneNote",
- "outlook": "Outlook",
- "powerPoint": "PowerPoint",
- "publisher": "Publisher",
- "teams": "Teams",
- "word": "Word"
- },
- "WindowsQualityUpdateProfile": {
- "Details": {
- "DaysUntilForcedReboot": {
- "label": "Het aantal dagen dat moet worden gewacht voordat opnieuw opstarten wordt afgedwongen"
- },
- "Description": {
- "label": "Beschrijving"
- },
- "Name": {
- "label": "Naam"
- },
- "QualityUpdateRelease": {
- "label": "De installatie van kwaliteitsupdates versnellen als de besturingssysteemversie van het apparaat lager is dan:"
- },
- "bladeTitle": "Kwaliteitsupdates Windows 10 en hoger (preview)",
- "loadError": "Kan niet laden."
- },
- "TabName": {
- "qualityUpdateSettings": "Instellingen"
- },
- "infoBoxText": "Het enige besturingselement voor kwaliteitsupdates dat momenteel beschikbaar is naast het bestaande beleid voor update-ringen van Windows 10 en hoger, is de mogelijkheid om kwaliteitsupdates te versnellen voor apparaten die buiten een opgegeven patchniveau vallen. In de toekomst zullen meer besturingselementen beschikbaar zijn.",
- "warningBoxText": "Door het versnellen van software-updates kunt u weliswaar de benodigde tijd voor het verkrijgen van naleving (indien nodig) verkorten, maar dit heeft bredere gevolgen voor de productiviteit van eindgebruikers. De kans dat gebruikers te maken krijgen met een herstart tijdens kantooruren neemt hierdoor aanzienlijk toe."
- },
- "Devices": {
- "General": {
- "android": "Android"
- },
- "aOSP": "Android-opensource-project",
- "android": "Android-apparaatbeheerder",
- "androidWorkProfile": "Android Enterprise (werkprofiel)",
- "iOS": "iOS/iPadOS",
- "mac": "macOS",
- "windows": "Windows (MDM)",
- "windows10": "Windows 10 en later",
- "windowsHomeSku": "Windows Home-SKU",
- "windowsMobile": "Windows Mobile"
- },
"SettingDetails": {
"CustomPolicyConfigurationProfile": {
"uploadControlPlaceHolderText": "Een configuratieprofielbestand selecteren"
@@ -3675,7 +1707,7 @@
"aESGCM128": "AES-128-GCM (16-octet ICV)",
"aESGCM256": "AES-256-GCM (16-octet ICV)",
"aadSharedDeviceDataClearAppsDescription": "Voeg elke app toe die niet is geoptimaliseerd voor de modus Gedeeld apparaat aan de lijst. De lokale gegevens van de app worden gewist wanneer een gebruiker zich afmeldt bij een app die is geoptimaliseerd voor de modus Gedeeld apparaat. Beschikbaar voor toegewezen apparaten die zijn ingeschreven met de Gedeelde modus met Android 9 en hoger.",
- "aadSharedDeviceDataClearAppsName": "Lokale gegevens wissen in apps die niet zijn geoptimaliseerd voor de modus Gedeeld apparaat (openbare preview)",
+ "aadSharedDeviceDataClearAppsName": "Lokale gegevens wissen in apps die niet zijn geoptimaliseerd voor de modus Gedeeld apparaat",
"accountsPageDescription": "Toegang tot Accounts blokkeren in de app Instellingen.",
"accountsPageName": "Accounts",
"accountsSignInAssistantSettingsDescription": "De Microsoft-service voor aanmeldhulp (wlidsvc) blokkeren. Als deze instelling niet is geconfigureerd kan de NT-service van wlidsvc worden beheerd door de gebruiker (handmatig starten)",
@@ -5503,7 +3535,7 @@
"enableEndUserAccessToDefenderName": "Toegang van eindgebruikers tot Defender",
"enableEngagedRestartDescription": "Hiermee worden instellingen ingeschakeld zodat de gebruiker kan overschakelen naar gepland opnieuw opstarten",
"enableEngagedRestartName": "Gebruikers toestaan opnieuw te starten (gepland opnieuw opstarten)",
- "enableIdentityPrivacyDescription": "Deze eigenschap maskeert gebruikersnamen met de tekst die u opgeeft. Als u bijvoorbeeld Anoniem typt, worden alle gebruikers die zich met hun echte gebruikersnaam bij de Wi-Fi-verbinding aanmelden, weergegeven als Anoniem.",
+ "enableIdentityPrivacyDescription": "Met deze eigenschap worden gebruikersnamen gemaskerd met de tekst die u invoert. Als u bijvoorbeeld 'anoniem' typt, wordt elke gebruiker die zich verifieert met deze Wi-Fi-verbinding met behulp van de echte gebruikersnaam weergegeven als anoniem. Dit kan vereist zijn bij het gebruik van certificaatverificatie op basis van apparaten.",
"enableIdentityPrivacyName": "Identiteitsprivacy (externe identiteit)",
"enableNetworkInspectionSystemDescription": "Schadelijk verkeer blokkeren dat is gedetecteerd door handtekeningen in het netwerkinspectiesysteem (NIS)",
"enableNetworkInspectionSystemName": "Netwerkinspectiesysteem (NIS)",
@@ -7252,6 +5284,8 @@
"presharedKeyEncodingDescription": "Vooraf gedeelde sleutels coderen met UTF-8.",
"presharedKeyEncodingName": "Vooraf-gedeelde sleutels coderen",
"preventAny": "Delen buiten grenzen voorkomen",
+ "primaryAuthenticationMethodName": "Primaire verificatiemethode",
+ "primaryAuthenticationMethodTEAPDescription": "Kies de primaire manier waarop gebruikers moeten worden geverifieerd. Als u Certificaten selecteert, selecteert u een van de certificaatprofielen (SCEP of Public Key Cryptography Standards) die ook op het apparaat zijn geïmplementeerd. Dit is het identiteitscertificaat dat door het apparaat aan de server wordt aangeboden.",
"primarySMTPAddressOption": "Primair SMTP-adres",
"printersColumns": "bijvoorbeeld de DNS-naam van de printer",
"printersDescription": "Hiermee kunt u printers automatisch inrichten op basis van de netwerkhostnamen. Deze instelling biedt geen ondersteuning voor gedeelde printers.",
@@ -7663,6 +5697,8 @@
"searchEnableRemoteQueriesName": "Externe query's",
"secondActiveEthernet": "Tweede actieve Ethernet",
"secondEthernet": "Tweede Ethernet",
+ "secondaryAuthenticationMethodName": "Secundaire verificatiemethode",
+ "secondaryAuthenticationMethodTEAPDescription": "Kies de secundaire manier waarop gebruikers moeten worden geverifieerd. Als u Certificaten selecteert, selecteert u een van de certificaatprofielen (SCEP of Public Key Cryptography Standards) die ook op het apparaat zijn geïmplementeerd. Dit is het identiteitscertificaat dat door het apparaat aan de server wordt aangeboden.",
"secretKey": "Geheime sleutel:",
"secureBootEnabledDescription": "Vereisen dat beveiligd opstarten wordt ingeschakeld op het apparaat",
"secureBootEnabledName": "Vereisen dat beveiligd opstarten wordt ingeschakeld op het apparaat",
@@ -8074,6 +6110,7 @@
"systemUpdateWindow9": "04:30 uur",
"systemWindowsBlockedDescription": "Schakel venstermeldingen uit zoals pop-ups, inkomende oproepen, uitgaande oproepen, systeemmeldingen en systeemfouten.",
"systemWindowsBlockedName": "Meldingsvensters",
+ "tEAPName": "Tunnel-EAP (TEAP)",
"tLSMinMax": "De minimumversie van TLS moet kleiner dan of gelijk aan de maximumversie van TLS zijn.",
"tLSVersionRangeMaximum": "Maximum TLS-versiebereik",
"tLSVersionRangeMaximumDescription": "Voer de maximale TLS-versie 1.0, 1.1 of 1.2 in. Als u dit veld leeg laat, wordt de standaardwaarde 1.2 gebruikt.",
@@ -8126,6 +6163,17 @@
"timeWindowSameStartEndDayTime": "De einddatum/-tijd mag niet gelijk zijn aan de begindatum/-tijd.",
"timeZoneDescription": "Selecteer de tijdzone voor de beoogde apparaten.",
"timeZoneName": "Tijdzone",
+ "timeoutFifteenMinutes": "15 minuten",
+ "timeoutFiveMinutes": "5 minuten",
+ "timeoutFourHours": "4 uur",
+ "timeoutNever": "Nooit time-out",
+ "timeoutOneHour": "1 uur",
+ "timeoutOneMinute": "1 minuut",
+ "timeoutTenMinutes": "10 minuten",
+ "timeoutThirtyMinutes": "30 minuten",
+ "timeoutThreeMinutes": "3 minuten",
+ "timeoutTwoHours": "2 uur",
+ "timeoutTwoMinutes": "2 minuten",
"toggleConfigurationPkgDescription": "Een ondertekend configuratiepakket uploaden dat wordt gebruikt om de Microsoft Defender for Endpoint-client te onboarden",
"toggleConfigurationPkgName": "Pakkettype voor Microsoft Defender for Endpoint-clientconfiguratie:",
"trafficRuleAppName": "App",
@@ -8824,6 +6872,33 @@
"win10WifiWirelessSecurityTypeName": "Type voor draadloze beveiliging",
"win10WifiWirelessSecurityTypeOpen": "Openen (geen verificatie)",
"win10WifiWirelessSecurityTypeWPA": "WPA-/WPA2-Personal",
+ "win10WiredAuthenticationModeDescription": "Kies of de gebruiker of het apparaat moet worden geverifieerd of dat gastverificatie (geen) moet worden gebruikt. Als u certificaatverificatie gebruikt, moet u ervoor zorgen dat het certificaattype overeenkomt met het verificatietype.",
+ "win10WiredAuthenticationModeName": "Verificatiemodus",
+ "win10WiredAuthenticationPeriodDescription": "Het aantal seconden dat de client moet wachten na een verificatiepoging voordat deze mislukt. Kies een getal tussen 1 en 3600. Als er geen waarde wordt opgegeven, wordt 18 seconden gebruikt.",
+ "win10WiredAuthenticationPeriodName": "Verificatieperiode",
+ "win10WiredAuthenticationRetryDelayPeriodDescription": "Het aantal seconden tussen een mislukte verificatie en de volgende verificatiepoging. Kies een waarde tussen 1 en 3600. Als er geen waarde wordt opgegeven, wordt 1 seconde gebruikt.",
+ "win10WiredAuthenticationRetryDelayPeriodName": "Uitstelperiode voor nieuwe verificatiepoging ",
+ "win10WiredFIPSComplianceDescription": "Validatie op basis van de norm FIPS 140-2 is vereist voor alle federale overheidsinstellingen van de Verenigde Staten die beveiligingssystemen met cryptografie gebruiken om gevoelige, niet-geclassificeerde informatie die digitaal is opgeslagen, te beveiligen.",
+ "win10WiredFIPSComplianceName": "Afdwingen dat een bekabeld profiel voldoet aan de Federal Information Processing Standard (FIPS)",
+ "win10WiredGuest": "Gast",
+ "win10WiredMachine": "Computer",
+ "win10WiredMachineOrUser": "Gebruiker of computer",
+ "win10WiredMaximumAuthenticationFailuresDescription": "Voer het maximale aantal mislukte verificatiepogingen in voor deze set referenties. Als er geen waarde wordt opgegeven, wordt 1 poging gebruikt.",
+ "win10WiredMaximumAuthenticationFailuresName": "Maximale aantal mislukte verificatiepogingen",
+ "win10WiredMaximumEAPOLStartMessagesDescription": "Kies een aantal EAPOL-Start-berichten tussen 1 en 100. Als er geen waarde wordt opgegeven, worden er maximaal 3 berichten verzonden.",
+ "win10WiredMaximumEAPOLStartMessagesName": "Maximale EAPOL-start",
+ "win10WiredNetworkAuthenticationBlockPeriodDescription": "Verificatieblokkeringsperiode in minuten. Wordt gebruikt om de duur op te geven waarvoor automatische verificatiepogingen worden geblokkeerd na een mislukte verificatiepoging. Kies een waarde tussen 0 en 1440.",
+ "win10WiredNetworkAuthenticationBlockPeriodName": "Blokkeringsperiode (minuten)",
+ "win10WiredNetworkAuthenticationModeName": "Verificatiemodus",
+ "win10WiredNetworkDoNotEnforceName": "Niet afdwingen",
+ "win10WiredNetworkEnforce8021XDescription": "Hiermee geeft u op of voor de automatische configuratieservice voor bekabelde netwerken het gebruik van 802.1X voor poortverificatie is vereist.",
+ "win10WiredNetworkEnforce8021XName": "802.1x",
+ "win10WiredNetworkEnforceName": "Afdwingen",
+ "win10WiredRememberCredentialsDescription": "Geef aan of gebruikersreferenties in de cache moeten worden opgeslagen wanneer ze voor de eerste keer verbinding maken met het bekabelde netwerk. Referenties in de cache worden gebruikt voor volgende verbindingen en de gebruikers hoeven deze niet opnieuw in te voeren. Het niet configureren van deze instelling is gelijk aan het instellen op Ja.",
+ "win10WiredRememberCredentialsName": "Referenties onthouden bij elke aanmelding",
+ "win10WiredStartPeriodDescription": "Het aantal seconden dat moet worden gewacht voordat een EAPOL-Start-bericht wordt verzonden. Kies een waarde tussen 1 en 3600. Als er geen waarde wordt opgegeven, wordt 5 seconden gebruikt.",
+ "win10WiredStartPeriodName": "Periode starten",
+ "win10WiredUser": "Gebruiker",
"win10appLockerApplicationControlAllowDescription": "Deze apps kunnen worden uitgevoerd",
"win10appLockerApplicationControlAllowName": "Afdwingen",
"win10appLockerApplicationControlAuditComponentsAndStoreAppsDescription": "Door de modus Alleen controleren wordt alle gebeurtenissen vastgelegd in logboeken van de lokale client, maar wordt het uitvoeren van apps niet geblokkeerd. Windows-onderdelen en apps uit de Microsoft Store worden vastgelegd als apps die voldoen aan de beveiligingsvereisten.",
@@ -9165,7 +7240,6 @@
"deviceConditionsInfoParagraph2": "Vergelijkbare op apparaat gebaseerde instellingen kunnen worden geconfigureerd voor ingeschreven apparaten.",
"deviceConditionsInfoParagraph2LinkText": "Meer informatie over het configureren van apparaatinstellingen voor naleving voor ingeschreven apparaten.",
"deviceId": "Apparaat-id",
- "deviceLockComplexityValidationFailureNotes": "Opmerkingen:
\r\n\r\n - De apparaatvergrendeling kan een wachtwoordcomplexiteit vereisen van: LAAG, GEMIDDELD of HOOG gericht op Android 11+. Voor apparaten die werken op Android 10 en eerder, wordt het instellen van een complexiteitswaarde van Laag/Gemiddeld/Hoog standaard ingesteld op het verwachte gedrag voor 'Lage complexiteit'.
\r\n - De wachtwoorddefinities hieronder kunnen worden gewijzigd. Raadpleeg DevicePolicyManager|Android-ontwikkelaars voor de meest bijgewerkte definities van de verschillende wachtwoordcomplexiteitsniveaus.
\r\n
\r\n\r\nLaag
\r\n\r\n - Wachtwoord kan een patroon of pincode zijn met herhalende (4444) of geordende (1234, 4321, 2468) reeksen.
\r\n
\r\n\r\nGemiddeld
\r\n\r\n - Pincode zonder herhalende (4444) of geordende (1234, 4321, 2468) reeksen met een minimumlengte van ten minste 4 tekens
\r\n - Alfabetische wachtwoorden met een minimumlengte van ten minste 4 tekens
\r\n - Alfanumerieke wachtwoorden met een minimumlengte van ten minste 4 tekens
\r\n
\r\n\r\nHoog
\r\n\r\n - Pincode zonder herhalende (4444) of geordende (1234, 4321, 2468) reeksen met een minimumlengte van ten minste 8 tekens
\r\n - Alfabetische wachtwoorden met een minimumlengte van ten minste 6 tekens
\r\n - Alfanumerieke wachtwoorden met een minimumlengte van ten minste 6 tekens
\r\n
\r\n",
"deviceLockedOpenFilesOptionsText": "Wanneer het apparaat is vergrendeld en er bestanden zijn geopend",
"deviceLockedOptionText": "Wanneer het apparaat is vergrendeld",
"deviceManufacturer": "Fabrikant van apparaat",
@@ -9463,7 +7537,7 @@
"reporting": "Rapportage",
"reports": "Rapporten",
"require": "Vereisen",
- "requireDeviceLockComplexityOnApps": "Complexiteit van apparaatvergrendeling vereisen",
+ "requireDeviceLockOnApps": "Require device lock",
"requireThreatScanOnApps": "Bedreigingsscans voor apps vereisen",
"requiredField": "Dit veld mag niet leeg zijn",
"requiredSafetyNetEvaluationType": "Vereist SafetyNet-evaluatietype",
@@ -9659,6 +7733,7 @@
"yourDataIsBeingDownloadedEllipsis": "Uw gegevens worden gedownload. Dit kan enkele minuten duren...",
"yourDataIsBeingDownloadedMinutes": "De gegevens worden gedownload. Dit kan enkele minuten duren...",
"yourProtectionLevel": "Uw beveiligingsniveau",
+ "rules": "Regels",
"basics": "Basisinformatie",
"modeTableHeader": "Groepsmodus",
"appAssignmentMsg": "Groep",
@@ -9695,221 +7770,2042 @@
"licenseTypeDevice": "Apparaat",
"licenseTypeUser": "Gebruiker"
},
- "Languages": {
- "ar-aE": "Arabisch (V.A.E.)",
- "ar-bH": "Arabisch (Bahrein)",
- "ar-dZ": "Arabisch (Algerije)",
- "ar-eG": "Arabisch (Egypte)",
- "ar-iQ": "Arabisch (Irak)",
- "ar-jO": "Arabisch (Jordanië)",
- "ar-kW": "Arabisch (Koeweit)",
- "ar-lB": "Arabisch (Libanon)",
- "ar-lY": "Arabisch (Libië)",
- "ar-mA": "Arabisch (Marokko)",
- "ar-oM": "Arabisch (Oman)",
- "ar-qA": "Arabisch (Qatar)",
- "ar-sA": "Arabisch (Saoedi-Arabië)",
- "ar-sY": "Arabisch (Syrië)",
- "ar-tN": "Arabisch (Tunesië)",
- "ar-yE": "Arabisch (Jemen)",
- "az-cyrl": "Azerbeidzjaans (Cyrillisch, Azerbeidzjan)",
- "az-latn": "Azerbeidzjaans (Latijns, Azerbeidzjan)",
- "bn-bD": "Bengaals (Bangladesh)",
- "bn-iN": "Bangla (India)",
- "bs-cyrl": "Bosnisch (Cyrillisch)",
- "bs-latn": "Bosnisch (Latijns)",
- "zh-cN": "Chinees (Volksrepubliek China)",
- "zh-hK": "Chinees (Hongkong SAR)",
- "zh-mO": "Chinees (Macao SAR)",
- "zh-sG": "Chinees (Singapore)",
- "zh-tW": "Chinees (Taiwan)",
- "hr-bA": "Kroatisch (Latijn)",
- "hr-hR": "Kroatisch (Kroatië)",
- "nl-bE": "Nederlands (België)",
- "nl-nL": "Nederlands (Nederland)",
- "en-aU": "Engels (Australië)",
- "en-bZ": "Engels (Belize)",
- "en-cA": "Engels (Canada)",
- "en-cabn": "Engels (Caribisch Gebied)",
- "en-iE": "Engels (Ierland)",
- "en-iN": "Engels (India)",
- "en-jM": "Engels (Jamaica)",
- "en-mY": "Engels (Maleisië)",
- "en-nZ": "Engels (Nieuw-Zeeland)",
- "en-pH": "Engels (Republiek der Filipijnen)",
- "en-sG": "Engels (Singapore)",
- "en-tT": "Engels (Trinidad en Tobago)",
- "en-uK": "Engels (Verenigd Koninkrijk)",
- "en-uS": "Engels (Verenigde Staten)",
- "en-zA": "Engels (Zuid-Afrika)",
- "en-zW": "Engels (Zimbabwe)",
- "fr-bE": "Frans (België)",
- "fr-cA": "Frans (Canada)",
- "fr-cH": "Frans (Zwitserland)",
- "fr-fR": "Frans (Frankrijk)",
- "fr-lU": "Frans (Luxemburg)",
- "fr-mC": "Frans (Monaco)",
- "de-aT": "Duits (Oostenrijk)",
- "de-cH": "Duits (Zwitserland)",
- "de-dE": "Duits (Duitsland)",
- "de-lI": "Duits (Liechtenstein)",
- "de-lU": "Duits (Luxemburg)",
- "iu-cans": "Inuktitut (syllabische tekens, Canada)",
- "iu-latn": "Inuktitut (Latijns, Canada)",
- "it-cH": "Italiaans (Zwitserland)",
- "it-iT": "Italiaans (Italië)",
- "ms-bN": "Maleis (Brunei Darussalam)",
- "ms-mY": "Maleis (Maleisië)",
- "mn-cN": "Mongools (Traditioneel Mongools, Volksrepubliek China)",
- "mn-mN": "Mongools (Cyrillisch, Mongolië)",
- "no-nB": "Noors, Bokmål (Noorwegen)",
- "no-nn": "Noors, Nynorsk (Noorwegen)",
- "pt-bR": "Portugees (Brazilië)",
- "pt-pT": "Portugees (Portugal)",
- "quz-bO": "Quechua (Bolivia)",
- "quz-eC": "Quechua (Ecuador)",
- "quz-pE": "Quechua (Peru)",
- "smj-nO": "Sami, Lule (Noorwegen)",
- "smj-sE": "Sami, Lule (Zweden)",
- "se-fI": "Sami, noordelijk (Finland)",
- "se-nO": "Sami, noordelijk (Noorwegen)",
- "se-sE": "Sami, noordelijk (Zweden)",
- "sma-nO": "Sami, zuidelijk (Noorwegen)",
- "sma-sE": "Sami, zuidelijk (Zweden)",
- "smn": "Sami, Inari (Finland)",
- "sms": "Sami, Skolt (Finland)",
- "sr-Cyrl-bA": "Servisch (Cyrillisch)",
- "sr-Cyrl-rS": "Servisch (Cyrillisch, Servië en Montenegro (voormalig))",
- "sr-Latn-bA": "Servisch (Latijns)",
- "sr-Latn-rS": "Servisch (Latijns, Servië)",
- "dsb": "Neder-Sorbisch (Duitsland)",
- "hsb": "Opper-Sorbisch (Duitsland)",
- "es-es-tradnl": "Spaans (Spanje, traditioneel)",
- "es-aR": "Spaans (Argentinië)",
- "es-bO": "Spaans (Bolivia)",
- "es-cL": "Spaans (Chili)",
- "es-cO": "Spaans (Colombia)",
- "es-cR": "Spaans (Costa Rica)",
- "es-dO": "Spaans (Dominicaanse Republiek)",
- "es-eC": "Spaans (Ecuador)",
- "es-eS": "Spaans (Spanje)",
- "es-gT": "Spaans (Guatemala)",
- "es-hN": "Spaans (Honduras)",
- "es-mX": "Spaans (Mexico)",
- "es-nI": "Spaans (Nicaragua)",
- "es-pA": "Spaans (Panama)",
- "es-pE": "Spaans (Peru)",
- "es-pR": "Spaans (Puerto Rico)",
- "es-pY": "Spaans (Paraguay)",
- "es-sV": "Spaans (El Salvador)",
- "es-uS": "Spaans (Verenigde Staten)",
- "es-uY": "Spaans (Uruguay)",
- "es-vE": "Spaans [Venezuele]",
- "sv-fI": "Zweeds (Finland)",
- "uz-cyrl": "Oezbeeks (Cyrillisch, Oezbekistan)",
- "uz-latn": "Oezbeeks (Latijns, Oezbekistan)",
- "af": "Afrikaans (Zuid-Afrika)",
- "sq": "Albanees (Albanië)",
- "am": "Amhaars (Ethiopië)",
- "hy": "Armeens (Armenië)",
- "as": "Assamees (India)",
- "ba": "Bashkir (Rusland)",
- "eu": "Baskisch (Baskisch)",
- "be": "Belarussisch (Belarus)",
- "br": "Bretons (Frankrijk)",
- "bg": "Bulgaars (Bulgarije)",
- "ca": "Catalaans (Catalaans)",
- "co": "Corsicaans (Frankrijk)",
- "cs": "Tsjechisch (Tsjechische Republiek)",
- "da": "Deens (Denemarken)",
- "prs": "Dari (Afghanistan)",
- "dv": "Divehi (Maldiven)",
- "et": "Estisch (Estland)",
- "fo": "Faeröers (Faröer)",
- "fil": "Filipijns (Filipijnen)",
- "fi": "Fins (Finland)",
- "gl": "Galicisch (Gallicië)",
- "ka": "Georgisch (Georgië)",
- "el": "Grieks (Griekenland)",
- "gu": "Gujarati (India)",
- "ha": "Hausa (Latijns, Nigeria)",
- "he": "Hebreeuws (Israël)",
- "hi": "Hindi (India)",
- "hu": "Hongaars (Hongarije)",
- "is": "IJslands (IJsland)",
- "ig": "Igbo (Nigeria)",
- "id": "Indonesisch (Indonesië)",
- "ga": "Iers (Ierland)",
- "xh": "isiXhosa (Zuid-Afrika)",
- "zu": "isiZulu (Zuid-Afrika)",
- "ja": "Japans (Japan)",
- "kn": "Kannada (India)",
- "kk": "Kazachs (Kazachstan)",
- "km": "Khmer (Cambodja)",
- "rw": "Kinyarwanda (Rwanda)",
- "sw": "Kiswahili (Kenia)",
- "kok": "Konkani (India)",
- "ko": "Koreaans (Korea)",
- "ky": "Kirgizisch (Kirgizië)",
- "lo": "Lao (Democratische Volksrepubliek Laos)",
- "lv": "Lets (Letland)",
- "lt": "Litouws (Litouwen)",
- "lb": "Luxemburgs (Luxemburg)",
- "mk": "Macedonisch (Noord-Macedonië)",
- "ml": "Malayalam (India)",
- "mt": "Maltees (Malta)",
- "mi": "Maori (Nieuw-Zeeland)",
- "mr": "Marathi (India)",
- "moh": "Mohawk (Mohawk)",
- "ne": "Nepalees (Nepal)",
- "oc": "Occitaans (Frankrijk)",
- "or": "Odia (India)",
- "ps": "Pashto (Afghanistan)",
- "fa": "Perzisch",
- "pl": "Pools (Polen)",
- "pa": "Punjabi (India)",
- "ro": "Roemeens (Roemenië)",
- "rm": "Romaans (Zwitserland)",
- "ru": "Russisch (Rusland)",
- "sa": "Sanskriet (India)",
- "st": "Sesotho sa Leboa (Zuid-Afrika)",
- "tn": "Setswana (Zuid-Afrika)",
- "si": "Sinhala (Sri Lanka)",
- "sk": "Slowaaks (Slowakije)",
- "sl": "Sloveens (Slovenië)",
- "sv": "Zweeds (Zweden)",
- "syr": "Syrisch (Syrië)",
- "tg": "Tadzjieks (Cyrillisch, Tadzjikistan)",
- "ta": "Tamil (India)",
- "tt": "Tataars (Rusland)",
- "te": "Telugu (India)",
- "th": "Thai (Thailand)",
- "bo": "Tibetaans (Volksrepubliek China)",
- "tr": "Turks (Turkije)",
- "tk": "Turkmeens (Turkmenistan)",
- "uk": "Oekraïens (Oekraïne)",
- "ur": "Oerdoe (Islamitische Republiek Pakistan)",
- "vi": "Vietnamees (Vietnam)",
- "cy": "Welsh (Verenigd Koninkrijk)",
- "wo": "Wolof (Senegal)",
- "ii": "Yi (Volksrepubliek China)",
- "yo": "Yoruba (Nigeria)"
- },
- "AppProtection": {
- "allAppTypes": "Doel voor alle app-typen",
- "androidPlatformLabel": "Android",
- "appsInAndroidWorkProfile": "Apps in Android for Work-profiel",
- "appsOnIntuneManagedDevices": "Apps op door Intune beheerde apparaten",
- "appsOnUnmanagedDevices": "Apps op niet-beheerde apparaten",
- "iOSPlatformLabel": "iOS/iPadOS",
- "iosAndroidMacPlatformLabel": "iOS, Android, Mac",
- "iosAndroidPlatformLabel": "iOS, Android",
- "macPlatformLabel": "Mac",
- "notAvailable": "Niet beschikbaar",
- "windows10PlatformLabel": "Windows 10 en later",
- "withEnrollment": "Met inschrijving",
- "withoutEnrollment": "Zonder inschrijving"
- },
+ "ApplicabilityRules": {
+ "GridLabel": {
+ "property": "Eigenschap",
+ "rule": "Regel",
+ "ruleDetails": "Regeldetails",
+ "value": "Waarde"
+ },
+ "assignIf": "Profiel toewijzen als",
+ "deleteWarning": "Hiermee wordt de geselecteerde regel voor toepasselijkheid verwijderd",
+ "dontAssignIf": "Profiel niet toewijzen als",
+ "editionDisplayText": "{0} {1}",
+ "editionDisplayTextMore": "en nog {0}",
+ "instructions": "Geef op hoe dit profiel moet worden toegepast binnen een toegewezen groep. Intune past het profiel alleen toe op apparaten die voldoen aan de gecombineerde criteria van deze regels.",
+ "maxText": "Maximaal",
+ "minText": "Minimaal",
+ "noActionRow": "Er zijn geen regels voor toepasselijkheid opgegeven",
+ "oSVersion": "bijvoorbeeld 1.2.3.4",
+ "toText": "tot",
+ "windows10Education": "Windows 10/11 Education",
+ "windows10EducationN": "Windows 10/11 Education N",
+ "windows10Enterprise": "Windows 10/11 Enterprise",
+ "windows10EnterpriseN": "Windows 10/11 Enterprise N",
+ "windows10HolographicEnterprise": "Windows 10 Holographic for Business",
+ "windows10Home": "Windows 10/11 Home",
+ "windows10HomeChina": "Windows 10 Home China",
+ "windows10HomeN": "Windows 10/11 Home N",
+ "windows10HomeSingleLanguage": "Windows 10/11 Home Single Language",
+ "windows10IoTCore": "Windows 10 IoT Core",
+ "windows10IoTCoreCommercial": "Windows 10 IoT Core Commercial",
+ "windows10Mobile": "Windows 10 Mobile",
+ "windows10MobileEnterprise": "Windows 10 Mobile Enterprise",
+ "windows10OsEdition": "Editie besturingssysteem",
+ "windows10OsVersion": "Besturingssysteemversie",
+ "windows10Professional": "Windows 10/11 Professional",
+ "windows10ProfessionalEducation": "Windows 10/11 Professional Education",
+ "windows10ProfessionalEducationN": "Windows 10/11 Professional Education N",
+ "windows10ProfessionalN": "Windows 10 Professional N",
+ "windows10ProfessionalWorkstation": "Windows 10/11 Professional Workstation",
+ "windows10ProfessionalWorkstationN": "Windows 10/11 Professional Workstation N"
+ },
+ "DetectionRules": {
+ "ComparisonOperators": {
+ "equals": "Is gelijk aan",
+ "greaterThan": "Groter dan",
+ "greaterThanOrEqualTo": "Groter dan of gelijk aan",
+ "lessThan": "Kleiner dan",
+ "lessThanOrEqualTo": "Kleiner dan of gelijk aan",
+ "notEqualTo": "Niet gelijk aan"
+ },
+ "CustomScript": {
+ "enforceSignatureCheck": "Controle van scripthandtekening afdwingen en script op de achtergrond uitvoeren",
+ "enforceSignatureCheckTooltip": "Selecteer Ja om op te geven dat het script is ondertekend door een vertrouwde uitgever. Hierdoor kan het script worden uitgevoerd zonder waarschuwingen of prompts. Het script wordt niet geblokkeerd en uitgevoerd. Selecteer Nee (standaard) om het script uit te voeren met bevestiging door de eindgebruiker zonder handtekeningverificatie.",
+ "header": "Een aangepast detectiescript gebruiken",
+ "runAs32Bit": "Script uitvoeren als 32 bitsproces op 64 bitsclients",
+ "runAs32BitTooltip": "Selecteer Ja als u het script in een 32 bitsproces op 64 bitsclients wilt uitvoeren. Selecteer Nee (standaard) als u het script in een 64 bitsproces op 64 bitsclients wilt uitvoeren. 32 bitsclients voeren het script uit in een 32 bitsproces.",
+ "scriptFile": "Scriptbestand",
+ "scriptFileNotSelectedValidation": "Er is geen scriptbestand geselecteerd.",
+ "scriptFileTooltip": "Selecteer een PowerShell-script waarmee de aanwezigheid van een app op de client wordt gedetecteerd. De app wordt gedetecteerd als het script zowel een afsluitcode van de waarde 0 retourneert als een tekenreekswaarde naar STDOUT schrijft.",
+ "scriptSizeLimitValidation": "Het detectiescript overschrijdt de maximaal toegestane grootte. Los dit op door de grootte van het detectiescript te verkleinen."
+ },
+ "Manual": {
+ "FileRule": {
+ "DetectionMethodOptions": {
+ "dateCreated": "Gemaakt op",
+ "dateModified": "Gewijzigd op",
+ "doesNotExist": "Het bestand of de map bestaat niet.",
+ "fileOrFolderExists": "Bestand of map bestaat",
+ "sizeInMB": "Grootte in MB",
+ "version": "Tekenreeks (versie)"
+ },
+ "associatedWith32Bit": "Gekoppeld aan een 32 bitsapp op 64 bitsclients",
+ "associatedWith32BitTooltip": "Selecteer Ja als u omgevingsvariabelen in het pad in de 32 bitscontext op 64 bitsclients wilt uitbreiden. Selecteer Nee (standaard) als u padvariabelen wilt uitbreiden in de 64 bitscontext op 64 bitsclients. 32 bitsclients gebruiken altijd de 32 bitscontext.",
+ "detectionMethod": "Detectiemethode",
+ "detectionMethodTooltip": "Selecteer het type detectiemethode voor het valideren van de aanwezigheid van de app.",
+ "fileOrFolder": "Bestand of map",
+ "fileOrFolderToolTip": "Het bestand of de map voor de detectie.",
+ "operator": "Operator",
+ "operatorTooltip": "Selecteer de operator voor de detectiemethode voor het valideren van de vergelijking.",
+ "path": "Pad",
+ "pathTooltip": "Het volledige pad van de map met het bestand of de map die u wilt detecteren.",
+ "value": "Waarde",
+ "valueTooltip": "Selecteer een waarde die overeenkomt met de geselecteerde detectiemethode. Methoden voor datumdetectie moeten in de lokale tijd worden ingevoerd."
+ },
+ "GridColumns": {
+ "pathOrCode": "Pad/code",
+ "type": "Type"
+ },
+ "MsiRule": {
+ "operator": "Operator",
+ "operatorTooltip": "Selecteer de operator voor de validatievergelijking van de MSI-productversie.",
+ "productCode": "MSI-productcode",
+ "productCodeTooltip": "Een geldige MSI-productcode voor de app.",
+ "productVersion": "Waarde",
+ "productVersionCheck": "Versiecontrole van MSI-product",
+ "productVersionCheckTooltip": "Selecteer Ja om de MSI-productversie en de MSI-productcode te controleren.",
+ "productVersionTooltip": "Voer de MSI-productversie voor de app in."
+ },
+ "RegistryRule": {
+ "DetectionMethodOptions": {
+ "integerComparison": "Vergelijking van geheel getal",
+ "keyDoesNotExist": "Sleutel bestaat niet",
+ "keyExists": "Sleutel bestaat",
+ "stringComparison": "Vergelijking van tekenreeks",
+ "valueDoesNotExist": "Waarde bestaat niet",
+ "valueExists": "Waarde bestaat",
+ "versionComparison": "Vergelijking van versies"
+ },
+ "associatedWith32Bit": "Gekoppeld aan een 32 bitsapp op 64 bitsclients",
+ "associatedWith32BitTooltip": "Selecteer Ja als u het 32 bitsregister op 64 bitsclients wilt zoeken. Selecteer Nee (standaard) as u het 64 bitsregister op 64 bitsclients wilt zoeken. 32 bitsclients zoeken altijd naar het 32 bitsregister.",
+ "detectionMethod": "Detectiemethode",
+ "detectionMethodTooltip": "Selecteer het type detectiemethode voor het valideren van de aanwezigheid van de app.",
+ "keyPath": "Sleutelpad",
+ "keyPathTooltip": "Het volledige pad van de registervermelding die de waarde bevat die u wilt detecteren.",
+ "operator": "Operator",
+ "operatorTooltip": "Selecteer de operator voor de detectiemethode voor het valideren van de vergelijking.",
+ "value": "Waarde",
+ "valueName": "Waardenaam",
+ "valueNameTooltip": "De naam van de registerwaarde die u wilt detecteren.",
+ "valueTooltip": "Selecteer een waarde die overeenkomt met de geselecteerde detectiemethode."
+ },
+ "RuleTypeOptions": {
+ "file": "Bestand",
+ "mSI": "MSI",
+ "registry": "Register"
+ },
+ "gridAriaLabel": "Detectieregels",
+ "header": "Maak een regel die de aanwezigheid van de app aangeeft.",
+ "noRulesSelectedPlaceholder": "Er zijn geen machtigingen opgegeven.",
+ "ruleTableLimit": "U kunt maximaal 25 detectieregels toevoegen",
+ "ruleType": "Regeltype",
+ "ruleTypeTooltip": "Kies het type detectieregel dat u wilt toevoegen."
+ },
+ "RuleConfigurationOptions": {
+ "customScript": "Een aangepast detectiescript gebruiken",
+ "manual": "Detectieregels handmatig configureren"
+ },
+ "bladeTitle": "Detectieregels",
+ "header": "Configureer specifieke regels voor de app voor het bepalen van de aanwezigheid van de app.",
+ "rulesFormat": "Regelnotatie",
+ "rulesFormatTooltip": "Kies of u de detectieregels handmatig wilt configureren of een aangepast script wilt gebruiken voor het detecteren van de aanwezigheid van de app.",
+ "selectorLabel": "Detectieregels"
+ },
+ "PolicyType": {
+ "AttackSurfaceReductionRules": {
+ "configMgr": "Regels voor het verminderen van kwetsbaarheid voor aanvallen (ConfigMgr)"
+ },
+ "EndpointDetectionandResponse": {
+ "mDE": "Eindpuntdetectie en -reactie"
+ },
+ "EndpointSecurityTemplate": {
+ "aSRAppBrowserSecurity": "App- en browserisolatie",
+ "aSRApplicationControl": "Toepassingsbeheer",
+ "aSRAttackSurfaceReduction": "Regels voor het verminderen van kwetsbaarheid voor aanvallen",
+ "aSRDeviceControl": "Apparaatbeheer",
+ "aSRExploitProtection": "Exploit Protection",
+ "aSRWebProtection": "Webbeveiliging (Microsoft Edge verouderd)",
+ "aVExclusions": "Microsoft Defender Antivirus-uitsluitingen",
+ "antivirus": "Microsoft Defender Antivirus",
+ "cloudPC": "Windows 365-beveiligingsbasislijn",
+ "default": "Eindpuntbeveliging",
+ "defenderTest": "Demo voor Microsoft Defender for Endpoint",
+ "diskEncryption": "BitLocker",
+ "eDR": "Eindpuntdetectie en -reactie",
+ "edgeSecurityBaseline": "Microsoft Edge-basislijn",
+ "edgeSecurityBaselinePreview": "Preview-versie: Microsoft Edge-basislijn",
+ "editionUpgradeConfiguration": "Editie-upgrade en modus wisselen",
+ "firewall": "Microsoft Defender Firewall",
+ "firewallRules": "Microsoft Defender Firewall-regels",
+ "identityProtection": "Accountbeveiliging",
+ "identityProtectionPreview": "Accountbeveiliging (preview-versie)",
+ "mDMSecurityBaseline1810": "MDM-beveiligingsbasislijn voor Windows 10 en hoger voor oktober 2018",
+ "mDMSecurityBaseline1810Preview": "Preview: MDM-beveiligingsbasislijn voor Windows 10 en hoger voor oktober 2018",
+ "mDMSecurityBaseline1810PreviewBeta": "Preview: MDM-beveiligingsbasislijn voor Windows 10 voor oktober 2018 (bètaversie)",
+ "mDMSecurityBaseline1906": "MDM-beveiligingsbasislijn voor Windows 10 en hoger voor mei 2019",
+ "mDMSecurityBaseline2004": "MDM-beveiligingsbasislijn voor Windows 10 en hoger voor augustus 2020",
+ "mDMSecurityBaseline2101": "MDM-beveiligingsbasislijn voor Windows 10 en hoger decemeber 2020",
+ "macOSAntivirus": "Antivirus",
+ "macOSDiskEncryption": "FileVault",
+ "macOSFirewall": "macOS-firewall",
+ "microsoftDefenderBaseline": "Basislijn voor Microsoft Defender for Endpoint",
+ "office365Baseline": "Microsoft Office O365-basislijn",
+ "office365BaselinePreview": "Preview: Microsoft Office O365-basislijn",
+ "securityBaselines": "Beveiligingsbasislijnen",
+ "test": "Testsjabloon",
+ "testFirewallRulesSecurityTemplateName": "Microsoft Defender Firewall-regels (Test)",
+ "testIdentityProtectionSecurityTemplateName": "Accountbeveiliging (test)",
+ "windowsSecurityExperience": "Windows-beveiligingservaring"
+ },
+ "Firewall": {
+ "mDE": "Microsoft Defender Firewall"
+ },
+ "FirewallRules": {
+ "mDE": "Microsoft Defender Firewall-regels"
+ },
+ "administrativeTemplates": "Beheersjablonen",
+ "androidCompliancePolicy": "Nalevingsbeleid van Android",
+ "aospDeviceOwnerCompliancePolicy": "Nalevingsbeleid van Android (AOSP)",
+ "applicationControl": "Toepassingsbeheer",
+ "custom": "Aangepast",
+ "deliveryOptimization": "Delivery Optimization",
+ "derivedPersonalIdentityVerificationCredential": "Afgeleide referentie",
+ "deviceFeatures": "Apparaatfuncties",
+ "deviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
+ "deviceLock": "Apparaatvergrendeling",
+ "deviceOwner": "Volledig beheerde en toegewezen werkprofielen in bedrijfseigendom",
+ "deviceRestrictions": "Apparaatbeperkingen",
+ "deviceRestrictionsWindows10Team": "Apparaatbeperkingen (Windows 10 Team)",
+ "domainJoinPreview": "Domeindeelname",
+ "editionUpgradeAndModeSwitch": "Editie-upgrade en modus wisselen",
+ "education": "Educatief",
+ "email": "E-mail",
+ "emailSamsungKnoxOnly": "E-mail (alleen Samsung KNOX)",
+ "endpointProtection": "Endpoint Protection",
+ "expeditedCheckin": "Configuratie voor Mobile Device Management",
+ "exploitProtection": "Exploit Protection",
+ "extensions": "Extensies",
+ "hardwareConfigurations": "BIOS-configuraties",
+ "identityProtection": "Identity Protection",
+ "iosCompliancePolicy": "Nalevingsbeleid van iOS",
+ "kiosk": "Kiosk",
+ "macCompliancePolicy": "Nalevingsbeleid van Mac",
+ "microsoftDefenderAntivirus": "Microsoft Defender Antivirus",
+ "microsoftDefenderAntivirusexclusions": "Microsoft Defender Antivirus-uitsluitingen",
+ "microsoftDefenderAtpWindows10Desktop": "Microsoft Defender voor Eindpunt (desktopapparaten met Windows 10 of hoger)",
+ "microsoftDefenderFirewallRules": "Microsoft Defender Firewall-regels",
+ "microsoftEdgeBaseline": "Microsoft Edge-basislijn",
+ "mxProfileZebraOnly": "MX-profiel (alleen Zebra)",
+ "networkBoundary": "De grens van het netwerk",
+ "oemConfig": "OEMConfig",
+ "overrideGroupPolicy": "Groepsbeleid overschrijven",
+ "pkcsCertificate": "PKCS-certificaat",
+ "pkcsImportedCertificate": "Geïmporteerd PKCS-certificaat",
+ "preferenceFile": "Voorkeursbestand",
+ "presets": "Voorinstellingen",
+ "scepCertificate": "SCEP-certificaat",
+ "secureAssessmentEducation": "Veilige evaluatie (onderwijs)",
+ "settingsCatalog": "Catalogus met instellingen",
+ "sharedMultiUserDevice": "Gedeeld apparaat voor meerdere gebruikers",
+ "softwareUpdates": "Software-updates",
+ "trustedCertificate": "Vertrouwd certificaat",
+ "unknown": "Onbekend",
+ "unsupported": "Niet-ondersteund",
+ "vpn": "VPN",
+ "wiFi": "Wi-Fi",
+ "wiFiImport": "Wi-Fi importeren",
+ "windows10CompliancePolicy": "Nalevingsbeleid van Windows 10/11",
+ "windows10MobileCompliancePolicy": "Nalevingsbeleid van Windows 10 Mobile",
+ "windows10XScep": "SCEP-certificaat - TEST",
+ "windows10XTrustedCertificate": "Vertrouwd certificaat - TEST",
+ "windows10XVPN": "VPN - TEST",
+ "windows10XWifi": "Wi-Fi - TEST",
+ "windows8CompliancePolicy": "Nalevingsbeleid van Windows 8",
+ "windowsHealthMonitoring": "Windows-statuscontrole",
+ "windowsInformationProtection": "Windows Information Protection",
+ "windowsPhoneCompliancePolicy": "Nalevingsbeleid van Windows Phone",
+ "windowsUpdateforBusiness": "Windows Update voor Bedrijven",
+ "wiredNetwork": "Bekabeld netwerk",
+ "workProfile": "Werkprofiel in persoonlijk eigendom"
+ },
+ "Win32Requirements": {
+ "AdditionalRequirements": {
+ "File": {
+ "fileOrFolderToolTip": "Het bestand of de map als de geselecteerde vereiste.",
+ "pathToolTip": "Het volledige pad van het bestand of de map die u wilt detecteren.",
+ "property": "Eigenschap",
+ "valueToolTip": "Selecteer een waarde voor de vereiste die overeenkomt met de geselecteerde detectiemethode. Een vereiste voor datum en tijd moet u in de lokale tijdnotatie invoeren."
+ },
+ "GridColumns": {
+ "pathOrScript": "Pad/script",
+ "type": "Type"
+ },
+ "Registry": {
+ "keyPath": "Sleutelpad",
+ "keyPathTooltip": "Het volledige pad van de registervermelding die de waarde als vereiste bevat.",
+ "operator": "Operator",
+ "operatorTooltip": "Selecteer de operator voor de vergelijking.",
+ "registryRequirement": "Vereiste voor registersleutel",
+ "registryRequirementTooltip": "Selecteer de vergelijking van de vereiste voor de registersleutel.",
+ "valueName": "Waardenaam",
+ "valueNameTooltip": "De naam van de vereiste registerwaarde."
+ },
+ "RequirementTypeOptions": {
+ "fileType": "Bestand",
+ "registry": "Register",
+ "script": "Script"
+ },
+ "Script": {
+ "RequirementMethodOptions": {
+ "boolean": "Booleaans",
+ "dateTime": "Datum en tijd",
+ "float": "Drijvende komma",
+ "integer": "Geheel getal",
+ "string": "Tekenreeks",
+ "version": "Versie"
+ },
+ "ScriptContent": {
+ "emptyMessage": "Scriptinhoud mag niet leeg zijn."
+ },
+ "duplicateName": "De scriptnaam {0} is al gebruikt. Voer een andere naam in.",
+ "enforceSignatureCheck": "Controle van scripthandtekening afdwingen",
+ "enforceSignatureCheckTooltip": "Selecteer Ja om op te geven dat het script is ondertekend door een vertrouwde uitgever. Hierdoor kan het script zonder waarschuwingen of prompts worden uitgevoerd. Het script wordt niet geblokkeerd en wordt uitgevoerd. Selecteer Nee (standaardwaarde) om het script met bevestiging door de eindgebruiker maar zonder handtekeningverificatie uit te voeren.",
+ "loggedOnCredentials": "Dit script uitvoeren met referenties van aangemelde gebruiker",
+ "loggedOnCredentialsTooltip": "Het script uitvoeren met de referenties van het aangemelde apparaat.",
+ "operatorTooltip": "Selecteer de operator voor de vergelijking van vereisten.",
+ "requirementMethod": "Uitvoergegevenstype selecteren",
+ "requirementMethodTooltip": "Selecteer het gegevenstype dat wordt gebruikt bij het bepalen van een vereiste voor detectieovereenkomsten.",
+ "scriptFile": "Scriptbestand",
+ "scriptFileTooltip": "Selecteer een PowerShell-script waarmee de aanwezigheid van een app op de client wordt gedetecteerd. Als de app wordt gedetecteerd, wordt met het proces van de vereist een afsluitcode met de waarde 0 geretourneerd en een tekenreekswaarde naar STDOUT geschreven.",
+ "scriptName": "Scriptnaam",
+ "value": "Waarde",
+ "valueTooltip": "Selecteer een waarde voor de vereiste die overeenkomt met de geselecteerde detectiemethode. Een vereiste voor datum en tijd moet u in de lokale tijdnotatie invoeren."
+ },
+ "bladeTitle": "Een vereisteregel toevoegen",
+ "createRequirementHeader": "Maak een vereiste.",
+ "header": "Aanvullende vereisteregels configureren",
+ "label": "Aanvullende vereistenregels",
+ "noRequirementsSelectedPlaceholder": "Er zijn geen vereisten opgegeven.",
+ "requirementType": "Vereistetype",
+ "requirementTypeTooltip": "Kies het type detectiemethode dat wordt gebruikt om te bepalen hoe een vereiste wordt gevalideerd."
+ },
+ "architectures": "Architectuur van besturingssysteem",
+ "architecturesTooltip": "Kies de architecturen die nodig zijn voor het installeren van de app.",
+ "bladeTitle": "Vereisten",
+ "diskSpace": "Vereiste schijfruimte (MB)",
+ "diskSpaceTooltip": "Vrije schijfruimte die nodig is op het systeemstation voor het installeren van de app.",
+ "header": "Geef de vereisten op waaraan apparaten moeten voldoen voordat de app wordt geïnstalleerd:",
+ "maximumTextFieldValue": "De waarde mag maximaal {0} zijn.",
+ "minimumCpuSpeed": "Minimale vereiste processorsnelheid (MHz)",
+ "minimumCpuSpeedTooltip": "De minimale processorsnelheid die is vereist om de app te installeren.",
+ "minimumLogicalProcessors": "Minimale aantal vereiste logische processors",
+ "minimumLogicalProcessorsTooltip": "Het minimale aantal logische processors dat is vereist om de app te installeren.",
+ "minimumOperatingSystem": "Minimumversie van het besturingssysteem",
+ "minimumOperatingSystemTooltip": "Selecteer de minimumversie van het besturingssysteem die nodig is voor het installeren van de app.",
+ "minumumTextFieldValue": "De waarde moet ten minste {0} zijn.",
+ "physicalMemory": "Vereiste fysieke geheugen (MB)",
+ "physicalMemoryTooltip": "Fysieke geheugen (RAM) dat is vereist om de app te installeren.",
+ "selectorLabel": "Vereisten",
+ "validNumber": "Voer een geldig getal in"
+ },
+ "AzureIAM": {
+ "AdrsUserActionSelectionWarning": {
+ "conditions": "Voorwaarden waarvoor apparaatregistratie is vereist, zijn niet beschikbaar voor de gebruikersactie Apparaten registreren of toevoegen.",
+ "message": "Alleen 'Meervoudige verificatie vereisen' kan worden gebruikt in beleid dat is gemaakt voor de gebruikersactie 'Apparaten registreren of toevoegen'.{0}"
+ },
+ "AuthContext": {
+ "Delete": {
+ "failure": "Kan {0} niet verwijderen",
+ "failureCa": "Kan {0} niet verwijderen omdat ernaar wordt verwezen door CA-beleid",
+ "modifying": "{0} verwijderen",
+ "success": "{0} is verwijderd"
+ },
+ "Included": {
+ "none": "Er zijn geen cloud-apps,-acties of -verificatiecontexten geselecteerd",
+ "plural": "{0} verificatiecontexten opgenomen",
+ "singular": "1 verificatiecontext opgenomen"
+ },
+ "InfoBlade": {
+ "createTitle": "Verificatiecontext toevoegen",
+ "descPlaceholder": "Beschrijving voor de verificatiecontext toevoegen",
+ "modifyTitle": "Verificatiecontext wijzigen",
+ "namePlaceholder": "Bijvoorbeeld Vertrouwde locatie, Vertrouwd apparaat, Sterke autorisatie",
+ "publishDesc": "Met Publiceren naar apps maakt u de verificatiecontext beschikbaar voor apps. Voer de publicatie uit zodra u het beleid voor voorwaardelijke toegang voor de tag hebt geconfigureerd. [Meer informatie][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150966",
+ "publishLabel": "Publiceren naar apps",
+ "titleDesc": "Configureer een verificatiecontext die wordt gebruikt om toepassingsgegevens en acties te beveiligen. Gebruik namen en beschrijvingen die toepassingsbeheerders kunnen begrijpen. [Meer informatie][1]\n[1]https://go.microsoft.com/fwlink/?linkid=2150965"
+ },
+ "Notify": {
+ "failure": "Kan {0} niet bijwerken",
+ "modifying": "{0} wijzigen",
+ "success": "{0} is bijgewerkt"
+ },
+ "WhatIf": {
+ "selected": "De verificatiecontext is opgenomen"
+ },
+ "addNewStepUp": "Nieuwe verificatiecontext",
+ "checkBoxInfo": "De verificatiecontext selecteren waarop dit beleid van toepassing is",
+ "configure": "Verificatiecontexten configureren",
+ "createCA": "Beleid voor voorwaardelijke toegang toewijzen aan de verificatiecontext",
+ "dataGrid": "Lijst met verificatiecontexten",
+ "deleteFailedByReference": "You cannot delete this authentication context because it is being referenced by CA policies.",
+ "description": "Beschrijving",
+ "documentation": "Documentatie",
+ "getStarted": "Aan de slag",
+ "label": "Verificatiecontext (preview)",
+ "menuLabel": "Verificatiecontext (preview)",
+ "name": "Naam",
+ "noAuthContextConfigured": "Er zijn geen verificatiecontexten geconfigureerd.",
+ "noAuthContextSet": "Er zijn geen verificatiecontexten",
+ "noData": "Er zijn geen verificatiecontexten om weer te geven",
+ "selectionInfo": "Verificatiecontext wordt gebruikt om toepassingsgegevens en acties te beveiligen in apps als SharePoint en Microsoft Cloud App Security.",
+ "step": "Stap",
+ "tabDescription": "Beheer de verificatiecontext om gegevens en acties in uw apps te beveiligen. [Meer informatie][1]\n[1]https://go.microsoft.com/fwlink/?linkid=2150965",
+ "tagResources": "Labelen van resources met een verificatiecontext"
+ },
+ "AuthenticationStrength": {
+ "Mode": {
+ "deviceBasedPush": "Microsoft Authenticator (aanmelding via telefoon)",
+ "deviceBasedPushFido2X509Certificate": "Microsoft Authenticator (aanmelding via telefoon) + Fido 2 + verificatie op basis van certificaten",
+ "deviceBasedPushX509CertificateSingleFactor": "Microsoft Authenticator (aanmelding via telefoon) + Fido 2 + verificatie op basis van certificaten (enkele factor)",
+ "email": "Eenmalige wachtwoordcode per e-mail",
+ "emailOtp": "Eenmalige wachtwoordcode per e-mail",
+ "federatedMultiFactor": "Federatieve multi-factor",
+ "federatedSingleFactor": "Federatieve enkelvoudige factor",
+ "federatedSingleFactorFederatedMultiFactor": "Federatieve enkelvoudige factor + federatieve multi-factor",
+ "fido2": "FIDO 2-beveiligingssleutel",
+ "fido2X509CertificateSingleFactor": "FIDO 2-beveiligingssleutel + verificatie op basis van certificaten (enkele factor)",
+ "hardwareOath": "OATH-tokens voor hardware",
+ "hardwareOathEmail": "OATH-tokens voor hardware en eenmalige wachtwoordcode per e-mail",
+ "hardwareOathX509CertificateSingleFactor": "Verificatie op basis van OATH-tokens voor hardware en certificaten (enkele factor)",
+ "microsoftAuthenticatorPSIX509CertificateSingleFactor": "Microsoft Authenticator (aanmelding via telefoon) + verificatie op basis van certificaten (enkele factor)",
+ "microsoftAuthenticatorPsi": "Microsoft Authenticator (aanmelding via telefoon)",
+ "microsoftAuthenticatorPush": "Microsoft Authenticator (pushmelding)",
+ "microsoftAuthenticatorPushEmail": "Microsoft Authenticator (pushmelding) en eenmalige wachtwoordcode per e-mail",
+ "microsoftAuthenticatorPushX509CertificateSingleFactor": "Microsoft Authenticator (pushmelding) + verificatie op basis van certificaten (enkele factor)",
+ "none": "Geen",
+ "password": "Wachtwoord",
+ "passwordDeviceBasedPush": "Wachtwoord + Microsoft Authenticator (aanmelden via telefoon)",
+ "passwordFido2": "Wachtwoord + FIDO 2-beveiligingssleutel",
+ "passwordHardwareOath": "Wachtwoord en OATH-tokens voor hardware",
+ "passwordMicrosoftAuthenticatorPSI": "Wachtwoord + Microsoft Authenticator (aanmelden via telefoon)",
+ "passwordMicrosoftAuthenticatorPush": "Wachtwoord + Microsoft Authenticator (pushmelding)",
+ "passwordSms": "Wachtwoord + sms",
+ "passwordSoftwareOath": "Wachtwoord en OATH-tokens voor software",
+ "passwordTemporaryAccessPassMultiUse": "Wachtwoord + tijdelijke toegangspas (meerdere toepassingen)",
+ "passwordTemporaryAccessPassOneTime": "Wachtwoord + tijdelijke toegangspas (eenmalig gebruik)",
+ "passwordVoice": "Wachtwoord + Spraak",
+ "sms": "Sms-bericht",
+ "smsEmail": "Sms en eenmalige wachtwoordcode per e-mail",
+ "smsSignIn": "Aanmelding via sms-bericht",
+ "smsX509CertificateSingleFactor": "Sms + verificatie op basis van certificaten (enkele factor)",
+ "softwareOath": "OATH-tokens voor software",
+ "softwareOathEmail": "OATH-tokens voor software en eenmalige wachtwoordcode per e-mail",
+ "softwareOathX509CertificateSingleFactor": "Verificatie op basis van OATH-tokens voor software en certificaten (enkele factor)",
+ "temporaryAccessPassMultiUse": "Tijdelijke toegangspas (meerdere toepassingen)",
+ "temporaryAccessPassMultiUseX509CertificateSingleFactor": "Tijdelijke toegangspas (meerdere toepassingen) + verificatie op basis van certificaten (enkele factor)",
+ "temporaryAccessPassOneTime": "Tijdelijke toegangspas (eenmalig gebruik)",
+ "temporaryAccessPassOneTimeX509CertificateSingleFactor": "Tijdelijke toegangspas (eenmalig gebruik) + verificatie op basis van certificaten (enkele factor)",
+ "voice": "Voice",
+ "voiceEmail": "Spraak en eenmalige wachtwoordcode voor e-mail",
+ "voiceX509CertificateSingleFactor": "Verificatie op basis van spraak + certificaat (enkele factor)",
+ "windowsHelloForBusiness": "Windows Hello voor Bedrijven",
+ "x509CertificateMultiFactor": "Verificatie op basis van certificaten (multi-factor)",
+ "x509CertificateSingleFactor": "Verificatie op basis van certificaten (enkele factor)"
+ }
+ },
+ "CAS": {
+ "BuiltinPolicy": {
+ "Option": {
+ "blockDownloads": "Downloads blokkeren (preview)",
+ "monitorOnly": "Alleen bewaken (preview)",
+ "protectDownloads": "Downloads beveiligen (preview)",
+ "useCustomControls": "Aangepast beleid gebruiken..."
+ },
+ "ariaLabel": "Kies het soort app-beheer voor voorwaardelijke toegang dat moet worden toegepast"
+ }
+ },
+ "ChooseApplications": {
+ "Grid": {
+ "appIdAria": "App-id: {0}"
+ },
+ "LowerGrid": {
+ "ariaLabel": "Lijst met geselecteerde cloud-apps"
+ },
+ "UpperGrid": {
+ "ariaLabel": "Lijst met cloud-apps die overeenkomen met de zoekterm"
+ }
+ },
+ "ChooseLocations": {
+ "Validation": {
+ "failed": "U moet ten minste één locatie kiezen bij Geselecteerde locaties.",
+ "selector": "U moet ten minste één locatie kiezen"
+ }
+ },
+ "ClientApp": {
+ "Clients": {
+ "Validation": {
+ "failed": "U moet ten minste één van de volgende clients selecteren"
+ }
+ }
+ },
+ "ClientConditionsInfo": {
+ "browserAndModern": "Dit beleid geldt alleen voor de browser en moderne verificatie-apps. Schakel de voorwaarde voor client-apps in om het beleid toe te passen op alle client-apps en selecteer alle client-apps.",
+ "classicExperience": "Sinds dit beleid is gemaakt, is de standaardconfiguratie van client-apps bijgewerkt.",
+ "legacyAuth": "Als deze optie niet is geconfigureerd, is het beleid nu van toepassing op alle client-apps, inclusief moderne en klassieke machtigingen."
+ },
+ "CloudAppFilterBlade": {
+ "AssignmentFilter": {
+ "header": "Kenmerk",
+ "placeholder": "Een kenmerk kiezen"
+ },
+ "Configure": {
+ "infoBalloon": "Configureer de app-filters waarop u een beleid wilt toepassen."
+ },
+ "NoPermissions": {
+ "learnMoreAria": "Meer informatie over machtigingen voor aangepaste beveiligingskenmerken.",
+ "message": "U beschikt niet over de machtigingen die nodig zijn om aangepaste beveiligingskenmerken te gebruiken."
+ },
+ "gridHeader": "Met behulp van aangepaste beveiligingskenmerken kunt u de opbouwfunctie voor regels of het tekstvak regelsyntaxis gebruiken om de filterregels te maken of te bewerken. In de preview worden alleen kenmerken van het type Tekenreeks ondersteund. Kenmerken van het type Geheel getal of Booleaanse waarde worden niet weergegeven.",
+ "learnMoreAria": "Meer informatie over het gebruik van de opbouwfunctie voor regels en het tekstvak voor de syntaxis.",
+ "noAttributes": "Er zijn geen aangepaste kenmerken beschikbaar om op te filteren. U moet enkele attributen configureren om dit filter te gebruiken.",
+ "title": "Filter bewerken (preview)"
+ },
+ "CloudAppsUserActions": {
+ "any": "Een cloud-app of actie",
+ "infoBalloon": "Cloud-app of gebruikersactie die u wilt testen. Bijvoorbeeld SharePoint Online",
+ "learnMore": "Toegangsbeheer op basis van alle of specifieke cloud-apps of acties.",
+ "learnMoreB2C": "Toegangsbeheer op basis van alle of specifieke cloud-apps.",
+ "title": "Cloud-apps of acties"
+ },
+ "CloudappsSelectionBlade": {
+ "Excluded": {
+ "gridAria": "Lijst met uitgesloten cloud-apps"
+ },
+ "Filter": {
+ "configured": "Geconfigureerd",
+ "label": "Filter bewerken (preview)",
+ "with": "{0} met {1}"
+ },
+ "Included": {
+ "gridAria": "Lijst met opgenomen cloud-apps"
+ },
+ "Validation": {
+ "authContext": "Met de optie Verificatiecontext moet u minimaal één subitem configureren.",
+ "selectApps": "'{0}' moet zijn geconfigureerd",
+ "selector": "Selecteer ten minste één app.",
+ "userActions": "Met de optie Gebruikersacties moet u minimaal één subitem configureren."
+ }
+ },
+ "DeviceState": {
+ "LearnMore": {
+ "message": "Beheer gebruikerstoegang wanneer het apparaat waarmee de gebruiker zich aanmeldt niet Hybrid Azure AD-gekoppeld of Gemarkeerd als compatibel is.\n Is afgeschaft. Gebruik in plaats daarvan {1}."
+ }
+ },
+ "Errors": {
+ "notFound": "Het beleid is niet gevonden of is verwijderd.",
+ "notFoundDetailed": "Het beleid {0} bestaat niet meer. Mogelijk is het verwijderd."
+ },
+ "GuestsOrExternalUsers": {
+ "allExternalTenantsLabel": "Alle Azure AD-organisaties",
+ "b2bCollaborationGuestLabel": "Gastgebruikers voor B2B-samenwerking",
+ "b2bCollaborationMemberLabel": "B2B-samenwerkingslidgebruikers",
+ "b2bDirectConnectUserLabel": "B2B-direct connect-gebruikers",
+ "enumeratedExternalTenantsError": "Selecteer ten minste één externe tenant",
+ "enumeratedExternalTenantsLabel": "Azure AD-organisaties selecteren",
+ "externalTenantsLabel": "Externe Azure AD-organisaties opgeven",
+ "externalUserDropdownLabel": "Gast- of externe gebruikerstypen kiezen",
+ "externalUsersError": "Selecteer ten minste één extern gast- of gebruikerstype",
+ "guestOrExternalUsersInfoContent": "Omvat B2B-samenwerking, directe B2B-verbinding en andere typen externe gebruikers.",
+ "guestOrExternalUsersLabel": "Gasten of externe gebruikers",
+ "internalGuestLabel": "Lokale gastgebruikers",
+ "otherExternalUserLabel": "Andere externe gebruikers"
+ },
+ "NamedLocation": {
+ "Form": {
+ "CountryLookup": {
+ "ariaLabel": "Zoekmethode voor landen",
+ "gps": "Locatie bepalen op basis van GPS-coördinaten",
+ "info": "Wanneer de locatievoorwaarde van een beleid voor voorwaardelijke toegang is geconfigureerd, worden gebruikers in de Authenticator-app gevraagd om hun GPS-locatie te delen. ",
+ "ip": "Locatie bepalen op basis van IP-adres (alleen IPv4)"
+ },
+ "Header": {
+ "new": "Nieuwe locatie ({0})",
+ "update": "Updatelocatie ({0})"
+ },
+ "IP": {
+ "learn": "Configureer IPv4- en IPv6-bereiken voor de benoemde locatie.\n[Meer informatie][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
+ },
+ "Include": {
+ "infoBalloon": "Onbekende landen/regio's zijn IP-adressen die niet zijn gekoppeld aan een bepaald land of bepaalde regio. [Meer informatie][1]\n\nDit zijn onder andere:\n* IPv6-adressen\n* IPv4-adressen zonder directe toewijzing\n[1]: https://aka.ms/canamedlocations\n",
+ "label": "Onbekende landen/regio's opnemen"
+ },
+ "Name": {
+ "empty": "De naam mag niet leeg zijn",
+ "placeholder": "Deze locatie een naam geven"
+ },
+ "PrivateLink": {
+ "learn": "Maak een nieuwe benoemde locatie met Private Links voor Azure AD. \n[Meer informatie][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
+ },
+ "Search": {
+ "countries": "Landen zoeken",
+ "names": "Namen zoeken",
+ "privateLinks": "Persoonlijke koppelingen zoeken"
+ },
+ "Trusted": {
+ "label": "Als vertrouwde locatie markeren"
+ },
+ "enter": "Voer een nieuw IPv4- of IPv6-bereik in",
+ "example": "bijvoorbeeld: 40.77.182.32/27 of 2a01:111::/32"
+ },
+ "Label": {
+ "addCountries": "Locatie landen",
+ "addIpRange": "Locatie van IP-bereiken",
+ "addPrivateLink": "Persoonlijke koppelingen van Azure"
+ },
+ "Notification": {
+ "Create": {
+ "Failed": {
+ "description": "Kan geen nieuwe locatie maken ({0})",
+ "title": "Maken is mislukt"
+ },
+ "InProgress": {
+ "description": "Nieuwe locatie maken ({0})",
+ "title": "Item wordt gemaakt"
+ },
+ "Success": {
+ "description": "Nieuwe locatie is gemaakt ({0})",
+ "title": "Maken is voltooid"
+ }
+ },
+ "Delete": {
+ "Failed": {
+ "description": "Kan de locatie niet verwijderen ({0})",
+ "title": "Het verwijderen is mislukt"
+ },
+ "InProgress": {
+ "description": "Locatie verwijderen ({0})",
+ "title": "Bezig met verwijderen"
+ },
+ "Success": {
+ "description": "De locatie is verwijderd ({0})",
+ "title": "Het verwijderen is voltooid"
+ }
+ },
+ "Update": {
+ "Failed": {
+ "description": "Kan de locatie niet bijwerken ({0})",
+ "title": "Het bijwerken is mislukt"
+ },
+ "InProgress": {
+ "description": "Locatie bijwerken ({0})",
+ "title": "Bijwerken wordt uitgevoerd"
+ },
+ "Success": {
+ "description": "De locatie is bijgewerkt ({0})",
+ "title": "Het bijwerken is voltooid"
+ }
+ }
+ },
+ "PrivateLinks": {
+ "grid": "Lijst met persoonlijke koppelingen"
+ },
+ "Trusted": {
+ "title": "Vertrouwd type",
+ "trusted": "Vertrouwd"
+ },
+ "Type": {
+ "all": "Alle typen",
+ "countries": "Landen/regio's",
+ "ipRanges": "IP-bereiken",
+ "privateLinks": "Persoonlijke koppelingen",
+ "title": "Locatietype"
+ },
+ "iPRangeInvalidError": "De waarde moet een geldig IPv4- of IPv6-bereik zijn.",
+ "iPRangeLinkOrSiteLocalError": "IP-netwerk gedetecteerd als een lokaal adres van koppeling of van een site.",
+ "iPRangeOctetError": "Het IP-netwerk mag niet beginnen met 0 of 255.",
+ "iPRangePrefixError": "Het IP-netwerkvoorvoegsel moet liggen tussen /{0} en /{1}",
+ "iPRangePrivateError": "IP-netwerk gedetecteerd als privéadres."
+ },
+ "NamedNetwork": {
+ "List": {
+ "gridAria": "Lijst met benoemde locaties"
+ }
+ },
+ "Policies": {
+ "Grid": {
+ "aria": "Lijst met beleidsregels voor voorwaardelijke toegang"
+ },
+ "countText": "{0} van {1} beleidsregels gevonden",
+ "countTextSingular": "{0} van 1 beleidsregel gevonden",
+ "search": "Beleidsregels zoeken"
+ },
+ "Policy": {
+ "Condition": {
+ "ServicePrincipalRisk": {
+ "description": "Risiconiveaus voor service-principal configureren die nodig zijn om beleid af te dwingen",
+ "infoBalloonContent": "Risico voor service-principal configureren om beleid toe te passen op geselecteerd(e) risiconiveau(s)",
+ "title": "Risico van service-principal (preview)"
+ }
+ }
+ },
+ "PolicyControlAuthStrength": {
+ "MultiFactorAuthentication": {
+ "description": "Combinaties van methoden die voldoen aan sterke verificatie, zoals wachtwoord en sms",
+ "displayName": "Multi-factor authentication (MFA)"
+ },
+ "Passwordless": {
+ "description": "Methoden zonder wachtwoord die voldoen aan sterke verificatie, zoals Microsoft Authenticator ",
+ "displayName": "MFA zonder wachtwoord"
+ },
+ "PhishingResistant": {
+ "description": "Phishing-resistente, wachtwoordloze methoden voor de sterkste authenticatie, zoals FIDO2-beveiligingssleutel",
+ "displayName": "MFA die bestendig tegen phishing is"
+ }
+ },
+ "PolicyControlFedAuthMethod": {
+ "ariaLabel": "Learn more about requiring authentication methods satisfied by federation providers.",
+ "certificate": "Certificaatverificatie",
+ "infoBubble": "Geef een vereiste verificatiemethode op die moet worden voldaan door de federatieprovider, bijvoorbeeld ADFS.",
+ "multifactor": "Meervoudige verificatie",
+ "require": "Federatieve verificatiemethode vereisen (preview)",
+ "whatIfFormat": "{0} - {1}"
+ },
+ "PolicyState": {
+ "off": "Uit",
+ "on": "Aan",
+ "reportOnly": "Alleen rapporteren"
+ },
+ "PolicyTemplates": {
+ "Devices": {
+ "description": "Selecteer de categorie Apparatenbeleidssjabloon om inzicht te krijgen in apparaten die toegang hebben tot het netwerk. Controleer op naleving en integriteitsstatus voordat u toegang verleent.",
+ "name": "Apparaten"
+ },
+ "Identities": {
+ "description": "Selecteer de sjablooncategorie Identiteitenbeleid om elke identiteit te verifiëren en te beveiligen met sterke verificatie in alle digitale activa.",
+ "name": "Identiteiten"
+ },
+ "Summary": {
+ "CloudApps": {
+ "allCloudApps": "Alle apps",
+ "office365": "Office 365",
+ "registerSecurityInfo": "Beveiligingsgegevens registreren"
+ },
+ "Conditions": {
+ "androidAndIOS": "Apparaatplatform: Android en iOS",
+ "anyDevice": "Elk apparaat behalve Android, iOS, Windows en Mac",
+ "anyDeviceStateExceptHybrid": "Elke apparaatstatus behalve conform en hybride Microsoft Azure Active Directory-gekoppeld",
+ "anyLocation": "Elke locatie behalve vertrouwd",
+ "browserMobileDesktop": "Client-apps: browser, mobiele apps en desktopclients",
+ "exchangeActiveSync": "Client-apps: Exchange Active Sync, andere clients",
+ "windowsAndMac": "Apparaatplatform: Windows en Mac"
+ },
+ "Devices": {
+ "anyDevice": "Elk apparaat"
+ },
+ "Grant": {
+ "appProtectionPolicy": "Beleid voor app-beveiliging vereisen",
+ "approvedClientApp": "Goedgekeurde client-apps vereisen",
+ "blockAccess": "Toegang blokkeren",
+ "mfa": "Meervoudige verificatie vereisen",
+ "passwordChange": "Wachtwoordwijziging vereisen",
+ "requireCompliantDevice": "Vereisen dat het apparaat moet worden gemarkeerd als compatibel",
+ "requireHybridAzureADDevice": "Hybride Azure AD-gekoppeld apparaat vereisen"
+ },
+ "Session": {
+ "appEnforcedRestrictions": "Door apps gehandhaafde beperkingen gebruiken",
+ "signInFrequency": "Aanmeldingsfrequentie en nooit permanente browsersessie"
+ },
+ "UsersAndGroups": {
+ "allUsers": "Alle gebruikers",
+ "directoryRoles": "Directory-rollen behalve huidige beheerder",
+ "globalAdmin": "Globale beheerder",
+ "noGuestAndAdmins": "Alle gebruikers behalve gast en extern, globale beheerders, huidige beheerder"
+ },
+ "azureManagement": "Azure-beheer",
+ "deviceFilters": "Filters voor apparaten",
+ "devicePlatforms": "Apparaatplatforms"
+ },
+ "TemplateId": {
+ "AppEnforcedRestrictions": {
+ "description": "Toegang tot SharePoint-, OneDrive- en Exchange-inhoud van niet-beheerde apparaten blokkeren of beperken.",
+ "name": "CA014: Door de toepassing afgedwongen beperkingen gebruiken voor niet-beheerde apparaten",
+ "title": "Door de toepassing afgedwongen beperkingen gebruiken voor niet-beheerde apparaten"
+ },
+ "ApprovedClientApps": {
+ "description": "Om gegevensverlies te voorkomen, kunnen organisaties de toegang tot goedgekeurde moderne verificatieclient-apps beperken met Intune-app-beveiliging.",
+ "name": "CA012: Goedgekeurde client-apps en app-beveiliging vereisen",
+ "title": "Goedgekeurde client-apps en app-beveiliging vereisen"
+ },
+ "BlockAccessOnUnknowns": {
+ "description": "Gebruikers hebben geen toegang tot bedrijfsbronnen wanneer het apparaattype onbekend of niet wordt ondersteund.",
+ "name": "CA010: Toegang blokkeren voor onbekend of niet-ondersteund apparaatplatform",
+ "title": "Toegang blokkeren voor onbekend of niet-ondersteund apparaatplatform"
+ },
+ "BlockLegacyAuth": {
+ "description": "Verouderde verificatie-eindpunten blokkeren die kunnen worden gebruikt om meervoudige verificatie te omzeilen. ",
+ "name": "CA003: verouderde verificatie blokkeren",
+ "title": "Verouderde verificatie blokkeren"
+ },
+ "NoPersistentBrowserSession": {
+ "description": "Beveilig gebruikerstoegang op niet-beheerde apparaten door te voorkomen dat browsersessies aangemeld blijven nadat de browser is gesloten en door een aanmeldingsfrequentie in te stellen op 1 uur.",
+ "name": "CA011: Geen permanente browsersessie",
+ "title": "Geen permanente browsersessie"
+ },
+ "RequireCompliantOrHybridADAdmins": {
+ "description": "Vereisen dat bevoegde beheerders alleen toegang hebben tot resources wanneer ze een compatibel of hybride Azure AD-gekoppeld apparaat gebruiken.",
+ "name": "CA009: Conformiteit van hybride Microsoft Azure Active Directory-gekoppeld apparaat vereisen voor beheerders",
+ "title": "Conformiteit van hybride Microsoft Azure Active Directory-gekoppeld apparaat vereisen voor beheerders"
+ },
+ "RequireCompliantOrHybridADAllUsers": {
+ "description": "Beveilig de toegang tot bedrijfsbronnen door gebruikers te verplichten een beheerd apparaat te gebruiken of meervoudige verificatie uit te voeren. (alleen macOS of Windows)",
+ "name": "CA013: Conformiteit van hybride Microsoft Azure Active Directory-gekoppeld apparaat of meervoudige verificatie vereisen voor alle gebruikers",
+ "title": "Conformiteitb van hybride Microsoft Azure Active Directory-gekoppeld apparaat of meervoudige verificatie vereisen voor alle gebruikers"
+ },
+ "RequireMFAAllUsers": {
+ "description": "Meervoudige verificatie vereisen voor alle gebruikersaccounts om het risico op inbreuk te verminderen.",
+ "name": "CA004: Meervoudige verificatie vereisen voor alle gebruikers",
+ "title": "Meervoudige verificatie vereisen voor alle gebruikers"
+ },
+ "RequireMFAForAdmins": {
+ "description": "Meervoudige verificatie vereisen voor bevoegde beheerdersaccounts om het risico op inbreuk te beperken. Dit beleid is gericht op dezelfde rollen als de standaardbeveiliging.",
+ "name": "CA001: Meervoudige verificatie vereisen voor beheerders",
+ "title": "Meervoudige verificatie vereisen voor beheerders"
+ },
+ "RequireMFAForAzureManagement": {
+ "description": "Vereis meervoudige verificatie om uitgebreide toegang tot Azure-resources te beveiligen.",
+ "name": "CA006: Meervoudige verificatie vereisen voor Azure-beheer",
+ "title": "Meervoudige verificatie vereisen voor Azure-beheer"
+ },
+ "RequireMFAForGuestAccess": {
+ "description": "Vereisen dat gastgebruikers meervoudige verificatie uitvoeren bij toegang tot uw bedrijfsbronnen.",
+ "name": "CA005: Meervoudige verificatie vereisen voor gasttoegang",
+ "title": "Meervoudige verificatie vereisen voor gasttoegang"
+ },
+ "RequireMFAForRiskySignIn": {
+ "description": "Meervoudige verificatie vereisen als wordt gedetecteerd dat het aanmeldingsrisico gemiddeld of hoog is. (Hiervoor is een Azure AD Premium 2-licentie vereist)",
+ "name": "CA007: Meervoudige verificatie vereisen voor riskante aanmeldingen",
+ "title": "Meervoudige verificatie vereisen voor riskante aanmeldingen"
+ },
+ "RequirePasswordChangeForHighRiskUsers": {
+ "description": "Vereisen dat de gebruiker het wachtwoord wijzigt als het gebruikersrisico hoog is. (Hiervoor is een Azure AD Premium 2-licentie vereist)",
+ "name": "CA008: Wachtwoordwijziging vereisen voor gebruikers met een hoog risico",
+ "title": "Wachtwoordwijziging vereisen voor gebruikers met een hoog risico"
+ },
+ "RequireSecurityInfo": {
+ "description": "Beveilig wanneer en hoe gebruikers zich registreren voor meervoudige verificatie via Microsoft Azure Active Directory en het wachtwoord van de selfservice. ",
+ "name": "CA002: Registratie van beveiligingsgegevens beveiligen",
+ "title": "Registratie van beveiligingsgegevens beveiligen"
+ }
+ },
+ "TemplateState": {
+ "BlockAccessOnUnknowns": {
+ "title": "Als u dit beleid inschakelt, voorkomt u toegang tot een onbekend apparaattype. Overweeg om eerst de modus Alleen rapport te gebruiken totdat u hebt bevestigd dat dit geen invloed heeft op uw gebruikers."
+ },
+ "BlockLegacyAuth": {
+ "description": "Overweeg om de modus Alleen rapport te gebruiken om mee te beginnen totdat u hebt bevestigd dat dit geen invloed heeft op uw gebruikers.",
+ "title": "Als u dit beleid inschakelt, wordt verouderde verificatie voor al uw gebruikers geblokkeerd."
+ },
+ "RequireCompliantOrHybridADAdmins": {
+ "Description": {
+ "on": "Overweeg om de modus Alleen rapport te gebruiken om mee te beginnen totdat u hebt bevestigd dat dit geen invloed heeft op uw bevoegde gebruikers.",
+ "reportOnly": "Beleidsregels in de modus Alleen rapporteren waarvoor compatibele apparaten zijn vereist, kunnen gebruikers op Mac, iOS en Android vragen om een apparaatcertificaat te selecteren tijdens de beleidsevaluatie, zelfs als apparaatnaleving niet wordt afgedwongen. Deze prompts kunnen worden herhaald totdat het apparaat compatibel is gemaakt."
+ },
+ "Title": {
+ "on": "Als u dit beleid inschakelt, wordt elke toegang voor bevoegde gebruikers voorkomen, tenzij u een beheerd apparaat gebruikt, zoals compatibel of hybride Azure AD-gekoppeld. Zorg ervoor dat u uw nalevingsbeleid hebt geconfigureerd of hybride Azure AD-configuratie hebt ingeschakeld voordat u deze inschakelt.",
+ "reportOnly": "Zorg ervoor dat u uw nalevingsbeleid hebt geconfigureerd of hybride Azure AD-configuratie hebt ingeschakeld voordat u deze inschakelt. "
+ }
+ },
+ "RequireCompliantOrHybridADAllUsers": {
+ "Description": {
+ "on": "Dit beleid is van invloed op alle gebruikers, met uitzondering van de huidige aangemelde beheerder. Overweeg om de modus Alleen rapport te gebruiken om mee te beginnen totdat u hebt bevestigd dat dit geen invloed heeft op uw gebruikers."
+ },
+ "Title": {
+ "on": "Sluit uzelf niet buiten! Zorg ervoor dat uw apparaat compatibel is of hybride Azure AD-gekoppeld is of dat u meervoudige verificatie hebt geconfigureerd. ",
+ "reportOnly": "Beleidsregels in de modus Alleen rapporteren waarvoor compatibele apparaten zijn vereist, kunnen gebruikers op Mac, iOS en Android vragen om een apparaatcertificaat te selecteren tijdens de beleidsevaluatie, zelfs als apparaatnaleving niet wordt afgedwongen. Deze prompts kunnen herhaald worden totdat het apparaat voldoet aan het beleid."
+ }
+ },
+ "RequireMfa": {
+ "description": "Als u accounts voor noodtoegang of Azure AD Connect gebruikt om de on-premises objecten te synchroniseren, moet u deze accounts na het maken mogelijk uitsluiten van dit beleid."
+ },
+ "RequireMfaAdmins": {
+ "description": "Houd er rekening mee dat het huidige beheerdersaccount automatisch wordt uitgesloten, maar alle andere accounts worden beveiligd bij het maken van beleid. U kunt de modus Alleen rapporteren gebruiken om te beginnen.",
+ "title": "Sluit uzelf niet buiten! Dit beleid heeft invloed op de Azure Portal."
+ },
+ "RequireMfaAllUsers": {
+ "description": "U kunt de modus alleen rapporteren gebruiken om te beginnen totdat u deze wijziging aan al uw gebruikers hebt doorgegeven.",
+ "title": "Als u dit beleid inschakelt, wordt meervoudige verificatie voor al uw gebruikers afgedwongen."
+ },
+ "RequireSecurityInfo": {
+ "description": "Controleer uw configuratie om deze accounts te beveiligen op basis van de behoeften van uw bedrijf.",
+ "title": "De volgende gebruikers en rollen zijn uitgesloten van dit beleid: gasten en externe gebruikers, globale beheerders, huidige beheerder"
+ }
+ },
+ "basics": "Basisinformatie",
+ "clientApps": "Client-apps",
+ "cloudApps": "Cloud-apps",
+ "cloudAppsOrActions": "Cloud-apps of -acties ",
+ "conditions": "Voorwaarden ",
+ "createNewPolicy": "Nieuw beleid maken van sjablonen (preview)",
+ "createPolicy": "Beleid maken",
+ "currentUser": "Huidige gebruiker",
+ "customizeBuild": "Uw build aanpassen",
+ "customizeTemplate": "Sjabloonlijsten worden aangepast op basis van het type beleid dat u wilt maken",
+ "excludedDevicePlatform": "Uitgesloten apparaatplatformen",
+ "excludedDirectoryRoles": "Uitgesloten directoryrollen",
+ "excludedLocation": "Uitgesloten directoryrollen",
+ "excludedUsers": "Uitgesloten gebruikers",
+ "grantControl": "Beheer toekennen ",
+ "includeFilteredDevice": "Gefilterde apparaten opnemen in het beleid",
+ "includedDevicePlatform": "Opgenomen apparaatplatformen",
+ "includedDirectoryRoles": "Opgenomen directoryrollen",
+ "includedLocation": "Inbegrepen locatie",
+ "includedUsers": "Opgenomen gebruikers",
+ "legacyAuthenticationClients": "Clients met verouderde verificatie",
+ "namePolicy": "Uw beleid een naam geven",
+ "next": "Volgende",
+ "policyName": "Beleidsnaam",
+ "policyState": "Beleidsstatus",
+ "policySummary": "Beleidsoverzicht",
+ "policyTemplate": "Beleidssjabloon",
+ "previous": "Vorige",
+ "reviewAndCreate": "Beoordelen en maken",
+ "riskLevels": "Risiconiveaus",
+ "selectATemplate": "Een sjabloon selecteren",
+ "selectTemplate": "Sjabloon selecteren",
+ "selectTemplateCategory": "Een sjablooncategorie selecteren",
+ "selectTemplateRecommendation": "We raden de volgende sjablonen aan op basis van uw antwoord",
+ "sessionControl": "Sessiebesturingselement ",
+ "signInFrequency": "Aanmeldingsfrequentie",
+ "signInRisk": "Aanmeldingsrisico",
+ "template": "Sjabloon ",
+ "templateCategory": "Sjablooncategorie",
+ "userRisk": "Gebruikersrisico",
+ "usersAndGroups": "Gebruikers en groepen ",
+ "viewPolicySummary": "Beleidsoverzicht weergeven "
+ },
+ "SSM": {
+ "MemberSelector": {
+ "description": "Gebruikers en groepen"
+ },
+ "Notification": {
+ "Migration": {
+ "error": "Migreren van instellingen voor Continue toegangsevaluatie naar beleid voor voorwaardelijke toegang is mislukt",
+ "inProgress": "Instellingen voor Continue toegangsevaluatie migreren",
+ "success": "Migreren van instellingen voor Continue toegangsevaluatie naar beleid voor voorwaardelijke toegang is geslaagd",
+ "successDescription": "Ga door naar het beleid voor voorwaardelijke toegang om de gemigreerde instellingen te bekijken in het zojuist gemaakte beleid met de naam 'CA-beleid gemaakt uit CAE-instellingen'."
+ },
+ "error": "Kan de instellingen voor Continue toegangsevaluatie niet bijwerken",
+ "inProgress": "Instellingen voor Continue toegangsevaluatie bijwerken",
+ "success": "Instellingen voor Continue toegangsevaluatie zijn bijgewerkt"
+ },
+ "PreviewOptions": {
+ "disable": "Preview uitschakelen",
+ "enable": "Preview inschakelen"
+ },
+ "StrictLocationEnforcement": {
+ "infoContent1": "Er kunnen door Azure AD en een resourceprovider verschillende IP-adressen worden gezien vanaf hetzelfde clientapparaat vanwege een niet-overeenkomende netwerkpartitie of IPv4/IPv6. Door de strikte handhaving van de locatie wordt het beleid voor voorwaardelijke toegang afgedwongen op basis van de IP-adressen die worden gezien door Azure AD en de resourceprovider.",
+ "infoContent2": "Voor een maximale beveiliging wordt aangeraden alle IP-adressen op te nemen die door zowel Azure AD als de resourceprovider kunnen worden gezien in uw benoemde-locatiebeleid en de modus Strikte locatieafdwinging in te schakelen.",
+ "label": "Strikte locatieafdwinging",
+ "title": "Aanvullende afdwingingsmodi"
+ },
+ "bladeTitle": "Continue toegangsevaluatie",
+ "description": "Wanneer de toegang van een gebruiker wordt verwijderd of als het IP-adres van een client wordt gewijzigd, wordt toegang tot resources en toepassingen in bijna realtime automatisch geblokkeerd met Continue toegangsevaluatie. ",
+ "migrateLabel": "Migreren",
+ "migrationError": "De migratie is mislukt vanwege de volgende fout: {0}",
+ "migrationInfo": "CAE-instelling is verplaatst onder Voorwaardelijke toegang UX, voer een migratie uit met de bovenstaande knop Migreren en configureer deze met het beleid voor voorwaardelijke toegang vanaf nu. Klik hier voor meer informatie.",
+ "noLicenseMessage": "Instellingen voor slim sessiebeheer beheren met Azure AD Premium",
+ "optionsPickerTitle": "Continue toegangsevaluatie inschakelen/uitschakelen",
+ "upsellInfo": "U kunt de instellingen op deze pagina niet meer wijzigen en alle instellingen hier moeten worden genegeerd. Uw vorige instelling wordt bewaard. U kunt uw CAE-instellingen voortaan configureren onder Voorwaardelijke toegang. Klik hier voor meer informatie."
+ },
+ "SelectOrganizations": {
+ "Blade": {
+ "Lower": {
+ "gridAria": "Lijst met geselecteerde organisaties"
+ },
+ "Upper": {
+ "gridAria": "Lijst met beschikbare organisaties"
+ },
+ "description": "Voeg een Azure AD-organisatie toe door een van de domeinnamen te typen.",
+ "notFoundResult": "Niet gevonden",
+ "searchBoxPlaceholder": "Tenant-ID of domeinnaam",
+ "subTitle": "Azure AD-organisatie"
+ },
+ "Selector": {
+ "AdditionalDetails": {
+ "aria": "Organisatie-id: {0}"
+ },
+ "DisplayText": {
+ "multiple": "{0} Azure AD-organisatie geselecteerd",
+ "single": "1 Azure AD-organisatie geselecteerd"
+ },
+ "gridAria": "Lijst met geselecteerde organisaties"
+ }
+ },
+ "SessionLifetime": {
+ "PersistentBrowser": {
+ "Error": {
+ "notAllApps": "Een beleid voor permanente browsersessies werkt alleen correct als de optie Alle cloud-apps is geselecteerd. Werk uw selectie cloud-apps bij."
+ },
+ "Option": {
+ "always": "Altijd permanent",
+ "help": "In een permanente browsersessie kunnen gebruikers aangemeld blijven na het sluiten en opnieuw openen van hun browservenster.
\n\n- Deze instelling werkt correct als de optie Alle cloud-apps is geselecteerd
\n- Dit heeft geen invloed op de levensduur van tokens of de instelling van aanmeldingsfrequentie.
\n- Hiermee wordt het beleid Optie om aangemeld te blijven weergeven in de aangepaste huisstijl genegeerd.
\n- De optie Nooit permanent overschrijft eventuele permanente claims van eenmalige aanmelding die zijn doorgegeven vanuit federatieve verificatieservices.
\n- Nooit permanent voorkomt eenmalige aanmelding op mobiele apparaten in en tussen toepassingen en de mobiele browser van de gebruiker.
\n",
+ "label": "Permanente browsersessie",
+ "never": "Nooit permanent"
+ },
+ "Warning": {
+ "allApps": "Permanente browsersessies werken alleen correct als de optie Alle cloud-apps is geselecteerd. Werk uw selectie cloud-apps bij. Klik hier voor meer informatie."
+ }
+ },
+ "SignInFrequency": {
+ "Aria": {
+ "units": "Uren of dagen",
+ "value": "Frequentie"
+ },
+ "Option": {
+ "Day": {
+ "plural": "{0} dagen",
+ "singular": "1 dag"
+ },
+ "Hour": {
+ "plural": "{0} uur",
+ "singular": "1 uur"
+ },
+ "daysOption": "Dagen",
+ "everytime": "Elke keer",
+ "help": "De tijdsperiode voordat een gebruiker wordt gevraagd om zich opnieuw aan te melden als hij/zij probeert een resource te openen. De standaardinstelling is een lopende telling van 90 dagen. Dit houdt in dat gebruikers wordt gevraagd zich opnieuw te verifiëren wanneer zij voor het eerst weer proberen toegang tot een resource te krijgen nadat zij 90 dagen of langer niet actief zijn geweest op hun computer.",
+ "hoursOption": "Uren",
+ "label": "Aanmeldingsfrequentie",
+ "placeholder": "Eenheden selecteren"
+ }
+ },
+ "mainOption": "Levensduur van sessie wijzigen",
+ "mainOptionHelp": "Instellen hoe vaak gebruikers vragen worden gesteld en of browsersessies permanent zijn. Toepassingen die geen moderne verificatieprotocollen ondersteunen, voldoen mogelijk niet aan dit beleid. Neem in dergelijke gevallen contact op met de toepassingsontwikkelaar."
+ },
+ "SigninRisk": {
+ "LearnMore": {
+ "message": "Beheer gebruikerstoegang om te reageren op specifieke risiconiveaus voor aanmeldingen."
+ }
+ },
+ "SingleSelectorActive": {
+ "failed": "Kan deze gegevens niet laden.",
+ "reattempt": "Gegevens laden. Nieuwe poging {0} van {1}."
+ },
+ "TimeCondition": {
+ "Errors": {
+ "both": "Ongeldig tijdsbereik voor Opnemen of Uitsluiten.",
+ "daysOfWeek": "{0} Geef ten minste één dag van de week op.",
+ "endBeforeStart": "{0} Zorg ervoor dat de begindatum/-tijd vóór de einddatum/-tijd ligt.",
+ "exclude": "Ongeldig tijdsbereik voor Uitsluiten.",
+ "generic": "{0} U moet zowel de dagen van de week als de tijdzone instellen. Als u de optie voor de hele dag niet inschakelt, moet u ook een begin- en eindtijd instellen.",
+ "include": "Ongeldig tijdsbereik voor Opnemen.",
+ "timeMissing": "{0} Geef een begin- en eindtijd op.",
+ "timeZone": "{0} Geef een tijdzone op.",
+ "timesAndZone": "{0} Stel een begintijd, eindtijd en tijdzone in."
+ }
+ },
+ "UserActions": {
+ "Included": {
+ "none": "Er zijn geen cloud-apps of acties geselecteerd",
+ "plural": "{0} gebruikersacties zijn opgenomen",
+ "singular": "1 gebruikersactie is opgenomen"
+ },
+ "accessRequirement1": "Niveau 1",
+ "accessRequirement2": "Niveau 2",
+ "accessRequirement3": "Niveau 3",
+ "accessRequirementsLabel": "Toegang tot beveiligde app-gegevens",
+ "appsActionsAuthTitle": "Cloud-apps, acties of verificatiecontext",
+ "appsOrActionsSelectorInfoBallonText": "Toepassingen die worden geopend of gebruikersacties",
+ "appsOrActionsTitle": "Cloud-apps of acties",
+ "label": "Gebruikerssacties",
+ "mainOptionsLabel": "Selecteren waarop dit beleid van toepassing is",
+ "registerOrJoinDevices": "Apparaten registreren of toevoegen",
+ "registerSecurityInfo": "Beveiligingsgegevens registreren",
+ "selectionInfo": "De actie selecteren waarop dit beleid van toepassing is",
+ "whatIf": "Gebruikersactie is opgenomen"
+ },
+ "UserSelectionBlade": {
+ "DirectoryRoles": {
+ "ariaLabel": "Directory-rollen kiezen"
+ },
+ "Excluded": {
+ "gridAria": "Lijst met uitgesloten gebruikers"
+ },
+ "Included": {
+ "gridAria": "Lijst met opgenomen gebruikers"
+ },
+ "Validation": {
+ "customRoleIncluded": "Directory-rollen bevat ten minste één aangepaste rol",
+ "customRoleSelected": "Er is ten minste één aangepaste rol geselecteerd",
+ "failed": "U moet {0} configureren",
+ "roles": "U moet ten minste één rol selecteren",
+ "usersGroups": "U moet ten minste één gebruiker of groep selecteren"
+ },
+ "learnMore": "Beheer de toegang op basis van op wie het beleid van toepassing is, zoals gebruikers en groepen, workloadidentiteiten, directoryrollen of externe gasten."
+ },
+ "ValidationResult": {
+ "blockEveryonePolicy": "De beleidsconfiguratie wordt niet ondersteund. Controleer de toewijzingen en besturingselementen.",
+ "invalidApplicationCondition": "Ongeldige cloudtoepassingen geselecteerd",
+ "invalidClientTypesCondition": "Ongeldige clienttoepassingen geselecteerd",
+ "invalidConditions": "Er zijn geen toewijzingen geselecteerd",
+ "invalidControls": "Ongeldige besturingselementen geselecteerd",
+ "invalidDevicePlatformsCondition": "Ongeldige apparaatplatformen geselecteerd",
+ "invalidDevicesCondition": "Ongeldige apparaatconfiguratie. Waarschijnlijk een ongeldige configuratie van '{0}'.",
+ "invalidGrantControlPolicy": "Ongeldig verleend besturingselement",
+ "invalidLocationsCondition": "Ongeldige locaties geselecteerd",
+ "invalidPolicy": "Er zijn geen toewijzingen geselecteerd",
+ "invalidSessionControlPolicy": "Ongeldig sessiebesturingselement",
+ "invalidSignInRisksCondition": "Ongeldig aanmeldingsrisico geselecteerd",
+ "invalidUserRisksCondition": "Ongeldig gebruikersrisico geselecteerd",
+ "invalidUsersCondition": "Ongeldige gebruikers geselecteerd",
+ "mamPolicyShouldOnlyTargetAndroidOrIosPlatforms": "Het MAM-beleid kan enkel worden toegepast op Android- of iOS-clientplatforms.",
+ "notSupportedCombination": "Beleidsconfiguratie wordt niet ondersteund. Meer informatie over ondersteunde beleidsregels.",
+ "pending": "Beleid valideren",
+ "requireComplianceEveryonePolicy": "De configuratie van het beleid vereist apparaatcompatibiliteit voor alle gebruikers. Controleer de geselecteerde toewijzingen.",
+ "success": "Geldig beleid"
+ },
+ "VpnCert": {
+ "Grid": {
+ "aria": "Lijst met VPN-certificaten"
+ }
+ },
+ "WarningsInfo": {
+ "Controls": {
+ "compliantDeviceEnabled": "Sluit uzelf niet buiten. Zorg dat uw apparaat compatibel is.",
+ "domainJoinedDeviceEnabled": "Sluit uzelf niet buiten. Controleer of uw apparaat hybride Azure AD-gekoppeld is.",
+ "exchangeDisabled": "Exchange ActiveSync biedt alleen ondersteuning voor de besturingselementen voor compatibele apparaten en goedgekeurde client-apps. Klik voor meer informatie.",
+ "exchangeDisabled2": "Exchange ActiveSync ondersteunt alleen de besturingselementen Compatibel apparaat, Goedgekeurde client-app en Compatibele client-app. Klik voor meer informatie.",
+ "notAvailableForSP": "Sommige besturingselementen zijn niet beschikbaar vanwege de selectie {0} in beleidstoewijzing",
+ "requireAuthOrMfa": "{0} kan niet worden gebruikt met {1}",
+ "requireMfa": "Overweeg de nieuwe openbare preview-versie van de {0} te testen",
+ "requirePasswordChangeEnabled": "Wijziging van wachtwoord vereisen kan alleen worden gebruikt wanneer het beleid is toegewezen aan Alle cloud-apps"
+ },
+ "Policies": {
+ "Linux": {
+ "devicePlatformsReportOnlyPolicy": "Met beleid in de modus Alleen rapporteren dat compatibele apparaten vereist, kunt u gebruikers van macOS, iOS, Android en Linux vragen om een certificaat voor het apparaat te selecteren.",
+ "excludeDevicePlatforms": "Apparaatplatformen macOS, iOS, Android en Linux uitsluiten van dit beleid.",
+ "proceedAnywayDevicePlatforms": "Ga door met de geselecteerde configuratie. Gebruikers van macOS, iOS, Android en Linux moeten mogelijk vragen beantwoorden wanneer het apparaat wordt gecontroleerd op naleving."
+ },
+ "blockCurrentUserPolicy": "Sluit uzelf niet buiten. U kunt een beleid het beste eerst op een klein aantal gebruikers toepassen om te controleren of de functie werkt zoals verwacht. Ook is het verstandig om ten minste één beheerder uit te sluiten van het beleid. Hierdoor hebt u nog steeds toegang en kunt u een beleid bijwerken als er een wijziging nodig is. Evalueer de betrokken gebruikers en apps.",
+ "devicePlatformsReportOnlyPolicy": "Met beleid in de modus Alleen rapport dat compatibele apparaten vereist, kunt u gebruikers van macOS, iOS, en Android vragen om een certificaat voor het apparaat te selecteren.",
+ "excludeCurrentUserSelection": "De huidige gebruiker ({0}) uitsluiten van dit beleid.",
+ "excludeDevicePlatforms": "Apparaatplatformen macOS, iOS en Android uitsluiten van dit beleid.",
+ "proceedAnywayDevicePlatforms": "Ga door met de geselecteerde configuratie. Gebruikers van macOS, iOS en Android moeten mogelijk vragen beantwoorden wanneer het apparaat wordt gecontroleerd op naleving.",
+ "proceedAnywaySelection": "Ik begrijp dat mijn account gevolgen ondervindt door dit beleid. Doorgaan."
+ },
+ "ServicePrincipals": {
+ "blockExchange": "Als u Office 365 Exchange Online selecteert, heeft dit ook invloed op apps als OneDrive en Teams",
+ "blockPortal": "Sluit uzelf niet buiten. Dit beleid heeft invloed op Azure Portal. Voordat u doorgaat, moet u zorgen dat u of iemand anders toegang blijft houden tot de portal.",
+ "blockPortalWithSession": "Sluit uzelf niet buiten. Dit beleid heeft invloed op Azure Portal. Voordat u doorgaat, moet u zorgen dat u of iemand anders toegang blijft houden tot de portal.
Negeer deze waarschuwing als u een beleid voor permanente browsersessies configureert dat alleen goed werkt als de optie Alle cloud-apps is geselecteerd.",
+ "blockSharePoint": "Als u SharePoint Online selecteert, heeft dit ook invloed op apps als Microsoft Teams, Planner, Delve, MyAnalytics en Newsfeed.",
+ "blockSkype": "Het selecteren van Skype voor Bedrijven Online is ook van invloed op Microsoft Teams.",
+ "includeOrExclude": "U kunt het app-filter voor {0} of {1} configureren, maar niet voor beide.",
+ "selectAppsNAForSP": "Afzonderlijke cloud-apps kunnen niet worden geselecteerd vanwege de selectie {0} in de beleidstoewijzing",
+ "teamsBlocked": "Microsoft Teams wordt ook beïnvloed wanneer apps als SharePoint Online en Exchange Online zijn opgenomen in het beleid."
+ },
+ "Users": {
+ "blockAllUsers": "Sluit uzelf niet buiten. Dit beleid geldt voor alle gebruikers. U kunt een beleid het beste eerst op een klein aantal gebruikers toepassen om te controleren of de functie werkt zoals verwacht."
+ }
+ },
+ "WhatIf": {
+ "Device": {
+ "AttributesGrid": {
+ "aria": "Lijst met kenmerken van het apparaat dat wordt gebruikt bij de aanmelding.",
+ "infoBalloon": "Lijst met kenmerken van het apparaat dat wordt gebruikt bij de aanmelding."
+ }
+ }
+ },
+ "advancedTabText": "Geavanceerd",
+ "allCloudAppsErrorBox": "Alle cloud-apps moet worden geselecteerd wanneer de toekenning Wachtwoordwijziging vereisen is geselecteerd",
+ "allCloudAppsReauth": "\"Alle cloud-apps\" moet worden geselecteerd wanneer sessiecontrole \"Aanmeldingsfrequentie elke keer\" en toestand \"aanmeldingsrisico\" zijn geselecteerd",
+ "allCloudOrSpecificApps": "Voor het sessiebeheer 'aanmeldingsfrequentie elke keer' moeten 'alle cloud-apps' of specifiek ondersteunde apps worden geselecteerd",
+ "allDayCheckboxLabel": "Hele dag",
+ "allDevicePlatforms": "Elk apparaat",
+ "allGuestUserInfoContent": "Inclusief Azure AD B2B-gasten, maar geen SharePoint B2B-gasten",
+ "allGuestUserLabel": "Alle gastgebruikers en externe gebruikers",
+ "allRiskLevelsOption": "Alle risiconiveaus",
+ "allTrustedLocationLabel": "Alle vertrouwde locaties",
+ "allUserGroupSetSelectorLabel": "Alle geselecteerde gebruikers en groepen",
+ "allUsersReauth": "Voor het sessiebesturingselement 'aanmeldingsfrequentie elke keer' moet 'Alle gebruikers' zijn geselecteerd",
+ "allUsersString": "Alle gebruikers",
+ "and": "{0} EN {1} ",
+ "andWithGrouping": "({0}) EN {1} ",
+ "androidDisplayName": "Android",
+ "anyCloudAppSelection": "Een willekeurige cloud-app",
+ "appContextOptionInfoContent": "Aangevraagde verificatietag",
+ "appContextOptionLabel": "Aangevraagde verificatietag (preview)",
+ "appContextUriPlaceholder": "Voorbeeld: uri:contoso.com:level3",
+ "appEnforceInfoBubble": "Er zijn voor door apps gehandhaafde beperkingen mogelijk aanvullende beheerdersconfiguraties vereist in de cloud-apps. De beperkingen zijn alleen van toepassing op nieuwe sessies.",
+ "appNotSetSeletorLabel": "0 cloud-apps geselecteerd",
+ "applyConditionClientAppInfoBalloonContent": "Client-apps configureren om het beleid toe te passen op specifieke client-apps",
+ "applyConditionDevicePlatformInfoBalloonContent": "Apparaatplatformen configureren om het beleid toe te passen op specifieke platformen",
+ "applyConditionDeviceStateInfoBalloonContent": "Apparaatstatus configureren om het beleid toe te passen op specifieke apparaatstatussen",
+ "applyConditionLocationInfoBalloonContent": "Locaties configureren om het beleid toe te passen op vertrouwde/niet-vertrouwde locaties",
+ "applyConditionSigninRiskInfoBalloonContent": "Aanmeldingsrisico configureren om het beleid toe te passen op de geselecteerde risiconiveaus",
+ "applyConditionUserRiskInfoBalloonContent": "Gebruikersrisico configureren om het beleid toe te passen op de geselecteerde risiconiveaus",
+ "applyConditonLabel": "Configureren",
+ "ariaLabelPolicyDisabled": "Beleid is uitgeschakeld",
+ "ariaLabelPolicyEnabled": "Beleid is ingeschakeld",
+ "ariaLabelPolicyReportOnly": "Het beleid bevindt zich in de modus voor alleen rapporteren",
+ "blockAccess": "Toegang blokkeren",
+ "builtInDirectoryRoleLabel": "Ingebouwde directory-rollen",
+ "casCustomControlInfo": "Aangepaste beleidsregels moeten worden geconfigureerd in Cloud App Security-portal. Dit besturingselement werkt direct voor aanbevolen apps en kan zelfstandig worden uitgevoerd voor elke app. Klik hier voor meer informatie over beide scenario's.",
+ "casInfoBubble": "Dit besturingselement is geschikt voor verschillende cloud-apps.",
+ "casPreconfiguredControlInfo": "Dit besturingselement werkt direct voor aanbevolen apps en kan zelfstandig worden uitgevoerd voor elke app. Klik hier voor meer informatie over beide scenario's.",
+ "cert64DownloadCol": "base64-certificaat downloaden",
+ "cert64Name": "VpnBase64Cert",
+ "certDownloadCol": "Certificaat downloaden",
+ "certDurationCol": "Vervaldatum",
+ "certDurationStartCol": "Geldig van",
+ "certName": "VpnCert",
+ "certainApps": "Alleen bepaalde apps worden ondersteund voor \"Aanmeldingsfrequentie elke keer\" als toekenningen niet zijn geselecteerd voor \"Meervoudige verificatie vereisen\" en \"Wachtwoordwijziging vereisen\"",
+ "chooseApplicationsBladeSubtitle": "",
+ "chooseApplicationsBladeTitle": "Toepassingen kiezen",
+ "chooseApplicationsCartSubitle": "",
+ "chooseApplicationsCartTitle": "Gekozen toepassingen",
+ "chooseApplicationsEmpty": "Geen toepassingen",
+ "chooseApplicationsNone": "Geen",
+ "chooseApplicationsNoneFound": "Kan {0} niet vinden. Probeer een andere naam of een andere id.",
+ "chooseApplicationsPlural": "{0} en nog {1}",
+ "chooseApplicationsReAuthEverytimeInfo": "Bent u op zoek naar uw app? Sommige toepassingen kunnen niet worden gebruikt met sessiebeheer 'Telkens opnieuw verificatie vereisen'",
+ "chooseApplicationsRemove": "Verwijderen",
+ "chooseApplicationsReturnedPlural": "{0} toepassingen gevonden",
+ "chooseApplicationsReturnedSingular": "1 toepassing gevonden",
+ "chooseApplicationsSearchBalloon": "Zoek naar een toepassing door de naam of de id in te voeren.",
+ "chooseApplicationsSearchHint": "Toepassingen zoeken...",
+ "chooseApplicationsSearchLabel": "Toepassingen",
+ "chooseApplicationsSearching": "Zoeken...",
+ "chooseApplicationsSelect": "Selecteren",
+ "chooseApplicationsSelected": "Geselecteerd",
+ "chooseApplicationsSingular": "{0} en nog 1",
+ "chooseApplicationsTooMany": "Meer resultaten dan kunnen worden weergegeven. Filter met behulp van het zoekvak.",
+ "chooseLocationCorpnetItem": "Bedrijfsnetwerk",
+ "chooseLocationSelectedLocationsLabel": "Geselecteerde locaties",
+ "chooseLocationTrustedIpsItem": "Vertrouwde IP's voor MFA",
+ "chooseLocationsBladeSubtitle": "",
+ "chooseLocationsBladeTitle": "Locaties kiezen",
+ "chooseLocationsCartSubitle": "",
+ "chooseLocationsCartTitle": "Gekozen locaties",
+ "chooseLocationsEmpty": "Geen locaties",
+ "chooseLocationsExcludedSelectorTitle": "Selecteren",
+ "chooseLocationsIncludedSelectorTitle": "Selecteren",
+ "chooseLocationsNone": "Geen",
+ "chooseLocationsNoneFound": "Kan {0} niet vinden. Probeer een andere naam of een andere id.",
+ "chooseLocationsPlural": "{0} en nog {1}",
+ "chooseLocationsRemove": "Verwijderen",
+ "chooseLocationsReturnedPlural": "{0} locaties gevonden",
+ "chooseLocationsReturnedSingular": "1 locatie gevonden",
+ "chooseLocationsSearchBalloon": "Zoek naar een locatie door de naam in te voeren.",
+ "chooseLocationsSearchHint": "Locaties zoeken...",
+ "chooseLocationsSearchLabel": "Locaties",
+ "chooseLocationsSearching": "Zoeken...",
+ "chooseLocationsSelect": "Selecteren",
+ "chooseLocationsSelected": "geselecteerd",
+ "chooseLocationsSelectionBladeExcludedSelectorTitle": "Selecteren",
+ "chooseLocationsSelectionBladeIncludedSelectorTitle": "Selecteren",
+ "chooseLocationsSingular": "{0} en nog 1",
+ "chooseLocationsTooMany": "Meer resultaten dan kunnen worden weergegeven. Filter met behulp van het zoekvak.",
+ "claimProviderAddCommandText": "Nieuw aangepast besturingselement",
+ "claimProviderAddNewBladeTitle": "Nieuw aangepast besturingselement",
+ "claimProviderDeleteCommand": "Verwijderen",
+ "claimProviderDeleteDescription": "Weet u zeker dat u {0} wilt verwijderen? Deze bewerking kan niet ongedaan worden gemaakt.",
+ "claimProviderDeleteTitle": "Weet u het zeker?",
+ "claimProviderEditInfoText": "Geef de JSON voor aangepaste besturingselementen op die is verstrekt door uw claimproviders.",
+ "claimProviderNotificationCreateDescription": "Aangepast besturingselement {0} maken",
+ "claimProviderNotificationCreateFailedDescription": "Kan het aangepaste besturingselement {0} niet maken. Probeer het later opnieuw.",
+ "claimProviderNotificationCreateFailedTitle": "Kan het aangepaste besturingselement niet maken",
+ "claimProviderNotificationCreateSuccessDescription": "Het aangepaste besturingselement {0} is gemaakt",
+ "claimProviderNotificationCreateSuccessTitle": "{0} is gemaakt",
+ "claimProviderNotificationCreateTitle": "{0} maken...",
+ "claimProviderNotificationDeleteDescription": "Het aangepaste besturingselement {0} verwijderen",
+ "claimProviderNotificationDeleteFailedDescription": "Kan het aangepaste besturingselement {0} niet verwijderen. Probeer het later opnieuw.",
+ "claimProviderNotificationDeleteFailedTitle": "Kan het aangepaste besturingselement niet verwijderen",
+ "claimProviderNotificationDeleteSuccessDescription": "Het aangepaste besturingselement {0} is verwijderd",
+ "claimProviderNotificationDeleteSuccessTitle": "{0} is verwijderd",
+ "claimProviderNotificationDeleteTitle": "{0} verwijderen...",
+ "claimProviderNotificationUpdateDescription": "Het aangepaste besturingselement {0} bijwerken",
+ "claimProviderNotificationUpdateFailedDescription": "Kan het aangepaste besturingselement {0} niet bijwerken. Probeer het later opnieuw.",
+ "claimProviderNotificationUpdateFailedTitle": "Kan het aangepaste besturingselement niet bijwerken",
+ "claimProviderNotificationUpdateSuccessDescription": "Het aangepaste besturingselement {0} is bijgewerkt",
+ "claimProviderNotificationUpdateSuccessTitle": "{0} is bijgewerkt",
+ "claimProviderNotificationUpdateTitle": "{0} bijwerken...",
+ "claimProviderValidationAppIdInvalid": "De waarde AppId is ongeldig. Controleer dit en probeer het opnieuw.",
+ "claimProviderValidationClientIdMissing": "In de gegevens ontbreekt de waarde ClientId. Controleer dit en probeer het opnieuw.",
+ "claimProviderValidationControlClaimsRequestedMissing": "In het besturingselement ontbreekt de waarde ClaimsRequested. Controleer dit en probeer het opnieuw.",
+ "claimProviderValidationControlClaimsRequestedTypeMissing": "In het item ClaimsRequested ontbreekt de waarde Type. Controleer dit en probeer het opnieuw.",
+ "claimProviderValidationControlIdAlreadyExists": "De waarde Control Id bestaat al. Controleer dit en probeer het opnieuw.",
+ "claimProviderValidationControlIdMissing": "In het besturingselement ontbreekt de waarde Id. Controleer dit en probeer het opnieuw.",
+ "claimProviderValidationControlIdReferencedInExistingPolicy": "De waarde Id van het besturingselement kan niet worden verwijderd omdat ernaar wordt verwezen in een bestaand beleid. Verwijder deze eerst uit het beleid.",
+ "claimProviderValidationControlIdTooManyControls": "De eigenschap Control bevat te veel besturingselementen. Controleer dit en probeer het opnieuw.",
+ "claimProviderValidationControlIdValueReserved": "De waarde Control Id is een gereserveerd sleutelwoord. Gebruik een andere id.",
+ "claimProviderValidationControlNameAlreadyExists": "De waarde Control Name bestaat al. Controleer dit en probeer het opnieuw.",
+ "claimProviderValidationControlNameMissing": "In het besturingselement ontbreekt de waarde Name. Controleer dit en probeer het opnieuw.",
+ "claimProviderValidationControlsMissing": "In de gegevens ontbreekt de waarde Controls. Controleer dit en probeer het opnieuw.",
+ "claimProviderValidationDiscoveryUrlMissing": "In de gegevens ontbreekt de waarde DiscoveryUrl. Controleer dit en probeer het opnieuw.",
+ "claimProviderValidationInvalid": "De verstrekte gegevens zijn ongeldig. Controleer dit en probeer het opnieuw.",
+ "claimProviderValidationInvalidJsonDefinition": "Kan het aangepaste besturingselement niet opslaan. Controleer de JSON-tekst en probeer het opnieuw.",
+ "claimProviderValidationNameAlreadyExists": "De waarde Name bestaat al. Controleer dit en probeer het opnieuw.",
+ "claimProviderValidationNameMissing": "In de gegevens ontbreekt de waarde Name. Controleer dit en probeer het opnieuw.",
+ "claimProviderValidationUnknown": "Er is een onbekende fout opgetreden tijdens het valideren van de verstrekte gegevens. Controleer dit en probeer het opnieuw.",
+ "claimProvidersNone": "Geen aangepaste besturingselementen",
+ "claimProvidersSearchPlaceholder": "Zoekbesturingselementen.",
+ "classicPoilcyFilterTitle": "Weergeven",
+ "classicPolicyAllPlatforms": "Alle platformen",
+ "classicPolicyClientAppBrowserAndNative": "Browser, mobiele apps en bureaubladclients",
+ "classicPolicyCloudAppTitle": "Cloudtoepassing",
+ "classicPolicyControlAllow": "Toestaan",
+ "classicPolicyControlBlock": "Blok",
+ "classicPolicyControlBlockWhenNotAtWork": "Toegang blokkeren bij inactiviteit",
+ "classicPolicyControlRequireCompliantDevice": "Compatibel apparaat vereisen",
+ "classicPolicyControlRequireDomainJoinedDevice": "Apparaat dat is toegevoegd aan het domein vereisen",
+ "classicPolicyControlRequireMfa": "Meervoudige verificatie vereisen",
+ "classicPolicyControlRequireMfaWhenNotAtWork": "Meervoudige verificatie vereisen bij inactiviteit",
+ "classicPolicyDeleteCommand": "Verwijderen",
+ "classicPolicyDeleteFailTitle": "Kan klassiek beleid niet verwijderen",
+ "classicPolicyDeleteInProgressTitle": "Klassiek beleid verwijderen",
+ "classicPolicyDeleteSuccessTitle": "Klassiek beleid verwijderd",
+ "classicPolicyDetailBladeTitle": "Details",
+ "classicPolicyDisableCommand": "Uitschakelen",
+ "classicPolicyDisableConfirmation": "Weet u zeker dat u {0} wilt uitschakelen? Deze bewerking kan niet ongedaan worden gemaakt.",
+ "classicPolicyDisableFailDescription": "Kan {0} niet uitschakelen",
+ "classicPolicyDisableFailTitle": "Kan klassiek beleid niet uitschakelen",
+ "classicPolicyDisableInProgressDescription": "{0} uitschakelen",
+ "classicPolicyDisableInProgressTitle": "Klassiek beleid uitschakelen",
+ "classicPolicyDisableSuccessDescription": "{0} is uitgeschakeld",
+ "classicPolicyDisableSuccessTitle": "Klassiek beleid is uitgeschakeld",
+ "classicPolicyEasSupportedPlatforms": "Ondersteunde platformen voor Exchange ActiveSync",
+ "classicPolicyEasUnsupportedPlatforms": "Niet-ondersteunde platformen voor Exchange ActiveSync",
+ "classicPolicyExcludedPlatformsTitle": "Uitgesloten apparaatplatformen",
+ "classicPolicyFilterAll": "Alle beleidsregels",
+ "classicPolicyFilterDisabled": "Uitgeschakelde beleidsregels",
+ "classicPolicyFilterEnabled": "Ingeschakelde beleidsregels",
+ "classicPolicyIncludeExcludeMembersDescription": "Door groepen uit te sluiten kunt u een gefaseerde migratie van beleidsregels uitvoeren.",
+ "classicPolicyIncludeExcludeMembersTitle": "Groepen opnemen/uitsluiten",
+ "classicPolicyIncludedPlatformsTitle": "Opgenomen apparaatplatformen",
+ "classicPolicyManualMigrationMessage": "Dit beleid moet handmatig worden gemigreerd.",
+ "classicPolicyMigrateCommand": "Migreren",
+ "classicPolicyMigrateConfirmation": "Weet u zeker dat u {0} wilt migreren? Dit beleid kan slechts eenmaal worden gemigreerd.",
+ "classicPolicyMigrateFailDescription": "Kan {0} niet migreren",
+ "classicPolicyMigrateFailTitle": "Kan klassiek beleid niet migreren",
+ "classicPolicyMigrateInProgressDescription": "{0} migreren",
+ "classicPolicyMigrateInProgressTitle": "Klassiek beleid migreren",
+ "classicPolicyMigrateRecommendText": "Aanbeveling: migreren naar het nieuwe Azure Portal-beleid.",
+ "classicPolicyMigrateSuccessTitle": "Klassiek beleid gemigreerd",
+ "classicPolicyMigratedSuccessDescription": "Dit klassieke beleid kan nu worden beheerd onder Beleid.",
+ "classicPolicyMigratedSuccessDescriptionMultiple": "Dit klassieke beleid is gemigreerd als nieuw {0}-beleid. Nieuw beleid kan worden beheerd onder Beleid.",
+ "classicPolicyNoEditPermissionMsg": "U bent niet gemachtigd om dit beleid te bewerken. Alleen globale beheerders en beveiligingsbeheerders mogen het beleid bewerken. Klik hier voor meer informatie.",
+ "classicPolicySaveFailDescription": "Kan {0} niet opslaan",
+ "classicPolicySaveFailTitle": "Kan klassiek beleid niet opslaan",
+ "classicPolicySaveInProgressDescription": "{0} opslaan",
+ "classicPolicySaveInProgressTitle": "Klassiek beleid opslaan",
+ "classicPolicySaveSuccessDescription": "{0} is opgeslagen",
+ "classicPolicySaveSuccessTitle": "Klassiek beleid opgeslagen",
+ "clientAppBladeLegacyInfoBanner": "Verificatie op basis van verouderde gegevens wordt momenteel niet ondersteund",
+ "clientAppBladeLegacyUpsellBanner": "Niet-ondersteunde client-apps blokkeren (preview)",
+ "clientAppBladeTitle": "Client-apps",
+ "clientAppDescription": "De client-apps selecteren waarop dit beleid van toepassing is",
+ "clientAppExchangeActiveSync": "Exchange ActiveSync",
+ "clientAppExchangeDisabledInfo": "Exchange ActiveSync is beschikbaar wanneer Exchange Online de enige cloud-app is die is geselecteerd. Klik voor meer informatie",
+ "clientAppExchangeWarning": "Exchange ActiveSync biedt momenteel geen ondersteuning voor alle andere voorwaarden",
+ "clientAppLearnMore": "Beheer gebruikerstoegang om u op specifieke clienttoepassingen te richten zonder moderne verificatie te gebruiken.",
+ "clientAppLegacyHeader": "Clients met verouderde verificatie",
+ "clientAppMobileDesktop": "Mobiele apps en bureaubladclients",
+ "clientAppModernHeader": "Moderne verificatieclients",
+ "clientAppOnlySupportedPlatforms": "Het beleid toepassen op ondersteunde platformen",
+ "clientAppSelectSpecificClientApps": "Client-apps selecteren",
+ "clientAppV2BladeTitle": "Client-apps (preview)",
+ "clientAppWebBrowser": "Browser",
+ "clientAppsSelectedLabel": "{0} opgenomen",
+ "clientTypeBrowser": "Browser",
+ "clientTypeEas": "Exchange ActiveSync-clients",
+ "clientTypeEasInfo": "Exchange ActiveSync-clients die alleen verouderde verificatie gebruiken.",
+ "clientTypeModernAuth": "Moderne verificatieclients",
+ "clientTypeOtherClients": "Andere clients",
+ "clientTypeOtherClientsInfo": "Dit omvat de oudere Office-clients en andere e-mailprotocollen (POP, IMAP, SMTP enzovoort). [Meer informatie][1]\n[1]: https://aka.ms/caclientapps\n",
+ "cloudAppCountDiffBannerText": "{0} cloud-apps die is/zijn geconfigureerd in dit beleid, is/zijn uit de map verwijderd, maar dit heeft geen invloed op de andere apps in het beleid. De volgende keer dat u de toepassingssectie van het beleid bijwerkt, worden de verwijderde apps automatisch verwijderd.",
+ "cloudAppsSelectionBladeAllMicrosoftApps": "Alle Microsoft-apps",
+ "cloudAppsSelectionExcludeAllMicrosoftClients": "Cloud-, desktop- en mobiele apps van Microsoft toestaan (preview)",
+ "cloudappsSelectionBladeAllCloudapps": "Alle cloud-apps",
+ "cloudappsSelectionBladeExcludeDescription": "De cloud-apps selecteren die van het beleid moeten worden uitgesloten",
+ "cloudappsSelectionBladeExcludedSelectorTitle": "Uitgesloten cloud-apps selecteren",
+ "cloudappsSelectionBladeIncludeDescription": "De cloud-apps selecteren waarop dit beleid van toepassing is",
+ "cloudappsSelectionBladeIncludedSelectorTitle": "Selecteren",
+ "cloudappsSelectionBladeSelectedCloudapps": "Apps selecteren",
+ "cloudappsSelectorInfoBallonText": "Services waarmee de gebruiker werkzaamheden uitvoert, bijvoorbeeld Salesforce",
+ "cloudappsSelectorPluralExcluded": "{0} apps uitgesloten",
+ "cloudappsSelectorPluralIncluded": "{0} apps inbegrepen",
+ "cloudappsSelectorSingularExcluded": "1 app uitgesloten",
+ "cloudappsSelectorSingularIncluded": "1 app inbegrepen",
+ "cloudappsSelectorUserPlural": "{0} apps",
+ "cloudappsSelectorUserSingular": "1 app",
+ "conditionLabelMulti": "{0} voorwaarden geselecteerd",
+ "conditionLabelOne": "1 voorwaarde geselecteerd",
+ "conditionalAccessBladeTitle": "Voorwaardelijke toegang",
+ "conditionsNotSelectedLabel": "Niet geconfigureerd",
+ "conditionsReqMfaReauthSet": "Sommige opties zijn niet beschikbaar vanwege de momenteel geselecteerde toekenning \"Meervoudige verificatie vereisen\" en sessiecontrole \"Aanmeldingsfrequentie elke keer\"",
+ "conditionsReqPwSet": "Een aantal opties is niet beschikbaar omdat de toekenning Wachtwoordwijziging vereisen momenteel is geselecteerd",
+ "configureCasText": "Cloud App Security configureren",
+ "configureCustomControlsText": "Aangepast beleid configureren",
+ "controlLabelMulti": "{0} besturingselementen geselecteerd",
+ "controlLabelOne": "1 besturingselement geselecteerd",
+ "controlValidatorText": "Selecteer minstens één besturingselement",
+ "controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
+ "controlsDeviceComplianceAriaLabel": "Learn more about requiring compliant devices.",
+ "controlsDeviceComplianceInfoBubble": "Device must be Intune compliant. If the device is non-compliant, the user will be prompted to bring the device under compliance.",
+ "controlsDomainJoinedAriaLabel": "Learn more about requiring hybrid Azure AD joined devices.",
+ "controlsDomainJoinedInfoBubble": "Apparaten moeten hybride Azure AD-gekoppeld zijn.",
+ "controlsMamAriaLabel": "Learn more about requiring approved client applications.",
+ "controlsMamInfoBubble": "Op het apparaat moeten deze goedgekeurde clienttoepassingen worden gebruikt.",
+ "controlsMfaInfoBubble": "De gebruiker moet voldoen aan aanvullende beveiligingsvereisten, bijvoorbeeld via een telefoongesprek of sms-bericht",
+ "controlsOrAndInfoBubble": "ControlsOrAndInfoBubble",
+ "controlsRequireCompliantAppAriaLabel": "Learn more about requiring policy protected apps.",
+ "controlsRequireCompliantAppInfoBubble": "Apparaat moet met beleid beveiligde apps gebruiken.",
+ "controlsRequirePasswordResetAriaLabel": "Learn more about requiring a password change.",
+ "controlsRequirePasswordResetInfoBubble": "Vereis een wachtwoordwijziging om het gebruikersrisico te verlagen. Voor deze optie is bovendien Multi-Factor Authentication vereist. Andere besturingselementen kunnen niet worden gebruikt.",
+ "countriesRadiobuttonInfoBalloonContent": "Het land/de regio waaruit een aanmelding afkomstig is, wordt bepaald door het IP-adres van de gebruiker.",
+ "createNewVpnCert": "Nieuw certificaat",
+ "createdTimeLabel": "Aanmaaktijd",
+ "customRoleLabel": "Aangepaste rollen (niet ondersteund)",
+ "dateRangeTypeLabel": "Datumbereik",
+ "daysOfWeekPlaceholderText": "Dagen van de week filteren",
+ "daysOfWeekTypeLabel": "Dagen van de week",
+ "deletePolicyNoLicenseText": "U kunt dit beleid nu verwijderen. Als het is verwijderd, kun u het niet opnieuw maken totdat u beschikt over de vereiste licenties.",
+ "descriptionContentForControlsAndOr": "Voor meerdere besturingselementen",
+ "devicePlatform": "Apparaatplatform",
+ "devicePlatformConditionHelpDescription": "Beleid toepassen op de geselecteerde apparaatplatformen.\n[Meer informatie][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2044750",
+ "devicePlatformInclude": "{0} opgenomen",
+ "devicePlatformIncludeExclude": "{0} en {1} uitgesloten",
+ "devicePlatformNoSelectionError": "Voor het selecteren van apparaatplatformen moet één subitem worden geselecteerd.",
+ "devicePlatformsNone": "Geen",
+ "deviceSelectionBladeExcludeDescription": "De platformen selecteren die van het beleid moeten worden uitgesloten",
+ "deviceSelectionBladeIncludeDescription": "De apparaatplatformen selecteren die in dit beleid moeten worden opgenomen",
+ "deviceStateAll": "Status Alle apparaten",
+ "deviceStateCompliant": "Gemarkeerd als compatibel apparaat",
+ "deviceStateCompliantInfoContent": "Apparaten die compatibel met Intune zijn, worden uitgesloten van de evaluatie van dit beleid. Als het beleid dus bijvoorbeeld de toegang blokkeert, worden alle apparaten die compatibel zijn met Intune geblokkeerd.",
+ "deviceStateConditionConfigureInfoContent": "Beleid configureren op basis van de apparaatstatus",
+ "deviceStateConditionSelectorInfoContent": "Of het apparaat waarvandaan de gebruiker zich aanmeldt 'Hybride Azure AD-gekoppeld' of 'gemarkeerd als compatibel' is.\n is afgeschaft. Gebruik in plaats daarvan '{1}'.",
+ "deviceStateConditionSelectorLabel": "Apparaatstatus (afgeschaft)",
+ "deviceStateDomainJoined": "Apparaat is hybride Azure AD-gekoppeld",
+ "deviceStateDomainJoinedInfoContent": "Apparaten die hybride Azure AD-gekoppeld zijn, worden uitgesloten van de evaluatie van dit beleid. Als het beleid dus bijvoorbeeld de toegang blokkeert, worden alle apparaten geblokkeerd, behalve apparaten die hybride Azure AD-gekoppeld zijn.",
+ "deviceStateDomainJoinedInfoLinkText": "Meer informatie.",
+ "deviceStateExcludeDescription": "De apparaatstatusvoorwaarde selecteren die wordt gebruikt om apparaten van het beleid uit te sluiten.",
+ "deviceStateIncludeAndExcludeOneLabel": "{0} en {1} uitsluiten",
+ "deviceStateIncludeAndExcludeTwoLabel": "{0} en {1}, {2} uitsluiten",
+ "directoryRoleInfoContent": "Beleid toewijzen aan ingebouwde directory-rollen.",
+ "directoryRolesLabel": "Directory-rollen",
+ "discardbutton": "Verwijderen",
+ "downloadDefaultFileName": "IP-bereiken",
+ "downloadExampleFileName": "Voorbeeld",
+ "downloadExampleHeader": "Dit is een voorbeeldbestand waarin u kunt zien wat voor soort gegevens kunnen worden geaccepteerd. Regels die beginnen met # worden genegeerd.",
+ "endDatePickerLabel": "Eindigt op",
+ "endTimePickerLabel": "Eindtijd",
+ "enterCountryText": "Het IP-adres en het land/regio worden als paar geëvalueerd. Selecteer het land.",
+ "enterIpText": "Het IP-adres en het land/regio worden als paar geëvalueerd. Geef het IP-adres op.",
+ "enterUserText": "Er is geen gebruiker geselecteerd. Selecteer een gebruiker.",
+ "evaluationResult": "Resultaat van de evaluatie",
+ "exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
+ "exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Alleen Exchange ActiveSync met ondersteunde platformen",
+ "excludeAllTrustedLocationSelectorText": "alle vertrouwde locaties",
+ "featureRequiresP2": "Voor deze functie is Azure AD Premium 2-licentie vereist.",
+ "friday": "vrijdag",
+ "grantControls": "Besturingselementen toekennen",
+ "gridNetworkTrusted": "Vertrouwd",
+ "gridPolicyCreatedDateTime": "Aanmaakdatum",
+ "gridPolicyEnabled": "Ingeschakeld",
+ "gridPolicyModifiedDateTime": "Gewijzigd op",
+ "gridPolicyName": "Beleidsnaam",
+ "gridPolicyState": "Status",
+ "groupSelectionBladeExcludeDescription": "De groepen selecteren die van het beleid zijn uitgesloten",
+ "groupSelectionBladeExcludedSelectorTitle": "Uitgesloten groepen selecteren",
+ "groupSelectionBladeSelect": "Groepen selecteren",
+ "groupSelectorInfoBallonText": "Groepen in de map waarop het beleid van toepassing is, bijvoorbeeld Testfasegroep",
+ "groupsSelectionBladeTitle": "Groepen",
+ "helpCommonScenariosText": "Geïnteresseerd in veelvoorkomende scenario's?",
+ "helpCondition1": "Wanneer een gebruiker zich buiten het netwerk van het bedrijf bevindt",
+ "helpCondition2": "Wanneer gebruikers in de groep Beheerders zich aanmelden",
+ "helpConditionsTitle": "Voorwaarden",
+ "helpControl1": "Ze moeten zich aanmelden met meervoudige verificatie",
+ "helpControl2": "Deze moeten gebruik maken van een apparaat dat conform Intune is of onderdeel van een domein is",
+ "helpControlsTitle": "Besturingselementen",
+ "helpIntroText": "Met voorwaardelijke toegang kunt u in specifieke omstandigheden toegangsvereisten afdwingen. Hier volgen enkele voorbeelden",
+ "helpIntroTitle": "Wat is voorwaardelijke toegang?",
+ "helpLearnMoreText": "Wilt u meer informatie over voorwaardelijke toegang?",
+ "helpStartStep1": "Maak uw eerste beleid door op + Nieuw beleid te klikken",
+ "helpStartStep2": "Geef beleidsvoorwaarden en -besturingselementen op",
+ "helpStartStep3": "Wanneer u klaar bent, klikt u op Beleid inschakelen en op Maken",
+ "helpStartTitle": "Aan de slag",
+ "highRisk": "Hoog",
+ "includeAndExcludeAppsTextFormat": "Opnemen: {0}. Uitsluiten: {1}.",
+ "includeAppsTextFormat": "Opnemen: {0}",
+ "includeUnknownAreasCheckboxInfoBalloonContent": "Onbekende gebieden zijn IP-adressen die niet kunnen worden toegewezen aan een land/regio.",
+ "includeUnknownAreasCheckboxLabel": "Onbekende gebieden opnemen",
+ "infoCommandLabel": "Info",
+ "invalidCertDuration": "Ongeldige certificaatduur",
+ "invalidIpAddress": "De waarde moet een geldig IP-adres zijn",
+ "invalidUriErrorMsg": "Voer een geldige URI in. Bijvoorbeeld: uri:contoso.com:acr",
+ "iosDisplayName": "iOS",
+ "linuxDisplayName": "Linux",
+ "loadAll": "Alles laden",
+ "loading": "Laden...",
+ "locationConfigureNamedLocationsText": "Alle vertrouwde locaties configureren",
+ "locationConfigureNamedLocationsUri": "{0}/usermanagement/mfasettings.aspx?tenantid={1}&culture={2}",
+ "locationNameTooLongError": "De locatienaam is te lang. U kunt maximaal 256 tekens gebruiken",
+ "locationSelectionBladeExcludeDescription": "De locaties selecteren die van het beleid moeten worden uitgesloten",
+ "locationSelectionBladeIncludeDescription": "De locaties selecteren die in dit beleid moeten worden opgenomen",
+ "locationsAllLocationsLabel": "Elke locatie",
+ "locationsAllNamedLocationsLabel": "Alle vertrouwde IP-adressen",
+ "locationsAllPrivateLinksLabel": "Alle persoonlijke koppelingen in mijn tenant",
+ "locationsIncludeExcludeLabel": "{0} en alle vertrouwde IP-adressen uitsluiten",
+ "locationsSelectedPrivateLinksLabel": "Geselecteerde persoonlijke koppelingen",
+ "lowRisk": "Laag",
+ "macOsDisplayName": "macOS",
+ "managePoliciesLicenseText": "Uw organisatie heeft Azure AD Premium P1 of P2 nodig voor het beheren van beleid voor voorwaardelijke toegang.",
+ "markAsTrustedCheckboxInfoBalloonContent": "Met het aanmelden vanaf een vertrouwde locatie wordt het aanmeldingsrisico van een gebruiker verlaagd. Markeer deze locatie alleen als vertrouwd als u er zeker van bent dat de IP-bereiken bekend en betrouwbaar zijn in uw organisatie.",
+ "markAsTrustedCheckboxLabel": "Als vertrouwde locatie markeren",
+ "mediumRisk": "Gemiddeld",
+ "memberSelectionCommandRemove": "Verwijderen",
+ "menuItemClaimProviderControls": "Aangepaste besturingselementen (preview)",
+ "menuItemClassicPolicies": "Klassieke beleidsregels",
+ "menuItemInsightsAndReporting": "Inzichten en rapportage",
+ "menuItemManage": "Beheren",
+ "menuItemNamedLocationsPreview": "Benoemde locaties (preview-versie)",
+ "menuItemNamedNetworks": "Benoemde locaties",
+ "menuItemPolicies": "Beleidsregels",
+ "menuItemTermsOfUse": "Gebruiksvoorwaarden",
+ "modifiedTimeLabel": "Tijd gewijzigd",
+ "monday": "maandag",
+ "nameLabel": "Naam",
+ "namedLocationCountryInfoBanner": "Alleen IPv4-adressen worden aan landen/regio's toegewezen. IPv6-adressen zijn opgenomen in onbekende landen/regio's.",
+ "namedLocationTypeCountry": "Landen/regio's",
+ "namedLocationTypeLabel": "De locatie definiëren met het volgende:",
+ "namedLocationUpsellBanner": "Deze weergave is afgeschaft. Ga naar de nieuwe en verbeterde weergave 'Benoemde locaties'.",
+ "namedLocationsHelpDescription": "Benoemde locaties worden gebruikt voor de Azure AD-beveiligingsrapporten voor het reduceren van het aantal fout-positieven en Azure AD-beleid voor voorwaardelijke toegang.\n[Meer informatie][1]\n[1]: https://aka.ms/namedlocationupdate",
+ "namedNetworkAddIpRanges": "Een nieuw IP-bereik toevoegen (bijvoorbeeld 40.77.182.32/27)",
+ "namedNetworkCountryNeeded": "U moet ten minste één land selecteren",
+ "namedNetworkDeleteCommand": "Verwijderen",
+ "namedNetworkDeleteDescription": "Weet u zeker dat u {0} wilt verwijderen? Deze bewerking kan niet ongedaan worden gemaakt.",
+ "namedNetworkDeleteTitle": "Weet u het zeker?",
+ "namedNetworkDownloadIpRange": "Downloaden",
+ "namedNetworkInvalidRange": "De waarde moet een geldig IP-bereik zijn.",
+ "namedNetworkIpRangeNeeded": "U hebt ten minste één geldig IP-bereik nodig",
+ "namedNetworkIpRangesDescriptionContent": "Configureer de IP-adresbereiken van uw organisatie",
+ "namedNetworkIpRangesTab": "IP-bereiken",
+ "namedNetworkListAdd": "Nieuwe locatie",
+ "namedNetworkListConfigureTrustedIps": "Vertrouwde IP's voor MFA configureren",
+ "namedNetworkNameDescription": "Bijvoorbeeld: Kantoor in Redmond",
+ "namedNetworkNameInvalid": "De opgegeven naam is ongeldig.",
+ "namedNetworkNameRequired": "U moet een naam opgeven voor deze locatie.",
+ "namedNetworkNoIpRanges": "Geen IP-bereiken",
+ "namedNetworkNotificationCreateDescription": "De locatie {0} wordt gemaakt",
+ "namedNetworkNotificationCreateFailedDescription": "Kan de locatie {0} niet maken. Probeer het later opnieuw.",
+ "namedNetworkNotificationCreateFailedTitle": "Kan de locatie niet maken",
+ "namedNetworkNotificationCreateSuccessDescription": "De locatie {0} is gemaakt",
+ "namedNetworkNotificationCreateSuccessTitle": "{0} is gemaakt",
+ "namedNetworkNotificationCreateTitle": "{0} maken...",
+ "namedNetworkNotificationDeleteDescription": "De locatie {0} wordt verwijderd",
+ "namedNetworkNotificationDeleteFailedDescription": "Kan de locatie {0} niet verwijderen. Probeer het later opnieuw.",
+ "namedNetworkNotificationDeleteFailedTitle": "Kan de locatie niet verwijderen",
+ "namedNetworkNotificationDeleteSuccessDescription": "De locatie {0} is verwijderd",
+ "namedNetworkNotificationDeleteSuccessTitle": "{0} is verwijderd",
+ "namedNetworkNotificationDeleteTitle": "{0} verwijderen...",
+ "namedNetworkNotificationUpdateDescription": "De locatie {0} wordt bijgewerkt",
+ "namedNetworkNotificationUpdateFailedDescription": "Kan de locatie {0} niet bijwerken. Probeer het later opnieuw.",
+ "namedNetworkNotificationUpdateFailedTitle": "Kan de locatie niet bijwerken",
+ "namedNetworkNotificationUpdateSuccessDescription": "De locatie {0} is bijgewerkt",
+ "namedNetworkNotificationUpdateSuccessTitle": "{0} is bijgewerkt",
+ "namedNetworkNotificationUpdateTitle": "{0} bijwerken...",
+ "namedNetworkSearchPlaceholder": "Locaties zoeken.",
+ "namedNetworkUploadFailedDescription": "Er is een fout opgetreden bij het parseren van het opgegeven bestand. Zorg ervoor dat u een bestand zonder opmaak en met alle regels in CIDR-indeling uploadt.",
+ "namedNetworkUploadFailedTitle": "Kan {0} niet parseren",
+ "namedNetworkUploadInProgressDescription": "Er wordt geprobeerd geldige CIDR-waarden uit {0} te parseren.",
+ "namedNetworkUploadInProgressTitle": "{0} parseren",
+ "namedNetworkUploadInvalidDescription": "{0} is te groot of heeft een ongeldige indeling.",
+ "namedNetworkUploadInvalidTitle": "{0} is ongeldig",
+ "namedNetworkUploadIpRange": "Uploaden",
+ "namedNetworkUploadSuccessDescription": "Er zijn {0} regels geanalyseerd. {1} met een verkeerde indeling. {2} overgeslagen.",
+ "namedNetworkUploadSuccessTitle": "Parseren van {0} is voltooid",
+ "namedNetworksAdd": "Nieuwe benoemde locatie",
+ "namedNetworksConditionHelpDescription": "Gebruikerstoegang beheren op basis van de fysieke locatie.\n[Meer informatie][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
+ "namedNetworksExcludeLabel": "{0} en {1} uitgesloten",
+ "namedNetworksHelpDescription": "Benoemde locaties worden gebruikt voor de Azure AD-beveiligingsrapporten voor het reduceren van het aantal fout-positieven en Azure AD-beleid voor voorwaardelijke toegang.\n[Meer informatie][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
+ "namedNetworksIncludeLabel": "{0} opgenomen",
+ "namedNetworksNone": "Kan geen benoemde locaties vinden.",
+ "namedNetworksTitle": "Locaties configureren",
+ "namednetworkExceedingSizeErrorBladeTitle": "Details van fout",
+ "namednetworkExceedingSizeErrorDetailText": "Klik hier voor meer details.",
+ "namednetworkExceedingSizeErrorMessage": "U hebt de maximale toegestane opslag voor benoemde locaties overschreden. Probeer het opnieuw met een kortere lijst. Klik hier voor meer informatie.",
+ "needMfaSecondary": "\"Meervoudige verificatie vereisen\" moet worden geselecteerd wanneer \"Aanmeldingsfrequentie elke keer\" is geselecteerd met \"Alleen secundaire verificatiemethoden\"",
+ "newCertName": "nieuw certificaat",
+ "noAttributePermissionsError": "Onvoldoende bevoegdheden om beleid te maken of bij te werken. De rol van kenmerkdefinitielezer is vereist om dynamische filters toe te voegen of te bewerken.",
+ "noPolicyRowMessage": "Geen beleidsregels",
+ "noSPSelected": "Er is geen service-principal geselecteerd",
+ "noUpdatePermissionMessage": "U hebt geen machtigingen om deze instellingen bij te werken. Neem contact op met de globale beheerder om toegang aan te vragen.",
+ "noUserSelected": "Geen gebruiker geselecteerd",
+ "noneRisk": "Geen risico",
+ "office365Description": "Deze apps omvatten onder meer Microsoft Flow, Microsoft Forms, Microsoft Teams, Office 365 Exchange Online, Office 365 SharePoint Online en Office 365 Yammer.",
+ "office365InfoBox": "Ten minste één van de geselecteerde apps is onderdeel van Office 365. U kunt het beste in plaats hiervan het beleid instellen voor de Office 365-app.",
+ "oneUserSelected": "1 gebruiker geselecteerd",
+ "onlyGlobalAdminsCanSaveThisPolicyConfig": "Alleen globale beheerders kunnen dit beleid opslaan.",
+ "or": "{0} OF {1} ",
+ "pickerDoneCommand": "Gereed",
+ "policiesBladeAdPremiumUpsellBannerText": "Maak uw eigen beleid en doelspecifieke voorwaarden zoals Cloud-apps, Aanmeldingsrisico en Apparaatplatformen met Azure AD Premium",
+ "policiesBladeTitle": "Beleidsregels",
+ "policiesBladeTitleWithAppName": "Beleid: {0}",
+ "policiesDisabledBannerText": "Het maken en bewerken van beleid is niet toegestaan voor toepassingen waaraan een aanmeldingskenmerk is gekoppeld.",
+ "policiesHitMaxLimitStatusBarMessage": "U hebt het maximale aantal beleidsregels voor deze tenant bereikt. Verwijder enkele beleidsregels voordat u er meer maakt.",
+ "policyAssignmentsSection": "Toewijzingen",
+ "policyBlockAllInfoBox": "Het geconfigureerde beleid blokkeert alle gebruikers, dus dit wordt niet ondersteund. Controleer de toewijzingen en besturingselementen. Sluit de huidige gebruiker {0} uit als u dit beleid wilt opslaan.",
+ "policyCloudAppsDisplayTextAllApp": "Alle apps",
+ "policyCloudAppsLabel": "Cloud-apps",
+ "policyConditionClientAppDescription": "Software die de gebruiker implementeert voor toegang tot de cloud-app, bijvoorbeeld Browser",
+ "policyConditionClientAppV2Description": "Software die de gebruiker implementeert voor toegang tot de cloud-app, bijvoorbeeld Browser",
+ "policyConditionDevicePlatform": "Apparaatplatformen",
+ "policyConditionDevicePlatformDescription": "Platform waarmee de gebruiker zich aanmeldt, bijvoorbeeld iOS",
+ "policyConditionLocation": "Locaties",
+ "policyConditionLocationDescription": "Locatie (bepaald op basis van IP-adresbereik) waarvandaan de gebruiker zich aanmeldt",
+ "policyConditionSigninRisk": "Aanmeldingsrisico",
+ "policyConditionSigninRiskDescription": "De kans dat iemand anders dan de gebruiker zich probeert aan te melden. Het risiconiveau kan hoog, gemiddeld of laag zijn. Hiervoor is een Azure AD Premium 2-licentie vereist.",
+ "policyConditionUserRisk": "Gebruikersrisico",
+ "policyConditionUserRiskDescription": "Gebruikersrisiconiveaus configureren die nodig zijn om beleid af te dwingen",
+ "policyConditioniClientApp": "Client-apps",
+ "policyConditioniClientAppV2": "Client-apps (preview)",
+ "policyControlAllowAccessDisplayedName": "Toegang verlenen",
+ "policyControlAuthenticationStrengthDisplayedName": "Verificatiesterkte vereisen (preview)",
+ "policyControlBladeTitle": "Verlenen",
+ "policyControlBlockAccessDisplayedName": "Toegang blokkeren",
+ "policyControlCompliantDeviceDisplayedName": "Vereisen dat het apparaat moet worden gemarkeerd als compatibel",
+ "policyControlContentDescription": "Het afdwingen van toegang beheren om toegang te blokkeren of te verlenen.",
+ "policyControlInfoBallonText": "Toegang blokkeren of aanvullende vereisten selecteren waaraan moet worden voldaan voordat toegang wordt verleend",
+ "policyControlMfaChallengeDisplayedName": "Meervoudige verificatie vereisen",
+ "policyControlRequireCompliantAppDisplayedName": "Beleid voor app-beveiliging vereisen",
+ "policyControlRequireDomainJoinedDisplayedName": "Hybride Azure AD-gekoppeld apparaat is vereist",
+ "policyControlRequireMamDisplayedName": "Goedgekeurde client-apps vereisen",
+ "policyControlRequiredPasswordChangeDisplayedName": "Wachtwoordwijziging vereisen",
+ "policyControlSelectAuthStrength": "Verificatiesterkte vereisen",
+ "policyControlsNoControlsSelected": "0 besturingselementen geselecteerd",
+ "policyControlsSection": "Besturingselementen voor toegang",
+ "policyCreatBladeTitle": "Nieuw",
+ "policyCreateButton": "Maken",
+ "policyCreateFailedMessage": "Fout: {0}",
+ "policyCreateFailedTitle": "Kan {0} niet maken",
+ "policyCreateInProgressTitle": "{0} maken...",
+ "policyCreateSuccessMessage": "{0} is gemaakt. Het beleid wordt over enkele minuten ingeschakeld als u Beleid inschakelen hebt ingesteld op Aan.",
+ "policyCreateSuccessTitle": "{0} is gemaakt",
+ "policyDeleteConfirmation": "Weet u zeker dat u {0} wilt verwijderen? Deze bewerking kan niet ongedaan worden gemaakt.",
+ "policyDeleteFailTitle": "Kan {0} niet verwijderen",
+ "policyDeleteInProgressTitle": "{0} verwijderen...",
+ "policyDeleteSuccessTitle": "{0} is verwijderd",
+ "policyEnforceLabel": "Beleid inschakelen",
+ "policyErrorCannotSetSigninRisk": "U beschikt niet over de benodigde machtigingen om een beleid met een voorwaarde voor aanmeldingsrisico op te slaan.",
+ "policyErrorNoPermission": "U beschikt niet over de benodigde machtiging om het beleid op te slaan. Neem contact op met de globale beheerder.",
+ "policyErrorUnknown": "Er is iets fout gegaan. Probeer het later opnieuw.",
+ "policyFallbackWarningMessage": "Kan {0} niet maken of bijwerken met Microsoft Graph, wat resulteert in een terugval naar AD Graph. Onderzoek het volgende scenario omdat er waarschijnlijk een fout optreedt bij het aanroepen van het beleidseindpunt voor Microsoft Graph met een incompatibele voorwaarde.",
+ "policyFallbackWarningTitle": "{0} maken of bijwerken is gedeeltelijk voltooid",
+ "policyNameCannotBeEmpty": "De naam van het beleid mag niet leeg zijn",
+ "policyNameDevice": "Apparaatbeleid",
+ "policyNameFormat": "[{0}] {1}",
+ "policyNameMam": "Mobile App Management-beleid",
+ "policyNameMfaLocation": "MFA en locatiebeleid",
+ "policyNamePlaceholderText": "Bijvoorbeeld: App-beleid voor apparaatcompatibiliteit",
+ "policyNameTooLongError": "De beleidsnaam is te lang. U kunt maximaal 256 tekens gebruiken.",
+ "policyOff": "Uit",
+ "policyOn": "Aan",
+ "policyReportOnly": "Alleen rapporteren",
+ "policyReviewSection": "Beoordelen",
+ "policySaveButton": "Opslaan",
+ "policyStatusIconDescription": "Beleid ingeschakeld",
+ "policyStatusIconEnabled": "Ingeschakeld statuspictogram",
+ "policyTemplateName1": "Door apps gehandhaafde beperkingen gebruiken voor browsertoegang van {0}",
+ "policyTemplateName2": "Alleen toegang tot beheerde apparaten toestaan voor {0}",
+ "policyTemplateName3": "Het beleid is gemigreerd van instellingen van Continue toegangsevaluatie",
+ "policyTriggerRiskSpecific": "Specifiek risiconiveau selecteren",
+ "policyTriggersInfoBalloonText": "Voorwaarden waarmee wordt gedefinieerd wanneer het beleid van toepassing is, bijvoorbeeld locatie",
+ "policyTriggersNoConditionsSelected": "0 voorwaarden geselecteerd",
+ "policyTriggersSelectorLabel": "Voorwaarden",
+ "policyUpdateFailedMessage": "Fout: {0}",
+ "policyUpdateFailedTitle": "Kan {0} niet bijwerken",
+ "policyUpdateInProgressTitle": "{0} bijwerken",
+ "policyUpdateSuccessMessage": "{0} is bijgewerkt. Het beleid wordt over enkele minuten ingeschakeld als u Beleid inschakelen hebt ingesteld op Aan.",
+ "policyUpdateSuccessTitle": "{0} is bijgewerkt",
+ "primaryCol": "Primair",
+ "privateLinkLabel": "Azure AD Private Link",
+ "reportOnlyInfoBox": "Modus voor alleen rapporteren: beleidsregels worden geëvalueerd en geregistreerd tijdens aanmelden, maar dit heeft geen impact voor gebruikers.",
+ "requireAllControlsText": "Alle geselecteerde besturingselementen vereisen",
+ "requireCompliantDevice": "Compatibel apparaat vereisen",
+ "requireDomainJoined": "Aan domein toegevoegd apparaat vereisen",
+ "requireGrantReauth": "Het sessiebesturingselement 'aanmeldingsfrequentie elke keer' vereist 'meervoudige verificatie vereisen' of 'wachtwoordwijziging vereisen' wanneer 'Alle cloud-apps' is geselecteerd",
+ "requireMFA": "Meervoudige verificatie vereisen ",
+ "requireMfaReauth": "Voor het sessiebeheer 'aanmeldingsfrequentie elke keer' is het toekenningsbeheer 'Meervoudige verificatie vereisen' vereist voor 'aanmeldingsrisico'",
+ "requireOneControlText": "Een van de geselecteerde besturingselementen vereisen",
+ "requirePasswordChangeReauth": "Voor het sessiebeheer 'aanmeldingsfrequentie elke keer' is de toekenningsbesturing 'wachtwoordwijziging vereisen' vereist voor 'gebruikersrisico'",
+ "requireRiskReauth": "Het sessiebesturingselement 'aanmeldingsfrequentie elke keer' vereist het sessiebeheer 'gebruikersrisico' of 'aanmeldingsrisico' wanneer 'alle cloud-apps' is geselecteerd.",
+ "resetFilters": "Filters opnieuw instellen",
+ "sPRequired": "Service-principal vereist",
+ "sPSelectorInfoBalloon": "De gebruiker of service-principal die u wilt testen",
+ "saturday": "zaterdag",
+ "searchTextTooLongError": "De zoektekst is te lang. Het maximum is 256 tekens",
+ "securityDefaultsPolicyName": "Standaardinstellingen voor beveiliging",
+ "securityDefaultsTextMessage": "Standaardinstellingen voor beveiliging moeten zijn uitgeschakeld om beleid voor voorwaardelijke toegang in te schakelen.",
+ "securityDefaultsWarningMessage": "U gaat nu de beveiligingsconfiguraties van uw organisatie beheren. Goed hoor! U moet eerst de standaardinstellingen voor beveiliging uitschakelen voordat u een beleid voor voorwaardelijke toegang inschakelt.",
+ "selectDevicePlatforms": "Apparaatplatformen selecteren",
+ "selectNamedNetworksSubtitle": "",
+ "selectNamedNetworksTitle": "Locaties selecteren",
+ "selectedSP": "Geselecteerde service-principal",
+ "servicePrincipalDataGridAria": "Lijst met beschikbare service-principals",
+ "servicePrincipalDropDownLabel": "Waarop is dit beleid van toepassing?",
+ "servicePrincipalInfoBox": "Sommige voorwaarden zijn niet beschikbaar vanwege de selectie '{0}' in beleidstoewijzing",
+ "servicePrincipalRadioAll": "Alle service-principals in eigendom",
+ "servicePrincipalRadioSelect": "Service-principal selecteren",
+ "servicePrincipalSelectionsAria": "Geselecteerd service-principalsraster",
+ "servicePrincipalSelectorAria": "Lijst met gekozen service-principals",
+ "servicePrincipalSelectorMultiple": "{0} service-principal zijn geselecteerd",
+ "servicePrincipalSelectorSingle": "1 service-principal is geselecteerd",
+ "servicePrincipalSpecificInc": "Specifieke service-principals opgenomen",
+ "servicePrincipals": "Service-principals",
+ "sessionControlBladeTitle": "Sessie",
+ "sessionControlDescriptionContent": "Beheer de toegang op basis van sessiebeheer om beperkte ervaringen in specifieke cloudtoepassingen in te schakelen.",
+ "sessionControlDisableInfo": "Dit besturingselement werkt alleen bij ondersteunde apps. Office 365, Exchange Online en SharePoint Online zijn momenteel de enige cloud-apps die door apps gehandhaafde beperkingen ondersteunen. Klik hier voor meer informatie.",
+ "sessionControlInfoBallonText": "Met de sessiebesturingselementen wordt de beperkte ervaring in een cloud-app ingeschakeld.",
+ "sessionControls": "Sessiebesturingselementen",
+ "sessionControlsAppEnforcedLabel": "Door apps gehandhaafde beperkingen gebruiken",
+ "sessionControlsCasLabel": "App-beheer voor voorwaardelijke toegang gebruiken",
+ "sessionControlsSecureSignInLabel": "Tokenbinding vereist",
+ "sharepointAppName": "SharePoint",
+ "signinRiskDescription": "Het niveau voor aanmeldingsrisico selecteren waarop dit beleid van toepassing is",
+ "signinRiskInclude": "{0} opgenomen",
+ "signinRiskReauth": "\"Aanmeldingsrisico\"-voorwaarde moet worden geselecteerd wanneer toekenning \"Meervoudige verificatie vereisen\" en sessiecontrole \"Aanmeldingsfrequentie elke keer\" zijn geselecteerd",
+ "signinRiskTriggerDescriptionContent": "Het niveau voor het aanmeldingsrisico selecteren",
+ "singleTenantServicePrincipalInfoBallonText": "Beleid is alleen van toepassing op service-principals met één tenant die eigendom zijn van uw organisatie. Klik hier voor meer informatie ",
+ "specificSigninRiskLevelsOption": "Specifieke risiconiveaus voor aanmeldingen selecteren",
+ "specificUsersExcluded": "specifieke gebruikers uitgesloten",
+ "specificUsersIncluded": "Specifieke gebruikers opgenomen",
+ "specificUsersIncludedAndExcluded": "Specifieke uitgesloten en opgenomen gebruikers",
+ "startDatePickerLabel": "Start",
+ "startFreeTrial": "Start een gratis proefversie",
+ "startTimePickerLabel": "Begintijd",
+ "sunday": "zondag",
+ "testButton": "What If",
+ "thumbprintCol": "Vingerafdruk",
+ "thursday": "donderdag",
+ "timeConditionAllTimesLabel": "Willekeurig",
+ "timeConditionIntroText": "De tijd configureren waarop dit beleid van toepassing is",
+ "timeConditionSelectorInfoBallonContent": "Wanneer de gebruiker zich aanmeldt, bijvoorbeeld woensdag van 09:00 - 17:00 uur CEST",
+ "timeConditionSelectorLabel": "Tijd (preview)",
+ "timeConditionSpecificLabel": "Specifieke tijden",
+ "timeSelectorAllTimesText": "Willekeurig",
+ "timeSelectorSpecificTimesText": "Specifieke geconfigureerde tijden",
+ "timeZoneDropdownInfoBalloonContent": "Selecteer een tijdzone waarmee het tijdsbereik wordt gedefinieerd. Dit beleid is van toepassing op gebruikers in alle tijdzones. Zo kan 'woensdag van 9:00 - 17:00' het tijdsbereik voor de ene gebruiker zijn en 'woensdag van 10;00 - 18:00 uur' het tijdsbereik voor een gebruiker in een andere tijdzone.",
+ "timeZoneDropdownLabel": "Tijdzone",
+ "timeZoneDropdownPlaceholderText": "Selecteer een tijdzone",
+ "tooManyPoliciesDescription": "Alleen de eerste 50 beleidsregels worden nu weergegeven. Klik hier om alle beleidsregels weer te geven",
+ "tooManyPoliciesTitle": "Meer dan 50 beleidsregels gevonden",
+ "trustedLocationStatusIconDescription": "De locatie is vertrouwd",
+ "trustedLocationStatusIconEnabled": "Pictogram voor vertrouwde status",
+ "tuesday": "dinsdag",
+ "uploadInBadState": "Kan het opgegeven bestand niet uploaden.",
+ "upsellAppsDescription": "Altijd meervoudige verificatie vereisen voor gevoelige toepassingen of alleen voor toepassingen buiten het bedrijfsnetwerk.",
+ "upsellAppsTitle": "Beveiligde toepassingen",
+ "upsellBannerText": "Neem een gratis Premium-proefversie als u deze functie wilt gebruiken",
+ "upsellDataDescription": "Vereisen dat het apparaat moet worden gemarkeerd als compatibel of hybride Azure AD-gekoppeld voor toegang tot bedrijfsresources.",
+ "upsellDataTitle": "Beveiligde gegevens",
+ "upsellDescription": "Met voorwaardelijke toegang beschikt u over de controle en beveiliging die u nodig hebt om uw bedrijfsgegevens veilig te houden, terwijl gebruikers hun werkzaamheden op elk apparaat kunnen uitvoeren. U kunt bijvoorbeeld de toegang van buiten het bedrijfsnetwerk beperken of de toegang beperken tot apparaten die voldoen aan het nalevingsbeleid.",
+ "upsellRiskDescription": "Vereis meervoudige verificatie voor risicogebeurtenissen die door het Machine Learning-systeem van Microsoft worden gedetecteerd.",
+ "upsellRiskTitle": "Beschermen tegen risico's",
+ "upsellTitle": "Voorwaardelijke toegang",
+ "upsellWhyTitle": "Waarom zou ik voorwaardelijke toegang gebruiken?",
+ "userAppNoneOption": "Geen",
+ "userNamePlaceholderText": "Gebruikersnaam invoeren",
+ "userNotSetSeletorLabel": "0 gebruikers en groepen geselecteerd",
+ "userOnlySelectionBladeExcludeDescription": "De gebruikers selecteren die van het beleid moeten worden uitgesloten",
+ "userOrGroupSelectionCountDiffBannerText": "{0} die zijn geconfigureerd in dit beleid, zijn uit de map verwijderd, maar dit heeft geen invloed op de andere gebruikers en groepen in het beleid. De volgende keer dat u het beleid bijwerkt, worden de verwijderde gebruikers en/of groepen automatisch verwijderd.",
+ "userOrSPNotSetSelectorLabel": "0 gebruikers of werkbelastingsidentiteiten geselecteerd",
+ "userOrSPSelectionBladeTitle": "Gebruikers of werkbelastingsidentiteiten",
+ "userOrSPSelectorInfoBallonText": "Identiteiten in de map waarop het beleid van toepassing is, inclusief gebruikers, groepen en service-principals",
+ "userRequired": "Gebruiker vereist",
+ "userRiskErrorBox": "De voorwaarde Gebruikersrisico moet worden geselecteerd wanneer de toekenning Wachtwoordwijziging vereisen is geselecteerd",
+ "userRiskReauth": "\"Gebruikersrisico\"-voorwaarde en niet \"Aanmeldingsrisico\" moet worden geselecteerd wanneer toekenning \"Wachtwoordwijziging vereisen\" en sessiecontrole \"Aanmeldingsfrequentie elke keer\" zijn geselecteerd",
+ "userSPRequired": "Gebruiker of service-principal vereist",
+ "userSPSelectorTitle": "Gebruiker of werkbelastingsidentiteit",
+ "userSelectionBladeAllUsersAndGroups": "Alle gebruikers en groepen",
+ "userSelectionBladeExcludeDescription": "De gebruikers en groepen selecteren die van het beleid moeten worden uitgesloten",
+ "userSelectionBladeExcludeTabTitle": "Uitsluiten",
+ "userSelectionBladeExcludedSelectorTitle": "Uitgesloten gebruikers selecteren",
+ "userSelectionBladeIncludeDescription": "De gebruikers selecteren waarop dit beleid van toepassing is",
+ "userSelectionBladeIncludeTabTitle": "Opnemen",
+ "userSelectionBladeIncludedSelectorTitle": "Selecteren",
+ "userSelectionBladeSelectUsers": "Gebruikers selecteren",
+ "userSelectionBladeSelectedUsers": "Gebruikers en groepen selecteren",
+ "userSelectionBladeTitle": "Gebruikers en groepen",
+ "userSelectorBladeTitle": "Gebruikers",
+ "userSelectorExcluded": "{0} uitgesloten",
+ "userSelectorGroupPlural": "{0} groepen",
+ "userSelectorGroupSingular": "1 groep",
+ "userSelectorIncluded": "{0} opgenomen",
+ "userSelectorInfoBallonText": "Gebruikers en groepen in de map waarop het beleid van toepassing is, bijvoorbeeld Testfasegroep",
+ "userSelectorSelected": "{0} geselecteerd",
+ "userSelectorTitle": "Gebruiker",
+ "userSelectorUserAndGroup": "{0}, {1}",
+ "userSelectorUserPlural": "{0} gebruikers",
+ "userSelectorUserSingular": "1 gebruiker",
+ "userSelectorWithExclusion": "{0} en {1}",
+ "usersGroupsLabel": "Gebruikers en groepen",
+ "viewApprovedAppsText": "Lijst met goedgekeurde clientapps weergeven",
+ "viewCompliantAppsText": "Lijst met door beleid beveiligde client-apps weergeven",
+ "vpnBladeTitle": "VPN-verbinding",
+ "vpnCertCreateFailedMessage": "Fout: {0}",
+ "vpnCertCreateFailedTitle": "Kan {0} niet maken",
+ "vpnCertCreateInProgressTitle": "{0} maken",
+ "vpnCertCreateSuccessMessage": "{0} is gemaakt.",
+ "vpnCertCreateSuccessTitle": "{0} is gemaakt",
+ "vpnCertNoRowsMessage": "Geen VPN-certificaten gevonden",
+ "vpnCertUpdateFailedMessage": "Fout: {0}",
+ "vpnCertUpdateFailedTitle": "Kan {0} niet bijwerken",
+ "vpnCertUpdateInProgressTitle": "{0} bijwerken",
+ "vpnCertUpdateSuccessMessage": "{0} is bijgewerkt.",
+ "vpnCertUpdateSuccessTitle": "{0} is bijgewerkt",
+ "vpnFeatureInfo": "Klik hier voor meer informatie over de VPN-verbinding en voorwaardelijke toegang.",
+ "vpnFeatureWarning": "Nadat een VPN-certificaat is gemaakt in Azure Portal, wordt het direct door Azure AD gebruikt om certificaten met korte levensduur te verlenen aan de VPN-client. Het is van cruciaal belang dat het VPN-certificaat direct wordt geïmplementeerd op de VPN-server om eventuele problemen met de validatie van referenties van de VPN-client te voorkomen.",
+ "vpnMenuText": "VPN-verbinding",
+ "vpncertDropdownDefaultOption": "Duur",
+ "vpncertDropdownInfoBalloonContent": "Selecteer de duur van het certificaat dat u wilt maken",
+ "vpncertDropdownLabel": "Duur selecteren",
+ "vpncertDropdownOneyearOption": "1 jaar",
+ "vpncertDropdownThreeyearOption": "Drie jaar",
+ "vpncertDropdownTwoyearOption": "Twee jaar",
+ "wednesday": "woensdag",
+ "whatIfAppEnforcedControl": "Door apps gehandhaafde beperkingen gebruiken",
+ "whatIfBladeDescription": "De gevolgen van voorwaardelijke toegang op een gebruiker testen wanneer deze zich aanmeldt onder bepaalde omstandigheden.",
+ "whatIfBladeTitle": "What If",
+ "whatIfClassicPoliciesWarning": "Klassiek beleid wordt niet door dit hulpprogramma geëvalueerd.",
+ "whatIfClientAppInfo": "De client-app waarmee de gebruiker zich aanmeldt, bijvoorbeeld Browser.",
+ "whatIfCountry": "Land",
+ "whatIfCountryInfo": "Het land waaruit de gebruiker zich aanmeldt.",
+ "whatIfDevicePlatformInfo": "Het apparaatplatform waarmee de gebruiker zich aanmeldt.",
+ "whatIfDeviceStateInfo": "De apparaatstatus waarmee de gebruiker zich aanmeldt",
+ "whatIfEnterIpAddress": "IP-adres invoeren (bijvoorbeeld 40.77.182.32)",
+ "whatIfErrorInvalidIpAddress": "Er is een ongeldig IP-adres opgegeven.",
+ "whatIfEvaResultApplication": "Cloud-apps",
+ "whatIfEvaResultClientApps": "Client-app",
+ "whatIfEvaResultDevicePlatform": "Apparaatplatform",
+ "whatIfEvaResultEmptyPolicy": "Leeg beleid",
+ "whatIfEvaResultInvalidCondition": "Ongeldige voorwaarde",
+ "whatIfEvaResultInvalidPolicy": "Ongeldig beleid",
+ "whatIfEvaResultLocation": "Locatie",
+ "whatIfEvaResultNotEnoughInformation": "Onvoldoende informatie",
+ "whatIfEvaResultPolicyNotEnabled": "Beleid is niet ingeschakeld",
+ "whatIfEvaResultSignInRisk": "Aanmeldingsrisico",
+ "whatIfEvaResultUsers": "Gebruikers en groepen",
+ "whatIfIpAddress": "IP-adres",
+ "whatIfIpAddressInfo": "Het IP-adres waarvandaan de gebruiker zich aanmeldt.",
+ "whatIfIpCountryInfoBoxText": "Als u een IP-adres of land/regio gebruikt, zijn beide velden vereist en moeten correct samen toegewezen zijn.",
+ "whatIfPolicyAppliesTab": "Beleidsregels die worden toegepast",
+ "whatIfPolicyDoesNotApplyTab": "Beleidsregels die niet worden toegepast",
+ "whatIfReasons": "Redenen waarom dit beleid niet wordt toegepast",
+ "whatIfSelectClientApp": "Een client-app selecteren...",
+ "whatIfSelectCountry": "Land selecteren...",
+ "whatIfSelectDevicePlatform": "Apparaatplatformen selecteren...",
+ "whatIfSelectPrivateLink": "Privékoppeling selecteren...",
+ "whatIfSelectServicePrincipalRisk": "Risico van service-principal selecteren...",
+ "whatIfSelectSignInRisk": "Aanmeldingsrisico selecteren...",
+ "whatIfSelectType": "Identiteitstype selecteren",
+ "whatIfSelectUserRisk": "Gebruikersrisico selecteren...",
+ "whatIfServicePrincipalRiskInfo": "Het risiconiveau dat is gekoppeld aan de service-principal",
+ "whatIfSignInRisk": "Aanmeldingsrisico",
+ "whatIfSignInRiskInfo": "Het risiconiveau gekoppeld aam de aanmelding",
+ "whatIfUnknownAreas": "Onbekende gebieden",
+ "whatIfUserPickerLabel": "Geselecteerde gebruiker",
+ "whatIfUserPickerNoRowsLabel": "Er is geen gebruiker of service-principal geselecteerd",
+ "whatIfUserRiskInfo": "Het risiconiveau dat is gekoppeld aan de gebruiker",
+ "whatIfUserSelectorInfo": "Een gebruiker in de adreslijst die u wilt testen",
+ "windows365InfoBox": "Als u Windows 365 selecteert, is dit van invloed op verbindingen met cloud-pc's en Azure Virtual Desktop-sessiehosts. Klik hier voor meer informatie.",
+ "windowsDisplayName": "Windows",
+ "windowsPhoneDisplayName": "Windows Phone",
+ "workloadIdentities": "Workloadidentiteiten (preview-versie)",
+ "workloadIdentity": "Workload-identiteit"
+ },
+ "AppResources": {
+ "AppSettingsUx": {
+ "assignmentFilterColumnHeader": "Filter",
+ "assignmentFilterTypeColumnHeader": "Filtermodus",
+ "assignmentToast": "Meldingen van eindgebruiker",
+ "assignmentTypeTableHeader": "TOEWIJZINGSTYPE",
+ "deadlineTimeColumnLabel": "Installatiedeadline",
+ "deliveryOptimizationPriorityHeader": "Delivery Optimization-prioriteit",
+ "groupTableHeader": "Groep",
+ "installContextLabel": "Context installeren",
+ "isRemovable": "Installeren als verwisselbaar",
+ "licenseTypeLabel": "Licentietype",
+ "modeTableHeader": "Groepsmodus",
+ "policySet": "Beleidsset",
+ "restartGracePeriodHeader": "Respijtperiode voor opnieuw opstarten",
+ "startTimeColumnLabel": "Beschikbaarheid",
+ "tracks": "Tracks",
+ "uninstallOnRemoval": "Verwijderen bij verwijdering van apparaat",
+ "updateMode": "Updateprioriteit",
+ "vPN": "VPN"
+ },
+ "AppType": {
+ "aADWebApp": "AAD-web-app",
+ "androidEnterpriseSystemApp": "Android Enterprise-systeem-app",
+ "androidForWorkApp": "Beheerde Google Play Store-app",
+ "androidLobApp": "Line-Of-Business-app voor Android",
+ "androidStoreApp": "Android Store-app",
+ "builtInAndroid": "Ingebouwde Android-app",
+ "builtInApp": "Ingebouwde app",
+ "builtInIos": "Ingebouwde iOS-app",
+ "iosLobApp": "Line-Of-Business-app voor iOS",
+ "iosStoreApp": "iOS Store-app",
+ "iosVppApp": "Volume Purchase Program-app voor iOS",
+ "lineOfBusinessApp": "Line-Of-Business-app",
+ "macOSDmgApp": "macOS-app (DMG)",
+ "macOSEdgeApp": "Microsoft Edge (macOS)",
+ "macOSLobApp": "Line-Of-Business-app voor macOS",
+ "macOSMdatpApp": "Microsoft Defender ATP (macOS)",
+ "macOSOfficeSuiteApp": "macOS Office-suite",
+ "macOsVppApp": "Volume Purchase Program-app voor macOS",
+ "managedAndroidLobApp": "Beheerde Line-Of-Business-app voor Android",
+ "managedAndroidStoreApp": "Beheerde Android Store-app",
+ "managedGooglePlayApp": "Beheerde Google Play Store-app",
+ "managedGooglePlayPrivateApp": "Persoonlijke beheerde Google Play-app",
+ "managedGooglePlayWebApp": "Webkoppeling voor beheerde Google Play",
+ "managedIosLobApp": "Beheerde Line-Of-Business-app voor iOS",
+ "managedIosStoreApp": "Beheerde iOS Store-app",
+ "microsoftStoreForBusinessApp": "Microsoft Store voor Bedrijven-app",
+ "microsoftStoreForBusinessReleaseManagedApp": "Microsoft Store voor Bedrijven",
+ "officeAddIn": "Office-invoegtoepassing",
+ "officeSuiteApp": "Microsoft 365-apps (Windows 10 en hoger)",
+ "sharePointApp": "SharePoint-app",
+ "teamsApp": "Teams-app",
+ "webApp": "Webkoppeling",
+ "windowsAppXLobApp": "AppX Line-Of-Business-app voor Windows",
+ "windowsClassicApp": "Windows-app (Win32)",
+ "windowsEdgeApp": "Microsoft Edge (Windows 10 en hoger)",
+ "windowsMobileMsiLobApp": "MSI Line-Of-Business-app voor Windows",
+ "windowsPhone81AppXBundleLobApp": "AppX Line-Of-Business-app voor Windows Phone 8.1",
+ "windowsPhone81AppXLobApp": "AppX Line-Of-Business-app voor Windows Phone 8.1",
+ "windowsPhone81StoreApp": "Windows Phone 8.1 Store-app",
+ "windowsPhoneXapLobApp": "XAP Line-Of-Business-app voor Windows Phone",
+ "windowsStoreApp": "Microsoft Store-app",
+ "windowsUniversalAppXLobApp": "Universele AppX Line-Of-Business-app voor Windows",
+ "windowsUniversalLobApp": "Universele Line-Of-Business-app voor Windows"
+ },
+ "AppTypePlatform": {
+ "android": "Android",
+ "ios": "iOS",
+ "macOs": "macOS",
+ "web": "Web",
+ "windows": "Windows"
+ },
+ "AssignmentAction": {
+ "exclude": "Uitgesloten",
+ "include": "Inbegrepen",
+ "includeAllDevicesVirtualGroup": "Inbegrepen",
+ "includeAllUsersVirtualGroup": "Inbegrepen"
+ },
+ "AssignmentToast": {
+ "hideAll": "Alle pop-upmeldingen verbergen",
+ "showAll": "Alle pop-upmeldingen weergeven",
+ "showReboot": "Pop-upmeldingen voor de computer opnieuw opstarten weergeven"
+ },
+ "DeliveryOptimizationPriority": {
+ "backgroundNormal": "Achtergrond",
+ "displayText": "Inhoud downloaden in {0}",
+ "foreground": "Voorgrond",
+ "header": "Delivery Optimization-prioriteit"
+ },
+ "DeviceRestartBehaviorOptions": {
+ "allow": "Na installatie van de app kan opnieuw opstarten van het apparaat worden afgedwongen",
+ "basedOnReturnCode": "Bepaal bedrag op basis van retourcodes",
+ "force": "Via Intune wordt opnieuw opstarten van het apparaat afgedwongen",
+ "suppress": "Geen specifieke actie"
+ },
+ "FilterType": {
+ "exclude": "Uitsluiten",
+ "include": "Opnemen",
+ "none": "Geen"
+ },
+ "InstallIntent": {
+ "available": "Beschikbaar voor ingeschreven apparaten",
+ "availableWithoutEnrollment": "Beschikbaar met of zonder inschrijving",
+ "notApplicable": "Niet van toepassing",
+ "required": "Vereist",
+ "uninstall": "Verwijderen"
+ },
+ "SettingType": {
+ "assignmentType": "Toewijzingstype",
+ "deviceLicensing": "Licentietype",
+ "installContext": "Verwijderen bij verwijdering van apparaat",
+ "toastSettings": "Meldingen van eindgebruiker",
+ "vpnConfiguration": "VPN"
+ },
+ "UpdateMode": {
+ "default": "Standaard",
+ "postponed": "Uitgesteld",
+ "priority": "Hoge prioriteit"
+ }
+ },
+ "WindowsEnrollment": {
+ "coManagementAuthorityDesc": "Co-beheerinstellingen configureren voor Configuration Manager-integratie",
+ "coManagementAuthorityTitle": "Instellingen voor co-beheer ",
+ "deploymentProfiles": "Windows AutoPilot-implementatieprofielen",
+ "description": "Meer informatie over de zeven verschillende manieren waarop een Windows 10/11-pc kan worden ingeschreven bij Intune door gebruikers of beheerders.",
+ "descriptionLabel": "Windows-inschrijvingsmethoden",
+ "enrollmentStatusPage": "Pagina Status van de inschrijving"
+ },
+ "Win32Program": {
+ "DeviceRestartBehaviorOptions": {
+ "allow": "Na installatie van de app kan opnieuw opstarten van het apparaat worden afgedwongen",
+ "basedOnReturnCode": "Bepaal bedrag op basis van retourcodes",
+ "force": "Via Intune wordt opnieuw opstarten van het apparaat afgedwongen",
+ "suppress": "Geen specifieke actie"
+ },
+ "RunAsAccountOptions": {
+ "system": "Systeem",
+ "user": "Gebruiker"
+ },
+ "bladeTitle": "Programma",
+ "deviceRestartBehavior": "Gedrag voor opnieuw opstarten van apparaat",
+ "deviceRestartBehaviorTooltip": "Selecteer het gedrag voor het opnieuw opstarten van het apparaat na installatie van de app. Selecteer Bepaal gedrag op basis van retourcodes om het apparaat opnieuw op te starten op basis van de instellingen van de retourcodes. Selecteer 'Geen specifieke actie' om opnieuw opstarten van het apparaat te onderdrukken bij het installeren van apps op basis van MSI. Selecteer Na installatie van de app kan opnieuw opstarten van het apparaat worden afgedwongen als u wilt dat de app wordt geïnstalleerd zonder dat opnieuw opstarten wordt onderdrukt. Selecteer Via Intune wordt opnieuw opstarten van het apparaat afgedwongen om het apparaat altijd opnieuw op te starten na installatie van de app.",
+ "header": "Geef de opdrachten op voor het installeren en verwijderen van deze app:",
+ "installCommand": "Opdracht voor installeren",
+ "installCommandMaxLengthErrorMessage": "De installatieopdracht mag niet langer zijn dan de maximaal toegestane lengte van 1024 tekens.",
+ "installCommandTooltip": "De volledige opdrachtregel voor installatie die wordt gebruikt om deze app te installeren.",
+ "runAs32Bit": "Opdrachten voor installeren en verwijderen uitvoeren in een 32 bitsproces op 64 bitsclients",
+ "runAs32BitTooltip": "Selecteer Ja als u de app in een 32 bitsproces op 64 bitsclients wilt installeren en verwijderen. Selecteer Nee (standaard) als u de app in een 64 bitsproces op 64 bitsclients wilt installeren en verwijderen. 32 bitsclients gebruiken altijd een 32 bitsproces.",
+ "runAsAccount": "Installatiegedrag",
+ "runAsAccountTooltip": "Selecteer Systeem om deze app te installeren voor alle gebruikers, indien ondersteund. Selecteer Gebruiker om deze app te installeren voor de aangemelde gebruiker op het apparaat. Bij wijzigingen kunnen updates en verwijderingen voor apps met MSI met een dubbel doel pas worden voltooid als de waarde die tijdens de oorspronkelijke installatie op het apparaat is toegepast, is hersteld.",
+ "selectorLabel": "Programma",
+ "uninstallCommand": "Opdracht voor verwijderen",
+ "uninstallCommandTooltip": "De volledige opdrachtregel voor verwijdering die wordt gebruikt om deze app te verwijderen."
+ },
+ "CategoryDescription": {
+ "androidGeneralApplicationRestrictions": "Gebruik deze instellingen om op de hoogte blijven over welke gebruikers apps installeren die niet zijn goedgekeurd voor gebruik in uw bedrijf. Selecteer het type lijst voor beperkte apps:
\r\n Verboden apps - een lijst met apps waarover u een melding wilt ontvangen als gebruikers ze installeren.
\r\n Goedgekeurde apps - een lijst met apps die zijn goedgekeurd voor gebruik in uw bedrijf. Wanneer gebruikers een app installeren die niet in deze lijst voorkomt, ontvangt u een melding.
\r\n ",
+ "androidZebraMxZebraMx": "Zebra-apparaten configureren door een MX-profiel in XML-indeling te uploaden.",
+ "iosDeviceFeaturesAirprint": "Gebruik deze instellingen om iOS-apparaten zodanig te configureren dat ze automatisch verbinding maken met printers in uw netwerk die compatibel zijn met AirPrint. U hebt het IP-adres en het resourcepad van uw printers nodig.",
+ "iosDeviceFeaturesExtensibleSingleSignOn": "Een app-extensie configureren waarmee eenmalige aanmelding (SSO) wordt ingeschakeld voor apparaten met iOS 13.0 of hoger.",
+ "iosDeviceFeaturesHomeScreenLayout": "De indeling configureren voor het dock- en startscherm op iOS-apparaten. Bepaalde apparaten kennen limieten voor het aantal items dat kan worden weergegeven.",
+ "iosDeviceFeaturesIOSWallpaper": "Een afbeelding weergeven die wordt weergegeven op het startscherm en/of het vergrendelingsscherm van iOS-apparaten.\r\n Als u op elke locatie een unieke afbeelding wilt weergeven, maakt u een profiel met een afbeelding voor het vergrendelingsscherm en een profiel met een afbeelding voor het startscherm.\r\n Wijs vervolgens beide profielen aan uw gebruikers toe.\r\n
\r\n \r\n - Maximale bestandsgrootte: 750 kB
\r\n - Bestandstype: PNG, JPG of JPEG
\r\n
\r\n ",
+ "iosDeviceFeaturesNotifications": "Meldingsinstellingen voor apps opgeven. Ondersteunt iOS 9.3 en hoger.",
+ "iosDeviceFeaturesSharedDevice": "Optionele tekst opgeven die wordt weergegeven op het vergrendelingsscherm. De functie wordt ondersteund voor iOS 9.3 en hoger. Meer informatie",
+ "iosGeneralApplicationRestrictions": "Gebruik deze instellingen om op de hoogte blijven over welke gebruikers apps installeren die niet zijn goedgekeurd voor gebruik in uw bedrijf. Selecteer het type lijst voor beperkte apps:
\r\n Verboden apps - een lijst met apps waarover u een melding wilt ontvangen als gebruikers ze installeren.
\r\n Goedgekeurde apps - een lijst met apps die zijn goedgekeurd voor gebruik in uw bedrijf. Wanneer gebruikers een app installeren die niet in deze lijst voorkomt, ontvangt u een melding.
\r\n ",
+ "iosGeneralApplicationVisibility": "In de lijst Apps weergeven kunt u de iOS-apps opgeven die gebruikers kunnen zien of starten. In de lijst met verborgen apps kunt u de iOS-apps opgeven die gebruikers niet kunnen zien of starten.",
+ "iosGeneralAutonomousSingleAppMode": "Apps die u aan deze lijst toevoegt en toewijst aan een apparaat, kunnen het apparaat vergrendelen zodra de app is gestart, zodat alleen de desbetreffende app kan worden uitgevoerd. Of het apparaat kan worden vergrendeld terwijl er een bepaalde acties wordt uitgevoerd (bijvoorbeeld wanneer u een test maakt). Zodra de actie is voltooid of u de beperking verwijdert, keert het apparaat terug naar de normale status.",
+ "iosGeneralKiosk": "Met de kioskmodus worden verschillende instellingen in een apparaat vergrendeld of wordt er één app gespecificeerd die op het apparaat mag worden uitgevoerd. Dit kan handig zijn wanneer er bijvoorbeeld in een winkel slechts één demo-app op het apparaat mag worden uitgevoerd.",
+ "macDeviceFeaturesAirprint": "Gebruik deze instellingen om macOS-apparaten zodanig te configureren dat ze automatisch verbinding maken met printers in uw netwerk die compatibel zijn met AirPrint. U hebt het IP-adres en het resourcepad van uw printers nodig.",
+ "macDeviceFeaturesAssociatedDomains": "De gekoppelde domeinen configureren voor het delen van gegevens en aanmeldingsreferenties tussen de apps en websites van uw organisatie. Dit profiel kan worden toegepast op apparaten met macOS 10.15 of hoger.",
+ "macDeviceFeaturesExtensibleSingleSignOn": "Een app-extensie configureren waarmee eenmalige aanmelding (SSO) wordt ingeschakeld voor apparaten met macOS 10.15 of hoger.",
+ "macDeviceFeaturesLoginItems": "Kies welke apps, bestanden en mappen worden geopend wanneer gebruikers zich aanmelden bij hun apparaten. Als u niet wilt dat gebruikers de weergave van de geselecteerde apps kunnen wijzigen, kunt u de app verbergen in de gebruikersconfiguratie.",
+ "macDeviceFeaturesLoginWindow": "Configureer het uiterlijk van het macOS-aanmeldingsscherm en de functies die beschikbaar zijn voor gebruikers voordat en nadat ze zich hebben aangemeld.",
+ "macExtensionsKernelExtensions": "Met deze instellingen kunt u het beleid voor kernelextensies configureren op apparaten met macOS 10.13.2 of hoger.",
+ "macGeneralDomains": "E-mailberichten die de gebruiker verzendt of ontvangt die niet overeenkomen met de domeinen die u hier opgeeft, worden gemarkeerd als niet-vertrouwd.",
+ "windows10EndpointProtectionApplicationGuard": "Tijdens het gebruik van Microsoft Edge beveiligt Microsoft Defender Application Guard uw omgeving tegen sites die door uw organisatie niet als vertrouwd zijn gedefinieerd. Als gebruikers sites bezoeken die niet worden vermeld in uw geïsoleerde netwerkgrens, worden deze sites geopend in een virtuele browsersessie in Hyper-V. Vertrouwde sites worden gedefinieerd door een netwerkgrens, die in Apparaatconfiguratie kan worden geconfigureerd. Deze functie is alleen beschikbaar voor apparaten met 64-bits Windows 10 of hoger.",
+ "windows10EndpointProtectionCredentialGuard": "Als u Credential Guard inschakelt, worden de volgende vereiste instellingen ingeschakeld:\r\n
\r\n \r\n - Beveiliging op basis van virtualisatie inschakelen: hiermee wordt beveiliging op basis van virtualisatie ingeschakeld bij de volgende keer opnieuw opstarten. Voor beveiliging op basis van virtualisatie wordt Windows Hypervisor gebruikt ter ondersteuning van beveiligingsservices.
\r\n
\r\n - Beveiligd opstarten met directe geheugentoegang: hiermee wordt beveiliging op basis van virtualisatie ingeschakeld met beveiligd opstarten en directe geheugentoegang (DMA).
\r\n
\r\n ",
+ "windows10EndpointProtectionDeviceGuard": "Kies aanvullende apps die moeten worden gecontroleerd of kunnen worden vertrouwd door Microsoft Defender-toepassingsbeheer. Windows-onderdelen en alle apps uit Windows Store worden automatisch vertrouwd.
\r\n Toepassingen worden niet geblokkeerd wanneer ze in de modus Alleen controle worden uitgevoerd. De modus Alleen controle legt alle gebeurtenissen vast in de logboeken van de lokale client.\r\n ",
+ "windows10GeneralPrivacyPerApp": "Voeg apps toe waarvoor een ander privacygedrag moet gelden dan wat u in 'Standaardprivacy' hebt gedefinieerd.",
+ "windows10NetworkBoundaryNetworkBoundary": "De grens van het netwerk is de lijst met ondernemingsresources, zoals in de cloud gehoste domeinen en IP-adresbereiken voor computers op het bedrijfsnetwerk. Stel netwerkgrenzen in om beleid toe te passen ter bescherming van de gegevens die zich op deze locaties bevinden.",
+ "windowsHealthMonitoring": "Het beleid voor statuscontrole van Windows configureren.",
+ "windowsPhoneGeneralApplicationRestrictions": "Met Windows Phone kunt u voorkomen dat gebruikers apps installeren of starten die in de lijst met niet-toegestane apps staan of die niet voorkomen in de lijst met goedgekeurde apps. Alle beheerde apps moeten worden toegevoegd aan de goedgekeurde lijst."
+ },
"Inputs": {
"accountDomain": "Accountdomein",
"accountDomainHint": "bijvoorbeeld contosodomain",
@@ -9962,6 +9858,7 @@
"displayNameLabel": "Naam",
"displayVersionHint": "De app-versie invoeren",
"displayVersionLabel": "App-versie",
+ "displayVersionLengthCheck": "De weergaveversie mag maximaal 130 tekens lang zijn",
"eBookCategoryNameLabel": "Standaardnaam",
"emailAccount": "Naam van e-mailaccount",
"emailAccountHint": "bijvoorbeeld bedrijfs-e-mail",
@@ -10066,385 +9963,51 @@
"xmlFormatInvalid": "De indeling van het XML-beleid is ongeldig.",
"xmlTooLarge": "De invoergrootte moet kleiner zijn dan 1 MB."
},
- "Tooltips": {
- "PolicySettings": {
- "TouchId1": {
- "android": "In Android kunt u identificatie met een vingerafdruk in plaats van een pincode toestaan. Gebruikers worden om hun vingerafdruk gevraagd wanneer ze deze app openen met hun werkaccount.",
- "iOS": "U kunt op iOS/iPadOS-apparaten identificatie met een vingerafdruk in plaats van met een pincode toestaan. Gebruikers worden gevraagd om hun vingerafdruk wanneer ze hun werkaccount gebruiken om toegang tot deze app te krijgen.",
- "mac": "U kunt op Mac-apparaten identificatie met een vingerafdruk toestaan in plaats van met een pincode. Gebruikers wordt gevraagd om hun vingerafdruk wanneer ze hun werkaccount gebruiken om toegang tot deze app te krijgen."
- },
- "appSharingFromLevel1": "Selecteer een van de volgende opties om de apps op te geven waarvan deze app gegevens kan ontvangen:",
- "appSharingFromLevel2": "{0}: alleen toestaan dat gegevens in organisatiedocumenten of -accounts worden ontvangen die afkomstig zijn van andere door beleid beheerde apps",
- "appSharingFromLevel3": "{0}: toestaan dat gegevens uit alle apps worden ontvangen in organisatiedocumenten of -accounts",
- "appSharingFromLevel4": "{0}: niet toestaan dat gegevens uit alle apps worden ontvangen in organisatiedocumenten of -accounts",
- "appSharingFromLevel5": "{0}: gegevensoverdracht toestaan van elke app en alle inkomende gegevens zonder gebruikers-id verwerken als organisatiegegevens.",
- "appSharingToLevel1": "Selecteer een van de volgende opties om de apps op te geven waarnaar deze app gegevens kan verzenden:",
- "appSharingToLevel2": "{0}: alleen toestaan dat organisatiegegevens worden verzonden naar andere door beleid beheerde apps",
- "appSharingToLevel3": "{0}: toestaan dat organisatiegegevens naar alle apps worden verzonden",
- "appSharingToLevel4": "{0}: niet toestaan dat organisatiegegevens naar alle apps worden verzonden",
- "appSharingToLevel5": "{0}: alleen overdracht toestaan naar andere door beleid beheerde apps en bestandsoverdracht naar andere met MDM beheerde apps op ingeschreven apparaten",
- "appSharingToLevel6": "{0}: alleen overdracht toestaan naar andere door beleid beheerde apps en dialoogvensters voor openen in/delen van het besturingssysteem filteren om alleen door beleid beheerde apps weer te geven",
- "conditionalEncryption1": "Selecteer {0} om app-versleuteling voor interne app-opslag uit te schakelen wanneer apparaatversleuteling op een geregistreerd apparaat wordt gedetecteerd.",
- "conditionalEncryption2": "Opmerking: Intune kan alleen apparaatregistratie detecteren met Intune MDM. Externe app-opslag is nog wel versleuteld om ervoor te zorgen dat gegevens niet toegankelijk zijn voor onbeheerde toepassingen.",
- "contactSyncMac": "Indien uitgeschakeld, kunnen apps geen contactpersonen opslaan in het systeemeigen adresboek.",
- "contactsSync": "Kies Block om te voorkomen dat door beleid beheerde apps gegevens opslaan in de systeemeigen apps van het apparaat (zoals Contactpersonen, Agenda en widgets) of om het gebruik van invoegtoepassingen in de door beleid beheerde apps te voorkomen. Als u Allow kiest, kan de door beleid beheerde app gegevens opslaan in de systeemeigen apps of invoegtoepassingen gebruiken, als deze functies worden ondersteund en ingeschakeld in de door beleid beheerde app.
Apps kunnen extra configuratiemogelijkheden bieden met app-configuratiebeleid. Zie de documentatie van de app voor meer informatie.",
- "encryptionAndroid1": "Voor apps die zijn gekoppeld met een Intune Mobile Application Management-beleid wordt versleuteling geleverd door Microsoft. Gegevens worden synchroon versleuteld tijdens I/O-bewerkingen in het bestand volgens de instellingen in het Mobile Application Management-beleid. Beheerde apps in Android gebruiken AES-128-versleuteling in de CBC-modus waarbij de versleutelingsbibliotheken van het platform worden gebruikt. De versleutelingsmethode is niet FIPS 140-2-compatibel. SHA-256-versleuteling wordt ondersteund als een expliciete instructie met de SigAlg-parameter en werkt alleen op apparaten met versie 4.2 en hoger. Inhoud in de apparaatopslag wordt altijd versleuteld.",
- "encryptionAndroid2": "Wanneer u versleuteling vereist in uw app-beleid, moeten eindgebruikers een pincode instellen en gebruiken wanneer ze hun apparaat gebruiken. Als er geen pincode is ingesteld voor apparaattoegang, worden de apps niet gestart en zien eindgebruikers het volgende bericht: Uw bedrijf heeft vereist dat u eerst een apparaatpincode moet inschakelen om deze toepassing te gebruiken.",
- "encryptionMac1": "Microsoft levert de versleuteling voor apps die zijn gekoppeld aan een Intune-beheerbeleid voor mobiele toepassingen. Gegevens worden synchroon versleuteld tijdens I/O-bewerkingen voor bestanden op basis van de instellingen in het beheerbeleid voor mobiele toepassingen. Beheerde apps in Mac gebruiken AES-128-versleuteling in de CBC-modus, waarbij de versleutelingsbibliotheken van het platform worden gebruikt. De versleutelingsmethode is niet FIPS 140-2-compatibel. SHA-256-versleuteling wordt ondersteund als expliciete instructie met de parameter SigAlg en werkt alleen op apparaten met versie 4.2 en hoger. De inhoud in de apparaatopslag wordt altijd versleuteld.",
- "faceId1": "Indien van toepassing kunt u het gebruik van een gezichts-id toestaan in plaats van een pincode. Gebruikers wordt gevraagd een gezichts-id op te geven wanneer ze toegang tot deze app willen hebben met hun werkaccount.",
- "faceId2": "Selecteer Ja om een gezichts-id toe te staan in plaats van een pincode voor toegang tot de app.",
- "managementLevelsAndroid1": "U gebruikt deze optie om op te geven of dit beleid van toepassing is op apparaten met Android-apparaatbeheerder, Android Enterprise-apparaten of onbeheerde apparaten.",
- "managementLevelsAndroid2": "{0}: Onbeheerde apparaten zijn apparaten waarop het Intune MDM-beheer niet is aangetroffen. Hierbij inbegrepen zijn MDM-leveranciers als derde partij.",
- "managementLevelsAndroid3": "{0}: Door Intune beheerde apparaten met de Android Device Administration API.",
- "managementLevelsAndroid4": "{0}: Door Intune beheerde apparaten met Android Enterprise-werkprofielen of volledig apparaatbeheer van Android Enterprise.",
- "managementLevelsIos1": "U gebruikt deze optie om op te geven of dit beleid van toepassing is op door MDM beheerde apparaten of onbeheerde apparaten.",
- "managementLevelsIos2": "{0}: Onbeheerde apparaten zijn apparaten waarop het Intune MDM-beheer niet is aangetroffen. Hierbij inbegrepen zijn MDM-leveranciers als derde partij.",
- "managementLevelsIos3": "{0}: Beheerde apparaten zijn apparaten die worden beheerd door Intune MDM.",
- "minAppVersion": "Het minimale app-versienummer definiëren waarover de gebruiker moet beschikken om veilig toegang tot de app te krijgen.",
- "minAppVersionWarning": "Het aanbevolen minimale app-versienummer definiëren waarover de gebruiker moet beschikken om veilig toegang tot de app te krijgen.",
- "minOsVersion": "Het minimale besturingssysteemversienummer definiëren waarover de gebruiker moet beschikken om veilig toegang tot de app te krijgen.",
- "minOsVersionWarning": "Het aanbevolen minimale besturingssysteemversienummer definiëren waarover de gebruiker moet beschikken om veilig toegang tot de app te krijgen.",
- "minPatchVersion": "Het oudste vereiste niveau van de Android-beveiligingspatch dat een gebruiker kan hebben om beveiligde toegang tot de app te krijgen.",
- "minPatchVersionWarning": "Het oudste aanbevolen niveau van de Android-beveiligingspatch dat een gebruiker kan hebben om beveiligde toegang tot de app te krijgen.",
- "minSdkVersion": "Het minimale versie van Intune Application Protection Policy SDK definiëren waarover de gebruiker moet beschikken om veilig toegang tot de app te krijgen.",
- "requireAppPinDefault": "Selecteer Ja om de pincode van de app uit te schakelen wanneer een apparaatvergrendeling wordt gedetecteerd op een ingeschreven apparaat.
",
- "targetAllApps1": "U gebruikt deze optie om uw beleid te richten op apps op apparaten met alle mogelijke beheerstatussen.",
- "targetAllApps2": "Tijdens de oplossing van beleidsconflicten wordt deze instelling vervangen als een gebruiker een doelbeleid voor een specifieke beheerstatus heeft.",
- "touchId2": "Selecteer {0} om voor toegang tot de app een vingerafdruk te vereisen in plaats van een pincode."
- },
- "Tap": {
- "pinResetAfterNumberOfDays": "Geef op na hoeveel dagen de gebruiker de pincode opnieuw moet instellen.",
- "previousPinBlockCount": "Met deze instelling geeft u het aantal eerdere pincodes op dat door Intune wordt bewaard. Eventuele nieuwe pincodes moeten anders zijn dan de pincodes die in Intune worden bewaard."
+ "WindowsFeatureUpdate": {
+ "EndOFSupportStatus": {
+ "notSupported": "Niet ondersteund",
+ "supportEnding": "Ondersteuning eindigt",
+ "supported": "Ondersteund"
+ }
},
- "WipPolicySettings": {
- "25": "",
- "allowWindowsSearch": "Zodoende kunt u met Windows Search blijven zoeken in versleutelde gegevens.",
- "authoritativeIpRanges": "Schakel deze instelling in als u de Windows-functie voor het automatisch detecteren van IP-bereiken wilt negeren.",
- "authoritativeProxyServers": "Schakel deze instelling in als u de Windows-functie voor het automatisch detecteren van proxyservers wilt negeren.",
- "checkInput": "Controleer de geldigheid van de invoer",
- "dataRecoveryCert": "Een herstelcertificaat is een speciaal EFS-certificaat (Encrypting File System) dat u kunt gebruiken om versleutelde bestanden te herstellen als de versleutelingssleutel is zoekgeraakt of beschadigd. U moet het herstelcertificaat maken en hier opgeven. Klik hier voor meer informatie",
- "enterpriseCloudResources": "Geef op dat cloudresources worden behandeld als bedrijfsresources en worden beschermd met het Windows Information Protection-beleid. U kunt meerdere resources opgeven door afzonderlijke items met het teken | te scheiden.
Als in uw bedrijf een proxy is geconfigureerd, kunt u opgeven via welke proxy het verkeer naar de opgegeven cloudresources wordt geleid.
URL[,Proxy]|URL[,Proxy]
Zonder proxy: contoso.sharepoint.com|contoso.visualstudio.com
Met proxy: contoso.sharepoint.com,proxy.contoso.com|contoso.visualstudio.com,proxy.contoso.com
",
- "enterpriseIPv4Ranges": "Geef de IPv4-bereiken van het bedrijfsnetwerk op. Deze worden gebruikt in combinatie met de domeinnamen van het bedrijfsnetwerk die u opgeeft als grens van het bedrijfsnetwerk.
Deze instelling is vereist om Windows Information Protection in te schakelen.
U kunt meerdere bereikwaarden opgeven door afzonderlijke items met een komma te scheiden.\\
Bijvoorbeeld: 3.4.0.1-3.4.255.255,192.168.1.1-192.168.255.255
",
- "enterpriseIPv6Ranges": "Geef de IPv6-bereiken van het bedrijfsnetwerk op. Deze worden gebruikt in combinatie met de domeinnamen van het bedrijfsnetwerk die u opgeeft als grens van het bedrijfsnetwerk.
U kunt meerdere bereikwaarden opgeven door afzonderlijke items met een komma te scheiden.
Bijvoorbeeld: 2001:4898:dc05::-2001:4898:dc05:ffff:ffff:ffff:ffff:ffff,2a01:110::-2a01:110:7fff:ffff:ffff:ffff:ffff:ffff
",
- "enterpriseInternalProxyServers": "Als in uw bedrijf een proxy is geconfigureerd, kunt u opgeven via welke proxy het verkeer naar de cloudresources wordt geleid die zijn opgegeven in de instellingen voor bedrijfscloudresources.
U kunt meerdere waarden opgeven door afzonderlijke items met een puntkomma te scheiden
Bijvoorbeeld: contoso.internalproxy1.com;contoso.internalproxy2.com
",
- "enterpriseNetworkDomainNames": "Geef de DNS-namen van het bedrijfsnetwerk op. Deze worden gebruikt in combinatie met de IP-bereiken die u opgeeft als grens van het bedrijfsnetwerk. U kunt meerdere waarden opgeven door afzonderlijke items met een komma te scheiden.
Deze instelling is vereist om Windows Information Protection in te schakelen.
Bijvoorbeeld: corp.contoso.com,region.contoso.com
",
- "enterpriseProtectedDomainNames": "Geef de DNS-namen van het bedrijfsnetwerk op. Deze worden gebruikt in combinatie met de IP-bereiken die u opgeeft als grens van het bedrijfsnetwerk. U kunt meerdere waarden opgeven door afzonderlijke items met een '|' te scheiden.
Deze instelling is vereist om Windows Information Protection in te schakelen.
Bijvoorbeeld: corp.contoso.com,region.contoso.com
",
- "enterpriseProxyServers": "Als uw bedrijfsnetwerk extern gerichte proxy's bevat, geeft u deze hier op. Wanneer u het adres van een proxyserver opgeeft, moet u ook opgeven via welke poort het verkeer is toegestaan en wordt beschermd met Windows Information Protection.
Opmerking: Deze lijst mag geen servers bevatten die voorkomen in de lijst met interne proxyservers van de onderneming. U kunt meerdere waarden opgeven door afzonderlijke items met een puntkomma te scheiden.
Bijvoorbeeld: proxy.contoso.com:80;proxy2.contoso.com:80
",
- "maxInactivityTime1": "Hiermee geeft u de maximale hoeveelheid tijd op (in minuten) die het apparaat niet-actief mag zijn voordat het apparaat wordt vergrendeld met een pincode of wachtwoord. Gebruikers kunnen elke bestaande time-outwaarde opgeven die lager is dan de maximale tijd die is opgegeven in de app Instellingen. De Lumia 950 en 950XL hebben een maximale time-outwaarde van vijf minuten, ongeacht de waard die wordt ingesteld door dit beleid.",
- "maxInactivityTime2": "0 (standaardinstelling): Er is geen time-out op gedefinieerd. De standaardinstelling 0 wordt geïnterpreteerd als 'Geen time-out gedefinieerd.'",
- "maxPasswordAttempts1": "Dit beleid vertoont verschillend gedrag op een mobiel apparaat en een desktop.",
- "maxPasswordAttempts2": "Wanneer op een mobiel apparaat de waarde wordt bereikt die is ingesteld door dit beleid, wordt het apparaat gewist.",
- "maxPasswordAttempts3": "Wanneer een gebruiker op een desktop de waarde bereikt die is ingesteld door dit beleid, wordt de desktop niet gewist. In plaats daarvan wordt de BitLocker-herstelmodus ingeschakeld voor de desktop, waardoor de gegevens niet meer toegankelijk zijn, maar nog wel kunnen worden hersteld. Als BitLocker niet is ingeschakeld, kan het beleid niet worden afgedwongen.",
- "maxPasswordAttempts4": "Voordat de gebruiker de limiet voor het aantal mislukte pogingen bereikt, wordt deze doorgestuurd naar het vergrendelingsscherm en gewaarschuwd dat bij nog meer mislukte pogingen de computer wordt vergrendeld. Wanneer de gebruiker de limiet bereikt, wordt het apparaat automatisch opnieuw opgestart en wordt de BitLocker-herstelpagina weergegeven. De gebruiker wordt gevraagd de BitLocker-herstelsleutel op deze pagina in te voeren.",
- "maxPasswordAttempts5": "0 (standaardinstelling): het apparaat wordt nooit gewist nadat er een onjuiste pincode of onjuist wachtwoord is ingevoerd.",
- "maxPasswordAttempts6": "De veiligste waarde is 0 als alle beleidswaarden = 0. Anders is de beleidswaarde Min de veiligste waarde.",
- "mdmDiscoveryUrl": "Hier kunt u de URL van het eindpunt voor de MDM-registratie opgeven dat voor de registratie bij MDM wordt gebruikt. Dit wordt standaard opgegeven voor Intune.",
- "minimumPinLength1": "Geheel getal waarmee het minimale aantal vereiste tekens voor de pincode wordt opgegeven. De standaardwaarde is 4. Het laagste getal dat u voor deze beleidsinstelling kunt configureren, is 4. Het hoogste getal dat u kunt configureren moet kleiner zijn dan het getal in de beleidsinstelling voor de maximale pincodelengte of het getal 127, afhankelijk van welke waarde lager is.",
- "minimumPinLength2": "Als u deze beleidsinstelling configureert, moet de lengte van de pincode groter zijn dan of gelijk zijn aan dit getal. Als u deze beleidsinstelling uitschakelt of niet configureert, moet de lengte van de pincode groter zijn dan of gelijk zijn aan 4.",
- "name": "De naam van deze netwerkgrens",
- "neutralResources": "Als uw bedrijf omleidingseindpunten voor verificatie heeft, moet u deze hier opgeven. De locaties die u hier opgeeft, worden noch als persoonlijk, noch als zakelijk beschouwd, afhankelijk van de context van de nieuwe verbinding.
U kunt meerdere waarden opgeven door afzonderlijke items met een komma te scheiden.
Bijvoorbeeld: sts.contoso.com,sts.contoso2.com
",
- "passportForWork1": "Waarde waarmee Windows Hello voor Bedrijven wordt ingesteld als methode voor de aanmelding bij Windows.",
- "passportForWork2": "De standaardwaarde is true. Als u dit beleid instelt op false, kan de gebruiker Windows Hello voor Bedrijven alleen inrichten op mobiele telefoons die zijn toegevoegd aan Azure Active Directory en waarvoor inrichting is vereist.",
- "pinExpiration": "Het hoogste getal dat u voor deze beleidsinstelling kunt configureren, is 730. Het laagste getal dat u voor deze beleidsinstelling kunt configureren, is 0. Als dit beleid wordt ingesteld op 0, verloopt de pincode van de gebruiker nooit.",
- "pinHistory1": "Het hoogste getal dat u voor deze beleidsinstelling kunt configureren is 50. Het laagste getal dat u voor deze beleidsinstelling kunt configureren is 0. Als dit beleid wordt ingesteld op 0, hoeven eerder gebruikte pincodes niet verplicht worden opgeslagen.",
- "pinHistory2": "De huidige pincode van de gebruiker in de set pincodes die is gekoppeld aan het gebruikersaccount. Als een pincode opnieuw wordt ingesteld, wordt de pincodegeschiedenis niet bewaard.",
- "protectUnderLock": "Beschermt de app-inhoud wanneer het apparaat zich in een vergrendelde status bevindt.",
- "protectionModeBlock": "Blokkeren: er wordt voorkomen dat ondernemingsgegevens de app kunnen verlaten.
",
- "protectionModeOff": "Uit: De gebruiker kan gegevens verplaatsen buiten de beveiligde apps. Er worden geen acties geregistreerd in het logboek.
",
- "protectionModeOverride": "Onderdrukkingen toestaan: De gebruiker wordt om invoer gevraagd wanneer deze gegevens van een beveiligde naar een niet-beveiligde app probeert te verplaatsen. Als de gebruiker ervoor kiest deze prompt te negeren, wordt de actie geregistreerd in het logboek.
",
- "protectionModeSilent": "Stil:De gebruiker kan gegevens verplaatsen buiten de beveiligde apps. Deze acties worden geregistreerd in het logboek.
",
- "required": "Vereist",
- "revokeOnMdmHandoff": "Toegevoegd aan Windows 10, versie 1703. Met dit beleid wordt bepaald of de WIP-sleutels worden ingetrokken als er voor een apparaat een upgrade wordt uitgevoerd van MAM naar MDM. Indien ingesteld op Uit, worden de sleutels niet ingetrokken en heeft de gebruikers na de upgrade nog toegang tot de beschermde bestanden. Dit wordt aanbevolen als de MDM-service is geconfigureerd met dezelfde WIP EnterpriseID als de MAM-service.",
- "revokeOnUnenroll": "Als de registratie van een apparaat voor dit beleid ongedaan wordt gemaakt, worden de versleutelingssleutels ingetrokken.",
- "rmsTemplateForEdp": "De TemplateID GUID die moet worden gebruikt voor RMS-versleuteling. De IT-beheerder kan met de Azure RMS-sjabloon configureren wie toegang tot het met RMS beveiligde bestand heeft en hoe lang.",
- "showWipIcon": "Door een overlay met een pictogram toe te voegen, kan de gebruiker zien of er sprake is van een bedrijfscontext.",
- "useRmsForWip": "Hiermee wordt aangegeven of Azure RMS-versleuteling is toegestaan voor WIP."
+ "SecurityTemplate": {
+ "aSR": "Kwetsbaarheid voor aanvallen verminderen",
+ "accountProtection": "Accountbeveiliging",
+ "allDevices": "Alle apparaten",
+ "antivirus": "Antivirus",
+ "antivirusReporting": "Antivirusrapportage (preview)",
+ "conditionalAccess": "Voorwaardelijke toegang",
+ "deviceCompliance": "Apparaatnaleving",
+ "diskEncryption": "Schijfversleuteling",
+ "eDR": "Eindpuntdetectie en -reactie",
+ "firewall": "Firewall",
+ "helpSupport": "Help en ondersteuning",
+ "setup": "Installatie",
+ "wdapt": "Microsoft Defender for Endpoint"
+ },
+ "Win32ReturnCodes": {
+ "CodeTypes": {
+ "failed": "Mislukt",
+ "hardReboot": "Hard opstarten",
+ "retry": "Opnieuw",
+ "softReboot": "Zacht opstarten",
+ "success": "Geslaagd"
},
- "requireAppPin": "Selecteer Ja om de pincode van de app uit te schakelen wanneer een apparaatvergrendeling wordt gedetecteerd op een ingeschreven apparaat.
Opmerking: met Intune kan apparaatinschrijving niet worden gedetecteerd met een EMM-oplossing van derden in iOS/iPadOS.
"
- },
- "AppInfoBalloonText": {
- "Certificate": {
- "customSubjectName": "CN={{UserName}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US\r\nor\r\nCN={{AAD_Device_ID}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US",
- "keySize": "Selecteer het aantal bits dat in de sleutel is opgenomen.",
- "keyUsage": "Geef de cryptografische actie op die nodig is voor het uitwisselen van de openbare sleutel van het certificaat.",
- "renewalThreshold": "Geef het percentage (tussen 1 en 99 procent) op van de resterende levensduur van het certificaat dat is toegestaan voordat een apparaat vernieuwing van het certificaat kan aanvragen. De aanbevolen waarde voor Intune is 20%. (1-99)",
- "rootCert": "Kies een eerder geconfigureerd en toegewezen certificaatprofiel van een basis-CA. Het CA-certificaat moet overeenkomen met het basiscertificaat van de CA die het certificaat verleent voor dit profiel (hetgeen u momenteel configureert).",
- "scepServerUrl": "Voer een URL in voor de NDES-server waarmee certificaten worden uitgegeven via SCEP (moet HTTPS zijn), bijvoorbeeld https://contoso.com/certsrv/mscep/mscep.dll",
- "scepServerUrls": "Voer een of meer URL's in voor de NDES-server waarmee certificaten worden uitgegeven via SCEP (moet HTTPS zijn), bijvoorbeeld https://contoso.com/certsrv/mscep/mscep.dll",
- "subjectAlternativeName": "Alternatieve naam voor onderwerp",
- "subjectNameFormat": "Indeling van de onderwerpnaam",
- "validityPeriod": "De resterende tijd voordat het certificaat verloopt. Voer een waarde in die gelijk is aan of lager is dan de geldigheidsperiode die wordt weergegeven in de certificaatsjabloon. Is standaard ingesteld op een jaar."
- },
- "appInstallContext": "Hiermee bepaalt u de installatiecontext die moet worden gekoppeld aan deze app. Selecteer de gewenste context apps met dubbele modus. Voor alle andere toepassingen wordt dit vooraf geselecteerd op basis van het pakket; dit kan niet worden gewijzigd.",
- "autoUpdateMode": "Configureer de updateprioriteit voor de app. Selecteer Standaard om te vereisen dat het apparaat is verbonden met Wi-Fi, dat deze opgeladen wordt en dat het apparaat niet actief wordt gebruikt voordat u de app bijwerkt. Selecteer Hoge prioriteit om de app bij te werken zodra de ontwikkelaar de app heeft gepubliceerd, ongeacht oplaadstatus, wi-fimogelijkheden of activiteiten van eindgebruikers op het apparaat. Hoge prioriteit wordt alleen van kracht op DO-apparaten.",
- "configurationSettingsFormat": "Tekstopmaak van de configuratie-instellingen",
- "ignoreVersionDetection": "Stel dit in op Yes voor toepassingen die automatisch worden bijgewerkt door de app-ontwikkelaar (zoals Google Chrome).",
- "ignoreVersionDetectionMacOSLobApp": "Selecteer Ja voor apps die automatisch worden bijgewerkt door de app-ontwikkelaar of om alleen te controleren op app-bundleID voor de installatie. Selecteer Nee om te controleren op app-bundleID en versienummer vóór de installatie.",
- "installAsManagedMacOSLobApp": "Deze instelling is alleen van toepassing op macOS 11 en hoger. De app wordt geïnstalleerd, maar wordt niet beheerd op macOS 10.15 en lager.",
- "installContextDropdown": "Selecteer de juiste installatiecontext. In de gebruikerscontext wordt de app alleen geïnstalleerd voor de gebruiker waarop de app is gericht; in de apparaatcontext wordt de app voor alle gebruikers op het apparaat geïnstalleerd.",
- "ldapUrl": "Dit is de LDAP-hostnaam waar clients openbare versleutelingssleutels kunnen downloaden voor e-mailontvangers. E-mailberichten worden versleuteld als er een sleutel beschikbaar is. Ondersteunde indelingen: - ldap.example.com
\r\n- ldap.example.com:123
\r\n- ldap://ldap.example.com
- ldap://ldap.example.com:123
- ldaps://ldap.example.com
\r\n- ldaps://ldap.example.com:123
",
- "permissionsSettings": "Selecteer runtime-machtigingen voor de bijbehorende app.",
- "policyAssociatedApp": "Selecteer de app waaraan dit beleid wordt gekoppeld.",
- "policyConfigurationSettings": "Selecteer de methode die u wilt gebruiken om de configuratie-instellingen van dit beleid te definiëren.",
- "policyDescription": "U kunt optioneel een beschrijving van dit configuratiebeleid invoeren.",
- "policyEnrollmentType": "Kies of deze instellingen worden beheerd via apparaatbeheer of via apps die zijn gemaakt met Intune SDK.",
- "policyName": "Voer een naam voor dit configuratiebeleid in.",
- "policyPlatform": "Selecteer het platform waarop dit app-configuratiebeleid van toepassing is.",
- "policyProfileType": "Selecteer de apparaatprofieltypen waarop dit app-configuratieprofiel van toepassing is",
- "policySMime": "S/MIME-ondertekening en versleutelingsinstellingen voor Outlook configureren.",
- "sMimeDeployCertsFromIntune": "Opgeven of er S/MIME-certificaten worden geleverd via Intune voor gebruik met Outlook.\r\nMet Intune kunnen certificaten voor ondertekening en versleuteling automatisch voor gebruikers worden geïmplementeerd via de bedrijfsportal.",
- "sMimeEnable": "Opgeven of S/MIME-besturingselementen zijn ingeschakeld bij het opstellen van een e-mailbericht",
- "sMimeEnableAllowChange": "Geef aan of de gebruiker de instelling S/MIME inschakelen mag wijzigen.",
- "sMimeEncryptAllEmails": "Opgeven of alle e-mailberichten moeten worden versleuteld.\r\nTijdens de versleuteling worden gegevens met een coderingstekst geconverteerd zodat alleen de beoogde ontvanger het e-mailbericht kan lezen.",
- "sMimeEncryptAllEmailsAllowChange": "Geef aan of de gebruiker de instelling Alle e-mailberichten versleutelen mag wijzigen.",
- "sMimeEncryptionCertProfile": "Certificaatprofiel voor versleuteling van e-mails opgeven.",
- "sMimeSignAllEmails": "Opgeven of alle e-mailberichten moeten worden ondertekend.\r\nMet een digitale handtekening wordt de echtheid van het e-mailbericht gecontroleerd om ervoor te zorgen dat de inhoud niet onrechtmatig kan worden gewijzigd tijdens de overdracht.",
- "sMimeSignAllEmailsAllowChange": "Geef aan of de gebruiker de instelling Alle e-mails ondertekenen mag wijzigen.",
- "sMimeSigningCertProfile": "Certificaatprofiel voor het ondertekenen van e-mails opgeven.",
- "sMimeUserNotificationType": "De methode waarmee gebruikers worden geïnformeerd dat ze de bedrijfsportal moeten openen om S/MIME-certificaten voor Outlook op te halen."
- },
- "WindowsQualityUpdateDaysUntilForcedReboot": {
- "oneDay": "1 dag",
- "twoDays": "2 dagen",
- "zeroDays": "0 dagen"
- },
- "Autopilot": {
- "AssignResourceAccount": {
- "createNewCommandMenu": "Nieuwe maken",
- "createNewResourceAccountInfo": "\r\nMaak een nieuw resourceaccount tijdens de registratie. Het resourceaccount wordt direct aan de tabel met resourceaccounts toegevoegd, maar wordt pas actief als het apparaat is ingeschreven en het Surface Hub-abonnement is gecontroleerd. Meer informatie over resourceaccounts
\r\n ",
- "createNewResourceTitle": "Nieuw resourceaccount maken",
- "deviceNameInvalid": "De apparaatnaam heeft een ongeldige indeling",
- "deviceNameRequired": "Een apparaatnaam is vereist",
- "editResourceAccountLabel": "Bewerken",
- "selectExistingCommandMenu": "Bestaande selecteren"
- },
- "Device": {
- "ComputerName": {
- "validFormat": "Namen mogen maximaal 15 tekens bevatten en mogen letters (a-z, A-Z), cijfers (0-9) en afbreekstreepjes bevatten. Namen mogen niet alleen cijfers bevatten. Namen mogen geen spatie bevatten."
- },
- "Header": {
- "addressableUserName": "Beschrijvende naam van gebruiker",
- "azureADDevice": "Gekoppeld Azure AD-apparaat",
- "batch": "Groepstag",
- "dateAssigned": "Datum van toewijzing",
- "deviceDisplayName": "Apparaatnaam",
- "deviceName": "Apparaatnaam",
- "deviceUseType": "Type apparaatgebruik",
- "enrollmentState": "Inschrijvingsstatus",
- "intuneDevice": "Gekoppeld Intune-apparaat",
- "lastContacted": "Voor het laatst contact opgenomen",
- "make": "Fabrikant",
- "model": "Model",
- "profile": "Toegewezen profiel",
- "profileStatus": "Profielstatus",
- "purchaseOrderId": "Inkooporder",
- "resourceAccount": "Resourceaccount",
- "serialNumber": "Serienummer",
- "userPrincipalName": "Gebruiker"
- }
- },
- "DeviceUseType": {
- "meetingAndPresentation": "Vergadering en presentaties",
- "teamCollaboration": "Teamsamenwerking"
- },
- "Devices": {
- "featureDescription": "Met Windows Autopilot kunt u de out-of-box-experience (OOBE) voor uw apparaten aanpassen.",
- "importErrorStatus": "Enkele apparaten zijn niet geïmporteerd. Klik hier voor meer informatie.",
- "importPendingStatus": "Importeren wordt uitgevoerd. Verstreken tijd: {0} min. Dit proces kan tot {1} minuten duren."
- },
- "DirectoryService": {
- "activeDirectoryAD": "Hybride Azure AD-gekoppeld",
- "activeDirectoryADLabel": "Hybride Azure AD met Autopilot",
- "azureAD": "Toegevoegd aan Azure AD",
- "unknownType": "Onbekend type"
- },
- "Filter": {
- "enrollmentState": "Status",
- "profile": "Profielstatus"
- },
- "OOBE": {
- "AddressableUserName": {
- "validateEmpty": "Beschrijvende naam van gebruiker mag niet leeg zijn."
- },
- "ApplyComputerNameTemplate": {
- "infoBalloon": "Maak een naamgevingssjabloon om namen aan uw apparaten toe te voegen tijdens de registratie.",
- "label": "Sjabloon voor apparaatnamen toepassen"
- },
- "ApplyComputerNameTemplateDisabled": {
- "label": "Voor Autopilot-implementatieprofielen die hybride Azure AD-gekoppeld zijn, krijgen computers een naam op basis van instellingen die zijn opgegeven in de configuratie van de domeindeelname."
- },
- "ComputerNameTemplate": {
- "emptyValue": "MyCompany-%RAND:4%",
- "label": "Een naam invoeren",
- "noDisallowedChars": "De naam mag alleen alfanumerieke tekens, afbreekstreepjes, %SERIAL% of %RAND:x% bevatten",
- "serialLength": "Mag niet meer dan 7 tekens met %SERIAL% bevatten",
- "validateLessThan15Chars": "De naam mag maximaal 15 tekens bevatten",
- "validateNoSpaces": "Computernamen mogen geen spaties bevatten",
- "validateNotAllNumbers": "De naam moet ook letters en/of afbreekstreepjes bevatten",
- "validateNotEmpty": "Naam kan niet leeg zijn",
- "validateOnlyOneMacro": "De naam mag alleen één v%SERIAL% of %RAND:x% bevatten"
- },
- "ConfigureComputerNameTemplate": {
- "description": "Maak een unieke naam voor uw apparaten. Namen mogen maximaal 15 tekens bevatten en mogen letters (a-z, A-Z), cijfers (0-9) en afbreekstreepjes bevatten. Namen mogen niet alleen cijfers bevatten. Namen mogen geen spaties bevatten. Gebruik de macro %SERIAL% om een hardwarespecifiek serienummer toe te voegen. U kunt eventueel de macro %RAND:x% gebruiken om een willekeurige tekenreeks van getallen toe te voegen, waarbij x staat voor het aantal toe te voegen cijfers."
- },
- "EnableWhiteGlove": {
- "infoBalloon": "Inschakelen dat met het vijf maal indrukken van de Windows-toets OOBE zonder gebruikersverificatie wordt uitgevoerd om het apparaat in te schrijven en alle apps en instellingen voor de systeemcontext in te richten. Apps en instellingen voor de gebruikerscontext worden beschikbaar gemaakt wanneer de gebruiker zich aanmeldt.",
- "label": "Vooraf ingerichte implementatie toestaan"
- },
- "HybridAzureADSkipConnectivityCheck": {
- "infoBalloon": "De Auto Pilot Hybrid Azure AD-deelnamestroom wordt voortgezet, zelfs als deze geen domeincontrollerconnectiviteit tot stand brengt tijdens OOBE.",
- "label": "Controle van AD-verbinding overslaan (preview-versie)"
- },
- "accountType": "Gebruikersaccounttype",
- "accountTypeInfo": "Geef op of gebruikers beheerders of standaardgebruikers zijn op het apparaat. Deze instelling geldt niet voor accounts van globale beheerders of bedrijfsbeheerders. Deze accounts kunnen geen standaardgebruikers zijn, omdat ze toegang hebben tot alle beheerfuncties in Azure AD.",
- "configOOBEInfo": "\r\nDe out-of-box-ervaring voor uw Autopilot-apparaten configureren\r\n
",
- "configureDevice": "Implementatiemodus",
- "configureDeviceHintForSurfaceHub2": "Autopilot ondersteunt alleen de zelfimplementatiemodus voor Surface Hub 2. In deze modus wordt de gebruiker niet gekoppeld aan het ingeschreven apparaat, zodat er geen gebruikersreferenties zijn vereist.",
- "configureDeviceHintForWindowsPC": "\r\n De implementatiemodus bepaalt of een gebruiker referenties moet opgeven om het apparaat in te richten.\r\n
\r\n \r\n - \r\n Op basis van gebruiker: apparaten zijn gekoppeld aan de gebruiker die het apparaat inschrijft en er zijn gebruikersreferenties vereist om het apparaat in te richten \r\n
\r\n - \r\n Zelf-implementerend (preview): apparaten zijn niet gekoppeld aan de gebruiker die het apparaat inschrijft en er zijn geen gebruikersreferenties vereist om het apparaat in te richten\r\n
\r\n
",
- "createSurfaceHub2Info": "Configureer de Autopilot-inschrijvingsinstellingen voor uw Surface Hub 2-apparaten. In Autopilot wordt gebruikersverificatie standaard overgeslagen tijdens OOBE. Meer informatie over Windows Autopilot voor Surface Hub 2.",
- "createWindowsPCInfo": "\r\n\r\nDe volgende opties worden automatisch ingeschakeld voor Autopilot-apparaten in de modus voor zelfimplementatie:\r\n
\r\n\r\n - \r\n Selectie van Werk of Thuisgebruik overslaan\r\n
\r\n - \r\n OEM-registratie en OneDrive-configuratie overslaan\r\n
\r\n - \r\n Gebruikersverificatie in OOBE overslaan\r\n
\r\n
",
- "endUserDevice": "Op basis van gebruiker",
- "hideEscapeLink": "Opties voor het wijzigen van het account verbergen",
- "hideEscapeLinkInfo": "Opties om het account te wijzigen en opnieuw te beginnen met een ander account worden respectievelijk weergegeven tijdens de eerste keer dat een apparaat op de aanmeldingspagina van het bedrijf wordt ingesteld en op de domeinfoutpagina. Als u deze opties wilt verbergen, moet u in Azure Active Directory een aangepaste huisstijl configureren (vereist Windows 10, 1809 of hoger, of Windows 11).",
- "info": "Met de AutoPilot-profielinstellingen wordt de Out-Of-Box Experience gedefinieerd die gebruikers zien als ze Windows voor de eerste keer starten. ",
- "language": "Taal (regio)",
- "languageInfo": "De te gebruiken taal en regio opgeven.",
- "licenseAgreement": "Licentiebepalingen van Microsoft-software",
- "licenseAgreementInfo": "Opgeven of de gebruiksrechtovereenkomst moet worden weergeven aan gebruikers.",
- "plugAndForgetDevice": "Zelf-implementerend (preview)",
- "plugAndForgetGA": "Zelf implementeren",
- "privacySettingWarning": "De standaardwaarde voor het verzamelen van diagnostische gegevens is gewijzigd voor apparaten met Windows 10, versie 1903 en hoger of Windows 11. ",
- "privacySettings": "Privacyinstellingen",
- "privacySettingsInfo": "Opgeven of de privacyinstellingen moeten worden weergegeven aan gebruikers.",
- "showCortanaConfigurationPage": "Cortana-configuratie",
- "showCortanaConfigurationPageInfo": "Met Weergeven wordt de Cortana-configuratie-introductie ingeschakeld tijdens het opstarten.",
- "skipEULAWarning": "Belangrijke informatie over het verbergen van licentievoorwaarden",
- "skipKeyboardSelection": "Toetsenbord automatisch configureren",
- "skipKeyboardSelectionInfo": "Als de waarde Waar is ingesteld, wordt de pagina Toetsenbord selecteren overgeslagen als de taal is ingesteld.",
- "subtitle": "AutoPilot-profielen",
- "title": "Out-Of-Box Experience (OOBE)",
- "useOSDefaultLanguage": "Standaardbesturingssysteem",
- "userSelect": "Gebruikersselectie"
- },
- "Sync": {
- "lastRequestedLabel": "Laatste synchronisatieaanvraag",
- "lastSuccessfulLabel": "Laatste voltooide synchronisatie",
- "syncInProgress": "De synchronisatie wordt uitgevoerd. Probeer het later opnieuw.",
- "syncInitiated": "AutoPilot-instellingen synchroniseren is geïnitialiseerd.",
- "syncSettingsTitle": "AutoPilot-instellingen synchroniseren"
- },
- "Title": {
- "devices": "Windows AutoPilot-apparaten"
- },
- "Tooltips": {
- "addressableUserName": "Begroetingsnaam die tijdens de installatie van apparaat wordt weergegeven.",
- "azureADDevice": "Ga naar Apparaatdetails voor het gekoppelde apparaat. N.v.t. betekent dat er geen gekoppeld apparaat is.",
- "batch": "Een tekenreekskenmerk dat kan worden gebruikt om een groep apparaten te identificeren. Met het veld Groepstag van Intune wordt het kenmerk OrderID op Azure AD-apparaten toegewezen.",
- "dateAssigned": "Tijdstempel van het moment waarop het profiel is toegewezen aan het apparaat.",
- "deviceDisplayName": "Een unieke naam voor een apparaat configureren. Deze naam wordt genegeerd in implementaties die hybride Azure AD-gekoppeld zijn. De apparaatnaam is nog steeds afkomstig uit het profiel voor domeindeelname voor hybride Azure AD-apparaten.",
- "deviceName": "De naam die wordt weergegeven wanneer iemand heeft geprobeerd het apparaat te detecteren en verbinding te maken.",
- "deviceUseType": " Het apparaat wordt ingesteld op basis van uw keuze. U kunt later altijd wijzigingen aanbrengen in de instellingen.\r\n \r\n - Voor vergaderingen en presentaties is Windows Hello niet ingeschakeld en worden de gegevens na elke sessie verwijderd.\r\n
\r\n - Voor teamsamenwerking is Windows Hello ingeschakeld en worden de profielen opgeslagen voor snelle aanmelding
\r\n
",
- "enrollmentState": "Hiermee wordt aangegeven of het apparaat is ingeschreven.",
- "intuneDevice": "Ga naar Apparaatdetails voor het gekoppelde apparaat. N.v.t. betekent dat er geen gekoppeld apparaat is.",
- "lastContacted": "Tijdstempel van het moment waarop voor het laatst contact is opgenomen met het apparaat.",
- "make": "Fabrikant van het geselecteerde apparaat.",
- "model": "Model van het geselecteerde apparaat",
- "profile": "Naam van het profiel dat is toegewezen aan het apparaat.",
- "profileStatus": "Hiermee wordt aangegeven of er een profiel aan het apparaat is toegewezen.",
- "purchaseOrderId": "Inkooporder-id",
- "resourceAccount": "De id van het apparaat of de user principal name (UPN).",
- "serialNumber": "Serienummer van het geselecteerde apparaat.",
- "userPrincipalName": "Gebruiker naar vooraf ingevulde verificatie tijdens de installatie van het apparaat."
- },
- "allDevices": "Alle apparaten",
- "allDevicesAlreadyAssignedError": "Er is al een Autopilot-profiel toegewezen aan alle apparaten.",
- "assignFailedDescription": "Kan de toewijzingen voor {0} niet bijwerken.",
- "assignFailedTitle": "Kan de AutoPilot-profieltoewijzingen niet bijwerken.",
- "assignSuccessDescription": "De toewijzingen voor {0} zijn bijgewerkt.",
- "assignSuccessTitle": "De AutoPilot-profieltoewijzingen zijn bijgewerkt.",
- "assignSufaceHub2ProfileNextStep": "Volgende stappen voor deze implementatie",
- "assignSurfaceHub2ProfileToDeviceGroup": "1. Wijs dit profiel toe aan minstens één apparaatgroep",
- "assignSurfaceHub2ProfileToResourceAccount": "2. Wijs een resourceaccount toe aan elk Surface Hub-apparaat waarop u dit profiel implementeert",
- "assignedDevicesCount": "Toegewezen apparaten",
- "assignedDevicesResourceAccountDescription": "Als u dit profiel op een apparaat wilt implementeren, moet u een resourceaccount toewijzen aan het apparaat. Selecteer één apparaat per keer om een bestaand resourceaccount toe te wijzen of om een nieuw account te maken. Meer informatie over resourceaccounts
",
- "assignedDevicesResourceAccountStatusBarMessage": "In deze tabel vindt u alleen de Surface Hub 2-apparaten waaraan dit profiel is toegewezen.",
- "assigningDescription": "Toewijzingen voor {0} bijwerken.",
- "assigningTitle": "AutoPilot-profieltoewijzingen bijwerken.",
- "cannotDeleteMessage": "Dit profiel is toegewezen aan groepen. U moet de toewijzing van alle groepen aan dit profiel ongedaan maken voordat u het kunt verwijderen.",
- "cannotDeleteTitle": "Kan {0} niet verwijderen",
- "createdDateTime": "Gemaakt",
- "deleteMessage": "Als u dit AutoPilot-profiel verwijdert, verschijnt bij apparaten die aan deze categorie zijn toegewezen de melding Niet toegewezen.",
- "deleteMessageWithPolicySet": "{0} maakt deel uit van een of meer beleidssets. Als u {0} verwijdert, kunt u deze niet langer toewijzen via deze beleidssets.",
- "deleteTitle": "Weet u zeker dat u dit profiel wilt verwijderen?",
- "description": "Beschrijving",
- "deviceType": "Apparaattype",
- "deviceUse": "Apparaatgebruik",
- "directoryServiceHintForSurfaceHub2": " \r\n Autopilot ondersteunt alleen de optie Aan Azure AD toegevoegd voor Surface Hub 2-apparaten. Geef aan hoe apparaten worden toegevoegd aan Active Directory (AD) in uw organisatie.\r\n
\r\n \r\n - \r\n Aan Azure AD toegevoegd: alleen in de cloud zonder on-premises Windows Server Active Directory.\r\n
\r\n
\r\n ",
- "directoryServiceHintForWindowsPC": "\r\n \r\n Opgeven hoe apparaten worden toegevoegd aan Active Directory (AD) in uw organisatie:\r\n
\r\n \r\n - \r\n Toegevoegd aan Azure AD: alleen in de cloud zonder een on-premises Windows Server Active Directory\r\n
\r\n
\r\n ",
- "getAssignedDevicesCountError": "Er is een fout opgetreden bij het ophalen van het aantal toegewezen apparaten.",
- "getAssignmentsError": "Er is een fout opgetreden bij het ophalen van de AutoPilot-profieltoewijzingen.",
- "harvestDeviceId": "Alle doelapparaten converteren naar Autopilot",
- "harvestDeviceIdDescription": "Dit profiel kan standaard alleen worden toegepast op Autopilot-apparaten die zijn gesynchroniseerd vanuit de Autopilot-service.",
- "harvestDeviceIdInfo": "\r\n Selecteer Ja als u alle doelapparaten bij Autopilot wilt registreren als deze nog niet zijn geregistreerd. De volgende keer dat geregistreerde apparaten de Windows Out of Box Experience (OOBE) doorlopen, wordt het toegewezen Autopilot-scenario toegepast.\r\n
\r\n Houd er rekening mee dat voor bepaalde Autopilot-scenario's specifieke minimale builds van Windows vereist zijn. Controleer of uw apparaat de vereiste minimumbuild heeft om het scenario te doorlopen.\r\n
\r\n Als u het profiel verwijdert, worden betrokken apparaten niet verwijderd uit Autopilot. Als u een apparaat wilt verwijderen uit Autopilot, gebruikt u de weergave Windows Autopilot-apparaten.\r\n ",
- "harvestDeviceIdWarning": "Na de conversie kunt u Autopilot-apparaten alleen herstellen door de apparaten te verwijderen uit de lijst met Autopilot-apparaten.",
- "holoLensCommandMenu": "HoloLens",
- "info": "Met Windows AutoPilot Deployment-profielen kunt u de out-of-box experience voor uw apparaten aanpassen.",
- "invalidProfileNameMessage": "Het teken {0} is niet toegestaan",
- "joinTypeLabel": "Deelnemen aan Azure AD als",
- "lastModifiedDateTime": "Laatst gewijzigd:",
- "name": "Naam",
- "noAutopilotProfile": "Geen AutoPilot-profielen",
- "notEnoughPermissionAssignedError": "U hebt onvoldoende machtigingen om dit profiel toe te wijzen aan een of meer van uw geselecteerde groepen. Neem contact op met uw beheerder.",
- "profile": "profiel",
- "resourceAccountStatusBarMessage": "Er is een resourceaccount vereist voor elk Surface Hub 2-apparaat waarvoor dit profiel is geïmplementeerd. Klik voor meer informatie.",
- "selectServices": "Selecteer adreslijstservice-apparaten die worden toegevoegd",
- "surfaceHub2CommandMenu": "Surface Hub 2",
- "surfaceHub2SCommandMenu": "Surface Hub 2S",
- "userAffinityLabel": "Implementatiemodus",
- "windowsPCCommandMenu": "Windows-pc",
- "directoryServiceLabel": "Toevoegen aan Azure AD als"
- },
- "AppInformationTab": {
- "Error": {
- "multipleChildApps": "Een macOS LOB-app kan alleen worden geïnstalleerd als beheerd wanneer het geüploade pakket één app bevat."
- },
- "Info": {
- "AppStoreUrl": {
- "android": "Voer de koppeling naar de app-vermelding in Google Play Store in. Bijvoorbeeld:",
- "androidLink": "https://play.google.com/store/apps/details?id=com.microsoft.office.outlook",
- "windows": "Voer de koppeling naar de app-vermelding in Microsoft Store in. Bijvoorbeeld:",
- "windowsLink": "https://www.microsoft.com/en-us/p/microsoft-to-do-lists-tasks-reminders/9nblggh5r558"
- },
- "appPackageFile": "Een bestand dat uw app bevat in een indeling die kan worden gesideload op een apparaat. Tot de geldige pakkettypen behoren: Android (.apk), iOS (.IPA), macOS (.intunemac), Windows (.msi, .appx, .appxbundle, .msix en .msixbundle).",
- "applicableDeviceType": "Selecteer de apparaattypen waarop deze app kan worden geïnstalleerd.",
- "category": "Geef categorieën voor de app op zodat gebruikers gemakkelijker kunnen sorteren en zoeken in de bedrijfsportal. U kunt meerdere categorieën kiezen.",
- "categoryLink": "https://docs.microsoft.com/en-us/intune/apps/apps-add#create-and-edit-categories-for-apps",
- "description": "Help uw apparaatgebruikers te begrijpen wat de app is en/of wat ze kunnen doen in de app. Deze beschrijving is zichtbaar in de bedrijfsportal.",
- "developer": "De naam van het bedrijf of de persoon die de app heeft ontwikkeld. Deze informatie is zichtbaar voor personen die zijn aangemeld bij het beheercentrum.",
- "displayVersion": "De versie van de app. Deze informatie is zichtbaar voor gebruikers in de bedrijfsportal.",
- "infoUrl": "Personen koppelen aan een website of documentatie met meer informatie over de app. De informatie-URL is zichtbaar voor gebruikers in de bedrijfsportal.",
- "isFeatured": "Aanbevolen apps worden opvallend weergegeven in de bedrijfsportal zodat gebruikers ze snel kunnen gebruiken.",
- "learnMore": "Meer informatie",
- "logo": "Upload een logo dat is gekoppeld aan de app. Dit logo wordt overal in de bedrijfsportal naast de app weergegeven.",
- "macOSDmgAppPackageFile": "Een bestand dat uw app bevat in een indeling die op een apparaat kan worden geladen. Geldig pakkettype: .dmg.",
- "minOperatingSystem": "Selecteer de oudste versie van het besturingssysteem waarop de app mag worden geïnstalleerd. Als u de app aan een apparaat met een ouder besturingssysteem toewijst, wordt deze niet geïnstalleerd.",
- "name": "Voeg een naam voor de app toe. Deze naam wordt weergegeven in de lijst met apps van Intune en voor gebruikers in de bedrijfsportal.",
- "notes": "Voeg aanvullende opmerkingen over de app toe. Notities zijn zichtbaar voor personen die zijn aangemeld bij het beheercentrum.",
- "owner": "De naam van de persoon in uw organisatie die de licentieverlening beheert of die de contactpersoon voor deze app is. Deze naam is zichtbaar voor personen die zijn aangemeld bij het beheercentrum.",
- "packageName": "Neem contact op met de fabrikant van het apparaat om de pakketnaam van de app op te halen. Voorbeeld van een pakketnaam: com.example.app",
- "privacyUrl": "Geef een koppeling op voor mensen die meer informatie willen hebben over de privacyinstellingen en voorwaarden van de app. De privacy-URL is zichtbaar voor gebruikers in de bedrijfsportal.",
- "publisher": "De naam van de ontwikkelaar of het bedrijf dat de app distribueert. Deze informatie is zichtbaar voor gebruikers in de bedrijfsportal.",
- "selectApp": "Zoek in de App Store naar iOS Store-apps die u wilt implementeren met Intune.",
- "useManagedBrowser": "Als dit vereist is en een gebruiker de web-app opent, wordt deze geopend in een door Intune beveiligde browser zoals Microsoft Edge of Intune Managed Browser. Deze instelling is van toepassing op iOS- en Android-apparaten.",
- "useManagedBrowserLink": "https://docs.microsoft.com/en-us/intune/apps/app-configuration-managed-browser",
- "win32AppPackageFile": "Een bestand dat uw app bevat in een indeling die kan worden gesideload op een apparaat. Geldig pakkettype: .intunewin."
- },
- "descriptionPreview": "Preview",
- "descriptionRequired": "Een beschrijving is vereist.",
- "editDescription": "Beschrijving bewerken",
- "name": "App-gegevens",
- "nameForOfficeSuitApp": "Gegevens over de app-suite"
- },
+ "Columns": {
+ "codeType": "Codetype",
+ "returnCode": "Retourcode"
+ },
+ "bladeTitle": "Retourcodes",
+ "gridAriaLabel": "Retourcodes",
+ "header": "Geef de retourcodes op het gedrag na installatie op te geven:",
+ "onAddAnnounceMessage": "Item {0} van {1} met toegevoegde code retourneren",
+ "onDeleteSuccess": "De retourcode is {0} verwijderd",
+ "returnCodeAlreadyUsedValidation": "De retourcode wordt al gebruikt.",
+ "returnCodeMustBeIntegerValidation": "De retourcode moet een geheel getal zijn.",
+ "returnCodeShouldBeAtLeast": "De retourcode moet ten minste {0} zijn.",
+ "returnCodeShouldBeAtMost": "De retourcode mag maximaal {0} zijn.",
+ "selectorLabel": "Retourcodes"
+ },
"NotificationMessage": {
"NotificationMessageTemplatesTab": {
"arabic": "Arabisch",
@@ -10516,84 +10079,599 @@
"localeLabel": "Landinstellingen",
"isDefaultLocale": "Is standaard"
},
- "Win32Program": {
- "DeviceRestartBehaviorOptions": {
- "allow": "Na installatie van de app kan opnieuw opstarten van het apparaat worden afgedwongen",
- "basedOnReturnCode": "Bepaal bedrag op basis van retourcodes",
- "force": "Via Intune wordt opnieuw opstarten van het apparaat afgedwongen",
- "suppress": "Geen specifieke actie"
- },
- "RunAsAccountOptions": {
- "system": "Systeem",
- "user": "Gebruiker"
- },
- "bladeTitle": "Programma",
- "deviceRestartBehavior": "Gedrag voor opnieuw opstarten van apparaat",
- "deviceRestartBehaviorTooltip": "Selecteer het gedrag voor het opnieuw opstarten van het apparaat na installatie van de app. Selecteer Bepaal gedrag op basis van retourcodes om het apparaat opnieuw op te starten op basis van de instellingen van de retourcodes. Selecteer 'Geen specifieke actie' om opnieuw opstarten van het apparaat te onderdrukken bij het installeren van apps op basis van MSI. Selecteer Na installatie van de app kan opnieuw opstarten van het apparaat worden afgedwongen als u wilt dat de app wordt geïnstalleerd zonder dat opnieuw opstarten wordt onderdrukt. Selecteer Via Intune wordt opnieuw opstarten van het apparaat afgedwongen om het apparaat altijd opnieuw op te starten na installatie van de app.",
- "header": "Geef de opdrachten op voor het installeren en verwijderen van deze app:",
- "installCommand": "Opdracht voor installeren",
- "installCommandMaxLengthErrorMessage": "De installatieopdracht mag niet langer zijn dan de maximaal toegestane lengte van 1024 tekens.",
- "installCommandTooltip": "De volledige opdrachtregel voor installatie die wordt gebruikt om deze app te installeren.",
- "runAs32Bit": "Opdrachten voor installeren en verwijderen uitvoeren in een 32 bitsproces op 64 bitsclients",
- "runAs32BitTooltip": "Selecteer Ja als u de app in een 32 bitsproces op 64 bitsclients wilt installeren en verwijderen. Selecteer Nee (standaard) als u de app in een 64 bitsproces op 64 bitsclients wilt installeren en verwijderen. 32 bitsclients gebruiken altijd een 32 bitsproces.",
- "runAsAccount": "Installatiegedrag",
- "runAsAccountTooltip": "Selecteer Systeem om deze app te installeren voor alle gebruikers, indien ondersteund. Selecteer Gebruiker om deze app te installeren voor de aangemelde gebruiker op het apparaat. Bij wijzigingen kunnen updates en verwijderingen voor apps met MSI met een dubbel doel pas worden voltooid als de waarde die tijdens de oorspronkelijke installatie op het apparaat is toegepast, is hersteld.",
- "selectorLabel": "Programma",
- "uninstallCommand": "Opdracht voor verwijderen",
- "uninstallCommandTooltip": "De volledige opdrachtregel voor verwijdering die wordt gebruikt om deze app te verwijderen."
- },
- "OutlookAppConfigSettings": {
- "AllowUserToChangeSetting": {
- "title": "Toestaan dat de gebruiker de instelling kan wijzigen",
- "tooltip": "Geef aan of de gebruiker de synchronisatie-instelling mag wijzigen."
- },
- "AllowWorkAccounts": {
- "title": "Alleen werk- of schoolaccounts toestaan",
- "tooltip": " Als u deze instelling inschakelt, kunnen gebruikers geen persoonlijke e-mail- en opslagaccounts toevoegen in Outlook. Als de gebruiker een persoonlijk account heeft toegevoegd aan Outlook, wordt de gebruiker gevraagd om dit te verwijderen. Als de gebruiker het persoonlijke account niet verwijdert, kan het werk- of schoolaccount niet worden toegevoegd."
- },
- "BlockExternalImages": {
- "title": "Externe afbeeldingen blokkeren",
- "tooltip": "Als de optie Externe afbeeldingen blokkeren is ingeschakeld, wordt met de app voorkomen dat afbeeldingen die op internet worden gehost en in de berichttekst zijn ingesloten, kunnen worden gedownload. Als de optie niet is geconfigureerd, wordt standaard de app-instelling Uit gebruikt"
- },
- "ConfigureEmail": {
- "title": "Instellingen van e-mailaccount configureren"
- },
- "DefaultAppSignatureSetting": {
- "Tooltip": {
- "android": "In de standaardhandtekening voor de app wordt aangegeven of 'Outlook voor Android downloaden' als standaardhandtekening voor de app wordt gebruikt tijdens het opstellen van berichten. Als de instelling op Uit is ingesteld, wordt de standaardhandtekening niet gebruikt; gebruikers kunnen echter wel hun eigen handtekening toevoegen.\r\n\r\nWanneer deze instelling op Niet geconfigureerd is ingesteld, wordt de standaardinstelling voor de app ingesteld op Aan.",
- "iOS": "In de standaardhandtekening voor de app wordt aangegeven of 'Outlook voor iOS downloaden' als standaardhandtekening voor de app wordt gebruikt tijdens het opstellen van berichten. Als de instelling op Uit is ingesteld, wordt de standaardhandtekening niet gebruikt; gebruikers kunnen echter wel hun eigen handtekening toevoegen.\r\n\r\nWanneer deze instelling op Niet geconfigureerd is ingesteld, wordt de standaardinstelling voor de app ingesteld op Aan."
- },
- "title": "Standaardhandtekening voor apps"
- },
- "OfficeFeedReplies": {
- "title": "Feed detecteren",
- "tooltip": "Feeds detecteren van uw meest gebruikte Office-bestanden. Deze feed is standaard ingeschakeld wanneer Delve is ingeschakeld voor de gebruiker. Wanneer de instelling niet is geconfigureerd, is de app standaard ingesteld op Aan."
- },
- "OrganizeMailByThread": {
- "title": "E-mailberichten rangschikken op thread",
- "tooltip": "Standaard worden e-mailconversaties in Outlook gebundeld in een weergave met gespreksthreads. Als deze instelling is uitgeschakeld, wordt elk e-mailbericht in Outlook afzonderlijk weergegeven en worden berichten niet op thread gegroepeerd."
- },
- "PlayMyEmails": {
- "title": "Mijn e-mailberichten afspelen",
- "tooltip": "De functie Mijn e-mailberichten afspelen is standaard niet ingeschakeld in de app, maar wordt aangeboden aan in aanmerking komende gebruikers via een banner in het Postvak IN. Wanneer deze functie is ingesteld op Uit, wordt deze niet aangeboden aan in aanmerking komende gebruikers in de app. Gebruikers kunnen ervoor kiezen Mijn e-mailberichten afspelen handmatig in te schakelen vanuit de app, zelfs wanneer deze functie is ingesteld op Uit. Als deze optie is ingesteld als Niet geconfigureerd, is de standaardinstelling voor de app Aan en wordt de functie aangeboden aan in aanmerking komende gebruikers."
- },
- "SuggestedReplies": {
- "title": "Voorgestelde antwoorden",
- "tooltip": "Wanneer u een bericht opent, kan Outlook antwoorden voorstellen onder het bericht. Als u een voorgesteld antwoord selecteert, kunt u het antwoord bewerken voordat u het verzendt."
- },
- "SyncCalendars": {
- "title": "Agenda's synchroniseren",
- "tooltip": "Configureren of gebruikers hun Outlook-agenda kunnen synchroniseren met de systeemeigen agenda-app en -database."
- },
- "TextPredictions": {
- "title": "Tekstvoorspellingen",
- "tooltip": "Outlook kan woorden en zinsdelen voorstellen bij het opstellen van berichten. Wanneer Outlook een suggestie geeft, kunt u vegen om deze te accepteren. Wanneer deze functie niet is geconfigureerd, is de app-standaardinstelling Aan."
+ "WindowsQualityUpdateProfile": {
+ "Details": {
+ "DaysUntilForcedReboot": {
+ "label": "Het aantal dagen dat moet worden gewacht voordat opnieuw opstarten wordt afgedwongen"
+ },
+ "Description": {
+ "label": "Beschrijving"
+ },
+ "Name": {
+ "label": "Naam"
+ },
+ "QualityUpdateRelease": {
+ "label": "De installatie van kwaliteitsupdates versnellen als de besturingssysteemversie van het apparaat lager is dan:"
+ },
+ "bladeTitle": "Kwaliteitsupdates Windows 10 en hoger (preview)",
+ "loadError": "Kan niet laden."
+ },
+ "TabName": {
+ "qualityUpdateSettings": "Instellingen"
+ },
+ "infoBoxText": "Het enige besturingselement voor kwaliteitsupdates dat momenteel beschikbaar is naast het bestaande beleid voor update-ringen van Windows 10 en hoger, is de mogelijkheid om kwaliteitsupdates te versnellen voor apparaten die buiten een opgegeven patchniveau vallen. In de toekomst zullen meer besturingselementen beschikbaar zijn.",
+ "warningBoxText": "Door het versnellen van software-updates kunt u weliswaar de benodigde tijd voor het verkrijgen van naleving (indien nodig) verkorten, maar dit heeft bredere gevolgen voor de productiviteit van eindgebruikers. De kans dat gebruikers te maken krijgen met een herstart tijdens kantooruren neemt hierdoor aanzienlijk toe."
+ },
+ "TermsOfUse": {
+ "Languages": {
+ "addLanguage": "Add language",
+ "af": "Afrikaans",
+ "am": "Amharic",
+ "arSA": "Arabic (Saudi Arabia)",
+ "as": "Assamese",
+ "az": "Azerbaijani",
+ "be": "Belarusian",
+ "bg": "Bulgarian",
+ "bn": "Bangla",
+ "bnIN": "Bangla (India)",
+ "bs": "Bosnian",
+ "ca": "Catalan",
+ "caESvalencia": "Valencian (Spain)",
+ "cs": "Czech",
+ "cy": "Welsh",
+ "da": "Danish",
+ "de": "German",
+ "default": "Default",
+ "defaultDetailsTag": "{0} (Default)",
+ "el": "Greek",
+ "en": "English",
+ "enGB": "English (United Kingdom)",
+ "es": "Spanish",
+ "esMX": "Spanish (Mexico)",
+ "et": "Estonian",
+ "eu": "Basque",
+ "fa": "Persian",
+ "fi": "Finnish",
+ "fil": "Filipino",
+ "fr": "French",
+ "frCA": "French (Canada)",
+ "ga": "Irish",
+ "gd": "Scottish Gaelic",
+ "gl": "Galician",
+ "gu": "Gujarati",
+ "ha": "Hausa",
+ "he": "Hebrew",
+ "hi": "Hindi",
+ "hr": "Croatian",
+ "hu": "Hungarian",
+ "hy": "Armenian",
+ "id": "Indonesian",
+ "ig": "Igbo",
+ "is": "Icelandic",
+ "it": "Italian",
+ "ja": "Japanese",
+ "ka": "Georgian",
+ "kk": "Kazakh",
+ "km": "Khmer",
+ "kn": "Kannada",
+ "ko": "Korean",
+ "kok": "Konkani",
+ "kuArab": "Central Kurdish (Arabic)",
+ "ky": "Kyrgyz",
+ "languageOptions": "Language Options",
+ "lb": "Luxembourgish",
+ "lo": "Lao",
+ "lt": "Lithuanian",
+ "lv": "Latvian",
+ "mi": "Maori",
+ "mk": "Macedonian",
+ "ml": "Malayalam",
+ "mn": "Mongolian",
+ "mr": "Marathi",
+ "ms": "Malay",
+ "mt": "Maltese",
+ "ne": "Nepali",
+ "nl": "Dutch",
+ "nnNO": "Norwegian, Nynorsk (Norway)",
+ "no": "Norwegian",
+ "notSpecified": "Language not specified",
+ "nso": "Sesotho sa Leboa",
+ "or": "Odia",
+ "paArabPK": "Punjabi (Islamic Republic of Pakistan)",
+ "paIN": "Punjabi (India)",
+ "pl": "Polish",
+ "prs": "Dari",
+ "ptBR": "Portuguese (Brazil)",
+ "ptPT": "Portuguese (Portugal)",
+ "quz": "Quechua",
+ "ro": "Romanian",
+ "ru": "Russian",
+ "rw": "Kinyarwanda",
+ "sd": "Sindhi",
+ "si": "Sinhala",
+ "sk": "Slovak",
+ "sl": "Slovenian",
+ "sq": "Albanian",
+ "srCyrlBA": "Serbian (Cyrillic, Bosnia and Herzegovina)",
+ "srCyrlRS": "Serbian (Cyrillic, Serbia)",
+ "srLatnRS": "Serbian (Latin, Serbia)",
+ "sv": "Swedish",
+ "sw": "Kiswahili",
+ "ta": "Tamil",
+ "te": "Telugu",
+ "tg": "Tajik",
+ "th": "Thai",
+ "ti": "Tigrinya",
+ "tk": "Turkmen",
+ "tn": "Setswana",
+ "tr": "Turkish",
+ "tt": "Tatar",
+ "ug": "Uyghur",
+ "uk": "Ukrainian",
+ "ur": "Urdu",
+ "uz": "Uzbek",
+ "vi": "Vietnamese",
+ "wo": "Wolof",
+ "xh": "isiXhosa",
+ "yo": "Yoruba",
+ "zhHans": "Chinese (Simplified)",
+ "zhHant": "Chinese (Traditional)",
+ "zu": "isiZulu"
+ },
+ "AcceptanceExpirationFrequency": {
+ "annually": "Annually",
+ "biannually": "Bi-annually",
+ "monthly": "Monthly",
+ "quarterly": "Quarterly"
},
- "ThemesEnabled": {
- "title": "Thema's zijn ingeschakeld",
- "tooltip": "Opgeven of de gebruiker een aangepast visueel thema mag gebruiken."
- }
- },
+ "Wizard": {
+ "AgreementTargetEntityScope": {
+ "NotSelected": {
+ "label": "None selected"
+ },
+ "selectEntityTitle": "Select group",
+ "title": "Select group"
+ },
+ "PolicyFile": {
+ "Languages": {
+ "Empty": {
+ "default": "Select default language",
+ "nonDefault": "Select a language"
+ }
+ },
+ "Validations": {
+ "duplicateLanguage": "Oops, {0} appears to be selected multiple times. Language selection must be unique."
+ }
+ },
+ "PolicyTemplate": {
+ "InfoBox": {
+ "allGuestsAllApps": "A conditional access policy will be created for all guests and all cloud apps. This policy impacts the Azure portal. Once this is created you might be required to sign-out and sign-in.",
+ "allUsersAllApps": "A conditional access policy will be created for all users and all cloud apps. This policy impacts the Azure portal. Once this is created you will be required to sign-out and sign-in.",
+ "custom": "Select the users, groups, and apps that this Terms of Use will be applied to.",
+ "noPolicy": "This terms of use will appear in the grant control list when creating a conditional access policy."
+ }
+ },
+ "Section": {
+ "conditionalAccessSubtitle": "Enforce with conditional access policy templates",
+ "conditionalAccessTitle": "Conditional access",
+ "termsOfUseSubtitle": "Create and upload documents",
+ "termsOfUseTitle": "Terms of use"
+ },
+ "acceptanceDurationInfo": "The terms of use will be enforced immediately and each user will have to re-consent every specified number of days.",
+ "acceptanceDurationLabel": "Duration before re-acceptance required (days)",
+ "acceptanceDurationPlaceholder": "Example: '90'",
+ "acceptanceExpirationFrequencyInfo": "Require users to consent on a recurring basis.",
+ "acceptanceExpirationFrequencyLabel": "Frequency",
+ "acceptanceExpirationStartDateTimeInfo": "The terms of use will be enforced immediately and users will be required to re-consent on this date.",
+ "acceptanceExpirationStartDateTimeLabel": "Expire starting on",
+ "agreementIsPerDeviceAcceptanceRequiredInfo": "The end users will be required to consent to the terms of use on every device.",
+ "agreementIsPerDeviceAcceptanceRequiredLabel": "Require users to consent on every device",
+ "agreementIsViewingBeforeAcceptanceRequiredInfo": "The end users will be required to view the terms of use prior to accepting.",
+ "agreementIsViewingBeforeAcceptanceRequiredLabel": "Require users to expand the terms of use",
+ "agreementNameInfo": "Name will be used to manage the terms of use within the Azure portal.",
+ "agreementNameLabel": "Name",
+ "agreementNamePlaceholderText": "Example: 'All users terms of use'",
+ "agreementRequirmentLabel": "Required Upon",
+ "agreementTargetEntityLabel": "Users targeted",
+ "agreementUploadPolicyLabel": "Terms of use",
+ "agreementUploadPolicyPlaceholderText": "Upload required PDF",
+ "createButtonLabel": "Create",
+ "createPolicyInfo": "In order to enforce the terms of use, a conditional access policy is required. You can create a conditional access policy targeted to specific users and applications later or use one of the predefined templates.",
+ "createPolicyLabel": "Create a policy",
+ "isAcceptanceExpirationEnabledInfo": "The terms of use will be enforced immediately and all users will be forced to re-consent on a schedule.",
+ "isAcceptanceExpirationEnabledLabel": "Expire consents",
+ "pdfValidationInvalidFileFormat": "The file must be in the .pdf format.",
+ "policyFilesInfo": "Upload a PDF file containing the terms of use that your end users must accept. Based on end user preferences they will be shown the appropriate language or if not match the default language will be shown.
For end users agreeing on mobile devices, we recommend the PDF font size to be at least 24 pt.
Display name will be the title of the terms of use that is presented to the end user.",
+ "policyFilesLabel": "Terms of use document",
+ "policyTemplateInfo": "These templates are pre configured conditional access policies that are targeted to specific users and applications.",
+ "policyTemplateLabel": "Policy templates",
+ "title": "New terms of use"
+ }
+ },
+ "TACSettings": {
+ "edgeSettings": "Configuratie-instellingen voor Microsoft Edge",
+ "edgeWindowsDataProtectionSettings": "Instellingen voor gegevensbescherming van Microsoft Edge (Windows) - Preview",
+ "edgeWindowsSettings": "Instellingen voor configuratie van Microsoft Edge (Windows) - Preview",
+ "generalAppConfig": "Algemene app-configuratie",
+ "generalSettings": "Algemene configuratie-instellingen",
+ "outlookSMIMEConfig": "S/MIME-instellingen voor Outlook",
+ "outlookSettings": "Configuratie-instellingen voor Outlook",
+ "sMIME": "S/MIME"
+ },
+ "MicrosoftEdgeChannel": {
+ "beta": "Beta",
+ "dev": "Dev",
+ "stable": "Stable"
+ },
+ "WipPolicySettings": {
+ "addNetworkBoundary": "Netwerkgrens toevoegen",
+ "addNetworkBoundaryButton": "Netwerkgrens toevoegen...",
+ "allowWindowsSearch": "Toestaan dat Windows Search versleutelde bedrijfsgegevens en Store-apps doorzoekt",
+ "authoritativeIpRanges": "De lijst IP-bereiken van ondernemingen is bindend (geen automatische detectie toepassen)",
+ "authoritativeProxyServers": "De lijst Proxyservers van onderneming is bindend (geen automatische detectie toepassen)",
+ "boundaryType": "Grenstype",
+ "cloudResources": "Cloudresources",
+ "corporateIdentity": "Bedrijfsidentiteit",
+ "dataRecoveryCert": "Een DRA-certificaat (Data Recovery Agent) uploaden zodat versleutelde gegevens kunnen worden hersteld",
+ "editNetworkBoundary": "Netwerkgrens bewerken",
+ "enrollmentState": "Inschrijvingsstatus",
+ "iPv4Ranges": "IPv4-bereiken",
+ "iPv6Ranges": "IPv6-bereiken",
+ "internalProxyServers": "Interne proxyservers",
+ "maxInactivityTime": "De maximale hoeveelheid tijd (in minuten) die het apparaat niet-actief mag zijn voordat het apparaat wordt vergrendeld met een pincode of wachtwoord",
+ "maxPasswordAttempts": "Het aantal toegestane mislukte authenticaties voordat een apparaat wordt gewist",
+ "mdmDiscoveryUrl": "Detectie-URL voor MDM",
+ "mdmRequiredSettingsInfo": "Dit beleid is alleen van toepassing op Windows 10 Anniversary Edition en hoger. Met dit beleid word gebruikgemaakt van Windows Information Protection (WIP) voor beveiliging.",
+ "minimumPinLength": "Het minimum aantal tekens instellen dat is vereist voor de pincode",
+ "name": "Naam",
+ "networkBoundariesGridEmptyText": "De netwerkgrenzen die u hebt toegevoegd, worden hier weergegeven",
+ "networkBoundary": "De grens van het netwerk",
+ "networkDomainNames": "Netwerkdomeinen",
+ "neutralResources": "Neutrale resources",
+ "passportForWork": "Windows Hello voor Bedrijven gebruiken als methode om u aan te melden bij Windows",
+ "pinExpiration": "Opgeven gedurende welke periode (in dagen) een pincode mag worden gebruikt voordat de gebruiker deze van het systeem moet wijzigen",
+ "pinHistory": "Het aantal oude pincodes dat kan worden toegewezen aan een gebruikersaccount opgeven die niet opnieuw kunnen worden gebruikt.",
+ "pinLowercaseLetters": "Het gebruik van kleine letters in de pincode voor Windows Hello voor Bedrijven configureren",
+ "pinSpecialCharacters": "Het gebruik van speciale tekens in de pincode voor Windows Hello voor Bedrijven configureren",
+ "pinUppercaseLetters": "Het gebruik van hoofdletters in de pincode voor Windows Hello voor Bedrijven configureren",
+ "protectUnderLock": "Voorkomen dat bedrijfsgegevens toegankelijk zijn via apps wanneer het apparaat is vergrendeld. Dit is alleen van toepassing op Windows 10 Mobile",
+ "protectedDomainNames": "Beveiligde domeinen",
+ "proxyServers": "Proxyservers",
+ "requireAppPin": "App-pincode uitschakelen wanneer de pincode van het apparaat wordt beheerd",
+ "requiredSettings": "Verplichte instellingen",
+ "requiredSettingsInfo": "Als u het bereik wijzigt of dit beleid verwijdert, worden de bedrijfsgegevens ontsleuteld.",
+ "revokeOnMdmHandoff": "Toegang tot beveiligde gegevens intrekken wanneer het apparaat wordt ingeschreven bij MDM",
+ "revokeOnUnenroll": "Versleutelingssleutels intrekken bij het ongedaan maken van de registratie",
+ "rmsTemplateForEdp": "De sjabloon-id opgeven die moet worden gebruikt voor Azure RMS",
+ "showWipIcon": "Het pictogram voor ondernemingsgegevensbescherming weergeven",
+ "type": "Type",
+ "useRmsForWip": "Azure RMS voor WIP gebruiken",
+ "value": "Waarde",
+ "weRequiredSettingsInfo": "Dit beleid is alleen van toepassing op Windows 10-makersupdate en hoger. Met dit beleid word gebruikgemaakt van Windows Information Protection (WIP) en Windows MAM voor beveiliging.",
+ "wipProtectionMode": "Modus Windows Information Protection",
+ "withEnrollment": "Met inschrijving",
+ "withoutEnrollment": "Zonder inschrijving"
+ },
+ "OfficeApplicationAdditionalType": {
+ "projectProRetail": "Project Online Desktop Client",
+ "visioProRetail": "Visio Online-abonnement 2"
+ },
+ "Countries": {
+ "ae": "Verenigde Arabische Emiraten",
+ "ag": "Antigua en Barbuda",
+ "ai": "Anguilla",
+ "al": "Albanië",
+ "am": "Armenië",
+ "ao": "Angola",
+ "ar": "Argentinië",
+ "at": "Oostenrijk",
+ "au": "Australië",
+ "az": "Azerbeidzjan",
+ "bb": "Barbados",
+ "be": "België",
+ "bf": "Burkina Faso",
+ "bg": "Bulgarije",
+ "bh": "Bahrein",
+ "bj": "Benin",
+ "bm": "Bermuda",
+ "bn": "Brunei",
+ "bo": "Bolivia",
+ "br": "Brazilië",
+ "bs": "Bahama's",
+ "bt": "Bhutan",
+ "bw": "Botswana",
+ "by": "Belarus",
+ "bz": "Belize",
+ "ca": "Canada",
+ "cg": "Republiek Congo",
+ "ch": "Zwitserland",
+ "cl": "Chili",
+ "cn": "China",
+ "co": "Colombia",
+ "cr": "Costa Rica",
+ "cv": "Republiek van Cabo Verde",
+ "cy": "Cyprus",
+ "cz": "Tsjechië",
+ "de": "Duitsland",
+ "dk": "Denemarken",
+ "dm": "Dominica",
+ "do": "Dominicaanse Republiek",
+ "dz": "Algerije",
+ "ec": "Ecuador",
+ "ee": "Estland",
+ "eg": "Egypte",
+ "es": "Spanje",
+ "fi": "Finland",
+ "fj": "Fiji",
+ "fm": "Federale Staten van Micronesia",
+ "fr": "Frankrijk",
+ "gb": "Verenigd Koninkrijk",
+ "gd": "Grenada",
+ "gh": "Ghana",
+ "gm": "Gambia",
+ "gr": "Griekenland",
+ "gt": "Guatemala",
+ "gw": "Guinee-Bissau",
+ "gy": "Guyana",
+ "hk": "Hongkong SAR",
+ "hn": "Honduras",
+ "hr": "Kroatië",
+ "hu": "Hongarije",
+ "id": "Indonesië",
+ "ie": "Ierland",
+ "il": "Israël",
+ "in": "India",
+ "is": "IJsland",
+ "it": "Italië",
+ "jm": "Jamaica",
+ "jo": "Jordanië",
+ "jp": "Japan",
+ "ke": "Kenia",
+ "kg": "Kirgistan",
+ "kh": "Cambodja",
+ "kn": "Saint Kitts en Nevis",
+ "kr": "Republiek Korea",
+ "kw": "Koeweit",
+ "ky": "Kaaimaneilanden",
+ "kz": "Kazachstan",
+ "la": "Democratische Volksrepubliek Laos",
+ "lb": "Libanon",
+ "lc": "Saint Lucia",
+ "lk": "Sri Lanka",
+ "lr": "Liberia",
+ "lt": "Litouwen",
+ "lu": "Luxemburg",
+ "lv": "Letland",
+ "md": "Republiek Moldavië",
+ "mg": "Madagaskar",
+ "mk": "Noord-Macedonië",
+ "ml": "Mali",
+ "mn": "Mongolië",
+ "mo": "Macau",
+ "mr": "Mauritanië",
+ "ms": "Montserrat",
+ "mt": "Malta",
+ "mu": "Mauritius",
+ "mw": "Malawi",
+ "mx": "Mexico",
+ "my": "Maleisië",
+ "mz": "Mozambique",
+ "na": "Namibië",
+ "ne": "Niger",
+ "ng": "Nigeria",
+ "ni": "Nicaragua",
+ "nl": "Nederland",
+ "no": "Noorwegen",
+ "np": "Nepal",
+ "nz": "Nieuw-Zeeland",
+ "om": "Oman",
+ "pa": "Panama",
+ "pe": "Peru",
+ "pg": "Papoea-Nieuw-Guinea",
+ "ph": "Filippijnen",
+ "pk": "Pakistan",
+ "pl": "Polen",
+ "pt": "Portugal",
+ "pw": "Palau",
+ "py": "Paraguay",
+ "qa": "Qatar",
+ "ro": "Roemenië",
+ "ru": "Rusland",
+ "sa": "Saoedi-Arabië",
+ "sb": "Salomonseilanden",
+ "sc": "Seychellen",
+ "se": "Zweden",
+ "sg": "Singapore",
+ "si": "Slovenië",
+ "sk": "Slowakije",
+ "sl": "Sierra Leone",
+ "sn": "Senegal",
+ "sr": "Suriname",
+ "st": "Sao Tomé en Principe",
+ "sv": "El Salvador",
+ "sz": "Swaziland",
+ "tc": "Turks- en Caicoseilanden",
+ "td": "Tsjaad",
+ "th": "Thailand",
+ "tj": "Tadzjikistan",
+ "tm": "Turkmenistan",
+ "tn": "Tunesië",
+ "tr": "Turkije",
+ "tt": "Trinidad en Tobago",
+ "tw": "Taiwan",
+ "tz": "Tanzania",
+ "ua": "Oekraïne",
+ "ug": "Oeganda",
+ "us": "Verenigde Staten",
+ "uy": "Uruguay",
+ "uz": "Oezbekistan",
+ "vc": "St. Vincent en de Grenadines",
+ "ve": "Venezuela",
+ "vg": "Britse Maagdeneilanden",
+ "vn": "Vietnam",
+ "ye": "Jemen",
+ "za": "Zuid-Afrika",
+ "zw": "Zimbabwe"
+ },
+ "OfficeUpdateChannel": {
+ "current": "Huidig kanaal",
+ "deferred": "Halfjaarlijks ondernemingskanaal",
+ "firstReleaseCurrent": "Huidig kanaal (preview-versie)",
+ "firstReleaseDeferred": "Halfjaarlijks ondernemingskanaal (preview-versie)",
+ "monthlyEnterprise": "Monthly-kanaal (Enterprise)",
+ "placeHolder": "Kies een optie"
+ },
+ "AppProtection": {
+ "allAppTypes": "Doel voor alle app-typen",
+ "androidPlatformLabel": "Android",
+ "appsInAndroidWorkProfile": "Apps in Android for Work-profiel",
+ "appsOnIntuneManagedDevices": "Apps op door Intune beheerde apparaten",
+ "appsOnUnmanagedDevices": "Apps op niet-beheerde apparaten",
+ "iOSPlatformLabel": "iOS/iPadOS",
+ "iosAndroidMacPlatformLabel": "iOS, Android, Mac",
+ "iosAndroidPlatformLabel": "iOS, Android",
+ "macPlatformLabel": "Mac",
+ "notAvailable": "Niet beschikbaar",
+ "windows10PlatformLabel": "Windows 10 en later",
+ "withEnrollment": "Met inschrijving",
+ "withoutEnrollment": "Zonder inschrijving"
+ },
+ "InstallContextType": {
+ "device": "Apparaat",
+ "deviceContext": "Apparaatcontext",
+ "user": "Gebruiker",
+ "userContext": "Gebruikerscontext"
+ },
+ "ProactiveRemediations": {
+ "Create": {
+ "Basics": {
+ "DescriptionMultiLineTextBox": {
+ "label": "Beschrijving",
+ "placeholder": "Een beschrijving invoeren..."
+ },
+ "NameTextBox": {
+ "label": "Naam",
+ "placeholder": "Een naam invoeren"
+ },
+ "PublisherTextBox": {
+ "label": "Uitgever",
+ "placeholder": "Voer een uitgever in"
+ },
+ "VersionTextBox": {
+ "label": "Versie"
+ },
+ "headerDescription": "Maak een nieuw aangepast scriptpakket op basis van detectie- en herstelscripts die u hebt geschreven."
+ },
+ "ScopeTags": {
+ "headerDescription": "Selecteer een of meer groepen om het scriptpakket toe te wijzen."
+ },
+ "Settings": {
+ "DetectionScriptMultiLineTextBox": {
+ "label": "Detectiescript",
+ "placeholder": "Scripttekst invoeren",
+ "requiredValidationMessage": "Voer het detectiescript in"
+ },
+ "EnforceScriptSignatureCheckOptionPicker": {
+ "label": "Controle van scripthandtekening afdwingen"
+ },
+ "LoggedOnCredentialsOptionPicker": {
+ "label": "Dit script uitvoeren met de referenties van de aangemelde gebruiker"
+ },
+ "RemediationScript": {
+ "infoBox": "Dit script wordt uitgevoerd in de modus voor alleen detecteren omdat er geen herstelscript is."
+ },
+ "RemediationScriptMultiLineTextBox": {
+ "label": "Script voor automatisch doorvoeren",
+ "placeholder": "Scripttekst invoeren"
+ },
+ "RunIn64BitPSOptionPicker": {
+ "label": "Script uitvoeren in 64-bits PowerShell"
+ },
+ "ScriptMultiLineTextBox": {
+ "base64EncodingValidationMessage": "Ongeldig script. Een of meer tekens die in het script worden gebruikt, zijn ongeldig."
+ },
+ "headerDescription": "Maak een aangepast scriptpakket op basis van de door u geschreven scripts. Standaard worden scripts elke dag op toegewezen apparaten uitgevoerd.",
+ "infoBox": "Dit script is alleen-lezen. Een aantal instellingen voor dit script is mogelijk uitgeschakeld."
+ },
+ "title": "Aangepast script maken",
+ "ScriptProperties": {
+ "GridHeaders": {
+ "interval": "Interval",
+ "time": "Datum en tijd"
+ },
+ "Interval": {
+ "day": "Wordt elke dag herhaald",
+ "days": "Wordt om de {0} dagen herhaald",
+ "hour": "Wordt elk uur herhaald",
+ "hours": "Wordt om de {0} uur herhaald",
+ "month": "Wordt elke maand herhaald",
+ "months": "Wordt om de {0} maanden herhaald",
+ "week": "Wordt elke week herhaald",
+ "weeks": "Wordt om de {0} weken herhaald"
+ },
+ "Time": {
+ "utc": "{0} (UTC)",
+ "utcWithDate": "{0} (UTC) op {1}",
+ "withDate": "{0} op {1}"
+ }
+ }
+ },
+ "Edit": {
+ "title": "Bewerken - {0}"
+ }
+ },
+ "EdgeAppConfig": {
+ "AllowedURLs": {
+ "title": "Toegestane URL's",
+ "tooltip": "Geef de sites op waartoe uw gebruikers toegang hebben in hun werkcontext. Er zijn geen andere sites toegestaan. U kunt ervoor kiezen om een lijst met toegestane/geblokkeerde apps te configureren, maar niet beide. "
+ },
+ "ApplicationProxyRedirection": {
+ "header": "Toepassingsproxy",
+ "title": "Toepassingsproxy omleiden",
+ "tooltip": "Schakel de omleiding van toepassingsproxy's in om gebruikers toegang te geven tot koppelingen van het bedrijf en on-premises web-apps."
+ },
+ "BlockedURLs": {
+ "title": "Geblokkeerde URL's",
+ "tooltip": "Geef de sites op die voor uw gebruikers zijn geblokkeerd in hun werkcontext. Alle andere sites zijn toegestaan. U kunt ervoor kiezen om een lijst met toegestane/geblokkeerde apps te configureren, maar niet beide. "
+ },
+ "Bookmarks": {
+ "header": "Beheerde bladwijzers",
+ "tooltip": "Voer een lijst met URL-adressen in die beschikbaar zijn voor uw gebruikers wanneer ze gebruikmaken van Microsoft Edge in hun werkcontext.",
+ "uRL": "URL"
+ },
+ "HomepageURL": {
+ "header": "Beheerde startpagina",
+ "title": "Snelkoppelings-URL voor startpagina",
+ "tooltip": "Configureer een snelkoppeling voor de startpagina die voor gebruikers als het eerste pictogram onder de zoekbalk wordt weergegeven wanneer een nieuw tabblad wordt geopend in Microsoft Edge."
+ },
+ "PersonalContext": {
+ "label": "Beperkte sites omleiden naar persoonlijke context",
+ "tooltip": "Configureer of gebruikers mogen overschakelen naar hun persoonlijke context om beperkte sites te openen."
+ }
+ },
+ "BooleanActions": {
+ "allow": "Toestaan",
+ "block": "Blokkeren",
+ "configured": "Geconfigureerd",
+ "disable": "Uitschakelen",
+ "dontRequire": "Niet vereisen",
+ "enable": "Inschakelen",
+ "hide": "Verbergen",
+ "limit": "Limiet",
+ "notConfigured": "Niet geconfigureerd",
+ "require": "Vereisen",
+ "show": "Weergeven",
+ "yes": "Ja"
+ },
+ "ArchitectureOptions": {
+ "sixtyFourBit": "64-bits",
+ "thirtyTwoBit": "32-bits"
+ },
+ "WindowsQualityUpdateDaysUntilForcedReboot": {
+ "oneDay": "1 dag",
+ "twoDays": "2 dagen",
+ "zeroDays": "0 dagen"
+ },
"SoftwareUpdates": {
"BladeTitles": {
"overview": "Overzicht"
@@ -10800,66 +10878,732 @@
"notScannedYet": "Nog niet gescand",
"outOfDateIosDevices": "Apparaten met verouderde iOS"
},
- "ScheduledAction": {
- "Form": {
- "editBlockActionInfo": "Er is één blokkeringsactie vereist voor alle nalevingsbeleid.",
- "graceperiod": "Schema (dagen na niet-naleving)",
- "graceperiodInfo": "Opgeven na hoeveel dagen van niet-compatibiliteit deze actie moet worden geactiveerd voor het apparaat van de gebruiker",
- "subtitle": "Actieparameters opgeven",
- "title": "Actieparameters"
- },
- "List": {
- "gracePeriodDay": "{0} dag na niet-naleving",
- "gracePeriodDays": "{0} dagen na niet-naleving",
- "gracePeriodHour": "{0} uur na niet-naleving",
- "gracePeriodHours": "{0} uur na niet-naleving",
- "gracePeriodMinute": "{0} minuut na niet-naleving",
- "gracePeriodMinutes": "{0} minuten na niet-naleving",
- "immediately": "Onmiddellijk",
- "schedule": "Schema",
- "scheduleInfoBalloon": "Dagen na niet-naleving",
- "subtitle": "Een reeks acties op niet-compatibele apparaten opgeven",
- "title": "Acties"
- },
- "Notification": {
- "additionalEmailLabel": "Overige",
- "additionalRecipients": "Extra geadresseerden (via e-mail)",
- "additionalRecipientsBladeTitle": "Aanvullende ontvangers selecteren",
- "emailAddressPrompt": "E-mailadressen invoeren (gescheiden door komma's)",
- "invalidEmail": "Ongeldig e-mailadres",
- "messageTemplate": "Berichtsjabloon",
- "noneSelected": "Niets geselecteerd",
- "notSelected": "Niet geselecteerd",
- "numSelected": "{0} geselecteerd",
- "selected": "Geselecteerd"
+ "ConfigurationTypes": {
+ "Table": {
+ "androidDeviceOwnerGeneral": "Apparaatbeperkingen (apparaateigenaar)",
+ "androidForWorkGeneral": "Apparaatbeperkingen (werkprofiel)"
+ },
+ "androidCustom": "Aangepast",
+ "androidDeviceOwnerGeneral": "Apparaatbeperkingen",
+ "androidDeviceOwnerPkcs": "PKCS-certificaat",
+ "androidDeviceOwnerScep": "SCEP-certificaat",
+ "androidDeviceOwnerTrustedCertificate": "Vertrouwd certificaat",
+ "androidDeviceOwnerVpn": "VPN",
+ "androidDeviceOwnerWiFi": "Wi-Fi",
+ "androidEmailProfile": "E-mail (alleen Samsung KNOX)",
+ "androidForWorkCustom": "Aangepast",
+ "androidForWorkEmailProfile": "E-mail",
+ "androidForWorkGeneral": "Apparaatbeperkingen",
+ "androidForWorkImportedPFX": "Geïmporteerd PKCS-certificaat",
+ "androidForWorkOemConfig": "OEMConfig",
+ "androidForWorkPKCS": "PKCS-certificaat",
+ "androidForWorkSCEP": "SCEP-certificaat",
+ "androidForWorkTrustedCertificate": "Vertrouwd certificaat",
+ "androidForWorkVpn": "VPN",
+ "androidForWorkWiFi": "Wi-Fi",
+ "androidGeneral": "Apparaatbeperkingen",
+ "androidImportedPFX": "Geïmporteerd PKCS-certificaat",
+ "androidPKCS": "PKCS-certificaat",
+ "androidSCEP": "SCEP-certificaat",
+ "androidTrustedCertificate": "Vertrouwd certificaat",
+ "androidVPN": "VPN",
+ "androidWiFi": "Wi-Fi",
+ "androidZebraMx": "MX-profiel (alleen Zebra)",
+ "complianceAndroid": "Nalevingsbeleid van Android",
+ "complianceAndroidDeviceOwner": "Volledig beheerde en toegewezen werkprofielen in bedrijfseigendom",
+ "complianceAndroidEnterprise": "Werkprofiel in persoonlijk eigendom",
+ "complianceAndroidForWork": "Android for Work-nalevingsbeleid",
+ "complianceIos": "Nalevingsbeleid van iOS",
+ "complianceMac": "Nalevingsbeleid van Mac",
+ "complianceWindows10": "Nalevingsbeleid Windows 10 en hoger",
+ "complianceWindows10Mobile": "Nalevingsbeleid van Windows 10 Mobile",
+ "complianceWindows8": "Nalevingsbeleid van Windows 8",
+ "complianceWindowsPhone": "Nalevingsbeleid van Windows Phone",
+ "exchangeActiveSync": "Exchange Active Sync",
+ "iosCustom": "Aangepast",
+ "iosDerivedCredentialAuthenticationConfiguration": "Afgeleide PIV-referentie",
+ "iosDeviceFeatures": "Apparaatfuncties",
+ "iosEDU": "Educatief",
+ "iosEducation": "Educatief",
+ "iosEmailProfile": "E-mail",
+ "iosGeneral": "Apparaatbeperkingen",
+ "iosImportedPFX": "Geïmporteerd PKCS-certificaat",
+ "iosPKCS": "PKCS-certificaat",
+ "iosPresets": "Voorinstellingen",
+ "iosSCEP": "SCEP-certificaat",
+ "iosTrustedCertificate": "Vertrouwd certificaat",
+ "iosVPN": "VPN",
+ "iosVPNZscaler": "VPN",
+ "iosWiFi": "Wi-Fi",
+ "macCustom": "Aangepast",
+ "macDeviceFeatures": "Apparaatfuncties",
+ "macEndpointProtection": "Endpoint Protection",
+ "macExtensions": "Uitbreidingen",
+ "macGeneral": "Apparaatbeperkingen",
+ "macImportedPFX": "Geïmporteerd PKCS-certificaat",
+ "macSCEP": "SCEP-certificaat",
+ "macTrustedCertificate": "Vertrouwd certificaat",
+ "macVPN": "VPN",
+ "macWiFi": "Wi-Fi",
+ "settingsCatalog": "Catalogus met instellingen (preview-versie)",
+ "unsupported": "Niet-ondersteund",
+ "windows10AdministrativeTemplate": "Beheersjablonen (preview-versie)",
+ "windows10Atp": "Microsoft Defender voor Eindpunt (desktopapparaten met Windows 10 of hoger)",
+ "windows10Custom": "Aangepast",
+ "windows10DesktopSoftwareUpdate": "Software-updates",
+ "windows10DeviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
+ "windows10EmailProfile": "E-mail",
+ "windows10EndpointProtection": "Endpoint Protection",
+ "windows10EnterpriseDataProtection": "Windows Information Protection",
+ "windows10General": "Apparaatbeperkingen",
+ "windows10ImportedPFX": "Geïmporteerd PKCS-certificaat",
+ "windows10Kiosk": "Kiosk",
+ "windows10NetworkBoundary": "De grens van het netwerk",
+ "windows10PKCS": "PKCS-certificaat",
+ "windows10PolicyOverride": "Groepsbeleid overschrijven",
+ "windows10SCEP": "SCEP-certificaat",
+ "windows10SecureAssessmentProfile": "Opleidingsprofiel",
+ "windows10SharedPC": "Gedeeld apparaat voor meerdere gebruikers",
+ "windows10TeamGeneral": "Apparaatbeperkingen (Windows 10 Team)",
+ "windows10TrustedCertificate": "Vertrouwd certificaat",
+ "windows10VPN": "VPN",
+ "windows10WiFi": "Wi-Fi",
+ "windows10WiFiCustom": "Wi-Fi aangepast",
+ "windows8General": "Apparaatbeperkingen",
+ "windows8SCEP": "SCEP-certificaat",
+ "windows8TrustedCertificate": "Vertrouwd certificaat",
+ "windows8VPN": "VPN",
+ "windows8WiFi": "Wi-Fi importeren",
+ "windowsDeliveryOptimization": "Delivery Optimization",
+ "windowsDomainJoin": "Domeindeelname",
+ "windowsEditionUpgrade": "Editie-upgrade en modus wisselen",
+ "windowsIdentityProtection": "Identity Protection",
+ "windowsPhoneCustom": "Aangepast",
+ "windowsPhoneEmailProfile": "E-mail",
+ "windowsPhoneGeneral": "Apparaatbeperkingen",
+ "windowsPhoneImportedPFX": "Geïmporteerd PKCS-certificaat",
+ "windowsPhoneSCEP": "SCEP-certificaat",
+ "windowsPhoneTrustedCertificate": "Vertrouwd certificaat",
+ "windowsPhoneVPN": "VPN",
+ "IosUpdate": "iOS-updatebeleid"
+ },
+ "OfficeSuiteAppsTab": {
+ "acceptLicenseOnBehalfOfUsersLabel": "De licentievoorwaarden voor Microsoft-software accepteren namens gebruikers",
+ "appSuiteConfigurationLabel": "Configuratie van de app-suite",
+ "appSuiteInformationLabel": "Gegevens over de app-suite",
+ "appsToBeInstalledLabel": "Apps die moeten worden geïnstalleerd als onderdeel van de suite",
+ "architectureLabel": "Architectuur",
+ "architectureTooltip": "Hiermee wordt bepaald of de 32 of 64 bitseditie van Microsoft 365-apps op apparaten wordt geïnstalleerd.",
+ "configurationDesignerLabel": "Configuratie-ontwerper",
+ "configurationFileLabel": "Configuratiebestand",
+ "configurationSettingsFormatLabel": "Indeling van de configuratie-instellingen",
+ "configureAppSuiteLabel": "App-suite configureren",
+ "configuredLabel": "Geconfigureerd",
+ "currentVersionLabel": "Huidige versie",
+ "currentVersionTooltip": "Dit is de huidige Office-versie die in deze suite is geconfigureerd. Deze waarde wordt bijgewerkt wanneer een nieuwe versie wordt geconfigureerd en opgeslagen.",
+ "enableMicrosoftSearchAsDefaultTooltip": "Hiermee wordt een achtergrondservice geïnstalleerd waarmee wordt bepaald of voor Google Chrome een Microsoft-extensie voor zoeken in Bing is geïnstalleerd op het apparaat.",
+ "enterXmlDataLabel": "XML-gegevens invoeren",
+ "languagesLabel": "Talen",
+ "languagesTooltip": "Standaard wordt Office door Intune geïnstalleerd met de standaardtaal van het besturingssysteem. Kies de aanvullende talen die u wilt installeren.",
+ "learnMoreText": "Meer informatie",
+ "newUpdateChannelTooltip": "Hiermee wordt bepaald hoe vaak de app wordt bijgewerkt met nieuwe functies.",
+ "noCurrentVersionText": "Er is geen huidige versie",
+ "noLanguagesSelectedLabel": "Er zijn geen talen geselecteerd",
+ "notConfiguredLabel": "Niet geconfigureerd",
+ "propertiesLabel": "Eigenschappen",
+ "removeOtherVersionsLabel": "Andere versies verwijderen",
+ "removeOtherVersionsTooltip": "Selecteer Ja om andere versies van Office (MSI) van gebruikersapparaten te verwijderen.",
+ "selectOfficeAppsLabel": "Office-apps selecteren",
+ "selectOfficeAppsTooltip": "Selecteer de Office 365-apps die u als onderdeel van de suite wilt installeren.",
+ "selectOtherOfficeAppsLabel": "Andere Office-apps selecteren (licentie vereist)",
+ "selectOtherOfficeAppsTooltip": "Als u licenties voor deze aanvullende Office-apps hebt, kunt u deze ook toewijzen met Intune.",
+ "specificVersionLabel": "Specifieke versie",
+ "updateChannelLabel": "Updatekanaal",
+ "updateChannelTooltip": "Hiermee wordt gedefinieerd hoe vaak de app wordt bijgewerkt met nieuwe functies.
\r\nMaandelijks: gebruikers van de nieuwste Office-functies voorzien zodra deze beschikbaar zijn.
\r\nMonthly Enterprise-kanaal: gebruikers eenmaal per maand, op de tweede dinsdag van de maand, van de nieuwste Office-functies voorzien.
\r\nMonthly-kanaal (Targeted): een vroegtijdige weergave verstrekken bij de volgende release van het Monthly-kanaal. Dit is een ondersteund updatekanaal en is doorgaans minstens een week vóór de release van het Monthly-kanaal met nieuwe functies beschikbaar.
\r\nHalfjaarlijks: gebruikers slechts enkele malen per jaar van nieuwe Office-functies voorzien.
\r\nSemi-Annual-kanaal (Targeted): proefgebruikers en testers voor toepassingscompatibiliteit de mogelijkheid bieden om het volgende halfjaar te testen.",
+ "useMicrosoftSearchAsDefault": "Achtergrondservice voor Microsoft Search installeren in Bing",
+ "useSharedComputerActivationLabel": "Activering van gedeelde computers gebruiken",
+ "useSharedComputerActivationTooltip": "Met activering van gedeelde computers kunt u Microsoft 365-apps implementeren op computers die door meerdere gebruikers worden gebruikt. Normaal kunnen gebruikers Microsoft 365-apps alleen installeren en activeren op een beperkt aantal apparaten, bijvoorbeeld vijf pc's. Het gebruik van Microsoft 365-apps met activering van gedeelde computers telt niet mee in die limiet.",
+ "versionToInstallLabel": "Versie die moet worden geïnstalleerd",
+ "versionToInstallTooltip": "Selecteer de Office-versie die moet worden geïnstalleerd.",
+ "xLanguagesSelectedLabel": "{0} talen/taal geselecteerd",
+ "xmlConfigurationLabel": "XML-configuratie"
+ },
+ "EnrollmentRestrictions": {
+ "DeletePayloadLink": {
+ "content": "{0} maakt deel uit van een of meer beleidssets. Als u {0} verwijdert, kunt u deze niet langer toewijzen via deze beleidssets. Wilt u toch verwijderen?",
+ "contentWithError": "{0} maakt mogelijk deel uit van een of meer beleidssets. Als u {0} verwijdert, kunt u deze niet langer toewijzen via deze beleidssets. Wilt u toch verwijderen?",
+ "header": "Weet u zeker dat u deze beperking wilt verwijderen?"
+ },
+ "DeviceLimit": {
+ "description": "Geef het maximum aantal apparaten op dat een gebruiker kan registreren.",
+ "header": "Beperkingen voor apparaatlimieten",
+ "info": "Hiermee geeft u op hoeveel apparaten elke gebruiker kan registreren."
+ },
+ "DeviceType": {
+ "VersionValidation": {
+ "aOSP": "Moet 1,0 of hoger zijn.",
+ "android": "Voer een geldig versienummer in. Voorbeelden: 5.0, 5.5.1, 6.0.0.1",
+ "androidForWork": "Voer een geldig versienummer in. Voorbeelden: 5.0, 5.1.1",
+ "iOS": "Voer een geldig versienummer in. Voorbeelden: 9.0, 10.0, 9.0.2",
+ "mac": "Voer een geldig versienummer in. Voorbeelden: 10, 10.10, 10.10.1",
+ "min": "De minimumwaarde mag niet lager zijn dan {0}",
+ "minMax": "De minimale versie mag niet groter zijn dan de maximale versie.",
+ "windows": "Moet 10.0 of hoger zijn. Laat dit leeg als u ook 8.1-apparaten wilt toestaan.",
+ "windowsMobile": "Moet 10.0 of hoger zijn. Laat dit leeg als u ook 8.1-apparaten wilt toestaan."
+ },
+ "allPlatformsBlocked": "Alle apparaatplatformen zijn geblokkeerd. Sta platforminschrijving toe om platformconfiguratie in te schakelen.",
+ "blockManufacturerPlaceHolder": "Naam van fabrikant",
+ "blockManufacturersHeader": "Geblokkeerde fabrikanten",
+ "cannotRestrict": "De beperking wordt niet ondersteund",
+ "configurationDescription": "Hiermee geeft u de configuratiebeperkingen voor het platform op waaraan een apparaat moet voldoen om te kunnen worden geregistreerd. Gebruik regels voor nalevingsbeleid om apparaten na de registratie te beperken. Geef versies als major.minor.build op. Versiebeperkingen zijn alleen van toepassing op apparaten die zijn geregistreerd bij de bedrijfsportal. Apparaten worden in Intune standaard geclassificeerd als persoonlijke apparaten. Er is aanvullende actie vereist als u apparaten wilt classificeren als apparaten in bedrijfseigendom.",
+ "configurationDescriptionLabel": "Meer informatie over het instellen van inschrijvingsbeperkingen",
+ "configurations": "Platformen configureren",
+ "deviceManufacturer": "Fabrikant van apparaat",
+ "header": "Beperkingen voor apparaattypen",
+ "info": "Hiermee geeft u op welke platformen, besturingssysteemversies en eigendomstypen kunnen worden geregistreerd.",
+ "manufacturer": "Fabrikant",
+ "max": "Max.",
+ "maxVersion": "Maximumversie",
+ "min": "Min",
+ "minVersion": "Minimumversie",
+ "newPlatforms": "U hebt nieuwe platformen toegestaan. Werk de platformconfiguraties bij.",
+ "personal": "Persoonlijk eigendom",
+ "platform": "Platform",
+ "platformDescription": "U kunt de volgende platformen inschrijven. Blokkeer alleen platformen die u niet ondersteunt. Toegestane platformen kunnen worden geconfigureerd met aanvullende inschrijvingsbeperkingen.",
+ "platformSettings": "Platforminstellingen",
+ "platforms": "Platformen selecteren",
+ "platformsSelected": "{0} platformen geselecteerd",
+ "type": "Type",
+ "versions": "versies",
+ "versionsRange": "Min/max bereik toestaan:",
+ "windowsTooltip": "Hiermee beperkt u de inschrijving via Mobile Device Management. De installatie van de pc-agent wordt niet beperkt. Alleen Windows 10- en Windows 11-versies worden ondersteund. Laat dit leeg als u Windows 8.1 wilt toestaan."
+ },
+ "Priority": {
+ "saved": "De prioriteiten van de beperking zijn opgeslagen."
+ },
+ "Row": {
+ "announce": "Prioriteit: {0}, naam: {1}, toegewezen: {2}"
+ },
+ "Table": {
+ "deployed": "Geïmplementeerd",
+ "name": "Naam",
+ "priority": "Prioriteit"
},
- "block": "Het apparaat als niet-compatibel markeren",
- "lockDevice": "Apparaat vergrendelen (lokale actie)",
- "lockDeviceWithPasscode": "Apparaat vergrendelen (lokale actie)",
- "noAction": "Geen actie",
- "noActionRow": "Geen acties. Selecteer Toevoegen om een actie toe te voegen",
- "pushNotification": "Pushmelding verzenden naar eindgebruiker",
- "remoteLock": "Het niet-compatibele apparaat extern vergrendelen",
- "removeSourceAccessProfile": "Brontoegangsprofiel verwijderen",
- "retire": "Het niet-compatibele apparaat buiten gebruik stellen",
- "wipe": "Wissen",
- "emailNotification": "E-mail verzenden naar de eindgebruiker"
- },
- "WIPPinRequirements": {
- "WipLowercaseCharacterPinRequirements": {
- "allow": "Kleine letters toestaan in een pincode",
- "notAllow": "Geen kleine letters toestaan in een pincode",
- "requireAtLeastOne": "Minimaal één kleine letter vereisen in een pincode"
- },
- "WipSpecialCharacterPinRequirements": {
- "allow": "Speciale tekens toestaan in een pincode",
- "notAllow": "Geen speciale tekens toestaan in een pincode",
- "requireAtLeastOne": "Minimaal één speciaal teken vereisen in een pincode"
- },
- "WipUppercaseCharacterPinRequirements": {
- "allow": "Hoofdletters toestaan in een pincode",
- "notAllow": "Geen hoofdletters toestaan in een pincode",
- "requireAtLeastOne": "Minimaal één hoofdletter vereisen in een pincode"
- }
- }
+ "Type": {
+ "limit": "Beperking voor apparaatlimiet",
+ "type": "Beperking voor apparaattype"
+ },
+ "allUsers": "Alle gebruikers",
+ "androidRestrictions": "Android-beperkingen",
+ "create": "Beperking maken",
+ "defaultLimitDescription": "Dit is de standaardlimietbeperking voor apparaten die met de laagste prioriteit wordt toegepast op alle gebruikers, ongeacht hun groepslidmaatschap.",
+ "defaultTypeDescription": "Dit is de standaardtypebeperking voor apparaten die met de laagste prioriteit wordt toegepast op alle gebruikers, ongeacht hun groepslidmaatschap.",
+ "defaultWhfbDescription": "Dit is de standaardconfiguratie voor typebeperking voor Windows Hello voor Bedrijven die met de laagste prioriteit wordt toegepast op alle gebruikers, ongeacht hun groepslidmaatschap.",
+ "deleteMessage": "Betrokken gebruikers worden beperkt door de toegewezen beperking van het volgende niveau of door de standaardbeperking als er geen andere beperking is toegewezen.",
+ "deleteTitle": "Weet u zeker dat u de beperking {0} wilt verwijderen?",
+ "descriptionHint": "Korte alinea met een beschrijving van het zakelijke gebruik of het beperkingsniveau op basis van de instellingen van de beperking.",
+ "edit": "Beperking bewerken",
+ "info": "Een apparaat moet voldoen aan de beperkingen met hoogste prioriteit voor inschrijving die zijn toegewezen aan de gebruiker. U kunt een apparaatbeperking slepen om de prioriteit te wijzigen. Standaardbeperkingen hebben de laagste prioriteit voor alle gebruikers en zijn van toepassing op inschrijvingen zonder gebruiker. Standaardbeperkingen kunnen worden bewerkt, maar niet verwijderd.",
+ "iosRestrictions": "iOS-beperkingen",
+ "mDM": "MDM",
+ "macRestrictions": "MacOS-beperkingen",
+ "maxVersion": "Maximale versie",
+ "minVersion": "Minimale versie",
+ "nameHint": "Dit is het primaire kenmerk dat zichtbaar is voor de identificatie van de ingestelde beperking.",
+ "noAssignmentsStatusBar": "Wijs de beperking toe aan minimaal één groep. Klik op Eigenschappen.",
+ "notFound": "Beperking niet gevonden. Het is mogelijk al verwijderd.",
+ "personallyOwned": "Apparaten met persoonlijke eigendom",
+ "restriction": "Beperking",
+ "restrictionLowerCase": "beperking",
+ "restrictionType": "Beperkingstype",
+ "selectType": "Beperkingstype selecteren",
+ "selectValidation": "Selecteer een platform",
+ "typeHint": "Kies Apparaattypebeperking om de apparaateigenschappen te beperken. Kies Apparaatlimietbeperking om het aantal apparaten per gebruiker te beperken.",
+ "typeRequired": "Beperkingstype is vereist.",
+ "winPhoneRestrictions": "Windows Phone-beperkingen",
+ "windowsRestrictions": "Windows-beperkingen"
+ },
+ "Titles": {
+ "ChromeOs": {
+ "devices": "Chrome OS-apparaten"
+ },
+ "ManagedDesktop": {
+ "adminContacts": "Contactpersonen van beheerder",
+ "appPackaging": "Apps verpakken",
+ "devices": "Apparaten",
+ "feedback": "Feedback",
+ "gettingStarted": "Aan de slag",
+ "messages": "Berichten",
+ "onlineResources": "Onlineresources",
+ "serviceRequests": "Serviceaanvragen",
+ "settings": "Instellingen",
+ "tenantEnrollment": "Tenantinschrijving"
+ },
+ "actions": "Acties voor niet-naleving",
+ "advancedExchangeSettings": "Instellingen voor Exchange Online",
+ "advancedThreatProtection": "Microsoft Defender for Endpoint",
+ "allApps": "Alle apps",
+ "allDevices": "Alle apparaten",
+ "androidFotaDeployments": "Android FOTA-implementaties",
+ "appBundles": "App-bundels",
+ "appCategories": "App-categorieën",
+ "appConfigPolicies": "App-configuratiebeleid",
+ "appInstallStatus": "Installatiestatus van de app",
+ "appLicences": "App-licenties",
+ "appProtectionPolicies": "App-beveiligingsbeleid",
+ "appProtectionStatus": "Status van de app-beveiliging",
+ "appSelectiveWipe": "App selectief wissen",
+ "appleVppTokens": "Apple VPP-tokens",
+ "apps": "Apps",
+ "assign": "Toewijzingen",
+ "assignedPermissions": "Toegewezen machtigingen",
+ "assignedRoles": "Toegewezen rollen",
+ "autopilotDeploymentReport": "Autopilot-implementaties (preview-versie)",
+ "brandingAndCustomization": "Aanpassen",
+ "cartProfiles": "Winkelwagenprofielen",
+ "certificateConnectors": "Certificaatconnectors",
+ "chromeEnterprise": "Chrome Enterprise",
+ "compliancePolicies": "Nalevingsbeleid",
+ "complianceScriptManagement": "Scripts",
+ "complianceScriptManagementPreview": "Scripts (preview)",
+ "complianceSettings": "Instellingen van het nalevingsbeleid",
+ "conditionStatements": "Voorwaarde-instructies",
+ "conditions": "Locaties",
+ "configMgr": "Microsoft Endpoint Configuration Manager",
+ "configurationProfiles": "Configuratieprofielen",
+ "configurationProfilesPreview": "Configuratieprofielen (preview)",
+ "connectorsAndTokens": "Connectors en tokens",
+ "corporateDeviceIdentifiers": "Bedrijfsapparaat-id's",
+ "customAttributes": "Aangepaste kenmerken",
+ "customNotifications": "Aangepaste meldingen",
+ "deploymentSettings": "Implementatie-instellingen",
+ "derivedCredentials": "Afgeleide referenties",
+ "deviceActions": "Apparaatacties",
+ "deviceCategories": "Apparaatcategorieën",
+ "deviceCleanUp": "Regels voor opschonen van apparaat",
+ "deviceEnrollmentManagers": "Apparaatinschrijvingsmanagers",
+ "deviceExecutionStatus": "Apparaatstatus",
+ "deviceLimitEnrollmentRestrictions": "Beperkingen op registratie van apparaatlimiet",
+ "deviceTypeEnrollmentRestrictions": "Beperkingen op registratie van platform",
+ "devices": "Apparaten",
+ "discoveredApps": "Gedetecteerde apps",
+ "embeddedSIM": "eSIM mobiele profielen (preview-versie)",
+ "enrollDevices": "Apparaten inschrijven",
+ "enrollmentFailures": "Mislukte registraties",
+ "enrollmentNotifications": "Inschrijvingsmeldingen (preview)",
+ "enrollmentRestrictions": "Inschrijvingsbeperkingen",
+ "exchangeActiveSync": "Exchange ActiveSync",
+ "exchangeServiceConnectors": "Exchange-serviceconnectors",
+ "failuresForFeatureUpdates": "Fouten bij updates voor functies (preview-versie)",
+ "failuresForQualityUpdates": "Fouten in versnelde updates van Windows (preview-versie)",
+ "featureFlighting": "Functieflighting",
+ "featureUpdateDeployments": "Onderdelenupdates voor Windows 10 en hoger (preview)",
+ "flighting": "Flighting",
+ "fotaUpdate": "Geautomatiseerde firmware-update",
+ "groupPolicy": "Beheersjablonen",
+ "groupPolicyAnalytics": "Groepsbeleidsanalyse",
+ "helpSupport": "Help en ondersteuning",
+ "helpSupportReplacement": "Help en ondersteuning ({0})",
+ "iOSAppProvisioning": "Inrichtingsprofielen voor iOS-app",
+ "incompleteUserEnrollments": "Onvolledige gebruikersinschrijvingen",
+ "intuneRemoteAssistance": "Hulp op afstand (preview)",
+ "iosUpdates": "Beleid voor iOS/iPadOS bijwerken",
+ "legacyPcManagement": "Beheer van verouderde pc's",
+ "macOSSoftwareUpdate": "Updatebeleid voor macOS",
+ "macOSSoftwareUpdateAccountSummaries": "Installatiestatus voor macOS-apparaten",
+ "macOSSoftwareUpdateCategorySummaries": "Samenvatting van software-updates",
+ "macOSSoftwareUpdateStateSummaries": "updates",
+ "managedGooglePlay": "Beheerde Google Play",
+ "msfb": "Microsoft Store voor Bedrijven",
+ "myPermissions": "Mijn machtigingen",
+ "notifications": "Meldingen",
+ "officeApps": "Office-apps",
+ "officeProPlusPolicies": "Beleidsregels voor Office-apps",
+ "onPremise": "On-premises",
+ "onPremisesConnector": "On-premises Exchange ActiveSync-connector",
+ "onPremisesDeviceAccess": "Exchange ActiveSync-apparaten",
+ "onPremisesManageAccess": "On-premises toegang tot Exchange",
+ "outOfDateIosDevices": "Installatiefouten voor iOS-apparaten",
+ "overview": "Overzicht",
+ "partnerDeviceManagement": "Apparaatbeheer partner",
+ "perUpdateRingDeploymentState": "Implementatiestatus per updatering",
+ "permissions": "Machtigingen",
+ "platformApps": "{0} apps",
+ "platformDevices": "{0} apparaten",
+ "platformEnrollment": "Inschrijving {0}",
+ "policies": "Beleid",
+ "previewMDMDevices": "Alle beheerde apparaten (preview)",
+ "profiles": "Profielen",
+ "properties": "Eigenschappen",
+ "reports": "Rapporten",
+ "retireNoncompliantDevices": "Niet-compatibele apparaten buiten gebruik stellen",
+ "retireNoncompliantDevicesPreview": "Retire noncompliant devices (preview)",
+ "role": "Rol",
+ "scriptManagement": "Scripts",
+ "securityBaselines": "Beveiligingsbasislijnen",
+ "serviceToServiceConnector": "Exchange Online-connector",
+ "shellScripts": "Shell-scripts",
+ "teamViewerConnector": "TeamViewer-connector",
+ "telecomeExpenseManagement": "Onkostenbeheer voor telecommunicatie",
+ "tenantAdmin": "Tenantbeheerder",
+ "tenantAdministration": "Tenantbeheer",
+ "termsAndConditions": "Voorwaarden",
+ "titles": "Titels",
+ "troubleshootSupport": "probleemoplossing en ondersteuning",
+ "user": "Gebruiker",
+ "userExecutionStatus": "Gebruikersstatus",
+ "warranty": "Leveranciers van garantie",
+ "wdacSupplementalPolicies": "Aanvullende beleidsregels S-modus",
+ "windows10DriverUpdate": "Stuurprogramma-updates voor Windows 10 en hoger (preview-versie)",
+ "windows10QualityUpdate": "Kwaliteitsupdates voor Windows 10 en hoger (preview)",
+ "windows10UpdateRings": "Ringen bijwerken voor Windows 10 en hoger",
+ "windows10XPolicyFailures": "Fouten met Windows 10X-beleid",
+ "windowsEnterpriseCertificate": "Windows Enterprise-certificaat",
+ "windowsManagement": "PowerShell-scripts",
+ "windowsSideLoadingKeys": "Windows-sleutels voor extern laden",
+ "windowsSymantecCertificate": "Windows-DigiCert-certificaat",
+ "windowsThreatReport": "Status van dreigingsagent"
+ },
+ "ScopeTypes": {
+ "allDevices": "Alle apparaten",
+ "allUsers": "Alle gebruikers",
+ "allUsersAndDevices": "Alle gebruikers en alle apparaten",
+ "selectedGroups": "Geselecteerde groepen"
+ },
+ "OfficeApplicationType": {
+ "access": "Access",
+ "bing": "Microsoft Search als standaard",
+ "excel": "Excel",
+ "groove": "OneDrive (Groove)",
+ "lync": "Skype voor Bedrijven",
+ "oneDrive": "OneDrive Desktop",
+ "oneNote": "OneNote",
+ "outlook": "Outlook",
+ "powerPoint": "PowerPoint",
+ "publisher": "Publisher",
+ "teams": "Teams",
+ "word": "Word"
+ },
+ "ApplicableDeviceType": {
+ "iPad": "iPad",
+ "iPhoneAndIPod": "iPhone en iPod"
+ },
+ "Assignment": {
+ "AutoUpdateMode": {
+ "default": "Standaard",
+ "header": "Updateprioriteit",
+ "postponed": "Uitgesteld",
+ "priority": "Hoge prioriteit"
+ },
+ "DeliveryOptimizationPriority": {
+ "backgroundNormal": "Achtergrond",
+ "displayText": "Inhoud downloaden in {0}",
+ "foreground": "Voorgrond",
+ "header": "Prioriteit van leveringsoptimalisatie"
+ },
+ "RestartGracePeriod": {
+ "allowSnooze": "Gebruiker toestaan de melding voor opnieuw opstarten uit te stellen",
+ "countdownDialog": "Selecteer wanneer u het afteldialoogvenster voor opnieuw opstarten wilt weergeven voordat het opnieuw opstarten plaatsvindt (in minuten)",
+ "durationInMinutes": "Respijtperiode voor opnieuw opstarten van apparaat (in minuten)",
+ "snoozeDurationInMinutes": "De uitstelduur (in minuten) selecteren"
+ },
+ "SoftwareInstallationTime": {
+ "TimeZone": {
+ "label": "Tijdzone",
+ "local": "Tijdzone van apparaat",
+ "utc": "UTC"
+ },
+ "dateAndTimeLabel": "Datum en tijd",
+ "deadlineTimeColumnLabel": "Installatiedeadline",
+ "deadlineTimeDatePickerErrorMessage": "De geselecteerde datum moet na de beschikbare datum vallen",
+ "deadlineTimeLabel": "Deadline voor app-installatie",
+ "defaultTime": "Zo spoedig mogelijk",
+ "infoText": "Deze toepassing is beschikbaar zodra deze is geïmplementeerd, tenzij u hieronder een beschikbaarheidstijd opgeeft. Als dit een vereiste toepassing is, kunt u de deadline voor de installatie opgeven.",
+ "specificTime": "Een specifieke datum en tijd",
+ "startTimeColumnLabel": "Beschikbaarheid",
+ "startTimeDatePickerErrorMessage": "De geselecteerde datum moet eerder zijn dan de datum van de deadline",
+ "startTimeLabel": "App-beschikbaarheid"
+ },
+ "restartGracePeriodHeader": "Respijtperiode voor opnieuw opstarten",
+ "restartGracePeriodLabel": "Respijtperiode voor opnieuw opstarten van het apparaat",
+ "summaryTitle": "Ervaring voor eindgebruikers"
+ },
+ "EnrollmentType": {
+ "devicesWithEnrollment": "Beheerde apparaten",
+ "devicesWithoutEnrollment": "Beheerde apps"
+ },
+ "PolicySet": {
+ "appManagement": "Toepassingsbeheer",
+ "assignments": "Toewijzingen",
+ "basics": "Grondbeginselen",
+ "deviceEnrollment": "Apparaatinschrijving",
+ "deviceManagement": "Apparaatbeheer",
+ "scopeTags": "Bereiktags",
+ "appConfigurationTitle": "App-configuratiebeleid",
+ "appProtectionTitle": "App-beveiligingsbeleid",
+ "appTitle": "Apps",
+ "iOSAppProvisioningTitle": "Inrichtingsprofielen voor iOS-app",
+ "deviceLimitRestrictionTitle": "Beperkingen voor apparaatlimieten",
+ "deviceTypeRestrictionTitle": "Beperkingen voor apparaattypen",
+ "enrollmentStatusSettingTitle": "Inschrijvingsstatuspagina's",
+ "windowsAutopilotDeploymentProfileTitle": "Windows AutoPilot-implementatieprofielen",
+ "deviceComplianceTitle": "Beleidsregels voor apparaatcompatibiliteit",
+ "deviceConfigurationTitle": "Apparaatconfiguratieprofielen",
+ "powershellScriptTitle": "PowerShell-scripts"
+ },
+ "AzureIAMCommon": {
+ "CountryNames": {
+ "countryNameNR": "Nauru",
+ "countryNameBH": "Bahrein",
+ "countryNameZA": "Zuid-Afrika",
+ "countryNameJO": "Jordanië",
+ "countryNameSD": "Soedan",
+ "countryNameNU": "Niue",
+ "countryNameCZ": "Tsjechië",
+ "countryNameLT": "Litouwen",
+ "countryNameTK": "Tokelau",
+ "countryNameEC": "Ecuador",
+ "countryNameVU": "Vanuatu",
+ "countryNameUG": "Oeganda",
+ "countryNameLI": "Liechtenstein",
+ "countryNameHK": "Hongkong SAR",
+ "countryNameGH": "Ghana",
+ "countryNameSA": "Saoedi-Arabië",
+ "countryNamePG": "Papoea-Nieuw-Guinea",
+ "countryNameBW": "Botswana",
+ "countryNameDG": "Diego Garcia",
+ "countryNameIN": "India",
+ "countryNameHN": "Honduras",
+ "countryNameRO": "Roemenië",
+ "countryNameKZ": "Kazachstan",
+ "countryNameLC": "Saint Lucia",
+ "countryNameGE": "Georgië",
+ "countryNameTT": "Trinidad en Tobago",
+ "countryNameMP": "Noordelijke Marianen",
+ "countryNameMV": "Maldiven",
+ "countryNameFI": "Finland",
+ "countryNameNO": "Noorwegen",
+ "countryNameEE": "Estland",
+ "countryNameVE": "Venezuela",
+ "countryNameUZ": "Oezbekistan",
+ "countryNameME": "Montenegro",
+ "countryNameTJ": "Tadzjikistan",
+ "countryNameAW": "Aruba",
+ "countryNameFR": "Frankrijk",
+ "countryNameOM": "Oman",
+ "countryNameAO": "Angola",
+ "countryNameIT": "Italië",
+ "countryNameAZ": "Azerbeidzjan",
+ "countryNameKG": "Kirgizië",
+ "countryNameWF": "Wallis en Futuna",
+ "countryNameTL": "Timor-Leste",
+ "countryNameFK": "Falklandeilanden",
+ "countryNameGY": "Guyana",
+ "countryNameSS": "Zuid-Soedan",
+ "countryNameMM": "Myanmar",
+ "countryNameHT": "Haïti",
+ "countryNameSY": "Syrië",
+ "countryNameMD": "Moldavië",
+ "countryNameVC": "Saint Vincent en de Grenadines",
+ "countryNameID": "Indonesië",
+ "countryNameRE": "Réunion",
+ "countryNameER": "Eritrea",
+ "countryNameMK": "Noord-Macedonië",
+ "countryNameTG": "Togo",
+ "countryNamePF": "Frans-Polynesië",
+ "countryNameKY": "Kaaimaneilanden",
+ "countryNameIO": "Brits Territorium in de Indische Oceaan",
+ "countryNameRU": "Rusland",
+ "countryNameMA": "Marokko",
+ "countryNameAU": "Australië",
+ "countryNameBO": "Bolivia",
+ "countryNameVA": "Vaticaanstad",
+ "countryNameVG": "Britse Maagdeneilanden",
+ "countryNameFM": "Micronesia",
+ "countryNameAQ": "Antarctica",
+ "countryNameZM": "Zambia",
+ "countryNameBR": "Brazilië",
+ "countryNameIS": "IJsland",
+ "countryNamePE": "Peru",
+ "countryNameBG": "Bulgarije",
+ "countryNamePR": "Puerto Rico",
+ "countryNameGI": "Gibraltar",
+ "countryNameBS": "Bahama's",
+ "countryNameJE": "Jersey",
+ "countryNameMO": "Macau SAR",
+ "countryNameRW": "Rwanda",
+ "countryNameAS": "Amerikaans-Samoa",
+ "countryNameBQ": "Bonaire, Sint Eustatius en Saba",
+ "countryNameMF": "Saint-Martin",
+ "countryNameTM": "Turkmenistan",
+ "countryNameML": "Mali",
+ "countryNameTO": "Tonga",
+ "countryNameNC": "Nieuw-Caledonië",
+ "countryNameAC": "Ascension",
+ "countryNameBN": "Brunei",
+ "countryNameBD": "Bangladesh",
+ "countryNameMW": "Malawi",
+ "countryNameGM": "Gambia",
+ "countryNameGA": "Gabon",
+ "countryNameCA": "Canada",
+ "countryNameSH": "Sint-Helena",
+ "countryNameYT": "Mayotte",
+ "countryNameMN": "Mongolië",
+ "countryNamePA": "Panama",
+ "countryNameCM": "Kameroen",
+ "countryNameNE": "Niger",
+ "countryNameCW": "Curaçao",
+ "countryNameJP": "Japan",
+ "countryNameCY": "Cyprus",
+ "countryNameCD": "Democratische Republiek Congo",
+ "countryNameTN": "Tunesië",
+ "countryNameTR": "Turkije",
+ "countryNameWS": "Samoa",
+ "countryNameSE": "Zweden",
+ "countryNameXK": "Kosovo",
+ "countryNameKH": "Cambodja",
+ "countryNamePL": "Polen",
+ "countryNameDZ": "Algerije",
+ "countryNameLR": "Liberia",
+ "countryNameSO": "Somalië",
+ "countryNameDM": "Dominica",
+ "countryNameEG": "Egypte",
+ "countryNameGF": "Frans-Guyana",
+ "countryNameNZ": "Nieuw-Zeeland",
+ "countryNamePS": "Palestijnse Autoriteit",
+ "countryNameIL": "Israël",
+ "countryNameSL": "Sierra Leone",
+ "countryNameGR": "Griekenland",
+ "countryNameNG": "Nigeria",
+ "countryNameMR": "Mauritanië",
+ "countryNameVI": "Amerikaanse Maagdeneilanden",
+ "countryNameGQ": "Equatoriaal-Guinea",
+ "countryNameMX": "Mexico",
+ "countryNameDJ": "Djibouti",
+ "countryNameGN": "Guinee",
+ "countryNameCN": "China",
+ "countryNameMZ": "Mozambique",
+ "countryNameBV": "Bouveteiland",
+ "countryNameNF": "Norfolkeiland",
+ "countryNameTZ": "Tanzania",
+ "countryNameAI": "Anguilla",
+ "countryNameGS": "Zuid-Georgia en de Zuidelijke Sandwicheilanden",
+ "countryNameRS": "Servië",
+ "countryNameCC": "Cocoseilanden",
+ "countryNameNA": "Namibië",
+ "countryNameDE": "Duitsland",
+ "countryNameCG": "Republiek Congo",
+ "countryNameKW": "Koeweit",
+ "countryNameMH": "Marshalleilanden",
+ "countryNameVN": "Vietnam",
+ "countryNameBY": "Belarus",
+ "countryNameMY": "Maleisië",
+ "countryNameST": "São Tomé en Príncipe",
+ "countryNameLS": "Lesotho",
+ "countryNameBI": "Burundi",
+ "countryNameTD": "Tsjaad",
+ "countryNameCX": "Christmaseiland",
+ "countryNameIR": "Iran",
+ "countryNameTV": "Tuvalu",
+ "countryNameGW": "Guinee-Bissau",
+ "countryNameUA": "Oekraïne",
+ "countryNameCU": "Cuba",
+ "countryNameCO": "Colombia",
+ "countryNameNI": "Nicaragua",
+ "countryNameHR": "Kroatië",
+ "countryNameSC": "Seychellen",
+ "countryNameNL": "Nederland",
+ "countryNameUM": "Amerikaanse ondergeschikte afgelegen eilanden",
+ "countryNameIM": "Israël",
+ "countryNameFJ": "Fiji",
+ "countryNameSR": "Suriname",
+ "countryNameGT": "Guatemala",
+ "countryNameSM": "San Marino",
+ "countryNameLA": "Laos",
+ "countryNameGB": "Verenigd Koninkrijk",
+ "countryNameBB": "Barbados",
+ "countryNameSI": "Slovenië",
+ "countryNameAM": "Armenië",
+ "countryNameAR": "Argentinië",
+ "countryNamePM": "Saint-Pierre en Miquelon",
+ "countryNameTF": "Territorium Franse Zuidelijke en Zuidpoolgebieden",
+ "countryNameDO": "Dominicaanse Republiek",
+ "countryNameZW": "Zimbabwe",
+ "countryNameMQ": "Martinique",
+ "countryNamePT": "Portugal",
+ "countryNameCF": "Centraal-Afrikaanse Republiek",
+ "countryNameBE": "België",
+ "countryNameKM": "Comoren",
+ "countryNameLY": "Libië",
+ "countryNameIE": "Ierland",
+ "countryNameKP": "Noord-Korea",
+ "countryNameGG": "Guernsey",
+ "countryNameSK": "Slowakije",
+ "countryNameTC": "Turks- en Caicoseilanden",
+ "countryNameNP": "Nepal",
+ "countryNameBF": "Burkina Faso",
+ "countryNameYE": "Jemen",
+ "countryNameBA": "Bosnië en Herzegovina",
+ "countryNameGP": "Guadeloupe",
+ "countryNameMS": "Montserrat",
+ "countryNameCL": "Chili",
+ "countryNameIQ": "Irak",
+ "countryNameSJ": "Spitsbergen en Jan Mayen",
+ "countryNameAX": "Åland",
+ "countryNameKE": "Kenia",
+ "countryNameGU": "Guam",
+ "countryNameBM": "Bermuda",
+ "countryNameFO": "Faeröer",
+ "countryNameBL": "Saint-Barthélemy",
+ "countryNameLB": "Libanon",
+ "countryNameJM": "Jamaica",
+ "countryNameAF": "Afghanistan",
+ "countryNameES": "Spanje",
+ "countryNameMC": "Monaco",
+ "countryNameSG": "Singapore",
+ "countryNameAL": "Albanië",
+ "countryNameSN": "Senegal",
+ "countryNameSZ": "Swaziland",
+ "countryNameBZ": "Belize",
+ "countryNameCI": "Côte d’Ivoire",
+ "countryNameTW": "Taiwan",
+ "countryNameUY": "Uruguay",
+ "countryNameCK": "Cookeilanden",
+ "countryNameTH": "Thailand",
+ "countryNameHM": "Heard- en McDonaldeilanden",
+ "countryNameGD": "Grenada",
+ "countryNameUS": "Verenigde Staten",
+ "countryNameAT": "Oostenrijk",
+ "countryNameKR": "Zuid-Korea",
+ "countryNamePK": "Pakistan",
+ "countryNameDK": "Denemarken",
+ "countryNameSV": "El Salvador",
+ "countryNamePW": "Palau",
+ "countryNameET": "Ethiopië",
+ "countryNameMG": "Madagascar",
+ "countryNameCR": "Costa Rica",
+ "countryNameLU": "Luxemburg",
+ "countryNameQA": "Qatar",
+ "countryNameBT": "Bhutan",
+ "countryNameSB": "Salomonseilanden",
+ "countryNameAE": "Verenigde Arabische Emiraten",
+ "countryNameAD": "Andorra",
+ "countryNameCV": "Cabo Verde",
+ "countryNameAG": "Antigua en Barbuda",
+ "countryNameMU": "Mauritius",
+ "countryNameHU": "Hongarije",
+ "countryNameSX": "Sint-Maarten",
+ "countryNameCH": "Zwitserland",
+ "countryNamePN": "Pitcairneilanden",
+ "countryNameGL": "Groenland",
+ "countryNamePH": "Filipijnen",
+ "countryNameMT": "Malta",
+ "countryNameKN": "Saint Kitts en Nevis",
+ "countryNameLK": "Sri Lanka",
+ "countryNameKI": "Kiribati",
+ "countryNameBJ": "Benin",
+ "countryNameLV": "Letland",
+ "countryNamePY": "Paraguay"
+ }
+ }
}
diff --git a/Documentation/Strings-pl.json b/Documentation/Strings-pl.json
index abb980a..5f69e40 100644
--- a/Documentation/Strings-pl.json
+++ b/Documentation/Strings-pl.json
@@ -1,1842 +1,4 @@
{
- "InstallContextType": {
- "device": "Urządzenie",
- "deviceContext": "Kontekst urządzenia",
- "user": "Użytkownik",
- "userContext": "Kontekst użytkownika"
- },
- "WipPolicySettings": {
- "addNetworkBoundary": "Dodaj granicę sieci",
- "addNetworkBoundaryButton": "Dodaj granicę sieci...",
- "allowWindowsSearch": "Zezwalaj funkcji Windows Search na przeszukiwanie zaszyfrowanych danych firmowych i aplikacji ze Sklepu",
- "authoritativeIpRanges": "Lista zakresów adresów IP przedsiębiorstwa jest autorytatywna (nie wykrywaj automatycznie)",
- "authoritativeProxyServers": "Lista serwerów proxy przedsiębiorstwa jest autorytatywna (nie wykrywaj automatycznie)",
- "boundaryType": "Typ granicy",
- "cloudResources": "Zasoby w chmurze",
- "corporateIdentity": "Tożsamość firmowa",
- "dataRecoveryCert": "Przekaż certyfikat agenta odzyskiwania danych (DRA, Data Recovery Agent), aby umożliwić odzyskiwanie zaszyfrowanych danych",
- "editNetworkBoundary": "Edytuj granicę sieci",
- "enrollmentState": "Stan rejestracji",
- "iPv4Ranges": "Zakresy adresów IPv4",
- "iPv6Ranges": "Zakresy adresów IPv6",
- "internalProxyServers": "Wewnętrzne serwery proxy",
- "maxInactivityTime": "Maksymalny czas (w minutach) bezczynności urządzenia, po którym urządzenie zostanie zablokowane przy użyciu kodu PIN lub hasła",
- "maxPasswordAttempts": "Liczba dozwolonych niepowodzeń uwierzytelniania, po przekroczeniu której urządzenie zostanie wyczyszczone",
- "mdmDiscoveryUrl": "Adres URL odnajdywania zarządzania urządzeniami przenośnymi",
- "mdmRequiredSettingsInfo": "Te zasady mają zastosowanie tylko do systemu Windows 10 Anniversary Edition i nowszych wersji. Te zasady używają rozwiązania Windows Information Protection (WIP) w celu zastosowania ochrony.",
- "minimumPinLength": "Ustaw minimalną wymaganą liczbę znaków kodu PIN",
- "name": "Nazwa",
- "networkBoundariesGridEmptyText": "Wszystkie dodane granice sieci zostaną tutaj wyświetlone",
- "networkBoundary": "Granica sieci",
- "networkDomainNames": "Domeny sieciowe",
- "neutralResources": "Neutralne zasoby",
- "passportForWork": "Użyj usługi Windows Hello dla firm jako metody logowania się do systemu Windows",
- "pinExpiration": "Określ czas (w dniach), przez który użytkownik może używać kodu PIN, zanim jego zmiana będzie wymagana przez system",
- "pinHistory": "Określ liczbę ostatnich numerów PIN skojarzonych z kontem użytkownika, które nie mogą zostać ponownie użyte",
- "pinLowercaseLetters": "Skonfiguruj użycie małych liter w kodzie PIN usługi Windows Hello dla firm",
- "pinSpecialCharacters": "Skonfiguruj użycie znaków specjalnych w kodzie PIN usługi Windows Hello dla firm",
- "pinUppercaseLetters": "Skonfiguruj użycie wielkich liter w kodzie PIN usługi Windows Hello dla firm",
- "protectUnderLock": "Blokuj dostęp aplikacji do danych firmowych, gdy urządzenie jest zablokowane. Dotyczy tylko systemu Windows 10 Mobile",
- "protectedDomainNames": "Domeny chronione",
- "proxyServers": "Serwery proxy",
- "requireAppPin": "Wyłącz numer PIN aplikacji, gdy zarządzany jest numer PIN urządzenia",
- "requiredSettings": "Wymagane ustawienia",
- "requiredSettingsInfo": "Zmiana zakresu lub usunięcie tych zasad spowoduje odszyfrowanie danych firmowych.",
- "revokeOnMdmHandoff": "Odwołaj dostęp do chronionych danych po zarejestrowaniu urządzenia w usłudze MDM",
- "revokeOnUnenroll": "Odwołaj klucze szyfrowania po wyrejestrowaniu",
- "rmsTemplateForEdp": "Określ identyfikator szablonu do użycia z usługą Azure RMS",
- "showWipIcon": "Pokaż ikonę ochrony danych przedsiębiorstwa",
- "type": "Typ",
- "useRmsForWip": "Użyj usługi Azure RMS na potrzeby funkcji WIP",
- "value": "Wartość",
- "weRequiredSettingsInfo": "Te zasady mają zastosowanie tylko do aktualizacji systemu Windows 10 dla twórców i nowszych wersji. Te zasady używają rozwiązania Windows Information Protection (WIP) i zarządzania aplikacjami mobilnymi systemu Windows w celu zastosowania ochrony.",
- "wipProtectionMode": "Tryb funkcji Windows Information Protection",
- "withEnrollment": "Z rejestracją",
- "withoutEnrollment": "Bez rejestracji"
- },
- "EdgeAppConfig": {
- "AllowedURLs": {
- "title": "Dozwolone adresy URL",
- "tooltip": "Określ witryny, do których użytkownicy mogą uzyskiwać dostęp, gdy są w kontekście roboczym. Żadne inne witryny nie będą dozwolone. Możesz zdecydować się skonfigurować listę dozwolonych witryn albo listę zablokowanych witryn, ale nie możesz skonfigurować ich obu jednocześnie. "
- },
- "ApplicationProxyRedirection": {
- "header": "Serwer proxy aplikacji",
- "title": "Przekierowanie serwera proxy aplikacji",
- "tooltip": "Włącz przekierowanie serwera proxy aplikacji, aby zapewnić użytkownikom dostęp do linków firmowych i lokalnych aplikacji internetowych."
- },
- "BlockedURLs": {
- "title": "Zablokowane adresy URL",
- "tooltip": "Określ witryny, które są blokowane dla użytkowników, gdy są w kontekście roboczym. Wszystkie inne witryny będą dozwolone. Możesz zdecydować się skonfigurować listę dozwolonych witryn albo listę zablokowanych witryn, ale nie możesz skonfigurować ich obu jednocześnie. "
- },
- "Bookmarks": {
- "header": "Zarządzane zakładki",
- "tooltip": "Wprowadź dla użytkowników listę adresów URL z zakładkami, które będą dostępne podczas korzystania z przeglądarki Microsoft Edge w kontekście roboczym.",
- "uRL": "Adres URL"
- },
- "HomepageURL": {
- "header": "Zarządzana strona główna",
- "title": "Adres URL skrótu do strony głównej",
- "tooltip": "Skonfiguruj skrót do strony głównej, który będzie widoczny dla użytkowników jako pierwsza ikona poniżej paska wyszukiwania, gdy otworzą nową kartę w przeglądarce Microsoft Edge."
- },
- "PersonalContext": {
- "label": "Przekieruj witryny z ograniczeniami do kontekstu osobistego",
- "tooltip": "Skonfiguruj, czy użytkownicy powinni mieć możliwość przechodzenia do swojego osobistego kontekstu, aby otwierać witryny z ograniczeniami."
- }
- },
- "AzureIAM": {
- "AdrsUserActionSelectionWarning": {
- "conditions": "Warunki wymagające rejestracji urządzeń są niedostępne w przypadku działania użytkownika „Zarejestruj lub połącz urządzenia”.",
- "message": "W zasadach utworzonych dla akcji użytkownika „Rejestrowanie lub dołączanie urządzeń” można używać tylko opcji „Wymagaj uwierzytelniania wieloskładnikowego”.{0}"
- },
- "AuthContext": {
- "Included": {
- "none": "Nie wybrano żadnych aplikacji w chmurze, akcji ani kontekstów uwierzytelniania",
- "plural": "Uwzględnione konteksty uwierzytelniania: {0}",
- "singular": "Uwzględniono 1 kontekst uwierzytelniania"
- },
- "InfoBlade": {
- "createTitle": "Dodaj kontekst uwierzytelniania",
- "descPlaceholder": "Dodaj opis kontekstu uwierzytelniania",
- "modifyTitle": "Modyfikuj kontekst uwierzytelniania",
- "namePlaceholder": "Na przykład: Zaufana lokalizacja, Zaufane urządzenie, Silna autoryzacja",
- "publishDesc": "Opublikowanie w aplikacjach spowoduje udostępnienie kontekstu uwierzytelniania do użycia przez aplikacje. Opublikuj po zakończeniu konfigurowania zasad dostępu warunkowego dla tagu. [Dowiedz się więcej][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150966",
- "publishLabel": "Publikuj w aplikacjach",
- "titleDesc": "Skonfiguruj kontekst uwierzytelniania, który będzie używany do ochrony danych i akcji aplikacji. Użyj nazw i opisów, które będą zrozumiałe dla administratorów aplikacji. [Dowiedz się więcej][1]\n[1]:https://go.microsoft.com/fwlink/?linkid=2150965"
- },
- "Notify": {
- "failure": "Nie można zaktualizować elementu {0}",
- "modifying": "Modyfikowanie elementu {0}",
- "success": "Pomyślnie zaktualizowano element {0}"
- },
- "WhatIf": {
- "selected": "Uwzględniono kontekst uwierzytelniania"
- },
- "addNewStepUp": "Nowy kontekst uwierzytelniania",
- "checkBoxInfo": "Wybierz konteksty uwierzytelniania, do których będą stosowane te zasady",
- "configure": "Konfiguruj konteksty uwierzytelniania",
- "createCA": "Przypisz zasady dostępu warunkowego do kontekstu uwierzytelniania",
- "dataGrid": "Lista kontekstów uwierzytelniania",
- "description": "Opis",
- "documentation": "Dokumentacja",
- "getStarted": "Rozpocznij",
- "label": "Kontekst uwierzytelniania (wersja zapoznawcza)",
- "menuLabel": "Kontekst uwierzytelniania (wersja zapoznawcza)",
- "name": "Nazwa",
- "noAuthContextSet": "Brak kontekstów uwierzytelniania",
- "noData": "Brak kontekstów uwierzytelniania do wyświetlenia",
- "selectionInfo": "Kontekst uwierzytelniania służy do zabezpieczania danych aplikacji oraz akcji w aplikacjach, takich jak SharePoint i Microsoft Cloud App Security.",
- "step": "Krok",
- "tabDescription": "Zarządzaj kontekstem uwierzytelniania w celu ochrony danych i akcji w aplikacjach. [Dowiedz się więcej][1]\n[1]:https://go.microsoft.com/fwlink/?linkid=2150965",
- "tagResources": "Otaguj zasoby za pomocą kontekstu uwierzytelniania"
- },
- "AuthenticationStrength": {
- "Mode": {
- "deviceBasedPush": "Microsoft Authenticator (logowanie za pomocą telefonu)",
- "deviceBasedPushFido2X509Certificate": "Microsoft Authenticator (logowanie za pomocą telefonu) + Fido 2 + uwierzytelnianie oparte na certyfikacie",
- "deviceBasedPushX509CertificateSingleFactor": "Microsoft Authenticator (logowanie za pomocą telefonu) + Fido 2 + uwierzytelnianie oparte na certyfikacie (jednoskładnikowe)",
- "email": "Jednorazowy kod dostępu w wiadomości e-mail",
- "emailOtp": "Uwierzytelnianie OTP poczty e-mail",
- "federatedMultiFactor": "Federacyjne wieloskładnikowe",
- "federatedSingleFactor": "Federacyjne uwierzytelnianie jednoskładnikowe",
- "federatedSingleFactorFederatedMultiFactor": "Federacyjne jednoskładnikowe + federacyjne wieloskładnikowe",
- "fido2": "Klucz zabezpieczeń FIDO 2",
- "fido2X509CertificateSingleFactor": "Klucz zabezpieczeń FIDO 2 + uwierzytelnianie oparte na certyfikacie (jednoskładnikowe)",
- "hardwareOath": "Uwierzytelnienie OTP sprzętu",
- "hardwareOathX509CertificateSingleFactor": "Uwierzytelnianie OTP sprzętu + uwierzytelnianie oparte na certyfikacie (jednoskładnikowe)",
- "microsoftAuthenticatorPSIX509CertificateSingleFactor": "Microsoft Authenticator (logowanie za pomocą telefonu) + uwierzytelnianie oparte na certyfikacie (jednoskładnikowe)",
- "microsoftAuthenticatorPsi": "Microsoft Authenticator (logowanie za pomocą telefonu)",
- "microsoftAuthenticatorPush": "Microsoft Authenticator (powiadomienie push)",
- "microsoftAuthenticatorPushX509CertificateSingleFactor": "Microsoft Authenticator (powiadomienie push) + uwierzytelnianie oparte na certyfikacie (jednoskładnikowe)",
- "none": "Brak",
- "password": "Hasło",
- "passwordDeviceBasedPush": "Hasło + Microsoft Authenticator (logowanie za pomocą telefonu)",
- "passwordFido2": "Hasło + klucz zabezpieczeń FIDO 2",
- "passwordHardwareOath": "Hasło + uwierzytelnianie OTP sprzętu",
- "passwordMicrosoftAuthenticatorPSI": "Hasło + Microsoft Authenticator (logowanie za pomocą telefonu)",
- "passwordMicrosoftAuthenticatorPush": "Hasło + Microsoft Authenticator (powiadomienie push)",
- "passwordSms": "Hasło + kod SMS",
- "passwordSoftwareOath": "Hasło + uwierzytelnianie OTP oprogramowania",
- "passwordTemporaryAccessPassMultiUse": "Hasło + tymczasowy kod dostępu (wielorazowego użycia)",
- "passwordTemporaryAccessPassOneTime": "Hasło + tymczasowy kod dostępu (jednorazowy)",
- "passwordVoice": "Hasło + uwierzytelnianie przy użyciu głosu",
- "sms": "SMS",
- "smsSignIn": "Logowanie za pomocą wiadomości SMS",
- "smsX509CertificateSingleFactor": "SMS + uwierzytelnianie oparte na certyfikacie (jednoskładnikowe)",
- "softwareOath": "Uwierzytelnianie OTP oprogramowania",
- "softwareOathX509CertificateSingleFactor": "Uwierzytelnianie OTP oprogramowania + uwierzytelnianie oparte na certyfikacie (jednoskładnikowe)",
- "temporaryAccessPassMultiUse": "Tymczasowy kod dostępu (wielokrotnego użycia)",
- "temporaryAccessPassMultiUseX509CertificateSingleFactor": "Tymczasowy kod dostępu (wielorazowego użycia) + uwierzytelnianie oparte na certyfikacie (jednoskładnikowe)",
- "temporaryAccessPassOneTime": "Tymczasowy kod dostępu (jednorazowy)",
- "temporaryAccessPassOneTimeX509CertificateSingleFactor": "Tymczasowy kod dostępu (jednorazowy) + uwierzytelnianie oparte na certyfikacie (jednoskładnikowe)",
- "voice": "Głos",
- "voiceX509CertificateSingleFactor": "Uwierzytelnianie przy użyciu głosu + uwierzytelnianie oparte na certyfikacie (jednoskładnikowe)",
- "windowsHelloForBusiness": "Usługa Windows Hello dla firm",
- "x509CertificateMultiFactor": "Uwierzytelnianie oparte na certyfikacie (wieloskładnikowe)",
- "x509CertificateSingleFactor": "Uwierzytelnianie oparte na certyfikacie (jednoskładnikowe)"
- }
- },
- "CAS": {
- "BuiltinPolicy": {
- "Option": {
- "blockDownloads": "Blokuj pliki do pobrania (wersja zapoznawcza)",
- "monitorOnly": "Tylko monitorowanie (wersja zapoznawcza)",
- "protectDownloads": "Chroń pliki do pobrania (wersja zapoznawcza)",
- "useCustomControls": "Użyj zasad niestandardowych..."
- },
- "ariaLabel": "Wybierz rodzaj Kontroli dostępu warunkowego aplikacji do zastosowania"
- }
- },
- "ChooseApplications": {
- "Grid": {
- "appIdAria": "Identyfikator aplikacji: {0}"
- },
- "LowerGrid": {
- "ariaLabel": "Lista wybranych aplikacji w chmurze"
- },
- "UpperGrid": {
- "ariaLabel": "Lista aplikacji w chmurze, które pasują do wyszukiwanego terminu"
- }
- },
- "ChooseLocations": {
- "Validation": {
- "failed": "Dla wartości „Wybrane lokalizacje” musisz wybrać co najmniej jedną lokalizację.",
- "selector": "Wybierz co najmniej jedną lokalizację"
- }
- },
- "ClientApp": {
- "Clients": {
- "Validation": {
- "failed": "Musisz wybrać co najmniej jednego z następujących klientów"
- }
- }
- },
- "ClientConditionsInfo": {
- "browserAndModern": "Te zasady mają zastosowanie tylko do przeglądarki i nowoczesnych aplikacji do uwierzytelniania. Aby zastosować te zasady do wszystkich aplikacji klienckich, włącz warunek aplikacji klienckiej i wybierz wszystkie aplikacje klienckie.",
- "classicExperience": "Od czasu utworzenia tych zasad zaktualizowano konfigurację domyślnych aplikacji klienckich.",
- "legacyAuth": "W przypadku nieskonfigurowania zasady są teraz stosowane do wszystkich aplikacji klienckich, w tym dla nowoczesnego i starszego uwierzytelniania."
- },
- "CloudAppFilterBlade": {
- "AssignmentFilter": {
- "header": "Atrybut",
- "placeholder": "Wybierz atrybut"
- },
- "Configure": {
- "infoBalloon": "Skonfiguruj filtry aplikacji, do których chcesz zastosować zasady."
- },
- "NoPermissions": {
- "learnMoreAria": "Więcej informacji o niestandardowych uprawnieniach atrybutów zabezpieczeń.",
- "message": "Nie masz uprawnień wymaganych do używania niestandardowych atrybutów zabezpieczeń."
- },
- "gridHeader": "Za pomocą niestandardowych atrybutów zabezpieczeń można użyć konstruktora reguł lub pola tekstowego składni reguły do utworzenia lub edytowania reguł filtru. W wersji zapoznawczej obsługiwane są tylko atrybuty typu String. Atrybuty typu Liczba całkowita lub Wartość logiczna nie będą wyświetlane.",
- "learnMoreAria": "Więcej informacji na temat używania konstruktora reguł i pola tekstowego składni.",
- "noAttributes": "Brak atrybutów niestandardowych dostępnych do filtrowania. Musisz skonfigurować pewne atrybuty, aby użyć tego filtru.",
- "title": "Edit filter (Preview)"
- },
- "CloudAppsUserActions": {
- "any": "Dowolna akcja lub aplikacja w chmurze",
- "infoBalloon": "Aplikacja w chmurze lub akcja użytkownika, którą chcesz przetestować. Na przykład „SharePoint Online”",
- "learnMore": "Kontroluj dostęp na podstawie wszystkich lub określonych aplikacji w chmurze lub akcji.",
- "learnMoreB2C": "Kontroluj dostęp na podstawie wszystkich lub określonych aplikacji w chmurze.",
- "title": "Aplikacje w chmurze lub akcje"
- },
- "CloudappsSelectionBlade": {
- "Excluded": {
- "gridAria": "Lista wykluczonych aplikacji w chmurze"
- },
- "Filter": {
- "configured": "Skonfigurowano",
- "label": "Edit filter (Preview)",
- "with": "{0} z {1}"
- },
- "Included": {
- "gridAria": "Lista uwzględnionych aplikacji w chmurze"
- },
- "Validation": {
- "authContext": "W obszarze „kontekst uwierzytelniania” musisz skonfigurować co najmniej jeden element podrzędny.",
- "selectApps": "Wartość „{0}” musi być skonfigurowana",
- "selector": "Wybierz co najmniej jedną aplikację.",
- "userActions": "W obszarze „Akcje użytkownika” musisz skonfigurować co najmniej jeden element podrzędny."
- }
- },
- "DeviceState": {
- "LearnMore": {
- "message": "Control user access when the device the user is signing-in from is not \"Hybrid Azure AD joined\" or \"marked as compliant\".\n '{0}' has been deprecated. Use '{1}' instead."
- }
- },
- "Errors": {
- "notFound": "Nie znaleziono zasad lub zostały one usunięte.",
- "notFoundDetailed": "Zasady „{0}” już nie istnieją. Możliwe, że zostały usunięte."
- },
- "NamedLocation": {
- "Form": {
- "CountryLookup": {
- "ariaLabel": "Metoda wyszukiwania kraju",
- "gps": "Określanie lokalizacji według współrzędnych GPS",
- "info": "W przypadku skonfigurowania warunku lokalizacji zasad dostępu warunkowego użytkownicy będą monitowani przez aplikację Authenticator o udostępnienie swojej lokalizacji GPS.",
- "ip": "Określ lokalizację według adresu IP (tylko IPv4)"
- },
- "Header": {
- "new": "Nowa lokalizacja ({0})",
- "update": "Lokalizacja aktualizacji ({0})"
- },
- "IP": {
- "learn": "Skonfiguruj zakresy adresów IPv4 i IPv6 lokalizacji nazwanej.\n[Dowiedz się więcej][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
- },
- "Include": {
- "infoBalloon": "Nieznane kraje/regiony to adresy IP, które nie są skojarzone z konkretnym krajem lub regionem. [Dowiedz się więcej][1]\n\nObejmuje to:\n* Adresy IPv6\n* Adresy IPv4 bez bezpośredniego mapowania\n[1]: https://aka.ms/canamedlocations\n ",
- "label": "Uwzględnij nieznane kraje/regiony"
- },
- "Name": {
- "empty": "Nazwa nie może być pusta",
- "placeholder": "Nazwij tę lokalizację"
- },
- "PrivateLink": {
- "learn": "Utwórz nową nazwaną lokalizację zawierającą łącza prywatne dla usługi Azure AD. \n[Dowiedz się więcej][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
- },
- "Search": {
- "countries": "Wyszukaj kraje",
- "names": "Wyszukaj nazwy",
- "privateLinks": "Wyszukaj prywatne linki"
- },
- "Trusted": {
- "label": "Oznacz jako zaufaną lokalizację"
- },
- "enter": "Wprowadź nowy zakres adresów IPv4 lub IPv6",
- "example": "np. 40.77.182.32/27 lub 2a01:111::/32"
- },
- "Label": {
- "addCountries": "Lokalizacja krajów",
- "addIpRange": "Lokalizacja zakresów adresów IP",
- "addPrivateLink": "Azure Private Link"
- },
- "Notification": {
- "Create": {
- "Failed": {
- "description": "Nie można utworzyć nowej lokalizacji ({0})",
- "title": "Tworzenie nie powiodło się"
- },
- "InProgress": {
- "description": "Tworzenie nowej lokalizacji ({0})",
- "title": "Tworzenie w toku"
- },
- "Success": {
- "description": "Pomyślnie utworzono nową lokalizację ({0})",
- "title": "Tworzenie zakończyło się pomyślnie"
- }
- },
- "Delete": {
- "Failed": {
- "description": "Niepowodzenia podczas usuwania lokalizacji ({0})",
- "title": "Usuwanie nie powiodło się"
- },
- "InProgress": {
- "description": "Usuwanie lokalizacji ({0})",
- "title": "Usuwanie w toku"
- },
- "Success": {
- "description": "Pomyślnie usunięto lokalizację ({0})",
- "title": "Usuwanie zakończyło się pomyślnie"
- }
- },
- "Update": {
- "Failed": {
- "description": "Niepowodzenia podczas aktualizowania lokalizacji ({0})",
- "title": "Aktualizowanie nie powiodło się"
- },
- "InProgress": {
- "description": "Aktualizowanie lokalizacji ({0})",
- "title": "Aktualizowanie w toku"
- },
- "Success": {
- "description": "Pomyślnie zaktualizowano lokalizację ({0})",
- "title": "Aktualizowanie powiodło się"
- }
- }
- },
- "PrivateLinks": {
- "grid": "Lista prywatnych łączy"
- },
- "Trusted": {
- "title": "Typ zaufany",
- "trusted": "Zaufane"
- },
- "Type": {
- "all": "Wszystkie typy",
- "countries": "Kraje",
- "ipRanges": "Zakresy adresów IP",
- "privateLinks": "Łącze prywatne",
- "title": "Typ lokalizacji"
- },
- "iPRangeInvalidError": "Wartość musi być prawidłowym zakresem adresów IPv4 lub IPv6.",
- "iPRangeLinkOrSiteLocalError": "Sieć IP została wykryta jako adres połączenia lokalnego lub adres lokalny dla witryny.",
- "iPRangeOctetError": "Sieć IP nie może rozpoczynać się od wartości 0 ani 255.",
- "iPRangePrefixError": "Prefiks sieci adresu IP musi należeć do zakresu od /{0} do /{1}.",
- "iPRangePrivateError": "Sieć IP wykryto jako adres prywatny."
- },
- "Policies": {
- "Grid": {
- "aria": "Lista zasad dostępu warunkowego"
- },
- "countText": "Znaleziono {0} z {1} zasad",
- "countTextSingular": "Znaleziono {0} z 1 zasad",
- "search": "Wyszukaj zasady"
- },
- "Policy": {
- "Condition": {
- "ServicePrincipalRisk": {
- "description": "Konfigurowanie poziomów ryzyka związanego z jednostką usługi na potrzeby egzekwowania zasad",
- "infoBalloonContent": "Skonfiguruj ryzyko jednostki usługi, aby zastosować zasady do wybranych poziomów ryzyka",
- "title": "Ryzyko jednostki usługi"
- }
- }
- },
- "PolicyControlAuthStrength": {
- "MultiFactorAuthentication": {
- "description": "Kombinacje metod, które spełniają silne uwierzytelnianie, takie jak Hasło i SMS",
- "displayName": "Uwierzytelnianie wieloskładnikowe (MFA)"
- },
- "Passwordless": {
- "description": "Metody bezhasłowe spełniające silne uwierzytelnianie, takie jak Microsoft Authenticator ",
- "displayName": "Bezhasłowe uwierzytelnianie wieloskładnikowe"
- },
- "PhishingResistant": {
- "description": "Metody bezhasłowe odporne na wyłudzanie informacji na potrzeby najsilniejszego uwierzytelniania, np. klucza zabezpieczeń FIDO2",
- "displayName": "Uwierzytelnianie wieloskładnikowe odporne na wyłudzanie informacji"
- }
- },
- "PolicyControlFedAuthMethod": {
- "certificate": "Uwierzytelnianie certyfikatów",
- "infoBubble": "Określ wymaganą metodę uwierzytelniania, która musi być stosowana przez dostawcę federacji, np. usługę ADFS.",
- "multifactor": "Uwierzytelnianie wieloskładnikowe",
- "require": "Wymagaj metody uwierzytelniania federacyjnego (wersja zapoznawcza)",
- "whatIfFormat": "{0} - {1}"
- },
- "PolicyState": {
- "off": "Wyłączone",
- "on": "Włączone",
- "reportOnly": "Tylko raport"
- },
- "PolicyTemplates": {
- "Devices": {
- "description": "Wybierz kategorię szablonów zasad dotyczących urządzeń, aby urządzenia uzyskujące dostęp do sieci były widoczne. Przed przyznaniem dostępu sprawdź zgodność i stan kondycji urządzeń.",
- "name": "Urządzenia"
- },
- "Identities": {
- "description": "Wybierz kategorię szablonów zasad tożsamości, aby zweryfikować i zabezpieczyć każdą tożsamość za pomocą silnego uwierzytelniania w całej Twojej cyfrowej infrastrukturze.",
- "name": "Tożsamości"
- },
- "Summary": {
- "CloudApps": {
- "allCloudApps": "Wszystkie aplikacje",
- "office365": "Office 365",
- "registerSecurityInfo": "Zarejestruj informacje zabezpieczające"
- },
- "Conditions": {
- "androidAndIOS": "Platforma urządzeń: systemy Android i IOS",
- "anyDevice": "Dowolne urządzenie, z wyjątkiem urządzeń z systemami Android, iOS, Windows i Mac",
- "anyDeviceStateExceptHybrid": "Dowolny stan urządzenia, z wyjątkiem zgodnego i przyłączonego hybrydowo do usługi Azure AD",
- "anyLocation": "Dowolna lokalizacja z wyjątkiem lokalizacji zaufanych",
- "browserMobileDesktop": "Aplikacje klienckie: przeglądarka, aplikacje mobilne i klienci używający komputerów stacjonarnych",
- "exchangeActiveSync": "Aplikacje klienckie: program Exchange Active Sync, inni klienci",
- "windowsAndMac": "Platforma urządzeń: systemy Windows i Mac"
- },
- "Devices": {
- "anyDevice": "Dowolne urządzenie"
- },
- "Grant": {
- "appProtectionPolicy": "Wymagaj zasad ochrony aplikacji",
- "approvedClientApp": "Wymagaj zatwierdzonej aplikacji klienckiej",
- "blockAccess": "Blokuj dostęp",
- "mfa": "Wymagaj uwierzytelniania wieloskładnikowego",
- "passwordChange": "Wymagaj zmiany hasła",
- "requireCompliantDevice": "Wymagaj, aby urządzenie było oznaczone jako zgodne",
- "requireHybridAzureADDevice": "Wymagaj urządzenia przyłączonego hybrydowo do usługi Azure AD"
- },
- "Session": {
- "appEnforcedRestrictions": "Użyj ograniczeń wymuszonych przez aplikację",
- "signInFrequency": "Częstotliwość logowań i nigdy stała sesja przeglądarki"
- },
- "UsersAndGroups": {
- "allUsers": "Wszyscy użytkownicy",
- "directoryRoles": "Role katalogów, z wyjątkiem bieżącego administratora",
- "globalAdmin": "Administrator globalny",
- "noGuestAndAdmins": "Wszyscy użytkownicy, z wyjątkiem Gości i Zewnętrznych, Administratorów globalnych, Bieżących administratorów"
- },
- "azureManagement": "Zarządzanie platformą Azure",
- "deviceFilters": "Filtry dla urządzeń",
- "devicePlatforms": "Platformy urządzeń"
- },
- "TemplateId": {
- "AppEnforcedRestrictions": {
- "description": "Blokuj lub ograniczaj dostęp do zawartości programów SharePoint, OneDrive i Exchange z urządzeń niezarządzanych.",
- "name": "CA014: Używanie ograniczeń wymuszonych przez aplikację dla urządzeń niezarządzanych",
- "title": "Użyj ograniczeń wymuszonych przez aplikację dla urządzeń niezarządzanych"
- },
- "ApprovedClientApps": {
- "description": "Aby zapobiec utracie danych, organizacje mogą ograniczyć dostęp do zatwierdzonych nowoczesnych aplikacji klienckich uwierzytelniania za pomocą usługi Intune App Protection.",
- "name": "CA012: Wymóg zatwierdzonych aplikacji klienckich i ochrony aplikacji",
- "title": "Wymagaj zatwierdzonych aplikacji klienckich i ochrony aplikacji"
- },
- "BlockAccessOnUnknowns": {
- "description": "Użytkownicy będą blokowani przed dostępem do zasobów firmy, gdy typ urządzenia jest nieznany lub nieobsługiwany.",
- "name": "CA010: Blokowanie dostępu dla nieznanej lub nieobsługiwanej platformy urządzenia",
- "title": "Blokuj dostęp dla nieznanej lub nieobsługiwanej platformy urządzenia"
- },
- "BlockLegacyAuth": {
- "description": "Blokuj starsze punkty końcowe uwierzytelniania, których można użyć do ominięcia uwierzytelniania wieloskładnikowego. ",
- "name": "CA003: Blokuj starsze uwierzytelniania",
- "title": "Blokuj starsze wersje uwierzytelniania"
- },
- "NoPersistentBrowserSession": {
- "description": "Chroń dostęp użytkowników na urządzeniach niezarządzanych, uniemożliwiając sesjom przeglądarki pozostanie zalogowanym po zamknięciu przeglądarki i ustawiając częstotliwość logowania na 1 godzinę.",
- "name": "CA011: Brak trwałej sesji przeglądarki",
- "title": "Brak trwałej sesji przeglądarki"
- },
- "RequireCompliantOrHybridADAdmins": {
- "description": "Wymagaj od administratorów uprzywilejowanych dostępu do zasobów tylko wtedy, gdy jest używane urządzenie zgodne lub przyłączone hybrydowo do usługi Azure AD.",
- "name": "CA009: wymagaj urządzenia zgodnego lub urządzenia przyłączonego hybrydowo do usługi Azure AD w przypadku administratorów",
- "title": "Wymagaj urządzenia zgodnego lub przyłączonego hybrydowo do usługi Azure AD w przypadku administratorów"
- },
- "RequireCompliantOrHybridADAllUsers": {
- "description": "Chroń dostęp do zasobów firmy, wymagając od użytkowników korzystania z urządzenia zarządzanego lub uwierzytelniania wieloskładnikowego (dotyczy tylko systemu macOS lub Windows).",
- "name": "CA013: wymagaj urządzenia zgodnego lub urządzenia przyłączonego hybrydowo do usługi Azure AD lub uwierzytelniania wieloskładnikowego w przypadku wszystkich użytkowników",
- "title": "Wymagaj urządzenia zgodnego lub urządzenia przyłączonego hybrydowo do usługi Azure AD lub uwierzytelniania wieloskładnikowego w przypadku wszystkich użytkowników"
- },
- "RequireMFAAllUsers": {
- "description": "Wymagaj uwierzytelniania wieloskładnikowego dla wszystkich kont użytkowników, aby zmniejszyć ryzyko naruszenia zabezpieczeń.",
- "name": "CA004: Wymóg uwierzytelniania wieloskładnikowego dla wszystkich użytkowników",
- "title": "Wymóg uwierzytelniania wieloskładnikowego dla wszystkich użytkowników"
- },
- "RequireMFAForAdmins": {
- "description": "Wymagaj uwierzytelniania wieloskładnikowego dla uprzywilejowanych kont administracyjnych, aby zmniejszyć ryzyko naruszenia zabezpieczeń. Te zasady będą dotyczyć tych samych ról co domyślne ustawienia zabezpieczeń.",
- "name": "CA001: Wymóg uwierzytelniania wieloskładnikowego dla administratorów",
- "title": "Wymagaj uwierzytelniania wieloskładnikowego dla administratorów"
- },
- "RequireMFAForAzureManagement": {
- "description": "Wymagaj uwierzytelniania wieloskładnikowego w celu ochrony uprzywilejowanego dostępu do zasobów platformy Azure.",
- "name": "CA006: Wymóg uwierzytelniania wieloskładnikowego do zarządzania platformą Azure",
- "title": "Wymóg uwierzytelniania wieloskładnikowego do zarządzania platformą Azure"
- },
- "RequireMFAForGuestAccess": {
- "description": "Wymagaj, aby użytkownicy-goście przeprowadzali uwierzytelnianie wieloskładnikowe podczas uzyskiwania dostępu do zasobów firmy.",
- "name": "CA005: Wymóg uwierzytelniania wieloskładnikowego dla dostępu gości",
- "title": "Wymóg uwierzytelniania wieloskładnikowego dla dostępu gości"
- },
- "RequireMFAForRiskySignIn": {
- "description": "Wymagaj uwierzytelniania wieloskładnikowego, jeśli wykryto średnie lub wysokie ryzyko związane z logowaniem. (Wymaga licencji usługi Azure AD — wersja Premium 2)",
- "name": "CA007: wymagaj uwierzytelniania wieloskładnikowego w przypadku ryzykownych logowań",
- "title": "Wymagaj uwierzytelniania wieloskładnikowego w przypadku ryzykownych logowań"
- },
- "RequirePasswordChangeForHighRiskUsers": {
- "description": "Wymagaj od użytkownika zmiany hasła w przypadku wykrycia wysokiego ryzyka związanego z użytkownikiem. (Wymaga licencji usługi Azure AD — wersja Premium 2)",
- "name": "CA008: Wymóg zmiany hasła dla użytkowników wysokiego ryzyka",
- "title": "Wymóg zmiany hasła dla użytkowników wysokiego ryzyka"
- },
- "RequireSecurityInfo": {
- "description": "Zabezpiecz, kiedy i w jaki sposób użytkownicy rejestrują się w przypadku uwierzytelniania wieloskładnikowego lub hasła samoobsługowego usługi Azure AD. ",
- "name": "CA002: Zabezpieczanie rejestracji informacji zabezpieczających",
- "title": "Zabezpieczanie rejestracji informacji zabezpieczających"
- }
- },
- "TemplateState": {
- "BlockAccessOnUnknowns": {
- "title": "Włączenie tych zasad uniemożliwi dostęp z nieznanego typu urządzenia. Rozważ użycie trybu tylko do raportowania w celu rozpoczęcia pracy dopiero wtedy, gdy potwierdzono, że nie wpłynie to na użytkowników."
- },
- "BlockLegacyAuth": {
- "description": "Rozważ użycie trybu tylko do raportowania w celu rozpoczęcia pracy dopiero wtedy, gdy potwierdzono, że nie wpłynie to na użytkowników.",
- "title": "Włączenie tych zasad spowoduje zablokowanie starszych uwierzytelnień dla wszystkich użytkowników."
- },
- "RequireCompliantOrHybridADAdmins": {
- "Description": {
- "on": "Rozważ użycie trybu tylko do raportowania w celu rozpoczęcia pracy dopiero wtedy, gdy potwierdzono, że nie wpłynie to na uprzywilejowanych użytkowników.",
- "reportOnly": "Zasady w trybie tylko do raportowania, które wymagają zgodnych urządzeń, mogą monitować użytkowników na urządzeniach z systemem Mac, iOS lub Android, aby podczas oceny zasad wybierali certyfikat urządzenia, nawet jeśli nie jest wymuszana zgodność urządzeń. Te monity mogą być powtarzane, dopóki urządzenie nie będzie zgodne."
- },
- "Title": {
- "on": "Włączenie tych zasad uniemożliwi dostęp uprzywilejowanym użytkownikom, chyba że użyjesz urządzenia zarządzanego, takiego jak urządzenie zgodne lub przyłączone hybrydowo do usługi Azure AD. Przed włączeniem upewnij się, że skonfigurowano zasady zgodności lub włączono konfigurację hybrydową usługi Azure AD.",
- "reportOnly": "Przed włączeniem upewnij się, że skonfigurowano zasady zgodności lub włączono konfigurację hybrydową usługi Azure AD. "
- }
- },
- "RequireCompliantOrHybridADAllUsers": {
- "Description": {
- "on": "Ta zasada będzie dotyczyć wszystkich użytkowników z wyjątkiem aktualnie zalogowanego administratora. Rozważ użycie trybu tylko do raportowania w celu rozpoczęcia pracy aż do potwierdzenia, że ta zasada nie wpłynie na Twoich użytkowników."
- },
- "Title": {
- "on": "Nie pozwól się zablokować! Upewnij się, że urządzenie jest zgodne, przyłączone hybrydowo do usługi Azure AD lub że skonfigurowano uwierzytelnianie wieloskładnikowe.",
- "reportOnly": "Zasady w trybie tylko do raportowania, które wymagają zgodnych urządzeń, mogą monitować użytkowników na urządzeniach z systemem Mac, iOS lub Android, aby podczas oceny zasad wybierali certyfikat urządzenia, nawet jeśli nie jest wymuszana zgodność urządzeń. Te monity mogą być powtarzane, dopóki urządzenie nie będzie zgodne."
- }
- },
- "RequireMfa": {
- "description": "Jeśli używasz kont dostępu awaryjnego lub połączenia usługi Azure AD w celu zsynchronizowania obiektów lokalnych, może być konieczne wykluczenie tych kont z tych zasad po utworzeniu."
- },
- "RequireMfaAdmins": {
- "description": "Pamiętaj, że bieżące konto administratora zostanie automatycznie wykluczone, a pozostałe będą chronione podczas tworzenia zasad. Rozważ użycie trybu tylko do raportowania w celu rozpoczęcia pracy.",
- "title": "Nie zablokuj się samodzielnie! Te zasady mają wpływ na Portal Azure."
- },
- "RequireMfaAllUsers": {
- "description": "Rozważ użycie trybu tylko do raportowania w celu rozpoczęcia pracy dopiero wtedy, gdy ta zmiana została zaplanowana i zakomunikowana wszystkim Twoim użytkownikom.",
- "title": "Włączenie tych zasad spowoduje wymuszenie uwierzytelniania wieloskładnikowego dla wszystkich użytkowników."
- },
- "RequireSecurityInfo": {
- "description": "Sprawdź konfigurację, aby chronić te konta na podstawie potrzeb Twojej firmy.",
- "title": "Następujący użytkownicy i role są wykluczone z tych zasad: Goście i Użytkownicy zewnętrzni, Administratorzy globalni, Bieżący administrator"
- }
- },
- "basics": "Podstawowe informacje",
- "clientApps": "Aplikacje klienckie",
- "cloudApps": "Aplikacje w chmurze",
- "cloudAppsOrActions": "Aplikacje lub akcje w chmurze ",
- "conditions": "Warunki ",
- "createNewPolicy": "Tworzenie nowych zasad na podstawie szablonów (wersja zapoznawcza)",
- "createPolicy": "Utwórz zasady",
- "currentUser": "Bieżący użytkownik",
- "customizeBuild": "Dostosuj Twoją kompilacją",
- "customizeTemplate": "Listy szablonów są dostosowywane na podstawie rodzaju zasad, które chcesz utworzyć",
- "excludedDevicePlatform": "Wykluczone platformy urządzeń",
- "excludedDirectoryRoles": "Wykluczone role katalogów",
- "excludedLocation": "Wykluczone role katalogów",
- "excludedUsers": "Wykluczeni użytkownicy",
- "grantControl": "Udziel kontroli ",
- "includeFilteredDevice": "Uwzględnij w zasadach przefiltrowane urządzenia",
- "includedDevicePlatform": "Dołączone platformy sprzętowe",
- "includedDirectoryRoles": "Wykluczone role katalogów",
- "includedLocation": "Dołączona lokalizacja",
- "includedUsers": "Dołączeni użytkownicy",
- "legacyAuthenticationClients": "Klienci ze starszym uwierzytelnianiem",
- "namePolicy": "Nazwij Twoje zasady",
- "next": "Dalej",
- "policyName": "Nazwa zasad",
- "policyState": "Stan zasad",
- "policySummary": "Podsumowanie zasady",
- "policyTemplate": "Szablon zasad",
- "previous": "Wstecz",
- "reviewAndCreate": "Przejrzyj i utwórz",
- "riskLevels": "Poziomy ryzyka",
- "selectATemplate": "Wybierz szablon",
- "selectTemplate": "Wybierz szablon",
- "selectTemplateCategory": "Wybierz kategorię szablonów",
- "selectTemplateRecommendation": "Na podstawie Twojej odpowiedzi zalecamy następujące szablony",
- "sessionControl": "Mechanizm kontroli sesji ",
- "signInFrequency": "Częstotliwość logowania",
- "signInRisk": "Ryzyko logowania",
- "template": "Szablon ",
- "templateCategory": "Kategoria szablonu",
- "userRisk": "Ryzyko związane z użytkownikiem",
- "usersAndGroups": "Użytkownicy i grupy ",
- "viewPolicySummary": "Wyświetl podsumowanie zasad "
- },
- "SSM": {
- "MemberSelector": {
- "description": "Użytkownicy i grupy"
- },
- "Notification": {
- "Migration": {
- "error": "Migracja ustawień ciągłej weryfikacji dostępu do zasad dostępu warunkowego zakończyła się niepowodzeniem",
- "inProgress": "Migracja ustawień ciągłej weryfikacji dostępu",
- "success": "Migracja ustawień ciągłej weryfikacji dostępu do zasad dostępu warunkowego zakończyła się powodzeniem",
- "successDescription": "Przejdź do zasad dostępu warunkowego, aby wyświetlić zmigrowane ustawienia w nowo utworzonej zasadzie o nazwie „Zasady urzędu certyfikacji utworzone na podstawie ustawień CAE”."
- },
- "error": "Nie udało się zaktualizować ustawień ciągłej weryfikacji dostępu",
- "inProgress": "Aktualizowanie ustawień ciągłej weryfikacji dostępu",
- "success": "Pomyślnie zaktualizowano ustawienia ciągłej weryfikacji dostępu"
- },
- "PreviewOptions": {
- "disable": "Wyłącz podgląd",
- "enable": "Włącz podgląd"
- },
- "StrictLocationEnforcement": {
- "infoContent1": "Dla usługi Azure AD i dostawcy zasobów mogą być widoczne różne adresy IP w przypadku tego samego urządzenia z powodu niezgodności partycji sieciowej lub adresów IPv4/IPv6. Dokładne wymuszanie lokalizacji będzie powodować wymuszanie zasad dostępu warunkowego w oparciu o oba adresy IP, ten widoczny dla usługi Azure AD i ten widoczny dla dostawcy zasobów.",
- "infoContent2": "Aby zapewnić maksymalne bezpieczeństwo, zaleca się uwzględnienie wszystkich adresów IP, które są widoczne dla usługi Azure AD i dostawcy zasobów, w zasadach nazwanej lokalizacji i włączenie trybu „Dokładne wymuszanie lokalizacji”.",
- "label": "Dokładne wymuszanie lokalizacji",
- "title": "Dodatkowe tryby wymuszania"
- },
- "bladeTitle": "Ciągła weryfikacja dostępu",
- "description": "Po usunięciu dostępu użytkownika lub zmianie adresu IP klienta ciągła weryfikacja dostępu automatycznie blokuje dostęp do zasobów i aplikacji prawie w czasie rzeczywistym.",
- "migrateLabel": "Migruj",
- "migrationError": "Proces migracji zakończony niepowodzeniem z powodu następującego błędu: {0}",
- "migrationInfo": "Ustawienia funkcji Ciągła weryfikacja dostępu zostały przeniesione do środowiska użytkownika Dostęp warunkowy. Przeprowadź migrację za pomocą przycisku „Migruj” powyżej i skonfiguruj dalsze korzystanie z tej funkcji przy użyciu zasad dostępu warunkowego. Kliknij tutaj, aby dowiedzieć się więcej.",
- "noLicenseMessage": "Zarządzaj ustawieniami inteligentnego zarządzania sesjami za pomocą usługi Azure AD — wersja Premium",
- "optionsPickerTitle": "Włącz/wyłącz ciągłą weryfikację dostępu",
- "upsellInfo": "Nie możesz już zmieniać ustawień na tej stronie, a wszelkie ustawienia w tym miejscu powinny zostać zignorowane. Twoje poprzednie ustawienie zostanie uznane. W przyszłości możesz skonfigurować ustawienia CAE w obszarze Dostęp warunkowy. Kliknij tutaj, aby dowiedzieć się więcej."
- },
- "SessionLifetime": {
- "PersistentBrowser": {
- "Error": {
- "notAllApps": "Zasady trwałej sesji przeglądarki działają tylko wtedy, gdy wybrana jest opcja „Wszystkie aplikacje w chmurze”. Zaktualizuj wybór aplikacji w chmurze."
- },
- "Option": {
- "always": "Zawsze trwała",
- "help": "Trwała sesja przeglądarki umożliwia użytkownikom pozostanie zalogowanym po zamknięciu i ponownym otworzeniu okna przeglądarki
\n\n- To ustawienie działa prawidłowo, gdy wybrana jest opcja „Wszystkie aplikacje w chmurze”
\n- Nie ma to wpływu na okresy istnienia tokenów ani na ustawienie częstotliwości logowania.
\n- Spowoduje to przesłonięcie zasad „Wyświetlaj opcję zachowania stanu zalogowania” w znakowaniu firmowym.
\n- Opcja „Nigdy trwała” przesłoni wszelkie oświadczenia logowania jednokrotnego przekazane z federacyjnej usługi uwierzytelniania.
\n- Opcja „Nigdy trwała” uniemożliwi korzystanie z logowania jednokrotnego we wszystkich aplikacjach na urządzeniu oraz między aplikacjami a przeglądarką użytkownika dla urządzeń przenośnych.
\n",
- "label": "Trwała sesja przeglądarki",
- "never": "Nigdy trwała"
- },
- "Warning": {
- "allApps": "Trwała sesja przeglądarki działa tylko wtedy, gdy wybrana jest opcja Wszystkie aplikacje w chmurze. Zmień wybór aplikacji w chmurze. Kliknij tutaj, aby dowiedzieć się więcej."
- }
- },
- "SignInFrequency": {
- "Aria": {
- "units": "Godziny lub dni",
- "value": "Częstotliwość"
- },
- "Option": {
- "Day": {
- "plural": "{0} dni",
- "singular": "1 dzień"
- },
- "Hour": {
- "plural": "{0} godz.",
- "singular": "1 godzina"
- },
- "daysOption": "Dni",
- "everytime": "Za każdym razem",
- "help": "Czas, po upłynięciu którego użytkownik będzie musiał ponownie się zalogować podczas próby uzyskania dostępu do zasobu. Ustawieniem domyślnym jest kroczący przedział czasu wynoszący 90 dni, tzn. użytkownicy będą musieli się ponownie uwierzytelnić podczas pierwszej próby uzyskania dostępu do zasobu po okresie nieaktywności wynoszącym 90 lub więcej dni.",
- "hoursOption": "Godziny",
- "label": "Częstotliwość logowania",
- "placeholder": "Wybierz jednostki"
- }
- },
- "mainOption": "Modyfikuj okres istnienia sesji",
- "mainOptionHelp": "Skonfiguruj, jak często użytkownikom będzie wyświetlany monit i czy sesje przeglądarki będą utrwalone. Aplikacje, które nie obsługują nowoczesnych protokołów uwierzytelniania, mogą nie honorować tych zasad. W takich przypadkach skontaktuj się z deweloperem aplikacji."
- },
- "SigninRisk": {
- "LearnMore": {
- "message": "Kontroluj dostęp użytkowników w celu reagowania na określone poziomy ryzyka logowania."
- }
- },
- "SingleSelectorActive": {
- "failed": "Nie można załadować danych.",
- "reattempt": "Ładowanie danych. Ponawianie próby dla {0} z {1}."
- },
- "TimeCondition": {
- "Errors": {
- "both": "Nieprawidłowy zakres czasu „Uwzględnij” lub „Wyklucz”.",
- "daysOfWeek": "{0} Pamiętaj, aby określić co najmniej jeden dzień tygodnia.",
- "endBeforeStart": "{0} Upewnij się, że data/godzina rozpoczęcia jest wcześniejsza niż data/godzina zakończenia.",
- "exclude": "Nieprawidłowy zakres czasu „Wyklucz”.",
- "generic": "{0} Upewnij się, że ustawiono zarówno dni tygodnia, jak i strefę czasową. Jeśli opcja „Cały dzień” nie jest zaznaczona, należy również ustawić czas rozpoczęcia i czas zakończenia.",
- "include": "Nieprawidłowy zakres czasu „Uwzględnij”.",
- "timeMissing": "{0} Pamiętaj, aby określić zarówno godzinę rozpoczęcia, jak i zakończenia.",
- "timeZone": "{0} Pamiętaj, aby określić strefę czasową.",
- "timesAndZone": "{0} Pamiętaj, aby ustawić czas rozpoczęcia, czas zakończenia i strefę czasową."
- }
- },
- "UserActions": {
- "Included": {
- "none": "Nie wybrano aplikacji w chmurze ani akcji",
- "plural": "Uwzględnione akcje użytkownika: {0}",
- "singular": "Uwzględnione akcje użytkownika: 1"
- },
- "accessRequirement1": "Poziom 1",
- "accessRequirement2": "Poziom 2",
- "accessRequirement3": "Poziom 3",
- "accessRequirementsLabel": "Uzyskiwanie dostępu do zabezpieczonych danych aplikacji",
- "appsActionsAuthTitle": "Aplikacje w chmurze, akcje lub kontekst uwierzytelniania",
- "appsOrActionsSelectorInfoBallonText": "Dostęp do aplikacji lub akcje użytkownika",
- "appsOrActionsTitle": "Aplikacje w chmurze lub akcje",
- "label": "Akcje użytkownika",
- "mainOptionsLabel": "Wybierz, do czego te zasady mają zastosowanie",
- "registerOrJoinDevices": "Zarejestruj lub dołącz urządzenia",
- "registerSecurityInfo": "Zarejestruj informacje o zabezpieczeniach",
- "selectionInfo": "Wybierz akcję, do której będą stosowane te zasady"
- },
- "UserSelectionBlade": {
- "DirectoryRoles": {
- "ariaLabel": "Wybierz role katalogu"
- },
- "Excluded": {
- "gridAria": "Lista wykluczonych użytkowników"
- },
- "Included": {
- "gridAria": "Lista uwzględnionych użytkowników"
- },
- "Validation": {
- "customRoleIncluded": "„Role katalogów” zawierają co najmniej jedną rolę niestandardową",
- "customRoleSelected": "Wybrano co najmniej jedną rolę niestandardową",
- "failed": "Opcja „{0}” musi być skonfigurowana",
- "roles": "Wybierz co najmniej jedną rolę",
- "usersGroups": "Wybierz co najmniej jednego użytkownika lub grupę"
- },
- "learnMore": "Kontroluj dostęp na podstawie tego, do kogo będą stosowane zasady, np. do użytkowników i grup, tożsamości obciążeń, ról katalogu lub gości zewnętrznych."
- },
- "ValidationResult": {
- "blockEveryonePolicy": "Konfiguracja zasad nie jest obsługiwana. Przejrzyj przypisania i kontrolki.",
- "invalidApplicationCondition": "Wybrano nieprawidłowe aplikacje w chmurze",
- "invalidClientTypesCondition": "Wybrano nieprawidłowe aplikacje klienta",
- "invalidConditions": "Nie wybrano przypisań",
- "invalidControls": "Wybrano nieprawidłowe kontrolki",
- "invalidDevicePlatformsCondition": "Wybrano nieprawidłowe platformy urządzeń",
- "invalidDevicesCondition": "Nieprawidłowa konfiguracja urządzenia. Prawdopodobnie przyczyną jest nieprawidłowa konfiguracja „{0}”.",
- "invalidGrantControlPolicy": "Nieprawidłowa kontrolka przyznawania",
- "invalidLocationsCondition": "Wybrano nieprawidłowe lokalizacje",
- "invalidPolicy": "Nie wybrano przypisań",
- "invalidSessionControlPolicy": "Nieprawidłowa kontrolka sesji",
- "invalidSignInRisksCondition": "Wybrano nieprawidłowe ryzyko związane z logowaniem",
- "invalidUserRisksCondition": "Wybrano nieprawidłowe ryzyko związane z użytkownikiem",
- "invalidUsersCondition": "Wybrano nieprawidłowych użytkowników",
- "mamPolicyShouldOnlyTargetAndroidOrIosPlatforms": "Zasady zarządzania aplikacjami mobilnymi można zastosować tylko do platform klienckich Android lub iOS.",
- "notSupportedCombination": "Konfiguracja zasad nie jest obsługiwana. Dowiedz się więcej o obsługiwanych zasadach.",
- "pending": "Weryfikowanie zasad",
- "requireComplianceEveryonePolicy": "Konfiguracja zasad będzie wymagać zgodności urządzeń dla wszystkich użytkowników. Zweryfikuj wybrane przypisania.",
- "success": "Prawidłowe zasady"
- },
- "VpnCert": {
- "Grid": {
- "aria": "Lista certyfikatów sieci VPN"
- }
- },
- "WarningsInfo": {
- "Controls": {
- "compliantDeviceEnabled": "Nie zablokuj sobie dostępu! Upewnij się, że Twoje urządzenie jest zgodne.",
- "domainJoinedDeviceEnabled": "Nie zablokuj sobie dostępu! Upewnij się, że Twoje urządzenie jest przyłączone hybrydowo do usługi Azure AD.",
- "exchangeDisabled": "Program Exchange ActiveSync obsługuje tylko kontrolę zgodnych urządzeń i zatwierdzonej aplikacji klienckiej. Kliknij, aby dowiedzieć się więcej.",
- "exchangeDisabled2": "Program Exchange ActiveSync obsługuje tylko kontrolki „Zgodne urządzenie”, „Zatwierdzona aplikacja kliencka” i „Zgodna aplikacja kliencka”. Kliknij, aby dowiedzieć się więcej.",
- "notAvailableForSP": "Niektóre mechanizmy kontroli są niedostępne z powodu wyboru elementu „{0}” w przypisaniu zasad",
- "requireAuthOrMfa": "Nie można użyć elementu „{0}” z elementem „{1}”",
- "requireMfa": "Rozważ przetestowanie nowej publicznej wersji zapoznawczej „{0}”",
- "requirePasswordChangeEnabled": "Udzielenie „Wymagaj zmiany hasła” może być używane tylko wtedy, gdy zasady są przypisane do elementu „Wszystkie aplikacje w chmurze”"
- },
- "Policies": {
- "Linux": {
- "devicePlatformsReportOnlyPolicy": "Zasady w trybie Tylko raport wymagające zgodnych urządzeń mogą monitować użytkowników w systemach macOS, iOS, Android i Linux o wybranie certyfikatu urządzenia.",
- "excludeDevicePlatforms": "Wyklucz platformy urządzeń macOS, iOS, Android i Linux z tych zasad.",
- "proceedAnywayDevicePlatforms": "Kontynuuj z wybraną konfiguracją. Użytkownicy systemów macOS, iOS, Android i Linux mogą otrzymywać monity, gdy urządzenie jest sprawdzane pod kątem zgodności."
- },
- "blockCurrentUserPolicy": "Nie zablokuj sobie dostępu! Zalecamy zastosowanie zasad najpierw do małego zestawu użytkowników, aby upewnić się, że działają zgodnie z oczekiwaniami. Zalecamy również wykluczenie co najmniej jednego administratora z tych zasad. Zagwarantuje Ci to dostęp i możliwość zaktualizowania zasad, jeśli będzie wymagana zmiana. Przejrzyj użytkowników i aplikacje, których to dotyczy.",
- "devicePlatformsReportOnlyPolicy": "Zasady w trybie tylko do raportowania, które wymagają zgodnych urządzeń, mogą monitować użytkowników systemów MacOS, iOS i Android o wybranie certyfikatu urządzenia.",
- "excludeCurrentUserSelection": "Wyklucz bieżącego użytkownika, {0}, z tych zasad.",
- "excludeDevicePlatforms": "Wyklucz z tych zasad platformy urządzeń MacOS, iOS i Android.",
- "proceedAnywayDevicePlatforms": "Kontynuuj z wybraną konfiguracją. Użytkownicy systemów MacOS, iOS i Android mogą zobaczyć monity, gdy urządzenie będzie sprawdzane pod kątem zgodności.",
- "proceedAnywaySelection": "Rozumiem, że te zasady będą mieć wpływ na moje konto. Kontynuuj mimo to."
- },
- "ServicePrincipals": {
- "blockExchange": "Wybranie usługi Office 365 Exchange Online wpłynie również na aplikacje, takie jak OneDrive i Teams.",
- "blockPortal": "Nie zablokuj sobie dostępu! Te zasady wpływają na witrynę Azure Portal. Przed kontynuowaniem upewnij się, że Ty lub ktoś inny będzie w stanie wrócić do portalu.",
- "blockPortalWithSession": "Nie zablokuj sobie dostępu! Te zasady mają wpływ na witrynę Azure Portal. Przed kontynuowaniem upewnij się, że Ty lub inny użytkownik będziecie mogli ponownie uzyskać dostęp do portalu.
Zignoruj to ostrzeżenie, jeśli konfigurujesz zasady trwałej sesji przeglądarki, które działają prawidłowo tylko w przypadku wybrania pozycji „Wszystkie aplikacje w chmurze”.",
- "blockSharePoint": "Wybranie usługi SharePoint Online wpłynie również na aplikacje, takie jak Microsoft Teams, Planner, Delve, MyAnalytics oraz Newsfeed.",
- "blockSkype": "Wybranie usługi Skype dla firm Online wpłynie również na program Microsoft Teams.",
- "includeOrExclude": "Można skonfigurować filtr aplikacji dla wartości „{0}” lub „{1}”, ale nie dla obu.",
- "selectAppsNAForSP": "Nie można wybrać pojedynczych aplikacji w chmurze z powodu wyboru elementu „{0}” w przypisaniu zasad",
- "teamsBlocked": "Uwzględnienie aplikacji takich jak SharePoint Online i Exchange Online w zasadach będzie miało wpływ również na aplikację Microsoft Teams."
- },
- "Users": {
- "blockAllUsers": "Nie zablokuj sobie dostępu! Te zasady zostaną zastosowane do wszystkich użytkowników. Zalecamy zastosowanie zasad najpierw do małego zbioru użytkowników, aby zweryfikować, czy działają zgodnie z oczekiwaniami."
- }
- },
- "WhatIf": {
- "Device": {
- "AttributesGrid": {
- "aria": "Lista atrybutów na urządzeniu używanych podczas logowania.",
- "infoBalloon": "Lista atrybutów na urządzeniu używanych podczas logowania."
- }
- }
- },
- "advancedTabText": "Zaawansowane",
- "allCloudAppsErrorBox": "Opcja „Wszystkie aplikacje w chmurze” musi być wybrana, jeśli wybrane jest udzielenie „Wymagaj zmiany hasła”",
- "allDayCheckboxLabel": "Cały dzień",
- "allDevicePlatforms": "Dowolne urządzenie",
- "allGuestUserInfoContent": "Obejmuje gości usługi Azure AD B2B, ale nie gości programu SharePoint",
- "allGuestUserLabel": "Wszyscy goście i użytkownicy zewnętrzni",
- "allRiskLevelsOption": "Wszystkie poziomy ryzyka",
- "allTrustedLocationLabel": "Wszystkie zaufane lokalizacje",
- "allUserGroupSetSelectorLabel": "Wybrano wszystkich użytkowników i wszystkie grupy",
- "allUsersString": "Wszyscy użytkownicy",
- "and": "{0} I {1}",
- "andWithGrouping": "{0} I {1} ",
- "androidDisplayName": "Android",
- "anyCloudAppSelection": "Dowolna aplikacja w chmurze",
- "appContextOptionInfoContent": "Żądany tag uwierzytelniania",
- "appContextOptionLabel": "Żądany tag uwierzytelniania (wersja zapoznawcza)",
- "appContextUriPlaceholder": "Przykład: uri:contoso.com:level3",
- "appEnforceInfoBubble": "Ograniczenia wymuszane przez aplikacje mogą wymagać dodatkowych czynności konfiguracyjnych administratora w ramach aplikacji w chmurze. Ograniczenia będą stosowane tylko dla nowych sesji.",
- "appNotSetSeletorLabel": "Nie wybrano żadnej aplikacji w chmurze",
- "applyConditionClientAppInfoBalloonContent": "Konfiguruj aplikacje klienckie, aby do określonych z nich zastosować zasady",
- "applyConditionDevicePlatformInfoBalloonContent": "Konfiguruj platformy urządzeń, aby do określonych z nich zastosować zasady",
- "applyConditionDeviceStateInfoBalloonContent": "Skonfiguruj stany urządzeń, aby do określonych z nich zastosować zasady",
- "applyConditionLocationInfoBalloonContent": "Konfiguruj lokalizacje, aby zastosować zasady do zaufanych lub niezaufanych lokalizacji",
- "applyConditionSigninRiskInfoBalloonContent": "Konfiguruj ryzyko związane z logowaniem, aby zastosować zasady do określonych poziomów ryzyka",
- "applyConditionUserRiskInfoBalloonContent": "Konfiguruj ryzyko związane z użytkownikiem, aby zastosować zasady do określonych poziomów ryzyka",
- "applyConditonLabel": "Konfiguruj",
- "ariaLabelPolicyDisabled": "Zasady są wyłączone",
- "ariaLabelPolicyEnabled": "Zasady są włączone",
- "ariaLabelPolicyReportOnly": "Zasada jest w trybie samego raportu",
- "blockAccess": "Blokuj dostęp",
- "builtInDirectoryRoleLabel": "Wbudowane role katalogów",
- "casCustomControlInfo": "Zasady niestandardowe należy skonfigurować w portalu Cloud App Security. Ta kontrola działa natychmiast w przypadku polecanych aplikacji i może być samodzielnie aprowizowana dla dowolnej aplikacji. Kliknij tutaj, aby dowiedzieć się więcej o obu scenariuszach.",
- "casInfoBubble": "Ta kontrolka działa dla różnych aplikacji w chmurze.",
- "casPreconfiguredControlInfo": "Ta kontrola działa natychmiast w przypadku polecanych aplikacji i może być samodzielnie aprowizowana dla dowolnej aplikacji. Kliknij tutaj, aby dowiedzieć się więcej o obu scenariuszach.",
- "cert64DownloadCol": "Pobierz certyfikat base64",
- "cert64Name": "VpnBase64Cert",
- "certDownloadCol": "Pobierz certyfikat",
- "certDurationCol": "Data wygaśnięcia",
- "certDurationStartCol": "Ważny od",
- "certName": "VpnCert",
- "chooseApplicationsBladeSubtitle": "",
- "chooseApplicationsBladeTitle": "Wybierz aplikacje",
- "chooseApplicationsCartSubitle": "",
- "chooseApplicationsCartTitle": "Wybrane aplikacje",
- "chooseApplicationsEmpty": "Brak aplikacji",
- "chooseApplicationsNone": "Brak",
- "chooseApplicationsNoneFound": "Nie można znaleźć „{0}”. Spróbuj użyć innej nazwy lub identyfikatora.",
- "chooseApplicationsPlural": "{0} i inne ({1})",
- "chooseApplicationsReAuthEverytimeInfo": "Szukasz aplikacji? Niektórych aplikacji nie można używać z kontrolą sesji „Wymagaj ponownego uwierzytelnienia — za każdym razem”",
- "chooseApplicationsRemove": "Usuń",
- "chooseApplicationsReturnedPlural": "Liczba znalezionych aplikacji: {0}",
- "chooseApplicationsReturnedSingular": "Znaleziono 1 aplikację",
- "chooseApplicationsSearchBalloon": "Wyszukaj aplikację, wprowadzając jej nazwę lub identyfikator.",
- "chooseApplicationsSearchHint": "Wyszukaj aplikacje...",
- "chooseApplicationsSearchLabel": "Aplikacje",
- "chooseApplicationsSearching": "Trwa wyszukiwanie...",
- "chooseApplicationsSelect": "Wybierz",
- "chooseApplicationsSelected": "Wybrane",
- "chooseApplicationsSingular": "{0} i jedna więcej",
- "chooseApplicationsTooMany": "Więcej wyników niż można wyświetlić. Filtruj przy użyciu pola wyszukiwania.",
- "chooseLocationCorpnetItem": "Sieć firmowa",
- "chooseLocationSelectedLocationsLabel": "Wybrane lokalizacje",
- "chooseLocationTrustedIpsItem": "Zaufane adresy IP usługi MFA",
- "chooseLocationsBladeSubtitle": "",
- "chooseLocationsBladeTitle": "Wybieranie lokalizacji",
- "chooseLocationsCartSubitle": "",
- "chooseLocationsCartTitle": "Wybrane lokalizacje",
- "chooseLocationsEmpty": "Brak lokalizacji",
- "chooseLocationsExcludedSelectorTitle": "Wybierz",
- "chooseLocationsIncludedSelectorTitle": "Wybierz",
- "chooseLocationsNone": "Brak",
- "chooseLocationsNoneFound": "Nie można znaleźć „{0}”. Spróbuj użyć innej nazwy lub identyfikatora.",
- "chooseLocationsPlural": "{0} i inne ({1})",
- "chooseLocationsRemove": "Usuń",
- "chooseLocationsReturnedPlural": "Liczba odnalezionych lokalizacji: {0}",
- "chooseLocationsReturnedSingular": "Odnaleziono 1 lokalizację",
- "chooseLocationsSearchBalloon": "Wyszukaj lokalizację, wprowadzając jej nazwę.",
- "chooseLocationsSearchHint": "Wyszukaj lokalizacje...",
- "chooseLocationsSearchLabel": "Lokalizacje",
- "chooseLocationsSearching": "Trwa wyszukiwanie...",
- "chooseLocationsSelect": "Wybierz",
- "chooseLocationsSelected": "Wybrane",
- "chooseLocationsSelectionBladeExcludedSelectorTitle": "Wybierz",
- "chooseLocationsSelectionBladeIncludedSelectorTitle": "Wybierz",
- "chooseLocationsSingular": "{0} i jedna więcej",
- "chooseLocationsTooMany": "Więcej wyników niż można wyświetlić. Filtruj przy użyciu pola wyszukiwania.",
- "claimProviderAddCommandText": "Nowa kontrolka niestandardowa",
- "claimProviderAddNewBladeTitle": "Nowa kontrolka niestandardowa",
- "claimProviderDeleteCommand": "Usuń",
- "claimProviderDeleteDescription": "Czy na pewno chcesz usunąć „{0}”? Tej akcji nie można cofnąć.",
- "claimProviderDeleteTitle": "Czy na pewno?",
- "claimProviderEditInfoText": "Wprowadź dane w formacie JSON na potrzeby dostosowanych kontrolek udostępnionych przez dostawców oświadczeń.",
- "claimProviderNotificationCreateDescription": "Tworzenie kontrolki niestandardowej o nazwie „{0}”",
- "claimProviderNotificationCreateFailedDescription": "Utworzenie kontrolki niestandardowej „{0}” nie powiodło się. Spróbuj ponownie później.",
- "claimProviderNotificationCreateFailedTitle": "Nie można utworzyć kontrolki niestandardowej",
- "claimProviderNotificationCreateSuccessDescription": "Utworzono kontrolkę niestandardową o nazwie „{0}”",
- "claimProviderNotificationCreateSuccessTitle": "Utworzono sieć „{0}”",
- "claimProviderNotificationCreateTitle": "Tworzenie sieci „{0}”",
- "claimProviderNotificationDeleteDescription": "Usuwanie kontrolki niestandardowej o nazwie „{0}”",
- "claimProviderNotificationDeleteFailedDescription": "Usunięcie kontrolki niestandardowej „{0}” nie powiodło się. Spróbuj ponownie później.",
- "claimProviderNotificationDeleteFailedTitle": "Nie można usunąć kontrolki niestandardowej",
- "claimProviderNotificationDeleteSuccessDescription": "Usunięto kontrolkę niestandardową o nazwie „{0}”",
- "claimProviderNotificationDeleteSuccessTitle": "Usunięto sieć „{0}”",
- "claimProviderNotificationDeleteTitle": "Usuwanie znakowania „{0}”",
- "claimProviderNotificationUpdateDescription": "Aktualizowanie kontrolki niestandardowej o nazwie „{0}”",
- "claimProviderNotificationUpdateFailedDescription": "Zaktualizowanie kontrolki niestandardowej „{0}” nie powiodło się. Spróbuj ponownie później.",
- "claimProviderNotificationUpdateFailedTitle": "Nie można zaktualizować kontrolki niestandardowej",
- "claimProviderNotificationUpdateSuccessDescription": "Zaktualizowano kontrolkę niestandardową o nazwie „{0}”",
- "claimProviderNotificationUpdateSuccessTitle": "Zaktualizowano sieć „{0}”",
- "claimProviderNotificationUpdateTitle": "Aktualizowanie sieci „{0}”",
- "claimProviderValidationAppIdInvalid": "Wartość „AppId” jest nieprawidłowa. Sprawdź to i spróbuj ponownie.",
- "claimProviderValidationClientIdMissing": "W danych brakuje wartości „ClientId”. Sprawdź to i spróbuj ponownie.",
- "claimProviderValidationControlClaimsRequestedMissing": "W elemencie „Control” brakuje wartości „ClaimsRequested”. Sprawdź to i spróbuj ponownie.",
- "claimProviderValidationControlClaimsRequestedTypeMissing": "W elemencie „ClaimsRequested” brakuje wartości „Type”. Sprawdź to i spróbuj ponownie.",
- "claimProviderValidationControlIdAlreadyExists": "Wartość „Id” elementu „Control” już istnieje. Sprawdź to i spróbuj ponownie.",
- "claimProviderValidationControlIdMissing": "W elemencie „Control” brakuje wartości „Id”. Sprawdź to i spróbuj ponownie.",
- "claimProviderValidationControlIdReferencedInExistingPolicy": "Nie można usunąć wartości „Id” elementu „Control”, ponieważ istnieje do niej odwołanie w istniejących zasadach. Sprawdź to i spróbuj ponownie.",
- "claimProviderValidationControlIdTooManyControls": "Właściwość „Control” zawiera zbyt wiele kontrolek. Sprawdź to i spróbuj ponownie.",
- "claimProviderValidationControlIdValueReserved": "Wartość „Id” elementu „Control” jest zastrzeżonym słowem kluczowym. Użyj innego identyfikatora.",
- "claimProviderValidationControlNameAlreadyExists": "Wartość „Name” elementu „Control” już istnieje. Sprawdź to i spróbuj ponownie.",
- "claimProviderValidationControlNameMissing": "W elemencie „Control” brakuje wartości „Name”. Sprawdź to i spróbuj ponownie.",
- "claimProviderValidationControlsMissing": "W danych brakuje wartości „Controls”. Sprawdź to i spróbuj ponownie.",
- "claimProviderValidationDiscoveryUrlMissing": "W danych brakuje wartości „DiscoveryUrl”. Sprawdź to i spróbuj ponownie.",
- "claimProviderValidationInvalid": "Podane dane są nieprawidłowe. Sprawdź to i spróbuj ponownie.",
- "claimProviderValidationInvalidJsonDefinition": "Nie można zapisać kontrolki niestandardowej. Przejrzyj tekst w formacie JSON i spróbuj ponownie.",
- "claimProviderValidationNameAlreadyExists": "Wartość „Name” już istnieje. Sprawdź to i spróbuj ponownie.",
- "claimProviderValidationNameMissing": "W danych brakuje wartości „Name”. Sprawdź to i spróbuj ponownie.",
- "claimProviderValidationUnknown": "Wystąpił nieznany błąd podczas weryfikowania podanych danych. Sprawdź to i spróbuj ponownie.",
- "claimProvidersNone": "Brak kontrolek niestandardowych",
- "claimProvidersSearchPlaceholder": "Wyszukaj kontrolki.",
- "classicPoilcyFilterTitle": "Pokaż",
- "classicPolicyAllPlatforms": "Wszystkie platformy",
- "classicPolicyClientAppBrowserAndNative": "Przeglądarka, aplikacje mobilne i klienci komputerowi",
- "classicPolicyCloudAppTitle": "Aplikacja w chmurze",
- "classicPolicyControlAllow": "Zezwól",
- "classicPolicyControlBlock": "Blokuj",
- "classicPolicyControlBlockWhenNotAtWork": "Zablokuj dostęp poza pracą",
- "classicPolicyControlRequireCompliantDevice": "Wymagaj zgodnego urządzenia",
- "classicPolicyControlRequireDomainJoinedDevice": "Wymagaj urządzenia połączonego z domeną",
- "classicPolicyControlRequireMfa": "Wymagaj uwierzytelniania wieloskładnikowego",
- "classicPolicyControlRequireMfaWhenNotAtWork": "Wymagaj uwierzytelniania wieloskładnikowego poza pracą",
- "classicPolicyDeleteCommand": "Usuń",
- "classicPolicyDeleteFailTitle": "Nie można usunąć zasad klasycznych",
- "classicPolicyDeleteInProgressTitle": "Usuwanie zasad klasycznych",
- "classicPolicyDeleteSuccessTitle": "Zasady klasyczne usunięte",
- "classicPolicyDetailBladeTitle": "Szczegóły",
- "classicPolicyDisableCommand": "Wyłącz",
- "classicPolicyDisableConfirmation": "Czy na pewno chcesz wyłączyć „{0}”? Tej akcji nie można cofnąć.",
- "classicPolicyDisableFailDescription": "Nie można wyłączyć zasad „{0}”",
- "classicPolicyDisableFailTitle": "Nie można wyłączyć zasad klasycznych",
- "classicPolicyDisableInProgressDescription": "Wyłączanie zasad „{0}”",
- "classicPolicyDisableInProgressTitle": "Wyłączanie zasad klasycznych",
- "classicPolicyDisableSuccessDescription": "Pomyślnie wyłączono zasady „{0}”",
- "classicPolicyDisableSuccessTitle": "Zasady klasyczne wyłączone",
- "classicPolicyEasSupportedPlatforms": "Obsługiwane platformy usługi Exchange ActiveSync",
- "classicPolicyEasUnsupportedPlatforms": "Nieobsługiwane platformy usługi Exchange ActiveSync",
- "classicPolicyExcludedPlatformsTitle": "Wykluczone platformy urządzeń",
- "classicPolicyFilterAll": "Wszystkie zasady",
- "classicPolicyFilterDisabled": "Wyłączone zasady",
- "classicPolicyFilterEnabled": "Włączone zasady",
- "classicPolicyIncludeExcludeMembersDescription": "Wykluczając grupy, można przeprowadzić stopniową migrację zasad.",
- "classicPolicyIncludeExcludeMembersTitle": "Uwzględnianie/wykluczanie grup",
- "classicPolicyIncludedPlatformsTitle": "Uwzględnione platformy sprzętowe",
- "classicPolicyManualMigrationMessage": "Te zasady muszą zostać zmigrowane ręcznie.",
- "classicPolicyMigrateCommand": "Migruj",
- "classicPolicyMigrateConfirmation": "Czy na pewno chcesz przeprowadzić migrację zasad „{0}”? Te zasady można migrować tylko raz.",
- "classicPolicyMigrateFailDescription": "Nie można migrować zasad „{0}”",
- "classicPolicyMigrateFailTitle": "Nie można przeprowadzić migracji zasad klasycznych",
- "classicPolicyMigrateInProgressDescription": "Migrowanie zasad „{0}”",
- "classicPolicyMigrateInProgressTitle": "Migrowanie zasad klasycznych",
- "classicPolicyMigrateRecommendText": "Zalecenie: wykonać migrację do zasad nowego portalu Azure.",
- "classicPolicyMigrateSuccessTitle": "Migracja zasad klasycznych zakończona powodzeniem",
- "classicPolicyMigratedSuccessDescription": "Tymi klasycznymi zasadami można teraz zarządzać w obszarze Zasady.",
- "classicPolicyMigratedSuccessDescriptionMultiple": "Te zasady klasyczne są migrowane jako nowe zasady {0}. Nowymi zasadami można zarządzać w obszarze Zasady.",
- "classicPolicyNoEditPermissionMsg": "Nie masz uprawnień do edytowania tych zasad. Tylko administratorzy globalni i administratorzy zabezpieczeń mogą edytować zasady. Kliknij tutaj, aby uzyskać więcej informacji.",
- "classicPolicySaveFailDescription": "Nie można zapisać zasad „{0}”",
- "classicPolicySaveFailTitle": "Nie można zapisać zasad klasycznych",
- "classicPolicySaveInProgressDescription": "Zapisywanie zasad „{0}”",
- "classicPolicySaveInProgressTitle": "Zapisywanie zasad klasycznych",
- "classicPolicySaveSuccessDescription": "Pomyślnie zapisano zasady „{0}”",
- "classicPolicySaveSuccessTitle": "Zasady klasyczne zapisane",
- "clientAppBladeLegacyInfoBanner": "Starsza metoda uwierzytelniania nie jest obecnie obsługiwana",
- "clientAppBladeLegacyUpsellBanner": "Blokuj nieobsługiwane aplikacje klienckie (wersja zapoznawcza)",
- "clientAppBladeTitle": "Aplikacje klienckie",
- "clientAppDescription": "Wybierz aplikacje klienckie, do których zostaną zastosowane te zasady",
- "clientAppExchangeActiveSync": "Exchange ActiveSync",
- "clientAppExchangeDisabledInfo": "Program Exchange ActiveSync jest dostępny, gdy usługa Exchange Online jest jedyną wybraną aplikacją w chmurze. Kliknij, aby dowiedzieć się więcej",
- "clientAppExchangeWarning": "Program Exchange ActiveSync obecnie nie obsługuje wszystkich pozostałych warunków",
- "clientAppLearnMore": "Kontroluj dostęp użytkowników do konkretnych docelowych aplikacji klienckich, które nie używają nowoczesnego uwierzytelniania.",
- "clientAppLegacyHeader": "Klienci ze starszym uwierzytelnianiem",
- "clientAppMobileDesktop": "Aplikacje mobilne i klienci stacjonarni",
- "clientAppModernHeader": "Klienci z nowoczesnym uwierzytelnianiem",
- "clientAppOnlySupportedPlatforms": "Zastosuj zasady tylko do obsługiwanych platform",
- "clientAppSelectSpecificClientApps": "Wybierz aplikacje klienckie",
- "clientAppV2BladeTitle": "Aplikacje klienckie (wersja zapoznawcza)",
- "clientAppWebBrowser": "Przeglądarka",
- "clientAppsSelectedLabel": "Włączono: {0}",
- "clientTypeBrowser": "Przeglądarka",
- "clientTypeEas": "Klienci programu Exchange ActiveSync",
- "clientTypeEasInfo": "Tylko klienci Exchange ActiveSync używający starszego uwierzytelniania.",
- "clientTypeModernAuth": "Nowocześni klienci uwierzytelniania",
- "clientTypeOtherClients": "Inni klienci",
- "clientTypeOtherClientsInfo": "Obejmuje to starszych klientów pakietu Office oraz inne protokoły pocztowe (POP, IMAP, SMTP itp.). [Dowiedz się więcej][1]\n[1]: https://aka.ms/caclientapps\n",
- "cloudAppCountDiffBannerText": "Z katalogu usunięto aplikacje w chmurze ({0}) skonfigurowane w ramach tych zasad, ale nie ma to wpływu na inne aplikacje w zasadach. Przy następnej aktualizacji sekcji aplikacji zasad usunięte aplikacje zostaną automatycznie z niej skasowane.",
- "cloudAppsSelectionBladeAllMicrosoftApps": "Wszystkie aplikacje firmy Microsoft",
- "cloudAppsSelectionExcludeAllMicrosoftClients": "Zezwalaj na aplikacje w chmurze, klasyczne i mobilne firmy Microsoft (wersja zapoznawcza)",
- "cloudappsSelectionBladeAllCloudapps": "Wszystkie aplikacje w chmurze",
- "cloudappsSelectionBladeExcludeDescription": "Wybierz aplikacje w chmurze, które zostaną wykluczone z zasad",
- "cloudappsSelectionBladeExcludedSelectorTitle": "Wybierz wykluczone aplikacje w chmurze",
- "cloudappsSelectionBladeIncludeDescription": "Wybierz aplikacje w chmurze, do których będą mieć zastosowanie te zasady",
- "cloudappsSelectionBladeIncludedSelectorTitle": "Wybierz",
- "cloudappsSelectionBladeSelectedCloudapps": "Wybierz aplikacje",
- "cloudappsSelectorInfoBallonText": "Usługi, do których użytkownik uzyskuje dostęp w celu wykonania pracy. Na przykład „Salesforce”",
- "cloudappsSelectorUserPlural": "Aplikacje: {0}",
- "cloudappsSelectorUserSingular": "1 aplikacja",
- "conditionLabelMulti": "Wybrane warunki: {0}",
- "conditionLabelOne": "Wybrano 1 warunek",
- "conditionalAccessBladeTitle": "Dostęp warunkowy",
- "conditionsNotSelectedLabel": "Nie skonfigurowano",
- "conditionsReqPwSet": "Niektóre opcje są niedostępne z powodu udzielenia „Wymagaj zmiany hasła”, które jest obecnie wybrane",
- "configureCasText": "Skonfiguruj usługę Cloud App Security",
- "configureCustomControlsText": "Skonfiguruj zasady niestandardowe",
- "controlLabelMulti": "Wybrane kontrolki: {0}",
- "controlLabelOne": "Wybrano 1 kontrolkę",
- "controlValidatorText": "Wybierz co najmniej jedną kontrolkę",
- "controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
- "controlsDeviceComplianceInfoBubble": "Urządzenie musi być zgodne z usługą Intune. Jeśli urządzenie jest niezgodne, użytkownikowi zostanie wyświetlony monit o doprowadzenie urządzenia do stanu zgodności",
- "controlsDomainJoinedInfoBubble": "Urządzenia muszą być przyłączone hybrydowo do usługi Azure AD.",
- "controlsMamInfoBubble": "Urządzenie musi używać tych zatwierdzonych aplikacji klienckich.",
- "controlsMfaInfoBubble": "Użytkownik musi spełnić dodatkowe wymagania dotyczące zabezpieczeń, takie jak połączenie telefoniczne, wiadomość SMS",
- "controlsOrAndInfoBubble": "ControlsOrAndInfoBubble",
- "controlsRequireCompliantAppInfoBubble": "Urządzenie musi używać aplikacji chronionych przez zasady.",
- "controlsRequirePasswordResetInfoBubble": "Wymagaj zmiany hasła, aby zmniejszyć ryzyko związane z użytkownikiem. Ta opcja wymaga również usługi Multi-Factor Authentication. Nie można użyć innych kontrolek.",
- "countriesRadiobuttonInfoBalloonContent": "Kraj/region, z którego ma miejsce logowanie, jest określany na podstawie adresu IP użytkownika.",
- "createNewVpnCert": "Nowy certyfikat",
- "createdTimeLabel": "Godzina utworzenia",
- "customRoleLabel": "Role niestandardowe (nieobsługiwane)",
- "dateRangeTypeLabel": "Zakres dat",
- "daysOfWeekPlaceholderText": "Filtruj dni tygodnia",
- "daysOfWeekTypeLabel": "Dni tygodnia",
- "deletePolicyNoLicenseText": "Teraz możesz usunąć te zasady. Po usunięciu nie będziesz w stanie utworzyć ich ponownie, dopóki nie uzyskasz wymaganych licencji.",
- "descriptionContentForControlsAndOr": "W przypadku wielu kontrolek",
- "devicePlatform": "Platforma urządzeń",
- "devicePlatformConditionHelpDescription": "Zastosuj zasady do wybranych platform urządzeń.\n[Dowiedz się więcej][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2044750",
- "devicePlatformInclude": "Włączono: {0}",
- "devicePlatformIncludeExclude": "Wykluczono {0} i {1}",
- "devicePlatformNoSelectionError": "Wybieranie platform urządzeń wymaga wybrania jednego elementu podrzędnego.",
- "devicePlatformsNone": "Brak",
- "deviceSelectionBladeExcludeDescription": "Wybierz platformy, zostaną wykluczone z zasad",
- "deviceSelectionBladeIncludeDescription": "Wybierz platformy urządzeń, które będą objęte tymi zasadami",
- "deviceStateAll": "Stan wszystkich urządzeń",
- "deviceStateCompliant": "Urządzenie oznaczone jako zgodne",
- "deviceStateCompliantInfoContent": "Urządzenia zgodne z usługą Intune zostaną wykluczone z oceny tych zasad, więc jeśli na przykład zasady blokują dostęp, spowoduje to zablokowanie wszystkich urządzeń z wyjątkiem urządzeń zgodnych z usługą Intune.",
- "deviceStateConditionConfigureInfoContent": "Konfigurowanie zasad na podstawie stanu urządzenia",
- "deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Hybrid Azure AD joined' or 'marked as compliant'.\n '{0}' has been deprecated. Use '{1}' instead.",
- "deviceStateConditionSelectorLabel": "Stan urządzenia (wersja zapoznawcza)",
- "deviceStateDomainJoined": "Urządzenie przyłączone hybrydowo do usługi Azure AD",
- "deviceStateDomainJoinedInfoContent": "Urządzenia przyłączone hybrydowo do usługi Azure AD zostaną wykluczone z oceny tych zasad, więc jeśli na przykład zasady blokują dostęp, spowoduje to zablokowanie wszystkich urządzeń z wyjątkiem urządzeń przyłączonych hybrydowo do usługi Azure AD.",
- "deviceStateDomainJoinedInfoLinkText": "Dowiedz się więcej.",
- "deviceStateExcludeDescription": "Wybierz warunek stanu urządzenia używany do wykluczania urządzeń z zasad.",
- "deviceStateIncludeAndExcludeOneLabel": "Dołącz: {0}. Wyklucz: {1}",
- "deviceStateIncludeAndExcludeTwoLabel": "Dołącz: {0}. Wyklucz: {1}, {2}",
- "directoryRoleInfoContent": "Przypisz zasady do wbudowanych ról katalogów.",
- "directoryRolesLabel": "Role katalogu",
- "discardbutton": "Odrzuć",
- "downloadDefaultFileName": "Zakresy adresów IP",
- "downloadExampleFileName": "Przykład",
- "downloadExampleHeader": "To jest przykładowy plik z demonstracjami rodzajów danych, które mogą zostać zaakceptowane. Wiersze rozpoczynające się znakiem # zostaną zignorowane.",
- "endDatePickerLabel": "Końce",
- "endTimePickerLabel": "Godzina zakończenia",
- "enterCountryText": "Adres IP i kraj są przetwarzane razem. Wybierz kraj.",
- "enterIpText": "Adres IP i kraj są przetwarzane razem. Podaj adres IP.",
- "enterUserText": "Nie wybrano żadnego użytkownika. Wybierz go.",
- "evaluationResult": "Wynik oceny",
- "exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
- "exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Tylko usługa Exchange ActiveSync z obsługiwanymi platformami",
- "excludeAllTrustedLocationSelectorText": "wszystkie zaufane lokalizacje",
- "featureRequiresP2": "Ta funkcja wymaga licencji usługi Azure AD Premium 2.",
- "friday": "Piątek",
- "grantControls": "Udziel kontroli",
- "gridNetworkTrusted": "Zaufane",
- "gridPolicyCreatedDateTime": "Data utworzenia",
- "gridPolicyEnabled": "Włączono",
- "gridPolicyModifiedDateTime": "Data modyfikacji",
- "gridPolicyName": "Nazwa zasad",
- "gridPolicyState": "Stan",
- "groupSelectionBladeExcludeDescription": "Wybierz grupy, wobec których zostanie zastosowane wykluczenie z zasad",
- "groupSelectionBladeExcludedSelectorTitle": "Wybieranie grup wykluczonych",
- "groupSelectionBladeSelect": "Wybieranie grup",
- "groupSelectorInfoBallonText": "Grupy w katalogu, wobec których zostaną zastosowane zasady. Przykład: „grupa pilotażowa”",
- "groupsSelectionBladeTitle": "Grupy",
- "helpCommonScenariosText": "Chcesz zapoznać się z typowymi scenariuszami?",
- "helpCondition1": "Gdy jakikolwiek użytkownik znajduje się poza siecią firmową",
- "helpCondition2": "Gdy użytkownicy z grupy „Menedżerowie” logują się",
- "helpConditionsTitle": "Warunki",
- "helpControl1": "Wymagane jest od nich zalogowanie się za pomocą uwierzytelniania wieloskładnikowego",
- "helpControl2": "Wymagane jest od nich używanie urządzenia zgodnego z usługą Intune lub urządzenia przyłączonego do domeny",
- "helpControlsTitle": "Formanty",
- "helpIntroText": "Dostęp warunkowy umożliwia wymuszanie wymagań dotyczących dostępu, gdy wystąpią określone warunki. Poniżej przedstawionych jest kilka przykładów",
- "helpIntroTitle": "Co to jest dostęp warunkowy?",
- "helpLearnMoreText": "Chcesz dowiedzieć się więcej na temat dostępu warunkowego?",
- "helpStartStep1": "Utwórz pierwszą zasadę, klikając pozycję „+ Nowe zasady”",
- "helpStartStep2": "Określ warunki i kontrolki zasad",
- "helpStartStep3": "Gdy wszystko będzie gotowe, nie zapomnij włączyć zasad i utworzyć",
- "helpStartTitle": "Rozpocznij",
- "highRisk": "Wysokie",
- "includeAndExcludeAppsTextFormat": "Uwzględnij: {0}. Wyklucz: {1}.",
- "includeAppsTextFormat": "Uwzględnij: {0}.",
- "includeUnknownAreasCheckboxInfoBalloonContent": "Nieznane obszary to adresy IP, których nie można mapować na kraj/region.",
- "includeUnknownAreasCheckboxLabel": "Uwzględnij nieznane obszary",
- "infoCommandLabel": "Informacje",
- "invalidCertDuration": "Nieprawidłowy czas trwania certyfikatu",
- "invalidIpAddress": "Wartość musi być prawidłowym adresem IP",
- "invalidUriErrorMsg": "Wprowadź prawidłowy identyfikator Uri. Przykład: „uri:contoso.com:acr” ",
- "iosDisplayName": "iOS",
- "linuxDisplayName": "Linux",
- "linuxDisplayNamePreview": "Linux (wersja zapoznawcza)",
- "loadAll": "Załaduj wszystko",
- "loading": "Trwa ładowanie...",
- "locationConfigureNamedLocationsText": "Konfiguruj wszystkie zaufane lokalizacje",
- "locationConfigureNamedLocationsUri": "{0}/usermanagement/mfasettings.aspx?tenantid={1}&culture={2}",
- "locationNameTooLongError": "Nazwa lokalizacji jest za długa. Maksymalna długość to 256 znaków",
- "locationSelectionBladeExcludeDescription": "Wybierz lokalizacje, które zostaną wykluczone z zasad",
- "locationSelectionBladeIncludeDescription": "Wybierz lokalizacje, które mają zostać dołączone do tych zasad",
- "locationsAllLocationsLabel": "Dowolna lokalizacja",
- "locationsAllNamedLocationsLabel": "Wszystkie zaufane adresy IP",
- "locationsAllPrivateLinksLabel": "Wszystkie prywatne linki w mojej dzierżawie",
- "locationsIncludeExcludeLabel": "{0} i wyklucz wszystkie zaufane adresy IP",
- "locationsSelectedPrivateLinksLabel": "Wybrane łącza prywatne",
- "lowRisk": "Niskie",
- "macOsDisplayName": "macOS",
- "managePoliciesLicenseText": "Aby zarządzać zasadami dostępu warunkowego, organizacja musi korzystać z usługi Azure AD — wersja Premium P1 lub P2.",
- "markAsTrustedCheckboxInfoBalloonContent": "Logowanie z zaufanej lokalizacji obniża ryzyko związane z logowaniem użytkownika. Oznacz tę lokalizację jako zaufaną tylko wtedy, jeśli wprowadzone zakresy adresów IP są uznawane za znane i wiarygodne w Twojej organizacji.",
- "markAsTrustedCheckboxLabel": "Oznacz jako zaufaną lokalizację",
- "mediumRisk": "Średnie",
- "memberSelectionCommandRemove": "Usuń",
- "menuItemClaimProviderControls": "Kontrolki niestandardowe (wersja zapoznawcza)",
- "menuItemClassicPolicies": "Zasady klasyczne",
- "menuItemInsightsAndReporting": "Szczegółowe informacje i raportowanie",
- "menuItemManage": "Zarządzaj",
- "menuItemNamedLocationsPreview": "Nazwane lokalizacje (wersja zapoznawcza)",
- "menuItemNamedNetworks": "Nazwane lokalizacje",
- "menuItemPolicies": "Zasady",
- "menuItemTermsOfUse": "Warunki użytkowania",
- "modifiedTimeLabel": "Godzina modyfikacji",
- "monday": "Poniedziałek",
- "nameLabel": "Nazwa",
- "namedLocationCountryInfoBanner": "Tylko adresy IPv4 są mapowane na kraje/regiony. Adresy IPv6 są dołączane w przypadku nieznanych krajów/regionów.",
- "namedLocationTypeCountry": "Kraje/regiony",
- "namedLocationTypeLabel": "Zdefiniuj lokalizację za pomocą:",
- "namedLocationUpsellBanner": "Ten widok jest przestarzały. Przejdź do nowego i ulepszonego widoku \"Nazwane lokalizacje\".",
- "namedLocationsHelpDescription": "Nazwane lokalizacje są używane w raportach zabezpieczeń usługi Microsoft Azure Active Directory, aby zredukować liczbę wyników fałszywie dodatnich i zasad dostępu warunkowego usługi Azure AD.\n[Dowiedz się więcej][1]\n[1]: https://aka.ms/namedlocationupdate",
- "namedNetworkAddIpRanges": "Dodaj nowy zakres adresów IP (np. 40.77.182.32/27)",
- "namedNetworkCountryNeeded": "Należy wybrać co najmniej jeden kraj",
- "namedNetworkDeleteCommand": "Usuń",
- "namedNetworkDeleteDescription": "Czy na pewno chcesz usunąć „{0}”? Tej akcji nie można cofnąć.",
- "namedNetworkDeleteTitle": "Czy na pewno?",
- "namedNetworkDownloadIpRange": "Pobierz",
- "namedNetworkInvalidRange": "Wartość musi być prawidłowym zakresem adresów IP.",
- "namedNetworkIpRangeNeeded": "Wymagany jest co najmniej jeden prawidłowy zakres adresów IP",
- "namedNetworkIpRangesDescriptionContent": "Skonfiguruj zakresy adresów IP w organizacji",
- "namedNetworkIpRangesTab": "Zakresy adresów IP",
- "namedNetworkListAdd": "Nowa lokalizacja",
- "namedNetworkListConfigureTrustedIps": "Konfiguruj zaufane adresy IP usługi MFA",
- "namedNetworkNameDescription": "Przykład: „biuro w Redmond”",
- "namedNetworkNameInvalid": "Podana nazwa jest nieprawidłowa.",
- "namedNetworkNameRequired": "Musisz podać nazwę dla tej lokalizacji.",
- "namedNetworkNoIpRanges": "Brak zakresów adresów IP",
- "namedNetworkNotificationCreateDescription": "Tworzenie lokalizacji o nazwie „{0}”",
- "namedNetworkNotificationCreateFailedDescription": "Nie można utworzyć lokalizacji „{0}”. Spróbuj ponownie później.",
- "namedNetworkNotificationCreateFailedTitle": "Nie można utworzyć lokalizacji",
- "namedNetworkNotificationCreateSuccessDescription": "Utworzono lokalizację o nazwie „{0}”",
- "namedNetworkNotificationCreateSuccessTitle": "Utworzono sieć „{0}”",
- "namedNetworkNotificationCreateTitle": "Tworzenie sieci „{0}”",
- "namedNetworkNotificationDeleteDescription": "Usuwanie lokalizacji o nazwie „{0}”",
- "namedNetworkNotificationDeleteFailedDescription": "Nie można usunąć lokalizacji „{0}”. Spróbuj ponownie później.",
- "namedNetworkNotificationDeleteFailedTitle": "Nie można usunąć lokalizacji",
- "namedNetworkNotificationDeleteSuccessDescription": "Usunięto lokalizację o nazwie „{0}”",
- "namedNetworkNotificationDeleteSuccessTitle": "Usunięto sieć „{0}”",
- "namedNetworkNotificationDeleteTitle": "Usuwanie znakowania „{0}”",
- "namedNetworkNotificationUpdateDescription": "Aktualizowanie lokalizacji o nazwie „{0}”",
- "namedNetworkNotificationUpdateFailedDescription": "Nie można zaktualizować lokalizacji „{0}”. Spróbuj ponownie później.",
- "namedNetworkNotificationUpdateFailedTitle": "Nie można zaktualizować lokalizacji",
- "namedNetworkNotificationUpdateSuccessDescription": "Zaktualizowano lokalizację o nazwie „{0}”",
- "namedNetworkNotificationUpdateSuccessTitle": "Zaktualizowano sieć „{0}”",
- "namedNetworkNotificationUpdateTitle": "Aktualizowanie sieci „{0}”",
- "namedNetworkSearchPlaceholder": "Wyszukaj lokalizacje.",
- "namedNetworkUploadFailedDescription": "Wystąpił błąd podczas analizowania dostarczonego pliku. Przekaż zwykły plik tekstowy, w którym każdy wiersz ma format CIDR.",
- "namedNetworkUploadFailedTitle": "Nie można przeanalizować wartości „{0}”",
- "namedNetworkUploadInProgressDescription": "Próba przeanalizowania prawidłowych wartości CIDR z pliku „{0}”.",
- "namedNetworkUploadInProgressTitle": "Analizowanie pliku „{0}”",
- "namedNetworkUploadInvalidDescription": "Plik „{0}” jest zbyt duży lub ma nieprawidłowy format.",
- "namedNetworkUploadInvalidTitle": "Plik „{0}” jest nieprawidłowy",
- "namedNetworkUploadIpRange": "Przekaż",
- "namedNetworkUploadSuccessDescription": "Przeanalizowane wiersze: {0}. Nieprawidłowy format: {1}. Pominięto: {2}.",
- "namedNetworkUploadSuccessTitle": "Zakończono analizowanie pliku „{0}”",
- "namedNetworksAdd": "Nowa nazwana lokalizacja",
- "namedNetworksConditionHelpDescription": "Kontrola dostępu użytkownika na podstawie jego fizycznej lokalizacji.\n[Dowiedz się więcej][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
- "namedNetworksExcludeLabel": "Wykluczono {0} i {1}",
- "namedNetworksHelpDescription": "Nazwane lokalizacje są używane w raportach zabezpieczeń usługi Azure AD, aby zredukować liczbę wyników fałszywie dodatnich i zasad dostępu warunkowego usługi Microsoft Azure Active Directory.\n[Dowiedz się więcej][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
- "namedNetworksIncludeLabel": "Włączono: {0}",
- "namedNetworksNone": "Nie odnaleziono żadnej nazwanej lokalizacji.",
- "namedNetworksTitle": "Skonfiguruj lokalizacje",
- "namednetworkExceedingSizeErrorBladeTitle": "Szczegóły błędu",
- "namednetworkExceedingSizeErrorDetailText": "Kliknij tutaj, aby uzyskać więcej informacji.",
- "namednetworkExceedingSizeErrorMessage": "Przekroczono maksymalny dozwolony rozmiar magazynu dla nazwanych lokalizacji. Spróbuj ponownie, używając krótszej listy. Kliknij tutaj, aby wyświetlić więcej szczegółów.",
- "newCertName": "nowy certyfikat",
- "noPolicyRowMessage": "Brak zasad",
- "noSPSelected": "Nie wybrano jednostki usługi",
- "noUpdatePermissionMessage": "Nie masz uprawnień do aktualizowania tych ustawień. Skontaktuj się z administratorem globalnym, aby uzyskać dostęp.",
- "noUserSelected": "Nie wybrano żadnego użytkownika",
- "noneRisk": "Nie ma ryzyka",
- "office365Description": "Te aplikacje to między innymi Microsoft Flow, Microsoft Forms, Microsoft Teams, Office 365 Exchange Online, Office 365 SharePoint Online i Office 365 Yammer.",
- "office365InfoBox": "Co najmniej jedna z wybranych aplikacji jest częścią usługi Office 365. Zalecamy ustawienie zasad w aplikacji Office 365.",
- "oneUserSelected": "Wybrano jednego użytkownika",
- "onlyGlobalAdminsCanSaveThisPolicyConfig": "Tylko administratorzy globalni mogą zapisać te zasady.",
- "or": "{0} LUB {1}",
- "pickerDoneCommand": "Gotowe",
- "policiesBladeAdPremiumUpsellBannerText": "Twórz własne zasady i określaj konkretne warunki docelowe, takie jak aplikacje w chmurze, ryzyko związane z logowaniem i platformy urządzeń, za pomocą usługi Azure AD — wersja Premium",
- "policiesBladeTitle": "Zasady",
- "policiesBladeTitleWithAppName": "Zasady: {0}",
- "policiesDisabledBannerText": "Tworzenie i edytowanie zasad jest zabronione w przypadku aplikacji z atrybutem połączonego logowania.",
- "policiesHitMaxLimitStatusBarMessage": "Osiągnięto maksymalną liczbę zasad dla tej dzierżawy. Usuń zasady przed utworzeniem nowych.",
- "policyAssignmentsSection": "Przypisania",
- "policyBlockAllInfoBox": "Skonfigurowane zasady zablokują wszystkich użytkowników, więc nie są one obsługiwane. Przejrzyj przypisania i kontrolki. Jeśli chcesz zapisać te zasady, wyklucz bieżącego użytkownika {0}.",
- "policyCloudAppsDisplayTextAllApp": "Wszystkie aplikacje",
- "policyCloudAppsLabel": "Aplikacje w chmurze",
- "policyConditionClientAppDescription": "Oprogramowanie używane przez użytkownika do uzyskania dostępu do aplikacji w chmurze. Przykład: „przeglądarka”",
- "policyConditionClientAppV2Description": "Oprogramowanie używane przez użytkownika do uzyskania dostępu do aplikacji w chmurze. Przykład: „przeglądarka”",
- "policyConditionDevicePlatform": "Platformy urządzeń",
- "policyConditionDevicePlatformDescription": "Platforma, z której loguje się użytkownik. Przykład: „iOS”",
- "policyConditionLocation": "Lokalizacje",
- "policyConditionLocationDescription": "Lokalizacja (ustalana podstawie zakresu adresów IP), z której loguje się użytkownik",
- "policyConditionSigninRisk": "Ryzyko logowania",
- "policyConditionSigninRiskDescription": "Prawdopodobieństwo, że loguje się ktoś inny niż użytkownik. Poziom ryzyka może być wysoki, średni lub niski. Wymaga licencji usługi Azure AD Premium 2.",
- "policyConditionUserRisk": "Ryzyko związane z użytkownikiem",
- "policyConditionUserRiskDescription": "Konfigurowanie poziomów ryzyka związanego z użytkownikiem potrzebnych do wymuszania zasad",
- "policyConditioniClientApp": "Aplikacje klienckie",
- "policyConditioniClientAppV2": "Aplikacje klienckie (wersja zapoznawcza)",
- "policyControlAllowAccessDisplayedName": "Przyznaj dostęp",
- "policyControlAuthenticationStrengthDisplayedName": "Wymagaj siły uwierzytelniania (wersja zapoznawcza)",
- "policyControlBladeTitle": "Udziel",
- "policyControlBlockAccessDisplayedName": "Blokuj dostęp",
- "policyControlCompliantDeviceDisplayedName": "Wymagaj, aby urządzenie było oznaczone jako zgodne",
- "policyControlContentDescription": "Kontroluj wymuszanie dostępu, aby udzielać dostępu lub go blokować.",
- "policyControlInfoBallonText": "Zablokuj dostęp lub wybierz dodatkowe wymagania, które będą musiały zostać spełnione, aby uzyskać zezwolenie na dostęp",
- "policyControlMfaChallengeDisplayedName": "Wymagaj uwierzytelniania wieloskładnikowego",
- "policyControlRequireCompliantAppDisplayedName": "Wymagaj zasad ochrony aplikacji",
- "policyControlRequireDomainJoinedDisplayedName": "Wymagaj urządzenia przyłączonego hybrydowo do usługi Azure AD",
- "policyControlRequireMamDisplayedName": "Wymagaj zatwierdzonej aplikacji klienckiej",
- "policyControlRequiredPasswordChangeDisplayedName": "Wymagaj zmiany hasła",
- "policyControlSelectAuthStrength": "Wymagaj siły uwierzytelniania",
- "policyControlsNoControlsSelected": "Nie wybrano żadnej kontrolki",
- "policyControlsSection": "Kontrole dostępu",
- "policyCreatBladeTitle": "Nowy",
- "policyCreateButton": "Utwórz",
- "policyCreateFailedMessage": "Błąd: {0}",
- "policyCreateFailedTitle": "Nie można utworzyć zasad „{0}”",
- "policyCreateInProgressTitle": "Tworzenie sieci „{0}”",
- "policyCreateSuccessMessage": "Pomyślnie utworzono zasady „{0}”. Zasady zostaną włączone w ciągu kilku minut, jeśli opcja „Włącz zasady” została ustawiona na „Wł.”.",
- "policyCreateSuccessTitle": "Pomyślnie utworzono zasady „{0}”",
- "policyDeleteConfirmation": "Czy na pewno chcesz usunąć „{0}”? Tej akcji nie można cofnąć.",
- "policyDeleteFailTitle": "Nie można usunąć znakowania „{0}”",
- "policyDeleteInProgressTitle": "Usuwanie znakowania „{0}”",
- "policyDeleteSuccessTitle": "Pomyślnie usunięto znakowanie „{0}”",
- "policyEnforceLabel": "Włącz zasady",
- "policyErrorCannotSetSigninRisk": "Nie masz uprawnienia do zapisania zasad z warunkiem ryzyka logowania.",
- "policyErrorNoPermission": "Nie masz uprawnień do zapisywania zasad. Skontaktuj się z administratorem globalnym.",
- "policyErrorUnknown": "Wystąpił błąd, spróbuj ponownie później.",
- "policyFallbackWarningMessage": "Nie można utworzyć lub zaktualizować zasad „{0}” przy użyciu funkcji MS Graph, co spowodowało rezerwowe użycie funkcji AD Graph. Zbadaj następujący scenariusz, ponieważ prawdopodobnie występuje błąd podczas wywoływania punktu końcowego zasad dla funkcji MS Graph z niezgodnym warunkiem.",
- "policyFallbackWarningTitle": "Tworzenie lub aktualizowanie zasad „{0}” powiodło się częściowo",
- "policyNameCannotBeEmpty": "Nazwa zasad nie może być pusta",
- "policyNameDevice": "Zasady urządzeń",
- "policyNameFormat": "[{0}] {1}",
- "policyNameMam": "Zasady zarządzania aplikacjami mobilnymi",
- "policyNameMfaLocation": "Zasady usługi MFA i lokalizacji",
- "policyNamePlaceholderText": "Przykład: „zasady aplikacji dotyczące zgodności urządzeń”",
- "policyNameTooLongError": "Nazwa zasad jest za długa. Maksymalna długość to 256 znaków",
- "policyOff": "Wyłączone",
- "policyOn": "Włączone",
- "policyReportOnly": "Sam raport",
- "policyReviewSection": "Przegląd",
- "policySaveButton": "Zapisz",
- "policyStatusIconDescription": "Zasady są włączone",
- "policyStatusIconEnabled": "Włączona ikona stanu",
- "policyTemplateName1": "Użyj wymuszonych ograniczeń aplikacji {0} w przypadku dostępu w przeglądarce",
- "policyTemplateName2": "Zezwalaj na dostęp do aplikacji {0} tylko na urządzeniach zarządzanych",
- "policyTemplateName3": "Zasady zmigrowane z ustawień ciągłej oceny dostępu",
- "policyTriggerRiskSpecific": "Wybierz określony poziom ryzyka",
- "policyTriggersInfoBalloonText": "Warunki definiujące, kiedy zasady zostaną zastosowane. Przykład: „lokalizacja”",
- "policyTriggersNoConditionsSelected": "Nie wybrano żadnych warunków",
- "policyTriggersSelectorLabel": "Warunki",
- "policyUpdateFailedMessage": "Błąd: {0}",
- "policyUpdateFailedTitle": "Nie można zaktualizować elementu {0}",
- "policyUpdateInProgressTitle": "Aktualizowanie elementu {0}",
- "policyUpdateSuccessMessage": "Pomyślnie zaktualizowano element {0}. Zasady zostaną włączone w ciągu kilku minut, jeśli opcja „Włącz zasady” jest ustawiona na „Wł.”.",
- "policyUpdateSuccessTitle": "Pomyślnie zaktualizowano element {0}",
- "primaryCol": "Podstawowe",
- "privateLinkLabel": "Azure AD Private Link",
- "reportOnlyInfoBox": "Tryb samego raportowania: zasady są oceniane i rejestrowane przy logowaniu, ale nie mają wpływu na użytkowników.",
- "requireAllControlsText": "Wymagaj wszystkich wybranych kontrolek",
- "requireCompliantDevice": "Wymagaj zgodnego urządzenia",
- "requireDomainJoined": "Wymagaj urządzenia przyłączonego do domeny",
- "requireMFA": "Wymagaj uwierzytelniania wieloskładnikowego",
- "requireOneControlText": "Wymagaj jednej z wybranych kontrolek",
- "resetFilters": "Resetuj filtry",
- "sPRequired": "Wymagana jednostka usługi",
- "sPSelectorInfoBalloon": "Użytkownik lub jednostka usługi, którą chcesz testować",
- "saturday": "Sobota",
- "searchTextTooLongError": "Wyszukiwany tekst jest za długi. Maksymalna liczba znaków to 256",
- "securityDefaultsPolicyName": "Wartości domyślne zabezpieczeń",
- "securityDefaultsTextMessage": "Wartości domyślne zabezpieczeń muszą być wyłączone, aby można było włączyć zasady dostępu warunkowego.",
- "securityDefaultsWarningMessage": "Wygląda na to, że zamierzasz zarządzać konfiguracjami zabezpieczeń swojej organizacji. To świetnie! Przed włączeniem zasad dostępu warunkowego musisz najpierw wyłączyć wartości domyślne zabezpieczeń.",
- "selectDevicePlatforms": "Wybierz platformy urządzeń",
- "selectNamedNetworksSubtitle": "",
- "selectNamedNetworksTitle": "Wybierz lokalizacje",
- "selectedSP": "Wybrano jednostkę usługi",
- "servicePrincipalDataGridAria": "Lista dostępnych jednostek usługi",
- "servicePrincipalDropDownLabel": "Czego dotyczą te zasady?",
- "servicePrincipalInfoBox": "Niektóre warunki są niedostępne z powodu wyboru elementu „{0}” w przypisaniu zasad",
- "servicePrincipalRadioAll": "Wszystkie posiadane jednostki usługi",
- "servicePrincipalRadioSelect": "Wybrane jednostki usługi",
- "servicePrincipalSelectionsAria": "Siatka wybranych jednostek usługi",
- "servicePrincipalSelectorAria": "Lista wybranych jednostek usługi",
- "servicePrincipalSelectorMultiple": "Wybrane jednostki usługi: {0}",
- "servicePrincipalSelectorSingle": "Wybrano 1 jednostkę usługi",
- "servicePrincipalSpecificInc": "Uwzględnione określone jednostki usługi",
- "servicePrincipals": "Jednostki usługi",
- "sessionControlBladeTitle": "Sesja",
- "sessionControlDescriptionContent": "Kontroluj dostęp na podstawie kontrolek sesji, aby umożliwić korzystanie z ograniczonych środowisk w ramach określonych aplikacji w chmurze.",
- "sessionControlDisableInfo": "Ta kontrola działa tylko w przypadku obsługiwanych aplikacji. Obecnie usługi Office 365, Exchange Online i SharePoint Online to jedyne aplikacje w chmurze, które obsługują ograniczenia wymuszone przez aplikację. Kliknij tutaj, aby dowiedzieć się więcej.",
- "sessionControlInfoBallonText": "Kontrolki sesji umożliwiają korzystanie z ograniczonego środowiska w ramach aplikacji w chmurze.",
- "sessionControls": "Kontrole sesji",
- "sessionControlsAppEnforcedLabel": "Użyj ograniczeń wymuszonych przez aplikację",
- "sessionControlsCasLabel": "Użyj Kontroli dostępu warunkowego aplikacji",
- "sessionControlsSecureSignInLabel": "Wymagaj powiązania tokena",
- "sharepointAppName": "SharePoint",
- "signinRiskDescription": "Wybierz poziom ryzyka związanego z logowaniem, do którego zostaną zastosowane te zasady",
- "signinRiskInclude": "Włączono: {0}",
- "signinRiskTriggerDescriptionContent": "Wybierz poziom ryzyka logowania",
- "singleTenantServicePrincipalInfoBallonText": "Zasady mają zastosowanie tylko do pojedynczych jednostek usługi dzierżawy należących do Twojej organizacji. Kliknij tutaj, aby dowiedzieć się więcej ",
- "specificSigninRiskLevelsOption": "Wybierz konkretne poziomy ryzyka logowania",
- "specificUsersExcluded": "określeni użytkownicy wyłączeni",
- "specificUsersIncluded": "Określeni użytkownicy uwzględnieni",
- "specificUsersIncludedAndExcluded": "Określeni użytkownicy wykluczeni i włączeni",
- "startDatePickerLabel": "Początek",
- "startFreeTrial": "Zacznij korzystać z bezpłatnej wersji próbnej",
- "startTimePickerLabel": "Godzina rozpoczęcia",
- "sunday": "Niedziela",
- "testButton": "What If",
- "thumbprintCol": "Odcisk palca",
- "thursday": "Czwartek",
- "timeConditionAllTimesLabel": "W dowolnym czasie",
- "timeConditionIntroText": "Konfiguruj czas, dla którego będą stosowane te zasady",
- "timeConditionSelectorInfoBallonContent": "Kiedy użytkownik się loguje. Przykład: „Środa 9–17 UTC”",
- "timeConditionSelectorLabel": "Czas (wersja zapoznawcza)",
- "timeConditionSpecificLabel": "Określone przedziały czasu",
- "timeSelectorAllTimesText": "W dowolnym czasie",
- "timeSelectorSpecificTimesText": "Skonfigurowano określone czasy",
- "timeZoneDropdownInfoBalloonContent": "Wybierz strefę czasową, która definiuje zakres czasu. Te zasady mają zastosowanie do użytkowników we wszystkich strefach czasowych. Na przykład zakres czasu „Środa 7-17” określony dla jednego użytkownika będzie oznaczać „Środa 10-18” dla użytkownika w innej strefie czasowej.",
- "timeZoneDropdownLabel": "Strefa czasowa",
- "timeZoneDropdownPlaceholderText": "Wybierz strefę czasową",
- "tooManyPoliciesDescription": "Wyświetlanych jest teraz tylko 50 pierwszych zasad. Kliknij tutaj, aby wyświetlić wszystkie zasady",
- "tooManyPoliciesTitle": "Znaleziono więcej niż 50 zasad",
- "trustedLocationStatusIconDescription": "Lokalizacja jest zaufana",
- "trustedLocationStatusIconEnabled": "Ikona stanu zaufania",
- "tuesday": "Wtorek",
- "uploadInBadState": "Nie można przekazać określonego pliku.",
- "upsellAppsDescription": "Wymagaj uwierzytelniania wieloskładnikowego w przypadku poufnych aplikacji przez cały czas lub tylko w przypadku dostępu spoza sieci firmowej.",
- "upsellAppsTitle": "Zabezpiecz aplikacje",
- "upsellBannerText": "Uzyskaj bezpłatną wersję próbną usługi — wersja Premium, aby korzystać z tej funkcji",
- "upsellDataDescription": "Wymagaj, aby urządzenie było oznaczone jako zgodne lub przyłączone hybrydowo do usługi Azure AD w celu umożliwienia dostępu do zasobów firmowych.",
- "upsellDataTitle": "Zabezpiecz dane",
- "upsellDescription": "Dostęp warunkowy zapewnia kontrolę i ochronę, dzięki którym dane korporacyjne są bezpieczne, a pracownicy mogą korzystać ze środowiska umożliwiającego najlepsze wykonywanie pracy z dowolnego urządzenia. Przykładowo możesz ograniczyć dostęp spoza sieci firmowej lub ograniczyć dostęp do urządzeń, które spełniają zasady zgodności.",
- "upsellRiskDescription": "Wymagaj uwierzytelniania wieloskładnikowego w przypadku zdarzeń z ryzykiem wykrytych przez system uczenia maszynowego firmy Microsoft.",
- "upsellRiskTitle": "Chroń przed ryzykiem",
- "upsellTitle": "Dostęp warunkowy",
- "upsellWhyTitle": "Dlaczego warto używać dostępu warunkowego?",
- "userAppNoneOption": "Brak",
- "userNamePlaceholderText": "Podaj nazwę użytkownika",
- "userNotSetSeletorLabel": "Nie wybrano żadnego użytkownika ani grupy",
- "userOnlySelectionBladeExcludeDescription": "Wybierz użytkowników, wobec których zostanie zastosowane wykluczenie z zasad",
- "userOrGroupSelectionCountDiffBannerText": "Z katalogu usunięto elementy ({0}) skonfigurowane w ramach tych zasad, ale nie ma to wpływu na innych użytkowników i inne grupy. Przy następnej aktualizacji nastąpi usunięcie usuniętych użytkowników i usuniętych grup.",
- "userOrSPNotSetSelectorLabel": "Wybrano 0 tożsamości użytkowników lub obciążeń",
- "userOrSPSelectionBladeTitle": "Tożsamości użytkowników lub obciążeń",
- "userOrSPSelectorInfoBallonText": "Tożsamości w katalogu, do których stosują się te zasady, w tym użytkownicy, grupy i jednostki usług",
- "userRequired": "Wymagane przez użytkownika",
- "userRiskErrorBox": "Warunek „Ryzyko związane z użytkownikiem” musi być wybrany, jeśli wybrano udzielenie „Wymagaj zmiany hasła”",
- "userSPRequired": "Wymagany użytkownik lub jednostka usługi",
- "userSPSelectorTitle": "Tożsamość użytkownika lub obciążenia",
- "userSelectionBladeAllUsersAndGroups": "Wszyscy użytkownicy i wszystkie grupy",
- "userSelectionBladeExcludeDescription": "Wybierz użytkowników i grupy, wobec których zostanie zastosowane wykluczenie z zasad",
- "userSelectionBladeExcludeTabTitle": "Wyklucz",
- "userSelectionBladeExcludedSelectorTitle": "Wybierz wykluczonych użytkowników",
- "userSelectionBladeIncludeDescription": "Wybierz użytkowników, dla których będą stosowane te zasady",
- "userSelectionBladeIncludeTabTitle": "Uwzględnij",
- "userSelectionBladeIncludedSelectorTitle": "Wybierz",
- "userSelectionBladeSelectUsers": "Wybierz użytkowników",
- "userSelectionBladeSelectedUsers": "Wybieranie użytkowników i grup",
- "userSelectionBladeTitle": "Użytkownicy i grupy",
- "userSelectorBladeTitle": "Użytkownicy",
- "userSelectorExcluded": "Wyłączono: {0}",
- "userSelectorGroupPlural": "Grupy: {0} ",
- "userSelectorGroupSingular": "1 grupa",
- "userSelectorIncluded": "Włączono: {0}",
- "userSelectorInfoBallonText": "Użytkownicy i grupy w katalogu, wobec których zostaną zastosowane zasady. Przykład: „grupa pilotażowa”",
- "userSelectorSelected": "Wybrano: {0}",
- "userSelectorTitle": "Użytkownik",
- "userSelectorUserAndGroup": "{0}, {1}",
- "userSelectorUserPlural": "Użytkownicy: {0}",
- "userSelectorUserSingular": "1 użytkownik",
- "userSelectorWithExclusion": "{0} i {1}",
- "usersGroupsLabel": "Użytkownicy i grupy",
- "viewApprovedAppsText": "Zobacz listę zatwierdzonych aplikacji klienckich",
- "viewCompliantAppsText": "Zobacz listę aplikacji klienckich chronionych przez zasady",
- "vpnBladeTitle": "Łączność sieci VPN",
- "vpnCertCreateFailedMessage": "Błąd: {0}",
- "vpnCertCreateFailedTitle": "Nie można utworzyć zasad {0}",
- "vpnCertCreateInProgressTitle": "Tworzenie zasobu {0}",
- "vpnCertCreateSuccessMessage": "Pomyślnie utworzono: {0}.",
- "vpnCertCreateSuccessTitle": "Pomyślnie utworzono: {0}",
- "vpnCertNoRowsMessage": "Nie znaleziono certyfikatów sieci VPN",
- "vpnCertUpdateFailedMessage": "Błąd: {0}",
- "vpnCertUpdateFailedTitle": "Nie można zaktualizować elementu {0}",
- "vpnCertUpdateInProgressTitle": "Aktualizowanie elementu {0}",
- "vpnCertUpdateSuccessMessage": "Pomyślnie zaktualizowano: {0}.",
- "vpnCertUpdateSuccessTitle": "Pomyślnie zaktualizowano element {0}",
- "vpnFeatureInfo": "Aby uzyskać więcej informacji o łączności sieci VPN i dostępie warunkowym, kliknij tutaj.",
- "vpnFeatureWarning": "Po utworzeniu certyfikatu sieci VPN w witrynie Azure Portal usługa Azure AD natychmiast rozpocznie jego używanie w celu wystawiania klientowi sieci VPN certyfikatów o krótkim okresie istnienia. Bardzo ważne jest natychmiastowe wdrożenie certyfikatu sieci VPN na serwerze sieci VPN, aby uniknąć problemów z weryfikacją poświadczeń klienta sieci VPN.",
- "vpnMenuText": "Łączność sieci VPN",
- "vpncertDropdownDefaultOption": "Czas trwania",
- "vpncertDropdownInfoBalloonContent": "Wybierz czas trwania certyfikatu, który chcesz utworzyć",
- "vpncertDropdownLabel": "Wybierz czas trwania",
- "vpncertDropdownOneyearOption": "1 rok",
- "vpncertDropdownThreeyearOption": "3 lata",
- "vpncertDropdownTwoyearOption": "2 lata",
- "wednesday": "Środa",
- "whatIfAppEnforcedControl": "Użyj ograniczeń wymuszonych przez aplikację",
- "whatIfBladeDescription": "Przetestuj wpływ dostępu warunkowego na użytkownika w przypadku logowania w określonych warunkach.",
- "whatIfBladeTitle": "What If",
- "whatIfClassicPoliciesWarning": "Zasady klasyczne nie są oceniane przez to narzędzie.",
- "whatIfClientAppInfo": "Aplikacja kliencka, z której użytkownik się loguje. Na przykład „Przeglądarka”.",
- "whatIfCountry": "Kraj",
- "whatIfCountryInfo": "Kraj, z której loguje się użytkownik.",
- "whatIfDevicePlatformInfo": "Platforma urządzeń, z której loguje się użytkownik.",
- "whatIfDeviceStateInfo": "Stan urządzenia, z którego loguje się użytkownik",
- "whatIfEnterIpAddress": "Wprowadź adres IP (np. 40.77.182.32)",
- "whatIfErrorInvalidIpAddress": "Określono nieprawidłowy adres IP.",
- "whatIfEvaResultApplication": "Aplikacje w chmurze",
- "whatIfEvaResultClientApps": "Aplikacja kliencka",
- "whatIfEvaResultDevicePlatform": "Platforma urządzeń",
- "whatIfEvaResultEmptyPolicy": "Puste zasady",
- "whatIfEvaResultInvalidCondition": "Nieprawidłowy warunek",
- "whatIfEvaResultInvalidPolicy": "Nieprawidłowe zasady",
- "whatIfEvaResultLocation": "Lokalizacja",
- "whatIfEvaResultNotEnoughInformation": "Za mało informacji",
- "whatIfEvaResultPolicyNotEnabled": "Nie włączono zasad",
- "whatIfEvaResultSignInRisk": "Ryzyko logowania",
- "whatIfEvaResultUsers": "Użytkownicy i grupy",
- "whatIfIpAddress": "Adres IP",
- "whatIfIpAddressInfo": "Adres IP, z której loguje się użytkownik.",
- "whatIfIpCountryInfoBoxText": "W przypadku używania adresu IP lub kraju oba pola będą wymagane i powinny być poprawnie mapowane na siebie.",
- "whatIfPolicyAppliesTab": "Zasady, które będą miały zastosowanie",
- "whatIfPolicyDoesNotApplyTab": "Zasady, które nie będą miały zastosowania",
- "whatIfReasons": "Przyczyny braku zastosowania tych zasad",
- "whatIfSelectClientApp": "Wybierz aplikację kliencką...",
- "whatIfSelectCountry": "Wybierz kraj...",
- "whatIfSelectDevicePlatform": "Wybierz platformę urządzenia...",
- "whatIfSelectPrivateLink": "Wybierz łącze prywatne...",
- "whatIfSelectServicePrincipalRisk": "Wybierz ryzyko jednostki usługi...",
- "whatIfSelectSignInRisk": "Wybierz ryzyko logowania...",
- "whatIfSelectType": "Wybierz typ tożsamości",
- "whatIfSelectUserRisk": "Wybierz poziom ryzyka związanego z użytkownikiem...",
- "whatIfServicePrincipalRiskInfo": "Poziom ryzyka skojarzony z jednostką usługi",
- "whatIfSignInRisk": "Ryzyko logowania",
- "whatIfSignInRiskInfo": "Poziom ryzyka skojarzony z logowaniem",
- "whatIfUnknownAreas": "Nieznane obszary",
- "whatIfUserPickerLabel": "Wybrany użytkownik",
- "whatIfUserPickerNoRowsLabel": "Nie wybrano użytkownika ani jednostki usługi",
- "whatIfUserRiskInfo": "Poziom ryzyka skojarzony z użytkownikiem",
- "whatIfUserSelectorInfo": "Użytkownik w katalogu, który chcesz przetestować",
- "windows365InfoBox": "Wybranie systemu Windows 365 wpłynie na połączenia z hostami sesji komputerów w chmurze oraz usługi Azure Virtual Desktop. Kliknij tutaj, aby dowiedzieć się więcej.",
- "windowsDisplayName": "Windows",
- "windowsPhoneDisplayName": "Windows Phone",
- "workloadIdentities": "Tożsamości obciążenia (wersja zapoznawcza)",
- "workloadIdentity": "Tożsamość obciążeń"
- },
- "ApplicableDeviceType": {
- "iPad": "iPad",
- "iPhoneAndIPod": "iPhone i iPod"
- },
- "TAPSettings": {
- "AllowedDataIngestionLocations": {
- "label": "Zezwalaj użytkownikom na otwieranie danych z wybranych usług",
- "tooltip": "Wybierz usługi magazynu aplikacji, z których użytkownicy mogą otwierać dane. Wszystkie inne usługi będą zablokowane. Jeśli nie zostaną wybrane żadne usługi, użytkownicy nie będą mogli otwierać danych."
- },
- "AndroidBackup": {
- "label": "Twórz kopie zapasowe danych organizacji w usługach kopii zapasowych systemu Android",
- "tooltip": "Wybierz pozycję {0}, aby uniemożliwić tworzenie kopii zapasowych danych organizacji w usługach kopii zapasowych systemu Android. \r\nWybierz pozycję {1}, aby zezwolić na tworzenie kopii zapasowych danych organizacji w usługach kopii zapasowych systemu Android. \r\nNie ma to wpływu na dane osobiste ani niezarządzane."
- },
- "AndroidBiometricAuthentication": {
- "label": "Zabezpieczenia biometryczne zamiast kodu PIN na potrzeby dostępu",
- "tooltip": "Wybierz, których metod uwierzytelniania systemu Android (jeśli w ogóle) ludzie mogą używać w zastępstwie kodu PIN aplikacji."
- },
- "AndroidFingerprint": {
- "label": "Odcisk palca zamiast kodu PIN na potrzeby dostępu (Android 6.0 lub nowszy)",
- "tooltip": "System operacyjny Android skanuje odciski palców na potrzeby uwierzytelniania użytkowników urządzeń z systemem Android. Ta funkcja obsługuje natywne kontrolki biometryczne na urządzeniach z systemem Android. Ustawienia biometryczne specyficzne dla producentów OEM, takie jak Samsung Pass, nie są obsługiwane. Jeśli ta funkcja zostanie włączona, w celu uzyskiwania dostępu do aplikacji na urządzeniach, które ją obsługują, muszą być używane natywne kontrolki biometryczne."
- },
- "AndroidOverrideFingerprint": {
- "label": "Zastąp odcisk palca kodem PIN po upłynięciu limitu czasu"
- },
- "AppPIN": {
- "label": "Kod PIN aplikacji, jeśli ustawiono kod PIN urządzenia",
- "tooltip": "Gdy nie jest wymagany, nie trzeba używać kodu PIN aplikacji na potrzeby dostępu do aplikacji, jeśli został ustawiony kod PIN urządzenia zarejestrowanego w rozwiązaniu do zarządzania urządzeniami przenośnymi.
\r\n\r\nUwaga: usługa Intune nie wykrywa rejestracji urządzeń w rozwiązaniu EMM innej firmy w systemie Android."
- },
- "BlockDataIngestionIntoOrganizationDocuments": {
- "label": "Otwórz dane w dokumentach organizacji",
- "tooltip1": "Wybierz pozycję Blokuj, aby wyłączyć używanie opcji Otwórz oraz innych opcji udostępniania danych między kontami w tej aplikacji. Wybierz pozycję Zezwalaj, jeśli chcesz zezwolić na używanie opcji Otwórz i innych opcji udostępniania danych między kontami w tej aplikacji.",
- "tooltip2": "Gdy ustawisz opcję Blokuj, możesz skonfigurować ustawienie Zezwalaj użytkownikowi na otwieranie danych z wybranych usług, aby określić, które usługi są dozwolone dla lokalizacji danych organizacji.",
- "tooltip3": "Uwaga: to ustawienie jest wymuszane tylko wtedy, gdy ustawienie „Odbierz dane z innych aplikacji” ma wartość „Aplikacje zarządzane przez zasady”.
\r\nUwaga: to ustawienie nie dotyczy wszystkich aplikacji. Aby uzyskać więcej informacji, zobacz {0}.",
- "tooltip4": "Uwaga: to ustawienie jest wymuszane tylko wtedy, gdy ustawienie „Odbierz dane z innych aplikacji” ma wartość „Aplikacje zarządzane przez zasady”.
\r\nUwaga: to ustawienie nie dotyczy wszystkich aplikacji. Aby uzyskać więcej informacji, zobacz {0} lub {0}."
- },
- "ConnectToVpnOnLaunch": {
- "label": "Uruchamianie połączenia aplikacji Microsoft Tunnel przy uruchamianiu aplikacji",
- "tooltip": "Zezwalaj na połączenie z siecią VPN po uruchomieniu aplikacji"
- },
- "CredentialsForAccess": {
- "label": "Poświadczenia konta służbowego na potrzeby dostępu",
- "tooltip": "Jeśli ustawiono jako wymagane, poświadczenia służbowe muszą być używane na potrzeby dostępu do aplikacji zarządzanej przez zasady. Jeśli w celu uzyskania dostępu do tej aplikacji jest również wymagany kod PIN lub metody biometryczne, poświadczenia służbowe będą wymagane dodatkowo."
- },
- "CustomBrowserDisplayName": {
- "label": "Nazwa przeglądarki niezarządzanej",
- "tooltip": "Wprowadź nazwę aplikacji dla przeglądarki skojarzonej z identyfikatorem przeglądarki niezarządzanej. Ta nazwa będzie wyświetlana użytkownikom, jeśli określona przeglądarka nie jest zainstalowana."
- },
- "CustomBrowserPackageId": {
- "label": "Identyfikator przeglądarki niezarządzanej",
- "tooltip": "Wprowadź identyfikator aplikacji dla pojedynczej przeglądarki. Zawartość internetowa (HTTP/S) z aplikacji zarządzanych przez zasady będzie otwierana w podanej przeglądarce."
- },
- "CustomBrowserProtocol": {
- "label": "Protokół przeglądarki niezarządzanej",
- "tooltip": "Wprowadź protokół pojedynczej przeglądarki niezarządzanej. Zawartość internetowa (HTTP/S) z aplikacji zarządzanych przez zasady będzie otwierana w dowolnej aplikacji obsługującej ten protokół.
\r\n \r\nUwaga: uwzględnij jedynie prefiks protokołu. Jeśli przeglądarka wymaga linków w formacie „moja_przeglądarka://www.microsoft.com”, wprowadź wartość „moja_przeglądarka”.
"
- },
- "CustomDialerAppDisplayName": {
- "label": "Nazwa aplikacji"
- },
- "CustomDialerAppPackageId": {
- "label": "Identyfikator pakietu aplikacji"
- },
- "CustomDialerAppProtocol": {
- "label": "Schemat adresu URL aplikacji"
- },
- "Cutcopypaste": {
- "label": "Ogranicz wycinanie, kopiowanie i wklejanie między innymi aplikacjami",
- "tooltip": "Wycinaj, kopiuj i wklejaj dane między Twoją aplikacją a innymi zatwierdzonymi aplikacjami zainstalowanymi na urządzeniu. Możesz całkowicie zablokować te akcje, zezwolić na ich używanie między aplikacjami lub ograniczyć ich użycie do aplikacji zarządzanych przez organizację.
\r\n\r\nOpcja Aplikacje zarządzane przez zasady z wklejaniem do nich umożliwia akceptowanie przychodzącej zawartości wklejanej z innej aplikacji. Jednak blokuje użytkownikom możliwość udostępniania zawartości na zewnątrz, chyba że jest ona udostępniana aplikacji zarządzanej.
"
- },
- "DialerRestrictionLevel": {
- "iosTooltip": "Zazwyczaj gdy użytkownik wybiera w aplikacji numer telefonu oznaczony jako link, jest otwierana aplikacja do dzwonienia z wstępnie wprowadzonym numerem. W przypadku tego ustawienia wybierz sposób obsługi transferu zawartości tego typu, gdy jest on inicjowany z aplikacji zarządzanej przez zasady. Aby to ustawienie zostało wprowadzone, może być konieczne wykonanie dodatkowych czynności. Najpierw sprawdź, czy aplikacje tel i telprompt zostały usunięte z listy Wybierz aplikacje, które mają być zwolnione. Następnie upewnij się, że aplikacja korzysta z nowszej wersji usługi Intune SDK (wersja 12.7.0 +).",
- "label": "Ograniczenie transferu zawartości komunikacyjnej",
- "tooltip": "Zazwyczaj gdy użytkownik wybierze hiperlink numeru telefonu w aplikacji, zostanie otwarta aplikacja do telefonowania z wypełnionym numerem telefonu i gotowym do nawiązania połączenia. Dla tego ustawienia wybierz sposób obsługi transferu tego typu zawartości, gdy zostanie on zainicjowany z poziomu aplikacji zarządzanej przez zasady."
- },
- "EncryptData": {
- "label": "Szyfruj dane organizacji",
- "link": "https://docs.microsoft.com/pl-pl/intune/app-protection-policy-settings-android#data-relocation-settings",
- "tooltip": "Wybierz pozycję {0}, aby wymuszać szyfrowanie danych organizacji przy użyciu szyfrowania w warstwie aplikacji usługi Intune.\r\n
\r\nWybierz pozycję {1}, aby nie wymuszać szyfrowania danych organizacji przy użyciu szyfrowania w warstwie aplikacji usługi Intune.\r\n\r\n
\r\nUwaga: aby uzyskać więcej informacji dotyczących szyfrowania w warstwie aplikacji usługi Intune, zobacz {2}."
- },
- "EncryptDataAndroid": {
- "tooltip": "Wybierz pozycję Wymagaj, aby włączyć szyfrowanie danych służbowych w tej aplikacji. Usługa Intune korzysta z 256-bitowego schematu szyfrowania AES OpenSSL oraz magazynu kluczy systemu Android w celu bezpiecznego szyfrowania danych aplikacji. Dane są szyfrowane synchronicznie podczas wykonywania zadań we/wy pliku. Zawartość w pamięci masowej urządzenia jest zawsze szyfrowana. Zestaw SDK będzie nadal zapewniał obsługę 128-bitowych kluczy w celu zapewnienia zgodności z zawartością i aplikacjami korzystającymi ze starszych wersji zestawu SDK.
\r\n\r\nMetoda szyfrowania jest zgodna ze standardem FIPS 140-2.
"
- },
- "EncryptDataIos": {
- "tooltip1": "Wybierz pozycję Wymagaj, aby włączyć szyfrowanie danych służbowych w tej aplikacji. Usługa Intune wymusza szyfrowanie urządzenia z systemem iOS/iPadOS, aby chronić dane aplikacji, gdy urządzenie jest zablokowane. Aplikacje mogą opcjonalnie szyfrować dane aplikacji przy użyciu szyfrowania zestawu Intune APP SDK. Zestaw Intune APP SDK stosuje 128-bitowe szyfrowanie AES danych aplikacji, korzystając z metod kryptograficznych systemu iOS/iPadOS.",
- "tooltip2": "Włączenie tego ustawienia może spowodować konieczność skonfigurowania i używania kodu PIN przez użytkownika, aby uzyskiwać dostęp do urządzenia. W przypadku braku kodu PIN i wymagania szyfrowania użytkownik będzie monitowany o ustawienie kodu PIN przy użyciu komunikatu „Twoja organizacja wymaga najpierw włączenia kodu PIN urządzenia, aby uzyskać dostęp do tej aplikacji”.",
- "tooltip3": "Przejdź do oficjalnej dokumentacji firmy Apple, aby sprawdzić, które moduły szyfrowania systemu iOS są zgodne ze standardem FIPS 140-2 lub oczekują na potwierdzenie zgodności ze standardem FIPS 140-2."
- },
- "EncryptDataOnEnrolledDevices": {
- "label": "Szyfruj dane organizacji na zarejestrowanych urządzeniach",
- "tooltip": "Wybierz pozycję {0}, aby wymuszać szyfrowanie danych organizacji przy użyciu szyfrowania w warstwie aplikacji usługi Intune na wszystkich urządzeniach.
\r\n\r\nWybierz pozycję {1}, aby nie wymuszać szyfrowania danych organizacji przy użyciu szyfrowania w warstwie aplikacji usługi Intune na zarejestrowanych urządzeniach."
- },
- "IOSBackup": {
- "label": "Twórz kopie zapasowe danych organizacji w ramach kopii zapasowych iTunes i iCloud",
- "tooltip": "Wybierz pozycję {0}, aby uniemożliwić tworzenie kopii zapasowych danych organizacji w usługach iTunes i iCloud. \r\nWybierz pozycję {1}, aby zezwolić na tworzenie kopii zapasowych danych organizacji w usługach iTunes i iCloud. \r\nNie ma to wpływu na dane osobiste ani niezarządzane."
- },
- "IOSFaceID": {
- "label": "Funkcja Face ID zamiast kodu PIN na potrzeby dostępu (iOS 11 lub nowszy/iPadOS)",
- "tooltip": "Funkcja Face ID uwierzytelnia użytkowników na urządzeniach z systemem iOS/iPadOS za pomocą technologii rozpoznawania twarzy. Usługa Intune wywołuje interfejs API LocalAuthentication, aby uwierzytelnić użytkowników za pomocą funkcji Face ID. Jeśli jest ona dozwolona, funkcja Face ID musi być używana w celu uzyskiwania dostępu do aplikacji na urządzeniu obsługującym tę funkcję."
- },
- "IOSOverrideTouchId": {
- "label": "Zastąp dane biometryczne kodem PIN po upłynięciu limitu czasu"
- },
- "IOSTouchId": {
- "label": "Funkcja Touch ID zamiast kodu PIN na potrzeby dostępu (iOS 8 lub nowszy/iPadOS)",
- "tooltip": "Funkcja Touch ID uwierzytelnia użytkowników na urządzeniach z systemem iOS za pomocą technologii rozpoznawania odcisku palca. Usługa Intune wywołuje interfejs API LocalAuthentication, aby uwierzytelnić użytkowników za pomocą funkcji Touch ID. Jeśli jest ona dozwolona, funkcja Touch ID musi być używana w celu uzyskiwania dostępu do aplikacji na urządzeniu obsługującym tę funkcję."
- },
- "NotificationRestriction": {
- "label": "Powiadomienia dotyczące danych organizacji",
- "tooltip": "Wybierz jedną z następujących opcji, aby określić sposób wyświetlania powiadomień dla kont organizacji w przypadku tej aplikacji i wszystkich połączonych urządzeń, takich jak urządzenia do noszenia na sobie:
\r\n{0}: Nie udostępniaj powiadomień.
\r\n{1}: Nie udostępniaj danych organizacji w powiadomieniach. Jeśli ta opcja nie jest obsługiwana przez aplikację, powiadomienia są blokowane.
\r\n{2}: Udostępniaj wszystkie powiadomienia.
\r\n Tylko dla systemu Android:\r\n Uwaga: to ustawienie nie dotyczy wszystkich aplikacji. Aby uzyskać więcej informacji, zobacz {3}
\r\n \r\nTylko dla systemu iOS:\r\nUwaga: to ustawienie nie dotyczy wszystkich aplikacji. Aby uzyskać więcej informacji, zobacz {4}
"
- },
- "OpenLinksManagedBrowser": {
- "label": "Ogranicz transfer zawartości internetowej dla innych aplikacji",
- "tooltip": "Wybierz jedną z następujących opcji, aby określić aplikacje, w których ta aplikacja może otwierać zawartość internetową:
\r\nEdge: zezwalaj na otwieranie zawartości internetowej tylko w przeglądarce Edge
\r\nPrzeglądarka niezarządzana: zezwalaj na otwieranie zawartości internetowej tylko w przeglądarce niezarządzanej zdefiniowanej w ustawieniu „Protokół przeglądarki niezarządzanej”
\r\nDowolna aplikacja: zezwalaj na otwieranie linków internetowych w dowolnej aplikacji
"
- },
- "OverrideBiometric": {
- "tooltip": "Jeśli ustawiono jako wymagane, w zależności od limitu czasu (liczby minut nieaktywności), monit o podanie kodu PIN zastąpi monity o dane biometryczne. Jeśli limit czasu nie zostanie przekroczony, monit dane biometryczne będzie nadal wyświetlany. Wartość limitu czasu powinna być większa niż wartość podana w pozycji „Ponownie sprawdź wymagania dostępu po (w minutach nieaktywności)”."
- },
- "PinAccess": {
- "label": "Kod PIN na potrzeby dostępu",
- "tooltip": "Jeśli ustawiono jako wymagane, kod PIN musi być używany w celu uzyskiwania dostępu do aplikacji zarządzanej przez zasady. Użytkownicy muszą utworzyć kod PIN dostępu, gdy po raz pierwszy otworzą aplikację, korzystając z konta służbowego."
- },
- "PinLength": {
- "label": "Wybierz minimalną długość kodu PIN",
- "tooltip": "To ustawienie określa minimalną liczbę cyfr w numerze PIN."
- },
- "PinType": {
- "label": "Typ kodu PIN",
- "tooltip": "Liczbowe kody PIN składają się wyłącznie z cyfr. Kody dostępu składają się ze znaków alfanumerycznych i znaków specjalnych."
- },
- "Printing": {
- "label": "Drukowanie danych organizacji",
- "tooltip": "W przypadku zablokowania aplikacja nie może drukować chronionych danych."
- },
- "ReceiveData": {
- "label": "Odbierz dane z innych aplikacji",
- "tooltip": "Wybierz jedną z poniższych opcji, aby określić aplikacje, od których ta aplikacja może odbierać dane:
\r\n\r\nBrak: nie zezwalaj na odbieranie danych w ramach kont lub dokumentów organizacji z żadnej aplikacji
\r\n\r\nAplikacje zarządzane przez zasady: zezwalaj na odbieranie danych w ramach kont lub dokumentów organizacji tylko z innych aplikacji zarządzanych przez zasady\r\n
\r\nDowolna aplikacja z przychodzącymi danymi organizacji: zezwalaj na odbieranie danych w ramach kont lub dokumentów organizacji z dowolnej aplikacji i traktuj wszystkie przychodzące dane bez konta użytkownika jako dane organizacji
\r\n\r\nWszystkie aplikacje: zezwalaj na odbieranie danych w ramach kont lub dokumentów organizacji z dowolnej aplikacji"
- },
- "RecheckAccessAfter": {
- "label": "Ponownie sprawdź wymagania dostępu po (w minutach nieaktywności)\r\n\r\n",
- "tooltip": "Jeśli aplikacja zarządzana przez zasady jest nieaktywna przez czas dłuższy niż podana liczba minut nieaktywności, będzie monitować o ponowne sprawdzenie wymagań dostępu (tzn. kodu PIN, ustawień uruchamiania warunkowego) po uruchomieniu aplikacji."
- },
- "RestrictKeyboards": {
- "duplicatePackageError": "Identyfikator pakietu musi być unikatowy.",
- "invalidPackageError": "Nieprawidłowy identyfikator pakietu",
- "label": "Zatwierdzone klawiatury",
- "select": "Wybierz klawiatury do zatwierdzenia",
- "subtitle": "Dodaj wszystkie klawiatury i metody wprowadzania, z których użytkownicy mają móc korzystać w aplikacjach docelowych. Wprowadź nazwę klawiatury w postaci, która ma być wyświetlana użytkownikowi końcowemu.",
- "title": "Dodaj zatwierdzone klawiatury",
- "toolTip": "Wybierz pozycję Wymagaj, a następnie określ listę zatwierdzonych klawiatur dla tych zasad. Dowiedz się więcej. "
- },
- "SaveData": {
- "label": "Zapisz kopie danych organizacji",
- "tooltip": "Wybierz pozycję {0}, aby uniemożliwić zapisywanie kopii danych organizacji w nowej lokalizacji, z wyjątkiem wybranych usług magazynu, za pomocą opcji „Zapisz jako”.\r\nWybierz pozycję {1}, aby zezwolić na zapisywanie kopii danych organizacji w nowej lokalizacji za pomocą opcji „Zapisz jako”.
\r\n\r\n\r\nUwaga: to ustawienie nie ma zastosowania do wszystkich aplikacji. Aby uzyskać więcej informacji, zobacz {2}.\r\n"
- },
- "SaveDataToSelected": {
- "label": "Zezwalaj użytkownikowi na zapisywanie kopii w wybranych usługach",
- "tooltip": "Wybierz usługi magazynu, w których użytkownicy mogą zapisywać kopie danych organizacji. Wszystkie inne usługi będą zablokowane. Jeśli nie zostaną wybrane żadne usługi, użytkownicy nie będą mogli zapisywać kopii danych organizacji."
- },
- "ScreenCaptureAndAndroidAssistant": {
- "label": "Przechwytywanie ekranu i Asystent Google\r\n",
- "tooltip": "Jeśli to ustawienie jest zablokowane, możliwości skanowania aplikacji zarówno przechwytywania ekranu, jak i Asystenta Google będą wyłączone podczas korzystania z aplikacji zarządzanej przez zasady. Ta funkcja obsługuje zwykłą aplikację Asystent Google. Asystenci innych firm korzystający z interfejsu API Assist firmy Google nie są obsługiwani. Wybranie pozycji Blokuj spowoduje również rozmycie obrazu podglądu na liście aplikacji podczas korzystania z tej aplikacji przy użyciu konta służbowego."
- },
- "SendData": {
- "label": "Wyślij dane organizacji do innych aplikacji",
- "tooltip": "Wybierz jedną z poniższych opcji, aby określić aplikacje, do których ta aplikacja może wysyłać dane organizacji:
\r\n\r\n\r\nBrak: nie zezwalaj na wysyłanie danych organizacji do żadnej aplikacji
\r\n\r\n\r\nAplikacje zarządzane przez zasady: zezwalaj na wysyłanie danych organizacji tylko do innych aplikacji zarządzanych przez zasady
\r\n\r\n\r\nAplikacje zarządzane przez zasady z udostępnianiem systemu operacyjnego: zezwalaj na wysyłanie danych organizacji tylko do innych aplikacji zarządzanych przez zasady oraz na wysyłanie dokumentów organizacji do innych aplikacji zarządzanych przez funkcję MDM na zarejestrowanych urządzeniach
\r\n\r\n\r\nAplikacje zarządzane przez zasady z filtrowaniem okien dialogowych otwierania/udostępniania: zezwalaj na wysyłanie danych organizacji tylko do innych aplikacji zarządzanych przez zasady i filtruj okna dialogowe systemu operacyjnego do otwierania/udostępniania tak, aby wyświetlały tylko aplikacje zarządzane przez zasady\r\n
\r\n\r\nWszystkie aplikacje: zezwalaj na wysyłanie danych organizacji do dowolnej aplikacji"
- },
- "SimplePin": {
- "label": "Prosty kod PIN",
- "tooltip": "W przypadku zablokowania użytkownicy nie będą mogli tworzyć prostych kodów PIN. Prosty kod PIN to ciąg kolejnych lub powtarzających się cyfr, na przykład 1234, ABCD lub 1111. Pamiętaj, że po zablokowaniu prostego kodu PIN typu „Kod dostępu” kody dostępu będą musiały zawierać co najmniej jedną cyfrę, co najmniej jedną literę i co najmniej jeden znak specjalny."
- },
- "SyncContacts": {
- "label": "Synchronizuj dane aplikacji zarządzanej z aplikacjami natywnymi lub dodatkami"
- },
- "ThirdPartyKeyboards": {
- "infoBox": "Ograniczenia klawiatury zostaną zastosowane do wszystkich obszarów aplikacji. To ograniczenie będzie miało wpływ na konta osobiste dla aplikacji, które obsługują wiele tożsamości. Dowiedz się więcej.",
- "label": "Klawiatury innych firm"
- },
- "Timeout": {
- "label": "Limit czasu (w minutach nieaktywności)"
- },
- "Tap": {
- "numberOfDays": "Liczba dni",
- "pinResetAfterNumberOfDays": "Zresetowanie numeru PIN po upływie pewnej liczby dni",
- "previousPinBlockCount": "Wybierz liczbę poprzednich wartości kodu PIN do zachowania"
- }
- },
- "WindowsFeatureUpdateProfile": {
- "Details": {
- "Description": {
- "label": "Opis"
- },
- "FeatureDeploymentSettings": {
- "header": "Ustawienia wdrażania funkcji"
- },
- "FeatureUpdateVersion": {
- "infoballoon": "Ta funkcja nie może zmienić wersji urządzenia na starszą.",
- "label": "Aktualizacja funkcji do wdrożenia"
- },
- "GradualRolloutEndDate": {
- "label": "Ostateczna dostępność grupy"
- },
- "GradualRolloutInterval": {
- "label": "Dni między grupami"
- },
- "GradualRolloutStartDate": {
- "label": "Dostępność pierwszej grupy"
- },
- "Name": {
- "label": "Nazwa"
- },
- "RolloutOptions": {
- "label": "Opcje wprowadzania"
- },
- "RolloutSettings": {
- "header": "Kiedy chcesz udostępnić aktualizację w usłudze Windows Update?"
- },
- "ScopeSettings": {
- "header": "Konfiguruj tagi zakresu dla tych zasad."
- },
- "StartDateOnlyStartDate": {
- "label": "Pierwsza dostępna data"
- },
- "bladeTitle": "Wdrożenia aktualizacji funkcji",
- "deploymentSettingsTitle": "Ustawienia wdrożenia",
- "loadError": "Ładowanie nie powiodło się!",
- "windows11EULA": "Zaznaczając tę opcję aktualizacji funkcji do wdrożenia, wyrażasz zgodę na to, że podczas stosowania tego systemu operacyjnego na urządzeniu (1) zakupiono odpowiednią licencję systemu Windows w ramach licencjonowania zbiorowego lub (2) że masz upoważnienie do nabywania praw i zaciągania zobowiązań w imieniu swojej organizacji i akceptujesz w jej imieniu odpowiednie postanowienia licencyjne dotyczące oprogramowania firmy Microsoft, które można znaleźć tutaj {0}."
- },
- "Notifications": {
- "deploymentSaved": "Zapisano „{0}”.",
- "newFeatureUpdateDeploymentCreated": "Utworzono nowe wdrożenie aktualizacji funkcji."
- },
- "TabName": {
- "deploymentSettings": "Ustawienia wdrożenia",
- "groupAssignmentSettings": "Przypisania",
- "scopeSettings": "Tagi zakresu"
- }
- },
- "OfficeUpdateChannel": {
- "current": "Bieżący kanał",
- "deferred": "Półroczny kanał dla przedsiębiorstw",
- "firstReleaseCurrent": "Bieżący kanał (wersja zapoznawcza)",
- "firstReleaseDeferred": "Półroczny kanał dla przedsiębiorstw (wersja zapoznawcza)",
- "monthlyEnterprise": "Miesięczny kanał dla przedsiębiorstw",
- "placeHolder": "Wybierz zasady"
- },
- "Win32ReturnCodes": {
- "CodeTypes": {
- "failed": "Niepowodzenie",
- "hardReboot": "Ponowny rozruch sprzętowy",
- "retry": "Ponów próbę",
- "softReboot": "Ponowny rozruch systemowy",
- "success": "Powodzenie"
- },
- "Columns": {
- "codeType": "Typ kodu",
- "returnCode": "Kod powrotny"
- },
- "bladeTitle": "Kody powrotne",
- "gridAriaLabel": "Kody powrotne",
- "header": "Określ kody powrotne w celu wskazania zachowania po instalacji:",
- "onAddAnnounceMessage": "Kod powrotny dla dodanego elementu {0} z {1}",
- "onDeleteSuccess": "Kod powrotny {0} — usunięto pomyślnie",
- "returnCodeAlreadyUsedValidation": "Kod powrotny jest już używany.",
- "returnCodeMustBeIntegerValidation": "Kod powrotny powinien być liczbą całkowitą.",
- "returnCodeShouldBeAtLeast": "Kod powrotny powinien wynosić co najmniej {0}.",
- "returnCodeShouldBeAtMost": "Kod powrotny powinien wynosić co najwyżej {0}.",
- "selectorLabel": "Kody powrotne"
- },
- "SecurityTemplate": {
- "aSR": "Zmniejszenie obszaru podatnego na ataki",
- "accountProtection": "Ochrona konta",
- "allDevices": "Wszystkie urządzenia",
- "antivirus": "Oprogramowanie antywirusowe",
- "antivirusReporting": "Raportowanie antywirusowe (wersja zapoznawcza)",
- "conditionalAccess": "Dostęp warunkowy",
- "deviceCompliance": "Zgodność urządzenia",
- "diskEncryption": "Szyfrowanie dysku",
- "eDR": "Wykrywanie i reagowanie dotyczące punktów końcowych",
- "firewall": "Zapora",
- "helpSupport": "Pomoc i obsługa techniczna",
- "setup": "Instalacja",
- "wdapt": "Microsoft Defender dla punktu końcowego"
- },
- "PolicySet": {
- "appManagement": "Zarządzanie aplikacjami",
- "assignments": "Przypisania",
- "basics": "Podstawowe",
- "deviceEnrollment": "Rejestrowanie urządzenia",
- "deviceManagement": "Zarządzanie urządzeniami",
- "scopeTags": "Tagi zakresu",
- "appConfigurationTitle": "Zasady konfiguracji aplikacji",
- "appProtectionTitle": "Zasady ochrony aplikacji",
- "appTitle": "Aplikacje",
- "iOSAppProvisioningTitle": "Profile aprowizacji aplikacji systemu iOS",
- "deviceLimitRestrictionTitle": "Ograniczenia limitu urządzeń",
- "deviceTypeRestrictionTitle": "Ograniczenia typu urządzeń",
- "enrollmentStatusSettingTitle": "Strony stanu rejestracji",
- "windowsAutopilotDeploymentProfileTitle": "Profile wdrażania rozwiązania Windows Autopilot",
- "deviceComplianceTitle": "Zasady zgodności urządzeń",
- "deviceConfigurationTitle": "Profile konfiguracji urządzeń",
- "powershellScriptTitle": "Skrypty PowerShell"
- },
- "AssignmentAction": {
- "exclude": "Wykluczone",
- "include": "Zawarte",
- "includeAllDevicesVirtualGroup": "Zawarte",
- "includeAllUsersVirtualGroup": "Zawarte"
- },
- "WindowsFeatureUpdate": {
- "EndOFSupportStatus": {
- "notSupported": "Nieobsługiwane",
- "supportEnding": "Zakończenie świadczenia pomocy technicznej",
- "supported": "Obsługiwane"
- }
- },
- "InstallIntent": {
- "available": "Dostępne dla zarejestrowanych urządzeń",
- "availableWithoutEnrollment": "Dostępne z rejestracją lub bez niej",
- "required": "Wymagane",
- "uninstall": "Odinstaluj"
- },
"OutlookAppConfig": {
"DataProtectionConfiguration": {
"header": "Konfiguracja ochrony danych"
@@ -1938,307 +100,864 @@
"themesEnabledTitle": "Kompozycje włączone",
"themesEnabledTooltip": "Określ, czy użytkownik może używać niestandardowego motywu wizualnego."
},
- "TAP": {
- "AccessRequirements": {
- "infoText": "Skonfiguruj wymagania dotyczące kodu PIN i poświadczeń, które użytkownicy muszą spełnić, aby uzyskać dostęp do aplikacji w kontekście roboczym."
- },
- "DataProtection": {
- "infoText": "Ta grupa obejmuje kontrole ochrony przed utratą danych, takie jak ograniczenia wycinania, kopiowania, wklejania i zapisywania jako. Te ustawienia określają sposób interakcji użytkowników z danymi w aplikacjach."
- },
- "DeviceTypes": {
- "selectOne": "Wybierz przynajmniej jeden typ urządzenia."
- },
- "TargetedApps": {
- "TargetToAll": {
- "label": "Jako docelowe ustaw aplikacje na wszystkich typach urządzeń"
- },
- "infoText": "Wybierz, w jaki sposób chcesz zastosować te zasady do aplikacji na różnych urządzeniach. Następnie dodaj co najmniej jedną aplikację.",
- "selectOne": "Wybierz co najmniej jedną aplikację, aby utworzyć zasady."
- }
- },
- "TACSettings": {
- "edgeSettings": "Ustawienia konfiguracji przeglądarki Microsoft Edge",
- "edgeWindowsDataProtectionSettings": "Przeglądarka Edge (Windows) — ustawienia ochrony danych — wersja zapoznawcza",
- "edgeWindowsSettings": "Przeglądarka Edge (Windows) — ustawienia konfiguracji — wersja zapoznawcza",
- "generalAppConfig": "Ogólna konfiguracja aplikacji",
- "generalSettings": "Ogólne ustawienia konfiguracji",
- "outlookSMIMEConfig": "Ustawienia S/MIME programu Outlook",
- "outlookSettings": "Ustawienia konfiguracji programu Outlook",
- "sMIME": "S/MIME"
- },
- "OfficeApplicationAdditionalType": {
- "projectProRetail": "Klient stacjonarny usługi Project Online",
- "visioProRetail": "Visio Online (plan 2)"
- },
- "Win32Requirements": {
- "AdditionalRequirements": {
- "File": {
- "fileOrFolderToolTip": "Plik lub folder jako wybrane wymaganie.",
- "pathToolTip": "Pełna ścieżka pliku lub folderu do wykrycia.",
- "property": "Właściwość",
- "valueToolTip": "Wybierz wartość wymagania, która jest zgodna z wybraną metodą wykrywania. W przypadku metod wykrywania opartych na dacie i godzinie należy wprowadzić datę i godzinę w formacie lokalnym."
- },
- "GridColumns": {
- "pathOrScript": "Ścieżka/skrypt",
- "type": "Typ"
- },
- "Registry": {
- "keyPath": "Ścieżka klucza",
- "keyPathTooltip": "Pełna ścieżka wpisu rejestru zawierającego wartość jako wymaganie.",
- "operator": "Operator",
- "operatorTooltip": "Wybierz operator porównania.",
- "registryRequirement": "Wymaganie klucza rejestru",
- "registryRequirementTooltip": "Wybierz porównanie wymagania klucza rejestru.",
- "valueName": "Nazwa wartości",
- "valueNameTooltip": "Nazwa wymaganej wartości rejestru."
- },
- "RequirementTypeOptions": {
- "fileType": "Plik",
- "registry": "Rejestr",
- "script": "Skrypt"
- },
- "Script": {
- "RequirementMethodOptions": {
- "boolean": "Wartość logiczna",
- "dateTime": "Data i godzina",
- "float": "Zmiennoprzecinkowe",
- "integer": "Liczba całkowita",
- "string": "Ciąg",
- "version": "Wersja"
- },
- "ScriptContent": {
- "emptyMessage": "Zawartość skryptu nie może być pusta."
- },
- "duplicateName": "Nazwa skryptu {0} jest już w użyciu. Wprowadź inną nazwę.",
- "enforceSignatureCheck": "Wymuszaj sprawdzanie podpisu skryptu",
- "enforceSignatureCheckTooltip": "Wybierz opcję „Tak”, aby sprawdzić, czy skrypt jest podpisany przez zaufanego wydawcę, co pozwoli na uruchomienie skryptu bez wyświetlania ostrzeżeń ani monitów. Działanie skryptu nie będzie blokowane. Wybierz opcję „Nie” (domyślna), aby uruchomienie skryptu wymagało potwierdzenia użytkownika końcowego, ale bez weryfikacji podpisu.",
- "loggedOnCredentials": "Uruchom ten skrypt, używając poświadczeń zalogowanego użytkownika",
- "loggedOnCredentialsTooltip": "Uruchom skrypt przy użyciu poświadczeń urządzenia, których użyto do logowania.",
- "operatorTooltip": "Wybierz operator porównania wymagania.",
- "requirementMethod": "Wybierz wyjściowy typ danych",
- "requirementMethodTooltip": "Wybierz typ danych używany podczas określania wymagań dopasowania wykrywania.",
- "scriptFile": "Plik skryptu",
- "scriptFileTooltip": "Wybierz skrypt programu PowerShell, który będzie wykrywać obecność aplikacji na kliencie. Jeśli aplikacja zostanie wykryta, proces wymagania zwróci kod zakończenia o wartości 0 i zapisze wartość ciągu w wyjściu STDOUT.",
- "scriptName": "Nazwa skryptu",
- "value": "Wartość",
- "valueTooltip": "Wybierz wartość wymagania, która jest zgodna z wybraną metodą wykrywania. W przypadku metod wykrywania opartych na dacie i godzinie należy wprowadzić datę i godzinę w formacie lokalnym."
- },
- "bladeTitle": "Dodawanie reguły wymagania",
- "createRequirementHeader": "Utwórz wymaganie.",
- "header": "Skonfiguruj dodatkowe reguły wymagań",
- "label": "Dodatkowe reguły wymagań",
- "noRequirementsSelectedPlaceholder": "Nie określono żadnych wymagań.",
- "requirementType": "Typ wymagania",
- "requirementTypeTooltip": "Wybierz typ metody wykrywania służącej do określania sposobu walidacji wymagania."
- },
- "architectures": "Architektura systemu operacyjnego",
- "architecturesTooltip": "Wybierz architektury potrzebne do zainstalowania aplikacji.",
- "bladeTitle": "Wymagania",
- "diskSpace": "Wymagane miejsce na dysku (MB)",
- "diskSpaceTooltip": "Wymagana ilość wolnego miejsca na dysku systemowym, aby zainstalować aplikację.",
- "header": "Określ wymagania, które urządzenia muszą spełniać przed zainstalowaniem aplikacji:",
- "maximumTextFieldValue": "Wartość maksymalna to {0}.",
- "minimumCpuSpeed": "Minimalna wymagana szybkość procesora CPU (MHz)",
- "minimumCpuSpeedTooltip": "Minimalna szybkość procesora CPU wymagana do zainstalowania aplikacji.",
- "minimumLogicalProcessors": "Minimalna wymagana liczba procesorów logicznych",
- "minimumLogicalProcessorsTooltip": "Minimalna liczba procesorów logicznych wymagana do zainstalowania aplikacji.",
- "minimumOperatingSystem": "Minimalna wersja systemu operacyjnego",
- "minimumOperatingSystemTooltip": "Wybierz minimalną wersję systemu operacyjnego wymaganą do zainstalowania aplikacji.",
- "minumumTextFieldValue": "Wartość musi być równa co najmniej {0}.",
- "physicalMemory": "Wymagana pamięć fizyczna (MB)",
- "physicalMemoryTooltip": "Pamięć fizyczna (RAM) wymagana do zainstalowania aplikacji.",
- "selectorLabel": "Wymagania",
- "validNumber": "Wprowadź poprawną liczbę."
- },
- "ArchitectureOptions": {
- "sixtyFourBit": "64-bitowa",
- "thirtyTwoBit": "32-bitowa"
- },
- "Countries": {
- "ae": "Zjednoczone Emiraty Arabskie",
- "ag": "Antigua i Barbuda",
- "ai": "Anguilla",
- "al": "Albania",
- "am": "Armenia",
- "ao": "Angola",
- "ar": "Argentyna",
- "at": "Austria",
- "au": "Australia",
- "az": "Azerbejdżan",
- "bb": "Barbados",
- "be": "Belgia",
- "bf": "Burkina Faso",
- "bg": "Bułgaria",
- "bh": "Bahrajn",
- "bj": "Benin",
- "bm": "Bermudy",
- "bn": "Brunei",
- "bo": "Boliwia",
- "br": "Brazylia",
- "bs": "Bahamy",
- "bt": "Bhutan",
- "bw": "Botswana",
- "by": "Białoruś",
- "bz": "Belize",
- "ca": "Kanada",
- "cg": "Republika Konga",
- "ch": "Szwajcaria",
- "cl": "Chile",
- "cn": "Chiny",
- "co": "Kolumbia",
- "cr": "Kostaryka",
- "cv": "Wyspy Zielonego Przylądka",
- "cy": "Cypr",
- "cz": "Czechy",
- "de": "Niemcy",
- "dk": "Dania",
- "dm": "Dominika",
- "do": "Dominikana",
- "dz": "Algieria",
- "ec": "Ekwador",
- "ee": "Estonia",
- "eg": "Egipt",
- "es": "Hiszpania",
- "fi": "Finlandia",
- "fj": "Fidżi",
- "fm": "Sfederowane Stany Mikronezji",
- "fr": "Francja",
- "gb": "Zjednoczone Królestwo",
- "gd": "Grenada",
- "gh": "Ghana",
- "gm": "Gambia",
- "gr": "Grecja",
- "gt": "Gwatemala",
- "gw": "Gwinea Bissau",
- "gy": "Gujana",
- "hk": "Hongkong SAR",
- "hn": "Honduras",
- "hr": "Chorwacja",
- "hu": "Węgry",
- "id": "Indonezja",
- "ie": "Irlandia",
- "il": "Izrael",
- "in": "Indie",
- "is": "Islandia",
- "it": "Włochy",
- "jm": "Jamajka",
- "jo": "Jordania",
- "jp": "Japonia",
- "ke": "Kenia",
- "kg": "Kirgistan",
- "kh": "Kambodża",
- "kn": "St. Kitts i Nevis",
- "kr": "Republika Korei",
- "kw": "Kuwejt",
- "ky": "Kajmany",
- "kz": "Kazachstan",
- "la": "Laotańska Republika Ludowo-Demokratyczna",
- "lb": "Liban",
- "lc": "Saint Lucia",
- "lk": "Sri Lanka",
- "lr": "Liberia",
- "lt": "Litwa",
- "lu": "Luksemburg",
- "lv": "Łotwa",
- "md": "Republika Mołdawii",
- "mg": "Madagaskar",
- "mk": "Macedonia Północna",
- "ml": "Mali",
- "mn": "Mongolia",
- "mo": "Makau",
- "mr": "Mauretania",
- "ms": "Montserrat",
- "mt": "Malta",
- "mu": "Mauritius",
- "mw": "Malawi",
- "mx": "Meksyk",
- "my": "Malezja",
- "mz": "Mozambik",
- "na": "Namibia",
- "ne": "Niger",
- "ng": "Nigeria",
- "ni": "Nikaragua",
- "nl": "Holandia",
- "no": "Norwegia",
- "np": "Nepal",
- "nz": "Nowa Zelandia",
- "om": "Oman",
- "pa": "Panama",
- "pe": "Peru",
- "pg": "Papua Nowa Gwinea",
- "ph": "Filipiny",
- "pk": "Pakistan",
- "pl": "Polska",
- "pt": "Portugalia",
- "pw": "Palau",
- "py": "Paragwaj",
- "qa": "Katar",
- "ro": "Rumunia",
- "ru": "Rosja",
- "sa": "Arabia Saudyjska",
- "sb": "Wyspy Salomona",
- "sc": "Seszele",
- "se": "Szwecja",
- "sg": "Singapur",
- "si": "Słowenia",
- "sk": "Słowacja",
- "sl": "Sierra Leone",
- "sn": "Senegal",
- "sr": "Surinam",
- "st": "Wyspy Świętego Tomasza i Książęca",
- "sv": "Salwador",
- "sz": "Suazi",
- "tc": "Turks i Caicos",
- "td": "Czad",
- "th": "Tajlandia",
- "tj": "Tadżykistan",
- "tm": "Turkmenistan",
- "tn": "Tunezja",
- "tr": "Turcja",
- "tt": "Trynidad i Tobago",
- "tw": "Tajwan",
- "tz": "Tanzania",
- "ua": "Ukraina",
- "ug": "Uganda",
- "us": "Stany Zjednoczone",
- "uy": "Urugwaj",
- "uz": "Uzbekistan",
- "vc": "Saint Vincent i Grenadyny",
- "ve": "Wenezuela",
- "vg": "Brytyjskie Wyspy Dziewicze",
- "vn": "Wietnam",
- "ye": "Jemen",
- "za": "Republika Południowej Afryki",
- "zw": "Zimbabwe"
+ "Languages": {
+ "ar-aE": "Arabski (Zjednoczone Emiraty Arabskie)",
+ "ar-bH": "Arabski (Bahrajn)",
+ "ar-dZ": "Arabski (Algieria)",
+ "ar-eG": "Arabski (Egipt)",
+ "ar-iQ": "Arabski (Irak)",
+ "ar-jO": "Arabski (Jordania)",
+ "ar-kW": "Arabski (Kuwejt)",
+ "ar-lB": "Arabski (Liban)",
+ "ar-lY": "Arabski (Libia)",
+ "ar-mA": "Arabski (Maroko)",
+ "ar-oM": "Arabski (Oman)",
+ "ar-qA": "Arabski (Katar)",
+ "ar-sA": "Arabski (Arabia Saudyjska)",
+ "ar-sY": "Arabski (Syria)",
+ "ar-tN": "Arabski (Tunezja)",
+ "ar-yE": "Arabski (Jemen)",
+ "az-cyrl": "Azerbejdżański (cyrylica, Azerbejdżan)",
+ "az-latn": "Azerbejdżański (łaciński, Azerbejdżan)",
+ "bn-bD": "Bengalski (Bangladesz)",
+ "bn-iN": "Bengalski (Indie)",
+ "bs-cyrl": "Bośniacki (cyrylica)",
+ "bs-latn": "Bośniacki (łaciński)",
+ "zh-cN": "Chiński (ChRL)",
+ "zh-hK": "Chiński (SRA Hongkong)",
+ "zh-mO": "Chiński (SRA Makau)",
+ "zh-sG": "Chiński (Singapur)",
+ "zh-tW": "Chiński (Tajwan)",
+ "hr-bA": "Chorwacki (łaciński)",
+ "hr-hR": "Chorwacki (Chorwacja)",
+ "nl-bE": "Holenderski (Belgia)",
+ "nl-nL": "Holenderski (Holandia)",
+ "en-aU": "Angielski (Australia)",
+ "en-bZ": "Angielski (Belize)",
+ "en-cA": "Angielski (Kanada)",
+ "en-cabn": "Angielski (Karaiby)",
+ "en-iE": "Angielski (Irlandia)",
+ "en-iN": "Angielski (Indie)",
+ "en-jM": "Angielski (Jamajka)",
+ "en-mY": "Angielski (Malezja)",
+ "en-nZ": "Angielski (Nowa Zelandia)",
+ "en-pH": "Angielski (Republika Filipin)",
+ "en-sG": "Angielski (Singapur)",
+ "en-tT": "Angielski (Trynidad i Tobago)",
+ "en-uK": "Angielski (Zjednoczone Królestwo)",
+ "en-uS": "Angielski (Stany Zjednoczone)",
+ "en-zA": "Angielski (Republika Południowej Afryki)",
+ "en-zW": "Angielski (Zimbabwe)",
+ "fr-bE": "Francuski (Belgia)",
+ "fr-cA": "Francuski (Kanada)",
+ "fr-cH": "Francuski (Szwajcaria)",
+ "fr-fR": "Francuski (Francja)",
+ "fr-lU": "Francuski (Luksemburg)",
+ "fr-mC": "Francuski (Monako)",
+ "de-aT": "Niemiecki (Austria)",
+ "de-cH": "Niemiecki (Szwajcaria)",
+ "de-dE": "Niemiecki (Niemcy)",
+ "de-lI": "Niemiecki (Liechtenstein)",
+ "de-lU": "Niemiecki (Luksemburg)",
+ "iu-cans": "Inuktitut (sylabiczny, Kanada)",
+ "iu-latn": "Inuktitut (łaciński, Kanada)",
+ "it-cH": "Włoski (Szwajcaria)",
+ "it-iT": "Włoski (Włochy)",
+ "ms-bN": "Malajski (Brunei Darussalam)",
+ "ms-mY": "Malajski (Malezja)",
+ "mn-cN": "Mongolski (mongolski tradycyjny, ChRL)",
+ "mn-mN": "Mongolski (cyrylica, Mongolia)",
+ "no-nB": "Norweski, Bokmål (Norwegia)",
+ "no-nn": "Norweski, Nynorsk (Norwegia)",
+ "pt-bR": "Portugalski (Brazylia)",
+ "pt-pT": "Portugalski (Portugalia)",
+ "quz-bO": "Keczua (Boliwia)",
+ "quz-eC": "Keczua (Ekwador)",
+ "quz-pE": "Keczua (Peru)",
+ "smj-nO": "Lapoński, Lule (Norwegia)",
+ "smj-sE": "Lapoński, Lule (Szwecja)",
+ "se-fI": "Lapoński, północny (Finlandia)",
+ "se-nO": "Lapoński, północny (Norwegia)",
+ "se-sE": "Lapoński, północny (Szwecja)",
+ "sma-nO": "Lapoński, południowy (Norwegia)",
+ "sma-sE": "Lapoński, południowy (Szwecja)",
+ "smn": "Lapoński, Inari (Finlandia)",
+ "sms": "Lapoński, Skolt (Finlandia)",
+ "sr-Cyrl-bA": "Serbski (cyrylica)",
+ "sr-Cyrl-rS": "Serbski (cyrylica, Serbia i Czarnogóra [dawniej])",
+ "sr-Latn-bA": "Serbski (łaciński)",
+ "sr-Latn-rS": "Serbski (łaciński, Serbia)",
+ "dsb": "Dolnołużycki (Niemcy)",
+ "hsb": "Górnołużycki (Niemcy)",
+ "es-es-tradnl": "Hiszpański (Hiszpania, sortowanie tradycyjne)",
+ "es-aR": "Hiszpański (Argentyna)",
+ "es-bO": "Hiszpański (Boliwia)",
+ "es-cL": "Hiszpański (Chile)",
+ "es-cO": "Hiszpański (Kolumbia)",
+ "es-cR": "Hiszpański (Kostaryka)",
+ "es-dO": "Hiszpański (Dominikana)",
+ "es-eC": "Hiszpański (Ekwador)",
+ "es-eS": "Hiszpański (Hiszpania)",
+ "es-gT": "Hiszpański (Gwatemala)",
+ "es-hN": "Hiszpański (Honduras)",
+ "es-mX": "Hiszpański (Meksyk)",
+ "es-nI": "Hiszpański (Nikaragua)",
+ "es-pA": "Hiszpański (Panama)",
+ "es-pE": "Hiszpański (Peru)",
+ "es-pR": "Hiszpański (Portoryko)",
+ "es-pY": "Hiszpański (Paragwaj)",
+ "es-sV": "Hiszpański (Salwador)",
+ "es-uS": "Hiszpański (Stany Zjednoczone)",
+ "es-uY": "Hiszpański (Urugwaj)",
+ "es-vE": "Hiszpański (Wenezuela)",
+ "sv-fI": "Szwedzki (Finlandia)",
+ "uz-cyrl": "Uzbecki (cyrylica, Uzbekistan)",
+ "uz-latn": "Uzbecki (łaciński, Uzbekistan)",
+ "af": "Afrykanerski (Republika Południowej Afryki)",
+ "sq": "Albański (Albania)",
+ "am": "Amharyjski (Etiopia)",
+ "hy": "Armeński (Armenia)",
+ "as": "Assamski (Indie)",
+ "ba": "Baszkirski (Rosja)",
+ "eu": "Baskijski (Baskijski)",
+ "be": "Białoruski (Białoruś)",
+ "br": "Bretoński (Francja)",
+ "bg": "Bułgarski (Bułgaria)",
+ "ca": "Kataloński (Kataloński)",
+ "co": "Korsykański (Francja)",
+ "cs": "Czeski (Czechy)",
+ "da": "Duński (Dania)",
+ "prs": "Dari (Afganistan)",
+ "dv": "Divehi (Malediwy)",
+ "et": "Estoński (Estonia)",
+ "fo": "Farerski (Wyspy Owcze)",
+ "fil": "Filipino (Filipiny)",
+ "fi": "Fiński (Finlandia)",
+ "gl": "Galicyjski (Galicia)",
+ "ka": "Gruziński (Gruzja)",
+ "el": "Grecki (Grecja)",
+ "gu": "Gudżarati (Indie)",
+ "ha": "Hausa (łaciński, Nigeria)",
+ "he": "Hebrajski (Izrael)",
+ "hi": "Hindi (Indie)",
+ "hu": "Węgierski (Węgry)",
+ "is": "Islandzki (Islandia)",
+ "ig": "Igbo (Nigeria)",
+ "id": "Indonezyjski (Indonezja)",
+ "ga": "Irlandzki (Irlandia)",
+ "xh": "isiXhosa (Republika Południowej Afryki)",
+ "zu": "isiZulu (Republika Południowej Afryki)",
+ "ja": "Japoński (Japonia)",
+ "kn": "Kannada (Indie)",
+ "kk": "Kazachski (Kazachstan)",
+ "km": "Khmerski (Kambodża)",
+ "rw": "Kinjarwanda (Rwanda)",
+ "sw": "Suahili (Kenia)",
+ "kok": "Konkani (Indie)",
+ "ko": "Koreański (Korea Południowa)",
+ "ky": "Kirgiski (Kirgistan)",
+ "lo": "Laotański (Laotańska RLD)",
+ "lv": "Łotewski (Łotwa)",
+ "lt": "Litewski (Litwa)",
+ "lb": "Luksemburski (Luksemburg)",
+ "mk": "Macedoński (Macedonia Północna)",
+ "ml": "Malajalam (Indie)",
+ "mt": "Maltański (Malta)",
+ "mi": "Maoryjski (Nowa Zelandia)",
+ "mr": "Marathi (Indie)",
+ "moh": "Mohawk (Mohawk)",
+ "ne": "Nepalski (Nepal)",
+ "oc": "Okcytański (Francja)",
+ "or": "Orija (Indie)",
+ "ps": "Paszto (Afganistan)",
+ "fa": "Perski",
+ "pl": "Polski (Polska)",
+ "pa": "Pendżabski (Indie)",
+ "ro": "Rumuński (Rumunia)",
+ "rm": "Romansz (retoromański, Szwajcaria)",
+ "ru": "Rosyjski (Rosja)",
+ "sa": "Sanskryt (Indie)",
+ "st": "Sesotho północny (Republika Południowej Afryki)",
+ "tn": "Setswana (Republika Południowej Afryki)",
+ "si": "Sinhala (Sri Lanka)",
+ "sk": "Słowacki (Słowacja)",
+ "sl": "Słoweński (Słowenia)",
+ "sv": "Szwedzki (Szwecja)",
+ "syr": "Syryjski (Syria)",
+ "tg": "Tadżycki (cyrylica, Tadżykistan)",
+ "ta": "Tamilski (Indie)",
+ "tt": "Tatarski (Rosja)",
+ "te": "Telugu (Indie)",
+ "th": "Tajski (Tajlandia)",
+ "bo": "Tybetański (ChRL)",
+ "tr": "Turecki (Turcja)",
+ "tk": "Turkmeński (Turkmenistan)",
+ "uk": "Ukraiński (Ukraina)",
+ "ur": "Urdu (Islamska Republika Pakistanu)",
+ "vi": "Wietnamski (Wietnam)",
+ "cy": "Walijski (Zjednoczone Królestwo)",
+ "wo": "Wolof (Senegal)",
+ "ii": "Yi (ChRL)",
+ "yo": "Joruba (Nigeria)"
+ },
+ "Category": {
+ "airPlay": "AirPlay",
+ "airPrint": "AirPrint",
+ "androidDefenderAtp": "Microsoft Defender dla punktu końcowego",
+ "androidDeviceOwnerApplications": "Aplikacje",
+ "androidForWorkPassword": "Hasło urządzenia",
+ "appManagement": "Zezwalaj na aplikacje lub blokuj je",
+ "applicationGuard": "Microsoft Defender Application Guard",
+ "applicationRestrictions": "Aplikacje z ograniczeniami",
+ "applicationVisibility": "Pokaż lub ukryj aplikacje",
+ "applications": "App Store",
+ "applicationsAndGames": "Sklep App Store, wyświetlanie dokumentów, granie",
+ "applicationsAndGoogle": "Sklep Google Play",
+ "appsAndExperience": "Aplikacje i środowisko",
+ "associatedDomains": "Skojarzone domeny",
+ "autonomousSingleAppMode": "Autonomiczny tryb pojedynczej aplikacji",
+ "azureOperationalInsights": "Azure Operational Insights",
+ "bitLocker": "Szyfrowanie systemu Windows",
+ "browser": "Przeglądarka",
+ "builtinApps": "Aplikacje wbudowane",
+ "cellular": "Sieć komórkowa",
+ "cloudAndStorage": "Chmura i magazyn",
+ "cloudPrint": "Drukarka w chmurze",
+ "complianceEmailProfile": "Wiadomość e-mail",
+ "connectedDevices": "Połączone urządzenia",
+ "connectivity": "Sieć komórkowa i łączność",
+ "contentCaching": "Buforowanie zawartości",
+ "controlPanelAndSettings": "Panel sterowania i Ustawienia",
+ "credentialGuard": "Microsoft Defender Credential Guard",
+ "customCompliance": "Zgodność niestandardowa",
+ "customCompliancePreview": "Zgodność niestandardowa (wersja zapoznawcza)",
+ "customConfiguration": "Niestandardowy profil konfiguracji",
+ "customOMASettings": "Niestandardowe ustawienia OMA-URI",
+ "customPreferences": "Plik preferencji",
+ "defender": "Program antywirusowy Microsoft Defender",
+ "defenderAntivirus": "Program antywirusowy Microsoft Defender",
+ "defenderExploitGuard": "Microsoft Defender Exploit Guard",
+ "defenderFirewall": "Zapora Microsoft Defender",
+ "defenderLocalSecurityOptions": "Opcje zabezpieczeń urządzenia lokalnego",
+ "defenderSecurityCenter": "Centrum zabezpieczeń usługi Microsoft Defender",
+ "deliveryOptimization": "Optymalizacja dostarczania",
+ "derivedCredentialAuthenticationConfiguration": "Pochodne poświadczenia",
+ "deviceExperience": "Środowisko urządzenia",
+ "deviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
+ "deviceGuard": "Kontrola aplikacji usługi Microsoft Defender",
+ "deviceHealth": "Kondycja urządzenia",
+ "devicePassword": "Hasło urządzenia",
+ "deviceProperties": "Właściwości urządzenia",
+ "deviceRestrictions": "Ogólne",
+ "deviceSecurity": "Zabezpieczenia systemu",
+ "display": "Wyświetl",
+ "domainJoin": "Przyłączanie do domeny",
+ "domains": "Domeny",
+ "edgeBrowser": "Starsze wersje przeglądarki Microsoft Edge (wersja 45 i wcześniejsze)",
+ "edgeBrowserSmartScreen": "Microsoft Defender SmartScreen",
+ "edgeKiosk": "Tryb kiosku przeglądarki Microsoft Edge",
+ "editionUpgrade": "Uaktualnianie wersji",
+ "education": "Edukacja",
+ "educationDeviceCerts": "Certyfikaty urządzeń",
+ "educationStudentCerts": "Certyfikaty uczniów",
+ "educationTakeATest": "Wypełnij test",
+ "educationTeacherCerts": "Certyfikaty nauczycieli",
+ "emailProfile": "Wiadomość e-mail",
+ "enterpriseDataProtection": "Windows Information Protection",
+ "expeditedCheckin": "Konfiguracja zarządzania urządzeniami przenośnymi",
+ "extensibleSingleSignOn": "Rozszerzenie aplikacji do logowania jednokrotnego",
+ "filevault": "FileVault",
+ "firewall": "Zapora",
+ "games": "Gry",
+ "gatekeeper": "Gatekeeper",
+ "healthMonitoring": "Monitorowanie kondycji",
+ "homeScreenLayout": "Układ ekranu startowego",
+ "iOSWallpaper": "Tapeta",
+ "importedPFX": "Zaimportowany certyfikat PKCS",
+ "iosDefenderAtp": "Microsoft Defender dla punktu końcowego",
+ "iosKiosk": "Kiosk",
+ "kernelExtensions": "Rozszerzenia jądra",
+ "keyboardAndDictionary": "Klawiatura i słownik",
+ "kiosk": "Kiosk",
+ "kioskAndroidEnterprise": "Dedykowane urządzenia",
+ "kioskConfiguration": "Kiosk",
+ "kioskConfigurationV2": "Kiosk",
+ "kioskWebBrowser": "Przeglądarka internetowa kiosku",
+ "lockScreenMessage": "Komunikat na ekranie blokady",
+ "lockedScreenExperience": "Środowisko ekranu blokady",
+ "logging": "Raportowanie i telemetria",
+ "loginItems": "Elementy logowania",
+ "loginWindow": "Okno logowania",
+ "macDefenderAtp": "Microsoft Defender dla punktu końcowego",
+ "maintenance": "Konserwacja",
+ "malware": "Złośliwe oprogramowanie",
+ "messaging": "Obsługa komunikatów",
+ "networkBoundary": "Granica sieci",
+ "networkProxy": "Serwer proxy sieci",
+ "notifications": "Powiadomienia aplikacji",
+ "pKCS": "Certyfikat PKCS",
+ "password": "Hasło",
+ "personalProfile": "Profil osobisty",
+ "personalization": "Personalizacja",
+ "policyOverride": "Przesłoń zasady grupy",
+ "powerSettings": "Ustawienia zasilania",
+ "printer": "Drukarka",
+ "privacy": "Prywatność",
+ "privacyPerApp": "Wyjątki prywatności dla aplikacji",
+ "privacyPreferences": "Preferencje dotyczące prywatności",
+ "projection": "Projekcja",
+ "sCCMCompliance": "Zgodność z programem Configuration Manager",
+ "sCEP": "Certyfikat SCEP",
+ "sCEPProperties": "Certyfikat SCEP",
+ "sMode": "Przełączenie trybu (tylko niejawny program testów systemu Windows)",
+ "safari": "Safari",
+ "search": "Wyszukaj",
+ "session": "Sesja",
+ "sharedDevice": "Udostępnione urządzenie iPad",
+ "sharedPCAccountManager": "Udostępnione urządzenie obsługujące wielu użytkowników",
+ "singleSignOn": "Logowanie jednokrotne",
+ "smartScreen": "Microsoft Defender SmartScreen",
+ "softwareUpdates": "Ustawienia",
+ "start": "Rozpoczęcie",
+ "systemExtensions": "Rozszerzenia systemu",
+ "systemSecurity": "Zabezpieczenia systemu",
+ "trustedCert": "Certyfikat zaufany",
+ "updates": "Aktualizacje",
+ "userRights": "Prawa użytkownika",
+ "usersAndAccounts": "Użytkownicy i konta",
+ "vPN": "Podstawowa sieć VPN",
+ "vPNApps": "Automatyczne połączenie VPN",
+ "vPNAppsAndTrafficRules": "Reguły dotyczące aplikacji i ruchu",
+ "vPNConditionalAccess": "Dostęp warunkowy",
+ "vPNConnectivity": "Łączność",
+ "vPNDNSTriggers": "Ustawienia DNS",
+ "vPNIKEv2": "Ustawienia IKEv2",
+ "vPNProxy": "Serwer proxy",
+ "vPNSplitTunneling": "Tunelowanie podzielone",
+ "vPNTrustedNetwork": "Wykrywanie zaufanych sieci",
+ "webContentFilter": "Filtr zawartości internetowej",
+ "wiFi": "Sieć Wi-Fi",
+ "win10Wifi": "Sieć Wi-Fi",
+ "windowsAtp": "Microsoft Defender dla punktu końcowego",
+ "windowsDefenderATP": "Microsoft Defender dla punktu końcowego",
+ "windowsHelloForBusiness": "Windows Hello dla firm",
+ "windowsSpotlight": "W centrum uwagi Windows",
+ "wiredNetwork": "Sieć przewodowa",
+ "wireless": "Bezprzewodowe",
+ "wirelessProjection": "Projekcja bezprzewodowa",
+ "workProfile": "Ustawienia profilu służbowego",
+ "workProfilePassword": "Hasło profilu służbowego",
+ "xboxServices": "Usługi Xbox",
+ "zebraMx": "Profil MX (tylko Zebra)",
+ "complianceActionsLabel": "Akcje w przypadku niezgodności"
+ },
+ "WindowsFeatureUpdateProfile": {
+ "Details": {
+ "Description": {
+ "label": "Opis"
+ },
+ "FeatureDeploymentSettings": {
+ "header": "Ustawienia wdrażania funkcji"
+ },
+ "FeatureUpdateVersion": {
+ "infoballoon": "Ta funkcja nie może zmienić wersji urządzenia na starszą.",
+ "label": "Aktualizacja funkcji do wdrożenia"
+ },
+ "GradualRolloutEndDate": {
+ "label": "Ostateczna dostępność grupy"
+ },
+ "GradualRolloutInterval": {
+ "label": "Dni między grupami"
+ },
+ "GradualRolloutStartDate": {
+ "label": "Dostępność pierwszej grupy"
+ },
+ "Name": {
+ "label": "Nazwa"
+ },
+ "RolloutOptions": {
+ "label": "Opcje wprowadzania"
+ },
+ "RolloutSettings": {
+ "header": "Kiedy chcesz udostępnić aktualizację w usłudze Windows Update?"
+ },
+ "ScopeSettings": {
+ "header": "Konfiguruj tagi zakresu dla tych zasad."
+ },
+ "StartDateOnlyStartDate": {
+ "label": "Pierwsza dostępna data"
+ },
+ "bladeTitle": "Wdrożenia aktualizacji funkcji",
+ "deploymentSettingsTitle": "Ustawienia wdrożenia",
+ "loadError": "Ładowanie nie powiodło się!",
+ "windows11EULA": "Zaznaczając tę opcję aktualizacji funkcji do wdrożenia, wyrażasz zgodę na to, że podczas stosowania tego systemu operacyjnego na urządzeniu (1) zakupiono odpowiednią licencję systemu Windows w ramach licencjonowania zbiorowego lub (2) że masz upoważnienie do nabywania praw i zaciągania zobowiązań w imieniu swojej organizacji i akceptujesz w jej imieniu odpowiednie postanowienia licencyjne dotyczące oprogramowania firmy Microsoft, które można znaleźć tutaj {0}."
+ },
+ "Notifications": {
+ "deploymentSaved": "Zapisano „{0}”.",
+ "newFeatureUpdateDeploymentCreated": "Utworzono nowe wdrożenie aktualizacji funkcji."
+ },
+ "TabName": {
+ "deploymentSettings": "Ustawienia wdrożenia",
+ "groupAssignmentSettings": "Przypisania",
+ "scopeSettings": "Tagi zakresu"
+ }
+ },
+ "WIPPinRequirements": {
+ "WipLowercaseCharacterPinRequirements": {
+ "allow": "Zezwalaj na użycie małych liter w kodzie PIN",
+ "notAllow": "Nie zezwalaj na użycie małych liter w kodzie PIN",
+ "requireAtLeastOne": "Wymagaj użycia co najmniej jednej małej litery w kodzie PIN"
+ },
+ "WipSpecialCharacterPinRequirements": {
+ "allow": "Zezwalaj na użycie znaków specjalnych w kodzie PIN",
+ "notAllow": "Nie zezwalaj na użycie znaków specjalnych w kodzie PIN",
+ "requireAtLeastOne": "Wymagaj użycia co najmniej jednego znaku specjalnego w kodzie PIN"
+ },
+ "WipUppercaseCharacterPinRequirements": {
+ "allow": "Zezwalaj na użycie wielkich liter w kodzie PIN",
+ "notAllow": "Nie zezwalaj na użycie wielkich liter w kodzie PIN",
+ "requireAtLeastOne": "Wymagaj użycia co najmniej jednej wielkiej litery w kodzie PIN"
+ }
+ },
+ "OutlookAppConfigSettings": {
+ "AllowUserToChangeSetting": {
+ "title": "Zezwalaj użytkownikowi na zmianę ustawienia",
+ "tooltip": "Określ, czy użytkownik może zmieniać ustawienie."
+ },
+ "AllowWorkAccounts": {
+ "title": "Zezwalaj tylko na konta służbowe",
+ "tooltip": "Po włączeniu tego ustawienia użytkownicy nie będą mogli dodawać osobistych kont e-mail i magazynu w programie Outlook. Jeśli użytkownik ma już dodane konto osobiste do programu Outlook, zostanie poproszony o jego usunięcie. Jeśli użytkownik nie usunie konta osobistego, nie będzie można dodać konta służbowego."
+ },
+ "BlockExternalImages": {
+ "title": "Blokuj obrazy zewnętrzne",
+ "tooltip": "Gdy blokowanie obrazów zewnętrznych jest włączone, aplikacja nie będzie pozwalać na pobieranie obrazów hostowanych w Internecie, które są osadzone w treści wiadomości. Jeśli ta funkcja jest ustawiona jako nieskonfigurowana, jej domyślnym ustawieniem w aplikacji jest Wyłączone"
+ },
+ "ConfigureEmail": {
+ "title": "Konfiguruj ustawienia konta e-mail"
+ },
+ "DefaultAppSignatureSetting": {
+ "Tooltip": {
+ "android": "Domyślny podpis aplikacji wskazuje, czy aplikacja będzie używać podpisu „Pobierz program Outlook dla systemu Android” jako domyślnego podpisu podczas tworzenia wiadomości. Jeśli to ustawienie zostanie wyłączone, domyślny podpis nie będzie używany, ale użytkownicy będą mogli dodać własny podpis.\r\n\r\nJeśli zostanie ustawiona wartość Nie skonfigurowano, domyślnie ustawienie aplikacji będzie włączone.",
+ "iOS": "Domyślny podpis aplikacji wskazuje, czy aplikacja będzie używać podpisu „Pobierz program Outlook dla systemu iOS” jako domyślnego podpisu podczas tworzenia wiadomości. Jeśli to ustawienie zostanie wyłączone, domyślny podpis nie będzie używany, ale użytkownicy będą mogli dodać własny podpis.\r\n\r\nJeśli zostanie ustawiona wartość Nie skonfigurowano, domyślnie ustawienie aplikacji będzie włączone."
+ },
+ "title": "Domyślny podpis aplikacji"
+ },
+ "OfficeFeedReplies": {
+ "title": "Kanał informacyjny odkrywania",
+ "tooltip": "Kanał informacyjny odkrywania przedstawia najczęściej używane pliki pakietu Office. Domyślnie ten kanał jest włączony, gdy dla użytkownika włączono usługę Delve. W przypadku ustawienia wartości Nie skonfigurowano domyślne ustawienie aplikacji to Włączone."
+ },
+ "OrganizeMailByThread": {
+ "title": "Organizuj pocztę według wątku",
+ "tooltip": "Zachowanie domyślne w programie Outlook polega na przekształcaniu konwersacji pocztowych w widok wątku. Jeśli to ustawienie zostanie wyłączone, program Outlook będzie wyświetlał każdą wiadomość pojedynczo i nie będzie grupować ich według wątku."
+ },
+ "PlayMyEmails": {
+ "title": "Odtwarzaj moje wiadomości e-mail",
+ "tooltip": "Funkcja Odtwarzaj moje wiadomości e-mail nie jest domyślnie włączona w aplikacji, ale jest polecana uprawnionym użytkownikom za pośrednictwem baneru w skrzynce odbiorczej. Ustawienie na wartość Wyłączone spowoduje, że ta funkcja nie będzie polecana uprawnionym użytkownikom w aplikacji. Użytkownicy mogą ręcznie włączać funkcję Odtwarzaj moje wiadomości e-mail w aplikacji, nawet jeśli ta funkcja jest ustawiona na wartość Wyłączona. Po ustawieniu wartości Nie skonfigurowano domyślnym ustawieniem aplikacji jest Włączone i funkcja będzie polecana uprawnionym użytkownikom."
+ },
+ "SuggestedReplies": {
+ "title": "Sugerowane odpowiedzi",
+ "tooltip": "Po otwarciu wiadomości program Outlook może wyświetlić pod nią sugerowane odpowiedzi. Jeśli wybierzesz sugerowaną odpowiedź, możesz ją edytować przed wysłaniem."
+ },
+ "SyncCalendars": {
+ "title": "Synchronizuj kalendarze",
+ "tooltip": "Skonfiguruj, czy użytkownicy mogą synchronizować swoje kalendarze programu Outlook z natywną aplikacją kalendarza i bazą danych. "
+ },
+ "TextPredictions": {
+ "title": "Podpowiadanie tekstu",
+ "tooltip": "Program Outlook może sugerować wyrazy i frazy podczas redagowania wiadomości. Gdy aplikacja Outlook wyświetli sugestię, przesuń, aby ją zaakceptować. Gdy ustawienie nie jest skonfigurowane, domyślnym ustawieniem aplikacji jest Włączone."
+ },
+ "ThemesEnabled": {
+ "title": "Kompozycje włączone",
+ "tooltip": "Określ, czy użytkownik może używać niestandardowego motywu wizualnego."
+ }
+ },
+ "AssignmentFilters": {
+ "assignmentFilterColumnHeader": "Filtruj",
+ "noFilters": "Brak"
+ },
+ "Platform": {
+ "all": "Wszystkie",
+ "android": "Administrator urządzeń z systemem Android",
+ "androidAOSP": "Android (AOSP)",
+ "androidEnterprise": "Android Enterprise",
+ "androidForWork": "Android Enterprise",
+ "androidWorkProfile": "System Android dla firm",
+ "common": "Wspólne",
+ "iOS": "iOS/iPadOS",
+ "iosAndAndroidPlatformLabel": "iOS i Android",
+ "iosCommaAndroidPlatformLabel": "iOS, Android",
+ "linux": "Linux",
+ "macOS": "macOS",
+ "unknown": "Nieznany",
+ "unsupported": "Nieobsługiwane",
+ "windows": "Windows",
+ "windows10": "Windows 10 i nowsze",
+ "windows10CM": "Windows 10 i nowsze (ConfigMgr)",
+ "windows10Holo": "Windows 10 Holographic",
+ "windows10Mobile": "Windows 10 Mobile",
+ "windows10Team": "Windows 10 Team",
+ "windows10X": "Windows 10X",
+ "windows8": "Windows 8.1 i nowsze",
+ "windows8And10": "Windows 8 i 10",
+ "windowsPhone": "Windows Phone 8.1",
+ "windows10AndLater": "Windows 10 i nowsze",
+ "windows10AndWindowsServer": "Windows 10, Windows 11 i Windows Server (ConfigMgr)",
+ "windows10andLaterCM": "Windows 10 i nowsze (ConfigMgr)",
+ "holoLens": "HoloLens",
+ "surfaceHub2": "Surface Hub 2",
+ "surfaceHub2S": "Surface Hub 2S",
+ "windowsPC": "Komputer z systemem Windows"
+ },
+ "AppInformationTab": {
+ "Error": {
+ "multipleChildApps": "Aplikację LOB dla systemu macOS można zainstalować tylko jako zarządzaną, gdy przekazany pakiet zawiera pojedynczą aplikację."
+ },
+ "Info": {
+ "AppStoreUrl": {
+ "android": "Wprowadź link do pozycji aplikacji w sklepie Google Play. Na przykład:",
+ "androidLink": "https://play.google.com/store/apps/details?id=com.microsoft.office.outlook",
+ "windows": "Wprowadź link do pozycji aplikacji w sklepie Microsoft Store. Na przykład:",
+ "windowsLink": "https://www.microsoft.com/en-us/p/microsoft-to-do-lists-tasks-reminders/9nblggh5r558"
+ },
+ "appPackageFile": "Plik zawierający aplikację w formacie, który można załadować bezpośrednio na urządzeniu. Prawidłowe typy pakietów to:Android (.apk), iOS (.ipa), macOS (.pkg, .intunemac), Windows (.msi, .appx, .appxbundle, .msix, and .msixbundle).",
+ "applicableDeviceType": "Wybierz typy urządzeń, na których można instalować tę aplikację.",
+ "category": "Określ kategorię dla aplikacji, aby ułatwić użytkownikom sortowanie i znajdowanie w Portalu firmy. Możesz wybrać wiele kategorii dla aplikacji.",
+ "categoryLink": "https://docs.microsoft.com/en-us/intune/apps/apps-add#create-and-edit-categories-for-apps",
+ "description": "Pomóż użytkownikom urządzenia zrozumieć, czym jest aplikacja i/lub do czego służy. Opis będzie widoczny dla nich w Portalu firmy.",
+ "developer": "Nazwa firmy lub osoby, która utworzyła aplikację. Te informacje będą widoczne dla osób zalogowanych do centrum administracyjnego.",
+ "displayVersion": "Wersja aplikacji. Ta informacja będzie widoczna dla użytkowników w Portalu firmy.",
+ "infoUrl": "Podaj link do witryny internetowej lub dokumentacji zawierającej więcej informacji na temat aplikacji. Adres URL informacji będzie widoczny dla użytkowników w Portalu firmy.",
+ "isFeatured": "Polecane aplikacje są wyróżniane w Portalu firmy, aby użytkownicy mogli szybko do nich przejść.",
+ "learnMore": "Dowiedz się więcej",
+ "logo": "Przekaż logo skojarzone z aplikacją. To logo będzie wyświetlane obok aplikacji w całym Portalu firmy.",
+ "macOSDmgAppPackageFile": "Plik zawierający aplikację w formacie, który można załadować bezpośrednio na urządzeniu. Prawidłowy typ pakietu: .dmg.",
+ "minOperatingSystem": "Wybierz najstarszą wersję systemu operacyjnego, w której można zainstalować aplikację. Jeśli aplikacja zostanie przypisana do urządzenia ze starszym systemem operacyjnym, nie zostanie zainstalowana.",
+ "name": "Dodaj nazwę aplikacji. Ta nazwa będzie widoczna na liście aplikacji usługi Intune oraz dla użytkowników w Portalu firmy.",
+ "notes": "Podaj dodatkowe uwagi dotyczące aplikacji. Uwagi będą widoczne dla osób zalogowanych do centrum administracyjnego.",
+ "owner": "Nazwisko osoby w organizacji, która zarządza licencjonowaniem lub z którą należy się kontaktować w sprawach dotyczących aplikacji. To nazwisko będzie widoczne dla osób zalogowanych do centrum administracyjnego.",
+ "packageName": "Skontaktuj się z producentem urządzenia, aby uzyskać nazwę pakietu aplikacji. Przykładowa nazwa pakietu: com.example.app",
+ "privacyUrl": "Podaj link dla osób, które chcą dowiedzieć się więcej na temat warunków i ustawień prywatności w aplikacji. Adres URL do informacji o prywatności będzie widoczny dla użytkowników w Portalu firmy.",
+ "publisher": "Nazwa dewelopera lub firmy dystrybuującej aplikację. Te informacje będą widoczne dla użytkowników w Portalu firmy.",
+ "selectApp": "Przeszukaj sklep App Store pod kątem aplikacji ze sklepu dla systemu iOS, które chcesz wdrożyć za pomocą usługi Intune.",
+ "useManagedBrowser": "Jeśli jest to wymagane, gdy użytkownik otworzy aplikację internetową, zostanie ona otworzona w przeglądarce chronionej za pomocą usługi Intune, takiej jak Microsoft Edge lub Intune Managed Browser. To ustawienie dotyczy urządzeń zarówno z systemem iOS, jak i Android.",
+ "useManagedBrowserLink": "https://docs.microsoft.com/en-us/intune/apps/app-configuration-managed-browser",
+ "win32AppPackageFile": "Plik zawierający aplikację w formacie, który można załadować bezpośrednio na urządzeniu. Prawidłowy typ pakietu: intunewin."
+ },
+ "descriptionPreview": "Podgląd",
+ "descriptionRequired": "Opis jest wymagany.",
+ "editDescription": "Edytuj opis",
+ "macOSMinOperatingSystemAdditionalInfo": "Minimalny system operacyjny do przekazywania pliku pkg to macOS w wersji 10.14. Przekaż plik intunemac, aby wybrać starszy minimalny system operacyjny.",
+ "name": "Informacje o aplikacji",
+ "nameForOfficeSuitApp": "Informacje o pakiecie aplikacji"
+ },
+ "Tooltips": {
+ "PolicySettings": {
+ "TouchId1": {
+ "android": "W systemie Android możesz używać identyfikacji za pomocą odcisków palców zamiast numeru PIN. Użytkownicy widzą monit o przedstawienie odcisków palców w przypadku uzyskiwania dostępu do tej aplikacji z konta służbowego.",
+ "iOS": "W przypadku urządzeń z systemem iOS/iPadOS można zezwolić na identyfikację przy użyciu odcisku palca zamiast numeru PIN. Użytkownicy są proszeni o identyfikację za pomocą odcisku palca podczas otwierania tej aplikacji przy użyciu konta służbowego.",
+ "mac": "W przypadku urządzeń z systemem Mac można zezwolić na identyfikację przy użyciu odcisku palca zamiast numeru PIN. Użytkownicy są proszeni o identyfikację za pomocą odcisku palca podczas otwierania tej aplikacji przy użyciu konta służbowego."
+ },
+ "appSharingFromLevel1": "Wybierz jedną z następujących opcji, aby określić aplikacje, z których ta aplikacja może odbierać dane:",
+ "appSharingFromLevel2": "{0}: zezwalaj na odbieranie danych w ramach kont lub dokumentów organizacji tylko z innych aplikacji zarządzanych przez zasady",
+ "appSharingFromLevel3": "{0}: zezwalaj na odbieranie danych w ramach kont lub dokumentów organizacji z dowolnej aplikacji",
+ "appSharingFromLevel4": "{0}: nie zezwalaj na odbieranie danych w ramach kont lub dokumentów organizacji z żadnej aplikacji",
+ "appSharingFromLevel5": "{0}: Zezwalaj na transfer danych z dowolnej aplikacji i traktuj wszystkie dane przychodzące bez tożsamości użytkownika jak dane organizacji.",
+ "appSharingToLevel1": "Wybierz jedną z następujących opcji, aby określić aplikacje, do których ta aplikacja może wysyłać dane:",
+ "appSharingToLevel2": "{0}: zezwalaj na wysyłanie danych organizacji tylko do innych aplikacji zarządzanych przez zasady",
+ "appSharingToLevel3": "{0}: zezwalaj na wysyłanie danych organizacji do dowolnej aplikacji",
+ "appSharingToLevel4": "{0}: nie zezwalaj na wysyłanie danych organizacji do żadnej aplikacji",
+ "appSharingToLevel5": "{0}: Zezwalaj na transfer tylko do innych aplikacji zarządzanych przez zasady i transfer plików do innych aplikacji zarządzanych za pomocą funkcji MDM na zarejestrowanych urządzeniach",
+ "appSharingToLevel6": "{0}: Zezwalaj na transfer tylko do innych aplikacji zarządzanych przez zasady i filtruj okna dialogowe systemu operacyjnego do otwierania/udostępniania, aby były wyświetlane tylko aplikacje zarządzane przez zasady",
+ "conditionalEncryption1": "Wybierz opcję {0}, aby wyłączyć szyfrowanie aplikacji obejmujące wewnętrzny magazyn aplikacji, jeśli na zarejestrowanym urządzeniu zostanie wykryte szyfrowanie urządzenia.",
+ "conditionalEncryption2": "Uwaga: Usługa Intune wykrywa tylko rejestrację urządzenia przy użyciu zarządzania urządzeniami przenośnymi usługi Intune. Zewnętrzny magazyn aplikacji wciąż będzie szyfrowany, aby uniemożliwić niezarządzanym aplikacjom dostęp do danych.",
+ "contactSyncMac": "Jeśli ta opcja jest wyłączona, aplikacje nie mogą zapisywać kontaktów w natywnej książce adresowej.",
+ "contactsSync": "Wybierz pozycję Blokuj, aby uniemożliwić aplikacjom zarządzanym przez zasady zapisywanie danych w natywnych aplikacjach urządzenia (takich jak Kontakty, Kalendarz i widżety) albo zapobiec używaniu dodatków w aplikacjach zarządzanych przez zasady. Jeśli wybierzesz pozycję Zezwalaj na, aplikacja zarządzana przez zasady będzie mogła zapisywać dane w aplikacjach natywnych lub używać dodatków, jeśli te funkcje są obsługiwane i włączone w ramach aplikacji zarządzanej przez zasady.
Aplikacje mogą udostępniać dodatkowe możliwości konfiguracji za pomocą zasad konfiguracji aplikacji. Aby uzyskać więcej informacji, zobacz dokumentację aplikacji.",
+ "encryptionAndroid1": "W przypadku aplikacji skojarzonych z zasadami zarządzania aplikacjami mobilnymi usługi Intune szyfrowanie jest zapewniane przez firmę Microsoft. Dane są szyfrowane synchronicznie podczas operacji we/wy na plikach zgodnie z ustawieniem w zasadach zarządzania aplikacjami mobilnymi. W zarządzanych aplikacjach w systemie Android stosowane jest szyfrowanie AES-128 w trybie CBC przy użyciu bibliotek kryptograficznych platformy. Ta metoda szyfrowania nie jest zgodna ze standardem FIPS 140-2. Szyfrowanie SHA-256 jest obsługiwane jako jawna instrukcja przy użyciu parametru SigAlg i działa tylko w przypadku urządzeń z systemem w wersji 4.2 lub nowszej. Zawartość w pamięci masowej urządzenia jest zawsze szyfrowana.",
+ "encryptionAndroid2": "Gdy w zasadach aplikacji wymagane jest szyfrowanie, wymagane jest skonfigurowanie numeru PIN i uzyskiwanie dostępu do urządzenia za jago pomocą. Jeśli nie skonfigurowano numeru PIN do uzyskiwania dostępu do urządzenia, aplikacje nie zostaną uruchomione, a zamiast tego zostanie wyświetlony komunikat „Firma wymaga włączenia numeru PIN urządzenia w celu uzyskania dostępu do tej aplikacji”.",
+ "encryptionMac1": "W przypadku aplikacji skojarzonych z zasadami zarządzania aplikacjami mobilnymi usługi Intune szyfrowanie jest zapewniane przez firmę Microsoft. Dane są szyfrowane synchronicznie podczas operacji we/wy na plikach zgodnie z ustawieniem w zasadach zarządzania aplikacjami mobilnymi. W zarządzanych aplikacjach w systemie Mac stosowane jest szyfrowanie AES-128 w trybie CBC przy użyciu bibliotek kryptograficznych platformy. Ta metoda szyfrowania nie jest zgodna ze standardem FIPS 140-2. Szyfrowanie SHA-256 jest obsługiwane jako jawna instrukcja przy użyciu parametru SigAlg i działa tylko w przypadku urządzeń z systemem w wersji 4.2 lub nowszej. Zawartość w pamięci masowej urządzenia jest zawsze szyfrowana.",
+ "faceId1": "Czasami można zezwolić na korzystanie z rozpoznawania twarzy zamiast z numeru PIN. Użytkownicy będą proszeni o przeprowadzenie identyfikacji twarzy przy próbie otwarcia tej aplikacji za pomocą kont służbowych.",
+ "faceId2": "Wybierz pozycję Tak, aby zezwolić na identyfikację twarzy zamiast numeru PIN przy otwieraniu aplikacji.",
+ "managementLevelsAndroid1": "Użyj tej opcji, aby określić, czy te zasady mają zastosowanie do urządzeń administratora urządzeń systemu Android, urządzeń z profilem rozwiązania Android Enterprise czy urządzeń niezarządzanych.",
+ "managementLevelsAndroid2": "{0}: Urządzenia niezarządzane to urządzenia, na których nie wykryto zarządzania przez usługę Intune MDM. Dotyczy to też usług MDM innych dostawców.",
+ "managementLevelsAndroid3": "{0}: urządzenia zarządzane przez usługę Intune za pomocą administracyjnego interfejsu API urządzenia z systemem Android.",
+ "managementLevelsAndroid4": "{0}: urządzenia zarządzane przez usługę Intune za pomocą profilów służbowych rozwiązania Android Enterprise lub pełnego zarządzania urządzeniami w rozwiązaniu Android Enterprise.",
+ "managementLevelsIos1": "Użyj tej opcji, aby określić, czy te zasady mają zastosowanie do urządzeń zarządzanych przez usługę MDM, czy urządzeń niezarządzanych.",
+ "managementLevelsIos2": "{0}: Urządzenia niezarządzane to urządzenia, na których nie wykryto zarządzania przez usługę Intune MDM. Dotyczy to też usług MDM innych dostawców.",
+ "managementLevelsIos3": "{0}: Urządzenia zarządzane są zarządzane przez usługę Intune MDM.",
+ "minAppVersion": "Zdefiniuj wymaganą minimalną wersję aplikacji, którą powinien posiadać użytkownik w celu uzyskania bezpiecznego dostępu do aplikacji.",
+ "minAppVersionWarning": "Zdefiniuj zalecaną minimalną wersję aplikacji, którą powinien posiadać użytkownik w celu uzyskania bezpiecznego dostępu do aplikacji.",
+ "minOsVersion": "Zdefiniuj wymaganą minimalną wersję systemu operacyjnego, którą powinien posiadać użytkownik w celu uzyskania bezpiecznego dostępu do aplikacji.",
+ "minOsVersionWarning": "Zdefiniuj zalecaną minimalną wersję systemu operacyjnego, którą powinien posiadać użytkownik w celu uzyskania bezpiecznego dostępu do aplikacji.",
+ "minPatchVersion": "Zdefiniuj najstarszy wymagany poziom poprawki zabezpieczeń systemu Android, jaką może mieć użytkownik, aby uzyskiwać bezpieczny dostęp do aplikacji.",
+ "minPatchVersionWarning": "Zdefiniuj najstarszy zalecany poziom poprawki zabezpieczeń systemu Android, jaką może mieć użytkownik, aby uzyskiwać bezpieczny dostęp do aplikacji.",
+ "minSdkVersion": "Zdefiniuj wymaganą minimalną wersję zestawu SDK ochrony aplikacji, którą powinien posiadać użytkownik w celu uzyskania bezpiecznego dostępu do aplikacji.",
+ "requireAppPinDefault": "Wybierz pozycję Tak, aby wyłączyć numer PIN aplikacji, gdy na zarejestrowanym urządzeniu zostanie wykryta blokada urządzenia.
",
+ "targetAllApps1": "Użyj tej opcji, aby objąć swoimi zasadami aplikacje na urządzeniach z dowolnym stanem zarządzania.",
+ "targetAllApps2": "Podczas rozwiązywania konfliktów zasad to ustawienie będzie zastępowane, jeśli użytkownik ma zasady przeznaczone dla konkretnego stanu zarządzania.",
+ "touchId2": "Wybierz opcję {0}, aby określić wymaganie identyfikacji za pomocą odcisku palca zamiast numeru PIN w celu uzyskania dostępu do aplikacji."
+ },
+ "Tap": {
+ "pinResetAfterNumberOfDays": "Określ liczbę dni, które muszą upłynąć, zanim użytkownik będzie musiał zresetować numer PIN.",
+ "previousPinBlockCount": "To ustawienie określa liczbę poprzednich kodów PIN, które będą przechowywane przez usługę Intune. Nowe kody PIN muszą być inne niż kody przechowywane przez usługę Intune."
+ },
+ "WipPolicySettings": {
+ "25": "",
+ "allowWindowsSearch": "Umożliwi to funkcji Windows Search kontynuowanie wyszukiwania w zaszyfrowanych danych.",
+ "authoritativeIpRanges": "Włącz to ustawienie, jeśli chcesz przesłonić automatyczne wykrywanie zakresów adresów IP przez system Windows.",
+ "authoritativeProxyServers": "Włącz to ustawienie, jeśli chcesz przesłonić automatyczne wykrywanie serwerów proxy przez system Windows.",
+ "checkInput": "Sprawdź poprawność danych wejściowych",
+ "dataRecoveryCert": "Certyfikat odzyskiwania to specjalny certyfikat systemu szyfrowania plików (EFS, Encrypting File System), którego można użyć, aby odzyskać zaszyfrowane pliki w razie utraty lub uszkodzenia klucza szyfrowania. Musisz utworzyć certyfikat odzyskiwania i podać go w tym miejscu. Więcej informacji można znaleźć tutaj",
+ "enterpriseCloudResources": "Określ zasoby chmury, które mają być traktowane jako firmowe i chronione przez zasady rozwiązania Windows Information Protection. Aby określić wiele wartości, można oddzielić poszczególne wpisy znakiem „|”.
Jeśli w firmie jest skonfigurowany serwer proxy, możesz określić serwer proxy, przez który będzie kierowany ruch do określonych zasobów chmury.
adres_URL[,serwer_proxy]|adres_URL[,serwer_proxy]
Bez serwera proxy: contoso.sharepoint.com|contoso.visualstudio.com
Z serwerem proxy: contoso.sharepoint.com,serwer_proxy.contoso.com|contoso.visualstudio.com,serwer_proxy.contoso.com
",
+ "enterpriseIPv4Ranges": "Określ zakresy adresów IPv4 sieci firmowej. Są one używane razem z określonymi nazwami domen sieci przedsiębiorstwa określonymi w celu zdefiniowania granic sieci firmowej.
To ustawienie jest wymagane do włączenia rozwiązania Windows Information Protection
Aby określić wiele wartości, można oddzielić poszczególne wpisy przecinkiem.
Przykład: 3.4.0.1-3.4.255.255,192.168.1.1-192.168.255.255
",
+ "enterpriseIPv6Ranges": "Określ zakresy adresów IPv6 sieci firmowej. Są one używane razem z nazwami domen sieci przedsiębiorstwa określonymi w celu zdefiniowania granic sieci firmowej
Aby określić wiele wartości, można oddzielić poszczególne wpisy przecinkiem.
Przykład: 2001:4898:dc05::-2001:4898:dc05:ffff:ffff:ffff:ffff:ffff,2a01:110::-2a01:110:7fff:ffff:ffff:ffff:ffff:ffff
",
+ "enterpriseInternalProxyServers": "Jeśli w Twojej firmie skonfigurowano serwer proxy, możesz określić serwer proxy, przez który ma być kierowany ruch do zasobów w chmurze określonych w ustawieniach zasobów przedsiębiorstwa w chmurze.
Aby określić wiele wartości, można oddzielić poszczególne wpisy średnikiem.
Przykład: contoso.wewnetrzny_serwer_proxy1.com;contoso.wewnetrzny_serwer_proxy2.com
",
+ "enterpriseNetworkDomainNames": "Określ nazwy DNS sieci firmowej. Są one używane razem z zakresami adresów IP określonymi w celu zdefiniowania granic sieci firmowej. Aby określić wiele wartości, można oddzielić poszczególne wpisy przecinkiem.
To ustawienie jest wymagane do włączenia rozwiązania Windows Information Protection.
Przykład: ncorp.contoso.com,region.contoso.com
",
+ "enterpriseProtectedDomainNames": "Określ nazwy DNS, które tworzą Twoją sieć korporacyjną. Są one używane w połączeniu z zakresami adresów IP określonymi w celu zdefiniowania granic Twojej sieci korporacyjnej. Można określić wiele wartości, oddzielając poszczególne wpisy znakiem „|”.
To ustawienie jest wymagane do włączenia usługi Windows Information Protection.
Na przykład: corp.contoso.com|region.contoso.com
",
+ "enterpriseProxyServers": "Jeśli w sieci firmowej są używane widoczne z zewnątrz serwery proxy, określ je tutaj. Oprócz adresu serwera proxy należy także określić port, przez który ruch ma być dozwolony i chroniony za pośrednictwem rozwiązania Windows Information Protection.
Uwaga: lista ta nie może zawierać serwerów znajdujących się na liście wewnętrznych serwerów proxy przedsiębiorstwa. Aby określić wiele wartości, można oddzielić poszczególne wpisy średnikiem.
Przykład: serwer_proxy.contoso.com:80;serwer_proxy2.contoso.com:80
",
+ "maxInactivityTime1": "Określa maksymalny czas (w minutach) bezczynności urządzenia, po którym urządzenie zostanie zablokowane przy użyciu kodu PIN lub hasła. Użytkownicy mogą wybrać dowolną istniejącą wartość limitu czasu mniejszą niż maksymalny czas określony w aplikacji Ustawienia. Pamiętaj, że telefony Lumia 950 i 950XL mają maksymalną wartość limitu czasu wynoszącą 5 minut, niezależnie od wartości ustawionej za pomocą tych zasad.",
+ "maxInactivityTime2": "0 (domyślnie) — brak zdefiniowanego limitu czasu. Wartość domyślna „0” jest interpretowana jako „Brak zdefiniowanego limitu czasu”.",
+ "maxPasswordAttempts1": "Zachowanie tych zasad jest inne na urządzeniach przenośnych i komputerach stacjonarnych.",
+ "maxPasswordAttempts2": "Na urządzeniu przenośnym, gdy użytkownik osiągnie wartość ustawioną przy użyciu tych zasad, urządzenie jest czyszczone.",
+ "maxPasswordAttempts3": "Na komputerze stacjonarnym, gdy użytkownik osiągnie wartość ustawioną przy użyciu tych zasad, komputer nie jest czyszczony. Zamiast tego komputer jest przełączany w tryb odzyskiwania funkcji BitLocker, co sprawia, że dane są niedostępne, ale możliwe do odzyskania. Jeśli funkcja BitLocker nie jest włączona, tych zasad nie można wymusić.",
+ "maxPasswordAttempts4": "Przed osiągnięciem limitu nieudanych prób użytkownik jest kierowany do ekranu blokady i ostrzegany o tym, że kolejne nieudane próby spowodują zablokowanie komputera. Gdy użytkownik osiągnie limit, urządzenie zostanie uruchomione ponownie i zostanie wyświetlona strona odzyskiwania funkcji BitLocker. Na tej stronie jest wyświetlany monit o wprowadzenie przez użytkownika klucza odzyskiwania funkcji BitLocker.",
+ "maxPasswordAttempts5": "0 (domyślnie) — urządzenie nie jest nigdy czyszczone po wprowadzeniu nieprawidłowego kodu PIN lub hasła.",
+ "maxPasswordAttempts6": "Najbezpieczniejsza wartość to 0, jeśli wszystkie wartości zasad są równe 0. W przeciwnym razie najbezpieczniejsza jest minimalna wartość zasad.",
+ "mdmDiscoveryUrl": "Określ adres URL dla punktu końcowego rejestracji zarządzania urządzeniami przenośnymi, z którego będą korzystać użytkownicy dokonujący rejestracji w funkcji zarządzania urządzeniami przenośnymi. Domyślnie to ustawienie jest określone dla usługi Intune.",
+ "minimumPinLength1": "Liczba całkowita, która określa wymaganą minimalną liczbę znaków w kodzie PIN. Wartość domyślna wynosi 4. Najniższa wartość, którą można skonfigurować dla tego ustawienia zasad to 4. Najwyższa wartość, którą można skonfigurować, musi być mniejsza niż liczba skonfigurowana w ustawieniu maksymalnej długości kodu PIN w zasadach lub liczba 127, zależnie od tego, która wartość jest niższa.",
+ "minimumPinLength2": "Jeśli to ustawienie zasad zostanie skonfigurowane, długość kodu PIN musi być większa lub równa tej liczbie. Jeśli to ustawienie zasad zostanie wyłączone lub nie zostanie skonfigurowane, długość kodu PIN musi być większa lub równa 4.",
+ "name": "Nazwa tej granicy sieci",
+ "neutralResources": "Jeśli w Twojej firmie są używane punkty końcowe przekierowywania uwierzytelniania, określ je tutaj. Określone tutaj lokalizacje są uznawane za osobiste lub firmowe w zależności od kontekstu połączenia przed przekierowaniem.
Aby określić wiele wartości, można oddzielić poszczególne wpisy przecinkiem.
Przykład: sts.contoso.com,sts.contoso2.com
",
+ "passportForWork1": "Wartość, która ustawia funkcję Windows Hello dla firm jako metodę logowania do systemu Windows.",
+ "passportForWork2": "Wartość domyślna to true. Jeśli dla tych zasad zostanie ustawiona wartość false, użytkownik nie może aprowizować funkcji Windows Hello dla firm, z wyjątkiem telefonów komórkowych dołączonych do usługi Azure Active Directory, które wymagają aprowizacji.",
+ "pinExpiration": "Najwyższa liczba, którą można skonfigurować dla tego ustawienia zasad to 730. Najniższa liczba, którą można skonfigurować dla tego ustawienia zasad to 0. Jeśli dla tych zasad zostanie ustawiona wartość 0, kod PIN użytkownika nigdy nie wygasa.",
+ "pinHistory1": "Najwyższa liczba, którą można skonfigurować dla tego ustawienia zasad to 50. Najniższa liczba, którą można skonfigurować dla tego ustawienia zasad to 0. Jeśli dla tych zasad zostanie ustawiona wartość 0, przechowywanie poprzednich kodów PIN nie jest wymagane.",
+ "pinHistory2": "Bieżący kod PIN użytkownika należy do zestawu kodów PIN skojarzonych z kontem użytkownika. Historia kodów PIN nie jest zachowywana po zresetowaniu kodu PIN.",
+ "protectUnderLock": "Chroni zawartość aplikacji, gdy urządzenie jest w stanie zablokowanym.",
+ "protectionModeBlock": "Blokuj: Blokuje możliwość przeniesienia danych przedsiębiorstwa poza chronione aplikacje.
",
+ "protectionModeOff": "Wyłączone: Użytkownik może przenosić dane poza chronione aplikacje. Żadne akcje nie są rejestrowane.
",
+ "protectionModeOverride": "Zezwalaj na przesłonięcia: Podczas próby przeniesienia danych z aplikacji chronionej do niechronionej użytkownikowi jest wyświetlany monit. W przypadku przesłonięcia tego monitu akcja zostanie zarejestrowana.
",
+ "protectionModeSilent": "Dyskretne: Użytkownik może przenosić dane poza chronione aplikacje. Te akcje są rejestrowane.
",
+ "required": "Wymagane",
+ "revokeOnMdmHandoff": "Dodano w systemie Windows 10 w wersji 1703. Te zasady służą do kontrolowania, czy klucze WIP mają zostać odwołane po uaktualnieniu urządzenia z usługi MAM do usługi MDM. W przypadku ustawienia na wartość „Wyłączone” klucze nie zostaną odwołane, a użytkownik będzie nadal mieć dostęp do chronionych plików po uaktualnieniu. Jest to zalecane, jeśli usługa MDM jest skonfigurowana za pomocą tego samego atrybutu EnterpriseID klucza WIP, co usługa MAM.",
+ "revokeOnUnenroll": "Spowoduje to odwołanie kluczy szyfrowania, gdy rejestracja urządzenia dla tych zasad zostanie anulowana.",
+ "rmsTemplateForEdp": "Identyfikator GUID TemplateID na potrzeby szyfrowania za pomocą usługi RMS. Szablon usługi Azure RMS umożliwia administratorowi IT skonfigurowanie szczegółów dotyczących użytkowników mających dostęp do pliku chronionego przy użyciu usługi RMS oraz okresu, w którym dostęp jest możliwy.",
+ "showWipIcon": "W ten sposób, przez nałożenie ikony, użytkownik jest informowany, że działa w kontekście firmy.",
+ "useRmsForWip": "Określa, czy zezwalać na szyfrowanie przy użyciu usługi Azure RMS na potrzeby funkcji WIP."
+ },
+ "requireAppPin": "Wybierz pozycję Tak, aby wyłączyć numer PIN aplikacji, gdy na zarejestrowanym urządzeniu zostanie wykryta blokada urządzenia.
Uwaga: usługa Intune nie może wykryć rejestracji urządzeń za pomocą rozwiązania EMM innej firmy w systemie iOS/iPadOS.
"
+ },
+ "Autopilot": {
+ "AssignResourceAccount": {
+ "createNewCommandMenu": "Utwórz nowy",
+ "createNewResourceAccountInfo": "\r\nUtwórz nowe konto zasobu podczas rejestracji. Konto zasobu zostanie natychmiast dodane do tabeli kont zasobów, ale nie będzie aktywne do czasu, aż urządzenie zostanie zarejestrowane, a subskrypcja Surface Hub zweryfikowana. Dowiedz się więcej o kontach zasobów
\r\n ",
+ "createNewResourceTitle": "Tworzenie nowego konta zasobu",
+ "deviceNameInvalid": "Nazwa urządzenia ma nieprawidłowy format",
+ "deviceNameRequired": "Nazwa urządzenia jest wymagana",
+ "editResourceAccountLabel": "Edytuj",
+ "selectExistingCommandMenu": "Wybierz istniejące"
+ },
+ "Device": {
+ "ComputerName": {
+ "validFormat": "Nazwy mogą się składać z maksymalnie 15 znaków oraz mogą zawierać litery (a–z, A–Z), cyfry (0–9) i łączniki. Nazwy nie mogą składać się z samych cyfr. Nazwy nie mogą zawierać pustych miejsc."
+ },
+ "Header": {
+ "addressableUserName": "Nazwa przyjazna dla użytkownika",
+ "azureADDevice": "Skojarzone urządzenie usługi Azure AD",
+ "batch": "Tag grupy",
+ "dateAssigned": "Data przypisania",
+ "deviceAccountFriendlyName": "Przyjazna nazwa konta urządzenia",
+ "deviceAccountPwd": "Hasło konta urządzenia",
+ "deviceAccountUpn": "Device account",
+ "deviceDisplayName": "Nazwa urządzenia",
+ "deviceName": "Nazwa urządzenia",
+ "deviceUseType": "Typ użycia urządzenia",
+ "enrollmentState": "Stan rejestracji",
+ "intuneDevice": "Skojarzone urządzenie usługi Intune",
+ "lastContacted": "Ostatni kontakt",
+ "make": "Producent",
+ "model": "Model",
+ "profile": "Przypisany profil",
+ "profileStatus": "Stan profilu",
+ "purchaseOrderId": "Zamówienie zakupu",
+ "resourceAccount": "Konto zasobu",
+ "serialNumber": "Numer seryjny",
+ "userPrincipalName": "Użytkownik"
+ },
+ "SurfaceHub": {
+ "friendlyNameRequired": "Wymagana jest przyjazna nazwa",
+ "pwdRequired": "Wymagane jest hasło",
+ "upnRequired": "Wymagane jest konto urządzenia",
+ "upnValidFormat": "Wartości mogą zawierać litery (a-z, A-Z), cyfry (0-9) i łączniki. Wartości nie mogą zawierać pustego miejsca."
+ }
+ },
+ "DeviceUseType": {
+ "meetingAndPresentation": "Spotkanie i prezentacja",
+ "teamCollaboration": "Współpraca zespołowa"
+ },
+ "Devices": {
+ "featureDescription": "Rozwiązanie Windows Autopilot umożliwia dostosowanie gotowego do użycia środowiska (OOBE) do potrzeb użytkowników.",
+ "importErrorStatus": "Niektóre urządzenia nie zostały zaimportowane. Kliknij tutaj, aby uzyskać więcej informacji.",
+ "importPendingStatus": "Importowanie jest w toku. Czas, który upłynął: {0} min. Ten proces może zająć do {1} min."
+ },
+ "DirectoryService": {
+ "activeDirectoryAD": "Przyłączono hybrydowo do usługi Azure AD",
+ "activeDirectoryADLabel": "Hybrydowa usługa Azure AD z rozwiązaniem Autopilot",
+ "azureAD": "Dołączono do usługi Azure AD",
+ "unknownType": "Nieznany typ"
+ },
+ "Filter": {
+ "enrollmentState": "Stan",
+ "profile": "Stan profilu"
+ },
+ "OOBE": {
+ "AddressableUserName": {
+ "validateEmpty": "Przyjazna nazwa użytkownika nie może być pusta."
+ },
+ "ApplyComputerNameTemplate": {
+ "infoBalloon": "Utwórz szablon nazewnictwa, aby dodać nazwy do urządzeń podczas rejestracji.",
+ "label": "Zastosuj szablon nazwy urządzenia"
+ },
+ "ApplyComputerNameTemplateDisabled": {
+ "label": "Dla profilów wdrażania programu Autopilot typu „Przyłączono hybrydowo do usługi Azure AD” nazwy urządzeń są przypisywane z użyciem ustawień określonych w konfiguracji przyłączania do domeny."
+ },
+ "ComputerNameTemplate": {
+ "emptyValue": "MojaFirma-%RAND:4%",
+ "label": "Wprowadź nazwę",
+ "noDisallowedChars": "Nazwa może zawierać tylko znaki alfanumeryczne i łączniki oraz makro %SERIAL% lub %RAND:x%",
+ "serialLength": "Nie można używać więcej niż 7 znaków w przypadku makra %SERIAL%",
+ "validateLessThan15Chars": "Nazwa może się składać z maksymalnie 15 znaków",
+ "validateNoSpaces": "Nazwy komputerów nie mogą zawierać spacji",
+ "validateNotAllNumbers": "Nazwa musi także zawierać litery i/lub łączniki",
+ "validateNotEmpty": "Nazwa nie może być pusta",
+ "validateOnlyOneMacro": "Nazwa może zawierać tylko jedno makro, %SERIAL% lub %RAND:x%"
+ },
+ "ConfigureComputerNameTemplate": {
+ "description": "Utwórz unikatowe nazwy dla swoich urządzeń. Nazwy mogą się składać z maksymalnie 15 znaków oraz mogą zawierać litery (a–z, A–Z), cyfry (0–9) i łączniki. Nazwy nie mogą zawierać tylko cyfr. Nazwy nie mogą zawierać spacji. Za pomocą makra %SERIAL% możesz dodać numer seryjny specyficzny dla sprzętu. Możesz też użyć makra %RAND:x%, aby dodać losowy ciąg cyfr, gdzie x oznacza liczbę cyfr do dodania."
+ },
+ "EnableWhiteGlove": {
+ "infoBalloon": "Włącz uruchamianie trybu OOBE po naciśnięciu klawisza Windows 5 razy bez uwierzytelniania użytkownika w celu rejestrowania urządzenia i aprowizacji wszystkich aplikacji oraz ustawień w kontekście systemu. Aplikacje i ustawienia w kontekście użytkownika zostaną dostarczone po jego zalogowaniu się.",
+ "label": "Zezwalaj na wstępnie przygotowane wdrożenie"
+ },
+ "HybridAzureADSkipConnectivityCheck": {
+ "infoBalloon": "Przepływ rozwiązania Autopilot dołączenia hybrydowego do usługi Azure AD będzie kontynuował działanie nawet wtedy, gdy nie ustanowi połączenia z kontrolerem domeny w trybie OOBE.",
+ "label": "Pomiń sprawdzanie łączności z usługą AD (wersja zapoznawcza)"
+ },
+ "accountType": "Typ konta użytkownika",
+ "accountTypeInfo": "Określ, czy na urządzeniu użytkownicy są administratorami, czy standardowymi użytkownikami. Należy pamiętać, że to ustawienie nie dotyczy kont administratora globalnego i administratora firmy. Te konta nie mogą być użytkownikami standardowymi, ponieważ mają dostęp do wszystkich funkcji administracyjnych w usłudze Azure AD.",
+ "configOOBEInfo": "\r\nSkonfiguruj środowisko gotowe do użycia dla urządzeń z rozwiązaniem Autopilot\r\n
",
+ "configureDevice": "Tryb wdrożenia",
+ "configureDeviceHintForSurfaceHub2": "Rozwiązanie Autopilot obsługuje dla urządzeń Surface Hub 2 tylko tryb samodzielnego wdrażania. Ten tryb nie powoduje skojarzenia użytkownika z zarejestrowanym urządzeniem, więc nie wymaga poświadczeń użytkownika.",
+ "configureDeviceHintForWindowsPC": "\r\n Tryb wdrożenia służy do kontrolowania, czy użytkownik musi podać poświadczenia w celu aprowizacji urządzenia.\r\n
\r\n \r\n - \r\n Sterowane przez użytkownika: urządzenia są kojarzone z użytkownikiem je rejestrującym, a do aprowizacji urządzenia będą wymagane poświadczenia\r\n
\r\n - \r\n Wdrażanie samodzielne (wersja zapoznawcza): urządzenia nie są kojarzone z użytkownikiem je rejestrującym, a do aprowizacji urządzenia nie będą wymagane poświadczenia\r\n
\r\n
",
+ "createSurfaceHub2Info": "Skonfiguruj ustawienia rejestracji rozwiązania Autopilot dla swoich urządzeń Surface Hub 2. Domyślnie rozwiązanie Autopilot włącza pomijanie uwierzytelniania użytkownika w trybie OOBE.Dowiedz się więcej na temat rozwiązania Windows Autopilot dla urządzeń Surface Hub 2.",
+ "createWindowsPCInfo": "\r\n\r\nNastępujące opcje są automatycznie włączone dla urządzeń rozwiązania Autopilot w trybie samodzielnego wdrażania:\r\n
\r\n\r\n - \r\n Pomiń wybór użycia domowego lub służbowego\r\n
\r\n - \r\n Pomiń rejestrację producenta OEM i konfigurację usługi OneDrive\r\n
\r\n - \r\n Pomiń uwierzytelnianie użytkownika w środowisku OOBE\r\n
\r\n
",
+ "endUserDevice": "Sterowane przez użytkownika",
+ "hideEscapeLink": "Ukryj opcje zmiany konta",
+ "hideEscapeLinkInfo": "Opcje zmiany konta i rozpoczęcia od nowa przy użyciu innego konta są wyświetlane, odpowiednio, podczas początkowej konfiguracji urządzenia na firmowej stronie logowania oraz na stronie błędu domeny. Aby ukryć te opcje, musisz skonfigurować znakowanie firmowe w usłudze Azure Active Directory (wymaga systemu Windows 10 w wersji 1809 lub nowszej albo systemu Windows 11).",
+ "info": "Ustawienia profilu rozwiązania Autopilot służą do definiowania gotowego do użycia środowiska wyświetlanego użytkownikom podczas uruchamiania systemu Windows po raz pierwszy.",
+ "language": "Język (region)",
+ "languageInfo": "Określ język i region, które będą używane.",
+ "licenseAgreement": "Postanowienia licencyjne firmy Microsoft",
+ "licenseAgreementInfo": "Określ, czy użytkownikom ma być wyświetlana Umowa Licencyjna Użytkownika Oprogramowania (EULA).",
+ "plugAndForgetDevice": "Wdrażanie samodzielne (wersja zapoznawcza)",
+ "plugAndForgetGA": "Samodzielne wdrażanie",
+ "privacySettingWarning": "Wartość domyślna zbierania danych diagnostycznych została zmieniona dla urządzeń z systemem Windows 10 w wersji 1903 lub nowszej lub Windows 11.",
+ "privacySettings": "Ustawienia prywatności",
+ "privacySettingsInfo": "Określ, czy użytkownikom mają być wyświetlane ustawienia prywatności.",
+ "showCortanaConfigurationPage": "Konfiguracja Cortany",
+ "showCortanaConfigurationPageInfo": "Opcja „Pokaż” włączy wprowadzenie do konfiguracji Cortany podczas uruchamiania.",
+ "skipEULAWarning": "Ważne informacje na temat ukrywania postanowień licencyjnych",
+ "skipKeyboardSelection": "Automatycznie skonfiguruj klawiaturę",
+ "skipKeyboardSelectionInfo": "W przypadku wartości true pomiń stronę wyboru klawiatury, jeśli ustawiony jest język.",
+ "subtitle": "Profile rozwiązania Autopilot",
+ "title": "Środowisko gotowe do użycia (OOBE, Out-of-box experience)",
+ "useOSDefaultLanguage": "Domyślny systemu operacyjnego",
+ "userSelect": "Wybór użytkownika"
+ },
+ "Sync": {
+ "lastRequestedLabel": "Ostatnie żądanie synchronizacji",
+ "lastSuccessfulLabel": "Ostatnia pomyślna synchronizacja",
+ "syncInProgress": "Synchronizacja jest w toku. Zajrzyj tu ponownie wkrótce.",
+ "syncInitiated": "Zainicjowano synchronizację ustawień rozwiązania Autopilot.",
+ "syncSettingsTitle": "Synchronizuj ustawienia rozwiązania Autopilot"
+ },
+ "Title": {
+ "devices": "Urządzenia rozwiązania Windows AutoPilot"
+ },
+ "Tooltips": {
+ "addressableUserName": "Nazwa powitalna wyświetlana podczas konfiguracji urządzenia.",
+ "azureADDevice": "Przejdź do szczegółów skojarzonego urządzenia. Wartość Brak oznacza, że nie ma żadnego skojarzonego urządzenia.",
+ "batch": "Atrybut w formie ciągu, który może być używany do identyfikowania grupy urządzeń. Pole tagu grupy usługi Intune jest mapowane na atrybut OrderID na urządzeniach usługi Azure AD.",
+ "dateAssigned": "Znacznik czasu przypisania profilu do urządzenia.",
+ "deviceAccountFriendlyName": "Przyjazna nazwa konta urządzenia dla urządzeń Surface Hub",
+ "deviceAccountPwd": "Hasło konta urządzenia dla urządzeń Surface Hub",
+ "deviceAccountUpn": "Adres e-mail konta urządzenia dla urządzeń Surface Hub",
+ "deviceDisplayName": "Skonfiguruj unikatową nazwę urządzenia. Ta nazwa będzie ignorowana we wdrożeniach przyłączonych hybrydowo do usługi Azure AD. Nazwa urządzenia nadal pochodzi z profilu przyłączania do domeny dla urządzeń hybrydowej usługi Azure AD.",
+ "deviceName": "Nazwa pokazywana, gdy ktoś próbuje odnaleźć urządzenie i połączyć się z nim.",
+ "deviceUseType": " Urządzenie zostanie skonfigurowane zgodnie z dokonanym wyborem. Możesz to zawsze zmienić później w ustawieniach. \r\n \r\n - Na potrzeby spotkań i prezentacji funkcja Windows Hello nie jest włączana i dane są usuwane po każdej sesji.\r\n
\r\n - Na potrzeby współpracy zespołowej funkcja Windows Hello jest włączana i zapisywane są profile umożliwiające szybkie logowanie się.
\r\n
",
+ "enrollmentState": "Określa, czy urządzenie zostało zarejestrowane.",
+ "intuneDevice": "Przejdź do szczegółów skojarzonego urządzenia. Wartość Brak oznacza, że nie ma żadnego skojarzonego urządzenia.",
+ "lastContacted": "Znacznik czasu ostatniego kontaktu z urządzeniem.",
+ "make": "Producent wybranego urządzenia.",
+ "model": "Model wybranego urządzenia",
+ "profile": "Nazwa profilu przypisanego do urządzenia.",
+ "profileStatus": "Określa, czy do urządzenia jest przypisany profil.",
+ "purchaseOrderId": "Identyfikator zamówienia zakupu",
+ "resourceAccount": "Tożsamość urządzenia lub główna nazwa użytkownika (UPN).",
+ "serialNumber": "Numer seryjny wybranego urządzenia.",
+ "userPrincipalName": "Użytkownik na potrzeby wstępnego wypełnienia uwierzytelniania podczas konfiguracji urządzenia."
+ },
+ "allDevices": "Wszystkie urządzenia",
+ "allDevicesAlreadyAssignedError": "Profil rozwiązania Autopilot jest już przypisany do wszystkich urządzeń.",
+ "assignFailedDescription": "Nie można zaktualizować przypisań dla profilu {0}.",
+ "assignFailedTitle": "Nie można zaktualizować przypisań profilu rozwiązania Autopilot.",
+ "assignSuccessDescription": "Pomyślnie zaktualizowano przypisania dla profilu {0}.",
+ "assignSuccessTitle": "Pomyślnie zaktualizowano przypisania profilu rozwiązania Autopilot.",
+ "assignSufaceHub2ProfileNextStep": "Następne kroki dla tego wdrożenia",
+ "assignSurfaceHub2ProfileToDeviceGroup": "1. Przypisz ten profil do co najmniej jednej grupy urządzeń",
+ "assignSurfaceHub2ProfileToResourceAccount": "2. Przypisz konto zasobu do każdego urządzenia Surface Hub, na którym wdrożono ten profil",
+ "assignedDevicesCount": "Przypisane urządzenia",
+ "assignedDevicesResourceAccountDescription": "Aby wdrożyć ten profil na urządzeniu, musisz przypisać konto zasobu do urządzenia. Wybieraj po jednym urządzeniu, aby przypisać mu istniejące konto zasobu lub utworzyć nowe. Dowiedz się więcej o kontach zasobów
",
+ "assignedDevicesResourceAccountStatusBarMessage": "Ta tabela zawiera listę tylko tych urządzeń Surface Hub 2, do których przypisano ten profil.",
+ "assigningDescription": "Aktualizowanie przypisań dla profilu {0}.",
+ "assigningTitle": "Aktualizowanie przypisań profilu rozwiązania Autopilot.",
+ "autoremediationContext": "We've detected a hardware change on this device. We're trying to automatically register the new hardware. You don't need to do anything now; the status will be updated at the next check in with the result. Learn more about resetting the profile.",
+ "autoremediationTitle": "Device {0} has a fix pending",
+ "cannotDeleteMessage": "Ten profil jest przypisany do grup. Aby można było go usunąć, należy anulować przypisanie wszystkich grup z tego profilu.",
+ "cannotDeleteTitle": "Nie można usunąć elementu {0}",
+ "createdDateTime": "Utworzono",
+ "deleteMessage": "Jeśli ten profil rozwiązania Autopilot zostanie usunięty, wszystkie urządzenia przypisane do tego profilu będą wyświetlane jako Nieprzypisane.",
+ "deleteMessageWithPolicySet": "Profil {0} jest dołączony do co najmniej jednego zestawu zasad. Jeśli usuniesz profil {0}, nie będzie już można go przypisywać za pomocą tych zestawów zasad.",
+ "deleteTitle": "Czy na pewno chcesz usunąć ten profil?",
+ "description": "Opis",
+ "deviceType": "Typ urządzenia",
+ "deviceUse": "Użycie urządzenia",
+ "directoryServiceHintForSurfaceHub2": " \r\n Rozwiązanie Autopilot obsługuje dla urządzeń Surface Hub 2 tylko ustawienie Dołączono do usługi Azure AD. Określ sposób dołączania urządzeń do usługi Active Directory (AD) w Twojej organizacji.\r\n
\r\n \r\n - \r\n Dołączono do usługi Azure AD: tylko w chmurze bez lokalnej usługi Windows Server Active Directory.\r\n
\r\n
\r\n ",
+ "directoryServiceHintForWindowsPC": "\r\n \r\n Określ sposób dołączania urządzeń do usługi Active Directory (AD) w Twojej organizacji:\r\n
\r\n \r\n - \r\n Dołączono do usługi Azure AD: tylko w chmurze bez lokalnej usługi Windows Server Active Directory\r\n
\r\n
\r\n ",
+ "getAssignedDevicesCountError": "Wystąpił błąd podczas pobierania liczby przypisanych urządzeń.",
+ "getAssignmentsError": "Wystąpił błąd podczas pobierania przypisań profilu rozwiązania Autopilot.",
+ "harvestDeviceId": "Przekonwertuj wszystkie docelowe urządzenia do rozwiązania Autopilot",
+ "harvestDeviceIdDescription": "Domyślnie ten profil można stosować tylko do urządzeń rozwiązania Autopilot zsynchronizowanych z usługi Autopilot.",
+ "harvestDeviceIdInfo": "\r\n Wybierz pozycję Tak, aby zarejestrować wszystkie urządzenia docelowe w rozwiązaniu Autopilot, o ile jeszcze nie zostały zarejestrowane. Gdy następnym razem urządzenia będą przechodzić przez tryb Out of Box Experience (OOBE) systemu Windows, będzie się to odbywać zgodnie z przypisanym scenariuszem rozwiązania Autopilot.\r\n
\r\n Pamiętaj, że niektóre scenariusze rozwiązania Autopilot wymagają konkretnych minimalnych kompilacji systemu Windows. Upewnij się, że na Twoim urządzeniu jest minimalna wymagana kompilacja umożliwiająca przejście scenariusza.\r\n
\r\n Usunięcie tego profilu nie spowoduje usunięcia z rozwiązania Autopilot urządzeń, których on dotyczy. Aby usunąć urządzenie z rozwiązania Autopilot, użyj widoku Urządzenia rozwiązania Windows AutoPilot.\r\n ",
+ "harvestDeviceIdWarning": "Po konwersji urządzenia rozwiązania Autopilot można przywrócić tylko przez usunięcie ich z listy urządzeń rozwiązania Autopilot.",
+ "holoLensCommandMenu": "HoloLens",
+ "info": "Profile wdrażania rozwiązania Windows AutoPilot umożliwiają dostosowywanie środowiska out-of-box experience na Twoich urządzeniach.",
+ "invalidProfileNameMessage": "Znak „{0}” nie jest dozwolony",
+ "joinTypeLabel": "Dołącz do usługi Azure AD jako",
+ "lastModifiedDateTime": "Ostatnia modyfikacja:",
+ "manualRemediationContext": "We've detected a hardware change on this device. It won't automatically receive an Autopilot profile when it's reset unless you register the device again. Learn more about resetting the profile.",
+ "manualRemediationTitle": "Device {0} needs your attention",
+ "name": "Nazwa",
+ "noAutopilotProfile": "Brak profilów rozwiązania Autopilot",
+ "notEnoughPermissionAssignedError": "Nie masz wystarczających uprawnień, aby przypisać ten profil do co najmniej jednej z wybranych grup. Skontaktuj się z administratorem.",
+ "profile": "profil",
+ "resourceAccountStatusBarMessage": "Konto zasobu jest wymagane dla każdego urządzenia Surface Hub 2, do którego zostanie wdrożony ten profil. Kliknij, aby dowiedzieć się więcej.",
+ "selectServices": "Wybierz usługę katalogową, do której zostaną dołączone urządzenia",
+ "surfaceHub2CommandMenu": "Surface Hub 2",
+ "surfaceHub2SCommandMenu": "Surface Hub 2S",
+ "userAffinityLabel": "Tryb wdrożenia",
+ "windowsPCCommandMenu": "Komputer z systemem Windows",
+ "directoryServiceLabel": "Dołącz do usługi Azure AD jako"
},
- "CategoryDescription": {
- "androidGeneralApplicationRestrictions": "Te ustawienia służą do uzyskiwania informacji o użytkownikach instalujących aplikacje, które nie zostały zatwierdzone do użycia w firmie. Wybierz typ listy ograniczonych aplikacji:
\r\n Aplikacje zabronione — otrzymasz powiadomienie, jeśli jakiś użytkownik zainstaluje aplikację z tej listy.
\r\n Zatwierdzone aplikacje — lista aplikacji, które zostały zatwierdzone do użycia w firmie. Otrzymasz powiadomienie, jeśli jakiś użytkownik zainstaluje aplikację spoza tej listy.
\r\n ",
- "androidZebraMxZebraMx": "Konfiguruj urządzenia Zebra, przekazując profil MX w formacie XML.",
- "iosDeviceFeaturesAirprint": "Użyj tych ustawień do skonfigurowania urządzeń z systemem iOS, aby automatycznie nawiązywały połączenie z drukarkami obsługującymi funkcję AirPrint w sieci. Wymagane będą adresy IP i ścieżki zasobów drukarek.",
- "iosDeviceFeaturesExtensibleSingleSignOn": "Skonfiguruj rozszerzenie aplikacji, które umożliwia logowanie jednokrotne dla urządzeń z systemem iOS 13.0 lub nowszym.",
- "iosDeviceFeaturesHomeScreenLayout": "Skonfiguruj układ Docka i ekranów głównych na urządzeniach z systemem iOS. Niektóre urządzenia mogą mieć ograniczenia liczby wyświetlanych elementów.",
- "iosDeviceFeaturesIOSWallpaper": "Wyświetl obraz widoczny na ekranie głównym i/lub na ekranie blokady urządzeń z systemem iOS.\r\n Aby wyświetlać unikatowy obraz w każdym z tych miejsc, utwórz profil z obrazem dla ekranu blokady oraz profil z obrazem dla ekranu głównego.\r\n Następnie przypisz oba profile użytkownikom.\r\n
\r\n \r\n - Maksymalny rozmiar pliku: 750 KB
\r\n - Typ pliku: PNG, JPG lub JPEG
\r\n
\r\n ",
- "iosDeviceFeaturesNotifications": "Określ ustawienia powiadomień dla aplikacji. Obsługuje system iOS 9.3 i nowsze.",
- "iosDeviceFeaturesSharedDevice": "Określ opcjonalny tekst wyświetlany na zablokowanym ekranie. Jest on obsługiwany w systemie iOS 9.3 i nowszych. Dowiedz się więcej",
- "iosGeneralApplicationRestrictions": "Te ustawienia służą do uzyskiwania informacji o użytkownikach instalujących aplikacje, które nie zostały zatwierdzone do użycia w firmie. Wybierz typ listy ograniczonych aplikacji:
\r\n Aplikacje zabronione — otrzymasz powiadomienie, jeśli jakiś użytkownik zainstaluje aplikację z tej listy.
\r\n Zatwierdzone aplikacje — lista aplikacji, które zostały zatwierdzone do użycia w firmie. Otrzymasz powiadomienie, jeśli jakiś użytkownik zainstaluje aplikację spoza tej listy.
\r\n ",
- "iosGeneralApplicationVisibility": "Użyj listy pokazywanych aplikacji, aby określić aplikacje dla systemu iOS, które mogą być wyświetlane lub uruchamiane przez użytkownika. Użyj listy ukrytych aplikacji, aby określić aplikacje dla systemu iOS, które nie mogą być wyświetlane ani uruchamiane przez użytkownika.",
- "iosGeneralAutonomousSingleAppMode": "Aplikacje dodane do tej listy i przypisane do urządzenia mogą blokować urządzenie w celu przetwarzania tylko tej aplikacji po jej uruchomieniu lub blokować urządzenie podczas wykonywania określonej akcji (na przykład rozwiązywania testu). Po wykonaniu akcji lub usunięciu ograniczenia urządzenie powraca do normalnego stanu.",
- "iosGeneralKiosk": "Tryb kiosku blokuje różne ustawienia urządzenia lub określa pojedynczą aplikację, którą można uruchomić na urządzeniu. Może to być przydatne w środowiskach, takich jak sklep, w którym na urządzeniu ma być uruchamiana tylko jedna aplikacja demonstracyjna.",
- "macDeviceFeaturesAirprint": "Użyj tych ustawień do skonfigurowania urządzeń z systemem macOS w celu automatycznego nawiązywania połączenia ze zgodnymi drukarkami AirPrint znajdującymi się w sieci. Konieczna będzie znajomość adresów IP i ścieżek zasobów drukarek.",
- "macDeviceFeaturesAssociatedDomains": "Skonfiguruj skojarzone domeny, aby udostępniać dane i poświadczenia logowania między aplikacjami i witrynami organizacji. Ten profil można zastosować do urządzeń z systemem macOS 10.15 lub nowszym.",
- "macDeviceFeaturesExtensibleSingleSignOn": "Skonfiguruj rozszerzenie aplikacji, które umożliwia logowanie jednokrotne (SSO) dla urządzeń z systemem macOS 10.15 lub nowszym.",
- "macDeviceFeaturesLoginItems": "Wybierz aplikacje, pliki i foldery, które mają być otwierane po zalogowaniu się użytkownika na urządzeniach. Jeśli chcesz zablokować użytkownikom możliwość zmiany sposobu otwierania aplikacji, możesz ukryć aplikację w konfiguracji użytkownika.",
- "macDeviceFeaturesLoginWindow": "Skonfiguruj wygląd ekranu logowania systemu macOS oraz funkcje dostępne dla użytkowników przed i po zalogowaniu.",
- "macExtensionsKernelExtensions": "Te ustawienia służą do konfigurowania zasad rozszerzeń jądra na urządzeniach z systemem macOS 10.13.2 lub nowszym.",
- "macGeneralDomains": "Wiadomości e-mail wysyłane lub odbierane przez użytkownika, które nie pasują do domen określonych w tym miejscu, będą oznaczone jako niezaufane.",
- "windows10EndpointProtectionApplicationGuard": "Podczas korzystania z przeglądarki Microsoft Edge funkcja Microsoft Defender Application Guard chroni Twoje środowisko przed witrynami, które nie zostały zdefiniowane jako zaufane przez Twoją organizację. Gdy użytkownicy odwiedzają witryny, które nie są wymienione w granicach izolowanej sieci, te witryny zostaną otwarte w wirtualnej sesji przeglądania w funkcji Hyper-V. Zaufane lokacje są definiowane przez granicę sieci, którą można ustawić w konfiguracji urządzenia. Ta funkcja jest dostępna tylko dla urządzeń z 64-bitowym systemem Windows 10 lub nowszym.",
- "windows10EndpointProtectionCredentialGuard": "Włączenie funkcji Credential Guard spowoduje włączenie następujących ustawień wymaganych:\r\n
\r\n \r\n - Włącz zabezpieczenia oparte na wirtualizacji: włącza zabezpieczenia oparte na wirtualizacji (VBS) podczas następnego ponownego uruchomienia. Zabezpieczenia oparte na wirtualizacji używają funkcji hypervisor systemu Windows w celu zapewnienia obsługi usług zabezpieczeń.
\r\n
\r\n - Bezpieczny rozruch z bezpośrednim dostępem do pamięci: włącza zabezpieczenia VBS z funkcją bezpiecznego rozruchu i bezpośrednim dostępem do pamięci (DMA).
\r\n
\r\n ",
- "windows10EndpointProtectionDeviceGuard": "Wybierz dodatkowe aplikacje, dla których należy przeprowadzić inspekcję lub które są zaufane do uruchamiania za pomocą Kontroli aplikacji usługi Microsoft Defender. Składniki systemu Windows i wszystkie aplikacje ze Sklepu Windows są automatycznie zaufane do uruchamiania.
\r\n Aplikacje nie będą blokowane podczas uruchamiania w trybie „tylko inspekcja”. W trybie „tylko inspekcja” wszystkie zdarzenia są rejestrowane w dziennikach klienta lokalnego.\r\n ",
- "windows10GeneralPrivacyPerApp": "Dodaj aplikacje, dla których chcesz określić inne zachowanie dotyczące prywatności niż zachowanie zdefiniowane w domyślnym ustawieniu prywatności.",
- "windows10NetworkBoundaryNetworkBoundary": "Granica sieci to lista zasobów przedsiębiorstwa, takich jak domena hostowana w chmurze i zakresy adresów IP komputerów znajdujących się w sieci przedsiębiorstwa. Określ granice sieci, aby stosować zasady i chronić dane przechowywane w tych lokalizacjach.",
- "windowsHealthMonitoring": "Skonfiguruj zasady monitorowania kondycji systemu Windows.",
- "windowsPhoneGeneralApplicationRestrictions": "W systemie Windows Phone można zablokować możliwość instalowania lub uruchamiania przez użytkowników aplikacji określonych na liście zabronionych aplikacji lub aplikacji nieznajdujących się na liście zatwierdzonych aplikacji. Wszystkie zarządzane aplikacje muszą zostać dodane do listy zatwierdzonych aplikacji."
- },
"MinimumOperatingSystem": {
"Android": {
"v10": "Android 10.0",
@@ -2435,6 +1154,304 @@
"excludedGroups": "Wykluczone grupy",
"licenseType": "Typ licencji"
},
+ "TAP": {
+ "AccessRequirements": {
+ "infoText": "Skonfiguruj wymagania dotyczące kodu PIN i poświadczeń, które użytkownicy muszą spełnić, aby uzyskać dostęp do aplikacji w kontekście roboczym."
+ },
+ "DataProtection": {
+ "infoText": "Ta grupa obejmuje kontrole ochrony przed utratą danych, takie jak ograniczenia wycinania, kopiowania, wklejania i zapisywania jako. Te ustawienia określają sposób interakcji użytkowników z danymi w aplikacjach."
+ },
+ "DeviceTypes": {
+ "selectOne": "Wybierz przynajmniej jeden typ urządzenia."
+ },
+ "TargetedApps": {
+ "TargetToAll": {
+ "label": "Jako docelowe ustaw aplikacje na wszystkich typach urządzeń"
+ },
+ "infoText": "Wybierz, w jaki sposób chcesz zastosować te zasady do aplikacji na różnych urządzeniach. Następnie dodaj co najmniej jedną aplikację.",
+ "selectOne": "Wybierz co najmniej jedną aplikację, aby utworzyć zasady."
+ }
+ },
+ "AssignmentAction": {
+ "exclude": "Wykluczone",
+ "include": "Zawarte",
+ "includeAllDevicesVirtualGroup": "Zawarte",
+ "includeAllUsersVirtualGroup": "Zawarte"
+ },
+ "AppType": {
+ "androidEnterpriseSystemApp": "Aplikacja systemu Android Enterprise",
+ "androidForWorkApp": "Aplikacja zarządzanego sklepu Google Play",
+ "androidLobApp": "Aplikacja biznesowa dla systemu Android",
+ "androidStoreApp": "Aplikacja w sklepie dla systemu Android",
+ "builtInAndroid": "Wbudowana aplikacja systemu Android",
+ "builtInApp": "Aplikacja wbudowana",
+ "builtInIos": "Wbudowana aplikacja systemu iOS",
+ "default": "",
+ "iosLobApp": "Aplikacja biznesowa dla systemu iOS",
+ "iosStoreApp": "Aplikacja w sklepie dla systemu iOS",
+ "iosVppApp": "Aplikacja nabyta w programie zakupów zbiorczych dla systemu iOS",
+ "lineOfBusinessApp": "Aplikacja biznesowa",
+ "macOSDmgApp": "macOS app (DMG)",
+ "macOSEdgeApp": "Przeglądarka Microsoft Edge (macOS)",
+ "macOSLobApp": "Aplikacja biznesowa systemu macOS",
+ "macOSMdatpApp": "Microsoft Defender ATP (macOS)",
+ "macOSOfficeSuiteApp": "Aplikacje platformy Microsoft 365 (system macOS)",
+ "macOsVppApp": "Aplikacja nabyta w programie zakupów zbiorczych dla systemu macOS",
+ "managedAndroidLobApp": "Zarządzana aplikacja biznesowa dla systemu Android",
+ "managedAndroidStoreApp": "Zarządzana aplikacja w sklepie dla systemu Android",
+ "managedGooglePlayApp": "Aplikacja zarządzanego sklepu Google Play",
+ "managedGooglePlayPrivateApp": "Prywatna aplikacja zarządzanej usługi Google Play",
+ "managedGooglePlayWebApp": "Link internetowy do zarządzanej usługi Google Play",
+ "managedIosLobApp": "Zarządzana aplikacja biznesowa dla systemu iOS",
+ "managedIosStoreApp": "Zarządzana aplikacja w sklepie dla systemu iOS",
+ "microsoftStoreForBusinessApp": "Aplikacja ze sklepu Microsoft Store dla Firm",
+ "microsoftStoreForBusinessReleaseManagedApp": "Microsoft Store dla Firm",
+ "officeSuiteApp": "Aplikacje Microsoft 365 (Windows 10 i nowszy)",
+ "webApp": "Link sieci Web",
+ "windowsAppXLobApp": "Aplikacja biznesowa AppX systemu Windows",
+ "windowsClassicApp": "Aplikacja systemu Windows (Win32)",
+ "windowsEdgeApp": "Microsoft Edge (system Windows 10 i nowszy)",
+ "windowsMobileMsiLobApp": "Aplikacja biznesowa MSI systemu Windows",
+ "windowsPhone81AppXBundleLobApp": "Aplikacja biznesowa AppX systemu Windows Phone 8.1",
+ "windowsPhone81AppXLobApp": "Aplikacja biznesowa AppX systemu Windows Phone 8.1",
+ "windowsPhone81StoreApp": "Aplikacja ze Sklepu Windows Phone 8.1",
+ "windowsPhoneXapLobApp": "Aplikacja biznesowa XAP systemu Windows Phone",
+ "windowsStoreApp": "Aplikacja ze sklepu Microsoft Store",
+ "windowsUniversalAppXLobApp": "Uniwersalna aplikacja biznesowa AppX systemu Windows",
+ "windowsUniversalLobApp": "Uniwersalna aplikacja biznesowa systemu Windows"
+ },
+ "TAPSettings": {
+ "AllowedDataIngestionLocations": {
+ "label": "Zezwalaj użytkownikom na otwieranie danych z wybranych usług",
+ "tooltip": "Wybierz usługi magazynu aplikacji, z których użytkownicy mogą otwierać dane. Wszystkie inne usługi będą zablokowane. Jeśli nie zostaną wybrane żadne usługi, użytkownicy nie będą mogli otwierać danych."
+ },
+ "AndroidBackup": {
+ "label": "Twórz kopie zapasowe danych organizacji w usługach kopii zapasowych systemu Android",
+ "tooltip": "Wybierz pozycję {0}, aby uniemożliwić tworzenie kopii zapasowych danych organizacji w usługach kopii zapasowych systemu Android. \r\nWybierz pozycję {1}, aby zezwolić na tworzenie kopii zapasowych danych organizacji w usługach kopii zapasowych systemu Android. \r\nNie ma to wpływu na dane osobiste ani niezarządzane."
+ },
+ "AndroidBiometricAuthentication": {
+ "label": "Zabezpieczenia biometryczne zamiast kodu PIN na potrzeby dostępu",
+ "tooltip": "Wybierz, których metod uwierzytelniania systemu Android (jeśli w ogóle) ludzie mogą używać w zastępstwie kodu PIN aplikacji."
+ },
+ "AndroidFingerprint": {
+ "label": "Odcisk palca zamiast kodu PIN na potrzeby dostępu (Android 6.0 lub nowszy)",
+ "tooltip": "System operacyjny Android skanuje odciski palców na potrzeby uwierzytelniania użytkowników urządzeń z systemem Android. Ta funkcja obsługuje natywne kontrolki biometryczne na urządzeniach z systemem Android. Ustawienia biometryczne specyficzne dla producentów OEM, takie jak Samsung Pass, nie są obsługiwane. Jeśli ta funkcja zostanie włączona, w celu uzyskiwania dostępu do aplikacji na urządzeniach, które ją obsługują, muszą być używane natywne kontrolki biometryczne."
+ },
+ "AndroidOverrideFingerprint": {
+ "label": "Zastąp odcisk palca kodem PIN po upłynięciu limitu czasu"
+ },
+ "AppPIN": {
+ "label": "Kod PIN aplikacji, jeśli ustawiono kod PIN urządzenia",
+ "tooltip": "Gdy nie jest wymagany, nie trzeba używać kodu PIN aplikacji na potrzeby dostępu do aplikacji, jeśli został ustawiony kod PIN urządzenia zarejestrowanego w rozwiązaniu do zarządzania urządzeniami przenośnymi.
\r\n\r\nUwaga: usługa Intune nie wykrywa rejestracji urządzeń w rozwiązaniu EMM innej firmy w systemie Android."
+ },
+ "BlockDataIngestionIntoOrganizationDocuments": {
+ "label": "Otwórz dane w dokumentach organizacji",
+ "tooltip1": "Wybierz pozycję Blokuj, aby wyłączyć używanie opcji Otwórz oraz innych opcji udostępniania danych między kontami w tej aplikacji. Wybierz pozycję Zezwalaj, jeśli chcesz zezwolić na używanie opcji Otwórz i innych opcji udostępniania danych między kontami w tej aplikacji.",
+ "tooltip2": "Gdy ustawisz opcję Blokuj, możesz skonfigurować ustawienie Zezwalaj użytkownikowi na otwieranie danych z wybranych usług, aby określić, które usługi są dozwolone dla lokalizacji danych organizacji.",
+ "tooltip3": "Uwaga: to ustawienie jest wymuszane tylko wtedy, gdy ustawienie „Odbierz dane z innych aplikacji” ma wartość „Aplikacje zarządzane przez zasady”.
\r\nUwaga: to ustawienie nie dotyczy wszystkich aplikacji. Aby uzyskać więcej informacji, zobacz {0}.",
+ "tooltip4": "Uwaga: to ustawienie jest wymuszane tylko wtedy, gdy ustawienie „Odbierz dane z innych aplikacji” ma wartość „Aplikacje zarządzane przez zasady”.
\r\nUwaga: to ustawienie nie dotyczy wszystkich aplikacji. Aby uzyskać więcej informacji, zobacz {0} lub {0}."
+ },
+ "ConnectToVpnOnLaunch": {
+ "label": "Uruchamianie połączenia aplikacji Microsoft Tunnel przy uruchamianiu aplikacji",
+ "tooltip": "Zezwalaj na połączenie z siecią VPN po uruchomieniu aplikacji"
+ },
+ "CredentialsForAccess": {
+ "label": "Poświadczenia konta służbowego na potrzeby dostępu",
+ "tooltip": "Jeśli ustawiono jako wymagane, poświadczenia służbowe muszą być używane na potrzeby dostępu do aplikacji zarządzanej przez zasady. Jeśli w celu uzyskania dostępu do tej aplikacji jest również wymagany kod PIN lub metody biometryczne, poświadczenia służbowe będą wymagane dodatkowo."
+ },
+ "CustomBrowserDisplayName": {
+ "label": "Nazwa przeglądarki niezarządzanej",
+ "tooltip": "Wprowadź nazwę aplikacji dla przeglądarki skojarzonej z identyfikatorem przeglądarki niezarządzanej. Ta nazwa będzie wyświetlana użytkownikom, jeśli określona przeglądarka nie jest zainstalowana."
+ },
+ "CustomBrowserPackageId": {
+ "label": "Identyfikator przeglądarki niezarządzanej",
+ "tooltip": "Wprowadź identyfikator aplikacji dla pojedynczej przeglądarki. Zawartość internetowa (HTTP/S) z aplikacji zarządzanych przez zasady będzie otwierana w podanej przeglądarce."
+ },
+ "CustomBrowserProtocol": {
+ "label": "Protokół przeglądarki niezarządzanej",
+ "tooltip": "Wprowadź protokół pojedynczej przeglądarki niezarządzanej. Zawartość internetowa (HTTP/S) z aplikacji zarządzanych przez zasady będzie otwierana w dowolnej aplikacji obsługującej ten protokół.
\r\n \r\nUwaga: uwzględnij jedynie prefiks protokołu. Jeśli przeglądarka wymaga linków w formacie „moja_przeglądarka://www.microsoft.com”, wprowadź wartość „moja_przeglądarka”.
"
+ },
+ "CustomDialerAppDisplayName": {
+ "label": "Nazwa aplikacji"
+ },
+ "CustomDialerAppPackageId": {
+ "label": "Identyfikator pakietu aplikacji"
+ },
+ "CustomDialerAppProtocol": {
+ "label": "Schemat adresu URL aplikacji"
+ },
+ "Cutcopypaste": {
+ "label": "Ogranicz wycinanie, kopiowanie i wklejanie między innymi aplikacjami",
+ "tooltip": "Wycinaj, kopiuj i wklejaj dane między Twoją aplikacją a innymi zatwierdzonymi aplikacjami zainstalowanymi na urządzeniu. Możesz całkowicie zablokować te akcje, zezwolić na ich używanie między aplikacjami lub ograniczyć ich użycie do aplikacji zarządzanych przez organizację.
\r\n\r\nOpcja Aplikacje zarządzane przez zasady z wklejaniem do nich umożliwia akceptowanie przychodzącej zawartości wklejanej z innej aplikacji. Jednak blokuje użytkownikom możliwość udostępniania zawartości na zewnątrz, chyba że jest ona udostępniana aplikacji zarządzanej.
"
+ },
+ "DialerRestrictionLevel": {
+ "iosTooltip": "Zazwyczaj gdy użytkownik wybiera w aplikacji numer telefonu oznaczony jako link, jest otwierana aplikacja do dzwonienia z wstępnie wprowadzonym numerem. W przypadku tego ustawienia wybierz sposób obsługi transferu zawartości tego typu, gdy jest on inicjowany z aplikacji zarządzanej przez zasady. Aby to ustawienie zostało wprowadzone, może być konieczne wykonanie dodatkowych czynności. Najpierw sprawdź, czy aplikacje tel i telprompt zostały usunięte z listy Wybierz aplikacje, które mają być zwolnione. Następnie upewnij się, że aplikacja korzysta z nowszej wersji usługi Intune SDK (wersja 12.7.0 +).",
+ "label": "Ograniczenie transferu zawartości komunikacyjnej",
+ "tooltip": "Zazwyczaj gdy użytkownik wybierze hiperlink numeru telefonu w aplikacji, zostanie otwarta aplikacja do telefonowania z wypełnionym numerem telefonu i gotowym do nawiązania połączenia. Dla tego ustawienia wybierz sposób obsługi transferu tego typu zawartości, gdy zostanie on zainicjowany z poziomu aplikacji zarządzanej przez zasady."
+ },
+ "EncryptData": {
+ "label": "Szyfruj dane organizacji",
+ "link": "https://docs.microsoft.com/pl-pl/intune/app-protection-policy-settings-android#data-relocation-settings",
+ "tooltip": "Wybierz pozycję {0}, aby wymuszać szyfrowanie danych organizacji przy użyciu szyfrowania w warstwie aplikacji usługi Intune.\r\n
\r\nWybierz pozycję {1}, aby nie wymuszać szyfrowania danych organizacji przy użyciu szyfrowania w warstwie aplikacji usługi Intune.\r\n\r\n
\r\nUwaga: aby uzyskać więcej informacji dotyczących szyfrowania w warstwie aplikacji usługi Intune, zobacz {2}."
+ },
+ "EncryptDataAndroid": {
+ "tooltip": "Wybierz pozycję Wymagaj, aby włączyć szyfrowanie danych służbowych w tej aplikacji. Usługa Intune korzysta z 256-bitowego schematu szyfrowania AES OpenSSL oraz magazynu kluczy systemu Android w celu bezpiecznego szyfrowania danych aplikacji. Dane są szyfrowane synchronicznie podczas wykonywania zadań we/wy pliku. Zawartość w pamięci masowej urządzenia jest zawsze szyfrowana. Zestaw SDK będzie nadal zapewniał obsługę 128-bitowych kluczy w celu zapewnienia zgodności z zawartością i aplikacjami korzystającymi ze starszych wersji zestawu SDK.
\r\n\r\nMetoda szyfrowania jest zgodna ze standardem FIPS 140-2.
"
+ },
+ "EncryptDataIos": {
+ "tooltip1": "Wybierz pozycję Wymagaj, aby włączyć szyfrowanie danych służbowych w tej aplikacji. Usługa Intune wymusza szyfrowanie urządzenia z systemem iOS/iPadOS, aby chronić dane aplikacji, gdy urządzenie jest zablokowane. Aplikacje mogą opcjonalnie szyfrować dane aplikacji przy użyciu szyfrowania zestawu Intune APP SDK. Zestaw Intune APP SDK stosuje 128-bitowe szyfrowanie AES danych aplikacji, korzystając z metod kryptograficznych systemu iOS/iPadOS.",
+ "tooltip2": "Włączenie tego ustawienia może spowodować konieczność skonfigurowania i używania kodu PIN przez użytkownika, aby uzyskiwać dostęp do urządzenia. W przypadku braku kodu PIN i wymagania szyfrowania użytkownik będzie monitowany o ustawienie kodu PIN przy użyciu komunikatu „Twoja organizacja wymaga najpierw włączenia kodu PIN urządzenia, aby uzyskać dostęp do tej aplikacji”.",
+ "tooltip3": "Przejdź do oficjalnej dokumentacji firmy Apple, aby sprawdzić, które moduły szyfrowania systemu iOS są zgodne ze standardem FIPS 140-2 lub oczekują na potwierdzenie zgodności ze standardem FIPS 140-2."
+ },
+ "EncryptDataOnEnrolledDevices": {
+ "label": "Szyfruj dane organizacji na zarejestrowanych urządzeniach",
+ "tooltip": "Wybierz pozycję {0}, aby wymuszać szyfrowanie danych organizacji przy użyciu szyfrowania w warstwie aplikacji usługi Intune na wszystkich urządzeniach.
\r\n\r\nWybierz pozycję {1}, aby nie wymuszać szyfrowania danych organizacji przy użyciu szyfrowania w warstwie aplikacji usługi Intune na zarejestrowanych urządzeniach."
+ },
+ "IOSBackup": {
+ "label": "Twórz kopie zapasowe danych organizacji w ramach kopii zapasowych iTunes i iCloud",
+ "tooltip": "Wybierz pozycję {0}, aby uniemożliwić tworzenie kopii zapasowych danych organizacji w usługach iTunes i iCloud. \r\nWybierz pozycję {1}, aby zezwolić na tworzenie kopii zapasowych danych organizacji w usługach iTunes i iCloud. \r\nNie ma to wpływu na dane osobiste ani niezarządzane."
+ },
+ "IOSFaceID": {
+ "label": "Funkcja Face ID zamiast kodu PIN na potrzeby dostępu (iOS 11 lub nowszy/iPadOS)",
+ "tooltip": "Funkcja Face ID uwierzytelnia użytkowników na urządzeniach z systemem iOS/iPadOS za pomocą technologii rozpoznawania twarzy. Usługa Intune wywołuje interfejs API LocalAuthentication, aby uwierzytelnić użytkowników za pomocą funkcji Face ID. Jeśli jest ona dozwolona, funkcja Face ID musi być używana w celu uzyskiwania dostępu do aplikacji na urządzeniu obsługującym tę funkcję."
+ },
+ "IOSOverrideTouchId": {
+ "label": "Zastąp dane biometryczne kodem PIN po upłynięciu limitu czasu"
+ },
+ "IOSTouchId": {
+ "label": "Funkcja Touch ID zamiast kodu PIN na potrzeby dostępu (iOS 8 lub nowszy/iPadOS)",
+ "tooltip": "Funkcja Touch ID uwierzytelnia użytkowników na urządzeniach z systemem iOS za pomocą technologii rozpoznawania odcisku palca. Usługa Intune wywołuje interfejs API LocalAuthentication, aby uwierzytelnić użytkowników za pomocą funkcji Touch ID. Jeśli jest ona dozwolona, funkcja Touch ID musi być używana w celu uzyskiwania dostępu do aplikacji na urządzeniu obsługującym tę funkcję."
+ },
+ "NotificationRestriction": {
+ "label": "Powiadomienia dotyczące danych organizacji",
+ "tooltip": "Wybierz jedną z następujących opcji, aby określić sposób wyświetlania powiadomień dla kont organizacji w przypadku tej aplikacji i wszystkich połączonych urządzeń, takich jak urządzenia do noszenia na sobie:
\r\n{0}: Nie udostępniaj powiadomień.
\r\n{1}: Nie udostępniaj danych organizacji w powiadomieniach. Jeśli ta opcja nie jest obsługiwana przez aplikację, powiadomienia są blokowane.
\r\n{2}: Udostępniaj wszystkie powiadomienia.
\r\n Tylko dla systemu Android:\r\n Uwaga: to ustawienie nie dotyczy wszystkich aplikacji. Aby uzyskać więcej informacji, zobacz {3}
\r\n \r\nTylko dla systemu iOS:\r\nUwaga: to ustawienie nie dotyczy wszystkich aplikacji. Aby uzyskać więcej informacji, zobacz {4}
"
+ },
+ "OpenLinksManagedBrowser": {
+ "label": "Ogranicz transfer zawartości internetowej dla innych aplikacji",
+ "tooltip": "Wybierz jedną z następujących opcji, aby określić aplikacje, w których ta aplikacja może otwierać zawartość internetową:
\r\nEdge: zezwalaj na otwieranie zawartości internetowej tylko w przeglądarce Edge
\r\nPrzeglądarka niezarządzana: zezwalaj na otwieranie zawartości internetowej tylko w przeglądarce niezarządzanej zdefiniowanej w ustawieniu „Protokół przeglądarki niezarządzanej”
\r\nDowolna aplikacja: zezwalaj na otwieranie linków internetowych w dowolnej aplikacji
"
+ },
+ "OverrideBiometric": {
+ "tooltip": "Jeśli ustawiono jako wymagane, w zależności od limitu czasu (liczby minut nieaktywności), monit o podanie kodu PIN zastąpi monity o dane biometryczne. Jeśli limit czasu nie zostanie przekroczony, monit dane biometryczne będzie nadal wyświetlany. Wartość limitu czasu powinna być większa niż wartość podana w pozycji „Ponownie sprawdź wymagania dostępu po (w minutach nieaktywności)”."
+ },
+ "PinAccess": {
+ "label": "Kod PIN na potrzeby dostępu",
+ "tooltip": "Jeśli ustawiono jako wymagane, kod PIN musi być używany w celu uzyskiwania dostępu do aplikacji zarządzanej przez zasady. Użytkownicy muszą utworzyć kod PIN dostępu, gdy po raz pierwszy otworzą aplikację, korzystając z konta służbowego."
+ },
+ "PinLength": {
+ "label": "Wybierz minimalną długość kodu PIN",
+ "tooltip": "To ustawienie określa minimalną liczbę cyfr w numerze PIN."
+ },
+ "PinType": {
+ "label": "Typ kodu PIN",
+ "tooltip": "Liczbowe kody PIN składają się wyłącznie z cyfr. Kody dostępu składają się ze znaków alfanumerycznych i znaków specjalnych."
+ },
+ "Printing": {
+ "label": "Drukowanie danych organizacji",
+ "tooltip": "W przypadku zablokowania aplikacja nie może drukować chronionych danych."
+ },
+ "ReceiveData": {
+ "label": "Odbierz dane z innych aplikacji",
+ "tooltip": "Wybierz jedną z poniższych opcji, aby określić aplikacje, od których ta aplikacja może odbierać dane:
\r\n\r\nBrak: nie zezwalaj na odbieranie danych w ramach kont lub dokumentów organizacji z żadnej aplikacji
\r\n\r\nAplikacje zarządzane przez zasady: zezwalaj na odbieranie danych w ramach kont lub dokumentów organizacji tylko z innych aplikacji zarządzanych przez zasady\r\n
\r\nDowolna aplikacja z przychodzącymi danymi organizacji: zezwalaj na odbieranie danych w ramach kont lub dokumentów organizacji z dowolnej aplikacji i traktuj wszystkie przychodzące dane bez konta użytkownika jako dane organizacji
\r\n\r\nWszystkie aplikacje: zezwalaj na odbieranie danych w ramach kont lub dokumentów organizacji z dowolnej aplikacji"
+ },
+ "RecheckAccessAfter": {
+ "label": "Ponownie sprawdź wymagania dostępu po (w minutach nieaktywności)\r\n\r\n",
+ "tooltip": "Jeśli aplikacja zarządzana przez zasady jest nieaktywna przez czas dłuższy niż podana liczba minut nieaktywności, będzie monitować o ponowne sprawdzenie wymagań dostępu (tzn. kodu PIN, ustawień uruchamiania warunkowego) po uruchomieniu aplikacji."
+ },
+ "RestrictKeyboards": {
+ "duplicatePackageError": "Identyfikator pakietu musi być unikatowy.",
+ "invalidPackageError": "Nieprawidłowy identyfikator pakietu",
+ "label": "Zatwierdzone klawiatury",
+ "select": "Wybierz klawiatury do zatwierdzenia",
+ "subtitle": "Dodaj wszystkie klawiatury i metody wprowadzania, z których użytkownicy mają móc korzystać w aplikacjach docelowych. Wprowadź nazwę klawiatury w postaci, która ma być wyświetlana użytkownikowi końcowemu.",
+ "title": "Dodaj zatwierdzone klawiatury",
+ "toolTip": "Wybierz pozycję Wymagaj, a następnie określ listę zatwierdzonych klawiatur dla tych zasad. Dowiedz się więcej. "
+ },
+ "SaveData": {
+ "label": "Zapisz kopie danych organizacji",
+ "tooltip": "Wybierz pozycję {0}, aby uniemożliwić zapisywanie kopii danych organizacji w nowej lokalizacji, z wyjątkiem wybranych usług magazynu, za pomocą opcji „Zapisz jako”.\r\nWybierz pozycję {1}, aby zezwolić na zapisywanie kopii danych organizacji w nowej lokalizacji za pomocą opcji „Zapisz jako”.
\r\n\r\n\r\nUwaga: to ustawienie nie ma zastosowania do wszystkich aplikacji. Aby uzyskać więcej informacji, zobacz {2}.\r\n"
+ },
+ "SaveDataToSelected": {
+ "label": "Zezwalaj użytkownikowi na zapisywanie kopii w wybranych usługach",
+ "tooltip": "Wybierz usługi magazynu, w których użytkownicy mogą zapisywać kopie danych organizacji. Wszystkie inne usługi będą zablokowane. Jeśli nie zostaną wybrane żadne usługi, użytkownicy nie będą mogli zapisywać kopii danych organizacji."
+ },
+ "ScreenCaptureAndAndroidAssistant": {
+ "label": "Przechwytywanie ekranu i Asystent Google\r\n",
+ "tooltip": "Jeśli to ustawienie jest zablokowane, możliwości skanowania aplikacji zarówno przechwytywania ekranu, jak i Asystenta Google będą wyłączone podczas korzystania z aplikacji zarządzanej przez zasady. Ta funkcja obsługuje zwykłą aplikację Asystent Google. Asystenci innych firm korzystający z interfejsu API Assist firmy Google nie są obsługiwani. Wybranie pozycji Blokuj spowoduje również rozmycie obrazu podglądu na liście aplikacji podczas korzystania z tej aplikacji przy użyciu konta służbowego."
+ },
+ "SendData": {
+ "label": "Wyślij dane organizacji do innych aplikacji",
+ "tooltip": "Wybierz jedną z poniższych opcji, aby określić aplikacje, do których ta aplikacja może wysyłać dane organizacji:
\r\n\r\n\r\nBrak: nie zezwalaj na wysyłanie danych organizacji do żadnej aplikacji
\r\n\r\n\r\nAplikacje zarządzane przez zasady: zezwalaj na wysyłanie danych organizacji tylko do innych aplikacji zarządzanych przez zasady
\r\n\r\n\r\nAplikacje zarządzane przez zasady z udostępnianiem systemu operacyjnego: zezwalaj na wysyłanie danych organizacji tylko do innych aplikacji zarządzanych przez zasady oraz na wysyłanie dokumentów organizacji do innych aplikacji zarządzanych przez funkcję MDM na zarejestrowanych urządzeniach
\r\n\r\n\r\nAplikacje zarządzane przez zasady z filtrowaniem okien dialogowych otwierania/udostępniania: zezwalaj na wysyłanie danych organizacji tylko do innych aplikacji zarządzanych przez zasady i filtruj okna dialogowe systemu operacyjnego do otwierania/udostępniania tak, aby wyświetlały tylko aplikacje zarządzane przez zasady\r\n
\r\n\r\nWszystkie aplikacje: zezwalaj na wysyłanie danych organizacji do dowolnej aplikacji"
+ },
+ "SimplePin": {
+ "label": "Prosty kod PIN",
+ "tooltip": "W przypadku zablokowania użytkownicy nie będą mogli tworzyć prostych kodów PIN. Prosty kod PIN to ciąg kolejnych lub powtarzających się cyfr, na przykład 1234, ABCD lub 1111. Pamiętaj, że po zablokowaniu prostego kodu PIN typu „Kod dostępu” kody dostępu będą musiały zawierać co najmniej jedną cyfrę, co najmniej jedną literę i co najmniej jeden znak specjalny."
+ },
+ "SyncContacts": {
+ "label": "Synchronizuj dane aplikacji zarządzanej z aplikacjami natywnymi lub dodatkami"
+ },
+ "ThirdPartyKeyboards": {
+ "infoBox": "Ograniczenia klawiatury zostaną zastosowane do wszystkich obszarów aplikacji. To ograniczenie będzie miało wpływ na konta osobiste dla aplikacji, które obsługują wiele tożsamości. Dowiedz się więcej.",
+ "label": "Klawiatury innych firm"
+ },
+ "Timeout": {
+ "label": "Limit czasu (w minutach nieaktywności)"
+ },
+ "Tap": {
+ "numberOfDays": "Liczba dni",
+ "pinResetAfterNumberOfDays": "Zresetowanie numeru PIN po upływie pewnej liczby dni",
+ "previousPinBlockCount": "Wybierz liczbę poprzednich wartości kodu PIN do zachowania"
+ }
+ },
+ "ScheduledAction": {
+ "Form": {
+ "editBlockActionInfo": "Jedna akcja blokowania jest wymagana dla wszystkich zasad zgodności.",
+ "graceperiod": "Harmonogram (dni po stwierdzeniu niezgodności)",
+ "graceperiodInfo": "Określ liczbę dni po stwierdzeniu niezgodności, po których ta akcja powinna być wyzwolona wobec urządzenia użytkownika",
+ "subtitle": "Określ parametry akcji",
+ "title": "Parametry akcji"
+ },
+ "List": {
+ "gracePeriodDay": "{0} dzień po stwierdzeniu niezgodności",
+ "gracePeriodDays": "{0} dni po stwierdzeniu niezgodności",
+ "gracePeriodHour": "{0} godz. po stwierdzeniu niezgodności",
+ "gracePeriodHours": "{0} godz. po stwierdzeniu niezgodności",
+ "gracePeriodMinute": "{0} min po stwierdzeniu niezgodności",
+ "gracePeriodMinutes": "{0} min po stwierdzeniu niezgodności",
+ "immediately": "Natychmiast",
+ "schedule": "Harmonogram",
+ "scheduleInfoBalloon": "Liczba dni po niezgodności",
+ "subtitle": "Określ sekwencję akcji wykonywanych wobec niezgodnych urządzeń",
+ "title": "Akcje"
+ },
+ "Notification": {
+ "additionalEmailLabel": "Inne",
+ "additionalRecipients": "Dodatkowi odbiorcy (za pośrednictwem poczty e-mail)",
+ "additionalRecipientsBladeTitle": "Wybierz dodatkowych adresatów",
+ "emailAddressPrompt": "Podaj adresy e-mail (rozdzielone przecinkami)",
+ "invalidEmail": "Nieprawidłowy adres e-mail",
+ "messageTemplate": "Szablon wiadomości",
+ "noneSelected": "Nie wybrano niczego",
+ "notSelected": "Nie wybrano",
+ "numSelected": "wybrano: {0}",
+ "selected": "Wybrano"
+ },
+ "block": "Oznacz urządzenie jako niezgodne",
+ "lockDevice": "Zablokuj urządzenie (akcja lokalna)",
+ "lockDeviceWithPasscode": "Zablokuj urządzenie (akcja lokalna)",
+ "noAction": "Brak akcji",
+ "noActionRow": "Brak akcji, wybierz opcję „Dodaj”, aby dodać akcję",
+ "pushNotification": "Wyślij powiadomienie push do użytkownika końcowego",
+ "remoteLock": "Zdalne zablokowanie niezgodnego urządzenia",
+ "removeSourceAccessProfile": "Usuń źródłowy profil dostępu",
+ "retire": "Wycofaj niezgodne urządzenie",
+ "wipe": "Wyczyść",
+ "emailNotification": "Wyślij wiadomość e-mail do użytkownika końcowego"
+ },
+ "InstallIntent": {
+ "available": "Dostępne dla zarejestrowanych urządzeń",
+ "availableWithoutEnrollment": "Dostępne z rejestracją lub bez niej",
+ "required": "Wymagane",
+ "uninstall": "Odinstaluj"
+ },
"EnrollmentStatusScreen": {
"Apps": {
"managedApps": "Aplikacje zarządzane",
@@ -2466,142 +1483,61 @@
"resetToggle": "Zezwalaj użytkownikom na resetowanie urządzenia, jeśli wystąpi błąd instalacji",
"timeout": "Pokaż błąd, jeśli instalacja trwa dłużej niż określona liczba minut"
},
- "EnrollmentType": {
- "devicesWithEnrollment": "Urządzenia zarządzane",
- "devicesWithoutEnrollment": "Aplikacje zarządzane"
- },
- "ApplicabilityRules": {
- "GridLabel": {
- "property": "Właściwość",
- "rule": "Reguła",
- "ruleDetails": "Szczegóły reguły",
- "value": "Wartość"
- },
- "assignIf": "Przypisz profil, jeżeli",
- "deleteWarning": "Spowoduje to usunięcie wybranej reguły stosowania",
- "dontAssignIf": "Nie przypisuj profilu, jeżeli",
- "editionDisplayText": "{0} {1}",
- "editionDisplayTextMore": "i {0} więcej",
- "instructions": "Określ sposób stosowania tego profilu w przypisanej grupie. Usługa Intune zastosuje profil tylko do urządzeń, które spełniają połączone kryteria tych reguł.",
- "maxText": "Maksymalna",
- "minText": "Minimalna",
- "noActionRow": "Nie określono reguł stosowania",
- "oSVersion": "np. 1.2.3.4",
- "toText": "do",
- "windows10Education": "Windows 10/11 Education",
- "windows10EducationN": "Windows 10/11 Education N",
- "windows10Enterprise": "Windows 10/11 Enterprise",
- "windows10EnterpriseN": "Windows 10/11 Enterprise N",
- "windows10HolographicEnterprise": "Windows 10 Holographic for Business",
- "windows10Home": "Windows 10/11 Home",
- "windows10HomeChina": "Windows 10 Home (Chiny)",
- "windows10HomeN": "Windows 10/11 Home N",
- "windows10HomeSingleLanguage": "Windows 10/11 Home — pojedynczy język",
- "windows10IoTCore": "Windows 10 IoT Core",
- "windows10IoTCoreCommercial": "Windows 10 IoT Core Commercial",
- "windows10Mobile": "Windows 10 Mobile",
- "windows10MobileEnterprise": "Windows 10 Mobile Enterprise",
- "windows10OsEdition": "Wersja systemu operacyjnego",
- "windows10OsVersion": "Wersja systemu operacyjnego",
- "windows10Professional": "Windows 10/11 Professional",
- "windows10ProfessionalEducation": "Windows 10/11 Professional Education",
- "windows10ProfessionalEducationN": "Windows 10/11 Professional Education N",
- "windows10ProfessionalN": "Windows 10 Professional N",
- "windows10ProfessionalWorkstation": "Stacja robocza z systemem Windows 10/11 Professional",
- "windows10ProfessionalWorkstationN": "Stacja robocza N systemu Windows 10/11 Professional"
+ "Devices": {
+ "General": {
+ "android": "Android"
+ },
+ "aOSP": "Projekt open source systemu Android",
+ "android": "Administrator urządzeń z systemem Android",
+ "androidWorkProfile": "Android Enterprise (profil służbowy)",
+ "iOS": "iOS/iPadOS",
+ "mac": "macOS",
+ "windows": "Windows (MDM)",
+ "windows10": "Windows 10 i nowsze",
+ "windowsHomeSku": "Jednostka SKU systemu Windows Home",
+ "windowsMobile": "Windows Mobile"
+ },
+ "AppInfoBalloonText": {
+ "Certificate": {
+ "customSubjectName": "CN={{UserName}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US\r\nor\r\nCN={{AAD_Device_ID}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US",
+ "keySize": "Wybierz liczbę bitów zawartych w kluczu.",
+ "keyUsage": "Określ akcję kryptograficzną, która jest wymagana w celu wymiany klucza publicznego certyfikatu.",
+ "renewalThreshold": "Wprowadź procent (od 1 do 99) dozwolonego pozostałego okresu istnienia certyfikatu, zanim urządzenie będzie mogło żądać jego odnowienia. Wartość zalecana w usłudze Intune to 20%. (1–99)",
+ "rootCert": "Wybierz wcześniej skonfigurowany i przypisany profil certyfikatu głównego urzędu certyfikacji. Certyfikat urzędu certyfikacji musi być zgodny z certyfikatem głównym urzędu certyfikacji, który wystawia certyfikat dla tego profilu (ten, który jest obecnie konfigurowany).",
+ "scepServerUrl": "Wprowadź adres URL serwera usługi NDES, który wystawia certyfikaty za pośrednictwem protokołu SCEP (musi to być adres HTTPS). Przykład: https://contoso.com/certsrv/mscep/mscep.dll",
+ "scepServerUrls": "Dodaj co najmniej jeden adres URL serwera usługi NDES, który wystawia certyfikaty za pośrednictwem protokołu SCEP (musi to być adres HTTPS). Przykład: https://contoso.com/certsrv/mscep/mscep.dll",
+ "subjectAlternativeName": "Alternatywna nazwa obiektu",
+ "subjectNameFormat": "Format nazwy obiektu",
+ "validityPeriod": "Czas pozostały do wygaśnięcia certyfikatu. Wprowadź wartość, która jest mniejsza niż lub równa okresowi ważności wyświetlanemu w szablonie certyfikatu. Wartość domyślna to jeden rok."
+ },
+ "appInstallContext": "Określa kontekst instalacji do skojarzenia z tą aplikacją. W przypadku aplikacji z dwoma trybami wybierz żądany kontekst aplikacji. W przypadku wszystkich innych aplikacji ta opcja jest wstępnie wybrana na podstawie pakietu i nie można jej zmodyfikować.",
+ "autoUpdateMode": "Skonfiguruj priorytet aktualizacji dla tej aplikacji. Wybierz ustawienie Domyślnie, aby wymagać łączenie urządzenia z siecią Wi-Fi, jego zasilanie i ograniczenie w użytkowaniu przed aktualizacją aplikacji. Wybierz ustawienie Wysoki priorytet, aby zaktualizować aplikację, gdy tylko deweloper opublikuje aplikację, niezależnie od stanu naładowania, możliwości sieci Wi-Fi lub aktywności użytkownika końcowego na urządzeniu. Wybierz ustawienie Odroczono, aby zrezygnować z aktualizacji aplikacji na maksymalnie 90 dni. Ustawienia Wysoki priorytet i Odroczono będą obowiązywać tylko na urządzeniach DO.",
+ "configurationSettingsFormat": "Tekst formatu ustawień konfiguracji",
+ "ignoreVersionDetection": "Ustaw tę opcję na wartość „Tak” dla aplikacji automatycznie aktualizowanych przez dewelopera aplikacji (np. Google Chrome).",
+ "ignoreVersionDetectionMacOSLobApp": "Wybierz pozycję „Tak” w przypadku aplikacji, które są automatycznie aktualizowane przez dewelopera, lub aby przed instalacją sprawdzić tylko identyfikator bundleID aplikacji. Wybierz pozycję „Nie”, aby przed instalacją sprawdzić numer wersji i identyfikator bundleID aplikacji.",
+ "installAsManagedMacOSLobApp": "To ustawienie dotyczy tylko systemu macOS 11 i nowszych. Aplikacja zostanie zainstalowana w systemie macOS 10.15 lub starszym, ale nie będzie zarządzana.",
+ "installContextDropdown": "Wybierz odpowiedni kontekst instalacji. W przypadku kontekstu użytkownika aplikacja zostanie zainstalowana tylko dla użytkownika docelowego, a w przypadku kontekstu urządzenia — dla wszystkich użytkowników na urządzeniu.",
+ "ldapUrl": "To jest nazwa hosta LDAP, z którego klienci mogą uzyskać publiczne klucze szyfrowania dla adresatów poczty e-mail. Wiadomości e-mail będą szyfrowane, gdy klucz jest dostępny. Obsługiwane formaty: - ldap.example.com
\r\n- ldap.example.com:123
\r\n- ldap://ldap.example.com
- ldap://ldap.example.com:123
- ldaps://ldap.example.com
\r\n- ldaps://ldap.example.com:123
",
+ "permissionsSettings": "Wybierz uprawnienia w środowisku uruchomieniowym dla skojarzonej aplikacji.",
+ "policyAssociatedApp": "Wybierz aplikację, z którą będą skojarzone te zasady.",
+ "policyConfigurationSettings": "Wybierz metodę, z pomocą której chcesz zdefiniować ustawienia konfiguracji tych zasad.",
+ "policyDescription": "Opcjonalnie możesz podać opis tych zasad konfiguracji.",
+ "policyEnrollmentType": "Wybierz, czy te ustawienia są zarządzane za pośrednictwem zarządzania urządzeniami, czy aplikacji utworzonych przy użyciu zestawu SDK usługi Intune.",
+ "policyName": "Wprowadź nazwę tych zasad konfiguracji.",
+ "policyPlatform": "Wybierz platformę, do której zostaną zastosowane te zasady konfiguracji aplikacji.",
+ "policyProfileType": "Wybierz typy profilów urządzeń, do których będzie stosowany ten profil konfiguracji aplikacji",
+ "policySMime": "Skonfiguruj ustawienia podpisywania i szyfrowania S/MIME dla programu Outlook.",
+ "sMimeDeployCertsFromIntune": "Określ, czy certyfikaty S/MIME mają być dostarczane z usługi Intune w celu użycia w programie Outlook.\r\nUsługa Intune może automatycznie wdrażać dla użytkowników certyfikaty podpisywania i szyfrowania za pośrednictwem Portalu firmy.",
+ "sMimeEnable": "Określ, czy kontrolki S/MIME są włączone podczas tworzenia wiadomości e-mail",
+ "sMimeEnableAllowChange": "Określ, czy użytkownik może zmieniać ustawienie Włącz protokół S/MIME.",
+ "sMimeEncryptAllEmails": "Określ, czy wszystkie wiadomości e-mail muszą być szyfrowane.\r\nSzyfrowanie konwertuje dane na zaszyfrowany tekst, dzięki czemu może je odczytać tylko adresat.",
+ "sMimeEncryptAllEmailsAllowChange": "Określ, czy użytkownik może zmieniać ustawienie Szyfruj wszystkie wiadomości e-mail.",
+ "sMimeEncryptionCertProfile": "Określ profil certyfikatu na potrzeby szyfrowania wiadomości e-mail.",
+ "sMimeSignAllEmails": "Określ, czy wszystkie wiadomości e-mail muszą być podpisywane.\r\nPodpis cyfrowy weryfikuje autentyczność wiadomości e-mail i zapewnia, że zawartość nie została zmodyfikowana podczas przesyłania.",
+ "sMimeSignAllEmailsAllowChange": "Określ, czy użytkownik może zmieniać ustawienie Podpisuj wszystkie wiadomości e-mail.",
+ "sMimeSigningCertProfile": "Określ profil certyfikatu na potrzeby podpisywania wiadomości e-mail.",
+ "sMimeUserNotificationType": "Metoda powiadamiania użytkowników o konieczności otworzenia Portalu firmy w celu pobrania certyfikatów S/MIME na potrzeby programu Outlook."
},
- "BooleanActions": {
- "allow": "Zezwalaj",
- "block": "Blokuj",
- "configured": "Skonfigurowane",
- "disable": "Wyłącz",
- "dontRequire": "Nie wymagaj",
- "enable": "Włącz",
- "hide": "Ukryj",
- "limit": "Limit",
- "notConfigured": "Nieskonfigurowane",
- "require": "Wymagaj",
- "show": "Pokaż",
- "yes": "Tak"
- },
- "ProactiveRemediations": {
- "Create": {
- "Basics": {
- "DescriptionMultiLineTextBox": {
- "label": "Opis",
- "placeholder": "Wprowadź opis"
- },
- "NameTextBox": {
- "label": "Nazwa",
- "placeholder": "Wprowadź nazwę"
- },
- "PublisherTextBox": {
- "label": "Wydawca",
- "placeholder": "Wprowadź wydawcę"
- },
- "VersionTextBox": {
- "label": "Wersja"
- },
- "headerDescription": "Utwórz nowy niestandardowy pakiet skryptu na podstawie napisanych przez siebie skryptów wykrywania i korygowania."
- },
- "ScopeTags": {
- "headerDescription": "Wybierz co najmniej jedną grupę, aby przypisać pakiet skryptów."
- },
- "Settings": {
- "DetectionScriptMultiLineTextBox": {
- "label": "Skrypt wykrywania",
- "placeholder": "Tekst skryptu wejściowego",
- "requiredValidationMessage": "Wprowadź skrypt wykrywania"
- },
- "EnforceScriptSignatureCheckOptionPicker": {
- "label": "Wymuszaj sprawdzanie podpisu skryptu"
- },
- "LoggedOnCredentialsOptionPicker": {
- "label": "Uruchom ten skrypt, używając poświadczeń zalogowanego użytkownika"
- },
- "RemediationScript": {
- "infoBox": "Ten skrypt zostanie uruchomiony w trybie tylko wykrywania, ponieważ nie ma skryptu korygującego."
- },
- "RemediationScriptMultiLineTextBox": {
- "label": "Skrypt korygujący",
- "placeholder": "Tekst skryptu wejściowego"
- },
- "RunIn64BitPSOptionPicker": {
- "label": "Uruchom skrypt w 64-bitowym programie PowerShell"
- },
- "ScriptMultiLineTextBox": {
- "base64EncodingValidationMessage": "Nieprawidłowy skrypt. Co najmniej jeden znak użyty w skrypcie jest nieprawidłowy."
- },
- "headerDescription": "Utwórz niestandardowy pakiet skryptów na podstawie napisanych przez siebie skryptów. Domyślnie skrypty będą uruchamiane na przypisanych urządzeniach każdego dnia.",
- "infoBox": "Ten skrypt jest tylko do odczytu. Niektóre ustawienia dla tego skryptu mogą być wyłączone."
- },
- "title": "Utwórz niestandardowy skrypt",
- "ScriptProperties": {
- "GridHeaders": {
- "interval": "Interwał",
- "time": "Data i godzina"
- },
- "Interval": {
- "day": "Powtarzane codziennie",
- "days": "Powtarzane co {0} dni",
- "hour": "Powtarzane co godzinę",
- "hours": "Powtarzane co {0} godz.",
- "month": "Powtarzane co miesiąc",
- "months": "Powtarzane co {0} mies.",
- "week": "Powtarzane co tydzień",
- "weeks": "Powtarzane co {0} tyg."
- },
- "Time": {
- "utc": "{0} (UTC)",
- "utcWithDate": "{0} (UTC) {1}",
- "withDate": "{0} {1}"
- }
- }
- },
- "Edit": {
- "title": "Edycja — {0}"
- }
- },
"WindowsManagement": {
"Assignment": {
"noAssignmentCustomAttributeDisplayText": "Przypisz atrybut niestandardowy do co najmniej jednej grupy. Przejdź do właściwości, aby edytować przypisania.",
@@ -2708,910 +1644,6 @@
"shellScriptObjectName": "Skrypt powłoki",
"successfullySavedPolicy": "Zapisano zasady {0}"
},
- "AssignmentFilters": {
- "assignmentFilterColumnHeader": "Filtruj",
- "noFilters": "Brak"
- },
- "Category": {
- "airPlay": "AirPlay",
- "airPrint": "AirPrint",
- "androidDefenderAtp": "Microsoft Defender dla punktu końcowego",
- "androidDeviceOwnerApplications": "Aplikacje",
- "androidForWorkPassword": "Hasło urządzenia",
- "appManagement": "Zezwalaj na aplikacje lub blokuj je",
- "applicationGuard": "Microsoft Defender Application Guard",
- "applicationRestrictions": "Aplikacje z ograniczeniami",
- "applicationVisibility": "Pokaż lub ukryj aplikacje",
- "applications": "App Store",
- "applicationsAndGames": "Sklep App Store, wyświetlanie dokumentów, granie",
- "applicationsAndGoogle": "Sklep Google Play",
- "appsAndExperience": "Aplikacje i środowisko",
- "associatedDomains": "Skojarzone domeny",
- "autonomousSingleAppMode": "Autonomiczny tryb pojedynczej aplikacji",
- "azureOperationalInsights": "Azure Operational Insights",
- "bitLocker": "Szyfrowanie systemu Windows",
- "browser": "Przeglądarka",
- "builtinApps": "Aplikacje wbudowane",
- "cellular": "Sieć komórkowa",
- "cloudAndStorage": "Chmura i magazyn",
- "cloudPrint": "Drukarka w chmurze",
- "complianceEmailProfile": "Wiadomość e-mail",
- "connectedDevices": "Połączone urządzenia",
- "connectivity": "Sieć komórkowa i łączność",
- "contentCaching": "Buforowanie zawartości",
- "controlPanelAndSettings": "Panel sterowania i Ustawienia",
- "credentialGuard": "Microsoft Defender Credential Guard",
- "customCompliance": "Zgodność niestandardowa",
- "customCompliancePreview": "Zgodność niestandardowa (wersja zapoznawcza)",
- "customConfiguration": "Niestandardowy profil konfiguracji",
- "customOMASettings": "Niestandardowe ustawienia OMA-URI",
- "customPreferences": "Plik preferencji",
- "defender": "Program antywirusowy Microsoft Defender",
- "defenderAntivirus": "Program antywirusowy Microsoft Defender",
- "defenderExploitGuard": "Microsoft Defender Exploit Guard",
- "defenderFirewall": "Zapora Microsoft Defender",
- "defenderLocalSecurityOptions": "Opcje zabezpieczeń urządzenia lokalnego",
- "defenderSecurityCenter": "Centrum zabezpieczeń usługi Microsoft Defender",
- "deliveryOptimization": "Optymalizacja dostarczania",
- "derivedCredentialAuthenticationConfiguration": "Pochodne poświadczenia",
- "deviceExperience": "Środowisko urządzenia",
- "deviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
- "deviceGuard": "Kontrola aplikacji usługi Microsoft Defender",
- "deviceHealth": "Kondycja urządzenia",
- "devicePassword": "Hasło urządzenia",
- "deviceProperties": "Właściwości urządzenia",
- "deviceRestrictions": "Ogólne",
- "deviceSecurity": "Zabezpieczenia systemu",
- "display": "Wyświetl",
- "domainJoin": "Przyłączanie do domeny",
- "domains": "Domeny",
- "edgeBrowser": "Starsze wersje przeglądarki Microsoft Edge (wersja 45 i wcześniejsze)",
- "edgeBrowserSmartScreen": "Microsoft Defender SmartScreen",
- "edgeKiosk": "Tryb kiosku przeglądarki Microsoft Edge",
- "editionUpgrade": "Uaktualnianie wersji",
- "education": "Edukacja",
- "educationDeviceCerts": "Certyfikaty urządzeń",
- "educationStudentCerts": "Certyfikaty uczniów",
- "educationTakeATest": "Wypełnij test",
- "educationTeacherCerts": "Certyfikaty nauczycieli",
- "emailProfile": "Wiadomość e-mail",
- "enterpriseDataProtection": "Windows Information Protection",
- "expeditedCheckin": "Konfiguracja zarządzania urządzeniami przenośnymi",
- "extensibleSingleSignOn": "Rozszerzenie aplikacji do logowania jednokrotnego",
- "filevault": "FileVault",
- "firewall": "Zapora",
- "games": "Gry",
- "gatekeeper": "Gatekeeper",
- "healthMonitoring": "Monitorowanie kondycji",
- "homeScreenLayout": "Układ ekranu startowego",
- "iOSWallpaper": "Tapeta",
- "importedPFX": "Zaimportowany certyfikat PKCS",
- "iosDefenderAtp": "Microsoft Defender dla punktu końcowego",
- "iosKiosk": "Kiosk",
- "kernelExtensions": "Rozszerzenia jądra",
- "keyboardAndDictionary": "Klawiatura i słownik",
- "kiosk": "Kiosk",
- "kioskAndroidEnterprise": "Dedykowane urządzenia",
- "kioskConfiguration": "Kiosk",
- "kioskConfigurationV2": "Kiosk",
- "kioskWebBrowser": "Przeglądarka internetowa kiosku",
- "lockScreenMessage": "Komunikat na ekranie blokady",
- "lockedScreenExperience": "Środowisko ekranu blokady",
- "logging": "Raportowanie i telemetria",
- "loginItems": "Elementy logowania",
- "loginWindow": "Okno logowania",
- "macDefenderAtp": "Microsoft Defender dla punktu końcowego",
- "maintenance": "Konserwacja",
- "malware": "Złośliwe oprogramowanie",
- "messaging": "Obsługa komunikatów",
- "networkBoundary": "Granica sieci",
- "networkProxy": "Serwer proxy sieci",
- "notifications": "Powiadomienia aplikacji",
- "pKCS": "Certyfikat PKCS",
- "password": "Hasło",
- "personalProfile": "Profil osobisty",
- "personalization": "Personalizacja",
- "policyOverride": "Przesłoń zasady grupy",
- "powerSettings": "Ustawienia zasilania",
- "printer": "Drukarka",
- "privacy": "Prywatność",
- "privacyPerApp": "Wyjątki prywatności dla aplikacji",
- "privacyPreferences": "Preferencje dotyczące prywatności",
- "projection": "Projekcja",
- "sCCMCompliance": "Zgodność z programem Configuration Manager",
- "sCEP": "Certyfikat SCEP",
- "sCEPProperties": "Certyfikat SCEP",
- "sMode": "Przełączenie trybu (tylko niejawny program testów systemu Windows)",
- "safari": "Safari",
- "search": "Wyszukaj",
- "session": "Sesja",
- "sharedDevice": "Udostępnione urządzenie iPad",
- "sharedPCAccountManager": "Udostępnione urządzenie obsługujące wielu użytkowników",
- "singleSignOn": "Logowanie jednokrotne",
- "smartScreen": "Microsoft Defender SmartScreen",
- "softwareUpdates": "Ustawienia",
- "start": "Rozpoczęcie",
- "systemExtensions": "Rozszerzenia systemu",
- "systemSecurity": "Zabezpieczenia systemu",
- "trustedCert": "Certyfikat zaufany",
- "updates": "Aktualizacje",
- "userRights": "Prawa użytkownika",
- "usersAndAccounts": "Użytkownicy i konta",
- "vPN": "Podstawowa sieć VPN",
- "vPNApps": "Automatyczne połączenie VPN",
- "vPNAppsAndTrafficRules": "Reguły dotyczące aplikacji i ruchu",
- "vPNConditionalAccess": "Dostęp warunkowy",
- "vPNConnectivity": "Łączność",
- "vPNDNSTriggers": "Ustawienia DNS",
- "vPNIKEv2": "Ustawienia IKEv2",
- "vPNProxy": "Serwer proxy",
- "vPNSplitTunneling": "Tunelowanie podzielone",
- "vPNTrustedNetwork": "Wykrywanie zaufanych sieci",
- "webContentFilter": "Filtr zawartości internetowej",
- "wiFi": "Sieć Wi-Fi",
- "win10Wifi": "Sieć Wi-Fi",
- "windowsAtp": "Microsoft Defender dla punktu końcowego",
- "windowsDefenderATP": "Microsoft Defender dla punktu końcowego",
- "windowsHelloForBusiness": "Windows Hello dla firm",
- "windowsSpotlight": "W centrum uwagi Windows",
- "wiredNetwork": "Sieć przewodowa",
- "wireless": "Bezprzewodowe",
- "wirelessProjection": "Projekcja bezprzewodowa",
- "workProfile": "Ustawienia profilu służbowego",
- "workProfilePassword": "Hasło profilu służbowego",
- "xboxServices": "Usługi Xbox",
- "zebraMx": "Profil MX (tylko Zebra)",
- "complianceActionsLabel": "Akcje w przypadku niezgodności"
- },
- "MicrosoftEdgeChannel": {
- "beta": "Beta",
- "dev": "Dev",
- "stable": "Stable"
- },
- "ConfigurationTypes": {
- "Table": {
- "androidDeviceOwnerGeneral": "Ograniczenia dotyczące urządzenia (właściciel urządzenia)",
- "androidForWorkGeneral": "Ograniczenia dotyczące urządzenia (profilu służbowy)"
- },
- "androidCustom": "Niestandardowe",
- "androidDeviceOwnerGeneral": "Ograniczenia dotyczące urządzeń",
- "androidDeviceOwnerPkcs": "Certyfikat PKCS",
- "androidDeviceOwnerScep": "Certyfikat SCEP",
- "androidDeviceOwnerTrustedCertificate": "Certyfikat zaufany",
- "androidDeviceOwnerVpn": "VPN",
- "androidDeviceOwnerWiFi": "Sieć Wi-Fi",
- "androidEmailProfile": "Poczta e-mail (tylko rozwiązanie Samsung KNOX)",
- "androidForWorkCustom": "Niestandardowe",
- "androidForWorkEmailProfile": "Adres e-mail",
- "androidForWorkGeneral": "Ograniczenia dotyczące urządzeń",
- "androidForWorkImportedPFX": "Zaimportowany certyfikat PKCS",
- "androidForWorkOemConfig": "OEMConfig",
- "androidForWorkPKCS": "Certyfikat PKCS",
- "androidForWorkSCEP": "Certyfikat SCEP",
- "androidForWorkTrustedCertificate": "Certyfikat zaufany",
- "androidForWorkVpn": "Sieć VPN",
- "androidForWorkWiFi": "Sieć Wi-Fi",
- "androidGeneral": "Ograniczenia dotyczące urządzeń",
- "androidImportedPFX": "Zaimportowany certyfikat PKCS",
- "androidPKCS": "Certyfikat PKCS",
- "androidSCEP": "Certyfikat SCEP",
- "androidTrustedCertificate": "Certyfikat zaufany",
- "androidVPN": "Sieć VPN",
- "androidWiFi": "Sieć Wi-Fi",
- "androidZebraMx": "Profil MX (tylko Zebra)",
- "complianceAndroid": "Zasady dotyczące zgodności dla systemu Android",
- "complianceAndroidDeviceOwner": "Profil służbowy w pełni zarządzany, dedykowany i należący do firmy",
- "complianceAndroidEnterprise": "Osobisty profil służbowy",
- "complianceAndroidForWork": "Zasady zgodności programu Android for Work",
- "complianceIos": "Zasady dotyczące zgodności dla systemu iOS",
- "complianceMac": "Zasady dotyczące zgodności dla komputerów Mac",
- "complianceWindows10": "Zasady zgodności systemu Windows 10 i nowszych wersji",
- "complianceWindows10Mobile": "Zasady dotyczące zgodności dla systemu Windows 10 Mobile",
- "complianceWindows8": "Zasady dotyczące zgodności dla systemu Windows 8",
- "complianceWindowsPhone": "Zasady dotyczące zgodności dla systemu Windows Phone",
- "exchangeActiveSync": "Exchange Active Sync",
- "iosCustom": "Niestandardowe",
- "iosDerivedCredentialAuthenticationConfiguration": "Pochodne poświadczenie PIV ",
- "iosDeviceFeatures": "Funkcje urządzenia",
- "iosEDU": "Edukacja",
- "iosEducation": "Edukacja",
- "iosEmailProfile": "Adres e-mail",
- "iosGeneral": "Ograniczenia dotyczące urządzeń",
- "iosImportedPFX": "Zaimportowany certyfikat PKCS",
- "iosPKCS": "Certyfikat PKCS",
- "iosPresets": "Ustawienia wstępne",
- "iosSCEP": "Certyfikat SCEP",
- "iosTrustedCertificate": "Certyfikat zaufany",
- "iosVPN": "Sieć VPN",
- "iosVPNZscaler": "VPN",
- "iosWiFi": "Sieć Wi-Fi",
- "macCustom": "Niestandardowe",
- "macDeviceFeatures": "Funkcje urządzenia",
- "macEndpointProtection": "Ochrona punktu końcowego",
- "macExtensions": "Rozszerzenia",
- "macGeneral": "Ograniczenia dotyczące urządzeń",
- "macImportedPFX": "Zaimportowany certyfikat PKCS",
- "macSCEP": "Certyfikat SCEP",
- "macTrustedCertificate": "Certyfikat zaufany",
- "macVPN": "Sieć VPN",
- "macWiFi": "Sieć Wi-Fi",
- "settingsCatalog": "Wykaz ustawień (wersja zapoznawcza)",
- "unsupported": "Nieobsługiwane",
- "windows10AdministrativeTemplate": "Szablony administracyjne (wersja zapoznawcza)",
- "windows10Atp": "Ochrona punktu końcowego w usłudze Microsoft Defender (urządzenia stacjonarne z systemem Windows 10 lub nowszym)",
- "windows10Custom": "Niestandardowe",
- "windows10DesktopSoftwareUpdate": "Aktualizacje oprogramowania",
- "windows10DeviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
- "windows10EmailProfile": "Adres e-mail",
- "windows10EndpointProtection": "Ochrona punktu końcowego",
- "windows10EnterpriseDataProtection": "Windows Information Protection",
- "windows10General": "Ograniczenia dotyczące urządzeń",
- "windows10ImportedPFX": "Zaimportowany certyfikat PKCS",
- "windows10Kiosk": "Kiosk",
- "windows10NetworkBoundary": "Granica sieci",
- "windows10PKCS": "Certyfikat PKCS",
- "windows10PolicyOverride": "Przesłoń zasady grupy",
- "windows10SCEP": "Certyfikat SCEP",
- "windows10SecureAssessmentProfile": "Profil edukacji",
- "windows10SharedPC": "Udostępnione urządzenie obsługujące wielu użytkowników",
- "windows10TeamGeneral": "Ograniczenia dotyczące urządzeń (Windows 10 Team)",
- "windows10TrustedCertificate": "Certyfikat zaufany",
- "windows10VPN": "Sieć VPN",
- "windows10WiFi": "Sieć Wi-Fi",
- "windows10WiFiCustom": "Niestandardowa sieć Wi-Fi",
- "windows8General": "Ograniczenia dotyczące urządzeń",
- "windows8SCEP": "Certyfikat SCEP",
- "windows8TrustedCertificate": "Certyfikat zaufany",
- "windows8VPN": "Sieć VPN",
- "windows8WiFi": "Importowanie sieci Wi-Fi",
- "windowsDeliveryOptimization": "Optymalizacja dostarczania",
- "windowsDomainJoin": "Przyłączanie do domeny",
- "windowsEditionUpgrade": "Uaktualnianie wersji i przełączanie trybu",
- "windowsIdentityProtection": "Ochrona tożsamości",
- "windowsPhoneCustom": "Niestandardowe",
- "windowsPhoneEmailProfile": "Adres e-mail",
- "windowsPhoneGeneral": "Ograniczenia dotyczące urządzeń",
- "windowsPhoneImportedPFX": "Zaimportowany certyfikat PKCS",
- "windowsPhoneSCEP": "Certyfikat SCEP",
- "windowsPhoneTrustedCertificate": "Certyfikat zaufany",
- "windowsPhoneVPN": "Sieć VPN",
- "IosUpdate": "Zasady aktualizacji systemu iOS"
- },
- "WindowsEnrollment": {
- "coManagementAuthorityDesc": "Konfiguruj ustawienia współzarządzania na potrzeby integracji z programem Configuration Manager",
- "coManagementAuthorityTitle": "Ustawienia współzarządzania ",
- "deploymentProfiles": "Profile wdrażania rozwiązania Windows Autopilot",
- "description": "Poznaj siedem różnych sposobów rejestrowania komputera z systemem Windows 10/11 w usłudze Intune przez użytkowników lub administratorów.",
- "descriptionLabel": "Metody rejestracji w systemie Windows",
- "enrollmentStatusPage": "Strona ze stanem rejestracji"
- },
- "Platform": {
- "all": "Wszystkie",
- "android": "Administrator urządzeń z systemem Android",
- "androidAOSP": "Android (AOSP)",
- "androidEnterprise": "Android Enterprise",
- "androidForWork": "Android Enterprise",
- "androidWorkProfile": "System Android dla firm",
- "common": "Wspólne",
- "iOS": "iOS/iPadOS",
- "iosAndAndroidPlatformLabel": "iOS i Android",
- "iosCommaAndroidPlatformLabel": "iOS, Android",
- "linux": "Linux",
- "macOS": "macOS",
- "unknown": "Nieznany",
- "unsupported": "Nieobsługiwane",
- "windows": "Windows",
- "windows10": "Windows 10 i nowsze",
- "windows10CM": "Windows 10 i nowsze (ConfigMgr)",
- "windows10Holo": "Windows 10 Holographic",
- "windows10Mobile": "Windows 10 Mobile",
- "windows10Team": "Windows 10 Team",
- "windows10X": "Windows 10X",
- "windows8": "Windows 8.1 i nowsze",
- "windows8And10": "Windows 8 i 10",
- "windowsPhone": "Windows Phone 8.1",
- "windows10AndLater": "Windows 10 i nowsze",
- "windows10AndWindowsServer": "Windows 10, Windows 11 i Windows Server (ConfigMgr)",
- "windows10andLaterCM": "Windows 10 i nowsze (ConfigMgr)",
- "holoLens": "HoloLens",
- "surfaceHub2": "Surface Hub 2",
- "surfaceHub2S": "Surface Hub 2S",
- "windowsPC": "Komputer z systemem Windows"
- },
- "EnrollmentRestrictions": {
- "DeletePayloadLink": {
- "content": "Element {0} jest uwzględniony w co najmniej jednym zestawie zasad. Jeśli usuniesz element {0}, nie będzie już można go przypisywać za pomocą tych zestawów zasad. Czy usunąć go mimo to?",
- "contentWithError": "Element {0} może być uwzględniony w co najmniej jednym zestawie zasad. Jeśli usuniesz element {0}, nie będzie już można go przypisywać za pomocą tych zestawów zasad. Czy usunąć go mimo to?",
- "header": "Czy na pewno chcesz usunąć to ograniczenie?"
- },
- "DeviceLimit": {
- "description": "Określ maksymalną liczbę urządzeń, które może zarejestrować użytkownik.",
- "header": "Ograniczenia limitu urządzeń",
- "info": "Określ liczbę urządzeń, które może zarejestrować każdy użytkownik."
- },
- "DeviceType": {
- "VersionValidation": {
- "aOSP": "Musi to być wartość 1.0 lub większa.",
- "android": "Wprowadź prawidłowy numer wersji. Przykłady: 5.0, 5.5.1, 6.0.0.1",
- "androidForWork": "Wprowadź prawidłowy numer wersji. Przykłady: 5.0, 5.1.1",
- "iOS": "Wprowadź prawidłowy numer wersji. Przykłady: 9.0, 10.0, 9.0.2",
- "mac": "Wprowadź prawidłowy numer wersji. Przykłady: 10, 10.10, 10.10.1",
- "min": "Wersja minimalna nie może być niższa niż {0}",
- "minMax": "Wersja minimalna nie może być większa niż wersja maksymalna.",
- "windows": "Musi to być wersja 10.0 lub nowsza. Pozostaw to pole puste, aby zezwolić na urządzenia w wersji 8.1",
- "windowsMobile": "Musi to być wersja 10.0 lub nowsza. Pozostaw to pole puste, aby zezwolić na urządzenia w wersji 8.1"
- },
- "allPlatformsBlocked": "Wszystkie platformy urządzeń są zablokowane. Zezwalaj na rejestrowanie platform, aby włączyć konfigurowanie platform.",
- "blockManufacturerPlaceHolder": "Nazwa producenta",
- "blockManufacturersHeader": "Zablokowani producenci",
- "cannotRestrict": "Ograniczenie nie jest obsługiwane",
- "configurationDescription": "Określ ograniczenia konfiguracji platformy, które muszą zostać spełnione w celu rejestracji urządzenia. Użyj zasad zgodności do ograniczenia urządzeń po rejestracji. Definiuj wersje w formacie główna.pomocnicza.kompilacja. Ograniczenia wersji mają zastosowanie tylko do urządzeń rejestrowanych przy użyciu Portalu firmy. Domyślnie usługa Intune klasyfikuje urządzenia jako będące własnością osobistą. Aby zaklasyfikować urządzenia jako będące własnością firmy, należy podjąć specjalną akcję.",
- "configurationDescriptionLabel": "Dowiedz się więcej o ustawianiu ograniczeń rejestracji",
- "configurations": "Konfiguruj platformy",
- "deviceManufacturer": "Producent urządzenia",
- "header": "Ograniczenia typu urządzeń",
- "info": "Zdefiniuj platformy, wersje i typy zarządzania dopuszczone do rejestracji.",
- "manufacturer": "Producent",
- "max": "Maks.",
- "maxVersion": "Maksymalna wersja",
- "min": "Minimum",
- "minVersion": "Minimalna wersja",
- "newPlatforms": "Dopuszczono nowe platformy. Rozważ aktualizację konfiguracji platform.",
- "personal": "Własność użytkownika",
- "platform": "Platforma",
- "platformDescription": "Możesz dopuścić rejestrację następujących platform. Blokuj tylko platformy, których nie będziesz obsługiwać. Dopuszczone platformy można skonfigurować z dodatkowymi ograniczeniami rejestracji.",
- "platformSettings": "Ustawienia platformy",
- "platforms": "Wybierz platformy",
- "platformsSelected": "Wybrane platformy: {0}",
- "type": "Typ",
- "versions": "wersje",
- "versionsRange": "Zezwalaj na minimalny/maksymalny zakres:",
- "windowsTooltip": "Ogranicza rejestrację za pośrednictwem zarządzania urządzeniami przenośnymi. Nie ogranicza instalacji agenta komputera. Obsługiwane są tylko wersje systemów Windows 10 i Windows 11. Pozostaw puste wersje, aby zezwolić na korzystanie z systemu Windows 8.1."
- },
- "Priority": {
- "saved": "Pomyślnie zapisano priorytety ograniczeń."
- },
- "Row": {
- "announce": "Priorytet: {0}, nazwa: {1}, przypisano: {2}"
- },
- "Table": {
- "deployed": "Wdrożone",
- "name": "Nazwa",
- "priority": "Priorytet"
- },
- "Type": {
- "limit": "Ograniczenie limitu urządzeń",
- "type": "Ograniczenie typu urządzeń"
- },
- "allUsers": "Wszyscy użytkownicy",
- "androidRestrictions": "Ograniczenia systemu Android",
- "create": "Utwórz ograniczenie",
- "defaultLimitDescription": "To jest domyślne ograniczenie limitu urządzeń stosowane z najniższym priorytetem dla wszystkich użytkowników niezależnie od członkostwa w grupie.",
- "defaultTypeDescription": "To jest domyślne ograniczenie typu urządzenia stosowane z najniższym priorytetem dla wszystkich użytkowników niezależnie od członkostwa w grupie.",
- "defaultWhfbDescription": "To jest domyślna konfiguracja funkcji Windows Hello dla firm stosowana z najniższym priorytetem dla wszystkich użytkowników niezależnie od członkostwa w grupie.",
- "deleteMessage": "Na użytkowników, których to dotyczy, zostanie nałożone przypisane ograniczenie o kolejnym najwyższym priorytecie lub domyślne ograniczenie, jeśli żadne ograniczenie nie zostało przypisane.",
- "deleteTitle": "Czy na pewno chcesz usunąć ograniczenie {0}?",
- "descriptionHint": "Krótki akapit z opisem użycia poziomu ograniczeń określanego przez ustawienia ograniczeń w firmie.",
- "edit": "Edytuj ograniczenie",
- "info": "Urządzenie musi być zgodne z ograniczeniami rejestracji o najwyższym priorytecie przypisanymi do jego użytkownika. Możesz przeciągać ograniczenia urządzenia, aby zmieniać ich priorytet. Ograniczenia domyślne mają najniższy priorytet dla wszystkich użytkowników i służą do zarządzania rejestracjami bez użytkowników. Ograniczenia domyślne można edytować, ale nie można ich usuwać.",
- "iosRestrictions": "Ograniczenia systemu iOS",
- "mDM": "MDM",
- "macRestrictions": "Ograniczenia systemu MacOS",
- "maxVersion": "Wersja maksymalna",
- "minVersion": "Wersja minimalna",
- "nameHint": "To będzie główny atrybut widoczny w celu identyfikacji zestawu ograniczeń.",
- "noAssignmentsStatusBar": "Przypisz ograniczenie do co najmniej jednej grupy. Kliknij pozycję Właściwości.",
- "notFound": "Nie znaleziono ograniczenia. Być może zostało już usunięte.",
- "personallyOwned": "Urządzenia osobiste",
- "restriction": "Ograniczenie",
- "restrictionLowerCase": "ograniczenie",
- "restrictionType": "Typ ograniczenia",
- "selectType": "Wybierz typ ograniczenia",
- "selectValidation": "Wybierz platformę",
- "typeHint": "Wybierz opcję Ograniczenie typu urządzeń, aby ograniczyć właściwości urządzeń. Wybierz opcję Ograniczenie limitu urządzeń, aby ograniczyć liczbę urządzeń na użytkownika.",
- "typeRequired": "Wymagany jest typ ograniczenia.",
- "winPhoneRestrictions": "Ograniczenia systemu Windows Phone",
- "windowsRestrictions": "Ograniczenia systemu Windows"
- },
- "Titles": {
- "ChromeOs": {
- "devices": "Urządzenia z systemem Chrome OS"
- },
- "ManagedDesktop": {
- "adminContacts": "Kontakty administracyjne",
- "appPackaging": "Pakiety aplikacji",
- "devices": "Urządzenia",
- "feedback": "Opinie",
- "gettingStarted": "Wprowadzenie",
- "messages": "Komunikaty",
- "onlineResources": "Zasoby online",
- "serviceRequests": "Żądania usług",
- "settings": "Ustawienia",
- "tenantEnrollment": "Rejestracja dzierżawy"
- },
- "actions": "Akcje w przypadku niezgodności",
- "advancedExchangeSettings": "Ustawienia usługi Exchange Online",
- "advancedThreatProtection": "Microsoft Defender dla punktu końcowego",
- "allApps": "Wszystkie aplikacje",
- "allDevices": "Wszystkie urządzenia",
- "androidFotaDeployments": "Wdrożenia FOTA systemu Android",
- "appBundles": "Zbiór aplikacji",
- "appCategories": "Kategorie aplikacji",
- "appConfigPolicies": "Zasady konfiguracji aplikacji",
- "appInstallStatus": "Stan instalacji aplikacji",
- "appLicences": "Licencje aplikacji",
- "appProtectionPolicies": "Zasady ochrony aplikacji",
- "appProtectionStatus": "Stan ochrony aplikacji",
- "appSelectiveWipe": "Selektywne czyszczenie aplikacji",
- "appleVppTokens": "Tokeny VPP firmy Apple",
- "apps": "Aplikacje",
- "assign": "Przypisania",
- "assignedPermissions": "Przypisane uprawnienia",
- "assignedRoles": "Przypisane role",
- "autopilotDeploymentReport": "Wdrożenia rozwiązania Autopilot (wersja zapoznawcza)",
- "brandingAndCustomization": "Dostosowywanie",
- "cartProfiles": "Profile koszyków",
- "certificateConnectors": "Łączniki certyfikatu",
- "chromeEnterprise": "Chrome Enterprise",
- "compliancePolicies": "Zasady zgodności",
- "complianceScriptManagement": "Skrypty",
- "complianceScriptManagementPreview": "Skrypty (wersja zapoznawcza)",
- "complianceSettings": "Ustawienia zasad zgodności",
- "conditionStatements": "Instrukcje warunkowe",
- "conditions": "Lokalizacje",
- "configMgr": "Microsoft Endpoint Configuration Manager",
- "configurationProfiles": "Profile konfiguracji",
- "configurationProfilesPreview": "Profile konfiguracji (wersja zapoznawcza)",
- "connectorsAndTokens": "Łączniki i tokeny",
- "corporateDeviceIdentifiers": "Identyfikatory urządzeń firmowych",
- "customAttributes": "Atrybuty niestandardowe",
- "customNotifications": "Powiadomienia niestandardowe",
- "deploymentSettings": "Ustawienia wdrożenia",
- "derivedCredentials": "Pochodne poświadczenia",
- "deviceActions": "Akcje urządzenia",
- "deviceCategories": "Kategorie urządzeń",
- "deviceCleanUp": "Reguły czyszczenia urządzeń",
- "deviceEnrollmentManagers": "Menedżerowie rejestracji urządzeń",
- "deviceExecutionStatus": "Stan urządzenia",
- "deviceLimitEnrollmentRestrictions": "Ograniczenia limitu urządzeń rejestracji",
- "deviceTypeEnrollmentRestrictions": "Ograniczenia platformy urządzenia rejestracji",
- "devices": "Urządzenia",
- "discoveredApps": "Odnalezione aplikacje",
- "embeddedSIM": "Profile komórkowe eSIM (wersja zapoznawcza)",
- "enrollDevices": "Zarejestruj urządzenia",
- "enrollmentFailures": "Błędy rejestracji",
- "enrollmentNotifications": "Powiadomienia dotyczące rejestracji (wersja zapoznawcza)",
- "enrollmentRestrictions": "Ograniczenia rejestracji",
- "exchangeActiveSync": "Exchange ActiveSync",
- "exchangeServiceConnectors": "Łączniki usług Exchange",
- "failuresForFeatureUpdates": "Błędy aktualizacji funkcji (wersja zapoznawcza)",
- "failuresForQualityUpdates": "System Windows — przyspieszone niepowodzenia aktualizacji (wersja zapoznawcza)",
- "featureFlighting": "Pilotaż funkcji",
- "featureUpdateDeployments": "Aktualizacje funkcji dla systemu Windows 10 i nowszego (wersja zapoznawcza)",
- "flighting": "Testowanie",
- "fotaUpdate": "Bezprzewodowa aktualizacja oprogramowania układowego",
- "groupPolicy": "Szablony administracyjne",
- "groupPolicyAnalytics": "Analiza zasad grupy",
- "helpSupport": "Pomoc i obsługa techniczna",
- "helpSupportReplacement": "Pomoc i obsługa techniczna ({0})",
- "iOSAppProvisioning": "Profile aprowizacji aplikacji systemu iOS",
- "incompleteUserEnrollments": "Nieukończone rejestracje użytkowników",
- "intuneRemoteAssistance": "Pomoc zdalna (wersja zapoznawcza)",
- "iosUpdates": "Zasady aktualizacji dla systemu iOS/iPadOS",
- "legacyPcManagement": "Zarządzanie starszymi komputerami",
- "macOSSoftwareUpdate": "Aktualizuj zasady dla systemu macOS",
- "macOSSoftwareUpdateAccountSummaries": "Stan instalacji dla urządzeń z systemem macOS",
- "macOSSoftwareUpdateCategorySummaries": "Podsumowanie aktualizacji oprogramowania",
- "macOSSoftwareUpdateStateSummaries": "aktualizacje",
- "managedGooglePlay": "Zarządzany sklep Google Play",
- "msfb": "Microsoft Store dla Firm",
- "myPermissions": "Moje uprawnienia",
- "notifications": "Powiadomienia",
- "officeApps": "Aplikacje pakietu Office",
- "officeProPlusPolicies": "Zasady dla aplikacji pakietu Office",
- "onPremise": "Lokalnie",
- "onPremisesConnector": "Lokalny łącznik Exchange ActiveSync",
- "onPremisesDeviceAccess": "Urządzenia Exchange ActiveSync",
- "onPremisesManageAccess": "Dostęp do lokalnego wystąpienia programu Exchange",
- "outOfDateIosDevices": "Błędy instalacji dla urządzeń z systemem iOS",
- "overview": "Przegląd",
- "partnerDeviceManagement": "Zarządzanie urządzeniem partnera",
- "perUpdateRingDeploymentState": "Stan wdrożenia według pierścienia aktualizacji",
- "permissions": "Uprawnienia",
- "platformApps": "Aplikacje: {0}",
- "platformDevices": "Urządzenia: {0}",
- "platformEnrollment": "{0} — rejestracja",
- "policies": "Zasady",
- "previewMDMDevices": "Wszystkie urządzenia zarządzane (wersja zapoznawcza)",
- "profiles": "Profile",
- "properties": "Właściwości",
- "reports": "Raporty",
- "retireNoncompliantDevices": "Wycofaj niezgodne urządzenia",
- "retireNoncompliantDevicesPreview": "Retire noncompliant devices (preview)",
- "role": "Rola",
- "scriptManagement": "Skrypty",
- "securityBaselines": "Punkty odniesienia zabezpieczeń",
- "serviceToServiceConnector": "Łącznik usługi Exchange Online",
- "shellScripts": "Skrypty powłoki",
- "teamViewerConnector": "Łącznik programu TeamViewer",
- "telecomeExpenseManagement": "Zarządzanie wydatkami na telekomunikację",
- "tenantAdmin": "Administrator dzierżawy",
- "tenantAdministration": "Administracja dzierżawą",
- "termsAndConditions": "Warunki i postanowienia",
- "titles": "Tytuły",
- "troubleshootSupport": "Rozwiązywanie problemów i pomoc techniczna",
- "user": "Użytkownik",
- "userExecutionStatus": "Stan użytkownika",
- "warranty": "Dostawcy rękojmi",
- "wdacSupplementalPolicies": "Uzupełniające zasady trybu S",
- "windows10DriverUpdate": "Aktualizacje sterowników dla systemu Windows 10 i nowszych (wersja zapoznawcza)",
- "windows10QualityUpdate": "Aktualizacje dotyczące jakości systemu Windows 10 i nowszych (wersja zapoznawcza)",
- "windows10UpdateRings": "Pierścienie aktualizacji dla systemu Windows 10 i nowszego",
- "windows10XPolicyFailures": "Błędy zasad systemu Windows 10X",
- "windowsEnterpriseCertificate": "Certyfikat przedsiębiorstwa systemu Windows",
- "windowsManagement": "Skrypty programu PowerShell",
- "windowsSideLoadingKeys": "Klucze ładowania bezpośredniego systemu Windows",
- "windowsSymantecCertificate": "Certyfikat firmy DigiCert dla systemu Windows",
- "windowsThreatReport": "Stan agenta zagrożenia"
- },
- "ScopeTypes": {
- "allDevices": "Wszystkie urządzenia",
- "allUsers": "Wszyscy użytkownicy",
- "allUsersAndDevices": "Wszyscy użytkownicy i wszystkie urządzenia",
- "selectedGroups": "Wybrane grupy"
- },
- "DetectionRules": {
- "ComparisonOperators": {
- "equals": "Równa się",
- "greaterThan": "Większe niż",
- "greaterThanOrEqualTo": "Większe niż lub równe",
- "lessThan": "Mniej niż",
- "lessThanOrEqualTo": "Mniejsze niż lub równe",
- "notEqualTo": "Różne od"
- },
- "CustomScript": {
- "enforceSignatureCheck": "Wymuś sprawdzanie podpisu skryptu i uruchom skrypt w trybie cichym",
- "enforceSignatureCheckTooltip": "Wybierz opcję „Tak”, aby sprawdzić, czy skrypt jest podpisany przez zaufanego wydawcę, co pozwoli na uruchomienie skryptu bez wyświetlania ostrzeżeń ani monitów. Działanie skryptu nie będzie blokowane. Wybierz opcję „Nie” (domyślna), aby uruchomienie skryptu wymagało potwierdzenia użytkownika końcowego. Weryfikacja podpisu nie będzie wykonywana.",
- "header": "Użyj niestandardowego skryptu wykrywania",
- "runAs32Bit": "Uruchom skrypt jako proces 32-bitowy na klientach 64-bitowych",
- "runAs32BitTooltip": "Wybierz opcję „Tak”, aby uruchomić skrypt w procesie 32-bitowym na klientach 64-bitowych. Wybierz opcję „Nie” (domyślna), aby uruchomić skrypt w procesie 64-bitowym na klientach 64-bitowych. Na klientach 32-bitowych skrypt jest uruchamiany w procesie 32-bitowym.",
- "scriptFile": "Plik skryptu",
- "scriptFileNotSelectedValidation": "Nie wybrano pliku skryptu.",
- "scriptFileTooltip": "Wybierz skrypt programu PowerShell, który będzie wykrywać obecność aplikacji na kliencie. Aplikacja zostanie wykryta, gdy skrypt zwróci kod zakończenia o wartości 0 i zapisze wartość ciągu w wyjściu STDOUT."
- },
- "Manual": {
- "FileRule": {
- "DetectionMethodOptions": {
- "dateCreated": "Data utworzenia",
- "dateModified": "Data modyfikacji",
- "doesNotExist": "Plik lub folder nie istnieje",
- "fileOrFolderExists": "Plik lub folder istnieje",
- "sizeInMB": "Rozmiar w MB",
- "version": "Ciąg (wersja)"
- },
- "associatedWith32Bit": "Skojarzone z aplikacją 32-bitową na klientach 64-bitowych",
- "associatedWith32BitTooltip": "Wybierz opcję „Tak”, aby rozwijać zmienne środowiskowe ścieżki w kontekście 32-bitowym na klientach 64-bitowych. Wybierz opcję „Nie” (domyślna), aby rozwijać wszelkie zmienne ścieżki w kontekście 64-bitowym na klientach 64-bitowych. Klienci 32-bitowi będą zawsze korzystać z kontekstu 32-bitowego.",
- "detectionMethod": "Metoda wykrywania",
- "detectionMethodTooltip": "Wybierz typ metody wykrywania używanej do weryfikacji obecności aplikacji.",
- "fileOrFolder": "Plik lub folder",
- "fileOrFolderToolTip": "Plik lub folder do wykrycia.",
- "operator": "Operator",
- "operatorTooltip": "Wybierz operator dla metody wykrywania używanej w celu weryfikacji porównania.",
- "path": "Ścieżka",
- "pathTooltip": "Pełna ścieżka folderu zawierającego plik lub folder do wykrycia.",
- "value": "Wartość",
- "valueTooltip": "Wybierz wartość, która jest zgodna z wybraną metodą wykrywania. W przypadku metod wykrywania opartych na dacie należy wprowadzić datę w czasie lokalnym."
- },
- "GridColumns": {
- "pathOrCode": "Ścieżka/kod",
- "type": "Typ"
- },
- "MsiRule": {
- "operator": "Operator",
- "operatorTooltip": "Wybierz operator porównania weryfikacji wersji produktu MSI.",
- "productCode": "Kod produktu MSI",
- "productCodeTooltip": "Prawidłowy kod produktu MSI dla aplikacji.",
- "productVersion": "Wartość",
- "productVersionCheck": "Sprawdzenie wersji produktu MSI",
- "productVersionCheckTooltip": "Wybierz opcję „Tak”, aby weryfikować nie tylko kod produktu MSI, ale także wersję produktu.",
- "productVersionTooltip": "Wprowadź wersję produktu MSI dla aplikacji."
- },
- "RegistryRule": {
- "DetectionMethodOptions": {
- "integerComparison": "Porównanie liczb całkowitych",
- "keyDoesNotExist": "Klucz nie istnieje",
- "keyExists": "Klucz istnieje",
- "stringComparison": "Porównanie ciągów",
- "valueDoesNotExist": "Wartość nie istnieje",
- "valueExists": "Wartość istnieje",
- "versionComparison": "Porównanie wersji"
- },
- "associatedWith32Bit": "Skojarzone z aplikacją 32-bitową na klientach 64-bitowych",
- "associatedWith32BitTooltip": "Wybierz opcję „Tak”, aby przeszukiwać rejestr 32-bitowy na klientach 64-bitowych. Wybierz opcję „Nie” (domyślna), aby przeszukiwać rejestr 64-bitowy na klientach 64-bitowych. Klienci 32-bitowi zawsze będą przeszukiwać rejestr 32-bitowy.",
- "detectionMethod": "Metoda wykrywania",
- "detectionMethodTooltip": "Wybierz typ metody wykrywania używanej do weryfikacji obecności aplikacji.",
- "keyPath": "Ścieżka klucza",
- "keyPathTooltip": "Pełna ścieżka wpisu rejestru zawierającego wartość do wykrycia.",
- "operator": "Operator",
- "operatorTooltip": "Wybierz operator dla metody wykrywania używanej w celu weryfikacji porównania.",
- "value": "Wartość",
- "valueName": "Nazwa wartości",
- "valueNameTooltip": "Nazwa wartości rejestru do wykrycia.",
- "valueTooltip": "Wybierz wartość, która jest zgodna z wybraną metodą wykrywania."
- },
- "RuleTypeOptions": {
- "file": "Plik",
- "mSI": "MSI",
- "registry": "Rejestr"
- },
- "gridAriaLabel": "Reguły wykrywania",
- "header": "Utwórz regułę wskazującą obecność aplikacji.",
- "noRulesSelectedPlaceholder": "Nie określono żadnych reguł.",
- "ruleTableLimit": "Możesz dodać maksymalnie 25 reguł wykrywania",
- "ruleType": "Typ reguły",
- "ruleTypeTooltip": "Wybierz typ reguły wykrywania do dodania."
- },
- "RuleConfigurationOptions": {
- "customScript": "Użyj niestandardowego skryptu wykrywania",
- "manual": "Ręcznie skonfiguruj reguły wykrywania"
- },
- "bladeTitle": "Reguły wykrywania",
- "header": "Skonfiguruj reguły specyficzne dla aplikacji używane do wykrywania obecności aplikacji.",
- "rulesFormat": "Format reguł",
- "rulesFormatTooltip": "Wybierz opcję ręcznego skonfigurowania reguł wykrywania lub zastosuj skrypt niestandardowy, aby wykryć obecność aplikacji.",
- "selectorLabel": "Reguły wykrywania"
- },
- "AppType": {
- "androidEnterpriseSystemApp": "Aplikacja systemu Android Enterprise",
- "androidForWorkApp": "Aplikacja zarządzanego sklepu Google Play",
- "androidLobApp": "Aplikacja biznesowa dla systemu Android",
- "androidStoreApp": "Aplikacja w sklepie dla systemu Android",
- "builtInAndroid": "Wbudowana aplikacja systemu Android",
- "builtInApp": "Aplikacja wbudowana",
- "builtInIos": "Wbudowana aplikacja systemu iOS",
- "default": "",
- "iosLobApp": "Aplikacja biznesowa dla systemu iOS",
- "iosStoreApp": "Aplikacja w sklepie dla systemu iOS",
- "iosVppApp": "Aplikacja nabyta w programie zakupów zbiorczych dla systemu iOS",
- "lineOfBusinessApp": "Aplikacja biznesowa",
- "macOSDmgApp": "macOS app (DMG)",
- "macOSEdgeApp": "Przeglądarka Microsoft Edge (macOS)",
- "macOSLobApp": "Aplikacja biznesowa systemu macOS",
- "macOSMdatpApp": "Microsoft Defender ATP (macOS)",
- "macOSOfficeSuiteApp": "Aplikacje platformy Microsoft 365 (system macOS)",
- "macOsVppApp": "Aplikacja nabyta w programie zakupów zbiorczych dla systemu macOS",
- "managedAndroidLobApp": "Zarządzana aplikacja biznesowa dla systemu Android",
- "managedAndroidStoreApp": "Zarządzana aplikacja w sklepie dla systemu Android",
- "managedGooglePlayApp": "Aplikacja zarządzanego sklepu Google Play",
- "managedGooglePlayPrivateApp": "Prywatna aplikacja zarządzanej usługi Google Play",
- "managedGooglePlayWebApp": "Link internetowy do zarządzanej usługi Google Play",
- "managedIosLobApp": "Zarządzana aplikacja biznesowa dla systemu iOS",
- "managedIosStoreApp": "Zarządzana aplikacja w sklepie dla systemu iOS",
- "microsoftStoreForBusinessApp": "Aplikacja ze sklepu Microsoft Store dla Firm",
- "microsoftStoreForBusinessReleaseManagedApp": "Microsoft Store dla Firm",
- "officeSuiteApp": "Aplikacje Microsoft 365 (Windows 10 i nowszy)",
- "webApp": "Link sieci Web",
- "windowsAppXLobApp": "Aplikacja biznesowa AppX systemu Windows",
- "windowsClassicApp": "Aplikacja systemu Windows (Win32)",
- "windowsEdgeApp": "Microsoft Edge (system Windows 10 i nowszy)",
- "windowsMobileMsiLobApp": "Aplikacja biznesowa MSI systemu Windows",
- "windowsPhone81AppXBundleLobApp": "Aplikacja biznesowa AppX systemu Windows Phone 8.1",
- "windowsPhone81AppXLobApp": "Aplikacja biznesowa AppX systemu Windows Phone 8.1",
- "windowsPhone81StoreApp": "Aplikacja ze Sklepu Windows Phone 8.1",
- "windowsPhoneXapLobApp": "Aplikacja biznesowa XAP systemu Windows Phone",
- "windowsStoreApp": "Aplikacja ze sklepu Microsoft Store",
- "windowsUniversalAppXLobApp": "Uniwersalna aplikacja biznesowa AppX systemu Windows",
- "windowsUniversalLobApp": "Uniwersalna aplikacja biznesowa systemu Windows"
- },
- "PolicyType": {
- "AttackSurfaceReductionRules": {
- "configMgr": "Reguły zmniejszenia obszaru ataków (ConfigMgr)"
- },
- "EndpointDetectionandResponse": {
- "mDE": "Wykrywanie i reagowanie dotyczące punktów końcowych"
- },
- "EndpointSecurityTemplate": {
- "aSRAppBrowserSecurity": "Izolacja aplikacji i przeglądarki",
- "aSRApplicationControl": "Kontrola aplikacji",
- "aSRAttackSurfaceReduction": "Reguły zmniejszania obszaru podatnego na ataki",
- "aSRDeviceControl": "Kontrola urządzeń",
- "aSRExploitProtection": "Ochrona przed programami wykorzystującymi luki w zabezpieczeniach",
- "aSRWebProtection": "Ochrona w Internecie (starsza wersja Microsoft Edge)",
- "aVExclusions": "Wykluczenia programu Microsoft Defender Antivirus",
- "antivirus": "Program antywirusowy Microsoft Defender",
- "cloudPC": "Plan bazowy zabezpieczeń systemu Windows 365",
- "default": "Zabezpieczenia punktu końcowego",
- "defenderTest": "Wersja demonstracyjna usługi Microsoft Defender for Endpoint",
- "diskEncryption": "BitLocker",
- "eDR": "Wykrywanie i reagowanie dotyczące punktów końcowych",
- "edgeSecurityBaseline": "Punkt odniesienia programu Microsoft Edge",
- "edgeSecurityBaselinePreview": "Wersja zapoznawcza: punkt odniesienia programu Microsoft Edge",
- "editionUpgradeConfiguration": "Uaktualnianie wersji i przełączanie trybu",
- "firewall": "Zapora Microsoft Defender",
- "firewallRules": "Reguły zapory Microsoft Defender",
- "identityProtection": "Ochrona konta",
- "identityProtectionPreview": "Ochrona konta (wersja zapoznawcza)",
- "mDMSecurityBaseline1810": "Plan bazowy zabezpieczeń MDM dla systemu Windows 10 i nowszych z października 2018 r.",
- "mDMSecurityBaseline1810Preview": "Wersja zapoznawcza: Plan bazowy zabezpieczeń MDM dla systemu Windows 10 i nowszych z października 2018 r.",
- "mDMSecurityBaseline1810PreviewBeta": "Wersja zapoznawcza: plan bazowy zabezpieczeń MDM dla systemu Windows 10 z października 2018 r. (wersja beta)",
- "mDMSecurityBaseline1906": "Plan bazowy zabezpieczeń MDM dla systemu Windows 10 i nowszych z maja 2019 r.",
- "mDMSecurityBaseline2004": "Plan bazowy zabezpieczeń MDM dla systemu Windows 10 i nowszych wersji z sierpnia 2020 r.",
- "mDMSecurityBaseline2101": "Plan bazowy zabezpieczeń MDM dla systemu Windows 10 i nowszych wersji z grudnia 2020 r.",
- "macOSAntivirus": "Oprogramowanie antywirusowe",
- "macOSDiskEncryption": "FileVault",
- "macOSFirewall": "Zapora systemu macOS",
- "microsoftDefenderBaseline": "Punkt odniesienia usługi Microsoft Defender for Endpoint",
- "office365Baseline": "Punkt odniesienia dla usługi Microsoft Office O365",
- "office365BaselinePreview": "Podgląd: punkt odniesienia dla usługi Microsoft Office O365",
- "securityBaselines": "Punkty odniesienia zabezpieczeń",
- "test": "Testuj szablon",
- "testFirewallRulesSecurityTemplateName": "Reguły zapory Microsoft Defender (test)",
- "testIdentityProtectionSecurityTemplateName": "Ochrona konta (test)",
- "windowsSecurityExperience": "Środowisko zabezpieczeń systemu Windows"
- },
- "Firewall": {
- "mDE": "Zapora Microsoft Defender"
- },
- "FirewallRules": {
- "mDE": "Reguły zapory Microsoft Defender"
- },
- "administrativeTemplates": "Szablony administracyjne",
- "androidCompliancePolicy": "Zasady dotyczące zgodności dla systemu Android",
- "aospDeviceOwnerCompliancePolicy": "Zasady zgodności dla systemu Android (AOSP)",
- "applicationControl": "Kontrola aplikacji",
- "custom": "Niestandardowe",
- "deliveryOptimization": "Optymalizacja dostarczania",
- "derivedPersonalIdentityVerificationCredential": "Pochodne poświadczenia",
- "deviceFeatures": "Funkcje urządzenia",
- "deviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
- "deviceLock": "Blokada urządzenia",
- "deviceOwner": "Profil służbowy w pełni zarządzany, dedykowany i należący do firmy",
- "deviceRestrictions": "Ograniczenia dotyczące urządzeń",
- "deviceRestrictionsWindows10Team": "Ograniczenia dotyczące urządzeń (Windows 10 Team)",
- "domainJoinPreview": "Przyłączanie do domeny",
- "editionUpgradeAndModeSwitch": "Uaktualnianie wersji i przełączanie trybu",
- "education": "Edukacja",
- "email": "Wiadomość e-mail",
- "emailSamsungKnoxOnly": "Poczta e-mail (tylko rozwiązanie Samsung KNOX)",
- "endpointProtection": "Ochrona punktu końcowego",
- "expeditedCheckin": "Konfiguracja zarządzania urządzeniami przenośnymi",
- "exploitProtection": "Exploit Protection",
- "extensions": "Rozszerzenia",
- "hardwareConfigurations": "Konfiguracje BIOS",
- "identityProtection": "Identity Protection",
- "iosCompliancePolicy": "Zasady dotyczące zgodności dla systemu iOS",
- "kiosk": "Kiosk",
- "macCompliancePolicy": "Zasady dotyczące zgodności dla komputerów Mac",
- "microsoftDefenderAntivirus": "Program antywirusowy Microsoft Defender",
- "microsoftDefenderAntivirusexclusions": "Wykluczenia programu Microsoft Defender Antivirus",
- "microsoftDefenderAtpWindows10Desktop": "Ochrona punktu końcowego w usłudze Microsoft Defender (urządzenia stacjonarne z systemem Windows 10 lub nowszym)",
- "microsoftDefenderFirewallRules": "Reguły zapory Microsoft Defender",
- "microsoftEdgeBaseline": "Punkt odniesienia przeglądarki Microsoft Edge",
- "mxProfileZebraOnly": "Profil MX (tylko Zebra)",
- "networkBoundary": "Granica sieci",
- "oemConfig": "OEMConfig",
- "overrideGroupPolicy": "Przesłoń zasady grupy",
- "pkcsCertificate": "Certyfikat PKCS",
- "pkcsImportedCertificate": "Zaimportowany certyfikat PKCS",
- "preferenceFile": "Plik preferencji",
- "presets": "Ustawienia wstępne",
- "scepCertificate": "Certyfikat SCEP",
- "secureAssessmentEducation": "Bezpieczna ocena (edukacja)",
- "settingsCatalog": "Katalog ustawień",
- "sharedMultiUserDevice": "Udostępnione urządzenie obsługujące wielu użytkowników",
- "softwareUpdates": "Aktualizacje oprogramowania",
- "trustedCertificate": "Certyfikat zaufany",
- "unknown": "Nieznany",
- "unsupported": "Nieobsługiwane",
- "vpn": "Sieć VPN",
- "wiFi": "Sieć Wi-Fi",
- "wiFiImport": "Importowanie sieci Wi-Fi",
- "windows10CompliancePolicy": "Zasady zgodności systemu Windows 10/11",
- "windows10MobileCompliancePolicy": "Zasady dotyczące zgodności dla systemu Windows 10 Mobile",
- "windows10XScep": "Certyfikat SCEP — TEST",
- "windows10XTrustedCertificate": "Zaufany certyfikat — TEST",
- "windows10XVPN": "VPN — TEST",
- "windows10XWifi": "WIFI — TEST",
- "windows8CompliancePolicy": "Zasady dotyczące zgodności dla systemu Windows 8",
- "windowsHealthMonitoring": "Monitorowanie kondycji systemu Windows",
- "windowsInformationProtection": "Windows Information Protection",
- "windowsPhoneCompliancePolicy": "Zasady dotyczące zgodności dla systemu Windows Phone",
- "windowsUpdateforBusiness": "Windows Update dla Firm",
- "wiredNetwork": "Sieć przewodowa",
- "workProfile": "Osobisty profil służbowy"
- },
- "OfficeSuiteAppsTab": {
- "acceptLicenseOnBehalfOfUsersLabel": "Zaakceptuj Postanowienia licencyjne dotyczące oprogramowania firmy Microsoft w imieniu użytkowników",
- "appSuiteConfigurationLabel": "Konfiguracja zestawu aplikacji",
- "appSuiteInformationLabel": "Informacje o pakiecie aplikacji",
- "appsToBeInstalledLabel": "Aplikacje, które mają zostać zainstalowane w ramach zestawu",
- "architectureLabel": "Architektura",
- "architectureTooltip": "Definiuje, czy na urządzeniach jest instalowana 32-bitowa, czy 64-bitowa wersja aplikacji platformy Microsoft 365.",
- "configurationDesignerLabel": "Projektant konfiguracji",
- "configurationFileLabel": "Plik konfiguracji",
- "configurationSettingsFormatLabel": "Format ustawień konfiguracji",
- "configureAppSuiteLabel": "Konfigurowanie pakietu aplikacji",
- "configuredLabel": "Skonfigurowano",
- "currentVersionLabel": "Bieżąca wersja",
- "currentVersionTooltip": "To jest bieżąca wersja pakietu Office, która jest skonfigurowana w tym zestawie. Ta wartość zostanie zaktualizowana po skonfigurowaniu i zapisaniu nowszej wersji.",
- "enableMicrosoftSearchAsDefaultTooltip": "Instaluje usługę w tle, która pomaga określić, czy na urządzeniu jest zainstalowane rozszerzenie Microsoft Search w usłudze Bing dla przeglądarki Google Chrome.",
- "enterXmlDataLabel": "Wprowadź dane XML",
- "languagesLabel": "Języki",
- "languagesTooltip": "Domyślnie usługa Intune zainstaluje pakiet Office w domyślnym języku systemu operacyjnego. Wybierz dowolne dodatkowe języki, które chcesz zainstalować.",
- "learnMoreText": "Dowiedz się więcej",
- "newUpdateChannelTooltip": "Określa, jak często aplikacja jest aktualizowana przy użyciu nowych funkcji.",
- "noCurrentVersionText": "Brak bieżącej wersji",
- "noLanguagesSelectedLabel": "Nie wybrano żadnych języków",
- "notConfiguredLabel": "Nie skonfigurowano",
- "propertiesLabel": "Właściwości",
- "removeOtherVersionsLabel": "Usuń inne wersje",
- "removeOtherVersionsTooltip": "Wybierz pozycję Tak, aby usunąć inne wersje pakietu Office (MSI) z urządzeń użytkownika.",
- "selectOfficeAppsLabel": "Wybierz aplikacje pakietu Office",
- "selectOfficeAppsTooltip": "Wybierz aplikacje usługi Office 365, które mają zostać zainstalowane jako część pakietu.",
- "selectOtherOfficeAppsLabel": "Wybierz inne aplikacje pakietu Office (wymagana licencja)",
- "selectOtherOfficeAppsTooltip": "Jeśli jesteś właścicielem licencji na te dodatkowe aplikacje pakietu Office, możesz przypisać je także za pomocą usługi Intune.",
- "specificVersionLabel": "Określona wersja",
- "updateChannelLabel": "Kanał aktualizacji",
- "updateChannelTooltip": "Definiuje, jak często aplikacja jest aktualizowana przy użyciu nowych funkcji.
\r\n — zapewnij użytkownikom najnowsze funkcje pakietu Office, gdy tylko staną się dostępne.
\r\nMiesięczny kanał dla przedsiębiorstw — zapewnij użytkownikom najnowsze funkcje pakietu Office raz w miesiącu, w drugi wtorek miesiąca.
\r\nMiesięczny (kierowany) — zapewnij wcześniejszy dostęp do nadchodzącej wersji kanału miesięcznego. Jest to obsługiwany kanał aktualizacji, i zwykle jest dostępny co najmniej tydzień przed tym, gdy wersja z kanału miesięcznego zawiera nowe funkcje.
\r\nPółroczny — zapewnij użytkownikom nowe funkcje pakietu Office tylko kilka razy w roku.
\r\nPółroczny (kierowany) — zapewnij użytkownikom pilotażowym i testerom zgodności aplikacji możliwość przetestowania następnej wersji półrocznej.",
- "useMicrosoftSearchAsDefault": "Zainstaluj usługę w tle dla funkcji Microsoft Search w usłudze Bing",
- "useSharedComputerActivationLabel": "Użyj aktywacji na komputerze udostępnionym",
- "useSharedComputerActivationTooltip": "Aktywacja na komputerze udostępnionym umożliwia wdrożenie aplikacji platformy Microsoft 365 na komputerach, które są używane przez wielu użytkowników. Zwykle użytkownicy mogą zainstalować i aktywować aplikacje platformy Microsoft 365 tylko na ograniczonej liczbie urządzeń, np. na 5 komputerach osobistych. Korzystanie z aplikacji platformy Microsoft 365 w ramach aktywacji na komputerze udostępnionym nie będzie wliczane do tego limitu.",
- "versionToInstallLabel": "Wersja do zainstalowania",
- "versionToInstallTooltip": "Wybierz wersję pakietu Office, która ma zostać zainstalowana.",
- "xLanguagesSelectedLabel": "Wybrane języki: {0}",
- "xmlConfigurationLabel": "Konfiguracja XML"
- },
- "OfficeApplicationType": {
- "access": "Access",
- "bing": "Domyślne używanie funkcji Microsoft Search",
- "excel": "Excel",
- "groove": "OneDrive (Groove)",
- "lync": "Skype dla firm",
- "oneDrive": "Aplikacja klasyczna OneDrive",
- "oneNote": "OneNote",
- "outlook": "Outlook",
- "powerPoint": "PowerPoint",
- "publisher": "Publisher",
- "teams": "Teams",
- "word": "Word"
- },
- "WindowsQualityUpdateProfile": {
- "Details": {
- "DaysUntilForcedReboot": {
- "label": "Liczba dni oczekiwania przed wymuszeniem ponownego uruchomienia"
- },
- "Description": {
- "label": "Opis"
- },
- "Name": {
- "label": "Nazwa"
- },
- "QualityUpdateRelease": {
- "label": "Przyspiesz instalację aktualizacji dotyczących jakości, jeśli wersja systemu operacyjnego urządzenia jest mniejsza niż:"
- },
- "bladeTitle": "Aktualizacje dotyczące jakości systemu Windows 10 i nowszych (wersja zapoznawcza)",
- "loadError": "Ładowanie nie powiodło się."
- },
- "TabName": {
- "qualityUpdateSettings": "Ustawienia"
- },
- "infoBoxText": "Jedyną obecnie dostępną dedykowaną kontrolą aktualizacji dotyczącej jakości poza istniejącymi zasadami pierścieni aktualizacji systemu Windows 10 i nowszych jest możliwość przyspieszenia aktualizacji dotyczących jakości dla urządzeń, które są poza określonym poziomem poprawek. Dodatkowe kontrole będą dostępne w przyszłości.",
- "warningBoxText": "Przyspieszanie aktualizacji oprogramowania może skrócić czas do uzyskania zgodności w razie potrzeby, ale ma większy wpływ na produktywność użytkowników końcowych. Znacznie wzrasta prawdopodobieństwo wymuszonych ponownych uruchomień w godzinach pracy użytkowników."
- },
- "Devices": {
- "General": {
- "android": "Android"
- },
- "aOSP": "Projekt open source systemu Android",
- "android": "Administrator urządzeń z systemem Android",
- "androidWorkProfile": "Android Enterprise (profil służbowy)",
- "iOS": "iOS/iPadOS",
- "mac": "macOS",
- "windows": "Windows (MDM)",
- "windows10": "Windows 10 i nowsze",
- "windowsHomeSku": "Jednostka SKU systemu Windows Home",
- "windowsMobile": "Windows Mobile"
- },
"SettingDetails": {
"CustomPolicyConfigurationProfile": {
"uploadControlPlaceHolderText": "Wybierz plik profilu konfiguracji"
@@ -3675,7 +1707,7 @@
"aESGCM128": "AES-128-GCM (16-oktetowa wartość sprawdzania integralności)",
"aESGCM256": "AES-256-GCM (16-oktetowa wartość sprawdzania integralności)",
"aadSharedDeviceDataClearAppsDescription": "Dodaj do listy dowolną aplikację, która nie jest zoptymalizowana pod kątem trybu urządzenia udostępnionego. Dane lokalne aplikacji zostaną wyczyszczone za każdym razem, gdy użytkownik wyloguje się z aplikacji zoptymalizowanej pod kątem trybu urządzenia udostępnionego. Dostępne dla dedykowanych urządzeń zarejestrowanych w trybie udostępnionym z systemem Android 9 lub nowszym.",
- "aadSharedDeviceDataClearAppsName": "Wyczyść dane lokalne w aplikacjach, które nie są zoptymalizowane pod kątem trybu urządzenia udostępnionego (publiczna wersja zapoznawcza)",
+ "aadSharedDeviceDataClearAppsName": "Wyczyść dane lokalne w aplikacjach, które nie są zoptymalizowane dla trybu Urządzenie udostępnione",
"accountsPageDescription": "Blokuje dostęp do obszaru Konta w aplikacji Ustawienia.",
"accountsPageName": "Konta",
"accountsSignInAssistantSettingsDescription": "Blokuj usługę Asystent logowania firmy Microsoft (wlidsvc). Gdy to ustawienie nie jest skonfigurowane, usługą NT wlidsvc może sterować użytkownik (uruchamianie ręczne)",
@@ -5503,7 +3535,7 @@
"enableEndUserAccessToDefenderName": "Dostęp użytkownika końcowego do narzędzia Defender",
"enableEngagedRestartDescription": "Włącza ustawienia umożliwiające użytkownikowi na przełączenie do ponownego uruchamiania wymagającego interwencji użytkownika.",
"enableEngagedRestartName": "Zezwalaj użytkownikowi na ponowne uruchamianie (ponowne uruchamianie wymagające interwencji użytkownika)",
- "enableIdentityPrivacyDescription": "Ta właściwość maskuje nazwy użytkowników przy użyciu wprowadzonego tekstu. Przykładowo jeśli wpiszesz „anonimowy”, każdy użytkownik uwierzytelniający się w tym połączeniu Wi-Fi przy użyciu właściwej nazwy użytkownika będzie wyświetlany jako „anonimowy”.",
+ "enableIdentityPrivacyDescription": "Ta właściwość maskuje nazwy użytkowników wprowadzonym tekstem. Jeśli na przykład wpiszesz „anonimowy”, to każdy użytkownik uwierzytelniony za pomocą tego połączenia Wi-Fi przy użyciu swojej rzeczywistej nazwy użytkownika będzie wyświetlany jako „anonimowy”. Może to być wymagane w przypadku korzystania z uwierzytelniania certyfikatu opartego na urządzeniu.",
"enableIdentityPrivacyName": "Prywatność tożsamości (tożsamość zewnętrzna)",
"enableNetworkInspectionSystemDescription": "Blokuj złośliwy ruch sieciowy wykryty przez sygnatury w systemie Network Inspection System (NIS)",
"enableNetworkInspectionSystemName": "Network Inspection System (NIS)",
@@ -7252,6 +5284,8 @@
"presharedKeyEncodingDescription": "Kodowanie kluczy wstępnych przy użyciu kodowania UTF-8.",
"presharedKeyEncodingName": "Kodowanie kluczy wstępnych",
"preventAny": "Uniemożliwiaj wszelkie udostępnianie poza granice",
+ "primaryAuthenticationMethodName": "Podstawowa metoda uwierzytelniania",
+ "primaryAuthenticationMethodTEAPDescription": "Wybierz podstawowy sposób uwierzytelniania użytkowników. Po wybraniu pozycji Certyfikaty wybierz jeden z profilów certyfikatów (SCEP lub PKCS), który jest również wdrożony na urządzeniu. Jest to certyfikat tożsamości, który jest prezentowany serwerowi przez urządzenie.",
"primarySMTPAddressOption": "Podstawowy adres SMTP",
"printersColumns": "np. nazwa DNS drukarki",
"printersDescription": "Automatycznie aprowizuj drukarki na podstawie ich nazw hostów sieci. To ustawienie nie obsługuje drukarek udostępnionych.",
@@ -7663,6 +5697,8 @@
"searchEnableRemoteQueriesName": "Zapytania zdalne",
"secondActiveEthernet": "Druga aktywna sieć Ethernet",
"secondEthernet": "Druga sieć Ethernet",
+ "secondaryAuthenticationMethodName": "Pomocnicza metoda uwierzytelniania",
+ "secondaryAuthenticationMethodTEAPDescription": "Wybierz pomocniczy sposób uwierzytelniania użytkowników. Po wybraniu pozycji Certyfikaty wybierz jeden z profilów certyfikatów (SCEP lub PKCS), który jest również wdrożony na urządzeniu. Jest to certyfikat tożsamości, który jest prezentowany serwerowi przez urządzenie.",
"secretKey": "Klucz tajny:",
"secureBootEnabledDescription": "Wymagaj włączenia bezpiecznego rozruchu na urządzeniu",
"secureBootEnabledName": "Wymagaj włączenia bezpiecznego rozruchu na urządzeniu",
@@ -8074,6 +6110,7 @@
"systemUpdateWindow9": "04:30",
"systemWindowsBlockedDescription": "Wyłącz powiadomienia okna, takie jak wyskakujące powiadomienia, połączenia przychodzące, połączenia wychodzące, alerty systemowe i błędy systemu.",
"systemWindowsBlockedName": "Okna powiadomień",
+ "tEAPName": "Protokół EAP tunelu (TEAP)",
"tLSMinMax": "Minimalna wersja protokołu TLS musi być mniejsza lub równa maksymalnej wersji protokołu TLS.",
"tLSVersionRangeMaximum": "Maksimum zakresu wersji protokołu TLS",
"tLSVersionRangeMaximumDescription": "Wprowadź maksymalną wersję protokołu TLS: 1.0, 1.1 lub 1.2. Jeśli to pole pozostanie puste, zostanie użyta wartość domyślna 1.2.",
@@ -8126,6 +6163,17 @@
"timeWindowSameStartEndDayTime": "Data/godzina zakończenia nie może być taka sama, jak data/godzina rozpoczęcia.",
"timeZoneDescription": "Wybierz strefę czasową dla urządzeń docelowych.",
"timeZoneName": "Strefa czasowa",
+ "timeoutFifteenMinutes": "15 minut",
+ "timeoutFiveMinutes": "5 minut",
+ "timeoutFourHours": "4 godziny",
+ "timeoutNever": "Limit czasu nigdy nie upływa",
+ "timeoutOneHour": "1 godzina",
+ "timeoutOneMinute": "1 minuta",
+ "timeoutTenMinutes": "10 minut",
+ "timeoutThirtyMinutes": "30 minut",
+ "timeoutThreeMinutes": "3 minuty",
+ "timeoutTwoHours": "2 godziny",
+ "timeoutTwoMinutes": "2 minuty",
"toggleConfigurationPkgDescription": "Przekaż podpisany pakiet konfiguracji, za pomocą którego zostanie dołączony klient usługi Microsoft Defender for Endpoint",
"toggleConfigurationPkgName": "Typ pakietu konfiguracji klienta usługi Microsoft Defender for Endpoint:",
"trafficRuleAppName": "Aplikacja",
@@ -8824,6 +6872,33 @@
"win10WifiWirelessSecurityTypeName": "Typ zabezpieczeń sieci bezprzewodowej",
"win10WifiWirelessSecurityTypeOpen": "Otwarte (brak uwierzytelniania)",
"win10WifiWirelessSecurityTypeWPA": "WPA/WPA2-Personal",
+ "win10WiredAuthenticationModeDescription": "Wybierz, czy chcesz uwierzytelniać użytkownika, urządzenie, użytkownika i urządzenie, czy też korzystać z uwierzytelniania gościa (czyli bez uwierzytelniania). Jeśli korzystasz z uwierzytelniania za pomocą certyfikatu, upewnij się, że typ certyfikatu jest zgodny z typem uwierzytelniania.",
+ "win10WiredAuthenticationModeName": "Tryb uwierzytelniania",
+ "win10WiredAuthenticationPeriodDescription": "Czas w sekundach, przez który klient czeka po próbie uwierzytelnienia przed uznaniem jej za zakończoną niepowodzeniem. Wybierz liczbę z zakresu od 1 do 3600. Jeśli nie określono wartości, jest używana wartość 18.",
+ "win10WiredAuthenticationPeriodName": "Okres uwierzytelniania",
+ "win10WiredAuthenticationRetryDelayPeriodDescription": "Liczba sekund między uwierzytelnianiem zakończonym niepowodzeniem a następną próbą uwierzytelnienia. Wybierz wartość z zakresu od 1 do 3600. Jeśli nie określono wartości, jest używana wartość 1.",
+ "win10WiredAuthenticationRetryDelayPeriodName": "Okres opóźnienia ponowienia uwierzytelniania ",
+ "win10WiredFIPSComplianceDescription": "Weryfikacji względem standardu FIPS 140-2 jest wymagana dla wszystkich agencji rządu federalnego USA używających systemów zabezpieczeń opartych na kryptografii do ochrony przechowywanych cyfrowo informacji, które są poufne ale nieutajnione.",
+ "win10WiredFIPSComplianceName": "Wymuś zgodność profilu przewodowego z normą FIPS (Federal Information Processing Standard)",
+ "win10WiredGuest": "Gość",
+ "win10WiredMachine": "Maszyna",
+ "win10WiredMachineOrUser": "Użytkownik lub maszyna",
+ "win10WiredMaximumAuthenticationFailuresDescription": "Podaj maksymalną liczbę niepowodzeń uwierzytelniania dla tego zbioru poświadczeń. Jeśli nie określono wartości, jest używana wartość 1.",
+ "win10WiredMaximumAuthenticationFailuresName": "Maksymalna liczba niepowodzeń uwierzytelniania",
+ "win10WiredMaximumEAPOLStartMessagesDescription": "Wybierz liczbę komunikatów EAPOL-Start z zakresu od 1 do 100. Jeśli nie określono wartości, wysyłane są maksymalnie 3 komunikaty.",
+ "win10WiredMaximumEAPOLStartMessagesName": "Maksymalna liczba komunikatów EAPOL-Start",
+ "win10WiredNetworkAuthenticationBlockPeriodDescription": "Okres blokady uwierzytelniania w minutach. Służy do określania czasu trwania, przez jaki próby automatycznego uwierzytelniania będą blokowane po nieudanej próbie uwierzytelnienia. Wybierz wartość z zakresu od 0 do 1440.",
+ "win10WiredNetworkAuthenticationBlockPeriodName": "Okres blokowania (minuty)",
+ "win10WiredNetworkAuthenticationModeName": "Tryb uwierzytelniania",
+ "win10WiredNetworkDoNotEnforceName": "Nie wymuszaj",
+ "win10WiredNetworkEnforce8021XDescription": "Określa, czy usługa automatycznej konfiguracji dla sieci przewodowych wymaga użycia 802.1X na potrzeby uwierzytelniania portów.",
+ "win10WiredNetworkEnforce8021XName": "802.1x",
+ "win10WiredNetworkEnforceName": "Wymuś",
+ "win10WiredRememberCredentialsDescription": "Zdecyduj, czy poświadczenia użytkowników mają być buforowane po ich wprowadzeniu przy pierwszym połączeniu z siecią przewodową. Buforowane poświadczenia są używane dla kolejnych połączeń i użytkownicy nie muszą ich ponownie wprowadzać. Nieskonfigurowanie tego ustawienia jest równoważne ustawieniu go na wartość Tak.",
+ "win10WiredRememberCredentialsName": "Zapamiętuj poświadczenia przy każdym logowaniu",
+ "win10WiredStartPeriodDescription": "Liczba sekund oczekiwania przed wysłaniem komunikatu EAPOL-Start. Wybierz wartość z zakresu od 1 do 3600. Jeśli nie określono wartości, jest używana wartość 5.",
+ "win10WiredStartPeriodName": "Okres początkowy",
+ "win10WiredUser": "Użytkownik",
"win10appLockerApplicationControlAllowDescription": "Uruchomienie tych aplikacji będzie możliwe",
"win10appLockerApplicationControlAllowName": "Wymuś",
"win10appLockerApplicationControlAuditComponentsAndStoreAppsDescription": "Tryb „Tylko inspekcja” służy do rejestrowania wszystkich zdarzeń w dziennikach zdarzeń klienta lokalnego, ale nie blokuje uruchamiania żadnych aplikacji. Składniki systemu Windows i aplikacje ze sklepu Microsoft Store zostaną zarejestrowane jako spełniające wymagania w zakresie zabezpieczeń.",
@@ -9165,7 +7240,6 @@
"deviceConditionsInfoParagraph2": "Podobne ustawienia oparte na urządzeniu można skonfigurować dla zarejestrowanych urządzeń.",
"deviceConditionsInfoParagraph2LinkText": "Dowiedz się więcej o konfigurowaniu ustawień zgodności zarejestrowanych urządzeń.",
"deviceId": "Identyfikator urządzenia",
- "deviceLockComplexityValidationFailureNotes": "Uwagi:
\r\n\r\n - Blokada urządzenia może wymagać złożoności hasła: LOW, MEDIUM lub HIGH przeznaczonej docelowo dla systemu Android 11+. W przypadku urządzeń z systemem Android 10 i starszym ustawieniem wartości złożoności Low/Medium/High będzie domyślnie oczekiwane zachowanie dla trybu „Niska złożoność”.
\r\n - Poniższe definicje haseł mogą ulec zmianie. Zapoznaj się z elementem DevicePolicyManager|Deweloperzy systemu Android dla najczęściej aktualizowanych definicji różnych poziomów złożoności haseł.
\r\n
\r\n\r\nNiski
\r\n\r\n - Hasło może być wzorcem lub numerem PIN z sekwencją powtarzania (4444) lub sekwencją uporządkowaną (1234, 4321, 2468).
\r\n
\r\n\r\nŚredni
\r\n\r\n - Numer PIN bez sekwencji powtarzania (4444) lub sekwencji uporządkowanej (1234, 4321, 2468) o minimalnej długości co najmniej 4 znaków
\r\n - Hasła literowe o minimalnej długości co najmniej 4 znaków
\r\n - Hasła alfanumeryczne o minimalnej długości co najmniej 4 znaków\r\n
\r\n\r\nWysoki
\r\n\r\n - Numer PIN bez sekwencji powtarzania (4444) lub sekwencji uporządkowanej (1234, 4321, 2468) o minimalnej długości co najmniej 8 znaków
\r\n - Hasła literowe o minimalnej długości co najmniej 6 znaków
\r\n - Hasła alfanumeryczne o minimalnej długości co najmniej 6 znaków
\r\n
\r\n",
"deviceLockedOpenFilesOptionsText": "Gdy urządzenie jest zablokowane i istnieją otwarte pliki",
"deviceLockedOptionText": "Gdy urządzenie jest zablokowane",
"deviceManufacturer": "Producent urządzenia",
@@ -9463,7 +7537,7 @@
"reporting": "Raportowanie",
"reports": "Raporty",
"require": "Wymagaj",
- "requireDeviceLockComplexityOnApps": "Wymagaj złożoności blokady urządzenia",
+ "requireDeviceLockOnApps": "Require device lock",
"requireThreatScanOnApps": "Wymagaj skanowania zagrożeń w aplikacjach",
"requiredField": "To pole nie może być puste",
"requiredSafetyNetEvaluationType": "Wymagany typ oceny SafetyNet",
@@ -9659,6 +7733,7 @@
"yourDataIsBeingDownloadedEllipsis": "Trwa pobieranie danych, może to potrwać jakiś czas...",
"yourDataIsBeingDownloadedMinutes": "Dane są pobierane, może to zająć kilka minut...",
"yourProtectionLevel": "Twój poziom ochrony",
+ "rules": "Zasady",
"basics": "Podstawowe",
"modeTableHeader": "Tryb grupy",
"appAssignmentMsg": "Grupa",
@@ -9695,221 +7770,2042 @@
"licenseTypeDevice": "Urządzenie",
"licenseTypeUser": "Użytkownik"
},
- "Languages": {
- "ar-aE": "Arabski (Zjednoczone Emiraty Arabskie)",
- "ar-bH": "Arabski (Bahrajn)",
- "ar-dZ": "Arabski (Algieria)",
- "ar-eG": "Arabski (Egipt)",
- "ar-iQ": "Arabski (Irak)",
- "ar-jO": "Arabski (Jordania)",
- "ar-kW": "Arabski (Kuwejt)",
- "ar-lB": "Arabski (Liban)",
- "ar-lY": "Arabski (Libia)",
- "ar-mA": "Arabski (Maroko)",
- "ar-oM": "Arabski (Oman)",
- "ar-qA": "Arabski (Katar)",
- "ar-sA": "Arabski (Arabia Saudyjska)",
- "ar-sY": "Arabski (Syria)",
- "ar-tN": "Arabski (Tunezja)",
- "ar-yE": "Arabski (Jemen)",
- "az-cyrl": "Azerbejdżański (cyrylica, Azerbejdżan)",
- "az-latn": "Azerbejdżański (łaciński, Azerbejdżan)",
- "bn-bD": "Bengalski (Bangladesz)",
- "bn-iN": "Bengalski (Indie)",
- "bs-cyrl": "Bośniacki (cyrylica)",
- "bs-latn": "Bośniacki (łaciński)",
- "zh-cN": "Chiński (ChRL)",
- "zh-hK": "Chiński (SRA Hongkong)",
- "zh-mO": "Chiński (SRA Makau)",
- "zh-sG": "Chiński (Singapur)",
- "zh-tW": "Chiński (Tajwan)",
- "hr-bA": "Chorwacki (łaciński)",
- "hr-hR": "Chorwacki (Chorwacja)",
- "nl-bE": "Holenderski (Belgia)",
- "nl-nL": "Holenderski (Holandia)",
- "en-aU": "Angielski (Australia)",
- "en-bZ": "Angielski (Belize)",
- "en-cA": "Angielski (Kanada)",
- "en-cabn": "Angielski (Karaiby)",
- "en-iE": "Angielski (Irlandia)",
- "en-iN": "Angielski (Indie)",
- "en-jM": "Angielski (Jamajka)",
- "en-mY": "Angielski (Malezja)",
- "en-nZ": "Angielski (Nowa Zelandia)",
- "en-pH": "Angielski (Republika Filipin)",
- "en-sG": "Angielski (Singapur)",
- "en-tT": "Angielski (Trynidad i Tobago)",
- "en-uK": "Angielski (Zjednoczone Królestwo)",
- "en-uS": "Angielski (Stany Zjednoczone)",
- "en-zA": "Angielski (Republika Południowej Afryki)",
- "en-zW": "Angielski (Zimbabwe)",
- "fr-bE": "Francuski (Belgia)",
- "fr-cA": "Francuski (Kanada)",
- "fr-cH": "Francuski (Szwajcaria)",
- "fr-fR": "Francuski (Francja)",
- "fr-lU": "Francuski (Luksemburg)",
- "fr-mC": "Francuski (Monako)",
- "de-aT": "Niemiecki (Austria)",
- "de-cH": "Niemiecki (Szwajcaria)",
- "de-dE": "Niemiecki (Niemcy)",
- "de-lI": "Niemiecki (Liechtenstein)",
- "de-lU": "Niemiecki (Luksemburg)",
- "iu-cans": "Inuktitut (sylabiczny, Kanada)",
- "iu-latn": "Inuktitut (łaciński, Kanada)",
- "it-cH": "Włoski (Szwajcaria)",
- "it-iT": "Włoski (Włochy)",
- "ms-bN": "Malajski (Brunei Darussalam)",
- "ms-mY": "Malajski (Malezja)",
- "mn-cN": "Mongolski (mongolski tradycyjny, ChRL)",
- "mn-mN": "Mongolski (cyrylica, Mongolia)",
- "no-nB": "Norweski, Bokmål (Norwegia)",
- "no-nn": "Norweski, Nynorsk (Norwegia)",
- "pt-bR": "Portugalski (Brazylia)",
- "pt-pT": "Portugalski (Portugalia)",
- "quz-bO": "Keczua (Boliwia)",
- "quz-eC": "Keczua (Ekwador)",
- "quz-pE": "Keczua (Peru)",
- "smj-nO": "Lapoński, Lule (Norwegia)",
- "smj-sE": "Lapoński, Lule (Szwecja)",
- "se-fI": "Lapoński, północny (Finlandia)",
- "se-nO": "Lapoński, północny (Norwegia)",
- "se-sE": "Lapoński, północny (Szwecja)",
- "sma-nO": "Lapoński, południowy (Norwegia)",
- "sma-sE": "Lapoński, południowy (Szwecja)",
- "smn": "Lapoński, Inari (Finlandia)",
- "sms": "Lapoński, Skolt (Finlandia)",
- "sr-Cyrl-bA": "Serbski (cyrylica)",
- "sr-Cyrl-rS": "Serbski (cyrylica, Serbia i Czarnogóra [dawniej])",
- "sr-Latn-bA": "Serbski (łaciński)",
- "sr-Latn-rS": "Serbski (łaciński, Serbia)",
- "dsb": "Dolnołużycki (Niemcy)",
- "hsb": "Górnołużycki (Niemcy)",
- "es-es-tradnl": "Hiszpański (Hiszpania, sortowanie tradycyjne)",
- "es-aR": "Hiszpański (Argentyna)",
- "es-bO": "Hiszpański (Boliwia)",
- "es-cL": "Hiszpański (Chile)",
- "es-cO": "Hiszpański (Kolumbia)",
- "es-cR": "Hiszpański (Kostaryka)",
- "es-dO": "Hiszpański (Dominikana)",
- "es-eC": "Hiszpański (Ekwador)",
- "es-eS": "Hiszpański (Hiszpania)",
- "es-gT": "Hiszpański (Gwatemala)",
- "es-hN": "Hiszpański (Honduras)",
- "es-mX": "Hiszpański (Meksyk)",
- "es-nI": "Hiszpański (Nikaragua)",
- "es-pA": "Hiszpański (Panama)",
- "es-pE": "Hiszpański (Peru)",
- "es-pR": "Hiszpański (Portoryko)",
- "es-pY": "Hiszpański (Paragwaj)",
- "es-sV": "Hiszpański (Salwador)",
- "es-uS": "Hiszpański (Stany Zjednoczone)",
- "es-uY": "Hiszpański (Urugwaj)",
- "es-vE": "Hiszpański (Wenezuela)",
- "sv-fI": "Szwedzki (Finlandia)",
- "uz-cyrl": "Uzbecki (cyrylica, Uzbekistan)",
- "uz-latn": "Uzbecki (łaciński, Uzbekistan)",
- "af": "Afrykanerski (Republika Południowej Afryki)",
- "sq": "Albański (Albania)",
- "am": "Amharyjski (Etiopia)",
- "hy": "Armeński (Armenia)",
- "as": "Assamski (Indie)",
- "ba": "Baszkirski (Rosja)",
- "eu": "Baskijski (Baskijski)",
- "be": "Białoruski (Białoruś)",
- "br": "Bretoński (Francja)",
- "bg": "Bułgarski (Bułgaria)",
- "ca": "Kataloński (Kataloński)",
- "co": "Korsykański (Francja)",
- "cs": "Czeski (Czechy)",
- "da": "Duński (Dania)",
- "prs": "Dari (Afganistan)",
- "dv": "Divehi (Malediwy)",
- "et": "Estoński (Estonia)",
- "fo": "Farerski (Wyspy Owcze)",
- "fil": "Filipino (Filipiny)",
- "fi": "Fiński (Finlandia)",
- "gl": "Galicyjski (Galicia)",
- "ka": "Gruziński (Gruzja)",
- "el": "Grecki (Grecja)",
- "gu": "Gudżarati (Indie)",
- "ha": "Hausa (łaciński, Nigeria)",
- "he": "Hebrajski (Izrael)",
- "hi": "Hindi (Indie)",
- "hu": "Węgierski (Węgry)",
- "is": "Islandzki (Islandia)",
- "ig": "Igbo (Nigeria)",
- "id": "Indonezyjski (Indonezja)",
- "ga": "Irlandzki (Irlandia)",
- "xh": "isiXhosa (Republika Południowej Afryki)",
- "zu": "isiZulu (Republika Południowej Afryki)",
- "ja": "Japoński (Japonia)",
- "kn": "Kannada (Indie)",
- "kk": "Kazachski (Kazachstan)",
- "km": "Khmerski (Kambodża)",
- "rw": "Kinjarwanda (Rwanda)",
- "sw": "Suahili (Kenia)",
- "kok": "Konkani (Indie)",
- "ko": "Koreański (Korea Południowa)",
- "ky": "Kirgiski (Kirgistan)",
- "lo": "Laotański (Laotańska RLD)",
- "lv": "Łotewski (Łotwa)",
- "lt": "Litewski (Litwa)",
- "lb": "Luksemburski (Luksemburg)",
- "mk": "Macedoński (Macedonia Północna)",
- "ml": "Malajalam (Indie)",
- "mt": "Maltański (Malta)",
- "mi": "Maoryjski (Nowa Zelandia)",
- "mr": "Marathi (Indie)",
- "moh": "Mohawk (Mohawk)",
- "ne": "Nepalski (Nepal)",
- "oc": "Okcytański (Francja)",
- "or": "Orija (Indie)",
- "ps": "Paszto (Afganistan)",
- "fa": "Perski",
- "pl": "Polski (Polska)",
- "pa": "Pendżabski (Indie)",
- "ro": "Rumuński (Rumunia)",
- "rm": "Romansz (retoromański, Szwajcaria)",
- "ru": "Rosyjski (Rosja)",
- "sa": "Sanskryt (Indie)",
- "st": "Sesotho północny (Republika Południowej Afryki)",
- "tn": "Setswana (Republika Południowej Afryki)",
- "si": "Sinhala (Sri Lanka)",
- "sk": "Słowacki (Słowacja)",
- "sl": "Słoweński (Słowenia)",
- "sv": "Szwedzki (Szwecja)",
- "syr": "Syryjski (Syria)",
- "tg": "Tadżycki (cyrylica, Tadżykistan)",
- "ta": "Tamilski (Indie)",
- "tt": "Tatarski (Rosja)",
- "te": "Telugu (Indie)",
- "th": "Tajski (Tajlandia)",
- "bo": "Tybetański (ChRL)",
- "tr": "Turecki (Turcja)",
- "tk": "Turkmeński (Turkmenistan)",
- "uk": "Ukraiński (Ukraina)",
- "ur": "Urdu (Islamska Republika Pakistanu)",
- "vi": "Wietnamski (Wietnam)",
- "cy": "Walijski (Zjednoczone Królestwo)",
- "wo": "Wolof (Senegal)",
- "ii": "Yi (ChRL)",
- "yo": "Joruba (Nigeria)"
- },
- "AppProtection": {
- "allAppTypes": "Dotyczy wszystkich typów aplikacji",
- "androidPlatformLabel": "Android",
- "appsInAndroidWorkProfile": "Aplikacje w ramach profilu programu Android for Work",
- "appsOnIntuneManagedDevices": "Aplikacje na urządzeniach zarządzanych przez usługę Intune",
- "appsOnUnmanagedDevices": "Aplikacje na urządzeniach niezarządzanych",
- "iOSPlatformLabel": "iOS/iPadOS",
- "iosAndroidMacPlatformLabel": "iOS, Android i Mac",
- "iosAndroidPlatformLabel": "iOS, Android",
- "macPlatformLabel": "Mac",
- "notAvailable": "Niedostępne",
- "windows10PlatformLabel": "Windows 10 i nowsze",
- "withEnrollment": "Z rejestracją",
- "withoutEnrollment": "Bez rejestracji"
- },
+ "ApplicabilityRules": {
+ "GridLabel": {
+ "property": "Właściwość",
+ "rule": "Reguła",
+ "ruleDetails": "Szczegóły reguły",
+ "value": "Wartość"
+ },
+ "assignIf": "Przypisz profil, jeżeli",
+ "deleteWarning": "Spowoduje to usunięcie wybranej reguły stosowania",
+ "dontAssignIf": "Nie przypisuj profilu, jeżeli",
+ "editionDisplayText": "{0} {1}",
+ "editionDisplayTextMore": "i {0} więcej",
+ "instructions": "Określ sposób stosowania tego profilu w przypisanej grupie. Usługa Intune zastosuje profil tylko do urządzeń, które spełniają połączone kryteria tych reguł.",
+ "maxText": "Maksymalna",
+ "minText": "Minimalna",
+ "noActionRow": "Nie określono reguł stosowania",
+ "oSVersion": "np. 1.2.3.4",
+ "toText": "do",
+ "windows10Education": "Windows 10/11 Education",
+ "windows10EducationN": "Windows 10/11 Education N",
+ "windows10Enterprise": "Windows 10/11 Enterprise",
+ "windows10EnterpriseN": "Windows 10/11 Enterprise N",
+ "windows10HolographicEnterprise": "Windows 10 Holographic for Business",
+ "windows10Home": "Windows 10/11 Home",
+ "windows10HomeChina": "Windows 10 Home (Chiny)",
+ "windows10HomeN": "Windows 10/11 Home N",
+ "windows10HomeSingleLanguage": "Windows 10/11 Home — pojedynczy język",
+ "windows10IoTCore": "Windows 10 IoT Core",
+ "windows10IoTCoreCommercial": "Windows 10 IoT Core Commercial",
+ "windows10Mobile": "Windows 10 Mobile",
+ "windows10MobileEnterprise": "Windows 10 Mobile Enterprise",
+ "windows10OsEdition": "Wersja systemu operacyjnego",
+ "windows10OsVersion": "Wersja systemu operacyjnego",
+ "windows10Professional": "Windows 10/11 Professional",
+ "windows10ProfessionalEducation": "Windows 10/11 Professional Education",
+ "windows10ProfessionalEducationN": "Windows 10/11 Professional Education N",
+ "windows10ProfessionalN": "Windows 10 Professional N",
+ "windows10ProfessionalWorkstation": "Stacja robocza z systemem Windows 10/11 Professional",
+ "windows10ProfessionalWorkstationN": "Stacja robocza N systemu Windows 10/11 Professional"
+ },
+ "DetectionRules": {
+ "ComparisonOperators": {
+ "equals": "Równa się",
+ "greaterThan": "Większe niż",
+ "greaterThanOrEqualTo": "Większe niż lub równe",
+ "lessThan": "Mniej niż",
+ "lessThanOrEqualTo": "Mniejsze niż lub równe",
+ "notEqualTo": "Różne od"
+ },
+ "CustomScript": {
+ "enforceSignatureCheck": "Wymuś sprawdzanie podpisu skryptu i uruchom skrypt w trybie cichym",
+ "enforceSignatureCheckTooltip": "Wybierz opcję „Tak”, aby sprawdzić, czy skrypt jest podpisany przez zaufanego wydawcę, co pozwoli na uruchomienie skryptu bez wyświetlania ostrzeżeń ani monitów. Działanie skryptu nie będzie blokowane. Wybierz opcję „Nie” (domyślna), aby uruchomienie skryptu wymagało potwierdzenia użytkownika końcowego. Weryfikacja podpisu nie będzie wykonywana.",
+ "header": "Użyj niestandardowego skryptu wykrywania",
+ "runAs32Bit": "Uruchom skrypt jako proces 32-bitowy na klientach 64-bitowych",
+ "runAs32BitTooltip": "Wybierz opcję „Tak”, aby uruchomić skrypt w procesie 32-bitowym na klientach 64-bitowych. Wybierz opcję „Nie” (domyślna), aby uruchomić skrypt w procesie 64-bitowym na klientach 64-bitowych. Na klientach 32-bitowych skrypt jest uruchamiany w procesie 32-bitowym.",
+ "scriptFile": "Plik skryptu",
+ "scriptFileNotSelectedValidation": "Nie wybrano pliku skryptu.",
+ "scriptFileTooltip": "Wybierz skrypt programu PowerShell, który będzie wykrywać obecność aplikacji na kliencie. Aplikacja zostanie wykryta, gdy skrypt zwróci kod zakończenia o wartości 0 i zapisze wartość ciągu w wyjściu STDOUT.",
+ "scriptSizeLimitValidation": "Rozmiar skryptu wykrywania przekracza maksymalny dozwolony rozmiar. Rozwiąż ten problem, zmniejszając rozmiar skryptu wykrywania."
+ },
+ "Manual": {
+ "FileRule": {
+ "DetectionMethodOptions": {
+ "dateCreated": "Data utworzenia",
+ "dateModified": "Data modyfikacji",
+ "doesNotExist": "Plik lub folder nie istnieje",
+ "fileOrFolderExists": "Plik lub folder istnieje",
+ "sizeInMB": "Rozmiar w MB",
+ "version": "Ciąg (wersja)"
+ },
+ "associatedWith32Bit": "Skojarzone z aplikacją 32-bitową na klientach 64-bitowych",
+ "associatedWith32BitTooltip": "Wybierz opcję „Tak”, aby rozwijać zmienne środowiskowe ścieżki w kontekście 32-bitowym na klientach 64-bitowych. Wybierz opcję „Nie” (domyślna), aby rozwijać wszelkie zmienne ścieżki w kontekście 64-bitowym na klientach 64-bitowych. Klienci 32-bitowi będą zawsze korzystać z kontekstu 32-bitowego.",
+ "detectionMethod": "Metoda wykrywania",
+ "detectionMethodTooltip": "Wybierz typ metody wykrywania używanej do weryfikacji obecności aplikacji.",
+ "fileOrFolder": "Plik lub folder",
+ "fileOrFolderToolTip": "Plik lub folder do wykrycia.",
+ "operator": "Operator",
+ "operatorTooltip": "Wybierz operator dla metody wykrywania używanej w celu weryfikacji porównania.",
+ "path": "Ścieżka",
+ "pathTooltip": "Pełna ścieżka folderu zawierającego plik lub folder do wykrycia.",
+ "value": "Wartość",
+ "valueTooltip": "Wybierz wartość, która jest zgodna z wybraną metodą wykrywania. W przypadku metod wykrywania opartych na dacie należy wprowadzić datę w czasie lokalnym."
+ },
+ "GridColumns": {
+ "pathOrCode": "Ścieżka/kod",
+ "type": "Typ"
+ },
+ "MsiRule": {
+ "operator": "Operator",
+ "operatorTooltip": "Wybierz operator porównania weryfikacji wersji produktu MSI.",
+ "productCode": "Kod produktu MSI",
+ "productCodeTooltip": "Prawidłowy kod produktu MSI dla aplikacji.",
+ "productVersion": "Wartość",
+ "productVersionCheck": "Sprawdzenie wersji produktu MSI",
+ "productVersionCheckTooltip": "Wybierz opcję „Tak”, aby weryfikować nie tylko kod produktu MSI, ale także wersję produktu.",
+ "productVersionTooltip": "Wprowadź wersję produktu MSI dla aplikacji."
+ },
+ "RegistryRule": {
+ "DetectionMethodOptions": {
+ "integerComparison": "Porównanie liczb całkowitych",
+ "keyDoesNotExist": "Klucz nie istnieje",
+ "keyExists": "Klucz istnieje",
+ "stringComparison": "Porównanie ciągów",
+ "valueDoesNotExist": "Wartość nie istnieje",
+ "valueExists": "Wartość istnieje",
+ "versionComparison": "Porównanie wersji"
+ },
+ "associatedWith32Bit": "Skojarzone z aplikacją 32-bitową na klientach 64-bitowych",
+ "associatedWith32BitTooltip": "Wybierz opcję „Tak”, aby przeszukiwać rejestr 32-bitowy na klientach 64-bitowych. Wybierz opcję „Nie” (domyślna), aby przeszukiwać rejestr 64-bitowy na klientach 64-bitowych. Klienci 32-bitowi zawsze będą przeszukiwać rejestr 32-bitowy.",
+ "detectionMethod": "Metoda wykrywania",
+ "detectionMethodTooltip": "Wybierz typ metody wykrywania używanej do weryfikacji obecności aplikacji.",
+ "keyPath": "Ścieżka klucza",
+ "keyPathTooltip": "Pełna ścieżka wpisu rejestru zawierającego wartość do wykrycia.",
+ "operator": "Operator",
+ "operatorTooltip": "Wybierz operator dla metody wykrywania używanej w celu weryfikacji porównania.",
+ "value": "Wartość",
+ "valueName": "Nazwa wartości",
+ "valueNameTooltip": "Nazwa wartości rejestru do wykrycia.",
+ "valueTooltip": "Wybierz wartość, która jest zgodna z wybraną metodą wykrywania."
+ },
+ "RuleTypeOptions": {
+ "file": "Plik",
+ "mSI": "MSI",
+ "registry": "Rejestr"
+ },
+ "gridAriaLabel": "Reguły wykrywania",
+ "header": "Utwórz regułę wskazującą obecność aplikacji.",
+ "noRulesSelectedPlaceholder": "Nie określono żadnych reguł.",
+ "ruleTableLimit": "Możesz dodać maksymalnie 25 reguł wykrywania",
+ "ruleType": "Typ reguły",
+ "ruleTypeTooltip": "Wybierz typ reguły wykrywania do dodania."
+ },
+ "RuleConfigurationOptions": {
+ "customScript": "Użyj niestandardowego skryptu wykrywania",
+ "manual": "Ręcznie skonfiguruj reguły wykrywania"
+ },
+ "bladeTitle": "Reguły wykrywania",
+ "header": "Skonfiguruj reguły specyficzne dla aplikacji używane do wykrywania obecności aplikacji.",
+ "rulesFormat": "Format reguł",
+ "rulesFormatTooltip": "Wybierz opcję ręcznego skonfigurowania reguł wykrywania lub zastosuj skrypt niestandardowy, aby wykryć obecność aplikacji.",
+ "selectorLabel": "Reguły wykrywania"
+ },
+ "PolicyType": {
+ "AttackSurfaceReductionRules": {
+ "configMgr": "Reguły zmniejszenia obszaru ataków (ConfigMgr)"
+ },
+ "EndpointDetectionandResponse": {
+ "mDE": "Wykrywanie i reagowanie dotyczące punktów końcowych"
+ },
+ "EndpointSecurityTemplate": {
+ "aSRAppBrowserSecurity": "Izolacja aplikacji i przeglądarki",
+ "aSRApplicationControl": "Kontrola aplikacji",
+ "aSRAttackSurfaceReduction": "Reguły zmniejszania obszaru podatnego na ataki",
+ "aSRDeviceControl": "Kontrola urządzeń",
+ "aSRExploitProtection": "Ochrona przed programami wykorzystującymi luki w zabezpieczeniach",
+ "aSRWebProtection": "Ochrona w Internecie (starsza wersja Microsoft Edge)",
+ "aVExclusions": "Wykluczenia programu Microsoft Defender Antivirus",
+ "antivirus": "Program antywirusowy Microsoft Defender",
+ "cloudPC": "Plan bazowy zabezpieczeń systemu Windows 365",
+ "default": "Zabezpieczenia punktu końcowego",
+ "defenderTest": "Wersja demonstracyjna usługi Microsoft Defender for Endpoint",
+ "diskEncryption": "BitLocker",
+ "eDR": "Wykrywanie i reagowanie dotyczące punktów końcowych",
+ "edgeSecurityBaseline": "Punkt odniesienia programu Microsoft Edge",
+ "edgeSecurityBaselinePreview": "Wersja zapoznawcza: punkt odniesienia programu Microsoft Edge",
+ "editionUpgradeConfiguration": "Uaktualnianie wersji i przełączanie trybu",
+ "firewall": "Zapora Microsoft Defender",
+ "firewallRules": "Reguły zapory Microsoft Defender",
+ "identityProtection": "Ochrona konta",
+ "identityProtectionPreview": "Ochrona konta (wersja zapoznawcza)",
+ "mDMSecurityBaseline1810": "Plan bazowy zabezpieczeń MDM dla systemu Windows 10 i nowszych z października 2018 r.",
+ "mDMSecurityBaseline1810Preview": "Wersja zapoznawcza: Plan bazowy zabezpieczeń MDM dla systemu Windows 10 i nowszych z października 2018 r.",
+ "mDMSecurityBaseline1810PreviewBeta": "Wersja zapoznawcza: plan bazowy zabezpieczeń MDM dla systemu Windows 10 z października 2018 r. (wersja beta)",
+ "mDMSecurityBaseline1906": "Plan bazowy zabezpieczeń MDM dla systemu Windows 10 i nowszych z maja 2019 r.",
+ "mDMSecurityBaseline2004": "Plan bazowy zabezpieczeń MDM dla systemu Windows 10 i nowszych wersji z sierpnia 2020 r.",
+ "mDMSecurityBaseline2101": "Plan bazowy zabezpieczeń MDM dla systemu Windows 10 i nowszych wersji z grudnia 2020 r.",
+ "macOSAntivirus": "Oprogramowanie antywirusowe",
+ "macOSDiskEncryption": "FileVault",
+ "macOSFirewall": "Zapora systemu macOS",
+ "microsoftDefenderBaseline": "Punkt odniesienia usługi Microsoft Defender for Endpoint",
+ "office365Baseline": "Punkt odniesienia dla usługi Microsoft Office O365",
+ "office365BaselinePreview": "Podgląd: punkt odniesienia dla usługi Microsoft Office O365",
+ "securityBaselines": "Punkty odniesienia zabezpieczeń",
+ "test": "Testuj szablon",
+ "testFirewallRulesSecurityTemplateName": "Reguły zapory Microsoft Defender (test)",
+ "testIdentityProtectionSecurityTemplateName": "Ochrona konta (test)",
+ "windowsSecurityExperience": "Środowisko zabezpieczeń systemu Windows"
+ },
+ "Firewall": {
+ "mDE": "Zapora Microsoft Defender"
+ },
+ "FirewallRules": {
+ "mDE": "Reguły zapory Microsoft Defender"
+ },
+ "administrativeTemplates": "Szablony administracyjne",
+ "androidCompliancePolicy": "Zasady dotyczące zgodności dla systemu Android",
+ "aospDeviceOwnerCompliancePolicy": "Zasady zgodności dla systemu Android (AOSP)",
+ "applicationControl": "Kontrola aplikacji",
+ "custom": "Niestandardowe",
+ "deliveryOptimization": "Optymalizacja dostarczania",
+ "derivedPersonalIdentityVerificationCredential": "Pochodne poświadczenia",
+ "deviceFeatures": "Funkcje urządzenia",
+ "deviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
+ "deviceLock": "Blokada urządzenia",
+ "deviceOwner": "Profil służbowy w pełni zarządzany, dedykowany i należący do firmy",
+ "deviceRestrictions": "Ograniczenia dotyczące urządzeń",
+ "deviceRestrictionsWindows10Team": "Ograniczenia dotyczące urządzeń (Windows 10 Team)",
+ "domainJoinPreview": "Przyłączanie do domeny",
+ "editionUpgradeAndModeSwitch": "Uaktualnianie wersji i przełączanie trybu",
+ "education": "Edukacja",
+ "email": "Wiadomość e-mail",
+ "emailSamsungKnoxOnly": "Poczta e-mail (tylko rozwiązanie Samsung KNOX)",
+ "endpointProtection": "Ochrona punktu końcowego",
+ "expeditedCheckin": "Konfiguracja zarządzania urządzeniami przenośnymi",
+ "exploitProtection": "Exploit Protection",
+ "extensions": "Rozszerzenia",
+ "hardwareConfigurations": "Konfiguracje BIOS",
+ "identityProtection": "Identity Protection",
+ "iosCompliancePolicy": "Zasady dotyczące zgodności dla systemu iOS",
+ "kiosk": "Kiosk",
+ "macCompliancePolicy": "Zasady dotyczące zgodności dla komputerów Mac",
+ "microsoftDefenderAntivirus": "Program antywirusowy Microsoft Defender",
+ "microsoftDefenderAntivirusexclusions": "Wykluczenia programu Microsoft Defender Antivirus",
+ "microsoftDefenderAtpWindows10Desktop": "Ochrona punktu końcowego w usłudze Microsoft Defender (urządzenia stacjonarne z systemem Windows 10 lub nowszym)",
+ "microsoftDefenderFirewallRules": "Reguły zapory Microsoft Defender",
+ "microsoftEdgeBaseline": "Punkt odniesienia przeglądarki Microsoft Edge",
+ "mxProfileZebraOnly": "Profil MX (tylko Zebra)",
+ "networkBoundary": "Granica sieci",
+ "oemConfig": "OEMConfig",
+ "overrideGroupPolicy": "Przesłoń zasady grupy",
+ "pkcsCertificate": "Certyfikat PKCS",
+ "pkcsImportedCertificate": "Zaimportowany certyfikat PKCS",
+ "preferenceFile": "Plik preferencji",
+ "presets": "Ustawienia wstępne",
+ "scepCertificate": "Certyfikat SCEP",
+ "secureAssessmentEducation": "Bezpieczna ocena (edukacja)",
+ "settingsCatalog": "Katalog ustawień",
+ "sharedMultiUserDevice": "Udostępnione urządzenie obsługujące wielu użytkowników",
+ "softwareUpdates": "Aktualizacje oprogramowania",
+ "trustedCertificate": "Certyfikat zaufany",
+ "unknown": "Nieznany",
+ "unsupported": "Nieobsługiwane",
+ "vpn": "Sieć VPN",
+ "wiFi": "Sieć Wi-Fi",
+ "wiFiImport": "Importowanie sieci Wi-Fi",
+ "windows10CompliancePolicy": "Zasady zgodności systemu Windows 10/11",
+ "windows10MobileCompliancePolicy": "Zasady dotyczące zgodności dla systemu Windows 10 Mobile",
+ "windows10XScep": "Certyfikat SCEP — TEST",
+ "windows10XTrustedCertificate": "Zaufany certyfikat — TEST",
+ "windows10XVPN": "VPN — TEST",
+ "windows10XWifi": "WIFI — TEST",
+ "windows8CompliancePolicy": "Zasady dotyczące zgodności dla systemu Windows 8",
+ "windowsHealthMonitoring": "Monitorowanie kondycji systemu Windows",
+ "windowsInformationProtection": "Windows Information Protection",
+ "windowsPhoneCompliancePolicy": "Zasady dotyczące zgodności dla systemu Windows Phone",
+ "windowsUpdateforBusiness": "Windows Update dla Firm",
+ "wiredNetwork": "Sieć przewodowa",
+ "workProfile": "Osobisty profil służbowy"
+ },
+ "Win32Requirements": {
+ "AdditionalRequirements": {
+ "File": {
+ "fileOrFolderToolTip": "Plik lub folder jako wybrane wymaganie.",
+ "pathToolTip": "Pełna ścieżka pliku lub folderu do wykrycia.",
+ "property": "Właściwość",
+ "valueToolTip": "Wybierz wartość wymagania, która jest zgodna z wybraną metodą wykrywania. W przypadku metod wykrywania opartych na dacie i godzinie należy wprowadzić datę i godzinę w formacie lokalnym."
+ },
+ "GridColumns": {
+ "pathOrScript": "Ścieżka/skrypt",
+ "type": "Typ"
+ },
+ "Registry": {
+ "keyPath": "Ścieżka klucza",
+ "keyPathTooltip": "Pełna ścieżka wpisu rejestru zawierającego wartość jako wymaganie.",
+ "operator": "Operator",
+ "operatorTooltip": "Wybierz operator porównania.",
+ "registryRequirement": "Wymaganie klucza rejestru",
+ "registryRequirementTooltip": "Wybierz porównanie wymagania klucza rejestru.",
+ "valueName": "Nazwa wartości",
+ "valueNameTooltip": "Nazwa wymaganej wartości rejestru."
+ },
+ "RequirementTypeOptions": {
+ "fileType": "Plik",
+ "registry": "Rejestr",
+ "script": "Skrypt"
+ },
+ "Script": {
+ "RequirementMethodOptions": {
+ "boolean": "Wartość logiczna",
+ "dateTime": "Data i godzina",
+ "float": "Zmiennoprzecinkowe",
+ "integer": "Liczba całkowita",
+ "string": "Ciąg",
+ "version": "Wersja"
+ },
+ "ScriptContent": {
+ "emptyMessage": "Zawartość skryptu nie może być pusta."
+ },
+ "duplicateName": "Nazwa skryptu {0} jest już w użyciu. Wprowadź inną nazwę.",
+ "enforceSignatureCheck": "Wymuszaj sprawdzanie podpisu skryptu",
+ "enforceSignatureCheckTooltip": "Wybierz opcję „Tak”, aby sprawdzić, czy skrypt jest podpisany przez zaufanego wydawcę, co pozwoli na uruchomienie skryptu bez wyświetlania ostrzeżeń ani monitów. Działanie skryptu nie będzie blokowane. Wybierz opcję „Nie” (domyślna), aby uruchomienie skryptu wymagało potwierdzenia użytkownika końcowego, ale bez weryfikacji podpisu.",
+ "loggedOnCredentials": "Uruchom ten skrypt, używając poświadczeń zalogowanego użytkownika",
+ "loggedOnCredentialsTooltip": "Uruchom skrypt przy użyciu poświadczeń urządzenia, których użyto do logowania.",
+ "operatorTooltip": "Wybierz operator porównania wymagania.",
+ "requirementMethod": "Wybierz wyjściowy typ danych",
+ "requirementMethodTooltip": "Wybierz typ danych używany podczas określania wymagań dopasowania wykrywania.",
+ "scriptFile": "Plik skryptu",
+ "scriptFileTooltip": "Wybierz skrypt programu PowerShell, który będzie wykrywać obecność aplikacji na kliencie. Jeśli aplikacja zostanie wykryta, proces wymagania zwróci kod zakończenia o wartości 0 i zapisze wartość ciągu w wyjściu STDOUT.",
+ "scriptName": "Nazwa skryptu",
+ "value": "Wartość",
+ "valueTooltip": "Wybierz wartość wymagania, która jest zgodna z wybraną metodą wykrywania. W przypadku metod wykrywania opartych na dacie i godzinie należy wprowadzić datę i godzinę w formacie lokalnym."
+ },
+ "bladeTitle": "Dodawanie reguły wymagania",
+ "createRequirementHeader": "Utwórz wymaganie.",
+ "header": "Skonfiguruj dodatkowe reguły wymagań",
+ "label": "Dodatkowe reguły wymagań",
+ "noRequirementsSelectedPlaceholder": "Nie określono żadnych wymagań.",
+ "requirementType": "Typ wymagania",
+ "requirementTypeTooltip": "Wybierz typ metody wykrywania służącej do określania sposobu walidacji wymagania."
+ },
+ "architectures": "Architektura systemu operacyjnego",
+ "architecturesTooltip": "Wybierz architektury potrzebne do zainstalowania aplikacji.",
+ "bladeTitle": "Wymagania",
+ "diskSpace": "Wymagane miejsce na dysku (MB)",
+ "diskSpaceTooltip": "Wymagana ilość wolnego miejsca na dysku systemowym, aby zainstalować aplikację.",
+ "header": "Określ wymagania, które urządzenia muszą spełniać przed zainstalowaniem aplikacji:",
+ "maximumTextFieldValue": "Wartość maksymalna to {0}.",
+ "minimumCpuSpeed": "Minimalna wymagana szybkość procesora CPU (MHz)",
+ "minimumCpuSpeedTooltip": "Minimalna szybkość procesora CPU wymagana do zainstalowania aplikacji.",
+ "minimumLogicalProcessors": "Minimalna wymagana liczba procesorów logicznych",
+ "minimumLogicalProcessorsTooltip": "Minimalna liczba procesorów logicznych wymagana do zainstalowania aplikacji.",
+ "minimumOperatingSystem": "Minimalna wersja systemu operacyjnego",
+ "minimumOperatingSystemTooltip": "Wybierz minimalną wersję systemu operacyjnego wymaganą do zainstalowania aplikacji.",
+ "minumumTextFieldValue": "Wartość musi być równa co najmniej {0}.",
+ "physicalMemory": "Wymagana pamięć fizyczna (MB)",
+ "physicalMemoryTooltip": "Pamięć fizyczna (RAM) wymagana do zainstalowania aplikacji.",
+ "selectorLabel": "Wymagania",
+ "validNumber": "Wprowadź poprawną liczbę."
+ },
+ "AzureIAM": {
+ "AdrsUserActionSelectionWarning": {
+ "conditions": "Warunki wymagające rejestracji urządzeń są niedostępne w przypadku działania użytkownika „Zarejestruj lub połącz urządzenia”.",
+ "message": "W zasadach utworzonych dla akcji użytkownika „Rejestrowanie lub dołączanie urządzeń” można używać tylko opcji „Wymagaj uwierzytelniania wieloskładnikowego”.{0}"
+ },
+ "AuthContext": {
+ "Delete": {
+ "failure": "Nie można usunąć aplikacji {0}",
+ "failureCa": "Nie można usunąć {0} ponieważ jest przywoływany przez zasady urzędu certyfikacji",
+ "modifying": "Usuwanie pliku {0}",
+ "success": "Pomyślnie usunięto element {0}"
+ },
+ "Included": {
+ "none": "Nie wybrano żadnych aplikacji w chmurze, akcji ani kontekstów uwierzytelniania",
+ "plural": "Uwzględnione konteksty uwierzytelniania: {0}",
+ "singular": "Uwzględniono 1 kontekst uwierzytelniania"
+ },
+ "InfoBlade": {
+ "createTitle": "Dodaj kontekst uwierzytelniania",
+ "descPlaceholder": "Dodaj opis kontekstu uwierzytelniania",
+ "modifyTitle": "Modyfikuj kontekst uwierzytelniania",
+ "namePlaceholder": "Na przykład: Zaufana lokalizacja, Zaufane urządzenie, Silna autoryzacja",
+ "publishDesc": "Opublikowanie w aplikacjach spowoduje udostępnienie kontekstu uwierzytelniania do użycia przez aplikacje. Opublikuj po zakończeniu konfigurowania zasad dostępu warunkowego dla tagu. [Dowiedz się więcej][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150966",
+ "publishLabel": "Publikuj w aplikacjach",
+ "titleDesc": "Skonfiguruj kontekst uwierzytelniania, który będzie używany do ochrony danych i akcji aplikacji. Użyj nazw i opisów, które będą zrozumiałe dla administratorów aplikacji. [Dowiedz się więcej][1]\n[1]:https://go.microsoft.com/fwlink/?linkid=2150965"
+ },
+ "Notify": {
+ "failure": "Nie można zaktualizować elementu {0}",
+ "modifying": "Modyfikowanie elementu {0}",
+ "success": "Pomyślnie zaktualizowano element {0}"
+ },
+ "WhatIf": {
+ "selected": "Uwzględniono kontekst uwierzytelniania"
+ },
+ "addNewStepUp": "Nowy kontekst uwierzytelniania",
+ "checkBoxInfo": "Wybierz konteksty uwierzytelniania, do których będą stosowane te zasady",
+ "configure": "Konfiguruj konteksty uwierzytelniania",
+ "createCA": "Przypisz zasady dostępu warunkowego do kontekstu uwierzytelniania",
+ "dataGrid": "Lista kontekstów uwierzytelniania",
+ "deleteFailedByReference": "You cannot delete this authentication context because it is being referenced by CA policies.",
+ "description": "Opis",
+ "documentation": "Dokumentacja",
+ "getStarted": "Rozpocznij",
+ "label": "Kontekst uwierzytelniania (wersja zapoznawcza)",
+ "menuLabel": "Kontekst uwierzytelniania (wersja zapoznawcza)",
+ "name": "Nazwa",
+ "noAuthContextConfigured": "Nie skonfigurowano kontekstów uwierzytelniania.",
+ "noAuthContextSet": "Brak kontekstów uwierzytelniania",
+ "noData": "Brak kontekstów uwierzytelniania do wyświetlenia",
+ "selectionInfo": "Kontekst uwierzytelniania służy do zabezpieczania danych aplikacji oraz akcji w aplikacjach, takich jak SharePoint i Microsoft Cloud App Security.",
+ "step": "Krok",
+ "tabDescription": "Zarządzaj kontekstem uwierzytelniania w celu ochrony danych i akcji w aplikacjach. [Dowiedz się więcej][1]\n[1]:https://go.microsoft.com/fwlink/?linkid=2150965",
+ "tagResources": "Otaguj zasoby za pomocą kontekstu uwierzytelniania"
+ },
+ "AuthenticationStrength": {
+ "Mode": {
+ "deviceBasedPush": "Microsoft Authenticator (logowanie za pomocą telefonu)",
+ "deviceBasedPushFido2X509Certificate": "Microsoft Authenticator (logowanie za pomocą telefonu) + Fido 2 + uwierzytelnianie oparte na certyfikacie",
+ "deviceBasedPushX509CertificateSingleFactor": "Microsoft Authenticator (logowanie za pomocą telefonu) + Fido 2 + uwierzytelnianie oparte na certyfikacie (jednoskładnikowe)",
+ "email": "Wyślij wiadomość e-mail z jednorazowym kodem dostępu",
+ "emailOtp": "Wyślij wiadomość e-mail z jednorazowym kodem dostępu",
+ "federatedMultiFactor": "Federacyjne wieloskładnikowe",
+ "federatedSingleFactor": "Federacyjne uwierzytelnianie jednoskładnikowe",
+ "federatedSingleFactorFederatedMultiFactor": "Federacyjne jednoskładnikowe + federacyjne wieloskładnikowe",
+ "fido2": "Klucz zabezpieczeń FIDO 2",
+ "fido2X509CertificateSingleFactor": "Klucz zabezpieczeń FIDO 2 + uwierzytelnianie oparte na certyfikacie (jednoskładnikowe)",
+ "hardwareOath": "Sprzętowe tokeny OATH",
+ "hardwareOathEmail": "Sprzętowe tokeny OATH + jednorazowy kod dostępu poczty e-mail",
+ "hardwareOathX509CertificateSingleFactor": "Sprzętowe tokeny OATH i uwierzytelnianie oparte na certyfikatach (pojedynczy współczynnik)",
+ "microsoftAuthenticatorPSIX509CertificateSingleFactor": "Microsoft Authenticator (logowanie za pomocą telefonu) + uwierzytelnianie oparte na certyfikacie (jednoskładnikowe)",
+ "microsoftAuthenticatorPsi": "Microsoft Authenticator (logowanie za pomocą telefonu)",
+ "microsoftAuthenticatorPush": "Microsoft Authenticator (powiadomienie push)",
+ "microsoftAuthenticatorPushEmail": "Microsoft Authenticator (powiadomienie push) + jednorazowy kod dostępu poczty e-mail",
+ "microsoftAuthenticatorPushX509CertificateSingleFactor": "Microsoft Authenticator (powiadomienie push) + uwierzytelnianie oparte na certyfikacie (jednoskładnikowe)",
+ "none": "Brak",
+ "password": "Hasło",
+ "passwordDeviceBasedPush": "Hasło + Microsoft Authenticator (logowanie za pomocą telefonu)",
+ "passwordFido2": "Hasło + klucz zabezpieczeń FIDO 2",
+ "passwordHardwareOath": "Hasło i sprzętowe tokeny OATH",
+ "passwordMicrosoftAuthenticatorPSI": "Hasło + Microsoft Authenticator (logowanie za pomocą telefonu)",
+ "passwordMicrosoftAuthenticatorPush": "Hasło + Microsoft Authenticator (powiadomienie push)",
+ "passwordSms": "Hasło + kod SMS",
+ "passwordSoftwareOath": "Hasło + programowe tokeny OATH",
+ "passwordTemporaryAccessPassMultiUse": "Hasło + tymczasowy kod dostępu (wielorazowego użycia)",
+ "passwordTemporaryAccessPassOneTime": "Hasło + tymczasowy kod dostępu (jednorazowy)",
+ "passwordVoice": "Hasło + uwierzytelnianie przy użyciu głosu",
+ "sms": "SMS",
+ "smsEmail": "SMS + jednorazowy kod dostępu pocztą e-mail",
+ "smsSignIn": "Logowanie za pomocą wiadomości SMS",
+ "smsX509CertificateSingleFactor": "SMS + uwierzytelnianie oparte na certyfikacie (jednoskładnikowe)",
+ "softwareOath": "Programowe tokeny OATH",
+ "softwareOathEmail": "Programowe tokeny OATH + jednorazowy kod dostępu pocztą e-mail",
+ "softwareOathX509CertificateSingleFactor": "Programowe tokeny OATH i uwierzytelnianie oparte na certyfikatach (pojedynczy współczynnik)",
+ "temporaryAccessPassMultiUse": "Tymczasowy kod dostępu (wielokrotnego użycia)",
+ "temporaryAccessPassMultiUseX509CertificateSingleFactor": "Tymczasowy kod dostępu (wielorazowego użycia) + uwierzytelnianie oparte na certyfikacie (jednoskładnikowe)",
+ "temporaryAccessPassOneTime": "Tymczasowy kod dostępu (jednorazowy)",
+ "temporaryAccessPassOneTimeX509CertificateSingleFactor": "Tymczasowy kod dostępu (jednorazowy) + uwierzytelnianie oparte na certyfikacie (jednoskładnikowe)",
+ "voice": "Głos",
+ "voiceEmail": "Głos i poczta e-mail — jednorazowy kod dostępu",
+ "voiceX509CertificateSingleFactor": "Uwierzytelnianie przy użyciu głosu + uwierzytelnianie oparte na certyfikacie (jednoskładnikowe)",
+ "windowsHelloForBusiness": "Usługa Windows Hello dla firm",
+ "x509CertificateMultiFactor": "Uwierzytelnianie oparte na certyfikacie (wieloskładnikowe)",
+ "x509CertificateSingleFactor": "Uwierzytelnianie oparte na certyfikacie (jednoskładnikowe)"
+ }
+ },
+ "CAS": {
+ "BuiltinPolicy": {
+ "Option": {
+ "blockDownloads": "Blokuj pliki do pobrania (wersja zapoznawcza)",
+ "monitorOnly": "Tylko monitorowanie (wersja zapoznawcza)",
+ "protectDownloads": "Chroń pliki do pobrania (wersja zapoznawcza)",
+ "useCustomControls": "Użyj zasad niestandardowych..."
+ },
+ "ariaLabel": "Wybierz rodzaj Kontroli dostępu warunkowego aplikacji do zastosowania"
+ }
+ },
+ "ChooseApplications": {
+ "Grid": {
+ "appIdAria": "Identyfikator aplikacji: {0}"
+ },
+ "LowerGrid": {
+ "ariaLabel": "Lista wybranych aplikacji w chmurze"
+ },
+ "UpperGrid": {
+ "ariaLabel": "Lista aplikacji w chmurze, które pasują do wyszukiwanego terminu"
+ }
+ },
+ "ChooseLocations": {
+ "Validation": {
+ "failed": "Dla wartości „Wybrane lokalizacje” musisz wybrać co najmniej jedną lokalizację.",
+ "selector": "Wybierz co najmniej jedną lokalizację"
+ }
+ },
+ "ClientApp": {
+ "Clients": {
+ "Validation": {
+ "failed": "Musisz wybrać co najmniej jednego z następujących klientów"
+ }
+ }
+ },
+ "ClientConditionsInfo": {
+ "browserAndModern": "Te zasady mają zastosowanie tylko do przeglądarki i nowoczesnych aplikacji do uwierzytelniania. Aby zastosować te zasady do wszystkich aplikacji klienckich, włącz warunek aplikacji klienckiej i wybierz wszystkie aplikacje klienckie.",
+ "classicExperience": "Od czasu utworzenia tych zasad zaktualizowano konfigurację domyślnych aplikacji klienckich.",
+ "legacyAuth": "W przypadku nieskonfigurowania zasady są teraz stosowane do wszystkich aplikacji klienckich, w tym dla nowoczesnego i starszego uwierzytelniania."
+ },
+ "CloudAppFilterBlade": {
+ "AssignmentFilter": {
+ "header": "Atrybut",
+ "placeholder": "Wybierz atrybut"
+ },
+ "Configure": {
+ "infoBalloon": "Skonfiguruj filtry aplikacji, do których chcesz zastosować zasady."
+ },
+ "NoPermissions": {
+ "learnMoreAria": "Więcej informacji o niestandardowych uprawnieniach atrybutów zabezpieczeń.",
+ "message": "Nie masz uprawnień wymaganych do używania niestandardowych atrybutów zabezpieczeń."
+ },
+ "gridHeader": "Za pomocą niestandardowych atrybutów zabezpieczeń można użyć konstruktora reguł lub pola tekstowego składni reguły do utworzenia lub edytowania reguł filtru. W wersji zapoznawczej obsługiwane są tylko atrybuty typu String. Atrybuty typu Liczba całkowita lub Wartość logiczna nie będą wyświetlane.",
+ "learnMoreAria": "Więcej informacji na temat używania konstruktora reguł i pola tekstowego składni.",
+ "noAttributes": "Brak atrybutów niestandardowych dostępnych do filtrowania. Musisz skonfigurować pewne atrybuty, aby użyć tego filtru.",
+ "title": "Edytuj filtr (wersja zapoznawcza)"
+ },
+ "CloudAppsUserActions": {
+ "any": "Dowolna akcja lub aplikacja w chmurze",
+ "infoBalloon": "Aplikacja w chmurze lub akcja użytkownika, którą chcesz przetestować. Na przykład „SharePoint Online”",
+ "learnMore": "Kontroluj dostęp na podstawie wszystkich lub określonych aplikacji w chmurze lub akcji.",
+ "learnMoreB2C": "Kontroluj dostęp na podstawie wszystkich lub określonych aplikacji w chmurze.",
+ "title": "Aplikacje w chmurze lub akcje"
+ },
+ "CloudappsSelectionBlade": {
+ "Excluded": {
+ "gridAria": "Lista wykluczonych aplikacji w chmurze"
+ },
+ "Filter": {
+ "configured": "Skonfigurowano",
+ "label": "Edytuj filtr (wersja zapoznawcza)",
+ "with": "{0} z {1}"
+ },
+ "Included": {
+ "gridAria": "Lista uwzględnionych aplikacji w chmurze"
+ },
+ "Validation": {
+ "authContext": "W obszarze „kontekst uwierzytelniania” musisz skonfigurować co najmniej jeden element podrzędny.",
+ "selectApps": "Wartość „{0}” musi być skonfigurowana",
+ "selector": "Wybierz co najmniej jedną aplikację.",
+ "userActions": "W obszarze „Akcje użytkownika” musisz skonfigurować co najmniej jeden element podrzędny."
+ }
+ },
+ "DeviceState": {
+ "LearnMore": {
+ "message": "Kontroluj dostęp użytkowników, gdy urządzenie, z poziomu z którego loguje się użytkownik, nie jest „dołączone hybrydowo do usługi Azure AD” ani „oznaczone jako zgodne”.\n Ta funkcja jest przestarzała. Zamiast tego użyj „{1}”."
+ }
+ },
+ "Errors": {
+ "notFound": "Nie znaleziono zasad lub zostały one usunięte.",
+ "notFoundDetailed": "Zasady „{0}” już nie istnieją. Możliwe, że zostały usunięte."
+ },
+ "GuestsOrExternalUsers": {
+ "allExternalTenantsLabel": "Wszystkie organizacje usługi Azure AD",
+ "b2bCollaborationGuestLabel": "Użytkownicy-goście współpracy B2B",
+ "b2bCollaborationMemberLabel": "Użytkownicy-członkowie współpracy B2B",
+ "b2bDirectConnectUserLabel": "Użytkownicy bezpośredniej komunikacji B2B",
+ "enumeratedExternalTenantsError": "Wybierz co najmniej jedną dzierżawę zewnętrzną",
+ "enumeratedExternalTenantsLabel": "Wybierz organizacje usługi Azure AD",
+ "externalTenantsLabel": "Określanie zewnętrznych organizacji usługi Azure AD",
+ "externalUserDropdownLabel": "Wybierz typy gości lub użytkowników zewnętrznych",
+ "externalUsersError": "Wybierz co najmniej jeden zewnętrzny typ gościa lub użytkownika",
+ "guestOrExternalUsersInfoContent": "Obejmuje współpracę B2B, bezpośrednie połączenie B2B i inne typy użytkowników zewnętrznych.",
+ "guestOrExternalUsersLabel": "Goście lub użytkownicy zewnętrzni",
+ "internalGuestLabel": "Lokalni użytkownicy-goście",
+ "otherExternalUserLabel": "Inni użytkownicy zewnętrzni"
+ },
+ "NamedLocation": {
+ "Form": {
+ "CountryLookup": {
+ "ariaLabel": "Metoda wyszukiwania kraju",
+ "gps": "Określanie lokalizacji według współrzędnych GPS",
+ "info": "W przypadku skonfigurowania warunku lokalizacji zasad dostępu warunkowego użytkownicy będą monitowani przez aplikację Authenticator o udostępnienie swojej lokalizacji GPS.",
+ "ip": "Określ lokalizację według adresu IP (tylko IPv4)"
+ },
+ "Header": {
+ "new": "Nowa lokalizacja ({0})",
+ "update": "Lokalizacja aktualizacji ({0})"
+ },
+ "IP": {
+ "learn": "Skonfiguruj zakresy adresów IPv4 i IPv6 lokalizacji nazwanej.\n[Dowiedz się więcej][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
+ },
+ "Include": {
+ "infoBalloon": "Nieznane kraje/regiony to adresy IP, które nie są skojarzone z konkretnym krajem lub regionem. [Dowiedz się więcej][1]\n\nObejmuje to:\n* Adresy IPv6\n* Adresy IPv4 bez bezpośredniego mapowania\n[1]: https://aka.ms/canamedlocations\n ",
+ "label": "Uwzględnij nieznane kraje/regiony"
+ },
+ "Name": {
+ "empty": "Nazwa nie może być pusta",
+ "placeholder": "Nazwij tę lokalizację"
+ },
+ "PrivateLink": {
+ "learn": "Utwórz nową nazwaną lokalizację zawierającą łącza prywatne dla usługi Azure AD. \n[Dowiedz się więcej][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
+ },
+ "Search": {
+ "countries": "Wyszukaj kraje",
+ "names": "Wyszukaj nazwy",
+ "privateLinks": "Wyszukaj prywatne linki"
+ },
+ "Trusted": {
+ "label": "Oznacz jako zaufaną lokalizację"
+ },
+ "enter": "Wprowadź nowy zakres adresów IPv4 lub IPv6",
+ "example": "np. 40.77.182.32/27 lub 2a01:111::/32"
+ },
+ "Label": {
+ "addCountries": "Lokalizacja krajów",
+ "addIpRange": "Lokalizacja zakresów adresów IP",
+ "addPrivateLink": "Azure Private Link"
+ },
+ "Notification": {
+ "Create": {
+ "Failed": {
+ "description": "Nie można utworzyć nowej lokalizacji ({0})",
+ "title": "Tworzenie nie powiodło się"
+ },
+ "InProgress": {
+ "description": "Tworzenie nowej lokalizacji ({0})",
+ "title": "Tworzenie w toku"
+ },
+ "Success": {
+ "description": "Pomyślnie utworzono nową lokalizację ({0})",
+ "title": "Tworzenie zakończyło się pomyślnie"
+ }
+ },
+ "Delete": {
+ "Failed": {
+ "description": "Niepowodzenia podczas usuwania lokalizacji ({0})",
+ "title": "Usuwanie nie powiodło się"
+ },
+ "InProgress": {
+ "description": "Usuwanie lokalizacji ({0})",
+ "title": "Usuwanie w toku"
+ },
+ "Success": {
+ "description": "Pomyślnie usunięto lokalizację ({0})",
+ "title": "Usuwanie zakończyło się pomyślnie"
+ }
+ },
+ "Update": {
+ "Failed": {
+ "description": "Niepowodzenia podczas aktualizowania lokalizacji ({0})",
+ "title": "Aktualizowanie nie powiodło się"
+ },
+ "InProgress": {
+ "description": "Aktualizowanie lokalizacji ({0})",
+ "title": "Aktualizowanie w toku"
+ },
+ "Success": {
+ "description": "Pomyślnie zaktualizowano lokalizację ({0})",
+ "title": "Aktualizowanie powiodło się"
+ }
+ }
+ },
+ "PrivateLinks": {
+ "grid": "Lista prywatnych łączy"
+ },
+ "Trusted": {
+ "title": "Typ zaufany",
+ "trusted": "Zaufane"
+ },
+ "Type": {
+ "all": "Wszystkie typy",
+ "countries": "Kraje",
+ "ipRanges": "Zakresy adresów IP",
+ "privateLinks": "Łącze prywatne",
+ "title": "Typ lokalizacji"
+ },
+ "iPRangeInvalidError": "Wartość musi być prawidłowym zakresem adresów IPv4 lub IPv6.",
+ "iPRangeLinkOrSiteLocalError": "Sieć IP została wykryta jako adres połączenia lokalnego lub adres lokalny dla witryny.",
+ "iPRangeOctetError": "Sieć IP nie może rozpoczynać się od wartości 0 ani 255.",
+ "iPRangePrefixError": "Prefiks sieci adresu IP musi należeć do zakresu od /{0} do /{1}.",
+ "iPRangePrivateError": "Sieć IP wykryto jako adres prywatny."
+ },
+ "NamedNetwork": {
+ "List": {
+ "gridAria": "Lista nazwanych lokalizacji"
+ }
+ },
+ "Policies": {
+ "Grid": {
+ "aria": "Lista zasad dostępu warunkowego"
+ },
+ "countText": "Znaleziono {0} z {1} zasad",
+ "countTextSingular": "Znaleziono {0} z 1 zasad",
+ "search": "Wyszukaj zasady"
+ },
+ "Policy": {
+ "Condition": {
+ "ServicePrincipalRisk": {
+ "description": "Konfigurowanie poziomów ryzyka związanego z jednostką usługi na potrzeby egzekwowania zasad",
+ "infoBalloonContent": "Skonfiguruj ryzyko jednostki usługi, aby zastosować zasady do wybranych poziomów ryzyka",
+ "title": "Ryzyko związane z jednostką usługi (wersja zapoznawcza)"
+ }
+ }
+ },
+ "PolicyControlAuthStrength": {
+ "MultiFactorAuthentication": {
+ "description": "Kombinacje metod, które spełniają silne uwierzytelnianie, takie jak Hasło i SMS",
+ "displayName": "Uwierzytelnianie wieloskładnikowe (MFA)"
+ },
+ "Passwordless": {
+ "description": "Metody bezhasłowe spełniające silne uwierzytelnianie, takie jak Microsoft Authenticator ",
+ "displayName": "Bezhasłowe uwierzytelnianie wieloskładnikowe"
+ },
+ "PhishingResistant": {
+ "description": "Metody bezhasłowe odporne na wyłudzanie informacji na potrzeby najsilniejszego uwierzytelniania, np. klucza zabezpieczeń FIDO2",
+ "displayName": "Uwierzytelnianie wieloskładnikowe odporne na wyłudzanie informacji"
+ }
+ },
+ "PolicyControlFedAuthMethod": {
+ "ariaLabel": "Learn more about requiring authentication methods satisfied by federation providers.",
+ "certificate": "Uwierzytelnianie certyfikatów",
+ "infoBubble": "Określ wymaganą metodę uwierzytelniania, która musi być stosowana przez dostawcę federacji, np. usługę ADFS.",
+ "multifactor": "Uwierzytelnianie wieloskładnikowe",
+ "require": "Wymagaj metody uwierzytelniania federacyjnego (wersja zapoznawcza)",
+ "whatIfFormat": "{0} - {1}"
+ },
+ "PolicyState": {
+ "off": "Wyłączone",
+ "on": "Włączone",
+ "reportOnly": "Tylko raport"
+ },
+ "PolicyTemplates": {
+ "Devices": {
+ "description": "Wybierz kategorię szablonów zasad dotyczących urządzeń, aby urządzenia uzyskujące dostęp do sieci były widoczne. Przed przyznaniem dostępu sprawdź zgodność i stan kondycji urządzeń.",
+ "name": "Urządzenia"
+ },
+ "Identities": {
+ "description": "Wybierz kategorię szablonów zasad tożsamości, aby zweryfikować i zabezpieczyć każdą tożsamość za pomocą silnego uwierzytelniania w całej Twojej cyfrowej infrastrukturze.",
+ "name": "Tożsamości"
+ },
+ "Summary": {
+ "CloudApps": {
+ "allCloudApps": "Wszystkie aplikacje",
+ "office365": "Office 365",
+ "registerSecurityInfo": "Zarejestruj informacje zabezpieczające"
+ },
+ "Conditions": {
+ "androidAndIOS": "Platforma urządzeń: systemy Android i IOS",
+ "anyDevice": "Dowolne urządzenie, z wyjątkiem urządzeń z systemami Android, iOS, Windows i Mac",
+ "anyDeviceStateExceptHybrid": "Dowolny stan urządzenia, z wyjątkiem zgodnego i przyłączonego hybrydowo do usługi Azure AD",
+ "anyLocation": "Dowolna lokalizacja z wyjątkiem lokalizacji zaufanych",
+ "browserMobileDesktop": "Aplikacje klienckie: przeglądarka, aplikacje mobilne i klienci używający komputerów stacjonarnych",
+ "exchangeActiveSync": "Aplikacje klienckie: program Exchange Active Sync, inni klienci",
+ "windowsAndMac": "Platforma urządzeń: systemy Windows i Mac"
+ },
+ "Devices": {
+ "anyDevice": "Dowolne urządzenie"
+ },
+ "Grant": {
+ "appProtectionPolicy": "Wymagaj zasad ochrony aplikacji",
+ "approvedClientApp": "Wymagaj zatwierdzonej aplikacji klienckiej",
+ "blockAccess": "Blokuj dostęp",
+ "mfa": "Wymagaj uwierzytelniania wieloskładnikowego",
+ "passwordChange": "Wymagaj zmiany hasła",
+ "requireCompliantDevice": "Wymagaj, aby urządzenie było oznaczone jako zgodne",
+ "requireHybridAzureADDevice": "Wymagaj urządzenia przyłączonego hybrydowo do usługi Azure AD"
+ },
+ "Session": {
+ "appEnforcedRestrictions": "Użyj ograniczeń wymuszonych przez aplikację",
+ "signInFrequency": "Częstotliwość logowań i nigdy stała sesja przeglądarki"
+ },
+ "UsersAndGroups": {
+ "allUsers": "Wszyscy użytkownicy",
+ "directoryRoles": "Role katalogów, z wyjątkiem bieżącego administratora",
+ "globalAdmin": "Administrator globalny",
+ "noGuestAndAdmins": "Wszyscy użytkownicy, z wyjątkiem Gości i Zewnętrznych, Administratorów globalnych, Bieżących administratorów"
+ },
+ "azureManagement": "Zarządzanie platformą Azure",
+ "deviceFilters": "Filtry dla urządzeń",
+ "devicePlatforms": "Platformy urządzeń"
+ },
+ "TemplateId": {
+ "AppEnforcedRestrictions": {
+ "description": "Blokuj lub ograniczaj dostęp do zawartości programów SharePoint, OneDrive i Exchange z urządzeń niezarządzanych.",
+ "name": "CA014: Używanie ograniczeń wymuszonych przez aplikację dla urządzeń niezarządzanych",
+ "title": "Użyj ograniczeń wymuszonych przez aplikację dla urządzeń niezarządzanych"
+ },
+ "ApprovedClientApps": {
+ "description": "Aby zapobiec utracie danych, organizacje mogą ograniczyć dostęp do zatwierdzonych nowoczesnych aplikacji klienckich uwierzytelniania za pomocą usługi Intune App Protection.",
+ "name": "CA012: Wymóg zatwierdzonych aplikacji klienckich i ochrony aplikacji",
+ "title": "Wymagaj zatwierdzonych aplikacji klienckich i ochrony aplikacji"
+ },
+ "BlockAccessOnUnknowns": {
+ "description": "Użytkownicy będą blokowani przed dostępem do zasobów firmy, gdy typ urządzenia jest nieznany lub nieobsługiwany.",
+ "name": "CA010: Blokowanie dostępu dla nieznanej lub nieobsługiwanej platformy urządzenia",
+ "title": "Blokuj dostęp dla nieznanej lub nieobsługiwanej platformy urządzenia"
+ },
+ "BlockLegacyAuth": {
+ "description": "Blokuj starsze punkty końcowe uwierzytelniania, których można użyć do ominięcia uwierzytelniania wieloskładnikowego. ",
+ "name": "CA003: Blokuj starsze uwierzytelniania",
+ "title": "Blokuj starsze wersje uwierzytelniania"
+ },
+ "NoPersistentBrowserSession": {
+ "description": "Chroń dostęp użytkowników na urządzeniach niezarządzanych, uniemożliwiając sesjom przeglądarki pozostanie zalogowanym po zamknięciu przeglądarki i ustawiając częstotliwość logowania na 1 godzinę.",
+ "name": "CA011: Brak trwałej sesji przeglądarki",
+ "title": "Brak trwałej sesji przeglądarki"
+ },
+ "RequireCompliantOrHybridADAdmins": {
+ "description": "Wymagaj od administratorów uprzywilejowanych dostępu do zasobów tylko wtedy, gdy jest używane urządzenie zgodne lub przyłączone hybrydowo do usługi Azure AD.",
+ "name": "CA009: wymagaj urządzenia zgodnego lub urządzenia przyłączonego hybrydowo do usługi Azure AD w przypadku administratorów",
+ "title": "Wymagaj urządzenia zgodnego lub przyłączonego hybrydowo do usługi Azure AD w przypadku administratorów"
+ },
+ "RequireCompliantOrHybridADAllUsers": {
+ "description": "Chroń dostęp do zasobów firmy, wymagając od użytkowników korzystania z urządzenia zarządzanego lub uwierzytelniania wieloskładnikowego (dotyczy tylko systemu macOS lub Windows).",
+ "name": "CA013: wymagaj urządzenia zgodnego lub urządzenia przyłączonego hybrydowo do usługi Azure AD lub uwierzytelniania wieloskładnikowego w przypadku wszystkich użytkowników",
+ "title": "Wymagaj urządzenia zgodnego lub urządzenia przyłączonego hybrydowo do usługi Azure AD lub uwierzytelniania wieloskładnikowego w przypadku wszystkich użytkowników"
+ },
+ "RequireMFAAllUsers": {
+ "description": "Wymagaj uwierzytelniania wieloskładnikowego dla wszystkich kont użytkowników, aby zmniejszyć ryzyko naruszenia zabezpieczeń.",
+ "name": "CA004: Wymóg uwierzytelniania wieloskładnikowego dla wszystkich użytkowników",
+ "title": "Wymóg uwierzytelniania wieloskładnikowego dla wszystkich użytkowników"
+ },
+ "RequireMFAForAdmins": {
+ "description": "Wymagaj uwierzytelniania wieloskładnikowego dla uprzywilejowanych kont administracyjnych, aby zmniejszyć ryzyko naruszenia zabezpieczeń. Te zasady będą dotyczyć tych samych ról co domyślne ustawienia zabezpieczeń.",
+ "name": "CA001: Wymóg uwierzytelniania wieloskładnikowego dla administratorów",
+ "title": "Wymagaj uwierzytelniania wieloskładnikowego dla administratorów"
+ },
+ "RequireMFAForAzureManagement": {
+ "description": "Wymagaj uwierzytelniania wieloskładnikowego w celu ochrony uprzywilejowanego dostępu do zasobów platformy Azure.",
+ "name": "CA006: Wymóg uwierzytelniania wieloskładnikowego do zarządzania platformą Azure",
+ "title": "Wymóg uwierzytelniania wieloskładnikowego do zarządzania platformą Azure"
+ },
+ "RequireMFAForGuestAccess": {
+ "description": "Wymagaj, aby użytkownicy-goście przeprowadzali uwierzytelnianie wieloskładnikowe podczas uzyskiwania dostępu do zasobów firmy.",
+ "name": "CA005: Wymóg uwierzytelniania wieloskładnikowego dla dostępu gości",
+ "title": "Wymóg uwierzytelniania wieloskładnikowego dla dostępu gości"
+ },
+ "RequireMFAForRiskySignIn": {
+ "description": "Wymagaj uwierzytelniania wieloskładnikowego, jeśli wykryto średnie lub wysokie ryzyko związane z logowaniem. (Wymaga licencji usługi Azure AD — wersja Premium 2)",
+ "name": "CA007: wymagaj uwierzytelniania wieloskładnikowego w przypadku ryzykownych logowań",
+ "title": "Wymagaj uwierzytelniania wieloskładnikowego w przypadku ryzykownych logowań"
+ },
+ "RequirePasswordChangeForHighRiskUsers": {
+ "description": "Wymagaj od użytkownika zmiany hasła w przypadku wykrycia wysokiego ryzyka związanego z użytkownikiem. (Wymaga licencji usługi Azure AD — wersja Premium 2)",
+ "name": "CA008: Wymóg zmiany hasła dla użytkowników wysokiego ryzyka",
+ "title": "Wymóg zmiany hasła dla użytkowników wysokiego ryzyka"
+ },
+ "RequireSecurityInfo": {
+ "description": "Zabezpiecz, kiedy i w jaki sposób użytkownicy rejestrują się w przypadku uwierzytelniania wieloskładnikowego lub hasła samoobsługowego usługi Azure AD. ",
+ "name": "CA002: Zabezpieczanie rejestracji informacji zabezpieczających",
+ "title": "Zabezpieczanie rejestracji informacji zabezpieczających"
+ }
+ },
+ "TemplateState": {
+ "BlockAccessOnUnknowns": {
+ "title": "Włączenie tych zasad uniemożliwi dostęp z nieznanego typu urządzenia. Rozważ użycie trybu tylko do raportowania w celu rozpoczęcia pracy dopiero wtedy, gdy potwierdzono, że nie wpłynie to na użytkowników."
+ },
+ "BlockLegacyAuth": {
+ "description": "Rozważ użycie trybu tylko do raportowania w celu rozpoczęcia pracy dopiero wtedy, gdy potwierdzono, że nie wpłynie to na użytkowników.",
+ "title": "Włączenie tych zasad spowoduje zablokowanie starszych uwierzytelnień dla wszystkich użytkowników."
+ },
+ "RequireCompliantOrHybridADAdmins": {
+ "Description": {
+ "on": "Rozważ użycie trybu tylko do raportowania w celu rozpoczęcia pracy dopiero wtedy, gdy potwierdzono, że nie wpłynie to na uprzywilejowanych użytkowników.",
+ "reportOnly": "Zasady w trybie tylko do raportowania, które wymagają zgodnych urządzeń, mogą monitować użytkowników na urządzeniach z systemem Mac, iOS lub Android, aby podczas oceny zasad wybierali certyfikat urządzenia, nawet jeśli nie jest wymuszana zgodność urządzeń. Te monity mogą być powtarzane, dopóki urządzenie nie będzie zgodne."
+ },
+ "Title": {
+ "on": "Włączenie tych zasad uniemożliwi dostęp uprzywilejowanym użytkownikom, chyba że użyjesz urządzenia zarządzanego, takiego jak urządzenie zgodne lub przyłączone hybrydowo do usługi Azure AD. Przed włączeniem upewnij się, że skonfigurowano zasady zgodności lub włączono konfigurację hybrydową usługi Azure AD.",
+ "reportOnly": "Przed włączeniem upewnij się, że skonfigurowano zasady zgodności lub włączono konfigurację hybrydową usługi Azure AD. "
+ }
+ },
+ "RequireCompliantOrHybridADAllUsers": {
+ "Description": {
+ "on": "Ta zasada będzie dotyczyć wszystkich użytkowników z wyjątkiem aktualnie zalogowanego administratora. Rozważ użycie trybu tylko do raportowania w celu rozpoczęcia pracy aż do potwierdzenia, że ta zasada nie wpłynie na Twoich użytkowników."
+ },
+ "Title": {
+ "on": "Nie pozwól się zablokować! Upewnij się, że urządzenie jest zgodne, przyłączone hybrydowo do usługi Azure AD lub że skonfigurowano uwierzytelnianie wieloskładnikowe.",
+ "reportOnly": "Zasady w trybie tylko do raportowania, które wymagają zgodnych urządzeń, mogą monitować użytkowników na urządzeniach z systemem Mac, iOS lub Android, aby podczas oceny zasad wybierali certyfikat urządzenia, nawet jeśli nie jest wymuszana zgodność urządzeń. Te monity mogą być powtarzane, dopóki urządzenie nie będzie zgodne."
+ }
+ },
+ "RequireMfa": {
+ "description": "Jeśli używasz kont dostępu awaryjnego lub połączenia usługi Azure AD w celu zsynchronizowania obiektów lokalnych, może być konieczne wykluczenie tych kont z tych zasad po utworzeniu."
+ },
+ "RequireMfaAdmins": {
+ "description": "Pamiętaj, że bieżące konto administratora zostanie automatycznie wykluczone, a pozostałe będą chronione podczas tworzenia zasad. Rozważ użycie trybu tylko do raportowania w celu rozpoczęcia pracy.",
+ "title": "Nie zablokuj się samodzielnie! Te zasady mają wpływ na Portal Azure."
+ },
+ "RequireMfaAllUsers": {
+ "description": "Rozważ użycie trybu tylko do raportowania w celu rozpoczęcia pracy dopiero wtedy, gdy ta zmiana została zaplanowana i zakomunikowana wszystkim Twoim użytkownikom.",
+ "title": "Włączenie tych zasad spowoduje wymuszenie uwierzytelniania wieloskładnikowego dla wszystkich użytkowników."
+ },
+ "RequireSecurityInfo": {
+ "description": "Sprawdź konfigurację, aby chronić te konta na podstawie potrzeb Twojej firmy.",
+ "title": "Następujący użytkownicy i role są wykluczone z tych zasad: Goście i Użytkownicy zewnętrzni, Administratorzy globalni, Bieżący administrator"
+ }
+ },
+ "basics": "Podstawowe informacje",
+ "clientApps": "Aplikacje klienckie",
+ "cloudApps": "Aplikacje w chmurze",
+ "cloudAppsOrActions": "Aplikacje lub akcje w chmurze ",
+ "conditions": "Warunki ",
+ "createNewPolicy": "Tworzenie nowych zasad na podstawie szablonów (wersja zapoznawcza)",
+ "createPolicy": "Utwórz zasady",
+ "currentUser": "Bieżący użytkownik",
+ "customizeBuild": "Dostosuj Twoją kompilacją",
+ "customizeTemplate": "Listy szablonów są dostosowywane na podstawie rodzaju zasad, które chcesz utworzyć",
+ "excludedDevicePlatform": "Wykluczone platformy urządzeń",
+ "excludedDirectoryRoles": "Wykluczone role katalogów",
+ "excludedLocation": "Wykluczone role katalogów",
+ "excludedUsers": "Wykluczeni użytkownicy",
+ "grantControl": "Udziel kontroli ",
+ "includeFilteredDevice": "Uwzględnij w zasadach przefiltrowane urządzenia",
+ "includedDevicePlatform": "Dołączone platformy sprzętowe",
+ "includedDirectoryRoles": "Wykluczone role katalogów",
+ "includedLocation": "Dołączona lokalizacja",
+ "includedUsers": "Dołączeni użytkownicy",
+ "legacyAuthenticationClients": "Klienci ze starszym uwierzytelnianiem",
+ "namePolicy": "Nazwij Twoje zasady",
+ "next": "Dalej",
+ "policyName": "Nazwa zasad",
+ "policyState": "Stan zasad",
+ "policySummary": "Podsumowanie zasady",
+ "policyTemplate": "Szablon zasad",
+ "previous": "Wstecz",
+ "reviewAndCreate": "Przejrzyj i utwórz",
+ "riskLevels": "Poziomy ryzyka",
+ "selectATemplate": "Wybierz szablon",
+ "selectTemplate": "Wybierz szablon",
+ "selectTemplateCategory": "Wybierz kategorię szablonów",
+ "selectTemplateRecommendation": "Na podstawie Twojej odpowiedzi zalecamy następujące szablony",
+ "sessionControl": "Mechanizm kontroli sesji ",
+ "signInFrequency": "Częstotliwość logowania",
+ "signInRisk": "Ryzyko logowania",
+ "template": "Szablon ",
+ "templateCategory": "Kategoria szablonu",
+ "userRisk": "Ryzyko związane z użytkownikiem",
+ "usersAndGroups": "Użytkownicy i grupy ",
+ "viewPolicySummary": "Wyświetl podsumowanie zasad "
+ },
+ "SSM": {
+ "MemberSelector": {
+ "description": "Użytkownicy i grupy"
+ },
+ "Notification": {
+ "Migration": {
+ "error": "Migracja ustawień ciągłej weryfikacji dostępu do zasad dostępu warunkowego zakończyła się niepowodzeniem",
+ "inProgress": "Migracja ustawień ciągłej weryfikacji dostępu",
+ "success": "Migracja ustawień ciągłej weryfikacji dostępu do zasad dostępu warunkowego zakończyła się powodzeniem",
+ "successDescription": "Przejdź do zasad dostępu warunkowego, aby wyświetlić zmigrowane ustawienia w nowo utworzonej zasadzie o nazwie „Zasady urzędu certyfikacji utworzone na podstawie ustawień CAE”."
+ },
+ "error": "Nie udało się zaktualizować ustawień ciągłej weryfikacji dostępu",
+ "inProgress": "Aktualizowanie ustawień ciągłej weryfikacji dostępu",
+ "success": "Pomyślnie zaktualizowano ustawienia ciągłej weryfikacji dostępu"
+ },
+ "PreviewOptions": {
+ "disable": "Wyłącz podgląd",
+ "enable": "Włącz podgląd"
+ },
+ "StrictLocationEnforcement": {
+ "infoContent1": "Dla usługi Azure AD i dostawcy zasobów mogą być widoczne różne adresy IP w przypadku tego samego urządzenia z powodu niezgodności partycji sieciowej lub adresów IPv4/IPv6. Dokładne wymuszanie lokalizacji będzie powodować wymuszanie zasad dostępu warunkowego w oparciu o oba adresy IP, ten widoczny dla usługi Azure AD i ten widoczny dla dostawcy zasobów.",
+ "infoContent2": "Aby zapewnić maksymalne bezpieczeństwo, zaleca się uwzględnienie wszystkich adresów IP, które są widoczne dla usługi Azure AD i dostawcy zasobów, w zasadach nazwanej lokalizacji i włączenie trybu „Dokładne wymuszanie lokalizacji”.",
+ "label": "Dokładne wymuszanie lokalizacji",
+ "title": "Dodatkowe tryby wymuszania"
+ },
+ "bladeTitle": "Ciągła weryfikacja dostępu",
+ "description": "Po usunięciu dostępu użytkownika lub zmianie adresu IP klienta ciągła weryfikacja dostępu automatycznie blokuje dostęp do zasobów i aplikacji prawie w czasie rzeczywistym.",
+ "migrateLabel": "Migruj",
+ "migrationError": "Proces migracji zakończony niepowodzeniem z powodu następującego błędu: {0}",
+ "migrationInfo": "Ustawienia funkcji Ciągła weryfikacja dostępu zostały przeniesione do środowiska użytkownika Dostęp warunkowy. Przeprowadź migrację za pomocą przycisku „Migruj” powyżej i skonfiguruj dalsze korzystanie z tej funkcji przy użyciu zasad dostępu warunkowego. Kliknij tutaj, aby dowiedzieć się więcej.",
+ "noLicenseMessage": "Zarządzaj ustawieniami inteligentnego zarządzania sesjami za pomocą usługi Azure AD — wersja Premium",
+ "optionsPickerTitle": "Włącz/wyłącz ciągłą weryfikację dostępu",
+ "upsellInfo": "Nie możesz już zmieniać ustawień na tej stronie, a wszelkie ustawienia w tym miejscu powinny zostać zignorowane. Twoje poprzednie ustawienie zostanie uznane. W przyszłości możesz skonfigurować ustawienia CAE w obszarze Dostęp warunkowy. Kliknij tutaj, aby dowiedzieć się więcej."
+ },
+ "SelectOrganizations": {
+ "Blade": {
+ "Lower": {
+ "gridAria": "Lista wybranych organizacji"
+ },
+ "Upper": {
+ "gridAria": "Lista dostępnych organizacji"
+ },
+ "description": "Dodaj organizację usługi Azure AD, wpisując jedną z jej nazw domen.",
+ "notFoundResult": "Nie znaleziono",
+ "searchBoxPlaceholder": "Identyfikator dzierżawy lub nazwa domeny",
+ "subTitle": "Organizacja usługi Azure AD"
+ },
+ "Selector": {
+ "AdditionalDetails": {
+ "aria": "Identyfikator organizacji: {0}"
+ },
+ "DisplayText": {
+ "multiple": "Wybrane organizacje usługi Azure AD: {0}",
+ "single": "Wybrano 1 organizację usługi Azure AD"
+ },
+ "gridAria": "Lista wybranych organizacji"
+ }
+ },
+ "SessionLifetime": {
+ "PersistentBrowser": {
+ "Error": {
+ "notAllApps": "Zasady trwałej sesji przeglądarki działają tylko wtedy, gdy wybrana jest opcja „Wszystkie aplikacje w chmurze”. Zaktualizuj wybór aplikacji w chmurze."
+ },
+ "Option": {
+ "always": "Zawsze trwała",
+ "help": "Trwała sesja przeglądarki umożliwia użytkownikom pozostanie zalogowanym po zamknięciu i ponownym otworzeniu okna przeglądarki
\n\n- To ustawienie działa prawidłowo, gdy wybrana jest opcja „Wszystkie aplikacje w chmurze”
\n- Nie ma to wpływu na okresy istnienia tokenów ani na ustawienie częstotliwości logowania.
\n- Spowoduje to przesłonięcie zasad „Wyświetlaj opcję zachowania stanu zalogowania” w znakowaniu firmowym.
\n- Opcja „Nigdy trwała” przesłoni wszelkie oświadczenia logowania jednokrotnego przekazane z federacyjnej usługi uwierzytelniania.
\n- Opcja „Nigdy trwała” uniemożliwi korzystanie z logowania jednokrotnego we wszystkich aplikacjach na urządzeniu oraz między aplikacjami a przeglądarką użytkownika dla urządzeń przenośnych.
\n",
+ "label": "Trwała sesja przeglądarki",
+ "never": "Nigdy trwała"
+ },
+ "Warning": {
+ "allApps": "Trwała sesja przeglądarki działa tylko wtedy, gdy wybrana jest opcja Wszystkie aplikacje w chmurze. Zmień wybór aplikacji w chmurze. Kliknij tutaj, aby dowiedzieć się więcej."
+ }
+ },
+ "SignInFrequency": {
+ "Aria": {
+ "units": "Godziny lub dni",
+ "value": "Częstotliwość"
+ },
+ "Option": {
+ "Day": {
+ "plural": "{0} dni",
+ "singular": "1 dzień"
+ },
+ "Hour": {
+ "plural": "{0} godz.",
+ "singular": "1 godzina"
+ },
+ "daysOption": "Dni",
+ "everytime": "Za każdym razem",
+ "help": "Czas, po upłynięciu którego użytkownik będzie musiał ponownie się zalogować podczas próby uzyskania dostępu do zasobu. Ustawieniem domyślnym jest kroczący przedział czasu wynoszący 90 dni, tzn. użytkownicy będą musieli się ponownie uwierzytelnić podczas pierwszej próby uzyskania dostępu do zasobu po okresie nieaktywności wynoszącym 90 lub więcej dni.",
+ "hoursOption": "Godziny",
+ "label": "Częstotliwość logowania",
+ "placeholder": "Wybierz jednostki"
+ }
+ },
+ "mainOption": "Modyfikuj okres istnienia sesji",
+ "mainOptionHelp": "Skonfiguruj, jak często użytkownikom będzie wyświetlany monit i czy sesje przeglądarki będą utrwalone. Aplikacje, które nie obsługują nowoczesnych protokołów uwierzytelniania, mogą nie honorować tych zasad. W takich przypadkach skontaktuj się z deweloperem aplikacji."
+ },
+ "SigninRisk": {
+ "LearnMore": {
+ "message": "Kontroluj dostęp użytkowników w celu reagowania na określone poziomy ryzyka logowania."
+ }
+ },
+ "SingleSelectorActive": {
+ "failed": "Nie można załadować danych.",
+ "reattempt": "Ładowanie danych. Ponawianie próby dla {0} z {1}."
+ },
+ "TimeCondition": {
+ "Errors": {
+ "both": "Nieprawidłowy zakres czasu „Uwzględnij” lub „Wyklucz”.",
+ "daysOfWeek": "{0} Pamiętaj, aby określić co najmniej jeden dzień tygodnia.",
+ "endBeforeStart": "{0} Upewnij się, że data/godzina rozpoczęcia jest wcześniejsza niż data/godzina zakończenia.",
+ "exclude": "Nieprawidłowy zakres czasu „Wyklucz”.",
+ "generic": "{0} Upewnij się, że ustawiono zarówno dni tygodnia, jak i strefę czasową. Jeśli opcja „Cały dzień” nie jest zaznaczona, należy również ustawić czas rozpoczęcia i czas zakończenia.",
+ "include": "Nieprawidłowy zakres czasu „Uwzględnij”.",
+ "timeMissing": "{0} Pamiętaj, aby określić zarówno godzinę rozpoczęcia, jak i zakończenia.",
+ "timeZone": "{0} Pamiętaj, aby określić strefę czasową.",
+ "timesAndZone": "{0} Pamiętaj, aby ustawić czas rozpoczęcia, czas zakończenia i strefę czasową."
+ }
+ },
+ "UserActions": {
+ "Included": {
+ "none": "Nie wybrano aplikacji w chmurze ani akcji",
+ "plural": "Uwzględnione akcje użytkownika: {0}",
+ "singular": "Uwzględnione akcje użytkownika: 1"
+ },
+ "accessRequirement1": "Poziom 1",
+ "accessRequirement2": "Poziom 2",
+ "accessRequirement3": "Poziom 3",
+ "accessRequirementsLabel": "Uzyskiwanie dostępu do zabezpieczonych danych aplikacji",
+ "appsActionsAuthTitle": "Aplikacje w chmurze, akcje lub kontekst uwierzytelniania",
+ "appsOrActionsSelectorInfoBallonText": "Dostęp do aplikacji lub akcje użytkownika",
+ "appsOrActionsTitle": "Aplikacje w chmurze lub akcje",
+ "label": "Akcje użytkownika",
+ "mainOptionsLabel": "Wybierz, do czego te zasady mają zastosowanie",
+ "registerOrJoinDevices": "Zarejestruj lub dołącz urządzenia",
+ "registerSecurityInfo": "Zarejestruj informacje o zabezpieczeniach",
+ "selectionInfo": "Wybierz akcję, do której będą stosowane te zasady",
+ "whatIf": "Dołączono akcję użytkownika"
+ },
+ "UserSelectionBlade": {
+ "DirectoryRoles": {
+ "ariaLabel": "Wybierz role katalogu"
+ },
+ "Excluded": {
+ "gridAria": "Lista wykluczonych użytkowników"
+ },
+ "Included": {
+ "gridAria": "Lista uwzględnionych użytkowników"
+ },
+ "Validation": {
+ "customRoleIncluded": "„Role katalogów” zawierają co najmniej jedną rolę niestandardową",
+ "customRoleSelected": "Wybrano co najmniej jedną rolę niestandardową",
+ "failed": "Opcja „{0}” musi być skonfigurowana",
+ "roles": "Wybierz co najmniej jedną rolę",
+ "usersGroups": "Wybierz co najmniej jednego użytkownika lub grupę"
+ },
+ "learnMore": "Kontroluj dostęp na podstawie tego, do kogo będą stosowane zasady, np. do użytkowników i grup, tożsamości obciążeń, ról katalogu lub gości zewnętrznych."
+ },
+ "ValidationResult": {
+ "blockEveryonePolicy": "Konfiguracja zasad nie jest obsługiwana. Przejrzyj przypisania i kontrolki.",
+ "invalidApplicationCondition": "Wybrano nieprawidłowe aplikacje w chmurze",
+ "invalidClientTypesCondition": "Wybrano nieprawidłowe aplikacje klienta",
+ "invalidConditions": "Nie wybrano przypisań",
+ "invalidControls": "Wybrano nieprawidłowe kontrolki",
+ "invalidDevicePlatformsCondition": "Wybrano nieprawidłowe platformy urządzeń",
+ "invalidDevicesCondition": "Nieprawidłowa konfiguracja urządzenia. Prawdopodobnie przyczyną jest nieprawidłowa konfiguracja „{0}”.",
+ "invalidGrantControlPolicy": "Nieprawidłowa kontrolka przyznawania",
+ "invalidLocationsCondition": "Wybrano nieprawidłowe lokalizacje",
+ "invalidPolicy": "Nie wybrano przypisań",
+ "invalidSessionControlPolicy": "Nieprawidłowa kontrolka sesji",
+ "invalidSignInRisksCondition": "Wybrano nieprawidłowe ryzyko związane z logowaniem",
+ "invalidUserRisksCondition": "Wybrano nieprawidłowe ryzyko związane z użytkownikiem",
+ "invalidUsersCondition": "Wybrano nieprawidłowych użytkowników",
+ "mamPolicyShouldOnlyTargetAndroidOrIosPlatforms": "Zasady zarządzania aplikacjami mobilnymi można zastosować tylko do platform klienckich Android lub iOS.",
+ "notSupportedCombination": "Konfiguracja zasad nie jest obsługiwana. Dowiedz się więcej o obsługiwanych zasadach.",
+ "pending": "Weryfikowanie zasad",
+ "requireComplianceEveryonePolicy": "Konfiguracja zasad będzie wymagać zgodności urządzeń dla wszystkich użytkowników. Zweryfikuj wybrane przypisania.",
+ "success": "Prawidłowe zasady"
+ },
+ "VpnCert": {
+ "Grid": {
+ "aria": "Lista certyfikatów sieci VPN"
+ }
+ },
+ "WarningsInfo": {
+ "Controls": {
+ "compliantDeviceEnabled": "Nie zablokuj sobie dostępu! Upewnij się, że Twoje urządzenie jest zgodne.",
+ "domainJoinedDeviceEnabled": "Nie zablokuj sobie dostępu! Upewnij się, że Twoje urządzenie jest przyłączone hybrydowo do usługi Azure AD.",
+ "exchangeDisabled": "Program Exchange ActiveSync obsługuje tylko kontrolę zgodnych urządzeń i zatwierdzonej aplikacji klienckiej. Kliknij, aby dowiedzieć się więcej.",
+ "exchangeDisabled2": "Program Exchange ActiveSync obsługuje tylko kontrolki „Zgodne urządzenie”, „Zatwierdzona aplikacja kliencka” i „Zgodna aplikacja kliencka”. Kliknij, aby dowiedzieć się więcej.",
+ "notAvailableForSP": "Niektóre mechanizmy kontroli są niedostępne z powodu wyboru elementu „{0}” w przypisaniu zasad",
+ "requireAuthOrMfa": "Nie można użyć elementu „{0}” z elementem „{1}”",
+ "requireMfa": "Rozważ przetestowanie nowej publicznej wersji zapoznawczej „{0}”",
+ "requirePasswordChangeEnabled": "Udzielenie „Wymagaj zmiany hasła” może być używane tylko wtedy, gdy zasady są przypisane do elementu „Wszystkie aplikacje w chmurze”"
+ },
+ "Policies": {
+ "Linux": {
+ "devicePlatformsReportOnlyPolicy": "Zasady w trybie Tylko raport wymagające zgodnych urządzeń mogą monitować użytkowników w systemach macOS, iOS, Android i Linux o wybranie certyfikatu urządzenia.",
+ "excludeDevicePlatforms": "Wyklucz platformy urządzeń macOS, iOS, Android i Linux z tych zasad.",
+ "proceedAnywayDevicePlatforms": "Kontynuuj z wybraną konfiguracją. Użytkownicy systemów macOS, iOS, Android i Linux mogą otrzymywać monity, gdy urządzenie jest sprawdzane pod kątem zgodności."
+ },
+ "blockCurrentUserPolicy": "Nie zablokuj sobie dostępu! Zalecamy zastosowanie zasad najpierw do małego zestawu użytkowników, aby upewnić się, że działają zgodnie z oczekiwaniami. Zalecamy również wykluczenie co najmniej jednego administratora z tych zasad. Zagwarantuje Ci to dostęp i możliwość zaktualizowania zasad, jeśli będzie wymagana zmiana. Przejrzyj użytkowników i aplikacje, których to dotyczy.",
+ "devicePlatformsReportOnlyPolicy": "Zasady w trybie tylko do raportowania, które wymagają zgodnych urządzeń, mogą monitować użytkowników systemów MacOS, iOS i Android o wybranie certyfikatu urządzenia.",
+ "excludeCurrentUserSelection": "Wyklucz bieżącego użytkownika, {0}, z tych zasad.",
+ "excludeDevicePlatforms": "Wyklucz z tych zasad platformy urządzeń MacOS, iOS i Android.",
+ "proceedAnywayDevicePlatforms": "Kontynuuj z wybraną konfiguracją. Użytkownicy systemów MacOS, iOS i Android mogą zobaczyć monity, gdy urządzenie będzie sprawdzane pod kątem zgodności.",
+ "proceedAnywaySelection": "Rozumiem, że te zasady będą mieć wpływ na moje konto. Kontynuuj mimo to."
+ },
+ "ServicePrincipals": {
+ "blockExchange": "Wybranie usługi Office 365 Exchange Online wpłynie również na aplikacje, takie jak OneDrive i Teams.",
+ "blockPortal": "Nie zablokuj sobie dostępu! Te zasady wpływają na witrynę Azure Portal. Przed kontynuowaniem upewnij się, że Ty lub ktoś inny będzie w stanie wrócić do portalu.",
+ "blockPortalWithSession": "Nie zablokuj sobie dostępu! Te zasady mają wpływ na witrynę Azure Portal. Przed kontynuowaniem upewnij się, że Ty lub inny użytkownik będziecie mogli ponownie uzyskać dostęp do portalu.
Zignoruj to ostrzeżenie, jeśli konfigurujesz zasady trwałej sesji przeglądarki, które działają prawidłowo tylko w przypadku wybrania pozycji „Wszystkie aplikacje w chmurze”.",
+ "blockSharePoint": "Wybranie usługi SharePoint Online wpłynie również na aplikacje, takie jak Microsoft Teams, Planner, Delve, MyAnalytics oraz Newsfeed.",
+ "blockSkype": "Wybranie usługi Skype dla firm Online wpłynie również na program Microsoft Teams.",
+ "includeOrExclude": "Można skonfigurować filtr aplikacji dla wartości „{0}” lub „{1}”, ale nie dla obu.",
+ "selectAppsNAForSP": "Nie można wybrać pojedynczych aplikacji w chmurze z powodu wyboru elementu „{0}” w przypisaniu zasad",
+ "teamsBlocked": "Uwzględnienie aplikacji takich jak SharePoint Online i Exchange Online w zasadach będzie miało wpływ również na aplikację Microsoft Teams."
+ },
+ "Users": {
+ "blockAllUsers": "Nie zablokuj sobie dostępu! Te zasady zostaną zastosowane do wszystkich użytkowników. Zalecamy zastosowanie zasad najpierw do małego zbioru użytkowników, aby zweryfikować, czy działają zgodnie z oczekiwaniami."
+ }
+ },
+ "WhatIf": {
+ "Device": {
+ "AttributesGrid": {
+ "aria": "Lista atrybutów na urządzeniu używanych podczas logowania.",
+ "infoBalloon": "Lista atrybutów na urządzeniu używanych podczas logowania."
+ }
+ }
+ },
+ "advancedTabText": "Zaawansowane",
+ "allCloudAppsErrorBox": "Opcja „Wszystkie aplikacje w chmurze” musi być wybrana, jeśli wybrane jest udzielenie „Wymagaj zmiany hasła”",
+ "allCloudAppsReauth": "W przypadku wybrania kontroli sesji „Częstotliwość logowania za każdym razem” należy wybrać warunek „wszystkie aplikacje w chmurze” i „ryzyko logowania”",
+ "allCloudOrSpecificApps": "Kontrola sesji „częstotliwość logowania za każdym razem” wymaga wybrania „wszystkich aplikacji w chmurze” lub specjalnie obsługiwanych aplikacji",
+ "allDayCheckboxLabel": "Cały dzień",
+ "allDevicePlatforms": "Dowolne urządzenie",
+ "allGuestUserInfoContent": "Obejmuje gości usługi Azure AD B2B, ale nie gości programu SharePoint",
+ "allGuestUserLabel": "Wszyscy goście i użytkownicy zewnętrzni",
+ "allRiskLevelsOption": "Wszystkie poziomy ryzyka",
+ "allTrustedLocationLabel": "Wszystkie zaufane lokalizacje",
+ "allUserGroupSetSelectorLabel": "Wybrano wszystkich użytkowników i wszystkie grupy",
+ "allUsersReauth": "Kontrola sesji „Częstotliwość logowania za każdym razem” wymaga wybrania opcji „Wszyscy użytkownicy”",
+ "allUsersString": "Wszyscy użytkownicy",
+ "and": "{0} I {1}",
+ "andWithGrouping": "{0} I {1} ",
+ "androidDisplayName": "Android",
+ "anyCloudAppSelection": "Dowolna aplikacja w chmurze",
+ "appContextOptionInfoContent": "Żądany tag uwierzytelniania",
+ "appContextOptionLabel": "Żądany tag uwierzytelniania (wersja zapoznawcza)",
+ "appContextUriPlaceholder": "Przykład: uri:contoso.com:level3",
+ "appEnforceInfoBubble": "Ograniczenia wymuszane przez aplikacje mogą wymagać dodatkowych czynności konfiguracyjnych administratora w ramach aplikacji w chmurze. Ograniczenia będą stosowane tylko dla nowych sesji.",
+ "appNotSetSeletorLabel": "Nie wybrano żadnej aplikacji w chmurze",
+ "applyConditionClientAppInfoBalloonContent": "Konfiguruj aplikacje klienckie, aby do określonych z nich zastosować zasady",
+ "applyConditionDevicePlatformInfoBalloonContent": "Konfiguruj platformy urządzeń, aby do określonych z nich zastosować zasady",
+ "applyConditionDeviceStateInfoBalloonContent": "Skonfiguruj stany urządzeń, aby do określonych z nich zastosować zasady",
+ "applyConditionLocationInfoBalloonContent": "Konfiguruj lokalizacje, aby zastosować zasady do zaufanych lub niezaufanych lokalizacji",
+ "applyConditionSigninRiskInfoBalloonContent": "Konfiguruj ryzyko związane z logowaniem, aby zastosować zasady do określonych poziomów ryzyka",
+ "applyConditionUserRiskInfoBalloonContent": "Konfiguruj ryzyko związane z użytkownikiem, aby zastosować zasady do określonych poziomów ryzyka",
+ "applyConditonLabel": "Konfiguruj",
+ "ariaLabelPolicyDisabled": "Zasady są wyłączone",
+ "ariaLabelPolicyEnabled": "Zasady są włączone",
+ "ariaLabelPolicyReportOnly": "Zasada jest w trybie samego raportu",
+ "blockAccess": "Blokuj dostęp",
+ "builtInDirectoryRoleLabel": "Wbudowane role katalogów",
+ "casCustomControlInfo": "Zasady niestandardowe należy skonfigurować w portalu Cloud App Security. Ta kontrola działa natychmiast w przypadku polecanych aplikacji i może być samodzielnie aprowizowana dla dowolnej aplikacji. Kliknij tutaj, aby dowiedzieć się więcej o obu scenariuszach.",
+ "casInfoBubble": "Ta kontrolka działa dla różnych aplikacji w chmurze.",
+ "casPreconfiguredControlInfo": "Ta kontrola działa natychmiast w przypadku polecanych aplikacji i może być samodzielnie aprowizowana dla dowolnej aplikacji. Kliknij tutaj, aby dowiedzieć się więcej o obu scenariuszach.",
+ "cert64DownloadCol": "Pobierz certyfikat base64",
+ "cert64Name": "VpnBase64Cert",
+ "certDownloadCol": "Pobierz certyfikat",
+ "certDurationCol": "Data wygaśnięcia",
+ "certDurationStartCol": "Ważny od",
+ "certName": "VpnCert",
+ "certainApps": "Tylko specjalnie obsługiwane aplikacje są włączone dla opcji „Częstotliwość logowania za każdym razem”, jeśli nie wybrano opcji „Wymagaj uwierzytelniania wieloskładnikowego” i „Wymagaj zmiany hasła”",
+ "chooseApplicationsBladeSubtitle": "",
+ "chooseApplicationsBladeTitle": "Wybierz aplikacje",
+ "chooseApplicationsCartSubitle": "",
+ "chooseApplicationsCartTitle": "Wybrane aplikacje",
+ "chooseApplicationsEmpty": "Brak aplikacji",
+ "chooseApplicationsNone": "Brak",
+ "chooseApplicationsNoneFound": "Nie można znaleźć „{0}”. Spróbuj użyć innej nazwy lub identyfikatora.",
+ "chooseApplicationsPlural": "{0} i inne ({1})",
+ "chooseApplicationsReAuthEverytimeInfo": "Szukasz aplikacji? Niektórych aplikacji nie można używać z kontrolą sesji „Wymagaj ponownego uwierzytelnienia — za każdym razem”",
+ "chooseApplicationsRemove": "Usuń",
+ "chooseApplicationsReturnedPlural": "Liczba znalezionych aplikacji: {0}",
+ "chooseApplicationsReturnedSingular": "Znaleziono 1 aplikację",
+ "chooseApplicationsSearchBalloon": "Wyszukaj aplikację, wprowadzając jej nazwę lub identyfikator.",
+ "chooseApplicationsSearchHint": "Wyszukaj aplikacje...",
+ "chooseApplicationsSearchLabel": "Aplikacje",
+ "chooseApplicationsSearching": "Trwa wyszukiwanie...",
+ "chooseApplicationsSelect": "Wybierz",
+ "chooseApplicationsSelected": "Wybrane",
+ "chooseApplicationsSingular": "{0} i jedna więcej",
+ "chooseApplicationsTooMany": "Więcej wyników niż można wyświetlić. Filtruj przy użyciu pola wyszukiwania.",
+ "chooseLocationCorpnetItem": "Sieć firmowa",
+ "chooseLocationSelectedLocationsLabel": "Wybrane lokalizacje",
+ "chooseLocationTrustedIpsItem": "Zaufane adresy IP usługi MFA",
+ "chooseLocationsBladeSubtitle": "",
+ "chooseLocationsBladeTitle": "Wybieranie lokalizacji",
+ "chooseLocationsCartSubitle": "",
+ "chooseLocationsCartTitle": "Wybrane lokalizacje",
+ "chooseLocationsEmpty": "Brak lokalizacji",
+ "chooseLocationsExcludedSelectorTitle": "Wybierz",
+ "chooseLocationsIncludedSelectorTitle": "Wybierz",
+ "chooseLocationsNone": "Brak",
+ "chooseLocationsNoneFound": "Nie można znaleźć „{0}”. Spróbuj użyć innej nazwy lub identyfikatora.",
+ "chooseLocationsPlural": "{0} i inne ({1})",
+ "chooseLocationsRemove": "Usuń",
+ "chooseLocationsReturnedPlural": "Liczba odnalezionych lokalizacji: {0}",
+ "chooseLocationsReturnedSingular": "Odnaleziono 1 lokalizację",
+ "chooseLocationsSearchBalloon": "Wyszukaj lokalizację, wprowadzając jej nazwę.",
+ "chooseLocationsSearchHint": "Wyszukaj lokalizacje...",
+ "chooseLocationsSearchLabel": "Lokalizacje",
+ "chooseLocationsSearching": "Trwa wyszukiwanie...",
+ "chooseLocationsSelect": "Wybierz",
+ "chooseLocationsSelected": "Wybrane",
+ "chooseLocationsSelectionBladeExcludedSelectorTitle": "Wybierz",
+ "chooseLocationsSelectionBladeIncludedSelectorTitle": "Wybierz",
+ "chooseLocationsSingular": "{0} i jedna więcej",
+ "chooseLocationsTooMany": "Więcej wyników niż można wyświetlić. Filtruj przy użyciu pola wyszukiwania.",
+ "claimProviderAddCommandText": "Nowa kontrolka niestandardowa",
+ "claimProviderAddNewBladeTitle": "Nowa kontrolka niestandardowa",
+ "claimProviderDeleteCommand": "Usuń",
+ "claimProviderDeleteDescription": "Czy na pewno chcesz usunąć „{0}”? Tej akcji nie można cofnąć.",
+ "claimProviderDeleteTitle": "Czy na pewno?",
+ "claimProviderEditInfoText": "Wprowadź dane w formacie JSON na potrzeby dostosowanych kontrolek udostępnionych przez dostawców oświadczeń.",
+ "claimProviderNotificationCreateDescription": "Tworzenie kontrolki niestandardowej o nazwie „{0}”",
+ "claimProviderNotificationCreateFailedDescription": "Utworzenie kontrolki niestandardowej „{0}” nie powiodło się. Spróbuj ponownie później.",
+ "claimProviderNotificationCreateFailedTitle": "Nie można utworzyć kontrolki niestandardowej",
+ "claimProviderNotificationCreateSuccessDescription": "Utworzono kontrolkę niestandardową o nazwie „{0}”",
+ "claimProviderNotificationCreateSuccessTitle": "Utworzono sieć „{0}”",
+ "claimProviderNotificationCreateTitle": "Tworzenie sieci „{0}”",
+ "claimProviderNotificationDeleteDescription": "Usuwanie kontrolki niestandardowej o nazwie „{0}”",
+ "claimProviderNotificationDeleteFailedDescription": "Usunięcie kontrolki niestandardowej „{0}” nie powiodło się. Spróbuj ponownie później.",
+ "claimProviderNotificationDeleteFailedTitle": "Nie można usunąć kontrolki niestandardowej",
+ "claimProviderNotificationDeleteSuccessDescription": "Usunięto kontrolkę niestandardową o nazwie „{0}”",
+ "claimProviderNotificationDeleteSuccessTitle": "Usunięto sieć „{0}”",
+ "claimProviderNotificationDeleteTitle": "Usuwanie znakowania „{0}”",
+ "claimProviderNotificationUpdateDescription": "Aktualizowanie kontrolki niestandardowej o nazwie „{0}”",
+ "claimProviderNotificationUpdateFailedDescription": "Zaktualizowanie kontrolki niestandardowej „{0}” nie powiodło się. Spróbuj ponownie później.",
+ "claimProviderNotificationUpdateFailedTitle": "Nie można zaktualizować kontrolki niestandardowej",
+ "claimProviderNotificationUpdateSuccessDescription": "Zaktualizowano kontrolkę niestandardową o nazwie „{0}”",
+ "claimProviderNotificationUpdateSuccessTitle": "Zaktualizowano sieć „{0}”",
+ "claimProviderNotificationUpdateTitle": "Aktualizowanie sieci „{0}”",
+ "claimProviderValidationAppIdInvalid": "Wartość „AppId” jest nieprawidłowa. Sprawdź to i spróbuj ponownie.",
+ "claimProviderValidationClientIdMissing": "W danych brakuje wartości „ClientId”. Sprawdź to i spróbuj ponownie.",
+ "claimProviderValidationControlClaimsRequestedMissing": "W elemencie „Control” brakuje wartości „ClaimsRequested”. Sprawdź to i spróbuj ponownie.",
+ "claimProviderValidationControlClaimsRequestedTypeMissing": "W elemencie „ClaimsRequested” brakuje wartości „Type”. Sprawdź to i spróbuj ponownie.",
+ "claimProviderValidationControlIdAlreadyExists": "Wartość „Id” elementu „Control” już istnieje. Sprawdź to i spróbuj ponownie.",
+ "claimProviderValidationControlIdMissing": "W elemencie „Control” brakuje wartości „Id”. Sprawdź to i spróbuj ponownie.",
+ "claimProviderValidationControlIdReferencedInExistingPolicy": "Nie można usunąć wartości „Id” elementu „Control”, ponieważ istnieje do niej odwołanie w istniejących zasadach. Sprawdź to i spróbuj ponownie.",
+ "claimProviderValidationControlIdTooManyControls": "Właściwość „Control” zawiera zbyt wiele kontrolek. Sprawdź to i spróbuj ponownie.",
+ "claimProviderValidationControlIdValueReserved": "Wartość „Id” elementu „Control” jest zastrzeżonym słowem kluczowym. Użyj innego identyfikatora.",
+ "claimProviderValidationControlNameAlreadyExists": "Wartość „Name” elementu „Control” już istnieje. Sprawdź to i spróbuj ponownie.",
+ "claimProviderValidationControlNameMissing": "W elemencie „Control” brakuje wartości „Name”. Sprawdź to i spróbuj ponownie.",
+ "claimProviderValidationControlsMissing": "W danych brakuje wartości „Controls”. Sprawdź to i spróbuj ponownie.",
+ "claimProviderValidationDiscoveryUrlMissing": "W danych brakuje wartości „DiscoveryUrl”. Sprawdź to i spróbuj ponownie.",
+ "claimProviderValidationInvalid": "Podane dane są nieprawidłowe. Sprawdź to i spróbuj ponownie.",
+ "claimProviderValidationInvalidJsonDefinition": "Nie można zapisać kontrolki niestandardowej. Przejrzyj tekst w formacie JSON i spróbuj ponownie.",
+ "claimProviderValidationNameAlreadyExists": "Wartość „Name” już istnieje. Sprawdź to i spróbuj ponownie.",
+ "claimProviderValidationNameMissing": "W danych brakuje wartości „Name”. Sprawdź to i spróbuj ponownie.",
+ "claimProviderValidationUnknown": "Wystąpił nieznany błąd podczas weryfikowania podanych danych. Sprawdź to i spróbuj ponownie.",
+ "claimProvidersNone": "Brak kontrolek niestandardowych",
+ "claimProvidersSearchPlaceholder": "Wyszukaj kontrolki.",
+ "classicPoilcyFilterTitle": "Pokaż",
+ "classicPolicyAllPlatforms": "Wszystkie platformy",
+ "classicPolicyClientAppBrowserAndNative": "Przeglądarka, aplikacje mobilne i klienci komputerowi",
+ "classicPolicyCloudAppTitle": "Aplikacja w chmurze",
+ "classicPolicyControlAllow": "Zezwól",
+ "classicPolicyControlBlock": "Blokuj",
+ "classicPolicyControlBlockWhenNotAtWork": "Zablokuj dostęp poza pracą",
+ "classicPolicyControlRequireCompliantDevice": "Wymagaj zgodnego urządzenia",
+ "classicPolicyControlRequireDomainJoinedDevice": "Wymagaj urządzenia połączonego z domeną",
+ "classicPolicyControlRequireMfa": "Wymagaj uwierzytelniania wieloskładnikowego",
+ "classicPolicyControlRequireMfaWhenNotAtWork": "Wymagaj uwierzytelniania wieloskładnikowego poza pracą",
+ "classicPolicyDeleteCommand": "Usuń",
+ "classicPolicyDeleteFailTitle": "Nie można usunąć zasad klasycznych",
+ "classicPolicyDeleteInProgressTitle": "Usuwanie zasad klasycznych",
+ "classicPolicyDeleteSuccessTitle": "Zasady klasyczne usunięte",
+ "classicPolicyDetailBladeTitle": "Szczegóły",
+ "classicPolicyDisableCommand": "Wyłącz",
+ "classicPolicyDisableConfirmation": "Czy na pewno chcesz wyłączyć „{0}”? Tej akcji nie można cofnąć.",
+ "classicPolicyDisableFailDescription": "Nie można wyłączyć zasad „{0}”",
+ "classicPolicyDisableFailTitle": "Nie można wyłączyć zasad klasycznych",
+ "classicPolicyDisableInProgressDescription": "Wyłączanie zasad „{0}”",
+ "classicPolicyDisableInProgressTitle": "Wyłączanie zasad klasycznych",
+ "classicPolicyDisableSuccessDescription": "Pomyślnie wyłączono zasady „{0}”",
+ "classicPolicyDisableSuccessTitle": "Zasady klasyczne wyłączone",
+ "classicPolicyEasSupportedPlatforms": "Obsługiwane platformy usługi Exchange ActiveSync",
+ "classicPolicyEasUnsupportedPlatforms": "Nieobsługiwane platformy usługi Exchange ActiveSync",
+ "classicPolicyExcludedPlatformsTitle": "Wykluczone platformy urządzeń",
+ "classicPolicyFilterAll": "Wszystkie zasady",
+ "classicPolicyFilterDisabled": "Wyłączone zasady",
+ "classicPolicyFilterEnabled": "Włączone zasady",
+ "classicPolicyIncludeExcludeMembersDescription": "Wykluczając grupy, można przeprowadzić stopniową migrację zasad.",
+ "classicPolicyIncludeExcludeMembersTitle": "Uwzględnianie/wykluczanie grup",
+ "classicPolicyIncludedPlatformsTitle": "Uwzględnione platformy sprzętowe",
+ "classicPolicyManualMigrationMessage": "Te zasady muszą zostać zmigrowane ręcznie.",
+ "classicPolicyMigrateCommand": "Migruj",
+ "classicPolicyMigrateConfirmation": "Czy na pewno chcesz przeprowadzić migrację zasad „{0}”? Te zasady można migrować tylko raz.",
+ "classicPolicyMigrateFailDescription": "Nie można migrować zasad „{0}”",
+ "classicPolicyMigrateFailTitle": "Nie można przeprowadzić migracji zasad klasycznych",
+ "classicPolicyMigrateInProgressDescription": "Migrowanie zasad „{0}”",
+ "classicPolicyMigrateInProgressTitle": "Migrowanie zasad klasycznych",
+ "classicPolicyMigrateRecommendText": "Zalecenie: wykonać migrację do zasad nowego portalu Azure.",
+ "classicPolicyMigrateSuccessTitle": "Migracja zasad klasycznych zakończona powodzeniem",
+ "classicPolicyMigratedSuccessDescription": "Tymi klasycznymi zasadami można teraz zarządzać w obszarze Zasady.",
+ "classicPolicyMigratedSuccessDescriptionMultiple": "Te zasady klasyczne są migrowane jako nowe zasady {0}. Nowymi zasadami można zarządzać w obszarze Zasady.",
+ "classicPolicyNoEditPermissionMsg": "Nie masz uprawnień do edytowania tych zasad. Tylko administratorzy globalni i administratorzy zabezpieczeń mogą edytować zasady. Kliknij tutaj, aby uzyskać więcej informacji.",
+ "classicPolicySaveFailDescription": "Nie można zapisać zasad „{0}”",
+ "classicPolicySaveFailTitle": "Nie można zapisać zasad klasycznych",
+ "classicPolicySaveInProgressDescription": "Zapisywanie zasad „{0}”",
+ "classicPolicySaveInProgressTitle": "Zapisywanie zasad klasycznych",
+ "classicPolicySaveSuccessDescription": "Pomyślnie zapisano zasady „{0}”",
+ "classicPolicySaveSuccessTitle": "Zasady klasyczne zapisane",
+ "clientAppBladeLegacyInfoBanner": "Starsza metoda uwierzytelniania nie jest obecnie obsługiwana",
+ "clientAppBladeLegacyUpsellBanner": "Blokuj nieobsługiwane aplikacje klienckie (wersja zapoznawcza)",
+ "clientAppBladeTitle": "Aplikacje klienckie",
+ "clientAppDescription": "Wybierz aplikacje klienckie, do których zostaną zastosowane te zasady",
+ "clientAppExchangeActiveSync": "Exchange ActiveSync",
+ "clientAppExchangeDisabledInfo": "Program Exchange ActiveSync jest dostępny, gdy usługa Exchange Online jest jedyną wybraną aplikacją w chmurze. Kliknij, aby dowiedzieć się więcej",
+ "clientAppExchangeWarning": "Program Exchange ActiveSync obecnie nie obsługuje wszystkich pozostałych warunków",
+ "clientAppLearnMore": "Kontroluj dostęp użytkowników do konkretnych docelowych aplikacji klienckich, które nie używają nowoczesnego uwierzytelniania.",
+ "clientAppLegacyHeader": "Klienci ze starszym uwierzytelnianiem",
+ "clientAppMobileDesktop": "Aplikacje mobilne i klienci stacjonarni",
+ "clientAppModernHeader": "Klienci z nowoczesnym uwierzytelnianiem",
+ "clientAppOnlySupportedPlatforms": "Zastosuj zasady tylko do obsługiwanych platform",
+ "clientAppSelectSpecificClientApps": "Wybierz aplikacje klienckie",
+ "clientAppV2BladeTitle": "Aplikacje klienckie (wersja zapoznawcza)",
+ "clientAppWebBrowser": "Przeglądarka",
+ "clientAppsSelectedLabel": "Włączono: {0}",
+ "clientTypeBrowser": "Przeglądarka",
+ "clientTypeEas": "Klienci programu Exchange ActiveSync",
+ "clientTypeEasInfo": "Tylko klienci Exchange ActiveSync używający starszego uwierzytelniania.",
+ "clientTypeModernAuth": "Nowocześni klienci uwierzytelniania",
+ "clientTypeOtherClients": "Inni klienci",
+ "clientTypeOtherClientsInfo": "Obejmuje to starszych klientów pakietu Office oraz inne protokoły pocztowe (POP, IMAP, SMTP itp.). [Dowiedz się więcej][1]\n[1]: https://aka.ms/caclientapps\n",
+ "cloudAppCountDiffBannerText": "Z katalogu usunięto aplikacje w chmurze ({0}) skonfigurowane w ramach tych zasad, ale nie ma to wpływu na inne aplikacje w zasadach. Przy następnej aktualizacji sekcji aplikacji zasad usunięte aplikacje zostaną automatycznie z niej skasowane.",
+ "cloudAppsSelectionBladeAllMicrosoftApps": "Wszystkie aplikacje firmy Microsoft",
+ "cloudAppsSelectionExcludeAllMicrosoftClients": "Zezwalaj na aplikacje w chmurze, klasyczne i mobilne firmy Microsoft (wersja zapoznawcza)",
+ "cloudappsSelectionBladeAllCloudapps": "Wszystkie aplikacje w chmurze",
+ "cloudappsSelectionBladeExcludeDescription": "Wybierz aplikacje w chmurze, które zostaną wykluczone z zasad",
+ "cloudappsSelectionBladeExcludedSelectorTitle": "Wybierz wykluczone aplikacje w chmurze",
+ "cloudappsSelectionBladeIncludeDescription": "Wybierz aplikacje w chmurze, do których będą mieć zastosowanie te zasady",
+ "cloudappsSelectionBladeIncludedSelectorTitle": "Wybierz",
+ "cloudappsSelectionBladeSelectedCloudapps": "Wybierz aplikacje",
+ "cloudappsSelectorInfoBallonText": "Usługi, do których użytkownik uzyskuje dostęp w celu wykonania pracy. Na przykład „Salesforce”",
+ "cloudappsSelectorPluralExcluded": "Wykluczone aplikacje: {0}",
+ "cloudappsSelectorPluralIncluded": "Uwzględnione aplikacje: {0}",
+ "cloudappsSelectorSingularExcluded": "Wykluczono 1 aplikację",
+ "cloudappsSelectorSingularIncluded": "Uwzględniono 1 aplikację",
+ "cloudappsSelectorUserPlural": "Aplikacje: {0}",
+ "cloudappsSelectorUserSingular": "1 aplikacja",
+ "conditionLabelMulti": "Wybrane warunki: {0}",
+ "conditionLabelOne": "Wybrano 1 warunek",
+ "conditionalAccessBladeTitle": "Dostęp warunkowy",
+ "conditionsNotSelectedLabel": "Nie skonfigurowano",
+ "conditionsReqMfaReauthSet": "Niektóre opcje są niedostępne z powodu udzielenia uprawnienia „Wymagaj uwierzytelniania wieloskładnikowego” i aktualnie wybrano kontrolę sesji „częstotliwości logowania za każdym razem”",
+ "conditionsReqPwSet": "Niektóre opcje są niedostępne z powodu udzielenia „Wymagaj zmiany hasła”, które jest obecnie wybrane",
+ "configureCasText": "Skonfiguruj usługę Cloud App Security",
+ "configureCustomControlsText": "Skonfiguruj zasady niestandardowe",
+ "controlLabelMulti": "Wybrane kontrolki: {0}",
+ "controlLabelOne": "Wybrano 1 kontrolkę",
+ "controlValidatorText": "Wybierz co najmniej jedną kontrolkę",
+ "controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
+ "controlsDeviceComplianceAriaLabel": "Learn more about requiring compliant devices.",
+ "controlsDeviceComplianceInfoBubble": "Device must be Intune compliant. If the device is non-compliant, the user will be prompted to bring the device under compliance.",
+ "controlsDomainJoinedAriaLabel": "Learn more about requiring hybrid Azure AD joined devices.",
+ "controlsDomainJoinedInfoBubble": "Urządzenia muszą być przyłączone hybrydowo do usługi Azure AD.",
+ "controlsMamAriaLabel": "Learn more about requiring approved client applications.",
+ "controlsMamInfoBubble": "Urządzenie musi używać tych zatwierdzonych aplikacji klienckich.",
+ "controlsMfaInfoBubble": "Użytkownik musi spełnić dodatkowe wymagania dotyczące zabezpieczeń, takie jak połączenie telefoniczne, wiadomość SMS",
+ "controlsOrAndInfoBubble": "ControlsOrAndInfoBubble",
+ "controlsRequireCompliantAppAriaLabel": "Learn more about requiring policy protected apps.",
+ "controlsRequireCompliantAppInfoBubble": "Urządzenie musi używać aplikacji chronionych przez zasady.",
+ "controlsRequirePasswordResetAriaLabel": "Learn more about requiring a password change.",
+ "controlsRequirePasswordResetInfoBubble": "Wymagaj zmiany hasła, aby zmniejszyć ryzyko związane z użytkownikiem. Ta opcja wymaga również usługi Multi-Factor Authentication. Nie można użyć innych kontrolek.",
+ "countriesRadiobuttonInfoBalloonContent": "Kraj/region, z którego ma miejsce logowanie, jest określany na podstawie adresu IP użytkownika.",
+ "createNewVpnCert": "Nowy certyfikat",
+ "createdTimeLabel": "Godzina utworzenia",
+ "customRoleLabel": "Role niestandardowe (nieobsługiwane)",
+ "dateRangeTypeLabel": "Zakres dat",
+ "daysOfWeekPlaceholderText": "Filtruj dni tygodnia",
+ "daysOfWeekTypeLabel": "Dni tygodnia",
+ "deletePolicyNoLicenseText": "Teraz możesz usunąć te zasady. Po usunięciu nie będziesz w stanie utworzyć ich ponownie, dopóki nie uzyskasz wymaganych licencji.",
+ "descriptionContentForControlsAndOr": "W przypadku wielu kontrolek",
+ "devicePlatform": "Platforma urządzeń",
+ "devicePlatformConditionHelpDescription": "Zastosuj zasady do wybranych platform urządzeń.\n[Dowiedz się więcej][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2044750",
+ "devicePlatformInclude": "Włączono: {0}",
+ "devicePlatformIncludeExclude": "Wykluczono {0} i {1}",
+ "devicePlatformNoSelectionError": "Wybieranie platform urządzeń wymaga wybrania jednego elementu podrzędnego.",
+ "devicePlatformsNone": "Brak",
+ "deviceSelectionBladeExcludeDescription": "Wybierz platformy, zostaną wykluczone z zasad",
+ "deviceSelectionBladeIncludeDescription": "Wybierz platformy urządzeń, które będą objęte tymi zasadami",
+ "deviceStateAll": "Stan wszystkich urządzeń",
+ "deviceStateCompliant": "Urządzenie oznaczone jako zgodne",
+ "deviceStateCompliantInfoContent": "Urządzenia zgodne z usługą Intune zostaną wykluczone z oceny tych zasad, więc jeśli na przykład zasady blokują dostęp, spowoduje to zablokowanie wszystkich urządzeń z wyjątkiem urządzeń zgodnych z usługą Intune.",
+ "deviceStateConditionConfigureInfoContent": "Konfigurowanie zasad na podstawie stanu urządzenia",
+ "deviceStateConditionSelectorInfoContent": "Niezależnie od tego, czy urządzenie, z poziomu z którego loguje się użytkownik, ma wartość „Przyłączone hybrydowo do usługi Azure AD”, czy „oznaczone jako zgodne”.\n Ta funkcja jest przestarzała. Zamiast tego użyj „{1}”.",
+ "deviceStateConditionSelectorLabel": "Stan urządzenia (przestarzałe)",
+ "deviceStateDomainJoined": "Urządzenie przyłączone hybrydowo do usługi Azure AD",
+ "deviceStateDomainJoinedInfoContent": "Urządzenia przyłączone hybrydowo do usługi Azure AD zostaną wykluczone z oceny tych zasad, więc jeśli na przykład zasady blokują dostęp, spowoduje to zablokowanie wszystkich urządzeń z wyjątkiem urządzeń przyłączonych hybrydowo do usługi Azure AD.",
+ "deviceStateDomainJoinedInfoLinkText": "Dowiedz się więcej.",
+ "deviceStateExcludeDescription": "Wybierz warunek stanu urządzenia używany do wykluczania urządzeń z zasad.",
+ "deviceStateIncludeAndExcludeOneLabel": "Dołącz: {0}. Wyklucz: {1}",
+ "deviceStateIncludeAndExcludeTwoLabel": "Dołącz: {0}. Wyklucz: {1}, {2}",
+ "directoryRoleInfoContent": "Przypisz zasady do wbudowanych ról katalogów.",
+ "directoryRolesLabel": "Role katalogu",
+ "discardbutton": "Odrzuć",
+ "downloadDefaultFileName": "Zakresy adresów IP",
+ "downloadExampleFileName": "Przykład",
+ "downloadExampleHeader": "To jest przykładowy plik z demonstracjami rodzajów danych, które mogą zostać zaakceptowane. Wiersze rozpoczynające się znakiem # zostaną zignorowane.",
+ "endDatePickerLabel": "Końce",
+ "endTimePickerLabel": "Godzina zakończenia",
+ "enterCountryText": "Adres IP i kraj są przetwarzane razem. Wybierz kraj.",
+ "enterIpText": "Adres IP i kraj są przetwarzane razem. Podaj adres IP.",
+ "enterUserText": "Nie wybrano żadnego użytkownika. Wybierz go.",
+ "evaluationResult": "Wynik oceny",
+ "exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
+ "exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Tylko usługa Exchange ActiveSync z obsługiwanymi platformami",
+ "excludeAllTrustedLocationSelectorText": "wszystkie zaufane lokalizacje",
+ "featureRequiresP2": "Ta funkcja wymaga licencji usługi Azure AD Premium 2.",
+ "friday": "Piątek",
+ "grantControls": "Udziel kontroli",
+ "gridNetworkTrusted": "Zaufane",
+ "gridPolicyCreatedDateTime": "Data utworzenia",
+ "gridPolicyEnabled": "Włączono",
+ "gridPolicyModifiedDateTime": "Data modyfikacji",
+ "gridPolicyName": "Nazwa zasad",
+ "gridPolicyState": "Stan",
+ "groupSelectionBladeExcludeDescription": "Wybierz grupy, wobec których zostanie zastosowane wykluczenie z zasad",
+ "groupSelectionBladeExcludedSelectorTitle": "Wybieranie grup wykluczonych",
+ "groupSelectionBladeSelect": "Wybieranie grup",
+ "groupSelectorInfoBallonText": "Grupy w katalogu, wobec których zostaną zastosowane zasady. Przykład: „grupa pilotażowa”",
+ "groupsSelectionBladeTitle": "Grupy",
+ "helpCommonScenariosText": "Chcesz zapoznać się z typowymi scenariuszami?",
+ "helpCondition1": "Gdy jakikolwiek użytkownik znajduje się poza siecią firmową",
+ "helpCondition2": "Gdy użytkownicy z grupy „Menedżerowie” logują się",
+ "helpConditionsTitle": "Warunki",
+ "helpControl1": "Wymagane jest od nich zalogowanie się za pomocą uwierzytelniania wieloskładnikowego",
+ "helpControl2": "Wymagane jest od nich używanie urządzenia zgodnego z usługą Intune lub urządzenia przyłączonego do domeny",
+ "helpControlsTitle": "Formanty",
+ "helpIntroText": "Dostęp warunkowy umożliwia wymuszanie wymagań dotyczących dostępu, gdy wystąpią określone warunki. Poniżej przedstawionych jest kilka przykładów",
+ "helpIntroTitle": "Co to jest dostęp warunkowy?",
+ "helpLearnMoreText": "Chcesz dowiedzieć się więcej na temat dostępu warunkowego?",
+ "helpStartStep1": "Utwórz pierwszą zasadę, klikając pozycję „+ Nowe zasady”",
+ "helpStartStep2": "Określ warunki i kontrolki zasad",
+ "helpStartStep3": "Gdy wszystko będzie gotowe, nie zapomnij włączyć zasad i utworzyć",
+ "helpStartTitle": "Rozpocznij",
+ "highRisk": "Wysokie",
+ "includeAndExcludeAppsTextFormat": "Uwzględnij: {0}. Wyklucz: {1}.",
+ "includeAppsTextFormat": "Uwzględnij: {0}.",
+ "includeUnknownAreasCheckboxInfoBalloonContent": "Nieznane obszary to adresy IP, których nie można mapować na kraj/region.",
+ "includeUnknownAreasCheckboxLabel": "Uwzględnij nieznane obszary",
+ "infoCommandLabel": "Informacje",
+ "invalidCertDuration": "Nieprawidłowy czas trwania certyfikatu",
+ "invalidIpAddress": "Wartość musi być prawidłowym adresem IP",
+ "invalidUriErrorMsg": "Wprowadź prawidłowy identyfikator Uri. Przykład: „uri:contoso.com:acr” ",
+ "iosDisplayName": "iOS",
+ "linuxDisplayName": "Linux",
+ "loadAll": "Załaduj wszystko",
+ "loading": "Trwa ładowanie...",
+ "locationConfigureNamedLocationsText": "Konfiguruj wszystkie zaufane lokalizacje",
+ "locationConfigureNamedLocationsUri": "{0}/usermanagement/mfasettings.aspx?tenantid={1}&culture={2}",
+ "locationNameTooLongError": "Nazwa lokalizacji jest za długa. Maksymalna długość to 256 znaków",
+ "locationSelectionBladeExcludeDescription": "Wybierz lokalizacje, które zostaną wykluczone z zasad",
+ "locationSelectionBladeIncludeDescription": "Wybierz lokalizacje, które mają zostać dołączone do tych zasad",
+ "locationsAllLocationsLabel": "Dowolna lokalizacja",
+ "locationsAllNamedLocationsLabel": "Wszystkie zaufane adresy IP",
+ "locationsAllPrivateLinksLabel": "Wszystkie prywatne linki w mojej dzierżawie",
+ "locationsIncludeExcludeLabel": "{0} i wyklucz wszystkie zaufane adresy IP",
+ "locationsSelectedPrivateLinksLabel": "Wybrane łącza prywatne",
+ "lowRisk": "Niskie",
+ "macOsDisplayName": "macOS",
+ "managePoliciesLicenseText": "Aby zarządzać zasadami dostępu warunkowego, organizacja musi korzystać z usługi Azure AD — wersja Premium P1 lub P2.",
+ "markAsTrustedCheckboxInfoBalloonContent": "Logowanie z zaufanej lokalizacji obniża ryzyko związane z logowaniem użytkownika. Oznacz tę lokalizację jako zaufaną tylko wtedy, jeśli wprowadzone zakresy adresów IP są uznawane za znane i wiarygodne w Twojej organizacji.",
+ "markAsTrustedCheckboxLabel": "Oznacz jako zaufaną lokalizację",
+ "mediumRisk": "Średnie",
+ "memberSelectionCommandRemove": "Usuń",
+ "menuItemClaimProviderControls": "Kontrolki niestandardowe (wersja zapoznawcza)",
+ "menuItemClassicPolicies": "Zasady klasyczne",
+ "menuItemInsightsAndReporting": "Szczegółowe informacje i raportowanie",
+ "menuItemManage": "Zarządzaj",
+ "menuItemNamedLocationsPreview": "Nazwane lokalizacje (wersja zapoznawcza)",
+ "menuItemNamedNetworks": "Nazwane lokalizacje",
+ "menuItemPolicies": "Zasady",
+ "menuItemTermsOfUse": "Warunki użytkowania",
+ "modifiedTimeLabel": "Godzina modyfikacji",
+ "monday": "Poniedziałek",
+ "nameLabel": "Nazwa",
+ "namedLocationCountryInfoBanner": "Tylko adresy IPv4 są mapowane na kraje/regiony. Adresy IPv6 są dołączane w przypadku nieznanych krajów/regionów.",
+ "namedLocationTypeCountry": "Kraje/regiony",
+ "namedLocationTypeLabel": "Zdefiniuj lokalizację za pomocą:",
+ "namedLocationUpsellBanner": "Ten widok jest przestarzały. Przejdź do nowego i ulepszonego widoku \"Nazwane lokalizacje\".",
+ "namedLocationsHelpDescription": "Nazwane lokalizacje są używane w raportach zabezpieczeń usługi Microsoft Azure Active Directory, aby zredukować liczbę wyników fałszywie dodatnich i zasad dostępu warunkowego usługi Azure AD.\n[Dowiedz się więcej][1]\n[1]: https://aka.ms/namedlocationupdate",
+ "namedNetworkAddIpRanges": "Dodaj nowy zakres adresów IP (np. 40.77.182.32/27)",
+ "namedNetworkCountryNeeded": "Należy wybrać co najmniej jeden kraj",
+ "namedNetworkDeleteCommand": "Usuń",
+ "namedNetworkDeleteDescription": "Czy na pewno chcesz usunąć „{0}”? Tej akcji nie można cofnąć.",
+ "namedNetworkDeleteTitle": "Czy na pewno?",
+ "namedNetworkDownloadIpRange": "Pobierz",
+ "namedNetworkInvalidRange": "Wartość musi być prawidłowym zakresem adresów IP.",
+ "namedNetworkIpRangeNeeded": "Wymagany jest co najmniej jeden prawidłowy zakres adresów IP",
+ "namedNetworkIpRangesDescriptionContent": "Skonfiguruj zakresy adresów IP w organizacji",
+ "namedNetworkIpRangesTab": "Zakresy adresów IP",
+ "namedNetworkListAdd": "Nowa lokalizacja",
+ "namedNetworkListConfigureTrustedIps": "Konfiguruj zaufane adresy IP usługi MFA",
+ "namedNetworkNameDescription": "Przykład: „biuro w Redmond”",
+ "namedNetworkNameInvalid": "Podana nazwa jest nieprawidłowa.",
+ "namedNetworkNameRequired": "Musisz podać nazwę dla tej lokalizacji.",
+ "namedNetworkNoIpRanges": "Brak zakresów adresów IP",
+ "namedNetworkNotificationCreateDescription": "Tworzenie lokalizacji o nazwie „{0}”",
+ "namedNetworkNotificationCreateFailedDescription": "Nie można utworzyć lokalizacji „{0}”. Spróbuj ponownie później.",
+ "namedNetworkNotificationCreateFailedTitle": "Nie można utworzyć lokalizacji",
+ "namedNetworkNotificationCreateSuccessDescription": "Utworzono lokalizację o nazwie „{0}”",
+ "namedNetworkNotificationCreateSuccessTitle": "Utworzono sieć „{0}”",
+ "namedNetworkNotificationCreateTitle": "Tworzenie sieci „{0}”",
+ "namedNetworkNotificationDeleteDescription": "Usuwanie lokalizacji o nazwie „{0}”",
+ "namedNetworkNotificationDeleteFailedDescription": "Nie można usunąć lokalizacji „{0}”. Spróbuj ponownie później.",
+ "namedNetworkNotificationDeleteFailedTitle": "Nie można usunąć lokalizacji",
+ "namedNetworkNotificationDeleteSuccessDescription": "Usunięto lokalizację o nazwie „{0}”",
+ "namedNetworkNotificationDeleteSuccessTitle": "Usunięto sieć „{0}”",
+ "namedNetworkNotificationDeleteTitle": "Usuwanie znakowania „{0}”",
+ "namedNetworkNotificationUpdateDescription": "Aktualizowanie lokalizacji o nazwie „{0}”",
+ "namedNetworkNotificationUpdateFailedDescription": "Nie można zaktualizować lokalizacji „{0}”. Spróbuj ponownie później.",
+ "namedNetworkNotificationUpdateFailedTitle": "Nie można zaktualizować lokalizacji",
+ "namedNetworkNotificationUpdateSuccessDescription": "Zaktualizowano lokalizację o nazwie „{0}”",
+ "namedNetworkNotificationUpdateSuccessTitle": "Zaktualizowano sieć „{0}”",
+ "namedNetworkNotificationUpdateTitle": "Aktualizowanie sieci „{0}”",
+ "namedNetworkSearchPlaceholder": "Wyszukaj lokalizacje.",
+ "namedNetworkUploadFailedDescription": "Wystąpił błąd podczas analizowania dostarczonego pliku. Przekaż zwykły plik tekstowy, w którym każdy wiersz ma format CIDR.",
+ "namedNetworkUploadFailedTitle": "Nie można przeanalizować wartości „{0}”",
+ "namedNetworkUploadInProgressDescription": "Próba przeanalizowania prawidłowych wartości CIDR z pliku „{0}”.",
+ "namedNetworkUploadInProgressTitle": "Analizowanie pliku „{0}”",
+ "namedNetworkUploadInvalidDescription": "Plik „{0}” jest zbyt duży lub ma nieprawidłowy format.",
+ "namedNetworkUploadInvalidTitle": "Plik „{0}” jest nieprawidłowy",
+ "namedNetworkUploadIpRange": "Przekaż",
+ "namedNetworkUploadSuccessDescription": "Przeanalizowane wiersze: {0}. Nieprawidłowy format: {1}. Pominięto: {2}.",
+ "namedNetworkUploadSuccessTitle": "Zakończono analizowanie pliku „{0}”",
+ "namedNetworksAdd": "Nowa nazwana lokalizacja",
+ "namedNetworksConditionHelpDescription": "Kontrola dostępu użytkownika na podstawie jego fizycznej lokalizacji.\n[Dowiedz się więcej][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
+ "namedNetworksExcludeLabel": "Wykluczono {0} i {1}",
+ "namedNetworksHelpDescription": "Nazwane lokalizacje są używane w raportach zabezpieczeń usługi Azure AD, aby zredukować liczbę wyników fałszywie dodatnich i zasad dostępu warunkowego usługi Microsoft Azure Active Directory.\n[Dowiedz się więcej][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
+ "namedNetworksIncludeLabel": "Włączono: {0}",
+ "namedNetworksNone": "Nie odnaleziono żadnej nazwanej lokalizacji.",
+ "namedNetworksTitle": "Skonfiguruj lokalizacje",
+ "namednetworkExceedingSizeErrorBladeTitle": "Szczegóły błędu",
+ "namednetworkExceedingSizeErrorDetailText": "Kliknij tutaj, aby uzyskać więcej informacji.",
+ "namednetworkExceedingSizeErrorMessage": "Przekroczono maksymalny dozwolony rozmiar magazynu dla nazwanych lokalizacji. Spróbuj ponownie, używając krótszej listy. Kliknij tutaj, aby wyświetlić więcej szczegółów.",
+ "needMfaSecondary": "Gdy opcja „Częstotliwość logowania za każdym razem” jest wybierana wraz z opcją „Tylko pomocnicze metody uwierzytelniania”, należy wybrać opcję „Wymagaj uwierzytelniania wieloskładnikowego”",
+ "newCertName": "nowy certyfikat",
+ "noAttributePermissionsError": "Niewystarczające uprawnienia do tworzenia lub aktualizowania zasad. Do dodawania/edytowania filtrów dynamicznych wymagana jest rola czytnika definicji atrybutów.",
+ "noPolicyRowMessage": "Brak zasad",
+ "noSPSelected": "Nie wybrano jednostki usługi",
+ "noUpdatePermissionMessage": "Nie masz uprawnień do aktualizowania tych ustawień. Skontaktuj się z administratorem globalnym, aby uzyskać dostęp.",
+ "noUserSelected": "Nie wybrano żadnego użytkownika",
+ "noneRisk": "Nie ma ryzyka",
+ "office365Description": "Te aplikacje to między innymi Microsoft Flow, Microsoft Forms, Microsoft Teams, Office 365 Exchange Online, Office 365 SharePoint Online i Office 365 Yammer.",
+ "office365InfoBox": "Co najmniej jedna z wybranych aplikacji jest częścią usługi Office 365. Zalecamy ustawienie zasad w aplikacji Office 365.",
+ "oneUserSelected": "Wybrano jednego użytkownika",
+ "onlyGlobalAdminsCanSaveThisPolicyConfig": "Tylko administratorzy globalni mogą zapisać te zasady.",
+ "or": "{0} LUB {1}",
+ "pickerDoneCommand": "Gotowe",
+ "policiesBladeAdPremiumUpsellBannerText": "Twórz własne zasady i określaj konkretne warunki docelowe, takie jak aplikacje w chmurze, ryzyko związane z logowaniem i platformy urządzeń, za pomocą usługi Azure AD — wersja Premium",
+ "policiesBladeTitle": "Zasady",
+ "policiesBladeTitleWithAppName": "Zasady: {0}",
+ "policiesDisabledBannerText": "Tworzenie i edytowanie zasad jest zabronione w przypadku aplikacji z atrybutem połączonego logowania.",
+ "policiesHitMaxLimitStatusBarMessage": "Osiągnięto maksymalną liczbę zasad dla tej dzierżawy. Usuń zasady przed utworzeniem nowych.",
+ "policyAssignmentsSection": "Przypisania",
+ "policyBlockAllInfoBox": "Skonfigurowane zasady zablokują wszystkich użytkowników, więc nie są one obsługiwane. Przejrzyj przypisania i kontrolki. Jeśli chcesz zapisać te zasady, wyklucz bieżącego użytkownika {0}.",
+ "policyCloudAppsDisplayTextAllApp": "Wszystkie aplikacje",
+ "policyCloudAppsLabel": "Aplikacje w chmurze",
+ "policyConditionClientAppDescription": "Oprogramowanie używane przez użytkownika do uzyskania dostępu do aplikacji w chmurze. Przykład: „przeglądarka”",
+ "policyConditionClientAppV2Description": "Oprogramowanie używane przez użytkownika do uzyskania dostępu do aplikacji w chmurze. Przykład: „przeglądarka”",
+ "policyConditionDevicePlatform": "Platformy urządzeń",
+ "policyConditionDevicePlatformDescription": "Platforma, z której loguje się użytkownik. Przykład: „iOS”",
+ "policyConditionLocation": "Lokalizacje",
+ "policyConditionLocationDescription": "Lokalizacja (ustalana podstawie zakresu adresów IP), z której loguje się użytkownik",
+ "policyConditionSigninRisk": "Ryzyko logowania",
+ "policyConditionSigninRiskDescription": "Prawdopodobieństwo, że loguje się ktoś inny niż użytkownik. Poziom ryzyka może być wysoki, średni lub niski. Wymaga licencji usługi Azure AD Premium 2.",
+ "policyConditionUserRisk": "Ryzyko związane z użytkownikiem",
+ "policyConditionUserRiskDescription": "Konfigurowanie poziomów ryzyka związanego z użytkownikiem potrzebnych do wymuszania zasad",
+ "policyConditioniClientApp": "Aplikacje klienckie",
+ "policyConditioniClientAppV2": "Aplikacje klienckie (wersja zapoznawcza)",
+ "policyControlAllowAccessDisplayedName": "Przyznaj dostęp",
+ "policyControlAuthenticationStrengthDisplayedName": "Wymagaj siły uwierzytelniania (wersja zapoznawcza)",
+ "policyControlBladeTitle": "Udziel",
+ "policyControlBlockAccessDisplayedName": "Blokuj dostęp",
+ "policyControlCompliantDeviceDisplayedName": "Wymagaj, aby urządzenie było oznaczone jako zgodne",
+ "policyControlContentDescription": "Kontroluj wymuszanie dostępu, aby udzielać dostępu lub go blokować.",
+ "policyControlInfoBallonText": "Zablokuj dostęp lub wybierz dodatkowe wymagania, które będą musiały zostać spełnione, aby uzyskać zezwolenie na dostęp",
+ "policyControlMfaChallengeDisplayedName": "Wymagaj uwierzytelniania wieloskładnikowego",
+ "policyControlRequireCompliantAppDisplayedName": "Wymagaj zasad ochrony aplikacji",
+ "policyControlRequireDomainJoinedDisplayedName": "Wymagaj urządzenia przyłączonego hybrydowo do usługi Azure AD",
+ "policyControlRequireMamDisplayedName": "Wymagaj zatwierdzonej aplikacji klienckiej",
+ "policyControlRequiredPasswordChangeDisplayedName": "Wymagaj zmiany hasła",
+ "policyControlSelectAuthStrength": "Wymagaj siły uwierzytelniania",
+ "policyControlsNoControlsSelected": "Nie wybrano żadnej kontrolki",
+ "policyControlsSection": "Kontrole dostępu",
+ "policyCreatBladeTitle": "Nowy",
+ "policyCreateButton": "Utwórz",
+ "policyCreateFailedMessage": "Błąd: {0}",
+ "policyCreateFailedTitle": "Nie można utworzyć zasad „{0}”",
+ "policyCreateInProgressTitle": "Tworzenie sieci „{0}”",
+ "policyCreateSuccessMessage": "Pomyślnie utworzono zasady „{0}”. Zasady zostaną włączone w ciągu kilku minut, jeśli opcja „Włącz zasady” została ustawiona na „Wł.”.",
+ "policyCreateSuccessTitle": "Pomyślnie utworzono zasady „{0}”",
+ "policyDeleteConfirmation": "Czy na pewno chcesz usunąć „{0}”? Tej akcji nie można cofnąć.",
+ "policyDeleteFailTitle": "Nie można usunąć znakowania „{0}”",
+ "policyDeleteInProgressTitle": "Usuwanie znakowania „{0}”",
+ "policyDeleteSuccessTitle": "Pomyślnie usunięto znakowanie „{0}”",
+ "policyEnforceLabel": "Włącz zasady",
+ "policyErrorCannotSetSigninRisk": "Nie masz uprawnienia do zapisania zasad z warunkiem ryzyka logowania.",
+ "policyErrorNoPermission": "Nie masz uprawnień do zapisywania zasad. Skontaktuj się z administratorem globalnym.",
+ "policyErrorUnknown": "Wystąpił błąd, spróbuj ponownie później.",
+ "policyFallbackWarningMessage": "Nie można utworzyć lub zaktualizować zasad „{0}” przy użyciu funkcji MS Graph, co spowodowało rezerwowe użycie funkcji AD Graph. Zbadaj następujący scenariusz, ponieważ prawdopodobnie występuje błąd podczas wywoływania punktu końcowego zasad dla funkcji MS Graph z niezgodnym warunkiem.",
+ "policyFallbackWarningTitle": "Tworzenie lub aktualizowanie zasad „{0}” powiodło się częściowo",
+ "policyNameCannotBeEmpty": "Nazwa zasad nie może być pusta",
+ "policyNameDevice": "Zasady urządzeń",
+ "policyNameFormat": "[{0}] {1}",
+ "policyNameMam": "Zasady zarządzania aplikacjami mobilnymi",
+ "policyNameMfaLocation": "Zasady usługi MFA i lokalizacji",
+ "policyNamePlaceholderText": "Przykład: „zasady aplikacji dotyczące zgodności urządzeń”",
+ "policyNameTooLongError": "Nazwa zasad jest za długa. Maksymalna długość to 256 znaków",
+ "policyOff": "Wyłączone",
+ "policyOn": "Włączone",
+ "policyReportOnly": "Sam raport",
+ "policyReviewSection": "Przegląd",
+ "policySaveButton": "Zapisz",
+ "policyStatusIconDescription": "Zasady są włączone",
+ "policyStatusIconEnabled": "Włączona ikona stanu",
+ "policyTemplateName1": "Użyj wymuszonych ograniczeń aplikacji {0} w przypadku dostępu w przeglądarce",
+ "policyTemplateName2": "Zezwalaj na dostęp do aplikacji {0} tylko na urządzeniach zarządzanych",
+ "policyTemplateName3": "Zasady zmigrowane z ustawień ciągłej oceny dostępu",
+ "policyTriggerRiskSpecific": "Wybierz określony poziom ryzyka",
+ "policyTriggersInfoBalloonText": "Warunki definiujące, kiedy zasady zostaną zastosowane. Przykład: „lokalizacja”",
+ "policyTriggersNoConditionsSelected": "Nie wybrano żadnych warunków",
+ "policyTriggersSelectorLabel": "Warunki",
+ "policyUpdateFailedMessage": "Błąd: {0}",
+ "policyUpdateFailedTitle": "Nie można zaktualizować elementu {0}",
+ "policyUpdateInProgressTitle": "Aktualizowanie elementu {0}",
+ "policyUpdateSuccessMessage": "Pomyślnie zaktualizowano element {0}. Zasady zostaną włączone w ciągu kilku minut, jeśli opcja „Włącz zasady” jest ustawiona na „Wł.”.",
+ "policyUpdateSuccessTitle": "Pomyślnie zaktualizowano element {0}",
+ "primaryCol": "Podstawowe",
+ "privateLinkLabel": "Azure AD Private Link",
+ "reportOnlyInfoBox": "Tryb samego raportowania: zasady są oceniane i rejestrowane przy logowaniu, ale nie mają wpływu na użytkowników.",
+ "requireAllControlsText": "Wymagaj wszystkich wybranych kontrolek",
+ "requireCompliantDevice": "Wymagaj zgodnego urządzenia",
+ "requireDomainJoined": "Wymagaj urządzenia przyłączonego do domeny",
+ "requireGrantReauth": "Kontrola sesji „częstotliwość logowania za każdym razem” wymaga ustawienia „wymagaj uwierzytelniania wieloskładnikowego” lub „wymagaj zmiany hasła” w przypadku wybrania opcji „Wszystkie aplikacje w chmurze”",
+ "requireMFA": "Wymagaj uwierzytelniania wieloskładnikowego",
+ "requireMfaReauth": "Kontrola sesji „częstotliwość logowania za każdym razem” wymaga kontroli przyznawania „wymagaj uwierzytelniania wieloskładnikowego” dla „ryzyka logowania”",
+ "requireOneControlText": "Wymagaj jednej z wybranych kontrolek",
+ "requirePasswordChangeReauth": "Kontrola sesji „częstotliwość logowania za każdym razem” wymaga kontroli nad udzielaniem „wymagaj zmiany hasła” dla „ryzyka związanego z użytkownikiem”",
+ "requireRiskReauth": "Kontrola sesji „częstotliwość logowania za każdym razem” wymaga kontroli sesji „ryzyko związane z użytkownikiem” lub „ryzyko logowania” po wybraniu opcji „wszystkie aplikacje w chmurze”.",
+ "resetFilters": "Resetuj filtry",
+ "sPRequired": "Wymagana jednostka usługi",
+ "sPSelectorInfoBalloon": "Użytkownik lub jednostka usługi, którą chcesz testować",
+ "saturday": "Sobota",
+ "searchTextTooLongError": "Wyszukiwany tekst jest za długi. Maksymalna liczba znaków to 256",
+ "securityDefaultsPolicyName": "Wartości domyślne zabezpieczeń",
+ "securityDefaultsTextMessage": "Wartości domyślne zabezpieczeń muszą być wyłączone, aby można było włączyć zasady dostępu warunkowego.",
+ "securityDefaultsWarningMessage": "Wygląda na to, że zamierzasz zarządzać konfiguracjami zabezpieczeń swojej organizacji. To świetnie! Przed włączeniem zasad dostępu warunkowego musisz najpierw wyłączyć wartości domyślne zabezpieczeń.",
+ "selectDevicePlatforms": "Wybierz platformy urządzeń",
+ "selectNamedNetworksSubtitle": "",
+ "selectNamedNetworksTitle": "Wybierz lokalizacje",
+ "selectedSP": "Wybrano jednostkę usługi",
+ "servicePrincipalDataGridAria": "Lista dostępnych jednostek usługi",
+ "servicePrincipalDropDownLabel": "Czego dotyczą te zasady?",
+ "servicePrincipalInfoBox": "Niektóre warunki są niedostępne z powodu wyboru elementu „{0}” w przypisaniu zasad",
+ "servicePrincipalRadioAll": "Wszystkie posiadane jednostki usługi",
+ "servicePrincipalRadioSelect": "Wybrane jednostki usługi",
+ "servicePrincipalSelectionsAria": "Siatka wybranych jednostek usługi",
+ "servicePrincipalSelectorAria": "Lista wybranych jednostek usługi",
+ "servicePrincipalSelectorMultiple": "Wybrane jednostki usługi: {0}",
+ "servicePrincipalSelectorSingle": "Wybrano 1 jednostkę usługi",
+ "servicePrincipalSpecificInc": "Uwzględnione określone jednostki usługi",
+ "servicePrincipals": "Jednostki usługi",
+ "sessionControlBladeTitle": "Sesja",
+ "sessionControlDescriptionContent": "Kontroluj dostęp na podstawie kontrolek sesji, aby umożliwić korzystanie z ograniczonych środowisk w ramach określonych aplikacji w chmurze.",
+ "sessionControlDisableInfo": "Ta kontrola działa tylko w przypadku obsługiwanych aplikacji. Obecnie usługi Office 365, Exchange Online i SharePoint Online to jedyne aplikacje w chmurze, które obsługują ograniczenia wymuszone przez aplikację. Kliknij tutaj, aby dowiedzieć się więcej.",
+ "sessionControlInfoBallonText": "Kontrolki sesji umożliwiają korzystanie z ograniczonego środowiska w ramach aplikacji w chmurze.",
+ "sessionControls": "Kontrole sesji",
+ "sessionControlsAppEnforcedLabel": "Użyj ograniczeń wymuszonych przez aplikację",
+ "sessionControlsCasLabel": "Użyj Kontroli dostępu warunkowego aplikacji",
+ "sessionControlsSecureSignInLabel": "Wymagaj powiązania tokena",
+ "sharepointAppName": "SharePoint",
+ "signinRiskDescription": "Wybierz poziom ryzyka związanego z logowaniem, do którego zostaną zastosowane te zasady",
+ "signinRiskInclude": "Włączono: {0}",
+ "signinRiskReauth": "Gdy wybrano udzielenie uprawnienia „Wymagaj uwierzytelniania wieloskładnikowego” i kontrolę sesji „częstotliwość logowania za każdym razem”, należy wybrać warunek „Ryzyko logowania”",
+ "signinRiskTriggerDescriptionContent": "Wybierz poziom ryzyka logowania",
+ "singleTenantServicePrincipalInfoBallonText": "Zasady mają zastosowanie tylko do pojedynczych jednostek usługi dzierżawy należących do Twojej organizacji. Kliknij tutaj, aby dowiedzieć się więcej ",
+ "specificSigninRiskLevelsOption": "Wybierz konkretne poziomy ryzyka logowania",
+ "specificUsersExcluded": "określeni użytkownicy wyłączeni",
+ "specificUsersIncluded": "Określeni użytkownicy uwzględnieni",
+ "specificUsersIncludedAndExcluded": "Określeni użytkownicy wykluczeni i włączeni",
+ "startDatePickerLabel": "Początek",
+ "startFreeTrial": "Zacznij korzystać z bezpłatnej wersji próbnej",
+ "startTimePickerLabel": "Godzina rozpoczęcia",
+ "sunday": "Niedziela",
+ "testButton": "What If",
+ "thumbprintCol": "Odcisk palca",
+ "thursday": "Czwartek",
+ "timeConditionAllTimesLabel": "W dowolnym czasie",
+ "timeConditionIntroText": "Konfiguruj czas, dla którego będą stosowane te zasady",
+ "timeConditionSelectorInfoBallonContent": "Kiedy użytkownik się loguje. Przykład: „Środa 9–17 UTC”",
+ "timeConditionSelectorLabel": "Czas (wersja zapoznawcza)",
+ "timeConditionSpecificLabel": "Określone przedziały czasu",
+ "timeSelectorAllTimesText": "W dowolnym czasie",
+ "timeSelectorSpecificTimesText": "Skonfigurowano określone czasy",
+ "timeZoneDropdownInfoBalloonContent": "Wybierz strefę czasową, która definiuje zakres czasu. Te zasady mają zastosowanie do użytkowników we wszystkich strefach czasowych. Na przykład zakres czasu „Środa 7-17” określony dla jednego użytkownika będzie oznaczać „Środa 10-18” dla użytkownika w innej strefie czasowej.",
+ "timeZoneDropdownLabel": "Strefa czasowa",
+ "timeZoneDropdownPlaceholderText": "Wybierz strefę czasową",
+ "tooManyPoliciesDescription": "Wyświetlanych jest teraz tylko 50 pierwszych zasad. Kliknij tutaj, aby wyświetlić wszystkie zasady",
+ "tooManyPoliciesTitle": "Znaleziono więcej niż 50 zasad",
+ "trustedLocationStatusIconDescription": "Lokalizacja jest zaufana",
+ "trustedLocationStatusIconEnabled": "Ikona stanu zaufania",
+ "tuesday": "Wtorek",
+ "uploadInBadState": "Nie można przekazać określonego pliku.",
+ "upsellAppsDescription": "Wymagaj uwierzytelniania wieloskładnikowego w przypadku poufnych aplikacji przez cały czas lub tylko w przypadku dostępu spoza sieci firmowej.",
+ "upsellAppsTitle": "Zabezpiecz aplikacje",
+ "upsellBannerText": "Uzyskaj bezpłatną wersję próbną usługi — wersja Premium, aby korzystać z tej funkcji",
+ "upsellDataDescription": "Wymagaj, aby urządzenie było oznaczone jako zgodne lub przyłączone hybrydowo do usługi Azure AD w celu umożliwienia dostępu do zasobów firmowych.",
+ "upsellDataTitle": "Zabezpiecz dane",
+ "upsellDescription": "Dostęp warunkowy zapewnia kontrolę i ochronę, dzięki którym dane korporacyjne są bezpieczne, a pracownicy mogą korzystać ze środowiska umożliwiającego najlepsze wykonywanie pracy z dowolnego urządzenia. Przykładowo możesz ograniczyć dostęp spoza sieci firmowej lub ograniczyć dostęp do urządzeń, które spełniają zasady zgodności.",
+ "upsellRiskDescription": "Wymagaj uwierzytelniania wieloskładnikowego w przypadku zdarzeń z ryzykiem wykrytych przez system uczenia maszynowego firmy Microsoft.",
+ "upsellRiskTitle": "Chroń przed ryzykiem",
+ "upsellTitle": "Dostęp warunkowy",
+ "upsellWhyTitle": "Dlaczego warto używać dostępu warunkowego?",
+ "userAppNoneOption": "Brak",
+ "userNamePlaceholderText": "Podaj nazwę użytkownika",
+ "userNotSetSeletorLabel": "Nie wybrano żadnego użytkownika ani grupy",
+ "userOnlySelectionBladeExcludeDescription": "Wybierz użytkowników, wobec których zostanie zastosowane wykluczenie z zasad",
+ "userOrGroupSelectionCountDiffBannerText": "Z katalogu usunięto elementy ({0}) skonfigurowane w ramach tych zasad, ale nie ma to wpływu na innych użytkowników i inne grupy. Przy następnej aktualizacji nastąpi usunięcie usuniętych użytkowników i usuniętych grup.",
+ "userOrSPNotSetSelectorLabel": "Wybrano 0 tożsamości użytkowników lub obciążeń",
+ "userOrSPSelectionBladeTitle": "Tożsamości użytkowników lub obciążeń",
+ "userOrSPSelectorInfoBallonText": "Tożsamości w katalogu, do których stosują się te zasady, w tym użytkownicy, grupy i jednostki usług",
+ "userRequired": "Wymagane przez użytkownika",
+ "userRiskErrorBox": "Warunek „Ryzyko związane z użytkownikiem” musi być wybrany, jeśli wybrano udzielenie „Wymagaj zmiany hasła”",
+ "userRiskReauth": "Warunek „Ryzyko związane z użytkownikiem”, a nie „Ryzyko logowania”, musi być wybrany, gdy jest wybrane udzielenie uprawnienia „Wymagaj zmiany hasła” i kontrola sesji „Częstotliwość logowania za każdym razem”",
+ "userSPRequired": "Wymagany użytkownik lub jednostka usługi",
+ "userSPSelectorTitle": "Tożsamość użytkownika lub obciążenia",
+ "userSelectionBladeAllUsersAndGroups": "Wszyscy użytkownicy i wszystkie grupy",
+ "userSelectionBladeExcludeDescription": "Wybierz użytkowników i grupy, wobec których zostanie zastosowane wykluczenie z zasad",
+ "userSelectionBladeExcludeTabTitle": "Wyklucz",
+ "userSelectionBladeExcludedSelectorTitle": "Wybierz wykluczonych użytkowników",
+ "userSelectionBladeIncludeDescription": "Wybierz użytkowników, dla których będą stosowane te zasady",
+ "userSelectionBladeIncludeTabTitle": "Uwzględnij",
+ "userSelectionBladeIncludedSelectorTitle": "Wybierz",
+ "userSelectionBladeSelectUsers": "Wybierz użytkowników",
+ "userSelectionBladeSelectedUsers": "Wybieranie użytkowników i grup",
+ "userSelectionBladeTitle": "Użytkownicy i grupy",
+ "userSelectorBladeTitle": "Użytkownicy",
+ "userSelectorExcluded": "Wyłączono: {0}",
+ "userSelectorGroupPlural": "Grupy: {0} ",
+ "userSelectorGroupSingular": "1 grupa",
+ "userSelectorIncluded": "Włączono: {0}",
+ "userSelectorInfoBallonText": "Użytkownicy i grupy w katalogu, wobec których zostaną zastosowane zasady. Przykład: „grupa pilotażowa”",
+ "userSelectorSelected": "Wybrano: {0}",
+ "userSelectorTitle": "Użytkownik",
+ "userSelectorUserAndGroup": "{0}, {1}",
+ "userSelectorUserPlural": "Użytkownicy: {0}",
+ "userSelectorUserSingular": "1 użytkownik",
+ "userSelectorWithExclusion": "{0} i {1}",
+ "usersGroupsLabel": "Użytkownicy i grupy",
+ "viewApprovedAppsText": "Zobacz listę zatwierdzonych aplikacji klienckich",
+ "viewCompliantAppsText": "Zobacz listę aplikacji klienckich chronionych przez zasady",
+ "vpnBladeTitle": "Łączność sieci VPN",
+ "vpnCertCreateFailedMessage": "Błąd: {0}",
+ "vpnCertCreateFailedTitle": "Nie można utworzyć zasad {0}",
+ "vpnCertCreateInProgressTitle": "Tworzenie zasobu {0}",
+ "vpnCertCreateSuccessMessage": "Pomyślnie utworzono: {0}.",
+ "vpnCertCreateSuccessTitle": "Pomyślnie utworzono: {0}",
+ "vpnCertNoRowsMessage": "Nie znaleziono certyfikatów sieci VPN",
+ "vpnCertUpdateFailedMessage": "Błąd: {0}",
+ "vpnCertUpdateFailedTitle": "Nie można zaktualizować elementu {0}",
+ "vpnCertUpdateInProgressTitle": "Aktualizowanie elementu {0}",
+ "vpnCertUpdateSuccessMessage": "Pomyślnie zaktualizowano: {0}.",
+ "vpnCertUpdateSuccessTitle": "Pomyślnie zaktualizowano element {0}",
+ "vpnFeatureInfo": "Aby uzyskać więcej informacji o łączności sieci VPN i dostępie warunkowym, kliknij tutaj.",
+ "vpnFeatureWarning": "Po utworzeniu certyfikatu sieci VPN w witrynie Azure Portal usługa Azure AD natychmiast rozpocznie jego używanie w celu wystawiania klientowi sieci VPN certyfikatów o krótkim okresie istnienia. Bardzo ważne jest natychmiastowe wdrożenie certyfikatu sieci VPN na serwerze sieci VPN, aby uniknąć problemów z weryfikacją poświadczeń klienta sieci VPN.",
+ "vpnMenuText": "Łączność sieci VPN",
+ "vpncertDropdownDefaultOption": "Czas trwania",
+ "vpncertDropdownInfoBalloonContent": "Wybierz czas trwania certyfikatu, który chcesz utworzyć",
+ "vpncertDropdownLabel": "Wybierz czas trwania",
+ "vpncertDropdownOneyearOption": "1 rok",
+ "vpncertDropdownThreeyearOption": "3 lata",
+ "vpncertDropdownTwoyearOption": "2 lata",
+ "wednesday": "Środa",
+ "whatIfAppEnforcedControl": "Użyj ograniczeń wymuszonych przez aplikację",
+ "whatIfBladeDescription": "Przetestuj wpływ dostępu warunkowego na użytkownika w przypadku logowania w określonych warunkach.",
+ "whatIfBladeTitle": "What If",
+ "whatIfClassicPoliciesWarning": "Zasady klasyczne nie są oceniane przez to narzędzie.",
+ "whatIfClientAppInfo": "Aplikacja kliencka, z której użytkownik się loguje. Na przykład „Przeglądarka”.",
+ "whatIfCountry": "Kraj",
+ "whatIfCountryInfo": "Kraj, z której loguje się użytkownik.",
+ "whatIfDevicePlatformInfo": "Platforma urządzeń, z której loguje się użytkownik.",
+ "whatIfDeviceStateInfo": "Stan urządzenia, z którego loguje się użytkownik",
+ "whatIfEnterIpAddress": "Wprowadź adres IP (np. 40.77.182.32)",
+ "whatIfErrorInvalidIpAddress": "Określono nieprawidłowy adres IP.",
+ "whatIfEvaResultApplication": "Aplikacje w chmurze",
+ "whatIfEvaResultClientApps": "Aplikacja kliencka",
+ "whatIfEvaResultDevicePlatform": "Platforma urządzeń",
+ "whatIfEvaResultEmptyPolicy": "Puste zasady",
+ "whatIfEvaResultInvalidCondition": "Nieprawidłowy warunek",
+ "whatIfEvaResultInvalidPolicy": "Nieprawidłowe zasady",
+ "whatIfEvaResultLocation": "Lokalizacja",
+ "whatIfEvaResultNotEnoughInformation": "Za mało informacji",
+ "whatIfEvaResultPolicyNotEnabled": "Nie włączono zasad",
+ "whatIfEvaResultSignInRisk": "Ryzyko logowania",
+ "whatIfEvaResultUsers": "Użytkownicy i grupy",
+ "whatIfIpAddress": "Adres IP",
+ "whatIfIpAddressInfo": "Adres IP, z której loguje się użytkownik.",
+ "whatIfIpCountryInfoBoxText": "W przypadku używania adresu IP lub kraju oba pola będą wymagane i powinny być poprawnie mapowane na siebie.",
+ "whatIfPolicyAppliesTab": "Zasady, które będą miały zastosowanie",
+ "whatIfPolicyDoesNotApplyTab": "Zasady, które nie będą miały zastosowania",
+ "whatIfReasons": "Przyczyny braku zastosowania tych zasad",
+ "whatIfSelectClientApp": "Wybierz aplikację kliencką...",
+ "whatIfSelectCountry": "Wybierz kraj...",
+ "whatIfSelectDevicePlatform": "Wybierz platformę urządzenia...",
+ "whatIfSelectPrivateLink": "Wybierz łącze prywatne...",
+ "whatIfSelectServicePrincipalRisk": "Wybierz ryzyko jednostki usługi...",
+ "whatIfSelectSignInRisk": "Wybierz ryzyko logowania...",
+ "whatIfSelectType": "Wybierz typ tożsamości",
+ "whatIfSelectUserRisk": "Wybierz poziom ryzyka związanego z użytkownikiem...",
+ "whatIfServicePrincipalRiskInfo": "Poziom ryzyka skojarzony z jednostką usługi",
+ "whatIfSignInRisk": "Ryzyko logowania",
+ "whatIfSignInRiskInfo": "Poziom ryzyka skojarzony z logowaniem",
+ "whatIfUnknownAreas": "Nieznane obszary",
+ "whatIfUserPickerLabel": "Wybrany użytkownik",
+ "whatIfUserPickerNoRowsLabel": "Nie wybrano użytkownika ani jednostki usługi",
+ "whatIfUserRiskInfo": "Poziom ryzyka skojarzony z użytkownikiem",
+ "whatIfUserSelectorInfo": "Użytkownik w katalogu, który chcesz przetestować",
+ "windows365InfoBox": "Wybranie systemu Windows 365 wpłynie na połączenia z hostami sesji komputerów w chmurze oraz usługi Azure Virtual Desktop. Kliknij tutaj, aby dowiedzieć się więcej.",
+ "windowsDisplayName": "Windows",
+ "windowsPhoneDisplayName": "Windows Phone",
+ "workloadIdentities": "Tożsamości obciążeń (wersja zapoznawcza)",
+ "workloadIdentity": "Tożsamość obciążeń"
+ },
+ "AppResources": {
+ "AppSettingsUx": {
+ "assignmentFilterColumnHeader": "Filtruj",
+ "assignmentFilterTypeColumnHeader": "Tryb filtru",
+ "assignmentToast": "Powiadomienia użytkownika końcowego",
+ "assignmentTypeTableHeader": "TYP PRZYPISANIA",
+ "deadlineTimeColumnLabel": "Ostateczny termin instalacji",
+ "deliveryOptimizationPriorityHeader": "Priorytet optymalizacji dostarczania",
+ "groupTableHeader": "Grupa",
+ "installContextLabel": "Kontekst instalacji",
+ "isRemovable": "Zainstaluj jako wymienne",
+ "licenseTypeLabel": "Typ licencji",
+ "modeTableHeader": "Tryb grupy",
+ "policySet": "Zestaw zasad",
+ "restartGracePeriodHeader": "Okres prolongaty ponownego uruchomienia",
+ "startTimeColumnLabel": "Dostępność",
+ "tracks": "Ścieżki",
+ "uninstallOnRemoval": "Odinstaluj podczas usuwania urządzenia",
+ "updateMode": "Aktualizuj priorytet",
+ "vPN": "Sieć VPN"
+ },
+ "AppType": {
+ "aADWebApp": "Aplikacja internetowa usługi AAD",
+ "androidEnterpriseSystemApp": "Aplikacja systemu Android Enterprise",
+ "androidForWorkApp": "Aplikacja zarządzanego sklepu Google Play",
+ "androidLobApp": "Aplikacja biznesowa dla systemu Android",
+ "androidStoreApp": "Aplikacja w sklepie dla systemu Android",
+ "builtInAndroid": "Wbudowana aplikacja systemu Android",
+ "builtInApp": "Aplikacja wbudowana",
+ "builtInIos": "Wbudowana aplikacja systemu iOS",
+ "iosLobApp": "Aplikacja biznesowa dla systemu iOS",
+ "iosStoreApp": "Aplikacja w sklepie dla systemu iOS",
+ "iosVppApp": "Aplikacja nabyta w programie zakupów zbiorczych dla systemu iOS",
+ "lineOfBusinessApp": "Aplikacja biznesowa",
+ "macOSDmgApp": "macOS app (DMG)",
+ "macOSEdgeApp": "Microsoft Edge (macOS)",
+ "macOSLobApp": "Aplikacja biznesowa systemu macOS",
+ "macOSMdatpApp": "Microsoft Defender ATP (macOS)",
+ "macOSOfficeSuiteApp": "Pakiet Office dla systemu macOS",
+ "macOsVppApp": "Aplikacja nabyta w programie zakupów zbiorczych dla systemu macOS",
+ "managedAndroidLobApp": "Zarządzana aplikacja biznesowa dla systemu Android",
+ "managedAndroidStoreApp": "Zarządzana aplikacja w sklepie dla systemu Android",
+ "managedGooglePlayApp": "Aplikacja zarządzanego sklepu Google Play",
+ "managedGooglePlayPrivateApp": "Prywatna aplikacja zarządzanej usługi Google Play",
+ "managedGooglePlayWebApp": "Link internetowy do zarządzanej usługi Google Play",
+ "managedIosLobApp": "Zarządzana aplikacja biznesowa dla systemu iOS",
+ "managedIosStoreApp": "Zarządzana aplikacja w sklepie dla systemu iOS",
+ "microsoftStoreForBusinessApp": "Aplikacja ze sklepu Microsoft Store dla Firm",
+ "microsoftStoreForBusinessReleaseManagedApp": "Microsoft Store dla Firm",
+ "officeAddIn": "Dodatek pakietu Office",
+ "officeSuiteApp": "Aplikacje Microsoft 365 (Windows 10 i nowszy)",
+ "sharePointApp": "Aplikacja programu SharePoint",
+ "teamsApp": "Aplikacja Teams",
+ "webApp": "Link sieci Web",
+ "windowsAppXLobApp": "Aplikacja biznesowa AppX systemu Windows",
+ "windowsClassicApp": "Aplikacja systemu Windows (Win32)",
+ "windowsEdgeApp": "Microsoft Edge (system Windows 10 i nowszy)",
+ "windowsMobileMsiLobApp": "Aplikacja biznesowa MSI systemu Windows",
+ "windowsPhone81AppXBundleLobApp": "Aplikacja biznesowa AppX systemu Windows Phone 8.1",
+ "windowsPhone81AppXLobApp": "Aplikacja biznesowa AppX systemu Windows Phone 8.1",
+ "windowsPhone81StoreApp": "Aplikacja ze Sklepu Windows Phone 8.1",
+ "windowsPhoneXapLobApp": "Aplikacja biznesowa XAP systemu Windows Phone",
+ "windowsStoreApp": "Aplikacja ze sklepu Microsoft Store",
+ "windowsUniversalAppXLobApp": "Uniwersalna aplikacja biznesowa AppX systemu Windows",
+ "windowsUniversalLobApp": "Uniwersalna aplikacja biznesowa systemu Windows"
+ },
+ "AppTypePlatform": {
+ "android": "Android",
+ "ios": "iOS",
+ "macOs": "macOS",
+ "web": "Sieć Web",
+ "windows": "Windows"
+ },
+ "AssignmentAction": {
+ "exclude": "Wykluczone",
+ "include": "Dołączone",
+ "includeAllDevicesVirtualGroup": "Dołączone",
+ "includeAllUsersVirtualGroup": "Dołączone"
+ },
+ "AssignmentToast": {
+ "hideAll": "Ukryj wszystkie wyskakujące powiadomienia",
+ "showAll": "Pokaż wszystkie wyskakujące powiadomienia",
+ "showReboot": "Pokaż wyskakujące powiadomienia dotyczące ponownego uruchomienia komputera"
+ },
+ "DeliveryOptimizationPriority": {
+ "backgroundNormal": "Tło",
+ "displayText": "Pobieranie zawartości za {0}",
+ "foreground": "Pierwszy plan",
+ "header": "Priorytet optymalizacji dostarczania"
+ },
+ "DeviceRestartBehaviorOptions": {
+ "allow": "Instalacja aplikacji może wymusić ponowne uruchomienie urządzenia",
+ "basedOnReturnCode": "Określ zachowanie na podstawie kodów powrotnych",
+ "force": "Usługa Intune wymusi obowiązkowe ponowne uruchomienie urządzenia",
+ "suppress": "Brak określonej akcji"
+ },
+ "FilterType": {
+ "exclude": "Wyklucz",
+ "include": "Dołącz",
+ "none": "Brak"
+ },
+ "InstallIntent": {
+ "available": "Dostępne dla zarejestrowanych urządzeń",
+ "availableWithoutEnrollment": "Dostępne z rejestracją lub bez niej",
+ "notApplicable": "Nie dotyczy",
+ "required": "Wymagane",
+ "uninstall": "Odinstaluj"
+ },
+ "SettingType": {
+ "assignmentType": "Typ przypisania",
+ "deviceLicensing": "Typ licencji",
+ "installContext": "Odinstaluj podczas usuwania urządzenia",
+ "toastSettings": "Powiadomienia użytkownika końcowego",
+ "vpnConfiguration": "Sieć VPN"
+ },
+ "UpdateMode": {
+ "default": "Domyślny",
+ "postponed": "Odłożone",
+ "priority": "Wysoki priorytet"
+ }
+ },
+ "WindowsEnrollment": {
+ "coManagementAuthorityDesc": "Konfiguruj ustawienia współzarządzania na potrzeby integracji z programem Configuration Manager",
+ "coManagementAuthorityTitle": "Ustawienia współzarządzania ",
+ "deploymentProfiles": "Profile wdrażania rozwiązania Windows Autopilot",
+ "description": "Poznaj siedem różnych sposobów rejestrowania komputera z systemem Windows 10/11 w usłudze Intune przez użytkowników lub administratorów.",
+ "descriptionLabel": "Metody rejestracji w systemie Windows",
+ "enrollmentStatusPage": "Strona ze stanem rejestracji"
+ },
+ "Win32Program": {
+ "DeviceRestartBehaviorOptions": {
+ "allow": "Instalacja aplikacji może wymusić ponowne uruchomienie urządzenia",
+ "basedOnReturnCode": "Określ zachowanie na podstawie kodów powrotnych",
+ "force": "Usługa Intune wymusi obowiązkowe ponowne uruchomienie urządzenia",
+ "suppress": "Brak określonej czynności"
+ },
+ "RunAsAccountOptions": {
+ "system": "System",
+ "user": "Użytkownik"
+ },
+ "bladeTitle": "Program",
+ "deviceRestartBehavior": "Zachowanie ponownego uruchamiania urządzenia",
+ "deviceRestartBehaviorTooltip": "Wybierz zachowanie ponownego uruchomienia urządzenia po pomyślnej instalacji aplikacji. Wybierz pozycję „Określ zachowanie na podstawie kodów powrotnych”, aby ponownie uruchomić urządzenie na podstawie ustawień konfiguracji kodów powrotnych. Wybierz pozycję „Brak określonej czynności”, aby pominąć ponowne uruchomienie urządzenia podczas instalacji aplikacji korzystającej z instalatora MSI. Wybierz pozycję „Instalacja aplikacji może wymusić ponowne uruchomienie urządzenia”, aby zezwolić na ukończenie instalacji aplikacji bez pomijania ponownego uruchamiania. Wybierz pozycję „Usługa Intune wymusi obowiązkowe ponowne uruchomienie urządzenia”, aby zawsze ponownie uruchamiać urządzenie po pomyślnej instalacji aplikacji.",
+ "header": "Określ polecenia do instalowania i odinstalowywania tej aplikacji:",
+ "installCommand": "Polecenie instalacji",
+ "installCommandMaxLengthErrorMessage": "Polecenie instalacji nie może przekraczać maksymalnej dozwolonej długości równej 1024 znaki.",
+ "installCommandTooltip": "Pełny wiersz polecenia instalacji służący do zainstalowania tej aplikacji.",
+ "runAs32Bit": "Uruchom polecenia instalacji i odinstalowywania w procesie 32-bitowym na klientach 64-bitowych",
+ "runAs32BitTooltip": "Wybierz opcję „Tak”, aby instalować i odinstalowywać aplikację w procesie 32-bitowym na klientach 64-bitowych. Wybierz opcję „Nie” (domyślna), aby instalować i odinstalowywać aplikację w procesie 64-bitowym na klientach 64-bitowych. Klienci 32-bitowi będą zawsze korzystać z procesu 32-bitowego.",
+ "runAsAccount": "Zachowanie podczas instalowania",
+ "runAsAccountTooltip": "Wybierz pozycję „System”, aby zainstalować tę aplikację dla wszystkich użytkowników, jeśli jest to obsługiwane. Wybierz pozycję „Użytkownik”, aby zainstalować tę aplikację dla użytkownika zalogowanego na urządzeniu. W przypadku aplikacji MSI o podwójnym przeznaczeniu zmiany uniemożliwią pomyślne zakończenie aktualizacji i dezinstalacji, dopóki nie zostanie przywrócona wartość zastosowana do urządzenia w trakcie pierwotnej instalacji.",
+ "selectorLabel": "Program",
+ "uninstallCommand": "Polecenie odinstalowywania",
+ "uninstallCommandTooltip": "Pełny wiersz polecenia odinstalowywania służący do odinstalowania tej aplikacji."
+ },
+ "CategoryDescription": {
+ "androidGeneralApplicationRestrictions": "Te ustawienia służą do uzyskiwania informacji o użytkownikach instalujących aplikacje, które nie zostały zatwierdzone do użycia w firmie. Wybierz typ listy ograniczonych aplikacji:
\r\n Aplikacje zabronione — otrzymasz powiadomienie, jeśli jakiś użytkownik zainstaluje aplikację z tej listy.
\r\n Zatwierdzone aplikacje — lista aplikacji, które zostały zatwierdzone do użycia w firmie. Otrzymasz powiadomienie, jeśli jakiś użytkownik zainstaluje aplikację spoza tej listy.
\r\n ",
+ "androidZebraMxZebraMx": "Konfiguruj urządzenia Zebra, przekazując profil MX w formacie XML.",
+ "iosDeviceFeaturesAirprint": "Użyj tych ustawień do skonfigurowania urządzeń z systemem iOS, aby automatycznie nawiązywały połączenie z drukarkami obsługującymi funkcję AirPrint w sieci. Wymagane będą adresy IP i ścieżki zasobów drukarek.",
+ "iosDeviceFeaturesExtensibleSingleSignOn": "Skonfiguruj rozszerzenie aplikacji, które umożliwia logowanie jednokrotne dla urządzeń z systemem iOS 13.0 lub nowszym.",
+ "iosDeviceFeaturesHomeScreenLayout": "Skonfiguruj układ Docka i ekranów głównych na urządzeniach z systemem iOS. Niektóre urządzenia mogą mieć ograniczenia liczby wyświetlanych elementów.",
+ "iosDeviceFeaturesIOSWallpaper": "Wyświetl obraz widoczny na ekranie głównym i/lub na ekranie blokady urządzeń z systemem iOS.\r\n Aby wyświetlać unikatowy obraz w każdym z tych miejsc, utwórz profil z obrazem dla ekranu blokady oraz profil z obrazem dla ekranu głównego.\r\n Następnie przypisz oba profile użytkownikom.\r\n
\r\n \r\n - Maksymalny rozmiar pliku: 750 KB
\r\n - Typ pliku: PNG, JPG lub JPEG
\r\n
\r\n ",
+ "iosDeviceFeaturesNotifications": "Określ ustawienia powiadomień dla aplikacji. Obsługuje system iOS 9.3 i nowsze.",
+ "iosDeviceFeaturesSharedDevice": "Określ opcjonalny tekst wyświetlany na zablokowanym ekranie. Jest on obsługiwany w systemie iOS 9.3 i nowszych. Dowiedz się więcej",
+ "iosGeneralApplicationRestrictions": "Te ustawienia służą do uzyskiwania informacji o użytkownikach instalujących aplikacje, które nie zostały zatwierdzone do użycia w firmie. Wybierz typ listy ograniczonych aplikacji:
\r\n Aplikacje zabronione — otrzymasz powiadomienie, jeśli jakiś użytkownik zainstaluje aplikację z tej listy.
\r\n Zatwierdzone aplikacje — lista aplikacji, które zostały zatwierdzone do użycia w firmie. Otrzymasz powiadomienie, jeśli jakiś użytkownik zainstaluje aplikację spoza tej listy.
\r\n ",
+ "iosGeneralApplicationVisibility": "Użyj listy pokazywanych aplikacji, aby określić aplikacje dla systemu iOS, które mogą być wyświetlane lub uruchamiane przez użytkownika. Użyj listy ukrytych aplikacji, aby określić aplikacje dla systemu iOS, które nie mogą być wyświetlane ani uruchamiane przez użytkownika.",
+ "iosGeneralAutonomousSingleAppMode": "Aplikacje dodane do tej listy i przypisane do urządzenia mogą blokować urządzenie w celu przetwarzania tylko tej aplikacji po jej uruchomieniu lub blokować urządzenie podczas wykonywania określonej akcji (na przykład rozwiązywania testu). Po wykonaniu akcji lub usunięciu ograniczenia urządzenie powraca do normalnego stanu.",
+ "iosGeneralKiosk": "Tryb kiosku blokuje różne ustawienia urządzenia lub określa pojedynczą aplikację, którą można uruchomić na urządzeniu. Może to być przydatne w środowiskach, takich jak sklep, w którym na urządzeniu ma być uruchamiana tylko jedna aplikacja demonstracyjna.",
+ "macDeviceFeaturesAirprint": "Użyj tych ustawień do skonfigurowania urządzeń z systemem macOS w celu automatycznego nawiązywania połączenia ze zgodnymi drukarkami AirPrint znajdującymi się w sieci. Konieczna będzie znajomość adresów IP i ścieżek zasobów drukarek.",
+ "macDeviceFeaturesAssociatedDomains": "Skonfiguruj skojarzone domeny, aby udostępniać dane i poświadczenia logowania między aplikacjami i witrynami organizacji. Ten profil można zastosować do urządzeń z systemem macOS 10.15 lub nowszym.",
+ "macDeviceFeaturesExtensibleSingleSignOn": "Skonfiguruj rozszerzenie aplikacji, które umożliwia logowanie jednokrotne (SSO) dla urządzeń z systemem macOS 10.15 lub nowszym.",
+ "macDeviceFeaturesLoginItems": "Wybierz aplikacje, pliki i foldery, które mają być otwierane po zalogowaniu się użytkownika na urządzeniach. Jeśli chcesz zablokować użytkownikom możliwość zmiany sposobu otwierania aplikacji, możesz ukryć aplikację w konfiguracji użytkownika.",
+ "macDeviceFeaturesLoginWindow": "Skonfiguruj wygląd ekranu logowania systemu macOS oraz funkcje dostępne dla użytkowników przed i po zalogowaniu.",
+ "macExtensionsKernelExtensions": "Te ustawienia służą do konfigurowania zasad rozszerzeń jądra na urządzeniach z systemem macOS 10.13.2 lub nowszym.",
+ "macGeneralDomains": "Wiadomości e-mail wysyłane lub odbierane przez użytkownika, które nie pasują do domen określonych w tym miejscu, będą oznaczone jako niezaufane.",
+ "windows10EndpointProtectionApplicationGuard": "Podczas korzystania z przeglądarki Microsoft Edge funkcja Microsoft Defender Application Guard chroni Twoje środowisko przed witrynami, które nie zostały zdefiniowane jako zaufane przez Twoją organizację. Gdy użytkownicy odwiedzają witryny, które nie są wymienione w granicach izolowanej sieci, te witryny zostaną otwarte w wirtualnej sesji przeglądania w funkcji Hyper-V. Zaufane lokacje są definiowane przez granicę sieci, którą można ustawić w konfiguracji urządzenia. Ta funkcja jest dostępna tylko dla urządzeń z 64-bitowym systemem Windows 10 lub nowszym.",
+ "windows10EndpointProtectionCredentialGuard": "Włączenie funkcji Credential Guard spowoduje włączenie następujących ustawień wymaganych:\r\n
\r\n \r\n - Włącz zabezpieczenia oparte na wirtualizacji: włącza zabezpieczenia oparte na wirtualizacji (VBS) podczas następnego ponownego uruchomienia. Zabezpieczenia oparte na wirtualizacji używają funkcji hypervisor systemu Windows w celu zapewnienia obsługi usług zabezpieczeń.
\r\n
\r\n - Bezpieczny rozruch z bezpośrednim dostępem do pamięci: włącza zabezpieczenia VBS z funkcją bezpiecznego rozruchu i bezpośrednim dostępem do pamięci (DMA).
\r\n
\r\n ",
+ "windows10EndpointProtectionDeviceGuard": "Wybierz dodatkowe aplikacje, dla których należy przeprowadzić inspekcję lub które są zaufane do uruchamiania za pomocą Kontroli aplikacji usługi Microsoft Defender. Składniki systemu Windows i wszystkie aplikacje ze Sklepu Windows są automatycznie zaufane do uruchamiania.
\r\n Aplikacje nie będą blokowane podczas uruchamiania w trybie „tylko inspekcja”. W trybie „tylko inspekcja” wszystkie zdarzenia są rejestrowane w dziennikach klienta lokalnego.\r\n ",
+ "windows10GeneralPrivacyPerApp": "Dodaj aplikacje, dla których chcesz określić inne zachowanie dotyczące prywatności niż zachowanie zdefiniowane w domyślnym ustawieniu prywatności.",
+ "windows10NetworkBoundaryNetworkBoundary": "Granica sieci to lista zasobów przedsiębiorstwa, takich jak domena hostowana w chmurze i zakresy adresów IP komputerów znajdujących się w sieci przedsiębiorstwa. Określ granice sieci, aby stosować zasady i chronić dane przechowywane w tych lokalizacjach.",
+ "windowsHealthMonitoring": "Skonfiguruj zasady monitorowania kondycji systemu Windows.",
+ "windowsPhoneGeneralApplicationRestrictions": "W systemie Windows Phone można zablokować możliwość instalowania lub uruchamiania przez użytkowników aplikacji określonych na liście zabronionych aplikacji lub aplikacji nieznajdujących się na liście zatwierdzonych aplikacji. Wszystkie zarządzane aplikacje muszą zostać dodane do listy zatwierdzonych aplikacji."
+ },
"Inputs": {
"accountDomain": "Domena konta",
"accountDomainHint": "np. contosodomain",
@@ -9962,6 +9858,7 @@
"displayNameLabel": "Nazwa",
"displayVersionHint": "Wprowadź wersję aplikacji",
"displayVersionLabel": "Wersja aplikacji",
+ "displayVersionLengthCheck": "Długość wersji wyświetlanej powinna wynosić maksymalnie 130 znaków",
"eBookCategoryNameLabel": "Domyślna nazwa",
"emailAccount": "Nazwa konta e-mail",
"emailAccountHint": "np. firmowy adres e-mail",
@@ -10066,385 +9963,51 @@
"xmlFormatInvalid": "Format zasad XML jest nieprawidłowy.",
"xmlTooLarge": "Rozmiar wejściowy musi być mniejszy niż 1 MB."
},
- "Tooltips": {
- "PolicySettings": {
- "TouchId1": {
- "android": "W systemie Android możesz używać identyfikacji za pomocą odcisków palców zamiast numeru PIN. Użytkownicy widzą monit o przedstawienie odcisków palców w przypadku uzyskiwania dostępu do tej aplikacji z konta służbowego.",
- "iOS": "W przypadku urządzeń z systemem iOS/iPadOS można zezwolić na identyfikację przy użyciu odcisku palca zamiast numeru PIN. Użytkownicy są proszeni o identyfikację za pomocą odcisku palca podczas otwierania tej aplikacji przy użyciu konta służbowego.",
- "mac": "W przypadku urządzeń z systemem Mac można zezwolić na identyfikację przy użyciu odcisku palca zamiast numeru PIN. Użytkownicy są proszeni o identyfikację za pomocą odcisku palca podczas otwierania tej aplikacji przy użyciu konta służbowego."
- },
- "appSharingFromLevel1": "Wybierz jedną z następujących opcji, aby określić aplikacje, z których ta aplikacja może odbierać dane:",
- "appSharingFromLevel2": "{0}: zezwalaj na odbieranie danych w ramach kont lub dokumentów organizacji tylko z innych aplikacji zarządzanych przez zasady",
- "appSharingFromLevel3": "{0}: zezwalaj na odbieranie danych w ramach kont lub dokumentów organizacji z dowolnej aplikacji",
- "appSharingFromLevel4": "{0}: nie zezwalaj na odbieranie danych w ramach kont lub dokumentów organizacji z żadnej aplikacji",
- "appSharingFromLevel5": "{0}: Zezwalaj na transfer danych z dowolnej aplikacji i traktuj wszystkie dane przychodzące bez tożsamości użytkownika jak dane organizacji.",
- "appSharingToLevel1": "Wybierz jedną z następujących opcji, aby określić aplikacje, do których ta aplikacja może wysyłać dane:",
- "appSharingToLevel2": "{0}: zezwalaj na wysyłanie danych organizacji tylko do innych aplikacji zarządzanych przez zasady",
- "appSharingToLevel3": "{0}: zezwalaj na wysyłanie danych organizacji do dowolnej aplikacji",
- "appSharingToLevel4": "{0}: nie zezwalaj na wysyłanie danych organizacji do żadnej aplikacji",
- "appSharingToLevel5": "{0}: Zezwalaj na transfer tylko do innych aplikacji zarządzanych przez zasady i transfer plików do innych aplikacji zarządzanych za pomocą funkcji MDM na zarejestrowanych urządzeniach",
- "appSharingToLevel6": "{0}: Zezwalaj na transfer tylko do innych aplikacji zarządzanych przez zasady i filtruj okna dialogowe systemu operacyjnego do otwierania/udostępniania, aby były wyświetlane tylko aplikacje zarządzane przez zasady",
- "conditionalEncryption1": "Wybierz opcję {0}, aby wyłączyć szyfrowanie aplikacji obejmujące wewnętrzny magazyn aplikacji, jeśli na zarejestrowanym urządzeniu zostanie wykryte szyfrowanie urządzenia.",
- "conditionalEncryption2": "Uwaga: Usługa Intune wykrywa tylko rejestrację urządzenia przy użyciu zarządzania urządzeniami przenośnymi usługi Intune. Zewnętrzny magazyn aplikacji wciąż będzie szyfrowany, aby uniemożliwić niezarządzanym aplikacjom dostęp do danych.",
- "contactSyncMac": "Jeśli ta opcja jest wyłączona, aplikacje nie mogą zapisywać kontaktów w natywnej książce adresowej.",
- "contactsSync": "Wybierz pozycję Blokuj, aby uniemożliwić aplikacjom zarządzanym przez zasady zapisywanie danych w natywnych aplikacjach urządzenia (takich jak Kontakty, Kalendarz i widżety) albo zapobiec używaniu dodatków w aplikacjach zarządzanych przez zasady. Jeśli wybierzesz pozycję Zezwalaj na, aplikacja zarządzana przez zasady będzie mogła zapisywać dane w aplikacjach natywnych lub używać dodatków, jeśli te funkcje są obsługiwane i włączone w ramach aplikacji zarządzanej przez zasady.
Aplikacje mogą udostępniać dodatkowe możliwości konfiguracji za pomocą zasad konfiguracji aplikacji. Aby uzyskać więcej informacji, zobacz dokumentację aplikacji.",
- "encryptionAndroid1": "W przypadku aplikacji skojarzonych z zasadami zarządzania aplikacjami mobilnymi usługi Intune szyfrowanie jest zapewniane przez firmę Microsoft. Dane są szyfrowane synchronicznie podczas operacji we/wy na plikach zgodnie z ustawieniem w zasadach zarządzania aplikacjami mobilnymi. W zarządzanych aplikacjach w systemie Android stosowane jest szyfrowanie AES-128 w trybie CBC przy użyciu bibliotek kryptograficznych platformy. Ta metoda szyfrowania nie jest zgodna ze standardem FIPS 140-2. Szyfrowanie SHA-256 jest obsługiwane jako jawna instrukcja przy użyciu parametru SigAlg i działa tylko w przypadku urządzeń z systemem w wersji 4.2 lub nowszej. Zawartość w pamięci masowej urządzenia jest zawsze szyfrowana.",
- "encryptionAndroid2": "Gdy w zasadach aplikacji wymagane jest szyfrowanie, wymagane jest skonfigurowanie numeru PIN i uzyskiwanie dostępu do urządzenia za jago pomocą. Jeśli nie skonfigurowano numeru PIN do uzyskiwania dostępu do urządzenia, aplikacje nie zostaną uruchomione, a zamiast tego zostanie wyświetlony komunikat „Firma wymaga włączenia numeru PIN urządzenia w celu uzyskania dostępu do tej aplikacji”.",
- "encryptionMac1": "W przypadku aplikacji skojarzonych z zasadami zarządzania aplikacjami mobilnymi usługi Intune szyfrowanie jest zapewniane przez firmę Microsoft. Dane są szyfrowane synchronicznie podczas operacji we/wy na plikach zgodnie z ustawieniem w zasadach zarządzania aplikacjami mobilnymi. W zarządzanych aplikacjach w systemie Mac stosowane jest szyfrowanie AES-128 w trybie CBC przy użyciu bibliotek kryptograficznych platformy. Ta metoda szyfrowania nie jest zgodna ze standardem FIPS 140-2. Szyfrowanie SHA-256 jest obsługiwane jako jawna instrukcja przy użyciu parametru SigAlg i działa tylko w przypadku urządzeń z systemem w wersji 4.2 lub nowszej. Zawartość w pamięci masowej urządzenia jest zawsze szyfrowana.",
- "faceId1": "Czasami można zezwolić na korzystanie z rozpoznawania twarzy zamiast z numeru PIN. Użytkownicy będą proszeni o przeprowadzenie identyfikacji twarzy przy próbie otwarcia tej aplikacji za pomocą kont służbowych.",
- "faceId2": "Wybierz pozycję Tak, aby zezwolić na identyfikację twarzy zamiast numeru PIN przy otwieraniu aplikacji.",
- "managementLevelsAndroid1": "Użyj tej opcji, aby określić, czy te zasady mają zastosowanie do urządzeń administratora urządzeń systemu Android, urządzeń z profilem rozwiązania Android Enterprise czy urządzeń niezarządzanych.",
- "managementLevelsAndroid2": "{0}: Urządzenia niezarządzane to urządzenia, na których nie wykryto zarządzania przez usługę Intune MDM. Dotyczy to też usług MDM innych dostawców.",
- "managementLevelsAndroid3": "{0}: urządzenia zarządzane przez usługę Intune za pomocą administracyjnego interfejsu API urządzenia z systemem Android.",
- "managementLevelsAndroid4": "{0}: urządzenia zarządzane przez usługę Intune za pomocą profilów służbowych rozwiązania Android Enterprise lub pełnego zarządzania urządzeniami w rozwiązaniu Android Enterprise.",
- "managementLevelsIos1": "Użyj tej opcji, aby określić, czy te zasady mają zastosowanie do urządzeń zarządzanych przez usługę MDM, czy urządzeń niezarządzanych.",
- "managementLevelsIos2": "{0}: Urządzenia niezarządzane to urządzenia, na których nie wykryto zarządzania przez usługę Intune MDM. Dotyczy to też usług MDM innych dostawców.",
- "managementLevelsIos3": "{0}: Urządzenia zarządzane są zarządzane przez usługę Intune MDM.",
- "minAppVersion": "Zdefiniuj wymaganą minimalną wersję aplikacji, którą powinien posiadać użytkownik w celu uzyskania bezpiecznego dostępu do aplikacji.",
- "minAppVersionWarning": "Zdefiniuj zalecaną minimalną wersję aplikacji, którą powinien posiadać użytkownik w celu uzyskania bezpiecznego dostępu do aplikacji.",
- "minOsVersion": "Zdefiniuj wymaganą minimalną wersję systemu operacyjnego, którą powinien posiadać użytkownik w celu uzyskania bezpiecznego dostępu do aplikacji.",
- "minOsVersionWarning": "Zdefiniuj zalecaną minimalną wersję systemu operacyjnego, którą powinien posiadać użytkownik w celu uzyskania bezpiecznego dostępu do aplikacji.",
- "minPatchVersion": "Zdefiniuj najstarszy wymagany poziom poprawki zabezpieczeń systemu Android, jaką może mieć użytkownik, aby uzyskiwać bezpieczny dostęp do aplikacji.",
- "minPatchVersionWarning": "Zdefiniuj najstarszy zalecany poziom poprawki zabezpieczeń systemu Android, jaką może mieć użytkownik, aby uzyskiwać bezpieczny dostęp do aplikacji.",
- "minSdkVersion": "Zdefiniuj wymaganą minimalną wersję zestawu SDK ochrony aplikacji, którą powinien posiadać użytkownik w celu uzyskania bezpiecznego dostępu do aplikacji.",
- "requireAppPinDefault": "Wybierz pozycję Tak, aby wyłączyć numer PIN aplikacji, gdy na zarejestrowanym urządzeniu zostanie wykryta blokada urządzenia.
",
- "targetAllApps1": "Użyj tej opcji, aby objąć swoimi zasadami aplikacje na urządzeniach z dowolnym stanem zarządzania.",
- "targetAllApps2": "Podczas rozwiązywania konfliktów zasad to ustawienie będzie zastępowane, jeśli użytkownik ma zasady przeznaczone dla konkretnego stanu zarządzania.",
- "touchId2": "Wybierz opcję {0}, aby określić wymaganie identyfikacji za pomocą odcisku palca zamiast numeru PIN w celu uzyskania dostępu do aplikacji."
- },
- "Tap": {
- "pinResetAfterNumberOfDays": "Określ liczbę dni, które muszą upłynąć, zanim użytkownik będzie musiał zresetować numer PIN.",
- "previousPinBlockCount": "To ustawienie określa liczbę poprzednich kodów PIN, które będą przechowywane przez usługę Intune. Nowe kody PIN muszą być inne niż kody przechowywane przez usługę Intune."
+ "WindowsFeatureUpdate": {
+ "EndOFSupportStatus": {
+ "notSupported": "Nieobsługiwane",
+ "supportEnding": "Zakończenie świadczenia pomocy technicznej",
+ "supported": "Obsługiwane"
+ }
},
- "WipPolicySettings": {
- "25": "",
- "allowWindowsSearch": "Umożliwi to funkcji Windows Search kontynuowanie wyszukiwania w zaszyfrowanych danych.",
- "authoritativeIpRanges": "Włącz to ustawienie, jeśli chcesz przesłonić automatyczne wykrywanie zakresów adresów IP przez system Windows.",
- "authoritativeProxyServers": "Włącz to ustawienie, jeśli chcesz przesłonić automatyczne wykrywanie serwerów proxy przez system Windows.",
- "checkInput": "Sprawdź poprawność danych wejściowych",
- "dataRecoveryCert": "Certyfikat odzyskiwania to specjalny certyfikat systemu szyfrowania plików (EFS, Encrypting File System), którego można użyć, aby odzyskać zaszyfrowane pliki w razie utraty lub uszkodzenia klucza szyfrowania. Musisz utworzyć certyfikat odzyskiwania i podać go w tym miejscu. Więcej informacji można znaleźć tutaj",
- "enterpriseCloudResources": "Określ zasoby chmury, które mają być traktowane jako firmowe i chronione przez zasady rozwiązania Windows Information Protection. Aby określić wiele wartości, można oddzielić poszczególne wpisy znakiem „|”.
Jeśli w firmie jest skonfigurowany serwer proxy, możesz określić serwer proxy, przez który będzie kierowany ruch do określonych zasobów chmury.
adres_URL[,serwer_proxy]|adres_URL[,serwer_proxy]
Bez serwera proxy: contoso.sharepoint.com|contoso.visualstudio.com
Z serwerem proxy: contoso.sharepoint.com,serwer_proxy.contoso.com|contoso.visualstudio.com,serwer_proxy.contoso.com
",
- "enterpriseIPv4Ranges": "Określ zakresy adresów IPv4 sieci firmowej. Są one używane razem z określonymi nazwami domen sieci przedsiębiorstwa określonymi w celu zdefiniowania granic sieci firmowej.
To ustawienie jest wymagane do włączenia rozwiązania Windows Information Protection
Aby określić wiele wartości, można oddzielić poszczególne wpisy przecinkiem.
Przykład: 3.4.0.1-3.4.255.255,192.168.1.1-192.168.255.255
",
- "enterpriseIPv6Ranges": "Określ zakresy adresów IPv6 sieci firmowej. Są one używane razem z nazwami domen sieci przedsiębiorstwa określonymi w celu zdefiniowania granic sieci firmowej
Aby określić wiele wartości, można oddzielić poszczególne wpisy przecinkiem.
Przykład: 2001:4898:dc05::-2001:4898:dc05:ffff:ffff:ffff:ffff:ffff,2a01:110::-2a01:110:7fff:ffff:ffff:ffff:ffff:ffff
",
- "enterpriseInternalProxyServers": "Jeśli w Twojej firmie skonfigurowano serwer proxy, możesz określić serwer proxy, przez który ma być kierowany ruch do zasobów w chmurze określonych w ustawieniach zasobów przedsiębiorstwa w chmurze.
Aby określić wiele wartości, można oddzielić poszczególne wpisy średnikiem.
Przykład: contoso.wewnetrzny_serwer_proxy1.com;contoso.wewnetrzny_serwer_proxy2.com
",
- "enterpriseNetworkDomainNames": "Określ nazwy DNS sieci firmowej. Są one używane razem z zakresami adresów IP określonymi w celu zdefiniowania granic sieci firmowej. Aby określić wiele wartości, można oddzielić poszczególne wpisy przecinkiem.
To ustawienie jest wymagane do włączenia rozwiązania Windows Information Protection.
Przykład: ncorp.contoso.com,region.contoso.com
",
- "enterpriseProtectedDomainNames": "Określ nazwy DNS, które tworzą Twoją sieć korporacyjną. Są one używane w połączeniu z zakresami adresów IP określonymi w celu zdefiniowania granic Twojej sieci korporacyjnej. Można określić wiele wartości, oddzielając poszczególne wpisy znakiem „|”.
To ustawienie jest wymagane do włączenia usługi Windows Information Protection.
Na przykład: corp.contoso.com|region.contoso.com
",
- "enterpriseProxyServers": "Jeśli w sieci firmowej są używane widoczne z zewnątrz serwery proxy, określ je tutaj. Oprócz adresu serwera proxy należy także określić port, przez który ruch ma być dozwolony i chroniony za pośrednictwem rozwiązania Windows Information Protection.
Uwaga: lista ta nie może zawierać serwerów znajdujących się na liście wewnętrznych serwerów proxy przedsiębiorstwa. Aby określić wiele wartości, można oddzielić poszczególne wpisy średnikiem.
Przykład: serwer_proxy.contoso.com:80;serwer_proxy2.contoso.com:80
",
- "maxInactivityTime1": "Określa maksymalny czas (w minutach) bezczynności urządzenia, po którym urządzenie zostanie zablokowane przy użyciu kodu PIN lub hasła. Użytkownicy mogą wybrać dowolną istniejącą wartość limitu czasu mniejszą niż maksymalny czas określony w aplikacji Ustawienia. Pamiętaj, że telefony Lumia 950 i 950XL mają maksymalną wartość limitu czasu wynoszącą 5 minut, niezależnie od wartości ustawionej za pomocą tych zasad.",
- "maxInactivityTime2": "0 (domyślnie) — brak zdefiniowanego limitu czasu. Wartość domyślna „0” jest interpretowana jako „Brak zdefiniowanego limitu czasu”.",
- "maxPasswordAttempts1": "Zachowanie tych zasad jest inne na urządzeniach przenośnych i komputerach stacjonarnych.",
- "maxPasswordAttempts2": "Na urządzeniu przenośnym, gdy użytkownik osiągnie wartość ustawioną przy użyciu tych zasad, urządzenie jest czyszczone.",
- "maxPasswordAttempts3": "Na komputerze stacjonarnym, gdy użytkownik osiągnie wartość ustawioną przy użyciu tych zasad, komputer nie jest czyszczony. Zamiast tego komputer jest przełączany w tryb odzyskiwania funkcji BitLocker, co sprawia, że dane są niedostępne, ale możliwe do odzyskania. Jeśli funkcja BitLocker nie jest włączona, tych zasad nie można wymusić.",
- "maxPasswordAttempts4": "Przed osiągnięciem limitu nieudanych prób użytkownik jest kierowany do ekranu blokady i ostrzegany o tym, że kolejne nieudane próby spowodują zablokowanie komputera. Gdy użytkownik osiągnie limit, urządzenie zostanie uruchomione ponownie i zostanie wyświetlona strona odzyskiwania funkcji BitLocker. Na tej stronie jest wyświetlany monit o wprowadzenie przez użytkownika klucza odzyskiwania funkcji BitLocker.",
- "maxPasswordAttempts5": "0 (domyślnie) — urządzenie nie jest nigdy czyszczone po wprowadzeniu nieprawidłowego kodu PIN lub hasła.",
- "maxPasswordAttempts6": "Najbezpieczniejsza wartość to 0, jeśli wszystkie wartości zasad są równe 0. W przeciwnym razie najbezpieczniejsza jest minimalna wartość zasad.",
- "mdmDiscoveryUrl": "Określ adres URL dla punktu końcowego rejestracji zarządzania urządzeniami przenośnymi, z którego będą korzystać użytkownicy dokonujący rejestracji w funkcji zarządzania urządzeniami przenośnymi. Domyślnie to ustawienie jest określone dla usługi Intune.",
- "minimumPinLength1": "Liczba całkowita, która określa wymaganą minimalną liczbę znaków w kodzie PIN. Wartość domyślna wynosi 4. Najniższa wartość, którą można skonfigurować dla tego ustawienia zasad to 4. Najwyższa wartość, którą można skonfigurować, musi być mniejsza niż liczba skonfigurowana w ustawieniu maksymalnej długości kodu PIN w zasadach lub liczba 127, zależnie od tego, która wartość jest niższa.",
- "minimumPinLength2": "Jeśli to ustawienie zasad zostanie skonfigurowane, długość kodu PIN musi być większa lub równa tej liczbie. Jeśli to ustawienie zasad zostanie wyłączone lub nie zostanie skonfigurowane, długość kodu PIN musi być większa lub równa 4.",
- "name": "Nazwa tej granicy sieci",
- "neutralResources": "Jeśli w Twojej firmie są używane punkty końcowe przekierowywania uwierzytelniania, określ je tutaj. Określone tutaj lokalizacje są uznawane za osobiste lub firmowe w zależności od kontekstu połączenia przed przekierowaniem.
Aby określić wiele wartości, można oddzielić poszczególne wpisy przecinkiem.
Przykład: sts.contoso.com,sts.contoso2.com
",
- "passportForWork1": "Wartość, która ustawia funkcję Windows Hello dla firm jako metodę logowania do systemu Windows.",
- "passportForWork2": "Wartość domyślna to true. Jeśli dla tych zasad zostanie ustawiona wartość false, użytkownik nie może aprowizować funkcji Windows Hello dla firm, z wyjątkiem telefonów komórkowych dołączonych do usługi Azure Active Directory, które wymagają aprowizacji.",
- "pinExpiration": "Najwyższa liczba, którą można skonfigurować dla tego ustawienia zasad to 730. Najniższa liczba, którą można skonfigurować dla tego ustawienia zasad to 0. Jeśli dla tych zasad zostanie ustawiona wartość 0, kod PIN użytkownika nigdy nie wygasa.",
- "pinHistory1": "Najwyższa liczba, którą można skonfigurować dla tego ustawienia zasad to 50. Najniższa liczba, którą można skonfigurować dla tego ustawienia zasad to 0. Jeśli dla tych zasad zostanie ustawiona wartość 0, przechowywanie poprzednich kodów PIN nie jest wymagane.",
- "pinHistory2": "Bieżący kod PIN użytkownika należy do zestawu kodów PIN skojarzonych z kontem użytkownika. Historia kodów PIN nie jest zachowywana po zresetowaniu kodu PIN.",
- "protectUnderLock": "Chroni zawartość aplikacji, gdy urządzenie jest w stanie zablokowanym.",
- "protectionModeBlock": "Blokuj: Blokuje możliwość przeniesienia danych przedsiębiorstwa poza chronione aplikacje.
",
- "protectionModeOff": "Wyłączone: Użytkownik może przenosić dane poza chronione aplikacje. Żadne akcje nie są rejestrowane.
",
- "protectionModeOverride": "Zezwalaj na przesłonięcia: Podczas próby przeniesienia danych z aplikacji chronionej do niechronionej użytkownikowi jest wyświetlany monit. W przypadku przesłonięcia tego monitu akcja zostanie zarejestrowana.
",
- "protectionModeSilent": "Dyskretne: Użytkownik może przenosić dane poza chronione aplikacje. Te akcje są rejestrowane.
",
- "required": "Wymagane",
- "revokeOnMdmHandoff": "Dodano w systemie Windows 10 w wersji 1703. Te zasady służą do kontrolowania, czy klucze WIP mają zostać odwołane po uaktualnieniu urządzenia z usługi MAM do usługi MDM. W przypadku ustawienia na wartość „Wyłączone” klucze nie zostaną odwołane, a użytkownik będzie nadal mieć dostęp do chronionych plików po uaktualnieniu. Jest to zalecane, jeśli usługa MDM jest skonfigurowana za pomocą tego samego atrybutu EnterpriseID klucza WIP, co usługa MAM.",
- "revokeOnUnenroll": "Spowoduje to odwołanie kluczy szyfrowania, gdy rejestracja urządzenia dla tych zasad zostanie anulowana.",
- "rmsTemplateForEdp": "Identyfikator GUID TemplateID na potrzeby szyfrowania za pomocą usługi RMS. Szablon usługi Azure RMS umożliwia administratorowi IT skonfigurowanie szczegółów dotyczących użytkowników mających dostęp do pliku chronionego przy użyciu usługi RMS oraz okresu, w którym dostęp jest możliwy.",
- "showWipIcon": "W ten sposób, przez nałożenie ikony, użytkownik jest informowany, że działa w kontekście firmy.",
- "useRmsForWip": "Określa, czy zezwalać na szyfrowanie przy użyciu usługi Azure RMS na potrzeby funkcji WIP."
+ "SecurityTemplate": {
+ "aSR": "Zmniejszenie obszaru podatnego na ataki",
+ "accountProtection": "Ochrona konta",
+ "allDevices": "Wszystkie urządzenia",
+ "antivirus": "Oprogramowanie antywirusowe",
+ "antivirusReporting": "Raportowanie antywirusowe (wersja zapoznawcza)",
+ "conditionalAccess": "Dostęp warunkowy",
+ "deviceCompliance": "Zgodność urządzenia",
+ "diskEncryption": "Szyfrowanie dysku",
+ "eDR": "Wykrywanie i reagowanie dotyczące punktów końcowych",
+ "firewall": "Zapora",
+ "helpSupport": "Pomoc i obsługa techniczna",
+ "setup": "Instalacja",
+ "wdapt": "Microsoft Defender dla punktu końcowego"
+ },
+ "Win32ReturnCodes": {
+ "CodeTypes": {
+ "failed": "Niepowodzenie",
+ "hardReboot": "Ponowny rozruch sprzętowy",
+ "retry": "Ponów próbę",
+ "softReboot": "Ponowny rozruch systemowy",
+ "success": "Powodzenie"
},
- "requireAppPin": "Wybierz pozycję Tak, aby wyłączyć numer PIN aplikacji, gdy na zarejestrowanym urządzeniu zostanie wykryta blokada urządzenia.
Uwaga: usługa Intune nie może wykryć rejestracji urządzeń za pomocą rozwiązania EMM innej firmy w systemie iOS/iPadOS.
"
- },
- "AppInfoBalloonText": {
- "Certificate": {
- "customSubjectName": "CN={{UserName}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US\r\nor\r\nCN={{AAD_Device_ID}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US",
- "keySize": "Wybierz liczbę bitów zawartych w kluczu.",
- "keyUsage": "Określ akcję kryptograficzną, która jest wymagana w celu wymiany klucza publicznego certyfikatu.",
- "renewalThreshold": "Wprowadź procent (od 1 do 99) dozwolonego pozostałego okresu istnienia certyfikatu, zanim urządzenie będzie mogło żądać jego odnowienia. Wartość zalecana w usłudze Intune to 20%. (1–99)",
- "rootCert": "Wybierz wcześniej skonfigurowany i przypisany profil certyfikatu głównego urzędu certyfikacji. Certyfikat urzędu certyfikacji musi być zgodny z certyfikatem głównym urzędu certyfikacji, który wystawia certyfikat dla tego profilu (ten, który jest obecnie konfigurowany).",
- "scepServerUrl": "Wprowadź adres URL serwera usługi NDES, który wystawia certyfikaty za pośrednictwem protokołu SCEP (musi to być adres HTTPS). Przykład: https://contoso.com/certsrv/mscep/mscep.dll",
- "scepServerUrls": "Dodaj co najmniej jeden adres URL serwera usługi NDES, który wystawia certyfikaty za pośrednictwem protokołu SCEP (musi to być adres HTTPS). Przykład: https://contoso.com/certsrv/mscep/mscep.dll",
- "subjectAlternativeName": "Alternatywna nazwa obiektu",
- "subjectNameFormat": "Format nazwy obiektu",
- "validityPeriod": "Czas pozostały do wygaśnięcia certyfikatu. Wprowadź wartość, która jest mniejsza niż lub równa okresowi ważności wyświetlanemu w szablonie certyfikatu. Wartość domyślna to jeden rok."
- },
- "appInstallContext": "Określa kontekst instalacji do skojarzenia z tą aplikacją. W przypadku aplikacji z dwoma trybami wybierz żądany kontekst aplikacji. W przypadku wszystkich innych aplikacji ta opcja jest wstępnie wybrana na podstawie pakietu i nie można jej zmodyfikować.",
- "autoUpdateMode": "Skonfiguruj priorytet aktualizacji dla tej aplikacji. Wybierz pozycję Domyślnie, aby wymagać łączenie urządzenia z siecią Wi-Fi, zapewnienia jego zasilania i ograniczenia jego użytkowania przed aktualizacją aplikacji. Wybierz pozycję Wysoki priorytet, aby zaktualizować aplikację, gdy tylko deweloper opublikuje aplikację, niezależnie od stanu naładowania, możliwości sieci Wi-Fi lub aktywności użytkownika końcowego na urządzeniu.Wysoki priorytet zostanie tylko zastosowany na urządzeniach DO.",
- "configurationSettingsFormat": "Tekst formatu ustawień konfiguracji",
- "ignoreVersionDetection": "Ustaw tę opcję na wartość „Tak” dla aplikacji automatycznie aktualizowanych przez dewelopera aplikacji (np. Google Chrome).",
- "ignoreVersionDetectionMacOSLobApp": "Wybierz pozycję „Tak” w przypadku aplikacji, które są automatycznie aktualizowane przez dewelopera, lub aby przed instalacją sprawdzić tylko identyfikator bundleID aplikacji. Wybierz pozycję „Nie”, aby przed instalacją sprawdzić numer wersji i identyfikator bundleID aplikacji.",
- "installAsManagedMacOSLobApp": "To ustawienie dotyczy tylko systemu macOS 11 i nowszych. Aplikacja zostanie zainstalowana w systemie macOS 10.15 lub starszym, ale nie będzie zarządzana.",
- "installContextDropdown": "Wybierz odpowiedni kontekst instalacji. W przypadku kontekstu użytkownika aplikacja zostanie zainstalowana tylko dla użytkownika docelowego, a w przypadku kontekstu urządzenia — dla wszystkich użytkowników na urządzeniu.",
- "ldapUrl": "To jest nazwa hosta LDAP, z którego klienci mogą uzyskać publiczne klucze szyfrowania dla adresatów poczty e-mail. Wiadomości e-mail będą szyfrowane, gdy klucz jest dostępny. Obsługiwane formaty: - ldap.example.com
\r\n- ldap.example.com:123
\r\n- ldap://ldap.example.com
- ldap://ldap.example.com:123
- ldaps://ldap.example.com
\r\n- ldaps://ldap.example.com:123
",
- "permissionsSettings": "Wybierz uprawnienia w środowisku uruchomieniowym dla skojarzonej aplikacji.",
- "policyAssociatedApp": "Wybierz aplikację, z którą będą skojarzone te zasady.",
- "policyConfigurationSettings": "Wybierz metodę, z pomocą której chcesz zdefiniować ustawienia konfiguracji tych zasad.",
- "policyDescription": "Opcjonalnie możesz podać opis tych zasad konfiguracji.",
- "policyEnrollmentType": "Wybierz, czy te ustawienia są zarządzane za pośrednictwem zarządzania urządzeniami, czy aplikacji utworzonych przy użyciu zestawu SDK usługi Intune.",
- "policyName": "Wprowadź nazwę tych zasad konfiguracji.",
- "policyPlatform": "Wybierz platformę, do której zostaną zastosowane te zasady konfiguracji aplikacji.",
- "policyProfileType": "Wybierz typy profilów urządzeń, do których będzie stosowany ten profil konfiguracji aplikacji",
- "policySMime": "Skonfiguruj ustawienia podpisywania i szyfrowania S/MIME dla programu Outlook.",
- "sMimeDeployCertsFromIntune": "Określ, czy certyfikaty S/MIME mają być dostarczane z usługi Intune w celu użycia w programie Outlook.\r\nUsługa Intune może automatycznie wdrażać dla użytkowników certyfikaty podpisywania i szyfrowania za pośrednictwem Portalu firmy.",
- "sMimeEnable": "Określ, czy kontrolki S/MIME są włączone podczas tworzenia wiadomości e-mail",
- "sMimeEnableAllowChange": "Określ, czy użytkownik może zmieniać ustawienie Włącz protokół S/MIME.",
- "sMimeEncryptAllEmails": "Określ, czy wszystkie wiadomości e-mail muszą być szyfrowane.\r\nSzyfrowanie konwertuje dane na zaszyfrowany tekst, dzięki czemu może je odczytać tylko adresat.",
- "sMimeEncryptAllEmailsAllowChange": "Określ, czy użytkownik może zmieniać ustawienie Szyfruj wszystkie wiadomości e-mail.",
- "sMimeEncryptionCertProfile": "Określ profil certyfikatu na potrzeby szyfrowania wiadomości e-mail.",
- "sMimeSignAllEmails": "Określ, czy wszystkie wiadomości e-mail muszą być podpisywane.\r\nPodpis cyfrowy weryfikuje autentyczność wiadomości e-mail i zapewnia, że zawartość nie została zmodyfikowana podczas przesyłania.",
- "sMimeSignAllEmailsAllowChange": "Określ, czy użytkownik może zmieniać ustawienie Podpisuj wszystkie wiadomości e-mail.",
- "sMimeSigningCertProfile": "Określ profil certyfikatu na potrzeby podpisywania wiadomości e-mail.",
- "sMimeUserNotificationType": "Metoda powiadamiania użytkowników o konieczności otworzenia Portalu firmy w celu pobrania certyfikatów S/MIME na potrzeby programu Outlook."
- },
- "WindowsQualityUpdateDaysUntilForcedReboot": {
- "oneDay": "1 dzień",
- "twoDays": "2 dni",
- "zeroDays": "0 dni"
- },
- "Autopilot": {
- "AssignResourceAccount": {
- "createNewCommandMenu": "Utwórz nowy",
- "createNewResourceAccountInfo": "\r\nUtwórz nowe konto zasobu podczas rejestracji. Konto zasobu zostanie natychmiast dodane do tabeli kont zasobów, ale nie będzie aktywne do czasu, aż urządzenie zostanie zarejestrowane, a subskrypcja Surface Hub zweryfikowana. Dowiedz się więcej o kontach zasobów
\r\n ",
- "createNewResourceTitle": "Tworzenie nowego konta zasobu",
- "deviceNameInvalid": "Nazwa urządzenia ma nieprawidłowy format",
- "deviceNameRequired": "Nazwa urządzenia jest wymagana",
- "editResourceAccountLabel": "Edytuj",
- "selectExistingCommandMenu": "Wybierz istniejące"
- },
- "Device": {
- "ComputerName": {
- "validFormat": "Nazwy mogą się składać z maksymalnie 15 znaków oraz mogą zawierać litery (a–z, A–Z), cyfry (0–9) i łączniki. Nazwy nie mogą składać się z samych cyfr. Nazwy nie mogą zawierać pustych miejsc."
- },
- "Header": {
- "addressableUserName": "Nazwa przyjazna dla użytkownika",
- "azureADDevice": "Skojarzone urządzenie usługi Azure AD",
- "batch": "Tag grupy",
- "dateAssigned": "Data przypisania",
- "deviceDisplayName": "Nazwa urządzenia",
- "deviceName": "Nazwa urządzenia",
- "deviceUseType": "Typ użycia urządzenia",
- "enrollmentState": "Stan rejestracji",
- "intuneDevice": "Skojarzone urządzenie usługi Intune",
- "lastContacted": "Ostatni kontakt",
- "make": "Producent",
- "model": "Model",
- "profile": "Przypisany profil",
- "profileStatus": "Stan profilu",
- "purchaseOrderId": "Zamówienie zakupu",
- "resourceAccount": "Konto zasobu",
- "serialNumber": "Numer seryjny",
- "userPrincipalName": "Użytkownik"
- }
- },
- "DeviceUseType": {
- "meetingAndPresentation": "Spotkanie i prezentacja",
- "teamCollaboration": "Współpraca zespołowa"
- },
- "Devices": {
- "featureDescription": "Rozwiązanie Windows Autopilot umożliwia dostosowanie gotowego do użycia środowiska (OOBE) do potrzeb użytkowników.",
- "importErrorStatus": "Niektóre urządzenia nie zostały zaimportowane. Kliknij tutaj, aby uzyskać więcej informacji.",
- "importPendingStatus": "Importowanie jest w toku. Czas, który upłynął: {0} min. Ten proces może zająć do {1} min."
- },
- "DirectoryService": {
- "activeDirectoryAD": "Przyłączono hybrydowo do usługi Azure AD",
- "activeDirectoryADLabel": "Hybrydowa usługa Azure AD z rozwiązaniem Autopilot",
- "azureAD": "Dołączono do usługi Azure AD",
- "unknownType": "Nieznany typ"
- },
- "Filter": {
- "enrollmentState": "Stan",
- "profile": "Stan profilu"
- },
- "OOBE": {
- "AddressableUserName": {
- "validateEmpty": "Przyjazna nazwa użytkownika nie może być pusta."
- },
- "ApplyComputerNameTemplate": {
- "infoBalloon": "Utwórz szablon nazewnictwa, aby dodać nazwy do urządzeń podczas rejestracji.",
- "label": "Zastosuj szablon nazwy urządzenia"
- },
- "ApplyComputerNameTemplateDisabled": {
- "label": "Dla profilów wdrażania programu Autopilot typu „Przyłączono hybrydowo do usługi Azure AD” nazwy urządzeń są przypisywane z użyciem ustawień określonych w konfiguracji przyłączania do domeny."
- },
- "ComputerNameTemplate": {
- "emptyValue": "MojaFirma-%RAND:4%",
- "label": "Wprowadź nazwę",
- "noDisallowedChars": "Nazwa może zawierać tylko znaki alfanumeryczne i łączniki oraz makro %SERIAL% lub %RAND:x%",
- "serialLength": "Nie można używać więcej niż 7 znaków w przypadku makra %SERIAL%",
- "validateLessThan15Chars": "Nazwa może się składać z maksymalnie 15 znaków",
- "validateNoSpaces": "Nazwy komputerów nie mogą zawierać spacji",
- "validateNotAllNumbers": "Nazwa musi także zawierać litery i/lub łączniki",
- "validateNotEmpty": "Nazwa nie może być pusta",
- "validateOnlyOneMacro": "Nazwa może zawierać tylko jedno makro, %SERIAL% lub %RAND:x%"
- },
- "ConfigureComputerNameTemplate": {
- "description": "Utwórz unikatowe nazwy dla swoich urządzeń. Nazwy mogą się składać z maksymalnie 15 znaków oraz mogą zawierać litery (a–z, A–Z), cyfry (0–9) i łączniki. Nazwy nie mogą zawierać tylko cyfr. Nazwy nie mogą zawierać spacji. Za pomocą makra %SERIAL% możesz dodać numer seryjny specyficzny dla sprzętu. Możesz też użyć makra %RAND:x%, aby dodać losowy ciąg cyfr, gdzie x oznacza liczbę cyfr do dodania."
- },
- "EnableWhiteGlove": {
- "infoBalloon": "Włącz uruchamianie trybu OOBE po naciśnięciu klawisza Windows 5 razy bez uwierzytelniania użytkownika w celu rejestrowania urządzenia i aprowizacji wszystkich aplikacji oraz ustawień w kontekście systemu. Aplikacje i ustawienia w kontekście użytkownika zostaną dostarczone po jego zalogowaniu się.",
- "label": "Zezwalaj na wstępnie przygotowane wdrożenie"
- },
- "HybridAzureADSkipConnectivityCheck": {
- "infoBalloon": "Przepływ rozwiązania Autopilot dołączenia hybrydowego do usługi Azure AD będzie kontynuował działanie nawet wtedy, gdy nie ustanowi połączenia z kontrolerem domeny w trybie OOBE.",
- "label": "Pomiń sprawdzanie łączności z usługą AD (wersja zapoznawcza)"
- },
- "accountType": "Typ konta użytkownika",
- "accountTypeInfo": "Określ, czy na urządzeniu użytkownicy są administratorami, czy standardowymi użytkownikami. Należy pamiętać, że to ustawienie nie dotyczy kont administratora globalnego i administratora firmy. Te konta nie mogą być użytkownikami standardowymi, ponieważ mają dostęp do wszystkich funkcji administracyjnych w usłudze Azure AD.",
- "configOOBEInfo": "\r\nSkonfiguruj środowisko gotowe do użycia dla urządzeń z rozwiązaniem Autopilot\r\n
",
- "configureDevice": "Tryb wdrożenia",
- "configureDeviceHintForSurfaceHub2": "Rozwiązanie Autopilot obsługuje dla urządzeń Surface Hub 2 tylko tryb samodzielnego wdrażania. Ten tryb nie powoduje skojarzenia użytkownika z zarejestrowanym urządzeniem, więc nie wymaga poświadczeń użytkownika.",
- "configureDeviceHintForWindowsPC": "\r\n Tryb wdrożenia służy do kontrolowania, czy użytkownik musi podać poświadczenia w celu aprowizacji urządzenia.\r\n
\r\n \r\n - \r\n Sterowane przez użytkownika: urządzenia są kojarzone z użytkownikiem je rejestrującym, a do aprowizacji urządzenia będą wymagane poświadczenia\r\n
\r\n - \r\n Wdrażanie samodzielne (wersja zapoznawcza): urządzenia nie są kojarzone z użytkownikiem je rejestrującym, a do aprowizacji urządzenia nie będą wymagane poświadczenia\r\n
\r\n
",
- "createSurfaceHub2Info": "Skonfiguruj ustawienia rejestracji rozwiązania Autopilot dla swoich urządzeń Surface Hub 2. Domyślnie rozwiązanie Autopilot włącza pomijanie uwierzytelniania użytkownika w trybie OOBE.Dowiedz się więcej na temat rozwiązania Windows Autopilot dla urządzeń Surface Hub 2.",
- "createWindowsPCInfo": "\r\n\r\nNastępujące opcje są automatycznie włączone dla urządzeń rozwiązania Autopilot w trybie samodzielnego wdrażania:\r\n
\r\n\r\n - \r\n Pomiń wybór użycia domowego lub służbowego\r\n
\r\n - \r\n Pomiń rejestrację producenta OEM i konfigurację usługi OneDrive\r\n
\r\n - \r\n Pomiń uwierzytelnianie użytkownika w środowisku OOBE\r\n
\r\n
",
- "endUserDevice": "Sterowane przez użytkownika",
- "hideEscapeLink": "Ukryj opcje zmiany konta",
- "hideEscapeLinkInfo": "Opcje zmiany konta i rozpoczęcia od nowa przy użyciu innego konta są wyświetlane, odpowiednio, podczas początkowej konfiguracji urządzenia na firmowej stronie logowania oraz na stronie błędu domeny. Aby ukryć te opcje, musisz skonfigurować znakowanie firmowe w usłudze Azure Active Directory (wymaga systemu Windows 10 w wersji 1809 lub nowszej albo systemu Windows 11).",
- "info": "Ustawienia profilu rozwiązania Autopilot służą do definiowania gotowego do użycia środowiska wyświetlanego użytkownikom podczas uruchamiania systemu Windows po raz pierwszy.",
- "language": "Język (region)",
- "languageInfo": "Określ język i region, które będą używane.",
- "licenseAgreement": "Postanowienia licencyjne firmy Microsoft",
- "licenseAgreementInfo": "Określ, czy użytkownikom ma być wyświetlana Umowa Licencyjna Użytkownika Oprogramowania (EULA).",
- "plugAndForgetDevice": "Wdrażanie samodzielne (wersja zapoznawcza)",
- "plugAndForgetGA": "Samodzielne wdrażanie",
- "privacySettingWarning": "Wartość domyślna zbierania danych diagnostycznych została zmieniona dla urządzeń z systemem Windows 10 w wersji 1903 lub nowszej lub Windows 11.",
- "privacySettings": "Ustawienia prywatności",
- "privacySettingsInfo": "Określ, czy użytkownikom mają być wyświetlane ustawienia prywatności.",
- "showCortanaConfigurationPage": "Konfiguracja Cortany",
- "showCortanaConfigurationPageInfo": "Opcja „Pokaż” włączy wprowadzenie do konfiguracji Cortany podczas uruchamiania.",
- "skipEULAWarning": "Ważne informacje na temat ukrywania postanowień licencyjnych",
- "skipKeyboardSelection": "Automatycznie skonfiguruj klawiaturę",
- "skipKeyboardSelectionInfo": "W przypadku wartości true pomiń stronę wyboru klawiatury, jeśli ustawiony jest język.",
- "subtitle": "Profile rozwiązania Autopilot",
- "title": "Środowisko gotowe do użycia (OOBE, Out-of-box experience)",
- "useOSDefaultLanguage": "Domyślny systemu operacyjnego",
- "userSelect": "Wybór użytkownika"
- },
- "Sync": {
- "lastRequestedLabel": "Ostatnie żądanie synchronizacji",
- "lastSuccessfulLabel": "Ostatnia pomyślna synchronizacja",
- "syncInProgress": "Synchronizacja jest w toku. Zajrzyj tu ponownie wkrótce.",
- "syncInitiated": "Zainicjowano synchronizację ustawień rozwiązania Autopilot.",
- "syncSettingsTitle": "Synchronizuj ustawienia rozwiązania Autopilot"
- },
- "Title": {
- "devices": "Urządzenia rozwiązania Windows AutoPilot"
- },
- "Tooltips": {
- "addressableUserName": "Nazwa powitalna wyświetlana podczas konfiguracji urządzenia.",
- "azureADDevice": "Przejdź do szczegółów skojarzonego urządzenia. Wartość Brak oznacza, że nie ma żadnego skojarzonego urządzenia.",
- "batch": "Atrybut w formie ciągu, który może być używany do identyfikowania grupy urządzeń. Pole tagu grupy usługi Intune jest mapowane na atrybut OrderID na urządzeniach usługi Azure AD.",
- "dateAssigned": "Znacznik czasu przypisania profilu do urządzenia.",
- "deviceDisplayName": "Skonfiguruj unikatową nazwę urządzenia. Ta nazwa będzie ignorowana we wdrożeniach przyłączonych hybrydowo do usługi Azure AD. Nazwa urządzenia nadal pochodzi z profilu przyłączania do domeny dla urządzeń hybrydowej usługi Azure AD.",
- "deviceName": "Nazwa pokazywana, gdy ktoś próbuje odnaleźć urządzenie i połączyć się z nim.",
- "deviceUseType": " Urządzenie zostanie skonfigurowane zgodnie z dokonanym wyborem. Możesz to zawsze zmienić później w ustawieniach. \r\n \r\n - Na potrzeby spotkań i prezentacji funkcja Windows Hello nie jest włączana i dane są usuwane po każdej sesji.\r\n
\r\n - Na potrzeby współpracy zespołowej funkcja Windows Hello jest włączana i zapisywane są profile umożliwiające szybkie logowanie się.
\r\n
",
- "enrollmentState": "Określa, czy urządzenie zostało zarejestrowane.",
- "intuneDevice": "Przejdź do szczegółów skojarzonego urządzenia. Wartość Brak oznacza, że nie ma żadnego skojarzonego urządzenia.",
- "lastContacted": "Znacznik czasu ostatniego kontaktu z urządzeniem.",
- "make": "Producent wybranego urządzenia.",
- "model": "Model wybranego urządzenia",
- "profile": "Nazwa profilu przypisanego do urządzenia.",
- "profileStatus": "Określa, czy do urządzenia jest przypisany profil.",
- "purchaseOrderId": "Identyfikator zamówienia zakupu",
- "resourceAccount": "Tożsamość urządzenia lub główna nazwa użytkownika (UPN).",
- "serialNumber": "Numer seryjny wybranego urządzenia.",
- "userPrincipalName": "Użytkownik na potrzeby wstępnego wypełnienia uwierzytelniania podczas konfiguracji urządzenia."
- },
- "allDevices": "Wszystkie urządzenia",
- "allDevicesAlreadyAssignedError": "Profil rozwiązania Autopilot jest już przypisany do wszystkich urządzeń.",
- "assignFailedDescription": "Nie można zaktualizować przypisań dla profilu {0}.",
- "assignFailedTitle": "Nie można zaktualizować przypisań profilu rozwiązania Autopilot.",
- "assignSuccessDescription": "Pomyślnie zaktualizowano przypisania dla profilu {0}.",
- "assignSuccessTitle": "Pomyślnie zaktualizowano przypisania profilu rozwiązania Autopilot.",
- "assignSufaceHub2ProfileNextStep": "Następne kroki dla tego wdrożenia",
- "assignSurfaceHub2ProfileToDeviceGroup": "1. Przypisz ten profil do co najmniej jednej grupy urządzeń",
- "assignSurfaceHub2ProfileToResourceAccount": "2. Przypisz konto zasobu do każdego urządzenia Surface Hub, na którym wdrożono ten profil",
- "assignedDevicesCount": "Przypisane urządzenia",
- "assignedDevicesResourceAccountDescription": "Aby wdrożyć ten profil na urządzeniu, musisz przypisać konto zasobu do urządzenia. Wybieraj po jednym urządzeniu, aby przypisać mu istniejące konto zasobu lub utworzyć nowe. Dowiedz się więcej o kontach zasobów
",
- "assignedDevicesResourceAccountStatusBarMessage": "Ta tabela zawiera listę tylko tych urządzeń Surface Hub 2, do których przypisano ten profil.",
- "assigningDescription": "Aktualizowanie przypisań dla profilu {0}.",
- "assigningTitle": "Aktualizowanie przypisań profilu rozwiązania Autopilot.",
- "cannotDeleteMessage": "Ten profil jest przypisany do grup. Aby można było go usunąć, należy anulować przypisanie wszystkich grup z tego profilu.",
- "cannotDeleteTitle": "Nie można usunąć elementu {0}",
- "createdDateTime": "Utworzono",
- "deleteMessage": "Jeśli ten profil rozwiązania Autopilot zostanie usunięty, wszystkie urządzenia przypisane do tego profilu będą wyświetlane jako Nieprzypisane.",
- "deleteMessageWithPolicySet": "Profil {0} jest dołączony do co najmniej jednego zestawu zasad. Jeśli usuniesz profil {0}, nie będzie już można go przypisywać za pomocą tych zestawów zasad.",
- "deleteTitle": "Czy na pewno chcesz usunąć ten profil?",
- "description": "Opis",
- "deviceType": "Typ urządzenia",
- "deviceUse": "Użycie urządzenia",
- "directoryServiceHintForSurfaceHub2": " \r\n Rozwiązanie Autopilot obsługuje dla urządzeń Surface Hub 2 tylko ustawienie Dołączono do usługi Azure AD. Określ sposób dołączania urządzeń do usługi Active Directory (AD) w Twojej organizacji.\r\n
\r\n \r\n - \r\n Dołączono do usługi Azure AD: tylko w chmurze bez lokalnej usługi Windows Server Active Directory.\r\n
\r\n
\r\n ",
- "directoryServiceHintForWindowsPC": "\r\n \r\n Określ sposób dołączania urządzeń do usługi Active Directory (AD) w Twojej organizacji:\r\n
\r\n \r\n - \r\n Dołączono do usługi Azure AD: tylko w chmurze bez lokalnej usługi Windows Server Active Directory\r\n
\r\n
\r\n ",
- "getAssignedDevicesCountError": "Wystąpił błąd podczas pobierania liczby przypisanych urządzeń.",
- "getAssignmentsError": "Wystąpił błąd podczas pobierania przypisań profilu rozwiązania Autopilot.",
- "harvestDeviceId": "Przekonwertuj wszystkie docelowe urządzenia do rozwiązania Autopilot",
- "harvestDeviceIdDescription": "Domyślnie ten profil można stosować tylko do urządzeń rozwiązania Autopilot zsynchronizowanych z usługi Autopilot.",
- "harvestDeviceIdInfo": "\r\n Wybierz pozycję Tak, aby zarejestrować wszystkie urządzenia docelowe w rozwiązaniu Autopilot, o ile jeszcze nie zostały zarejestrowane. Gdy następnym razem urządzenia będą przechodzić przez tryb Out of Box Experience (OOBE) systemu Windows, będzie się to odbywać zgodnie z przypisanym scenariuszem rozwiązania Autopilot.\r\n
\r\n Pamiętaj, że niektóre scenariusze rozwiązania Autopilot wymagają konkretnych minimalnych kompilacji systemu Windows. Upewnij się, że na Twoim urządzeniu jest minimalna wymagana kompilacja umożliwiająca przejście scenariusza.\r\n
\r\n Usunięcie tego profilu nie spowoduje usunięcia z rozwiązania Autopilot urządzeń, których on dotyczy. Aby usunąć urządzenie z rozwiązania Autopilot, użyj widoku Urządzenia rozwiązania Windows AutoPilot.\r\n ",
- "harvestDeviceIdWarning": "Po konwersji urządzenia rozwiązania Autopilot można przywrócić tylko przez usunięcie ich z listy urządzeń rozwiązania Autopilot.",
- "holoLensCommandMenu": "HoloLens",
- "info": "Profile wdrażania rozwiązania Windows AutoPilot umożliwiają dostosowywanie środowiska out-of-box experience na Twoich urządzeniach.",
- "invalidProfileNameMessage": "Znak „{0}” nie jest dozwolony",
- "joinTypeLabel": "Dołącz do usługi Azure AD jako",
- "lastModifiedDateTime": "Ostatnia modyfikacja:",
- "name": "Nazwa",
- "noAutopilotProfile": "Brak profilów rozwiązania Autopilot",
- "notEnoughPermissionAssignedError": "Nie masz wystarczających uprawnień, aby przypisać ten profil do co najmniej jednej z wybranych grup. Skontaktuj się z administratorem.",
- "profile": "profil",
- "resourceAccountStatusBarMessage": "Konto zasobu jest wymagane dla każdego urządzenia Surface Hub 2, do którego zostanie wdrożony ten profil. Kliknij, aby dowiedzieć się więcej.",
- "selectServices": "Wybierz usługę katalogową, do której zostaną dołączone urządzenia",
- "surfaceHub2CommandMenu": "Surface Hub 2",
- "surfaceHub2SCommandMenu": "Surface Hub 2S",
- "userAffinityLabel": "Tryb wdrożenia",
- "windowsPCCommandMenu": "Komputer z systemem Windows",
- "directoryServiceLabel": "Dołącz do usługi Azure AD jako"
- },
- "AppInformationTab": {
- "Error": {
- "multipleChildApps": "Aplikację LOB dla systemu macOS można zainstalować tylko jako zarządzaną, gdy przekazany pakiet zawiera pojedynczą aplikację."
- },
- "Info": {
- "AppStoreUrl": {
- "android": "Wprowadź link do pozycji aplikacji w sklepie Google Play. Na przykład:",
- "androidLink": "https://play.google.com/store/apps/details?id=com.microsoft.office.outlook",
- "windows": "Wprowadź link do pozycji aplikacji w sklepie Microsoft Store. Na przykład:",
- "windowsLink": "https://www.microsoft.com/en-us/p/microsoft-to-do-lists-tasks-reminders/9nblggh5r558"
- },
- "appPackageFile": "Plik zawierający aplikację w formacie, który można załadować bezpośrednio na urządzeniu. Prawidłowe typy aplikacji to: Android (apk), iOS (ipa), macOS (intunemac), Windows (msi, appx, appxbundle, msix i msixbundle).",
- "applicableDeviceType": "Wybierz typy urządzeń, na których można instalować tę aplikację.",
- "category": "Określ kategorię dla aplikacji, aby ułatwić użytkownikom sortowanie i znajdowanie w Portalu firmy. Możesz wybrać wiele kategorii dla aplikacji.",
- "categoryLink": "https://docs.microsoft.com/en-us/intune/apps/apps-add#create-and-edit-categories-for-apps",
- "description": "Pomóż użytkownikom urządzenia zrozumieć, czym jest aplikacja i/lub do czego służy. Opis będzie widoczny dla nich w Portalu firmy.",
- "developer": "Nazwa firmy lub osoby, która utworzyła aplikację. Te informacje będą widoczne dla osób zalogowanych do centrum administracyjnego.",
- "displayVersion": "Wersja aplikacji. Ta informacja będzie widoczna dla użytkowników w Portalu firmy.",
- "infoUrl": "Podaj link do witryny internetowej lub dokumentacji zawierającej więcej informacji na temat aplikacji. Adres URL informacji będzie widoczny dla użytkowników w Portalu firmy.",
- "isFeatured": "Polecane aplikacje są wyróżniane w Portalu firmy, aby użytkownicy mogli szybko do nich przejść.",
- "learnMore": "Dowiedz się więcej",
- "logo": "Przekaż logo skojarzone z aplikacją. To logo będzie wyświetlane obok aplikacji w całym Portalu firmy.",
- "macOSDmgAppPackageFile": "Plik zawierający aplikację w formacie, który można załadować bezpośrednio na urządzeniu. Prawidłowy typ pakietu: .dmg.",
- "minOperatingSystem": "Wybierz najstarszą wersję systemu operacyjnego, w której można zainstalować aplikację. Jeśli aplikacja zostanie przypisana do urządzenia ze starszym systemem operacyjnym, nie zostanie zainstalowana.",
- "name": "Dodaj nazwę aplikacji. Ta nazwa będzie widoczna na liście aplikacji usługi Intune oraz dla użytkowników w Portalu firmy.",
- "notes": "Podaj dodatkowe uwagi dotyczące aplikacji. Uwagi będą widoczne dla osób zalogowanych do centrum administracyjnego.",
- "owner": "Nazwisko osoby w organizacji, która zarządza licencjonowaniem lub z którą należy się kontaktować w sprawach dotyczących aplikacji. To nazwisko będzie widoczne dla osób zalogowanych do centrum administracyjnego.",
- "packageName": "Skontaktuj się z producentem urządzenia, aby uzyskać nazwę pakietu aplikacji. Przykładowa nazwa pakietu: com.example.app",
- "privacyUrl": "Podaj link dla osób, które chcą dowiedzieć się więcej na temat warunków i ustawień prywatności w aplikacji. Adres URL do informacji o prywatności będzie widoczny dla użytkowników w Portalu firmy.",
- "publisher": "Nazwa dewelopera lub firmy dystrybuującej aplikację. Te informacje będą widoczne dla użytkowników w Portalu firmy.",
- "selectApp": "Przeszukaj sklep App Store pod kątem aplikacji ze sklepu dla systemu iOS, które chcesz wdrożyć za pomocą usługi Intune.",
- "useManagedBrowser": "Jeśli jest to wymagane, gdy użytkownik otworzy aplikację internetową, zostanie ona otworzona w przeglądarce chronionej za pomocą usługi Intune, takiej jak Microsoft Edge lub Intune Managed Browser. To ustawienie dotyczy urządzeń zarówno z systemem iOS, jak i Android.",
- "useManagedBrowserLink": "https://docs.microsoft.com/en-us/intune/apps/app-configuration-managed-browser",
- "win32AppPackageFile": "Plik zawierający aplikację w formacie, który można załadować bezpośrednio na urządzeniu. Prawidłowy typ pakietu: intunewin."
- },
- "descriptionPreview": "Podgląd",
- "descriptionRequired": "Opis jest wymagany.",
- "editDescription": "Edytuj opis",
- "name": "Informacje o aplikacji",
- "nameForOfficeSuitApp": "Informacje o pakiecie aplikacji"
- },
+ "Columns": {
+ "codeType": "Typ kodu",
+ "returnCode": "Kod powrotny"
+ },
+ "bladeTitle": "Kody powrotne",
+ "gridAriaLabel": "Kody powrotne",
+ "header": "Określ kody powrotne w celu wskazania zachowania po instalacji:",
+ "onAddAnnounceMessage": "Kod powrotny dla dodanego elementu {0} z {1}",
+ "onDeleteSuccess": "Kod powrotny {0} — usunięto pomyślnie",
+ "returnCodeAlreadyUsedValidation": "Kod powrotny jest już używany.",
+ "returnCodeMustBeIntegerValidation": "Kod powrotny powinien być liczbą całkowitą.",
+ "returnCodeShouldBeAtLeast": "Kod powrotny powinien wynosić co najmniej {0}.",
+ "returnCodeShouldBeAtMost": "Kod powrotny powinien wynosić co najwyżej {0}.",
+ "selectorLabel": "Kody powrotne"
+ },
"NotificationMessage": {
"NotificationMessageTemplatesTab": {
"arabic": "Arabski",
@@ -10516,84 +10079,599 @@
"localeLabel": "Ustawienia regionalne",
"isDefaultLocale": "Domyślne"
},
- "Win32Program": {
- "DeviceRestartBehaviorOptions": {
- "allow": "Instalacja aplikacji może wymusić ponowne uruchomienie urządzenia",
- "basedOnReturnCode": "Określ zachowanie na podstawie kodów powrotnych",
- "force": "Usługa Intune wymusi obowiązkowe ponowne uruchomienie urządzenia",
- "suppress": "Brak określonej czynności"
- },
- "RunAsAccountOptions": {
- "system": "System",
- "user": "Użytkownik"
- },
- "bladeTitle": "Program",
- "deviceRestartBehavior": "Zachowanie ponownego uruchamiania urządzenia",
- "deviceRestartBehaviorTooltip": "Wybierz zachowanie ponownego uruchomienia urządzenia po pomyślnej instalacji aplikacji. Wybierz pozycję „Określ zachowanie na podstawie kodów powrotnych”, aby ponownie uruchomić urządzenie na podstawie ustawień konfiguracji kodów powrotnych. Wybierz pozycję „Brak określonej czynności”, aby pominąć ponowne uruchomienie urządzenia podczas instalacji aplikacji korzystającej z instalatora MSI. Wybierz pozycję „Instalacja aplikacji może wymusić ponowne uruchomienie urządzenia”, aby zezwolić na ukończenie instalacji aplikacji bez pomijania ponownego uruchamiania. Wybierz pozycję „Usługa Intune wymusi obowiązkowe ponowne uruchomienie urządzenia”, aby zawsze ponownie uruchamiać urządzenie po pomyślnej instalacji aplikacji.",
- "header": "Określ polecenia do instalowania i odinstalowywania tej aplikacji:",
- "installCommand": "Polecenie instalacji",
- "installCommandMaxLengthErrorMessage": "Polecenie instalacji nie może przekraczać maksymalnej dozwolonej długości równej 1024 znaki.",
- "installCommandTooltip": "Pełny wiersz polecenia instalacji służący do zainstalowania tej aplikacji.",
- "runAs32Bit": "Uruchom polecenia instalacji i odinstalowywania w procesie 32-bitowym na klientach 64-bitowych",
- "runAs32BitTooltip": "Wybierz opcję „Tak”, aby instalować i odinstalowywać aplikację w procesie 32-bitowym na klientach 64-bitowych. Wybierz opcję „Nie” (domyślna), aby instalować i odinstalowywać aplikację w procesie 64-bitowym na klientach 64-bitowych. Klienci 32-bitowi będą zawsze korzystać z procesu 32-bitowego.",
- "runAsAccount": "Zachowanie podczas instalowania",
- "runAsAccountTooltip": "Wybierz pozycję „System”, aby zainstalować tę aplikację dla wszystkich użytkowników, jeśli jest to obsługiwane. Wybierz pozycję „Użytkownik”, aby zainstalować tę aplikację dla użytkownika zalogowanego na urządzeniu. W przypadku aplikacji MSI o podwójnym przeznaczeniu zmiany uniemożliwią pomyślne zakończenie aktualizacji i dezinstalacji, dopóki nie zostanie przywrócona wartość zastosowana do urządzenia w trakcie pierwotnej instalacji.",
- "selectorLabel": "Program",
- "uninstallCommand": "Polecenie odinstalowywania",
- "uninstallCommandTooltip": "Pełny wiersz polecenia odinstalowywania służący do odinstalowania tej aplikacji."
- },
- "OutlookAppConfigSettings": {
- "AllowUserToChangeSetting": {
- "title": "Zezwalaj użytkownikowi na zmianę ustawienia",
- "tooltip": "Określ, czy użytkownik może zmieniać ustawienie."
- },
- "AllowWorkAccounts": {
- "title": "Zezwalaj tylko na konta służbowe",
- "tooltip": "Po włączeniu tego ustawienia użytkownicy nie będą mogli dodawać osobistych kont e-mail i magazynu w programie Outlook. Jeśli użytkownik ma już dodane konto osobiste do programu Outlook, zostanie poproszony o jego usunięcie. Jeśli użytkownik nie usunie konta osobistego, nie będzie można dodać konta służbowego."
- },
- "BlockExternalImages": {
- "title": "Blokuj obrazy zewnętrzne",
- "tooltip": "Gdy blokowanie obrazów zewnętrznych jest włączone, aplikacja nie będzie pozwalać na pobieranie obrazów hostowanych w Internecie, które są osadzone w treści wiadomości. Jeśli ta funkcja jest ustawiona jako nieskonfigurowana, jej domyślnym ustawieniem w aplikacji jest Wyłączone"
- },
- "ConfigureEmail": {
- "title": "Konfiguruj ustawienia konta e-mail"
- },
- "DefaultAppSignatureSetting": {
- "Tooltip": {
- "android": "Domyślny podpis aplikacji wskazuje, czy aplikacja będzie używać podpisu „Pobierz program Outlook dla systemu Android” jako domyślnego podpisu podczas tworzenia wiadomości. Jeśli to ustawienie zostanie wyłączone, domyślny podpis nie będzie używany, ale użytkownicy będą mogli dodać własny podpis.\r\n\r\nJeśli zostanie ustawiona wartość Nie skonfigurowano, domyślnie ustawienie aplikacji będzie włączone.",
- "iOS": "Domyślny podpis aplikacji wskazuje, czy aplikacja będzie używać podpisu „Pobierz program Outlook dla systemu iOS” jako domyślnego podpisu podczas tworzenia wiadomości. Jeśli to ustawienie zostanie wyłączone, domyślny podpis nie będzie używany, ale użytkownicy będą mogli dodać własny podpis.\r\n\r\nJeśli zostanie ustawiona wartość Nie skonfigurowano, domyślnie ustawienie aplikacji będzie włączone."
- },
- "title": "Domyślny podpis aplikacji"
- },
- "OfficeFeedReplies": {
- "title": "Kanał informacyjny odkrywania",
- "tooltip": "Kanał informacyjny odkrywania przedstawia najczęściej używane pliki pakietu Office. Domyślnie ten kanał jest włączony, gdy dla użytkownika włączono usługę Delve. W przypadku ustawienia wartości Nie skonfigurowano domyślne ustawienie aplikacji to Włączone."
- },
- "OrganizeMailByThread": {
- "title": "Organizuj pocztę według wątku",
- "tooltip": "Zachowanie domyślne w programie Outlook polega na przekształcaniu konwersacji pocztowych w widok wątku. Jeśli to ustawienie zostanie wyłączone, program Outlook będzie wyświetlał każdą wiadomość pojedynczo i nie będzie grupować ich według wątku."
- },
- "PlayMyEmails": {
- "title": "Odtwarzaj moje wiadomości e-mail",
- "tooltip": "Funkcja Odtwarzaj moje wiadomości e-mail nie jest domyślnie włączona w aplikacji, ale jest polecana uprawnionym użytkownikom za pośrednictwem baneru w skrzynce odbiorczej. Ustawienie na wartość Wyłączone spowoduje, że ta funkcja nie będzie polecana uprawnionym użytkownikom w aplikacji. Użytkownicy mogą ręcznie włączać funkcję Odtwarzaj moje wiadomości e-mail w aplikacji, nawet jeśli ta funkcja jest ustawiona na wartość Wyłączona. Po ustawieniu wartości Nie skonfigurowano domyślnym ustawieniem aplikacji jest Włączone i funkcja będzie polecana uprawnionym użytkownikom."
- },
- "SuggestedReplies": {
- "title": "Sugerowane odpowiedzi",
- "tooltip": "Po otwarciu wiadomości program Outlook może wyświetlić pod nią sugerowane odpowiedzi. Jeśli wybierzesz sugerowaną odpowiedź, możesz ją edytować przed wysłaniem."
- },
- "SyncCalendars": {
- "title": "Synchronizuj kalendarze",
- "tooltip": "Skonfiguruj, czy użytkownicy mogą synchronizować swoje kalendarze programu Outlook z natywną aplikacją kalendarza i bazą danych. "
- },
- "TextPredictions": {
- "title": "Podpowiadanie tekstu",
- "tooltip": "Program Outlook może sugerować wyrazy i frazy podczas redagowania wiadomości. Gdy aplikacja Outlook wyświetli sugestię, przesuń, aby ją zaakceptować. Gdy ustawienie nie jest skonfigurowane, domyślnym ustawieniem aplikacji jest Włączone."
+ "WindowsQualityUpdateProfile": {
+ "Details": {
+ "DaysUntilForcedReboot": {
+ "label": "Liczba dni oczekiwania przed wymuszeniem ponownego uruchomienia"
+ },
+ "Description": {
+ "label": "Opis"
+ },
+ "Name": {
+ "label": "Nazwa"
+ },
+ "QualityUpdateRelease": {
+ "label": "Przyspiesz instalację aktualizacji dotyczących jakości, jeśli wersja systemu operacyjnego urządzenia jest mniejsza niż:"
+ },
+ "bladeTitle": "Aktualizacje dotyczące jakości systemu Windows 10 i nowszych (wersja zapoznawcza)",
+ "loadError": "Ładowanie nie powiodło się."
+ },
+ "TabName": {
+ "qualityUpdateSettings": "Ustawienia"
+ },
+ "infoBoxText": "Jedyną obecnie dostępną dedykowaną kontrolą aktualizacji dotyczącej jakości poza istniejącymi zasadami pierścieni aktualizacji systemu Windows 10 i nowszych jest możliwość przyspieszenia aktualizacji dotyczących jakości dla urządzeń, które są poza określonym poziomem poprawek. Dodatkowe kontrole będą dostępne w przyszłości.",
+ "warningBoxText": "Przyspieszanie aktualizacji oprogramowania może skrócić czas do uzyskania zgodności w razie potrzeby, ale ma większy wpływ na produktywność użytkowników końcowych. Znacznie wzrasta prawdopodobieństwo wymuszonych ponownych uruchomień w godzinach pracy użytkowników."
+ },
+ "TermsOfUse": {
+ "Languages": {
+ "addLanguage": "Add language",
+ "af": "Afrikaans",
+ "am": "Amharic",
+ "arSA": "Arabic (Saudi Arabia)",
+ "as": "Assamese",
+ "az": "Azerbaijani",
+ "be": "Belarusian",
+ "bg": "Bulgarian",
+ "bn": "Bangla",
+ "bnIN": "Bangla (India)",
+ "bs": "Bosnian",
+ "ca": "Catalan",
+ "caESvalencia": "Valencian (Spain)",
+ "cs": "Czech",
+ "cy": "Welsh",
+ "da": "Danish",
+ "de": "German",
+ "default": "Default",
+ "defaultDetailsTag": "{0} (Default)",
+ "el": "Greek",
+ "en": "English",
+ "enGB": "English (United Kingdom)",
+ "es": "Spanish",
+ "esMX": "Spanish (Mexico)",
+ "et": "Estonian",
+ "eu": "Basque",
+ "fa": "Persian",
+ "fi": "Finnish",
+ "fil": "Filipino",
+ "fr": "French",
+ "frCA": "French (Canada)",
+ "ga": "Irish",
+ "gd": "Scottish Gaelic",
+ "gl": "Galician",
+ "gu": "Gujarati",
+ "ha": "Hausa",
+ "he": "Hebrew",
+ "hi": "Hindi",
+ "hr": "Croatian",
+ "hu": "Hungarian",
+ "hy": "Armenian",
+ "id": "Indonesian",
+ "ig": "Igbo",
+ "is": "Icelandic",
+ "it": "Italian",
+ "ja": "Japanese",
+ "ka": "Georgian",
+ "kk": "Kazakh",
+ "km": "Khmer",
+ "kn": "Kannada",
+ "ko": "Korean",
+ "kok": "Konkani",
+ "kuArab": "Central Kurdish (Arabic)",
+ "ky": "Kyrgyz",
+ "languageOptions": "Language Options",
+ "lb": "Luxembourgish",
+ "lo": "Lao",
+ "lt": "Lithuanian",
+ "lv": "Latvian",
+ "mi": "Maori",
+ "mk": "Macedonian",
+ "ml": "Malayalam",
+ "mn": "Mongolian",
+ "mr": "Marathi",
+ "ms": "Malay",
+ "mt": "Maltese",
+ "ne": "Nepali",
+ "nl": "Dutch",
+ "nnNO": "Norwegian, Nynorsk (Norway)",
+ "no": "Norwegian",
+ "notSpecified": "Language not specified",
+ "nso": "Sesotho sa Leboa",
+ "or": "Odia",
+ "paArabPK": "Punjabi (Islamic Republic of Pakistan)",
+ "paIN": "Punjabi (India)",
+ "pl": "Polish",
+ "prs": "Dari",
+ "ptBR": "Portuguese (Brazil)",
+ "ptPT": "Portuguese (Portugal)",
+ "quz": "Quechua",
+ "ro": "Romanian",
+ "ru": "Russian",
+ "rw": "Kinyarwanda",
+ "sd": "Sindhi",
+ "si": "Sinhala",
+ "sk": "Slovak",
+ "sl": "Slovenian",
+ "sq": "Albanian",
+ "srCyrlBA": "Serbian (Cyrillic, Bosnia and Herzegovina)",
+ "srCyrlRS": "Serbian (Cyrillic, Serbia)",
+ "srLatnRS": "Serbian (Latin, Serbia)",
+ "sv": "Swedish",
+ "sw": "Kiswahili",
+ "ta": "Tamil",
+ "te": "Telugu",
+ "tg": "Tajik",
+ "th": "Thai",
+ "ti": "Tigrinya",
+ "tk": "Turkmen",
+ "tn": "Setswana",
+ "tr": "Turkish",
+ "tt": "Tatar",
+ "ug": "Uyghur",
+ "uk": "Ukrainian",
+ "ur": "Urdu",
+ "uz": "Uzbek",
+ "vi": "Vietnamese",
+ "wo": "Wolof",
+ "xh": "isiXhosa",
+ "yo": "Yoruba",
+ "zhHans": "Chinese (Simplified)",
+ "zhHant": "Chinese (Traditional)",
+ "zu": "isiZulu"
+ },
+ "AcceptanceExpirationFrequency": {
+ "annually": "Annually",
+ "biannually": "Bi-annually",
+ "monthly": "Monthly",
+ "quarterly": "Quarterly"
},
- "ThemesEnabled": {
- "title": "Kompozycje włączone",
- "tooltip": "Określ, czy użytkownik może używać niestandardowego motywu wizualnego."
- }
- },
+ "Wizard": {
+ "AgreementTargetEntityScope": {
+ "NotSelected": {
+ "label": "None selected"
+ },
+ "selectEntityTitle": "Select group",
+ "title": "Select group"
+ },
+ "PolicyFile": {
+ "Languages": {
+ "Empty": {
+ "default": "Select default language",
+ "nonDefault": "Select a language"
+ }
+ },
+ "Validations": {
+ "duplicateLanguage": "Oops, {0} appears to be selected multiple times. Language selection must be unique."
+ }
+ },
+ "PolicyTemplate": {
+ "InfoBox": {
+ "allGuestsAllApps": "A conditional access policy will be created for all guests and all cloud apps. This policy impacts the Azure portal. Once this is created you might be required to sign-out and sign-in.",
+ "allUsersAllApps": "A conditional access policy will be created for all users and all cloud apps. This policy impacts the Azure portal. Once this is created you will be required to sign-out and sign-in.",
+ "custom": "Select the users, groups, and apps that this Terms of Use will be applied to.",
+ "noPolicy": "This terms of use will appear in the grant control list when creating a conditional access policy."
+ }
+ },
+ "Section": {
+ "conditionalAccessSubtitle": "Enforce with conditional access policy templates",
+ "conditionalAccessTitle": "Conditional access",
+ "termsOfUseSubtitle": "Create and upload documents",
+ "termsOfUseTitle": "Terms of use"
+ },
+ "acceptanceDurationInfo": "The terms of use will be enforced immediately and each user will have to re-consent every specified number of days.",
+ "acceptanceDurationLabel": "Duration before re-acceptance required (days)",
+ "acceptanceDurationPlaceholder": "Example: '90'",
+ "acceptanceExpirationFrequencyInfo": "Require users to consent on a recurring basis.",
+ "acceptanceExpirationFrequencyLabel": "Frequency",
+ "acceptanceExpirationStartDateTimeInfo": "The terms of use will be enforced immediately and users will be required to re-consent on this date.",
+ "acceptanceExpirationStartDateTimeLabel": "Expire starting on",
+ "agreementIsPerDeviceAcceptanceRequiredInfo": "The end users will be required to consent to the terms of use on every device.",
+ "agreementIsPerDeviceAcceptanceRequiredLabel": "Require users to consent on every device",
+ "agreementIsViewingBeforeAcceptanceRequiredInfo": "The end users will be required to view the terms of use prior to accepting.",
+ "agreementIsViewingBeforeAcceptanceRequiredLabel": "Require users to expand the terms of use",
+ "agreementNameInfo": "Name will be used to manage the terms of use within the Azure portal.",
+ "agreementNameLabel": "Name",
+ "agreementNamePlaceholderText": "Example: 'All users terms of use'",
+ "agreementRequirmentLabel": "Required Upon",
+ "agreementTargetEntityLabel": "Users targeted",
+ "agreementUploadPolicyLabel": "Terms of use",
+ "agreementUploadPolicyPlaceholderText": "Upload required PDF",
+ "createButtonLabel": "Create",
+ "createPolicyInfo": "In order to enforce the terms of use, a conditional access policy is required. You can create a conditional access policy targeted to specific users and applications later or use one of the predefined templates.",
+ "createPolicyLabel": "Create a policy",
+ "isAcceptanceExpirationEnabledInfo": "The terms of use will be enforced immediately and all users will be forced to re-consent on a schedule.",
+ "isAcceptanceExpirationEnabledLabel": "Expire consents",
+ "pdfValidationInvalidFileFormat": "The file must be in the .pdf format.",
+ "policyFilesInfo": "Upload a PDF file containing the terms of use that your end users must accept. Based on end user preferences they will be shown the appropriate language or if not match the default language will be shown.
For end users agreeing on mobile devices, we recommend the PDF font size to be at least 24 pt.
Display name will be the title of the terms of use that is presented to the end user.",
+ "policyFilesLabel": "Terms of use document",
+ "policyTemplateInfo": "These templates are pre configured conditional access policies that are targeted to specific users and applications.",
+ "policyTemplateLabel": "Policy templates",
+ "title": "New terms of use"
+ }
+ },
+ "TACSettings": {
+ "edgeSettings": "Ustawienia konfiguracji przeglądarki Microsoft Edge",
+ "edgeWindowsDataProtectionSettings": "Przeglądarka Edge (Windows) — ustawienia ochrony danych — wersja zapoznawcza",
+ "edgeWindowsSettings": "Przeglądarka Edge (Windows) — ustawienia konfiguracji — wersja zapoznawcza",
+ "generalAppConfig": "Ogólna konfiguracja aplikacji",
+ "generalSettings": "Ogólne ustawienia konfiguracji",
+ "outlookSMIMEConfig": "Ustawienia S/MIME programu Outlook",
+ "outlookSettings": "Ustawienia konfiguracji programu Outlook",
+ "sMIME": "S/MIME"
+ },
+ "MicrosoftEdgeChannel": {
+ "beta": "Beta",
+ "dev": "Dev",
+ "stable": "Stable"
+ },
+ "WipPolicySettings": {
+ "addNetworkBoundary": "Dodaj granicę sieci",
+ "addNetworkBoundaryButton": "Dodaj granicę sieci...",
+ "allowWindowsSearch": "Zezwalaj funkcji Windows Search na przeszukiwanie zaszyfrowanych danych firmowych i aplikacji ze Sklepu",
+ "authoritativeIpRanges": "Lista zakresów adresów IP przedsiębiorstwa jest autorytatywna (nie wykrywaj automatycznie)",
+ "authoritativeProxyServers": "Lista serwerów proxy przedsiębiorstwa jest autorytatywna (nie wykrywaj automatycznie)",
+ "boundaryType": "Typ granicy",
+ "cloudResources": "Zasoby w chmurze",
+ "corporateIdentity": "Tożsamość firmowa",
+ "dataRecoveryCert": "Przekaż certyfikat agenta odzyskiwania danych (DRA, Data Recovery Agent), aby umożliwić odzyskiwanie zaszyfrowanych danych",
+ "editNetworkBoundary": "Edytuj granicę sieci",
+ "enrollmentState": "Stan rejestracji",
+ "iPv4Ranges": "Zakresy adresów IPv4",
+ "iPv6Ranges": "Zakresy adresów IPv6",
+ "internalProxyServers": "Wewnętrzne serwery proxy",
+ "maxInactivityTime": "Maksymalny czas (w minutach) bezczynności urządzenia, po którym urządzenie zostanie zablokowane przy użyciu kodu PIN lub hasła",
+ "maxPasswordAttempts": "Liczba dozwolonych niepowodzeń uwierzytelniania, po przekroczeniu której urządzenie zostanie wyczyszczone",
+ "mdmDiscoveryUrl": "Adres URL odnajdywania zarządzania urządzeniami przenośnymi",
+ "mdmRequiredSettingsInfo": "Te zasady mają zastosowanie tylko do systemu Windows 10 Anniversary Edition i nowszych wersji. Te zasady używają rozwiązania Windows Information Protection (WIP) w celu zastosowania ochrony.",
+ "minimumPinLength": "Ustaw minimalną wymaganą liczbę znaków kodu PIN",
+ "name": "Nazwa",
+ "networkBoundariesGridEmptyText": "Wszystkie dodane granice sieci zostaną tutaj wyświetlone",
+ "networkBoundary": "Granica sieci",
+ "networkDomainNames": "Domeny sieciowe",
+ "neutralResources": "Neutralne zasoby",
+ "passportForWork": "Użyj usługi Windows Hello dla firm jako metody logowania się do systemu Windows",
+ "pinExpiration": "Określ czas (w dniach), przez który użytkownik może używać kodu PIN, zanim jego zmiana będzie wymagana przez system",
+ "pinHistory": "Określ liczbę ostatnich numerów PIN skojarzonych z kontem użytkownika, które nie mogą zostać ponownie użyte",
+ "pinLowercaseLetters": "Skonfiguruj użycie małych liter w kodzie PIN usługi Windows Hello dla firm",
+ "pinSpecialCharacters": "Skonfiguruj użycie znaków specjalnych w kodzie PIN usługi Windows Hello dla firm",
+ "pinUppercaseLetters": "Skonfiguruj użycie wielkich liter w kodzie PIN usługi Windows Hello dla firm",
+ "protectUnderLock": "Blokuj dostęp aplikacji do danych firmowych, gdy urządzenie jest zablokowane. Dotyczy tylko systemu Windows 10 Mobile",
+ "protectedDomainNames": "Domeny chronione",
+ "proxyServers": "Serwery proxy",
+ "requireAppPin": "Wyłącz numer PIN aplikacji, gdy zarządzany jest numer PIN urządzenia",
+ "requiredSettings": "Wymagane ustawienia",
+ "requiredSettingsInfo": "Zmiana zakresu lub usunięcie tych zasad spowoduje odszyfrowanie danych firmowych.",
+ "revokeOnMdmHandoff": "Odwołaj dostęp do chronionych danych po zarejestrowaniu urządzenia w usłudze MDM",
+ "revokeOnUnenroll": "Odwołaj klucze szyfrowania po wyrejestrowaniu",
+ "rmsTemplateForEdp": "Określ identyfikator szablonu do użycia z usługą Azure RMS",
+ "showWipIcon": "Pokaż ikonę ochrony danych przedsiębiorstwa",
+ "type": "Typ",
+ "useRmsForWip": "Użyj usługi Azure RMS na potrzeby funkcji WIP",
+ "value": "Wartość",
+ "weRequiredSettingsInfo": "Te zasady mają zastosowanie tylko do aktualizacji systemu Windows 10 dla twórców i nowszych wersji. Te zasady używają rozwiązania Windows Information Protection (WIP) i zarządzania aplikacjami mobilnymi systemu Windows w celu zastosowania ochrony.",
+ "wipProtectionMode": "Tryb funkcji Windows Information Protection",
+ "withEnrollment": "Z rejestracją",
+ "withoutEnrollment": "Bez rejestracji"
+ },
+ "OfficeApplicationAdditionalType": {
+ "projectProRetail": "Klient stacjonarny usługi Project Online",
+ "visioProRetail": "Visio Online (plan 2)"
+ },
+ "Countries": {
+ "ae": "Zjednoczone Emiraty Arabskie",
+ "ag": "Antigua i Barbuda",
+ "ai": "Anguilla",
+ "al": "Albania",
+ "am": "Armenia",
+ "ao": "Angola",
+ "ar": "Argentyna",
+ "at": "Austria",
+ "au": "Australia",
+ "az": "Azerbejdżan",
+ "bb": "Barbados",
+ "be": "Belgia",
+ "bf": "Burkina Faso",
+ "bg": "Bułgaria",
+ "bh": "Bahrajn",
+ "bj": "Benin",
+ "bm": "Bermudy",
+ "bn": "Brunei",
+ "bo": "Boliwia",
+ "br": "Brazylia",
+ "bs": "Bahamy",
+ "bt": "Bhutan",
+ "bw": "Botswana",
+ "by": "Białoruś",
+ "bz": "Belize",
+ "ca": "Kanada",
+ "cg": "Republika Konga",
+ "ch": "Szwajcaria",
+ "cl": "Chile",
+ "cn": "Chiny",
+ "co": "Kolumbia",
+ "cr": "Kostaryka",
+ "cv": "Wyspy Zielonego Przylądka",
+ "cy": "Cypr",
+ "cz": "Czechy",
+ "de": "Niemcy",
+ "dk": "Dania",
+ "dm": "Dominika",
+ "do": "Dominikana",
+ "dz": "Algieria",
+ "ec": "Ekwador",
+ "ee": "Estonia",
+ "eg": "Egipt",
+ "es": "Hiszpania",
+ "fi": "Finlandia",
+ "fj": "Fidżi",
+ "fm": "Sfederowane Stany Mikronezji",
+ "fr": "Francja",
+ "gb": "Zjednoczone Królestwo",
+ "gd": "Grenada",
+ "gh": "Ghana",
+ "gm": "Gambia",
+ "gr": "Grecja",
+ "gt": "Gwatemala",
+ "gw": "Gwinea Bissau",
+ "gy": "Gujana",
+ "hk": "Hongkong SAR",
+ "hn": "Honduras",
+ "hr": "Chorwacja",
+ "hu": "Węgry",
+ "id": "Indonezja",
+ "ie": "Irlandia",
+ "il": "Izrael",
+ "in": "Indie",
+ "is": "Islandia",
+ "it": "Włochy",
+ "jm": "Jamajka",
+ "jo": "Jordania",
+ "jp": "Japonia",
+ "ke": "Kenia",
+ "kg": "Kirgistan",
+ "kh": "Kambodża",
+ "kn": "St. Kitts i Nevis",
+ "kr": "Republika Korei",
+ "kw": "Kuwejt",
+ "ky": "Kajmany",
+ "kz": "Kazachstan",
+ "la": "Laotańska Republika Ludowo-Demokratyczna",
+ "lb": "Liban",
+ "lc": "Saint Lucia",
+ "lk": "Sri Lanka",
+ "lr": "Liberia",
+ "lt": "Litwa",
+ "lu": "Luksemburg",
+ "lv": "Łotwa",
+ "md": "Republika Mołdawii",
+ "mg": "Madagaskar",
+ "mk": "Macedonia Północna",
+ "ml": "Mali",
+ "mn": "Mongolia",
+ "mo": "Makau",
+ "mr": "Mauretania",
+ "ms": "Montserrat",
+ "mt": "Malta",
+ "mu": "Mauritius",
+ "mw": "Malawi",
+ "mx": "Meksyk",
+ "my": "Malezja",
+ "mz": "Mozambik",
+ "na": "Namibia",
+ "ne": "Niger",
+ "ng": "Nigeria",
+ "ni": "Nikaragua",
+ "nl": "Holandia",
+ "no": "Norwegia",
+ "np": "Nepal",
+ "nz": "Nowa Zelandia",
+ "om": "Oman",
+ "pa": "Panama",
+ "pe": "Peru",
+ "pg": "Papua Nowa Gwinea",
+ "ph": "Filipiny",
+ "pk": "Pakistan",
+ "pl": "Polska",
+ "pt": "Portugalia",
+ "pw": "Palau",
+ "py": "Paragwaj",
+ "qa": "Katar",
+ "ro": "Rumunia",
+ "ru": "Rosja",
+ "sa": "Arabia Saudyjska",
+ "sb": "Wyspy Salomona",
+ "sc": "Seszele",
+ "se": "Szwecja",
+ "sg": "Singapur",
+ "si": "Słowenia",
+ "sk": "Słowacja",
+ "sl": "Sierra Leone",
+ "sn": "Senegal",
+ "sr": "Surinam",
+ "st": "Wyspy Świętego Tomasza i Książęca",
+ "sv": "Salwador",
+ "sz": "Suazi",
+ "tc": "Turks i Caicos",
+ "td": "Czad",
+ "th": "Tajlandia",
+ "tj": "Tadżykistan",
+ "tm": "Turkmenistan",
+ "tn": "Tunezja",
+ "tr": "Turcja",
+ "tt": "Trynidad i Tobago",
+ "tw": "Tajwan",
+ "tz": "Tanzania",
+ "ua": "Ukraina",
+ "ug": "Uganda",
+ "us": "Stany Zjednoczone",
+ "uy": "Urugwaj",
+ "uz": "Uzbekistan",
+ "vc": "Saint Vincent i Grenadyny",
+ "ve": "Wenezuela",
+ "vg": "Brytyjskie Wyspy Dziewicze",
+ "vn": "Wietnam",
+ "ye": "Jemen",
+ "za": "Republika Południowej Afryki",
+ "zw": "Zimbabwe"
+ },
+ "OfficeUpdateChannel": {
+ "current": "Bieżący kanał",
+ "deferred": "Półroczny kanał dla przedsiębiorstw",
+ "firstReleaseCurrent": "Bieżący kanał (wersja zapoznawcza)",
+ "firstReleaseDeferred": "Półroczny kanał dla przedsiębiorstw (wersja zapoznawcza)",
+ "monthlyEnterprise": "Miesięczny kanał dla przedsiębiorstw",
+ "placeHolder": "Wybierz zasady"
+ },
+ "AppProtection": {
+ "allAppTypes": "Dotyczy wszystkich typów aplikacji",
+ "androidPlatformLabel": "Android",
+ "appsInAndroidWorkProfile": "Aplikacje w ramach profilu programu Android for Work",
+ "appsOnIntuneManagedDevices": "Aplikacje na urządzeniach zarządzanych przez usługę Intune",
+ "appsOnUnmanagedDevices": "Aplikacje na urządzeniach niezarządzanych",
+ "iOSPlatformLabel": "iOS/iPadOS",
+ "iosAndroidMacPlatformLabel": "iOS, Android i Mac",
+ "iosAndroidPlatformLabel": "iOS, Android",
+ "macPlatformLabel": "Mac",
+ "notAvailable": "Niedostępne",
+ "windows10PlatformLabel": "Windows 10 i nowsze",
+ "withEnrollment": "Z rejestracją",
+ "withoutEnrollment": "Bez rejestracji"
+ },
+ "InstallContextType": {
+ "device": "Urządzenie",
+ "deviceContext": "Kontekst urządzenia",
+ "user": "Użytkownik",
+ "userContext": "Kontekst użytkownika"
+ },
+ "ProactiveRemediations": {
+ "Create": {
+ "Basics": {
+ "DescriptionMultiLineTextBox": {
+ "label": "Opis",
+ "placeholder": "Wprowadź opis"
+ },
+ "NameTextBox": {
+ "label": "Nazwa",
+ "placeholder": "Wprowadź nazwę"
+ },
+ "PublisherTextBox": {
+ "label": "Wydawca",
+ "placeholder": "Wprowadź wydawcę"
+ },
+ "VersionTextBox": {
+ "label": "Wersja"
+ },
+ "headerDescription": "Utwórz nowy niestandardowy pakiet skryptu na podstawie napisanych przez siebie skryptów wykrywania i korygowania."
+ },
+ "ScopeTags": {
+ "headerDescription": "Wybierz co najmniej jedną grupę, aby przypisać pakiet skryptów."
+ },
+ "Settings": {
+ "DetectionScriptMultiLineTextBox": {
+ "label": "Skrypt wykrywania",
+ "placeholder": "Tekst skryptu wejściowego",
+ "requiredValidationMessage": "Wprowadź skrypt wykrywania"
+ },
+ "EnforceScriptSignatureCheckOptionPicker": {
+ "label": "Wymuszaj sprawdzanie podpisu skryptu"
+ },
+ "LoggedOnCredentialsOptionPicker": {
+ "label": "Uruchom ten skrypt, używając poświadczeń zalogowanego użytkownika"
+ },
+ "RemediationScript": {
+ "infoBox": "Ten skrypt zostanie uruchomiony w trybie tylko wykrywania, ponieważ nie ma skryptu korygującego."
+ },
+ "RemediationScriptMultiLineTextBox": {
+ "label": "Skrypt korygujący",
+ "placeholder": "Tekst skryptu wejściowego"
+ },
+ "RunIn64BitPSOptionPicker": {
+ "label": "Uruchom skrypt w 64-bitowym programie PowerShell"
+ },
+ "ScriptMultiLineTextBox": {
+ "base64EncodingValidationMessage": "Nieprawidłowy skrypt. Co najmniej jeden znak użyty w skrypcie jest nieprawidłowy."
+ },
+ "headerDescription": "Utwórz niestandardowy pakiet skryptów na podstawie napisanych przez siebie skryptów. Domyślnie skrypty będą uruchamiane na przypisanych urządzeniach każdego dnia.",
+ "infoBox": "Ten skrypt jest tylko do odczytu. Niektóre ustawienia dla tego skryptu mogą być wyłączone."
+ },
+ "title": "Utwórz niestandardowy skrypt",
+ "ScriptProperties": {
+ "GridHeaders": {
+ "interval": "Interwał",
+ "time": "Data i godzina"
+ },
+ "Interval": {
+ "day": "Powtarzane codziennie",
+ "days": "Powtarzane co {0} dni",
+ "hour": "Powtarzane co godzinę",
+ "hours": "Powtarzane co {0} godz.",
+ "month": "Powtarzane co miesiąc",
+ "months": "Powtarzane co {0} mies.",
+ "week": "Powtarzane co tydzień",
+ "weeks": "Powtarzane co {0} tyg."
+ },
+ "Time": {
+ "utc": "{0} (UTC)",
+ "utcWithDate": "{0} (UTC) {1}",
+ "withDate": "{0} {1}"
+ }
+ }
+ },
+ "Edit": {
+ "title": "Edycja — {0}"
+ }
+ },
+ "EdgeAppConfig": {
+ "AllowedURLs": {
+ "title": "Dozwolone adresy URL",
+ "tooltip": "Określ witryny, do których użytkownicy mogą uzyskiwać dostęp, gdy są w kontekście roboczym. Żadne inne witryny nie będą dozwolone. Możesz zdecydować się skonfigurować listę dozwolonych witryn albo listę zablokowanych witryn, ale nie możesz skonfigurować ich obu jednocześnie. "
+ },
+ "ApplicationProxyRedirection": {
+ "header": "Serwer proxy aplikacji",
+ "title": "Przekierowanie serwera proxy aplikacji",
+ "tooltip": "Włącz przekierowanie serwera proxy aplikacji, aby zapewnić użytkownikom dostęp do linków firmowych i lokalnych aplikacji internetowych."
+ },
+ "BlockedURLs": {
+ "title": "Zablokowane adresy URL",
+ "tooltip": "Określ witryny, które są blokowane dla użytkowników, gdy są w kontekście roboczym. Wszystkie inne witryny będą dozwolone. Możesz zdecydować się skonfigurować listę dozwolonych witryn albo listę zablokowanych witryn, ale nie możesz skonfigurować ich obu jednocześnie. "
+ },
+ "Bookmarks": {
+ "header": "Zarządzane zakładki",
+ "tooltip": "Wprowadź dla użytkowników listę adresów URL z zakładkami, które będą dostępne podczas korzystania z przeglądarki Microsoft Edge w kontekście roboczym.",
+ "uRL": "Adres URL"
+ },
+ "HomepageURL": {
+ "header": "Zarządzana strona główna",
+ "title": "Adres URL skrótu do strony głównej",
+ "tooltip": "Skonfiguruj skrót do strony głównej, który będzie widoczny dla użytkowników jako pierwsza ikona poniżej paska wyszukiwania, gdy otworzą nową kartę w przeglądarce Microsoft Edge."
+ },
+ "PersonalContext": {
+ "label": "Przekieruj witryny z ograniczeniami do kontekstu osobistego",
+ "tooltip": "Skonfiguruj, czy użytkownicy powinni mieć możliwość przechodzenia do swojego osobistego kontekstu, aby otwierać witryny z ograniczeniami."
+ }
+ },
+ "BooleanActions": {
+ "allow": "Zezwalaj",
+ "block": "Blokuj",
+ "configured": "Skonfigurowane",
+ "disable": "Wyłącz",
+ "dontRequire": "Nie wymagaj",
+ "enable": "Włącz",
+ "hide": "Ukryj",
+ "limit": "Limit",
+ "notConfigured": "Nieskonfigurowane",
+ "require": "Wymagaj",
+ "show": "Pokaż",
+ "yes": "Tak"
+ },
+ "ArchitectureOptions": {
+ "sixtyFourBit": "64-bitowa",
+ "thirtyTwoBit": "32-bitowa"
+ },
+ "WindowsQualityUpdateDaysUntilForcedReboot": {
+ "oneDay": "1 dzień",
+ "twoDays": "2 dni",
+ "zeroDays": "0 dni"
+ },
"SoftwareUpdates": {
"BladeTitles": {
"overview": "Przegląd"
@@ -10800,66 +10878,732 @@
"notScannedYet": "Jeszcze nie skanowano",
"outOfDateIosDevices": "Nieaktualne urządzenia z systemem iOS"
},
- "ScheduledAction": {
- "Form": {
- "editBlockActionInfo": "Jedna akcja blokowania jest wymagana dla wszystkich zasad zgodności.",
- "graceperiod": "Harmonogram (dni po stwierdzeniu niezgodności)",
- "graceperiodInfo": "Określ liczbę dni po stwierdzeniu niezgodności, po których ta akcja powinna być wyzwolona wobec urządzenia użytkownika",
- "subtitle": "Określ parametry akcji",
- "title": "Parametry akcji"
- },
- "List": {
- "gracePeriodDay": "{0} dzień po stwierdzeniu niezgodności",
- "gracePeriodDays": "{0} dni po stwierdzeniu niezgodności",
- "gracePeriodHour": "{0} godz. po stwierdzeniu niezgodności",
- "gracePeriodHours": "{0} godz. po stwierdzeniu niezgodności",
- "gracePeriodMinute": "{0} min po stwierdzeniu niezgodności",
- "gracePeriodMinutes": "{0} min po stwierdzeniu niezgodności",
- "immediately": "Natychmiast",
- "schedule": "Harmonogram",
- "scheduleInfoBalloon": "Liczba dni po niezgodności",
- "subtitle": "Określ sekwencję akcji wykonywanych wobec niezgodnych urządzeń",
- "title": "Akcje"
- },
- "Notification": {
- "additionalEmailLabel": "Inne",
- "additionalRecipients": "Dodatkowi odbiorcy (za pośrednictwem poczty e-mail)",
- "additionalRecipientsBladeTitle": "Wybierz dodatkowych adresatów",
- "emailAddressPrompt": "Podaj adresy e-mail (rozdzielone przecinkami)",
- "invalidEmail": "Nieprawidłowy adres e-mail",
- "messageTemplate": "Szablon wiadomości",
- "noneSelected": "Nie wybrano niczego",
- "notSelected": "Nie wybrano",
- "numSelected": "wybrano: {0}",
- "selected": "Wybrano"
+ "ConfigurationTypes": {
+ "Table": {
+ "androidDeviceOwnerGeneral": "Ograniczenia dotyczące urządzenia (właściciel urządzenia)",
+ "androidForWorkGeneral": "Ograniczenia dotyczące urządzenia (profilu służbowy)"
+ },
+ "androidCustom": "Niestandardowe",
+ "androidDeviceOwnerGeneral": "Ograniczenia dotyczące urządzeń",
+ "androidDeviceOwnerPkcs": "Certyfikat PKCS",
+ "androidDeviceOwnerScep": "Certyfikat SCEP",
+ "androidDeviceOwnerTrustedCertificate": "Certyfikat zaufany",
+ "androidDeviceOwnerVpn": "VPN",
+ "androidDeviceOwnerWiFi": "Sieć Wi-Fi",
+ "androidEmailProfile": "Poczta e-mail (tylko rozwiązanie Samsung KNOX)",
+ "androidForWorkCustom": "Niestandardowe",
+ "androidForWorkEmailProfile": "Adres e-mail",
+ "androidForWorkGeneral": "Ograniczenia dotyczące urządzeń",
+ "androidForWorkImportedPFX": "Zaimportowany certyfikat PKCS",
+ "androidForWorkOemConfig": "OEMConfig",
+ "androidForWorkPKCS": "Certyfikat PKCS",
+ "androidForWorkSCEP": "Certyfikat SCEP",
+ "androidForWorkTrustedCertificate": "Certyfikat zaufany",
+ "androidForWorkVpn": "Sieć VPN",
+ "androidForWorkWiFi": "Sieć Wi-Fi",
+ "androidGeneral": "Ograniczenia dotyczące urządzeń",
+ "androidImportedPFX": "Zaimportowany certyfikat PKCS",
+ "androidPKCS": "Certyfikat PKCS",
+ "androidSCEP": "Certyfikat SCEP",
+ "androidTrustedCertificate": "Certyfikat zaufany",
+ "androidVPN": "Sieć VPN",
+ "androidWiFi": "Sieć Wi-Fi",
+ "androidZebraMx": "Profil MX (tylko Zebra)",
+ "complianceAndroid": "Zasady dotyczące zgodności dla systemu Android",
+ "complianceAndroidDeviceOwner": "Profil służbowy w pełni zarządzany, dedykowany i należący do firmy",
+ "complianceAndroidEnterprise": "Osobisty profil służbowy",
+ "complianceAndroidForWork": "Zasady zgodności programu Android for Work",
+ "complianceIos": "Zasady dotyczące zgodności dla systemu iOS",
+ "complianceMac": "Zasady dotyczące zgodności dla komputerów Mac",
+ "complianceWindows10": "Zasady zgodności systemu Windows 10 i nowszych wersji",
+ "complianceWindows10Mobile": "Zasady dotyczące zgodności dla systemu Windows 10 Mobile",
+ "complianceWindows8": "Zasady dotyczące zgodności dla systemu Windows 8",
+ "complianceWindowsPhone": "Zasady dotyczące zgodności dla systemu Windows Phone",
+ "exchangeActiveSync": "Exchange Active Sync",
+ "iosCustom": "Niestandardowe",
+ "iosDerivedCredentialAuthenticationConfiguration": "Pochodne poświadczenie PIV ",
+ "iosDeviceFeatures": "Funkcje urządzenia",
+ "iosEDU": "Edukacja",
+ "iosEducation": "Edukacja",
+ "iosEmailProfile": "Adres e-mail",
+ "iosGeneral": "Ograniczenia dotyczące urządzeń",
+ "iosImportedPFX": "Zaimportowany certyfikat PKCS",
+ "iosPKCS": "Certyfikat PKCS",
+ "iosPresets": "Ustawienia wstępne",
+ "iosSCEP": "Certyfikat SCEP",
+ "iosTrustedCertificate": "Certyfikat zaufany",
+ "iosVPN": "Sieć VPN",
+ "iosVPNZscaler": "VPN",
+ "iosWiFi": "Sieć Wi-Fi",
+ "macCustom": "Niestandardowe",
+ "macDeviceFeatures": "Funkcje urządzenia",
+ "macEndpointProtection": "Ochrona punktu końcowego",
+ "macExtensions": "Rozszerzenia",
+ "macGeneral": "Ograniczenia dotyczące urządzeń",
+ "macImportedPFX": "Zaimportowany certyfikat PKCS",
+ "macSCEP": "Certyfikat SCEP",
+ "macTrustedCertificate": "Certyfikat zaufany",
+ "macVPN": "Sieć VPN",
+ "macWiFi": "Sieć Wi-Fi",
+ "settingsCatalog": "Wykaz ustawień (wersja zapoznawcza)",
+ "unsupported": "Nieobsługiwane",
+ "windows10AdministrativeTemplate": "Szablony administracyjne (wersja zapoznawcza)",
+ "windows10Atp": "Ochrona punktu końcowego w usłudze Microsoft Defender (urządzenia stacjonarne z systemem Windows 10 lub nowszym)",
+ "windows10Custom": "Niestandardowe",
+ "windows10DesktopSoftwareUpdate": "Aktualizacje oprogramowania",
+ "windows10DeviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
+ "windows10EmailProfile": "Adres e-mail",
+ "windows10EndpointProtection": "Ochrona punktu końcowego",
+ "windows10EnterpriseDataProtection": "Windows Information Protection",
+ "windows10General": "Ograniczenia dotyczące urządzeń",
+ "windows10ImportedPFX": "Zaimportowany certyfikat PKCS",
+ "windows10Kiosk": "Kiosk",
+ "windows10NetworkBoundary": "Granica sieci",
+ "windows10PKCS": "Certyfikat PKCS",
+ "windows10PolicyOverride": "Przesłoń zasady grupy",
+ "windows10SCEP": "Certyfikat SCEP",
+ "windows10SecureAssessmentProfile": "Profil edukacji",
+ "windows10SharedPC": "Udostępnione urządzenie obsługujące wielu użytkowników",
+ "windows10TeamGeneral": "Ograniczenia dotyczące urządzeń (Windows 10 Team)",
+ "windows10TrustedCertificate": "Certyfikat zaufany",
+ "windows10VPN": "Sieć VPN",
+ "windows10WiFi": "Sieć Wi-Fi",
+ "windows10WiFiCustom": "Niestandardowa sieć Wi-Fi",
+ "windows8General": "Ograniczenia dotyczące urządzeń",
+ "windows8SCEP": "Certyfikat SCEP",
+ "windows8TrustedCertificate": "Certyfikat zaufany",
+ "windows8VPN": "Sieć VPN",
+ "windows8WiFi": "Importowanie sieci Wi-Fi",
+ "windowsDeliveryOptimization": "Optymalizacja dostarczania",
+ "windowsDomainJoin": "Przyłączanie do domeny",
+ "windowsEditionUpgrade": "Uaktualnianie wersji i przełączanie trybu",
+ "windowsIdentityProtection": "Ochrona tożsamości",
+ "windowsPhoneCustom": "Niestandardowe",
+ "windowsPhoneEmailProfile": "Adres e-mail",
+ "windowsPhoneGeneral": "Ograniczenia dotyczące urządzeń",
+ "windowsPhoneImportedPFX": "Zaimportowany certyfikat PKCS",
+ "windowsPhoneSCEP": "Certyfikat SCEP",
+ "windowsPhoneTrustedCertificate": "Certyfikat zaufany",
+ "windowsPhoneVPN": "Sieć VPN",
+ "IosUpdate": "Zasady aktualizacji systemu iOS"
+ },
+ "OfficeSuiteAppsTab": {
+ "acceptLicenseOnBehalfOfUsersLabel": "Zaakceptuj Postanowienia licencyjne dotyczące oprogramowania firmy Microsoft w imieniu użytkowników",
+ "appSuiteConfigurationLabel": "Konfiguracja zestawu aplikacji",
+ "appSuiteInformationLabel": "Informacje o pakiecie aplikacji",
+ "appsToBeInstalledLabel": "Aplikacje, które mają zostać zainstalowane w ramach zestawu",
+ "architectureLabel": "Architektura",
+ "architectureTooltip": "Definiuje, czy na urządzeniach jest instalowana 32-bitowa, czy 64-bitowa wersja aplikacji platformy Microsoft 365.",
+ "configurationDesignerLabel": "Projektant konfiguracji",
+ "configurationFileLabel": "Plik konfiguracji",
+ "configurationSettingsFormatLabel": "Format ustawień konfiguracji",
+ "configureAppSuiteLabel": "Konfigurowanie pakietu aplikacji",
+ "configuredLabel": "Skonfigurowano",
+ "currentVersionLabel": "Bieżąca wersja",
+ "currentVersionTooltip": "To jest bieżąca wersja pakietu Office, która jest skonfigurowana w tym zestawie. Ta wartość zostanie zaktualizowana po skonfigurowaniu i zapisaniu nowszej wersji.",
+ "enableMicrosoftSearchAsDefaultTooltip": "Instaluje usługę w tle, która pomaga określić, czy na urządzeniu jest zainstalowane rozszerzenie Microsoft Search w usłudze Bing dla przeglądarki Google Chrome.",
+ "enterXmlDataLabel": "Wprowadź dane XML",
+ "languagesLabel": "Języki",
+ "languagesTooltip": "Domyślnie usługa Intune zainstaluje pakiet Office w domyślnym języku systemu operacyjnego. Wybierz dowolne dodatkowe języki, które chcesz zainstalować.",
+ "learnMoreText": "Dowiedz się więcej",
+ "newUpdateChannelTooltip": "Określa, jak często aplikacja jest aktualizowana przy użyciu nowych funkcji.",
+ "noCurrentVersionText": "Brak bieżącej wersji",
+ "noLanguagesSelectedLabel": "Nie wybrano żadnych języków",
+ "notConfiguredLabel": "Nie skonfigurowano",
+ "propertiesLabel": "Właściwości",
+ "removeOtherVersionsLabel": "Usuń inne wersje",
+ "removeOtherVersionsTooltip": "Wybierz pozycję Tak, aby usunąć inne wersje pakietu Office (MSI) z urządzeń użytkownika.",
+ "selectOfficeAppsLabel": "Wybierz aplikacje pakietu Office",
+ "selectOfficeAppsTooltip": "Wybierz aplikacje usługi Office 365, które mają zostać zainstalowane jako część pakietu.",
+ "selectOtherOfficeAppsLabel": "Wybierz inne aplikacje pakietu Office (wymagana licencja)",
+ "selectOtherOfficeAppsTooltip": "Jeśli jesteś właścicielem licencji na te dodatkowe aplikacje pakietu Office, możesz przypisać je także za pomocą usługi Intune.",
+ "specificVersionLabel": "Określona wersja",
+ "updateChannelLabel": "Kanał aktualizacji",
+ "updateChannelTooltip": "Definiuje, jak często aplikacja jest aktualizowana przy użyciu nowych funkcji.
\r\n — zapewnij użytkownikom najnowsze funkcje pakietu Office, gdy tylko staną się dostępne.
\r\nMiesięczny kanał dla przedsiębiorstw — zapewnij użytkownikom najnowsze funkcje pakietu Office raz w miesiącu, w drugi wtorek miesiąca.
\r\nMiesięczny (kierowany) — zapewnij wcześniejszy dostęp do nadchodzącej wersji kanału miesięcznego. Jest to obsługiwany kanał aktualizacji, i zwykle jest dostępny co najmniej tydzień przed tym, gdy wersja z kanału miesięcznego zawiera nowe funkcje.
\r\nPółroczny — zapewnij użytkownikom nowe funkcje pakietu Office tylko kilka razy w roku.
\r\nPółroczny (kierowany) — zapewnij użytkownikom pilotażowym i testerom zgodności aplikacji możliwość przetestowania następnej wersji półrocznej.",
+ "useMicrosoftSearchAsDefault": "Zainstaluj usługę w tle dla funkcji Microsoft Search w usłudze Bing",
+ "useSharedComputerActivationLabel": "Użyj aktywacji na komputerze udostępnionym",
+ "useSharedComputerActivationTooltip": "Aktywacja na komputerze udostępnionym umożliwia wdrożenie aplikacji platformy Microsoft 365 na komputerach, które są używane przez wielu użytkowników. Zwykle użytkownicy mogą zainstalować i aktywować aplikacje platformy Microsoft 365 tylko na ograniczonej liczbie urządzeń, np. na 5 komputerach osobistych. Korzystanie z aplikacji platformy Microsoft 365 w ramach aktywacji na komputerze udostępnionym nie będzie wliczane do tego limitu.",
+ "versionToInstallLabel": "Wersja do zainstalowania",
+ "versionToInstallTooltip": "Wybierz wersję pakietu Office, która ma zostać zainstalowana.",
+ "xLanguagesSelectedLabel": "Wybrane języki: {0}",
+ "xmlConfigurationLabel": "Konfiguracja XML"
+ },
+ "EnrollmentRestrictions": {
+ "DeletePayloadLink": {
+ "content": "Element {0} jest uwzględniony w co najmniej jednym zestawie zasad. Jeśli usuniesz element {0}, nie będzie już można go przypisywać za pomocą tych zestawów zasad. Czy usunąć go mimo to?",
+ "contentWithError": "Element {0} może być uwzględniony w co najmniej jednym zestawie zasad. Jeśli usuniesz element {0}, nie będzie już można go przypisywać za pomocą tych zestawów zasad. Czy usunąć go mimo to?",
+ "header": "Czy na pewno chcesz usunąć to ograniczenie?"
+ },
+ "DeviceLimit": {
+ "description": "Określ maksymalną liczbę urządzeń, które może zarejestrować użytkownik.",
+ "header": "Ograniczenia limitu urządzeń",
+ "info": "Określ liczbę urządzeń, które może zarejestrować każdy użytkownik."
+ },
+ "DeviceType": {
+ "VersionValidation": {
+ "aOSP": "Musi to być wartość 1.0 lub większa.",
+ "android": "Wprowadź prawidłowy numer wersji. Przykłady: 5.0, 5.5.1, 6.0.0.1",
+ "androidForWork": "Wprowadź prawidłowy numer wersji. Przykłady: 5.0, 5.1.1",
+ "iOS": "Wprowadź prawidłowy numer wersji. Przykłady: 9.0, 10.0, 9.0.2",
+ "mac": "Wprowadź prawidłowy numer wersji. Przykłady: 10, 10.10, 10.10.1",
+ "min": "Wersja minimalna nie może być niższa niż {0}",
+ "minMax": "Wersja minimalna nie może być większa niż wersja maksymalna.",
+ "windows": "Musi to być wersja 10.0 lub nowsza. Pozostaw to pole puste, aby zezwolić na urządzenia w wersji 8.1",
+ "windowsMobile": "Musi to być wersja 10.0 lub nowsza. Pozostaw to pole puste, aby zezwolić na urządzenia w wersji 8.1"
+ },
+ "allPlatformsBlocked": "Wszystkie platformy urządzeń są zablokowane. Zezwalaj na rejestrowanie platform, aby włączyć konfigurowanie platform.",
+ "blockManufacturerPlaceHolder": "Nazwa producenta",
+ "blockManufacturersHeader": "Zablokowani producenci",
+ "cannotRestrict": "Ograniczenie nie jest obsługiwane",
+ "configurationDescription": "Określ ograniczenia konfiguracji platformy, które muszą zostać spełnione w celu rejestracji urządzenia. Użyj zasad zgodności do ograniczenia urządzeń po rejestracji. Definiuj wersje w formacie główna.pomocnicza.kompilacja. Ograniczenia wersji mają zastosowanie tylko do urządzeń rejestrowanych przy użyciu Portalu firmy. Domyślnie usługa Intune klasyfikuje urządzenia jako będące własnością osobistą. Aby zaklasyfikować urządzenia jako będące własnością firmy, należy podjąć specjalną akcję.",
+ "configurationDescriptionLabel": "Dowiedz się więcej o ustawianiu ograniczeń rejestracji",
+ "configurations": "Konfiguruj platformy",
+ "deviceManufacturer": "Producent urządzenia",
+ "header": "Ograniczenia typu urządzeń",
+ "info": "Zdefiniuj platformy, wersje i typy zarządzania dopuszczone do rejestracji.",
+ "manufacturer": "Producent",
+ "max": "Maks.",
+ "maxVersion": "Maksymalna wersja",
+ "min": "Minimum",
+ "minVersion": "Minimalna wersja",
+ "newPlatforms": "Dopuszczono nowe platformy. Rozważ aktualizację konfiguracji platform.",
+ "personal": "Własność użytkownika",
+ "platform": "Platforma",
+ "platformDescription": "Możesz dopuścić rejestrację następujących platform. Blokuj tylko platformy, których nie będziesz obsługiwać. Dopuszczone platformy można skonfigurować z dodatkowymi ograniczeniami rejestracji.",
+ "platformSettings": "Ustawienia platformy",
+ "platforms": "Wybierz platformy",
+ "platformsSelected": "Wybrane platformy: {0}",
+ "type": "Typ",
+ "versions": "wersje",
+ "versionsRange": "Zezwalaj na minimalny/maksymalny zakres:",
+ "windowsTooltip": "Ogranicza rejestrację za pośrednictwem zarządzania urządzeniami przenośnymi. Nie ogranicza instalacji agenta komputera. Obsługiwane są tylko wersje systemów Windows 10 i Windows 11. Pozostaw puste wersje, aby zezwolić na korzystanie z systemu Windows 8.1."
+ },
+ "Priority": {
+ "saved": "Pomyślnie zapisano priorytety ograniczeń."
+ },
+ "Row": {
+ "announce": "Priorytet: {0}, nazwa: {1}, przypisano: {2}"
+ },
+ "Table": {
+ "deployed": "Wdrożone",
+ "name": "Nazwa",
+ "priority": "Priorytet"
},
- "block": "Oznacz urządzenie jako niezgodne",
- "lockDevice": "Zablokuj urządzenie (akcja lokalna)",
- "lockDeviceWithPasscode": "Zablokuj urządzenie (akcja lokalna)",
- "noAction": "Brak akcji",
- "noActionRow": "Brak akcji, wybierz opcję „Dodaj”, aby dodać akcję",
- "pushNotification": "Wyślij powiadomienie push do użytkownika końcowego",
- "remoteLock": "Zdalne zablokowanie niezgodnego urządzenia",
- "removeSourceAccessProfile": "Usuń źródłowy profil dostępu",
- "retire": "Wycofaj niezgodne urządzenie",
- "wipe": "Wyczyść",
- "emailNotification": "Wyślij wiadomość e-mail do użytkownika końcowego"
- },
- "WIPPinRequirements": {
- "WipLowercaseCharacterPinRequirements": {
- "allow": "Zezwalaj na użycie małych liter w kodzie PIN",
- "notAllow": "Nie zezwalaj na użycie małych liter w kodzie PIN",
- "requireAtLeastOne": "Wymagaj użycia co najmniej jednej małej litery w kodzie PIN"
- },
- "WipSpecialCharacterPinRequirements": {
- "allow": "Zezwalaj na użycie znaków specjalnych w kodzie PIN",
- "notAllow": "Nie zezwalaj na użycie znaków specjalnych w kodzie PIN",
- "requireAtLeastOne": "Wymagaj użycia co najmniej jednego znaku specjalnego w kodzie PIN"
- },
- "WipUppercaseCharacterPinRequirements": {
- "allow": "Zezwalaj na użycie wielkich liter w kodzie PIN",
- "notAllow": "Nie zezwalaj na użycie wielkich liter w kodzie PIN",
- "requireAtLeastOne": "Wymagaj użycia co najmniej jednej wielkiej litery w kodzie PIN"
- }
- }
+ "Type": {
+ "limit": "Ograniczenie limitu urządzeń",
+ "type": "Ograniczenie typu urządzeń"
+ },
+ "allUsers": "Wszyscy użytkownicy",
+ "androidRestrictions": "Ograniczenia systemu Android",
+ "create": "Utwórz ograniczenie",
+ "defaultLimitDescription": "To jest domyślne ograniczenie limitu urządzeń stosowane z najniższym priorytetem dla wszystkich użytkowników niezależnie od członkostwa w grupie.",
+ "defaultTypeDescription": "To jest domyślne ograniczenie typu urządzenia stosowane z najniższym priorytetem dla wszystkich użytkowników niezależnie od członkostwa w grupie.",
+ "defaultWhfbDescription": "To jest domyślna konfiguracja funkcji Windows Hello dla firm stosowana z najniższym priorytetem dla wszystkich użytkowników niezależnie od członkostwa w grupie.",
+ "deleteMessage": "Na użytkowników, których to dotyczy, zostanie nałożone przypisane ograniczenie o kolejnym najwyższym priorytecie lub domyślne ograniczenie, jeśli żadne ograniczenie nie zostało przypisane.",
+ "deleteTitle": "Czy na pewno chcesz usunąć ograniczenie {0}?",
+ "descriptionHint": "Krótki akapit z opisem użycia poziomu ograniczeń określanego przez ustawienia ograniczeń w firmie.",
+ "edit": "Edytuj ograniczenie",
+ "info": "Urządzenie musi być zgodne z ograniczeniami rejestracji o najwyższym priorytecie przypisanymi do jego użytkownika. Możesz przeciągać ograniczenia urządzenia, aby zmieniać ich priorytet. Ograniczenia domyślne mają najniższy priorytet dla wszystkich użytkowników i służą do zarządzania rejestracjami bez użytkowników. Ograniczenia domyślne można edytować, ale nie można ich usuwać.",
+ "iosRestrictions": "Ograniczenia systemu iOS",
+ "mDM": "MDM",
+ "macRestrictions": "Ograniczenia systemu MacOS",
+ "maxVersion": "Wersja maksymalna",
+ "minVersion": "Wersja minimalna",
+ "nameHint": "To będzie główny atrybut widoczny w celu identyfikacji zestawu ograniczeń.",
+ "noAssignmentsStatusBar": "Przypisz ograniczenie do co najmniej jednej grupy. Kliknij pozycję Właściwości.",
+ "notFound": "Nie znaleziono ograniczenia. Być może zostało już usunięte.",
+ "personallyOwned": "Urządzenia osobiste",
+ "restriction": "Ograniczenie",
+ "restrictionLowerCase": "ograniczenie",
+ "restrictionType": "Typ ograniczenia",
+ "selectType": "Wybierz typ ograniczenia",
+ "selectValidation": "Wybierz platformę",
+ "typeHint": "Wybierz opcję Ograniczenie typu urządzeń, aby ograniczyć właściwości urządzeń. Wybierz opcję Ograniczenie limitu urządzeń, aby ograniczyć liczbę urządzeń na użytkownika.",
+ "typeRequired": "Wymagany jest typ ograniczenia.",
+ "winPhoneRestrictions": "Ograniczenia systemu Windows Phone",
+ "windowsRestrictions": "Ograniczenia systemu Windows"
+ },
+ "Titles": {
+ "ChromeOs": {
+ "devices": "Urządzenia z systemem Chrome OS"
+ },
+ "ManagedDesktop": {
+ "adminContacts": "Kontakty administracyjne",
+ "appPackaging": "Pakiety aplikacji",
+ "devices": "Urządzenia",
+ "feedback": "Opinie",
+ "gettingStarted": "Wprowadzenie",
+ "messages": "Komunikaty",
+ "onlineResources": "Zasoby online",
+ "serviceRequests": "Żądania usług",
+ "settings": "Ustawienia",
+ "tenantEnrollment": "Rejestracja dzierżawy"
+ },
+ "actions": "Akcje w przypadku niezgodności",
+ "advancedExchangeSettings": "Ustawienia usługi Exchange Online",
+ "advancedThreatProtection": "Microsoft Defender dla punktu końcowego",
+ "allApps": "Wszystkie aplikacje",
+ "allDevices": "Wszystkie urządzenia",
+ "androidFotaDeployments": "Wdrożenia FOTA systemu Android",
+ "appBundles": "Zbiór aplikacji",
+ "appCategories": "Kategorie aplikacji",
+ "appConfigPolicies": "Zasady konfiguracji aplikacji",
+ "appInstallStatus": "Stan instalacji aplikacji",
+ "appLicences": "Licencje aplikacji",
+ "appProtectionPolicies": "Zasady ochrony aplikacji",
+ "appProtectionStatus": "Stan ochrony aplikacji",
+ "appSelectiveWipe": "Selektywne czyszczenie aplikacji",
+ "appleVppTokens": "Tokeny VPP firmy Apple",
+ "apps": "Aplikacje",
+ "assign": "Przypisania",
+ "assignedPermissions": "Przypisane uprawnienia",
+ "assignedRoles": "Przypisane role",
+ "autopilotDeploymentReport": "Wdrożenia rozwiązania Autopilot (wersja zapoznawcza)",
+ "brandingAndCustomization": "Dostosowywanie",
+ "cartProfiles": "Profile koszyków",
+ "certificateConnectors": "Łączniki certyfikatu",
+ "chromeEnterprise": "Chrome Enterprise",
+ "compliancePolicies": "Zasady zgodności",
+ "complianceScriptManagement": "Skrypty",
+ "complianceScriptManagementPreview": "Skrypty (wersja zapoznawcza)",
+ "complianceSettings": "Ustawienia zasad zgodności",
+ "conditionStatements": "Instrukcje warunkowe",
+ "conditions": "Lokalizacje",
+ "configMgr": "Microsoft Endpoint Configuration Manager",
+ "configurationProfiles": "Profile konfiguracji",
+ "configurationProfilesPreview": "Profile konfiguracji (wersja zapoznawcza)",
+ "connectorsAndTokens": "Łączniki i tokeny",
+ "corporateDeviceIdentifiers": "Identyfikatory urządzeń firmowych",
+ "customAttributes": "Atrybuty niestandardowe",
+ "customNotifications": "Powiadomienia niestandardowe",
+ "deploymentSettings": "Ustawienia wdrożenia",
+ "derivedCredentials": "Pochodne poświadczenia",
+ "deviceActions": "Akcje urządzenia",
+ "deviceCategories": "Kategorie urządzeń",
+ "deviceCleanUp": "Reguły czyszczenia urządzeń",
+ "deviceEnrollmentManagers": "Menedżerowie rejestracji urządzeń",
+ "deviceExecutionStatus": "Stan urządzenia",
+ "deviceLimitEnrollmentRestrictions": "Ograniczenia limitu urządzeń rejestracji",
+ "deviceTypeEnrollmentRestrictions": "Ograniczenia platformy urządzenia rejestracji",
+ "devices": "Urządzenia",
+ "discoveredApps": "Odnalezione aplikacje",
+ "embeddedSIM": "Profile komórkowe eSIM (wersja zapoznawcza)",
+ "enrollDevices": "Zarejestruj urządzenia",
+ "enrollmentFailures": "Błędy rejestracji",
+ "enrollmentNotifications": "Powiadomienia dotyczące rejestracji (wersja zapoznawcza)",
+ "enrollmentRestrictions": "Ograniczenia rejestracji",
+ "exchangeActiveSync": "Exchange ActiveSync",
+ "exchangeServiceConnectors": "Łączniki usług Exchange",
+ "failuresForFeatureUpdates": "Błędy aktualizacji funkcji (wersja zapoznawcza)",
+ "failuresForQualityUpdates": "System Windows — przyspieszone niepowodzenia aktualizacji (wersja zapoznawcza)",
+ "featureFlighting": "Pilotaż funkcji",
+ "featureUpdateDeployments": "Aktualizacje funkcji dla systemu Windows 10 i nowszego (wersja zapoznawcza)",
+ "flighting": "Testowanie",
+ "fotaUpdate": "Bezprzewodowa aktualizacja oprogramowania układowego",
+ "groupPolicy": "Szablony administracyjne",
+ "groupPolicyAnalytics": "Analiza zasad grupy",
+ "helpSupport": "Pomoc i obsługa techniczna",
+ "helpSupportReplacement": "Pomoc i obsługa techniczna ({0})",
+ "iOSAppProvisioning": "Profile aprowizacji aplikacji systemu iOS",
+ "incompleteUserEnrollments": "Nieukończone rejestracje użytkowników",
+ "intuneRemoteAssistance": "Pomoc zdalna (wersja zapoznawcza)",
+ "iosUpdates": "Zasady aktualizacji dla systemu iOS/iPadOS",
+ "legacyPcManagement": "Zarządzanie starszymi komputerami",
+ "macOSSoftwareUpdate": "Aktualizuj zasady dla systemu macOS",
+ "macOSSoftwareUpdateAccountSummaries": "Stan instalacji dla urządzeń z systemem macOS",
+ "macOSSoftwareUpdateCategorySummaries": "Podsumowanie aktualizacji oprogramowania",
+ "macOSSoftwareUpdateStateSummaries": "aktualizacje",
+ "managedGooglePlay": "Zarządzany sklep Google Play",
+ "msfb": "Microsoft Store dla Firm",
+ "myPermissions": "Moje uprawnienia",
+ "notifications": "Powiadomienia",
+ "officeApps": "Aplikacje pakietu Office",
+ "officeProPlusPolicies": "Zasady dla aplikacji pakietu Office",
+ "onPremise": "Lokalnie",
+ "onPremisesConnector": "Lokalny łącznik Exchange ActiveSync",
+ "onPremisesDeviceAccess": "Urządzenia Exchange ActiveSync",
+ "onPremisesManageAccess": "Dostęp do lokalnego wystąpienia programu Exchange",
+ "outOfDateIosDevices": "Błędy instalacji dla urządzeń z systemem iOS",
+ "overview": "Przegląd",
+ "partnerDeviceManagement": "Zarządzanie urządzeniem partnera",
+ "perUpdateRingDeploymentState": "Stan wdrożenia według pierścienia aktualizacji",
+ "permissions": "Uprawnienia",
+ "platformApps": "Aplikacje: {0}",
+ "platformDevices": "Urządzenia: {0}",
+ "platformEnrollment": "{0} — rejestracja",
+ "policies": "Zasady",
+ "previewMDMDevices": "Wszystkie urządzenia zarządzane (wersja zapoznawcza)",
+ "profiles": "Profile",
+ "properties": "Właściwości",
+ "reports": "Raporty",
+ "retireNoncompliantDevices": "Wycofaj niezgodne urządzenia",
+ "retireNoncompliantDevicesPreview": "Retire noncompliant devices (preview)",
+ "role": "Rola",
+ "scriptManagement": "Skrypty",
+ "securityBaselines": "Punkty odniesienia zabezpieczeń",
+ "serviceToServiceConnector": "Łącznik usługi Exchange Online",
+ "shellScripts": "Skrypty powłoki",
+ "teamViewerConnector": "Łącznik programu TeamViewer",
+ "telecomeExpenseManagement": "Zarządzanie wydatkami na telekomunikację",
+ "tenantAdmin": "Administrator dzierżawy",
+ "tenantAdministration": "Administracja dzierżawą",
+ "termsAndConditions": "Warunki i postanowienia",
+ "titles": "Tytuły",
+ "troubleshootSupport": "Rozwiązywanie problemów i pomoc techniczna",
+ "user": "Użytkownik",
+ "userExecutionStatus": "Stan użytkownika",
+ "warranty": "Dostawcy rękojmi",
+ "wdacSupplementalPolicies": "Uzupełniające zasady trybu S",
+ "windows10DriverUpdate": "Aktualizacje sterowników dla systemu Windows 10 i nowszych (wersja zapoznawcza)",
+ "windows10QualityUpdate": "Aktualizacje dotyczące jakości systemu Windows 10 i nowszych (wersja zapoznawcza)",
+ "windows10UpdateRings": "Pierścienie aktualizacji dla systemu Windows 10 i nowszego",
+ "windows10XPolicyFailures": "Błędy zasad systemu Windows 10X",
+ "windowsEnterpriseCertificate": "Certyfikat przedsiębiorstwa systemu Windows",
+ "windowsManagement": "Skrypty programu PowerShell",
+ "windowsSideLoadingKeys": "Klucze ładowania bezpośredniego systemu Windows",
+ "windowsSymantecCertificate": "Certyfikat firmy DigiCert dla systemu Windows",
+ "windowsThreatReport": "Stan agenta zagrożenia"
+ },
+ "ScopeTypes": {
+ "allDevices": "Wszystkie urządzenia",
+ "allUsers": "Wszyscy użytkownicy",
+ "allUsersAndDevices": "Wszyscy użytkownicy i wszystkie urządzenia",
+ "selectedGroups": "Wybrane grupy"
+ },
+ "OfficeApplicationType": {
+ "access": "Access",
+ "bing": "Domyślne używanie funkcji Microsoft Search",
+ "excel": "Excel",
+ "groove": "OneDrive (Groove)",
+ "lync": "Skype dla firm",
+ "oneDrive": "Aplikacja klasyczna OneDrive",
+ "oneNote": "OneNote",
+ "outlook": "Outlook",
+ "powerPoint": "PowerPoint",
+ "publisher": "Publisher",
+ "teams": "Teams",
+ "word": "Word"
+ },
+ "ApplicableDeviceType": {
+ "iPad": "iPad",
+ "iPhoneAndIPod": "iPhone i iPod"
+ },
+ "Assignment": {
+ "AutoUpdateMode": {
+ "default": "Domyślny",
+ "header": "Aktualizuj priorytet",
+ "postponed": "Odłożone",
+ "priority": "Wysoki priorytet"
+ },
+ "DeliveryOptimizationPriority": {
+ "backgroundNormal": "Tło",
+ "displayText": "Pobieranie zawartości za {0}",
+ "foreground": "Pierwszy plan",
+ "header": "Priorytet optymalizacji dostarczania"
+ },
+ "RestartGracePeriod": {
+ "allowSnooze": "Zezwalaj użytkownikowi na odłożenie powiadomienia o ponownym uruchomieniu",
+ "countdownDialog": "Wybierz, kiedy wyświetlić okno dialogowe odliczania do ponownego uruchomienia przed ponownym uruchomieniem (minuty)",
+ "durationInMinutes": "Okres prolongaty ponownego uruchomienia urządzenia (minuty)",
+ "snoozeDurationInMinutes": "Wybierz czas trwania odłożenia (minuty)"
+ },
+ "SoftwareInstallationTime": {
+ "TimeZone": {
+ "label": "Strefa czasowa",
+ "local": "Strefa czasowa urządzenia",
+ "utc": "UTC"
+ },
+ "dateAndTimeLabel": "Data i godzina",
+ "deadlineTimeColumnLabel": "Ostateczny termin instalacji",
+ "deadlineTimeDatePickerErrorMessage": "Wybrana data musi być późniejsza niż data dostępności",
+ "deadlineTimeLabel": "Ostateczny termin instalacji aplikacji",
+ "defaultTime": "Najszybciej, jak to możliwe",
+ "infoText": "Ta aplikacja będzie dostępna zaraz po wdrożeniu, chyba że poniżej określisz czas dostępności. Jeśli jest to wymagana aplikacja, możesz określić termin instalacji.",
+ "specificTime": "Określona data i godzina",
+ "startTimeColumnLabel": "Dostępność",
+ "startTimeDatePickerErrorMessage": "Wybrana data musi być wcześniejsza niż termin ostateczny",
+ "startTimeLabel": "Dostępność aplikacji"
+ },
+ "restartGracePeriodHeader": "Okres prolongaty ponownego uruchomienia",
+ "restartGracePeriodLabel": "Okres prolongaty ponownego uruchomienia urządzenia",
+ "summaryTitle": "Środowisko użytkownika końcowego"
+ },
+ "EnrollmentType": {
+ "devicesWithEnrollment": "Urządzenia zarządzane",
+ "devicesWithoutEnrollment": "Aplikacje zarządzane"
+ },
+ "PolicySet": {
+ "appManagement": "Zarządzanie aplikacjami",
+ "assignments": "Przypisania",
+ "basics": "Podstawowe",
+ "deviceEnrollment": "Rejestrowanie urządzenia",
+ "deviceManagement": "Zarządzanie urządzeniami",
+ "scopeTags": "Tagi zakresu",
+ "appConfigurationTitle": "Zasady konfiguracji aplikacji",
+ "appProtectionTitle": "Zasady ochrony aplikacji",
+ "appTitle": "Aplikacje",
+ "iOSAppProvisioningTitle": "Profile aprowizacji aplikacji systemu iOS",
+ "deviceLimitRestrictionTitle": "Ograniczenia limitu urządzeń",
+ "deviceTypeRestrictionTitle": "Ograniczenia typu urządzeń",
+ "enrollmentStatusSettingTitle": "Strony stanu rejestracji",
+ "windowsAutopilotDeploymentProfileTitle": "Profile wdrażania rozwiązania Windows Autopilot",
+ "deviceComplianceTitle": "Zasady zgodności urządzeń",
+ "deviceConfigurationTitle": "Profile konfiguracji urządzeń",
+ "powershellScriptTitle": "Skrypty PowerShell"
+ },
+ "AzureIAMCommon": {
+ "CountryNames": {
+ "countryNameNR": "Nauru",
+ "countryNameBH": "Bahrajn",
+ "countryNameZA": "Republika Południowej Afryki",
+ "countryNameJO": "Jordania",
+ "countryNameSD": "Sudan",
+ "countryNameNU": "Niue",
+ "countryNameCZ": "Czechy",
+ "countryNameLT": "Litwa",
+ "countryNameTK": "Tokelau",
+ "countryNameEC": "Ekwador",
+ "countryNameVU": "Vanuatu",
+ "countryNameUG": "Uganda",
+ "countryNameLI": "Liechtenstein",
+ "countryNameHK": "SRA Hongkong",
+ "countryNameGH": "Ghana",
+ "countryNameSA": "Arabia Saudyjska",
+ "countryNamePG": "Papua-Nowa Gwinea",
+ "countryNameBW": "Botswana",
+ "countryNameDG": "Diego Garcia",
+ "countryNameIN": "Indie",
+ "countryNameHN": "Honduras",
+ "countryNameRO": "Rumunia",
+ "countryNameKZ": "Kazachstan",
+ "countryNameLC": "Saint Lucia",
+ "countryNameGE": "Gruzja",
+ "countryNameTT": "Trynidad i Tobago",
+ "countryNameMP": "Mariany Północne",
+ "countryNameMV": "Malediwy",
+ "countryNameFI": "Finlandia",
+ "countryNameNO": "Norwegia",
+ "countryNameEE": "Estonia",
+ "countryNameVE": "Wenezuela",
+ "countryNameUZ": "Uzbekistan",
+ "countryNameME": "Czarnogóra",
+ "countryNameTJ": "Tadżykistan",
+ "countryNameAW": "Aruba",
+ "countryNameFR": "Francja",
+ "countryNameOM": "Oman",
+ "countryNameAO": "Angola",
+ "countryNameIT": "Włochy",
+ "countryNameAZ": "Azerbejdżan",
+ "countryNameKG": "Kirgistan",
+ "countryNameWF": "Wallis i Futuna",
+ "countryNameTL": "Timor-Leste",
+ "countryNameFK": "Falklandy (Malwiny)",
+ "countryNameGY": "Gujana",
+ "countryNameSS": "Sudan Południowy",
+ "countryNameMM": "Myanmar",
+ "countryNameHT": "Haiti",
+ "countryNameSY": "Syria",
+ "countryNameMD": "Mołdawia",
+ "countryNameVC": "Saint Vincent i Grenadyny",
+ "countryNameID": "Indonezja",
+ "countryNameRE": "Reunion",
+ "countryNameER": "Erytrea",
+ "countryNameMK": "Macedonia Północna",
+ "countryNameTG": "Togo",
+ "countryNamePF": "Polinezja Francuska",
+ "countryNameKY": "Kajmany",
+ "countryNameIO": "Brytyjskie Terytorium Oceanu Indyjskiego",
+ "countryNameRU": "Rosja",
+ "countryNameMA": "Maroko",
+ "countryNameAU": "Australia",
+ "countryNameBO": "Boliwia",
+ "countryNameVA": "Watykan",
+ "countryNameVG": "Brytyjskie Wyspy Dziewicze",
+ "countryNameFM": "Mikronezja",
+ "countryNameAQ": "Antarktyka",
+ "countryNameZM": "Zambia",
+ "countryNameBR": "Brazylia",
+ "countryNameIS": "Islandia",
+ "countryNamePE": "Peru",
+ "countryNameBG": "Bułgaria",
+ "countryNamePR": "Portoryko",
+ "countryNameGI": "Gibraltar",
+ "countryNameBS": "Bahamy",
+ "countryNameJE": "Jersey",
+ "countryNameMO": "SRA Makau",
+ "countryNameRW": "Rwanda",
+ "countryNameAS": "Samoa Amerykańskie",
+ "countryNameBQ": "Bonaire, Sint Eustatius i Saba",
+ "countryNameMF": "Saint-Martin",
+ "countryNameTM": "Turkmenistan",
+ "countryNameML": "Mali",
+ "countryNameTO": "Tonga",
+ "countryNameNC": "Nowa Kaledonia",
+ "countryNameAC": "Wyspa Wniebowstąpienia",
+ "countryNameBN": "Brunei",
+ "countryNameBD": "Bangladesz",
+ "countryNameMW": "Malawi",
+ "countryNameGM": "Gambia",
+ "countryNameGA": "Gabon",
+ "countryNameCA": "Kanada",
+ "countryNameSH": "Święta Helena",
+ "countryNameYT": "Majotta",
+ "countryNameMN": "Mongolia",
+ "countryNamePA": "Panama",
+ "countryNameCM": "Kamerun",
+ "countryNameNE": "Niger",
+ "countryNameCW": "Curaçao",
+ "countryNameJP": "Japonia",
+ "countryNameCY": "Cypr",
+ "countryNameCD": "Demokratyczna Republika Konga",
+ "countryNameTN": "Tunezja",
+ "countryNameTR": "Turcja",
+ "countryNameWS": "Samoa",
+ "countryNameSE": "Szwecja",
+ "countryNameXK": "Kosowo",
+ "countryNameKH": "Kambodża",
+ "countryNamePL": "Polska",
+ "countryNameDZ": "Algieria",
+ "countryNameLR": "Liberia",
+ "countryNameSO": "Somalia",
+ "countryNameDM": "Dominika",
+ "countryNameEG": "Egipt",
+ "countryNameGF": "Gujana Francuska",
+ "countryNameNZ": "Nowa Zelandia",
+ "countryNamePS": "Autonomia Palestyńska",
+ "countryNameIL": "Izrael",
+ "countryNameSL": "Sierra Leone",
+ "countryNameGR": "Grecja",
+ "countryNameNG": "Nigeria",
+ "countryNameMR": "Mauretania",
+ "countryNameVI": "Wyspy Dziewicze Stanów Zjednoczonych",
+ "countryNameGQ": "Gwinea Równikowa",
+ "countryNameMX": "Meksyk",
+ "countryNameDJ": "Dżibuti",
+ "countryNameGN": "Gwinea",
+ "countryNameCN": "Chiny",
+ "countryNameMZ": "Mozambik",
+ "countryNameBV": "Wyspa Bouveta",
+ "countryNameNF": "Wyspa Norfolk",
+ "countryNameTZ": "Tanzania",
+ "countryNameAI": "Anguilla",
+ "countryNameGS": "Georgia Południowa i Sandwich Południowy",
+ "countryNameRS": "Serbia",
+ "countryNameCC": "Wyspy Kokosowe",
+ "countryNameNA": "Namibia",
+ "countryNameDE": "Niemcy",
+ "countryNameCG": "Republika Konga",
+ "countryNameKW": "Kuwejt",
+ "countryNameMH": "Wyspy Marshalla",
+ "countryNameVN": "Wietnam",
+ "countryNameBY": "Białoruś",
+ "countryNameMY": "Malezja",
+ "countryNameST": "Wyspy Świętego Tomasza i Książęca",
+ "countryNameLS": "Lesotho",
+ "countryNameBI": "Burundi",
+ "countryNameTD": "Czad",
+ "countryNameCX": "Wyspa Bożego Narodzenia",
+ "countryNameIR": "Iran",
+ "countryNameTV": "Tuvalu",
+ "countryNameGW": "Gwinea Bissau",
+ "countryNameUA": "Ukraina",
+ "countryNameCU": "Kuba",
+ "countryNameCO": "Kolumbia",
+ "countryNameNI": "Nikaragua",
+ "countryNameHR": "Chorwacja",
+ "countryNameSC": "Seszele",
+ "countryNameNL": "Holandia",
+ "countryNameUM": "Odległe Mniejsze Wyspy Stanów Zjednoczonych",
+ "countryNameIM": "Wyspa Man",
+ "countryNameFJ": "Fidżi",
+ "countryNameSR": "Surinam",
+ "countryNameGT": "Gwatemala",
+ "countryNameSM": "San Marino",
+ "countryNameLA": "Laos",
+ "countryNameGB": "Zjednoczone Królestwo",
+ "countryNameBB": "Barbados",
+ "countryNameSI": "Słowenia",
+ "countryNameAM": "Armenia",
+ "countryNameAR": "Argentyna",
+ "countryNamePM": "Saint-Pierre i Miquelon",
+ "countryNameTF": "Francuskie Terytoria Południowe i Antarktyczne",
+ "countryNameDO": "Dominikana",
+ "countryNameZW": "Zimbabwe",
+ "countryNameMQ": "Martynika",
+ "countryNamePT": "Portugalia",
+ "countryNameCF": "Republika Środkowoafrykańska",
+ "countryNameBE": "Belgia",
+ "countryNameKM": "Komory",
+ "countryNameLY": "Libia",
+ "countryNameIE": "Irlandia",
+ "countryNameKP": "Koreańska Republika Ludowo-Demokratyczna",
+ "countryNameGG": "Guernsey",
+ "countryNameSK": "Słowacja",
+ "countryNameTC": "Turks i Caicos",
+ "countryNameNP": "Nepal",
+ "countryNameBF": "Burkina Faso",
+ "countryNameYE": "Jemen",
+ "countryNameBA": "Bośnia i Hercegowina",
+ "countryNameGP": "Gwadelupa",
+ "countryNameMS": "Montserrat",
+ "countryNameCL": "Chile",
+ "countryNameIQ": "Irak",
+ "countryNameSJ": "Svalbard i Jan Mayen",
+ "countryNameAX": "Wyspy Alandzkie",
+ "countryNameKE": "Kenia",
+ "countryNameGU": "Guam",
+ "countryNameBM": "Bermudy",
+ "countryNameFO": "Wyspy Owcze",
+ "countryNameBL": "Saint Barthélemy",
+ "countryNameLB": "Liban",
+ "countryNameJM": "Jamajka",
+ "countryNameAF": "Afganistan",
+ "countryNameES": "Hiszpania",
+ "countryNameMC": "Monako",
+ "countryNameSG": "Singapur",
+ "countryNameAL": "Albania",
+ "countryNameSN": "Senegal",
+ "countryNameSZ": "Suazi",
+ "countryNameBZ": "Belize",
+ "countryNameCI": "Wybrzeże Kości Słoniowej (Côte d’Ivoire)",
+ "countryNameTW": "Tajwan",
+ "countryNameUY": "Urugwaj",
+ "countryNameCK": "Wyspy Cooka",
+ "countryNameTH": "Tajlandia",
+ "countryNameHM": "Wyspy Heard i McDonalda",
+ "countryNameGD": "Grenada",
+ "countryNameUS": "Stany Zjednoczone",
+ "countryNameAT": "Austria",
+ "countryNameKR": "Korea Południowa",
+ "countryNamePK": "Pakistan",
+ "countryNameDK": "Dania",
+ "countryNameSV": "Salwador",
+ "countryNamePW": "Palau",
+ "countryNameET": "Etiopia",
+ "countryNameMG": "Madagaskar",
+ "countryNameCR": "Kostaryka",
+ "countryNameLU": "Luksemburg",
+ "countryNameQA": "Katar",
+ "countryNameBT": "Bhutan",
+ "countryNameSB": "Wyspy Salomona",
+ "countryNameAE": "Zjednoczone Emiraty Arabskie",
+ "countryNameAD": "Andora",
+ "countryNameCV": "Wyspy Zielonego Przylądka",
+ "countryNameAG": "Antigua i Barbuda",
+ "countryNameMU": "Mauritius",
+ "countryNameHU": "Węgry",
+ "countryNameSX": "Sint Maarten",
+ "countryNameCH": "Szwajcaria",
+ "countryNamePN": "Pitcairn",
+ "countryNameGL": "Grenlandia",
+ "countryNamePH": "Filipiny",
+ "countryNameMT": "Malta",
+ "countryNameKN": "Saint Kitts i Nevis",
+ "countryNameLK": "Sri Lanka",
+ "countryNameKI": "Kiribati",
+ "countryNameBJ": "Benin",
+ "countryNameLV": "Łotwa",
+ "countryNamePY": "Paragwaj"
+ }
+ }
}
diff --git a/Documentation/Strings-pt.json b/Documentation/Strings-pt.json
index 360f961..7341501 100644
--- a/Documentation/Strings-pt.json
+++ b/Documentation/Strings-pt.json
@@ -1,1842 +1,4 @@
{
- "InstallContextType": {
- "device": "Device",
- "deviceContext": "Device context",
- "user": "User",
- "userContext": "User context"
- },
- "WipPolicySettings": {
- "addNetworkBoundary": "Add network boundary",
- "addNetworkBoundaryButton": "Add network boundary...",
- "allowWindowsSearch": "Allow Windows Search to search encrypted corporate data and Store apps",
- "authoritativeIpRanges": "Enterprise IP Ranges list is authoritative (do not auto-detect)",
- "authoritativeProxyServers": "Enterprise Proxy Servers list is authoritative (do not auto-detect)",
- "boundaryType": "Boundary type",
- "cloudResources": "Cloud resources",
- "corporateIdentity": "Corporate identity",
- "dataRecoveryCert": "Upload a Data Recovery Agent (DRA) certificate to allow recovery of encrypted data",
- "editNetworkBoundary": "Edit network boundary",
- "enrollmentState": "Enrollment state",
- "iPv4Ranges": "IPv4 ranges",
- "iPv6Ranges": "IPv6 ranges",
- "internalProxyServers": "Internal proxy servers",
- "maxInactivityTime": "Maximum amount of time (in minutes) allowed after the device is idle that will cause the device to become PIN or password locked",
- "maxPasswordAttempts": "Number of authentication failures allowed before the device will be wiped",
- "mdmDiscoveryUrl": "MDM discovery URL",
- "mdmRequiredSettingsInfo": "This policy only applies to Windows 10 Anniversary Edition and higher. This policy uses Windows Information Protection (WIP) to apply protection.",
- "minimumPinLength": "Set the minimum number of characters required for the PIN",
- "name": "Name",
- "networkBoundariesGridEmptyText": "Any network boundaries you add will show up here",
- "networkBoundary": "Network boundary",
- "networkDomainNames": "Network domains",
- "neutralResources": "Neutral resources",
- "passportForWork": "Use Windows Hello for Business as a method for signing into Windows",
- "pinExpiration": "Specify the period of time (in days) that a PIN can be used before the system requires the user to change it",
- "pinHistory": "Specify the number of past PINs that can be associated to a user account that can’t be reused",
- "pinLowercaseLetters": "Configure the use of lowercase letters in the Windows Hello for Business PIN",
- "pinSpecialCharacters": "Configure the use of special characters in the Windows Hello for Business PIN",
- "pinUppercaseLetters": "Configure the use of uppercase letters in the Windows Hello for Business PIN",
- "protectUnderLock": "Prevent corporate data from being accessed by apps when the device is locked. Applies only to Windows 10 Mobile",
- "protectedDomainNames": "Protected domains",
- "proxyServers": "Proxy servers",
- "requireAppPin": "Disable app PIN when device PIN is managed",
- "requiredSettings": "Required settings",
- "requiredSettingsInfo": "Changing the scope or removing this policy will decrypt corporate data.",
- "revokeOnMdmHandoff": "Revoke access to protected data when the device enrolls to MDM",
- "revokeOnUnenroll": "Revoke encryption keys on unenroll",
- "rmsTemplateForEdp": "Specify the template ID to use for Azure RMS",
- "showWipIcon": "Show the enterprise data protection icon",
- "type": "Type",
- "useRmsForWip": "Use Azure RMS for WIP",
- "value": "Value",
- "weRequiredSettingsInfo": "This policy only applies to Windows 10 Creators Update and higher. This policy uses Windows Information Protection (WIP) and Windows MAM to apply protection.",
- "wipProtectionMode": "Windows Information Protection mode",
- "withEnrollment": "With enrollment",
- "withoutEnrollment": "Without enrollment"
- },
- "EdgeAppConfig": {
- "AllowedURLs": {
- "title": "Allowed URLs",
- "tooltip": "Specify the sites your users are allowed to access while in their work context. No other sites will be allowed. You may choose to configure either an allowed/blocked list, but not both. "
- },
- "ApplicationProxyRedirection": {
- "header": "Application proxy",
- "title": "Application proxy redirection",
- "tooltip": "Enable App proxy redirection to give users access to corporate links and on-premise web apps."
- },
- "BlockedURLs": {
- "title": "Blocked URLs",
- "tooltip": "Specify the sites that are blocked for your users while in their work context. All other sites will be allowed. You may choose to configure either an allowed/blocked list, but not both. "
- },
- "Bookmarks": {
- "header": "Managed bookmarks",
- "tooltip": "Enter a list of bookmarked URLs for your users to have available when using Microsoft Edge in their work context.",
- "uRL": "URL"
- },
- "HomepageURL": {
- "header": "Managed homepage",
- "title": "Homepage shortcut URL",
- "tooltip": "Configure a homepage shortcut that will appear to users as the first icon beneath the search bar when they open a new tab in Microsoft Edge."
- },
- "PersonalContext": {
- "label": "Redirect restricted sites to personal context",
- "tooltip": "Configure if users should be allowed to transition to their personal context to open restricted sites."
- }
- },
- "AzureIAM": {
- "AdrsUserActionSelectionWarning": {
- "conditions": "Conditions that require device registration are not available with \"Register or join devices\" user action.",
- "message": "Only \"Require multi-factor authentication\" can be used in policies created for the \"Register or join devices\" user action.{0}"
- },
- "AuthContext": {
- "Included": {
- "none": "No cloud apps, actions, or authentication contexts selected",
- "plural": "{0} authentication contexts included",
- "singular": "1 authentication context included"
- },
- "InfoBlade": {
- "createTitle": "Add authentication context",
- "descPlaceholder": "Add description for the authentication context",
- "modifyTitle": "Modify authentication context",
- "namePlaceholder": "Ex. Trusted location, Trusted device, Strong authorization",
- "publishDesc": "Publish to apps will make the authentication context available for apps to use. Publish once you finish configuring Conditional Access policy for the tag. [Learn more][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150966",
- "publishLabel": "Publish to apps",
- "titleDesc": "Configure an authentication context that will be used to protect application data and actions. Use names and descriptions that can be understood by application administrators. [Learn more][1]\n[1]:https://go.microsoft.com/fwlink/?linkid=2150965"
- },
- "Notify": {
- "failure": "Failed to update {0}",
- "modifying": "Modifying {0}",
- "success": "Successfully updated {0}"
- },
- "WhatIf": {
- "selected": "Authentication context included"
- },
- "addNewStepUp": "New authentication context",
- "checkBoxInfo": "Select the authentication contexts this policy will apply to",
- "configure": "Configure authentication contexts",
- "createCA": "Assign Conditional Access policies to the authentication context",
- "dataGrid": "List of authentication contexts",
- "description": "Description",
- "documentation": "Documentation",
- "getStarted": "Get started",
- "label": "Authentication context (preview)",
- "menuLabel": "Authentication context (Preview)",
- "name": "Name",
- "noAuthContextSet": "There are no authentication contexts",
- "noData": "No authentication contexts to display",
- "selectionInfo": "Authentication context is used to secure application data and actions in apps like SharePoint and Microsoft Cloud App Security.",
- "step": "Step",
- "tabDescription": "Manage authentication context to protect data and actions in your apps. [Learn more][1]\n[1]:https://go.microsoft.com/fwlink/?linkid=2150965",
- "tagResources": "Tag resources with an authentication context"
- },
- "AuthenticationStrength": {
- "Mode": {
- "deviceBasedPush": "Microsoft Authenticator (Phone Sign-in)",
- "deviceBasedPushFido2X509Certificate": "Microsoft Authenticator (Phone Sign-in) + Fido 2 + Certificate Based Authentication",
- "deviceBasedPushX509CertificateSingleFactor": "Microsoft Authenticator (Phone Sign-in) + Fido 2 + Certificate Based Authentication (Single Factor)",
- "email": "Email One Time Pass",
- "emailOtp": "Email OTP",
- "federatedMultiFactor": "Federated Multi-Factor",
- "federatedSingleFactor": "Federated single factor",
- "federatedSingleFactorFederatedMultiFactor": "Federated single factor + Federated Multi-Factor",
- "fido2": "FIDO 2 security key",
- "fido2X509CertificateSingleFactor": "FIDO 2 security key + Certificate Based Authentication (Single Factor)",
- "hardwareOath": "Hardware OTP",
- "hardwareOathX509CertificateSingleFactor": "Hardware OTP + Certificate Based Authentication (Single Factor)",
- "microsoftAuthenticatorPSIX509CertificateSingleFactor": "Microsoft Authenticator (Phone Sign-in) + Certificate Based Authentication (Single Factor)",
- "microsoftAuthenticatorPsi": "Microsoft Authenticator (Phone Sign-in)",
- "microsoftAuthenticatorPush": "Microsoft Authenticator (Push Notification)",
- "microsoftAuthenticatorPushX509CertificateSingleFactor": "Microsoft Authenticator (Push Notification) + Certificate Based Authentication (Single Factor)",
- "none": "None",
- "password": "Password",
- "passwordDeviceBasedPush": "Password + Microsoft Authenticator (Phone Sign-in)",
- "passwordFido2": "Password + FIDO 2 security key",
- "passwordHardwareOath": "Password + Hardware OTP",
- "passwordMicrosoftAuthenticatorPSI": "Password + Microsoft Authenticator (Phone Sign-in)",
- "passwordMicrosoftAuthenticatorPush": "Password + Microsoft Authenticator (Push Notification)",
- "passwordSms": "Password + SMS",
- "passwordSoftwareOath": "Password + Software OTP",
- "passwordTemporaryAccessPassMultiUse": "Password + Temporary Access Pass (Multi-use)",
- "passwordTemporaryAccessPassOneTime": "Password + Temporary Access Pass (One-time use)",
- "passwordVoice": "Password + Voice",
- "sms": "SMS",
- "smsSignIn": "SMS sign in",
- "smsX509CertificateSingleFactor": "SMS + Certificate Based Authentication (Single Factor)",
- "softwareOath": "Software OTP",
- "softwareOathX509CertificateSingleFactor": "Software OTP + Certificate Based Authentication (Single Factor)",
- "temporaryAccessPassMultiUse": "Temporary Access Pass (Multi-use)",
- "temporaryAccessPassMultiUseX509CertificateSingleFactor": "Temporary Access Pass (Multi-use) + Certificate Based Authentication (Single Factor)",
- "temporaryAccessPassOneTime": "Temporary Access Pass (One-time use)",
- "temporaryAccessPassOneTimeX509CertificateSingleFactor": "Temporary Access Pass (One-time use) + Certificate Based Authentication (Single Factor)",
- "voice": "Voice",
- "voiceX509CertificateSingleFactor": "Voice + Certificate Based Authentication (Single Factor)",
- "windowsHelloForBusiness": "Windows Hello For Business",
- "x509CertificateMultiFactor": "Certificate Based Authentication (Multi-Factor)",
- "x509CertificateSingleFactor": "Certificate Based Authentication (Single Factor)"
- }
- },
- "CAS": {
- "BuiltinPolicy": {
- "Option": {
- "blockDownloads": "Block downloads (Preview)",
- "monitorOnly": "Monitor only (Preview)",
- "protectDownloads": "Protect downloads (Preview)",
- "useCustomControls": "Use custom policy..."
- },
- "ariaLabel": "Choose the kind of Conditional Access App Control to apply"
- }
- },
- "ChooseApplications": {
- "Grid": {
- "appIdAria": "App ID: {0}"
- },
- "LowerGrid": {
- "ariaLabel": "List of selected cloud apps"
- },
- "UpperGrid": {
- "ariaLabel": "List of cloud apps which match the search term"
- }
- },
- "ChooseLocations": {
- "Validation": {
- "failed": "With \"Selected locations\" you must choose at least one location.",
- "selector": "Choose at least one location"
- }
- },
- "ClientApp": {
- "Clients": {
- "Validation": {
- "failed": "You must select at least one of the following clients"
- }
- }
- },
- "ClientConditionsInfo": {
- "browserAndModern": "This policy only applies to browser and modern authentication apps. To apply the policy to all client apps, enable the client app condition and select all the client apps.",
- "classicExperience": "Since this policy was created, the default client apps configuration has been updated.",
- "legacyAuth": "When not configured, policies now apply to all client apps, including modern and legacy auth."
- },
- "CloudAppFilterBlade": {
- "AssignmentFilter": {
- "header": "Attribute",
- "placeholder": "Choose an attribute"
- },
- "Configure": {
- "infoBalloon": "Configure app filters you want to policy to apply to."
- },
- "NoPermissions": {
- "learnMoreAria": "More about custom security attribute permissions.",
- "message": "You do not have the permissions needed to use custom security attributes."
- },
- "gridHeader": "Using custom security attributes you can use the rule builder or rule syntax text box to create or edit the filter rules. In the preview, only attributes of type String are supported. Attributes of type Integer or Boolean will not be shown.",
- "learnMoreAria": "More information about using the rule builder and syntax text box.",
- "noAttributes": "There are no custom attributes available to filter on. You will need to configure some attributes to employ this filter.",
- "title": "Edit filter (Preview)"
- },
- "CloudAppsUserActions": {
- "any": "Any cloud app or action",
- "infoBalloon": "Cloud app or user action you want to test. For example, 'SharePoint Online'",
- "learnMore": "Control access based on all or specific cloud apps or actions.",
- "learnMoreB2C": "Control access based on all or specific cloud apps.",
- "title": "Cloud apps or actions"
- },
- "CloudappsSelectionBlade": {
- "Excluded": {
- "gridAria": "List of excluded cloud apps"
- },
- "Filter": {
- "configured": "Configured",
- "label": "Edit filter (Preview)",
- "with": "{0} with {1}"
- },
- "Included": {
- "gridAria": "List of included cloud apps"
- },
- "Validation": {
- "authContext": "With \"authentication context\" you must configure at least one sub-item.",
- "selectApps": "\"{0}\" must be configured",
- "selector": "Select at least one app.",
- "userActions": "With \"User actions\" you must configure at least one sub-item."
- }
- },
- "DeviceState": {
- "LearnMore": {
- "message": "Control user access when the device the user is signing-in from is not \"Hybrid Azure AD joined\" or \"marked as compliant\".\n '{0}' has been deprecated. Use '{1}' instead."
- }
- },
- "Errors": {
- "notFound": "The policy was not found or has been deleted.",
- "notFoundDetailed": "The policy \"{0}\" no longer exists. It may have been deleted."
- },
- "NamedLocation": {
- "Form": {
- "CountryLookup": {
- "ariaLabel": "Country lookup method",
- "gps": "Determine location by GPS coordinates",
- "info": "When the location condition of a Conditional Access policy is configured, users will be prompted by the Authenticator app to share their GPS location. ",
- "ip": "Determine location by IP address (IPv4 only)"
- },
- "Header": {
- "new": "New location ({0})",
- "update": "Update location ({0})"
- },
- "IP": {
- "learn": "Configure named location IPv4 and IPv6 ranges.\n[Learn more][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
- },
- "Include": {
- "infoBalloon": "Unknown countries/regions are IP addresses that are not associated with a specific country or region. [Learn more][1]\n\nThis includes:\n* IPv6 addresses\n* IPv4 addresses without a direct mapping\n[1]: https://aka.ms/canamedlocations\n",
- "label": "Include unknown countries/regions"
- },
- "Name": {
- "empty": "Name cannot be empty",
- "placeholder": "Name this location"
- },
- "PrivateLink": {
- "learn": "Create a new named location containing Private Links for Azure AD.\n[Learn more][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
- },
- "Search": {
- "countries": "Search countries",
- "names": "Search names",
- "privateLinks": "Search Private Links"
- },
- "Trusted": {
- "label": "Mark as trusted location"
- },
- "enter": "Enter a new IPv4 or IPv6 range",
- "example": "ex: 40.77.182.32/27 or 2a01:111::/32"
- },
- "Label": {
- "addCountries": "Countries location",
- "addIpRange": "IP ranges location",
- "addPrivateLink": "Azure Private Links"
- },
- "Notification": {
- "Create": {
- "Failed": {
- "description": "Failure in creating new location ({0})",
- "title": "Creation has failed"
- },
- "InProgress": {
- "description": "Creating new location ({0})",
- "title": "Creation in progress"
- },
- "Success": {
- "description": "Success in creating new location ({0})",
- "title": "Creation has succeeded"
- }
- },
- "Delete": {
- "Failed": {
- "description": "Failure in deleting location ({0})",
- "title": "Deletion has failed"
- },
- "InProgress": {
- "description": "Deleting location ({0})",
- "title": "Deletion in progress"
- },
- "Success": {
- "description": "Success in deleting location ({0})",
- "title": "Deletion has succeeded"
- }
- },
- "Update": {
- "Failed": {
- "description": "Failure in updating location ({0})",
- "title": "Updating has failed"
- },
- "InProgress": {
- "description": "Updating location ({0})",
- "title": "Updating in progress"
- },
- "Success": {
- "description": "Success in updating location ({0})",
- "title": "Updating has succeeded"
- }
- }
- },
- "PrivateLinks": {
- "grid": "List of Private Links"
- },
- "Trusted": {
- "title": "Trusted type",
- "trusted": "Trusted"
- },
- "Type": {
- "all": "All types",
- "countries": "Countries",
- "ipRanges": "IP ranges",
- "privateLinks": "Private Links",
- "title": "Location type"
- },
- "iPRangeInvalidError": "Value must be a valid IPv4 or IPv6 range.",
- "iPRangeLinkOrSiteLocalError": "IP network detected as a link local or site local address.",
- "iPRangeOctetError": "IP network must not start with 0 or 255.",
- "iPRangePrefixError": "IP network prefix must be from /{0} to /{1}.",
- "iPRangePrivateError": "IP network detected as a private address."
- },
- "Policies": {
- "Grid": {
- "aria": "List of Conditional Access policies"
- },
- "countText": "{0} out of {1} policies found",
- "countTextSingular": "{0} out of 1 policy found",
- "search": "Search policies"
- },
- "Policy": {
- "Condition": {
- "ServicePrincipalRisk": {
- "description": "Configure service principal risk levels needed for policy to be enforced",
- "infoBalloonContent": "Configure service principal risk to apply the policy to selected risk level(s)",
- "title": "Service principal risk"
- }
- }
- },
- "PolicyControlAuthStrength": {
- "MultiFactorAuthentication": {
- "description": "Combinations of methods that satisfy strong authentication, such as Password + SMS",
- "displayName": "Multi-factor authentication (MFA)"
- },
- "Passwordless": {
- "description": "Passwordless methods that satisfy strong authentication, such as Microsoft Authenticator ",
- "displayName": "Passwordless MFA"
- },
- "PhishingResistant": {
- "description": "Phishing-resistant Passwordless methods for the strongest authentication, such as FIDO2 Security Key",
- "displayName": "Phishing resistant MFA"
- }
- },
- "PolicyControlFedAuthMethod": {
- "certificate": "Certificate authentication",
- "infoBubble": "Specify a required authentication method, that must be satisfied by federation provider, such as ADFS.",
- "multifactor": "Multi-factor authentication",
- "require": "Require federated authentication method (Preview)",
- "whatIfFormat": "{0} - {1}"
- },
- "PolicyState": {
- "off": "Off",
- "on": "On",
- "reportOnly": "Report-only"
- },
- "PolicyTemplates": {
- "Devices": {
- "description": "Select Devices policy template category to gain visibility into devices accessing the network. Ensure compliance and health status before granting access.",
- "name": "Devices"
- },
- "Identities": {
- "description": "Select Identities policy template category to verify and secure each identity with strong authentication across your entire digital estate.",
- "name": "Identities"
- },
- "Summary": {
- "CloudApps": {
- "allCloudApps": "All apps",
- "office365": "Office 365",
- "registerSecurityInfo": "Register security information"
- },
- "Conditions": {
- "androidAndIOS": "Device Platform: Android and IOS",
- "anyDevice": "Any device except Android, IOS, Windows and Mac",
- "anyDeviceStateExceptHybrid": "Any device state except compliant and hybrid Azure AD joined",
- "anyLocation": "Any location except trusted",
- "browserMobileDesktop": "Client apps: Browser, Mobile apps and desktop clients",
- "exchangeActiveSync": "Client Apps: Exchange Active Sync, Other Clients",
- "windowsAndMac": "Device Platform: Windows and Mac"
- },
- "Devices": {
- "anyDevice": "Any Device"
- },
- "Grant": {
- "appProtectionPolicy": "Require app protection policy",
- "approvedClientApp": "Require approved client app",
- "blockAccess": "Block access",
- "mfa": "Require multi-factor authentication",
- "passwordChange": "Require password change",
- "requireCompliantDevice": "Require device to be marked as compliant",
- "requireHybridAzureADDevice": "Require hybrid Azure AD joined device"
- },
- "Session": {
- "appEnforcedRestrictions": "Use app enforced restrictions",
- "signInFrequency": "Sign-in Frequency and never persistent browser session"
- },
- "UsersAndGroups": {
- "allUsers": "All Users",
- "directoryRoles": "Directory roles except current administrator",
- "globalAdmin": "Global Administrator",
- "noGuestAndAdmins": "All Users except Guest and External, Global administrators, Current administrator"
- },
- "azureManagement": "Azure Management",
- "deviceFilters": "Filters for devices",
- "devicePlatforms": "Device Platforms"
- },
- "TemplateId": {
- "AppEnforcedRestrictions": {
- "description": "Block or limit access to SharePoint, OneDrive, and Exchange content from unmanaged devices.",
- "name": "CA014: Use application enforced restrictions for unmanaged devices",
- "title": "Use application enforced restrictions for unmanaged devices"
- },
- "ApprovedClientApps": {
- "description": "To prevent data loss, organizations can restrict access to approved modern auth client apps with Intune app protection.",
- "name": "CA012: Require approved client apps and app protection",
- "title": "Require approved client apps and app protection"
- },
- "BlockAccessOnUnknowns": {
- "description": "Users will be blocked from accessing company resources when the device type is unknown or unsupported.",
- "name": "CA010: Block access for unknown or unsupported device platform",
- "title": "Block access for unknown or unsupported device platform"
- },
- "BlockLegacyAuth": {
- "description": "Block legacy authentication endpoints that can be used to bypass multi-factor authentication. ",
- "name": "CA003: Block legacy authentication",
- "title": "Block legacy authentication"
- },
- "NoPersistentBrowserSession": {
- "description": "Protect user access on unmanaged devices by preventing browser sessions from remaining signed in after the browser is closed and setting a sign-in frequency to 1 hour.",
- "name": "CA011: No persistent browser session",
- "title": "No persistent browser session"
- },
- "RequireCompliantOrHybridADAdmins": {
- "description": "Require privileged administrators to only access resources when using a compliant or hybrid Azure AD joined device.",
- "name": "CA009: Require compliant or hybrid Azure AD joined device for admins",
- "title": "Require compliant or hybrid Azure AD joined device for admins"
- },
- "RequireCompliantOrHybridADAllUsers": {
- "description": "Protect access to company resources by requiring users to use a managed device or perform multi-factor authentication. (macOS or Windows only)",
- "name": "CA013: Require compliant or hybrid Azure AD joined device or multi-factor authentication for all users",
- "title": "Require compliant or hybrid Azure AD joined device or multi-factor authentication for all users"
- },
- "RequireMFAAllUsers": {
- "description": "Require multi-factor authentication for all user accounts to reduce risk of compromise.",
- "name": "CA004: Require multi-factor authentication for all users",
- "title": "Require multi-factor authentication for all users"
- },
- "RequireMFAForAdmins": {
- "description": "Require multi-factor authentication for privileged administrative accounts to reduce risk of compromise. This policy will target the same roles as Security Default.",
- "name": "CA001: Require multi-factor authentication for admins",
- "title": "Require multi-factor authentication for admins"
- },
- "RequireMFAForAzureManagement": {
- "description": "Require multi-factor authentication to protect privileged access to Azure resources.",
- "name": "CA006: Require multi-factor authentication for Azure management",
- "title": "Require multi-factor authentication for Azure management"
- },
- "RequireMFAForGuestAccess": {
- "description": "Require guest users perform multi-factor authentication when accessing your company resources.",
- "name": "CA005: Require multi-factor authentication for guest access",
- "title": "Require multi-factor authentication for guest access"
- },
- "RequireMFAForRiskySignIn": {
- "description": "Require multi-factor authentication if the sign-in risk is detected to be medium or high. (Requires an Azure AD Premium 2 License)",
- "name": "CA007: Require multi-factor authentication for risky sign-ins",
- "title": "Require multi-factor authentication for risky sign-ins"
- },
- "RequirePasswordChangeForHighRiskUsers": {
- "description": "Require the user to change their password if the user risk is detected to be high. (Requires an Azure AD Premium 2 License)",
- "name": "CA008: Require password change for high-risk users",
- "title": "Require password change for high-risk users"
- },
- "RequireSecurityInfo": {
- "description": "Secure when and how users register for Azure AD multi-factor authentication and self-service password. ",
- "name": "CA002: Securing security info registration",
- "title": "Securing security info registration"
- }
- },
- "TemplateState": {
- "BlockAccessOnUnknowns": {
- "title": "Enabling this policy will prevent any access from unknown device type, consider using report only mode to begin with until you have confirmed this will not impact your users."
- },
- "BlockLegacyAuth": {
- "description": "Consider using report only mode to begin with until you have confirmed this will not impact your users.",
- "title": "Enabling this policy will block legacy authentication for all your users."
- },
- "RequireCompliantOrHybridADAdmins": {
- "Description": {
- "on": "Consider using report only mode to begin with until you have confirmed this will not impact your privileged users.",
- "reportOnly": "Policies in report-only mode that require compliant devices may prompt users on Mac, iOS, and Android to select a device certificate during policy evaluation, even though device compliance is not enforced. These prompts may repeat until the device is made compliant."
- },
- "Title": {
- "on": "Enabling this policy will prevent any access for privileged users unless using a managed device such as compliant or hybrid Azure AD joined. Ensure you have configured your compliance policies or enabled hybrid Azure AD configuration before enabling.",
- "reportOnly": "Ensure you have configured your compliance policies or enabled hybrid Azure AD configuration before enabling. "
- }
- },
- "RequireCompliantOrHybridADAllUsers": {
- "Description": {
- "on": "This policy will affect all users except the current logged in Administrator. Consider using report only mode to begin with until you have confirmed this will not impact your users."
- },
- "Title": {
- "on": "Don't lock yourself out! Make sure that your device is compliant, or hybrid Azure AD Joined or you have configured multi-factor authentication. ",
- "reportOnly": "Policies in report-only mode that require compliant devices may prompt users on Mac, iOS, and Android to select a device certificate during policy evaluation, even though device compliance is not enforced. These prompts may repeat untli the device is made compliant."
- }
- },
- "RequireMfa": {
- "description": "If you use emergency access accounts or Azure AD connect to synchronize your on-premises objects, you may need to exclude these accounts from this policy after creation."
- },
- "RequireMfaAdmins": {
- "description": "Please note the current administrator account will automatically be excluded but all others will be protected on policy creation. Consider using report only mode to begin with.",
- "title": "Don't lock yourself out! This policy impacts the Azure portal."
- },
- "RequireMfaAllUsers": {
- "description": "Consider using report only mode to begin with until you have planned and communicated this change to all your users.",
- "title": "Enabling this policy will enforce multi-factor authentication for all your users."
- },
- "RequireSecurityInfo": {
- "description": "Please ensure you review your configuration to protect these accounts based on your company needs.",
- "title": "The following users and roles are excluded from this policy, Guests and External Users, Global Administrators, Current Administrator"
- }
- },
- "basics": "Basics",
- "clientApps": "Client apps",
- "cloudApps": "Cloud apps",
- "cloudAppsOrActions": "Cloud apps or actions ",
- "conditions": "Conditions ",
- "createNewPolicy": "Create new policy from templates (Preview)",
- "createPolicy": "Create Policy",
- "currentUser": "Current user",
- "customizeBuild": "Customize your build",
- "customizeTemplate": "Template lists are customized based on the type of policy you're looking to create",
- "excludedDevicePlatform": "Excluded device platforms",
- "excludedDirectoryRoles": "Excluded directory roles",
- "excludedLocation": "Excluded directory roles",
- "excludedUsers": "Excluded users",
- "grantControl": "Grant control ",
- "includeFilteredDevice": "Include filtered devices in policy",
- "includedDevicePlatform": "Included device platforms",
- "includedDirectoryRoles": "Included directory roles",
- "includedLocation": "Included location",
- "includedUsers": "Included users",
- "legacyAuthenticationClients": "Legacy authentication clients",
- "namePolicy": "Name your policy",
- "next": "Next",
- "policyName": "Policy Name",
- "policyState": "Policy state",
- "policySummary": "Policy summary",
- "policyTemplate": "Policy template",
- "previous": "Previous",
- "reviewAndCreate": "Review + create",
- "riskLevels": "Risk levels",
- "selectATemplate": "Select a Template",
- "selectTemplate": "Select template",
- "selectTemplateCategory": "Select a template category",
- "selectTemplateRecommendation": "We recommend the following templates based on your response",
- "sessionControl": "Session control ",
- "signInFrequency": "Sign-in frequency",
- "signInRisk": "Sign-in risk",
- "template": "Template ",
- "templateCategory": "Template category",
- "userRisk": "User risk",
- "usersAndGroups": "Users and groups ",
- "viewPolicySummary": "View policy summary "
- },
- "SSM": {
- "MemberSelector": {
- "description": "Users and groups"
- },
- "Notification": {
- "Migration": {
- "error": "Failed to migrate Continuous access evaluation settings to Conditional access policies",
- "inProgress": "Migrating Continuous access evaluation settings",
- "success": "Successfully migrated Continuous access evaluation settings to Conditional access policies",
- "successDescription": "Please proceed to Conditional access policies to view the migrated settings in the newly created policy named \"CA policy created from CAE settings\"."
- },
- "error": "Failed to update Continuous access evaluation settings",
- "inProgress": "Updating Continuous access evaluation settings",
- "success": "Successfully updated Continuous access evaluation settings"
- },
- "PreviewOptions": {
- "disable": "Disable preview",
- "enable": "Enable preview"
- },
- "StrictLocationEnforcement": {
- "infoContent1": "Different IPs can be seen by Azure AD and Resource Provider from the same client device due to network partition or IPv4/IPv6 mismatch. Strict Location Enforcement will enforce the Conditional Access policy based on both IP addresses seen by Azure AD and Resource Provider.",
- "infoContent2": "To ensure maximum security, it is recommended to include all IPs that can be seen by both Azure AD and Resource Provider in your Named Location policy and turn on \"Strict Location Enforcement\" mode.",
- "label": "Strict Location Enforcement",
- "title": "Additional enforcement modes"
- },
- "bladeTitle": "Continuous access evaluation",
- "description": "When a user's access is removed or a client IP address changes, Continuous access evaluation automatically blocks access to resources and applications in near real time. ",
- "migrateLabel": "Migrate",
- "migrationError": "Migration failed due to the following error: {0}",
- "migrationInfo": "CAE setting has been moved under Conditional Access UX, please migrate with the “Migrate” button above and configure it with Conditional Access policy going forward. Click here to learn more.",
- "noLicenseMessage": "Manage smart session management settings with Azure AD Premium",
- "optionsPickerTitle": "Enable/Disable Continuous access evaluation",
- "upsellInfo": "You cannot change your settings on this page anymore and any settings here should be disregarded. Your previous setting will be honored. You can configure your CAE settings under Conditional Access going forward. Click here to learn more."
- },
- "SessionLifetime": {
- "PersistentBrowser": {
- "Error": {
- "notAllApps": "Persistent browser session policy only works correctly when \"All cloud apps\" is selected. Please update your cloud apps selection."
- },
- "Option": {
- "always": "Always persistent",
- "help": "A persistent browser session allows users to remain signed in after closing and reopening their browser window.
\n\n- This setting works correctly when \"All cloud apps\" are selected
\n- This does not affect token lifetimes or the sign-in frequency setting.
\n- This will override the \"Show option to stay signed in\" policy in Company Branding.
\n- \"Never persistent\" will override any persistent SSO claims passed in from federated authentication services.
\n- \"Never persistent\" will prevent SSO on mobile devices across applications and between applications and the user's mobile browser.
\n",
- "label": "Persistent browser session",
- "never": "Never persistent"
- },
- "Warning": {
- "allApps": "Persistent browser session only works correctly when All cloud apps is selected. Please change your cloud apps selection. Click here to learn more."
- }
- },
- "SignInFrequency": {
- "Aria": {
- "units": "Hours or days",
- "value": "Frequency"
- },
- "Option": {
- "Day": {
- "plural": "{0} days",
- "singular": "1 day"
- },
- "Hour": {
- "plural": "{0} hours",
- "singular": "1 hour"
- },
- "daysOption": "Days",
- "everytime": "Every time",
- "help": "Time period before a user is asked to sign-in again when attempting to access a resource. The default setting is a rolling window of 90 days, i.e. users will be asked to re-authenticate on the first attempt to access a resource after being inactive on their machine for 90 days or longer.",
- "hoursOption": "Hours",
- "label": "Sign-in frequency",
- "placeholder": "Select units"
- }
- },
- "mainOption": "Modify session lifetime",
- "mainOptionHelp": "Configure how often users will get prompted and whether browser sessions will be persisted. Applications that don't support modern authentication protocols might not honor these policies. In such cases please contact the application developer."
- },
- "SigninRisk": {
- "LearnMore": {
- "message": "Control user access to respond to specific sign-in risk levels."
- }
- },
- "SingleSelectorActive": {
- "failed": "Unable to load this data.",
- "reattempt": "Loading data. Reattempt {0} of {1}."
- },
- "TimeCondition": {
- "Errors": {
- "both": "Invalid \"Include\" or \"Exclude\" time range.",
- "daysOfWeek": "{0} Make sure to specify at least one day of the week.",
- "endBeforeStart": "{0} Make sure start date/time is earlier than end date/time.",
- "exclude": "Invalid \"Exclude\" time range.",
- "generic": "{0} Make sure both days of the week and time zone are set. If \"All day\" is not checked, start time and end time need to be set as well.",
- "include": "Invalid \"Include\" time range.",
- "timeMissing": "{0} Make sure to specify both a start and end time.",
- "timeZone": "{0} Make sure to specify a time zone.",
- "timesAndZone": "{0} Make sure you set start time, end time and time zone."
- }
- },
- "UserActions": {
- "Included": {
- "none": "No cloud apps or actions selected",
- "plural": "{0} user actions included",
- "singular": "1 user action included"
- },
- "accessRequirement1": "Level 1",
- "accessRequirement2": "Level 2",
- "accessRequirement3": "Level 3",
- "accessRequirementsLabel": "Accessing secured app data",
- "appsActionsAuthTitle": "Cloud apps, actions, or authentication context",
- "appsOrActionsSelectorInfoBallonText": "Applications accessed or user actions",
- "appsOrActionsTitle": "Cloud apps or actions",
- "label": "User actions",
- "mainOptionsLabel": "Select what this policy applies to",
- "registerOrJoinDevices": "Register or join devices",
- "registerSecurityInfo": "Register security information",
- "selectionInfo": "Select the action this policy will apply to"
- },
- "UserSelectionBlade": {
- "DirectoryRoles": {
- "ariaLabel": "Choose directory roles"
- },
- "Excluded": {
- "gridAria": "List of excluded users"
- },
- "Included": {
- "gridAria": "List of included users"
- },
- "Validation": {
- "customRoleIncluded": "\"Directory Roles\" includes at least one custom role",
- "customRoleSelected": "At least one custom role is selected",
- "failed": "\"{0}\" must be configured",
- "roles": "Select at least one role",
- "usersGroups": "Select at least one user or group"
- },
- "learnMore": "Control access based on who the policy will apply to, such as users and groups, workload identities, directory roles, or external guests."
- },
- "ValidationResult": {
- "blockEveryonePolicy": "Policy configuration not supported. Review the assignments and controls.",
- "invalidApplicationCondition": "Invalid cloud applications selected",
- "invalidClientTypesCondition": "Invalid client apps selected",
- "invalidConditions": "Assignments are not selected",
- "invalidControls": "Invalid controls selected",
- "invalidDevicePlatformsCondition": "Invalid device platforms selected",
- "invalidDevicesCondition": "Invalid device configuration. Likely an invalid \"{0}\" configuration.",
- "invalidGrantControlPolicy": "Invalid grant control",
- "invalidLocationsCondition": "Invalid locations selected",
- "invalidPolicy": "Assignments are not selected",
- "invalidSessionControlPolicy": "Invalid session control",
- "invalidSignInRisksCondition": "Invalid sign-in risk selected",
- "invalidUserRisksCondition": "Invalid user risk selected",
- "invalidUsersCondition": "Invalid users selected",
- "mamPolicyShouldOnlyTargetAndroidOrIosPlatforms": "MAM policy can only be applied to Android or iOS client platforms.",
- "notSupportedCombination": "Policy configuration is not supported. Learn more about supported policies.",
- "pending": "Validating policy",
- "requireComplianceEveryonePolicy": "Policy configuration will require device compliance for all users. Review the assignments selected.",
- "success": "Valid policy"
- },
- "VpnCert": {
- "Grid": {
- "aria": "List of VPN Certificates"
- }
- },
- "WarningsInfo": {
- "Controls": {
- "compliantDeviceEnabled": "Don't lock yourself out! Make sure that your device is compliant.",
- "domainJoinedDeviceEnabled": "Don't lock yourself out! Make sure that your device is Hybrid Azure AD Joined.",
- "exchangeDisabled": "Exchange ActiveSync only supports \"Compliant device\" and \"Approved client app\" controls. Click to learn more.",
- "exchangeDisabled2": "Exchange ActiveSync only supports \"Compliant device\", \"Approved client app\" and \"Compliant client app\" controls. Click to learn more.",
- "notAvailableForSP": "Some controls are not available due to '{0}' selection in policy assignment",
- "requireAuthOrMfa": "\"{0}\" cannot be used with \"{1}\"",
- "requireMfa": "Consider testing the new \"{0}\" public preview",
- "requirePasswordChangeEnabled": "\"Require password change\" can only be used when policy is assigned to \"All cloud apps\""
- },
- "Policies": {
- "Linux": {
- "devicePlatformsReportOnlyPolicy": "Policies in Report-only mode requiring compliant devices may prompt users on macOS, iOS, Android, and Linux to select a device certificate.",
- "excludeDevicePlatforms": "Exclude device platforms macOS, iOS, Android, and Linux from this policy.",
- "proceedAnywayDevicePlatforms": "Proceed with selected configuration. Users on macOS, iOS, Android, and Linux may receive prompts when the device is checked for compliance."
- },
- "blockCurrentUserPolicy": "Don't lock yourself out! We recommend applying a policy to a small set of users first to verify it behaves as expected. We also recommend excluding at least one administrator from this policy. This ensures that you still have access and can update a policy if a change is required. Please review the affected users and apps.",
- "devicePlatformsReportOnlyPolicy": "Policies in Report-only mode requiring compliant devices may prompt users on macOS, iOS, and Android to select a device certificate.",
- "excludeCurrentUserSelection": "Exclude current user, {0}, from this policy.",
- "excludeDevicePlatforms": "Exclude device platforms macOS, iOS, and Android from this policy.",
- "proceedAnywayDevicePlatforms": "Proceed with selected configuration. Users on macOS, iOS, and Android may receive prompts when the device is checked for compliance.",
- "proceedAnywaySelection": "I understand that my account will be impacted by this policy. Proceed anyway."
- },
- "ServicePrincipals": {
- "blockExchange": "Selecting Office 365 Exchange Online will also affect apps such as OneDrive and Teams.",
- "blockPortal": "Don't lock yourself out! This policy impacts the Azure portal. Before you continue, ensure that you or someone else will be able to get back into the portal.",
- "blockPortalWithSession": "Don't lock yourself out! This policy impacts the Azure portal. Before you continue, ensure that you or someone else will be able to get back into the portal.
Disregard this warning if you are configuring persistent browser session policy that works correctly only if \"All cloud apps\" are selected.",
- "blockSharePoint": "Selecting SharePoint Online will also affect apps such as Microsoft Teams, Planner, Delve, MyAnalytics, and Newsfeed.",
- "blockSkype": "Selecting Skype for Business Online will also affect Microsoft Teams.",
- "includeOrExclude": "You can configure the App Filter for '{0}' or '{1}', but not both.",
- "selectAppsNAForSP": "Individual cloud apps cannot be selected due to '{0}' selection in policy assignment",
- "teamsBlocked": "Microsoft Teams will also be affected when apps such as SharePoint Online and Exchange Online are included in policy."
- },
- "Users": {
- "blockAllUsers": "Don't lock yourself out! This policy will affect all of your users. We recommend applying a policy to a small set of users first to verify it behaves as expected."
- }
- },
- "WhatIf": {
- "Device": {
- "AttributesGrid": {
- "aria": "List of attributes on the device employed during sign-in.",
- "infoBalloon": "List of attributes on the device employed during sign-in."
- }
- }
- },
- "advancedTabText": "Advanced",
- "allCloudAppsErrorBox": "\"All cloud apps\" must be selected when \"Require password change\" grant is selected",
- "allDayCheckboxLabel": "All day",
- "allDevicePlatforms": "Any device",
- "allGuestUserInfoContent": "Includes Azure AD B2B guests, but not SharePoint B2B guests",
- "allGuestUserLabel": "All guest and external users",
- "allRiskLevelsOption": "All risk levels",
- "allTrustedLocationLabel": "All trusted locations",
- "allUserGroupSetSelectorLabel": "All users and groups selected",
- "allUsersString": "All users",
- "and": "{0} AND {1} ",
- "andWithGrouping": "({0}) AND {1} ",
- "androidDisplayName": "Android",
- "anyCloudAppSelection": "Any cloud app",
- "appContextOptionInfoContent": "Requested authentication tag",
- "appContextOptionLabel": "Requested authentication tag (Preview)",
- "appContextUriPlaceholder": "Example: uri:contoso.com:level3",
- "appEnforceInfoBubble": "App enforced restrictions might require additional admin configurations within the cloud apps. The restrictions will only take effect for new sessions.",
- "appNotSetSeletorLabel": "0 cloud apps selected",
- "applyConditionClientAppInfoBalloonContent": "Configure client apps to apply the policy to specific client apps",
- "applyConditionDevicePlatformInfoBalloonContent": "Configure device platforms to apply the policy to specific platforms",
- "applyConditionDeviceStateInfoBalloonContent": "Configure device state to apply the policy to specific device state(s)",
- "applyConditionLocationInfoBalloonContent": "Configure locations to apply the policy to trusted/untrusted locations",
- "applyConditionSigninRiskInfoBalloonContent": "Configure sign-in risk to apply the policy to selected risk level(s)",
- "applyConditionUserRiskInfoBalloonContent": "Configure user risk to apply the policy to selected risk level(s)",
- "applyConditonLabel": "Configure",
- "ariaLabelPolicyDisabled": "Policy is disabled",
- "ariaLabelPolicyEnabled": "Policy is enabled",
- "ariaLabelPolicyReportOnly": "Policy is in Report-only mode",
- "blockAccess": "Block access",
- "builtInDirectoryRoleLabel": "Built-in directory roles",
- "casCustomControlInfo": "Custom policies need to be configured in Cloud App Security portal. This control works instantly for featured apps and can be self onboarded for any app. Click here to learn more about both scenarios.",
- "casInfoBubble": "This control works for various cloud apps.",
- "casPreconfiguredControlInfo": "This control works instantly for featured apps and can be self onboarded for any app. Click here to learn more about both scenarios.",
- "cert64DownloadCol": "Download base64 certificate",
- "cert64Name": "VpnBase64Cert",
- "certDownloadCol": "Download certificate",
- "certDurationCol": "Expiry",
- "certDurationStartCol": "Valid from",
- "certName": "VpnCert",
- "chooseApplicationsBladeSubtitle": "",
- "chooseApplicationsBladeTitle": "Choose Applications",
- "chooseApplicationsCartSubitle": "",
- "chooseApplicationsCartTitle": "Chosen Applications",
- "chooseApplicationsEmpty": "No Applications",
- "chooseApplicationsNone": "None",
- "chooseApplicationsNoneFound": "We didn't find \"{0}\". Try another name or ID.",
- "chooseApplicationsPlural": "{0} and {1} more",
- "chooseApplicationsReAuthEverytimeInfo": "Looking for your app? Some applications cannot be used with \"Require reauthentication – every time\" session control",
- "chooseApplicationsRemove": "Remove",
- "chooseApplicationsReturnedPlural": "{0} applications found",
- "chooseApplicationsReturnedSingular": "1 application found",
- "chooseApplicationsSearchBalloon": "Search for an Application by entering its name or ID.",
- "chooseApplicationsSearchHint": "Search Applications...",
- "chooseApplicationsSearchLabel": "Applications",
- "chooseApplicationsSearching": "Searching...",
- "chooseApplicationsSelect": "Select",
- "chooseApplicationsSelected": "Selected",
- "chooseApplicationsSingular": "{0} and 1 more",
- "chooseApplicationsTooMany": "More results than can be shown. Please filter using the search box.",
- "chooseLocationCorpnetItem": "Corporate network",
- "chooseLocationSelectedLocationsLabel": "Selected locations",
- "chooseLocationTrustedIpsItem": "MFA Trusted IPs",
- "chooseLocationsBladeSubtitle": "",
- "chooseLocationsBladeTitle": "Choose Locations",
- "chooseLocationsCartSubitle": "",
- "chooseLocationsCartTitle": "Chosen Locations",
- "chooseLocationsEmpty": "No Locations",
- "chooseLocationsExcludedSelectorTitle": "Select",
- "chooseLocationsIncludedSelectorTitle": "Select",
- "chooseLocationsNone": "None",
- "chooseLocationsNoneFound": "We didn't find \"{0}\". Try another name or ID.",
- "chooseLocationsPlural": "{0} and {1} more",
- "chooseLocationsRemove": "Remove",
- "chooseLocationsReturnedPlural": "{0} locations found",
- "chooseLocationsReturnedSingular": "1 location found",
- "chooseLocationsSearchBalloon": "Search for a Location by entering its name.",
- "chooseLocationsSearchHint": "Search Locations...",
- "chooseLocationsSearchLabel": "Locations",
- "chooseLocationsSearching": "Searching...",
- "chooseLocationsSelect": "Select",
- "chooseLocationsSelected": "Selected",
- "chooseLocationsSelectionBladeExcludedSelectorTitle": "Select",
- "chooseLocationsSelectionBladeIncludedSelectorTitle": "Select",
- "chooseLocationsSingular": "{0} and 1 more",
- "chooseLocationsTooMany": "More results than can be shown. Please filter using the search box.",
- "claimProviderAddCommandText": "New custom control",
- "claimProviderAddNewBladeTitle": "New custom control",
- "claimProviderDeleteCommand": "Delete",
- "claimProviderDeleteDescription": "Are you sure you want to delete '{0}'? This action cannot be undone.",
- "claimProviderDeleteTitle": "Are you sure?",
- "claimProviderEditInfoText": "Enter the JSON for customized controls given by your claim providers.",
- "claimProviderNotificationCreateDescription": "Creating custom control named '{0}'",
- "claimProviderNotificationCreateFailedDescription": "Creating custom control '{0}' failed. Please try again later.",
- "claimProviderNotificationCreateFailedTitle": "Failed to create custom control",
- "claimProviderNotificationCreateSuccessDescription": "Created custom control named '{0}'",
- "claimProviderNotificationCreateSuccessTitle": "Created '{0}'",
- "claimProviderNotificationCreateTitle": "Creating '{0}'",
- "claimProviderNotificationDeleteDescription": "Deleting custom control named '{0}'",
- "claimProviderNotificationDeleteFailedDescription": "Deleting custom control '{0}' failed. Please try again later.",
- "claimProviderNotificationDeleteFailedTitle": "Failed to delete custom control",
- "claimProviderNotificationDeleteSuccessDescription": "Deleted custom control named '{0}'",
- "claimProviderNotificationDeleteSuccessTitle": "Deleted '{0}'",
- "claimProviderNotificationDeleteTitle": "Deleting '{0}'",
- "claimProviderNotificationUpdateDescription": "Updating custom control named '{0}'",
- "claimProviderNotificationUpdateFailedDescription": "Updating custom control '{0}' failed. Please try again later.",
- "claimProviderNotificationUpdateFailedTitle": "Failed to update custom control",
- "claimProviderNotificationUpdateSuccessDescription": "Updated custom control named '{0}'",
- "claimProviderNotificationUpdateSuccessTitle": "Updated '{0}'",
- "claimProviderNotificationUpdateTitle": "Updating '{0}'",
- "claimProviderValidationAppIdInvalid": "The \"AppId\" value is not valid. Please review and try again.",
- "claimProviderValidationClientIdMissing": "The data is missing a \"ClientId\" value. Please review and try again.",
- "claimProviderValidationControlClaimsRequestedMissing": "The \"Control\" is missing a \"ClaimsRequested\" value. Please review and try again.",
- "claimProviderValidationControlClaimsRequestedTypeMissing": "The \"ClaimsRequested\" item is missing a \"Type\" value. Please review and try again.",
- "claimProviderValidationControlIdAlreadyExists": "The \"Control\" \"Id\" value already exists. Please review and try again.",
- "claimProviderValidationControlIdMissing": "The \"Control\" is missing an \"Id\" value. Please review and try again.",
- "claimProviderValidationControlIdReferencedInExistingPolicy": "The \"Control\" \"Id\" value cannot be removed because it is referenced in an existing policy. Please remove it from the policy first.",
- "claimProviderValidationControlIdTooManyControls": "The \"Control\" property has too many controls. Please review and try again.",
- "claimProviderValidationControlIdValueReserved": "The \"Control\" \"Id\" value is a reserved keyword, please use a different id.",
- "claimProviderValidationControlNameAlreadyExists": "The \"Control\" \"Name\" value already exists. Please review and try again.",
- "claimProviderValidationControlNameMissing": "The \"Control\" is missing a \"Name\" value. Please review and try again.",
- "claimProviderValidationControlsMissing": "The data is missing a \"Controls\" value. Please review and try again.",
- "claimProviderValidationDiscoveryUrlMissing": "The data is missing a \"DiscoveryUrl\" value. Please review and try again.",
- "claimProviderValidationInvalid": "There data provided is not valid. Please review and try again.",
- "claimProviderValidationInvalidJsonDefinition": "Unable to save the custom control. Review the JSON text and try again.",
- "claimProviderValidationNameAlreadyExists": "The \"Name\" value already exists. Please review and try again.",
- "claimProviderValidationNameMissing": "The data is missing a \"Name\" value. Please review and try again.",
- "claimProviderValidationUnknown": "There was an unknown error while validating the data provided. Please review and try again.",
- "claimProvidersNone": "No custom controls",
- "claimProvidersSearchPlaceholder": "Search controls.",
- "classicPoilcyFilterTitle": "Show",
- "classicPolicyAllPlatforms": "All Platforms",
- "classicPolicyClientAppBrowserAndNative": "Browser, mobile apps and desktop clients",
- "classicPolicyCloudAppTitle": "Cloud application",
- "classicPolicyControlAllow": "Allow",
- "classicPolicyControlBlock": "Block",
- "classicPolicyControlBlockWhenNotAtWork": "Block access when not at work",
- "classicPolicyControlRequireCompliantDevice": "Require compliant device",
- "classicPolicyControlRequireDomainJoinedDevice": "Require domain joined device",
- "classicPolicyControlRequireMfa": "Require multi-factor authentication",
- "classicPolicyControlRequireMfaWhenNotAtWork": "Require multi-factor authentication when not at work",
- "classicPolicyDeleteCommand": "Delete",
- "classicPolicyDeleteFailTitle": "Failed to delete classic policy",
- "classicPolicyDeleteInProgressTitle": "Deleting classic policy",
- "classicPolicyDeleteSuccessTitle": "Classic policy deleted",
- "classicPolicyDetailBladeTitle": "Details",
- "classicPolicyDisableCommand": "Disable",
- "classicPolicyDisableConfirmation": "Are you sure you want to disable '{0}'? This action cannot be undone.",
- "classicPolicyDisableFailDescription": "Failed to disable '{0}'",
- "classicPolicyDisableFailTitle": "Failed to disable classic policy",
- "classicPolicyDisableInProgressDescription": "Disabling '{0}'",
- "classicPolicyDisableInProgressTitle": "Disabling classic policy",
- "classicPolicyDisableSuccessDescription": "Successfully disabled '{0}'",
- "classicPolicyDisableSuccessTitle": "Classic policy disabled",
- "classicPolicyEasSupportedPlatforms": "Exchange ActiveSync supported platforms",
- "classicPolicyEasUnsupportedPlatforms": "Exchange ActiveSync unsupported platforms",
- "classicPolicyExcludedPlatformsTitle": "Excluded device platforms",
- "classicPolicyFilterAll": "All policies",
- "classicPolicyFilterDisabled": "Disabled policies",
- "classicPolicyFilterEnabled": "Enabled policies",
- "classicPolicyIncludeExcludeMembersDescription": "By excluding groups, you can perform phased migration of policies.",
- "classicPolicyIncludeExcludeMembersTitle": "Include/exclude groups",
- "classicPolicyIncludedPlatformsTitle": "Included device platforms",
- "classicPolicyManualMigrationMessage": "This policy needs to be migrated manually.",
- "classicPolicyMigrateCommand": "Migrate",
- "classicPolicyMigrateConfirmation": "Are you sure you want to migrate '{0}'? This policy can only be migrated once.",
- "classicPolicyMigrateFailDescription": "Failed to migrate '{0}'",
- "classicPolicyMigrateFailTitle": "Failed to migrate classic policy",
- "classicPolicyMigrateInProgressDescription": "Migrating '{0}'",
- "classicPolicyMigrateInProgressTitle": "Migrating classic policy",
- "classicPolicyMigrateRecommendText": "Recommendation: Migrate to the new Azure portal policies.",
- "classicPolicyMigrateSuccessTitle": "Classic policy migrated successfully",
- "classicPolicyMigratedSuccessDescription": "This classic policy can now be managed under Polices.",
- "classicPolicyMigratedSuccessDescriptionMultiple": "This classic policy is migrated as {0} new policies. New policies can be managed under Policies.",
- "classicPolicyNoEditPermissionMsg": "You don't have permission to edit this policy. Only global administrators and security administrators can edit the policy. Click here for more information.",
- "classicPolicySaveFailDescription": "Failed to save '{0}'",
- "classicPolicySaveFailTitle": "Failed to save classic policy",
- "classicPolicySaveInProgressDescription": "Saving '{0}'",
- "classicPolicySaveInProgressTitle": "Saving classic policy",
- "classicPolicySaveSuccessDescription": "Successfully saved '{0}'",
- "classicPolicySaveSuccessTitle": "Classic policy saved",
- "clientAppBladeLegacyInfoBanner": "Legacy auth is currently not supported",
- "clientAppBladeLegacyUpsellBanner": "Block unsupported client apps (Preview)",
- "clientAppBladeTitle": "Client apps",
- "clientAppDescription": "Select the client apps this policy will apply to",
- "clientAppExchangeActiveSync": "Exchange ActiveSync",
- "clientAppExchangeDisabledInfo": "Exchange ActiveSync is available when Exchange Online is the only cloud app selected. Click to learn more",
- "clientAppExchangeWarning": "Exchange ActiveSync currently does not support all other conditions",
- "clientAppLearnMore": "Control user access to target specific client applications not using modern authentication.",
- "clientAppLegacyHeader": "Legacy authentication clients",
- "clientAppMobileDesktop": "Mobile apps and desktop clients",
- "clientAppModernHeader": "Modern authentication clients",
- "clientAppOnlySupportedPlatforms": "Apply policy only to supported platforms",
- "clientAppSelectSpecificClientApps": "Select client apps",
- "clientAppV2BladeTitle": "Client apps (Preview)",
- "clientAppWebBrowser": "Browser",
- "clientAppsSelectedLabel": "{0} included",
- "clientTypeBrowser": "Browser",
- "clientTypeEas": "Exchange ActiveSync clients",
- "clientTypeEasInfo": "Exchange ActiveSync clients that use legacy authentication only.",
- "clientTypeModernAuth": "Modern authentication clients",
- "clientTypeOtherClients": "Other clients",
- "clientTypeOtherClientsInfo": "This includes older office clients and other mail protocols(POP, IMAP, SMTP, etc). [Learn more][1]\n[1]: https://aka.ms/caclientapps\n",
- "cloudAppCountDiffBannerText": "{0} cloud apps configured in this policy have been deleted from the directory, but this doesn't affect the other apps in the policy. The next time you update the application section of the policy, the deleted apps will be automatically removed from it.",
- "cloudAppsSelectionBladeAllMicrosoftApps": "All Microsoft apps",
- "cloudAppsSelectionExcludeAllMicrosoftClients": "Allow Microsoft cloud, desktop and mobile apps (Preview)",
- "cloudappsSelectionBladeAllCloudapps": "All cloud apps",
- "cloudappsSelectionBladeExcludeDescription": "Select the cloud apps to exempt from the policy",
- "cloudappsSelectionBladeExcludedSelectorTitle": "Select excluded cloud apps",
- "cloudappsSelectionBladeIncludeDescription": "Select the cloud apps this policy will apply to",
- "cloudappsSelectionBladeIncludedSelectorTitle": "Select",
- "cloudappsSelectionBladeSelectedCloudapps": "Select apps",
- "cloudappsSelectorInfoBallonText": "Services which the user accesses to do work. For example, 'Salesforce'",
- "cloudappsSelectorUserPlural": "{0} apps",
- "cloudappsSelectorUserSingular": "1 app",
- "conditionLabelMulti": "{0} conditions selected",
- "conditionLabelOne": "1 condition selected",
- "conditionalAccessBladeTitle": "Conditional Access",
- "conditionsNotSelectedLabel": "Not configured",
- "conditionsReqPwSet": "Some options are not available due to the \"Require password change\" grant currently being selected",
- "configureCasText": "Configure Cloud App Security",
- "configureCustomControlsText": "Configure custom policy",
- "controlLabelMulti": "{0} controls selected",
- "controlLabelOne": "1 control selected",
- "controlValidatorText": "Please select at least one control",
- "controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
- "controlsDeviceComplianceInfoBubble": "Device must be Intune compliant. If the device is non-compliant, the user will be prompted to bring the device under compliance",
- "controlsDomainJoinedInfoBubble": "Devices must be Hybrid Azure AD joined.",
- "controlsMamInfoBubble": "Device must use these approved client applications.",
- "controlsMfaInfoBubble": "User must complete additional security requirements like phone call, text",
- "controlsOrAndInfoBubble": "ControlsOrAndInfoBubble",
- "controlsRequireCompliantAppInfoBubble": "Device must use policy protected apps.",
- "controlsRequirePasswordResetInfoBubble": "Require password change to lower user risk. This option also requires multi-factor authentication. Other controls can't be used.",
- "countriesRadiobuttonInfoBalloonContent": "The country/region a sign-in is coming from is determined by the user's IP address.",
- "createNewVpnCert": "New certificate",
- "createdTimeLabel": "Creation time",
- "customRoleLabel": "Custom roles (not supported)",
- "dateRangeTypeLabel": "Date range",
- "daysOfWeekPlaceholderText": "Filter days of the week",
- "daysOfWeekTypeLabel": "Days of the week",
- "deletePolicyNoLicenseText": "You can delete this policy now. Once deleted you will not be able to recreate it until you have the required licenses.",
- "descriptionContentForControlsAndOr": "For multiple controls",
- "devicePlatform": "Device platform",
- "devicePlatformConditionHelpDescription": "Apply policy to selected device platforms.\n[Learn more][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2044750",
- "devicePlatformInclude": "{0} included",
- "devicePlatformIncludeExclude": "{0} and {1} excluded",
- "devicePlatformNoSelectionError": "Select device platforms requires one sub-item to be selected.",
- "devicePlatformsNone": "None",
- "deviceSelectionBladeExcludeDescription": "Select the platforms to exempt from the policy",
- "deviceSelectionBladeIncludeDescription": "Select the device platforms to include in this policy",
- "deviceStateAll": "All device state",
- "deviceStateCompliant": "Device marked as compliant",
- "deviceStateCompliantInfoContent": "Devices that are Intune compliant will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Intune compliant.",
- "deviceStateConditionConfigureInfoContent": "Configure policy based on device state",
- "deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Hybrid Azure AD joined' or 'marked as compliant'.\n '{0}' has been deprecated. Use '{1}' instead.",
- "deviceStateConditionSelectorLabel": "Device state (Preview)",
- "deviceStateDomainJoined": "Device Hybrid Azure AD joined",
- "deviceStateDomainJoinedInfoContent": "Devices that are Hybrid Azure AD joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Hybrid Azure AD joined.",
- "deviceStateDomainJoinedInfoLinkText": "Learn more.",
- "deviceStateExcludeDescription": "Select the device state condition used to exclude devices from policy.",
- "deviceStateIncludeAndExcludeOneLabel": "{0} and exclude {1}",
- "deviceStateIncludeAndExcludeTwoLabel": "{0} and exclude {1}, {2}",
- "directoryRoleInfoContent": "Assign policy to built-in directory roles.",
- "directoryRolesLabel": "Directory roles",
- "discardbutton": "Discard",
- "downloadDefaultFileName": "IP Ranges",
- "downloadExampleFileName": "Example",
- "downloadExampleHeader": "This is an example file with demonstrations of the kinds of data which can be accepted. Lines starting with # will be ignored.",
- "endDatePickerLabel": "Ends",
- "endTimePickerLabel": "End time",
- "enterCountryText": "IP address and Country are evaluated in a pair. Select the Country.",
- "enterIpText": "IP address and Country are evaluated in a pair. Input the IP address.",
- "enterUserText": "No user is selected. Select a user.",
- "evaluationResult": "Evaluation result",
- "exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
- "exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync with supported platforms only",
- "excludeAllTrustedLocationSelectorText": "all trusted locations",
- "featureRequiresP2": "This feature requires Azure AD Premium 2 license.",
- "friday": "Friday",
- "grantControls": "Grant controls",
- "gridNetworkTrusted": "Trusted",
- "gridPolicyCreatedDateTime": "Creation Date",
- "gridPolicyEnabled": "Enabled",
- "gridPolicyModifiedDateTime": "Modified Date",
- "gridPolicyName": "Policy Name",
- "gridPolicyState": "State",
- "groupSelectionBladeExcludeDescription": "Select the groups to exempt from the policy",
- "groupSelectionBladeExcludedSelectorTitle": "Select excluded groups",
- "groupSelectionBladeSelect": "Select groups",
- "groupSelectorInfoBallonText": "Groups in the directory that the policy applies to. For example, 'Pilot group'",
- "groupsSelectionBladeTitle": "Groups",
- "helpCommonScenariosText": "Interested in common scenarios?",
- "helpCondition1": "When any user is outside the company network",
- "helpCondition2": "When users in the 'Managers' group sign-in",
- "helpConditionsTitle": "Conditions",
- "helpControl1": "They're required to sign in with multi-factor authentication",
- "helpControl2": "They are required be on an Intune compliant or domain-joined device",
- "helpControlsTitle": "Controls",
- "helpIntroText": "Conditional Access gives you the ability to enforce access requirements when specific conditions occur. Let's take a few examples",
- "helpIntroTitle": "What is Conditional Access?",
- "helpLearnMoreText": "Want to learn more about Conditional Access?",
- "helpStartStep1": "Create your first policy by clicking \"+ New policy\"",
- "helpStartStep2": "Specify policy Conditions and Controls",
- "helpStartStep3": "When you are done, don't forget to Enable policy and Create",
- "helpStartTitle": "Get started",
- "highRisk": "High",
- "includeAndExcludeAppsTextFormat": "Include: {0}. Exclude: {1}.",
- "includeAppsTextFormat": "Include: {0}.",
- "includeUnknownAreasCheckboxInfoBalloonContent": "Unknown areas are IP addresses that can't be mapped to a country/region.",
- "includeUnknownAreasCheckboxLabel": "Include unknown areas",
- "infoCommandLabel": "Info",
- "invalidCertDuration": "Invalid cert duration",
- "invalidIpAddress": "Value must be a valid IP address",
- "invalidUriErrorMsg": "Please enter a valid Uri. For example,'uri:contoso.com:acr' ",
- "iosDisplayName": "iOS",
- "linuxDisplayName": "Linux",
- "linuxDisplayNamePreview": "Linux (Preview)",
- "loadAll": "Load all",
- "loading": "Loading...",
- "locationConfigureNamedLocationsText": "Configure all trusted locations",
- "locationConfigureNamedLocationsUri": "{0}/usermanagement/mfasettings.aspx?tenantid={1}&culture={2}",
- "locationNameTooLongError": "Location name is too long. Maximum is 256 characters",
- "locationSelectionBladeExcludeDescription": "Select the locations to exempt from the policy",
- "locationSelectionBladeIncludeDescription": "Select the locations to include in this policy",
- "locationsAllLocationsLabel": "Any location",
- "locationsAllNamedLocationsLabel": "All trusted IPs",
- "locationsAllPrivateLinksLabel": "All Private Links in my tenant",
- "locationsIncludeExcludeLabel": "{0} and exclude all trusted IPs",
- "locationsSelectedPrivateLinksLabel": "Selected Private Links",
- "lowRisk": "Low",
- "macOsDisplayName": "macOS",
- "managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Azure AD Premium P1 or P2.",
- "markAsTrustedCheckboxInfoBalloonContent": "Signing in from a trusted location lowers a user's sign-in risk. Only mark this location as trusted if you know the IP ranges entered are established and credible in your organization.",
- "markAsTrustedCheckboxLabel": "Mark as trusted location",
- "mediumRisk": "Medium",
- "memberSelectionCommandRemove": "Remove",
- "menuItemClaimProviderControls": "Custom controls (Preview)",
- "menuItemClassicPolicies": "Classic policies",
- "menuItemInsightsAndReporting": "Insights and reporting",
- "menuItemManage": "Manage",
- "menuItemNamedLocationsPreview": "Named locations (Preview)",
- "menuItemNamedNetworks": "Named locations",
- "menuItemPolicies": "Policies",
- "menuItemTermsOfUse": "Terms of use",
- "modifiedTimeLabel": "Modified time",
- "monday": "Monday",
- "nameLabel": "Name",
- "namedLocationCountryInfoBanner": "Only IPv4 addresses are mapped to countries/regions. IPv6 addresses are included in unknown countries/regions.",
- "namedLocationTypeCountry": "Countries/Regions",
- "namedLocationTypeLabel": "Define the location using:",
- "namedLocationUpsellBanner": "This view has been deprecated. Go to the new and improved 'Named locations' view.",
- "namedLocationsHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/namedlocationupdate",
- "namedNetworkAddIpRanges": "Add a new IP range (ex: 40.77.182.32/27)",
- "namedNetworkCountryNeeded": "You need to select at least one country",
- "namedNetworkDeleteCommand": "Delete",
- "namedNetworkDeleteDescription": "Are you sure you want to delete '{0}'? This action cannot be undone.",
- "namedNetworkDeleteTitle": "Are you sure?",
- "namedNetworkDownloadIpRange": "Download",
- "namedNetworkInvalidRange": "Value must be a valid IP range.",
- "namedNetworkIpRangeNeeded": "You need at least one valid IP range",
- "namedNetworkIpRangesDescriptionContent": "Configure your organization's IP ranges",
- "namedNetworkIpRangesTab": "IP ranges",
- "namedNetworkListAdd": "New location",
- "namedNetworkListConfigureTrustedIps": "Configure MFA trusted IPs",
- "namedNetworkNameDescription": "Example: 'Redmond office'",
- "namedNetworkNameInvalid": "The supplied name is invalid.",
- "namedNetworkNameRequired": "You must supply a name for this location.",
- "namedNetworkNoIpRanges": "No IP ranges",
- "namedNetworkNotificationCreateDescription": "Creating location named '{0}'",
- "namedNetworkNotificationCreateFailedDescription": "Creating location '{0}' failed. Please try again later.",
- "namedNetworkNotificationCreateFailedTitle": "Failed to create location",
- "namedNetworkNotificationCreateSuccessDescription": "Created location named '{0}'",
- "namedNetworkNotificationCreateSuccessTitle": "Created '{0}'",
- "namedNetworkNotificationCreateTitle": "Creating '{0}'",
- "namedNetworkNotificationDeleteDescription": "Deleting location named '{0}'",
- "namedNetworkNotificationDeleteFailedDescription": "Deleting location '{0}' failed. Please try again later.",
- "namedNetworkNotificationDeleteFailedTitle": "Failed to Delete location",
- "namedNetworkNotificationDeleteSuccessDescription": "Deleted location named '{0}'",
- "namedNetworkNotificationDeleteSuccessTitle": "Deleted '{0}'",
- "namedNetworkNotificationDeleteTitle": "Deleting '{0}'",
- "namedNetworkNotificationUpdateDescription": "Updating location named '{0}'",
- "namedNetworkNotificationUpdateFailedDescription": "Updating location '{0}' failed. Please try again later.",
- "namedNetworkNotificationUpdateFailedTitle": "Failed to Update location",
- "namedNetworkNotificationUpdateSuccessDescription": "Updated location named '{0}'",
- "namedNetworkNotificationUpdateSuccessTitle": "Updated '{0}'",
- "namedNetworkNotificationUpdateTitle": "Updating '{0}'",
- "namedNetworkSearchPlaceholder": "Search locations.",
- "namedNetworkUploadFailedDescription": "There was an error parsing the supplied file. Please make sure to upload a plain-text file with each line in the CIDR format.",
- "namedNetworkUploadFailedTitle": "Failed to parse '{0}'",
- "namedNetworkUploadInProgressDescription": "Attempting to parse valid CIDR values from '{0}'.",
- "namedNetworkUploadInProgressTitle": "Parsing '{0}'",
- "namedNetworkUploadInvalidDescription": "'{0}' is either too large or in an invalid format.",
- "namedNetworkUploadInvalidTitle": "'{0}' Invalid",
- "namedNetworkUploadIpRange": "Upload",
- "namedNetworkUploadSuccessDescription": "{0} lines analyzed. {1} in a bad format. {2} skipped.",
- "namedNetworkUploadSuccessTitle": "Finished parsing '{0}'",
- "namedNetworksAdd": "New named location",
- "namedNetworksConditionHelpDescription": "Control user access based on their physical location.\n[Learn more][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
- "namedNetworksExcludeLabel": "{0} and {1} excluded",
- "namedNetworksHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
- "namedNetworksIncludeLabel": "{0} included",
- "namedNetworksNone": "No named locations found.",
- "namedNetworksTitle": "Configure locations",
- "namednetworkExceedingSizeErrorBladeTitle": "Error details",
- "namednetworkExceedingSizeErrorDetailText": "Click here for more details.",
- "namednetworkExceedingSizeErrorMessage": "You have exceeded the maximum allowed storage for named locations. Try again with a shorter list. Click here to view more details.",
- "newCertName": "new cert",
- "noPolicyRowMessage": "No policies",
- "noSPSelected": "No service principal selected",
- "noUpdatePermissionMessage": "You don't have permissions to update these settings. Please contact your global administrator to get access.",
- "noUserSelected": "No user selected",
- "noneRisk": "No risk",
- "office365Description": "These apps include Microsoft Flow, Microsoft Forms, Microsoft Teams, Office 365 Exchange Online, Office 365 SharePoint Online, Office 365 Yammer, and others.",
- "office365InfoBox": "At least one of the apps selected is part of Office 365. We recommend setting the policy on the Office 365 app instead.",
- "oneUserSelected": "1 user selected",
- "onlyGlobalAdminsCanSaveThisPolicyConfig": "Only global administrators can save this policy.",
- "or": "{0} OR {1} ",
- "pickerDoneCommand": "Done",
- "policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like Cloud apps, Sign-in risk, and Device platforms with Azure AD Premium",
- "policiesBladeTitle": "Policies",
- "policiesBladeTitleWithAppName": "Policies: {0}",
- "policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked sign-on attribute.",
- "policiesHitMaxLimitStatusBarMessage": "You've reached the maximum number of policies for this tenant. Delete some policies before creating more.",
- "policyAssignmentsSection": "Assignments",
- "policyBlockAllInfoBox": "The configured policy will block all users, so it is not supported. Review the assignments and controls. Exclude the current user {0}, if you would like to save this policy.",
- "policyCloudAppsDisplayTextAllApp": "All apps",
- "policyCloudAppsLabel": "Cloud apps",
- "policyConditionClientAppDescription": "Software the user is employing to access the cloud app. For example, 'Browser'",
- "policyConditionClientAppV2Description": "Software the user is employing to access the cloud app. For example, 'Browser'",
- "policyConditionDevicePlatform": "Device platforms",
- "policyConditionDevicePlatformDescription": "Platform the user is signing in from. For example, 'iOS'",
- "policyConditionLocation": "Locations",
- "policyConditionLocationDescription": "Location (determined using IP address range) the user is signing in from",
- "policyConditionSigninRisk": "Sign-in risk",
- "policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Azure AD Premium 2 license.",
- "policyConditionUserRisk": "User risk",
- "policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
- "policyConditioniClientApp": "Client apps",
- "policyConditioniClientAppV2": "Client apps (Preview)",
- "policyControlAllowAccessDisplayedName": "Grant access",
- "policyControlAuthenticationStrengthDisplayedName": "Require authentication strength (Preview)",
- "policyControlBladeTitle": "Grant",
- "policyControlBlockAccessDisplayedName": "Block access",
- "policyControlCompliantDeviceDisplayedName": "Require device to be marked as compliant",
- "policyControlContentDescription": "Control access enforcement to block or grant access.",
- "policyControlInfoBallonText": "Block access or select additional requirements which need to be satisfied to allow access",
- "policyControlMfaChallengeDisplayedName": "Require multi-factor authentication",
- "policyControlRequireCompliantAppDisplayedName": "Require app protection policy",
- "policyControlRequireDomainJoinedDisplayedName": "Require Hybrid Azure AD joined device",
- "policyControlRequireMamDisplayedName": "Require approved client app",
- "policyControlRequiredPasswordChangeDisplayedName": "Require password change",
- "policyControlSelectAuthStrength": "Require authentication strength",
- "policyControlsNoControlsSelected": "0 controls selected",
- "policyControlsSection": "Access controls",
- "policyCreatBladeTitle": "New",
- "policyCreateButton": "Create",
- "policyCreateFailedMessage": "Error: {0}",
- "policyCreateFailedTitle": "Failed to create '{0}'",
- "policyCreateInProgressTitle": "Creating '{0}'",
- "policyCreateSuccessMessage": "Successfully created '{0}'. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
- "policyCreateSuccessTitle": "Successfully created '{0}'",
- "policyDeleteConfirmation": "Are you sure you want to delete '{0}'? This action cannot be undone.",
- "policyDeleteFailTitle": "Failed to delete '{0}'",
- "policyDeleteInProgressTitle": "Deleting '{0}'",
- "policyDeleteSuccessTitle": "Successfully deleted '{0}'",
- "policyEnforceLabel": "Enable policy",
- "policyErrorCannotSetSigninRisk": "You don't have permission to save a policy with a sign-in risk condition.",
- "policyErrorNoPermission": "You don't have permission to save policy. Contact your global admin.",
- "policyErrorUnknown": "Something went wrong, please try again later.",
- "policyFallbackWarningMessage": "Failure to create or update '{0}' using MS Graph resulting in a fallback to AD Graph. Please investigate the following scenario as there is most likely a bug when calling the policy endpoint for MS Graph with an incompatible condition.",
- "policyFallbackWarningTitle": "Creating or updating '{0}' partially successful",
- "policyNameCannotBeEmpty": "Policy name can't be empty",
- "policyNameDevice": "Device policy",
- "policyNameFormat": "[{0}] {1}",
- "policyNameMam": "Mobile App Management policy",
- "policyNameMfaLocation": "MFA and location policy",
- "policyNamePlaceholderText": "Example: 'Device compliance app policy'",
- "policyNameTooLongError": "Policy name is too long. Maximum 256 characters",
- "policyOff": "Off",
- "policyOn": "On",
- "policyReportOnly": "Report-only",
- "policyReviewSection": "Review",
- "policySaveButton": "Save",
- "policyStatusIconDescription": "Policy is Enabled",
- "policyStatusIconEnabled": "Enabled status icon",
- "policyTemplateName1": "Use app enforced restrictions for {0} browser access",
- "policyTemplateName2": "Allow {0} access only on managed devices",
- "policyTemplateName3": "Policy migrated from Continuous Access Evaluation settings",
- "policyTriggerRiskSpecific": "Select specific risk level",
- "policyTriggersInfoBalloonText": "Conditions which define when the policy will apply. For example, 'location'",
- "policyTriggersNoConditionsSelected": "0 conditions selected",
- "policyTriggersSelectorLabel": "Conditions",
- "policyUpdateFailedMessage": "Error: {0}",
- "policyUpdateFailedTitle": "Failed to update {0}",
- "policyUpdateInProgressTitle": "Updating {0}",
- "policyUpdateSuccessMessage": "Successfully updated {0}. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
- "policyUpdateSuccessTitle": "Successfully updated {0}",
- "primaryCol": "Primary",
- "privateLinkLabel": "Azure AD Private Link",
- "reportOnlyInfoBox": "Report-only mode: Policies are evaluated and logged at sign-in but do not impact users.",
- "requireAllControlsText": "Require all the selected controls",
- "requireCompliantDevice": "Require compliant device",
- "requireDomainJoined": "Require domain-joined device",
- "requireMFA": "Require multi-factor authentication ",
- "requireOneControlText": "Require one of the selected controls",
- "resetFilters": "Reset filters",
- "sPRequired": "Service principal required",
- "sPSelectorInfoBalloon": "User or Service Principal you want to test",
- "saturday": "Saturday",
- "searchTextTooLongError": "The search text is too long. Maximum 256 characters",
- "securityDefaultsPolicyName": "Security defaults",
- "securityDefaultsTextMessage": "Security defaults must be disabled to enable Conditional Access policy.",
- "securityDefaultsWarningMessage": "It looks like you're about to manage your organization's security configurations. That's great! You must first disable Security defaults before enabling a Conditional Access policy.",
- "selectDevicePlatforms": "Select device platforms",
- "selectNamedNetworksSubtitle": "",
- "selectNamedNetworksTitle": "Select locations",
- "selectedSP": "Selected Service Principal",
- "servicePrincipalDataGridAria": "List of available service principals",
- "servicePrincipalDropDownLabel": "What does this policy apply to?",
- "servicePrincipalInfoBox": "Some conditions are not available due to '{0}' selection in policy assignment",
- "servicePrincipalRadioAll": "All owned service principals",
- "servicePrincipalRadioSelect": "Select service principals",
- "servicePrincipalSelectionsAria": "Selected service principals grid",
- "servicePrincipalSelectorAria": "List of chosen service principals",
- "servicePrincipalSelectorMultiple": "{0} service principals selected",
- "servicePrincipalSelectorSingle": "1 service principal selected",
- "servicePrincipalSpecificInc": "Specific service principals included",
- "servicePrincipals": "Service principals",
- "sessionControlBladeTitle": "Session",
- "sessionControlDescriptionContent": "Control access based on session controls to enable limited experiences within specific cloud applications.",
- "sessionControlDisableInfo": "This control only works with supported apps. Currently, Office 365, Exchange Online, and SharePoint Online are the only cloud apps that support app enforced restrictions. Click here to learn more.",
- "sessionControlInfoBallonText": "Session controls enable limited experience within a cloud app.",
- "sessionControls": "Session controls",
- "sessionControlsAppEnforcedLabel": "Use app enforced restrictions",
- "sessionControlsCasLabel": "Use Conditional Access App Control",
- "sessionControlsSecureSignInLabel": "Require token binding",
- "sharepointAppName": "SharePoint",
- "signinRiskDescription": "Select the sign-in risk level this policy will apply to",
- "signinRiskInclude": "{0} included",
- "signinRiskTriggerDescriptionContent": "Select the sign-in risk level",
- "singleTenantServicePrincipalInfoBallonText": "Policy only applies to single tenant service principals owned by your organization. Click here to learn more ",
- "specificSigninRiskLevelsOption": "Select specific sign-in risk levels",
- "specificUsersExcluded": "specific users excluded",
- "specificUsersIncluded": "Specific users included",
- "specificUsersIncludedAndExcluded": "Specific users excluded and included",
- "startDatePickerLabel": "Starts",
- "startFreeTrial": "Start a free trial",
- "startTimePickerLabel": "Start time",
- "sunday": "Sunday",
- "testButton": "What If",
- "thumbprintCol": "Thumbprint",
- "thursday": "Thursday",
- "timeConditionAllTimesLabel": "Any time",
- "timeConditionIntroText": "Configure the time this policy will apply to",
- "timeConditionSelectorInfoBallonContent": "When the user is signing in. For example, \"Wednesday 9am-5pm PST\"",
- "timeConditionSelectorLabel": "Time (Preview)",
- "timeConditionSpecificLabel": "Specific times",
- "timeSelectorAllTimesText": "Any time",
- "timeSelectorSpecificTimesText": "Specific times configured",
- "timeZoneDropdownInfoBalloonContent": "Select a time zone that defines the time range. This policy applies to users in all time zones. For example, 'Wednesday 9am - 5pm' for one user would be 'Wednesday 10am - 6pm' for a user in a different time zone.",
- "timeZoneDropdownLabel": "Time zone",
- "timeZoneDropdownPlaceholderText": "Select a time zone",
- "tooManyPoliciesDescription": "Only first 50 policies are being displayed now, click here to view all policies",
- "tooManyPoliciesTitle": "More than 50 policies found",
- "trustedLocationStatusIconDescription": "Location is trusted",
- "trustedLocationStatusIconEnabled": "Trusted status icon",
- "tuesday": "Tuesday",
- "uploadInBadState": "Unable to upload the specified file.",
- "upsellAppsDescription": "Require multi-factor authentication for sensitive applications all the time or only from outside the company network.",
- "upsellAppsTitle": "Secure applications",
- "upsellBannerText": "Get a free Premium trial to use this feature",
- "upsellDataDescription": "Require device to be marked as compliant or Hybrid Azure AD joined to allow access to company resources.",
- "upsellDataTitle": "Secure data",
- "upsellDescription": "Conditional Access provides the control and protection you need to keep your corporate data secure, while giving your people an experience that allows them to do their best work from any device. For instance, you can restrict access from outside the company network or restrict access to devices which meet the compliance policies.",
- "upsellRiskDescription": "Require multi-factor authentication for risk events detected by Microsoft's machine learning system.",
- "upsellRiskTitle": "Protect against risk",
- "upsellTitle": "Conditional Access",
- "upsellWhyTitle": "Why use Conditional Access?",
- "userAppNoneOption": "None",
- "userNamePlaceholderText": "Enter User Name",
- "userNotSetSeletorLabel": "0 users and groups selected",
- "userOnlySelectionBladeExcludeDescription": "Select the users to exempt from the policy",
- "userOrGroupSelectionCountDiffBannerText": "{0} configured in this policy have been deleted from the directory, but this doesn't affect the other users and groups in the policy. The next time you update the policy, the deleted users and/or groups will be automatically removed.",
- "userOrSPNotSetSelectorLabel": "0 users or workload identities selected",
- "userOrSPSelectionBladeTitle": "Users or workload identities",
- "userOrSPSelectorInfoBallonText": "Identities in the directory that the policy applies to, including users, groups, and service principals",
- "userRequired": "User Required",
- "userRiskErrorBox": "\"User risk\" condition must be selected when \"Require password change\" grant is selected",
- "userSPRequired": "User or Service principal required",
- "userSPSelectorTitle": "User or Workload identity",
- "userSelectionBladeAllUsersAndGroups": "All users and groups",
- "userSelectionBladeExcludeDescription": "Select the users and groups to exempt from the policy",
- "userSelectionBladeExcludeTabTitle": "Exclude",
- "userSelectionBladeExcludedSelectorTitle": "Select excluded users",
- "userSelectionBladeIncludeDescription": "Select the users this policy will apply to",
- "userSelectionBladeIncludeTabTitle": "Include",
- "userSelectionBladeIncludedSelectorTitle": "Select",
- "userSelectionBladeSelectUsers": "Select users",
- "userSelectionBladeSelectedUsers": "Select users and groups",
- "userSelectionBladeTitle": "Users and groups",
- "userSelectorBladeTitle": "Users",
- "userSelectorExcluded": "{0} excluded",
- "userSelectorGroupPlural": "{0} groups",
- "userSelectorGroupSingular": "1 group",
- "userSelectorIncluded": "{0} included",
- "userSelectorInfoBallonText": "Users and groups in the directory that the policy applies to. For example, 'Pilot group'",
- "userSelectorSelected": "{0} selected",
- "userSelectorTitle": "User",
- "userSelectorUserAndGroup": "{0}, {1}",
- "userSelectorUserPlural": "{0} users",
- "userSelectorUserSingular": "1 user",
- "userSelectorWithExclusion": "{0} and {1}",
- "usersGroupsLabel": "Users and groups",
- "viewApprovedAppsText": "See list of approved client apps",
- "viewCompliantAppsText": "See list of policy protected client apps",
- "vpnBladeTitle": "VPN connectivity",
- "vpnCertCreateFailedMessage": "Error: {0}",
- "vpnCertCreateFailedTitle": "Failed to create {0}",
- "vpnCertCreateInProgressTitle": "Creating {0}",
- "vpnCertCreateSuccessMessage": "Successfully created {0}.",
- "vpnCertCreateSuccessTitle": "Successfully created {0}",
- "vpnCertNoRowsMessage": "No VPN certificates found",
- "vpnCertUpdateFailedMessage": "Error: {0}",
- "vpnCertUpdateFailedTitle": "Failed to update {0}",
- "vpnCertUpdateInProgressTitle": "Updating {0}",
- "vpnCertUpdateSuccessMessage": "Successfully updated {0}.",
- "vpnCertUpdateSuccessTitle": "Successfully updated {0}",
- "vpnFeatureInfo": "For more information on VPN connectivity and Conditional Access, click here.",
- "vpnFeatureWarning": "Once a VPN certificate is created in the Azure portal, Azure AD will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
- "vpnMenuText": "VPN connectivity",
- "vpncertDropdownDefaultOption": "Duration",
- "vpncertDropdownInfoBalloonContent": "Select the duration for the cert you want to create",
- "vpncertDropdownLabel": "Select duration",
- "vpncertDropdownOneyearOption": "1 year",
- "vpncertDropdownThreeyearOption": "3 years",
- "vpncertDropdownTwoyearOption": "2 years",
- "wednesday": "Wednesday",
- "whatIfAppEnforcedControl": "Use app enforced restrictions",
- "whatIfBladeDescription": "Test the impact of Conditional Access on a user when signing in under certain conditions.",
- "whatIfBladeTitle": "What If",
- "whatIfClassicPoliciesWarning": "Classic policies are not evaluated by this tool.",
- "whatIfClientAppInfo": "The client app the user is signing in from. For example, 'Browser'.",
- "whatIfCountry": "Country",
- "whatIfCountryInfo": "The country the user is signing in from.",
- "whatIfDevicePlatformInfo": "The device platform the user is signing in from.",
- "whatIfDeviceStateInfo": "The device state the user is signing in from",
- "whatIfEnterIpAddress": "Enter IP address (ex: 40.77.182.32)",
- "whatIfErrorInvalidIpAddress": "An invalid IP address was specified.",
- "whatIfEvaResultApplication": "Cloud apps",
- "whatIfEvaResultClientApps": "Client app",
- "whatIfEvaResultDevicePlatform": "Device platform",
- "whatIfEvaResultEmptyPolicy": "Empty policy",
- "whatIfEvaResultInvalidCondition": "Invalid condition",
- "whatIfEvaResultInvalidPolicy": "Invalid policy",
- "whatIfEvaResultLocation": "Location",
- "whatIfEvaResultNotEnoughInformation": "Not enough information",
- "whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
- "whatIfEvaResultSignInRisk": "Sign-in risk",
- "whatIfEvaResultUsers": "Users and groups",
- "whatIfIpAddress": "IP address",
- "whatIfIpAddressInfo": "IP address the user is signing in from.",
- "whatIfIpCountryInfoBoxText": "If using an IP address or Country, both fields will be required and should correctly map together.",
- "whatIfPolicyAppliesTab": "Policies that will apply",
- "whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
- "whatIfReasons": "Reasons why this policy will not apply",
- "whatIfSelectClientApp": "Select a client app...",
- "whatIfSelectCountry": "Select country...",
- "whatIfSelectDevicePlatform": "Select device platform...",
- "whatIfSelectPrivateLink": "Select private link...",
- "whatIfSelectServicePrincipalRisk": "Select service principal risk...",
- "whatIfSelectSignInRisk": "Select sign-in risk...",
- "whatIfSelectType": "Select identity type",
- "whatIfSelectUserRisk": "Select user risk...",
- "whatIfServicePrincipalRiskInfo": "The risk level associated with the service principal",
- "whatIfSignInRisk": "Sign-in risk",
- "whatIfSignInRiskInfo": "The risk level associated with the sign-in",
- "whatIfUnknownAreas": "Unknown Areas",
- "whatIfUserPickerLabel": "Selected user",
- "whatIfUserPickerNoRowsLabel": "No user or service principal selected",
- "whatIfUserRiskInfo": "The risk level associated with the user",
- "whatIfUserSelectorInfo": "User in the directory that you want to test",
- "windows365InfoBox": "Selecting Windows 365 will affect connections to Cloud PCs and Azure Virtual Desktop session hosts. Click here to learn more.",
- "windowsDisplayName": "Windows",
- "windowsPhoneDisplayName": "Windows Phone",
- "workloadIdentities": "Workload identities (Preview)",
- "workloadIdentity": "Workload identity"
- },
- "ApplicableDeviceType": {
- "iPad": "iPad",
- "iPhoneAndIPod": "iPhone and iPod"
- },
- "TAPSettings": {
- "AllowedDataIngestionLocations": {
- "label": "Allow users to open data from selected services",
- "tooltip": "Select the application storage services users can open data from. All other services are blocked. Selecting no services will prevent users from opening data."
- },
- "AndroidBackup": {
- "label": "Backup org data to Android backup services",
- "tooltip": "Select {0} to prevent backup of org data to Android backup services. \nSelect {1} to permit backup of org data to Android backup services. \nPersonal or unmanaged data is not affected."
- },
- "AndroidBiometricAuthentication": {
- "label": "Biometrics instead of PIN for access",
- "tooltip": "Choose which android authentication methods people can use, if any, in place of an app PIN."
- },
- "AndroidFingerprint": {
- "label": "Fingerprint instead of PIN for access (Android 6.0+)",
- "tooltip": "Android OS uses fingerprint scans to authenticate Android-device users. This feature supports the native biometric controls on Android devices. OEM-specific biometric settings, like Samsung Pass, are not supported. If allowed, native biometric controls must be used to access the app on a capable device."
- },
- "AndroidOverrideFingerprint": {
- "label": "Override fingerprint with PIN after timeout"
- },
- "AppPIN": {
- "label": "App PIN when device PIN is set",
- "tooltip": "If not required, an app PIN does not need to be used to access the app if the device PIN is set on an MDM enrolled device.
\n\nNote: Intune cannot detect device enrollment with a third-party EMM solution on Android."
- },
- "BlockDataIngestionIntoOrganizationDocuments": {
- "label": "Open data into Org documents",
- "tooltip1": "Select Block to disable the use of the Open option or other options to share data between accounts in this app. Select Allow if you want to allow the use of Open and other options to share data between accounts in this app.",
- "tooltip2": "When set to Block, you can configure the following setting, Allow user to open data from selected services, to specify which services are allowed for Org data locations.",
- "tooltip3": "Note: This setting is only enforced if the setting \"Receive data from other apps\" is set to \"Policy managed apps\".
\nNote: This setting does not apply to all applications. For more information see {0}.",
- "tooltip4": "Note: This setting is only enforced if the setting \"Receive data from other apps\" is set to \"Policy managed apps\".
\nNote: This setting does not apply to all applications. For more information see {0} or {0}."
- },
- "ConnectToVpnOnLaunch": {
- "label": "Start Microsoft Tunnel connection on app-launch",
- "tooltip": "Allow connection to VPN when app is launch"
- },
- "CredentialsForAccess": {
- "label": "Work or school account credentials for access",
- "tooltip": "If required, work or school credentials must be used to access the policy-managed app. If PIN or biometric methods also required for access to the app, the work or school account credentials will be required on top of those prompts."
- },
- "CustomBrowserDisplayName": {
- "label": "Unmanaged Browser Name",
- "tooltip": "Enter the application name for browser associated with the \"Unmanaged Browser ID\". This name will be displayed to users if the specified browser is not installed."
- },
- "CustomBrowserPackageId": {
- "label": "Unmanaged Browser ID",
- "tooltip": "Enter the application ID for a single browser. Web content (http/s) from policy managed applications will open in the specified browser."
- },
- "CustomBrowserProtocol": {
- "label": "Unmanaged browser protocol",
- "tooltip": "Enter the protocol for a single unmanaged browser. Web content (http/s) from policy managed applications will open in any app that supports this protocol.
\n \nNote: Include only the protocol prefix. If your browser requires links of the form \"mybrowser://www.microsoft.com\", enter \"mybrowser\".
"
- },
- "CustomDialerAppDisplayName": {
- "label": "Dialer App Name"
- },
- "CustomDialerAppPackageId": {
- "label": "Dialer App Package ID"
- },
- "CustomDialerAppProtocol": {
- "label": "Dialer App URL Scheme"
- },
- "Cutcopypaste": {
- "label": "Restrict cut, copy, and paste between other apps",
- "tooltip": "Cut, copy, and paste data between your app and other approved apps installed on the device. Choose to block these actions completely between apps, allow these actions for use with any app, or restrict use to apps that your organization manages.
\n\nPolicy-managed apps with paste in gives you the option to accept incoming content pasted from another app. However, it blocks users from sharing content outwardly, unless sharing with a managed app.
"
- },
- "DialerRestrictionLevel": {
- "iosTooltip": "Typically, when a user selects a hyperlinked phone number in an app, a dialer app will open with the phone number prepopulated and ready to call. For this setting, choose how to handle this type of content transfer when it's initiated from a policy-managed app. Additional steps may be necessary in order for this setting to take effect. First, verify that tel and telprompt have been removed from the Select apps to exempt list. Then, ensure the application is using a newer version of Intune SDK (Version 12.7.0+).",
- "label": "Transfer telecommunication data to",
- "tooltip": "Typically, when a user selects a hyperlinked phone number in an app, a dialer app will open with the phone number prepopulated and ready to call. For this setting, choose how to handle this type of content transfer when it's initiated from a policy-managed app."
- },
- "EncryptData": {
- "label": "Encrypt org data",
- "link": "https://docs.microsoft.com/en-us/intune/app-protection-policy-settings-android#data-relocation-settings",
- "tooltip": "Select {0} to enforce encrypting org data with Intune app layer encryption.\n
\nSelect {1} to not enforce encrypting org data with Intune app layer encryption.\n\n
\nNote: For more information on Intune app layer encryption, see {2}."
- },
- "EncryptDataAndroid": {
- "tooltip": "Choose Require to enable encryption of work or school data in this app. Intune uses an OpenSSL, 256-bit AES encryption scheme along with the Android Keystore system to securely encrypt app data. Data is encrypted synchronously during file I/O tasks. Content on the device storage is always encrypted. The SDK will continue to provide support of 128-bit keys for compatibility with content and apps that use older SDK versions.
\n\nThe encryption method is FIPS 140-2 compliant.
"
- },
- "EncryptDataIos": {
- "tooltip1": "Choose Require to enable encryption of work or school data in this app. Intune enforces iOS/iPadOS device encryption to protect app data while the device is locked. Applications may optionally encrypt app data using Intune APP SDK encryption. Intune APP SDK uses iOS/iPadOS cryptography methods to apply 128-bit AES encryption to app data.",
- "tooltip2": "When you enable this setting, the user may be required to set up and use a PIN to access their device. If there's no device PIN and encryption is required, the user is prompted to set a PIN with the message \"Your organization has required you to first enable a device PIN to access this app.\"",
- "tooltip3": "Go to the official Apple documentation to see which iOS encryption modules are FIPS 140-2 compliant or pending FIPS 140-2 compliance."
- },
- "EncryptDataOnEnrolledDevices": {
- "label": "Encrypt org data on enrolled devices",
- "tooltip": "Select {0} to enforce encrypting org data with Intune app layer encryption on all devices.
\n\nSelect {1} to not enforce encrypting org data with Intune app layer encryption on enrolled devices."
- },
- "IOSBackup": {
- "label": "Backup org data to iTunes and iCloud backups",
- "tooltip": "Select {0} to prevent backup of org data to iTunes or iCloud. \nSelect {1} to permit backup of org data to iTunes or iCloud. \nPersonal or unmanaged data is not affected."
- },
- "IOSFaceID": {
- "label": "Face ID instead of PIN for access (iOS 11+/iPadOS)",
- "tooltip": "Face ID uses facial recognition technology to authenticate users on iOS/iPadOS devices. Intune calls the LocalAuthentication API to authenticate users using Face ID. If allowed, Face ID must be used to access the app on a Face ID capable device."
- },
- "IOSOverrideTouchId": {
- "label": "Override biometrics with PIN after timeout"
- },
- "IOSTouchId": {
- "label": "Touch ID instead of PIN for access (iOS 8+/iPadOS)",
- "tooltip": "Touch ID uses fingerprint recognition technology to authenticate users on iOS devices. Intune calls the LocalAuthentication API to authenticate users using Touch ID. If allowed, Touch ID must be used to access the app on a Touch ID capable device."
- },
- "NotificationRestriction": {
- "label": "Org data notifications",
- "tooltip": "Select one of the following options to specify how notifications for org accounts are shown for this app and any connected devices such as wearables:
\n{0}: Do not share notifications.
\n{1}: Do not share org data in notifications. If not supported by the application, notifications are blocked.
\n{2}: Share all notifications.
\n Android only:\n Note: This setting does not apply to all applications. For more information see {3}
\n \n iOS only:\nNote: This setting does not apply to all applications. For more information see {4}
"
- },
- "OpenLinksManagedBrowser": {
- "label": "Restrict web content transfer with other apps",
- "tooltip": "Select one of the following options to specify the apps that this app can open web content in:
\nEdge: Allow web content to open only in Edge
\nUnmanaged browser: Allow web content to open only in the unmanaged browser defined by \"Unmanaged browser protocol\" setting
\nAny app: Allow web links in any app
"
- },
- "OverrideBiometric": {
- "tooltip": "If required, depending on the timeout (minutes of inactivity), a PIN prompt will override biometric prompts. If this timeout value is not met, the biometric prompt will continue to show. This timeout value should be greater than the value specified under 'Recheck the access requirements after (minutes of inactivity)'. "
- },
- "PinAccess": {
- "label": "PIN for access",
- "tooltip": "If required, a PIN must be used to access the policy-managed app. Users must create an access PIN the first time that they open the app from a work or school account."
- },
- "PinLength": {
- "label": "Select minimum PIN length",
- "tooltip": "This setting specifies the minimum number of digits of a PIN."
- },
- "PinType": {
- "label": "PIN type",
- "tooltip": "Numeric PINs are made up of all numbers. Passcodes are made up of alphanumeric characters and special characters. "
- },
- "Printing": {
- "label": "Printing org data",
- "tooltip": "If blocked, the app cannot print protected data."
- },
- "ReceiveData": {
- "label": "Receive data from other apps",
- "tooltip": "Select one of the following options to specify the apps that this app can receive data from:
\n\nNone: Do not allow receiving data in org documents or accounts from any app
\n\nPolicy managed apps: Only allow receiving data in org documents or accounts from other policy managed apps\n
\nAny app with incoming org data: Allow receiving data in org documents or accounts from from any app and treat all incoming data without an user account as org data
\n\nAll apps: Allow receiving data in org documents or accounts from any app"
- },
- "RecheckAccessAfter": {
- "label": "Recheck the access requirements after (minutes of inactivity)\n\n",
- "tooltip": "If the policy-managed app is inactive for longer than the number of minutes of inactivity specified, the app will prompt the access requirements (i.e PIN, conditional launch settings) to be rechecked after the app is launched."
- },
- "RestrictKeyboards": {
- "duplicatePackageError": "The package ID must be unique.",
- "invalidPackageError": "Invalid package ID",
- "label": "Approved keyboards",
- "select": "Select keyboards to approve",
- "subtitle": "Add all keyboards and input methods that users are allowed to use with targeted apps. Enter the keyboard name as you would like it to appear to the end user.",
- "title": "Add approved keyboards",
- "toolTip": "Select Require and then specify a list of approved keyboards for this policy. Learn more."
- },
- "SaveData": {
- "label": "Save copies of org data",
- "tooltip": "Select {0} to prevent saving a copy of org data to a new location, other than the selected storage services, using \"Save As\".\n Select {1} to permit saving a copy of org data to a new location using \"Save As\".
\n\n\nNote: This setting does not apply to all applications. For more information see {2}.\n"
- },
- "SaveDataToSelected": {
- "label": "Allow user to save copies to selected services",
- "tooltip": "Select the storage services users can save copies of org data to. All other services are blocked. Selecting no services will prevent users from saving a copy of org data."
- },
- "ScreenCaptureAndAndroidAssistant": {
- "label": "Screen capture and Google Assistant\n",
- "tooltip": "If blocked, both screen capture and Google Assistant app scanning capabilities will be disabled when using the policy-managed app. This feature supports the usual Google Assistant app. Third party assistants using Google's Assist API are not supported. Choosing Block will also blur the App-Switcher preview image when using the app with a work or school account."
- },
- "SendData": {
- "label": "Send org data to other apps",
- "tooltip": "Select one of the following options to specify the apps that this app can send org data to:
\n\n\nNone: Do not allow sending org data to any app
\n\n\nPolicy managed apps: Only allow sending org data to other policy managed apps
\n\n\nPolicy managed apps with OS sharing: Only allow sending org data to other policy managed apps and sending org documents to other MDM managed apps on enrolled devices
\n\n\nPolicy managed apps with Open-In/Share filtering: Only allow sending org data to other policy managed apps and filter OS Open-in/Share dialogs to only display policy managed apps\n
\n\nAll apps: Allow sending org data to any app"
- },
- "SimplePin": {
- "label": "Simple PIN",
- "tooltip": "If blocked, users may not create a simple PIN. A simple PIN is a string of consecutive or repetitive digits, such as 1234, ABCD, or 1111. Please note that blocking simple PIN of type 'Passcode' requires the passcode to have at least one number, one letter, and one special character."
- },
- "SyncContacts": {
- "label": "Sync policy managed app data with native apps or add-ins"
- },
- "ThirdPartyKeyboards": {
- "infoBox": "Keyboard restrictions will apply to all areas of an app. Personal accounts for apps that support multiple identities will be affected by this restriction. Learn more.",
- "label": "Third party keyboards"
- },
- "Timeout": {
- "label": "Timeout (minutes of inactivity)"
- },
- "Tap": {
- "numberOfDays": "Number of days",
- "pinResetAfterNumberOfDays": "PIN reset after number of days",
- "previousPinBlockCount": "Select number of previous PIN values to maintain"
- }
- },
- "WindowsFeatureUpdateProfile": {
- "Details": {
- "Description": {
- "label": "Description"
- },
- "FeatureDeploymentSettings": {
- "header": "Feature deployment settings"
- },
- "FeatureUpdateVersion": {
- "infoballoon": "This feature cannot downgrade a device.",
- "label": "Feature update to deploy"
- },
- "GradualRolloutEndDate": {
- "label": "Final group availability"
- },
- "GradualRolloutInterval": {
- "label": "Days between groups"
- },
- "GradualRolloutStartDate": {
- "label": "First group availability"
- },
- "Name": {
- "label": "Name"
- },
- "RolloutOptions": {
- "label": "Rollout options"
- },
- "RolloutSettings": {
- "header": "When would you like to make the update available in Windows Update?"
- },
- "ScopeSettings": {
- "header": "Configure scope tags for this policy."
- },
- "StartDateOnlyStartDate": {
- "label": "First available date"
- },
- "bladeTitle": "Feature update deployments",
- "deploymentSettingsTitle": "Deployment settings",
- "loadError": "Loading failed!",
- "windows11EULA": "By selecting this Feature update to deploy you are agreeing that when applying this operating system to a device either (1) the applicable Windows license was purchased though volume licensing, or (2) that you are authorized to bind your organization and are accepting on its behalf the relevant Microsoft Software License Terms to be found here {0}."
- },
- "Notifications": {
- "deploymentSaved": "\"{0}\" has been saved.",
- "newFeatureUpdateDeploymentCreated": "New feature update deployment created."
- },
- "TabName": {
- "deploymentSettings": "Deployment settings",
- "groupAssignmentSettings": "Assignments",
- "scopeSettings": "Scope tags"
- }
- },
- "OfficeUpdateChannel": {
- "current": "Current Channel",
- "deferred": "Semi-Annual Enterprise Channel",
- "firstReleaseCurrent": "Current Channel (Preview)",
- "firstReleaseDeferred": "Semi-Annual Enterprise Channel (Preview)",
- "monthlyEnterprise": "Monthly Enterprise Channel",
- "placeHolder": "Select one"
- },
- "Win32ReturnCodes": {
- "CodeTypes": {
- "failed": "Failed",
- "hardReboot": "Hard reboot",
- "retry": "Retry",
- "softReboot": "Soft reboot",
- "success": "Success"
- },
- "Columns": {
- "codeType": "Code type",
- "returnCode": "Return code"
- },
- "bladeTitle": "Return codes",
- "gridAriaLabel": "Return codes",
- "header": "Specify return codes to indicate post-installation behavior:",
- "onAddAnnounceMessage": "Return code added item {0} of {1}",
- "onDeleteSuccess": "Return code {0} deleted successfully",
- "returnCodeAlreadyUsedValidation": "Return code is already used.",
- "returnCodeMustBeIntegerValidation": "Return code should be an integer.",
- "returnCodeShouldBeAtLeast": "Return code should be at least {0}.",
- "returnCodeShouldBeAtMost": "Return code should be at most {0}.",
- "selectorLabel": "Return codes"
- },
- "SecurityTemplate": {
- "aSR": "Attack surface reduction",
- "accountProtection": "Account protection",
- "allDevices": "All devices",
- "antivirus": "Antivirus",
- "antivirusReporting": "Antivirus Reporting (Preview)",
- "conditionalAccess": "Conditional access",
- "deviceCompliance": "Device compliance",
- "diskEncryption": "Disk encryption",
- "eDR": "Endpoint detection and response",
- "firewall": "Firewall",
- "helpSupport": "Help and support",
- "setup": "Setup",
- "wdapt": "Microsoft Defender for Endpoint"
- },
- "PolicySet": {
- "appManagement": "Application management",
- "assignments": "Assignments",
- "basics": "Basics",
- "deviceEnrollment": "Device enrollment",
- "deviceManagement": "Device management",
- "scopeTags": "Scope tags",
- "appConfigurationTitle": "App configuration policies",
- "appProtectionTitle": "App protection policies",
- "appTitle": "Apps",
- "iOSAppProvisioningTitle": "iOS app provisioning profiles",
- "deviceLimitRestrictionTitle": "Device limit restrictions",
- "deviceTypeRestrictionTitle": "Device type restrictions",
- "enrollmentStatusSettingTitle": "Enrollment status pages",
- "windowsAutopilotDeploymentProfileTitle": "Windows autopilot deployment profiles",
- "deviceComplianceTitle": "Device compliance policies",
- "deviceConfigurationTitle": "Device configuration profiles",
- "powershellScriptTitle": "Powershell scripts"
- },
- "AssignmentAction": {
- "exclude": "Excluded",
- "include": "Included",
- "includeAllDevicesVirtualGroup": "Included",
- "includeAllUsersVirtualGroup": "Included"
- },
- "WindowsFeatureUpdate": {
- "EndOFSupportStatus": {
- "notSupported": "Not supported",
- "supportEnding": "Support ending",
- "supported": "Supported"
- }
- },
- "InstallIntent": {
- "available": "Available for enrolled devices",
- "availableWithoutEnrollment": "Available with or without enrollment",
- "required": "Required",
- "uninstall": "Uninstall"
- },
"OutlookAppConfig": {
"DataProtectionConfiguration": {
"header": "Data Protection configuration"
@@ -1938,307 +100,864 @@
"themesEnabledTitle": "Themes Enabled",
"themesEnabledTooltip": "Specify if the user is allowed to use a custom visual theme."
},
- "TAP": {
- "AccessRequirements": {
- "infoText": "Configure the PIN and credential requirements that users must meet to access apps in a work context."
- },
- "DataProtection": {
- "infoText": "This group includes the data loss prevention (DLP) controls, like cut, copy, paste, and save-as restrictions. These settings determine how users interact with data in the apps."
- },
- "DeviceTypes": {
- "selectOne": "Select at least one device type."
- },
- "TargetedApps": {
- "TargetToAll": {
- "label": "Target to apps on all device types"
- },
- "infoText": "Choose how you want to apply this policy to apps on different devices. Then add at least one app.",
- "selectOne": "Select at least one app to create a policy."
- }
- },
- "TACSettings": {
- "edgeSettings": "Edge configuration settings",
- "edgeWindowsDataProtectionSettings": "Edge (Windows) data protection settings - Preview",
- "edgeWindowsSettings": "Edge (Windows) configuration settings - Preview",
- "generalAppConfig": "General app configuration",
- "generalSettings": "General configuration settings",
- "outlookSMIMEConfig": "Outlook S/MIME settings",
- "outlookSettings": "Outlook configuration settings",
- "sMIME": "S/MIME"
- },
- "OfficeApplicationAdditionalType": {
- "projectProRetail": "Project Online Desktop Client",
- "visioProRetail": "Visio Online Plan 2"
- },
- "Win32Requirements": {
- "AdditionalRequirements": {
- "File": {
- "fileOrFolderToolTip": "The file or folder as the selected requirement.",
- "pathToolTip": "The complete path of the file or folder to detect.",
- "property": "Property",
- "valueToolTip": "Select a requirement value that matches the selected detection method. Date and time requirement should be entered in your local format."
- },
- "GridColumns": {
- "pathOrScript": "Path/Script",
- "type": "Type"
- },
- "Registry": {
- "keyPath": "Key path",
- "keyPathTooltip": "The full path of the registry entry containing the value as a requirement.",
- "operator": "Operator",
- "operatorTooltip": "Select the operator for the comparison.",
- "registryRequirement": "Registry key requirement",
- "registryRequirementTooltip": "Select the registry key requirement comparison.",
- "valueName": "Value name",
- "valueNameTooltip": "The name of the required registry value."
- },
- "RequirementTypeOptions": {
- "fileType": "File",
- "registry": "Registry",
- "script": "Script"
- },
- "Script": {
- "RequirementMethodOptions": {
- "boolean": "Boolean",
- "dateTime": "Date and Time",
- "float": "Floating Point",
- "integer": "Integer",
- "string": "String",
- "version": "Version"
- },
- "ScriptContent": {
- "emptyMessage": "Script content should not be empty."
- },
- "duplicateName": "Script name {0} has already been used. Please enter a different name.",
- "enforceSignatureCheck": "Enforce script signature check",
- "enforceSignatureCheckTooltip": "Select ‘Yes’ to verify that the script is signed by a trusted publisher, which will allow the script to run without warnings or prompts. The script will run unblocked. Select ‘No’ (default) to run the script with end-user confirmation, but without signature verification.",
- "loggedOnCredentials": "Run this script using the logged on credentials",
- "loggedOnCredentialsTooltip": "Run script using the signed in device credentials.",
- "operatorTooltip": "Select the operator for the requirement comparison.",
- "requirementMethod": "Select output data type",
- "requirementMethodTooltip": "Select the data type used when determining a detection match requirement.",
- "scriptFile": "Script file",
- "scriptFileTooltip": "Select a PowerShell script that will detect the presence of the app on the client. If the app is detected, the requirement process will provide a 0 value exit code and will write a string value to STDOUT.",
- "scriptName": "Script name",
- "value": "Value",
- "valueTooltip": "Select a requirement value that matches the selected detection method. Date and time requirement should be entered in your local format."
- },
- "bladeTitle": "Add a Requirement rule",
- "createRequirementHeader": "Create a requirement.",
- "header": "Configure additional requirement rules",
- "label": "Additional requirement rules",
- "noRequirementsSelectedPlaceholder": "No requirements are specified.",
- "requirementType": "Requirement type",
- "requirementTypeTooltip": "Choose the type of detection method used to determine how a requirement is validated."
- },
- "architectures": "Operating system architecture",
- "architecturesTooltip": "Choose the architectures needed to install the app.",
- "bladeTitle": "Requirements",
- "diskSpace": "Disk space required (MB)",
- "diskSpaceTooltip": "Free disk space needed on the system drive to install the app.",
- "header": "Specify the requirements that devices must meet before the app is installed:",
- "maximumTextFieldValue": "The value must be at most {0}.",
- "minimumCpuSpeed": "Minimum CPU speed required (MHz)",
- "minimumCpuSpeedTooltip": "The minimum CPU speed required to install the app.",
- "minimumLogicalProcessors": "Minimum number of logical processors required",
- "minimumLogicalProcessorsTooltip": "The minimum number of logical processors required to install the app.",
- "minimumOperatingSystem": "Minimum operating system",
- "minimumOperatingSystemTooltip": "Select the minimum operating system needed to install the app.",
- "minumumTextFieldValue": "The value must be at least {0}.",
- "physicalMemory": "Physical memory required (MB)",
- "physicalMemoryTooltip": "Physical memory (RAM) required to install the app.",
- "selectorLabel": "Requirements",
- "validNumber": "Please enter a valid number."
- },
- "ArchitectureOptions": {
- "sixtyFourBit": "64-bit",
- "thirtyTwoBit": "32-bit"
- },
- "Countries": {
- "ae": "United Arab Emirates",
- "ag": "Antigua and Barbuda",
- "ai": "Anguilla",
- "al": "Albania",
- "am": "Armenia",
- "ao": "Angola",
- "ar": "Argentina",
- "at": "Austria",
- "au": "Australia",
- "az": "Azerbaijan",
- "bb": "Barbados",
- "be": "Belgium",
- "bf": "Burkina Faso",
- "bg": "Bulgaria",
- "bh": "Bahrain",
- "bj": "Benin",
- "bm": "Bermuda",
- "bn": "Brunei",
- "bo": "Bolivia",
- "br": "Brazil",
- "bs": "Bahamas",
- "bt": "Bhutan",
- "bw": "Botswana",
- "by": "Belarus",
- "bz": "Belize",
- "ca": "Canada",
- "cg": "Republic Of Congo",
- "ch": "Switzerland",
- "cl": "Chile",
- "cn": "China",
- "co": "Colombia",
- "cr": "Costa Rica",
- "cv": "Cape Verde",
- "cy": "Cyprus",
- "cz": "Czech Republic",
- "de": "Germany",
- "dk": "Denmark",
- "dm": "Dominica",
- "do": "Dominican Republic",
- "dz": "Algeria",
- "ec": "Ecuador",
- "ee": "Estonia",
- "eg": "Egypt",
- "es": "Spain",
- "fi": "Finland",
- "fj": "Fiji",
- "fm": "Federated States Of Micronesia",
- "fr": "France",
- "gb": "United Kingdom",
- "gd": "Grenada",
- "gh": "Ghana",
- "gm": "Gambia",
- "gr": "Greece",
- "gt": "Guatemala",
- "gw": "Guinea-Bissau",
- "gy": "Guyana",
- "hk": "Hong Kong",
- "hn": "Honduras",
- "hr": "Croatia",
- "hu": "Hungary",
- "id": "Indonesia",
- "ie": "Ireland",
- "il": "Israel",
- "in": "India",
- "is": "Iceland",
- "it": "Italy",
- "jm": "Jamaica",
- "jo": "Jordan",
- "jp": "Japan",
- "ke": "Kenya",
- "kg": "Kyrgyzstan",
- "kh": "Cambodia",
- "kn": "St. Kitts and Nevis",
- "kr": "Republic Of Korea",
- "kw": "Kuwait",
- "ky": "Cayman Islands",
- "kz": "Kazakstan",
- "la": "Lao People’s Democratic Republic",
- "lb": "Lebanon",
- "lc": "St. Lucia",
- "lk": "Sri Lanka",
- "lr": "Liberia",
- "lt": "Lithuania",
- "lu": "Luxembourg",
- "lv": "Latvia",
- "md": "Republic Of Moldova",
- "mg": "Madagascar",
- "mk": "North Macedonia",
- "ml": "Mali",
- "mn": "Mongolia",
- "mo": "Macau",
- "mr": "Mauritania",
- "ms": "Montserrat",
- "mt": "Malta",
- "mu": "Mauritius",
- "mw": "Malawi",
- "mx": "Mexico",
- "my": "Malaysia",
- "mz": "Mozambique",
- "na": "Namibia",
- "ne": "Niger",
- "ng": "Nigeria",
- "ni": "Nicaragua",
- "nl": "Netherlands",
- "no": "Norway",
- "np": "Nepal",
- "nz": "New Zealand",
- "om": "Oman",
- "pa": "Panama",
- "pe": "Peru",
- "pg": "Papua New Guinea",
- "ph": "Philippines",
- "pk": "Pakistan",
- "pl": "Poland",
- "pt": "Portugal",
- "pw": "Palau",
- "py": "Paraguay",
- "qa": "Qatar",
- "ro": "Romania",
- "ru": "Russia",
- "sa": "Saudi Arabia",
- "sb": "Solomon Islands",
- "sc": "Seychelles",
- "se": "Sweden",
- "sg": "Singapore",
- "si": "Slovenia",
- "sk": "Slovakia",
- "sl": "Sierra Leone",
- "sn": "Senegal",
- "sr": "Suriname",
- "st": "Sao Tome and Principe",
- "sv": "El Salvador",
- "sz": "Swaziland",
- "tc": "Turks and Caicos",
- "td": "Chad",
- "th": "Thailand",
- "tj": "Tajikistan",
- "tm": "Turkmenistan",
- "tn": "Tunisia",
- "tr": "Turkey",
- "tt": "Trinidad and Tobago",
- "tw": "Taiwan",
- "tz": "Tanzania",
- "ua": "Ukraine",
- "ug": "Uganda",
- "us": "United States",
- "uy": "Uruguay",
- "uz": "Uzbekistan",
- "vc": "St. Vincent and The Grenadines",
- "ve": "Venezuela",
- "vg": "British Virgin Islands",
- "vn": "Vietnam",
- "ye": "Yemen",
- "za": "South Africa",
- "zw": "Zimbabwe"
+ "Languages": {
+ "ar-aE": "Arabic (U.A.E.)",
+ "ar-bH": "Arabic (Bahrain)",
+ "ar-dZ": "Arabic (Algeria)",
+ "ar-eG": "Arabic (Egypt)",
+ "ar-iQ": "Arabic (Iraq)",
+ "ar-jO": "Arabic (Jordan)",
+ "ar-kW": "Arabic (Kuwait)",
+ "ar-lB": "Arabic (Lebanon)",
+ "ar-lY": "Arabic (Libya)",
+ "ar-mA": "Arabic (Morocco)",
+ "ar-oM": "Arabic (Oman)",
+ "ar-qA": "Arabic (Qatar)",
+ "ar-sA": "Arabic (Saudi Arabia)",
+ "ar-sY": "Arabic (Syria)",
+ "ar-tN": "Arabic (Tunisia)",
+ "ar-yE": "Arabic (Yemen)",
+ "az-cyrl": "Azerbaijani (Cyrillic, Azerbaijan)",
+ "az-latn": "Azerbaijani (Latin, Azerbaijan)",
+ "bn-bD": "Bangla (Bangladesh)",
+ "bn-iN": "Bangla (India)",
+ "bs-cyrl": "Bosnian (Cyrillic)",
+ "bs-latn": "Bosnian (Latin)",
+ "zh-cN": "Chinese (PRC)",
+ "zh-hK": "Chinese (Hong Kong S.A.R.)",
+ "zh-mO": "Chinese (Macao S.A.R.)",
+ "zh-sG": "Chinese (Singapore)",
+ "zh-tW": "Chinese (Taiwan)",
+ "hr-bA": "Croatian (Latin)",
+ "hr-hR": "Croatian (Croatia)",
+ "nl-bE": "Dutch (Belgium)",
+ "nl-nL": "Dutch (Netherlands)",
+ "en-aU": "English (Australia)",
+ "en-bZ": "English (Belize)",
+ "en-cA": "English (Canada)",
+ "en-cabn": "English (Caribbean)",
+ "en-iE": "English (Ireland)",
+ "en-iN": "English (India)",
+ "en-jM": "English (Jamaica)",
+ "en-mY": "English (Malaysia)",
+ "en-nZ": "English (New Zealand)",
+ "en-pH": "English (Republic of the Philippines)",
+ "en-sG": "English (Singapore)",
+ "en-tT": "English (Trinidad and Tobago)",
+ "en-uK": "English (United Kingdom)",
+ "en-uS": "English (United States)",
+ "en-zA": "English (South Africa)",
+ "en-zW": "English (Zimbabwe)",
+ "fr-bE": "French (Belgium)",
+ "fr-cA": "French (Canada)",
+ "fr-cH": "French (Switzerland)",
+ "fr-fR": "French (France)",
+ "fr-lU": "French (Luxembourg)",
+ "fr-mC": "French (Monaco)",
+ "de-aT": "German (Austria)",
+ "de-cH": "German (Switzerland)",
+ "de-dE": "German (Germany)",
+ "de-lI": "German (Liechtenstein)",
+ "de-lU": "German (Luxembourg)",
+ "iu-cans": "Inuktitut (Syllabics, Canada)",
+ "iu-latn": "Inuktitut (Latin, Canada)",
+ "it-cH": "Italian (Switzerland)",
+ "it-iT": "Italian (Italy)",
+ "ms-bN": "Malay (Brunei Darussalam)",
+ "ms-mY": "Malay (Malaysia)",
+ "mn-cN": "Mongolian (Traditional Mongolian, PRC)",
+ "mn-mN": "Mongolian (Cyrillic, Mongolia)",
+ "no-nB": "Norwegian, Bokmål (Norway)",
+ "no-nn": "Norwegian, Nynorsk (Norway)",
+ "pt-bR": "Portuguese (Brazil)",
+ "pt-pT": "Portuguese (Portugal)",
+ "quz-bO": "Quechua (Bolivia)",
+ "quz-eC": "Quechua (Ecuador)",
+ "quz-pE": "Quechua (Peru)",
+ "smj-nO": "Sami, Lule (Norway)",
+ "smj-sE": "Sami, Lule (Sweden)",
+ "se-fI": "Sami, Northern (Finland)",
+ "se-nO": "Sami, Northern (Norway)",
+ "se-sE": "Sami, Northern (Sweden)",
+ "sma-nO": "Sami, Southern (Norway)",
+ "sma-sE": "Sami, Southern (Sweden)",
+ "smn": "Sami, Inari (Finland)",
+ "sms": "Sami, Skolt (Finland)",
+ "sr-Cyrl-bA": "Serbian (Cyrillic)",
+ "sr-Cyrl-rS": "Serbian (Cyrillic, Serbia and Montenegro)",
+ "sr-Latn-bA": "Serbian (Latin)",
+ "sr-Latn-rS": "Serbian (Latin, Serbia)",
+ "dsb": "Lower Sorbian (Germany)",
+ "hsb": "Upper Sorbian (Germany)",
+ "es-es-tradnl": "Spanish (Spain, Traditional Sort)",
+ "es-aR": "Spanish (Argentina)",
+ "es-bO": "Spanish (Bolivia)",
+ "es-cL": "Spanish (Chile)",
+ "es-cO": "Spanish (Colombia)",
+ "es-cR": "Spanish (Costa Rica)",
+ "es-dO": "Spanish (Dominican Republic)",
+ "es-eC": "Spanish (Ecuador)",
+ "es-eS": "Spanish (Spain)",
+ "es-gT": "Spanish (Guatemala)",
+ "es-hN": "Spanish (Honduras)",
+ "es-mX": "Spanish (Mexico)",
+ "es-nI": "Spanish (Nicaragua)",
+ "es-pA": "Spanish (Panama)",
+ "es-pE": "Spanish (Peru)",
+ "es-pR": "Spanish (Puerto Rico)",
+ "es-pY": "Spanish (Paraguay)",
+ "es-sV": "Spanish (El Salvador)",
+ "es-uS": "Spanish (United States)",
+ "es-uY": "Spanish (Uruguay)",
+ "es-vE": "Spanish (Venezuela)",
+ "sv-fI": "Swedish (Finland)",
+ "uz-cyrl": "Uzbek (Cyrillic, Uzbekistan)",
+ "uz-latn": "Uzbek (Latin, Uzbekistan)",
+ "af": "Afrikaans (South Africa)",
+ "sq": "Albanian (Albania)",
+ "am": "Amharic (Ethiopia)",
+ "hy": "Armenian (Armenia)",
+ "as": "Assamese (India)",
+ "ba": "Bashkir (Russia)",
+ "eu": "Basque (Basque)",
+ "be": "Belarusian (Belarus)",
+ "br": "Breton (France)",
+ "bg": "Bulgarian (Bulgaria)",
+ "ca": "Catalan (Catalan)",
+ "co": "Corsican (France)",
+ "cs": "Czech (Czech Republic)",
+ "da": "Danish (Denmark)",
+ "prs": "Dari (Afghanistan)",
+ "dv": "Divehi (Maldives)",
+ "et": "Estonian (Estonia)",
+ "fo": "Faroese (Faroe Islands)",
+ "fil": "Filipino (Philippines)",
+ "fi": "Finnish (Finland)",
+ "gl": "Galician (Galician)",
+ "ka": "Georgian (Georgia)",
+ "el": "Greek (Greece)",
+ "gu": "Gujarati (India)",
+ "ha": "Hausa (Latin, Nigeria)",
+ "he": "Hebrew (Israel)",
+ "hi": "Hindi (India)",
+ "hu": "Hungarian (Hungary)",
+ "is": "Icelandic (Iceland)",
+ "ig": "Igbo (Nigeria)",
+ "id": "Indonesian (Indonesia)",
+ "ga": "Irish (Ireland)",
+ "xh": "isiXhosa (South Africa)",
+ "zu": "isiZulu (South Africa)",
+ "ja": "Japanese (Japan)",
+ "kn": "Kannada (India)",
+ "kk": "Kazakh (Kazakhstan)",
+ "km": "Khmer (Cambodia)",
+ "rw": "Kinyarwanda (Rwanda)",
+ "sw": "Kiswahili (Kenya)",
+ "kok": "Konkani (India)",
+ "ko": "Korean (Korea)",
+ "ky": "Kyrgyz (Kyrgyzstan)",
+ "lo": "Lao (Lao P.D.R.)",
+ "lv": "Latvian (Latvia)",
+ "lt": "Lithuanian (Lithuania)",
+ "lb": "Luxembourgish (Luxembourg)",
+ "mk": "Macedonian (North Macedonia)",
+ "ml": "Malayalam (India)",
+ "mt": "Maltese (Malta)",
+ "mi": "Maori (New Zealand)",
+ "mr": "Marathi (India)",
+ "moh": "Mohawk (Mohawk)",
+ "ne": "Nepali (Nepal)",
+ "oc": "Occitan (France)",
+ "or": "Odia (India)",
+ "ps": "Pashto (Afghanistan)",
+ "fa": "Persian",
+ "pl": "Polish (Poland)",
+ "pa": "Punjabi (India)",
+ "ro": "Romanian (Romania)",
+ "rm": "Romansh (Switzerland)",
+ "ru": "Russian (Russia)",
+ "sa": "Sanskrit (India)",
+ "st": "Sesotho sa Leboa (South Africa)",
+ "tn": "Setswana (South Africa)",
+ "si": "Sinhala (Sri Lanka)",
+ "sk": "Slovak (Slovakia)",
+ "sl": "Slovenian (Slovenia)",
+ "sv": "Swedish (Sweden)",
+ "syr": "Syriac (Syria)",
+ "tg": "Tajik (Cyrillic, Tajikistan)",
+ "ta": "Tamil (India)",
+ "tt": "Tatar (Russia)",
+ "te": "Telugu (India)",
+ "th": "Thai (Thailand)",
+ "bo": "Tibetan (PRC)",
+ "tr": "Turkish (Turkey)",
+ "tk": "Turkmen (Turkmenistan)",
+ "uk": "Ukrainian (Ukraine)",
+ "ur": "Urdu (Islamic Republic of Pakistan)",
+ "vi": "Vietnamese (Vietnam)",
+ "cy": "Welsh (United Kingdom)",
+ "wo": "Wolof (Senegal)",
+ "ii": "Yi (PRC)",
+ "yo": "Yoruba (Nigeria)"
+ },
+ "Category": {
+ "airPlay": "AirPlay",
+ "airPrint": "AirPrint",
+ "androidDefenderAtp": "Microsoft Defender for Endpoint",
+ "androidDeviceOwnerApplications": "Applications",
+ "androidForWorkPassword": "Device password",
+ "appManagement": "Allow or Block apps",
+ "applicationGuard": "Microsoft Defender Application Guard",
+ "applicationRestrictions": "Restricted Apps",
+ "applicationVisibility": "Show or Hide Apps",
+ "applications": "App Store",
+ "applicationsAndGames": "App Store, Doc Viewing, Gaming",
+ "applicationsAndGoogle": "Google Play Store",
+ "appsAndExperience": "Apps and experience",
+ "associatedDomains": "Associated domains",
+ "autonomousSingleAppMode": "Autonomous Single App Mode",
+ "azureOperationalInsights": "Azure operational insights",
+ "bitLocker": "Windows Encryption",
+ "browser": "Browser",
+ "builtinApps": "Built-in Apps",
+ "cellular": "Cellular",
+ "cloudAndStorage": "Cloud and Storage",
+ "cloudPrint": "Cloud Printer",
+ "complianceEmailProfile": "Email",
+ "connectedDevices": "Connected Devices",
+ "connectivity": "Cellular and connectivity",
+ "contentCaching": "Content caching",
+ "controlPanelAndSettings": "Control Panel and Settings",
+ "credentialGuard": "Microsoft Defender Credential Guard",
+ "customCompliance": "Custom Compliance",
+ "customCompliancePreview": "Custom Compliance (Preview)",
+ "customConfiguration": "Custom Configuration Profile",
+ "customOMASettings": "Custom OMA-URI Settings",
+ "customPreferences": "Preference file",
+ "defender": "Microsoft Defender Antivirus",
+ "defenderAntivirus": "Microsoft Defender Antivirus",
+ "defenderExploitGuard": "Microsoft Defender Exploit Guard",
+ "defenderFirewall": "Microsoft Defender Firewall",
+ "defenderLocalSecurityOptions": "Local device security options",
+ "defenderSecurityCenter": "Microsoft Defender Security Center",
+ "deliveryOptimization": "Delivery Optimization",
+ "derivedCredentialAuthenticationConfiguration": "Derived credential",
+ "deviceExperience": "Device experience",
+ "deviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
+ "deviceGuard": "Microsoft Defender Application Control",
+ "deviceHealth": "Device Health",
+ "devicePassword": "Device password",
+ "deviceProperties": "Device Properties",
+ "deviceRestrictions": "General",
+ "deviceSecurity": "System security",
+ "display": "Display",
+ "domainJoin": "Domain Join",
+ "domains": "Domains",
+ "edgeBrowser": "Microsoft Edge Legacy (Version 45 and earlier)",
+ "edgeBrowserSmartScreen": "Microsoft Defender SmartScreen",
+ "edgeKiosk": "Microsoft Edge kiosk mode",
+ "editionUpgrade": "Edition Upgrade",
+ "education": "Education",
+ "educationDeviceCerts": "Device certificates",
+ "educationStudentCerts": "Student certificates",
+ "educationTakeATest": "Take a Test",
+ "educationTeacherCerts": "Teacher certificates",
+ "emailProfile": "Email",
+ "enterpriseDataProtection": "Windows Information Protection",
+ "expeditedCheckin": "Mobile device management configuration",
+ "extensibleSingleSignOn": "Single sign-on app extension",
+ "filevault": "FileVault",
+ "firewall": "Firewall",
+ "games": "Games",
+ "gatekeeper": "Gatekeeper",
+ "healthMonitoring": "Health monitoring",
+ "homeScreenLayout": "Home Screen Layout",
+ "iOSWallpaper": "Wallpaper",
+ "importedPFX": "PKCS Imported Certificate",
+ "iosDefenderAtp": "Microsoft Defender for Endpoint",
+ "iosKiosk": "Kiosk",
+ "kernelExtensions": "Kernel extensions",
+ "keyboardAndDictionary": "Keyboard and Dictionary",
+ "kiosk": "Kiosk",
+ "kioskAndroidEnterprise": "Dedicated devices",
+ "kioskConfiguration": "Kiosk",
+ "kioskConfigurationV2": "Kiosk",
+ "kioskWebBrowser": "Kiosk web browser",
+ "lockScreenMessage": "Lock Screen Message",
+ "lockedScreenExperience": "Locked Screen Experience",
+ "logging": "Reporting and Telemetry",
+ "loginItems": "Login items",
+ "loginWindow": "Login window",
+ "macDefenderAtp": "Microsoft Defender for Endpoint",
+ "maintenance": "Maintenance",
+ "malware": "Malware",
+ "messaging": "Messaging",
+ "networkBoundary": "Network boundary",
+ "networkProxy": "Network proxy",
+ "notifications": "App Notifications",
+ "pKCS": "PKCS Certificate",
+ "password": "Password",
+ "personalProfile": "Personal profile",
+ "personalization": "Personalization",
+ "policyOverride": "Override Group Policy",
+ "powerSettings": "Power Settings",
+ "printer": "Printer",
+ "privacy": "Privacy",
+ "privacyPerApp": "Per-app privacy exceptions",
+ "privacyPreferences": "Privacy preferences",
+ "projection": "Projection",
+ "sCCMCompliance": "Configuration Manager Compliance",
+ "sCEP": "SCEP Certificate",
+ "sCEPProperties": "SCEP Certificate",
+ "sMode": "Mode switch (Windows Insider only)",
+ "safari": "Safari",
+ "search": "Search",
+ "session": "Session",
+ "sharedDevice": "Shared iPad",
+ "sharedPCAccountManager": "Shared multi-user device",
+ "singleSignOn": "Single sign-on",
+ "smartScreen": "Microsoft Defender SmartScreen",
+ "softwareUpdates": "Settings",
+ "start": "Start",
+ "systemExtensions": "System extensions",
+ "systemSecurity": "System Security",
+ "trustedCert": "Trusted Certificate",
+ "updates": "Updates",
+ "userRights": "User Rights",
+ "usersAndAccounts": "Users and Accounts",
+ "vPN": "Base VPN",
+ "vPNApps": "Automatic VPN",
+ "vPNAppsAndTrafficRules": "Apps and Traffic Rules",
+ "vPNConditionalAccess": "Conditional Access",
+ "vPNConnectivity": "Connectivity",
+ "vPNDNSTriggers": "DNS Settings",
+ "vPNIKEv2": "IKEv2 settings",
+ "vPNProxy": "Proxy",
+ "vPNSplitTunneling": "Split Tunneling",
+ "vPNTrustedNetwork": "Trusted Network Detection",
+ "webContentFilter": "Web Content Filter",
+ "wiFi": "Wi-Fi",
+ "win10Wifi": "Wi-Fi",
+ "windowsAtp": "Microsoft Defender for Endpoint",
+ "windowsDefenderATP": "Microsoft Defender for Endpoint",
+ "windowsHelloForBusiness": "Windows Hello for Business",
+ "windowsSpotlight": "Windows Spotlight",
+ "wiredNetwork": "Wired network",
+ "wireless": "Wireless",
+ "wirelessProjection": "Wireless projection",
+ "workProfile": "Work profile settings",
+ "workProfilePassword": "Work profile password",
+ "xboxServices": "Xbox services",
+ "zebraMx": "MX profile (Zebra only)",
+ "complianceActionsLabel": "Actions for noncompliance"
+ },
+ "WindowsFeatureUpdateProfile": {
+ "Details": {
+ "Description": {
+ "label": "Description"
+ },
+ "FeatureDeploymentSettings": {
+ "header": "Feature deployment settings"
+ },
+ "FeatureUpdateVersion": {
+ "infoballoon": "This feature cannot downgrade a device.",
+ "label": "Feature update to deploy"
+ },
+ "GradualRolloutEndDate": {
+ "label": "Final group availability"
+ },
+ "GradualRolloutInterval": {
+ "label": "Days between groups"
+ },
+ "GradualRolloutStartDate": {
+ "label": "First group availability"
+ },
+ "Name": {
+ "label": "Name"
+ },
+ "RolloutOptions": {
+ "label": "Rollout options"
+ },
+ "RolloutSettings": {
+ "header": "When would you like to make the update available in Windows Update?"
+ },
+ "ScopeSettings": {
+ "header": "Configure scope tags for this policy."
+ },
+ "StartDateOnlyStartDate": {
+ "label": "First available date"
+ },
+ "bladeTitle": "Feature update deployments",
+ "deploymentSettingsTitle": "Deployment settings",
+ "loadError": "Loading failed!",
+ "windows11EULA": "By selecting this Feature update to deploy you are agreeing that when applying this operating system to a device either (1) the applicable Windows license was purchased though volume licensing, or (2) that you are authorized to bind your organization and are accepting on its behalf the relevant Microsoft Software License Terms to be found here {0}."
+ },
+ "Notifications": {
+ "deploymentSaved": "\"{0}\" has been saved.",
+ "newFeatureUpdateDeploymentCreated": "New feature update deployment created."
+ },
+ "TabName": {
+ "deploymentSettings": "Deployment settings",
+ "groupAssignmentSettings": "Assignments",
+ "scopeSettings": "Scope tags"
+ }
+ },
+ "WIPPinRequirements": {
+ "WipLowercaseCharacterPinRequirements": {
+ "allow": "Allow the use of lowercase letters in PIN",
+ "notAllow": "Do not allow the use of lowercase letters in PIN",
+ "requireAtLeastOne": "Require the use of at least one lowercase letter in PIN"
+ },
+ "WipSpecialCharacterPinRequirements": {
+ "allow": "Allow the use of special characters in PIN",
+ "notAllow": "Do not allow the use of special characters in PIN",
+ "requireAtLeastOne": "Require the use of at least one special character in PIN"
+ },
+ "WipUppercaseCharacterPinRequirements": {
+ "allow": "Allow the use of uppercase letters in PIN",
+ "notAllow": "Do not allow the use of uppercase letters in PIN",
+ "requireAtLeastOne": "Require the use of at least one uppercase letter in PIN"
+ }
+ },
+ "OutlookAppConfigSettings": {
+ "AllowUserToChangeSetting": {
+ "title": "Allow user to change setting",
+ "tooltip": "Specify if the user is allowed to change the setting."
+ },
+ "AllowWorkAccounts": {
+ "title": "Allow only work or school accounts",
+ "tooltip": " By enabling this setting, users will be unable to add personal email and storage accounts within Outlook. If the user has a personal account added to Outlook, the user is prompted to remove the personal account. If the user does not remove the personal account, the work or school account cannot be added."
+ },
+ "BlockExternalImages": {
+ "title": "Block external images",
+ "tooltip": "When block external images is enabled, the app will prevent the download of images hosted on the Internet that are embedded in the message body. When set as not configured, the default app setting is set to Off"
+ },
+ "ConfigureEmail": {
+ "title": "Configure email account settings"
+ },
+ "DefaultAppSignatureSetting": {
+ "Tooltip": {
+ "android": "Default app signature indicates whether the app will use “Get Outlook for Android” as the default signature during message composition. If the setting is configured as Off, the default signature will not be used; however, users can add their own signature.\n\nWhen set as Not Configured, the default app setting is set to On.",
+ "iOS": "Default app signature indicates whether the app will use “Get Outlook for iOS” as the default signature during message composition. If the setting is configured as Off, the default signature will not be used; however, users can add their own signature.\n\nWhen set as Not Configured, the default app setting is set to On."
+ },
+ "title": "Default app signature"
+ },
+ "OfficeFeedReplies": {
+ "title": "Discover Feed",
+ "tooltip": "Discover Feed surfaces your most frequently accessed Office files. By default, this feed is enabled when Delve is enabled for the user. When set as not configured, the default app setting is set to On."
+ },
+ "OrganizeMailByThread": {
+ "title": "Organize mail by thread",
+ "tooltip": "The default behavior in Outlook is to bundle mail conversations into a threaded conversation view. If this setting is disabled Outlook will display each mail individually and will not group them by thread."
+ },
+ "PlayMyEmails": {
+ "title": "Play My Emails",
+ "tooltip": "The Play My Emails feature is not enabled by default in the app, but it is promoted to eligible users via a banner in the inbox. When set to Off, this feature will not be promoted to eligible users in the app. Users can choose to manually enable Play My Emails from within the app, even when this feature is set to Off. When set as Not configured, the default app setting is On and the feature will be promoted to eligible users."
+ },
+ "SuggestedReplies": {
+ "title": "Suggested replies",
+ "tooltip": "When you open a message, Outlook might suggest replies below the message. If you select a suggested reply, you can edit the reply before sending it."
+ },
+ "SyncCalendars": {
+ "title": "Sync Calendars",
+ "tooltip": "Configure whether users can sync their Outlook calendar to the native calendar app and database."
+ },
+ "TextPredictions": {
+ "title": "Text Predictions",
+ "tooltip": "Outlook can suggest words and phrases as you compose messages. When Outlook offers a suggestion, swipe to accept it. When set as not configured, the default app setting is set to On."
+ },
+ "ThemesEnabled": {
+ "title": "Themes enabled",
+ "tooltip": "Specify if the user is allowed to use a custom visual theme."
+ }
+ },
+ "AssignmentFilters": {
+ "assignmentFilterColumnHeader": "Filter",
+ "noFilters": "None"
+ },
+ "Platform": {
+ "all": "All",
+ "android": "Android device administrator",
+ "androidAOSP": "Android (AOSP)",
+ "androidEnterprise": "Android Enterprise",
+ "androidForWork": "Android Enterprise",
+ "androidWorkProfile": "Android enterprise",
+ "common": "Common",
+ "iOS": "iOS/iPadOS",
+ "iosAndAndroidPlatformLabel": "iOS and Android",
+ "iosCommaAndroidPlatformLabel": "iOS, Android",
+ "linux": "Linux",
+ "macOS": "macOS",
+ "unknown": "Unknown",
+ "unsupported": "Unsupported",
+ "windows": "Windows",
+ "windows10": "Windows 10 and later",
+ "windows10CM": "Windows 10 and later (ConfigMgr)",
+ "windows10Holo": "Windows 10 Holographic",
+ "windows10Mobile": "Windows 10 Mobile",
+ "windows10Team": "Windows 10 Team",
+ "windows10X": "Windows 10X",
+ "windows8": "Windows 8.1 and later",
+ "windows8And10": "Windows 8 and 10",
+ "windowsPhone": "Windows Phone 8.1",
+ "windows10AndLater": "Windows 10 and later",
+ "windows10AndWindowsServer": "Windows 10, Windows 11, and Windows Server (ConfigMgr)",
+ "windows10andLaterCM": "Windows 10 and later (ConfigMgr)",
+ "holoLens": "HoloLens",
+ "surfaceHub2": "Surface Hub 2",
+ "surfaceHub2S": "Surface Hub 2S",
+ "windowsPC": "Windows PC"
+ },
+ "AppInformationTab": {
+ "Error": {
+ "multipleChildApps": "A macOS LOB app can only be installed as managed when the uploaded package contains a single app."
+ },
+ "Info": {
+ "AppStoreUrl": {
+ "android": "Enter the link to the app listing in Google Play store. For example:",
+ "androidLink": "https://play.google.com/store/apps/details?id=com.microsoft.office.outlook",
+ "windows": "Enter the link to the app listing in the Microsoft Store. For example:",
+ "windowsLink": "https://www.microsoft.com/en-us/p/microsoft-to-do-lists-tasks-reminders/9nblggh5r558"
+ },
+ "appPackageFile": "A file that contains your app in a format that can be sideloaded on a device. Valid package types include: Android (.apk), iOS (.ipa), macOS (.pkg, .intunemac), Windows (.msi, .appx, .appxbundle, .msix, and .msixbundle).",
+ "applicableDeviceType": "Select the device types that can install this app.",
+ "category": "Categorize the app to make it easier for users to sort and find in Company Portal. You can choose multiple categories.",
+ "categoryLink": "https://docs.microsoft.com/en-us/intune/apps/apps-add#create-and-edit-categories-for-apps",
+ "description": "Help your device users understand what the app is and/or what they can do in the app. This description will be visible to them in Company Portal.",
+ "developer": "The name of the company or Individual that developed the app. This information will be visible to people signed into the admin center.",
+ "displayVersion": "The version of the app. This information will be visible to users in the Company Portal.",
+ "infoUrl": "Link people to a website or documentation that has more information about the app. The information URL will be visible to users in Company Portal.",
+ "isFeatured": "Featured apps are prominently placed in Company Portal so that users can quickly get to them.",
+ "learnMore": "Learn more",
+ "logo": "Upload a logo that's associated with the app. This logo will appear next to the app throughout Company Portal.",
+ "macOSDmgAppPackageFile": "A file that contains your app in a format that can be sideloaded on a device. Valid package type: .dmg.",
+ "minOperatingSystem": "Select the earliest operating system version on which the app can be installed. If you assign the app to a device with an earlier operating system, it will not be installed.",
+ "name": "Add a name for the app. This name will be visible in the Intune apps list and to users in the Company Portal.",
+ "notes": "Add additional notes about the app. Notes will be visible to people signed in to the admin center.",
+ "owner": "The name of the person in your organization who manages licensing or is the point-of-contact for this app. This name will be visible to people signed in to the admin center.",
+ "packageName": "Contact the device manufacturer to get the app's package name. Example package name: com.example.app",
+ "privacyUrl": "Provide a link for people who want to learn more about the app's privacy settings and terms. The privacy URL will be visible to users in Company Portal.",
+ "publisher": "The name of the developer or company that distributes the app. This information will be visible to users in Company Portal.",
+ "selectApp": "Search the App Store for iOS store apps that you want to deploy with Intune.",
+ "useManagedBrowser": "If required, when a user opens the web app, it will open in an Intune-protected browser such as Microsoft Edge or Intune Managed Browser. This setting applies to both iOS and Android devices.",
+ "useManagedBrowserLink": "https://docs.microsoft.com/en-us/intune/apps/app-configuration-managed-browser",
+ "win32AppPackageFile": "A file that contains your app in a format that can be sideloaded on a device. Valid package type: .intunewin."
+ },
+ "descriptionPreview": "Preview",
+ "descriptionRequired": "Description is required.",
+ "editDescription": "Edit Description",
+ "macOSMinOperatingSystemAdditionalInfo": "The minimum operating system for uploading a .pkg file is macOS 10.14. Upload a .intunemac file to select an older minimum operating system.",
+ "name": "App information",
+ "nameForOfficeSuitApp": "App suite information"
+ },
+ "Tooltips": {
+ "PolicySettings": {
+ "TouchId1": {
+ "android": "On Android, you can allow using fingerprint identification instead of a PIN. Users are prompted to provide their fingerprints when they access this app with their work accounts.",
+ "iOS": "On iOS/iPadOS devices, you can allow using fingerprint identification instead of a PIN. Users are prompted to provide their fingerprints when they access this app with their work accounts.",
+ "mac": "On Mac devices, you can allow using fingerprint identification instead of a PIN. Users are prompted to provide their fingerprints when they access this app with their work accounts."
+ },
+ "appSharingFromLevel1": "Select one of the following options to specify the apps that this app can receive data from:",
+ "appSharingFromLevel2": "{0}: Only allow receiving data in org documents or accounts from other policy managed apps",
+ "appSharingFromLevel3": "{0}: Allow receiving data in org documents or accounts from any app",
+ "appSharingFromLevel4": "{0}: Do not allow receiving data in org documents or accounts from any app",
+ "appSharingFromLevel5": "{0}: Allow data transfer from any app and treat all incoming data without an user identity as Org data.",
+ "appSharingToLevel1": "Select one of the following options to specify the apps that this app can send data to:",
+ "appSharingToLevel2": "{0}: Only allow sending org data to other policy managed apps",
+ "appSharingToLevel3": "{0}: Allow sending org data to any app",
+ "appSharingToLevel4": "{0}: Do not allow sending org data to any app",
+ "appSharingToLevel5": "{0}: Only allow transfer only to other policy managed apps and file transfer to other MDM managed apps on enrolled devices",
+ "appSharingToLevel6": "{0}: Allow transfer only to other policy managed apps and filter OS Open-in/Share dialogs to only display policy managed apps",
+ "conditionalEncryption1": "Select {0} to disable app encryption for internal app storage when device encryption is detected on an enrolled device.",
+ "conditionalEncryption2": "Note: Intune can only detect device enrollment with Intune MDM. External app storage will still be encrypted to ensure data cannot be accessed by unmanaged applications.",
+ "contactSyncMac": "If disabled, apps cannot save contacts to the native address book.",
+ "contactsSync": "Choose Block to prevent policy managed apps from saving data to the device's native apps (like Contacts, Calendar and widgets), or to prevent the use of add-ins within the policy managed apps. If you choose Allow, the policy managed app can save data to the native apps or use add-ins, if those features are supported and enabled within the policy managed app.
Apps may provide additional configuration capability with app configuration policies. For more information, see the app's documentation.",
+ "encryptionAndroid1": "For apps that are associated with an Intune mobile application management policy, encryption is provided by Microsoft. Data is encrypted synchronously during file I/O operations according to the setting in the mobile application management policy. Managed apps on Android use AES-128 encryption in CBC mode utilizing the platform cryptography libraries. The encryption method is not FIPS 140-2 compliant. SHA-256 encryption is supported as an explicit instruction using the SigAlg parameter and will only work on devices 4.2 and above. Content on the device storage is always be encrypted.",
+ "encryptionAndroid2": "When you require encryption in your app policy, the end-user is required to setup and use a PIN to access their device. If there is not a PIN set up for device access, the apps will not launch and the end-user will instead see a message, which says, “Your company has required that you must first enable a device PIN to access this application.\"",
+ "encryptionMac1": "For apps that are associated with an Intune mobile application management policy, encryption is provided by Microsoft. Data is encrypted synchronously during file I/O operations according to the setting in the mobile application management policy. Managed apps on Mac use AES-128 encryption in CBC mode utilizing the platform cryptography libraries. The encryption method is not FIPS 140-2 compliant. SHA-256 encryption is supported as an explicit instruction using the SigAlg parameter and will only work on devices 4.2 and above. Content on the device storage is always be encrypted.",
+ "faceId1": "Where applicable, you can allow the use of face identification instead of PIN. Users are prompted to provide face identification when they access this app with their work accounts.",
+ "faceId2": "Select Yes to allow face identification instead of a PIN for app access.",
+ "managementLevelsAndroid1": "Use this option to specify whether this policy applies to Android device administrator devices, Android Enterprise devices, or unmanaged devices.",
+ "managementLevelsAndroid2": "{0}: Unmanaged devices are devices where Intune MDM management has not been detected. This includes 3rd party MDM vendors.",
+ "managementLevelsAndroid3": "{0}: Intune-managed devices using the Android Device Administration API.",
+ "managementLevelsAndroid4": "{0}: Intune-managed devices using Android Enterprise Work Profiles or Android Enterprise Full Device Management.",
+ "managementLevelsIos1": "Use this option to specify whether this policy applies to MDM managed devices or unmanaged devices.",
+ "managementLevelsIos2": "{0}: Unmanaged devices are devices where Intune MDM management has not been detected. This includes 3rd party MDM vendors.",
+ "managementLevelsIos3": "{0}: Managed devices are managed by Intune MDM.",
+ "minAppVersion": "Define the required minimum App version number that a user should have to gain secure access to the app.",
+ "minAppVersionWarning": "Define the recommended minimum App version number that a user should have for secure access to the app.",
+ "minOsVersion": "Define the required minimum OS version number that a user should have to gain secure access to the app.",
+ "minOsVersionWarning": "Define the recommended minimum OS version number that a user should have to gain secure access to the app.",
+ "minPatchVersion": "Define the oldest required Android security patch level a user can have to gain secure access to the app.",
+ "minPatchVersionWarning": "Define the oldest recommended Android security patch level a user can have for secure access to the app.",
+ "minSdkVersion": "Define the required minimum Intune Application Protection Policy SDK version that a user should have to gain secure access to the app.",
+ "requireAppPinDefault": "Select Yes to disable the app PIN when a device lock is detected on an enrolled device.
",
+ "targetAllApps1": "Use this option to target your policy to apps on devices of any management state.",
+ "targetAllApps2": "During policy conflict resolution this setting will be superseded if a user has policy targeted for a specific management state.",
+ "touchId2": "Select {0} to require fingerprint identity instead of a PIN for app access."
+ },
+ "Tap": {
+ "pinResetAfterNumberOfDays": "Specify the number of days that must pass before the user must reset the PIN.",
+ "previousPinBlockCount": "This setting specifies the number of previous PINs that Intune will maintain. Any new PINs must be different from those that Intune is maintaining."
+ },
+ "WipPolicySettings": {
+ "25": "",
+ "allowWindowsSearch": "This will allow Windows Search to continue to search through encrypted data.",
+ "authoritativeIpRanges": "Enable this setting if you want to override Windows auto-detection of IP ranges.",
+ "authoritativeProxyServers": "Enable this setting if you want to override Windows auto-detection of proxy servers.",
+ "checkInput": "Check input for validity",
+ "dataRecoveryCert": "A recovery certificate is a special Encrypting File System (EFS) certificate you can use to recover encrypted files if your encryption key is lost or damaged. You need to create the recovery certificate, and specify it here. More information is here",
+ "enterpriseCloudResources": "Specify cloud resources to be treated as corporate and be protected with Windows Information Protection policy. Multiple resources can be specified by separating individual entries with the '|' character.
If you have a proxy configured in your company, then you can specify the proxy through which traffic to cloud resources you specified will be routed.
URL[,Proxy]|URL[,Proxy]
Without proxy: contoso.sharepoint.com|contoso.visualstudio.com
With proxy: contoso.sharepoint.com,proxy.contoso.com|contoso.visualstudio.com,proxy.contoso.com
",
+ "enterpriseIPv4Ranges": "Specify the IPv4 ranges that form your corporate network. These are used in conjunction with the Enterprise Network Domain Names that you specify to define your corporate network boundary.
This setting is required to have Windows Information Protection enabled.
Multiple ranges can be specified by separating individual entries with a comma.
For example: 3.4.0.1-3.4.255.255,192.168.1.1-192.168.255.255
",
+ "enterpriseIPv6Ranges": "Specify the IPv6 ranges that form your corporate network. These are used in conjunction with the Enterprise Network Domain Names that you specify to define your corporate network boundary.
Multiple ranges can be specified by separating individual entries with a comma.
For example: 2001:4898:dc05::-2001:4898:dc05:ffff:ffff:ffff:ffff:ffff,2a01:110::-2a01:110:7fff:ffff:ffff:ffff:ffff:ffff
",
+ "enterpriseInternalProxyServers": "If you have a proxy configured in your company, then you can specify the proxy through which traffic to cloud resources specified in the Enterprise Cloud Resources settings are to be routed.
Multiple values can be specified by separating individual entries with a semi-colon.
For example: contoso.internalproxy1.com;contoso.internalproxy2.com
",
+ "enterpriseNetworkDomainNames": "Specify the DNS names that form your corporate network. These are used in conjunction with the IP ranges that you specify to define your corporate network boundary. Multiple values can be specified by separating individual entries with a comma.
This setting is required to have Windows Information Protection enabled.
For example: corp.contoso.com,region.contoso.com
",
+ "enterpriseProtectedDomainNames": "Specify the DNS names that form your corporate network. These are used in conjunction with the IP ranges that you specify to define your corporate network boundary. Multiple values can be specified by separating individual entries with a '|'.
This setting is required to have Windows Information Protection enabled.
For example: corp.contoso.com|region.contoso.com
",
+ "enterpriseProxyServers": "If you have external facing proxies in your corporate network, specify them here. When specifying a proxy server address, you should also specify the port through which traffic should be allowed and protected through Windows Information Protection.
Note: This list must not include servers in your Enterprise Internal Proxy Server list. Multiple values can be specified by separating individual entries with a semi-colon.
For example: proxy.contoso.com:80;proxy2.contoso.com:80
",
+ "maxInactivityTime1": "Specifies the maximum amount of time (in minutes) allowed after the device is idle that will cause the device to become PIN or password locked. Users can select any existing timeout value less than the specified maximum time in the Settings app. Note the Lumia 950 and 950XL have a maximum timeout value of 5 minutes, regardless of the value set by this policy.",
+ "maxInactivityTime2": "0 (default) - No timeout is defined. The default of '0' is interpreted as 'No timeout is defined.'",
+ "maxPasswordAttempts1": "This policy has different behaviors on the mobile device and desktop.",
+ "maxPasswordAttempts2": "On a mobile device, when the user reaches the value set by this policy, then the device is wiped.",
+ "maxPasswordAttempts3": "On a desktop, when the user reaches the value set by this policy, it is not wiped.Instead, the desktop is put on BitLocker recovery mode, which makes the data inaccessible but recoverable.If BitLocker is not enabled, then the policy cannot be enforced.",
+ "maxPasswordAttempts4": "Prior to reaching the failed attempts limit, the user is sent to the lock screen and warned that more failed attempts will lock their computer.When the user reaches the limit, the device automatically reboots and shows the BitLocker recovery page.This page prompts the user for the BitLocker recovery key.",
+ "maxPasswordAttempts5": "0 (default) - The device is never wiped after an incorrect PIN or password is entered.",
+ "maxPasswordAttempts6": "Most secure value is 0 if all policy values = 0; otherwise, Min policy value is the most secure value.",
+ "mdmDiscoveryUrl": "Specify the URL for the MDM enrollment endpoint that users who enroll to MDM will use. By default, this is specified for Intune.",
+ "minimumPinLength1": "Integer value that sets the minimum number of characters required for the PIN. Default value is 4. The lowest number you can configure for this policy setting is 4. The largest number you can configure must be less than the number configured in the Maximum PIN length policy setting or the number 127, whichever is the lowest.",
+ "minimumPinLength2": "If you configure this policy setting, the PIN length must be greater than or equal to this number. If you disable or do not configure this policy setting, the PIN length must be greater than or equal to 4.",
+ "name": "The name of this network boundary",
+ "neutralResources": "If you have authentication redirection endpoints in your company, specify those here. The locations specified here are considered to be either personal or corporate depending on the context of the connection prior to the redirection.
Multiple values can be specified by separating individual entries with a comma.
For example: sts.contoso.com,sts.contoso2.com
",
+ "passportForWork1": "Value that sets Windows Hello for Business as a method for signing into Windows.",
+ "passportForWork2": "Default value is true.If you set this policy to false, the user cannot provision Windows Hello for Business except on Azure Active Directory joined mobile phones where provisioning is required.",
+ "pinExpiration": "The largest number you can configure for this policy setting is 730. The lowest number you can configure for this policy setting is 0. If this policy is set to 0, then the user’s PIN will never expire.",
+ "pinHistory1": "The largest number you can configure for this policy setting is 50. The lowest number you can configure for this policy setting is 0. If this policy is set to 0, then storage of previous PINs is not required.",
+ "pinHistory2": "The current PIN of the user is included in the set of PINs associated with the user account. PIN history is not preserved through a PIN reset.",
+ "protectUnderLock": "Protects app content while the device is in a locked state.",
+ "protectionModeBlock": "Block: Blocks enterprise data from leaving protected apps.
",
+ "protectionModeOff": "Off: User is free to relocate data off of protected apps. No actions are logged.
",
+ "protectionModeOverride": "Allow overrides: User is prompted when attempting to relocate data from a protected to a non-protected app. If they choose to override this prompt, the action will be logged.
",
+ "protectionModeSilent": "Silent: User is free to relocate data off of protected apps. These actions are logged.
",
+ "required": "Required",
+ "revokeOnMdmHandoff": "Added in Windows 10, version 1703. This policy controls whether to revoke the WIP keys when a device upgrades from MAM to MDM. If set to “Off”, the keys will not be revoked and the user will continue to have access to protected files after upgrade. This is recommended if the MDM service is configured with the same WIP EnterpriseID as the MAM service.",
+ "revokeOnUnenroll": "This will cause encryption keys to be revoked when a device un-enrolls from this policy.",
+ "rmsTemplateForEdp": "TemplateID GUID to use for RMS encryption. The Azure RMS template allows the IT admin to configure the details about who has access to RMS-protected file and how long they have access.",
+ "showWipIcon": "This will let the user know when they are acting in a corporate context, by overlaying an icon.",
+ "useRmsForWip": "Specifies whether to allow Azure RMS encryption for WIP."
+ },
+ "requireAppPin": "Select Yes to disable the app PIN when a device lock is detected on an enrolled device.
Note: Intune cannot detect device enrollment with a third-party EMM solution on iOS/iPadOS.
"
+ },
+ "Autopilot": {
+ "AssignResourceAccount": {
+ "createNewCommandMenu": "Create new",
+ "createNewResourceAccountInfo": "\nCreate a new resource account during enrollment. The Resource account will be added to the Resource account table right away, but won't be active until the device is enrolled, and the Surface Hub subscription is verified. Learn more about Resource Accounts
\n ",
+ "createNewResourceTitle": "Create new resource account",
+ "deviceNameInvalid": "Device name is in an invalid format",
+ "deviceNameRequired": "A device name is required",
+ "editResourceAccountLabel": "Edit",
+ "selectExistingCommandMenu": "Select existing"
+ },
+ "Device": {
+ "ComputerName": {
+ "validFormat": "Names must be 15 characters or less, and can contain letters (a-z, A-Z), numbers (0-9), and hyphens. Names must not contain only numbers. Names cannot include a blank space."
+ },
+ "Header": {
+ "addressableUserName": "User friendly name",
+ "azureADDevice": "Associated Azure AD device",
+ "batch": "Group tag",
+ "dateAssigned": "Date assigned",
+ "deviceAccountFriendlyName": "Device account friendly name",
+ "deviceAccountPwd": "Device account password",
+ "deviceAccountUpn": "Device account",
+ "deviceDisplayName": "Device name",
+ "deviceName": "Device name",
+ "deviceUseType": "Device-use type",
+ "enrollmentState": "Enrollment state",
+ "intuneDevice": "Associated Intune device",
+ "lastContacted": "Last contacted",
+ "make": "Manufacturer",
+ "model": "Model",
+ "profile": "Assigned profile",
+ "profileStatus": "Profile status",
+ "purchaseOrderId": "Purchase order",
+ "resourceAccount": "Resource account",
+ "serialNumber": "Serial number",
+ "userPrincipalName": "User"
+ },
+ "SurfaceHub": {
+ "friendlyNameRequired": "A friendly name is required",
+ "pwdRequired": "A password is required",
+ "upnRequired": "A device account is required",
+ "upnValidFormat": "Values can contain letters (a-z, A-Z), numbers (0-9), and hyphens. Values cannot include a blank space."
+ }
+ },
+ "DeviceUseType": {
+ "meetingAndPresentation": "Meeting and presentation",
+ "teamCollaboration": "Team collaboration"
+ },
+ "Devices": {
+ "featureDescription": "Windows Autopilot lets you customize the out-of-box experience (OOBE) for your users.",
+ "importErrorStatus": "Some devices were not imported. Click here for more information.",
+ "importPendingStatus": "Import in progress. Elapsed time: {0} min. This process can take up to {1} min."
+ },
+ "DirectoryService": {
+ "activeDirectoryAD": "Hybrid Azure AD joined",
+ "activeDirectoryADLabel": "Hybrid Azure AD width Autopilot",
+ "azureAD": "Azure AD joined",
+ "unknownType": "Unknown Type"
+ },
+ "Filter": {
+ "enrollmentState": "State",
+ "profile": "Profile status"
+ },
+ "OOBE": {
+ "AddressableUserName": {
+ "validateEmpty": "User friendly name cannot be empty."
+ },
+ "ApplyComputerNameTemplate": {
+ "infoBalloon": "Create a naming template to add names to your devices during enrollment.",
+ "label": "Apply device name template"
+ },
+ "ApplyComputerNameTemplateDisabled": {
+ "label": "For Hybrid Azure AD joined type of Autopilot deployment profiles, devices are named using settings specified in Domain Join configuration."
+ },
+ "ComputerNameTemplate": {
+ "emptyValue": "MyCompany-%RAND:4%",
+ "label": "Enter a name",
+ "noDisallowedChars": "Name must only contain alphanumeric characters, hyphens, %SERIAL%, or %RAND:x%",
+ "serialLength": "Cannot use more than 7 characters with %SERIAL%",
+ "validateLessThan15Chars": "Name must be 15 characters or less",
+ "validateNoSpaces": "Computer names cannot contain spaces",
+ "validateNotAllNumbers": "Name must also contain letters and/or hyphens",
+ "validateNotEmpty": "Name cannot be empty",
+ "validateOnlyOneMacro": "Name must only contain one of %SERIAL% or %RAND:x%"
+ },
+ "ConfigureComputerNameTemplate": {
+ "description": "Create a unique name for your devices. Names must be 15 characters or less, and can contain letters (a-z, A-Z), numbers (0-9), and hyphens. Names must not contain only numbers. Names cannot include a blank space. Use the %SERIAL% macro to add a hardware-specific serial number. Alternatively, use the %RAND:x% macro to add a random string of numbers, where x equals the number of digits to add."
+ },
+ "EnableWhiteGlove": {
+ "infoBalloon": "Enable pressing Windows key 5 times to run OOBE without user authentication to enroll device and provision all system-context apps and settings. User-context apps and settings will be delivered when the user signs in.",
+ "label": "Allow pre-provisioned deployment"
+ },
+ "HybridAzureADSkipConnectivityCheck": {
+ "infoBalloon": "The Autopilot Hybrid Azure AD join flow will continue even if it does not establish domain controller connectivity during OOBE.",
+ "label": "Skip AD connectivity check (preview)"
+ },
+ "accountType": "User account type",
+ "accountTypeInfo": "Specify whether users are administrators or standard users on the device. Note that this setting does not apply to Global Administrator or Company Administrator accounts. These accounts cannot be standard users because they have access to all administrative features in Azure AD.",
+ "configOOBEInfo": "\nConfigure the out-of-box experience for your Autopilot devices\n
",
+ "configureDevice": "Deployment mode",
+ "configureDeviceHintForSurfaceHub2": "Autopilot only supports self-deploying mode for Surface Hub 2. This mode doesn't associate the user with the enrolled device, so it doesn't require user credentials.",
+ "configureDeviceHintForWindowsPC": "\n Deployment mode controls if a user needs to provide credentials in order to provision the device.\n
\n \n - \n User-Driven: Devices are associated with the user enrolling the device and user credentials are required to provision the device\n
\n - \n Self-Deploying (preview): Devices are not associated with the user enrolling the device and user credentials are not required to provision the device\n
\n
",
+ "createSurfaceHub2Info": "Configure the Autopilot enrollment settings for your Surface Hub 2 devices. By default Autopilot enables skipping user authentication during OOBE. Learn more about Windows Autopilot for Surface Hub 2.",
+ "createWindowsPCInfo": "\n\nThe following options are automatically enabled for Autopilot devices in self-deploying mode:\n
\n\n - \n Skip Work or Home usage selection\n
\n - \n Skip OEM registration and OneDrive configuration\n
\n - \n Skip user authentication in OOBE\n
\n
",
+ "endUserDevice": "User-Driven",
+ "hideEscapeLink": "Hide change account options",
+ "hideEscapeLinkInfo": "Options to change account and start over with a different account appear, respectively, during initial device setup on the company sign-in page, and on the domain error page. To hide these options, you must configure company branding in Azure Active Directory (requires Windows 10, 1809 or later, or Windows 11).",
+ "info": "Autopilot profile settings define the out-of-box experience users see when starting Windows for the first time. ",
+ "language": "Language (Region)",
+ "languageInfo": "Specify the language and region that will be used.",
+ "licenseAgreement": "Microsoft Software License Terms",
+ "licenseAgreementInfo": "Specify whether to show the EULA to users.",
+ "plugAndForgetDevice": "Self-Deploying (preview)",
+ "plugAndForgetGA": "Self-Deploying",
+ "privacySettingWarning": "The default value for diagnostic data collection has changed for devices running Windows 10, version 1903 and later, or Windows 11. ",
+ "privacySettings": "Privacy settings",
+ "privacySettingsInfo": "Specify whether to show privacy settings to users.",
+ "showCortanaConfigurationPage": "Cortana configuration",
+ "showCortanaConfigurationPageInfo": "Show will enable the Cortana configuration introduction during startup.",
+ "skipEULAWarning": "Important information about hiding license terms",
+ "skipKeyboardSelection": "Automatically configure keyboard",
+ "skipKeyboardSelectionInfo": "If true, skip the keyboard selection page if Language is set.",
+ "subtitle": "Autopilot profiles",
+ "title": "Out-of-box experience (OOBE)",
+ "useOSDefaultLanguage": "Operating system default",
+ "userSelect": "User select"
+ },
+ "Sync": {
+ "lastRequestedLabel": "Last sync request",
+ "lastSuccessfulLabel": "Last successful sync",
+ "syncInProgress": "Sync is in progress. Check back again soon.",
+ "syncInitiated": "Autopilot settings sync initiated.",
+ "syncSettingsTitle": "Sync Autopilot settings"
+ },
+ "Title": {
+ "devices": "Windows Autopilot devices"
+ },
+ "Tooltips": {
+ "addressableUserName": "Greeting name displayed during device setup.",
+ "azureADDevice": "Go to device details for associated device. N/A means that there's no associated device.",
+ "batch": "A string attribute that can be used to identify a group of devices. Intune's group tag field maps to the OrderID attribute on Azure AD devices.",
+ "dateAssigned": "Timestamp of when the profile was assigned to the device.",
+ "deviceAccountFriendlyName": "Device account friendly name for Surface Hub devices",
+ "deviceAccountPwd": "Device account password for Surface Hub devices",
+ "deviceAccountUpn": "Device account email for Surface Hub devices",
+ "deviceDisplayName": "Configure a unique name for a device. This name will be ignored in Hybrid Azure AD joined deployments. Device name still comes from the domain join profile for Hybrid Azure AD devices.",
+ "deviceName": "The name shown when someone tried to discover and connect to the device.",
+ "deviceUseType": " Device would setup based on your choice. You can always change later in settings.\n \n - For meetings and presentations, Windows Hello isn't turned on and data is removed after each session.\n
\n - For team collaboration, Windows Hello is turned on and profiles are saved for quick sign-in
\n
",
+ "enrollmentState": "Specifies if the device has enrolled.",
+ "intuneDevice": "Go to device details for associated device. N/A means that there's no associated device.",
+ "lastContacted": "Timestamp of when the device was last contacted.",
+ "make": "Manufacturer of the selected device.",
+ "model": "Model of the selected device",
+ "profile": "Name of the profile assigned to the device.",
+ "profileStatus": "Specifies if a profile is assigned to the device.",
+ "purchaseOrderId": "Purchase order ID",
+ "resourceAccount": "The device's identity, or user principal name (UPN).",
+ "serialNumber": "Serial number of the selected device.",
+ "userPrincipalName": "User to pre-fill authentication during device setup."
+ },
+ "allDevices": "All devices",
+ "allDevicesAlreadyAssignedError": "An Autopilot profile is already assigned to All Devices.",
+ "assignFailedDescription": "Failed to update assignments for {0}.",
+ "assignFailedTitle": "Failed to update Autopilot profile assignments.",
+ "assignSuccessDescription": "Successfully updated assignments for {0}.",
+ "assignSuccessTitle": "Successfully updated Autopilot profile assignments.",
+ "assignSufaceHub2ProfileNextStep": "Next steps for this deployment",
+ "assignSurfaceHub2ProfileToDeviceGroup": "1. Assign this profile to at least one device group",
+ "assignSurfaceHub2ProfileToResourceAccount": "2. Assign a resource account to each Surface Hub device to which you deploy this profile",
+ "assignedDevicesCount": "Assigned devices",
+ "assignedDevicesResourceAccountDescription": "To deploy this profile to a device, you must assign the device a Resource account. Select one device at a time to assign an existing Resource account or to create a new one. Learn more about Resource Accounts
",
+ "assignedDevicesResourceAccountStatusBarMessage": "This table only lists the Surface Hub 2 devices that have been assigned this profile.",
+ "assigningDescription": "Updating assignments for {0}.",
+ "assigningTitle": "Updating Autopilot profile assignments.",
+ "autoremediationContext": "We've detected a hardware change on this device. We're trying to automatically register the new hardware. You don't need to do anything now; the status will be updated at the next check in with the result. Learn more about resetting the profile.",
+ "autoremediationTitle": "Device {0} has a fix pending",
+ "cannotDeleteMessage": "This profile is assigned to groups. You must unassign all groups from this profile before you can delete it.",
+ "cannotDeleteTitle": "Cannot delete {0}",
+ "createdDateTime": "Created",
+ "deleteMessage": "If you delete this Autopilot profile, any devices assigned to this profile will display Unassigned.",
+ "deleteMessageWithPolicySet": "{0} is included in one more more policy sets. If you delete {0}, you'll no longer be able to assign it via these policy sets.",
+ "deleteTitle": "Are you sure you want to delete this profile?",
+ "description": "Description",
+ "deviceType": "Device type",
+ "deviceUse": "Device use",
+ "directoryServiceHintForSurfaceHub2": " \n Autopilot only supports Azure AD Joined for Surface Hub 2 devices. Specify how devices join Active Directory (AD) in your organization.\n
\n \n - \n Azure AD joined: Cloud-only without an on-premises Windows Server Active Directory.\n
\n
\n ",
+ "directoryServiceHintForWindowsPC": "\n \n Specify how devices join Active Directory (AD) in your organization:\n
\n \n - \n Azure AD joined: Cloud-only without an on-premises Windows Server Active Directory\n
\n
\n ",
+ "getAssignedDevicesCountError": "An error occurred while fetching the assigned devices count.",
+ "getAssignmentsError": "An error occurred while fetching Autopilot profile assignments.",
+ "harvestDeviceId": "Convert all targeted devices to Autopilot",
+ "harvestDeviceIdDescription": "By default, this profile can only be applied to Autopilot devices synced from the Autopilot service.",
+ "harvestDeviceIdInfo": "\n Select Yes to register all targeted devices to Autopilot if they are not already registered. The next time registered devices go through the Windows Out of Box Experience (OOBE), they will go through the assigned Autopilot scenario.\n
\n Please note that certain Autopilot scenarios require specific minimum builds of Windows. Please make sure your device has the required minimum build to go through the scenario.\n
\n Removing this profile won’t remove affected devices from Autopilot. To remove a device from Autopilot, use the Windows Autopilot Devices view.\n ",
+ "harvestDeviceIdWarning": "After conversion, Autopilot devices can only be reverted by deleting them from the Autopilot devices list.",
+ "holoLensCommandMenu": "HoloLens",
+ "info": "Windows Autopilot deployment profiles lets you customize the out-of-box experience for your devices.",
+ "invalidProfileNameMessage": "Character \"{0}\" is not allowed",
+ "joinTypeLabel": "Join Azure AD as",
+ "lastModifiedDateTime": "Last modified:",
+ "manualRemediationContext": "We've detected a hardware change on this device. It won't automatically receive an Autopilot profile when it's reset unless you register the device again. Learn more about resetting the profile.",
+ "manualRemediationTitle": "Device {0} needs your attention",
+ "name": "Name",
+ "noAutopilotProfile": "No Autopilot profiles",
+ "notEnoughPermissionAssignedError": "You don't have enough permissions to assign this profile to one or more of your selected groups. Please contact your administrator.",
+ "profile": "profile",
+ "resourceAccountStatusBarMessage": "A Resource Account is required for each Surface Hub 2 device to which this profile is deployed. Click to learn more.",
+ "selectServices": "Select directory service devices will join",
+ "surfaceHub2CommandMenu": "Surface Hub 2",
+ "surfaceHub2SCommandMenu": "Surface Hub 2S",
+ "userAffinityLabel": "Deployment mode",
+ "windowsPCCommandMenu": "Windows PC",
+ "directoryServiceLabel": "Join to Azure AD as"
},
- "CategoryDescription": {
- "androidGeneralApplicationRestrictions": "Use these settings to stay informed about which users install apps that are not approved for use in your company. Select the type of restricted app list:
\n Prohibited apps - A list of apps that you want to be informed about when users install them.
\n Approved apps - A list of apps that are approved for use in your company. When users install an app that is not in this list, you will be informed.
\n ",
- "androidZebraMxZebraMx": "Configure Zebra devices by uploading a MX profile in XML format.",
- "iosDeviceFeaturesAirprint": "Use these settings to configure iOS devices to automatically connect to AirPrint compatible printers on your network. You'll need the IP address and resource path of your printers.",
- "iosDeviceFeaturesExtensibleSingleSignOn": "Configure an app extension that enables single sign-on (SSO) for devices running iOS 13.0 or later.",
- "iosDeviceFeaturesHomeScreenLayout": "Configure the layout for the dock and Home Screens on iOS devices. Certain devices may have limits to how many items can be displayed.",
- "iosDeviceFeaturesIOSWallpaper": "Display an image that will appear on the Home Screen and/or the lock screen of iOS devices.\n To display a unique image in each location, create one profile with the lock screen image, and one with the Home Screen image.\n Then assign both profiles to your users.\n
\n \n - Max file size: 750 KB
\n - File type: PNG, JPG or JPEG
\n
\n ",
- "iosDeviceFeaturesNotifications": "Specify notification settings for apps. Supports iOS 9.3 and later.",
- "iosDeviceFeaturesSharedDevice": "Specify optional text displayed on the locked screen. It is supported on iOS 9.3 and later. Learn More",
- "iosGeneralApplicationRestrictions": "Use these settings to stay informed about which users install apps that are not approved for use in your company. Select the type of restricted app list:
\n Prohibited apps - A list of apps that you want to be informed about when users install them.
\n Approved apps - A list of apps that are approved for use in your company. When users install an app that is not in this list, you will be informed.
\n ",
- "iosGeneralApplicationVisibility": "Use the show apps list to specify the iOS apps that user can view or launch. Use the hidden apps list to specify the iOS apps that user cannot view or launch.",
- "iosGeneralAutonomousSingleAppMode": "Apps you add to this list and assign to a device can lock the device to run only that app once launched, or lock the device while a certain action is running (for example taking a test). Once the action is complete, or you remove the restriction, the device returns to its normal state.",
- "iosGeneralKiosk": "Kiosk mode locks various settings into a device, or specifies a single app that can be run on a device. This can be useful in environments like a retail store where you want a device to run only a single demo app.",
- "macDeviceFeaturesAirprint": "Use these settings to configure macOS devices to automatically connect to AirPrint compatible printers on your network. You'll need the IP address and resource path of your printers.",
- "macDeviceFeaturesAssociatedDomains": "Configure associated domains to share data and sign-in credentials between your org’s apps and websites. This profile can be applied to devices running macOS 10.15 or later.",
- "macDeviceFeaturesExtensibleSingleSignOn": "Configure an app extension that enables single sign-on (SSO) for devices running macOS 10.15 or later.",
- "macDeviceFeaturesLoginItems": "Choose which apps, files, and folders open when users log in to their devices. If you don't want users to change how the selected apps open, you can hide the app from the user configuration.",
- "macDeviceFeaturesLoginWindow": "Configure the appearance of the macOS login screen and the functions that are available to users before and after they log in.",
- "macExtensionsKernelExtensions": "Use these settings to configure kernel extension policy on macOS devices running 10.13.2 or later.",
- "macGeneralDomains": "Emails that the user sends or receives which don't match the domains you specify here will be marked as untrusted.",
- "windows10EndpointProtectionApplicationGuard": "While using Microsoft Edge, Microsoft Defender Application Guard protects your environment from sites that haven’t been defined as trusted by your organization. When users visit sites that aren’t listed in your isolated network boundary, the sites will be opened in a virtual browsing session in Hyper-V. Trusted sites are defined by a network boundary, which can be configured in Device Configuration. Note this feature is only available for devices running 64-bit Windows 10 or later.",
- "windows10EndpointProtectionCredentialGuard": "Enabling Credential Guard will enable the following required settings:\n
\n \n - Enable Virtualization-based Security: Turns on virtualization-based security (VBS) at next reboot. Virtualization-based security uses the Windows Hypervisor to provide support for security services.
\n
\n - Secure Boot with Direct Memory Access: Turns on VBS with Secure Boot and direct memory access (DMA).
\n
\n ",
- "windows10EndpointProtectionDeviceGuard": "Choose additional apps that either need to be audited by, or can be trusted to run by Microsoft Defender Application Control. Windows components and all apps from Windows store are automatically trusted to run.
\n Applications will not be blocked when running in “audit only” mode. “Audit only” mode logs all events in local client logs.\n ",
- "windows10GeneralPrivacyPerApp": "Add apps that should have a different privacy behavior from what you defined in “Default privacy”.",
- "windows10NetworkBoundaryNetworkBoundary": "The network boundary is the list of enterprise resources, such as cloud-hosted domain and IP address ranges for computers that are on the enterprise network. Define network boundaries to apply policies to protect data that resides in these locations.",
- "windowsHealthMonitoring": "Configure the Windows health monitoring policy.",
- "windowsPhoneGeneralApplicationRestrictions": "Windows Phone can block users from installing or launching apps specified in the prohibited apps list, or apps not specified in the approved apps list. All managed apps must be added to the approved list."
- },
"MinimumOperatingSystem": {
"Android": {
"v10": "Android 10.0",
@@ -2435,6 +1154,304 @@
"excludedGroups": "Excluded Groups",
"licenseType": "License type"
},
+ "TAP": {
+ "AccessRequirements": {
+ "infoText": "Configure the PIN and credential requirements that users must meet to access apps in a work context."
+ },
+ "DataProtection": {
+ "infoText": "This group includes the data loss prevention (DLP) controls, like cut, copy, paste, and save-as restrictions. These settings determine how users interact with data in the apps."
+ },
+ "DeviceTypes": {
+ "selectOne": "Select at least one device type."
+ },
+ "TargetedApps": {
+ "TargetToAll": {
+ "label": "Target to apps on all device types"
+ },
+ "infoText": "Choose how you want to apply this policy to apps on different devices. Then add at least one app.",
+ "selectOne": "Select at least one app to create a policy."
+ }
+ },
+ "AssignmentAction": {
+ "exclude": "Excluded",
+ "include": "Included",
+ "includeAllDevicesVirtualGroup": "Included",
+ "includeAllUsersVirtualGroup": "Included"
+ },
+ "AppType": {
+ "androidEnterpriseSystemApp": "Android Enterprise system app",
+ "androidForWorkApp": "Managed Google Play store app",
+ "androidLobApp": "Android line-of-business app",
+ "androidStoreApp": "Android store app",
+ "builtInAndroid": "Built-In Android app",
+ "builtInApp": "Built-In app",
+ "builtInIos": "Built-In iOS app",
+ "default": "",
+ "iosLobApp": "iOS line-of-business app",
+ "iosStoreApp": "iOS store app",
+ "iosVppApp": "iOS volume purchase program app",
+ "lineOfBusinessApp": "Line-of-business app",
+ "macOSDmgApp": "macOS app (DMG)",
+ "macOSEdgeApp": "Microsoft Edge (macOS)",
+ "macOSLobApp": "macOS line-of-business app",
+ "macOSMdatpApp": "Microsoft Defender ATP (macOS)",
+ "macOSOfficeSuiteApp": "Microsoft 365 Apps (macOS)",
+ "macOsVppApp": "macOS volume purchase program app",
+ "managedAndroidLobApp": "Managed Android line-of-business app",
+ "managedAndroidStoreApp": "Managed Android store app",
+ "managedGooglePlayApp": "Managed Google Play store app",
+ "managedGooglePlayPrivateApp": "Managed Google Play private app",
+ "managedGooglePlayWebApp": "Managed Google Play web link",
+ "managedIosLobApp": "Managed iOS line-of-business app",
+ "managedIosStoreApp": "Managed iOS store app",
+ "microsoftStoreForBusinessApp": "Microsoft Store for Business app",
+ "microsoftStoreForBusinessReleaseManagedApp": "Microsoft Store for Business",
+ "officeSuiteApp": "Microsoft 365 Apps (Windows 10 and later)",
+ "webApp": "Web link",
+ "windowsAppXLobApp": "Windows AppX line-of-business app",
+ "windowsClassicApp": "Windows app (Win32)",
+ "windowsEdgeApp": "Microsoft Edge (Windows 10 and later)",
+ "windowsMobileMsiLobApp": "Windows MSI line-of-business app",
+ "windowsPhone81AppXBundleLobApp": "Windows Phone 8.1 AppX line-of-business app",
+ "windowsPhone81AppXLobApp": "Windows Phone 8.1 AppX line-of-business app",
+ "windowsPhone81StoreApp": "Windows Phone 8.1 store app",
+ "windowsPhoneXapLobApp": "Windows Phone XAP line-of-business app",
+ "windowsStoreApp": "Microsoft Store app",
+ "windowsUniversalAppXLobApp": "Windows Universal AppX line-of-business app",
+ "windowsUniversalLobApp": "Windows Universal line-of-business app"
+ },
+ "TAPSettings": {
+ "AllowedDataIngestionLocations": {
+ "label": "Allow users to open data from selected services",
+ "tooltip": "Select the application storage services users can open data from. All other services are blocked. Selecting no services will prevent users from opening data."
+ },
+ "AndroidBackup": {
+ "label": "Backup org data to Android backup services",
+ "tooltip": "Select {0} to prevent backup of org data to Android backup services. \nSelect {1} to permit backup of org data to Android backup services. \nPersonal or unmanaged data is not affected."
+ },
+ "AndroidBiometricAuthentication": {
+ "label": "Biometrics instead of PIN for access",
+ "tooltip": "Choose which android authentication methods people can use, if any, in place of an app PIN."
+ },
+ "AndroidFingerprint": {
+ "label": "Fingerprint instead of PIN for access (Android 6.0+)",
+ "tooltip": "Android OS uses fingerprint scans to authenticate Android-device users. This feature supports the native biometric controls on Android devices. OEM-specific biometric settings, like Samsung Pass, are not supported. If allowed, native biometric controls must be used to access the app on a capable device."
+ },
+ "AndroidOverrideFingerprint": {
+ "label": "Override fingerprint with PIN after timeout"
+ },
+ "AppPIN": {
+ "label": "App PIN when device PIN is set",
+ "tooltip": "If not required, an app PIN does not need to be used to access the app if the device PIN is set on an MDM enrolled device.
\n\nNote: Intune cannot detect device enrollment with a third-party EMM solution on Android."
+ },
+ "BlockDataIngestionIntoOrganizationDocuments": {
+ "label": "Open data into Org documents",
+ "tooltip1": "Select Block to disable the use of the Open option or other options to share data between accounts in this app. Select Allow if you want to allow the use of Open and other options to share data between accounts in this app.",
+ "tooltip2": "When set to Block, you can configure the following setting, Allow user to open data from selected services, to specify which services are allowed for Org data locations.",
+ "tooltip3": "Note: This setting is only enforced if the setting \"Receive data from other apps\" is set to \"Policy managed apps\".
\nNote: This setting does not apply to all applications. For more information see {0}.",
+ "tooltip4": "Note: This setting is only enforced if the setting \"Receive data from other apps\" is set to \"Policy managed apps\".
\nNote: This setting does not apply to all applications. For more information see {0} or {0}."
+ },
+ "ConnectToVpnOnLaunch": {
+ "label": "Start Microsoft Tunnel connection on app-launch",
+ "tooltip": "Allow connection to VPN when app is launch"
+ },
+ "CredentialsForAccess": {
+ "label": "Work or school account credentials for access",
+ "tooltip": "If required, work or school credentials must be used to access the policy-managed app. If PIN or biometric methods also required for access to the app, the work or school account credentials will be required on top of those prompts."
+ },
+ "CustomBrowserDisplayName": {
+ "label": "Unmanaged Browser Name",
+ "tooltip": "Enter the application name for browser associated with the \"Unmanaged Browser ID\". This name will be displayed to users if the specified browser is not installed."
+ },
+ "CustomBrowserPackageId": {
+ "label": "Unmanaged Browser ID",
+ "tooltip": "Enter the application ID for a single browser. Web content (http/s) from policy managed applications will open in the specified browser."
+ },
+ "CustomBrowserProtocol": {
+ "label": "Unmanaged browser protocol",
+ "tooltip": "Enter the protocol for a single unmanaged browser. Web content (http/s) from policy managed applications will open in any app that supports this protocol.
\n \nNote: Include only the protocol prefix. If your browser requires links of the form \"mybrowser://www.microsoft.com\", enter \"mybrowser\".
"
+ },
+ "CustomDialerAppDisplayName": {
+ "label": "Dialer App Name"
+ },
+ "CustomDialerAppPackageId": {
+ "label": "Dialer App Package ID"
+ },
+ "CustomDialerAppProtocol": {
+ "label": "Dialer App URL Scheme"
+ },
+ "Cutcopypaste": {
+ "label": "Restrict cut, copy, and paste between other apps",
+ "tooltip": "Cut, copy, and paste data between your app and other approved apps installed on the device. Choose to block these actions completely between apps, allow these actions for use with any app, or restrict use to apps that your organization manages.
\n\nPolicy-managed apps with paste in gives you the option to accept incoming content pasted from another app. However, it blocks users from sharing content outwardly, unless sharing with a managed app.
"
+ },
+ "DialerRestrictionLevel": {
+ "iosTooltip": "Typically, when a user selects a hyperlinked phone number in an app, a dialer app will open with the phone number prepopulated and ready to call. For this setting, choose how to handle this type of content transfer when it's initiated from a policy-managed app. Additional steps may be necessary in order for this setting to take effect. First, verify that tel and telprompt have been removed from the Select apps to exempt list. Then, ensure the application is using a newer version of Intune SDK (Version 12.7.0+).",
+ "label": "Transfer telecommunication data to",
+ "tooltip": "Typically, when a user selects a hyperlinked phone number in an app, a dialer app will open with the phone number prepopulated and ready to call. For this setting, choose how to handle this type of content transfer when it's initiated from a policy-managed app."
+ },
+ "EncryptData": {
+ "label": "Encrypt org data",
+ "link": "https://docs.microsoft.com/en-us/intune/app-protection-policy-settings-android#data-relocation-settings",
+ "tooltip": "Select {0} to enforce encrypting org data with Intune app layer encryption.\n
\nSelect {1} to not enforce encrypting org data with Intune app layer encryption.\n\n
\nNote: For more information on Intune app layer encryption, see {2}."
+ },
+ "EncryptDataAndroid": {
+ "tooltip": "Choose Require to enable encryption of work or school data in this app. Intune uses an OpenSSL, 256-bit AES encryption scheme along with the Android Keystore system to securely encrypt app data. Data is encrypted synchronously during file I/O tasks. Content on the device storage is always encrypted. The SDK will continue to provide support of 128-bit keys for compatibility with content and apps that use older SDK versions.
\n\nThe encryption method is FIPS 140-2 compliant.
"
+ },
+ "EncryptDataIos": {
+ "tooltip1": "Choose Require to enable encryption of work or school data in this app. Intune enforces iOS/iPadOS device encryption to protect app data while the device is locked. Applications may optionally encrypt app data using Intune APP SDK encryption. Intune APP SDK uses iOS/iPadOS cryptography methods to apply 128-bit AES encryption to app data.",
+ "tooltip2": "When you enable this setting, the user may be required to set up and use a PIN to access their device. If there's no device PIN and encryption is required, the user is prompted to set a PIN with the message \"Your organization has required you to first enable a device PIN to access this app.\"",
+ "tooltip3": "Go to the official Apple documentation to see which iOS encryption modules are FIPS 140-2 compliant or pending FIPS 140-2 compliance."
+ },
+ "EncryptDataOnEnrolledDevices": {
+ "label": "Encrypt org data on enrolled devices",
+ "tooltip": "Select {0} to enforce encrypting org data with Intune app layer encryption on all devices.
\n\nSelect {1} to not enforce encrypting org data with Intune app layer encryption on enrolled devices."
+ },
+ "IOSBackup": {
+ "label": "Backup org data to iTunes and iCloud backups",
+ "tooltip": "Select {0} to prevent backup of org data to iTunes or iCloud. \nSelect {1} to permit backup of org data to iTunes or iCloud. \nPersonal or unmanaged data is not affected."
+ },
+ "IOSFaceID": {
+ "label": "Face ID instead of PIN for access (iOS 11+/iPadOS)",
+ "tooltip": "Face ID uses facial recognition technology to authenticate users on iOS/iPadOS devices. Intune calls the LocalAuthentication API to authenticate users using Face ID. If allowed, Face ID must be used to access the app on a Face ID capable device."
+ },
+ "IOSOverrideTouchId": {
+ "label": "Override biometrics with PIN after timeout"
+ },
+ "IOSTouchId": {
+ "label": "Touch ID instead of PIN for access (iOS 8+/iPadOS)",
+ "tooltip": "Touch ID uses fingerprint recognition technology to authenticate users on iOS devices. Intune calls the LocalAuthentication API to authenticate users using Touch ID. If allowed, Touch ID must be used to access the app on a Touch ID capable device."
+ },
+ "NotificationRestriction": {
+ "label": "Org data notifications",
+ "tooltip": "Select one of the following options to specify how notifications for org accounts are shown for this app and any connected devices such as wearables:
\n{0}: Do not share notifications.
\n{1}: Do not share org data in notifications. If not supported by the application, notifications are blocked.
\n{2}: Share all notifications.
\n Android only:\n Note: This setting does not apply to all applications. For more information see {3}
\n \n iOS only:\nNote: This setting does not apply to all applications. For more information see {4}
"
+ },
+ "OpenLinksManagedBrowser": {
+ "label": "Restrict web content transfer with other apps",
+ "tooltip": "Select one of the following options to specify the apps that this app can open web content in:
\nEdge: Allow web content to open only in Edge
\nUnmanaged browser: Allow web content to open only in the unmanaged browser defined by \"Unmanaged browser protocol\" setting
\nAny app: Allow web links in any app
"
+ },
+ "OverrideBiometric": {
+ "tooltip": "If required, depending on the timeout (minutes of inactivity), a PIN prompt will override biometric prompts. If this timeout value is not met, the biometric prompt will continue to show. This timeout value should be greater than the value specified under 'Recheck the access requirements after (minutes of inactivity)'. "
+ },
+ "PinAccess": {
+ "label": "PIN for access",
+ "tooltip": "If required, a PIN must be used to access the policy-managed app. Users must create an access PIN the first time that they open the app from a work or school account."
+ },
+ "PinLength": {
+ "label": "Select minimum PIN length",
+ "tooltip": "This setting specifies the minimum number of digits of a PIN."
+ },
+ "PinType": {
+ "label": "PIN type",
+ "tooltip": "Numeric PINs are made up of all numbers. Passcodes are made up of alphanumeric characters and special characters. "
+ },
+ "Printing": {
+ "label": "Printing org data",
+ "tooltip": "If blocked, the app cannot print protected data."
+ },
+ "ReceiveData": {
+ "label": "Receive data from other apps",
+ "tooltip": "Select one of the following options to specify the apps that this app can receive data from:
\n\nNone: Do not allow receiving data in org documents or accounts from any app
\n\nPolicy managed apps: Only allow receiving data in org documents or accounts from other policy managed apps\n
\nAny app with incoming org data: Allow receiving data in org documents or accounts from from any app and treat all incoming data without an user account as org data
\n\nAll apps: Allow receiving data in org documents or accounts from any app"
+ },
+ "RecheckAccessAfter": {
+ "label": "Recheck the access requirements after (minutes of inactivity)\n\n",
+ "tooltip": "If the policy-managed app is inactive for longer than the number of minutes of inactivity specified, the app will prompt the access requirements (i.e PIN, conditional launch settings) to be rechecked after the app is launched."
+ },
+ "RestrictKeyboards": {
+ "duplicatePackageError": "The package ID must be unique.",
+ "invalidPackageError": "Invalid package ID",
+ "label": "Approved keyboards",
+ "select": "Select keyboards to approve",
+ "subtitle": "Add all keyboards and input methods that users are allowed to use with targeted apps. Enter the keyboard name as you would like it to appear to the end user.",
+ "title": "Add approved keyboards",
+ "toolTip": "Select Require and then specify a list of approved keyboards for this policy. Learn more."
+ },
+ "SaveData": {
+ "label": "Save copies of org data",
+ "tooltip": "Select {0} to prevent saving a copy of org data to a new location, other than the selected storage services, using \"Save As\".\n Select {1} to permit saving a copy of org data to a new location using \"Save As\".
\n\n\nNote: This setting does not apply to all applications. For more information see {2}.\n"
+ },
+ "SaveDataToSelected": {
+ "label": "Allow user to save copies to selected services",
+ "tooltip": "Select the storage services users can save copies of org data to. All other services are blocked. Selecting no services will prevent users from saving a copy of org data."
+ },
+ "ScreenCaptureAndAndroidAssistant": {
+ "label": "Screen capture and Google Assistant\n",
+ "tooltip": "If blocked, both screen capture and Google Assistant app scanning capabilities will be disabled when using the policy-managed app. This feature supports the usual Google Assistant app. Third party assistants using Google's Assist API are not supported. Choosing Block will also blur the App-Switcher preview image when using the app with a work or school account."
+ },
+ "SendData": {
+ "label": "Send org data to other apps",
+ "tooltip": "Select one of the following options to specify the apps that this app can send org data to:
\n\n\nNone: Do not allow sending org data to any app
\n\n\nPolicy managed apps: Only allow sending org data to other policy managed apps
\n\n\nPolicy managed apps with OS sharing: Only allow sending org data to other policy managed apps and sending org documents to other MDM managed apps on enrolled devices
\n\n\nPolicy managed apps with Open-In/Share filtering: Only allow sending org data to other policy managed apps and filter OS Open-in/Share dialogs to only display policy managed apps\n
\n\nAll apps: Allow sending org data to any app"
+ },
+ "SimplePin": {
+ "label": "Simple PIN",
+ "tooltip": "If blocked, users may not create a simple PIN. A simple PIN is a string of consecutive or repetitive digits, such as 1234, ABCD, or 1111. Please note that blocking simple PIN of type 'Passcode' requires the passcode to have at least one number, one letter, and one special character."
+ },
+ "SyncContacts": {
+ "label": "Sync policy managed app data with native apps or add-ins"
+ },
+ "ThirdPartyKeyboards": {
+ "infoBox": "Keyboard restrictions will apply to all areas of an app. Personal accounts for apps that support multiple identities will be affected by this restriction. Learn more.",
+ "label": "Third party keyboards"
+ },
+ "Timeout": {
+ "label": "Timeout (minutes of inactivity)"
+ },
+ "Tap": {
+ "numberOfDays": "Number of days",
+ "pinResetAfterNumberOfDays": "PIN reset after number of days",
+ "previousPinBlockCount": "Select number of previous PIN values to maintain"
+ }
+ },
+ "ScheduledAction": {
+ "Form": {
+ "editBlockActionInfo": "One block action is required for all compliance policies.",
+ "graceperiod": "Schedule (days after noncompliance)",
+ "graceperiodInfo": "Specify the number of days after noncompliance after which this action should be triggered for the user's device",
+ "subtitle": "Specify action parameters",
+ "title": "Action parameters"
+ },
+ "List": {
+ "gracePeriodDay": "{0} day after noncompliance",
+ "gracePeriodDays": "{0} days after noncompliance",
+ "gracePeriodHour": "{0} hour after noncompliance",
+ "gracePeriodHours": "{0} hours after noncompliance",
+ "gracePeriodMinute": "{0} minute after noncompliance",
+ "gracePeriodMinutes": "{0} minutes after noncompliance",
+ "immediately": "Immediately",
+ "schedule": "Schedule",
+ "scheduleInfoBalloon": "Days after noncompliance",
+ "subtitle": "Specify the sequence of actions on noncompliant devices",
+ "title": "Actions"
+ },
+ "Notification": {
+ "additionalEmailLabel": "Others",
+ "additionalRecipients": "Additional recipients (via email)",
+ "additionalRecipientsBladeTitle": "Select additional recipients",
+ "emailAddressPrompt": "Enter email addresses (separated by commas)",
+ "invalidEmail": "Invalid email address",
+ "messageTemplate": "Message template",
+ "noneSelected": "None selected",
+ "notSelected": "Not selected",
+ "numSelected": "{0} selected",
+ "selected": "Selected"
+ },
+ "block": "Mark device noncompliant",
+ "lockDevice": "Lock device (local action)",
+ "lockDeviceWithPasscode": "Lock device (local action)",
+ "noAction": "No action",
+ "noActionRow": "No actions, select 'Add' to add an action",
+ "pushNotification": "Send push notification to end user",
+ "remoteLock": "Remotely lock the noncompliant device",
+ "removeSourceAccessProfile": "Remove source access profile",
+ "retire": "Retire the noncompliant device",
+ "wipe": "Wipe",
+ "emailNotification": "Send email to end user"
+ },
+ "InstallIntent": {
+ "available": "Available for enrolled devices",
+ "availableWithoutEnrollment": "Available with or without enrollment",
+ "required": "Required",
+ "uninstall": "Uninstall"
+ },
"EnrollmentStatusScreen": {
"Apps": {
"managedApps": "Managed apps",
@@ -2466,142 +1483,61 @@
"resetToggle": "Allow users to reset device if installation error occurs",
"timeout": "Show an error when installation takes longer than specified number of minutes"
},
- "EnrollmentType": {
- "devicesWithEnrollment": "Managed devices",
- "devicesWithoutEnrollment": "Managed apps"
- },
- "ApplicabilityRules": {
- "GridLabel": {
- "property": "Property",
- "rule": "Rule",
- "ruleDetails": "Rule Details",
- "value": "Value"
- },
- "assignIf": "Assign profile if",
- "deleteWarning": "This will delete the selected Applicability Rule",
- "dontAssignIf": "Don't assign profile if",
- "editionDisplayText": "{0} {1}",
- "editionDisplayTextMore": "and {0} more",
- "instructions": "Specify how to apply this profile within an assigned group. Intune will only apply the profile to devices that meet the combined criteria of these rules.",
- "maxText": "Max",
- "minText": "Min",
- "noActionRow": "No Applicability Rules Specified",
- "oSVersion": "e.g. 1.2.3.4",
- "toText": "to",
- "windows10Education": "Windows 10/11 Education",
- "windows10EducationN": "Windows 10/11 Education N",
- "windows10Enterprise": "Windows 10/11 Enterprise",
- "windows10EnterpriseN": "Windows 10/11 Enterprise N",
- "windows10HolographicEnterprise": "Windows 10 Holographic for Business",
- "windows10Home": "Windows 10/11 Home",
- "windows10HomeChina": "Windows 10 Home China",
- "windows10HomeN": "Windows 10/11 Home N",
- "windows10HomeSingleLanguage": "Windows 10/11 Home Single Language",
- "windows10IoTCore": "Windows 10 IoT Core",
- "windows10IoTCoreCommercial": "Windows 10 IoT Core Commercial",
- "windows10Mobile": "Windows 10 Mobile",
- "windows10MobileEnterprise": "Windows 10 Mobile Enterprise",
- "windows10OsEdition": "OS edition",
- "windows10OsVersion": "OS version",
- "windows10Professional": "Windows 10/11 Professional",
- "windows10ProfessionalEducation": "Windows 10/11 Professional Education",
- "windows10ProfessionalEducationN": "Windows 10/11 Professional Education N",
- "windows10ProfessionalN": "Windows 10 Professional N",
- "windows10ProfessionalWorkstation": "Windows 10/11 Professional Workstation",
- "windows10ProfessionalWorkstationN": "Windows 10/11 Professional Workstation N"
+ "Devices": {
+ "General": {
+ "android": "Android"
+ },
+ "aOSP": "Android open source project",
+ "android": "Android device administrator",
+ "androidWorkProfile": "Android Enterprise (work profile)",
+ "iOS": "iOS/iPadOS",
+ "mac": "macOS",
+ "windows": "Windows (MDM)",
+ "windows10": "Windows 10 and later",
+ "windowsHomeSku": "Windows Home Sku",
+ "windowsMobile": "Windows Mobile"
+ },
+ "AppInfoBalloonText": {
+ "Certificate": {
+ "customSubjectName": "CN={{UserName}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US\nor\nCN={{AAD_Device_ID}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US",
+ "keySize": "Select the number of bits contained in the key.",
+ "keyUsage": "Specify the cryptographic action that is required to exchange the certificate’s public key.",
+ "renewalThreshold": "Enter the percentage (between 1 and 99 percent) of remaining certificate lifetime that is allowed before a device can request renewal of the certificate. The recommended amount in Intune is 20%. (1-99)",
+ "rootCert": "Choose a previously configured and assigned root CA certificate profile. The CA certificate must match the root certificate of the CA that is issuing the certificate for this profile (the one you are currently configuring).",
+ "scepServerUrl": "Enter a URL for the NDES Server that issues certificates through SCEP (Must be HTTPS). e.g. https://contoso.com/certsrv/mscep/mscep.dll",
+ "scepServerUrls": "Add one or more URLs for the NDES Server that issues certificates through SCEP (Must be HTTPS). e.g. https://contoso.com/certsrv/mscep/mscep.dll",
+ "subjectAlternativeName": "Subject alternative name",
+ "subjectNameFormat": "Subject name format",
+ "validityPeriod": "The amount of time remaining before the certificate expires. Enter a value that is equal to or lower than the validity period shown in the certificate template. Default is set at one year."
+ },
+ "appInstallContext": "This specifies the install context to be associated with this app. For dual mode apps, select the desired context for this app. For all other apps, this is pre-selected based on the package and cannot be modified.",
+ "autoUpdateMode": "Configure the update priority for the app. Select Default to require the device to be connected to WiFi, to be charging, and not to be actively in use before updating the app. Select High Priority to update the app as soon as the developer has published the app, regardless of charge status, WiFi capability, or end user activity on the device. Select Postponed to forgo app updates for up to 90 days. High priority and postponed will only take effect on DO devices.",
+ "configurationSettingsFormat": "Configuration settings format text",
+ "ignoreVersionDetection": "Set this to “Yes” for apps that are automatically updated by the app developer (such as Google Chrome).",
+ "ignoreVersionDetectionMacOSLobApp": "Select \"Yes\" for apps that are automatically updated by app developer or to only check for app bundleID before installation. Select \"No\" to check for app bundleID and version number before installation.",
+ "installAsManagedMacOSLobApp": "This setting only applies to macOS 11 and higher. The app will be installed but not managed on macOS 10.15 and lower.",
+ "installContextDropdown": "Select the appropriate install context. User context will install the app only for the targeted user while device context will install the app for all users on the device.",
+ "ldapUrl": "This is the LDAP hostname where clients can get the public encryption keys for email recipients. Emails will be encrypted when a key is available. Supported formats: - ldap.example.com
\n- ldap.example.com:123
\n- ldap://ldap.example.com
- ldap://ldap.example.com:123
- ldaps://ldap.example.com
\n- ldaps://ldap.example.com:123
",
+ "permissionsSettings": "Select runtime permissions for the associated app.",
+ "policyAssociatedApp": "Select the app that this policy will be associated with.",
+ "policyConfigurationSettings": "Select the method you want to use to define configuration settings for this policy.",
+ "policyDescription": "Optionally, enter a description for this configuration policy.",
+ "policyEnrollmentType": "Choose whether these settings are managed through device management or apps made with Intune SDK.",
+ "policyName": "Enter a name for this configuration policy.",
+ "policyPlatform": "Select the platform this app configuration policy will apply to.",
+ "policyProfileType": "Select the device profile types that this app configuration profile will apply to",
+ "policySMime": "Configure S/MIME signing and encryption settings for Outlook.",
+ "sMimeDeployCertsFromIntune": "Specify whether or not S/MIME certificates will be delivered from Intune for use with Outlook.\nIntune can automatically deploy signing and encryption certificates to users through the Company Portal.",
+ "sMimeEnable": "Specify whether or not S/MIME controls are enabled when composing an email",
+ "sMimeEnableAllowChange": "Specify if the user is allowed to change the Enable S/MIME setting.",
+ "sMimeEncryptAllEmails": "Specify whether or not all emails must be encrypted.\nEncrypting converts data to cipher text so that only the intended recipient can read it.",
+ "sMimeEncryptAllEmailsAllowChange": "Specify if the user is allowed to change the Encrypt all emails setting.",
+ "sMimeEncryptionCertProfile": "Specify certificate profile for email encryption.",
+ "sMimeSignAllEmails": "Specify whether or not all emails must be signed.\nA digital signature verifies the authenticity of the email and ensures that the contents are not tampered with in transit.",
+ "sMimeSignAllEmailsAllowChange": "Specify if the user is allowed to change the Sign all emails setting.",
+ "sMimeSigningCertProfile": "Specify certificate profile for email signing.",
+ "sMimeUserNotificationType": "Method to notify users that they must open Company Portal to retrieve S/MIME certificates for Outlook."
},
- "BooleanActions": {
- "allow": "Allow",
- "block": "Block",
- "configured": "Configured",
- "disable": "Disable",
- "dontRequire": "Don't Require",
- "enable": "Enable",
- "hide": "Hide",
- "limit": "Limit",
- "notConfigured": "Not configured",
- "require": "Require",
- "show": "Show",
- "yes": "Yes"
- },
- "ProactiveRemediations": {
- "Create": {
- "Basics": {
- "DescriptionMultiLineTextBox": {
- "label": "Description",
- "placeholder": "Enter a description"
- },
- "NameTextBox": {
- "label": "Name",
- "placeholder": "Enter a name"
- },
- "PublisherTextBox": {
- "label": "Publisher",
- "placeholder": "Enter a publisher"
- },
- "VersionTextBox": {
- "label": "Version"
- },
- "headerDescription": "Create a new custom script package from detection and remediation scripts that you’ve written."
- },
- "ScopeTags": {
- "headerDescription": "Select one or more groups to assign the script package."
- },
- "Settings": {
- "DetectionScriptMultiLineTextBox": {
- "label": "Detection script",
- "placeholder": "Input script text",
- "requiredValidationMessage": "Please enter the detection script"
- },
- "EnforceScriptSignatureCheckOptionPicker": {
- "label": "Enforce script signature check"
- },
- "LoggedOnCredentialsOptionPicker": {
- "label": "Run this script using the logged-on credentials"
- },
- "RemediationScript": {
- "infoBox": "This script will run in detect-only mode because there is no remediation script."
- },
- "RemediationScriptMultiLineTextBox": {
- "label": "Remediation script",
- "placeholder": "Input script text"
- },
- "RunIn64BitPSOptionPicker": {
- "label": "Run script in 64-bit PowerShell"
- },
- "ScriptMultiLineTextBox": {
- "base64EncodingValidationMessage": "Invalid script. One or more characters used in the script is not valid."
- },
- "headerDescription": "Create a custom script package from scripts you've written. By default, scripts will run on assigned devices every day.",
- "infoBox": "This script is read-only. Some of the settings for this script might be disabled."
- },
- "title": "Create custom script",
- "ScriptProperties": {
- "GridHeaders": {
- "interval": "Interval",
- "time": "Date and time"
- },
- "Interval": {
- "day": "Repeats every day",
- "days": "Repeats every {0} days",
- "hour": "Repeats every hour",
- "hours": "Repeats every {0} hours",
- "month": "Repeats every month",
- "months": "Repeats every {0} months",
- "week": "Repeats every week",
- "weeks": "Repeats every {0} weeks"
- },
- "Time": {
- "utc": "{0} (UTC)",
- "utcWithDate": "{0} (UTC) on {1}",
- "withDate": "{0} on {1}"
- }
- }
- },
- "Edit": {
- "title": "Edit - {0}"
- }
- },
"WindowsManagement": {
"Assignment": {
"noAssignmentCustomAttributeDisplayText": "Assign custom attribute to at least one group. Go to Properties to edit assignments.",
@@ -2708,910 +1644,6 @@
"shellScriptObjectName": "Shell script",
"successfullySavedPolicy": "Saved {0}"
},
- "AssignmentFilters": {
- "assignmentFilterColumnHeader": "Filter",
- "noFilters": "None"
- },
- "Category": {
- "airPlay": "AirPlay",
- "airPrint": "AirPrint",
- "androidDefenderAtp": "Microsoft Defender for Endpoint",
- "androidDeviceOwnerApplications": "Applications",
- "androidForWorkPassword": "Device password",
- "appManagement": "Allow or Block apps",
- "applicationGuard": "Microsoft Defender Application Guard",
- "applicationRestrictions": "Restricted Apps",
- "applicationVisibility": "Show or Hide Apps",
- "applications": "App Store",
- "applicationsAndGames": "App Store, Doc Viewing, Gaming",
- "applicationsAndGoogle": "Google Play Store",
- "appsAndExperience": "Apps and experience",
- "associatedDomains": "Associated domains",
- "autonomousSingleAppMode": "Autonomous Single App Mode",
- "azureOperationalInsights": "Azure operational insights",
- "bitLocker": "Windows Encryption",
- "browser": "Browser",
- "builtinApps": "Built-in Apps",
- "cellular": "Cellular",
- "cloudAndStorage": "Cloud and Storage",
- "cloudPrint": "Cloud Printer",
- "complianceEmailProfile": "Email",
- "connectedDevices": "Connected Devices",
- "connectivity": "Cellular and connectivity",
- "contentCaching": "Content caching",
- "controlPanelAndSettings": "Control Panel and Settings",
- "credentialGuard": "Microsoft Defender Credential Guard",
- "customCompliance": "Custom Compliance",
- "customCompliancePreview": "Custom Compliance (Preview)",
- "customConfiguration": "Custom Configuration Profile",
- "customOMASettings": "Custom OMA-URI Settings",
- "customPreferences": "Preference file",
- "defender": "Microsoft Defender Antivirus",
- "defenderAntivirus": "Microsoft Defender Antivirus",
- "defenderExploitGuard": "Microsoft Defender Exploit Guard",
- "defenderFirewall": "Microsoft Defender Firewall",
- "defenderLocalSecurityOptions": "Local device security options",
- "defenderSecurityCenter": "Microsoft Defender Security Center",
- "deliveryOptimization": "Delivery Optimization",
- "derivedCredentialAuthenticationConfiguration": "Derived credential",
- "deviceExperience": "Device experience",
- "deviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
- "deviceGuard": "Microsoft Defender Application Control",
- "deviceHealth": "Device Health",
- "devicePassword": "Device password",
- "deviceProperties": "Device Properties",
- "deviceRestrictions": "General",
- "deviceSecurity": "System security",
- "display": "Display",
- "domainJoin": "Domain Join",
- "domains": "Domains",
- "edgeBrowser": "Microsoft Edge Legacy (Version 45 and earlier)",
- "edgeBrowserSmartScreen": "Microsoft Defender SmartScreen",
- "edgeKiosk": "Microsoft Edge kiosk mode",
- "editionUpgrade": "Edition Upgrade",
- "education": "Education",
- "educationDeviceCerts": "Device certificates",
- "educationStudentCerts": "Student certificates",
- "educationTakeATest": "Take a Test",
- "educationTeacherCerts": "Teacher certificates",
- "emailProfile": "Email",
- "enterpriseDataProtection": "Windows Information Protection",
- "expeditedCheckin": "Mobile device management configuration",
- "extensibleSingleSignOn": "Single sign-on app extension",
- "filevault": "FileVault",
- "firewall": "Firewall",
- "games": "Games",
- "gatekeeper": "Gatekeeper",
- "healthMonitoring": "Health monitoring",
- "homeScreenLayout": "Home Screen Layout",
- "iOSWallpaper": "Wallpaper",
- "importedPFX": "PKCS Imported Certificate",
- "iosDefenderAtp": "Microsoft Defender for Endpoint",
- "iosKiosk": "Kiosk",
- "kernelExtensions": "Kernel extensions",
- "keyboardAndDictionary": "Keyboard and Dictionary",
- "kiosk": "Kiosk",
- "kioskAndroidEnterprise": "Dedicated devices",
- "kioskConfiguration": "Kiosk",
- "kioskConfigurationV2": "Kiosk",
- "kioskWebBrowser": "Kiosk web browser",
- "lockScreenMessage": "Lock Screen Message",
- "lockedScreenExperience": "Locked Screen Experience",
- "logging": "Reporting and Telemetry",
- "loginItems": "Login items",
- "loginWindow": "Login window",
- "macDefenderAtp": "Microsoft Defender for Endpoint",
- "maintenance": "Maintenance",
- "malware": "Malware",
- "messaging": "Messaging",
- "networkBoundary": "Network boundary",
- "networkProxy": "Network proxy",
- "notifications": "App Notifications",
- "pKCS": "PKCS Certificate",
- "password": "Password",
- "personalProfile": "Personal profile",
- "personalization": "Personalization",
- "policyOverride": "Override Group Policy",
- "powerSettings": "Power Settings",
- "printer": "Printer",
- "privacy": "Privacy",
- "privacyPerApp": "Per-app privacy exceptions",
- "privacyPreferences": "Privacy preferences",
- "projection": "Projection",
- "sCCMCompliance": "Configuration Manager Compliance",
- "sCEP": "SCEP Certificate",
- "sCEPProperties": "SCEP Certificate",
- "sMode": "Mode switch (Windows Insider only)",
- "safari": "Safari",
- "search": "Search",
- "session": "Session",
- "sharedDevice": "Shared iPad",
- "sharedPCAccountManager": "Shared multi-user device",
- "singleSignOn": "Single sign-on",
- "smartScreen": "Microsoft Defender SmartScreen",
- "softwareUpdates": "Settings",
- "start": "Start",
- "systemExtensions": "System extensions",
- "systemSecurity": "System Security",
- "trustedCert": "Trusted Certificate",
- "updates": "Updates",
- "userRights": "User Rights",
- "usersAndAccounts": "Users and Accounts",
- "vPN": "Base VPN",
- "vPNApps": "Automatic VPN",
- "vPNAppsAndTrafficRules": "Apps and Traffic Rules",
- "vPNConditionalAccess": "Conditional Access",
- "vPNConnectivity": "Connectivity",
- "vPNDNSTriggers": "DNS Settings",
- "vPNIKEv2": "IKEv2 settings",
- "vPNProxy": "Proxy",
- "vPNSplitTunneling": "Split Tunneling",
- "vPNTrustedNetwork": "Trusted Network Detection",
- "webContentFilter": "Web Content Filter",
- "wiFi": "Wi-Fi",
- "win10Wifi": "Wi-Fi",
- "windowsAtp": "Microsoft Defender for Endpoint",
- "windowsDefenderATP": "Microsoft Defender for Endpoint",
- "windowsHelloForBusiness": "Windows Hello for Business",
- "windowsSpotlight": "Windows Spotlight",
- "wiredNetwork": "Wired network",
- "wireless": "Wireless",
- "wirelessProjection": "Wireless projection",
- "workProfile": "Work profile settings",
- "workProfilePassword": "Work profile password",
- "xboxServices": "Xbox services",
- "zebraMx": "MX profile (Zebra only)",
- "complianceActionsLabel": "Actions for noncompliance"
- },
- "MicrosoftEdgeChannel": {
- "beta": "Beta",
- "dev": "Dev",
- "stable": "Stable"
- },
- "ConfigurationTypes": {
- "Table": {
- "androidDeviceOwnerGeneral": "Device restrictions (device owner)",
- "androidForWorkGeneral": "Device restrictions (work profile)"
- },
- "androidCustom": "Custom",
- "androidDeviceOwnerGeneral": "Device restrictions",
- "androidDeviceOwnerPkcs": "PKCS Certificate",
- "androidDeviceOwnerScep": "SCEP Certificate",
- "androidDeviceOwnerTrustedCertificate": "Trusted Certificate",
- "androidDeviceOwnerVpn": "VPN",
- "androidDeviceOwnerWiFi": "Wi-Fi",
- "androidEmailProfile": "Email (Samsung KNOX only)",
- "androidForWorkCustom": "Custom",
- "androidForWorkEmailProfile": "Email",
- "androidForWorkGeneral": "Device restrictions",
- "androidForWorkImportedPFX": "PKCS imported certificate",
- "androidForWorkOemConfig": "OEMConfig",
- "androidForWorkPKCS": "PKCS certificate",
- "androidForWorkSCEP": "SCEP certificate",
- "androidForWorkTrustedCertificate": "Trusted certificate",
- "androidForWorkVpn": "VPN",
- "androidForWorkWiFi": "Wi-Fi",
- "androidGeneral": "Device restrictions",
- "androidImportedPFX": "PKCS imported certificate",
- "androidPKCS": "PKCS certificate",
- "androidSCEP": "SCEP certificate",
- "androidTrustedCertificate": "Trusted certificate",
- "androidVPN": "VPN",
- "androidWiFi": "Wi-Fi",
- "androidZebraMx": "MX profile (Zebra only)",
- "complianceAndroid": "Android compliance policy",
- "complianceAndroidDeviceOwner": "Fully managed, dedicated, and corporate-owned work profile",
- "complianceAndroidEnterprise": "Personally-owned work profile",
- "complianceAndroidForWork": "Android for Work compliance policy",
- "complianceIos": "iOS compliance policy",
- "complianceMac": "Mac compliance policy",
- "complianceWindows10": "Windows 10 and later compliance policy",
- "complianceWindows10Mobile": "Windows 10 mobile compliance policy",
- "complianceWindows8": "Windows 8 compliance policy",
- "complianceWindowsPhone": "Windows Phone compliance policy",
- "exchangeActiveSync": "Exchange Active Sync",
- "iosCustom": "Custom",
- "iosDerivedCredentialAuthenticationConfiguration": "Derived PIV credential",
- "iosDeviceFeatures": "Device features",
- "iosEDU": "Education",
- "iosEducation": "Education",
- "iosEmailProfile": "Email",
- "iosGeneral": "Device restrictions",
- "iosImportedPFX": "PKCS imported certificate",
- "iosPKCS": "PKCS certificate",
- "iosPresets": "Presets",
- "iosSCEP": "SCEP certificate",
- "iosTrustedCertificate": "Trusted certificate",
- "iosVPN": "VPN",
- "iosVPNZscaler": "VPN",
- "iosWiFi": "Wi-Fi",
- "macCustom": "Custom",
- "macDeviceFeatures": "Device features",
- "macEndpointProtection": "Endpoint protection",
- "macExtensions": "Extensions",
- "macGeneral": "Device restrictions",
- "macImportedPFX": "PKCS imported certificate",
- "macSCEP": "SCEP certificate",
- "macTrustedCertificate": "Trusted certificate",
- "macVPN": "VPN",
- "macWiFi": "Wi-Fi",
- "settingsCatalog": "Settings catalog (preview)",
- "unsupported": "Unsupported",
- "windows10AdministrativeTemplate": "Administrative Templates (Preview)",
- "windows10Atp": "Microsoft Defender for Endpoint (desktop devices running Windows 10 or later)",
- "windows10Custom": "Custom",
- "windows10DesktopSoftwareUpdate": "Software Updates",
- "windows10DeviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
- "windows10EmailProfile": "Email",
- "windows10EndpointProtection": "Endpoint protection",
- "windows10EnterpriseDataProtection": "Windows Information Protection",
- "windows10General": "Device restrictions",
- "windows10ImportedPFX": "PKCS imported certificate",
- "windows10Kiosk": "Kiosk",
- "windows10NetworkBoundary": "Network boundary",
- "windows10PKCS": "PKCS certificate",
- "windows10PolicyOverride": "Override Group Policy",
- "windows10SCEP": "SCEP certificate",
- "windows10SecureAssessmentProfile": "Education profile",
- "windows10SharedPC": "Shared multi-user device",
- "windows10TeamGeneral": "Device restrictions (Windows 10 Team)",
- "windows10TrustedCertificate": "Trusted certificate",
- "windows10VPN": "VPN",
- "windows10WiFi": "Wi-Fi",
- "windows10WiFiCustom": "Wi-Fi custom",
- "windows8General": "Device restrictions",
- "windows8SCEP": "SCEP certificate",
- "windows8TrustedCertificate": "Trusted certificate",
- "windows8VPN": "VPN",
- "windows8WiFi": "Wi-Fi import",
- "windowsDeliveryOptimization": "Delivery Optimization",
- "windowsDomainJoin": "Domain Join",
- "windowsEditionUpgrade": "Edition upgrade and mode switch",
- "windowsIdentityProtection": "Identity protection",
- "windowsPhoneCustom": "Custom",
- "windowsPhoneEmailProfile": "Email",
- "windowsPhoneGeneral": "Device restrictions",
- "windowsPhoneImportedPFX": "PKCS imported certificate",
- "windowsPhoneSCEP": "SCEP certificate",
- "windowsPhoneTrustedCertificate": "Trusted certificate",
- "windowsPhoneVPN": "VPN",
- "IosUpdate": "iOS Update policy"
- },
- "WindowsEnrollment": {
- "coManagementAuthorityDesc": "Configure co-management settings for Configuration Manager integration",
- "coManagementAuthorityTitle": "Co-management Settings ",
- "deploymentProfiles": "Windows Autopilot deployment profiles",
- "description": "Learn about the seven different ways a Windows 10/11 PC can be enrolled into Intune by users or admins.",
- "descriptionLabel": "Windows enrollment methods",
- "enrollmentStatusPage": "Enrollment Status Page"
- },
- "Platform": {
- "all": "All",
- "android": "Android device administrator",
- "androidAOSP": "Android (AOSP)",
- "androidEnterprise": "Android Enterprise",
- "androidForWork": "Android Enterprise",
- "androidWorkProfile": "Android enterprise",
- "common": "Common",
- "iOS": "iOS/iPadOS",
- "iosAndAndroidPlatformLabel": "iOS and Android",
- "iosCommaAndroidPlatformLabel": "iOS, Android",
- "linux": "Linux",
- "macOS": "macOS",
- "unknown": "Unknown",
- "unsupported": "Unsupported",
- "windows": "Windows",
- "windows10": "Windows 10 and later",
- "windows10CM": "Windows 10 and later (ConfigMgr)",
- "windows10Holo": "Windows 10 Holographic",
- "windows10Mobile": "Windows 10 Mobile",
- "windows10Team": "Windows 10 Team",
- "windows10X": "Windows 10X",
- "windows8": "Windows 8.1 and later",
- "windows8And10": "Windows 8 and 10",
- "windowsPhone": "Windows Phone 8.1",
- "windows10AndLater": "Windows 10 and later",
- "windows10AndWindowsServer": "Windows 10, Windows 11, and Windows Server (ConfigMgr)",
- "windows10andLaterCM": "Windows 10 and later (ConfigMgr)",
- "holoLens": "HoloLens",
- "surfaceHub2": "Surface Hub 2",
- "surfaceHub2S": "Surface Hub 2S",
- "windowsPC": "Windows PC"
- },
- "EnrollmentRestrictions": {
- "DeletePayloadLink": {
- "content": "{0} is included in one or more policy sets. If you delete {0}, you'll no longer be able to assign it via these policy sets. Delete anyway?",
- "contentWithError": "{0} might be included in one or more policy sets. If you delete {0}, you'll no longer be able to assign it via these policy sets. Delete anyway?",
- "header": "Are you sure you want to delete this restriction?"
- },
- "DeviceLimit": {
- "description": "Specify the maximum number of devices a user can enroll.",
- "header": "Device limit restrictions",
- "info": "Define how many devices each user can enroll."
- },
- "DeviceType": {
- "VersionValidation": {
- "aOSP": "Must be 1.0 or greater.",
- "android": "Enter a valid version number. Examples: 5.0, 5.5.1, 6.0.0.1",
- "androidForWork": "Enter a valid version number. Examples: 5.0, 5.1.1",
- "iOS": "Enter a valid version number. Examples: 9.0, 10.0, 9.0.2",
- "mac": "Enter a valid version number. Examples: 10, 10.10, 10.10.1",
- "min": "Minimum cannot be lower than {0}",
- "minMax": "Minimum version cannot be greater than maximum version.",
- "windows": "Must be 10.0 or greater. Leave blank to allow 8.1 devices",
- "windowsMobile": "Must be 10.0 or greater. Leave blank to allow 8.1 devices"
- },
- "allPlatformsBlocked": "All device platforms are blocked. Allow platform enrollment to enable platform configuration.",
- "blockManufacturerPlaceHolder": "Manufacturer name",
- "blockManufacturersHeader": "Blocked manufacturers",
- "cannotRestrict": "Restriction not supported",
- "configurationDescription": "Specify the platform configuration restrictions that must be met for a device to enroll. Use compliance policies to restrict devices after enrollment. Define versions as major.minor.build. Version restrictions only apply to devices enrolled with the Company Portal. Intune classifies devices as personally-owned by default. Additional action is required to classify devices as corporate-owned.",
- "configurationDescriptionLabel": "Learn more about setting enrollment restrictions",
- "configurations": "Configure platforms",
- "deviceManufacturer": "Device manufacturer",
- "header": "Device type restrictions",
- "info": "Define which platforms, versions, and management types can enroll.",
- "manufacturer": "Manufacturer",
- "max": "Max",
- "maxVersion": "Maximum version",
- "min": "Min",
- "minVersion": "Minimum version",
- "newPlatforms": "You have allowed new platforms. Consider updating Platform Configurations.",
- "personal": "Personally owned",
- "platform": "Platform",
- "platformDescription": "You can allow enrollment of the following platforms. Only block platforms you will not support. Allowed platforms can be configured with additional enrollment restrictions.",
- "platformSettings": "Platform settings",
- "platforms": "Select platforms",
- "platformsSelected": "{0} platforms selected",
- "type": "Type",
- "versions": "versions",
- "versionsRange": "Allow min/max range:",
- "windowsTooltip": "Restricts enrollment through Mobile Device Management. Does not restrict PC agent installation. Only Windows 10 and Windows 11 versions are supported. Leave versions blank to allow Windows 8.1."
- },
- "Priority": {
- "saved": "Restriction Priorities were successfully saved."
- },
- "Row": {
- "announce": "Priority: {0}, Name: {1}, Assigned: {2}"
- },
- "Table": {
- "deployed": "Deployed",
- "name": "Name",
- "priority": "Priority"
- },
- "Type": {
- "limit": "Device limit restriction",
- "type": "Device type restriction"
- },
- "allUsers": "All Users",
- "androidRestrictions": "Android restrictions",
- "create": "Create restriction",
- "defaultLimitDescription": "This is the default Device Limit Restriction applied with lowest priority to all users regardless of group membership.",
- "defaultTypeDescription": "This is the default Device Type Restriction applied with lowest priority to all users regardless of group membership.",
- "defaultWhfbDescription": "This is the default Windows Hello for Business configuration applied with the lowest priority to all users regardless of group membership.",
- "deleteMessage": "Affected users will be restricted by the next highest priority restriction assigned or the default restriction if no other restriction is assigned.",
- "deleteTitle": "Are you sure you want to delete {0} restriction?",
- "descriptionHint": "Short paragraph describing the business use or restriction level characterized by the restriction's settings.",
- "edit": "Edit restriction",
- "info": "A device must comply with the highest priority enrollment restrictions assigned to its user. You can drag a device restriction to change its priority. Default restrictions are lowest priority for all users and govern userless enrollments. Default restrictions may be edited, but not deleted.",
- "iosRestrictions": "iOS restrictions",
- "mDM": "MDM",
- "macRestrictions": "MacOS restrictions",
- "maxVersion": "Max Version",
- "minVersion": "Min Version",
- "nameHint": "This will be the primary attribute visible for identifying the restriction set.",
- "noAssignmentsStatusBar": "Assign restriction to at least one group. Click Properties.",
- "notFound": "Restriction not found. It may have already been deleted.",
- "personallyOwned": "Personally owned devices",
- "restriction": "Restriction",
- "restrictionLowerCase": "restriction",
- "restrictionType": "Restriction type",
- "selectType": "Select restriction type",
- "selectValidation": "Please select a platform",
- "typeHint": "Choose Device Type Restriction to restrict device properties. Choose Device Limit Restriction to restrict number of devices per-user.",
- "typeRequired": "Restriction type is required.",
- "winPhoneRestrictions": "Windows Phone restrictions",
- "windowsRestrictions": "Windows restrictions"
- },
- "Titles": {
- "ChromeOs": {
- "devices": "Chrome OS devices"
- },
- "ManagedDesktop": {
- "adminContacts": "Admin contacts",
- "appPackaging": "App packaging",
- "devices": "Devices",
- "feedback": "Feedback",
- "gettingStarted": "Getting started",
- "messages": "Messages",
- "onlineResources": "Online resources",
- "serviceRequests": "Service requests",
- "settings": "Settings",
- "tenantEnrollment": "Tenant enrollment"
- },
- "actions": "Actions for Non-Compliance",
- "advancedExchangeSettings": "Exchange online settings",
- "advancedThreatProtection": "Microsoft Defender for Endpoint",
- "allApps": "All apps",
- "allDevices": "All devices",
- "androidFotaDeployments": "Android FOTA deployments",
- "appBundles": "App Bundles",
- "appCategories": "App categories",
- "appConfigPolicies": "App configuration policies",
- "appInstallStatus": "App install status",
- "appLicences": "App licenses",
- "appProtectionPolicies": "App protection policies",
- "appProtectionStatus": "App protection status",
- "appSelectiveWipe": "App selective wipe",
- "appleVppTokens": "Apple VPP Tokens",
- "apps": "Apps",
- "assign": "Assignments",
- "assignedPermissions": "Assigned permissions",
- "assignedRoles": "Assigned roles",
- "autopilotDeploymentReport": "Autopilot deployments (preview)",
- "brandingAndCustomization": "Customization",
- "cartProfiles": "Cart profiles",
- "certificateConnectors": "Certificate connectors",
- "chromeEnterprise": "Chrome Enterprise",
- "compliancePolicies": "Compliance policies",
- "complianceScriptManagement": "Scripts",
- "complianceScriptManagementPreview": "Scripts (Preview)",
- "complianceSettings": "Compliance policy settings",
- "conditionStatements": "Condition statements",
- "conditions": "Locations",
- "configMgr": "Microsoft Endpoint Configuration Manager",
- "configurationProfiles": "Configuration profiles",
- "configurationProfilesPreview": "Configuration profiles (preview)",
- "connectorsAndTokens": "Connectors and tokens",
- "corporateDeviceIdentifiers": "Corporate device identifiers",
- "customAttributes": "Custom attributes",
- "customNotifications": "Custom notifications",
- "deploymentSettings": "Deployment settings",
- "derivedCredentials": "Derived Credentials",
- "deviceActions": "Device actions",
- "deviceCategories": "Device categories",
- "deviceCleanUp": "Device clean-up rules",
- "deviceEnrollmentManagers": "Device enrollment managers",
- "deviceExecutionStatus": "Device status",
- "deviceLimitEnrollmentRestrictions": "Enrollment device limit restrictions",
- "deviceTypeEnrollmentRestrictions": "Enrollment device platform restrictions",
- "devices": "Devices",
- "discoveredApps": "Discovered apps",
- "embeddedSIM": "eSIM cellular profiles (Preview)",
- "enrollDevices": "Enroll devices",
- "enrollmentFailures": "Enrollment failures",
- "enrollmentNotifications": "Enrollment notifications (Preview)",
- "enrollmentRestrictions": "Enrollment restrictions",
- "exchangeActiveSync": "Exchange ActiveSync",
- "exchangeServiceConnectors": "Exchange service connectors",
- "failuresForFeatureUpdates": "Feature update failures (Preview)",
- "failuresForQualityUpdates": "Windows Expedited update failures (Preview)",
- "featureFlighting": "Feature flighting",
- "featureUpdateDeployments": "Feature updates for Windows 10 and later (Preview)",
- "flighting": "Flighting",
- "fotaUpdate": "Firmware over-the-air update",
- "groupPolicy": "Administrative Templates",
- "groupPolicyAnalytics": "Group policy analytics",
- "helpSupport": "Help and support",
- "helpSupportReplacement": "Help and support ({0})",
- "iOSAppProvisioning": "iOS app provisioning profiles",
- "incompleteUserEnrollments": "Incomplete user enrollments",
- "intuneRemoteAssistance": "Remote help (preview)",
- "iosUpdates": "Update policies for iOS/iPadOS",
- "legacyPcManagement": "Legacy PC management",
- "macOSSoftwareUpdate": "Update policies for macOS",
- "macOSSoftwareUpdateAccountSummaries": "Installation status for macOS devices",
- "macOSSoftwareUpdateCategorySummaries": "Software updates summary",
- "macOSSoftwareUpdateStateSummaries": "updates",
- "managedGooglePlay": "Managed Google Play",
- "msfb": "Microsoft Store for Business",
- "myPermissions": "My permissions",
- "notifications": "Notifications",
- "officeApps": "Office apps",
- "officeProPlusPolicies": "Policies for Office apps",
- "onPremise": "On Premise",
- "onPremisesConnector": "Exchange ActiveSync on-premises connector",
- "onPremisesDeviceAccess": "Exchange ActiveSync devices",
- "onPremisesManageAccess": "Exchange on-premises access",
- "outOfDateIosDevices": "Installation failures for iOS devices",
- "overview": "Overview",
- "partnerDeviceManagement": "Partner device management",
- "perUpdateRingDeploymentState": "Per update ring deployment state",
- "permissions": "Permissions",
- "platformApps": "{0} apps",
- "platformDevices": "{0} devices",
- "platformEnrollment": "{0} enrollment",
- "policies": "Policies",
- "previewMDMDevices": "All managed devices (Preview)",
- "profiles": "Profiles",
- "properties": "Properties",
- "reports": "Reports",
- "retireNoncompliantDevices": "Retire noncompliant devices",
- "retireNoncompliantDevicesPreview": "Retire noncompliant devices (preview)",
- "role": "Role",
- "scriptManagement": "Scripts",
- "securityBaselines": "Security baselines",
- "serviceToServiceConnector": "Exchange online connector",
- "shellScripts": "Shell scripts",
- "teamViewerConnector": "TeamViewer connector",
- "telecomeExpenseManagement": "Telecom expense management",
- "tenantAdmin": "Tenant admin",
- "tenantAdministration": "Tenant administration",
- "termsAndConditions": "Terms and conditions",
- "titles": "Titles",
- "troubleshootSupport": "Troubleshooting + support",
- "user": "User",
- "userExecutionStatus": "User status",
- "warranty": "Warranty vendors",
- "wdacSupplementalPolicies": "S mode supplemental policies",
- "windows10DriverUpdate": "Driver updates for Windows 10 and later (Preview)",
- "windows10QualityUpdate": "Quality updates for Windows 10 and later (Preview)",
- "windows10UpdateRings": "Update rings for Windows 10 and later",
- "windows10XPolicyFailures": "Windows 10X policy failures",
- "windowsEnterpriseCertificate": "Windows enterprise certificate",
- "windowsManagement": "PowerShell scripts",
- "windowsSideLoadingKeys": "Windows side loading keys",
- "windowsSymantecCertificate": "Windows DigiCert certificate",
- "windowsThreatReport": "Threat agent status"
- },
- "ScopeTypes": {
- "allDevices": "All Devices",
- "allUsers": "All Users",
- "allUsersAndDevices": "All Users & All Devices",
- "selectedGroups": "Selected Groups"
- },
- "DetectionRules": {
- "ComparisonOperators": {
- "equals": "Equals",
- "greaterThan": "Greater than",
- "greaterThanOrEqualTo": "Greater than or equal to",
- "lessThan": "Less than",
- "lessThanOrEqualTo": "Less than or equal to",
- "notEqualTo": "Not equal to"
- },
- "CustomScript": {
- "enforceSignatureCheck": "Enforce script signature check and run script silently",
- "enforceSignatureCheckTooltip": "Select 'Yes' to verify that the script is signed by a trusted publisher, which will allow the script to run with no warnings or prompts displayed. The script will run unblocked. Select 'No' (default) to run the script with end-user confirmation without signature verification.",
- "header": "Use a custom detection script",
- "runAs32Bit": "Run script as 32-bit process on 64-bit clients",
- "runAs32BitTooltip": "Select 'Yes' to run the script in a 32-bit process on 64-bit clients. Select 'No' (default) to run the script in a 64-bit process on 64-bit clients. 32-bit clients run the script in a 32-bit process.",
- "scriptFile": "Script file",
- "scriptFileNotSelectedValidation": "No script file is selected.",
- "scriptFileTooltip": "Select a PowerShell script that will detect the presence of the app on the client. The app will be detected when the script both returns a 0 value exit code and writes a string value to STDOUT."
- },
- "Manual": {
- "FileRule": {
- "DetectionMethodOptions": {
- "dateCreated": "Date created",
- "dateModified": "Date modified",
- "doesNotExist": "File or folder does not exist",
- "fileOrFolderExists": "File or folder exists",
- "sizeInMB": "Size in MB",
- "version": "String (version)"
- },
- "associatedWith32Bit": "Associated with a 32-bit app on 64-bit clients",
- "associatedWith32BitTooltip": "Select 'Yes' to expand any path environment variables in the 32-bit context on 64-bit clients. Select 'No' (default) to expand any path variables in the 64-bit context on 64-bit clients. 32-bit clients will always use the 32-bit context.",
- "detectionMethod": "Detection method",
- "detectionMethodTooltip": "Select the type of detection method used to validate the presence of the app.",
- "fileOrFolder": "File or folder",
- "fileOrFolderToolTip": "The file or folder to detect.",
- "operator": "Operator",
- "operatorTooltip": "Select the operator for the detection method used to validate the comparison.",
- "path": "Path",
- "pathTooltip": "The full path of the folder containing the file or folder to detect.",
- "value": "Value",
- "valueTooltip": "Select a value that matches the selected detection method. Date detection methods should be entered in local time."
- },
- "GridColumns": {
- "pathOrCode": "Path/Code",
- "type": "Type"
- },
- "MsiRule": {
- "operator": "Operator",
- "operatorTooltip": "Select the operator for the MSI product version validation comparison.",
- "productCode": "MSI product code",
- "productCodeTooltip": "A valid MSI product code for the app.",
- "productVersion": "Value",
- "productVersionCheck": "MSI product version check",
- "productVersionCheckTooltip": "Select 'Yes' to verify the MSI product version in addition to the MSI product code.",
- "productVersionTooltip": "Enter the MSI product version for the app."
- },
- "RegistryRule": {
- "DetectionMethodOptions": {
- "integerComparison": "Integer comparison",
- "keyDoesNotExist": "Key does not exist",
- "keyExists": "Key exists",
- "stringComparison": "String comparison",
- "valueDoesNotExist": "Value does not exist",
- "valueExists": "Value exists",
- "versionComparison": "Version comparison"
- },
- "associatedWith32Bit": "Associated with a 32-bit app on 64-bit clients",
- "associatedWith32BitTooltip": "Select 'Yes' to search the 32-bit registry on 64-bit clients. Select 'No' (default) search the 64-bit registry on 64-bit clients. 32-bit clients will always search the 32-bit registry.",
- "detectionMethod": "Detection method",
- "detectionMethodTooltip": "Select the type of detection method used to validate the presence of the app.",
- "keyPath": "Key path",
- "keyPathTooltip": "The full path of the registry entry containing the value to detect.",
- "operator": "Operator",
- "operatorTooltip": "Select the operator for the detection method used to validate the comparison.",
- "value": "Value",
- "valueName": "Value name",
- "valueNameTooltip": "The name of the registry value to detect.",
- "valueTooltip": "Select a value that matches the selected detection method."
- },
- "RuleTypeOptions": {
- "file": "File",
- "mSI": "MSI",
- "registry": "Registry"
- },
- "gridAriaLabel": "Detection Rules",
- "header": "Create a rule that indicates the presence of the app.",
- "noRulesSelectedPlaceholder": "No rules are specified.",
- "ruleTableLimit": "You can add up to 25 detection rules",
- "ruleType": "Rule type",
- "ruleTypeTooltip": "Choose the type of detection rule to add."
- },
- "RuleConfigurationOptions": {
- "customScript": "Use a custom detection script",
- "manual": "Manually configure detection rules"
- },
- "bladeTitle": "Detection rules",
- "header": "Configure app specific rules used to detect the presence of the app.",
- "rulesFormat": "Rules format",
- "rulesFormatTooltip": "Choose to either manually configure the detection rules or use a custom script to detect the presence of the app.",
- "selectorLabel": "Detection rules"
- },
- "AppType": {
- "androidEnterpriseSystemApp": "Android Enterprise system app",
- "androidForWorkApp": "Managed Google Play store app",
- "androidLobApp": "Android line-of-business app",
- "androidStoreApp": "Android store app",
- "builtInAndroid": "Built-In Android app",
- "builtInApp": "Built-In app",
- "builtInIos": "Built-In iOS app",
- "default": "",
- "iosLobApp": "iOS line-of-business app",
- "iosStoreApp": "iOS store app",
- "iosVppApp": "iOS volume purchase program app",
- "lineOfBusinessApp": "Line-of-business app",
- "macOSDmgApp": "macOS app (DMG)",
- "macOSEdgeApp": "Microsoft Edge (macOS)",
- "macOSLobApp": "macOS line-of-business app",
- "macOSMdatpApp": "Microsoft Defender ATP (macOS)",
- "macOSOfficeSuiteApp": "Microsoft 365 Apps (macOS)",
- "macOsVppApp": "macOS volume purchase program app",
- "managedAndroidLobApp": "Managed Android line-of-business app",
- "managedAndroidStoreApp": "Managed Android store app",
- "managedGooglePlayApp": "Managed Google Play store app",
- "managedGooglePlayPrivateApp": "Managed Google Play private app",
- "managedGooglePlayWebApp": "Managed Google Play web link",
- "managedIosLobApp": "Managed iOS line-of-business app",
- "managedIosStoreApp": "Managed iOS store app",
- "microsoftStoreForBusinessApp": "Microsoft Store for Business app",
- "microsoftStoreForBusinessReleaseManagedApp": "Microsoft Store for Business",
- "officeSuiteApp": "Microsoft 365 Apps (Windows 10 and later)",
- "webApp": "Web link",
- "windowsAppXLobApp": "Windows AppX line-of-business app",
- "windowsClassicApp": "Windows app (Win32)",
- "windowsEdgeApp": "Microsoft Edge (Windows 10 and later)",
- "windowsMobileMsiLobApp": "Windows MSI line-of-business app",
- "windowsPhone81AppXBundleLobApp": "Windows Phone 8.1 AppX line-of-business app",
- "windowsPhone81AppXLobApp": "Windows Phone 8.1 AppX line-of-business app",
- "windowsPhone81StoreApp": "Windows Phone 8.1 store app",
- "windowsPhoneXapLobApp": "Windows Phone XAP line-of-business app",
- "windowsStoreApp": "Microsoft Store app",
- "windowsUniversalAppXLobApp": "Windows Universal AppX line-of-business app",
- "windowsUniversalLobApp": "Windows Universal line-of-business app"
- },
- "PolicyType": {
- "AttackSurfaceReductionRules": {
- "configMgr": "Attack Surface Reduction Rules (ConfigMgr)"
- },
- "EndpointDetectionandResponse": {
- "mDE": "Endpoint detection and response"
- },
- "EndpointSecurityTemplate": {
- "aSRAppBrowserSecurity": "App and browser isolation",
- "aSRApplicationControl": "Application control",
- "aSRAttackSurfaceReduction": "Attack surface reduction rules",
- "aSRDeviceControl": "Device control",
- "aSRExploitProtection": "Exploit protection",
- "aSRWebProtection": "Web protection (Microsoft Edge Legacy)",
- "aVExclusions": "Microsoft Defender Antivirus exclusions",
- "antivirus": "Microsoft Defender Antivirus",
- "cloudPC": "Windows 365 Security Baseline",
- "default": "Endpoint Security",
- "defenderTest": "Microsoft Defender for Endpoint demo",
- "diskEncryption": "BitLocker",
- "eDR": "Endpoint detection and response",
- "edgeSecurityBaseline": "Microsoft Edge baseline",
- "edgeSecurityBaselinePreview": "Preview: Microsoft Edge baseline",
- "editionUpgradeConfiguration": "Edition upgrade and mode switch",
- "firewall": "Microsoft Defender Firewall",
- "firewallRules": "Microsoft Defender Firewall rules",
- "identityProtection": "Account protection",
- "identityProtectionPreview": "Account protection (Preview)",
- "mDMSecurityBaseline1810": "MDM Security Baseline for Windows 10 and later for October 2018",
- "mDMSecurityBaseline1810Preview": "Preview: MDM Security Baseline for Windows 10 and later for October 2018",
- "mDMSecurityBaseline1810PreviewBeta": "Preview: MDM Security Baseline for Windows 10 for October 2018 (beta)",
- "mDMSecurityBaseline1906": "MDM Security Baseline for Windows 10 and later for May 2019",
- "mDMSecurityBaseline2004": "MDM Security Baseline for Windows 10 and later for August 2020",
- "mDMSecurityBaseline2101": "MDM Security Baseline for Windows 10 and later Decemeber 2020",
- "macOSAntivirus": "Antivirus",
- "macOSDiskEncryption": "FileVault",
- "macOSFirewall": "macOS firewall",
- "microsoftDefenderBaseline": "Microsoft Defender for Endpoint baseline",
- "office365Baseline": "Microsoft Office O365 baseline",
- "office365BaselinePreview": "Preview: Microsoft Office O365 baseline",
- "securityBaselines": "Security Baselines",
- "test": "Test Template",
- "testFirewallRulesSecurityTemplateName": "Microsoft Defender Firewall rules (Test)",
- "testIdentityProtectionSecurityTemplateName": "Account protection (Test)",
- "windowsSecurityExperience": "Windows Security experience"
- },
- "Firewall": {
- "mDE": "Microsoft Defender Firewall"
- },
- "FirewallRules": {
- "mDE": "Microsoft Defender Firewall Rules"
- },
- "administrativeTemplates": "Administrative Templates",
- "androidCompliancePolicy": "Android compliance policy",
- "aospDeviceOwnerCompliancePolicy": "Android (AOSP) compliance policy",
- "applicationControl": "Application Control",
- "custom": "Custom",
- "deliveryOptimization": "Delivery Optimization",
- "derivedPersonalIdentityVerificationCredential": "Derived credential",
- "deviceFeatures": "Device features",
- "deviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
- "deviceLock": "Device Lock",
- "deviceOwner": "Fully managed, dedicated, and corporate-owned work profile",
- "deviceRestrictions": "Device restrictions",
- "deviceRestrictionsWindows10Team": "Device restrictions (Windows 10 Team)",
- "domainJoinPreview": "Domain Join",
- "editionUpgradeAndModeSwitch": "Edition upgrade and mode switch",
- "education": "Education",
- "email": "Email",
- "emailSamsungKnoxOnly": "Email (Samsung KNOX only)",
- "endpointProtection": "Endpoint protection",
- "expeditedCheckin": "Mobile device management configuration",
- "exploitProtection": "Exploit Protection",
- "extensions": "Extensions",
- "hardwareConfigurations": "BIOS Configurations",
- "identityProtection": "Identity protection",
- "iosCompliancePolicy": "iOS compliance policy",
- "kiosk": "Kiosk",
- "macCompliancePolicy": "Mac compliance policy",
- "microsoftDefenderAntivirus": "Microsoft Defender Antivirus",
- "microsoftDefenderAntivirusexclusions": "Microsoft Defender Antivirus exclusions",
- "microsoftDefenderAtpWindows10Desktop": "Microsoft Defender for Endpoint (desktop devices running Windows 10 or later)",
- "microsoftDefenderFirewallRules": "Microsoft Defender Firewall Rules",
- "microsoftEdgeBaseline": "Microsoft Edge Baseline",
- "mxProfileZebraOnly": "MX profile (Zebra only)",
- "networkBoundary": "Network boundary",
- "oemConfig": "OEMConfig",
- "overrideGroupPolicy": "Override Group Policy",
- "pkcsCertificate": "PKCS certificate",
- "pkcsImportedCertificate": "PKCS imported certificate",
- "preferenceFile": "Preference file",
- "presets": "Presets",
- "scepCertificate": "SCEP certificate",
- "secureAssessmentEducation": "Secure assessment (Education)",
- "settingsCatalog": "Settings Catalog",
- "sharedMultiUserDevice": "Shared multi-user device",
- "softwareUpdates": "Software Updates",
- "trustedCertificate": "Trusted certificate",
- "unknown": "Unknown",
- "unsupported": "Unsupported",
- "vpn": "VPN",
- "wiFi": "Wi-Fi",
- "wiFiImport": "Wi-Fi import",
- "windows10CompliancePolicy": "Windows 10/11 compliance policy",
- "windows10MobileCompliancePolicy": "Windows 10 mobile compliance policy",
- "windows10XScep": "SCEP certificate - TEST",
- "windows10XTrustedCertificate": "Trusted certificate - TEST",
- "windows10XVPN": "VPN - TEST",
- "windows10XWifi": "WIFI - TEST",
- "windows8CompliancePolicy": "Windows 8 compliance policy",
- "windowsHealthMonitoring": "Windows health monitoring",
- "windowsInformationProtection": "Windows Information Protection",
- "windowsPhoneCompliancePolicy": "Windows Phone compliance policy",
- "windowsUpdateforBusiness": "Windows Update for Business",
- "wiredNetwork": "Wired Network",
- "workProfile": "Personally-owned work profile"
- },
- "OfficeSuiteAppsTab": {
- "acceptLicenseOnBehalfOfUsersLabel": "Accept the Microsoft Software License Terms on behalf of users",
- "appSuiteConfigurationLabel": "App suite configuration",
- "appSuiteInformationLabel": "App suite information",
- "appsToBeInstalledLabel": "Apps to be installed as part of the suite",
- "architectureLabel": "Architecture",
- "architectureTooltip": "Defines whether the 32-bit or 64-bit edition of Microsoft 365 Apps is installed on devices.",
- "configurationDesignerLabel": "Configuration designer",
- "configurationFileLabel": "Configuration file",
- "configurationSettingsFormatLabel": "Configuration settings format",
- "configureAppSuiteLabel": "Configure app suite",
- "configuredLabel": "Configured",
- "currentVersionLabel": "Current version",
- "currentVersionTooltip": "This is the current version of Office that’s configured in this suite. This value will be updated when a newer version is configured and saved.",
- "enableMicrosoftSearchAsDefaultTooltip": "Installs a background service that helps determine whether a Microsoft Search in Bing extension for Google Chrome is installed on the device.",
- "enterXmlDataLabel": "Enter XML data",
- "languagesLabel": "Languages",
- "languagesTooltip": "By default, Intune will install Office with the default language of the operating system. Choose any additional languages that you want to install.",
- "learnMoreText": "Learn more",
- "newUpdateChannelTooltip": "Defines how often the app is updated with new features.",
- "noCurrentVersionText": "No current version",
- "noLanguagesSelectedLabel": "No languages selected",
- "notConfiguredLabel": "Not configured",
- "propertiesLabel": "Properties",
- "removeOtherVersionsLabel": "Remove other versions",
- "removeOtherVersionsTooltip": "Select Yes to remove other versions of Office (MSI) from user devices.",
- "selectOfficeAppsLabel": "Select Office apps",
- "selectOfficeAppsTooltip": "Select the Office 365 apps that you want to install as part of the suite.",
- "selectOtherOfficeAppsLabel": "Select other Office apps (license required)",
- "selectOtherOfficeAppsTooltip": "If you own licenses for these additional Office apps you can also assign them with Intune.",
- "specificVersionLabel": "Specific version",
- "updateChannelLabel": "Update channel",
- "updateChannelTooltip": "Defines how often the app is updated with new features.
\nMonthly - Provide users with the newest features of Office as soon as they're available.
\nMonthly Enterprise Channel - Provide users with the newest features of Office once a month, on the second Tuesday of the month.
\nMonthly (Targeted) – Provide an early look at the upcoming Monthly Channel release. It is a supported update channel, and usually is available at least one week ahead of time when it's a Monthly Channel release that contains new features.
\nSemi-Annual - Provide users with new features of Office only a few times a year.
\nSemi-Annual (Targeted) - Provide pilot users and application compatibility testers the opportunity to test the next Semi-Annual.",
- "useMicrosoftSearchAsDefault": "Install background service for Microsoft Search in Bing",
- "useSharedComputerActivationLabel": "Use shared computer activation",
- "useSharedComputerActivationTooltip": "Shared computer activation lets you deploy Microsoft 365 Apps to computers that are used by multiple users. Normally, users can only install and activate Microsoft 365 Apps on a limited number of devices, such as 5 PCs. Using Microsoft 365 Apps with shared computer activation doesn't count against that limit.",
- "versionToInstallLabel": "Version to install",
- "versionToInstallTooltip": "Select the version of Office that should be installed.",
- "xLanguagesSelectedLabel": "{0} language(s) selected",
- "xmlConfigurationLabel": "XML Configuration"
- },
- "OfficeApplicationType": {
- "access": "Access",
- "bing": "Microsoft Search as default",
- "excel": "Excel",
- "groove": "OneDrive (Groove)",
- "lync": "Skype for Business",
- "oneDrive": "OneDrive Desktop",
- "oneNote": "OneNote",
- "outlook": "Outlook",
- "powerPoint": "PowerPoint",
- "publisher": "Publisher",
- "teams": "Teams",
- "word": "Word"
- },
- "WindowsQualityUpdateProfile": {
- "Details": {
- "DaysUntilForcedReboot": {
- "label": "Number of days to wait before restart is enforced"
- },
- "Description": {
- "label": "Description"
- },
- "Name": {
- "label": "Name"
- },
- "QualityUpdateRelease": {
- "label": "Expedite installation of quality updates if device OS version less than:"
- },
- "bladeTitle": "Quality updates Windows 10 and later (Preview)",
- "loadError": "Loading failed!"
- },
- "TabName": {
- "qualityUpdateSettings": "Settings"
- },
- "infoBoxText": "The only dedicated quality update control currently available other than the existing update rings policy for Windows 10 and later is the ability to expedite quality updates for devices that fall behind a specified patch level. Additional controls will be available in the future.",
- "warningBoxText": "While expediting software updates can help decrease the time to get to compliance when necessary, it has a larger impact on end-user productivity. The chances that they will experience a restart during business hours is significantly increased."
- },
- "Devices": {
- "General": {
- "android": "Android"
- },
- "aOSP": "Android open source project",
- "android": "Android device administrator",
- "androidWorkProfile": "Android Enterprise (work profile)",
- "iOS": "iOS/iPadOS",
- "mac": "macOS",
- "windows": "Windows (MDM)",
- "windows10": "Windows 10 and later",
- "windowsHomeSku": "Windows Home Sku",
- "windowsMobile": "Windows Mobile"
- },
"SettingDetails": {
"CustomPolicyConfigurationProfile": {
"uploadControlPlaceHolderText": "Select a configuration profile file"
@@ -3675,7 +1707,7 @@
"aESGCM128": "AES-128-GCM (16-octet ICV)",
"aESGCM256": "AES-256-GCM (16-octet ICV)",
"aadSharedDeviceDataClearAppsDescription": "Add any app not optimized for shared device mode to the list. The app's local data will be cleared whenever a user signs out of an app that's optimized for shared device mode. Available for dedicated devices enrolled with Shared mode running Android 9 and later.",
- "aadSharedDeviceDataClearAppsName": "Clear local data in apps not optimized for Shared device mode (Public Preview)",
+ "aadSharedDeviceDataClearAppsName": "Clear local data in apps not optimized for Shared device mode",
"accountsPageDescription": "Block access to Accounts in Settings app.",
"accountsPageName": "Accounts",
"accountsSignInAssistantSettingsDescription": "Block the Microsoft Sign-in Assistant service (wlidsvc). When this setting is not cofigured, the wlidsvc NT service is controllable by the user (manual start)",
@@ -5503,7 +3535,7 @@
"enableEndUserAccessToDefenderName": "End-user access to Defender",
"enableEngagedRestartDescription": "Enables settings to allow user switch to engaged restart.",
"enableEngagedRestartName": "Allow user to restart (engaged restart)",
- "enableIdentityPrivacyDescription": "This property masks user names with the text you enter. For example, if you type 'anonymous', each user that authenticates with this Wi-Fi connection using their real user name is displayed as 'anonymous'.",
+ "enableIdentityPrivacyDescription": "This property masks user names with the text you enter. For example, if you type 'anonymous', each user that authenticates with this Wi-Fi connection using their real user name is displayed as 'anonymous'. This may be required if using device-based certificate authentication.",
"enableIdentityPrivacyName": "Identity privacy (outer identity)",
"enableNetworkInspectionSystemDescription": "Block malicious traffic detected by signatures in the Network Inspection System (NIS)",
"enableNetworkInspectionSystemName": "Network Inspection System (NIS)",
@@ -7252,6 +5284,8 @@
"presharedKeyEncodingDescription": "Encode preshared keys using UTF-8.",
"presharedKeyEncodingName": "Pre-shared key encoding",
"preventAny": "Prevent any sharing across boundaries",
+ "primaryAuthenticationMethodName": "Primary authentication method",
+ "primaryAuthenticationMethodTEAPDescription": "Choose the primary way you want users to authenticate. When you select Certificates, select one of the certificate profiles (SCEP or PKCS) that is also deployed to the device. This is the identity certificate that is presented by the device to the server.",
"primarySMTPAddressOption": "Primary SMTP Address",
"printersColumns": "e.g. printer DNS name",
"printersDescription": "Automatically provision printers based on their network host names. This setting does not support shared printers.",
@@ -7663,6 +5697,8 @@
"searchEnableRemoteQueriesName": "Remote queries",
"secondActiveEthernet": "Second active Ethernet",
"secondEthernet": "Second Ethernet",
+ "secondaryAuthenticationMethodName": "Secondary authentication method",
+ "secondaryAuthenticationMethodTEAPDescription": "Choose the secondary way you want users to authenticate. When you select Certificates, select one of the certificate profiles (SCEP or PKCS) that is also deployed to the device. This is the identity certificate that is presented by the device to the server.",
"secretKey": "Secret Key:",
"secureBootEnabledDescription": "Require Secure Boot to be enabled on the device",
"secureBootEnabledName": "Require Secure Boot to be enabled on the device",
@@ -8074,6 +6110,7 @@
"systemUpdateWindow9": "4:30 AM",
"systemWindowsBlockedDescription": "Disable window notifications such as toasts, incoming calls, outgoing calls, system alerts, and system errors.",
"systemWindowsBlockedName": "Notification windows",
+ "tEAPName": "Tunnel EAP (TEAP)",
"tLSMinMax": "TLS minimum version must be less than or equal to TLS maximum version.",
"tLSVersionRangeMaximum": "TLS version range maximum",
"tLSVersionRangeMaximumDescription": "Enter a maximum TLS version of 1.0, 1.1, or 1.2. If left blank, a default value of 1.2 will be used.",
@@ -8126,6 +6163,17 @@
"timeWindowSameStartEndDayTime": "End day/time cannot be the same as the start day/time.",
"timeZoneDescription": "Select the time zone for the targeted devices.",
"timeZoneName": "Time zone",
+ "timeoutFifteenMinutes": "15 minutes",
+ "timeoutFiveMinutes": "5 minutes",
+ "timeoutFourHours": "4 hours",
+ "timeoutNever": "Never timeout",
+ "timeoutOneHour": "1 hour",
+ "timeoutOneMinute": "1 minute",
+ "timeoutTenMinutes": "10 minutes",
+ "timeoutThirtyMinutes": "30 minutes",
+ "timeoutThreeMinutes": "3 minutes",
+ "timeoutTwoHours": "2 hours",
+ "timeoutTwoMinutes": "2 minutes",
"toggleConfigurationPkgDescription": "Upload a signed configuration package that will be used to onboard the Microsoft Defender for Endpoint client",
"toggleConfigurationPkgName": "Microsoft Defender for Endpoint client configuration package type:",
"trafficRuleAppName": "App",
@@ -8824,6 +6872,33 @@
"win10WifiWirelessSecurityTypeName": "Wireless Security Type",
"win10WifiWirelessSecurityTypeOpen": "Open (no authentication)",
"win10WifiWirelessSecurityTypeWPA": "WPA/WPA2-Personal",
+ "win10WiredAuthenticationModeDescription": "Choose whether to authenticate the user, the device, either, or to use guest authentication (none). If you’re using certificate authentication, make sure the certificate type matches the authentication type.",
+ "win10WiredAuthenticationModeName": "Authentication Mode",
+ "win10WiredAuthenticationPeriodDescription": "Number of seconds for the client to wait after an authentication attempt before failing. Choose a number between 1 and 3600. Not specifying a value results in 18 seconds being used.",
+ "win10WiredAuthenticationPeriodName": "Authentication period",
+ "win10WiredAuthenticationRetryDelayPeriodDescription": "Number of seconds between a failed authentication and the next authentication attempt. Choose a value between 1 and 3600. Not specifying a value results in 1 second being used.",
+ "win10WiredAuthenticationRetryDelayPeriodName": "Authentication retry delay period ",
+ "win10WiredFIPSComplianceDescription": "Validation against the FIPS 140-2 standard is required for all US federal government agencies that use cryptography-based security systems to protect sensitive but unclassified information stored digitally.",
+ "win10WiredFIPSComplianceName": "Force wired profile to be compliant with the Federal Information Processing Standard (FIPS)",
+ "win10WiredGuest": "Guest",
+ "win10WiredMachine": "Machine",
+ "win10WiredMachineOrUser": "User or machine",
+ "win10WiredMaximumAuthenticationFailuresDescription": "Enter the maximum number of authentication failures for this set of credentials. Not specifying a value results in 1 attempt being used.",
+ "win10WiredMaximumAuthenticationFailuresName": "Maximum authentication failures",
+ "win10WiredMaximumEAPOLStartMessagesDescription": "Choose a number of EAPOL-Start messages between 1 and 100. Not specifying a value results in a maximum of 3 messages being sent.",
+ "win10WiredMaximumEAPOLStartMessagesName": "Maximum EAPOL-start",
+ "win10WiredNetworkAuthenticationBlockPeriodDescription": "Authentication block period in minutes. Used to specify the duration for which automatic authentication attempts will be blocked from occurring after a failed authentication attempt. Choose a value between 0 and 1440.",
+ "win10WiredNetworkAuthenticationBlockPeriodName": "Block period (minutes)",
+ "win10WiredNetworkAuthenticationModeName": "Authentication Mode",
+ "win10WiredNetworkDoNotEnforceName": "Do not enforce",
+ "win10WiredNetworkEnforce8021XDescription": "Specifies whether the automatic configuration service for wired networks requires the use of 802.1X for port authentication.",
+ "win10WiredNetworkEnforce8021XName": "802.1x",
+ "win10WiredNetworkEnforceName": "Enforce",
+ "win10WiredRememberCredentialsDescription": "Choose whether to cache users' credentials when they enter them the first time they connect to the wired network. Cached credentials are used for subsequent connections and the users don't need to re-enter them. Not configuring this setting is equivalent to setting it to yes.",
+ "win10WiredRememberCredentialsName": "Remember credentials at each logon",
+ "win10WiredStartPeriodDescription": "Number of seconds to wait before sending an EAPOL-Start message. Choose a value between 1 and 3600. Not specifying a value results in 5 seconds being used.",
+ "win10WiredStartPeriodName": "Start period",
+ "win10WiredUser": "User",
"win10appLockerApplicationControlAllowDescription": "These apps will be allowed to run",
"win10appLockerApplicationControlAllowName": "Enforce",
"win10appLockerApplicationControlAuditComponentsAndStoreAppsDescription": "\"Audit Only\" mode logs all events in local client event logs, but does not block any apps from running. Windows components and Microsoft Store apps will be logged as passing security requirements.",
@@ -9165,7 +7240,6 @@
"deviceConditionsInfoParagraph2": "Similar device based settings can be configured for enrolled devices.",
"deviceConditionsInfoParagraph2LinkText": "Learn more about configuring device compliance settings for enrolled devices.",
"deviceId": "Device ID",
- "deviceLockComplexityValidationFailureNotes": "Notes:
\n\n - The device lock can require a password complexity of: LOW, MEDIUM, or HIGH targeted to Android 11+. For devices operating on Android 10 and earlier, setting a complexity value of Low/Medium/High will default to the expected behavior for \"Low Complexity\".
\n - The password definitions below are subject to change. Please refer to DevicePolicyManager|Android Developers for the most updated definitions of the different password complexity levels.
\n
\n\nLow
\n\n - Password can be a pattern or PIN with repeating (4444) or ordered (1234, 4321, 2468) sequences.
\n
\n\nMedium
\n\n - PIN with no repeating (4444) or ordered (1234, 4321, 2468) sequences with a minimum length of at least 4 characters
\n - Alphabetic passwords with a minimum length of at least 4 characters
\n - Alphanumeric passwords with a minimum length of at least 4 characters
\n
\n\nHigh
\n\n - PIN with no repeating (4444) or ordered (1234, 4321, 2468) sequences with a minimum length of at least 8 characters
\n - Alphabetic passwords with a minimum length of at least 6 characters
\n - Alphanumeric passwords with a minimum length of at least 6 characters
\n
\n",
"deviceLockedOpenFilesOptionsText": "When device is locked and there are open files",
"deviceLockedOptionText": "When device is locked",
"deviceManufacturer": "Device manufacturer",
@@ -9463,7 +7537,7 @@
"reporting": "Reporting",
"reports": "Reports",
"require": "Require",
- "requireDeviceLockComplexityOnApps": "Require device lock complexity",
+ "requireDeviceLockOnApps": "Require device lock",
"requireThreatScanOnApps": "Require threat scan on apps",
"requiredField": "This field can't be empty",
"requiredSafetyNetEvaluationType": "Required SafetyNet evaluation type",
@@ -9659,6 +7733,7 @@
"yourDataIsBeingDownloadedEllipsis": "Your data is being downloaded, this can take a while...",
"yourDataIsBeingDownloadedMinutes": "Your data is being downloaded, this can take a few minutes...",
"yourProtectionLevel": "Your protection level",
+ "rules": "Rules",
"basics": "Basics",
"modeTableHeader": "Group mode",
"appAssignmentMsg": "Group",
@@ -9695,221 +7770,2042 @@
"licenseTypeDevice": "Device",
"licenseTypeUser": "User"
},
- "Languages": {
- "ar-aE": "Arabic (U.A.E.)",
- "ar-bH": "Arabic (Bahrain)",
- "ar-dZ": "Arabic (Algeria)",
- "ar-eG": "Arabic (Egypt)",
- "ar-iQ": "Arabic (Iraq)",
- "ar-jO": "Arabic (Jordan)",
- "ar-kW": "Arabic (Kuwait)",
- "ar-lB": "Arabic (Lebanon)",
- "ar-lY": "Arabic (Libya)",
- "ar-mA": "Arabic (Morocco)",
- "ar-oM": "Arabic (Oman)",
- "ar-qA": "Arabic (Qatar)",
- "ar-sA": "Arabic (Saudi Arabia)",
- "ar-sY": "Arabic (Syria)",
- "ar-tN": "Arabic (Tunisia)",
- "ar-yE": "Arabic (Yemen)",
- "az-cyrl": "Azerbaijani (Cyrillic, Azerbaijan)",
- "az-latn": "Azerbaijani (Latin, Azerbaijan)",
- "bn-bD": "Bangla (Bangladesh)",
- "bn-iN": "Bangla (India)",
- "bs-cyrl": "Bosnian (Cyrillic)",
- "bs-latn": "Bosnian (Latin)",
- "zh-cN": "Chinese (PRC)",
- "zh-hK": "Chinese (Hong Kong S.A.R.)",
- "zh-mO": "Chinese (Macao S.A.R.)",
- "zh-sG": "Chinese (Singapore)",
- "zh-tW": "Chinese (Taiwan)",
- "hr-bA": "Croatian (Latin)",
- "hr-hR": "Croatian (Croatia)",
- "nl-bE": "Dutch (Belgium)",
- "nl-nL": "Dutch (Netherlands)",
- "en-aU": "English (Australia)",
- "en-bZ": "English (Belize)",
- "en-cA": "English (Canada)",
- "en-cabn": "English (Caribbean)",
- "en-iE": "English (Ireland)",
- "en-iN": "English (India)",
- "en-jM": "English (Jamaica)",
- "en-mY": "English (Malaysia)",
- "en-nZ": "English (New Zealand)",
- "en-pH": "English (Republic of the Philippines)",
- "en-sG": "English (Singapore)",
- "en-tT": "English (Trinidad and Tobago)",
- "en-uK": "English (United Kingdom)",
- "en-uS": "English (United States)",
- "en-zA": "English (South Africa)",
- "en-zW": "English (Zimbabwe)",
- "fr-bE": "French (Belgium)",
- "fr-cA": "French (Canada)",
- "fr-cH": "French (Switzerland)",
- "fr-fR": "French (France)",
- "fr-lU": "French (Luxembourg)",
- "fr-mC": "French (Monaco)",
- "de-aT": "German (Austria)",
- "de-cH": "German (Switzerland)",
- "de-dE": "German (Germany)",
- "de-lI": "German (Liechtenstein)",
- "de-lU": "German (Luxembourg)",
- "iu-cans": "Inuktitut (Syllabics, Canada)",
- "iu-latn": "Inuktitut (Latin, Canada)",
- "it-cH": "Italian (Switzerland)",
- "it-iT": "Italian (Italy)",
- "ms-bN": "Malay (Brunei Darussalam)",
- "ms-mY": "Malay (Malaysia)",
- "mn-cN": "Mongolian (Traditional Mongolian, PRC)",
- "mn-mN": "Mongolian (Cyrillic, Mongolia)",
- "no-nB": "Norwegian, Bokmål (Norway)",
- "no-nn": "Norwegian, Nynorsk (Norway)",
- "pt-bR": "Portuguese (Brazil)",
- "pt-pT": "Portuguese (Portugal)",
- "quz-bO": "Quechua (Bolivia)",
- "quz-eC": "Quechua (Ecuador)",
- "quz-pE": "Quechua (Peru)",
- "smj-nO": "Sami, Lule (Norway)",
- "smj-sE": "Sami, Lule (Sweden)",
- "se-fI": "Sami, Northern (Finland)",
- "se-nO": "Sami, Northern (Norway)",
- "se-sE": "Sami, Northern (Sweden)",
- "sma-nO": "Sami, Southern (Norway)",
- "sma-sE": "Sami, Southern (Sweden)",
- "smn": "Sami, Inari (Finland)",
- "sms": "Sami, Skolt (Finland)",
- "sr-Cyrl-bA": "Serbian (Cyrillic)",
- "sr-Cyrl-rS": "Serbian (Cyrillic, Serbia and Montenegro)",
- "sr-Latn-bA": "Serbian (Latin)",
- "sr-Latn-rS": "Serbian (Latin, Serbia)",
- "dsb": "Lower Sorbian (Germany)",
- "hsb": "Upper Sorbian (Germany)",
- "es-es-tradnl": "Spanish (Spain, Traditional Sort)",
- "es-aR": "Spanish (Argentina)",
- "es-bO": "Spanish (Bolivia)",
- "es-cL": "Spanish (Chile)",
- "es-cO": "Spanish (Colombia)",
- "es-cR": "Spanish (Costa Rica)",
- "es-dO": "Spanish (Dominican Republic)",
- "es-eC": "Spanish (Ecuador)",
- "es-eS": "Spanish (Spain)",
- "es-gT": "Spanish (Guatemala)",
- "es-hN": "Spanish (Honduras)",
- "es-mX": "Spanish (Mexico)",
- "es-nI": "Spanish (Nicaragua)",
- "es-pA": "Spanish (Panama)",
- "es-pE": "Spanish (Peru)",
- "es-pR": "Spanish (Puerto Rico)",
- "es-pY": "Spanish (Paraguay)",
- "es-sV": "Spanish (El Salvador)",
- "es-uS": "Spanish (United States)",
- "es-uY": "Spanish (Uruguay)",
- "es-vE": "Spanish (Venezuela)",
- "sv-fI": "Swedish (Finland)",
- "uz-cyrl": "Uzbek (Cyrillic, Uzbekistan)",
- "uz-latn": "Uzbek (Latin, Uzbekistan)",
- "af": "Afrikaans (South Africa)",
- "sq": "Albanian (Albania)",
- "am": "Amharic (Ethiopia)",
- "hy": "Armenian (Armenia)",
- "as": "Assamese (India)",
- "ba": "Bashkir (Russia)",
- "eu": "Basque (Basque)",
- "be": "Belarusian (Belarus)",
- "br": "Breton (France)",
- "bg": "Bulgarian (Bulgaria)",
- "ca": "Catalan (Catalan)",
- "co": "Corsican (France)",
- "cs": "Czech (Czech Republic)",
- "da": "Danish (Denmark)",
- "prs": "Dari (Afghanistan)",
- "dv": "Divehi (Maldives)",
- "et": "Estonian (Estonia)",
- "fo": "Faroese (Faroe Islands)",
- "fil": "Filipino (Philippines)",
- "fi": "Finnish (Finland)",
- "gl": "Galician (Galician)",
- "ka": "Georgian (Georgia)",
- "el": "Greek (Greece)",
- "gu": "Gujarati (India)",
- "ha": "Hausa (Latin, Nigeria)",
- "he": "Hebrew (Israel)",
- "hi": "Hindi (India)",
- "hu": "Hungarian (Hungary)",
- "is": "Icelandic (Iceland)",
- "ig": "Igbo (Nigeria)",
- "id": "Indonesian (Indonesia)",
- "ga": "Irish (Ireland)",
- "xh": "isiXhosa (South Africa)",
- "zu": "isiZulu (South Africa)",
- "ja": "Japanese (Japan)",
- "kn": "Kannada (India)",
- "kk": "Kazakh (Kazakhstan)",
- "km": "Khmer (Cambodia)",
- "rw": "Kinyarwanda (Rwanda)",
- "sw": "Kiswahili (Kenya)",
- "kok": "Konkani (India)",
- "ko": "Korean (Korea)",
- "ky": "Kyrgyz (Kyrgyzstan)",
- "lo": "Lao (Lao P.D.R.)",
- "lv": "Latvian (Latvia)",
- "lt": "Lithuanian (Lithuania)",
- "lb": "Luxembourgish (Luxembourg)",
- "mk": "Macedonian (North Macedonia)",
- "ml": "Malayalam (India)",
- "mt": "Maltese (Malta)",
- "mi": "Maori (New Zealand)",
- "mr": "Marathi (India)",
- "moh": "Mohawk (Mohawk)",
- "ne": "Nepali (Nepal)",
- "oc": "Occitan (France)",
- "or": "Odia (India)",
- "ps": "Pashto (Afghanistan)",
- "fa": "Persian",
- "pl": "Polish (Poland)",
- "pa": "Punjabi (India)",
- "ro": "Romanian (Romania)",
- "rm": "Romansh (Switzerland)",
- "ru": "Russian (Russia)",
- "sa": "Sanskrit (India)",
- "st": "Sesotho sa Leboa (South Africa)",
- "tn": "Setswana (South Africa)",
- "si": "Sinhala (Sri Lanka)",
- "sk": "Slovak (Slovakia)",
- "sl": "Slovenian (Slovenia)",
- "sv": "Swedish (Sweden)",
- "syr": "Syriac (Syria)",
- "tg": "Tajik (Cyrillic, Tajikistan)",
- "ta": "Tamil (India)",
- "tt": "Tatar (Russia)",
- "te": "Telugu (India)",
- "th": "Thai (Thailand)",
- "bo": "Tibetan (PRC)",
- "tr": "Turkish (Turkey)",
- "tk": "Turkmen (Turkmenistan)",
- "uk": "Ukrainian (Ukraine)",
- "ur": "Urdu (Islamic Republic of Pakistan)",
- "vi": "Vietnamese (Vietnam)",
- "cy": "Welsh (United Kingdom)",
- "wo": "Wolof (Senegal)",
- "ii": "Yi (PRC)",
- "yo": "Yoruba (Nigeria)"
- },
- "AppProtection": {
- "allAppTypes": "Target to all app types",
- "androidPlatformLabel": "Android",
- "appsInAndroidWorkProfile": "Apps in Android Work Profile",
- "appsOnIntuneManagedDevices": "Apps on Intune managed devices",
- "appsOnUnmanagedDevices": "Apps on unmanaged devices",
- "iOSPlatformLabel": "iOS/iPadOS",
- "iosAndroidMacPlatformLabel": "iOS, Android, Mac",
- "iosAndroidPlatformLabel": "iOS, Android",
- "macPlatformLabel": "Mac",
- "notAvailable": "Not Available",
- "windows10PlatformLabel": "Windows 10 and later",
- "withEnrollment": "With enrollment",
- "withoutEnrollment": "Without enrollment"
- },
+ "ApplicabilityRules": {
+ "GridLabel": {
+ "property": "Property",
+ "rule": "Rule",
+ "ruleDetails": "Rule Details",
+ "value": "Value"
+ },
+ "assignIf": "Assign profile if",
+ "deleteWarning": "This will delete the selected Applicability Rule",
+ "dontAssignIf": "Don't assign profile if",
+ "editionDisplayText": "{0} {1}",
+ "editionDisplayTextMore": "and {0} more",
+ "instructions": "Specify how to apply this profile within an assigned group. Intune will only apply the profile to devices that meet the combined criteria of these rules.",
+ "maxText": "Max",
+ "minText": "Min",
+ "noActionRow": "No Applicability Rules Specified",
+ "oSVersion": "e.g. 1.2.3.4",
+ "toText": "to",
+ "windows10Education": "Windows 10/11 Education",
+ "windows10EducationN": "Windows 10/11 Education N",
+ "windows10Enterprise": "Windows 10/11 Enterprise",
+ "windows10EnterpriseN": "Windows 10/11 Enterprise N",
+ "windows10HolographicEnterprise": "Windows 10 Holographic for Business",
+ "windows10Home": "Windows 10/11 Home",
+ "windows10HomeChina": "Windows 10 Home China",
+ "windows10HomeN": "Windows 10/11 Home N",
+ "windows10HomeSingleLanguage": "Windows 10/11 Home Single Language",
+ "windows10IoTCore": "Windows 10 IoT Core",
+ "windows10IoTCoreCommercial": "Windows 10 IoT Core Commercial",
+ "windows10Mobile": "Windows 10 Mobile",
+ "windows10MobileEnterprise": "Windows 10 Mobile Enterprise",
+ "windows10OsEdition": "OS edition",
+ "windows10OsVersion": "OS version",
+ "windows10Professional": "Windows 10/11 Professional",
+ "windows10ProfessionalEducation": "Windows 10/11 Professional Education",
+ "windows10ProfessionalEducationN": "Windows 10/11 Professional Education N",
+ "windows10ProfessionalN": "Windows 10 Professional N",
+ "windows10ProfessionalWorkstation": "Windows 10/11 Professional Workstation",
+ "windows10ProfessionalWorkstationN": "Windows 10/11 Professional Workstation N"
+ },
+ "DetectionRules": {
+ "ComparisonOperators": {
+ "equals": "Equals",
+ "greaterThan": "Greater than",
+ "greaterThanOrEqualTo": "Greater than or equal to",
+ "lessThan": "Less than",
+ "lessThanOrEqualTo": "Less than or equal to",
+ "notEqualTo": "Not equal to"
+ },
+ "CustomScript": {
+ "enforceSignatureCheck": "Enforce script signature check and run script silently",
+ "enforceSignatureCheckTooltip": "Select 'Yes' to verify that the script is signed by a trusted publisher, which will allow the script to run with no warnings or prompts displayed. The script will run unblocked. Select 'No' (default) to run the script with end-user confirmation without signature verification.",
+ "header": "Use a custom detection script",
+ "runAs32Bit": "Run script as 32-bit process on 64-bit clients",
+ "runAs32BitTooltip": "Select 'Yes' to run the script in a 32-bit process on 64-bit clients. Select 'No' (default) to run the script in a 64-bit process on 64-bit clients. 32-bit clients run the script in a 32-bit process.",
+ "scriptFile": "Script file",
+ "scriptFileNotSelectedValidation": "No script file is selected.",
+ "scriptFileTooltip": "Select a PowerShell script that will detect the presence of the app on the client. The app will be detected when the script both returns a 0 value exit code and writes a string value to STDOUT.",
+ "scriptSizeLimitValidation": "Your detection script exceeds the maximum size allowed. Resolve this by reducing the size of your detection script."
+ },
+ "Manual": {
+ "FileRule": {
+ "DetectionMethodOptions": {
+ "dateCreated": "Date created",
+ "dateModified": "Date modified",
+ "doesNotExist": "File or folder does not exist",
+ "fileOrFolderExists": "File or folder exists",
+ "sizeInMB": "Size in MB",
+ "version": "String (version)"
+ },
+ "associatedWith32Bit": "Associated with a 32-bit app on 64-bit clients",
+ "associatedWith32BitTooltip": "Select 'Yes' to expand any path environment variables in the 32-bit context on 64-bit clients. Select 'No' (default) to expand any path variables in the 64-bit context on 64-bit clients. 32-bit clients will always use the 32-bit context.",
+ "detectionMethod": "Detection method",
+ "detectionMethodTooltip": "Select the type of detection method used to validate the presence of the app.",
+ "fileOrFolder": "File or folder",
+ "fileOrFolderToolTip": "The file or folder to detect.",
+ "operator": "Operator",
+ "operatorTooltip": "Select the operator for the detection method used to validate the comparison.",
+ "path": "Path",
+ "pathTooltip": "The full path of the folder containing the file or folder to detect.",
+ "value": "Value",
+ "valueTooltip": "Select a value that matches the selected detection method. Date detection methods should be entered in local time."
+ },
+ "GridColumns": {
+ "pathOrCode": "Path/Code",
+ "type": "Type"
+ },
+ "MsiRule": {
+ "operator": "Operator",
+ "operatorTooltip": "Select the operator for the MSI product version validation comparison.",
+ "productCode": "MSI product code",
+ "productCodeTooltip": "A valid MSI product code for the app.",
+ "productVersion": "Value",
+ "productVersionCheck": "MSI product version check",
+ "productVersionCheckTooltip": "Select 'Yes' to verify the MSI product version in addition to the MSI product code.",
+ "productVersionTooltip": "Enter the MSI product version for the app."
+ },
+ "RegistryRule": {
+ "DetectionMethodOptions": {
+ "integerComparison": "Integer comparison",
+ "keyDoesNotExist": "Key does not exist",
+ "keyExists": "Key exists",
+ "stringComparison": "String comparison",
+ "valueDoesNotExist": "Value does not exist",
+ "valueExists": "Value exists",
+ "versionComparison": "Version comparison"
+ },
+ "associatedWith32Bit": "Associated with a 32-bit app on 64-bit clients",
+ "associatedWith32BitTooltip": "Select 'Yes' to search the 32-bit registry on 64-bit clients. Select 'No' (default) search the 64-bit registry on 64-bit clients. 32-bit clients will always search the 32-bit registry.",
+ "detectionMethod": "Detection method",
+ "detectionMethodTooltip": "Select the type of detection method used to validate the presence of the app.",
+ "keyPath": "Key path",
+ "keyPathTooltip": "The full path of the registry entry containing the value to detect.",
+ "operator": "Operator",
+ "operatorTooltip": "Select the operator for the detection method used to validate the comparison.",
+ "value": "Value",
+ "valueName": "Value name",
+ "valueNameTooltip": "The name of the registry value to detect.",
+ "valueTooltip": "Select a value that matches the selected detection method."
+ },
+ "RuleTypeOptions": {
+ "file": "File",
+ "mSI": "MSI",
+ "registry": "Registry"
+ },
+ "gridAriaLabel": "Detection Rules",
+ "header": "Create a rule that indicates the presence of the app.",
+ "noRulesSelectedPlaceholder": "No rules are specified.",
+ "ruleTableLimit": "You can add up to 25 detection rules",
+ "ruleType": "Rule type",
+ "ruleTypeTooltip": "Choose the type of detection rule to add."
+ },
+ "RuleConfigurationOptions": {
+ "customScript": "Use a custom detection script",
+ "manual": "Manually configure detection rules"
+ },
+ "bladeTitle": "Detection rules",
+ "header": "Configure app specific rules used to detect the presence of the app.",
+ "rulesFormat": "Rules format",
+ "rulesFormatTooltip": "Choose to either manually configure the detection rules or use a custom script to detect the presence of the app.",
+ "selectorLabel": "Detection rules"
+ },
+ "PolicyType": {
+ "AttackSurfaceReductionRules": {
+ "configMgr": "Attack Surface Reduction Rules (ConfigMgr)"
+ },
+ "EndpointDetectionandResponse": {
+ "mDE": "Endpoint detection and response"
+ },
+ "EndpointSecurityTemplate": {
+ "aSRAppBrowserSecurity": "App and browser isolation",
+ "aSRApplicationControl": "Application control",
+ "aSRAttackSurfaceReduction": "Attack surface reduction rules",
+ "aSRDeviceControl": "Device control",
+ "aSRExploitProtection": "Exploit protection",
+ "aSRWebProtection": "Web protection (Microsoft Edge Legacy)",
+ "aVExclusions": "Microsoft Defender Antivirus exclusions",
+ "antivirus": "Microsoft Defender Antivirus",
+ "cloudPC": "Windows 365 Security Baseline",
+ "default": "Endpoint Security",
+ "defenderTest": "Microsoft Defender for Endpoint demo",
+ "diskEncryption": "BitLocker",
+ "eDR": "Endpoint detection and response",
+ "edgeSecurityBaseline": "Microsoft Edge baseline",
+ "edgeSecurityBaselinePreview": "Preview: Microsoft Edge baseline",
+ "editionUpgradeConfiguration": "Edition upgrade and mode switch",
+ "firewall": "Microsoft Defender Firewall",
+ "firewallRules": "Microsoft Defender Firewall rules",
+ "identityProtection": "Account protection",
+ "identityProtectionPreview": "Account protection (Preview)",
+ "mDMSecurityBaseline1810": "MDM Security Baseline for Windows 10 and later for October 2018",
+ "mDMSecurityBaseline1810Preview": "Preview: MDM Security Baseline for Windows 10 and later for October 2018",
+ "mDMSecurityBaseline1810PreviewBeta": "Preview: MDM Security Baseline for Windows 10 for October 2018 (beta)",
+ "mDMSecurityBaseline1906": "MDM Security Baseline for Windows 10 and later for May 2019",
+ "mDMSecurityBaseline2004": "MDM Security Baseline for Windows 10 and later for August 2020",
+ "mDMSecurityBaseline2101": "MDM Security Baseline for Windows 10 and later Decemeber 2020",
+ "macOSAntivirus": "Antivirus",
+ "macOSDiskEncryption": "FileVault",
+ "macOSFirewall": "macOS firewall",
+ "microsoftDefenderBaseline": "Microsoft Defender for Endpoint baseline",
+ "office365Baseline": "Microsoft Office O365 baseline",
+ "office365BaselinePreview": "Preview: Microsoft Office O365 baseline",
+ "securityBaselines": "Security Baselines",
+ "test": "Test Template",
+ "testFirewallRulesSecurityTemplateName": "Microsoft Defender Firewall rules (Test)",
+ "testIdentityProtectionSecurityTemplateName": "Account protection (Test)",
+ "windowsSecurityExperience": "Windows Security experience"
+ },
+ "Firewall": {
+ "mDE": "Microsoft Defender Firewall"
+ },
+ "FirewallRules": {
+ "mDE": "Microsoft Defender Firewall Rules"
+ },
+ "administrativeTemplates": "Administrative Templates",
+ "androidCompliancePolicy": "Android compliance policy",
+ "aospDeviceOwnerCompliancePolicy": "Android (AOSP) compliance policy",
+ "applicationControl": "Application Control",
+ "custom": "Custom",
+ "deliveryOptimization": "Delivery Optimization",
+ "derivedPersonalIdentityVerificationCredential": "Derived credential",
+ "deviceFeatures": "Device features",
+ "deviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
+ "deviceLock": "Device Lock",
+ "deviceOwner": "Fully managed, dedicated, and corporate-owned work profile",
+ "deviceRestrictions": "Device restrictions",
+ "deviceRestrictionsWindows10Team": "Device restrictions (Windows 10 Team)",
+ "domainJoinPreview": "Domain Join",
+ "editionUpgradeAndModeSwitch": "Edition upgrade and mode switch",
+ "education": "Education",
+ "email": "Email",
+ "emailSamsungKnoxOnly": "Email (Samsung KNOX only)",
+ "endpointProtection": "Endpoint protection",
+ "expeditedCheckin": "Mobile device management configuration",
+ "exploitProtection": "Exploit Protection",
+ "extensions": "Extensions",
+ "hardwareConfigurations": "BIOS Configurations",
+ "identityProtection": "Identity protection",
+ "iosCompliancePolicy": "iOS compliance policy",
+ "kiosk": "Kiosk",
+ "macCompliancePolicy": "Mac compliance policy",
+ "microsoftDefenderAntivirus": "Microsoft Defender Antivirus",
+ "microsoftDefenderAntivirusexclusions": "Microsoft Defender Antivirus exclusions",
+ "microsoftDefenderAtpWindows10Desktop": "Microsoft Defender for Endpoint (desktop devices running Windows 10 or later)",
+ "microsoftDefenderFirewallRules": "Microsoft Defender Firewall Rules",
+ "microsoftEdgeBaseline": "Microsoft Edge Baseline",
+ "mxProfileZebraOnly": "MX profile (Zebra only)",
+ "networkBoundary": "Network boundary",
+ "oemConfig": "OEMConfig",
+ "overrideGroupPolicy": "Override Group Policy",
+ "pkcsCertificate": "PKCS certificate",
+ "pkcsImportedCertificate": "PKCS imported certificate",
+ "preferenceFile": "Preference file",
+ "presets": "Presets",
+ "scepCertificate": "SCEP certificate",
+ "secureAssessmentEducation": "Secure assessment (Education)",
+ "settingsCatalog": "Settings Catalog",
+ "sharedMultiUserDevice": "Shared multi-user device",
+ "softwareUpdates": "Software Updates",
+ "trustedCertificate": "Trusted certificate",
+ "unknown": "Unknown",
+ "unsupported": "Unsupported",
+ "vpn": "VPN",
+ "wiFi": "Wi-Fi",
+ "wiFiImport": "Wi-Fi import",
+ "windows10CompliancePolicy": "Windows 10/11 compliance policy",
+ "windows10MobileCompliancePolicy": "Windows 10 mobile compliance policy",
+ "windows10XScep": "SCEP certificate - TEST",
+ "windows10XTrustedCertificate": "Trusted certificate - TEST",
+ "windows10XVPN": "VPN - TEST",
+ "windows10XWifi": "WIFI - TEST",
+ "windows8CompliancePolicy": "Windows 8 compliance policy",
+ "windowsHealthMonitoring": "Windows health monitoring",
+ "windowsInformationProtection": "Windows Information Protection",
+ "windowsPhoneCompliancePolicy": "Windows Phone compliance policy",
+ "windowsUpdateforBusiness": "Windows Update for Business",
+ "wiredNetwork": "Wired network",
+ "workProfile": "Personally-owned work profile"
+ },
+ "Win32Requirements": {
+ "AdditionalRequirements": {
+ "File": {
+ "fileOrFolderToolTip": "The file or folder as the selected requirement.",
+ "pathToolTip": "The complete path of the file or folder to detect.",
+ "property": "Property",
+ "valueToolTip": "Select a requirement value that matches the selected detection method. Date and time requirement should be entered in your local format."
+ },
+ "GridColumns": {
+ "pathOrScript": "Path/Script",
+ "type": "Type"
+ },
+ "Registry": {
+ "keyPath": "Key path",
+ "keyPathTooltip": "The full path of the registry entry containing the value as a requirement.",
+ "operator": "Operator",
+ "operatorTooltip": "Select the operator for the comparison.",
+ "registryRequirement": "Registry key requirement",
+ "registryRequirementTooltip": "Select the registry key requirement comparison.",
+ "valueName": "Value name",
+ "valueNameTooltip": "The name of the required registry value."
+ },
+ "RequirementTypeOptions": {
+ "fileType": "File",
+ "registry": "Registry",
+ "script": "Script"
+ },
+ "Script": {
+ "RequirementMethodOptions": {
+ "boolean": "Boolean",
+ "dateTime": "Date and Time",
+ "float": "Floating Point",
+ "integer": "Integer",
+ "string": "String",
+ "version": "Version"
+ },
+ "ScriptContent": {
+ "emptyMessage": "Script content should not be empty."
+ },
+ "duplicateName": "Script name {0} has already been used. Please enter a different name.",
+ "enforceSignatureCheck": "Enforce script signature check",
+ "enforceSignatureCheckTooltip": "Select ‘Yes’ to verify that the script is signed by a trusted publisher, which will allow the script to run without warnings or prompts. The script will run unblocked. Select ‘No’ (default) to run the script with end-user confirmation, but without signature verification.",
+ "loggedOnCredentials": "Run this script using the logged on credentials",
+ "loggedOnCredentialsTooltip": "Run script using the signed in device credentials.",
+ "operatorTooltip": "Select the operator for the requirement comparison.",
+ "requirementMethod": "Select output data type",
+ "requirementMethodTooltip": "Select the data type used when determining a detection match requirement.",
+ "scriptFile": "Script file",
+ "scriptFileTooltip": "Select a PowerShell script that will detect the presence of the app on the client. If the app is detected, the requirement process will provide a 0 value exit code and will write a string value to STDOUT.",
+ "scriptName": "Script name",
+ "value": "Value",
+ "valueTooltip": "Select a requirement value that matches the selected detection method. Date and time requirement should be entered in your local format."
+ },
+ "bladeTitle": "Add a Requirement rule",
+ "createRequirementHeader": "Create a requirement.",
+ "header": "Configure additional requirement rules",
+ "label": "Additional requirement rules",
+ "noRequirementsSelectedPlaceholder": "No requirements are specified.",
+ "requirementType": "Requirement type",
+ "requirementTypeTooltip": "Choose the type of detection method used to determine how a requirement is validated."
+ },
+ "architectures": "Operating system architecture",
+ "architecturesTooltip": "Choose the architectures needed to install the app.",
+ "bladeTitle": "Requirements",
+ "diskSpace": "Disk space required (MB)",
+ "diskSpaceTooltip": "Free disk space needed on the system drive to install the app.",
+ "header": "Specify the requirements that devices must meet before the app is installed:",
+ "maximumTextFieldValue": "The value must be at most {0}.",
+ "minimumCpuSpeed": "Minimum CPU speed required (MHz)",
+ "minimumCpuSpeedTooltip": "The minimum CPU speed required to install the app.",
+ "minimumLogicalProcessors": "Minimum number of logical processors required",
+ "minimumLogicalProcessorsTooltip": "The minimum number of logical processors required to install the app.",
+ "minimumOperatingSystem": "Minimum operating system",
+ "minimumOperatingSystemTooltip": "Select the minimum operating system needed to install the app.",
+ "minumumTextFieldValue": "The value must be at least {0}.",
+ "physicalMemory": "Physical memory required (MB)",
+ "physicalMemoryTooltip": "Physical memory (RAM) required to install the app.",
+ "selectorLabel": "Requirements",
+ "validNumber": "Please enter a valid number."
+ },
+ "AzureIAM": {
+ "AdrsUserActionSelectionWarning": {
+ "conditions": "Conditions that require device registration are not available with \"Register or join devices\" user action.",
+ "message": "Only \"Require multi-factor authentication\" can be used in policies created for the \"Register or join devices\" user action.{0}"
+ },
+ "AuthContext": {
+ "Delete": {
+ "failure": "Failed to delete {0}",
+ "failureCa": "Failed to delete {0} because it is referenced by CA policies",
+ "modifying": "Deleting {0}",
+ "success": "Successfully deleted {0}"
+ },
+ "Included": {
+ "none": "No cloud apps, actions, or authentication contexts selected",
+ "plural": "{0} authentication contexts included",
+ "singular": "1 authentication context included"
+ },
+ "InfoBlade": {
+ "createTitle": "Add authentication context",
+ "descPlaceholder": "Add description for the authentication context",
+ "modifyTitle": "Modify authentication context",
+ "namePlaceholder": "Ex. Trusted location, Trusted device, Strong authorization",
+ "publishDesc": "Publish to apps will make the authentication context available for apps to use. Publish once you finish configuring Conditional Access policy for the tag. [Learn more][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150966",
+ "publishLabel": "Publish to apps",
+ "titleDesc": "Configure an authentication context that will be used to protect application data and actions. Use names and descriptions that can be understood by application administrators. [Learn more][1]\n[1]:https://go.microsoft.com/fwlink/?linkid=2150965"
+ },
+ "Notify": {
+ "failure": "Failed to update {0}",
+ "modifying": "Modifying {0}",
+ "success": "Successfully updated {0}"
+ },
+ "WhatIf": {
+ "selected": "Authentication context included"
+ },
+ "addNewStepUp": "New authentication context",
+ "checkBoxInfo": "Select the authentication contexts this policy will apply to",
+ "configure": "Configure authentication contexts",
+ "createCA": "Assign Conditional Access policies to the authentication context",
+ "dataGrid": "List of authentication contexts",
+ "deleteFailedByReference": "You cannot delete this authentication context because it is being referenced by CA policies.",
+ "description": "Description",
+ "documentation": "Documentation",
+ "getStarted": "Get started",
+ "label": "Authentication context (preview)",
+ "menuLabel": "Authentication context (Preview)",
+ "name": "Name",
+ "noAuthContextConfigured": "No authentication contexts have been configured.",
+ "noAuthContextSet": "There are no authentication contexts",
+ "noData": "No authentication contexts to display",
+ "selectionInfo": "Authentication context is used to secure application data and actions in apps like SharePoint and Microsoft Cloud App Security.",
+ "step": "Step",
+ "tabDescription": "Manage authentication context to protect data and actions in your apps. [Learn more][1]\n[1]:https://go.microsoft.com/fwlink/?linkid=2150965",
+ "tagResources": "Tag resources with an authentication context"
+ },
+ "AuthenticationStrength": {
+ "Mode": {
+ "deviceBasedPush": "Microsoft Authenticator (Phone Sign-in)",
+ "deviceBasedPushFido2X509Certificate": "Microsoft Authenticator (Phone Sign-in) + Fido 2 + Certificate Based Authentication",
+ "deviceBasedPushX509CertificateSingleFactor": "Microsoft Authenticator (Phone Sign-in) + Fido 2 + Certificate Based Authentication (Single Factor)",
+ "email": "Email one-time passcode",
+ "emailOtp": "Email one-time passcode",
+ "federatedMultiFactor": "Federated Multi-Factor",
+ "federatedSingleFactor": "Federated single factor",
+ "federatedSingleFactorFederatedMultiFactor": "Federated single factor + Federated Multi-Factor",
+ "fido2": "FIDO 2 security key",
+ "fido2X509CertificateSingleFactor": "FIDO 2 security key + Certificate Based Authentication (Single Factor)",
+ "hardwareOath": "Hardware OATH tokens",
+ "hardwareOathEmail": "Hardware OATH tokens + Email one-time passcode",
+ "hardwareOathX509CertificateSingleFactor": "Hardware OATH tokens + Certificate Based Authentication (Single Factor)",
+ "microsoftAuthenticatorPSIX509CertificateSingleFactor": "Microsoft Authenticator (Phone Sign-in) + Certificate Based Authentication (Single Factor)",
+ "microsoftAuthenticatorPsi": "Microsoft Authenticator (Phone Sign-in)",
+ "microsoftAuthenticatorPush": "Microsoft Authenticator (Push Notification)",
+ "microsoftAuthenticatorPushEmail": "Microsoft Authenticator (Push Notification) + Email one-time passcode",
+ "microsoftAuthenticatorPushX509CertificateSingleFactor": "Microsoft Authenticator (Push Notification) + Certificate Based Authentication (Single Factor)",
+ "none": "None",
+ "password": "Password",
+ "passwordDeviceBasedPush": "Password + Microsoft Authenticator (Phone Sign-in)",
+ "passwordFido2": "Password + FIDO 2 security key",
+ "passwordHardwareOath": "Password + Hardware OATH tokens",
+ "passwordMicrosoftAuthenticatorPSI": "Password + Microsoft Authenticator (Phone Sign-in)",
+ "passwordMicrosoftAuthenticatorPush": "Password + Microsoft Authenticator (Push Notification)",
+ "passwordSms": "Password + SMS",
+ "passwordSoftwareOath": "Password + Software OATH tokens",
+ "passwordTemporaryAccessPassMultiUse": "Password + Temporary Access Pass (Multi-use)",
+ "passwordTemporaryAccessPassOneTime": "Password + Temporary Access Pass (One-time use)",
+ "passwordVoice": "Password + Voice",
+ "sms": "SMS",
+ "smsEmail": "SMS + Email one-time passcode",
+ "smsSignIn": "SMS sign in",
+ "smsX509CertificateSingleFactor": "SMS + Certificate Based Authentication (Single Factor)",
+ "softwareOath": "Software OATH tokens",
+ "softwareOathEmail": "Software OATH tokens + Email one-time passcode",
+ "softwareOathX509CertificateSingleFactor": "Software OATH tokens + Certificate Based Authentication (Single Factor)",
+ "temporaryAccessPassMultiUse": "Temporary Access Pass (Multi-use)",
+ "temporaryAccessPassMultiUseX509CertificateSingleFactor": "Temporary Access Pass (Multi-use) + Certificate Based Authentication (Single Factor)",
+ "temporaryAccessPassOneTime": "Temporary Access Pass (One-time use)",
+ "temporaryAccessPassOneTimeX509CertificateSingleFactor": "Temporary Access Pass (One-time use) + Certificate Based Authentication (Single Factor)",
+ "voice": "Voice",
+ "voiceEmail": "Voice + Email one-time passcode",
+ "voiceX509CertificateSingleFactor": "Voice + Certificate Based Authentication (Single Factor)",
+ "windowsHelloForBusiness": "Windows Hello For Business",
+ "x509CertificateMultiFactor": "Certificate Based Authentication (Multi-Factor)",
+ "x509CertificateSingleFactor": "Certificate Based Authentication (Single Factor)"
+ }
+ },
+ "CAS": {
+ "BuiltinPolicy": {
+ "Option": {
+ "blockDownloads": "Block downloads (Preview)",
+ "monitorOnly": "Monitor only (Preview)",
+ "protectDownloads": "Protect downloads (Preview)",
+ "useCustomControls": "Use custom policy..."
+ },
+ "ariaLabel": "Choose the kind of Conditional Access App Control to apply"
+ }
+ },
+ "ChooseApplications": {
+ "Grid": {
+ "appIdAria": "App ID: {0}"
+ },
+ "LowerGrid": {
+ "ariaLabel": "List of selected cloud apps"
+ },
+ "UpperGrid": {
+ "ariaLabel": "List of cloud apps which match the search term"
+ }
+ },
+ "ChooseLocations": {
+ "Validation": {
+ "failed": "With \"Selected locations\" you must choose at least one location.",
+ "selector": "Choose at least one location"
+ }
+ },
+ "ClientApp": {
+ "Clients": {
+ "Validation": {
+ "failed": "You must select at least one of the following clients"
+ }
+ }
+ },
+ "ClientConditionsInfo": {
+ "browserAndModern": "This policy only applies to browser and modern authentication apps. To apply the policy to all client apps, enable the client app condition and select all the client apps.",
+ "classicExperience": "Since this policy was created, the default client apps configuration has been updated.",
+ "legacyAuth": "When not configured, policies now apply to all client apps, including modern and legacy auth."
+ },
+ "CloudAppFilterBlade": {
+ "AssignmentFilter": {
+ "header": "Attribute",
+ "placeholder": "Choose an attribute"
+ },
+ "Configure": {
+ "infoBalloon": "Configure app filters you want to policy to apply to."
+ },
+ "NoPermissions": {
+ "learnMoreAria": "More about custom security attribute permissions.",
+ "message": "You do not have the permissions needed to use custom security attributes."
+ },
+ "gridHeader": "Using custom security attributes you can use the rule builder or rule syntax text box to create or edit the filter rules. In the preview, only attributes of type String are supported. Attributes of type Integer or Boolean will not be shown.",
+ "learnMoreAria": "More information about using the rule builder and syntax text box.",
+ "noAttributes": "There are no custom attributes available to filter on. You will need to configure some attributes to employ this filter.",
+ "title": "Edit filter (Preview)"
+ },
+ "CloudAppsUserActions": {
+ "any": "Any cloud app or action",
+ "infoBalloon": "Cloud app or user action you want to test. For example, 'SharePoint Online'",
+ "learnMore": "Control access based on all or specific cloud apps or actions.",
+ "learnMoreB2C": "Control access based on all or specific cloud apps.",
+ "title": "Cloud apps or actions"
+ },
+ "CloudappsSelectionBlade": {
+ "Excluded": {
+ "gridAria": "List of excluded cloud apps"
+ },
+ "Filter": {
+ "configured": "Configured",
+ "label": "Edit filter (Preview)",
+ "with": "{0} with {1}"
+ },
+ "Included": {
+ "gridAria": "List of included cloud apps"
+ },
+ "Validation": {
+ "authContext": "With \"authentication context\" you must configure at least one sub-item.",
+ "selectApps": "\"{0}\" must be configured",
+ "selector": "Select at least one app.",
+ "userActions": "With \"User actions\" you must configure at least one sub-item."
+ }
+ },
+ "DeviceState": {
+ "LearnMore": {
+ "message": "Control user access when the device the user is signing-in from is not \"Hybrid Azure AD joined\" or \"marked as compliant\".\n This has been deprecated. Use '{1}' instead."
+ }
+ },
+ "Errors": {
+ "notFound": "The policy was not found or has been deleted.",
+ "notFoundDetailed": "The policy \"{0}\" no longer exists. It may have been deleted."
+ },
+ "GuestsOrExternalUsers": {
+ "allExternalTenantsLabel": "All Azure AD organizations",
+ "b2bCollaborationGuestLabel": "B2B collaboration guest users",
+ "b2bCollaborationMemberLabel": "B2B collaboration member users",
+ "b2bDirectConnectUserLabel": "B2B direct connect users",
+ "enumeratedExternalTenantsError": "Please select at least one external tenant",
+ "enumeratedExternalTenantsLabel": "Select Azure AD organizations",
+ "externalTenantsLabel": "Specify external Azure AD organizations",
+ "externalUserDropdownLabel": "Choose guest or external user types",
+ "externalUsersError": "Select at least one external guest or user type",
+ "guestOrExternalUsersInfoContent": "Includes B2B Collaboration, B2B direct connect and other types of external users.",
+ "guestOrExternalUsersLabel": "Guest or external users",
+ "internalGuestLabel": "Local guest users",
+ "otherExternalUserLabel": "Other external users"
+ },
+ "NamedLocation": {
+ "Form": {
+ "CountryLookup": {
+ "ariaLabel": "Country lookup method",
+ "gps": "Determine location by GPS coordinates",
+ "info": "When the location condition of a Conditional Access policy is configured, users will be prompted by the Authenticator app to share their GPS location. ",
+ "ip": "Determine location by IP address (IPv4 only)"
+ },
+ "Header": {
+ "new": "New location ({0})",
+ "update": "Update location ({0})"
+ },
+ "IP": {
+ "learn": "Configure named location IPv4 and IPv6 ranges.\n[Learn more][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
+ },
+ "Include": {
+ "infoBalloon": "Unknown countries/regions are IP addresses that are not associated with a specific country or region. [Learn more][1]\n\nThis includes:\n* IPv6 addresses\n* IPv4 addresses without a direct mapping\n[1]: https://aka.ms/canamedlocations\n",
+ "label": "Include unknown countries/regions"
+ },
+ "Name": {
+ "empty": "Name cannot be empty",
+ "placeholder": "Name this location"
+ },
+ "PrivateLink": {
+ "learn": "Create a new named location containing Private Links for Azure AD.\n[Learn more][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
+ },
+ "Search": {
+ "countries": "Search countries",
+ "names": "Search names",
+ "privateLinks": "Search Private Links"
+ },
+ "Trusted": {
+ "label": "Mark as trusted location"
+ },
+ "enter": "Enter a new IPv4 or IPv6 range",
+ "example": "ex: 40.77.182.32/27 or 2a01:111::/32"
+ },
+ "Label": {
+ "addCountries": "Countries location",
+ "addIpRange": "IP ranges location",
+ "addPrivateLink": "Azure Private Links"
+ },
+ "Notification": {
+ "Create": {
+ "Failed": {
+ "description": "Failure in creating new location ({0})",
+ "title": "Creation has failed"
+ },
+ "InProgress": {
+ "description": "Creating new location ({0})",
+ "title": "Creation in progress"
+ },
+ "Success": {
+ "description": "Success in creating new location ({0})",
+ "title": "Creation has succeeded"
+ }
+ },
+ "Delete": {
+ "Failed": {
+ "description": "Failure in deleting location ({0})",
+ "title": "Deletion has failed"
+ },
+ "InProgress": {
+ "description": "Deleting location ({0})",
+ "title": "Deletion in progress"
+ },
+ "Success": {
+ "description": "Success in deleting location ({0})",
+ "title": "Deletion has succeeded"
+ }
+ },
+ "Update": {
+ "Failed": {
+ "description": "Failure in updating location ({0})",
+ "title": "Updating has failed"
+ },
+ "InProgress": {
+ "description": "Updating location ({0})",
+ "title": "Updating in progress"
+ },
+ "Success": {
+ "description": "Success in updating location ({0})",
+ "title": "Updating has succeeded"
+ }
+ }
+ },
+ "PrivateLinks": {
+ "grid": "List of Private Links"
+ },
+ "Trusted": {
+ "title": "Trusted type",
+ "trusted": "Trusted"
+ },
+ "Type": {
+ "all": "All types",
+ "countries": "Countries",
+ "ipRanges": "IP ranges",
+ "privateLinks": "Private Links",
+ "title": "Location type"
+ },
+ "iPRangeInvalidError": "Value must be a valid IPv4 or IPv6 range.",
+ "iPRangeLinkOrSiteLocalError": "IP network detected as a link local or site local address.",
+ "iPRangeOctetError": "IP network must not start with 0 or 255.",
+ "iPRangePrefixError": "IP network prefix must be from /{0} to /{1}.",
+ "iPRangePrivateError": "IP network detected as a private address."
+ },
+ "NamedNetwork": {
+ "List": {
+ "gridAria": "List of named locations"
+ }
+ },
+ "Policies": {
+ "Grid": {
+ "aria": "List of Conditional Access policies"
+ },
+ "countText": "{0} out of {1} policies found",
+ "countTextSingular": "{0} out of 1 policy found",
+ "search": "Search policies"
+ },
+ "Policy": {
+ "Condition": {
+ "ServicePrincipalRisk": {
+ "description": "Configure service principal risk levels needed for policy to be enforced",
+ "infoBalloonContent": "Configure service principal risk to apply the policy to selected risk level(s)",
+ "title": "Service principal risk (Preview)"
+ }
+ }
+ },
+ "PolicyControlAuthStrength": {
+ "MultiFactorAuthentication": {
+ "description": "Combinations of methods that satisfy strong authentication, such as Password + SMS",
+ "displayName": "Multi-factor authentication (MFA)"
+ },
+ "Passwordless": {
+ "description": "Passwordless methods that satisfy strong authentication, such as Microsoft Authenticator ",
+ "displayName": "Passwordless MFA"
+ },
+ "PhishingResistant": {
+ "description": "Phishing-resistant Passwordless methods for the strongest authentication, such as FIDO2 Security Key",
+ "displayName": "Phishing resistant MFA"
+ }
+ },
+ "PolicyControlFedAuthMethod": {
+ "ariaLabel": "Learn more about requiring authentication methods satisfied by federation providers.",
+ "certificate": "Certificate authentication",
+ "infoBubble": "Specify a required authentication method, that must be satisfied by federation provider, such as ADFS.",
+ "multifactor": "Multi-factor authentication",
+ "require": "Require federated authentication method (Preview)",
+ "whatIfFormat": "{0} - {1}"
+ },
+ "PolicyState": {
+ "off": "Off",
+ "on": "On",
+ "reportOnly": "Report-only"
+ },
+ "PolicyTemplates": {
+ "Devices": {
+ "description": "Select Devices policy template category to gain visibility into devices accessing the network. Ensure compliance and health status before granting access.",
+ "name": "Devices"
+ },
+ "Identities": {
+ "description": "Select Identities policy template category to verify and secure each identity with strong authentication across your entire digital estate.",
+ "name": "Identities"
+ },
+ "Summary": {
+ "CloudApps": {
+ "allCloudApps": "All apps",
+ "office365": "Office 365",
+ "registerSecurityInfo": "Register security information"
+ },
+ "Conditions": {
+ "androidAndIOS": "Device Platform: Android and IOS",
+ "anyDevice": "Any device except Android, IOS, Windows and Mac",
+ "anyDeviceStateExceptHybrid": "Any device state except compliant and hybrid Azure AD joined",
+ "anyLocation": "Any location except trusted",
+ "browserMobileDesktop": "Client apps: Browser, Mobile apps and desktop clients",
+ "exchangeActiveSync": "Client Apps: Exchange Active Sync, Other Clients",
+ "windowsAndMac": "Device Platform: Windows and Mac"
+ },
+ "Devices": {
+ "anyDevice": "Any Device"
+ },
+ "Grant": {
+ "appProtectionPolicy": "Require app protection policy",
+ "approvedClientApp": "Require approved client app",
+ "blockAccess": "Block access",
+ "mfa": "Require multi-factor authentication",
+ "passwordChange": "Require password change",
+ "requireCompliantDevice": "Require device to be marked as compliant",
+ "requireHybridAzureADDevice": "Require hybrid Azure AD joined device"
+ },
+ "Session": {
+ "appEnforcedRestrictions": "Use app enforced restrictions",
+ "signInFrequency": "Sign-in Frequency and never persistent browser session"
+ },
+ "UsersAndGroups": {
+ "allUsers": "All Users",
+ "directoryRoles": "Directory roles except current administrator",
+ "globalAdmin": "Global Administrator",
+ "noGuestAndAdmins": "All Users except Guest and External, Global administrators, Current administrator"
+ },
+ "azureManagement": "Azure Management",
+ "deviceFilters": "Filters for devices",
+ "devicePlatforms": "Device Platforms"
+ },
+ "TemplateId": {
+ "AppEnforcedRestrictions": {
+ "description": "Block or limit access to SharePoint, OneDrive, and Exchange content from unmanaged devices.",
+ "name": "CA014: Use application enforced restrictions for unmanaged devices",
+ "title": "Use application enforced restrictions for unmanaged devices"
+ },
+ "ApprovedClientApps": {
+ "description": "To prevent data loss, organizations can restrict access to approved modern auth client apps with Intune app protection.",
+ "name": "CA012: Require approved client apps and app protection",
+ "title": "Require approved client apps and app protection"
+ },
+ "BlockAccessOnUnknowns": {
+ "description": "Users will be blocked from accessing company resources when the device type is unknown or unsupported.",
+ "name": "CA010: Block access for unknown or unsupported device platform",
+ "title": "Block access for unknown or unsupported device platform"
+ },
+ "BlockLegacyAuth": {
+ "description": "Block legacy authentication endpoints that can be used to bypass multi-factor authentication. ",
+ "name": "CA003: Block legacy authentication",
+ "title": "Block legacy authentication"
+ },
+ "NoPersistentBrowserSession": {
+ "description": "Protect user access on unmanaged devices by preventing browser sessions from remaining signed in after the browser is closed and setting a sign-in frequency to 1 hour.",
+ "name": "CA011: No persistent browser session",
+ "title": "No persistent browser session"
+ },
+ "RequireCompliantOrHybridADAdmins": {
+ "description": "Require privileged administrators to only access resources when using a compliant or hybrid Azure AD joined device.",
+ "name": "CA009: Require compliant or hybrid Azure AD joined device for admins",
+ "title": "Require compliant or hybrid Azure AD joined device for admins"
+ },
+ "RequireCompliantOrHybridADAllUsers": {
+ "description": "Protect access to company resources by requiring users to use a managed device or perform multi-factor authentication. (macOS or Windows only)",
+ "name": "CA013: Require compliant or hybrid Azure AD joined device or multi-factor authentication for all users",
+ "title": "Require compliant or hybrid Azure AD joined device or multi-factor authentication for all users"
+ },
+ "RequireMFAAllUsers": {
+ "description": "Require multi-factor authentication for all user accounts to reduce risk of compromise.",
+ "name": "CA004: Require multi-factor authentication for all users",
+ "title": "Require multi-factor authentication for all users"
+ },
+ "RequireMFAForAdmins": {
+ "description": "Require multi-factor authentication for privileged administrative accounts to reduce risk of compromise. This policy will target the same roles as Security Default.",
+ "name": "CA001: Require multi-factor authentication for admins",
+ "title": "Require multi-factor authentication for admins"
+ },
+ "RequireMFAForAzureManagement": {
+ "description": "Require multi-factor authentication to protect privileged access to Azure resources.",
+ "name": "CA006: Require multi-factor authentication for Azure management",
+ "title": "Require multi-factor authentication for Azure management"
+ },
+ "RequireMFAForGuestAccess": {
+ "description": "Require guest users perform multi-factor authentication when accessing your company resources.",
+ "name": "CA005: Require multi-factor authentication for guest access",
+ "title": "Require multi-factor authentication for guest access"
+ },
+ "RequireMFAForRiskySignIn": {
+ "description": "Require multi-factor authentication if the sign-in risk is detected to be medium or high. (Requires an Azure AD Premium 2 License)",
+ "name": "CA007: Require multi-factor authentication for risky sign-ins",
+ "title": "Require multi-factor authentication for risky sign-ins"
+ },
+ "RequirePasswordChangeForHighRiskUsers": {
+ "description": "Require the user to change their password if the user risk is detected to be high. (Requires an Azure AD Premium 2 License)",
+ "name": "CA008: Require password change for high-risk users",
+ "title": "Require password change for high-risk users"
+ },
+ "RequireSecurityInfo": {
+ "description": "Secure when and how users register for Azure AD multi-factor authentication and self-service password. ",
+ "name": "CA002: Securing security info registration",
+ "title": "Securing security info registration"
+ }
+ },
+ "TemplateState": {
+ "BlockAccessOnUnknowns": {
+ "title": "Enabling this policy will prevent any access from unknown device type, consider using report only mode to begin with until you have confirmed this will not impact your users."
+ },
+ "BlockLegacyAuth": {
+ "description": "Consider using report only mode to begin with until you have confirmed this will not impact your users.",
+ "title": "Enabling this policy will block legacy authentication for all your users."
+ },
+ "RequireCompliantOrHybridADAdmins": {
+ "Description": {
+ "on": "Consider using report only mode to begin with until you have confirmed this will not impact your privileged users.",
+ "reportOnly": "Policies in report-only mode that require compliant devices may prompt users on Mac, iOS, and Android to select a device certificate during policy evaluation, even though device compliance is not enforced. These prompts may repeat until the device is made compliant."
+ },
+ "Title": {
+ "on": "Enabling this policy will prevent any access for privileged users unless using a managed device such as compliant or hybrid Azure AD joined. Ensure you have configured your compliance policies or enabled hybrid Azure AD configuration before enabling.",
+ "reportOnly": "Ensure you have configured your compliance policies or enabled hybrid Azure AD configuration before enabling. "
+ }
+ },
+ "RequireCompliantOrHybridADAllUsers": {
+ "Description": {
+ "on": "This policy will affect all users except the current logged in Administrator. Consider using report only mode to begin with until you have confirmed this will not impact your users."
+ },
+ "Title": {
+ "on": "Don't lock yourself out! Make sure that your device is compliant, or hybrid Azure AD Joined or you have configured multi-factor authentication. ",
+ "reportOnly": "Policies in report-only mode that require compliant devices may prompt users on Mac, iOS, and Android to select a device certificate during policy evaluation, even though device compliance is not enforced. These prompts may repeat untli the device is made compliant."
+ }
+ },
+ "RequireMfa": {
+ "description": "If you use emergency access accounts or Azure AD connect to synchronize your on-premises objects, you may need to exclude these accounts from this policy after creation."
+ },
+ "RequireMfaAdmins": {
+ "description": "Please note the current administrator account will automatically be excluded but all others will be protected on policy creation. Consider using report only mode to begin with.",
+ "title": "Don't lock yourself out! This policy impacts the Azure portal."
+ },
+ "RequireMfaAllUsers": {
+ "description": "Consider using report only mode to begin with until you have planned and communicated this change to all your users.",
+ "title": "Enabling this policy will enforce multi-factor authentication for all your users."
+ },
+ "RequireSecurityInfo": {
+ "description": "Please ensure you review your configuration to protect these accounts based on your company needs.",
+ "title": "The following users and roles are excluded from this policy, Guests and External Users, Global Administrators, Current Administrator"
+ }
+ },
+ "basics": "Basics",
+ "clientApps": "Client apps",
+ "cloudApps": "Cloud apps",
+ "cloudAppsOrActions": "Cloud apps or actions ",
+ "conditions": "Conditions ",
+ "createNewPolicy": "Create new policy from templates (Preview)",
+ "createPolicy": "Create Policy",
+ "currentUser": "Current user",
+ "customizeBuild": "Customize your build",
+ "customizeTemplate": "Template lists are customized based on the type of policy you're looking to create",
+ "excludedDevicePlatform": "Excluded device platforms",
+ "excludedDirectoryRoles": "Excluded directory roles",
+ "excludedLocation": "Excluded directory roles",
+ "excludedUsers": "Excluded users",
+ "grantControl": "Grant control ",
+ "includeFilteredDevice": "Include filtered devices in policy",
+ "includedDevicePlatform": "Included device platforms",
+ "includedDirectoryRoles": "Included directory roles",
+ "includedLocation": "Included location",
+ "includedUsers": "Included users",
+ "legacyAuthenticationClients": "Legacy authentication clients",
+ "namePolicy": "Name your policy",
+ "next": "Next",
+ "policyName": "Policy Name",
+ "policyState": "Policy state",
+ "policySummary": "Policy summary",
+ "policyTemplate": "Policy template",
+ "previous": "Previous",
+ "reviewAndCreate": "Review + create",
+ "riskLevels": "Risk levels",
+ "selectATemplate": "Select a Template",
+ "selectTemplate": "Select template",
+ "selectTemplateCategory": "Select a template category",
+ "selectTemplateRecommendation": "We recommend the following templates based on your response",
+ "sessionControl": "Session control ",
+ "signInFrequency": "Sign-in frequency",
+ "signInRisk": "Sign-in risk",
+ "template": "Template ",
+ "templateCategory": "Template category",
+ "userRisk": "User risk",
+ "usersAndGroups": "Users and groups ",
+ "viewPolicySummary": "View policy summary "
+ },
+ "SSM": {
+ "MemberSelector": {
+ "description": "Users and groups"
+ },
+ "Notification": {
+ "Migration": {
+ "error": "Failed to migrate Continuous access evaluation settings to Conditional access policies",
+ "inProgress": "Migrating Continuous access evaluation settings",
+ "success": "Successfully migrated Continuous access evaluation settings to Conditional access policies",
+ "successDescription": "Please proceed to Conditional access policies to view the migrated settings in the newly created policy named \"CA policy created from CAE settings\"."
+ },
+ "error": "Failed to update Continuous access evaluation settings",
+ "inProgress": "Updating Continuous access evaluation settings",
+ "success": "Successfully updated Continuous access evaluation settings"
+ },
+ "PreviewOptions": {
+ "disable": "Disable preview",
+ "enable": "Enable preview"
+ },
+ "StrictLocationEnforcement": {
+ "infoContent1": "Different IPs can be seen by Azure AD and Resource Provider from the same client device due to network partition or IPv4/IPv6 mismatch. Strict Location Enforcement will enforce the Conditional Access policy based on both IP addresses seen by Azure AD and Resource Provider.",
+ "infoContent2": "To ensure maximum security, it is recommended to include all IPs that can be seen by both Azure AD and Resource Provider in your Named Location policy and turn on \"Strict Location Enforcement\" mode.",
+ "label": "Strict Location Enforcement",
+ "title": "Additional enforcement modes"
+ },
+ "bladeTitle": "Continuous access evaluation",
+ "description": "When a user's access is removed or a client IP address changes, Continuous access evaluation automatically blocks access to resources and applications in near real time. ",
+ "migrateLabel": "Migrate",
+ "migrationError": "Migration failed due to the following error: {0}",
+ "migrationInfo": "CAE setting has been moved under Conditional Access UX, please migrate with the “Migrate” button above and configure it with Conditional Access policy going forward. Click here to learn more.",
+ "noLicenseMessage": "Manage smart session management settings with Azure AD Premium",
+ "optionsPickerTitle": "Enable/Disable Continuous access evaluation",
+ "upsellInfo": "You cannot change your settings on this page anymore and any settings here should be disregarded. Your previous setting will be honored. You can configure your CAE settings under Conditional Access going forward. Click here to learn more."
+ },
+ "SelectOrganizations": {
+ "Blade": {
+ "Lower": {
+ "gridAria": "List of selected organizations"
+ },
+ "Upper": {
+ "gridAria": "List of available organizations"
+ },
+ "description": "Add an Azure AD organization by typing one of its domain names.",
+ "notFoundResult": "Not found",
+ "searchBoxPlaceholder": "Tenant ID or domain name",
+ "subTitle": "Azure AD organization"
+ },
+ "Selector": {
+ "AdditionalDetails": {
+ "aria": "Organization ID: {0}"
+ },
+ "DisplayText": {
+ "multiple": "{0} Azure AD organizations selected",
+ "single": "1 Azure AD organization selected"
+ },
+ "gridAria": "List of selected organizations"
+ }
+ },
+ "SessionLifetime": {
+ "PersistentBrowser": {
+ "Error": {
+ "notAllApps": "Persistent browser session policy only works correctly when \"All cloud apps\" is selected. Please update your cloud apps selection."
+ },
+ "Option": {
+ "always": "Always persistent",
+ "help": "A persistent browser session allows users to remain signed in after closing and reopening their browser window.
\n\n- This setting works correctly when \"All cloud apps\" are selected
\n- This does not affect token lifetimes or the sign-in frequency setting.
\n- This will override the \"Show option to stay signed in\" policy in Company Branding.
\n- \"Never persistent\" will override any persistent SSO claims passed in from federated authentication services.
\n- \"Never persistent\" will prevent SSO on mobile devices across applications and between applications and the user's mobile browser.
\n",
+ "label": "Persistent browser session",
+ "never": "Never persistent"
+ },
+ "Warning": {
+ "allApps": "Persistent browser session only works correctly when All cloud apps is selected. Please change your cloud apps selection. Click here to learn more."
+ }
+ },
+ "SignInFrequency": {
+ "Aria": {
+ "units": "Hours or days",
+ "value": "Frequency"
+ },
+ "Option": {
+ "Day": {
+ "plural": "{0} days",
+ "singular": "1 day"
+ },
+ "Hour": {
+ "plural": "{0} hours",
+ "singular": "1 hour"
+ },
+ "daysOption": "Days",
+ "everytime": "Every time",
+ "help": "Time period before a user is asked to sign-in again when attempting to access a resource. The default setting is a rolling window of 90 days, i.e. users will be asked to re-authenticate on the first attempt to access a resource after being inactive on their machine for 90 days or longer.",
+ "hoursOption": "Hours",
+ "label": "Sign-in frequency",
+ "placeholder": "Select units"
+ }
+ },
+ "mainOption": "Modify session lifetime",
+ "mainOptionHelp": "Configure how often users will get prompted and whether browser sessions will be persisted. Applications that don't support modern authentication protocols might not honor these policies. In such cases please contact the application developer."
+ },
+ "SigninRisk": {
+ "LearnMore": {
+ "message": "Control user access to respond to specific sign-in risk levels."
+ }
+ },
+ "SingleSelectorActive": {
+ "failed": "Unable to load this data.",
+ "reattempt": "Loading data. Reattempt {0} of {1}."
+ },
+ "TimeCondition": {
+ "Errors": {
+ "both": "Invalid \"Include\" or \"Exclude\" time range.",
+ "daysOfWeek": "{0} Make sure to specify at least one day of the week.",
+ "endBeforeStart": "{0} Make sure start date/time is earlier than end date/time.",
+ "exclude": "Invalid \"Exclude\" time range.",
+ "generic": "{0} Make sure both days of the week and time zone are set. If \"All day\" is not checked, start time and end time need to be set as well.",
+ "include": "Invalid \"Include\" time range.",
+ "timeMissing": "{0} Make sure to specify both a start and end time.",
+ "timeZone": "{0} Make sure to specify a time zone.",
+ "timesAndZone": "{0} Make sure you set start time, end time and time zone."
+ }
+ },
+ "UserActions": {
+ "Included": {
+ "none": "No cloud apps or actions selected",
+ "plural": "{0} user actions included",
+ "singular": "1 user action included"
+ },
+ "accessRequirement1": "Level 1",
+ "accessRequirement2": "Level 2",
+ "accessRequirement3": "Level 3",
+ "accessRequirementsLabel": "Accessing secured app data",
+ "appsActionsAuthTitle": "Cloud apps, actions, or authentication context",
+ "appsOrActionsSelectorInfoBallonText": "Applications accessed or user actions",
+ "appsOrActionsTitle": "Cloud apps or actions",
+ "label": "User actions",
+ "mainOptionsLabel": "Select what this policy applies to",
+ "registerOrJoinDevices": "Register or join devices",
+ "registerSecurityInfo": "Register security information",
+ "selectionInfo": "Select the action this policy will apply to",
+ "whatIf": "User action included"
+ },
+ "UserSelectionBlade": {
+ "DirectoryRoles": {
+ "ariaLabel": "Choose directory roles"
+ },
+ "Excluded": {
+ "gridAria": "List of excluded users"
+ },
+ "Included": {
+ "gridAria": "List of included users"
+ },
+ "Validation": {
+ "customRoleIncluded": "\"Directory Roles\" includes at least one custom role",
+ "customRoleSelected": "At least one custom role is selected",
+ "failed": "\"{0}\" must be configured",
+ "roles": "Select at least one role",
+ "usersGroups": "Select at least one user or group"
+ },
+ "learnMore": "Control access based on who the policy will apply to, such as users and groups, workload identities, directory roles, or external guests."
+ },
+ "ValidationResult": {
+ "blockEveryonePolicy": "Policy configuration not supported. Review the assignments and controls.",
+ "invalidApplicationCondition": "Invalid cloud applications selected",
+ "invalidClientTypesCondition": "Invalid client apps selected",
+ "invalidConditions": "Assignments are not selected",
+ "invalidControls": "Invalid controls selected",
+ "invalidDevicePlatformsCondition": "Invalid device platforms selected",
+ "invalidDevicesCondition": "Invalid device configuration. Likely an invalid \"{0}\" configuration.",
+ "invalidGrantControlPolicy": "Invalid grant control",
+ "invalidLocationsCondition": "Invalid locations selected",
+ "invalidPolicy": "Assignments are not selected",
+ "invalidSessionControlPolicy": "Invalid session control",
+ "invalidSignInRisksCondition": "Invalid sign-in risk selected",
+ "invalidUserRisksCondition": "Invalid user risk selected",
+ "invalidUsersCondition": "Invalid users selected",
+ "mamPolicyShouldOnlyTargetAndroidOrIosPlatforms": "MAM policy can only be applied to Android or iOS client platforms.",
+ "notSupportedCombination": "Policy configuration is not supported. Learn more about supported policies.",
+ "pending": "Validating policy",
+ "requireComplianceEveryonePolicy": "Policy configuration will require device compliance for all users. Review the assignments selected.",
+ "success": "Valid policy"
+ },
+ "VpnCert": {
+ "Grid": {
+ "aria": "List of VPN Certificates"
+ }
+ },
+ "WarningsInfo": {
+ "Controls": {
+ "compliantDeviceEnabled": "Don't lock yourself out! Make sure that your device is compliant.",
+ "domainJoinedDeviceEnabled": "Don't lock yourself out! Make sure that your device is Hybrid Azure AD Joined.",
+ "exchangeDisabled": "Exchange ActiveSync only supports \"Compliant device\" and \"Approved client app\" controls. Click to learn more.",
+ "exchangeDisabled2": "Exchange ActiveSync only supports \"Compliant device\", \"Approved client app\" and \"Compliant client app\" controls. Click to learn more.",
+ "notAvailableForSP": "Some controls are not available due to '{0}' selection in policy assignment",
+ "requireAuthOrMfa": "\"{0}\" cannot be used with \"{1}\"",
+ "requireMfa": "Consider testing the new \"{0}\" public preview",
+ "requirePasswordChangeEnabled": "\"Require password change\" can only be used when policy is assigned to \"All cloud apps\""
+ },
+ "Policies": {
+ "Linux": {
+ "devicePlatformsReportOnlyPolicy": "Policies in Report-only mode requiring compliant devices may prompt users on macOS, iOS, Android, and Linux to select a device certificate.",
+ "excludeDevicePlatforms": "Exclude device platforms macOS, iOS, Android, and Linux from this policy.",
+ "proceedAnywayDevicePlatforms": "Proceed with selected configuration. Users on macOS, iOS, Android, and Linux may receive prompts when the device is checked for compliance."
+ },
+ "blockCurrentUserPolicy": "Don't lock yourself out! We recommend applying a policy to a small set of users first to verify it behaves as expected. We also recommend excluding at least one administrator from this policy. This ensures that you still have access and can update a policy if a change is required. Please review the affected users and apps.",
+ "devicePlatformsReportOnlyPolicy": "Policies in Report-only mode requiring compliant devices may prompt users on macOS, iOS, and Android to select a device certificate.",
+ "excludeCurrentUserSelection": "Exclude current user, {0}, from this policy.",
+ "excludeDevicePlatforms": "Exclude device platforms macOS, iOS, and Android from this policy.",
+ "proceedAnywayDevicePlatforms": "Proceed with selected configuration. Users on macOS, iOS, and Android may receive prompts when the device is checked for compliance.",
+ "proceedAnywaySelection": "I understand that my account will be impacted by this policy. Proceed anyway."
+ },
+ "ServicePrincipals": {
+ "blockExchange": "Selecting Office 365 Exchange Online will also affect apps such as OneDrive and Teams.",
+ "blockPortal": "Don't lock yourself out! This policy impacts the Azure portal. Before you continue, ensure that you or someone else will be able to get back into the portal.",
+ "blockPortalWithSession": "Don't lock yourself out! This policy impacts the Azure portal. Before you continue, ensure that you or someone else will be able to get back into the portal.
Disregard this warning if you are configuring persistent browser session policy that works correctly only if \"All cloud apps\" are selected.",
+ "blockSharePoint": "Selecting SharePoint Online will also affect apps such as Microsoft Teams, Planner, Delve, MyAnalytics, and Newsfeed.",
+ "blockSkype": "Selecting Skype for Business Online will also affect Microsoft Teams.",
+ "includeOrExclude": "You can configure the App Filter for '{0}' or '{1}', but not both.",
+ "selectAppsNAForSP": "Individual cloud apps cannot be selected due to '{0}' selection in policy assignment",
+ "teamsBlocked": "Microsoft Teams will also be affected when apps such as SharePoint Online and Exchange Online are included in policy."
+ },
+ "Users": {
+ "blockAllUsers": "Don't lock yourself out! This policy will affect all of your users. We recommend applying a policy to a small set of users first to verify it behaves as expected."
+ }
+ },
+ "WhatIf": {
+ "Device": {
+ "AttributesGrid": {
+ "aria": "List of attributes on the device employed during sign-in.",
+ "infoBalloon": "List of attributes on the device employed during sign-in."
+ }
+ }
+ },
+ "advancedTabText": "Advanced",
+ "allCloudAppsErrorBox": "\"All cloud apps\" must be selected when \"Require password change\" grant is selected",
+ "allCloudAppsReauth": "\"All cloud apps\" must be selected when \"Sign-in frequency every time\" session control and \"sign-in risk\" condition are selected",
+ "allCloudOrSpecificApps": "The \"sign-in frequency every time\" session control requires \"all cloud apps\" or specifically-supported apps to be selected",
+ "allDayCheckboxLabel": "All day",
+ "allDevicePlatforms": "Any device",
+ "allGuestUserInfoContent": "Includes Azure AD B2B guests, but not SharePoint B2B guests",
+ "allGuestUserLabel": "All guest and external users",
+ "allRiskLevelsOption": "All risk levels",
+ "allTrustedLocationLabel": "All trusted locations",
+ "allUserGroupSetSelectorLabel": "All users and groups selected",
+ "allUsersReauth": "The \"sign-in frequency every time\" session control requires \"All Users\" to be selected",
+ "allUsersString": "All users",
+ "and": "{0} AND {1} ",
+ "andWithGrouping": "({0}) AND {1} ",
+ "androidDisplayName": "Android",
+ "anyCloudAppSelection": "Any cloud app",
+ "appContextOptionInfoContent": "Requested authentication tag",
+ "appContextOptionLabel": "Requested authentication tag (Preview)",
+ "appContextUriPlaceholder": "Example: uri:contoso.com:level3",
+ "appEnforceInfoBubble": "App enforced restrictions might require additional admin configurations within the cloud apps. The restrictions will only take effect for new sessions.",
+ "appNotSetSeletorLabel": "0 cloud apps selected",
+ "applyConditionClientAppInfoBalloonContent": "Configure client apps to apply the policy to specific client apps",
+ "applyConditionDevicePlatformInfoBalloonContent": "Configure device platforms to apply the policy to specific platforms",
+ "applyConditionDeviceStateInfoBalloonContent": "Configure device state to apply the policy to specific device state(s)",
+ "applyConditionLocationInfoBalloonContent": "Configure locations to apply the policy to trusted/untrusted locations",
+ "applyConditionSigninRiskInfoBalloonContent": "Configure sign-in risk to apply the policy to selected risk level(s)",
+ "applyConditionUserRiskInfoBalloonContent": "Configure user risk to apply the policy to selected risk level(s)",
+ "applyConditonLabel": "Configure",
+ "ariaLabelPolicyDisabled": "Policy is disabled",
+ "ariaLabelPolicyEnabled": "Policy is enabled",
+ "ariaLabelPolicyReportOnly": "Policy is in Report-only mode",
+ "blockAccess": "Block access",
+ "builtInDirectoryRoleLabel": "Built-in directory roles",
+ "casCustomControlInfo": "Custom policies need to be configured in Cloud App Security portal. This control works instantly for featured apps and can be self onboarded for any app. Click here to learn more about both scenarios.",
+ "casInfoBubble": "This control works for various cloud apps.",
+ "casPreconfiguredControlInfo": "This control works instantly for featured apps and can be self onboarded for any app. Click here to learn more about both scenarios.",
+ "cert64DownloadCol": "Download base64 certificate",
+ "cert64Name": "VpnBase64Cert",
+ "certDownloadCol": "Download certificate",
+ "certDurationCol": "Expiry",
+ "certDurationStartCol": "Valid from",
+ "certName": "VpnCert",
+ "certainApps": "Only specifically-supported apps are enabled for \"Sign-in frequency every time\" if \"Require multi-factor authentication\" and \"Require password change\" grants are not selected",
+ "chooseApplicationsBladeSubtitle": "",
+ "chooseApplicationsBladeTitle": "Choose Applications",
+ "chooseApplicationsCartSubitle": "",
+ "chooseApplicationsCartTitle": "Chosen Applications",
+ "chooseApplicationsEmpty": "No Applications",
+ "chooseApplicationsNone": "None",
+ "chooseApplicationsNoneFound": "We didn't find \"{0}\". Try another name or ID.",
+ "chooseApplicationsPlural": "{0} and {1} more",
+ "chooseApplicationsReAuthEverytimeInfo": "Looking for your app? Some applications cannot be used with \"Require reauthentication – every time\" session control",
+ "chooseApplicationsRemove": "Remove",
+ "chooseApplicationsReturnedPlural": "{0} applications found",
+ "chooseApplicationsReturnedSingular": "1 application found",
+ "chooseApplicationsSearchBalloon": "Search for an Application by entering its name or ID.",
+ "chooseApplicationsSearchHint": "Search Applications...",
+ "chooseApplicationsSearchLabel": "Applications",
+ "chooseApplicationsSearching": "Searching...",
+ "chooseApplicationsSelect": "Select",
+ "chooseApplicationsSelected": "Selected",
+ "chooseApplicationsSingular": "{0} and 1 more",
+ "chooseApplicationsTooMany": "More results than can be shown. Please filter using the search box.",
+ "chooseLocationCorpnetItem": "Corporate network",
+ "chooseLocationSelectedLocationsLabel": "Selected locations",
+ "chooseLocationTrustedIpsItem": "MFA Trusted IPs",
+ "chooseLocationsBladeSubtitle": "",
+ "chooseLocationsBladeTitle": "Choose Locations",
+ "chooseLocationsCartSubitle": "",
+ "chooseLocationsCartTitle": "Chosen Locations",
+ "chooseLocationsEmpty": "No Locations",
+ "chooseLocationsExcludedSelectorTitle": "Select",
+ "chooseLocationsIncludedSelectorTitle": "Select",
+ "chooseLocationsNone": "None",
+ "chooseLocationsNoneFound": "We didn't find \"{0}\". Try another name or ID.",
+ "chooseLocationsPlural": "{0} and {1} more",
+ "chooseLocationsRemove": "Remove",
+ "chooseLocationsReturnedPlural": "{0} locations found",
+ "chooseLocationsReturnedSingular": "1 location found",
+ "chooseLocationsSearchBalloon": "Search for a Location by entering its name.",
+ "chooseLocationsSearchHint": "Search Locations...",
+ "chooseLocationsSearchLabel": "Locations",
+ "chooseLocationsSearching": "Searching...",
+ "chooseLocationsSelect": "Select",
+ "chooseLocationsSelected": "Selected",
+ "chooseLocationsSelectionBladeExcludedSelectorTitle": "Select",
+ "chooseLocationsSelectionBladeIncludedSelectorTitle": "Select",
+ "chooseLocationsSingular": "{0} and 1 more",
+ "chooseLocationsTooMany": "More results than can be shown. Please filter using the search box.",
+ "claimProviderAddCommandText": "New custom control",
+ "claimProviderAddNewBladeTitle": "New custom control",
+ "claimProviderDeleteCommand": "Delete",
+ "claimProviderDeleteDescription": "Are you sure you want to delete '{0}'? This action cannot be undone.",
+ "claimProviderDeleteTitle": "Are you sure?",
+ "claimProviderEditInfoText": "Enter the JSON for customized controls given by your claim providers.",
+ "claimProviderNotificationCreateDescription": "Creating custom control named '{0}'",
+ "claimProviderNotificationCreateFailedDescription": "Creating custom control '{0}' failed. Please try again later.",
+ "claimProviderNotificationCreateFailedTitle": "Failed to create custom control",
+ "claimProviderNotificationCreateSuccessDescription": "Created custom control named '{0}'",
+ "claimProviderNotificationCreateSuccessTitle": "Created '{0}'",
+ "claimProviderNotificationCreateTitle": "Creating '{0}'",
+ "claimProviderNotificationDeleteDescription": "Deleting custom control named '{0}'",
+ "claimProviderNotificationDeleteFailedDescription": "Deleting custom control '{0}' failed. Please try again later.",
+ "claimProviderNotificationDeleteFailedTitle": "Failed to delete custom control",
+ "claimProviderNotificationDeleteSuccessDescription": "Deleted custom control named '{0}'",
+ "claimProviderNotificationDeleteSuccessTitle": "Deleted '{0}'",
+ "claimProviderNotificationDeleteTitle": "Deleting '{0}'",
+ "claimProviderNotificationUpdateDescription": "Updating custom control named '{0}'",
+ "claimProviderNotificationUpdateFailedDescription": "Updating custom control '{0}' failed. Please try again later.",
+ "claimProviderNotificationUpdateFailedTitle": "Failed to update custom control",
+ "claimProviderNotificationUpdateSuccessDescription": "Updated custom control named '{0}'",
+ "claimProviderNotificationUpdateSuccessTitle": "Updated '{0}'",
+ "claimProviderNotificationUpdateTitle": "Updating '{0}'",
+ "claimProviderValidationAppIdInvalid": "The \"AppId\" value is not valid. Please review and try again.",
+ "claimProviderValidationClientIdMissing": "The data is missing a \"ClientId\" value. Please review and try again.",
+ "claimProviderValidationControlClaimsRequestedMissing": "The \"Control\" is missing a \"ClaimsRequested\" value. Please review and try again.",
+ "claimProviderValidationControlClaimsRequestedTypeMissing": "The \"ClaimsRequested\" item is missing a \"Type\" value. Please review and try again.",
+ "claimProviderValidationControlIdAlreadyExists": "The \"Control\" \"Id\" value already exists. Please review and try again.",
+ "claimProviderValidationControlIdMissing": "The \"Control\" is missing an \"Id\" value. Please review and try again.",
+ "claimProviderValidationControlIdReferencedInExistingPolicy": "The \"Control\" \"Id\" value cannot be removed because it is referenced in an existing policy. Please remove it from the policy first.",
+ "claimProviderValidationControlIdTooManyControls": "The \"Control\" property has too many controls. Please review and try again.",
+ "claimProviderValidationControlIdValueReserved": "The \"Control\" \"Id\" value is a reserved keyword, please use a different id.",
+ "claimProviderValidationControlNameAlreadyExists": "The \"Control\" \"Name\" value already exists. Please review and try again.",
+ "claimProviderValidationControlNameMissing": "The \"Control\" is missing a \"Name\" value. Please review and try again.",
+ "claimProviderValidationControlsMissing": "The data is missing a \"Controls\" value. Please review and try again.",
+ "claimProviderValidationDiscoveryUrlMissing": "The data is missing a \"DiscoveryUrl\" value. Please review and try again.",
+ "claimProviderValidationInvalid": "There data provided is not valid. Please review and try again.",
+ "claimProviderValidationInvalidJsonDefinition": "Unable to save the custom control. Review the JSON text and try again.",
+ "claimProviderValidationNameAlreadyExists": "The \"Name\" value already exists. Please review and try again.",
+ "claimProviderValidationNameMissing": "The data is missing a \"Name\" value. Please review and try again.",
+ "claimProviderValidationUnknown": "There was an unknown error while validating the data provided. Please review and try again.",
+ "claimProvidersNone": "No custom controls",
+ "claimProvidersSearchPlaceholder": "Search controls.",
+ "classicPoilcyFilterTitle": "Show",
+ "classicPolicyAllPlatforms": "All Platforms",
+ "classicPolicyClientAppBrowserAndNative": "Browser, mobile apps and desktop clients",
+ "classicPolicyCloudAppTitle": "Cloud application",
+ "classicPolicyControlAllow": "Allow",
+ "classicPolicyControlBlock": "Block",
+ "classicPolicyControlBlockWhenNotAtWork": "Block access when not at work",
+ "classicPolicyControlRequireCompliantDevice": "Require compliant device",
+ "classicPolicyControlRequireDomainJoinedDevice": "Require domain joined device",
+ "classicPolicyControlRequireMfa": "Require multi-factor authentication",
+ "classicPolicyControlRequireMfaWhenNotAtWork": "Require multi-factor authentication when not at work",
+ "classicPolicyDeleteCommand": "Delete",
+ "classicPolicyDeleteFailTitle": "Failed to delete classic policy",
+ "classicPolicyDeleteInProgressTitle": "Deleting classic policy",
+ "classicPolicyDeleteSuccessTitle": "Classic policy deleted",
+ "classicPolicyDetailBladeTitle": "Details",
+ "classicPolicyDisableCommand": "Disable",
+ "classicPolicyDisableConfirmation": "Are you sure you want to disable '{0}'? This action cannot be undone.",
+ "classicPolicyDisableFailDescription": "Failed to disable '{0}'",
+ "classicPolicyDisableFailTitle": "Failed to disable classic policy",
+ "classicPolicyDisableInProgressDescription": "Disabling '{0}'",
+ "classicPolicyDisableInProgressTitle": "Disabling classic policy",
+ "classicPolicyDisableSuccessDescription": "Successfully disabled '{0}'",
+ "classicPolicyDisableSuccessTitle": "Classic policy disabled",
+ "classicPolicyEasSupportedPlatforms": "Exchange ActiveSync supported platforms",
+ "classicPolicyEasUnsupportedPlatforms": "Exchange ActiveSync unsupported platforms",
+ "classicPolicyExcludedPlatformsTitle": "Excluded device platforms",
+ "classicPolicyFilterAll": "All policies",
+ "classicPolicyFilterDisabled": "Disabled policies",
+ "classicPolicyFilterEnabled": "Enabled policies",
+ "classicPolicyIncludeExcludeMembersDescription": "By excluding groups, you can perform phased migration of policies.",
+ "classicPolicyIncludeExcludeMembersTitle": "Include/exclude groups",
+ "classicPolicyIncludedPlatformsTitle": "Included device platforms",
+ "classicPolicyManualMigrationMessage": "This policy needs to be migrated manually.",
+ "classicPolicyMigrateCommand": "Migrate",
+ "classicPolicyMigrateConfirmation": "Are you sure you want to migrate '{0}'? This policy can only be migrated once.",
+ "classicPolicyMigrateFailDescription": "Failed to migrate '{0}'",
+ "classicPolicyMigrateFailTitle": "Failed to migrate classic policy",
+ "classicPolicyMigrateInProgressDescription": "Migrating '{0}'",
+ "classicPolicyMigrateInProgressTitle": "Migrating classic policy",
+ "classicPolicyMigrateRecommendText": "Recommendation: Migrate to the new Azure portal policies.",
+ "classicPolicyMigrateSuccessTitle": "Classic policy migrated successfully",
+ "classicPolicyMigratedSuccessDescription": "This classic policy can now be managed under Polices.",
+ "classicPolicyMigratedSuccessDescriptionMultiple": "This classic policy is migrated as {0} new policies. New policies can be managed under Policies.",
+ "classicPolicyNoEditPermissionMsg": "You don't have permission to edit this policy. Only global administrators and security administrators can edit the policy. Click here for more information.",
+ "classicPolicySaveFailDescription": "Failed to save '{0}'",
+ "classicPolicySaveFailTitle": "Failed to save classic policy",
+ "classicPolicySaveInProgressDescription": "Saving '{0}'",
+ "classicPolicySaveInProgressTitle": "Saving classic policy",
+ "classicPolicySaveSuccessDescription": "Successfully saved '{0}'",
+ "classicPolicySaveSuccessTitle": "Classic policy saved",
+ "clientAppBladeLegacyInfoBanner": "Legacy auth is currently not supported",
+ "clientAppBladeLegacyUpsellBanner": "Block unsupported client apps (Preview)",
+ "clientAppBladeTitle": "Client apps",
+ "clientAppDescription": "Select the client apps this policy will apply to",
+ "clientAppExchangeActiveSync": "Exchange ActiveSync",
+ "clientAppExchangeDisabledInfo": "Exchange ActiveSync is available when Exchange Online is the only cloud app selected. Click to learn more",
+ "clientAppExchangeWarning": "Exchange ActiveSync currently does not support all other conditions",
+ "clientAppLearnMore": "Control user access to target specific client applications not using modern authentication.",
+ "clientAppLegacyHeader": "Legacy authentication clients",
+ "clientAppMobileDesktop": "Mobile apps and desktop clients",
+ "clientAppModernHeader": "Modern authentication clients",
+ "clientAppOnlySupportedPlatforms": "Apply policy only to supported platforms",
+ "clientAppSelectSpecificClientApps": "Select client apps",
+ "clientAppV2BladeTitle": "Client apps (Preview)",
+ "clientAppWebBrowser": "Browser",
+ "clientAppsSelectedLabel": "{0} included",
+ "clientTypeBrowser": "Browser",
+ "clientTypeEas": "Exchange ActiveSync clients",
+ "clientTypeEasInfo": "Exchange ActiveSync clients that use legacy authentication only.",
+ "clientTypeModernAuth": "Modern authentication clients",
+ "clientTypeOtherClients": "Other clients",
+ "clientTypeOtherClientsInfo": "This includes older office clients and other mail protocols(POP, IMAP, SMTP, etc). [Learn more][1]\n[1]: https://aka.ms/caclientapps\n",
+ "cloudAppCountDiffBannerText": "{0} cloud apps configured in this policy have been deleted from the directory, but this doesn't affect the other apps in the policy. The next time you update the application section of the policy, the deleted apps will be automatically removed from it.",
+ "cloudAppsSelectionBladeAllMicrosoftApps": "All Microsoft apps",
+ "cloudAppsSelectionExcludeAllMicrosoftClients": "Allow Microsoft cloud, desktop and mobile apps (Preview)",
+ "cloudappsSelectionBladeAllCloudapps": "All cloud apps",
+ "cloudappsSelectionBladeExcludeDescription": "Select the cloud apps to exempt from the policy",
+ "cloudappsSelectionBladeExcludedSelectorTitle": "Select excluded cloud apps",
+ "cloudappsSelectionBladeIncludeDescription": "Select the cloud apps this policy will apply to",
+ "cloudappsSelectionBladeIncludedSelectorTitle": "Select",
+ "cloudappsSelectionBladeSelectedCloudapps": "Select apps",
+ "cloudappsSelectorInfoBallonText": "Services which the user accesses to do work. For example, 'Salesforce'",
+ "cloudappsSelectorPluralExcluded": "{0} apps excluded",
+ "cloudappsSelectorPluralIncluded": "{0} apps included",
+ "cloudappsSelectorSingularExcluded": "1 app excluded",
+ "cloudappsSelectorSingularIncluded": "1 app included",
+ "cloudappsSelectorUserPlural": "{0} apps",
+ "cloudappsSelectorUserSingular": "1 app",
+ "conditionLabelMulti": "{0} conditions selected",
+ "conditionLabelOne": "1 condition selected",
+ "conditionalAccessBladeTitle": "Conditional Access",
+ "conditionsNotSelectedLabel": "Not configured",
+ "conditionsReqMfaReauthSet": "Some options are not available due to the \"Require multi-factor authentication\" grant and \"sign-in frequency every time\" session control currently being selected",
+ "conditionsReqPwSet": "Some options are not available due to the \"Require password change\" grant currently being selected",
+ "configureCasText": "Configure Cloud App Security",
+ "configureCustomControlsText": "Configure custom policy",
+ "controlLabelMulti": "{0} controls selected",
+ "controlLabelOne": "1 control selected",
+ "controlValidatorText": "Please select at least one control",
+ "controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
+ "controlsDeviceComplianceAriaLabel": "Learn more about requiring compliant devices.",
+ "controlsDeviceComplianceInfoBubble": "Device must be Intune compliant. If the device is non-compliant, the user will be prompted to bring the device under compliance.",
+ "controlsDomainJoinedAriaLabel": "Learn more about requiring hybrid Azure AD joined devices.",
+ "controlsDomainJoinedInfoBubble": "Devices must be Hybrid Azure AD joined.",
+ "controlsMamAriaLabel": "Learn more about requiring approved client applications.",
+ "controlsMamInfoBubble": "Device must use these approved client applications.",
+ "controlsMfaInfoBubble": "User must complete additional security requirements like phone call, text",
+ "controlsOrAndInfoBubble": "ControlsOrAndInfoBubble",
+ "controlsRequireCompliantAppAriaLabel": "Learn more about requiring policy protected apps.",
+ "controlsRequireCompliantAppInfoBubble": "Device must use policy protected apps.",
+ "controlsRequirePasswordResetAriaLabel": "Learn more about requiring a password change.",
+ "controlsRequirePasswordResetInfoBubble": "Require password change to lower user risk. This option also requires multi-factor authentication. Other controls can't be used.",
+ "countriesRadiobuttonInfoBalloonContent": "The country/region a sign-in is coming from is determined by the user's IP address.",
+ "createNewVpnCert": "New certificate",
+ "createdTimeLabel": "Creation time",
+ "customRoleLabel": "Custom roles (not supported)",
+ "dateRangeTypeLabel": "Date range",
+ "daysOfWeekPlaceholderText": "Filter days of the week",
+ "daysOfWeekTypeLabel": "Days of the week",
+ "deletePolicyNoLicenseText": "You can delete this policy now. Once deleted you will not be able to recreate it until you have the required licenses.",
+ "descriptionContentForControlsAndOr": "For multiple controls",
+ "devicePlatform": "Device platform",
+ "devicePlatformConditionHelpDescription": "Apply policy to selected device platforms.\n[Learn more][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2044750",
+ "devicePlatformInclude": "{0} included",
+ "devicePlatformIncludeExclude": "{0} and {1} excluded",
+ "devicePlatformNoSelectionError": "Select device platforms requires one sub-item to be selected.",
+ "devicePlatformsNone": "None",
+ "deviceSelectionBladeExcludeDescription": "Select the platforms to exempt from the policy",
+ "deviceSelectionBladeIncludeDescription": "Select the device platforms to include in this policy",
+ "deviceStateAll": "All device state",
+ "deviceStateCompliant": "Device marked as compliant",
+ "deviceStateCompliantInfoContent": "Devices that are Intune compliant will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Intune compliant.",
+ "deviceStateConditionConfigureInfoContent": "Configure policy based on device state",
+ "deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Hybrid Azure AD joined' or 'marked as compliant'.\n This has been deprecated. Use '{1}' instead.",
+ "deviceStateConditionSelectorLabel": "Device state (deprecated)",
+ "deviceStateDomainJoined": "Device Hybrid Azure AD joined",
+ "deviceStateDomainJoinedInfoContent": "Devices that are Hybrid Azure AD joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Hybrid Azure AD joined.",
+ "deviceStateDomainJoinedInfoLinkText": "Learn more.",
+ "deviceStateExcludeDescription": "Select the device state condition used to exclude devices from policy.",
+ "deviceStateIncludeAndExcludeOneLabel": "{0} and exclude {1}",
+ "deviceStateIncludeAndExcludeTwoLabel": "{0} and exclude {1}, {2}",
+ "directoryRoleInfoContent": "Assign policy to built-in directory roles.",
+ "directoryRolesLabel": "Directory roles",
+ "discardbutton": "Discard",
+ "downloadDefaultFileName": "IP Ranges",
+ "downloadExampleFileName": "Example",
+ "downloadExampleHeader": "This is an example file with demonstrations of the kinds of data which can be accepted. Lines starting with # will be ignored.",
+ "endDatePickerLabel": "Ends",
+ "endTimePickerLabel": "End time",
+ "enterCountryText": "IP address and Country are evaluated in a pair. Select the Country.",
+ "enterIpText": "IP address and Country are evaluated in a pair. Input the IP address.",
+ "enterUserText": "No user is selected. Select a user.",
+ "evaluationResult": "Evaluation result",
+ "exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
+ "exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync with supported platforms only",
+ "excludeAllTrustedLocationSelectorText": "all trusted locations",
+ "featureRequiresP2": "This feature requires Azure AD Premium 2 license.",
+ "friday": "Friday",
+ "grantControls": "Grant controls",
+ "gridNetworkTrusted": "Trusted",
+ "gridPolicyCreatedDateTime": "Creation Date",
+ "gridPolicyEnabled": "Enabled",
+ "gridPolicyModifiedDateTime": "Modified Date",
+ "gridPolicyName": "Policy Name",
+ "gridPolicyState": "State",
+ "groupSelectionBladeExcludeDescription": "Select the groups to exempt from the policy",
+ "groupSelectionBladeExcludedSelectorTitle": "Select excluded groups",
+ "groupSelectionBladeSelect": "Select groups",
+ "groupSelectorInfoBallonText": "Groups in the directory that the policy applies to. For example, 'Pilot group'",
+ "groupsSelectionBladeTitle": "Groups",
+ "helpCommonScenariosText": "Interested in common scenarios?",
+ "helpCondition1": "When any user is outside the company network",
+ "helpCondition2": "When users in the 'Managers' group sign-in",
+ "helpConditionsTitle": "Conditions",
+ "helpControl1": "They're required to sign in with multi-factor authentication",
+ "helpControl2": "They are required be on an Intune compliant or domain-joined device",
+ "helpControlsTitle": "Controls",
+ "helpIntroText": "Conditional Access gives you the ability to enforce access requirements when specific conditions occur. Let's take a few examples",
+ "helpIntroTitle": "What is Conditional Access?",
+ "helpLearnMoreText": "Want to learn more about Conditional Access?",
+ "helpStartStep1": "Create your first policy by clicking \"+ New policy\"",
+ "helpStartStep2": "Specify policy Conditions and Controls",
+ "helpStartStep3": "When you are done, don't forget to Enable policy and Create",
+ "helpStartTitle": "Get started",
+ "highRisk": "High",
+ "includeAndExcludeAppsTextFormat": "Include: {0}. Exclude: {1}.",
+ "includeAppsTextFormat": "Include: {0}.",
+ "includeUnknownAreasCheckboxInfoBalloonContent": "Unknown areas are IP addresses that can't be mapped to a country/region.",
+ "includeUnknownAreasCheckboxLabel": "Include unknown areas",
+ "infoCommandLabel": "Info",
+ "invalidCertDuration": "Invalid cert duration",
+ "invalidIpAddress": "Value must be a valid IP address",
+ "invalidUriErrorMsg": "Please enter a valid Uri. For example,'uri:contoso.com:acr' ",
+ "iosDisplayName": "iOS",
+ "linuxDisplayName": "Linux",
+ "loadAll": "Load all",
+ "loading": "Loading...",
+ "locationConfigureNamedLocationsText": "Configure all trusted locations",
+ "locationConfigureNamedLocationsUri": "{0}/usermanagement/mfasettings.aspx?tenantid={1}&culture={2}",
+ "locationNameTooLongError": "Location name is too long. Maximum is 256 characters",
+ "locationSelectionBladeExcludeDescription": "Select the locations to exempt from the policy",
+ "locationSelectionBladeIncludeDescription": "Select the locations to include in this policy",
+ "locationsAllLocationsLabel": "Any location",
+ "locationsAllNamedLocationsLabel": "All trusted IPs",
+ "locationsAllPrivateLinksLabel": "All Private Links in my tenant",
+ "locationsIncludeExcludeLabel": "{0} and exclude all trusted IPs",
+ "locationsSelectedPrivateLinksLabel": "Selected Private Links",
+ "lowRisk": "Low",
+ "macOsDisplayName": "macOS",
+ "managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Azure AD Premium P1 or P2.",
+ "markAsTrustedCheckboxInfoBalloonContent": "Signing in from a trusted location lowers a user's sign-in risk. Only mark this location as trusted if you know the IP ranges entered are established and credible in your organization.",
+ "markAsTrustedCheckboxLabel": "Mark as trusted location",
+ "mediumRisk": "Medium",
+ "memberSelectionCommandRemove": "Remove",
+ "menuItemClaimProviderControls": "Custom controls (Preview)",
+ "menuItemClassicPolicies": "Classic policies",
+ "menuItemInsightsAndReporting": "Insights and reporting",
+ "menuItemManage": "Manage",
+ "menuItemNamedLocationsPreview": "Named locations (Preview)",
+ "menuItemNamedNetworks": "Named locations",
+ "menuItemPolicies": "Policies",
+ "menuItemTermsOfUse": "Terms of use",
+ "modifiedTimeLabel": "Modified time",
+ "monday": "Monday",
+ "nameLabel": "Name",
+ "namedLocationCountryInfoBanner": "Only IPv4 addresses are mapped to countries/regions. IPv6 addresses are included in unknown countries/regions.",
+ "namedLocationTypeCountry": "Countries/Regions",
+ "namedLocationTypeLabel": "Define the location using:",
+ "namedLocationUpsellBanner": "This view has been deprecated. Go to the new and improved 'Named locations' view.",
+ "namedLocationsHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/namedlocationupdate",
+ "namedNetworkAddIpRanges": "Add a new IP range (ex: 40.77.182.32/27)",
+ "namedNetworkCountryNeeded": "You need to select at least one country",
+ "namedNetworkDeleteCommand": "Delete",
+ "namedNetworkDeleteDescription": "Are you sure you want to delete '{0}'? This action cannot be undone.",
+ "namedNetworkDeleteTitle": "Are you sure?",
+ "namedNetworkDownloadIpRange": "Download",
+ "namedNetworkInvalidRange": "Value must be a valid IP range.",
+ "namedNetworkIpRangeNeeded": "You need at least one valid IP range",
+ "namedNetworkIpRangesDescriptionContent": "Configure your organization's IP ranges",
+ "namedNetworkIpRangesTab": "IP ranges",
+ "namedNetworkListAdd": "New location",
+ "namedNetworkListConfigureTrustedIps": "Configure MFA trusted IPs",
+ "namedNetworkNameDescription": "Example: 'Redmond office'",
+ "namedNetworkNameInvalid": "The supplied name is invalid.",
+ "namedNetworkNameRequired": "You must supply a name for this location.",
+ "namedNetworkNoIpRanges": "No IP ranges",
+ "namedNetworkNotificationCreateDescription": "Creating location named '{0}'",
+ "namedNetworkNotificationCreateFailedDescription": "Creating location '{0}' failed. Please try again later.",
+ "namedNetworkNotificationCreateFailedTitle": "Failed to create location",
+ "namedNetworkNotificationCreateSuccessDescription": "Created location named '{0}'",
+ "namedNetworkNotificationCreateSuccessTitle": "Created '{0}'",
+ "namedNetworkNotificationCreateTitle": "Creating '{0}'",
+ "namedNetworkNotificationDeleteDescription": "Deleting location named '{0}'",
+ "namedNetworkNotificationDeleteFailedDescription": "Deleting location '{0}' failed. Please try again later.",
+ "namedNetworkNotificationDeleteFailedTitle": "Failed to Delete location",
+ "namedNetworkNotificationDeleteSuccessDescription": "Deleted location named '{0}'",
+ "namedNetworkNotificationDeleteSuccessTitle": "Deleted '{0}'",
+ "namedNetworkNotificationDeleteTitle": "Deleting '{0}'",
+ "namedNetworkNotificationUpdateDescription": "Updating location named '{0}'",
+ "namedNetworkNotificationUpdateFailedDescription": "Updating location '{0}' failed. Please try again later.",
+ "namedNetworkNotificationUpdateFailedTitle": "Failed to Update location",
+ "namedNetworkNotificationUpdateSuccessDescription": "Updated location named '{0}'",
+ "namedNetworkNotificationUpdateSuccessTitle": "Updated '{0}'",
+ "namedNetworkNotificationUpdateTitle": "Updating '{0}'",
+ "namedNetworkSearchPlaceholder": "Search locations.",
+ "namedNetworkUploadFailedDescription": "There was an error parsing the supplied file. Please make sure to upload a plain-text file with each line in the CIDR format.",
+ "namedNetworkUploadFailedTitle": "Failed to parse '{0}'",
+ "namedNetworkUploadInProgressDescription": "Attempting to parse valid CIDR values from '{0}'.",
+ "namedNetworkUploadInProgressTitle": "Parsing '{0}'",
+ "namedNetworkUploadInvalidDescription": "'{0}' is either too large or in an invalid format.",
+ "namedNetworkUploadInvalidTitle": "'{0}' Invalid",
+ "namedNetworkUploadIpRange": "Upload",
+ "namedNetworkUploadSuccessDescription": "{0} lines analyzed. {1} in a bad format. {2} skipped.",
+ "namedNetworkUploadSuccessTitle": "Finished parsing '{0}'",
+ "namedNetworksAdd": "New named location",
+ "namedNetworksConditionHelpDescription": "Control user access based on their physical location.\n[Learn more][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
+ "namedNetworksExcludeLabel": "{0} and {1} excluded",
+ "namedNetworksHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
+ "namedNetworksIncludeLabel": "{0} included",
+ "namedNetworksNone": "No named locations found.",
+ "namedNetworksTitle": "Configure locations",
+ "namednetworkExceedingSizeErrorBladeTitle": "Error details",
+ "namednetworkExceedingSizeErrorDetailText": "Click here for more details.",
+ "namednetworkExceedingSizeErrorMessage": "You have exceeded the maximum allowed storage for named locations. Try again with a shorter list. Click here to view more details.",
+ "needMfaSecondary": "\"Require multi-factor authentication\" must be selected when \"Sign-in frequency every time\" is selected with \"Secondary authentication methods only\"",
+ "newCertName": "new cert",
+ "noAttributePermissionsError": "Insufficient privileges to create or update policy. Attribute definition reader role is required to add/edit dynamic filters.",
+ "noPolicyRowMessage": "No policies",
+ "noSPSelected": "No service principal selected",
+ "noUpdatePermissionMessage": "You don't have permissions to update these settings. Please contact your global administrator to get access.",
+ "noUserSelected": "No user selected",
+ "noneRisk": "No risk",
+ "office365Description": "These apps include Microsoft Flow, Microsoft Forms, Microsoft Teams, Office 365 Exchange Online, Office 365 SharePoint Online, Office 365 Yammer, and others.",
+ "office365InfoBox": "At least one of the apps selected is part of Office 365. We recommend setting the policy on the Office 365 app instead.",
+ "oneUserSelected": "1 user selected",
+ "onlyGlobalAdminsCanSaveThisPolicyConfig": "Only global administrators can save this policy.",
+ "or": "{0} OR {1} ",
+ "pickerDoneCommand": "Done",
+ "policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like Cloud apps, Sign-in risk, and Device platforms with Azure AD Premium",
+ "policiesBladeTitle": "Policies",
+ "policiesBladeTitleWithAppName": "Policies: {0}",
+ "policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked sign-on attribute.",
+ "policiesHitMaxLimitStatusBarMessage": "You've reached the maximum number of policies for this tenant. Delete some policies before creating more.",
+ "policyAssignmentsSection": "Assignments",
+ "policyBlockAllInfoBox": "The configured policy will block all users, so it is not supported. Review the assignments and controls. Exclude the current user {0}, if you would like to save this policy.",
+ "policyCloudAppsDisplayTextAllApp": "All apps",
+ "policyCloudAppsLabel": "Cloud apps",
+ "policyConditionClientAppDescription": "Software the user is employing to access the cloud app. For example, 'Browser'",
+ "policyConditionClientAppV2Description": "Software the user is employing to access the cloud app. For example, 'Browser'",
+ "policyConditionDevicePlatform": "Device platforms",
+ "policyConditionDevicePlatformDescription": "Platform the user is signing in from. For example, 'iOS'",
+ "policyConditionLocation": "Locations",
+ "policyConditionLocationDescription": "Location (determined using IP address range) the user is signing in from",
+ "policyConditionSigninRisk": "Sign-in risk",
+ "policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Azure AD Premium 2 license.",
+ "policyConditionUserRisk": "User risk",
+ "policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
+ "policyConditioniClientApp": "Client apps",
+ "policyConditioniClientAppV2": "Client apps (Preview)",
+ "policyControlAllowAccessDisplayedName": "Grant access",
+ "policyControlAuthenticationStrengthDisplayedName": "Require authentication strength (Preview)",
+ "policyControlBladeTitle": "Grant",
+ "policyControlBlockAccessDisplayedName": "Block access",
+ "policyControlCompliantDeviceDisplayedName": "Require device to be marked as compliant",
+ "policyControlContentDescription": "Control access enforcement to block or grant access.",
+ "policyControlInfoBallonText": "Block access or select additional requirements which need to be satisfied to allow access",
+ "policyControlMfaChallengeDisplayedName": "Require multi-factor authentication",
+ "policyControlRequireCompliantAppDisplayedName": "Require app protection policy",
+ "policyControlRequireDomainJoinedDisplayedName": "Require Hybrid Azure AD joined device",
+ "policyControlRequireMamDisplayedName": "Require approved client app",
+ "policyControlRequiredPasswordChangeDisplayedName": "Require password change",
+ "policyControlSelectAuthStrength": "Require authentication strength",
+ "policyControlsNoControlsSelected": "0 controls selected",
+ "policyControlsSection": "Access controls",
+ "policyCreatBladeTitle": "New",
+ "policyCreateButton": "Create",
+ "policyCreateFailedMessage": "Error: {0}",
+ "policyCreateFailedTitle": "Failed to create '{0}'",
+ "policyCreateInProgressTitle": "Creating '{0}'",
+ "policyCreateSuccessMessage": "Successfully created '{0}'. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
+ "policyCreateSuccessTitle": "Successfully created '{0}'",
+ "policyDeleteConfirmation": "Are you sure you want to delete '{0}'? This action cannot be undone.",
+ "policyDeleteFailTitle": "Failed to delete '{0}'",
+ "policyDeleteInProgressTitle": "Deleting '{0}'",
+ "policyDeleteSuccessTitle": "Successfully deleted '{0}'",
+ "policyEnforceLabel": "Enable policy",
+ "policyErrorCannotSetSigninRisk": "You don't have permission to save a policy with a sign-in risk condition.",
+ "policyErrorNoPermission": "You don't have permission to save policy. Contact your global admin.",
+ "policyErrorUnknown": "Something went wrong, please try again later.",
+ "policyFallbackWarningMessage": "Failure to create or update '{0}' using MS Graph resulting in a fallback to AD Graph. Please investigate the following scenario as there is most likely a bug when calling the policy endpoint for MS Graph with an incompatible condition.",
+ "policyFallbackWarningTitle": "Creating or updating '{0}' partially successful",
+ "policyNameCannotBeEmpty": "Policy name can't be empty",
+ "policyNameDevice": "Device policy",
+ "policyNameFormat": "[{0}] {1}",
+ "policyNameMam": "Mobile App Management policy",
+ "policyNameMfaLocation": "MFA and location policy",
+ "policyNamePlaceholderText": "Example: 'Device compliance app policy'",
+ "policyNameTooLongError": "Policy name is too long. Maximum 256 characters",
+ "policyOff": "Off",
+ "policyOn": "On",
+ "policyReportOnly": "Report-only",
+ "policyReviewSection": "Review",
+ "policySaveButton": "Save",
+ "policyStatusIconDescription": "Policy is Enabled",
+ "policyStatusIconEnabled": "Enabled status icon",
+ "policyTemplateName1": "Use app enforced restrictions for {0} browser access",
+ "policyTemplateName2": "Allow {0} access only on managed devices",
+ "policyTemplateName3": "Policy migrated from Continuous Access Evaluation settings",
+ "policyTriggerRiskSpecific": "Select specific risk level",
+ "policyTriggersInfoBalloonText": "Conditions which define when the policy will apply. For example, 'location'",
+ "policyTriggersNoConditionsSelected": "0 conditions selected",
+ "policyTriggersSelectorLabel": "Conditions",
+ "policyUpdateFailedMessage": "Error: {0}",
+ "policyUpdateFailedTitle": "Failed to update {0}",
+ "policyUpdateInProgressTitle": "Updating {0}",
+ "policyUpdateSuccessMessage": "Successfully updated {0}. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
+ "policyUpdateSuccessTitle": "Successfully updated {0}",
+ "primaryCol": "Primary",
+ "privateLinkLabel": "Azure AD Private Link",
+ "reportOnlyInfoBox": "Report-only mode: Policies are evaluated and logged at sign-in but do not impact users.",
+ "requireAllControlsText": "Require all the selected controls",
+ "requireCompliantDevice": "Require compliant device",
+ "requireDomainJoined": "Require domain-joined device",
+ "requireGrantReauth": "The \"sign-in frequency every time\" session control requires a \"require multi-factor authentication\" or \"require password change\" grant control when \"All cloud apps\" is selected",
+ "requireMFA": "Require multi-factor authentication ",
+ "requireMfaReauth": "The \"sign-in frequency every time\" session control requires the \"require multi-factor authentication\" grant control for \"sign-in risk\"",
+ "requireOneControlText": "Require one of the selected controls",
+ "requirePasswordChangeReauth": "The \"sign-in frequency every time\" session control requires the \"require password change\" grant control for \"user risk\"",
+ "requireRiskReauth": "The \"sign-in frequency every time\" session control requires the \"user risk\" or \"sign-in risk\" session control when \"all cloud apps\" is selected.",
+ "resetFilters": "Reset filters",
+ "sPRequired": "Service principal required",
+ "sPSelectorInfoBalloon": "User or Service Principal you want to test",
+ "saturday": "Saturday",
+ "searchTextTooLongError": "The search text is too long. Maximum 256 characters",
+ "securityDefaultsPolicyName": "Security defaults",
+ "securityDefaultsTextMessage": "Security defaults must be disabled to enable Conditional Access policy.",
+ "securityDefaultsWarningMessage": "It looks like you're about to manage your organization's security configurations. That's great! You must first disable Security defaults before enabling a Conditional Access policy.",
+ "selectDevicePlatforms": "Select device platforms",
+ "selectNamedNetworksSubtitle": "",
+ "selectNamedNetworksTitle": "Select locations",
+ "selectedSP": "Selected Service Principal",
+ "servicePrincipalDataGridAria": "List of available service principals",
+ "servicePrincipalDropDownLabel": "What does this policy apply to?",
+ "servicePrincipalInfoBox": "Some conditions are not available due to '{0}' selection in policy assignment",
+ "servicePrincipalRadioAll": "All owned service principals",
+ "servicePrincipalRadioSelect": "Select service principals",
+ "servicePrincipalSelectionsAria": "Selected service principals grid",
+ "servicePrincipalSelectorAria": "List of chosen service principals",
+ "servicePrincipalSelectorMultiple": "{0} service principals selected",
+ "servicePrincipalSelectorSingle": "1 service principal selected",
+ "servicePrincipalSpecificInc": "Specific service principals included",
+ "servicePrincipals": "Service principals",
+ "sessionControlBladeTitle": "Session",
+ "sessionControlDescriptionContent": "Control access based on session controls to enable limited experiences within specific cloud applications.",
+ "sessionControlDisableInfo": "This control only works with supported apps. Currently, Office 365, Exchange Online, and SharePoint Online are the only cloud apps that support app enforced restrictions. Click here to learn more.",
+ "sessionControlInfoBallonText": "Session controls enable limited experience within a cloud app.",
+ "sessionControls": "Session controls",
+ "sessionControlsAppEnforcedLabel": "Use app enforced restrictions",
+ "sessionControlsCasLabel": "Use Conditional Access App Control",
+ "sessionControlsSecureSignInLabel": "Require token binding",
+ "sharepointAppName": "SharePoint",
+ "signinRiskDescription": "Select the sign-in risk level this policy will apply to",
+ "signinRiskInclude": "{0} included",
+ "signinRiskReauth": "\"Sign-in risk\" condition must be selected when \"Require multi-factor authentication\" grant and \"sign-in frequency every time\" session control are selected",
+ "signinRiskTriggerDescriptionContent": "Select the sign-in risk level",
+ "singleTenantServicePrincipalInfoBallonText": "Policy only applies to single tenant service principals owned by your organization. Click here to learn more ",
+ "specificSigninRiskLevelsOption": "Select specific sign-in risk levels",
+ "specificUsersExcluded": "specific users excluded",
+ "specificUsersIncluded": "Specific users included",
+ "specificUsersIncludedAndExcluded": "Specific users excluded and included",
+ "startDatePickerLabel": "Starts",
+ "startFreeTrial": "Start a free trial",
+ "startTimePickerLabel": "Start time",
+ "sunday": "Sunday",
+ "testButton": "What If",
+ "thumbprintCol": "Thumbprint",
+ "thursday": "Thursday",
+ "timeConditionAllTimesLabel": "Any time",
+ "timeConditionIntroText": "Configure the time this policy will apply to",
+ "timeConditionSelectorInfoBallonContent": "When the user is signing in. For example, \"Wednesday 9am-5pm PST\"",
+ "timeConditionSelectorLabel": "Time (Preview)",
+ "timeConditionSpecificLabel": "Specific times",
+ "timeSelectorAllTimesText": "Any time",
+ "timeSelectorSpecificTimesText": "Specific times configured",
+ "timeZoneDropdownInfoBalloonContent": "Select a time zone that defines the time range. This policy applies to users in all time zones. For example, 'Wednesday 9am - 5pm' for one user would be 'Wednesday 10am - 6pm' for a user in a different time zone.",
+ "timeZoneDropdownLabel": "Time zone",
+ "timeZoneDropdownPlaceholderText": "Select a time zone",
+ "tooManyPoliciesDescription": "Only first 50 policies are being displayed now, click here to view all policies",
+ "tooManyPoliciesTitle": "More than 50 policies found",
+ "trustedLocationStatusIconDescription": "Location is trusted",
+ "trustedLocationStatusIconEnabled": "Trusted status icon",
+ "tuesday": "Tuesday",
+ "uploadInBadState": "Unable to upload the specified file.",
+ "upsellAppsDescription": "Require multi-factor authentication for sensitive applications all the time or only from outside the company network.",
+ "upsellAppsTitle": "Secure applications",
+ "upsellBannerText": "Get a free Premium trial to use this feature",
+ "upsellDataDescription": "Require device to be marked as compliant or Hybrid Azure AD joined to allow access to company resources.",
+ "upsellDataTitle": "Secure data",
+ "upsellDescription": "Conditional Access provides the control and protection you need to keep your corporate data secure, while giving your people an experience that allows them to do their best work from any device. For instance, you can restrict access from outside the company network or restrict access to devices which meet the compliance policies.",
+ "upsellRiskDescription": "Require multi-factor authentication for risk events detected by Microsoft's machine learning system.",
+ "upsellRiskTitle": "Protect against risk",
+ "upsellTitle": "Conditional Access",
+ "upsellWhyTitle": "Why use Conditional Access?",
+ "userAppNoneOption": "None",
+ "userNamePlaceholderText": "Enter User Name",
+ "userNotSetSeletorLabel": "0 users and groups selected",
+ "userOnlySelectionBladeExcludeDescription": "Select the users to exempt from the policy",
+ "userOrGroupSelectionCountDiffBannerText": "{0} configured in this policy have been deleted from the directory, but this doesn't affect the other users and groups in the policy. The next time you update the policy, the deleted users and/or groups will be automatically removed.",
+ "userOrSPNotSetSelectorLabel": "0 users or workload identities selected",
+ "userOrSPSelectionBladeTitle": "Users or workload identities",
+ "userOrSPSelectorInfoBallonText": "Identities in the directory that the policy applies to, including users, groups, and service principals",
+ "userRequired": "User Required",
+ "userRiskErrorBox": "\"User risk\" condition must be selected when \"Require password change\" grant is selected",
+ "userRiskReauth": "\"User risk\" condition and not \"Sign-in risk\" must be selected when \"Require password change\" grant and \"Sign-in frequency every time\" session control are selected",
+ "userSPRequired": "User or Service principal required",
+ "userSPSelectorTitle": "User or Workload identity",
+ "userSelectionBladeAllUsersAndGroups": "All users and groups",
+ "userSelectionBladeExcludeDescription": "Select the users and groups to exempt from the policy",
+ "userSelectionBladeExcludeTabTitle": "Exclude",
+ "userSelectionBladeExcludedSelectorTitle": "Select excluded users",
+ "userSelectionBladeIncludeDescription": "Select the users this policy will apply to",
+ "userSelectionBladeIncludeTabTitle": "Include",
+ "userSelectionBladeIncludedSelectorTitle": "Select",
+ "userSelectionBladeSelectUsers": "Select users",
+ "userSelectionBladeSelectedUsers": "Select users and groups",
+ "userSelectionBladeTitle": "Users and groups",
+ "userSelectorBladeTitle": "Users",
+ "userSelectorExcluded": "{0} excluded",
+ "userSelectorGroupPlural": "{0} groups",
+ "userSelectorGroupSingular": "1 group",
+ "userSelectorIncluded": "{0} included",
+ "userSelectorInfoBallonText": "Users and groups in the directory that the policy applies to. For example, 'Pilot group'",
+ "userSelectorSelected": "{0} selected",
+ "userSelectorTitle": "User",
+ "userSelectorUserAndGroup": "{0}, {1}",
+ "userSelectorUserPlural": "{0} users",
+ "userSelectorUserSingular": "1 user",
+ "userSelectorWithExclusion": "{0} and {1}",
+ "usersGroupsLabel": "Users and groups",
+ "viewApprovedAppsText": "See list of approved client apps",
+ "viewCompliantAppsText": "See list of policy protected client apps",
+ "vpnBladeTitle": "VPN connectivity",
+ "vpnCertCreateFailedMessage": "Error: {0}",
+ "vpnCertCreateFailedTitle": "Failed to create {0}",
+ "vpnCertCreateInProgressTitle": "Creating {0}",
+ "vpnCertCreateSuccessMessage": "Successfully created {0}.",
+ "vpnCertCreateSuccessTitle": "Successfully created {0}",
+ "vpnCertNoRowsMessage": "No VPN certificates found",
+ "vpnCertUpdateFailedMessage": "Error: {0}",
+ "vpnCertUpdateFailedTitle": "Failed to update {0}",
+ "vpnCertUpdateInProgressTitle": "Updating {0}",
+ "vpnCertUpdateSuccessMessage": "Successfully updated {0}.",
+ "vpnCertUpdateSuccessTitle": "Successfully updated {0}",
+ "vpnFeatureInfo": "For more information on VPN connectivity and Conditional Access, click here.",
+ "vpnFeatureWarning": "Once a VPN certificate is created in the Azure portal, Azure AD will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
+ "vpnMenuText": "VPN connectivity",
+ "vpncertDropdownDefaultOption": "Duration",
+ "vpncertDropdownInfoBalloonContent": "Select the duration for the cert you want to create",
+ "vpncertDropdownLabel": "Select duration",
+ "vpncertDropdownOneyearOption": "1 year",
+ "vpncertDropdownThreeyearOption": "3 years",
+ "vpncertDropdownTwoyearOption": "2 years",
+ "wednesday": "Wednesday",
+ "whatIfAppEnforcedControl": "Use app enforced restrictions",
+ "whatIfBladeDescription": "Test the impact of Conditional Access on a user when signing in under certain conditions.",
+ "whatIfBladeTitle": "What If",
+ "whatIfClassicPoliciesWarning": "Classic policies are not evaluated by this tool.",
+ "whatIfClientAppInfo": "The client app the user is signing in from. For example, 'Browser'.",
+ "whatIfCountry": "Country",
+ "whatIfCountryInfo": "The country the user is signing in from.",
+ "whatIfDevicePlatformInfo": "The device platform the user is signing in from.",
+ "whatIfDeviceStateInfo": "The device state the user is signing in from",
+ "whatIfEnterIpAddress": "Enter IP address (ex: 40.77.182.32)",
+ "whatIfErrorInvalidIpAddress": "An invalid IP address was specified.",
+ "whatIfEvaResultApplication": "Cloud apps",
+ "whatIfEvaResultClientApps": "Client app",
+ "whatIfEvaResultDevicePlatform": "Device platform",
+ "whatIfEvaResultEmptyPolicy": "Empty policy",
+ "whatIfEvaResultInvalidCondition": "Invalid condition",
+ "whatIfEvaResultInvalidPolicy": "Invalid policy",
+ "whatIfEvaResultLocation": "Location",
+ "whatIfEvaResultNotEnoughInformation": "Not enough information",
+ "whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
+ "whatIfEvaResultSignInRisk": "Sign-in risk",
+ "whatIfEvaResultUsers": "Users and groups",
+ "whatIfIpAddress": "IP address",
+ "whatIfIpAddressInfo": "IP address the user is signing in from.",
+ "whatIfIpCountryInfoBoxText": "If using an IP address or Country, both fields will be required and should correctly map together.",
+ "whatIfPolicyAppliesTab": "Policies that will apply",
+ "whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
+ "whatIfReasons": "Reasons why this policy will not apply",
+ "whatIfSelectClientApp": "Select a client app...",
+ "whatIfSelectCountry": "Select country...",
+ "whatIfSelectDevicePlatform": "Select device platform...",
+ "whatIfSelectPrivateLink": "Select private link...",
+ "whatIfSelectServicePrincipalRisk": "Select service principal risk...",
+ "whatIfSelectSignInRisk": "Select sign-in risk...",
+ "whatIfSelectType": "Select identity type",
+ "whatIfSelectUserRisk": "Select user risk...",
+ "whatIfServicePrincipalRiskInfo": "The risk level associated with the service principal",
+ "whatIfSignInRisk": "Sign-in risk",
+ "whatIfSignInRiskInfo": "The risk level associated with the sign-in",
+ "whatIfUnknownAreas": "Unknown Areas",
+ "whatIfUserPickerLabel": "Selected user",
+ "whatIfUserPickerNoRowsLabel": "No user or service principal selected",
+ "whatIfUserRiskInfo": "The risk level associated with the user",
+ "whatIfUserSelectorInfo": "User in the directory that you want to test",
+ "windows365InfoBox": "Selecting Windows 365 will affect connections to Cloud PCs and Azure Virtual Desktop session hosts. Click here to learn more.",
+ "windowsDisplayName": "Windows",
+ "windowsPhoneDisplayName": "Windows Phone",
+ "workloadIdentities": "Workload identities (preview)",
+ "workloadIdentity": "Workload identity"
+ },
+ "AppResources": {
+ "AppSettingsUx": {
+ "assignmentFilterColumnHeader": "Filter",
+ "assignmentFilterTypeColumnHeader": "Filter mode",
+ "assignmentToast": "End user notifications",
+ "assignmentTypeTableHeader": "ASSIGNMENT TYPE",
+ "deadlineTimeColumnLabel": "Installation deadline",
+ "deliveryOptimizationPriorityHeader": "Delivery optimization priority",
+ "groupTableHeader": "Group",
+ "installContextLabel": "Install Context",
+ "isRemovable": "Install as removable",
+ "licenseTypeLabel": "License type",
+ "modeTableHeader": "Group mode",
+ "policySet": "Policy Set",
+ "restartGracePeriodHeader": "Restart grace period",
+ "startTimeColumnLabel": "Availability",
+ "tracks": "Tracks",
+ "uninstallOnRemoval": "Uninstall on device removal",
+ "updateMode": "Update Priority",
+ "vPN": "VPN"
+ },
+ "AppType": {
+ "aADWebApp": "AAD web app",
+ "androidEnterpriseSystemApp": "Android Enterprise system app",
+ "androidForWorkApp": "Managed Google Play store app",
+ "androidLobApp": "Android line-of-business app",
+ "androidStoreApp": "Android store app",
+ "builtInAndroid": "Built-In Android app",
+ "builtInApp": "Built-In app",
+ "builtInIos": "Built-In iOS app",
+ "iosLobApp": "iOS line-of-business app",
+ "iosStoreApp": "iOS store app",
+ "iosVppApp": "iOS volume purchase program app",
+ "lineOfBusinessApp": "Line-of-business app",
+ "macOSDmgApp": "macOS app (DMG)",
+ "macOSEdgeApp": "Microsoft Edge (macOS)",
+ "macOSLobApp": "macOS line-of-business app",
+ "macOSMdatpApp": "Microsoft Defender ATP (macOS)",
+ "macOSOfficeSuiteApp": "macOS Office Suite",
+ "macOsVppApp": "macOS volume purchase program app",
+ "managedAndroidLobApp": "Managed Android line-of-business app",
+ "managedAndroidStoreApp": "Managed Android store app",
+ "managedGooglePlayApp": "Managed Google Play store app",
+ "managedGooglePlayPrivateApp": "Managed Google Play private app",
+ "managedGooglePlayWebApp": "Managed Google Play web link",
+ "managedIosLobApp": "Managed iOS line-of-business app",
+ "managedIosStoreApp": "Managed iOS store app",
+ "microsoftStoreForBusinessApp": "Microsoft Store for Business app",
+ "microsoftStoreForBusinessReleaseManagedApp": "Microsoft Store for Business",
+ "officeAddIn": "Office add-in",
+ "officeSuiteApp": "Microsoft 365 Apps (Windows 10 and later)",
+ "sharePointApp": "SharePoint app",
+ "teamsApp": "Teams app",
+ "webApp": "Web link",
+ "windowsAppXLobApp": "Windows AppX line-of-business app",
+ "windowsClassicApp": "Windows app (Win32)",
+ "windowsEdgeApp": "Microsoft Edge (Windows 10 and later)",
+ "windowsMobileMsiLobApp": "Windows MSI line-of-business app",
+ "windowsPhone81AppXBundleLobApp": "Windows Phone 8.1 AppX line-of-business app",
+ "windowsPhone81AppXLobApp": "Windows Phone 8.1 AppX line-of-business app",
+ "windowsPhone81StoreApp": "Windows Phone 8.1 store app",
+ "windowsPhoneXapLobApp": "Windows Phone XAP line-of-business app",
+ "windowsStoreApp": "Microsoft Store app",
+ "windowsUniversalAppXLobApp": "Windows Universal AppX line-of-business app",
+ "windowsUniversalLobApp": "Windows Universal line-of-business app"
+ },
+ "AppTypePlatform": {
+ "android": "Android",
+ "ios": "iOS",
+ "macOs": "macOS",
+ "web": "Web",
+ "windows": "Windows"
+ },
+ "AssignmentAction": {
+ "exclude": "Excluded",
+ "include": "Included",
+ "includeAllDevicesVirtualGroup": "Included",
+ "includeAllUsersVirtualGroup": "Included"
+ },
+ "AssignmentToast": {
+ "hideAll": "Hide all toast notifications",
+ "showAll": "Show all toast notifications",
+ "showReboot": "Show toast notifications for computer restarts"
+ },
+ "DeliveryOptimizationPriority": {
+ "backgroundNormal": "Background",
+ "displayText": "Content download in {0}",
+ "foreground": "Foreground",
+ "header": "Delivery optimization priority"
+ },
+ "DeviceRestartBehaviorOptions": {
+ "allow": "App install may force a device restart",
+ "basedOnReturnCode": "Determine behavior based on return codes",
+ "force": "Intune will force a mandatory device restart",
+ "suppress": "No specific action"
+ },
+ "FilterType": {
+ "exclude": "Exclude",
+ "include": "Include",
+ "none": "None"
+ },
+ "InstallIntent": {
+ "available": "Available for enrolled devices",
+ "availableWithoutEnrollment": "Available with or without enrollment",
+ "notApplicable": "Not applicable",
+ "required": "Required",
+ "uninstall": "Uninstall"
+ },
+ "SettingType": {
+ "assignmentType": "Assignment type",
+ "deviceLicensing": "License type",
+ "installContext": "Uninstall on device removal",
+ "toastSettings": "End user notifications",
+ "vpnConfiguration": "VPN"
+ },
+ "UpdateMode": {
+ "default": "Default",
+ "postponed": "Postponed",
+ "priority": "High Priority"
+ }
+ },
+ "WindowsEnrollment": {
+ "coManagementAuthorityDesc": "Configure co-management settings for Configuration Manager integration",
+ "coManagementAuthorityTitle": "Co-management Settings ",
+ "deploymentProfiles": "Windows Autopilot deployment profiles",
+ "description": "Learn about the seven different ways a Windows 10/11 PC can be enrolled into Intune by users or admins.",
+ "descriptionLabel": "Windows enrollment methods",
+ "enrollmentStatusPage": "Enrollment Status Page"
+ },
+ "Win32Program": {
+ "DeviceRestartBehaviorOptions": {
+ "allow": "App install may force a device restart",
+ "basedOnReturnCode": "Determine behavior based on return codes",
+ "force": "Intune will force a mandatory device restart",
+ "suppress": "No specific action"
+ },
+ "RunAsAccountOptions": {
+ "system": "System",
+ "user": "User"
+ },
+ "bladeTitle": "Program",
+ "deviceRestartBehavior": "Device restart behavior",
+ "deviceRestartBehaviorTooltip": "Select the device restart behavior after the app has successfully installed. Select 'Determine behavior based on return codes' to restart the device based on the return codes configuration settings. Select 'No specific action' to suppress device restarts during the app install for MSI-based apps. Select 'App install may force a device restart' to allow the app install to complete without suppressing restarts. Select 'Intune will force a mandatory device restart' to always restart the device after successful app installation.",
+ "header": "Specify the commands to install and uninstall this app:",
+ "installCommand": "Install command",
+ "installCommandMaxLengthErrorMessage": "Install command cannot exceed the maximum allowed length of 1024 characters.",
+ "installCommandTooltip": "The complete installation command line used to install this app.",
+ "runAs32Bit": "Run install and uninstall commands in a 32-bit process on 64-bit clients",
+ "runAs32BitTooltip": "Select 'Yes' to install and uninstall the app in a 32-bit process on 64-bit clients. Select 'No' (default) to install and uninstall the app in a 64-bit process on 64-bit clients. 32-bit clients will always use a 32-bit process.",
+ "runAsAccount": "Install behavior",
+ "runAsAccountTooltip": "Select 'System' to install this app for all users if supported. Select 'User' to install this app for the logged-in user on the device. For dual-purpose MSI apps, changes will prevent updates and uninstalls from successfully completing until the value applied to the device at the time of the original install is restored.",
+ "selectorLabel": "Program",
+ "uninstallCommand": "Uninstall command",
+ "uninstallCommandTooltip": "The complete uninstallation command line used to uninstall this app."
+ },
+ "CategoryDescription": {
+ "androidGeneralApplicationRestrictions": "Use these settings to stay informed about which users install apps that are not approved for use in your company. Select the type of restricted app list:
\n Prohibited apps - A list of apps that you want to be informed about when users install them.
\n Approved apps - A list of apps that are approved for use in your company. When users install an app that is not in this list, you will be informed.
\n ",
+ "androidZebraMxZebraMx": "Configure Zebra devices by uploading a MX profile in XML format.",
+ "iosDeviceFeaturesAirprint": "Use these settings to configure iOS devices to automatically connect to AirPrint compatible printers on your network. You'll need the IP address and resource path of your printers.",
+ "iosDeviceFeaturesExtensibleSingleSignOn": "Configure an app extension that enables single sign-on (SSO) for devices running iOS 13.0 or later.",
+ "iosDeviceFeaturesHomeScreenLayout": "Configure the layout for the dock and Home Screens on iOS devices. Certain devices may have limits to how many items can be displayed.",
+ "iosDeviceFeaturesIOSWallpaper": "Display an image that will appear on the Home Screen and/or the lock screen of iOS devices.\n To display a unique image in each location, create one profile with the lock screen image, and one with the Home Screen image.\n Then assign both profiles to your users.\n
\n \n - Max file size: 750 KB
\n - File type: PNG, JPG or JPEG
\n
\n ",
+ "iosDeviceFeaturesNotifications": "Specify notification settings for apps. Supports iOS 9.3 and later.",
+ "iosDeviceFeaturesSharedDevice": "Specify optional text displayed on the locked screen. It is supported on iOS 9.3 and later. Learn More",
+ "iosGeneralApplicationRestrictions": "Use these settings to stay informed about which users install apps that are not approved for use in your company. Select the type of restricted app list:
\n Prohibited apps - A list of apps that you want to be informed about when users install them.
\n Approved apps - A list of apps that are approved for use in your company. When users install an app that is not in this list, you will be informed.
\n ",
+ "iosGeneralApplicationVisibility": "Use the show apps list to specify the iOS apps that user can view or launch. Use the hidden apps list to specify the iOS apps that user cannot view or launch.",
+ "iosGeneralAutonomousSingleAppMode": "Apps you add to this list and assign to a device can lock the device to run only that app once launched, or lock the device while a certain action is running (for example taking a test). Once the action is complete, or you remove the restriction, the device returns to its normal state.",
+ "iosGeneralKiosk": "Kiosk mode locks various settings into a device, or specifies a single app that can be run on a device. This can be useful in environments like a retail store where you want a device to run only a single demo app.",
+ "macDeviceFeaturesAirprint": "Use these settings to configure macOS devices to automatically connect to AirPrint compatible printers on your network. You'll need the IP address and resource path of your printers.",
+ "macDeviceFeaturesAssociatedDomains": "Configure associated domains to share data and sign-in credentials between your org’s apps and websites. This profile can be applied to devices running macOS 10.15 or later.",
+ "macDeviceFeaturesExtensibleSingleSignOn": "Configure an app extension that enables single sign-on (SSO) for devices running macOS 10.15 or later.",
+ "macDeviceFeaturesLoginItems": "Choose which apps, files, and folders open when users log in to their devices. If you don't want users to change how the selected apps open, you can hide the app from the user configuration.",
+ "macDeviceFeaturesLoginWindow": "Configure the appearance of the macOS login screen and the functions that are available to users before and after they log in.",
+ "macExtensionsKernelExtensions": "Use these settings to configure kernel extension policy on macOS devices running 10.13.2 or later.",
+ "macGeneralDomains": "Emails that the user sends or receives which don't match the domains you specify here will be marked as untrusted.",
+ "windows10EndpointProtectionApplicationGuard": "While using Microsoft Edge, Microsoft Defender Application Guard protects your environment from sites that haven’t been defined as trusted by your organization. When users visit sites that aren’t listed in your isolated network boundary, the sites will be opened in a virtual browsing session in Hyper-V. Trusted sites are defined by a network boundary, which can be configured in Device Configuration. Note this feature is only available for devices running 64-bit Windows 10 or later.",
+ "windows10EndpointProtectionCredentialGuard": "Enabling Credential Guard will enable the following required settings:\n
\n \n - Enable Virtualization-based Security: Turns on virtualization-based security (VBS) at next reboot. Virtualization-based security uses the Windows Hypervisor to provide support for security services.
\n
\n - Secure Boot with Direct Memory Access: Turns on VBS with Secure Boot and direct memory access (DMA).
\n
\n ",
+ "windows10EndpointProtectionDeviceGuard": "Choose additional apps that either need to be audited by, or can be trusted to run by Microsoft Defender Application Control. Windows components and all apps from Windows store are automatically trusted to run.
\n Applications will not be blocked when running in “audit only” mode. “Audit only” mode logs all events in local client logs.\n ",
+ "windows10GeneralPrivacyPerApp": "Add apps that should have a different privacy behavior from what you defined in “Default privacy”.",
+ "windows10NetworkBoundaryNetworkBoundary": "The network boundary is the list of enterprise resources, such as cloud-hosted domain and IP address ranges for computers that are on the enterprise network. Define network boundaries to apply policies to protect data that resides in these locations.",
+ "windowsHealthMonitoring": "Configure the Windows health monitoring policy.",
+ "windowsPhoneGeneralApplicationRestrictions": "Windows Phone can block users from installing or launching apps specified in the prohibited apps list, or apps not specified in the approved apps list. All managed apps must be added to the approved list."
+ },
"Inputs": {
"accountDomain": "Account domain",
"accountDomainHint": "e.g. contosodomain",
@@ -9962,6 +9858,7 @@
"displayNameLabel": "Name",
"displayVersionHint": "Enter the app version",
"displayVersionLabel": "App Version",
+ "displayVersionLengthCheck": "The length of the display version should be a maximum of 130 characters",
"eBookCategoryNameLabel": "Default name",
"emailAccount": "Email account name",
"emailAccountHint": "e.g. Corporate Email",
@@ -10066,385 +9963,51 @@
"xmlFormatInvalid": "XML policy format is invalid.",
"xmlTooLarge": "Input size must be less than 1 MB."
},
- "Tooltips": {
- "PolicySettings": {
- "TouchId1": {
- "android": "On Android, you can allow using fingerprint identification instead of a PIN. Users are prompted to provide their fingerprints when they access this app with their work accounts.",
- "iOS": "On iOS/iPadOS devices, you can allow using fingerprint identification instead of a PIN. Users are prompted to provide their fingerprints when they access this app with their work accounts.",
- "mac": "On Mac devices, you can allow using fingerprint identification instead of a PIN. Users are prompted to provide their fingerprints when they access this app with their work accounts."
- },
- "appSharingFromLevel1": "Select one of the following options to specify the apps that this app can receive data from:",
- "appSharingFromLevel2": "{0}: Only allow receiving data in org documents or accounts from other policy managed apps",
- "appSharingFromLevel3": "{0}: Allow receiving data in org documents or accounts from any app",
- "appSharingFromLevel4": "{0}: Do not allow receiving data in org documents or accounts from any app",
- "appSharingFromLevel5": "{0}: Allow data transfer from any app and treat all incoming data without an user identity as Org data.",
- "appSharingToLevel1": "Select one of the following options to specify the apps that this app can send data to:",
- "appSharingToLevel2": "{0}: Only allow sending org data to other policy managed apps",
- "appSharingToLevel3": "{0}: Allow sending org data to any app",
- "appSharingToLevel4": "{0}: Do not allow sending org data to any app",
- "appSharingToLevel5": "{0}: Only allow transfer only to other policy managed apps and file transfer to other MDM managed apps on enrolled devices",
- "appSharingToLevel6": "{0}: Allow transfer only to other policy managed apps and filter OS Open-in/Share dialogs to only display policy managed apps",
- "conditionalEncryption1": "Select {0} to disable app encryption for internal app storage when device encryption is detected on an enrolled device.",
- "conditionalEncryption2": "Note: Intune can only detect device enrollment with Intune MDM. External app storage will still be encrypted to ensure data cannot be accessed by unmanaged applications.",
- "contactSyncMac": "If disabled, apps cannot save contacts to the native address book.",
- "contactsSync": "Choose Block to prevent policy managed apps from saving data to the device's native apps (like Contacts, Calendar and widgets), or to prevent the use of add-ins within the policy managed apps. If you choose Allow, the policy managed app can save data to the native apps or use add-ins, if those features are supported and enabled within the policy managed app.
Apps may provide additional configuration capability with app configuration policies. For more information, see the app's documentation.",
- "encryptionAndroid1": "For apps that are associated with an Intune mobile application management policy, encryption is provided by Microsoft. Data is encrypted synchronously during file I/O operations according to the setting in the mobile application management policy. Managed apps on Android use AES-128 encryption in CBC mode utilizing the platform cryptography libraries. The encryption method is not FIPS 140-2 compliant. SHA-256 encryption is supported as an explicit instruction using the SigAlg parameter and will only work on devices 4.2 and above. Content on the device storage is always be encrypted.",
- "encryptionAndroid2": "When you require encryption in your app policy, the end-user is required to setup and use a PIN to access their device. If there is not a PIN set up for device access, the apps will not launch and the end-user will instead see a message, which says, “Your company has required that you must first enable a device PIN to access this application.\"",
- "encryptionMac1": "For apps that are associated with an Intune mobile application management policy, encryption is provided by Microsoft. Data is encrypted synchronously during file I/O operations according to the setting in the mobile application management policy. Managed apps on Mac use AES-128 encryption in CBC mode utilizing the platform cryptography libraries. The encryption method is not FIPS 140-2 compliant. SHA-256 encryption is supported as an explicit instruction using the SigAlg parameter and will only work on devices 4.2 and above. Content on the device storage is always be encrypted.",
- "faceId1": "Where applicable, you can allow the use of face identification instead of PIN. Users are prompted to provide face identification when they access this app with their work accounts.",
- "faceId2": "Select Yes to allow face identification instead of a PIN for app access.",
- "managementLevelsAndroid1": "Use this option to specify whether this policy applies to Android device administrator devices, Android Enterprise devices, or unmanaged devices.",
- "managementLevelsAndroid2": "{0}: Unmanaged devices are devices where Intune MDM management has not been detected. This includes 3rd party MDM vendors.",
- "managementLevelsAndroid3": "{0}: Intune-managed devices using the Android Device Administration API.",
- "managementLevelsAndroid4": "{0}: Intune-managed devices using Android Enterprise Work Profiles or Android Enterprise Full Device Management.",
- "managementLevelsIos1": "Use this option to specify whether this policy applies to MDM managed devices or unmanaged devices.",
- "managementLevelsIos2": "{0}: Unmanaged devices are devices where Intune MDM management has not been detected. This includes 3rd party MDM vendors.",
- "managementLevelsIos3": "{0}: Managed devices are managed by Intune MDM.",
- "minAppVersion": "Define the required minimum App version number that a user should have to gain secure access to the app.",
- "minAppVersionWarning": "Define the recommended minimum App version number that a user should have for secure access to the app.",
- "minOsVersion": "Define the required minimum OS version number that a user should have to gain secure access to the app.",
- "minOsVersionWarning": "Define the recommended minimum OS version number that a user should have to gain secure access to the app.",
- "minPatchVersion": "Define the oldest required Android security patch level a user can have to gain secure access to the app.",
- "minPatchVersionWarning": "Define the oldest recommended Android security patch level a user can have for secure access to the app.",
- "minSdkVersion": "Define the required minimum Intune Application Protection Policy SDK version that a user should have to gain secure access to the app.",
- "requireAppPinDefault": "Select Yes to disable the app PIN when a device lock is detected on an enrolled device.
",
- "targetAllApps1": "Use this option to target your policy to apps on devices of any management state.",
- "targetAllApps2": "During policy conflict resolution this setting will be superseded if a user has policy targeted for a specific management state.",
- "touchId2": "Select {0} to require fingerprint identity instead of a PIN for app access."
- },
- "Tap": {
- "pinResetAfterNumberOfDays": "Specify the number of days that must pass before the user must reset the PIN.",
- "previousPinBlockCount": "This setting specifies the number of previous PINs that Intune will maintain. Any new PINs must be different from those that Intune is maintaining."
+ "WindowsFeatureUpdate": {
+ "EndOFSupportStatus": {
+ "notSupported": "Not supported",
+ "supportEnding": "Support ending",
+ "supported": "Supported"
+ }
},
- "WipPolicySettings": {
- "25": "",
- "allowWindowsSearch": "This will allow Windows Search to continue to search through encrypted data.",
- "authoritativeIpRanges": "Enable this setting if you want to override Windows auto-detection of IP ranges.",
- "authoritativeProxyServers": "Enable this setting if you want to override Windows auto-detection of proxy servers.",
- "checkInput": "Check input for validity",
- "dataRecoveryCert": "A recovery certificate is a special Encrypting File System (EFS) certificate you can use to recover encrypted files if your encryption key is lost or damaged. You need to create the recovery certificate, and specify it here. More information is here",
- "enterpriseCloudResources": "Specify cloud resources to be treated as corporate and be protected with Windows Information Protection policy. Multiple resources can be specified by separating individual entries with the '|' character.
If you have a proxy configured in your company, then you can specify the proxy through which traffic to cloud resources you specified will be routed.
URL[,Proxy]|URL[,Proxy]
Without proxy: contoso.sharepoint.com|contoso.visualstudio.com
With proxy: contoso.sharepoint.com,proxy.contoso.com|contoso.visualstudio.com,proxy.contoso.com
",
- "enterpriseIPv4Ranges": "Specify the IPv4 ranges that form your corporate network. These are used in conjunction with the Enterprise Network Domain Names that you specify to define your corporate network boundary.
This setting is required to have Windows Information Protection enabled.
Multiple ranges can be specified by separating individual entries with a comma.
For example: 3.4.0.1-3.4.255.255,192.168.1.1-192.168.255.255
",
- "enterpriseIPv6Ranges": "Specify the IPv6 ranges that form your corporate network. These are used in conjunction with the Enterprise Network Domain Names that you specify to define your corporate network boundary.
Multiple ranges can be specified by separating individual entries with a comma.
For example: 2001:4898:dc05::-2001:4898:dc05:ffff:ffff:ffff:ffff:ffff,2a01:110::-2a01:110:7fff:ffff:ffff:ffff:ffff:ffff
",
- "enterpriseInternalProxyServers": "If you have a proxy configured in your company, then you can specify the proxy through which traffic to cloud resources specified in the Enterprise Cloud Resources settings are to be routed.
Multiple values can be specified by separating individual entries with a semi-colon.
For example: contoso.internalproxy1.com;contoso.internalproxy2.com
",
- "enterpriseNetworkDomainNames": "Specify the DNS names that form your corporate network. These are used in conjunction with the IP ranges that you specify to define your corporate network boundary. Multiple values can be specified by separating individual entries with a comma.
This setting is required to have Windows Information Protection enabled.
For example: corp.contoso.com,region.contoso.com
",
- "enterpriseProtectedDomainNames": "Specify the DNS names that form your corporate network. These are used in conjunction with the IP ranges that you specify to define your corporate network boundary. Multiple values can be specified by separating individual entries with a '|'.
This setting is required to have Windows Information Protection enabled.
For example: corp.contoso.com|region.contoso.com
",
- "enterpriseProxyServers": "If you have external facing proxies in your corporate network, specify them here. When specifying a proxy server address, you should also specify the port through which traffic should be allowed and protected through Windows Information Protection.
Note: This list must not include servers in your Enterprise Internal Proxy Server list. Multiple values can be specified by separating individual entries with a semi-colon.
For example: proxy.contoso.com:80;proxy2.contoso.com:80
",
- "maxInactivityTime1": "Specifies the maximum amount of time (in minutes) allowed after the device is idle that will cause the device to become PIN or password locked. Users can select any existing timeout value less than the specified maximum time in the Settings app. Note the Lumia 950 and 950XL have a maximum timeout value of 5 minutes, regardless of the value set by this policy.",
- "maxInactivityTime2": "0 (default) - No timeout is defined. The default of '0' is interpreted as 'No timeout is defined.'",
- "maxPasswordAttempts1": "This policy has different behaviors on the mobile device and desktop.",
- "maxPasswordAttempts2": "On a mobile device, when the user reaches the value set by this policy, then the device is wiped.",
- "maxPasswordAttempts3": "On a desktop, when the user reaches the value set by this policy, it is not wiped.Instead, the desktop is put on BitLocker recovery mode, which makes the data inaccessible but recoverable.If BitLocker is not enabled, then the policy cannot be enforced.",
- "maxPasswordAttempts4": "Prior to reaching the failed attempts limit, the user is sent to the lock screen and warned that more failed attempts will lock their computer.When the user reaches the limit, the device automatically reboots and shows the BitLocker recovery page.This page prompts the user for the BitLocker recovery key.",
- "maxPasswordAttempts5": "0 (default) - The device is never wiped after an incorrect PIN or password is entered.",
- "maxPasswordAttempts6": "Most secure value is 0 if all policy values = 0; otherwise, Min policy value is the most secure value.",
- "mdmDiscoveryUrl": "Specify the URL for the MDM enrollment endpoint that users who enroll to MDM will use. By default, this is specified for Intune.",
- "minimumPinLength1": "Integer value that sets the minimum number of characters required for the PIN. Default value is 4. The lowest number you can configure for this policy setting is 4. The largest number you can configure must be less than the number configured in the Maximum PIN length policy setting or the number 127, whichever is the lowest.",
- "minimumPinLength2": "If you configure this policy setting, the PIN length must be greater than or equal to this number. If you disable or do not configure this policy setting, the PIN length must be greater than or equal to 4.",
- "name": "The name of this network boundary",
- "neutralResources": "If you have authentication redirection endpoints in your company, specify those here. The locations specified here are considered to be either personal or corporate depending on the context of the connection prior to the redirection.
Multiple values can be specified by separating individual entries with a comma.
For example: sts.contoso.com,sts.contoso2.com
",
- "passportForWork1": "Value that sets Windows Hello for Business as a method for signing into Windows.",
- "passportForWork2": "Default value is true.If you set this policy to false, the user cannot provision Windows Hello for Business except on Azure Active Directory joined mobile phones where provisioning is required.",
- "pinExpiration": "The largest number you can configure for this policy setting is 730. The lowest number you can configure for this policy setting is 0. If this policy is set to 0, then the user’s PIN will never expire.",
- "pinHistory1": "The largest number you can configure for this policy setting is 50. The lowest number you can configure for this policy setting is 0. If this policy is set to 0, then storage of previous PINs is not required.",
- "pinHistory2": "The current PIN of the user is included in the set of PINs associated with the user account. PIN history is not preserved through a PIN reset.",
- "protectUnderLock": "Protects app content while the device is in a locked state.",
- "protectionModeBlock": "Block: Blocks enterprise data from leaving protected apps.
",
- "protectionModeOff": "Off: User is free to relocate data off of protected apps. No actions are logged.
",
- "protectionModeOverride": "Allow overrides: User is prompted when attempting to relocate data from a protected to a non-protected app. If they choose to override this prompt, the action will be logged.
",
- "protectionModeSilent": "Silent: User is free to relocate data off of protected apps. These actions are logged.
",
- "required": "Required",
- "revokeOnMdmHandoff": "Added in Windows 10, version 1703. This policy controls whether to revoke the WIP keys when a device upgrades from MAM to MDM. If set to “Off”, the keys will not be revoked and the user will continue to have access to protected files after upgrade. This is recommended if the MDM service is configured with the same WIP EnterpriseID as the MAM service.",
- "revokeOnUnenroll": "This will cause encryption keys to be revoked when a device un-enrolls from this policy.",
- "rmsTemplateForEdp": "TemplateID GUID to use for RMS encryption. The Azure RMS template allows the IT admin to configure the details about who has access to RMS-protected file and how long they have access.",
- "showWipIcon": "This will let the user know when they are acting in a corporate context, by overlaying an icon.",
- "useRmsForWip": "Specifies whether to allow Azure RMS encryption for WIP."
+ "SecurityTemplate": {
+ "aSR": "Attack surface reduction",
+ "accountProtection": "Account protection",
+ "allDevices": "All devices",
+ "antivirus": "Antivirus",
+ "antivirusReporting": "Antivirus Reporting (Preview)",
+ "conditionalAccess": "Conditional access",
+ "deviceCompliance": "Device compliance",
+ "diskEncryption": "Disk encryption",
+ "eDR": "Endpoint detection and response",
+ "firewall": "Firewall",
+ "helpSupport": "Help and support",
+ "setup": "Setup",
+ "wdapt": "Microsoft Defender for Endpoint"
+ },
+ "Win32ReturnCodes": {
+ "CodeTypes": {
+ "failed": "Failed",
+ "hardReboot": "Hard reboot",
+ "retry": "Retry",
+ "softReboot": "Soft reboot",
+ "success": "Success"
},
- "requireAppPin": "Select Yes to disable the app PIN when a device lock is detected on an enrolled device.
Note: Intune cannot detect device enrollment with a third-party EMM solution on iOS/iPadOS.
"
- },
- "AppInfoBalloonText": {
- "Certificate": {
- "customSubjectName": "CN={{UserName}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US\nor\nCN={{AAD_Device_ID}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US",
- "keySize": "Select the number of bits contained in the key.",
- "keyUsage": "Specify the cryptographic action that is required to exchange the certificate’s public key.",
- "renewalThreshold": "Enter the percentage (between 1 and 99 percent) of remaining certificate lifetime that is allowed before a device can request renewal of the certificate. The recommended amount in Intune is 20%. (1-99)",
- "rootCert": "Choose a previously configured and assigned root CA certificate profile. The CA certificate must match the root certificate of the CA that is issuing the certificate for this profile (the one you are currently configuring).",
- "scepServerUrl": "Enter a URL for the NDES Server that issues certificates through SCEP (Must be HTTPS). e.g. https://contoso.com/certsrv/mscep/mscep.dll",
- "scepServerUrls": "Add one or more URLs for the NDES Server that issues certificates through SCEP (Must be HTTPS). e.g. https://contoso.com/certsrv/mscep/mscep.dll",
- "subjectAlternativeName": "Subject alternative name",
- "subjectNameFormat": "Subject name format",
- "validityPeriod": "The amount of time remaining before the certificate expires. Enter a value that is equal to or lower than the validity period shown in the certificate template. Default is set at one year."
- },
- "appInstallContext": "This specifies the install context to be associated with this app. For dual mode apps, select the desired context for this app. For all other apps, this is pre-selected based on the package and cannot be modified.",
- "autoUpdateMode": "Configure the update priority for the app. Select Default to require the device to be connected to WiFi, to be charging, and not to be actively in use before updating the app. Select High Priority to update the app as soon as the developer has published the app, regardless of charge status, WiFi capability, or end user activity on the device. High priority will only take effect on DO devices.",
- "configurationSettingsFormat": "Configuration settings format text",
- "ignoreVersionDetection": "Set this to “Yes” for apps that are automatically updated by the app developer (such as Google Chrome).",
- "ignoreVersionDetectionMacOSLobApp": "Select \"Yes\" for apps that are automatically updated by app developer or to only check for app bundleID before installation. Select \"No\" to check for app bundleID and version number before installation.",
- "installAsManagedMacOSLobApp": "This setting only applies to macOS 11 and higher. The app will be installed but not managed on macOS 10.15 and lower.",
- "installContextDropdown": "Select the appropriate install context. User context will install the app only for the targeted user while device context will install the app for all users on the device.",
- "ldapUrl": "This is the LDAP hostname where clients can get the public encryption keys for email recipients. Emails will be encrypted when a key is available. Supported formats: - ldap.example.com
\n- ldap.example.com:123
\n- ldap://ldap.example.com
- ldap://ldap.example.com:123
- ldaps://ldap.example.com
\n- ldaps://ldap.example.com:123
",
- "permissionsSettings": "Select runtime permissions for the associated app.",
- "policyAssociatedApp": "Select the app that this policy will be associated with.",
- "policyConfigurationSettings": "Select the method you want to use to define configuration settings for this policy.",
- "policyDescription": "Optionally, enter a description for this configuration policy.",
- "policyEnrollmentType": "Choose whether these settings are managed through device management or apps made with Intune SDK.",
- "policyName": "Enter a name for this configuration policy.",
- "policyPlatform": "Select the platform this app configuration policy will apply to.",
- "policyProfileType": "Select the device profile types that this app configuration profile will apply to",
- "policySMime": "Configure S/MIME signing and encryption settings for Outlook.",
- "sMimeDeployCertsFromIntune": "Specify whether or not S/MIME certificates will be delivered from Intune for use with Outlook.\nIntune can automatically deploy signing and encryption certificates to users through the Company Portal.",
- "sMimeEnable": "Specify whether or not S/MIME controls are enabled when composing an email",
- "sMimeEnableAllowChange": "Specify if the user is allowed to change the Enable S/MIME setting.",
- "sMimeEncryptAllEmails": "Specify whether or not all emails must be encrypted.\nEncrypting converts data to cipher text so that only the intended recipient can read it.",
- "sMimeEncryptAllEmailsAllowChange": "Specify if the user is allowed to change the Encrypt all emails setting.",
- "sMimeEncryptionCertProfile": "Specify certificate profile for email encryption.",
- "sMimeSignAllEmails": "Specify whether or not all emails must be signed.\nA digital signature verifies the authenticity of the email and ensures that the contents are not tampered with in transit.",
- "sMimeSignAllEmailsAllowChange": "Specify if the user is allowed to change the Sign all emails setting.",
- "sMimeSigningCertProfile": "Specify certificate profile for email signing.",
- "sMimeUserNotificationType": "Method to notify users that they must open Company Portal to retrieve S/MIME certificates for Outlook."
- },
- "WindowsQualityUpdateDaysUntilForcedReboot": {
- "oneDay": "1 day",
- "twoDays": "2 days",
- "zeroDays": "0 days"
- },
- "Autopilot": {
- "AssignResourceAccount": {
- "createNewCommandMenu": "Create new",
- "createNewResourceAccountInfo": "\nCreate a new resource account during enrollment. The Resource account will be added to the Resource account table right away, but won't be active until the device is enrolled, and the Surface Hub subscription is verified. Learn more about Resource Accounts
\n ",
- "createNewResourceTitle": "Create new resource account",
- "deviceNameInvalid": "Device name is in an invalid format",
- "deviceNameRequired": "A device name is required",
- "editResourceAccountLabel": "Edit",
- "selectExistingCommandMenu": "Select existing"
- },
- "Device": {
- "ComputerName": {
- "validFormat": "Names must be 15 characters or less, and can contain letters (a-z, A-Z), numbers (0-9), and hyphens. Names must not contain only numbers. Names cannot include a blank space."
- },
- "Header": {
- "addressableUserName": "User Friendly Name",
- "azureADDevice": "Associated Azure AD device",
- "batch": "Group Tag",
- "dateAssigned": "Date assigned",
- "deviceDisplayName": "Device Name",
- "deviceName": "Device name",
- "deviceUseType": "Device-use type",
- "enrollmentState": "Enrollment state",
- "intuneDevice": "Associated Intune device",
- "lastContacted": "Last contacted",
- "make": "Manufacturer",
- "model": "Model",
- "profile": "Assigned profile",
- "profileStatus": "Profile status",
- "purchaseOrderId": "Purchase order",
- "resourceAccount": "Resource account",
- "serialNumber": "Serial number",
- "userPrincipalName": "User"
- }
- },
- "DeviceUseType": {
- "meetingAndPresentation": "Meeting and presentation",
- "teamCollaboration": "Team collaboration"
- },
- "Devices": {
- "featureDescription": "Windows Autopilot lets you customize the out-of-box experience (OOBE) for your users.",
- "importErrorStatus": "Some devices were not imported. Click here for more information.",
- "importPendingStatus": "Import in progress. Elapsed time: {0} min. This process can take up to {1} min."
- },
- "DirectoryService": {
- "activeDirectoryAD": "Hybrid Azure AD joined",
- "activeDirectoryADLabel": "Hybrid Azure AD width Autopilot",
- "azureAD": "Azure AD joined",
- "unknownType": "Unknown Type"
- },
- "Filter": {
- "enrollmentState": "State",
- "profile": "Profile status"
- },
- "OOBE": {
- "AddressableUserName": {
- "validateEmpty": "User friendly name cannot be empty."
- },
- "ApplyComputerNameTemplate": {
- "infoBalloon": "Create a naming template to add names to your devices during enrollment.",
- "label": "Apply device name template"
- },
- "ApplyComputerNameTemplateDisabled": {
- "label": "For Hybrid Azure AD joined type of Autopilot deployment profiles, devices are named using settings specified in Domain Join configuration."
- },
- "ComputerNameTemplate": {
- "emptyValue": "MyCompany-%RAND:4%",
- "label": "Enter a name",
- "noDisallowedChars": "Name must only contain alphanumeric characters, hyphens, %SERIAL%, or %RAND:x%",
- "serialLength": "Cannot use more than 7 characters with %SERIAL%",
- "validateLessThan15Chars": "Name must be 15 characters or less",
- "validateNoSpaces": "Computer names cannot contain spaces",
- "validateNotAllNumbers": "Name must also contain letters and/or hyphens",
- "validateNotEmpty": "Name cannot be empty",
- "validateOnlyOneMacro": "Name must only contain one of %SERIAL% or %RAND:x%"
- },
- "ConfigureComputerNameTemplate": {
- "description": "Create a unique name for your devices. Names must be 15 characters or less, and can contain letters (a-z, A-Z), numbers (0-9), and hyphens. Names must not contain only numbers. Names cannot include a blank space. Use the %SERIAL% macro to add a hardware-specific serial number. Alternatively, use the %RAND:x% macro to add a random string of numbers, where x equals the number of digits to add."
- },
- "EnableWhiteGlove": {
- "infoBalloon": "Enable pressing Windows key 5 times to run OOBE without user authentication to enroll device and provision all system-context apps and settings. User-context apps and settings will be delivered when the user signs in.",
- "label": "Allow pre-provisioned deployment"
- },
- "HybridAzureADSkipConnectivityCheck": {
- "infoBalloon": "The Autopilot Hybrid Azure AD join flow will continue even if it does not establish domain controller connectivity during OOBE.",
- "label": "Skip AD connectivity check (preview)"
- },
- "accountType": "User account type",
- "accountTypeInfo": "Specify whether users are administrators or standard users on the device. Note that this setting does not apply to Global Administrator or Company Administrator accounts. These accounts cannot be standard users because they have access to all administrative features in Azure AD.",
- "configOOBEInfo": "\nConfigure the out-of-box experience for your Autopilot devices\n
",
- "configureDevice": "Deployment mode",
- "configureDeviceHintForSurfaceHub2": "Autopilot only supports self-deploying mode for Surface Hub 2. This mode doesn't associate the user with the enrolled device, so it doesn't require user credentials.",
- "configureDeviceHintForWindowsPC": "\n Deployment mode controls if a user needs to provide credentials in order to provision the device.\n
\n \n - \n User-Driven: Devices are associated with the user enrolling the device and user credentials are required to provision the device\n
\n - \n Self-Deploying (preview): Devices are not associated with the user enrolling the device and user credentials are not required to provision the device\n
\n
",
- "createSurfaceHub2Info": "Configure the Autopilot enrollment settings for your Surface Hub 2 devices. By default Autopilot enables skipping user authentication during OOBE. Learn more about Windows Autopilot for Surface Hub 2.",
- "createWindowsPCInfo": "\n\nThe following options are automatically enabled for Autopilot devices in self-deploying mode:\n
\n\n - \n Skip Work or Home usage selection\n
\n - \n Skip OEM registration and OneDrive configuration\n
\n - \n Skip user authentication in OOBE\n
\n
",
- "endUserDevice": "User-Driven",
- "hideEscapeLink": "Hide change account options",
- "hideEscapeLinkInfo": "Options to change account and start over with a different account appear, respectively, during initial device setup on the company sign-in page, and on the domain error page. To hide these options, you must configure company branding in Azure Active Directory (requires Windows 10, 1809 or later, or Windows 11).",
- "info": "Autopilot profile settings define the out-of-box experience users see when starting Windows for the first time. ",
- "language": "Language (Region)",
- "languageInfo": "Specify the language and region that will be used.",
- "licenseAgreement": "Microsoft Software License Terms",
- "licenseAgreementInfo": "Specify whether to show the EULA to users.",
- "plugAndForgetDevice": "Self-Deploying (preview)",
- "plugAndForgetGA": "Self-Deploying",
- "privacySettingWarning": "The default value for diagnostic data collection has changed for devices running Windows 10, version 1903 and later, or Windows 11. ",
- "privacySettings": "Privacy settings",
- "privacySettingsInfo": "Specify whether to show privacy settings to users.",
- "showCortanaConfigurationPage": "Cortana configuration",
- "showCortanaConfigurationPageInfo": "Show will enable the Cortana configuration introduction during startup.",
- "skipEULAWarning": "Important information about hiding license terms",
- "skipKeyboardSelection": "Automatically configure keyboard",
- "skipKeyboardSelectionInfo": "If true, skip the keyboard selection page if Language is set.",
- "subtitle": "Autopilot profiles",
- "title": "Out-of-box experience (OOBE)",
- "useOSDefaultLanguage": "Operating system default",
- "userSelect": "User select"
- },
- "Sync": {
- "lastRequestedLabel": "Last sync request",
- "lastSuccessfulLabel": "Last successful sync",
- "syncInProgress": "Sync is in progress. Check back again soon.",
- "syncInitiated": "Autopilot settings sync initiated.",
- "syncSettingsTitle": "Sync Autopilot settings"
- },
- "Title": {
- "devices": "Windows Autopilot devices"
- },
- "Tooltips": {
- "addressableUserName": "Greeting name displayed during device setup.",
- "azureADDevice": "Go to device details for associated device. N/A means that there's no associated device.",
- "batch": "A string attribute that can be used to identify a group of devices. Intune's Group Tag field maps to the OrderID attribute on Azure AD devices.",
- "dateAssigned": "Timestamp of when the profile was assigned to the device.",
- "deviceDisplayName": "Configure a unique name for a device. This name will be ignored in Hybrid Azure AD joined deployments. Device name still comes from the domain join profile for Hybrid Azure AD devices.",
- "deviceName": "The name shown when someone tried to discover and connect to the device.",
- "deviceUseType": " Device would setup based on your choice. You can always change later in settings.\n \n - For meetings and presentations, Windows Hello isn't turned on and data is removed after each session.\n
\n - For team collaboration, Windows Hello is turned on and profiles are saved for quick sign-in
\n
",
- "enrollmentState": "Specifies if the device has enrolled.",
- "intuneDevice": "Go to device details for associated device. N/A means that there's no associated device.",
- "lastContacted": "Timestamp of when the device was last contacted.",
- "make": "Manufacturer of the selected device.",
- "model": "Model of the selected device",
- "profile": "Name of the profile assigned to the device.",
- "profileStatus": "Specifies if a profile is assigned to the device.",
- "purchaseOrderId": "Purchase Order ID",
- "resourceAccount": "The device's identity, or user principal name (UPN).",
- "serialNumber": "Serial number of the selected device.",
- "userPrincipalName": "User to pre-fill authentication during device setup."
- },
- "allDevices": "All devices",
- "allDevicesAlreadyAssignedError": "An Autopilot profile is already assigned to All Devices.",
- "assignFailedDescription": "Failed to update assignments for {0}.",
- "assignFailedTitle": "Failed to update Autopilot profile assignments.",
- "assignSuccessDescription": "Successfully updated assignments for {0}.",
- "assignSuccessTitle": "Successfully updated Autopilot profile assignments.",
- "assignSufaceHub2ProfileNextStep": "Next steps for this deployment",
- "assignSurfaceHub2ProfileToDeviceGroup": "1. Assign this profile to at least one device group",
- "assignSurfaceHub2ProfileToResourceAccount": "2. Assign a resource account to each Surface Hub device to which you deploy this profile",
- "assignedDevicesCount": "Assigned devices",
- "assignedDevicesResourceAccountDescription": "To deploy this profile to a device, you must assign the device a Resource account. Select one device at a time to assign an existing Resource account or to create a new one. Learn more about Resource Accounts
",
- "assignedDevicesResourceAccountStatusBarMessage": "This table only lists the Surface Hub 2 devices that have been assigned this profile.",
- "assigningDescription": "Updating assignments for {0}.",
- "assigningTitle": "Updating Autopilot profile assignments.",
- "cannotDeleteMessage": "This profile is assigned to groups. You must unassign all groups from this profile before you can delete it.",
- "cannotDeleteTitle": "Cannot delete {0}",
- "createdDateTime": "Created",
- "deleteMessage": "If you delete this Autopilot profile, any devices assigned to this profile will display Unassigned.",
- "deleteMessageWithPolicySet": "{0} is included in one more more policy sets. If you delete {0}, you'll no longer be able to assign it via these policy sets.",
- "deleteTitle": "Are you sure you want to delete this profile?",
- "description": "Description",
- "deviceType": "Device type",
- "deviceUse": "Device use",
- "directoryServiceHintForSurfaceHub2": " \n Autopilot only supports Azure AD Joined for Surface Hub 2 devices. Specify how devices join Active Directory (AD) in your organization.\n
\n \n - \n Azure AD joined: Cloud-only without an on-premises Windows Server Active Directory.\n
\n
\n ",
- "directoryServiceHintForWindowsPC": "\n \n Specify how devices join Active Directory (AD) in your organization:\n
\n \n - \n Azure AD joined: Cloud-only without an on-premises Windows Server Active Directory\n
\n
\n ",
- "getAssignedDevicesCountError": "An error occurred while fetching the assigned devices count.",
- "getAssignmentsError": "An error occurred while fetching Autopilot profile assignments.",
- "harvestDeviceId": "Convert all targeted devices to Autopilot",
- "harvestDeviceIdDescription": "By default, this profile can only be applied to Autopilot devices synced from the Autopilot service.",
- "harvestDeviceIdInfo": "\n Select Yes to register all targeted devices to Autopilot if they are not already registered. The next time registered devices go through the Windows Out of Box Experience (OOBE), they will go through the assigned Autopilot scenario.\n
\n Please note that certain Autopilot scenarios require specific minimum builds of Windows. Please make sure your device has the required minimum build to go through the scenario.\n
\n Removing this profile won’t remove affected devices from Autopilot. To remove a device from Autopilot, use the Windows Autopilot Devices view.\n ",
- "harvestDeviceIdWarning": "After conversion, Autopilot devices can only be reverted by deleting them from the Autopilot devices list.",
- "holoLensCommandMenu": "HoloLens",
- "info": "Windows Autopilot deployment profiles lets you customize the out-of-box experience for your devices.",
- "invalidProfileNameMessage": "Character \"{0}\" is not allowed",
- "joinTypeLabel": "Join Azure AD as",
- "lastModifiedDateTime": "Last modified:",
- "name": "Name",
- "noAutopilotProfile": "No Autopilot profiles",
- "notEnoughPermissionAssignedError": "You don't have enough permissions to assign this profile to one or more of your selected groups. Please contact your administrator.",
- "profile": "profile",
- "resourceAccountStatusBarMessage": "A Resource Account is required for each Surface Hub 2 device to which this profile is deployed. Click to learn more.",
- "selectServices": "Select directory service devices will join",
- "surfaceHub2CommandMenu": "Surface Hub 2",
- "surfaceHub2SCommandMenu": "Surface Hub 2S",
- "userAffinityLabel": "Deployment mode",
- "windowsPCCommandMenu": "Windows PC",
- "directoryServiceLabel": "Join to Azure AD as"
- },
- "AppInformationTab": {
- "Error": {
- "multipleChildApps": "A macOS LOB app can only be installed as managed when the uploaded package contains a single app."
- },
- "Info": {
- "AppStoreUrl": {
- "android": "Enter the link to the app listing in Google Play store. For example:",
- "androidLink": "https://play.google.com/store/apps/details?id=com.microsoft.office.outlook",
- "windows": "Enter the link to the app listing in the Microsoft Store. For example:",
- "windowsLink": "https://www.microsoft.com/en-us/p/microsoft-to-do-lists-tasks-reminders/9nblggh5r558"
- },
- "appPackageFile": "A file that contains your app in a format that can be sideloaded on a device. Valid package types include: Android (.apk), iOS (.ipa), macOS (.intunemac), Windows (.msi, .appx, .appxbundle, .msix, and .msixbundle).",
- "applicableDeviceType": "Select the device types that can install this app.",
- "category": "Categorize the app to make it easier for users to sort and find in Company Portal. You can choose multiple categories.",
- "categoryLink": "https://docs.microsoft.com/en-us/intune/apps/apps-add#create-and-edit-categories-for-apps",
- "description": "Help your device users understand what the app is and/or what they can do in the app. This description will be visible to them in Company Portal.",
- "developer": "The name of the company or Individual that developed the app. This information will be visible to people signed into the admin center.",
- "displayVersion": "The version of the app. This information will be visible to users in the Company Portal.",
- "infoUrl": "Link people to a website or documentation that has more information about the app. The information URL will be visible to users in Company Portal.",
- "isFeatured": "Featured apps are prominently placed in Company Portal so that users can quickly get to them.",
- "learnMore": "Learn more",
- "logo": "Upload a logo that's associated with the app. This logo will appear next to the app throughout Company Portal.",
- "macOSDmgAppPackageFile": "A file that contains your app in a format that can be sideloaded on a device. Valid package type: .dmg.",
- "minOperatingSystem": "Select the earliest operating system version on which the app can be installed. If you assign the app to a device with an earlier operating system, it will not be installed.",
- "name": "Add a name for the app. This name will be visible in the Intune apps list and to users in the Company Portal.",
- "notes": "Add additional notes about the app. Notes will be visible to people signed in to the admin center.",
- "owner": "The name of the person in your organization who manages licensing or is the point-of-contact for this app. This name will be visible to people signed in to the admin center.",
- "packageName": "Contact the device manufacturer to get the app's package name. Example package name: com.example.app",
- "privacyUrl": "Provide a link for people who want to learn more about the app's privacy settings and terms. The privacy URL will be visible to users in Company Portal.",
- "publisher": "The name of the developer or company that distributes the app. This information will be visible to users in Company Portal.",
- "selectApp": "Search the App Store for iOS store apps that you want to deploy with Intune.",
- "useManagedBrowser": "If required, when a user opens the web app, it will open in an Intune-protected browser such as Microsoft Edge or Intune Managed Browser. This setting applies to both iOS and Android devices.",
- "useManagedBrowserLink": "https://docs.microsoft.com/en-us/intune/apps/app-configuration-managed-browser",
- "win32AppPackageFile": "A file that contains your app in a format that can be sideloaded on a device. Valid package type: .intunewin."
- },
- "descriptionPreview": "Preview",
- "descriptionRequired": "Description is required.",
- "editDescription": "Edit Description",
- "name": "App information",
- "nameForOfficeSuitApp": "App suite information"
- },
+ "Columns": {
+ "codeType": "Code type",
+ "returnCode": "Return code"
+ },
+ "bladeTitle": "Return codes",
+ "gridAriaLabel": "Return codes",
+ "header": "Specify return codes to indicate post-installation behavior:",
+ "onAddAnnounceMessage": "Return code added item {0} of {1}",
+ "onDeleteSuccess": "Return code {0} deleted successfully",
+ "returnCodeAlreadyUsedValidation": "Return code is already used.",
+ "returnCodeMustBeIntegerValidation": "Return code should be an integer.",
+ "returnCodeShouldBeAtLeast": "Return code should be at least {0}.",
+ "returnCodeShouldBeAtMost": "Return code should be at most {0}.",
+ "selectorLabel": "Return codes"
+ },
"NotificationMessage": {
"NotificationMessageTemplatesTab": {
"arabic": "Arabic",
@@ -10516,84 +10079,599 @@
"localeLabel": "Locale",
"isDefaultLocale": "Is Default"
},
- "Win32Program": {
- "DeviceRestartBehaviorOptions": {
- "allow": "App install may force a device restart",
- "basedOnReturnCode": "Determine behavior based on return codes",
- "force": "Intune will force a mandatory device restart",
- "suppress": "No specific action"
- },
- "RunAsAccountOptions": {
- "system": "System",
- "user": "User"
- },
- "bladeTitle": "Program",
- "deviceRestartBehavior": "Device restart behavior",
- "deviceRestartBehaviorTooltip": "Select the device restart behavior after the app has successfully installed. Select 'Determine behavior based on return codes' to restart the device based on the return codes configuration settings. Select 'No specific action' to suppress device restarts during the app install for MSI-based apps. Select 'App install may force a device restart' to allow the app install to complete without suppressing restarts. Select 'Intune will force a mandatory device restart' to always restart the device after successful app installation.",
- "header": "Specify the commands to install and uninstall this app:",
- "installCommand": "Install command",
- "installCommandMaxLengthErrorMessage": "Install command cannot exceed the maximum allowed length of 1024 characters.",
- "installCommandTooltip": "The complete installation command line used to install this app.",
- "runAs32Bit": "Run install and uninstall commands in a 32-bit process on 64-bit clients",
- "runAs32BitTooltip": "Select 'Yes' to install and uninstall the app in a 32-bit process on 64-bit clients. Select 'No' (default) to install and uninstall the app in a 64-bit process on 64-bit clients. 32-bit clients will always use a 32-bit process.",
- "runAsAccount": "Install behavior",
- "runAsAccountTooltip": "Select 'System' to install this app for all users if supported. Select 'User' to install this app for the logged-in user on the device. For dual-purpose MSI apps, changes will prevent updates and uninstalls from successfully completing until the value applied to the device at the time of the original install is restored.",
- "selectorLabel": "Program",
- "uninstallCommand": "Uninstall command",
- "uninstallCommandTooltip": "The complete uninstallation command line used to uninstall this app."
- },
- "OutlookAppConfigSettings": {
- "AllowUserToChangeSetting": {
- "title": "Allow user to change setting",
- "tooltip": "Specify if the user is allowed to change the setting."
- },
- "AllowWorkAccounts": {
- "title": "Allow only work or school accounts",
- "tooltip": " By enabling this setting, users will be unable to add personal email and storage accounts within Outlook. If the user has a personal account added to Outlook, the user is prompted to remove the personal account. If the user does not remove the personal account, the work or school account cannot be added."
- },
- "BlockExternalImages": {
- "title": "Block external images",
- "tooltip": "When block external images is enabled, the app will prevent the download of images hosted on the Internet that are embedded in the message body. When set as not configured, the default app setting is set to Off"
- },
- "ConfigureEmail": {
- "title": "Configure email account settings"
- },
- "DefaultAppSignatureSetting": {
- "Tooltip": {
- "android": "Default app signature indicates whether the app will use “Get Outlook for Android” as the default signature during message composition. If the setting is configured as Off, the default signature will not be used; however, users can add their own signature.\n\nWhen set as Not Configured, the default app setting is set to On.",
- "iOS": "Default app signature indicates whether the app will use “Get Outlook for iOS” as the default signature during message composition. If the setting is configured as Off, the default signature will not be used; however, users can add their own signature.\n\nWhen set as Not Configured, the default app setting is set to On."
- },
- "title": "Default app signature"
- },
- "OfficeFeedReplies": {
- "title": "Discover Feed",
- "tooltip": "Discover Feed surfaces your most frequently accessed Office files. By default, this feed is enabled when Delve is enabled for the user. When set as not configured, the default app setting is set to On."
- },
- "OrganizeMailByThread": {
- "title": "Organize mail by thread",
- "tooltip": "The default behavior in Outlook is to bundle mail conversations into a threaded conversation view. If this setting is disabled Outlook will display each mail individually and will not group them by thread."
- },
- "PlayMyEmails": {
- "title": "Play My Emails",
- "tooltip": "The Play My Emails feature is not enabled by default in the app, but it is promoted to eligible users via a banner in the inbox. When set to Off, this feature will not be promoted to eligible users in the app. Users can choose to manually enable Play My Emails from within the app, even when this feature is set to Off. When set as Not configured, the default app setting is On and the feature will be promoted to eligible users."
- },
- "SuggestedReplies": {
- "title": "Suggested replies",
- "tooltip": "When you open a message, Outlook might suggest replies below the message. If you select a suggested reply, you can edit the reply before sending it."
- },
- "SyncCalendars": {
- "title": "Sync Calendars",
- "tooltip": "Configure whether users can sync their Outlook calendar to the native calendar app and database."
- },
- "TextPredictions": {
- "title": "Text Predictions",
- "tooltip": "Outlook can suggest words and phrases as you compose messages. When Outlook offers a suggestion, swipe to accept it. When set as not configured, the default app setting is set to On."
+ "WindowsQualityUpdateProfile": {
+ "Details": {
+ "DaysUntilForcedReboot": {
+ "label": "Number of days to wait before restart is enforced"
+ },
+ "Description": {
+ "label": "Description"
+ },
+ "Name": {
+ "label": "Name"
+ },
+ "QualityUpdateRelease": {
+ "label": "Expedite installation of quality updates if device OS version less than:"
+ },
+ "bladeTitle": "Quality updates Windows 10 and later (Preview)",
+ "loadError": "Loading failed!"
+ },
+ "TabName": {
+ "qualityUpdateSettings": "Settings"
+ },
+ "infoBoxText": "The only dedicated quality update control currently available other than the existing update rings policy for Windows 10 and later is the ability to expedite quality updates for devices that fall behind a specified patch level. Additional controls will be available in the future.",
+ "warningBoxText": "While expediting software updates can help decrease the time to get to compliance when necessary, it has a larger impact on end-user productivity. The chances that they will experience a restart during business hours is significantly increased."
+ },
+ "TermsOfUse": {
+ "Languages": {
+ "addLanguage": "Add language",
+ "af": "Afrikaans",
+ "am": "Amharic",
+ "arSA": "Arabic (Saudi Arabia)",
+ "as": "Assamese",
+ "az": "Azerbaijani",
+ "be": "Belarusian",
+ "bg": "Bulgarian",
+ "bn": "Bangla",
+ "bnIN": "Bangla (India)",
+ "bs": "Bosnian",
+ "ca": "Catalan",
+ "caESvalencia": "Valencian (Spain)",
+ "cs": "Czech",
+ "cy": "Welsh",
+ "da": "Danish",
+ "de": "German",
+ "default": "Default",
+ "defaultDetailsTag": "{0} (Default)",
+ "el": "Greek",
+ "en": "English",
+ "enGB": "English (United Kingdom)",
+ "es": "Spanish",
+ "esMX": "Spanish (Mexico)",
+ "et": "Estonian",
+ "eu": "Basque",
+ "fa": "Persian",
+ "fi": "Finnish",
+ "fil": "Filipino",
+ "fr": "French",
+ "frCA": "French (Canada)",
+ "ga": "Irish",
+ "gd": "Scottish Gaelic",
+ "gl": "Galician",
+ "gu": "Gujarati",
+ "ha": "Hausa",
+ "he": "Hebrew",
+ "hi": "Hindi",
+ "hr": "Croatian",
+ "hu": "Hungarian",
+ "hy": "Armenian",
+ "id": "Indonesian",
+ "ig": "Igbo",
+ "is": "Icelandic",
+ "it": "Italian",
+ "ja": "Japanese",
+ "ka": "Georgian",
+ "kk": "Kazakh",
+ "km": "Khmer",
+ "kn": "Kannada",
+ "ko": "Korean",
+ "kok": "Konkani",
+ "kuArab": "Central Kurdish (Arabic)",
+ "ky": "Kyrgyz",
+ "languageOptions": "Language Options",
+ "lb": "Luxembourgish",
+ "lo": "Lao",
+ "lt": "Lithuanian",
+ "lv": "Latvian",
+ "mi": "Maori",
+ "mk": "Macedonian",
+ "ml": "Malayalam",
+ "mn": "Mongolian",
+ "mr": "Marathi",
+ "ms": "Malay",
+ "mt": "Maltese",
+ "ne": "Nepali",
+ "nl": "Dutch",
+ "nnNO": "Norwegian, Nynorsk (Norway)",
+ "no": "Norwegian",
+ "notSpecified": "Language not specified",
+ "nso": "Sesotho sa Leboa",
+ "or": "Odia",
+ "paArabPK": "Punjabi (Islamic Republic of Pakistan)",
+ "paIN": "Punjabi (India)",
+ "pl": "Polish",
+ "prs": "Dari",
+ "ptBR": "Portuguese (Brazil)",
+ "ptPT": "Portuguese (Portugal)",
+ "quz": "Quechua",
+ "ro": "Romanian",
+ "ru": "Russian",
+ "rw": "Kinyarwanda",
+ "sd": "Sindhi",
+ "si": "Sinhala",
+ "sk": "Slovak",
+ "sl": "Slovenian",
+ "sq": "Albanian",
+ "srCyrlBA": "Serbian (Cyrillic, Bosnia and Herzegovina)",
+ "srCyrlRS": "Serbian (Cyrillic, Serbia)",
+ "srLatnRS": "Serbian (Latin, Serbia)",
+ "sv": "Swedish",
+ "sw": "Kiswahili",
+ "ta": "Tamil",
+ "te": "Telugu",
+ "tg": "Tajik",
+ "th": "Thai",
+ "ti": "Tigrinya",
+ "tk": "Turkmen",
+ "tn": "Setswana",
+ "tr": "Turkish",
+ "tt": "Tatar",
+ "ug": "Uyghur",
+ "uk": "Ukrainian",
+ "ur": "Urdu",
+ "uz": "Uzbek",
+ "vi": "Vietnamese",
+ "wo": "Wolof",
+ "xh": "isiXhosa",
+ "yo": "Yoruba",
+ "zhHans": "Chinese (Simplified)",
+ "zhHant": "Chinese (Traditional)",
+ "zu": "isiZulu"
+ },
+ "AcceptanceExpirationFrequency": {
+ "annually": "Annually",
+ "biannually": "Bi-annually",
+ "monthly": "Monthly",
+ "quarterly": "Quarterly"
},
- "ThemesEnabled": {
- "title": "Themes enabled",
- "tooltip": "Specify if the user is allowed to use a custom visual theme."
- }
- },
+ "Wizard": {
+ "AgreementTargetEntityScope": {
+ "NotSelected": {
+ "label": "None selected"
+ },
+ "selectEntityTitle": "Select group",
+ "title": "Select group"
+ },
+ "PolicyFile": {
+ "Languages": {
+ "Empty": {
+ "default": "Select default language",
+ "nonDefault": "Select a language"
+ }
+ },
+ "Validations": {
+ "duplicateLanguage": "Oops, {0} appears to be selected multiple times. Language selection must be unique."
+ }
+ },
+ "PolicyTemplate": {
+ "InfoBox": {
+ "allGuestsAllApps": "A conditional access policy will be created for all guests and all cloud apps. This policy impacts the Azure portal. Once this is created you might be required to sign-out and sign-in.",
+ "allUsersAllApps": "A conditional access policy will be created for all users and all cloud apps. This policy impacts the Azure portal. Once this is created you will be required to sign-out and sign-in.",
+ "custom": "Select the users, groups, and apps that this Terms of Use will be applied to.",
+ "noPolicy": "This terms of use will appear in the grant control list when creating a conditional access policy."
+ }
+ },
+ "Section": {
+ "conditionalAccessSubtitle": "Enforce with conditional access policy templates",
+ "conditionalAccessTitle": "Conditional access",
+ "termsOfUseSubtitle": "Create and upload documents",
+ "termsOfUseTitle": "Terms of use"
+ },
+ "acceptanceDurationInfo": "The terms of use will be enforced immediately and each user will have to re-consent every specified number of days.",
+ "acceptanceDurationLabel": "Duration before re-acceptance required (days)",
+ "acceptanceDurationPlaceholder": "Example: '90'",
+ "acceptanceExpirationFrequencyInfo": "Require users to consent on a recurring basis.",
+ "acceptanceExpirationFrequencyLabel": "Frequency",
+ "acceptanceExpirationStartDateTimeInfo": "The terms of use will be enforced immediately and users will be required to re-consent on this date.",
+ "acceptanceExpirationStartDateTimeLabel": "Expire starting on",
+ "agreementIsPerDeviceAcceptanceRequiredInfo": "The end users will be required to consent to the terms of use on every device.",
+ "agreementIsPerDeviceAcceptanceRequiredLabel": "Require users to consent on every device",
+ "agreementIsViewingBeforeAcceptanceRequiredInfo": "The end users will be required to view the terms of use prior to accepting.",
+ "agreementIsViewingBeforeAcceptanceRequiredLabel": "Require users to expand the terms of use",
+ "agreementNameInfo": "Name will be used to manage the terms of use within the Azure portal.",
+ "agreementNameLabel": "Name",
+ "agreementNamePlaceholderText": "Example: 'All users terms of use'",
+ "agreementRequirmentLabel": "Required Upon",
+ "agreementTargetEntityLabel": "Users targeted",
+ "agreementUploadPolicyLabel": "Terms of use",
+ "agreementUploadPolicyPlaceholderText": "Upload required PDF",
+ "createButtonLabel": "Create",
+ "createPolicyInfo": "In order to enforce the terms of use, a conditional access policy is required. You can create a conditional access policy targeted to specific users and applications later or use one of the predefined templates.",
+ "createPolicyLabel": "Create a policy",
+ "isAcceptanceExpirationEnabledInfo": "The terms of use will be enforced immediately and all users will be forced to re-consent on a schedule.",
+ "isAcceptanceExpirationEnabledLabel": "Expire consents",
+ "pdfValidationInvalidFileFormat": "The file must be in the .pdf format.",
+ "policyFilesInfo": "Upload a PDF file containing the terms of use that your end users must accept. Based on end user preferences they will be shown the appropriate language or if not match the default language will be shown.
For end users agreeing on mobile devices, we recommend the PDF font size to be at least 24 pt.
Display name will be the title of the terms of use that is presented to the end user.",
+ "policyFilesLabel": "Terms of use document",
+ "policyTemplateInfo": "These templates are pre configured conditional access policies that are targeted to specific users and applications.",
+ "policyTemplateLabel": "Policy templates",
+ "title": "New terms of use"
+ }
+ },
+ "TACSettings": {
+ "edgeSettings": "Edge configuration settings",
+ "edgeWindowsDataProtectionSettings": "Edge (Windows) data protection settings - Preview",
+ "edgeWindowsSettings": "Edge (Windows) configuration settings - Preview",
+ "generalAppConfig": "General app configuration",
+ "generalSettings": "General configuration settings",
+ "outlookSMIMEConfig": "Outlook S/MIME settings",
+ "outlookSettings": "Outlook configuration settings",
+ "sMIME": "S/MIME"
+ },
+ "MicrosoftEdgeChannel": {
+ "beta": "Beta",
+ "dev": "Dev",
+ "stable": "Stable"
+ },
+ "WipPolicySettings": {
+ "addNetworkBoundary": "Add network boundary",
+ "addNetworkBoundaryButton": "Add network boundary...",
+ "allowWindowsSearch": "Allow Windows Search to search encrypted corporate data and Store apps",
+ "authoritativeIpRanges": "Enterprise IP Ranges list is authoritative (do not auto-detect)",
+ "authoritativeProxyServers": "Enterprise Proxy Servers list is authoritative (do not auto-detect)",
+ "boundaryType": "Boundary type",
+ "cloudResources": "Cloud resources",
+ "corporateIdentity": "Corporate identity",
+ "dataRecoveryCert": "Upload a Data Recovery Agent (DRA) certificate to allow recovery of encrypted data",
+ "editNetworkBoundary": "Edit network boundary",
+ "enrollmentState": "Enrollment state",
+ "iPv4Ranges": "IPv4 ranges",
+ "iPv6Ranges": "IPv6 ranges",
+ "internalProxyServers": "Internal proxy servers",
+ "maxInactivityTime": "Maximum amount of time (in minutes) allowed after the device is idle that will cause the device to become PIN or password locked",
+ "maxPasswordAttempts": "Number of authentication failures allowed before the device will be wiped",
+ "mdmDiscoveryUrl": "MDM discovery URL",
+ "mdmRequiredSettingsInfo": "This policy only applies to Windows 10 Anniversary Edition and higher. This policy uses Windows Information Protection (WIP) to apply protection.",
+ "minimumPinLength": "Set the minimum number of characters required for the PIN",
+ "name": "Name",
+ "networkBoundariesGridEmptyText": "Any network boundaries you add will show up here",
+ "networkBoundary": "Network boundary",
+ "networkDomainNames": "Network domains",
+ "neutralResources": "Neutral resources",
+ "passportForWork": "Use Windows Hello for Business as a method for signing into Windows",
+ "pinExpiration": "Specify the period of time (in days) that a PIN can be used before the system requires the user to change it",
+ "pinHistory": "Specify the number of past PINs that can be associated to a user account that can’t be reused",
+ "pinLowercaseLetters": "Configure the use of lowercase letters in the Windows Hello for Business PIN",
+ "pinSpecialCharacters": "Configure the use of special characters in the Windows Hello for Business PIN",
+ "pinUppercaseLetters": "Configure the use of uppercase letters in the Windows Hello for Business PIN",
+ "protectUnderLock": "Prevent corporate data from being accessed by apps when the device is locked. Applies only to Windows 10 Mobile",
+ "protectedDomainNames": "Protected domains",
+ "proxyServers": "Proxy servers",
+ "requireAppPin": "Disable app PIN when device PIN is managed",
+ "requiredSettings": "Required settings",
+ "requiredSettingsInfo": "Changing the scope or removing this policy will decrypt corporate data.",
+ "revokeOnMdmHandoff": "Revoke access to protected data when the device enrolls to MDM",
+ "revokeOnUnenroll": "Revoke encryption keys on unenroll",
+ "rmsTemplateForEdp": "Specify the template ID to use for Azure RMS",
+ "showWipIcon": "Show the enterprise data protection icon",
+ "type": "Type",
+ "useRmsForWip": "Use Azure RMS for WIP",
+ "value": "Value",
+ "weRequiredSettingsInfo": "This policy only applies to Windows 10 Creators Update and higher. This policy uses Windows Information Protection (WIP) and Windows MAM to apply protection.",
+ "wipProtectionMode": "Windows Information Protection mode",
+ "withEnrollment": "With enrollment",
+ "withoutEnrollment": "Without enrollment"
+ },
+ "OfficeApplicationAdditionalType": {
+ "projectProRetail": "Project Online Desktop Client",
+ "visioProRetail": "Visio Online Plan 2"
+ },
+ "Countries": {
+ "ae": "United Arab Emirates",
+ "ag": "Antigua and Barbuda",
+ "ai": "Anguilla",
+ "al": "Albania",
+ "am": "Armenia",
+ "ao": "Angola",
+ "ar": "Argentina",
+ "at": "Austria",
+ "au": "Australia",
+ "az": "Azerbaijan",
+ "bb": "Barbados",
+ "be": "Belgium",
+ "bf": "Burkina Faso",
+ "bg": "Bulgaria",
+ "bh": "Bahrain",
+ "bj": "Benin",
+ "bm": "Bermuda",
+ "bn": "Brunei",
+ "bo": "Bolivia",
+ "br": "Brazil",
+ "bs": "Bahamas",
+ "bt": "Bhutan",
+ "bw": "Botswana",
+ "by": "Belarus",
+ "bz": "Belize",
+ "ca": "Canada",
+ "cg": "Republic Of Congo",
+ "ch": "Switzerland",
+ "cl": "Chile",
+ "cn": "China",
+ "co": "Colombia",
+ "cr": "Costa Rica",
+ "cv": "Cape Verde",
+ "cy": "Cyprus",
+ "cz": "Czech Republic",
+ "de": "Germany",
+ "dk": "Denmark",
+ "dm": "Dominica",
+ "do": "Dominican Republic",
+ "dz": "Algeria",
+ "ec": "Ecuador",
+ "ee": "Estonia",
+ "eg": "Egypt",
+ "es": "Spain",
+ "fi": "Finland",
+ "fj": "Fiji",
+ "fm": "Federated States Of Micronesia",
+ "fr": "France",
+ "gb": "United Kingdom",
+ "gd": "Grenada",
+ "gh": "Ghana",
+ "gm": "Gambia",
+ "gr": "Greece",
+ "gt": "Guatemala",
+ "gw": "Guinea-Bissau",
+ "gy": "Guyana",
+ "hk": "Hong Kong",
+ "hn": "Honduras",
+ "hr": "Croatia",
+ "hu": "Hungary",
+ "id": "Indonesia",
+ "ie": "Ireland",
+ "il": "Israel",
+ "in": "India",
+ "is": "Iceland",
+ "it": "Italy",
+ "jm": "Jamaica",
+ "jo": "Jordan",
+ "jp": "Japan",
+ "ke": "Kenya",
+ "kg": "Kyrgyzstan",
+ "kh": "Cambodia",
+ "kn": "St. Kitts and Nevis",
+ "kr": "Republic Of Korea",
+ "kw": "Kuwait",
+ "ky": "Cayman Islands",
+ "kz": "Kazakstan",
+ "la": "Lao People’s Democratic Republic",
+ "lb": "Lebanon",
+ "lc": "St. Lucia",
+ "lk": "Sri Lanka",
+ "lr": "Liberia",
+ "lt": "Lithuania",
+ "lu": "Luxembourg",
+ "lv": "Latvia",
+ "md": "Republic Of Moldova",
+ "mg": "Madagascar",
+ "mk": "North Macedonia",
+ "ml": "Mali",
+ "mn": "Mongolia",
+ "mo": "Macau",
+ "mr": "Mauritania",
+ "ms": "Montserrat",
+ "mt": "Malta",
+ "mu": "Mauritius",
+ "mw": "Malawi",
+ "mx": "Mexico",
+ "my": "Malaysia",
+ "mz": "Mozambique",
+ "na": "Namibia",
+ "ne": "Niger",
+ "ng": "Nigeria",
+ "ni": "Nicaragua",
+ "nl": "Netherlands",
+ "no": "Norway",
+ "np": "Nepal",
+ "nz": "New Zealand",
+ "om": "Oman",
+ "pa": "Panama",
+ "pe": "Peru",
+ "pg": "Papua New Guinea",
+ "ph": "Philippines",
+ "pk": "Pakistan",
+ "pl": "Poland",
+ "pt": "Portugal",
+ "pw": "Palau",
+ "py": "Paraguay",
+ "qa": "Qatar",
+ "ro": "Romania",
+ "ru": "Russia",
+ "sa": "Saudi Arabia",
+ "sb": "Solomon Islands",
+ "sc": "Seychelles",
+ "se": "Sweden",
+ "sg": "Singapore",
+ "si": "Slovenia",
+ "sk": "Slovakia",
+ "sl": "Sierra Leone",
+ "sn": "Senegal",
+ "sr": "Suriname",
+ "st": "Sao Tome and Principe",
+ "sv": "El Salvador",
+ "sz": "Swaziland",
+ "tc": "Turks and Caicos",
+ "td": "Chad",
+ "th": "Thailand",
+ "tj": "Tajikistan",
+ "tm": "Turkmenistan",
+ "tn": "Tunisia",
+ "tr": "Turkey",
+ "tt": "Trinidad and Tobago",
+ "tw": "Taiwan",
+ "tz": "Tanzania",
+ "ua": "Ukraine",
+ "ug": "Uganda",
+ "us": "United States",
+ "uy": "Uruguay",
+ "uz": "Uzbekistan",
+ "vc": "St. Vincent and The Grenadines",
+ "ve": "Venezuela",
+ "vg": "British Virgin Islands",
+ "vn": "Vietnam",
+ "ye": "Yemen",
+ "za": "South Africa",
+ "zw": "Zimbabwe"
+ },
+ "OfficeUpdateChannel": {
+ "current": "Current Channel",
+ "deferred": "Semi-Annual Enterprise Channel",
+ "firstReleaseCurrent": "Current Channel (Preview)",
+ "firstReleaseDeferred": "Semi-Annual Enterprise Channel (Preview)",
+ "monthlyEnterprise": "Monthly Enterprise Channel",
+ "placeHolder": "Select one"
+ },
+ "AppProtection": {
+ "allAppTypes": "Target to all app types",
+ "androidPlatformLabel": "Android",
+ "appsInAndroidWorkProfile": "Apps in Android Work Profile",
+ "appsOnIntuneManagedDevices": "Apps on Intune managed devices",
+ "appsOnUnmanagedDevices": "Apps on unmanaged devices",
+ "iOSPlatformLabel": "iOS/iPadOS",
+ "iosAndroidMacPlatformLabel": "iOS, Android, Mac",
+ "iosAndroidPlatformLabel": "iOS, Android",
+ "macPlatformLabel": "Mac",
+ "notAvailable": "Not Available",
+ "windows10PlatformLabel": "Windows 10 and later",
+ "withEnrollment": "With enrollment",
+ "withoutEnrollment": "Without enrollment"
+ },
+ "InstallContextType": {
+ "device": "Device",
+ "deviceContext": "Device context",
+ "user": "User",
+ "userContext": "User context"
+ },
+ "ProactiveRemediations": {
+ "Create": {
+ "Basics": {
+ "DescriptionMultiLineTextBox": {
+ "label": "Description",
+ "placeholder": "Enter a description"
+ },
+ "NameTextBox": {
+ "label": "Name",
+ "placeholder": "Enter a name"
+ },
+ "PublisherTextBox": {
+ "label": "Publisher",
+ "placeholder": "Enter a publisher"
+ },
+ "VersionTextBox": {
+ "label": "Version"
+ },
+ "headerDescription": "Create a new custom script package from detection and remediation scripts that you’ve written."
+ },
+ "ScopeTags": {
+ "headerDescription": "Select one or more groups to assign the script package."
+ },
+ "Settings": {
+ "DetectionScriptMultiLineTextBox": {
+ "label": "Detection script",
+ "placeholder": "Input script text",
+ "requiredValidationMessage": "Please enter the detection script"
+ },
+ "EnforceScriptSignatureCheckOptionPicker": {
+ "label": "Enforce script signature check"
+ },
+ "LoggedOnCredentialsOptionPicker": {
+ "label": "Run this script using the logged-on credentials"
+ },
+ "RemediationScript": {
+ "infoBox": "This script will run in detect-only mode because there is no remediation script."
+ },
+ "RemediationScriptMultiLineTextBox": {
+ "label": "Remediation script",
+ "placeholder": "Input script text"
+ },
+ "RunIn64BitPSOptionPicker": {
+ "label": "Run script in 64-bit PowerShell"
+ },
+ "ScriptMultiLineTextBox": {
+ "base64EncodingValidationMessage": "Invalid script. One or more characters used in the script is not valid."
+ },
+ "headerDescription": "Create a custom script package from scripts you've written. By default, scripts will run on assigned devices every day.",
+ "infoBox": "This script is read-only. Some of the settings for this script might be disabled."
+ },
+ "title": "Create custom script",
+ "ScriptProperties": {
+ "GridHeaders": {
+ "interval": "Interval",
+ "time": "Date and time"
+ },
+ "Interval": {
+ "day": "Repeats every day",
+ "days": "Repeats every {0} days",
+ "hour": "Repeats every hour",
+ "hours": "Repeats every {0} hours",
+ "month": "Repeats every month",
+ "months": "Repeats every {0} months",
+ "week": "Repeats every week",
+ "weeks": "Repeats every {0} weeks"
+ },
+ "Time": {
+ "utc": "{0} (UTC)",
+ "utcWithDate": "{0} (UTC) on {1}",
+ "withDate": "{0} on {1}"
+ }
+ }
+ },
+ "Edit": {
+ "title": "Edit - {0}"
+ }
+ },
+ "EdgeAppConfig": {
+ "AllowedURLs": {
+ "title": "Allowed URLs",
+ "tooltip": "Specify the sites your users are allowed to access while in their work context. No other sites will be allowed. You may choose to configure either an allowed/blocked list, but not both. "
+ },
+ "ApplicationProxyRedirection": {
+ "header": "Application proxy",
+ "title": "Application proxy redirection",
+ "tooltip": "Enable App proxy redirection to give users access to corporate links and on-premise web apps."
+ },
+ "BlockedURLs": {
+ "title": "Blocked URLs",
+ "tooltip": "Specify the sites that are blocked for your users while in their work context. All other sites will be allowed. You may choose to configure either an allowed/blocked list, but not both. "
+ },
+ "Bookmarks": {
+ "header": "Managed bookmarks",
+ "tooltip": "Enter a list of bookmarked URLs for your users to have available when using Microsoft Edge in their work context.",
+ "uRL": "URL"
+ },
+ "HomepageURL": {
+ "header": "Managed homepage",
+ "title": "Homepage shortcut URL",
+ "tooltip": "Configure a homepage shortcut that will appear to users as the first icon beneath the search bar when they open a new tab in Microsoft Edge."
+ },
+ "PersonalContext": {
+ "label": "Redirect restricted sites to personal context",
+ "tooltip": "Configure if users should be allowed to transition to their personal context to open restricted sites."
+ }
+ },
+ "BooleanActions": {
+ "allow": "Allow",
+ "block": "Block",
+ "configured": "Configured",
+ "disable": "Disable",
+ "dontRequire": "Don't Require",
+ "enable": "Enable",
+ "hide": "Hide",
+ "limit": "Limit",
+ "notConfigured": "Not configured",
+ "require": "Require",
+ "show": "Show",
+ "yes": "Yes"
+ },
+ "ArchitectureOptions": {
+ "sixtyFourBit": "64-bit",
+ "thirtyTwoBit": "32-bit"
+ },
+ "WindowsQualityUpdateDaysUntilForcedReboot": {
+ "oneDay": "1 day",
+ "twoDays": "2 days",
+ "zeroDays": "0 days"
+ },
"SoftwareUpdates": {
"BladeTitles": {
"overview": "Overview"
@@ -10800,66 +10878,732 @@
"notScannedYet": "Not scanned yet",
"outOfDateIosDevices": "Out of Date iOS Devices"
},
- "ScheduledAction": {
- "Form": {
- "editBlockActionInfo": "One block action is required for all compliance policies.",
- "graceperiod": "Schedule (days after noncompliance)",
- "graceperiodInfo": "Specify the number of days after noncompliance after which this action should be triggered for the user's device",
- "subtitle": "Specify action parameters",
- "title": "Action parameters"
- },
- "List": {
- "gracePeriodDay": "{0} day after noncompliance",
- "gracePeriodDays": "{0} days after noncompliance",
- "gracePeriodHour": "{0} hour after noncompliance",
- "gracePeriodHours": "{0} hours after noncompliance",
- "gracePeriodMinute": "{0} minute after noncompliance",
- "gracePeriodMinutes": "{0} minutes after noncompliance",
- "immediately": "Immediately",
- "schedule": "Schedule",
- "scheduleInfoBalloon": "Days after noncompliance",
- "subtitle": "Specify the sequence of actions on noncompliant devices",
- "title": "Actions"
- },
- "Notification": {
- "additionalEmailLabel": "Others",
- "additionalRecipients": "Additional recipients (via email)",
- "additionalRecipientsBladeTitle": "Select additional recipients",
- "emailAddressPrompt": "Enter email addresses (separated by commas)",
- "invalidEmail": "Invalid email address",
- "messageTemplate": "Message template",
- "noneSelected": "None selected",
- "notSelected": "Not selected",
- "numSelected": "{0} selected",
- "selected": "Selected"
+ "ConfigurationTypes": {
+ "Table": {
+ "androidDeviceOwnerGeneral": "Device restrictions (device owner)",
+ "androidForWorkGeneral": "Device restrictions (work profile)"
+ },
+ "androidCustom": "Custom",
+ "androidDeviceOwnerGeneral": "Device restrictions",
+ "androidDeviceOwnerPkcs": "PKCS Certificate",
+ "androidDeviceOwnerScep": "SCEP Certificate",
+ "androidDeviceOwnerTrustedCertificate": "Trusted Certificate",
+ "androidDeviceOwnerVpn": "VPN",
+ "androidDeviceOwnerWiFi": "Wi-Fi",
+ "androidEmailProfile": "Email (Samsung KNOX only)",
+ "androidForWorkCustom": "Custom",
+ "androidForWorkEmailProfile": "Email",
+ "androidForWorkGeneral": "Device restrictions",
+ "androidForWorkImportedPFX": "PKCS imported certificate",
+ "androidForWorkOemConfig": "OEMConfig",
+ "androidForWorkPKCS": "PKCS certificate",
+ "androidForWorkSCEP": "SCEP certificate",
+ "androidForWorkTrustedCertificate": "Trusted certificate",
+ "androidForWorkVpn": "VPN",
+ "androidForWorkWiFi": "Wi-Fi",
+ "androidGeneral": "Device restrictions",
+ "androidImportedPFX": "PKCS imported certificate",
+ "androidPKCS": "PKCS certificate",
+ "androidSCEP": "SCEP certificate",
+ "androidTrustedCertificate": "Trusted certificate",
+ "androidVPN": "VPN",
+ "androidWiFi": "Wi-Fi",
+ "androidZebraMx": "MX profile (Zebra only)",
+ "complianceAndroid": "Android compliance policy",
+ "complianceAndroidDeviceOwner": "Fully managed, dedicated, and corporate-owned work profile",
+ "complianceAndroidEnterprise": "Personally-owned work profile",
+ "complianceAndroidForWork": "Android for Work compliance policy",
+ "complianceIos": "iOS compliance policy",
+ "complianceMac": "Mac compliance policy",
+ "complianceWindows10": "Windows 10 and later compliance policy",
+ "complianceWindows10Mobile": "Windows 10 mobile compliance policy",
+ "complianceWindows8": "Windows 8 compliance policy",
+ "complianceWindowsPhone": "Windows Phone compliance policy",
+ "exchangeActiveSync": "Exchange Active Sync",
+ "iosCustom": "Custom",
+ "iosDerivedCredentialAuthenticationConfiguration": "Derived PIV credential",
+ "iosDeviceFeatures": "Device features",
+ "iosEDU": "Education",
+ "iosEducation": "Education",
+ "iosEmailProfile": "Email",
+ "iosGeneral": "Device restrictions",
+ "iosImportedPFX": "PKCS imported certificate",
+ "iosPKCS": "PKCS certificate",
+ "iosPresets": "Presets",
+ "iosSCEP": "SCEP certificate",
+ "iosTrustedCertificate": "Trusted certificate",
+ "iosVPN": "VPN",
+ "iosVPNZscaler": "VPN",
+ "iosWiFi": "Wi-Fi",
+ "macCustom": "Custom",
+ "macDeviceFeatures": "Device features",
+ "macEndpointProtection": "Endpoint protection",
+ "macExtensions": "Extensions",
+ "macGeneral": "Device restrictions",
+ "macImportedPFX": "PKCS imported certificate",
+ "macSCEP": "SCEP certificate",
+ "macTrustedCertificate": "Trusted certificate",
+ "macVPN": "VPN",
+ "macWiFi": "Wi-Fi",
+ "settingsCatalog": "Settings catalog (preview)",
+ "unsupported": "Unsupported",
+ "windows10AdministrativeTemplate": "Administrative Templates (Preview)",
+ "windows10Atp": "Microsoft Defender for Endpoint (desktop devices running Windows 10 or later)",
+ "windows10Custom": "Custom",
+ "windows10DesktopSoftwareUpdate": "Software Updates",
+ "windows10DeviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
+ "windows10EmailProfile": "Email",
+ "windows10EndpointProtection": "Endpoint protection",
+ "windows10EnterpriseDataProtection": "Windows Information Protection",
+ "windows10General": "Device restrictions",
+ "windows10ImportedPFX": "PKCS imported certificate",
+ "windows10Kiosk": "Kiosk",
+ "windows10NetworkBoundary": "Network boundary",
+ "windows10PKCS": "PKCS certificate",
+ "windows10PolicyOverride": "Override Group Policy",
+ "windows10SCEP": "SCEP certificate",
+ "windows10SecureAssessmentProfile": "Education profile",
+ "windows10SharedPC": "Shared multi-user device",
+ "windows10TeamGeneral": "Device restrictions (Windows 10 Team)",
+ "windows10TrustedCertificate": "Trusted certificate",
+ "windows10VPN": "VPN",
+ "windows10WiFi": "Wi-Fi",
+ "windows10WiFiCustom": "Wi-Fi custom",
+ "windows8General": "Device restrictions",
+ "windows8SCEP": "SCEP certificate",
+ "windows8TrustedCertificate": "Trusted certificate",
+ "windows8VPN": "VPN",
+ "windows8WiFi": "Wi-Fi import",
+ "windowsDeliveryOptimization": "Delivery Optimization",
+ "windowsDomainJoin": "Domain Join",
+ "windowsEditionUpgrade": "Edition upgrade and mode switch",
+ "windowsIdentityProtection": "Identity protection",
+ "windowsPhoneCustom": "Custom",
+ "windowsPhoneEmailProfile": "Email",
+ "windowsPhoneGeneral": "Device restrictions",
+ "windowsPhoneImportedPFX": "PKCS imported certificate",
+ "windowsPhoneSCEP": "SCEP certificate",
+ "windowsPhoneTrustedCertificate": "Trusted certificate",
+ "windowsPhoneVPN": "VPN",
+ "IosUpdate": "iOS Update policy"
+ },
+ "OfficeSuiteAppsTab": {
+ "acceptLicenseOnBehalfOfUsersLabel": "Accept the Microsoft Software License Terms on behalf of users",
+ "appSuiteConfigurationLabel": "App suite configuration",
+ "appSuiteInformationLabel": "App suite information",
+ "appsToBeInstalledLabel": "Apps to be installed as part of the suite",
+ "architectureLabel": "Architecture",
+ "architectureTooltip": "Defines whether the 32-bit or 64-bit edition of Microsoft 365 Apps is installed on devices.",
+ "configurationDesignerLabel": "Configuration designer",
+ "configurationFileLabel": "Configuration file",
+ "configurationSettingsFormatLabel": "Configuration settings format",
+ "configureAppSuiteLabel": "Configure app suite",
+ "configuredLabel": "Configured",
+ "currentVersionLabel": "Current version",
+ "currentVersionTooltip": "This is the current version of Office that’s configured in this suite. This value will be updated when a newer version is configured and saved.",
+ "enableMicrosoftSearchAsDefaultTooltip": "Installs a background service that helps determine whether a Microsoft Search in Bing extension for Google Chrome is installed on the device.",
+ "enterXmlDataLabel": "Enter XML data",
+ "languagesLabel": "Languages",
+ "languagesTooltip": "By default, Intune will install Office with the default language of the operating system. Choose any additional languages that you want to install.",
+ "learnMoreText": "Learn more",
+ "newUpdateChannelTooltip": "Defines how often the app is updated with new features.",
+ "noCurrentVersionText": "No current version",
+ "noLanguagesSelectedLabel": "No languages selected",
+ "notConfiguredLabel": "Not configured",
+ "propertiesLabel": "Properties",
+ "removeOtherVersionsLabel": "Remove other versions",
+ "removeOtherVersionsTooltip": "Select Yes to remove other versions of Office (MSI) from user devices.",
+ "selectOfficeAppsLabel": "Select Office apps",
+ "selectOfficeAppsTooltip": "Select the Office 365 apps that you want to install as part of the suite.",
+ "selectOtherOfficeAppsLabel": "Select other Office apps (license required)",
+ "selectOtherOfficeAppsTooltip": "If you own licenses for these additional Office apps you can also assign them with Intune.",
+ "specificVersionLabel": "Specific version",
+ "updateChannelLabel": "Update channel",
+ "updateChannelTooltip": "Defines how often the app is updated with new features.
\nMonthly - Provide users with the newest features of Office as soon as they're available.
\nMonthly Enterprise Channel - Provide users with the newest features of Office once a month, on the second Tuesday of the month.
\nMonthly (Targeted) – Provide an early look at the upcoming Monthly Channel release. It is a supported update channel, and usually is available at least one week ahead of time when it's a Monthly Channel release that contains new features.
\nSemi-Annual - Provide users with new features of Office only a few times a year.
\nSemi-Annual (Targeted) - Provide pilot users and application compatibility testers the opportunity to test the next Semi-Annual.",
+ "useMicrosoftSearchAsDefault": "Install background service for Microsoft Search in Bing",
+ "useSharedComputerActivationLabel": "Use shared computer activation",
+ "useSharedComputerActivationTooltip": "Shared computer activation lets you deploy Microsoft 365 Apps to computers that are used by multiple users. Normally, users can only install and activate Microsoft 365 Apps on a limited number of devices, such as 5 PCs. Using Microsoft 365 Apps with shared computer activation doesn't count against that limit.",
+ "versionToInstallLabel": "Version to install",
+ "versionToInstallTooltip": "Select the version of Office that should be installed.",
+ "xLanguagesSelectedLabel": "{0} language(s) selected",
+ "xmlConfigurationLabel": "XML Configuration"
+ },
+ "EnrollmentRestrictions": {
+ "DeletePayloadLink": {
+ "content": "{0} is included in one or more policy sets. If you delete {0}, you'll no longer be able to assign it via these policy sets. Delete anyway?",
+ "contentWithError": "{0} might be included in one or more policy sets. If you delete {0}, you'll no longer be able to assign it via these policy sets. Delete anyway?",
+ "header": "Are you sure you want to delete this restriction?"
+ },
+ "DeviceLimit": {
+ "description": "Specify the maximum number of devices a user can enroll.",
+ "header": "Device limit restrictions",
+ "info": "Define how many devices each user can enroll."
+ },
+ "DeviceType": {
+ "VersionValidation": {
+ "aOSP": "Must be 1.0 or greater.",
+ "android": "Enter a valid version number. Examples: 5.0, 5.5.1, 6.0.0.1",
+ "androidForWork": "Enter a valid version number. Examples: 5.0, 5.1.1",
+ "iOS": "Enter a valid version number. Examples: 9.0, 10.0, 9.0.2",
+ "mac": "Enter a valid version number. Examples: 10, 10.10, 10.10.1",
+ "min": "Minimum cannot be lower than {0}",
+ "minMax": "Minimum version cannot be greater than maximum version.",
+ "windows": "Must be 10.0 or greater. Leave blank to allow 8.1 devices",
+ "windowsMobile": "Must be 10.0 or greater. Leave blank to allow 8.1 devices"
+ },
+ "allPlatformsBlocked": "All device platforms are blocked. Allow platform enrollment to enable platform configuration.",
+ "blockManufacturerPlaceHolder": "Manufacturer name",
+ "blockManufacturersHeader": "Blocked manufacturers",
+ "cannotRestrict": "Restriction not supported",
+ "configurationDescription": "Specify the platform configuration restrictions that must be met for a device to enroll. Use compliance policies to restrict devices after enrollment. Define versions as major.minor.build. Version restrictions only apply to devices enrolled with the Company Portal. Intune classifies devices as personally-owned by default. Additional action is required to classify devices as corporate-owned.",
+ "configurationDescriptionLabel": "Learn more about setting enrollment restrictions",
+ "configurations": "Configure platforms",
+ "deviceManufacturer": "Device manufacturer",
+ "header": "Device type restrictions",
+ "info": "Define which platforms, versions, and management types can enroll.",
+ "manufacturer": "Manufacturer",
+ "max": "Max",
+ "maxVersion": "Maximum version",
+ "min": "Min",
+ "minVersion": "Minimum version",
+ "newPlatforms": "You have allowed new platforms. Consider updating Platform Configurations.",
+ "personal": "Personally owned",
+ "platform": "Platform",
+ "platformDescription": "You can allow enrollment of the following platforms. Only block platforms you will not support. Allowed platforms can be configured with additional enrollment restrictions.",
+ "platformSettings": "Platform settings",
+ "platforms": "Select platforms",
+ "platformsSelected": "{0} platforms selected",
+ "type": "Type",
+ "versions": "versions",
+ "versionsRange": "Allow min/max range:",
+ "windowsTooltip": "Restricts enrollment through Mobile Device Management. Does not restrict PC agent installation. Only Windows 10 and Windows 11 versions are supported. Leave versions blank to allow Windows 8.1."
+ },
+ "Priority": {
+ "saved": "Restriction Priorities were successfully saved."
+ },
+ "Row": {
+ "announce": "Priority: {0}, Name: {1}, Assigned: {2}"
+ },
+ "Table": {
+ "deployed": "Deployed",
+ "name": "Name",
+ "priority": "Priority"
},
- "block": "Mark device noncompliant",
- "lockDevice": "Lock device (local action)",
- "lockDeviceWithPasscode": "Lock device (local action)",
- "noAction": "No action",
- "noActionRow": "No actions, select 'Add' to add an action",
- "pushNotification": "Send push notification to end user",
- "remoteLock": "Remotely lock the noncompliant device",
- "removeSourceAccessProfile": "Remove source access profile",
- "retire": "Retire the noncompliant device",
- "wipe": "Wipe",
- "emailNotification": "Send email to end user"
- },
- "WIPPinRequirements": {
- "WipLowercaseCharacterPinRequirements": {
- "allow": "Allow the use of lowercase letters in PIN",
- "notAllow": "Do not allow the use of lowercase letters in PIN",
- "requireAtLeastOne": "Require the use of at least one lowercase letter in PIN"
- },
- "WipSpecialCharacterPinRequirements": {
- "allow": "Allow the use of special characters in PIN",
- "notAllow": "Do not allow the use of special characters in PIN",
- "requireAtLeastOne": "Require the use of at least one special character in PIN"
- },
- "WipUppercaseCharacterPinRequirements": {
- "allow": "Allow the use of uppercase letters in PIN",
- "notAllow": "Do not allow the use of uppercase letters in PIN",
- "requireAtLeastOne": "Require the use of at least one uppercase letter in PIN"
- }
- }
+ "Type": {
+ "limit": "Device limit restriction",
+ "type": "Device type restriction"
+ },
+ "allUsers": "All Users",
+ "androidRestrictions": "Android restrictions",
+ "create": "Create restriction",
+ "defaultLimitDescription": "This is the default Device Limit Restriction applied with lowest priority to all users regardless of group membership.",
+ "defaultTypeDescription": "This is the default Device Type Restriction applied with lowest priority to all users regardless of group membership.",
+ "defaultWhfbDescription": "This is the default Windows Hello for Business configuration applied with the lowest priority to all users regardless of group membership.",
+ "deleteMessage": "Affected users will be restricted by the next highest priority restriction assigned or the default restriction if no other restriction is assigned.",
+ "deleteTitle": "Are you sure you want to delete {0} restriction?",
+ "descriptionHint": "Short paragraph describing the business use or restriction level characterized by the restriction's settings.",
+ "edit": "Edit restriction",
+ "info": "A device must comply with the highest priority enrollment restrictions assigned to its user. You can drag a device restriction to change its priority. Default restrictions are lowest priority for all users and govern userless enrollments. Default restrictions may be edited, but not deleted.",
+ "iosRestrictions": "iOS restrictions",
+ "mDM": "MDM",
+ "macRestrictions": "MacOS restrictions",
+ "maxVersion": "Max Version",
+ "minVersion": "Min Version",
+ "nameHint": "This will be the primary attribute visible for identifying the restriction set.",
+ "noAssignmentsStatusBar": "Assign restriction to at least one group. Click Properties.",
+ "notFound": "Restriction not found. It may have already been deleted.",
+ "personallyOwned": "Personally owned devices",
+ "restriction": "Restriction",
+ "restrictionLowerCase": "restriction",
+ "restrictionType": "Restriction type",
+ "selectType": "Select restriction type",
+ "selectValidation": "Please select a platform",
+ "typeHint": "Choose Device Type Restriction to restrict device properties. Choose Device Limit Restriction to restrict number of devices per-user.",
+ "typeRequired": "Restriction type is required.",
+ "winPhoneRestrictions": "Windows Phone restrictions",
+ "windowsRestrictions": "Windows restrictions"
+ },
+ "Titles": {
+ "ChromeOs": {
+ "devices": "Chrome OS devices"
+ },
+ "ManagedDesktop": {
+ "adminContacts": "Admin contacts",
+ "appPackaging": "App packaging",
+ "devices": "Devices",
+ "feedback": "Feedback",
+ "gettingStarted": "Getting started",
+ "messages": "Messages",
+ "onlineResources": "Online resources",
+ "serviceRequests": "Service requests",
+ "settings": "Settings",
+ "tenantEnrollment": "Tenant enrollment"
+ },
+ "actions": "Actions for Non-Compliance",
+ "advancedExchangeSettings": "Exchange online settings",
+ "advancedThreatProtection": "Microsoft Defender for Endpoint",
+ "allApps": "All apps",
+ "allDevices": "All devices",
+ "androidFotaDeployments": "Android FOTA deployments",
+ "appBundles": "App Bundles",
+ "appCategories": "App categories",
+ "appConfigPolicies": "App configuration policies",
+ "appInstallStatus": "App install status",
+ "appLicences": "App licenses",
+ "appProtectionPolicies": "App protection policies",
+ "appProtectionStatus": "App protection status",
+ "appSelectiveWipe": "App selective wipe",
+ "appleVppTokens": "Apple VPP Tokens",
+ "apps": "Apps",
+ "assign": "Assignments",
+ "assignedPermissions": "Assigned permissions",
+ "assignedRoles": "Assigned roles",
+ "autopilotDeploymentReport": "Autopilot deployments (preview)",
+ "brandingAndCustomization": "Customization",
+ "cartProfiles": "Cart profiles",
+ "certificateConnectors": "Certificate connectors",
+ "chromeEnterprise": "Chrome Enterprise",
+ "compliancePolicies": "Compliance policies",
+ "complianceScriptManagement": "Scripts",
+ "complianceScriptManagementPreview": "Scripts (Preview)",
+ "complianceSettings": "Compliance policy settings",
+ "conditionStatements": "Condition statements",
+ "conditions": "Locations",
+ "configMgr": "Microsoft Endpoint Configuration Manager",
+ "configurationProfiles": "Configuration profiles",
+ "configurationProfilesPreview": "Configuration profiles (preview)",
+ "connectorsAndTokens": "Connectors and tokens",
+ "corporateDeviceIdentifiers": "Corporate device identifiers",
+ "customAttributes": "Custom attributes",
+ "customNotifications": "Custom notifications",
+ "deploymentSettings": "Deployment settings",
+ "derivedCredentials": "Derived Credentials",
+ "deviceActions": "Device actions",
+ "deviceCategories": "Device categories",
+ "deviceCleanUp": "Device clean-up rules",
+ "deviceEnrollmentManagers": "Device enrollment managers",
+ "deviceExecutionStatus": "Device status",
+ "deviceLimitEnrollmentRestrictions": "Enrollment device limit restrictions",
+ "deviceTypeEnrollmentRestrictions": "Enrollment device platform restrictions",
+ "devices": "Devices",
+ "discoveredApps": "Discovered apps",
+ "embeddedSIM": "eSIM cellular profiles (Preview)",
+ "enrollDevices": "Enroll devices",
+ "enrollmentFailures": "Enrollment failures",
+ "enrollmentNotifications": "Enrollment notifications (Preview)",
+ "enrollmentRestrictions": "Enrollment restrictions",
+ "exchangeActiveSync": "Exchange ActiveSync",
+ "exchangeServiceConnectors": "Exchange service connectors",
+ "failuresForFeatureUpdates": "Feature update failures (Preview)",
+ "failuresForQualityUpdates": "Windows Expedited update failures (Preview)",
+ "featureFlighting": "Feature flighting",
+ "featureUpdateDeployments": "Feature updates for Windows 10 and later (Preview)",
+ "flighting": "Flighting",
+ "fotaUpdate": "Firmware over-the-air update",
+ "groupPolicy": "Administrative Templates",
+ "groupPolicyAnalytics": "Group policy analytics",
+ "helpSupport": "Help and support",
+ "helpSupportReplacement": "Help and support ({0})",
+ "iOSAppProvisioning": "iOS app provisioning profiles",
+ "incompleteUserEnrollments": "Incomplete user enrollments",
+ "intuneRemoteAssistance": "Remote help (preview)",
+ "iosUpdates": "Update policies for iOS/iPadOS",
+ "legacyPcManagement": "Legacy PC management",
+ "macOSSoftwareUpdate": "Update policies for macOS",
+ "macOSSoftwareUpdateAccountSummaries": "Installation status for macOS devices",
+ "macOSSoftwareUpdateCategorySummaries": "Software updates summary",
+ "macOSSoftwareUpdateStateSummaries": "updates",
+ "managedGooglePlay": "Managed Google Play",
+ "msfb": "Microsoft Store for Business",
+ "myPermissions": "My permissions",
+ "notifications": "Notifications",
+ "officeApps": "Office apps",
+ "officeProPlusPolicies": "Policies for Office apps",
+ "onPremise": "On Premise",
+ "onPremisesConnector": "Exchange ActiveSync on-premises connector",
+ "onPremisesDeviceAccess": "Exchange ActiveSync devices",
+ "onPremisesManageAccess": "Exchange on-premises access",
+ "outOfDateIosDevices": "Installation failures for iOS devices",
+ "overview": "Overview",
+ "partnerDeviceManagement": "Partner device management",
+ "perUpdateRingDeploymentState": "Per update ring deployment state",
+ "permissions": "Permissions",
+ "platformApps": "{0} apps",
+ "platformDevices": "{0} devices",
+ "platformEnrollment": "{0} enrollment",
+ "policies": "Policies",
+ "previewMDMDevices": "All managed devices (Preview)",
+ "profiles": "Profiles",
+ "properties": "Properties",
+ "reports": "Reports",
+ "retireNoncompliantDevices": "Retire noncompliant devices",
+ "retireNoncompliantDevicesPreview": "Retire noncompliant devices (preview)",
+ "role": "Role",
+ "scriptManagement": "Scripts",
+ "securityBaselines": "Security baselines",
+ "serviceToServiceConnector": "Exchange online connector",
+ "shellScripts": "Shell scripts",
+ "teamViewerConnector": "TeamViewer connector",
+ "telecomeExpenseManagement": "Telecom expense management",
+ "tenantAdmin": "Tenant admin",
+ "tenantAdministration": "Tenant administration",
+ "termsAndConditions": "Terms and conditions",
+ "titles": "Titles",
+ "troubleshootSupport": "Troubleshooting + support",
+ "user": "User",
+ "userExecutionStatus": "User status",
+ "warranty": "Warranty vendors",
+ "wdacSupplementalPolicies": "S mode supplemental policies",
+ "windows10DriverUpdate": "Driver updates for Windows 10 and later (Preview)",
+ "windows10QualityUpdate": "Quality updates for Windows 10 and later (Preview)",
+ "windows10UpdateRings": "Update rings for Windows 10 and later",
+ "windows10XPolicyFailures": "Windows 10X policy failures",
+ "windowsEnterpriseCertificate": "Windows enterprise certificate",
+ "windowsManagement": "PowerShell scripts",
+ "windowsSideLoadingKeys": "Windows side loading keys",
+ "windowsSymantecCertificate": "Windows DigiCert certificate",
+ "windowsThreatReport": "Threat agent status"
+ },
+ "ScopeTypes": {
+ "allDevices": "All Devices",
+ "allUsers": "All Users",
+ "allUsersAndDevices": "All Users & All Devices",
+ "selectedGroups": "Selected Groups"
+ },
+ "OfficeApplicationType": {
+ "access": "Access",
+ "bing": "Microsoft Search as default",
+ "excel": "Excel",
+ "groove": "OneDrive (Groove)",
+ "lync": "Skype for Business",
+ "oneDrive": "OneDrive Desktop",
+ "oneNote": "OneNote",
+ "outlook": "Outlook",
+ "powerPoint": "PowerPoint",
+ "publisher": "Publisher",
+ "teams": "Teams",
+ "word": "Word"
+ },
+ "ApplicableDeviceType": {
+ "iPad": "iPad",
+ "iPhoneAndIPod": "iPhone and iPod"
+ },
+ "Assignment": {
+ "AutoUpdateMode": {
+ "default": "Default",
+ "header": "Update Priority",
+ "postponed": "Postponed",
+ "priority": "High Priority"
+ },
+ "DeliveryOptimizationPriority": {
+ "backgroundNormal": "Background",
+ "displayText": "Content download in {0}",
+ "foreground": "Foreground",
+ "header": "Delivery optimization priority"
+ },
+ "RestartGracePeriod": {
+ "allowSnooze": "Allow user to snooze the restart notification",
+ "countdownDialog": "Select when to display the restart countdown dialog box before the restart occurs (minutes)",
+ "durationInMinutes": "Device restart grace period (minutes)",
+ "snoozeDurationInMinutes": "Select the snooze duration (minutes)"
+ },
+ "SoftwareInstallationTime": {
+ "TimeZone": {
+ "label": "Time zone",
+ "local": "Device time zone",
+ "utc": "UTC"
+ },
+ "dateAndTimeLabel": "Date and time",
+ "deadlineTimeColumnLabel": "Installation deadline",
+ "deadlineTimeDatePickerErrorMessage": "Selected date must be after the available date",
+ "deadlineTimeLabel": "App installation deadline",
+ "defaultTime": "As soon as possible",
+ "infoText": "This application will be available as soon as it has been deployed, unless you specify an availability time below. If this is a required application, you may specify the installation deadline.",
+ "specificTime": "A specific date and time",
+ "startTimeColumnLabel": "Availability",
+ "startTimeDatePickerErrorMessage": "Selected date must be before the deadline date",
+ "startTimeLabel": "App availability"
+ },
+ "restartGracePeriodHeader": "Restart grace period",
+ "restartGracePeriodLabel": "Device restart grace period",
+ "summaryTitle": "End user experience"
+ },
+ "EnrollmentType": {
+ "devicesWithEnrollment": "Managed devices",
+ "devicesWithoutEnrollment": "Managed apps"
+ },
+ "PolicySet": {
+ "appManagement": "Application management",
+ "assignments": "Assignments",
+ "basics": "Basics",
+ "deviceEnrollment": "Device enrollment",
+ "deviceManagement": "Device management",
+ "scopeTags": "Scope tags",
+ "appConfigurationTitle": "App configuration policies",
+ "appProtectionTitle": "App protection policies",
+ "appTitle": "Apps",
+ "iOSAppProvisioningTitle": "iOS app provisioning profiles",
+ "deviceLimitRestrictionTitle": "Device limit restrictions",
+ "deviceTypeRestrictionTitle": "Device type restrictions",
+ "enrollmentStatusSettingTitle": "Enrollment status pages",
+ "windowsAutopilotDeploymentProfileTitle": "Windows autopilot deployment profiles",
+ "deviceComplianceTitle": "Device compliance policies",
+ "deviceConfigurationTitle": "Device configuration profiles",
+ "powershellScriptTitle": "Powershell scripts"
+ },
+ "AzureIAMCommon": {
+ "CountryNames": {
+ "countryNameNR": "Nauru",
+ "countryNameBH": "Bahrain",
+ "countryNameZA": "South Africa",
+ "countryNameJO": "Jordan",
+ "countryNameSD": "Sudan",
+ "countryNameNU": "Niue",
+ "countryNameCZ": "Czech Republic",
+ "countryNameLT": "Lithuania",
+ "countryNameTK": "Tokelau",
+ "countryNameEC": "Ecuador",
+ "countryNameVU": "Vanuatu",
+ "countryNameUG": "Uganda",
+ "countryNameLI": "Liechtenstein",
+ "countryNameHK": "Hong Kong SAR",
+ "countryNameGH": "Ghana",
+ "countryNameSA": "Saudi Arabia",
+ "countryNamePG": "Papua New Guinea",
+ "countryNameBW": "Botswana",
+ "countryNameDG": "Diego Garcia",
+ "countryNameIN": "India",
+ "countryNameHN": "Honduras",
+ "countryNameRO": "Romania",
+ "countryNameKZ": "Kazakhstan",
+ "countryNameLC": "Saint Lucia",
+ "countryNameGE": "Georgia",
+ "countryNameTT": "Trinidad and Tobago",
+ "countryNameMP": "Northern Mariana Islands",
+ "countryNameMV": "Maldives",
+ "countryNameFI": "Finland",
+ "countryNameNO": "Norway",
+ "countryNameEE": "Estonia",
+ "countryNameVE": "Venezuela",
+ "countryNameUZ": "Uzbekistan",
+ "countryNameME": "Montenegro",
+ "countryNameTJ": "Tajikistan",
+ "countryNameAW": "Aruba",
+ "countryNameFR": "France",
+ "countryNameOM": "Oman",
+ "countryNameAO": "Angola",
+ "countryNameIT": "Italy",
+ "countryNameAZ": "Azerbaijan",
+ "countryNameKG": "Kyrgyzstan",
+ "countryNameWF": "Wallis and Futuna",
+ "countryNameTL": "Timor-Leste",
+ "countryNameFK": "Falkland Islands (Islas Malvinas)",
+ "countryNameGY": "Guyana",
+ "countryNameSS": "South Sudan",
+ "countryNameMM": "Myanmar",
+ "countryNameHT": "Haiti",
+ "countryNameSY": "Syria",
+ "countryNameMD": "Moldova",
+ "countryNameVC": "Saint Vincent and the Grenadines",
+ "countryNameID": "Indonesia",
+ "countryNameRE": "Reunion",
+ "countryNameER": "Eritrea",
+ "countryNameMK": "North Macedonia",
+ "countryNameTG": "Togo",
+ "countryNamePF": "French Polynesia",
+ "countryNameKY": "Cayman Islands",
+ "countryNameIO": "British Indian Ocean Territory",
+ "countryNameRU": "Russia",
+ "countryNameMA": "Morocco",
+ "countryNameAU": "Australia",
+ "countryNameBO": "Bolivia",
+ "countryNameVA": "Holy See (Vatican City State)",
+ "countryNameVG": "Virgin Islands, British",
+ "countryNameFM": "Micronesia",
+ "countryNameAQ": "Antarctica",
+ "countryNameZM": "Zambia",
+ "countryNameBR": "Brazil",
+ "countryNameIS": "Iceland",
+ "countryNamePE": "Peru",
+ "countryNameBG": "Bulgaria",
+ "countryNamePR": "Puerto Rico",
+ "countryNameGI": "Gibraltar",
+ "countryNameBS": "Bahamas, The",
+ "countryNameJE": "Jersey",
+ "countryNameMO": "Macao SAR",
+ "countryNameRW": "Rwanda",
+ "countryNameAS": "American Samoa",
+ "countryNameBQ": "Bonaire, Sint Eustatius, and Saba",
+ "countryNameMF": "Saint Martin",
+ "countryNameTM": "Turkmenistan",
+ "countryNameML": "Mali",
+ "countryNameTO": "Tonga",
+ "countryNameNC": "New Caledonia",
+ "countryNameAC": "Ascension Island",
+ "countryNameBN": "Brunei",
+ "countryNameBD": "Bangladesh",
+ "countryNameMW": "Malawi",
+ "countryNameGM": "Gambia, The",
+ "countryNameGA": "Gabon",
+ "countryNameCA": "Canada",
+ "countryNameSH": "Saint Helena",
+ "countryNameYT": "Mayotte",
+ "countryNameMN": "Mongolia",
+ "countryNamePA": "Panama",
+ "countryNameCM": "Cameroon",
+ "countryNameNE": "Niger",
+ "countryNameCW": "Curaçao",
+ "countryNameJP": "Japan",
+ "countryNameCY": "Cyprus",
+ "countryNameCD": "Democratic Republic of Congo",
+ "countryNameTN": "Tunisia",
+ "countryNameTR": "Turkey",
+ "countryNameWS": "Samoa",
+ "countryNameSE": "Sweden",
+ "countryNameXK": "Kosovo",
+ "countryNameKH": "Cambodia",
+ "countryNamePL": "Poland",
+ "countryNameDZ": "Algeria",
+ "countryNameLR": "Liberia",
+ "countryNameSO": "Somalia",
+ "countryNameDM": "Dominica",
+ "countryNameEG": "Egypt",
+ "countryNameGF": "French Guiana",
+ "countryNameNZ": "New Zealand",
+ "countryNamePS": "Palestinian Authority",
+ "countryNameIL": "Israel",
+ "countryNameSL": "Sierra Leone",
+ "countryNameGR": "Greece",
+ "countryNameNG": "Nigeria",
+ "countryNameMR": "Mauritania",
+ "countryNameVI": "Virgin Islands, U.S.",
+ "countryNameGQ": "Equatorial Guinea",
+ "countryNameMX": "Mexico",
+ "countryNameDJ": "Djibouti",
+ "countryNameGN": "Guinea",
+ "countryNameCN": "China",
+ "countryNameMZ": "Mozambique",
+ "countryNameBV": "Bouvet Island",
+ "countryNameNF": "Norfolk Island",
+ "countryNameTZ": "Tanzania",
+ "countryNameAI": "Anguilla",
+ "countryNameGS": "South Georgia and the South Sandwich Islands",
+ "countryNameRS": "Serbia",
+ "countryNameCC": "Cocos (Keeling) Islands",
+ "countryNameNA": "Namibia",
+ "countryNameDE": "Germany",
+ "countryNameCG": "Republic of Congo",
+ "countryNameKW": "Kuwait",
+ "countryNameMH": "Marshall Islands",
+ "countryNameVN": "Vietnam",
+ "countryNameBY": "Belarus",
+ "countryNameMY": "Malaysia",
+ "countryNameST": "São Tomé and Príncipe",
+ "countryNameLS": "Lesotho",
+ "countryNameBI": "Burundi",
+ "countryNameTD": "Chad",
+ "countryNameCX": "Christmas Island",
+ "countryNameIR": "Iran",
+ "countryNameTV": "Tuvalu",
+ "countryNameGW": "Guinea-Bissau",
+ "countryNameUA": "Ukraine",
+ "countryNameCU": "Cuba",
+ "countryNameCO": "Colombia",
+ "countryNameNI": "Nicaragua",
+ "countryNameHR": "Croatia",
+ "countryNameSC": "Seychelles",
+ "countryNameNL": "Netherlands",
+ "countryNameUM": "US Minor Outlying Islands",
+ "countryNameIM": "Isle of Man",
+ "countryNameFJ": "Fiji",
+ "countryNameSR": "Suriname",
+ "countryNameGT": "Guatemala",
+ "countryNameSM": "San Marino",
+ "countryNameLA": "Laos",
+ "countryNameGB": "United Kingdom",
+ "countryNameBB": "Barbados",
+ "countryNameSI": "Slovenia",
+ "countryNameAM": "Armenia",
+ "countryNameAR": "Argentina",
+ "countryNamePM": "Saint Pierre and Miquelon",
+ "countryNameTF": "French Southern and Antarctic Lands",
+ "countryNameDO": "Dominican Republic",
+ "countryNameZW": "Zimbabwe",
+ "countryNameMQ": "Martinique",
+ "countryNamePT": "Portugal",
+ "countryNameCF": "Central African Republic",
+ "countryNameBE": "Belgium",
+ "countryNameKM": "Comoros",
+ "countryNameLY": "Libya",
+ "countryNameIE": "Ireland",
+ "countryNameKP": "North Korea",
+ "countryNameGG": "Guernsey",
+ "countryNameSK": "Slovakia",
+ "countryNameTC": "Turks and Caicos Islands",
+ "countryNameNP": "Nepal",
+ "countryNameBF": "Burkina Faso",
+ "countryNameYE": "Yemen",
+ "countryNameBA": "Bosnia and Herzegovina",
+ "countryNameGP": "Guadeloupe",
+ "countryNameMS": "Montserrat",
+ "countryNameCL": "Chile",
+ "countryNameIQ": "Iraq",
+ "countryNameSJ": "Svalbard and Jan Mayen Island",
+ "countryNameAX": "Åland Islands",
+ "countryNameKE": "Kenya",
+ "countryNameGU": "Guam",
+ "countryNameBM": "Bermuda",
+ "countryNameFO": "Faroe Islands",
+ "countryNameBL": "Saint Barthélemy",
+ "countryNameLB": "Lebanon",
+ "countryNameJM": "Jamaica",
+ "countryNameAF": "Afghanistan",
+ "countryNameES": "Spain",
+ "countryNameMC": "Monaco",
+ "countryNameSG": "Singapore",
+ "countryNameAL": "Albania",
+ "countryNameSN": "Senegal",
+ "countryNameSZ": "Swaziland",
+ "countryNameBZ": "Belize",
+ "countryNameCI": "Côte d’Ivoire",
+ "countryNameTW": "Taiwan",
+ "countryNameUY": "Uruguay",
+ "countryNameCK": "Cook Islands",
+ "countryNameTH": "Thailand",
+ "countryNameHM": "Heard Island and McDonald Islands",
+ "countryNameGD": "Grenada",
+ "countryNameUS": "United States",
+ "countryNameAT": "Austria",
+ "countryNameKR": "Korea, Republic of",
+ "countryNamePK": "Pakistan",
+ "countryNameDK": "Denmark",
+ "countryNameSV": "El Salvador",
+ "countryNamePW": "Palau",
+ "countryNameET": "Ethiopia",
+ "countryNameMG": "Madagascar",
+ "countryNameCR": "Costa Rica",
+ "countryNameLU": "Luxembourg",
+ "countryNameQA": "Qatar",
+ "countryNameBT": "Bhutan",
+ "countryNameSB": "Solomon Islands",
+ "countryNameAE": "United Arab Emirates",
+ "countryNameAD": "Andorra",
+ "countryNameCV": "Cabo Verde",
+ "countryNameAG": "Antigua and Barbuda",
+ "countryNameMU": "Mauritius",
+ "countryNameHU": "Hungary",
+ "countryNameSX": "Sint Maarten",
+ "countryNameCH": "Switzerland",
+ "countryNamePN": "Pitcairn Islands",
+ "countryNameGL": "Greenland",
+ "countryNamePH": "Philippines",
+ "countryNameMT": "Malta",
+ "countryNameKN": "Saint Kitts and Nevis",
+ "countryNameLK": "Sri Lanka",
+ "countryNameKI": "Kiribati",
+ "countryNameBJ": "Benin",
+ "countryNameLV": "Latvia",
+ "countryNamePY": "Paraguay"
+ }
+ }
}
diff --git a/Documentation/Strings-ru.json b/Documentation/Strings-ru.json
index a9db613..8b74da5 100644
--- a/Documentation/Strings-ru.json
+++ b/Documentation/Strings-ru.json
@@ -1,1842 +1,4 @@
{
- "InstallContextType": {
- "device": "Устройство",
- "deviceContext": "Контекст устройства",
- "user": "Пользователь",
- "userContext": "Контекст пользователя"
- },
- "WipPolicySettings": {
- "addNetworkBoundary": "Добавить границу сети",
- "addNetworkBoundaryButton": "Добавить границу сети...",
- "allowWindowsSearch": "Разрешить службе Windows Search искать зашифрованные данные предприятия и приложения Магазина",
- "authoritativeIpRanges": "Список диапазонов корпоративных IP-адресов является надежным (не вести автоматическое обнаружение)",
- "authoritativeProxyServers": "Список корпоративных прокси-серверов является надежным (не вести автоматическое обнаружение)",
- "boundaryType": "Тип границ",
- "cloudResources": "Облачные ресурсы",
- "corporateIdentity": "Удостоверение организации",
- "dataRecoveryCert": "Отправить сертификат агента восстановления данных (DRA), чтобы обеспечить расшифровку зашифрованных данных",
- "editNetworkBoundary": "Изменить границу сети",
- "enrollmentState": "Состояние регистрации",
- "iPv4Ranges": "Диапазоны IPv4-адресов",
- "iPv6Ranges": "Диапазоны IPv6-адресов",
- "internalProxyServers": "Внутренние прокси-серверы",
- "maxInactivityTime": "Максимальное количество времени (в минутах) при простое до блокировки устройства с помощью ПИН-кода или пароля",
- "maxPasswordAttempts": "Число неудачных попыток проверки подлинности до очистки устройства",
- "mdmDiscoveryUrl": "URL-адрес обнаружения MDM",
- "mdmRequiredSettingsInfo": "Эта политика применяется только к юбилейному обновлению Windows 10 и более поздним версиям. Она использует Windows Information Protection (WIP), чтобы применить защиту.",
- "minimumPinLength": "Задать минимальное число символов для ПИН-кода",
- "name": "Имя",
- "networkBoundariesGridEmptyText": "Здесь будут показаны все границы сети, которые вы добавите.",
- "networkBoundary": "Граница сети",
- "networkDomainNames": "Сетевые домены",
- "neutralResources": "Нейтральные ресурсы",
- "passportForWork": "Использовать Windows Hello для бизнеса для входа в Windows",
- "pinExpiration": "Укажите интервал времени (в днях), в течение которого можно использовать ПИН-код до того, как система потребует его изменить.",
- "pinHistory": "Укажите число запрещенных к использованию предыдущих значений ПИН-кода, связываемых с учетной записью пользователя",
- "pinLowercaseLetters": "Настроить использование строчных букв в ПИН-коде Windows Hello для бизнеса.",
- "pinSpecialCharacters": "Настроить использование специальных символов в ПИН-коде Windows Hello для бизнеса.",
- "pinUppercaseLetters": "Настроить использование прописных букы в ПИН-коде Windows Hello для бизнеса.",
- "protectUnderLock": "Препятствовать доступу приложений к данным предприятия, если устройство заблокировано. Применимо только к Windows 10 Mobile",
- "protectedDomainNames": "Защищенные домены",
- "proxyServers": "Прокси-серверы",
- "requireAppPin": "Отключить ПИН-код приложения, если ПИН-код устройства управляемый",
- "requiredSettings": "Обязательные параметры",
- "requiredSettingsInfo": "Изменение области или удаление этой политики приведет к расшифровке корпоративных данных.",
- "revokeOnMdmHandoff": "Отозвать доступ к защищенным данным при регистрации устройства в MDM",
- "revokeOnUnenroll": "Отзывать ключи шифрования при отмене регистрации",
- "rmsTemplateForEdp": "Укажите идентификатор шаблона, который следует использовать для Azure RMS.",
- "showWipIcon": "Показать значок защиты корпоративных данных",
- "type": "Тип",
- "useRmsForWip": "Использовать Azure RMS для WIP",
- "value": "Значение",
- "weRequiredSettingsInfo": "Эта политика применяется только к обновлению Windows 10 Creators Update или более поздним версиям. Она использует Windows Information Protection (WIP) и Windows MAM, чтобы применить защиту.",
- "wipProtectionMode": "Режим защиты Windows Information Protection",
- "withEnrollment": "С регистрацией",
- "withoutEnrollment": "Без регистрации"
- },
- "EdgeAppConfig": {
- "AllowedURLs": {
- "title": "Разрешенные URL-адреса",
- "tooltip": "Укажите сайты, разрешенные для доступа пользователей в рабочем контексте. Доступ к другим сайтам будет запрещен. Можно настроить либо список разрешенных, либо список заблокированных сайтов, но не оба одновременно. "
- },
- "ApplicationProxyRedirection": {
- "header": "Прокси приложения",
- "title": "Перенаправление прокси приложения",
- "tooltip": "Включите перенаправление прокси приложения, чтобы предоставить пользователям доступ к корпоративным ссылкам и локальным веб-приложениям."
- },
- "BlockedURLs": {
- "title": "Заблокированные URL-адреса",
- "tooltip": "Укажите сайты, заблокированные для доступа пользователей в рабочем контексте. Доступ к другим сайтам будет разрешен. Можно настроить либо список разрешенных, либо список заблокированных сайтов, но не оба одновременно. "
- },
- "Bookmarks": {
- "header": "Управляемые закладки",
- "tooltip": "Введите список URL-адресов с закладками, которые будут доступны пользователям при использовании Microsoft Edge в рабочем контексте.",
- "uRL": "URL-адрес"
- },
- "HomepageURL": {
- "header": "Управляемая домашняя страница",
- "title": "URL-адрес ярлыка домашней страницы",
- "tooltip": "Настройте ярлык домашней страницы, который будет первым значком, отображаемым под панелью поиска при открытии новой вкладки в Microsoft Edge"
- },
- "PersonalContext": {
- "label": "Перенаправление сайтов с ограниченным доступом в личный контекст",
- "tooltip": "Укажите, разрешено ли пользователям переходить в свой персональный контекст, чтобы открывать запрещенные сайты."
- }
- },
- "AzureIAM": {
- "AdrsUserActionSelectionWarning": {
- "conditions": "Условия, требующие регистрации устройства, недоступны с действием пользователя \"Регистрация или присоединение устройств\".",
- "message": "Параметр \"Требовать многофакторную проверку подлинности\" можно применять только в политиках, созданных для пользовательского действия \"Зарегистрировать или присоединить устройства\".{0}"
- },
- "AuthContext": {
- "Included": {
- "none": "Облачные приложения, действия или контексты проверки подлинности не выбраны.",
- "plural": "Включено контекстов проверки подлинности: {0}.",
- "singular": "Включен один контекст проверки подлинности."
- },
- "InfoBlade": {
- "createTitle": "Добавление контекста проверки подлинности",
- "descPlaceholder": "Добавьте описание для контекста проверки подлинности",
- "modifyTitle": "Изменение контекста проверки подлинности",
- "namePlaceholder": "Пример: доверенное расположение, доверенное устройство, строгая авторизация",
- "publishDesc": "Публикация в приложениях сделает контекст проверки подлинности доступным для использования приложениями. Публикация после завершения настройки политики условного доступа для тега. [Дополнительные сведения][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150966.",
- "publishLabel": "Публикация в приложениях",
- "titleDesc": "Настройте контекст проверки подлинности, который будет использоваться для защиты данных и действий приложения. Используйте имена и описания, которые могут быть понятны администраторам приложений. [Дополнительные сведения][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150965."
- },
- "Notify": {
- "failure": "Не удалось обновить {0}",
- "modifying": "Изменение: {0}.",
- "success": "Изменено: {0}."
- },
- "WhatIf": {
- "selected": "Включен контекст проверки подлинности"
- },
- "addNewStepUp": "Новый контекст проверки подлинности",
- "checkBoxInfo": "Выберите контексты проверки подлинности, к которым будет применяться эта политика.",
- "configure": "Настройка контекстов проверки подлинности",
- "createCA": "Назначение политик условного доступа для контекста проверки подлинности",
- "dataGrid": "Список контекстов проверки подлинности",
- "description": "Описание",
- "documentation": "Документация",
- "getStarted": "Начало работы",
- "label": "Контекст проверки подлинности (предварительная версия)",
- "menuLabel": "Контекст проверки подлинности (предварительный просмотр)",
- "name": "Имя",
- "noAuthContextSet": "Контекстов проверки подлинности не существует",
- "noData": "Нет контекстов проверки подлинности для отображения.",
- "selectionInfo": "Контекст проверки подлинности используется для защиты данных и действий в таких приложениях, как SharePoint и Microsoft Cloud App Security.",
- "step": "Шаг",
- "tabDescription": "Управление контекстом проверки подлинности для защиты данных и действий в ваших приложениях. [Дополнительные сведения][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150965.",
- "tagResources": "Установка тегов ресурсов в контексте проверки подлинности"
- },
- "AuthenticationStrength": {
- "Mode": {
- "deviceBasedPush": "Microsoft Authenticator (вход с помощью телефона)",
- "deviceBasedPushFido2X509Certificate": "Microsoft Authenticator (вход с помощью телефона) + Fido 2 + проверка подлинности на основе сертификата",
- "deviceBasedPushX509CertificateSingleFactor": "Microsoft Authenticator (вход с помощью телефона) + Fido 2 + проверка подлинности на основе сертификата (однофакторная)",
- "email": "Отправить одноразовый секретный код по электронной почте",
- "emailOtp": "Одноразовый пароль электронной почты",
- "federatedMultiFactor": "Федеративная многофакторная",
- "federatedSingleFactor": "Один федеративный фактор",
- "federatedSingleFactorFederatedMultiFactor": "Федеративная однофакторная + федеративная многофакторная",
- "fido2": "Ключ безопасности FIDO 2",
- "fido2X509CertificateSingleFactor": "Ключ безопасности FIDO 2 + проверка подлинности на основе сертификата (однофакторная)",
- "hardwareOath": "Одноразовый пароль оборудования",
- "hardwareOathX509CertificateSingleFactor": "Аппаратный одноразовый пароль + проверка подлинности на основе сертификата (однофакторная)",
- "microsoftAuthenticatorPSIX509CertificateSingleFactor": "Microsoft Authenticator (вход с помощью телефона) + проверка подлинности на основе сертификата (однофакторная)",
- "microsoftAuthenticatorPsi": "Microsoft Authenticator (вход с помощью телефона)",
- "microsoftAuthenticatorPush": "Microsoft Authenticator (push-уведомление)",
- "microsoftAuthenticatorPushX509CertificateSingleFactor": "Microsoft Authenticator (push-уведомление) + проверка подлинности на основе сертификата (однофакторная)",
- "none": "Нет",
- "password": "Пароль",
- "passwordDeviceBasedPush": "Пароль + Microsoft Authenticator (вход с помощью телефона)",
- "passwordFido2": "Пароль + ключ безопасности FIDO 2",
- "passwordHardwareOath": "Пароль + аппаратный одноразовый пароль",
- "passwordMicrosoftAuthenticatorPSI": "Пароль + Microsoft Authenticator (вход с помощью телефона)",
- "passwordMicrosoftAuthenticatorPush": "Пароль + Microsoft Authenticator (push-уведомление)",
- "passwordSms": "Пароль + SMS",
- "passwordSoftwareOath": "Пароль + программный одноразовый пароль",
- "passwordTemporaryAccessPassMultiUse": "Пароль + временный секретный код (многоразовый)",
- "passwordTemporaryAccessPassOneTime": "Пароль + временный секретный код (одноразовый)",
- "passwordVoice": "Пароль + голос",
- "sms": "SMS",
- "smsSignIn": "Вход через SMS",
- "smsX509CertificateSingleFactor": "SMS + проверка подлинности на основе сертификата (однофакторная)",
- "softwareOath": "Программный одноразовый пароль",
- "softwareOathX509CertificateSingleFactor": "Программный одноразовый пароль + проверка подлинности на основе сертификата (однофакторная)",
- "temporaryAccessPassMultiUse": "Временный секретный код (многоразовый)",
- "temporaryAccessPassMultiUseX509CertificateSingleFactor": "Временный секретный код (многоразовый) + проверка подлинности на основе сертификата (однофакторная)",
- "temporaryAccessPassOneTime": "Временный секретный код (одноразовый)",
- "temporaryAccessPassOneTimeX509CertificateSingleFactor": "Временный секретный код (одноразовый) + проверка подлинности на основе сертификата (однофакторная)",
- "voice": "Голосовая связь",
- "voiceX509CertificateSingleFactor": "Голос + проверка подлинности на основе сертификата (однофакторная)",
- "windowsHelloForBusiness": "Windows Hello для бизнеса",
- "x509CertificateMultiFactor": "Проверка подлинности на основе сертификата (многофакторная)",
- "x509CertificateSingleFactor": "Проверка подлинности на основе сертификата (однофакторная)"
- }
- },
- "CAS": {
- "BuiltinPolicy": {
- "Option": {
- "blockDownloads": "Блокировка загрузок (предварительная версия)",
- "monitorOnly": "Только мониторинг (предварительная версия)",
- "protectDownloads": "Защита загрузок (предварительная версия)",
- "useCustomControls": "Использовать пользовательскую политику…"
- },
- "ariaLabel": "Выберите тип управления условным доступом к приложениям, который необходимо применить."
- }
- },
- "ChooseApplications": {
- "Grid": {
- "appIdAria": "ИД приложения: {0}"
- },
- "LowerGrid": {
- "ariaLabel": "Список выбранных облачных приложений"
- },
- "UpperGrid": {
- "ariaLabel": "Список облачных приложений, соответствующих условию поиска"
- }
- },
- "ChooseLocations": {
- "Validation": {
- "failed": "Необходимо выбрать по крайней мере одно расположение в поле \"Выбранные расположения\".",
- "selector": "Выберите по меньшей мере одно расположение"
- }
- },
- "ClientApp": {
- "Clients": {
- "Validation": {
- "failed": "Необходимо выбрать по крайней мере одного из следующих клиентов."
- }
- }
- },
- "ClientConditionsInfo": {
- "browserAndModern": "Эта политика применяется только к браузеру и современным приложениям проверки подлинности. Чтобы применить политику ко всем клиентским приложениям, включите условие клиентского приложения и выберите все клиентские приложения.",
- "classicExperience": "Так как эта политика создана, конфигурация клиентских приложений по умолчанию была обновлена.",
- "legacyAuth": "Если параметр не настроен, политики применяются ко всем клиентским приложениям, в том числе с современной и устаревшей проверкой подлинности."
- },
- "CloudAppFilterBlade": {
- "AssignmentFilter": {
- "header": "Атрибут",
- "placeholder": "Выберите атрибут"
- },
- "Configure": {
- "infoBalloon": "Настройте фильтры устройств, к которым нужно применить политику."
- },
- "NoPermissions": {
- "learnMoreAria": "Дополнительная информация о разрешениях на использование настраиваемых атрибутов безопасности.",
- "message": "У вас нет разрешений, необходимых для использования настраиваемых атрибутов безопасности."
- },
- "gridHeader": "С помощью настраиваемых атрибутов безопасности можно использовать построитель правил или текстовое поле синтаксиса правил для создания или изменения правил фильтрации. В предварительной версии поддерживаются только атрибуты типа String. Атрибуты типа Integer или Boolean не будут отображаться.",
- "learnMoreAria": "Дополнительная информация об использовании построителя правил и текстового поля синтаксиса.",
- "noAttributes": "Нет настраиваемых атрибутов, доступных для фильтрации. Чтобы использовать этот фильтр, настройте какие-нибудь атрибуты.",
- "title": "Edit filter (Preview)"
- },
- "CloudAppsUserActions": {
- "any": "Любое облачное приложение или действие",
- "infoBalloon": "Облачное приложение или действие пользователя, которое нужно протестировать. Например, \"SharePoint Online\".",
- "learnMore": "Управляйте доступом на основе всех или только некоторых облачных приложений или действий.",
- "learnMoreB2C": "Управляйте доступом на основе всех или только некоторых облачных приложений.",
- "title": "Облачные приложения или действия"
- },
- "CloudappsSelectionBlade": {
- "Excluded": {
- "gridAria": "Список исключенных облачных приложений"
- },
- "Filter": {
- "configured": "Настроено",
- "label": "Edit filter (Preview)",
- "with": "{0} с {1}"
- },
- "Included": {
- "gridAria": "Список включенных облачных приложений"
- },
- "Validation": {
- "authContext": "Для варианта \"Контекст проверки подлинности\" необходимо настроить по крайней мере один вложенный элемент.",
- "selectApps": "Необходимо настроить \"{0}\"",
- "selector": "Выберите по меньшей мере одно приложение.",
- "userActions": "Для варианта \"Действия пользователя\" необходимо настроить по крайней мере один вложенный элемент."
- }
- },
- "DeviceState": {
- "LearnMore": {
- "message": "Control user access when the device the user is signing-in from is not \"Hybrid Azure AD joined\" or \"marked as compliant\".\n '{0}' has been deprecated. Use '{1}' instead."
- }
- },
- "Errors": {
- "notFound": "Политика не найдена или была удалена.",
- "notFoundDetailed": "Политика \"{0}\" больше не существует. Возможно, она удалена."
- },
- "NamedLocation": {
- "Form": {
- "CountryLookup": {
- "ariaLabel": "Метод поиска страны",
- "gps": "Определение расположения по GPS-координатам",
- "info": "Если настроено условие расположения политики условного доступа, приложение Authenticator будет запрашивать у пользователей общий доступ к их GPS-координатам. ",
- "ip": "Определение расположения по IP-адресам (только IPv4-адреса)"
- },
- "Header": {
- "new": "Новое расположение ({0})",
- "update": "Изменение расположения ({0})"
- },
- "IP": {
- "learn": "Настройте диапазоны адресов IPv4 и IPv6 для именованного расположения.\n[Дополнительные сведения][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
- },
- "Include": {
- "infoBalloon": "Неизвестные страны или регионы имеют IP-адреса, не связанные с определенной страной или регионом. [Дополнительные сведения][1]\n\nВ их число входят:\n* адреса IPv6;\n* адреса IPv4 без прямого сопоставления.\n[1]: https://aka.ms/canamedlocations\n",
- "label": "Включить неизвестные страны и регионы"
- },
- "Name": {
- "empty": "Имя не может быть пустым.",
- "placeholder": "Назвать это расположение"
- },
- "PrivateLink": {
- "learn": "Создайте новое именованное расположение, содержащее приватные каналы для Azure AD. \n[Подробнее][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
- },
- "Search": {
- "countries": "Поиск стран и регионов",
- "names": "Поиск по именам",
- "privateLinks": "Искать приватные каналы"
- },
- "Trusted": {
- "label": "Отметить как надежное расположение"
- },
- "enter": "Введите новый диапазон IPv4 или IPv6",
- "example": "Пример: 40.77.182.32/27 или 2a01:111::/32"
- },
- "Label": {
- "addCountries": "Расположение в странах",
- "addIpRange": "Расположение в диапазонах IP-адресов",
- "addPrivateLink": "Приватные каналы Azure"
- },
- "Notification": {
- "Create": {
- "Failed": {
- "description": "Не удалось создать расположение ({0}).",
- "title": "Сбой создания"
- },
- "InProgress": {
- "description": "Создание нового расположения ({0}).",
- "title": "Идет создание"
- },
- "Success": {
- "description": "Расположение создано ({0}).",
- "title": "Создание выполнено"
- }
- },
- "Delete": {
- "Failed": {
- "description": "Не удалось удалить расположение ({0}).",
- "title": "Сбой удаления"
- },
- "InProgress": {
- "description": "Удаление расположения ({0}).",
- "title": "Идет удаление"
- },
- "Success": {
- "description": "Расположение удалено ({0}).",
- "title": "Удаление выполнено"
- }
- },
- "Update": {
- "Failed": {
- "description": "Не удалось изменить расположение ({0}).",
- "title": "Сбой изменения"
- },
- "InProgress": {
- "description": "Изменение расположения ({0}).",
- "title": "Выполняется изменение"
- },
- "Success": {
- "description": "Расположение изменено ({0}).",
- "title": "Изменение выполнено"
- }
- }
- },
- "PrivateLinks": {
- "grid": "Список приватных каналов"
- },
- "Trusted": {
- "title": "Доверенный тип",
- "trusted": "Надежный"
- },
- "Type": {
- "all": "Все типы",
- "countries": "Страны",
- "ipRanges": "Диапазоны IP-адресов",
- "privateLinks": "Приватные каналы",
- "title": "Тип расположения"
- },
- "iPRangeInvalidError": "Значение должно быть допустимым диапазоном адресов IPv4 или IPv6.",
- "iPRangeLinkOrSiteLocalError": "IP-сеть определена как локальная ссылка или локальный адрес сайта.",
- "iPRangeOctetError": "IP-сеть не должна начинаться с 0 или 255.",
- "iPRangePrefixError": "Префикс IP-адресов сети должен находиться в диапазоне от /{0} до /{1}.",
- "iPRangePrivateError": "IP-сеть определена как частный адрес."
- },
- "Policies": {
- "Grid": {
- "aria": "Список политик условного доступа"
- },
- "countText": "Обнаружено политик: {0} из {1}.",
- "countTextSingular": "Обнаружено политик: {0} из 1.",
- "search": "Поиск политик"
- },
- "Policy": {
- "Condition": {
- "ServicePrincipalRisk": {
- "description": "Настройка уровней риска субъекта-службы, необходимых для применения политики",
- "infoBalloonContent": "Настройка применения политики к выбранным уровням риска субъекта-службы",
- "title": "Риск субъекта-службы"
- }
- }
- },
- "PolicyControlAuthStrength": {
- "MultiFactorAuthentication": {
- "description": "Сочетания методов, удовлетворяющих строгой проверке подлинности, например пароль + SMS",
- "displayName": "Многофакторная проверка подлинности (MFA)"
- },
- "Passwordless": {
- "description": "Методы без пароля, удовлетворяющие строгой проверке подлинности, например Microsoft Authenticator ",
- "displayName": "MFA без пароля"
- },
- "PhishingResistant": {
- "description": "Методы защиты от фишинга без пароля для наиболее строгой проверки подлинности, такие как ключ безопасности FIDO2",
- "displayName": "MFA с защитой от фишинга"
- }
- },
- "PolicyControlFedAuthMethod": {
- "certificate": "Проверка подлинности на основе сертификата",
- "infoBubble": "Укажите нужный способ проверки подлинности, который должен предоставлять поставщик федерации, например ADFS.",
- "multifactor": "Многофакторная проверка подлинности",
- "require": "Требовать федеративный метод проверки подлинности (предварительная версия)",
- "whatIfFormat": "{0} — {1}"
- },
- "PolicyState": {
- "off": "Выкл.",
- "on": "Вкл.",
- "reportOnly": "Только отчет"
- },
- "PolicyTemplates": {
- "Devices": {
- "description": "Выберите категорию шаблона политики устройств, чтобы получить сведения об устройствах, обращающихся к сети. Проверьте соответствие требованиям и состояния работоспособности перед предоставлением доступа.",
- "name": "Устройства"
- },
- "Identities": {
- "description": "Выберите категорию шаблонов политик удостоверений для проверки и защиты каждого удостоверения с помощью надежной проверки подлинности во всей вашей цифровой среде.",
- "name": "Удостоверения"
- },
- "Summary": {
- "CloudApps": {
- "allCloudApps": "Все приложения",
- "office365": "Office 365",
- "registerSecurityInfo": "Регистрация сведений для защиты"
- },
- "Conditions": {
- "androidAndIOS": "Платформа устройства: Android и IOS",
- "anyDevice": "Все устройства, кроме устройств с Android, iOS, Windows и macOS",
- "anyDeviceStateExceptHybrid": "Любое состояние устройства, кроме \"Совместимо\" и \"С гибридным присоединением к Azure AD\"",
- "anyLocation": "Любое расположение, кроме доверенного",
- "browserMobileDesktop": "Клиентские приложения: браузер, мобильные приложения и клиенты для настольных компьютеров",
- "exchangeActiveSync": "Клиентские приложения: Exchange Active Sync, другие клиенты",
- "windowsAndMac": "Платформа устройства: Windows и Mac"
- },
- "Devices": {
- "anyDevice": "Любое устройство"
- },
- "Grant": {
- "appProtectionPolicy": "Требовать политику защиты приложений",
- "approvedClientApp": "Требовать утвержденное клиентское приложение",
- "blockAccess": "Блокировать доступ",
- "mfa": "Требовать многофакторную проверку подлинности",
- "passwordChange": "Требовать изменения пароля",
- "requireCompliantDevice": "Требовать, чтобы устройство было отмечено как соответствующее требованиям",
- "requireHybridAzureADDevice": "Требовать устройство с гибридным присоединением к Azure AD"
- },
- "Session": {
- "appEnforcedRestrictions": "Использовать ограничения, применяемые приложениями",
- "signInFrequency": "Периодичность входа и никогда не сохраняемый сеанс браузера"
- },
- "UsersAndGroups": {
- "allUsers": "Все пользователи",
- "directoryRoles": "Роли каталога, кроме текущего администратора",
- "globalAdmin": "Глобальный администратор",
- "noGuestAndAdmins": "Все пользователи, кроме гостевых и внешних, глобальных администраторов и текущего администратора"
- },
- "azureManagement": "Управление Azure",
- "deviceFilters": "Фильтры для устройств",
- "devicePlatforms": "Платформы устройств"
- },
- "TemplateId": {
- "AppEnforcedRestrictions": {
- "description": "Заблокируйте или ограничьте доступ к содержимому SharePoint, OneDrive и Exchange с неуправляемых устройств.",
- "name": "CA014: Использование принудительных ограничений со стороны приложения для неуправляемых устройств",
- "title": "Использование принудительных ограничений приложения для неуправляемых устройств"
- },
- "ApprovedClientApps": {
- "description": "Чтобы предотвратить потерю данных, организации могут ограничить доступ к утвержденным клиентским приложениям с современной проверкой подлинности с помощью средства защиты приложений Intune.",
- "name": "CA012: Требование утвержденных клиентских приложений и защиты приложений",
- "title": "Требование утвержденных клиентских приложений и защиты приложений"
- },
- "BlockAccessOnUnknowns": {
- "description": "Пользователям будет заблокирован доступ к ресурсам компании, если тип устройства неизвестен или не поддерживается.",
- "name": "CA010: Блокировка доступа для неизвестной или неподдерживаемой платформы устройства",
- "title": "Блокировка доступа для неизвестной или неподдерживаемой платформы устройства"
- },
- "BlockLegacyAuth": {
- "description": "Заблокируйте устаревшие конечные точки проверки подлинности, которые можно использовать для обхода многофакторной проверки подлинности.",
- "name": "CA003: Блокировка устаревшей проверки подлинности",
- "title": "Блокировка устаревшей проверки подлинности"
- },
- "NoPersistentBrowserSession": {
- "description": "Защитите доступ пользователей на неуправляемых устройствах, запретив им оставаться в системе после закрытия браузера и установив частоту входа в систему в 1 час.",
- "name": "CA011: Сеанс браузера не сохраняется",
- "title": "Сеанс браузера не сохраняется"
- },
- "RequireCompliantOrHybridADAdmins": {
- "description": "Потребуйте, чтобы привилегированные администраторы получали доступ к ресурсам только при использовании соответствующего требованиям устройства или устройства с гибридным присоединением к Azure AD.",
- "name": "CA009: требовать совместимое устройство или устройство с гибридным присоединением к Azure AD для администраторов",
- "title": "Требовать совместимое устройство или устройство с гибридным присоединением к Azure AD для администраторов"
- },
- "RequireCompliantOrHybridADAllUsers": {
- "description": "Защитите доступ к ресурсам вашей организации, потребовав от пользователей использовать управляемое устройство или выполнять многофакторную проверку подлинности (только macOS или Windows).",
- "name": "CA013: требовать соответствующее устройство, устройство с гибридным присоединением к Azure AD или многофакторную проверку подлинности для всех пользователей",
- "title": "Требовать соответствующее устройство, устройство с гибридным присоединением к Azure AD или многофакторную проверку подлинности для всех пользователей"
- },
- "RequireMFAAllUsers": {
- "description": "Настройте многофакторную проверку подлинности для всех учетных записей пользователей, чтобы снизить риск их компрометации.",
- "name": "CA004: Требование многофакторной проверки подлинности для всех пользователей",
- "title": "Требование многофакторной проверки подлинности для всех пользователей"
- },
- "RequireMFAForAdmins": {
- "description": "Настройте многофакторную проверку подлинности для учетных записей привилегированных администраторов, чтобы снизить риск их компрометации. Эта политика нацелена на те же роли, что и политика обеспечения безопасности по умолчанию.",
- "name": "CA001: Требование многофакторной проверки подлинности для администраторов",
- "title": "Требование многофакторной проверки подлинности для администраторов"
- },
- "RequireMFAForAzureManagement": {
- "description": "Требовать многофакторную проверку подлинности для защиты привилегированного доступа к ресурсам Azure.",
- "name": "CA006: Требование многофакторной проверки подлинности для управления Azure",
- "title": "Требование многофакторной проверки подлинности для управления Azure"
- },
- "RequireMFAForGuestAccess": {
- "description": "Требовать, чтобы гости выполняли многофакторную проверку подлинности при доступе к ресурсам вашей организации.",
- "name": "CA005: Требование многофакторной проверки подлинности для гостевого доступа",
- "title": "Требование многофакторной проверки подлинности для гостевого доступа"
- },
- "RequireMFAForRiskySignIn": {
- "description": "Требовать многофакторную проверку подлинности, если риск при входе в систему является средним или высоким. (Требуется лицензия Azure AD Premium 2)",
- "name": "CA007: требовать многофакторную проверку подлинности при рискованных входах",
- "title": "Требовать многофакторную проверку подлинности при рискованных входах"
- },
- "RequirePasswordChangeForHighRiskUsers": {
- "description": "Требовать, чтобы пользователь изменил свой пароль, если риск для пользователя является высоким. (Требуется лицензия Azure AD Premium 2)",
- "name": "CA008: Требование смены пароля для пользователей с высоким уровнем риска",
- "title": "Требование смены пароля для пользователей с высоким уровнем риска"
- },
- "RequireSecurityInfo": {
- "description": "Защитите пользователей при самостоятельной регистрации для многофакторной проверки подлинности в Azure AD и создании пароля. ",
- "name": "CA002: Обеспечение безопасности при регистрации сведений для защиты",
- "title": "Обеспечение безопасности при регистрации сведений для защиты"
- }
- },
- "TemplateState": {
- "BlockAccessOnUnknowns": {
- "title": "Включение этой политики приведет к блокировке доступа с устройств неизвестного типа. Используйте режим \"Только отчет\", пока не убедитесь, что эти изменения не повлияют на ваших пользователей."
- },
- "BlockLegacyAuth": {
- "description": "Используйте режим \"Только отчет\", пока не убедитесь, что эти изменения не повлияют на ваших пользователей.",
- "title": "Включение этой политики приведет к блокировке устаревшей проверки подлинности для всех пользователей."
- },
- "RequireCompliantOrHybridADAdmins": {
- "Description": {
- "on": "Используйте режим \"Только отчет\", пока не убедитесь, что эти изменения не повлияют на ваших привилегированных пользователей.",
- "reportOnly": "Политики в режиме \"Только отчет\", которые требуют, чтобы устройства соответствовали требованиям, могут предлагать пользователям устройств с macOS, iOS и Android выбрать сертификат устройства во время проверки, даже если политика соответствия требованиям не применяется. Эти запросы могут повторяться до тех пор, пока устройство не будет соответствовать требованиям."
- },
- "Title": {
- "on": "Включение этой политики приведет к блокировке доступа привилегированных пользователей, если только они не будут использовать управляемое устройство, например соответствующее требованиям или с гибридным присоединением к Azure AD. Перед включением этой политики убедитесь, что настроены политики соответствия требованиям или включена конфигурация гибридной службы Azure AD.",
- "reportOnly": "Перед включением этой политики убедитесь, что настроены политики соответствия требованиям или включена конфигурация гибридной службы Azure AD."
- }
- },
- "RequireCompliantOrHybridADAllUsers": {
- "Description": {
- "on": "Эта политика затронет всех пользователей, кроме текущего администратора, вошедшего в систему. Используйте режим \"Только отчет\", пока не убедитесь, что эти изменения не повлияют на ваших пользователей."
- },
- "Title": {
- "on": "Не заблокируйте себя! Убедитесь, что ваше устройство соответствует требованиям, подключено к гибридной службе Azure AD или настроена многофакторная проверка подлинности.",
- "reportOnly": "Политики в режиме \"Только отчет\", которые требуют, чтобы устройства соответствовали требованиям, могут предлагать пользователям устройств с macOS, iOS и Android выбрать сертификат устройства во время проверки, даже если политика соответствия требованиям не применяется. Эти запросы могут повторяться до тех пор, пока устройство не будет соответствовать требованиям."
- }
- },
- "RequireMfa": {
- "description": "При использовании учетных записей экстренного доступа или службы Azure AD Connect для синхронизации локальных объектов может потребоваться исключить эти учетные записи из этой политики после ее создания."
- },
- "RequireMfaAdmins": {
- "description": "Обратите внимание, что текущая учетная запись администратора будет автоматически исключена, но все остальные учетные записи будут защищены при создании политики. Для начала используйте режим \"Только отчет\".",
- "title": "Не заблокируйте себя! Эта политика влияет на портал Azure."
- },
- "RequireMfaAllUsers": {
- "description": "Используйте режим \"Только отчет\", пока не запланируете внесение этих изменений и не сообщите о них всем пользователям.",
- "title": "Включение этой политики приведет к принудительному использованию многофакторной проверки подлинности для всех пользователей."
- },
- "RequireSecurityInfo": {
- "description": "Проверьте конфигурацию, чтобы защитить эти учетные записи в соответствии с потребностями вашей организации.",
- "title": "Из этой политики исключены следующие пользователи и роли: гости и внешние пользователи, глобальные администраторы и текущий администратор"
- }
- },
- "basics": "Основные сведения",
- "clientApps": "Клиентские приложения",
- "cloudApps": "Облачные приложения",
- "cloudAppsOrActions": "Облачные приложения или действия ",
- "conditions": "Условия ",
- "createNewPolicy": "Создание новой политики на основе шаблонов (предварительная версия)",
- "createPolicy": "Создание политики",
- "currentUser": "Текущий пользователь",
- "customizeBuild": "Настройка сборки",
- "customizeTemplate": "Списки шаблонов настраиваются на основе типа создаваемой политики",
- "excludedDevicePlatform": "Исключенные платформы устройств",
- "excludedDirectoryRoles": "Исключенные роли каталога",
- "excludedLocation": "Исключенные роли каталога",
- "excludedUsers": "Исключенные пользователи",
- "grantControl": "Предоставление управления ",
- "includeFilteredDevice": "Добавить отфильтрованные устройства в политику",
- "includedDevicePlatform": "Добавленные платформы устройств",
- "includedDirectoryRoles": "Добавленные роли каталога",
- "includedLocation": "Добавленное расположение",
- "includedUsers": "Добавленные пользователи",
- "legacyAuthenticationClients": "Клиенты с устаревшими способами проверки подлинности",
- "namePolicy": "Назвать политику",
- "next": "Далее",
- "policyName": "Имя политики",
- "policyState": "Состояние политики",
- "policySummary": "Сводка по политике",
- "policyTemplate": "Шаблон политики",
- "previous": "Назад",
- "reviewAndCreate": "Проверка и создание",
- "riskLevels": "Уровни риска",
- "selectATemplate": "Выбор шаблона",
- "selectTemplate": "Выбор шаблона",
- "selectTemplateCategory": "Выберите категорию шаблона",
- "selectTemplateRecommendation": "Рекомендуется использовать следующие шаблоны на основе вашего отклика",
- "sessionControl": "Управление сеансом ",
- "signInFrequency": "Частота попыток входа",
- "signInRisk": "Риск при входе",
- "template": "Шаблон ",
- "templateCategory": "Категория шаблона",
- "userRisk": "Риск пользователя",
- "usersAndGroups": "Пользователи и группы ",
- "viewPolicySummary": "Просмотр сводки политики "
- },
- "SSM": {
- "MemberSelector": {
- "description": "Пользователи и группы"
- },
- "Notification": {
- "Migration": {
- "error": "Не удалось перенести параметры Непрерывной оценки доступа в политики условного доступа.",
- "inProgress": "Выполняется перенос параметров Непрерывной оценки доступа.",
- "success": "Параметры Непрерывной оценки доступа успешно перенесены в политики условного доступа.",
- "successDescription": "Перейдите к политикам условного доступа, чтобы просмотреть перенесенные параметры во вновь созданной политике с именем \"Политика условного доступа, созданная на основе параметров Непрерывной оценки доступа\"."
- },
- "error": "Не удалось обновить параметры Непрерывной оценки доступа.",
- "inProgress": "Выполняется обновление параметров Непрерывной оценки доступа.",
- "success": "Параметры Непрерывной оценки доступа обновлены."
- },
- "PreviewOptions": {
- "disable": "Отключить предварительный просмотр",
- "enable": "Включить предварительный просмотр"
- },
- "StrictLocationEnforcement": {
- "infoContent1": "IP-адреса одного клиентского устройства, определяемые Azure AD и поставщиком ресурсов, могут не совпадать из-за разделения сети или несоответствия между протоколами IPv4 и IPv6. Строгое принудительное применение для расположения обеспечит применение политики условного доступа на основе IP-адресов, определяемых и Azure AD, и поставщиком ресурсов.",
- "infoContent2": "Чтобы обеспечить максимальную безопасность, рекомендуется включить в политику именованных расположений все IP-адреса, которые могут определяться и Azure AD, и поставщиком ресурсов, а также включить режим \"Строгое принудительное применение для расположения\".",
- "label": "Строгое принудительное применение для расположения",
- "title": "Дополнительные режимы принудительного применения"
- },
- "bladeTitle": "Непрерывная оценка доступа",
- "description": "При удалении доступа пользователя или изменении IP-адреса клиента Непрерывная оценка доступа автоматически блокирует доступ к ресурсам и приложениям практически в режиме реального времени. ",
- "migrateLabel": "Миграция",
- "migrationError": "Миграция не выполнена из-за следующей ошибки: {0}",
- "migrationInfo": "Параметр CAE перемещен в раздел \"Пользовательский интерфейс условного доступа\". Выполните миграцию с помощью кнопки \"Перенести\" и настройте его позднее с помощью политики условного доступа. Щелкните здесь, чтобы получить дополнительные сведения.",
- "noLicenseMessage": "Для настройки параметров интеллектуального управления сеансами используйте Azure AD Premium.",
- "optionsPickerTitle": "Включить/отключить Непрерывную оценку доступа",
- "upsellInfo": "Параметры на этой странице недоступны для изменений, и их следует игнорировать. Будут действовать предыдущие параметры. В дальнейшем вы сможете настроить параметры CAE в разделе \"Условный доступ\". Щелкните здесь, чтобы получить дополнительные сведения."
- },
- "SessionLifetime": {
- "PersistentBrowser": {
- "Error": {
- "notAllApps": "Политика постоянного сеанса браузера работает правильно только при выборе варианта \"Все облачные приложения\". Обновите конфигурацию облачных приложений."
- },
- "Option": {
- "always": "Всегда постоянный",
- "help": "Постоянный сеанс в браузере означает, что пользователям не требуется снова выполнять вход после закрытия и повторного открытия окна браузера.
\n\n- Этот параметр работает правильно при выборе варианта \"Все облачные приложения\".
\n- Он не влияет на время жизни маркеров или настройку периодичности входа.
\n- Этот параметр приводит к переопределению политики \"Показать возможность не выходить из системы\" в фирменном оформлении компании.
\n- \"Запретить постоянный\" переопределяет любые утверждения постоянного единого входа, переданные из федеративных служб проверки подлинности.
\n- \"Запретить постоянный\" блокирует единый вход на мобильных устройствах в приложениях и между приложениями и мобильным браузером пользователя.
\n",
- "label": "Сохраняемый сеанс браузера",
- "never": "Запретить постоянный"
- },
- "Warning": {
- "allApps": "Постоянный сеанс браузера работает правильно только при выборе варианта \"Все облачные приложения\". Измените конфигурацию облачных приложений. Щелкните здесь для получения дополнительных сведений."
- }
- },
- "SignInFrequency": {
- "Aria": {
- "units": "Часы или дни",
- "value": "Периодичность"
- },
- "Option": {
- "Day": {
- "plural": "{0} дн.",
- "singular": "1 день"
- },
- "Hour": {
- "plural": "{0} ч",
- "singular": "1 час"
- },
- "daysOption": "Дни",
- "everytime": "Каждый раз",
- "help": "Период времени, по истечении которого пользователю будет предложено повторить вход при попытке доступа к ресурсу. Значение по умолчанию — скользящий интервал 90 дней, т. е. пользователю будет предложено повторно пройти проверку подлинности при первой попытке доступа к ресурсу после периода отсутствия активности в течение не менее 90 дней.",
- "hoursOption": "Часы",
- "label": "Частота входа",
- "placeholder": "Выбрать единицы отображения"
- }
- },
- "mainOption": "Изменить время существования сеанса",
- "mainOptionHelp": "Настройте частоту получения запросов пользователями и сохранение сеанса браузера. Приложения, которые не поддерживают современные протоколы проверки подлинности, могут не учитывать эти политики. В этом случае обратитесь к разработчику приложения."
- },
- "SigninRisk": {
- "LearnMore": {
- "message": "Управляйте доступом пользователей для реагирования на определенные уровни риска при входе в систему."
- }
- },
- "SingleSelectorActive": {
- "failed": "Не удалось загрузить эти данные.",
- "reattempt": "Загрузка данных. Повторная попытка: {0} из {1}."
- },
- "TimeCondition": {
- "Errors": {
- "both": "Недопустимый диапазон времени для \"Включения\" или \"Исключения\".",
- "daysOfWeek": "{0} Укажите как минимум один день недели.",
- "endBeforeStart": "{0} Дата и время начала должны предшествовать дате и времени окончания.",
- "exclude": "Недопустимый диапазон времени для \"Исключения\".",
- "generic": "{0} Укажите дни недели и часовой пояс. Если не установлен флажок \"Весь день\", нужно также задать время начала и время окончания.",
- "include": "Недопустимый диапазон времени для \"Включения\".",
- "timeMissing": "{0} Укажите время начала и время окончания.",
- "timeZone": "{0} Укажите часовой пояс.",
- "timesAndZone": "{0} Укажите время начала, время окончания и часовой пояс."
- }
- },
- "UserActions": {
- "Included": {
- "none": "Облачные приложения или действия не выбраны.",
- "plural": "Действий пользователя включено: {0}.",
- "singular": "1 действие пользователя включено."
- },
- "accessRequirement1": "Уровень 1",
- "accessRequirement2": "Уровень 2",
- "accessRequirement3": "Уровень 3",
- "accessRequirementsLabel": "Доступ к защищенным данным приложений",
- "appsActionsAuthTitle": "Облачные приложения, действия или контекст проверки подлинности",
- "appsOrActionsSelectorInfoBallonText": "Доступ к приложениям или действия пользователей",
- "appsOrActionsTitle": "Облачные приложения или действия",
- "label": "Действия пользователя",
- "mainOptionsLabel": "Выбрать объект, к которому будет применяться эта политика",
- "registerOrJoinDevices": "Регистрация или присоединение устройств",
- "registerSecurityInfo": "Регистрация сведений о безопасности",
- "selectionInfo": "Выберите действие, к которому будет применяться эта политика"
- },
- "UserSelectionBlade": {
- "DirectoryRoles": {
- "ariaLabel": "Выбор ролей каталога"
- },
- "Excluded": {
- "gridAria": "Список исключенных пользователей"
- },
- "Included": {
- "gridAria": "Список включенных пользователей"
- },
- "Validation": {
- "customRoleIncluded": "\"Роли каталога\" включают как минимум одну настраиваемую роль.",
- "customRoleSelected": "Выбрана как минимум одна настраиваемая роль.",
- "failed": "Необходимо настроить \"{0}\"",
- "roles": "Выберите по меньшей мере одну роль",
- "usersGroups": "Выберите по меньшей мере одного пользователя или одну группу"
- },
- "learnMore": "Управляйте доступом в зависимости от того, к кому будет применяться политика, например к пользователям и группам, удостоверениям рабочей нагрузки, ролям каталогов или внешним гостям."
- },
- "ValidationResult": {
- "blockEveryonePolicy": "Конфигурация политики не поддерживается. Ознакомьтесь с назначениями и механизмами управления.",
- "invalidApplicationCondition": "Выбраны недопустимые облачные приложения",
- "invalidClientTypesCondition": "Выбраны недопустимые клиентские приложения",
- "invalidConditions": "Назначения не выбраны",
- "invalidControls": "Выбраны недопустимые элементы управления",
- "invalidDevicePlatformsCondition": "Выбраны недопустимые платформы устройств",
- "invalidDevicesCondition": "Недопустимая конфигурация устройства. Вероятно, конфигурация \"{0}\" является недопустимой.",
- "invalidGrantControlPolicy": "Недопустимое предоставление управления",
- "invalidLocationsCondition": "Выбраны недопустимые расположения",
- "invalidPolicy": "Назначения не выбраны",
- "invalidSessionControlPolicy": "Недопустимое управление сеансом",
- "invalidSignInRisksCondition": "Выбран недопустимый риск, связанный с входом",
- "invalidUserRisksCondition": "Выбран недопустимый риск для пользователя",
- "invalidUsersCondition": "Выбраны недопустимые пользователи",
- "mamPolicyShouldOnlyTargetAndroidOrIosPlatforms": "Политика MAM может применяться к только клиентским платформам Android и iOS.",
- "notSupportedCombination": "Конфигурация политики не поддерживается. Подробности о поддерживаемых политиках.",
- "pending": "Проверка политики",
- "requireComplianceEveryonePolicy": "Конфигурация политики потребует соответствия устройств всех пользователей требованиям. Проверьте выбранные назначения.",
- "success": "Допустимая политика"
- },
- "VpnCert": {
- "Grid": {
- "aria": "Список сертификатов VPN"
- }
- },
- "WarningsInfo": {
- "Controls": {
- "compliantDeviceEnabled": "Не заблокируйте себя! Убедитесь, что ваше устройство соответствует требованиям.",
- "domainJoinedDeviceEnabled": "Не заблокируйте себя! Убедитесь, что ваше устройство является устройством с гибридным присоединением к Azure AD.",
- "exchangeDisabled": "Exchange ActiveSync поддерживает только элементы управления \"Соответствующее устройство\" и \"Утвержденное клиентское приложение\". Щелкните, чтобы узнать больше.",
- "exchangeDisabled2": "Exchange ActiveSync поддерживает только элементы управления \"Соответствующее устройство\", \"Утвержденное клиентское приложение\" и \"Соответствующее клиентское приложение\". Щелкните здесь, чтобы узнать больше.",
- "notAvailableForSP": "Некоторые элементы управления недоступны из-за выбора \"{0}\" при назначении политики",
- "requireAuthOrMfa": "\"{0}\" не может использоваться с \"{1}\".",
- "requireMfa": "Попробуйте протестировать новую общедоступную предварительную версию \"{0}\"",
- "requirePasswordChangeEnabled": "Вариант \"Требовать изменения пароля\" можно использовать только при назначении политики всем облачным приложениям."
- },
- "Policies": {
- "Linux": {
- "devicePlatformsReportOnlyPolicy": "Политики в режиме только для отчета, которые требуют соответствия устройств, могут предлагать пользователям macOS, iOS, Android и Linux выбрать сертификат устройства.",
- "excludeDevicePlatforms": "Исключите платформы устройств macOS, iOS, Android и Linux из этой политики.",
- "proceedAnywayDevicePlatforms": "Продолжить с выбранной конфигурацией. При проверке устройства на соответствие требованиям пользователи macOS, iOS, Android и Linux могут получать запросы."
- },
- "blockCurrentUserPolicy": "Не заблокируйте себя! Рекомендуем сначала применить политику к небольшому числу пользователей, чтобы проверить ее действие. Также рекомендуем исключить из нее хотя бы одного администратора. Тогда вы гарантируете себе возможность доступа к политике и, при необходимости, ее изменения. Просмотрите затронутых пользователей и приложения.",
- "devicePlatformsReportOnlyPolicy": "Политики в режиме только для отчета, которые требуют соответствия устройств, могут предлагать пользователям macOS, iOS и Android выбрать сертификат устройства.",
- "excludeCurrentUserSelection": "Текущий пользователь ({0}) будет исключен из этой политики.",
- "excludeDevicePlatforms": "Исключите платформы устройств macOS, iOS и Android из этой политики.",
- "proceedAnywayDevicePlatforms": "Продолжить с выбранной конфигурацией. При проверке устройства на соответствие требованиям пользователи macOS, iOS и Android могут получать запросы.",
- "proceedAnywaySelection": "Я понимаю, что эта политика затронет мою учетную запись. Все равно продолжить."
- },
- "ServicePrincipals": {
- "blockExchange": "Выбор Office 365 Exchange Online также повлияет на такие приложения, как OneDrive и Teams.",
- "blockPortal": "Не заблокируйте себя! Эта политика затронет портал Azure. Прежде чем продолжить, убедитесь, что вы или другой пользователь сможете вернуться на портал.",
- "blockPortalWithSession": "Не лишите себя доступа! Эта политика применяется к порталу Azure. Прежде чем продолжить, убедитесь в том, что вы или другой пользователь сможете вернуться на портал.
Не обращайте внимания на это предупреждение, если вы настраиваете политику постоянных сеансов браузера, которая действует правильно только при выборе варианта \"Все облачные приложения\".",
- "blockSharePoint": "Выбор SharePoint Online затронет также такие приложения, как Microsoft Teams, Planner, Delve, MyAnalytics и Newsfeed.",
- "blockSkype": "Выбор Skype для бизнеса Online также повлияет на Microsoft Teams.",
- "includeOrExclude": "Фильтр приложений можно настроить для \"{0}\" или \"{1}\", но не для обоих параметров.",
- "selectAppsNAForSP": "Невозможно выбрать отдельные облачные приложения из-за выбора \"{0}\" в назначении политики",
- "teamsBlocked": "Включение в политику таких приложений, как SharePoint Online и Exchange Online, также затронет Microsoft Teams."
- },
- "Users": {
- "blockAllUsers": "Не заблокируйте себя! Эта политика затрагивает всех пользователей. Политику рекомендуется применить сначала к небольшому числу пользователей, чтобы проверить ее поведение."
- }
- },
- "WhatIf": {
- "Device": {
- "AttributesGrid": {
- "aria": "Список атрибутов на устройстве, примененном при входе.",
- "infoBalloon": "Список атрибутов на устройстве, примененном при входе."
- }
- }
- },
- "advancedTabText": "Дополнительно",
- "allCloudAppsErrorBox": "Если выбрано предоставление разрешения \"Требовать изменения пароля\", необходимо выбрать \"Все облачные приложения\".",
- "allDayCheckboxLabel": "Весь день",
- "allDevicePlatforms": "Любое устройство",
- "allGuestUserInfoContent": "Включает гостей Azure AD B2B, но не гостей SharePoint B2B",
- "allGuestUserLabel": "Все гости и внешние пользователи",
- "allRiskLevelsOption": "Все уровни рисков",
- "allTrustedLocationLabel": "Все надежные расположения",
- "allUserGroupSetSelectorLabel": "Все выбранные пользователи и группы",
- "allUsersString": "Все пользователи",
- "and": "{0} И {1} ",
- "andWithGrouping": "({0}) и {1} ",
- "androidDisplayName": "Android",
- "anyCloudAppSelection": "Любое приложение облака",
- "appContextOptionInfoContent": "Тег запрошенной проверки подлинности",
- "appContextOptionLabel": "Запрошенный тег проверки подлинности (предварительная версия)",
- "appContextUriPlaceholder": "Пример: uri:contoso.com:level3",
- "appEnforceInfoBubble": "Ограничения, применяемые приложением, могут требовать дополнительной настройки администратором в случае облачных приложений. Ограничения будут действовать только для новых сеансов.",
- "appNotSetSeletorLabel": "Выбрано 0 облачных приложений",
- "applyConditionClientAppInfoBalloonContent": "Настроить применение политики к определенным клиентским приложениям",
- "applyConditionDevicePlatformInfoBalloonContent": "Настроить применение политики к определенным платформам устройств",
- "applyConditionDeviceStateInfoBalloonContent": "Настроить применение политики к определенным состояниям устройств",
- "applyConditionLocationInfoBalloonContent": "Настроить применение политики к надежным и ненадежным расположениям",
- "applyConditionSigninRiskInfoBalloonContent": "Настроить применение политики к выбранным уровням риска для входа",
- "applyConditionUserRiskInfoBalloonContent": "Настройте применение политики для выбранных уровней пользовательского риска",
- "applyConditonLabel": "Настроить",
- "ariaLabelPolicyDisabled": "Политика отключена",
- "ariaLabelPolicyEnabled": "Политика включена",
- "ariaLabelPolicyReportOnly": "Политика находится в режиме \"Только отчет\"",
- "blockAccess": "Блокировка доступа",
- "builtInDirectoryRoleLabel": "Встроенные роли каталога",
- "casCustomControlInfo": "Необходимо настроить пользовательские политики на портале Cloud App Security. Этот элемент управления сразу же работает для популярных приложений, и его можно подключить к любому приложению. Щелкните здесь, чтобы получить дополнительные сведения о каждом из этих сценариев.",
- "casInfoBubble": "Этот элемент управления можно использовать в разных облачных приложениях.",
- "casPreconfiguredControlInfo": "Этот элемент управления сразу же работает для популярных приложений, и его можно подключить к любому приложению. Щелкните здесь, чтобы получить дополнительные сведения о каждом из этих сценариев.",
- "cert64DownloadCol": "Скачать сертификат Base64",
- "cert64Name": "VpnBase64Cert",
- "certDownloadCol": "Скачать сертификат",
- "certDurationCol": "Срок действия",
- "certDurationStartCol": "Действителен с",
- "certName": "VpnCert",
- "chooseApplicationsBladeSubtitle": "",
- "chooseApplicationsBladeTitle": "Выбор приложений",
- "chooseApplicationsCartSubitle": "",
- "chooseApplicationsCartTitle": "Выбранные приложения",
- "chooseApplicationsEmpty": "Нет приложений",
- "chooseApplicationsNone": "Нет",
- "chooseApplicationsNoneFound": "Не удалось найти \"{0}\". Попробуйте использовать другое имя или идентификатор.",
- "chooseApplicationsPlural": "{0} и еще {1}",
- "chooseApplicationsReAuthEverytimeInfo": "Ищете приложение? Некоторые приложения нельзя использовать с элементом управления сеанса \"Каждый раз требовать повторной проверки подлинности\"",
- "chooseApplicationsRemove": "Удалить",
- "chooseApplicationsReturnedPlural": "Найдено приложений: {0}.",
- "chooseApplicationsReturnedSingular": "Найдено одно приложение.",
- "chooseApplicationsSearchBalloon": "Поиск приложения по имени или идентификатору.",
- "chooseApplicationsSearchHint": "Поиск приложений...",
- "chooseApplicationsSearchLabel": "Приложения",
- "chooseApplicationsSearching": "Идет поиск...",
- "chooseApplicationsSelect": "Выбрать",
- "chooseApplicationsSelected": "Выбрано",
- "chooseApplicationsSingular": "{0} и еще 1",
- "chooseApplicationsTooMany": "Результатов больше, чем может быть отображено. Выполните фильтрацию при помощи поля поиска.",
- "chooseLocationCorpnetItem": "Корпоративная сеть",
- "chooseLocationSelectedLocationsLabel": "Выбранные расположения",
- "chooseLocationTrustedIpsItem": "Надежные IP-адреса MFA",
- "chooseLocationsBladeSubtitle": "",
- "chooseLocationsBladeTitle": "Выбор расположений",
- "chooseLocationsCartSubitle": "",
- "chooseLocationsCartTitle": "Выбранные расположения",
- "chooseLocationsEmpty": "Расположений нет",
- "chooseLocationsExcludedSelectorTitle": "Выбрать",
- "chooseLocationsIncludedSelectorTitle": "Выбрать",
- "chooseLocationsNone": "Нет",
- "chooseLocationsNoneFound": "Не удалось найти \"{0}\". Попробуйте использовать другое имя или идентификатор.",
- "chooseLocationsPlural": "{0} и еще {1}",
- "chooseLocationsRemove": "Удалить",
- "chooseLocationsReturnedPlural": "Найдено расположений: {0}",
- "chooseLocationsReturnedSingular": "Найдено одно расположение.",
- "chooseLocationsSearchBalloon": "Поиск расположения по имени.",
- "chooseLocationsSearchHint": "Поиск расположений...",
- "chooseLocationsSearchLabel": "Расположение",
- "chooseLocationsSearching": "Идет поиск...",
- "chooseLocationsSelect": "Выбрать",
- "chooseLocationsSelected": "Выбрано",
- "chooseLocationsSelectionBladeExcludedSelectorTitle": "Выбрать",
- "chooseLocationsSelectionBladeIncludedSelectorTitle": "Выбрать",
- "chooseLocationsSingular": "{0} и еще 1",
- "chooseLocationsTooMany": "Результатов больше, чем может быть отображено. Выполните фильтрацию при помощи поля поиска.",
- "claimProviderAddCommandText": "Новый настраиваемый элемент управления",
- "claimProviderAddNewBladeTitle": "Новый настраиваемый элемент управления",
- "claimProviderDeleteCommand": "Удалить",
- "claimProviderDeleteDescription": "Вы действительно хотите удалить сеть \"{0}\"? Это действие невозможно отменить.",
- "claimProviderDeleteTitle": "Вы уверены?",
- "claimProviderEditInfoText": "Введите JSON для настраиваемых элементов управления, предоставленных поставщиками утверждений.",
- "claimProviderNotificationCreateDescription": "Создается настраиваемый элемент управления \"{0}\"",
- "claimProviderNotificationCreateFailedDescription": "Произошел сбой при создании настраиваемого элемента управления \"{0}\". Повторите попытку позже.",
- "claimProviderNotificationCreateFailedTitle": "Не удалось создать настраиваемый элемент управления",
- "claimProviderNotificationCreateSuccessDescription": "Создан настраиваемый элемент управления \"{0}\"",
- "claimProviderNotificationCreateSuccessTitle": "Создана сеть \"{0}\"",
- "claimProviderNotificationCreateTitle": "Идет создание сети \"{0}\"",
- "claimProviderNotificationDeleteDescription": "Удаляется настраиваемый элемент управления \"{0}\"",
- "claimProviderNotificationDeleteFailedDescription": "Произошел сбой при удалении настраиваемого элемента управления \"{0}\". Повторите попытку позже.",
- "claimProviderNotificationDeleteFailedTitle": "Не удалось удалить настраиваемый элемент управления",
- "claimProviderNotificationDeleteSuccessDescription": "Удален настраиваемый элемент управления \"{0}\"",
- "claimProviderNotificationDeleteSuccessTitle": "Сеть \"{0}\" удалена.",
- "claimProviderNotificationDeleteTitle": "Идет удаление \"{0}\"",
- "claimProviderNotificationUpdateDescription": "Обновляется настраиваемый элемент управления \"{0}\"",
- "claimProviderNotificationUpdateFailedDescription": "Произошел сбой при обновлении настраиваемого элемента управления \"{0}\". Повторите попытку позже.",
- "claimProviderNotificationUpdateFailedTitle": "Не удалось обновить настраиваемый элемент управления",
- "claimProviderNotificationUpdateSuccessDescription": "Обновлен настраиваемый элемент управления \"{0}\"",
- "claimProviderNotificationUpdateSuccessTitle": "Сеть \"{0}\" изменена.",
- "claimProviderNotificationUpdateTitle": "Идет обновление сети \"{0}\".",
- "claimProviderValidationAppIdInvalid": "Значение \"AppId\" недопустимо. Проверьте и повторите попытку.",
- "claimProviderValidationClientIdMissing": "В данных отсутствует значение \"ClientId\". Проверьте и повторите попытку.",
- "claimProviderValidationControlClaimsRequestedMissing": "В \"Control\" отсутствует значение \"ClaimsRequested\". Проверьте и повторите попытку.",
- "claimProviderValidationControlClaimsRequestedTypeMissing": "В элементе \"ClaimsRequested\" отсутствует значение \"Type\". Проверьте и повторите попытку.",
- "claimProviderValidationControlIdAlreadyExists": "Значение \"Id\" для \"Control\" уже существует. Проверьте и повторите попытку.",
- "claimProviderValidationControlIdMissing": "В \"Control\" отсутствует значение \"Id\". Проверьте и повторите попытку.",
- "claimProviderValidationControlIdReferencedInExistingPolicy": "Значение \"Id\" для \"Control\" невозможно удалить, так как на него ссылается существующая политика. Сначала удалите его из политики.",
- "claimProviderValidationControlIdTooManyControls": "Свойство \"Control\" содержит слишком много элементов управления. Проверьте его и повторите попытку.",
- "claimProviderValidationControlIdValueReserved": "Значение \"Id\" для \"Control\" является зарезервированным ключевым словом; используйте другой идентификатор.",
- "claimProviderValidationControlNameAlreadyExists": "Значение \"Name\" для \"Control\" уже существует. Проверьте и повторите попытку.",
- "claimProviderValidationControlNameMissing": "В \"Control\" отсутствует значение \"Name\". Проверьте и повторите попытку.",
- "claimProviderValidationControlsMissing": "В данных отсутствует значение \"Controls\". Проверьте и повторите попытку.",
- "claimProviderValidationDiscoveryUrlMissing": "В данных отсутствует значение \"DiscoveryUrl\". Проверьте и повторите попытку.",
- "claimProviderValidationInvalid": "Предоставленные данные недопустимы. Проверьте и повторите попытку.",
- "claimProviderValidationInvalidJsonDefinition": "Не удалось сохранить настраиваемый элемент управления. Проверьте текст JSON и повторите попытку.",
- "claimProviderValidationNameAlreadyExists": "Значение \"Name\" уже существует. Проверьте и повторите попытку.",
- "claimProviderValidationNameMissing": "В данных отсутствует значение \"Name\". Проверьте и повторите попытку.",
- "claimProviderValidationUnknown": "Произошла неизвестная ошибка при проверке предоставленных данных. Проверьте и повторите попытку.",
- "claimProvidersNone": "Нет настраиваемых элементов управления",
- "claimProvidersSearchPlaceholder": "Поиск элементов управления.",
- "classicPoilcyFilterTitle": "Показать",
- "classicPolicyAllPlatforms": "Все платформы",
- "classicPolicyClientAppBrowserAndNative": "Браузер, мобильные приложения и клиенты для настольных ПК",
- "classicPolicyCloudAppTitle": "Облачное приложение",
- "classicPolicyControlAllow": "Разрешить",
- "classicPolicyControlBlock": "Заблокировать",
- "classicPolicyControlBlockWhenNotAtWork": "Блокировать доступ, если не на работе",
- "classicPolicyControlRequireCompliantDevice": "Требовать соответствующее устройство",
- "classicPolicyControlRequireDomainJoinedDevice": "Требуется устройство, присоединенное к домену",
- "classicPolicyControlRequireMfa": "Требовать многофакторную проверку подлинности",
- "classicPolicyControlRequireMfaWhenNotAtWork": "Требовать многофакторную проверку подлинности, если не на работе",
- "classicPolicyDeleteCommand": "Удалить",
- "classicPolicyDeleteFailTitle": "Не удалось удалить классическую политику",
- "classicPolicyDeleteInProgressTitle": "Удаление классической политики",
- "classicPolicyDeleteSuccessTitle": "Классическая политика удалена",
- "classicPolicyDetailBladeTitle": "Подробности",
- "classicPolicyDisableCommand": "Отключить",
- "classicPolicyDisableConfirmation": "Действительно отключить \"{0}\"? Это действие невозможно отменить.",
- "classicPolicyDisableFailDescription": "Не удалось отключить политику \"{0}\"",
- "classicPolicyDisableFailTitle": "Не удалось отключить классическую политику",
- "classicPolicyDisableInProgressDescription": "Отключение политики \"{0}\"",
- "classicPolicyDisableInProgressTitle": "Отключение классической политики",
- "classicPolicyDisableSuccessDescription": "Политика \"{0}\" отключена",
- "classicPolicyDisableSuccessTitle": "Классическая политика отключена",
- "classicPolicyEasSupportedPlatforms": "Поддерживаемые платформы Exchange ActiveSync",
- "classicPolicyEasUnsupportedPlatforms": "Неподдерживаемые платформы Exchange ActiveSync",
- "classicPolicyExcludedPlatformsTitle": "Исключенные платформы устройств",
- "classicPolicyFilterAll": "Все политики",
- "classicPolicyFilterDisabled": "Отключенные политики",
- "classicPolicyFilterEnabled": "Включенные политики",
- "classicPolicyIncludeExcludeMembersDescription": "Исключая группы, вы можете выполнить поэтапный перенос политик.",
- "classicPolicyIncludeExcludeMembersTitle": "Включение и исключение групп",
- "classicPolicyIncludedPlatformsTitle": "Включенные платформы устройств",
- "classicPolicyManualMigrationMessage": "Эту политику необходимо перенести вручную.",
- "classicPolicyMigrateCommand": "Перенос",
- "classicPolicyMigrateConfirmation": "Действительно выполнить миграцию \"{0}\"? Эту политику можно перенести только один раз.",
- "classicPolicyMigrateFailDescription": "Не удалось перенести \"{0}\"",
- "classicPolicyMigrateFailTitle": "Не удалось перенести классическую политику",
- "classicPolicyMigrateInProgressDescription": "Миграция \"{0}\"...",
- "classicPolicyMigrateInProgressTitle": "Перенос классической политики",
- "classicPolicyMigrateRecommendText": "Рекомендация: перейдите на новые политики портала Azure.",
- "classicPolicyMigrateSuccessTitle": "Классическая политика перенесена",
- "classicPolicyMigratedSuccessDescription": "Теперь этой классической политикой можно управлять в разделе \"Политики\".",
- "classicPolicyMigratedSuccessDescriptionMultiple": "Эта классическая политика переносится в виде нескольких новых политик ({0}). Новыми политиками можно управлять в разделе \"Политики\".",
- "classicPolicyNoEditPermissionMsg": "У вас нет разрешения на изменение этой политики. Только глобальные администраторы и администраторы безопасности могут изменять политику. Щелкните здесь, чтобы получить дополнительные сведения.",
- "classicPolicySaveFailDescription": "Не удалось сохранить политику \"{0}\"",
- "classicPolicySaveFailTitle": "Не удалось сохранить классическую политику",
- "classicPolicySaveInProgressDescription": "Сохранение политики \"{0}\"",
- "classicPolicySaveInProgressTitle": "Сохранение классической политики",
- "classicPolicySaveSuccessDescription": "Политика \"{0}\" сохранена",
- "classicPolicySaveSuccessTitle": "Классическая политика сохранена",
- "clientAppBladeLegacyInfoBanner": "Устаревший способ проверки подлинности сейчас не поддерживается.",
- "clientAppBladeLegacyUpsellBanner": "Блокировка неподдерживаемых клиентских приложений (предварительная версия)",
- "clientAppBladeTitle": "Клиентские приложения",
- "clientAppDescription": "Выберите клиентские приложения, на которые будет распространяться эта политика.",
- "clientAppExchangeActiveSync": "Exchange ActiveSync",
- "clientAppExchangeDisabledInfo": "Exchange ActiveSync доступен, если Exchange Online — единственное выбранное облачное приложение. Щелкните, чтобы узнать больше.",
- "clientAppExchangeWarning": "Exchange ActiveSync сейчас не поддерживает все остальные условия.",
- "clientAppLearnMore": "Управляйте доступом пользователей к определенным клиентским приложениям, не использующим современную проверку подлинности.",
- "clientAppLegacyHeader": "Клиенты с устаревшими версиями проверки подлинности",
- "clientAppMobileDesktop": "Мобильные приложения и настольные клиенты",
- "clientAppModernHeader": "Клиенты с современной проверкой подлинности",
- "clientAppOnlySupportedPlatforms": "Применить политику только к поддерживаемым платформам",
- "clientAppSelectSpecificClientApps": "Выбрать клиентские приложения",
- "clientAppV2BladeTitle": "Клиентские приложения (предварительная версия)",
- "clientAppWebBrowser": "Браузер",
- "clientAppsSelectedLabel": "Включено: {0}",
- "clientTypeBrowser": "Браузер",
- "clientTypeEas": "Клиенты Exchange ActiveSync",
- "clientTypeEasInfo": "Клиенты Exchange ActiveSync, использующие только устаревшую проверку подлинности.",
- "clientTypeModernAuth": "Клиенты с современной проверкой подлинности",
- "clientTypeOtherClients": "Другие клиенты",
- "clientTypeOtherClientsInfo": "Сюда входят старые офисные клиенты и другие протоколы электронной почты (POP, IMAP, SMTP и т. д.). [Дополнительные сведения][1]\n[1]: https://aka.ms/caclientapps\n",
- "cloudAppCountDiffBannerText": "Из каталога удалены облачные приложения ({0}), настроенные в этой политике, но это не затронет другие ее приложения. Удаление из политики произойдет автоматически при следующем изменении ее раздела приложений.",
- "cloudAppsSelectionBladeAllMicrosoftApps": "Все приложения Майкрософт",
- "cloudAppsSelectionExcludeAllMicrosoftClients": "Разрешить облачные, классические и мобильные приложения Майкрософт (предварительная версия)",
- "cloudappsSelectionBladeAllCloudapps": "Все облачные приложения",
- "cloudappsSelectionBladeExcludeDescription": "Выбор облачных приложений, которые будут исключены из политики.",
- "cloudappsSelectionBladeExcludedSelectorTitle": "Выбрать исключенные облачные приложения",
- "cloudappsSelectionBladeIncludeDescription": "Выбрать облачные приложения, к которым будет применяться эта политика",
- "cloudappsSelectionBladeIncludedSelectorTitle": "Выбрать",
- "cloudappsSelectionBladeSelectedCloudapps": "Выбрать приложения",
- "cloudappsSelectorInfoBallonText": "Службы, которые пользователь использует для работы. Например, Salesforce.",
- "cloudappsSelectorUserPlural": "Приложений: {0}",
- "cloudappsSelectorUserSingular": "1 приложение",
- "conditionLabelMulti": "Выбрано условий: {0}",
- "conditionLabelOne": "1 условие выбрано",
- "conditionalAccessBladeTitle": "Условный доступ",
- "conditionsNotSelectedLabel": "Не настроено",
- "conditionsReqPwSet": "Некоторые варианты недоступны, так как сейчас выбрано предоставление разрешения \"Требовать изменения пароля\".",
- "configureCasText": "Настроить Cloud App Security",
- "configureCustomControlsText": "Настроить пользовательскую политику",
- "controlLabelMulti": "Выбрано элементов управления: {0}",
- "controlLabelOne": "1 элемент управления выбран",
- "controlValidatorText": "Выберите по меньшей мере один элемент управления",
- "controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
- "controlsDeviceComplianceInfoBubble": "Устройство должно соответствовать политике Intune. Если устройство не соответствует ей, пользователя попросят привести его в соответствие с требованиями.",
- "controlsDomainJoinedInfoBubble": "Устройства должны быть устройствами с гибридным присоединением к Azure AD.",
- "controlsMamInfoBubble": "Устройство должно использовать следующие утвержденные клиентские приложения.",
- "controlsMfaInfoBubble": "Пользователь должен выполнить дополнительные требования безопасности, такие как телефонный звонок, SMS.",
- "controlsOrAndInfoBubble": "ControlsOrAndInfoBubble",
- "controlsRequireCompliantAppInfoBubble": "На устройстве следует использовать приложения, защищенные политикой.",
- "controlsRequirePasswordResetInfoBubble": "Требование изменения пароля для снижения пользовательского риска. Этот вариант также требует многофакторной проверки подлинности. Использовать другие элементы управления невозможно.",
- "countriesRadiobuttonInfoBalloonContent": "Страна или регион, откуда выполняется вход, определяются по IP-адресу пользователя.",
- "createNewVpnCert": "Новый сертификат",
- "createdTimeLabel": "Время создания",
- "customRoleLabel": "Настраиваемые роли (не поддерживаются)",
- "dateRangeTypeLabel": "Диапазон дат",
- "daysOfWeekPlaceholderText": "Фильтр по дням недели",
- "daysOfWeekTypeLabel": "Дни недели",
- "deletePolicyNoLicenseText": "Теперь вы можете удалить эту политику. После удаления вы не сможете создать ее повторно, если у вас нет необходимых лицензий.",
- "descriptionContentForControlsAndOr": "Для нескольких элементов управления",
- "devicePlatform": "Платформа устройства",
- "devicePlatformConditionHelpDescription": "Применение политики к выбранным платформам устройств.\n[Дополнительные сведения][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2044750",
- "devicePlatformInclude": "Включено: {0}",
- "devicePlatformIncludeExclude": "Исключены: {0} и {1}",
- "devicePlatformNoSelectionError": "Для выбора платформ устройств требуется выбрать один вложенный элемент.",
- "devicePlatformsNone": "Нет",
- "deviceSelectionBladeExcludeDescription": "Выбор платформ, которые будут исключены из политики.",
- "deviceSelectionBladeIncludeDescription": "Выбрать платформы устройств, включаемые в эту политику",
- "deviceStateAll": "Все состояния устройств",
- "deviceStateCompliant": "Устройство, отмеченное как соответствующее требованиям",
- "deviceStateCompliantInfoContent": "Устройства, совместимые с Intune, будут исключены из оценки этой политики, поэтому, например, если политика блокирует доступ, она заблокирует все устройства, кроме совместимых с Intune.",
- "deviceStateConditionConfigureInfoContent": "Настроить политику на основе состояния устройства",
- "deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Hybrid Azure AD joined' or 'marked as compliant'.\n '{0}' has been deprecated. Use '{1}' instead.",
- "deviceStateConditionSelectorLabel": "Состояние устройства (предварительная версия)",
- "deviceStateDomainJoined": "Устройство с гибридным присоединением к Azure AD",
- "deviceStateDomainJoinedInfoContent": "Устройства с гибридным присоединением к Azure AD не будут проверяться на соответствие этой политике. Например, если политика блокирует доступ, она будет делать это для всех устройств, кроме этих.",
- "deviceStateDomainJoinedInfoLinkText": "Дополнительные сведения.",
- "deviceStateExcludeDescription": "Выберите условие состояния устройства, используемое для исключения устройств из политики.",
- "deviceStateIncludeAndExcludeOneLabel": "{0} и исключить {1}",
- "deviceStateIncludeAndExcludeTwoLabel": "{0} и исключить {1}, {2}",
- "directoryRoleInfoContent": "Назначьте политику для встроенных ролей каталога.",
- "directoryRolesLabel": "Роли каталога",
- "discardbutton": "Отменить",
- "downloadDefaultFileName": "Диапазоны IP-адресов",
- "downloadExampleFileName": "Пример",
- "downloadExampleHeader": "Это пример файла, в котором демонстрируются типы данных, которые могут быть приняты. Строки, начинающиеся с символа #, будут пропущены.",
- "endDatePickerLabel": "Элементы",
- "endTimePickerLabel": "Время окончания",
- "enterCountryText": "IP-адрес и страна проверяются в паре. Выберите страну.",
- "enterIpText": "IP-адрес и страна проверяются в паре. Введите IP-адрес.",
- "enterUserText": "Нет выбранных пользователей. Выберите пользователя.",
- "evaluationResult": "Результат вычисления",
- "exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
- "exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Только Exchange ActiveSync с поддерживаемыми платформами",
- "excludeAllTrustedLocationSelectorText": "все надежные расположения",
- "featureRequiresP2": "Для этой функции требуется лицензия Azure AD Premium 2.",
- "friday": "Пятница",
- "grantControls": "Предоставить управление",
- "gridNetworkTrusted": "Надежный",
- "gridPolicyCreatedDateTime": "Дата создания",
- "gridPolicyEnabled": "Включено",
- "gridPolicyModifiedDateTime": "Дата изменения",
- "gridPolicyName": "Имя политики",
- "gridPolicyState": "Состояние",
- "groupSelectionBladeExcludeDescription": "Выбор групп, которые будут исключены из политики",
- "groupSelectionBladeExcludedSelectorTitle": "Выбор исключенных групп",
- "groupSelectionBladeSelect": "Выбор групп",
- "groupSelectorInfoBallonText": "Группы в каталоге, к которому применяется политика. Например, \"пилотная группа\"",
- "groupsSelectionBladeTitle": "Группы",
- "helpCommonScenariosText": "Хотите узнать о распространенных ситуациях?",
- "helpCondition1": "Когда любой пользователь вне сети компании",
- "helpCondition2": "Когда пользователи в группе \"Менеджеры\" входят",
- "helpConditionsTitle": "Условия",
- "helpControl1": "При входе от них требуется пройти многофакторную идентификацию.",
- "helpControl2": "Они должны использовать устройство, присоединенное к домену и соответствующее требованиям Intune.",
- "helpControlsTitle": "Элементы управления",
- "helpIntroText": "Условный доступ позволяет требовать соблюдение определенных условий в отношении доступа, когда удовлетворяется определенный критерий. Приведем несколько примеров.",
- "helpIntroTitle": "Что представляет собой условный доступ?",
- "helpLearnMoreText": "Хотите узнать больше об условном доступе?",
- "helpStartStep1": "Создайте первую политику, щелкнув \"+ Новая политика\"",
- "helpStartStep2": "Укажите условия и механизмы контроля для политики",
- "helpStartStep3": "Когда все сделаете, не забудьте включить политику и создать",
- "helpStartTitle": "Начало работы",
- "highRisk": "Высокая",
- "includeAndExcludeAppsTextFormat": "Включить: {0}. Исключить: {1}.",
- "includeAppsTextFormat": "Включить: {0}.",
- "includeUnknownAreasCheckboxInfoBalloonContent": "Неизвестные области — это IP-адреса, которые невозможно сопоставить со страной или регионом.",
- "includeUnknownAreasCheckboxLabel": "Включить неизвестные области",
- "infoCommandLabel": "Сведения",
- "invalidCertDuration": "Недопустимый срок действия сертификата",
- "invalidIpAddress": "Необходимо указать допустимый IP-адрес.",
- "invalidUriErrorMsg": "Введите допустимый URI, например \"uri:contoso.com:acr\" ",
- "iosDisplayName": "iOS",
- "linuxDisplayName": "Linux",
- "linuxDisplayNamePreview": "Linux (предварительная версия)",
- "loadAll": "Загрузить все",
- "loading": "Идет загрузка...",
- "locationConfigureNamedLocationsText": "Настроить все надежные расположения",
- "locationConfigureNamedLocationsUri": "{0}/usermanagement/mfasettings.aspx?tenantid={1}&culture={2}",
- "locationNameTooLongError": "Слишком длинное имя расположения. Максимум — 256 символов",
- "locationSelectionBladeExcludeDescription": "Выбор расположений, которые будут исключены из политики.",
- "locationSelectionBladeIncludeDescription": "Выберите расположения, включаемые в эту политику",
- "locationsAllLocationsLabel": "Любое местонахождение",
- "locationsAllNamedLocationsLabel": "Все надежные IP-адреса",
- "locationsAllPrivateLinksLabel": "Все частные каналы в моем клиенте",
- "locationsIncludeExcludeLabel": "{0} и исключить все надежные IP-адреса",
- "locationsSelectedPrivateLinksLabel": "Выбранные приватные каналы",
- "lowRisk": "Низкий",
- "macOsDisplayName": "macOS",
- "managePoliciesLicenseText": "Для управления политиками условного доступа вашей организации требуется Azure AD Premium P1 или P2.",
- "markAsTrustedCheckboxInfoBalloonContent": "Вход из надежного расположения снижает риск входа пользователя. Отмечайте это расположение как надежное, только если указанные диапазоны IP-адресов в организации хорошо известны и получены из достоверных источников.",
- "markAsTrustedCheckboxLabel": "Отметить как надежное расположение",
- "mediumRisk": "Средняя",
- "memberSelectionCommandRemove": "Удалить",
- "menuItemClaimProviderControls": "Настраиваемые элементы управления (предварительная версия)",
- "menuItemClassicPolicies": "Классические политики",
- "menuItemInsightsAndReporting": "Аналитические данные и отчеты",
- "menuItemManage": "Управление",
- "menuItemNamedLocationsPreview": "Именованные расположения (предварительная версия)",
- "menuItemNamedNetworks": "Именованные расположения",
- "menuItemPolicies": "Политики",
- "menuItemTermsOfUse": "Условия использования",
- "modifiedTimeLabel": "Время изменения",
- "monday": "Понедельник",
- "nameLabel": "Имя",
- "namedLocationCountryInfoBanner": "Со странами и регионами сопоставляются только адреса IPv4. Адреса IPv6 включаются в неизвестные страны и регионы.",
- "namedLocationTypeCountry": "Страны/регионы",
- "namedLocationTypeLabel": "Задайте расположение, используя:",
- "namedLocationUpsellBanner": "Использовать это представление не рекомендуется. Перейти к новому улучшенному представлению \"Именованные расположения\".",
- "namedLocationsHelpDescription": "Именованные расположения используются отчетами о безопасности Microsoft Azure AD для сокращения числа ложноположительных результатов, а также политиками условного доступа Microsoft Azure AD.\n[Подробнее][1]\n[1]: https://aka.ms/namedlocationupdate",
- "namedNetworkAddIpRanges": "Добавьте новый диапазон IP-адресов (например: 40.77.182.32/27)",
- "namedNetworkCountryNeeded": "Нужно выбрать по меньшей мере одну страну",
- "namedNetworkDeleteCommand": "Удалить",
- "namedNetworkDeleteDescription": "Вы действительно хотите удалить сеть \"{0}\"? Это действие невозможно отменить.",
- "namedNetworkDeleteTitle": "Вы уверены?",
- "namedNetworkDownloadIpRange": "Скачать",
- "namedNetworkInvalidRange": "Значение должно быть допустимым диапазоном IP-адресов.",
- "namedNetworkIpRangeNeeded": "Требуется по меньшей мере один допустимый диапазон IP-адресов.",
- "namedNetworkIpRangesDescriptionContent": "Настройка диапазонов IP-адресов организации",
- "namedNetworkIpRangesTab": "Диапазоны IP-адресов",
- "namedNetworkListAdd": "Создать расположение",
- "namedNetworkListConfigureTrustedIps": "Настроить надежные IP-адреса MFA",
- "namedNetworkNameDescription": "Пример: \"офис Redmond\"",
- "namedNetworkNameInvalid": "Указанное имя недопустимо.",
- "namedNetworkNameRequired": "Необходимо указать имя для этого расположения.",
- "namedNetworkNoIpRanges": "Диапазоны IP-адресов отсутствуют",
- "namedNetworkNotificationCreateDescription": "Создание расположения с именем \"{0}\"",
- "namedNetworkNotificationCreateFailedDescription": "Сбой при создании расположения \"{0}\". Повторите попытку позже.",
- "namedNetworkNotificationCreateFailedTitle": "Не удалось создать расположение",
- "namedNetworkNotificationCreateSuccessDescription": "Создано расположение с именем \"{0}\"",
- "namedNetworkNotificationCreateSuccessTitle": "Создана сеть \"{0}\"",
- "namedNetworkNotificationCreateTitle": "Идет создание сети \"{0}\"",
- "namedNetworkNotificationDeleteDescription": "Удаление расположения с именем \"{0}\"",
- "namedNetworkNotificationDeleteFailedDescription": "Сбой при удалении расположения \"{0}\". Повторите попытку позже.",
- "namedNetworkNotificationDeleteFailedTitle": "Не удалось удалить расположение",
- "namedNetworkNotificationDeleteSuccessDescription": "Расположение с именем \"{0}\" удалено",
- "namedNetworkNotificationDeleteSuccessTitle": "Сеть \"{0}\" удалена.",
- "namedNetworkNotificationDeleteTitle": "Идет удаление \"{0}\"",
- "namedNetworkNotificationUpdateDescription": "Изменение расположения с именем \"{0}\"",
- "namedNetworkNotificationUpdateFailedDescription": "Сбой при изменении расположения \"{0}\". Повторите попытку позже.",
- "namedNetworkNotificationUpdateFailedTitle": "Не удалось изменить расположение",
- "namedNetworkNotificationUpdateSuccessDescription": "Расположение с именем \"{0}\" изменено",
- "namedNetworkNotificationUpdateSuccessTitle": "Сеть \"{0}\" изменена.",
- "namedNetworkNotificationUpdateTitle": "Идет обновление сети \"{0}\".",
- "namedNetworkSearchPlaceholder": "Поиск расположений.",
- "namedNetworkUploadFailedDescription": "Произошла ошибка при анализе предоставленного файла. Отправьте обычный текстовый файл со строками в формате CIDR.",
- "namedNetworkUploadFailedTitle": "Не удалось проанализировать \"{0}\".",
- "namedNetworkUploadInProgressDescription": "Выполняется попытка проанализировать допустимые значения CIDR из \"{0}\".",
- "namedNetworkUploadInProgressTitle": "Анализируется \"{0}\"",
- "namedNetworkUploadInvalidDescription": "\"{0}\" слишком велик или имеет недопустимый формат.",
- "namedNetworkUploadInvalidTitle": "Недопустимый файл \"{0}\"",
- "namedNetworkUploadIpRange": "Отправка",
- "namedNetworkUploadSuccessDescription": "Проанализировано строк: {0}. В неправильном формате: {1}. Пропущено: {2}.",
- "namedNetworkUploadSuccessTitle": "Завершен анализ \"{0}\"",
- "namedNetworksAdd": "Новое именованное расположение",
- "namedNetworksConditionHelpDescription": "Управление доступом пользователей на основе физического расположения.\n[Дополнительные сведения][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
- "namedNetworksExcludeLabel": "Исключены: {0} и {1}",
- "namedNetworksHelpDescription": "Именованные расположения используются отчетами о безопасности Microsoft Azure AD для сокращения числа ложноположительных результатов, а также политиками условного доступа Microsoft Azure AD.\n[Подробнее][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
- "namedNetworksIncludeLabel": "Включено: {0}",
- "namedNetworksNone": "Нет именованных расположений",
- "namedNetworksTitle": "Настройка расположений",
- "namednetworkExceedingSizeErrorBladeTitle": "Сведения об ошибке",
- "namednetworkExceedingSizeErrorDetailText": "Для получения дополнительных сведений щелкните здесь.",
- "namednetworkExceedingSizeErrorMessage": "Максимальный допустимый размер хранилища для именованных расположений превышен. Попробуйте сократить список. Для получения дополнительных сведений щелкните здесь.",
- "newCertName": "Новый сертификат",
- "noPolicyRowMessage": "Политик нет",
- "noSPSelected": "Не выбран ни один субъект-служба",
- "noUpdatePermissionMessage": "У вас нет разрешений для изменения этих параметров. Запросите доступ у глобального администратора.",
- "noUserSelected": "Пользователи не выбраны",
- "noneRisk": "Без риска",
- "office365Description": "Эти приложения включают Microsoft Flow, Microsoft Forms, Microsoft Teams, Office 365 Exchange Online, Office 365 SharePoint Online, Office 365 Yammer и другие.",
- "office365InfoBox": "По крайней мере одно из выбранных приложений входит в состав Office 365. Рекомендуется настроить эту политику для приложения Office 365.",
- "oneUserSelected": "Выбран один пользователь",
- "onlyGlobalAdminsCanSaveThisPolicyConfig": "Только глобальные администраторы могут сохранить эту политику.",
- "or": "{0} ИЛИ {1} ",
- "pickerDoneCommand": "Готово",
- "policiesBladeAdPremiumUpsellBannerText": "Azure AD Premium позволяет вам создавать собственные политики под конкретные области: облачные приложения, риски входа и платформы устройств",
- "policiesBladeTitle": "Политики",
- "policiesBladeTitleWithAppName": "Политик: {0}",
- "policiesDisabledBannerText": "Создание и изменение политик запрещено для приложений, с которыми связан атрибут входа.",
- "policiesHitMaxLimitStatusBarMessage": "Достигнуто максимальное число политик для этого клиента. Перед созданием дополнительных политик удалите существующие.",
- "policyAssignmentsSection": "Назначения",
- "policyBlockAllInfoBox": "Настроенная политика заблокирует всех пользователей, поэтому она не поддерживается. Проверьте назначения и средства контроля. Исключите текущего пользователя {0}, если вы хотите сохранить эту политику.",
- "policyCloudAppsDisplayTextAllApp": "Все приложения",
- "policyCloudAppsLabel": "Облачные приложения",
- "policyConditionClientAppDescription": "Программное обеспечение, которое пользователь использует для обращения к облачному приложению. Например, браузер.",
- "policyConditionClientAppV2Description": "Программное обеспечение, которое пользователь использует для обращения к облачному приложению. Например, браузер.",
- "policyConditionDevicePlatform": "Платформы устройств",
- "policyConditionDevicePlatformDescription": "Платформа, с которой пользователь выполняет вход. Например, iOS.",
- "policyConditionLocation": "Расположение",
- "policyConditionLocationDescription": "Расположение, определенное при помощи диапазона IP-адресов, из которого пользователь выполняет вход.",
- "policyConditionSigninRisk": "Риск при входе",
- "policyConditionSigninRiskDescription": "Вероятность входа по чужим учетным данным. Уровень риска может быть высоким, средним или низким. Требуется лицензия Azure AD Premium 2.",
- "policyConditionUserRisk": "Риск пользователя",
- "policyConditionUserRiskDescription": "Настройте уровни риска пользователей, необходимые для применения политики.",
- "policyConditioniClientApp": "Клиентские приложения",
- "policyConditioniClientAppV2": "Клиентские приложения (предварительная версия)",
- "policyControlAllowAccessDisplayedName": "Разрешить доступ",
- "policyControlAuthenticationStrengthDisplayedName": "Требуемая надежность проверки подлинности (предварительная версия)",
- "policyControlBladeTitle": "Предоставление",
- "policyControlBlockAccessDisplayedName": "Блокировка доступа",
- "policyControlCompliantDeviceDisplayedName": "Требовать, чтобы устройство было отмечено как соответствующее",
- "policyControlContentDescription": "Управляйте применением доступа для его блокировки или предоставления.",
- "policyControlInfoBallonText": "Заблокируйте доступ или укажите дополнительные требования, которые необходимо выполнить для разрешения доступа.",
- "policyControlMfaChallengeDisplayedName": "Требовать многофакторную проверку подлинности",
- "policyControlRequireCompliantAppDisplayedName": "Требование политики защиты приложений",
- "policyControlRequireDomainJoinedDisplayedName": "Требовать устройство с гибридным присоединением к Azure AD",
- "policyControlRequireMamDisplayedName": "Требовать утвержденное клиентское приложение",
- "policyControlRequiredPasswordChangeDisplayedName": "Требовать изменения пароля",
- "policyControlSelectAuthStrength": "Требуемая надежность проверки подлинности",
- "policyControlsNoControlsSelected": "Выбрано 0 механизмов управления",
- "policyControlsSection": "Элементы управления доступом",
- "policyCreatBladeTitle": "Создать",
- "policyCreateButton": "Создать",
- "policyCreateFailedMessage": "Ошибка. {0}",
- "policyCreateFailedTitle": "Не удалось создать политику \"{0}\"",
- "policyCreateInProgressTitle": "Идет создание сети \"{0}\"",
- "policyCreateSuccessMessage": "Политика \"{0}\" создана. Она будет включена через несколько минут, если параметр \"Включить политику\" имеет значение \"Включен\".",
- "policyCreateSuccessTitle": "Политика \"{0}\" создана",
- "policyDeleteConfirmation": "Вы действительно хотите удалить сеть \"{0}\"? Это действие невозможно отменить.",
- "policyDeleteFailTitle": "Не удалось удалить \"{0}\"",
- "policyDeleteInProgressTitle": "Идет удаление \"{0}\"",
- "policyDeleteSuccessTitle": "\"{0}\" успешно удалено",
- "policyEnforceLabel": "Включить политику",
- "policyErrorCannotSetSigninRisk": "У вас нет разрешений на сохранение политики с условием риска для входа.",
- "policyErrorNoPermission": "У вас нет разрешения на сохранение политики. Обратитесь к глобальному администратору.",
- "policyErrorUnknown": "Что-то пошло не так, повторите попытку позже.",
- "policyFallbackWarningMessage": "Не удалось создать или обновить \"{0}\" с помощью MS Graph, что привело к откату к AD Graph. Изучите следующий сценарий, так как наиболее вероятно возникновение ошибки при вызове конечной точки политики для MS Graph с несовместимым условием.",
- "policyFallbackWarningTitle": "Создание или обновление \"{0}\" выполнено частично успешно",
- "policyNameCannotBeEmpty": "Имя политики не может быть пустым.",
- "policyNameDevice": "Политика устройства",
- "policyNameFormat": "[{0}] {1}",
- "policyNameMam": "Политика управления мобильными приложениями",
- "policyNameMfaLocation": "Политика по многофакторной идентификации и расположениям",
- "policyNamePlaceholderText": "Пример: \"политика в отношении соответствия приложений на устройствах\"",
- "policyNameTooLongError": "Слишком длинное имя политики. Максимум — 256 символов",
- "policyOff": "Выкл.",
- "policyOn": "Вкл.",
- "policyReportOnly": "Только отчет",
- "policyReviewSection": "Просмотр",
- "policySaveButton": "Сохранить",
- "policyStatusIconDescription": "Политика включена",
- "policyStatusIconEnabled": "Значок состояния \"Включено\"",
- "policyTemplateName1": "Использовать ограничения, применяемые приложением, для доступа к {0} в браузере",
- "policyTemplateName2": "Разрешить доступ для {0} только на управляемых устройствах",
- "policyTemplateName3": "Политика, перенесенная из параметров Непрерывной оценки доступа",
- "policyTriggerRiskSpecific": "Выберите уровень риска",
- "policyTriggersInfoBalloonText": "Условия, при которых будет применена политика. Например, \"расположение\".",
- "policyTriggersNoConditionsSelected": "Выбрано 0 условий",
- "policyTriggersSelectorLabel": "Условия",
- "policyUpdateFailedMessage": "Ошибка. {0}",
- "policyUpdateFailedTitle": "Не удалось обновить {0}",
- "policyUpdateInProgressTitle": "Идет обновление {0}",
- "policyUpdateSuccessMessage": "Политика {0} обновлена. Она будет включена через несколько минут, если параметр \"Включить политику\" имеет значение \"Включен\".",
- "policyUpdateSuccessTitle": "{0} успешно обновлено",
- "primaryCol": "Основной",
- "privateLinkLabel": "Приватный канал Azure AD",
- "reportOnlyInfoBox": "Режим \"Только отчет\": при входе выполняется оценка соответствия политикам и запись в журнал, но пользователи никак не затрагиваются.",
- "requireAllControlsText": "Требовать все выбранные элементы управления",
- "requireCompliantDevice": "Требовать соответствующее устройство",
- "requireDomainJoined": "Требуется устройство, присоединенное к домену",
- "requireMFA": "Требуется многофакторная проверка подлинности ",
- "requireOneControlText": "Требовать один из выбранных элементов управления",
- "resetFilters": "Сброс фильтров",
- "sPRequired": "Требуется субъект-служба",
- "sPSelectorInfoBalloon": "Пользователь или субъект-служба, которые нужно проверить",
- "saturday": "Суббота",
- "searchTextTooLongError": "Слишком длинный поисковый запрос. Максимальное число символов — 256.",
- "securityDefaultsPolicyName": "Параметры безопасности по умолчанию",
- "securityDefaultsTextMessage": "Для включения политики условного доступа необходимо отключить параметры безопасности по умолчанию.",
- "securityDefaultsWarningMessage": "Похоже, вы хотите управлять конфигурациями безопасности организации. Отлично! Перед включением политики условного доступа необходимо отключить параметры безопасности по умолчанию.",
- "selectDevicePlatforms": "Выбрать платформы устройств",
- "selectNamedNetworksSubtitle": "",
- "selectNamedNetworksTitle": "Выберите расположения",
- "selectedSP": "Выбранный субъект-служба",
- "servicePrincipalDataGridAria": "Список доступных субъектов-служб",
- "servicePrincipalDropDownLabel": "К чему применяется эта политика?",
- "servicePrincipalInfoBox": "Некоторые условия недоступны из-за выбора \"{0}\" в назначении политики",
- "servicePrincipalRadioAll": "Все субъекты-службы, находящиеся в собственности",
- "servicePrincipalRadioSelect": "Выберите субъекты-службы",
- "servicePrincipalSelectionsAria": "Сетка выбранных субъектов-служб",
- "servicePrincipalSelectorAria": "Список выбранных субъектов-служб",
- "servicePrincipalSelectorMultiple": "Выбрано субъектов-служб: {0}",
- "servicePrincipalSelectorSingle": "Выбран один субъект-служба",
- "servicePrincipalSpecificInc": "Включены конкретные субъекты-службы",
- "servicePrincipals": "Субъекты-службы",
- "sessionControlBladeTitle": "Сеанс",
- "sessionControlDescriptionContent": "Управляйте доступом пользователей на основе элементов управления сеансами для ограничения возможностей взаимодействия с определенными облачными приложениями.",
- "sessionControlDisableInfo": "Этот элемент управления работает только с поддерживаемыми приложениями. Сейчас Office 365, Exchange Online и SharePoint Online — единственные облачные приложения, которые поддерживают ограничения приложений. Щелкните здесь, чтобы получить дополнительные сведения.",
- "sessionControlInfoBallonText": "Элементы управления сеанса предоставляют ограниченную функциональность в облачных приложениях.",
- "sessionControls": "Элементы управления сеансом",
- "sessionControlsAppEnforcedLabel": "Использовать ограничения, применяемые приложениями",
- "sessionControlsCasLabel": "Использовать управление условным доступом к приложениям",
- "sessionControlsSecureSignInLabel": "Требовать привязку токена",
- "sharepointAppName": "SharePoint",
- "signinRiskDescription": "Выберите уровень угрозы, связанной с входом, на который будет распространяться эта политика.",
- "signinRiskInclude": "Включено: {0}",
- "signinRiskTriggerDescriptionContent": "Выберите уровень риска при входе",
- "singleTenantServicePrincipalInfoBallonText": "Политика применяется только к субъектам-службам одного клиента, принадлежащим вашей организации. Щелкните здесь, чтобы получить дополнительные сведения ",
- "specificSigninRiskLevelsOption": "Выберите конкретные уровни риска для входа",
- "specificUsersExcluded": "отдельные пользователи исключены",
- "specificUsersIncluded": "Отдельные пользователи включены",
- "specificUsersIncludedAndExcluded": "Определенные пользователи, исключенные и включенные",
- "startDatePickerLabel": "Запускается",
- "startFreeTrial": "Начните пользоваться бесплатной пробной версией",
- "startTimePickerLabel": "Время начала",
- "sunday": "Воскресенье",
- "testButton": "Параметр \"What If\"",
- "thumbprintCol": "Отпечаток",
- "thursday": "Четверг",
- "timeConditionAllTimesLabel": "В любое время",
- "timeConditionIntroText": "Настройте время, когда будет применяться политика",
- "timeConditionSelectorInfoBallonContent": "Время входа пользователя в систему. Например, \"Среда с 09:00 до 17:00 по тихоокеанскому стандартному времени\"",
- "timeConditionSelectorLabel": "Время (предварительная версия)",
- "timeConditionSpecificLabel": "Определенное время",
- "timeSelectorAllTimesText": "В любое время",
- "timeSelectorSpecificTimesText": "Определенное время настроено",
- "timeZoneDropdownInfoBalloonContent": "Выберите часовой пояс, в котором указан диапазон времени. Эта политика применяется к пользователям во всех часовых поясах. Например, время \"Среда с 9:00 до 17:00\" выглядит как \"Среда с 10:00 до 18:00\" для пользователя в другом часовом поясе.",
- "timeZoneDropdownLabel": "Часовой пояс",
- "timeZoneDropdownPlaceholderText": "Выберите часовой пояс",
- "tooManyPoliciesDescription": "Сейчас отображаются только первые 50 политик. Щелкните здесь, чтобы увидеть все политики.",
- "tooManyPoliciesTitle": "Найдено больше 50 политик.",
- "trustedLocationStatusIconDescription": "Это надежное расположение",
- "trustedLocationStatusIconEnabled": "Значок состояния \"Надежное\"",
- "tuesday": "Вторник",
- "uploadInBadState": "Не удалось отправить указанный файл.",
- "upsellAppsDescription": "Вы можете требовать использовать многофакторную идентификацию при работе в приложениях с конфиденциальной информацией все время или только при их использовании вне сети организации.",
- "upsellAppsTitle": "Защита приложений",
- "upsellBannerText": "Получить бесплатную пробную версию уровня \"Премиум\" для использования этой возможности",
- "upsellDataDescription": "Требовать, чтобы устройство было помечено как соответствующее или являлось устройствами с гибридным присоединением к Azure AD, чтобы получить доступ к ресурсам компании.",
- "upsellDataTitle": "Защита данных",
- "upsellDescription": "Условный доступ предоставляет механизмы управления и защиту, необходимые для обеспечения безопасности данных организации, а также позволяет пользователям наиболее эффективно работать с любого устройства. Например, вы можете разрешить доступ только при работе из локальной сети или запретить доступ устройствам, которые не соответствуют политикам.",
- "upsellRiskDescription": "Требование многофакторной проверки подлинности для событий риска, обнаруженных системой машинного обучения Майкрософт.",
- "upsellRiskTitle": "Защита от рисков",
- "upsellTitle": "Условный доступ",
- "upsellWhyTitle": "Зачем нужно использовать условный доступ?",
- "userAppNoneOption": "Нет",
- "userNamePlaceholderText": "Введите имя пользователя",
- "userNotSetSeletorLabel": "Выбрано 0 пользователей и групп",
- "userOnlySelectionBladeExcludeDescription": "Выберите пользователей, которые будут исключены из политики",
- "userOrGroupSelectionCountDiffBannerText": "{0}, настроенные в этой политике, были удалены из каталога, однако это не влияет на других пользователей и на другие группы в политике. При следующем обновлении политики удаленные пользователи и/или группы будут автоматически удалены.",
- "userOrSPNotSetSelectorLabel": "Удостоверения пользователей или рабочих нагрузок не выбраны",
- "userOrSPSelectionBladeTitle": "Удостоверения пользователей или рабочих нагрузок",
- "userOrSPSelectorInfoBallonText": "Удостоверения в каталоге, к которому применяется политика, включая пользователей, группы и субъекты-службы",
- "userRequired": "Требуется пользователь",
- "userRiskErrorBox": "Если выбрано предоставления разрешения \"Требовать изменения пароля\", необходимо выбрать условие \"Пользовательский риск\".",
- "userSPRequired": "Требуется пользователь или субъект-служба",
- "userSPSelectorTitle": "Удостоверение пользователя или рабочей нагрузки",
- "userSelectionBladeAllUsersAndGroups": "Все пользователи и группы",
- "userSelectionBladeExcludeDescription": "Выбор пользователей и групп, которые будут исключены из политики.",
- "userSelectionBladeExcludeTabTitle": "Исключить",
- "userSelectionBladeExcludedSelectorTitle": "Выбор исключенных пользователей",
- "userSelectionBladeIncludeDescription": "Выберите пользователей, к которым будет применяться эта политика",
- "userSelectionBladeIncludeTabTitle": "Включение",
- "userSelectionBladeIncludedSelectorTitle": "Выбрать",
- "userSelectionBladeSelectUsers": "Выбрать пользователей",
- "userSelectionBladeSelectedUsers": "Выбрать пользователей и группы",
- "userSelectionBladeTitle": "Пользователи и группы",
- "userSelectorBladeTitle": "Пользователи",
- "userSelectorExcluded": "Исключено: {0}",
- "userSelectorGroupPlural": "Групп: {0}",
- "userSelectorGroupSingular": "1 группа",
- "userSelectorIncluded": "Включено: {0}",
- "userSelectorInfoBallonText": "Пользователи и группы в каталоге, к которому применяется политика. Например, \"пилотная группа\".",
- "userSelectorSelected": "Выбрано: {0}.",
- "userSelectorTitle": "Пользователь",
- "userSelectorUserAndGroup": "{0}, {1}",
- "userSelectorUserPlural": "Пользователи: {0}",
- "userSelectorUserSingular": "1 пользователь",
- "userSelectorWithExclusion": "{0} и {1}",
- "usersGroupsLabel": "Пользователи и группы",
- "viewApprovedAppsText": "Смотреть список утвержденных клиентских приложений",
- "viewCompliantAppsText": "Смотреть список клиентских приложений, защищенных политикой",
- "vpnBladeTitle": "Подключение VPN",
- "vpnCertCreateFailedMessage": "Ошибка: {0}",
- "vpnCertCreateFailedTitle": "Не удалось создать {0}.",
- "vpnCertCreateInProgressTitle": "Создание {0}",
- "vpnCertCreateSuccessMessage": "Сертификат {0} успешно создан.",
- "vpnCertCreateSuccessTitle": "{0} создана.",
- "vpnCertNoRowsMessage": "Сертификаты VPN не найдены",
- "vpnCertUpdateFailedMessage": "Ошибка: {0}",
- "vpnCertUpdateFailedTitle": "Не удалось обновить {0}",
- "vpnCertUpdateInProgressTitle": "Идет обновление {0}",
- "vpnCertUpdateSuccessMessage": "Сертификат {0} успешно обновлен.",
- "vpnCertUpdateSuccessTitle": "{0} успешно обновлено",
- "vpnFeatureInfo": "Чтобы получить дополнительные сведения о подключении VPN и условном доступе, щелкните здесь.",
- "vpnFeatureWarning": "Сертификат VPN, созданный на портале Azure, будет сразу же использоваться в Azure AD для выдачи краткосрочных сертификатов VPN-клиенту. Чтобы избежать проблем с проверкой учетных данных VPN-клиента, необходимо немедленно развернуть сертификат VPN на VPN-сервере.",
- "vpnMenuText": "Подключение VPN",
- "vpncertDropdownDefaultOption": "Длительность",
- "vpncertDropdownInfoBalloonContent": "Выберите срок действия создаваемого сертификата",
- "vpncertDropdownLabel": "Выбрать длительность",
- "vpncertDropdownOneyearOption": "1 год",
- "vpncertDropdownThreeyearOption": "3 года",
- "vpncertDropdownTwoyearOption": "2 года",
- "wednesday": "Среда",
- "whatIfAppEnforcedControl": "Использовать ограничения, применяемые приложениями",
- "whatIfBladeDescription": "Проверка влияния условного доступа на пользователя при входе в определенных условиях.",
- "whatIfBladeTitle": "Параметр \"What If\"",
- "whatIfClassicPoliciesWarning": "Этот инструмент не оценивает классические политики.",
- "whatIfClientAppInfo": "Клиентское приложение, откуда входит пользователь. Например, \"Браузер\".",
- "whatIfCountry": "Страна",
- "whatIfCountryInfo": "Страна, из которой входит пользователь.",
- "whatIfDevicePlatformInfo": "Платформа устройства, с которой пользователь входит в систему.",
- "whatIfDeviceStateInfo": "Состояние устройства, с которого входит пользователь",
- "whatIfEnterIpAddress": "Введите IP-адрес (например: 40.77.182.32)",
- "whatIfErrorInvalidIpAddress": "Указан недопустимый адрес IP.",
- "whatIfEvaResultApplication": "Облачные приложения",
- "whatIfEvaResultClientApps": "Клиентское приложение",
- "whatIfEvaResultDevicePlatform": "Платформа устройства",
- "whatIfEvaResultEmptyPolicy": "Пустая политика",
- "whatIfEvaResultInvalidCondition": "Недопустимое условие",
- "whatIfEvaResultInvalidPolicy": "Недопустимая политика",
- "whatIfEvaResultLocation": "Расположение",
- "whatIfEvaResultNotEnoughInformation": "Недостаточно сведений",
- "whatIfEvaResultPolicyNotEnabled": "Политика не включена",
- "whatIfEvaResultSignInRisk": "Риск при входе",
- "whatIfEvaResultUsers": "Пользователи и группы",
- "whatIfIpAddress": "IP-адрес",
- "whatIfIpAddressInfo": "IP-адрес, с которого пользователь входит в систему.",
- "whatIfIpCountryInfoBoxText": "При указании IP-адреса или страны оба поля являются обязательными и должны правильно сопоставляться.",
- "whatIfPolicyAppliesTab": "Политики, которые будут применяться",
- "whatIfPolicyDoesNotApplyTab": "Политики, которые не будут применяться",
- "whatIfReasons": "Причины, по которым эта политика не применяется",
- "whatIfSelectClientApp": "Выберите клиентское приложение…",
- "whatIfSelectCountry": "Выберите страну...",
- "whatIfSelectDevicePlatform": "Выберите платформу устройства...",
- "whatIfSelectPrivateLink": "Выберите приватный канал…",
- "whatIfSelectServicePrincipalRisk": "Выбор риска субъект-службы...",
- "whatIfSelectSignInRisk": "Выберите риск входа…",
- "whatIfSelectType": "Выберите тип удостоверения",
- "whatIfSelectUserRisk": "Выберите пользовательский риск…",
- "whatIfServicePrincipalRiskInfo": "Уровень риска, связанный с субъект-службой",
- "whatIfSignInRisk": "Риск при входе",
- "whatIfSignInRiskInfo": "Уровень риска, связанный со входом в систему",
- "whatIfUnknownAreas": "Неизвестные области",
- "whatIfUserPickerLabel": "Выбранный пользователь",
- "whatIfUserPickerNoRowsLabel": "Пользователи или субъекты-службы не выбраны",
- "whatIfUserRiskInfo": "Связанный с пользователем уровень риска",
- "whatIfUserSelectorInfo": "Пользователь в каталоге, которого вы хотите проверить",
- "windows365InfoBox": "Выбор Windows 365 повлияет на подключения к облачным компьютерам и узлам сеансов виртуальных рабочих столов Azure. Щелкните здесь для получения дополнительных сведений.",
- "windowsDisplayName": "Windows",
- "windowsPhoneDisplayName": "Windows Phone",
- "workloadIdentities": "Удостоверения рабочих нагрузок (предварительная версия)",
- "workloadIdentity": "Удостоверение рабочей нагрузки"
- },
- "ApplicableDeviceType": {
- "iPad": "iPad",
- "iPhoneAndIPod": "iPhone и iPod"
- },
- "TAPSettings": {
- "AllowedDataIngestionLocations": {
- "label": "Разрешить пользователям открывать данные из выбранных служб",
- "tooltip": "Выберите службы хранения приложений, из которых пользователи смогут открывать данные. Все прочие службы блокируются. Если не выбрать никаких служб, пользователи не смогут открывать данные."
- },
- "AndroidBackup": {
- "label": "Резервное копирование корпоративных данных в службы Android",
- "tooltip": "Выберите {0}, чтобы заблокировать резервное копирование корпоративных данных в службы резервного копирования Android. \r\nВыберите {1}, чтобы разрешить резервное копирование корпоративных данных в службы резервного копирования Android. \r\nЛичные или неуправляемые данные затронуты не будут."
- },
- "AndroidBiometricAuthentication": {
- "label": "Доступ с помощью биометрии вместо ПИН-кода",
- "tooltip": "Выберите доступные людям способы проверки подлинности в Android вместо ПИН-кода приложения (при наличии)."
- },
- "AndroidFingerprint": {
- "label": "Отпечаток пальца вместо ПИН-кода для доступа (Android 6.0 и выше)",
- "tooltip": "Для проверки подлинности пользователей устройств с ОС Android сканируется отпечаток пальца. Эта функция поддерживает встроенные биометрические элементы управления устройств с Android. Биометрические параметры конкретных изготовителей, такие как Samsung Pass, не поддерживаются. Для доступа к приложению на соответствующем устройстве следует использовать встроенные биометрические элементы управления, если они разрешены."
- },
- "AndroidOverrideFingerprint": {
- "label": "Заменять отпечаток пальца ПИН-кодом после истечения времени ожидания"
- },
- "AppPIN": {
- "label": "ПИН-код приложения, если задан ПИН-код устройства",
- "tooltip": "Если задан ПИН-код для зарегистрированного устройства в MDM, использовать ПИН-код для доступа к приложению не обязательно.
\r\n\r\nПримечание. Intune не может обнаружить регистрацию устройства в стороннем решении EMM на Android."
- },
- "BlockDataIngestionIntoOrganizationDocuments": {
- "label": "Открывать данные из корпоративных документов",
- "tooltip1": "Выберите Блокировать, чтобы отключить использование параметра Открыть или других параметров для предоставления учетным записям в этом приложении общего доступа к данным. Выберите Разрешить, чтобы разрешить использование параметра Открыть и других параметров для предоставления учетным записям в этом приложении общего доступа к данным.",
- "tooltip2": "Если выбран параметр Блокировать, можно настроить параметр Разрешить пользователю открывать данные из выбранных служб, чтобы указать, в каких службах разрешено размещать корпоративные данные.",
- "tooltip3": "Примечание. Этот параметр применяется только в том случае, если параметру \"Получать данные из других приложений\" задано значение \"Приложения, управляемые политикой\".
\r\nПримечание. Этот параметр применяется не ко всем приложениям. Дополнительные сведения: {0}.",
- "tooltip4": "Примечание. Этот параметр применяется только в том случае, если параметру \"Получать данные из других приложений\" задано значение \"Приложения, управляемые политикой\".
\r\nПримечание. Этот параметр применяется не ко всем приложениям. Дополнительные сведения: {0} или {0}."
- },
- "ConnectToVpnOnLaunch": {
- "label": "Запуск подключения к Microsoft Tunnel при запуске приложения",
- "tooltip": "Разрешить подключение к VPN при запуске приложения"
- },
- "CredentialsForAccess": {
- "label": "Учетные данные рабочей или учебной учетной записи для доступа",
- "tooltip": "При необходимости для доступа к приложению, управляемому политикой, нужно использовать рабочую или учебную учетную запись. Если ПИН-код или биомерические методы также требуются для доступа к приложению, помимо этих запросов потребуется рабочая или учебная учетная запись."
- },
- "CustomBrowserDisplayName": {
- "label": "Название неуправляемого браузера",
- "tooltip": "Введите имя приложения браузера, связанного с \"ИД неуправляемого браузера\". Это имя будет отображаться для пользователей, если указанный браузер не установлен."
- },
- "CustomBrowserPackageId": {
- "label": "ИД неуправляемого браузера",
- "tooltip": "Введите идентификатор приложения для одного браузера. Веб-содержимое (http/s) в управляемых политиками приложениях будет открываться в указанном браузере."
- },
- "CustomBrowserProtocol": {
- "label": "Протокол неуправляемого браузера",
- "tooltip": "Введите протокол для одного неуправляемого браузера. Веб-содержимое (http/s) в управляемых политиками приложениях будет открываться в любом приложении, поддерживающим этот протокол.
\r\n \r\nПримечание. Укажите только префикс протокола. Если ваш браузер требует использовать ссылки вида \"mybrowser://www.microsoft.com\", введите \"mybrowser\".
"
- },
- "CustomDialerAppDisplayName": {
- "label": "Имя приложения номеронабирателя"
- },
- "CustomDialerAppPackageId": {
- "label": "Идентификатор пакета приложения номеронабирателя"
- },
- "CustomDialerAppProtocol": {
- "label": "Схема URL-адресов приложений номеронабирателя"
- },
- "Cutcopypaste": {
- "label": "Ограничение вырезания, копирования и вставки между приложениями",
- "tooltip": "Вырезание, копирование и вставка данных между вашим приложением и другими утвержденными приложениями, установленными на устройстве. Вы можете полностью заблокировать эти действия, разрешить использовать их между любыми приложениями или только между теми, которыми управляет ваша организация.
\r\n\r\nУправляемые политикой приложения со вставкой позволяют принимать содержимое, вставляемое из других приложений, но блокировать копирование и вставку в приложения, не являющиеся управляемыми.
"
- },
- "DialerRestrictionLevel": {
- "iosTooltip": "Обычно когда пользователь нажимает на гиперссылку с номером телефона в приложении, открывается приложение номеронабирателя с уже подставленным номером, готовое к совершению вызова. Для этого параметра выберите, как будет обрабатываться этот тип передачи содержимого, когда он инициируется из приложения, управляемого политикой. Чтобы этот параметр вступил в силу, могут потребоваться дополнительные действия. Сначала проверьте, что tel и telprompt удалены из списка \"Выберите исключаемые приложения\". Затем убедитесь, что приложение использует более новую версию пакета SDK для Intune (версия 12.7.0 или выше).",
- "label": "Ограничить передачу коммуникационных данных",
- "tooltip": "Как правило, когда пользователь выбирает в приложении номер телефона в виде гиперссылки, приложение набирателя номера откроется с предварительно заполненным полем номера телефона и будет готово к вызову. Для использования этого параметра выберите способ обработки этого типа передачи содержимого, когда передача инициируется из приложения, управляемого политикой."
- },
- "EncryptData": {
- "label": "Шифрование корпоративных данных",
- "link": "https://docs.microsoft.com/ru-ru/intune/app-protection-policy-settings-android#data-relocation-settings",
- "tooltip": "Выберите {0}, чтобы принудительно использовать шифрование уровня приложений Intune для корпоративных данных.\r\n
\r\nВыберите {1}, чтобы не использовать шифрование уровня приложений Intune для корпоративных данных.\r\n\r\n
\r\nПримечание. Дополнительные сведения о шифровании уровня приложений Intune: {2}."
- },
- "EncryptDataAndroid": {
- "tooltip": "Выберите Требовать, чтобы включить шифрование рабочих или учебных данных в этом приложении. Для надежного шифрования Intune использует OpenSSL, 256-разрядную схему шифрования AES и систему хранения ключей Android Keystore. Данные шифруются синхронно при выполнении задач ввода-вывода с файлами. Содержимое в хранилище устройства всегда зашифровано. Пакет SDK по-прежнему будет поддерживать 128-разрядные ключи для совместимости с содержимым и приложениями, где используются его более ранние версии.
\r\n\r\nЭтот метод шифрования соответствует стандарту FIPS 140-2.
"
- },
- "EncryptDataIos": {
- "tooltip1": "Выберите Требовать, чтобы включить шифрование рабочих или учебных данных в этом приложении. Intune принудительно применяет шифрование устройств iOS или iPadOS для защиты данных приложений, пока устройство заблокировано. Приложения могут при необходимости зашифровать данные приложений с помощью шифрования пакетов SDK для приложений Intune. Пакет SDK для приложений Intune использует методы шифрования iOS или iPadOS, чтобы применить 128-разрядное шифрование AES к данным приложения.",
- "tooltip2": "При включении этого параметра пользователю может потребоваться настроить и использовать ПИН-код для доступа к устройству. Если ПИН-код и шифрование устройства не требуются, пользователя попросят задать ПИН-код в следующем сообщении: \"Для доступа к этому приложению организации требуется, чтобы вы сначала задали ПИН-код устройства\".",
- "tooltip3": "См. официальную документацию Apple, где указано, какие модули шифрования iOS соответствуют стандарту FIPS 140-2 или ожидают признания соответствия."
- },
- "EncryptDataOnEnrolledDevices": {
- "label": "Шифрование корпоративных данных на зарегистрированных устройствах",
- "tooltip": "Выберите {0}, чтобы принудительно использовать шифрование уровня приложений Intune для корпоративных данных на всех устройствах.
\r\n\r\nВыберите {1}, чтобы не использовать шифрование уровня приложений Intune для корпоративных данных на всех устройствах."
- },
- "IOSBackup": {
- "label": "Резервное копирование корпоративных данных в iTunes и iCloud",
- "tooltip": "Выберите {0}, чтобы заблокировать резервное копирование корпоративных данных в iTunes или iCloud. \r\nВыберите {1}, чтобы разрешить резервное копирование корпоративных данных в iTunes или iCloud. \r\nЛичные и неуправляемые данные затронуты не будут."
- },
- "IOSFaceID": {
- "label": "Face ID вместо ПИН-кода для доступа (iOS 11 и более поздние версии/iPadOS)",
- "tooltip": "Face ID использует технологию распознавания лиц для проверки подлинности пользователей на устройствах с iOS или iPadOS. Intune вызывает API LocalAuthentication для проверки подлинности пользователей с помощью Face ID. Если Face ID разрешена, ее следует использовать для доступа к приложению на устройстве с поддержкой Face ID."
- },
- "IOSOverrideTouchId": {
- "label": "Заменять биометрические данные ПИН-кодом после истечения времени ожидания"
- },
- "IOSTouchId": {
- "label": "Touch ID вместо ПИН-кода для доступа (iOS 8 и более поздние версии/iPadOS)",
- "tooltip": "Touch ID использует технологию распознавания отпечатков пальцев для проверки подлинности пользователей на устройствах с iOS. Intune вызывает API LocalAuthentication для проверки подлинности пользователей с помощью Touch ID. Если Touch ID разрешена, ее следует использовать для доступа к приложению на устройстве с поддержкой Touch ID."
- },
- "NotificationRestriction": {
- "label": "Уведомления о данных организации",
- "tooltip": "Выберите один из следующих способов отображения уведомлений для учетных записей организации в этом приложении и на всех подключенных устройствах (например, переносных).
\r\n{0}: не выводить уведомления.
\r\n{1}: не показывать в уведомлениях корпоративные данные. Если приложение это не поддерживает, уведомления блокируются.
\r\n{2}: выводить все уведомления.
\r\n Только для Android\r\n Примечание. Этот параметр применяется только к некоторым приложениям. Дополнительные сведения: {3}.
\r\n \r\nТолько для iOS\r\nПримечание. Этот параметр применяется только к некоторым приложениям. Дополнительные сведения: {4}.
"
- },
- "OpenLinksManagedBrowser": {
- "label": "Ограничение передачи веб-содержимого другими приложениями",
- "tooltip": "Выберите один из следующих вариантов для приложений, в которых данное приложение может открывать веб-содержимое.
\r\nEdge: разрешить открывать веб-содержимое только в Edge.
\r\nНеуправляемый браузер: разрешить открывать веб-содержимое только в неуправляемом браузере, определяемом параметром \"Протокол неуправляемого браузера\".
\r\nЛюбое приложение: разрешить открывать веб-ссылки в любом приложении.
"
- },
- "OverrideBiometric": {
- "tooltip": "При необходимости в зависимости от времени ожидания (в минутах бездействия) запрос ПИН-кода может переопределить запросы биометрических данных. Если значение времени ожидания не достигнуто, продолжит появляться запрос биометрических данных. Значение времени ожидания должно быть больше значения, указанного в пункте \"Повторно проверить требования доступа через (в минутах бездействия)\". "
- },
- "PinAccess": {
- "label": "ПИН-код для доступа",
- "tooltip": "При необходимости для доступа к приложению, управляемому политикой, нужно использовать ПИН-код. Пользователи должны создать ПИН-код доступа при первом открытии приложения в рабочей или учебной учетной записи."
- },
- "PinLength": {
- "label": "Выбрать минимальную длину ПИН-кода",
- "tooltip": "Этот параметр указывает минимальное количество цифр в ПИН-коде."
- },
- "PinType": {
- "label": "Тип ПИН-кода",
- "tooltip": "Числовые ПИН-коды состоят из цифр. Секретные коды состоят из букв, цифр и специальных символов. "
- },
- "Printing": {
- "label": "Печать корпоративных данных",
- "tooltip": "Если задать блокировку, приложение не сможет печатать защищенные данные."
- },
- "ReceiveData": {
- "label": "Получать данные из других приложений",
- "tooltip": "Выберите, из каких приложений это приложение может получать данные.
\r\n\r\nНет: заблокировать получение данных из корпоративных документов и учетных записей любого приложения.
\r\n\r\nПриложения, управляемые политикой: разрешить получение данных из корпоративных документов и учетных записей только других управляемых политикой приложений.\r\n
\r\nЛюбое приложение с входящими корпоративными данными: разрешить получение данных из корпоративных документов и учетных записей любого приложения и считать все входящие данные без пользовательской учетной записи корпоративными данными.
\r\n\r\nВсе приложения: разрешить получение данных из корпоративных документов и учетных записей любого приложения."
- },
- "RecheckAccessAfter": {
- "label": "Повторно проверять требования доступа через (в минутах бездействия)\r\n\r\n",
- "tooltip": "Если приложение, управляемое политикой, неактивно дольше указанного числа минут, приложение запросит повторную проверку требований к доступу (т. е. ПИН-код, параметры условного запуска) после запуска приложения."
- },
- "RestrictKeyboards": {
- "duplicatePackageError": "Идентификатор пакета должен быть уникальным.",
- "invalidPackageError": "Недопустимый идентификатор пакета",
- "label": "Утвержденные клавиатуры",
- "select": "Выберите клавиатуры для утверждения",
- "subtitle": "Добавьте все клавиатуры и методы ввода, которые пользователям разрешено использовать с целевыми приложениями. Введите имя клавиатуры, которое будет отображаться для пользователя.",
- "title": "Добавление утвержденных клавиатур",
- "toolTip": "Выберите \"Требовать\" и укажите список утвержденных клавиатур для этой политики. Дополнительные сведения."
- },
- "SaveData": {
- "label": "Сохранение копий корпоративных данных",
- "tooltip": "Выберите {0}, чтобы заблокировать сохранение копии корпоративных данных с помощью команды \"Сохранить как\" в любых новых расположениях помимо выбранных служб хранения.\r\n Выберите {1}, чтобы разрешить сохранение копии корпоративных данных с помощью команды \"Сохранить как\" в новом расположении.
\r\n\r\n\r\nПримечание. Этот параметр применяется не ко всем приложениям. Дополнительные сведения: {2}.\r\n"
- },
- "SaveDataToSelected": {
- "label": "Разрешить пользователю сохранять копии в выбранных службах",
- "tooltip": "Выберите службы хранения, в которых пользователи смогут сохранять свои копии корпоративных данных. Все прочие службы блокируются. Если не выбрать никаких служб, пользователи не смогут сохранять копии корпоративных данных."
- },
- "ScreenCaptureAndAndroidAssistant": {
- "label": "Снимок экрана и Google Ассистент\r\n",
- "tooltip": "Если этот параметр заблокирован, снимки экрана и возможности сканирования приложения Google Ассистент будут отключены при использовании приложения, управляемого политикой. Эта функция поддерживает обычное приложение Google Ассистента. Сторонние помощники, использующие API Google Ассистента, не поддерживаются. Выберите \"Заблокировать\", чтобы размыть изображение для предварительного просмотра переключателя приложений при использовании приложения с рабочей или учебной учетной записью."
- },
- "SendData": {
- "label": "Отправка корпоративных данных другим приложениям",
- "tooltip": "Выберите, в какие приложения это приложение сможет отправлять корпоративные данные.
\r\n\r\n\r\nНет: заблокировать отправку корпоративных данных в любые приложения.
\r\n\r\n\r\nПриложения, управляемые политикой: разрешить отправку корпоративных данных только в другие управляемые политикой приложения.
\r\n\r\n\r\nПриложения, управляемые политикой, с общим доступом к ОС: разрешить отправку корпоративных данных только в другие управляемые политикой приложения, а также отправку корпоративных документов в другие приложения, управляемые MDM на зарегистрированных устройствах.
\r\n\r\n\r\nПриложения, управляемые политикой, с фильтрацией в \"Открыть в\"/\"Поделиться\": разрешить отправку корпоративных данных только в другие управляемые политикой приложения и фильтровать в диалоговых окнах ОС \"Открыть в\"/\"Поделиться\" отображение только управляемых политикой приложений.\r\n
\r\n\r\nВсе приложения: разрешить отправку корпоративных данных в любые приложения."
- },
- "SimplePin": {
- "label": "Простой ПИН-код",
- "tooltip": "Если параметр заблокирован, пользователи не смогут создать простой ПИН-код. Простой ПИН-код — это прямая последовательность цифр или повторяющиеся цифры, например, 1234, ABCD или 1111. Обратите внимание, что при блокировке простого ПИН-кода типа \"Секретный код\" потребуется секретный код как минимум с одной цифрой, одной буквой и одним специальным символом."
- },
- "SyncContacts": {
- "label": "Синхронизация данных приложения, управляемого политикой, в собственных приложениях и надстройках"
- },
- "ThirdPartyKeyboards": {
- "infoBox": "Ограничения клавиатуры будут применены ко всем областям приложения. Это ограничение повлияет на личные учетные записи для приложений, поддерживающих несколько удостоверений. Дополнительные сведения.",
- "label": "Клавиатуры сторонних производителей"
- },
- "Timeout": {
- "label": "Время ожидания (в минутах бездействия)"
- },
- "Tap": {
- "numberOfDays": "Дней",
- "pinResetAfterNumberOfDays": "Сброс ПИН-кода через указанное количество дней",
- "previousPinBlockCount": "Выберите количество предыдущих значений ПИН-кода, которые будут сохранены"
- }
- },
- "WindowsFeatureUpdateProfile": {
- "Details": {
- "Description": {
- "label": "Описание"
- },
- "FeatureDeploymentSettings": {
- "header": "Параметры развертывания компонентов"
- },
- "FeatureUpdateVersion": {
- "infoballoon": "Этот компонент не может снизить уровень устройства.",
- "label": "Развертываемое обновление компонентов"
- },
- "GradualRolloutEndDate": {
- "label": "Доступность для последней группы"
- },
- "GradualRolloutInterval": {
- "label": "Дни между группами"
- },
- "GradualRolloutStartDate": {
- "label": "Доступность для первой группы"
- },
- "Name": {
- "label": "Имя"
- },
- "RolloutOptions": {
- "label": "Параметры выпуска"
- },
- "RolloutSettings": {
- "header": "Когда следует сделать это обновление доступным в Центре обновления Windows?"
- },
- "ScopeSettings": {
- "header": "Настройка тегов области для этой политики."
- },
- "StartDateOnlyStartDate": {
- "label": "Первая доступная дата"
- },
- "bladeTitle": "Развертывания обновления компонентов",
- "deploymentSettingsTitle": "Параметры развертывания",
- "loadError": "Загрузка не выполнена!",
- "windows11EULA": "Выбирая развертывание этого обновления компонентов, вы соглашаетесь, что при применении этой операционной системы к устройству (1) соответствующая лицензия Windows была приобретена в рамках корпоративного лицензирования или (2) вы уполномочены накладывать обязательства на вашу организацию и принимаете от имени организации соответствующие условия лицензионного соглашения на использование программного обеспечения корпорации Майкрософт, доступные здесь {0}."
- },
- "Notifications": {
- "deploymentSaved": "Развертывание \"{0}\" сохранено.",
- "newFeatureUpdateDeploymentCreated": "Создано новое развертывание обновления компонентов."
- },
- "TabName": {
- "deploymentSettings": "Параметры развертывания",
- "groupAssignmentSettings": "Назначения",
- "scopeSettings": "Теги области"
- }
- },
- "OfficeUpdateChannel": {
- "current": "Текущий канал",
- "deferred": "Полугодовой канал (корпоративный)",
- "firstReleaseCurrent": "Текущий канал (предварительная версия)",
- "firstReleaseDeferred": "Полугодовой канал (предварительная корпоративная версия)",
- "monthlyEnterprise": "Ежемесячный канал Enterprise",
- "placeHolder": "Выберите один вариант"
- },
- "Win32ReturnCodes": {
- "CodeTypes": {
- "failed": "Сбой",
- "hardReboot": "Холодная перезагрузка",
- "retry": "Повторить",
- "softReboot": "Горячая перезагрузка",
- "success": "Успешно выполнено"
- },
- "Columns": {
- "codeType": "Тип кода",
- "returnCode": "Код возврата"
- },
- "bladeTitle": "Коды возврата",
- "gridAriaLabel": "Коды возврата",
- "header": "Задайте коды возврата, чтобы указать действия после установки:",
- "onAddAnnounceMessage": "Код возврата: добавлен элемент {0} из {1}.",
- "onDeleteSuccess": "Код возврата {0} удален.",
- "returnCodeAlreadyUsedValidation": "Код возврата уже используется.",
- "returnCodeMustBeIntegerValidation": "Код возврата должен быть целым числом.",
- "returnCodeShouldBeAtLeast": "Код возврата не может быть меньше {0}.",
- "returnCodeShouldBeAtMost": "Код возврата не может превышать {0}.",
- "selectorLabel": "Коды возврата"
- },
- "SecurityTemplate": {
- "aSR": "Сокращение направлений атак",
- "accountProtection": "Защита учетной записи",
- "allDevices": "Все устройства",
- "antivirus": "Антивирус",
- "antivirusReporting": "Отчеты антивирусных программ (предварительная версия)",
- "conditionalAccess": "Условный доступ",
- "deviceCompliance": "Соответствие устройства политике",
- "diskEncryption": "Шифрование диска",
- "eDR": "Обнаружение и нейтрализация атак на конечные точки",
- "firewall": "Брандмауэр",
- "helpSupport": "Справка и поддержка",
- "setup": "Установка",
- "wdapt": "Microsoft Defender для конечной точки"
- },
- "PolicySet": {
- "appManagement": "Управление приложениями",
- "assignments": "Назначения",
- "basics": "Основные",
- "deviceEnrollment": "Регистрация устройства",
- "deviceManagement": "Управление устройствами",
- "scopeTags": "Теги области",
- "appConfigurationTitle": "Политики конфигурации приложений",
- "appProtectionTitle": "Политики защиты приложений",
- "appTitle": "Приложения",
- "iOSAppProvisioningTitle": "Профили подготовки приложений iOS",
- "deviceLimitRestrictionTitle": "Ограничения числа устройств",
- "deviceTypeRestrictionTitle": "Ограничения по типу устройств",
- "enrollmentStatusSettingTitle": "Страницы состояния регистрации",
- "windowsAutopilotDeploymentProfileTitle": "Профили развертывания Windows Autopilot",
- "deviceComplianceTitle": "Политики соответствия устройств",
- "deviceConfigurationTitle": "Профили конфигурации устройств",
- "powershellScriptTitle": "Сценарии PowerShell"
- },
- "AssignmentAction": {
- "exclude": "Исключенные",
- "include": "Включено",
- "includeAllDevicesVirtualGroup": "Включено",
- "includeAllUsersVirtualGroup": "Включено"
- },
- "WindowsFeatureUpdate": {
- "EndOFSupportStatus": {
- "notSupported": "Не поддерживается",
- "supportEnding": "Завершение поддержки",
- "supported": "Поддерживается"
- }
- },
- "InstallIntent": {
- "available": "Доступно для зарегистрированных устройств",
- "availableWithoutEnrollment": "Доступно с регистрацией или без регистрации",
- "required": "Обязательно",
- "uninstall": "Удалить"
- },
"OutlookAppConfig": {
"DataProtectionConfiguration": {
"header": "Конфигурация защиты данных"
@@ -1938,307 +100,864 @@
"themesEnabledTitle": "Темы включены",
"themesEnabledTooltip": "Укажите, разрешено ли пользователю применять настраиваемую визуальную тему."
},
- "TAP": {
- "AccessRequirements": {
- "infoText": "Настройте требования к ПИН-коду и учетным данным, которым должны следовать пользователи для доступа к приложениям в рабочем контексте."
- },
- "DataProtection": {
- "infoText": "Эта группа включает элементы управления защиты от потери данных (DLP), такие как ограничение на вырезание, копирование, вставку и сохранение. Эти параметры определяют, как пользователи взаимодействуют с данными в приложениях."
- },
- "DeviceTypes": {
- "selectOne": "Выберите хотя бы один тип устройства."
- },
- "TargetedApps": {
- "TargetToAll": {
- "label": "Поддержка приложений на любых типах устройств"
- },
- "infoText": "Выберите способ применения этой политики к приложениям на различных устройствах. Затем добавьте хотя бы одно приложение.",
- "selectOne": "Выберите по меньшей мере одно приложение, чтобы создать политику."
- }
- },
- "TACSettings": {
- "edgeSettings": "Параметры конфигурации Microsoft Edge",
- "edgeWindowsDataProtectionSettings": "Параметры защиты данных Microsoft Edge (Windows) — предварительная версия",
- "edgeWindowsSettings": "Параметры конфигурации Microsoft Edge (Windows) — предварительная версия",
- "generalAppConfig": "Общая конфигурация приложений",
- "generalSettings": "Общие параметры конфигурации",
- "outlookSMIMEConfig": "Параметры S/MIME Outlook",
- "outlookSettings": "Параметры конфигурации Outlook",
- "sMIME": "S/MIME"
- },
- "OfficeApplicationAdditionalType": {
- "projectProRetail": "Настольный клиент Project Online",
- "visioProRetail": "Visio Online Plan 2"
- },
- "Win32Requirements": {
- "AdditionalRequirements": {
- "File": {
- "fileOrFolderToolTip": "Файл или папка в качестве выбранного требования.",
- "pathToolTip": "Полный путь к файлу или папке для обнаружения.",
- "property": "Свойство",
- "valueToolTip": "Выберите значение требования, соответствующее выбранному методу обнаружения. Дату и время требования необходимо указать в локальном формате."
- },
- "GridColumns": {
- "pathOrScript": "Путь или сценарий",
- "type": "Тип"
- },
- "Registry": {
- "keyPath": "Путь к разделу",
- "keyPathTooltip": "Полный путь к записи реестра, содержащей значение требования.",
- "operator": "Operator",
- "operatorTooltip": "Выберите оператор для сравнения.",
- "registryRequirement": "Требование для ключа реестра",
- "registryRequirementTooltip": "Выберите сравнение для требования ключа реестра.",
- "valueName": "Имя параметра",
- "valueNameTooltip": "Имя требуемого значения реестра."
- },
- "RequirementTypeOptions": {
- "fileType": "Файл",
- "registry": "Реестр",
- "script": "Скрипт"
- },
- "Script": {
- "RequirementMethodOptions": {
- "boolean": "Логический",
- "dateTime": "Дата и время",
- "float": "С плавающей запятой",
- "integer": "Целое число",
- "string": "Строка",
- "version": "Версия"
- },
- "ScriptContent": {
- "emptyMessage": "Содержимое сценария не должно быть пустым."
- },
- "duplicateName": "Имя сценария {0} уже используется. Введите другое имя.",
- "enforceSignatureCheck": "Принудительно проверить подпись сценария",
- "enforceSignatureCheckTooltip": "Выберите \"Да\", чтобы проверить, что сценарий подписан доверенным издателем, что позволит выполнять сценарий без отображения предупреждений или запросов. Сценарий будет выполнен без блокировки. Выберите \"Нет\" (по умолчанию), чтобы сценарий выполнялся с выдачей запроса на подтверждение пользователю, но без проверки подписи.",
- "loggedOnCredentials": "Запускать сценарий по учетным данным",
- "loggedOnCredentialsTooltip": "Запустите сценарий с использованием учетных данных устройства, использованных при входе.",
- "operatorTooltip": "Выберите оператор для сравнения требований.",
- "requirementMethod": "Выберите тип выходных данных.",
- "requirementMethodTooltip": "Выберите тип данных, используемый при определении соответствия требованию.",
- "scriptFile": "Файл скрипта",
- "scriptFileTooltip": "Выберите сценарий PowerShell, который будет определять наличие приложения на клиенте. Если приложение обнаружено, процесс обнаружения возвратит нулевой код выхода и запишет строковое значение в стандартный поток вывода.",
- "scriptName": "Имя скрипта",
- "value": "Значение",
- "valueTooltip": "Выберите значение требования, соответствующее выбранному методу обнаружения. Дату и время требования необходимо указать в локальном формате."
- },
- "bladeTitle": "Добавление правила требований",
- "createRequirementHeader": "Создание требования",
- "header": "Настройка дополнительных правил требований",
- "label": "Правила дополнительных требований",
- "noRequirementsSelectedPlaceholder": "Требования не указаны.",
- "requirementType": "Тип требования",
- "requirementTypeTooltip": "Выберите тип метода обнаружения, используемого для определения того, как будет проверяться требование."
- },
- "architectures": "Архитектура операционной системы",
- "architecturesTooltip": "Выберите архитектуры, необходимые для установки приложения.",
- "bladeTitle": "Требования",
- "diskSpace": "Требуется места на диске (МБ)",
- "diskSpaceTooltip": "Свободное дисковое пространство на системном диске, необходимое для установки приложения.",
- "header": "Укажите требования, которым должны соответствовать устройства до установки приложения:",
- "maximumTextFieldValue": "Максимальное значение — {0}.",
- "minimumCpuSpeed": "Минимальная требуемая частота ЦП (МГц)",
- "minimumCpuSpeedTooltip": "Минимальная частота ЦП, необходимая для установки приложения.",
- "minimumLogicalProcessors": "Минимальное требуемое число логических процессоров",
- "minimumLogicalProcessorsTooltip": "Минимальное число логических процессоров, необходимое для установки приложения.",
- "minimumOperatingSystem": "Минимальная версия операционной системы",
- "minimumOperatingSystemTooltip": "Выберите минимальную версию операционной системы, необходимую для установки приложения.",
- "minumumTextFieldValue": "Значение должно быть не менее {0}.",
- "physicalMemory": "Необходимый объем физической памяти (МБ)",
- "physicalMemoryTooltip": "Физическая память (ОЗУ), необходимая для установки приложения.",
- "selectorLabel": "Требования",
- "validNumber": "Введите допустимое число."
- },
- "ArchitectureOptions": {
- "sixtyFourBit": "64-разрядный",
- "thirtyTwoBit": "32-разрядный"
- },
- "Countries": {
- "ae": "ОАЭ",
- "ag": "Антигуа и Барбуда",
- "ai": "Ангилья",
- "al": "Албания",
- "am": "Армения",
- "ao": "Ангола",
- "ar": "Аргентина",
- "at": "Австрия",
- "au": "Австралия",
- "az": "Азербайджан",
- "bb": "Барбадос",
- "be": "Бельгия",
- "bf": "Буркина-Фасо",
- "bg": "Болгария",
- "bh": "Бахрейн",
- "bj": "Бенин",
- "bm": "Бермуды",
- "bn": "Бруней-Даруссалам",
- "bo": "Боливия",
- "br": "Бразилия",
- "bs": "Багамы",
- "bt": "Бутан",
- "bw": "Ботсвана",
- "by": "Беларусь",
- "bz": "Белиз",
- "ca": "Канада",
- "cg": "Республика Конго",
- "ch": "Швейцария",
- "cl": "Чили",
- "cn": "Китай",
- "co": "Колумбия",
- "cr": "Коста-Рика",
- "cv": "Кабо-Верде",
- "cy": "Кипр",
- "cz": "Чешская Республика",
- "de": "Германия",
- "dk": "Дания",
- "dm": "Доминика",
- "do": "Доминиканская Республика",
- "dz": "Алжир",
- "ec": "Эквадор",
- "ee": "Эстония",
- "eg": "Египет",
- "es": "Испания",
- "fi": "Финляндия",
- "fj": "Фиджи",
- "fm": "Федеративные Штаты Микронезии",
- "fr": "Франция",
- "gb": "Соединенное Королевство",
- "gd": "Гренада",
- "gh": "Гана",
- "gm": "Гамбия",
- "gr": "Греция",
- "gt": "Гватемала",
- "gw": "Гвинея-Бисау",
- "gy": "Гайана",
- "hk": "Гонконг",
- "hn": "Гондурас",
- "hr": "Хорватия",
- "hu": "Венгрия",
- "id": "Индонезия",
- "ie": "Ирландия",
- "il": "Израиль",
- "in": "Индия",
- "is": "Исландия",
- "it": "Италия",
- "jm": "Ямайка",
- "jo": "Иордания",
- "jp": "Япония",
- "ke": "Кения",
- "kg": "Киргизия",
- "kh": "Камбоджа",
- "kn": "Сент-Китс и Невис",
- "kr": "Республика Корея",
- "kw": "Кувейт",
- "ky": "Острова Кайман",
- "kz": "Казахстан",
- "la": "Лаосская Народно-Демократическая Республика",
- "lb": "Ливан",
- "lc": "Сент-Люсия",
- "lk": "Шри-Ланка",
- "lr": "Либерия",
- "lt": "Литва",
- "lu": "Люксембург",
- "lv": "Латвия",
- "md": "Республика Молдова",
- "mg": "Мадагаскар",
- "mk": "Северная Македония",
- "ml": "Мали",
- "mn": "Монголия",
- "mo": "Макао",
- "mr": "Мавритания",
- "ms": "Монтсеррат",
- "mt": "Мальта",
- "mu": "Маврикий",
- "mw": "Малави",
- "mx": "Мексика",
- "my": "Малайзия",
- "mz": "Мозамбик",
- "na": "Намибия",
- "ne": "Нигер",
- "ng": "Нигерия",
- "ni": "Никарагуа",
- "nl": "Нидерланды",
- "no": "Норвегия",
- "np": "Непал",
- "nz": "Новая Зеландия",
- "om": "Оман",
- "pa": "Панама",
- "pe": "Перу",
- "pg": "Папуа — Новая Гвинея",
- "ph": "Филиппины",
- "pk": "Пакистан",
- "pl": "Польша",
- "pt": "Португалия",
- "pw": "Палау",
- "py": "Парагвай",
- "qa": "Катар",
- "ro": "Румыния",
- "ru": "Россия",
- "sa": "Саудовская Аравия",
- "sb": "Соломоновы Острова",
- "sc": "Сейшелы",
- "se": "Швеция",
- "sg": "Сингапур",
- "si": "Словения",
- "sk": "Словакия",
- "sl": "Сьерра-Леоне",
- "sn": "Сенегал",
- "sr": "Суринам",
- "st": "Сан-Томе и Принсипи",
- "sv": "Эль-Сальвадор",
- "sz": "Свазиленд",
- "tc": "о-ва Тёркс и Кайкос",
- "td": "Чад",
- "th": "Таиланд",
- "tj": "Таджикистан",
- "tm": "Туркменистан",
- "tn": "Тунис",
- "tr": "Турция",
- "tt": "Тринидад и Тобаго",
- "tw": "Тайвань",
- "tz": "Танзания",
- "ua": "Украина",
- "ug": "Уганда",
- "us": "США",
- "uy": "Уругвай",
- "uz": "Узбекистан",
- "vc": "Сент-Винсент и Гренадины",
- "ve": "Венесуэла",
- "vg": "Виргинские о-ва (Великобритания)",
- "vn": "Вьетнам",
- "ye": "Йемен",
- "za": "ЮАР",
- "zw": "Зимбабве"
+ "Languages": {
+ "ar-aE": "Арабский (ОАЭ)",
+ "ar-bH": "Арабский (Бахрейн)",
+ "ar-dZ": "Арабский (Алжир)",
+ "ar-eG": "Арабский (Египет)",
+ "ar-iQ": "Арабский (Ирак)",
+ "ar-jO": "Арабский (Иордания)",
+ "ar-kW": "Арабский (Кувейт)",
+ "ar-lB": "Арабский (Ливан)",
+ "ar-lY": "Арабский (Ливия)",
+ "ar-mA": "Арабский (Марокко)",
+ "ar-oM": "Арабский (Оман)",
+ "ar-qA": "Арабский (Катар)",
+ "ar-sA": "Арабский (Саудовская Аравия)",
+ "ar-sY": "Арабский (Сирия)",
+ "ar-tN": "Арабский (Тунис)",
+ "ar-yE": "Арабский (Йемен)",
+ "az-cyrl": "Азербайджанский (кириллица, Азербайджан)",
+ "az-latn": "Азербайджанский (латиница, Азербайджан)",
+ "bn-bD": "Бенгальский (Бангладеш)",
+ "bn-iN": "Бенгальский (Индия)",
+ "bs-cyrl": "Боснийский (кириллица)",
+ "bs-latn": "Боснийский (латиница)",
+ "zh-cN": "Китайский (КНР)",
+ "zh-hK": "Китайский (Гонконг, САР)",
+ "zh-mO": "Китайский (Макао, САР)",
+ "zh-sG": "Китайский (Сингапур)",
+ "zh-tW": "Китайский (Тайвань)",
+ "hr-bA": "Хорватский (латиница)",
+ "hr-hR": "Хорватский (Хорватия)",
+ "nl-bE": "Нидерландский (Бельгия)",
+ "nl-nL": "Нидерландский (Нидерланды)",
+ "en-aU": "Английский (Австралия)",
+ "en-bZ": "Английский (Белиз)",
+ "en-cA": "Английский (Канада)",
+ "en-cabn": "Английский (Карибские острова)",
+ "en-iE": "Английский (Ирландия)",
+ "en-iN": "Английский (Индия)",
+ "en-jM": "Английский (Ямайка)",
+ "en-mY": "Английский (Малайзия)",
+ "en-nZ": "Английский (Новая Зеландия)",
+ "en-pH": "Английский (Республика Филиппины)",
+ "en-sG": "Английский (Сингапур)",
+ "en-tT": "Английский (Тринидад и Тобаго)",
+ "en-uK": "Английский (Соединенное Королевство)",
+ "en-uS": "Английский (Соединенные Штаты)",
+ "en-zA": "Английский (Южная Африка)",
+ "en-zW": "Английский (Зимбабве)",
+ "fr-bE": "Французский (Бельгия)",
+ "fr-cA": "Французский (Канада)",
+ "fr-cH": "Французский (Швейцария)",
+ "fr-fR": "французский (Франция)",
+ "fr-lU": "Французский (Люксембург)",
+ "fr-mC": "Французский (Монако)",
+ "de-aT": "Немецкий (Австрия)",
+ "de-cH": "Немецкий (Швейцария)",
+ "de-dE": "Немецкий (Германия)",
+ "de-lI": "Немецкий (Лихтенштейн)",
+ "de-lU": "Немецкий (Люксембург)",
+ "iu-cans": "Инуктитут (слоговое письмо, Канада)",
+ "iu-latn": "Инуктитут (латиница, Канада)",
+ "it-cH": "Итальянский (Швейцария)",
+ "it-iT": "Итальянский (Италия)",
+ "ms-bN": "Малайский (Бруней-Даруссалам)",
+ "ms-mY": "Малайский (Малайзия)",
+ "mn-cN": "Монгольский (старомонгольское письмо, КНР)",
+ "mn-mN": "Монгольский (кириллица, Монголия)",
+ "no-nB": "Норвежский (букмол, Норвегия)",
+ "no-nn": "Норвежский (нюнорск, Норвегия)",
+ "pt-bR": "Португальский (Бразилия)",
+ "pt-pT": "Португальский (Португалия)",
+ "quz-bO": "Кечуа (Боливия)",
+ "quz-eC": "Кечуа (Эквадор)",
+ "quz-pE": "Кечуа (Перу)",
+ "smj-nO": "Луле-саамский (Норвегия)",
+ "smj-sE": "Луле-саамский (Швеция)",
+ "se-fI": "Северносаамский (Финляндия)",
+ "se-nO": "Северносаамский (Норвегия)",
+ "se-sE": "Северносаамский (Швеция)",
+ "sma-nO": "Южносаамский (Норвегия)",
+ "sma-sE": "Южносаамский (Швеция)",
+ "smn": "Инари-саамский (Финляндия)",
+ "sms": "Сколт-саамский (Финляндия)",
+ "sr-Cyrl-bA": "Сербский (кириллица)",
+ "sr-Cyrl-rS": "Сербский (кириллица, Сербия и Черногория (бывшая))",
+ "sr-Latn-bA": "Сербский (латиница)",
+ "sr-Latn-rS": "Сербский (латиница, Сербия)",
+ "dsb": "Нижнелужицкий (Германия)",
+ "hsb": "Верхнелужицкий (Германия)",
+ "es-es-tradnl": "Испанский (Испания, традиционная сортировка)",
+ "es-aR": "Испанский (Аргентина)",
+ "es-bO": "Испанский (Боливия)",
+ "es-cL": "Испанский (Чили)",
+ "es-cO": "Испанский (Колумбия)",
+ "es-cR": "Испанский (Коста-Рика)",
+ "es-dO": "Испанский (Доминиканская Республика)",
+ "es-eC": "Испанский (Эквадор)",
+ "es-eS": "Испанский (Испания)",
+ "es-gT": "Испанский (Гватемала)",
+ "es-hN": "Испанский (Гондурас)",
+ "es-mX": "Испанский (Мексика)",
+ "es-nI": "Испанский (Никарагуа)",
+ "es-pA": "Испанский (Панама)",
+ "es-pE": "Испанский (Перу)",
+ "es-pR": "Испанский (Пуэрто-Рико)",
+ "es-pY": "Испанский (Парагвай)",
+ "es-sV": "Испанский (Эль-Сальвадор)",
+ "es-uS": "Испанский (США)",
+ "es-uY": "Испанский (Уругвай)",
+ "es-vE": "Испанский (Венесуэла)",
+ "sv-fI": "Шведский (Финляндия)",
+ "uz-cyrl": "Узбекский (кириллица, Узбекистан)",
+ "uz-latn": "Узбекский (латиница, Узбекистан)",
+ "af": "Африкаанс (Южная Африка)",
+ "sq": "Албанский (Албания)",
+ "am": "Амхарский (Эфиопия)",
+ "hy": "Армянский (Армения)",
+ "as": "Ассамский (Индия)",
+ "ba": "Башкирский (Россия)",
+ "eu": "Баскский (Баскский)",
+ "be": "Белорусский (Беларусь)",
+ "br": "Бретонский (Франция)",
+ "bg": "Болгарский (Болгария)",
+ "ca": "Каталонский (Каталонский)",
+ "co": "Корсиканский (Франция)",
+ "cs": "Чешский (Чешская Республика)",
+ "da": "Датский (Дания)",
+ "prs": "Дари (Афганистан)",
+ "dv": "Мальдивский (Мальдивы)",
+ "et": "Эстонский (Эстония)",
+ "fo": "Фарерский (Фарерские о-ва)",
+ "fil": "Филиппинский (Филиппины)",
+ "fi": "Финский (Финляндия)",
+ "gl": "Галисийский (Галисия)",
+ "ka": "Грузинский (Грузия)",
+ "el": "Греческий (Греция)",
+ "gu": "Гуджарати (Индия)",
+ "ha": "Хауса (латиница, Нигерия)",
+ "he": "Иврит (Израиль)",
+ "hi": "Хинди (Индия)",
+ "hu": "Венгерский (Венгрия)",
+ "is": "Исландский (Исландия)",
+ "ig": "Игбо (Нигерия)",
+ "id": "Индонезийский (Индонезия)",
+ "ga": "Ирландский (Ирландия)",
+ "xh": "Коса (Южная Африка)",
+ "zu": "Зулу (Южная Африка)",
+ "ja": "Японский (Япония)",
+ "kn": "Каннада (Индия)",
+ "kk": "Казахский (Казахстан)",
+ "km": "Кхмерский (Камбоджа)",
+ "rw": "Киньяруанда (Руанда)",
+ "sw": "Суахили (Кения)",
+ "kok": "Конкани (Индия)",
+ "ko": "Корейский (Корея)",
+ "ky": "Киргизский (Киргизия)",
+ "lo": "Лаосский (Лаосская Народно-Демократическая Республика)",
+ "lv": "Латвийский (Латвия)",
+ "lt": "Литовский (Литва)",
+ "lb": "Люксембургский (Люксембург)",
+ "mk": "Македонский (Северная Македония)",
+ "ml": "Малаялам (Индия)",
+ "mt": "Мальтийский (Мальта)",
+ "mi": "Маори (Новая Зеландия)",
+ "mr": "Маратхи (Индия)",
+ "moh": "Мохаук (племя Мохауков)",
+ "ne": "Непальский (Непал)",
+ "oc": "Окситанский (Франция)",
+ "or": "Ория (Индия)",
+ "ps": "Пушту (Афганистан)",
+ "fa": "Фарси",
+ "pl": "Польский (Польша)",
+ "pa": "Панджаби (Индия)",
+ "ro": "Румынский (Румыния)",
+ "rm": "Ретороманский (Швейцария)",
+ "ru": "Русский (Россия)",
+ "sa": "Санскрит (Индия)",
+ "st": "Северный сото (Южная Африка)",
+ "tn": "Тсвана (Южная Африка)",
+ "si": "Сингальский (Шри-Ланка)",
+ "sk": "Словацкий (Словакия)",
+ "sl": "Словенский (Словения)",
+ "sv": "Шведский (Швеция)",
+ "syr": "Сирийский (Сирия)",
+ "tg": "Таджикский (кириллица, Таджикистан)",
+ "ta": "Тамильский (Индия)",
+ "tt": "Татарский (Россия)",
+ "te": "Телугу (Индия)",
+ "th": "Тайский (Таиланд)",
+ "bo": "Тибетский (КНР)",
+ "tr": "Турецкий (Турция)",
+ "tk": "Туркменский (Туркменистан)",
+ "uk": "Украинский (Украина)",
+ "ur": "Урду (Исламская Республика Пакистан)",
+ "vi": "Вьетнамский (Вьетнам)",
+ "cy": "Валлийский (Соединенное Королевство)",
+ "wo": "Волоф (Сенегал)",
+ "ii": "носу (КНР)",
+ "yo": "Йоруба (Нигерия)"
+ },
+ "Category": {
+ "airPlay": "AirPlay",
+ "airPrint": "AirPrint",
+ "androidDefenderAtp": "Microsoft Defender для конечной точки",
+ "androidDeviceOwnerApplications": "Приложения",
+ "androidForWorkPassword": "Пароль устройства",
+ "appManagement": "Разрешить или блокировать приложения",
+ "applicationGuard": "Application Guard в Microsoft Defender",
+ "applicationRestrictions": "Ограниченные приложения",
+ "applicationVisibility": "Отображение или скрытие приложений",
+ "applications": "App Store",
+ "applicationsAndGames": "App Store, просмотр документов, игры",
+ "applicationsAndGoogle": "Магазин Google Play",
+ "appsAndExperience": "Приложения и интерфейс",
+ "associatedDomains": "Связанные домены",
+ "autonomousSingleAppMode": "Режим одного автономного приложения (ASAM)",
+ "azureOperationalInsights": "Оперативная аналитика Azure",
+ "bitLocker": "Шифрование Windows",
+ "browser": "Браузер",
+ "builtinApps": "Встроенные приложения",
+ "cellular": "Сотовая связь",
+ "cloudAndStorage": "Облако и хранилище",
+ "cloudPrint": "Облачный принтер",
+ "complianceEmailProfile": "Электронная почта",
+ "connectedDevices": "Подключенные устройства",
+ "connectivity": "Сотовая связь и взаимодействие",
+ "contentCaching": "Кэширование содержимого",
+ "controlPanelAndSettings": "Панель управления и параметры",
+ "credentialGuard": "Credential Guard в Microsoft Defender",
+ "customCompliance": "Настраиваемое соответствие",
+ "customCompliancePreview": "Настраиваемое соответствие требованиям (предварительная версия)",
+ "customConfiguration": "Пользовательский профиль конфигурации",
+ "customOMASettings": "Настраиваемые параметры OMA-URI",
+ "customPreferences": "Файл настроек",
+ "defender": "Антивирусная программа в Microsoft Defender",
+ "defenderAntivirus": "Антивирусная программа в Microsoft Defender",
+ "defenderExploitGuard": "Exploit Guard в Microsoft Defender",
+ "defenderFirewall": "Брандмауэр в Microsoft Defender",
+ "defenderLocalSecurityOptions": "Параметры безопасности локального устройства",
+ "defenderSecurityCenter": "Центр безопасности в Microsoft Defender",
+ "deliveryOptimization": "Оптимизация доставки",
+ "derivedCredentialAuthenticationConfiguration": "Производные учетные данные",
+ "deviceExperience": "Интерфейс устройства",
+ "deviceFirmwareConfigurationInterface": "Интерфейс настройки встроенного ПО устройства",
+ "deviceGuard": "Управление приложениями в Microsoft Defender",
+ "deviceHealth": "Работоспособность устройств",
+ "devicePassword": "Пароль устройства",
+ "deviceProperties": "Свойства устройства",
+ "deviceRestrictions": "Общие",
+ "deviceSecurity": "Безопасность системы",
+ "display": "Отображение",
+ "domainJoin": "Присоединение к домену",
+ "domains": "Домены",
+ "edgeBrowser": "Устаревшие версии Microsoft Edge (версия 45 и более ранние версии)",
+ "edgeBrowserSmartScreen": "Фильтр SmartScreen в Microsoft Defender",
+ "edgeKiosk": "Режим киоска Microsoft Edge",
+ "editionUpgrade": "Обновление выпуска",
+ "education": "Образование",
+ "educationDeviceCerts": "Сертификаты устройств",
+ "educationStudentCerts": "Сертификаты учащихся",
+ "educationTakeATest": "Выполнить проверку",
+ "educationTeacherCerts": "Сертификаты преподавателей",
+ "emailProfile": "Электронная почта",
+ "enterpriseDataProtection": "Windows Information Protection",
+ "expeditedCheckin": "Конфигурация управления мобильным устройством",
+ "extensibleSingleSignOn": "Расширение единого входа для приложения",
+ "filevault": "FileVault",
+ "firewall": "Брандмауэр",
+ "games": "Игры",
+ "gatekeeper": "Привратник",
+ "healthMonitoring": "Мониторинг работоспособности",
+ "homeScreenLayout": "Макет начального экрана",
+ "iOSWallpaper": "Фоновый рисунок",
+ "importedPFX": "Импортированный сертификат PKCS",
+ "iosDefenderAtp": "Microsoft Defender для конечной точки",
+ "iosKiosk": "Киоск",
+ "kernelExtensions": "Расширения ядра",
+ "keyboardAndDictionary": "Клавиатура и словарь",
+ "kiosk": "Киоск",
+ "kioskAndroidEnterprise": "Выделенные устройства",
+ "kioskConfiguration": "Киоск",
+ "kioskConfigurationV2": "Киоск",
+ "kioskWebBrowser": "Веб-браузер киоска",
+ "lockScreenMessage": "Сообщение на экране блокировки",
+ "lockedScreenExperience": "Интерфейс заблокированного экрана",
+ "logging": "Создание отчетов и телеметрия",
+ "loginItems": "Элементы входа",
+ "loginWindow": "Окно входа",
+ "macDefenderAtp": "Microsoft Defender для конечной точки",
+ "maintenance": "Обслуживание",
+ "malware": "Вредоносные программы",
+ "messaging": "Сообщения",
+ "networkBoundary": "Граница сети",
+ "networkProxy": "Прокси-сервер сети",
+ "notifications": "Уведомления приложений",
+ "pKCS": "Сертификат PKCS",
+ "password": "Пароль",
+ "personalProfile": "Личный профиль",
+ "personalization": "Персонализация",
+ "policyOverride": "Переопределение групповой политики",
+ "powerSettings": "Параметры управления питанием",
+ "printer": "Принтер",
+ "privacy": "Конфиденциальность",
+ "privacyPerApp": "Исключения конфиденциальности на приложение",
+ "privacyPreferences": "Параметры конфиденциальности",
+ "projection": "Проекция",
+ "sCCMCompliance": "Соответствие Configuration Manager",
+ "sCEP": "Сертификат SCEP",
+ "sCEPProperties": "Сертификат SCEP",
+ "sMode": "Смена режима (только программа предварительной оценки Windows)",
+ "safari": "Safari",
+ "search": "Поиск",
+ "session": "Сеанс",
+ "sharedDevice": "Общий iPad",
+ "sharedPCAccountManager": "Устройство коллективного пользования с общим доступом",
+ "singleSignOn": "Единый вход",
+ "smartScreen": "Фильтр SmartScreen в Microsoft Defender",
+ "softwareUpdates": "Параметры",
+ "start": "Начало",
+ "systemExtensions": "Расширения системы",
+ "systemSecurity": "Безопасность системы",
+ "trustedCert": "Доверенный сертификат",
+ "updates": "Обновления",
+ "userRights": "Права пользователей",
+ "usersAndAccounts": "Пользователи и учетные записи",
+ "vPN": "Базовая VPN",
+ "vPNApps": "Автоподключение VPN",
+ "vPNAppsAndTrafficRules": "Приложения и правила трафика",
+ "vPNConditionalAccess": "Условный доступ",
+ "vPNConnectivity": "Подключение",
+ "vPNDNSTriggers": "Параметры DNS",
+ "vPNIKEv2": "Параметры IKEv2",
+ "vPNProxy": "Прокси",
+ "vPNSplitTunneling": "Раздельное туннелирование",
+ "vPNTrustedNetwork": "Обнаружение доверенной сети",
+ "webContentFilter": "Фильтр веб-содержимого",
+ "wiFi": "Wi-Fi",
+ "win10Wifi": "Wi-Fi",
+ "windowsAtp": "Microsoft Defender для конечной точки",
+ "windowsDefenderATP": "Microsoft Defender для конечной точки",
+ "windowsHelloForBusiness": "Windows Hello для бизнеса",
+ "windowsSpotlight": "Windows: интересное",
+ "wiredNetwork": "Проводная сеть",
+ "wireless": "Беспроводная",
+ "wirelessProjection": "Беспроводная проекция",
+ "workProfile": "Параметры рабочего профиля",
+ "workProfilePassword": "Пароль рабочего профиля",
+ "xboxServices": "Службы Xbox",
+ "zebraMx": "Профиль MX (только Zebra)",
+ "complianceActionsLabel": "Действия при несоответствии"
+ },
+ "WindowsFeatureUpdateProfile": {
+ "Details": {
+ "Description": {
+ "label": "Описание"
+ },
+ "FeatureDeploymentSettings": {
+ "header": "Параметры развертывания компонентов"
+ },
+ "FeatureUpdateVersion": {
+ "infoballoon": "Этот компонент не может снизить уровень устройства.",
+ "label": "Развертываемое обновление компонентов"
+ },
+ "GradualRolloutEndDate": {
+ "label": "Доступность для последней группы"
+ },
+ "GradualRolloutInterval": {
+ "label": "Дни между группами"
+ },
+ "GradualRolloutStartDate": {
+ "label": "Доступность для первой группы"
+ },
+ "Name": {
+ "label": "Имя"
+ },
+ "RolloutOptions": {
+ "label": "Параметры выпуска"
+ },
+ "RolloutSettings": {
+ "header": "Когда следует сделать это обновление доступным в Центре обновления Windows?"
+ },
+ "ScopeSettings": {
+ "header": "Настройка тегов области для этой политики."
+ },
+ "StartDateOnlyStartDate": {
+ "label": "Первая доступная дата"
+ },
+ "bladeTitle": "Развертывания обновления компонентов",
+ "deploymentSettingsTitle": "Параметры развертывания",
+ "loadError": "Загрузка не выполнена!",
+ "windows11EULA": "Выбирая развертывание этого обновления компонентов, вы соглашаетесь, что при применении этой операционной системы к устройству (1) соответствующая лицензия Windows была приобретена в рамках корпоративного лицензирования или (2) вы уполномочены накладывать обязательства на вашу организацию и принимаете от имени организации соответствующие условия лицензионного соглашения на использование программного обеспечения корпорации Майкрософт, доступные здесь {0}."
+ },
+ "Notifications": {
+ "deploymentSaved": "Развертывание \"{0}\" сохранено.",
+ "newFeatureUpdateDeploymentCreated": "Создано новое развертывание обновления компонентов."
+ },
+ "TabName": {
+ "deploymentSettings": "Параметры развертывания",
+ "groupAssignmentSettings": "Назначения",
+ "scopeSettings": "Теги области"
+ }
+ },
+ "WIPPinRequirements": {
+ "WipLowercaseCharacterPinRequirements": {
+ "allow": "Разрешить использование строчных букв в ПИН-коде",
+ "notAllow": "Запретить использование строчных букв в ПИН-коде",
+ "requireAtLeastOne": "Требовать по меньшей мере одну строчную букву в ПИН-коде"
+ },
+ "WipSpecialCharacterPinRequirements": {
+ "allow": "Разрешить использование специальных символов в ПИН-коде",
+ "notAllow": "Запретить использование специальных символов в ПИН-коде",
+ "requireAtLeastOne": "Требовать по меньшей мере один специальный символ в ПИН-коде"
+ },
+ "WipUppercaseCharacterPinRequirements": {
+ "allow": "Разрешить использование прописных букв в ПИН-коде",
+ "notAllow": "Запретить использование прописных букв в ПИН-коде",
+ "requireAtLeastOne": "Требовать по меньшей мере одну прописную букву в ПИН-коде"
+ }
+ },
+ "OutlookAppConfigSettings": {
+ "AllowUserToChangeSetting": {
+ "title": "Разрешить пользователю менять настройку",
+ "tooltip": "Укажите, разрешено ли пользователю менять настройку."
+ },
+ "AllowWorkAccounts": {
+ "title": "Разрешение только рабочих и учебных учетных записей",
+ "tooltip": " При включении этого параметра пользователи не смогут добавить личный адрес электронной почты и учетные записи хранения в Outlook. Если у пользователя добавлена в Outlook личная учетная запись, ему потребуется ее удалить. Если он этого не сделает, добавить рабочую или учебную учетную запись будет невозможно."
+ },
+ "BlockExternalImages": {
+ "title": "Блокировка внешних изображений",
+ "tooltip": "При блокировке внешних изображений приложение не позволит скачивать размещенные в Интернете изображения, встроенные в текст сообщения. Если не настроить эту функцию, по умолчанию она будет для приложения отключена."
+ },
+ "ConfigureEmail": {
+ "title": "Параметры учетной записи электронной почты"
+ },
+ "DefaultAppSignatureSetting": {
+ "Tooltip": {
+ "android": "Подпись приложения по умолчанию указывает, будет ли приложение использовать \"Получить Outlook для Android\" в качестве подписи по умолчанию во время написания сообщения. Если параметр отключен, подпись по умолчанию не будет использоваться, однако пользователи могут добавить собственную подпись.\r\n\r\nЕсли задано значение \"Не настроено\", параметр приложения по умолчанию включен.",
+ "iOS": "Подпись приложения по умолчанию указывает, будет ли приложение использовать \"Получить Outlook для iOS\" в качестве подписи по умолчанию во время написания сообщения. Если параметр отключен, подпись по умолчанию не будет использоваться, однако пользователи могут добавить собственную подпись.\r\n\r\nЕсли задано значение \"Не настроено\", параметр приложения по умолчанию включен."
+ },
+ "title": "Подпись приложения по умолчанию"
+ },
+ "OfficeFeedReplies": {
+ "title": "Веб-канал обнаружения",
+ "tooltip": "Веб-канал обнаружения отображает ваши самые часто используемые файлы Office. По умолчанию он включен, когда для пользователя включена служба Delve. Если не настроить канал, по умолчанию для приложения используется значение \"Включено\"."
+ },
+ "OrganizeMailByThread": {
+ "title": "Сообщения в цепочках",
+ "tooltip": "По умолчанию в Outlook используется режим объединения бесед в представление беседы с несколькими цепочками. Если этот параметр отключен, Outlook будет отображать все сообщения по отдельности и не будет группировать их по цепочкам."
+ },
+ "PlayMyEmails": {
+ "title": "Воспроизвести мои письма",
+ "tooltip": "По умолчанию функция \"Воспроизвести мои письма\" отключена в приложении, но доступна соответствующим пользователям в виде баннера в папке \"Входящие\". Если параметру задано значение \"Отключено\", функция будет недоступна соответствующим пользователям в приложении. Пользователи могут вручную включить эту функцию в приложении, даже если она отключена. Если параметру задано значение \"Не настроено\", по умолчанию используется значение параметра \"Включено\", и функция будет доступна соответствующим пользователям."
+ },
+ "SuggestedReplies": {
+ "title": "Предлагаемые ответы",
+ "tooltip": "Outlook может предлагать варианты ответов в нижней части при открытии сообщения. Выбрав предложенный ответ, вы можете изменить его перед отправкой."
+ },
+ "SyncCalendars": {
+ "title": "Синхронизация календарей",
+ "tooltip": "Укажите, могут ли пользователи синхронизировать свой календарь Outlook с собственным приложением календаря и базой данных."
+ },
+ "TextPredictions": {
+ "title": "Прогнозирование текста",
+ "tooltip": "Outlook может предлагать слова и фразы при создании сообщений. Если Outlook предлагает вариант, проведите, чтобы принять его. Если задано значение \"Не настроено\", используется параметр приложения по умолчанию со значением \"Включено\"."
+ },
+ "ThemesEnabled": {
+ "title": "Темы включены",
+ "tooltip": "Укажите, разрешено ли пользователю применять настраиваемую визуальную тему."
+ }
+ },
+ "AssignmentFilters": {
+ "assignmentFilterColumnHeader": "Фильтр",
+ "noFilters": "Нет"
+ },
+ "Platform": {
+ "all": "Все",
+ "android": "Администратор устройств Android",
+ "androidAOSP": "Android (AOSP)",
+ "androidEnterprise": "Android Enterprise",
+ "androidForWork": "Android Enterprise",
+ "androidWorkProfile": "Android Enterprise",
+ "common": "Общий",
+ "iOS": "iOS/iPadOS",
+ "iosAndAndroidPlatformLabel": "iOS и Android",
+ "iosCommaAndroidPlatformLabel": "iOS, Android",
+ "linux": "Linux",
+ "macOS": "macOS",
+ "unknown": "Неизвестно",
+ "unsupported": "Не поддерживается",
+ "windows": "Windows",
+ "windows10": "Windows 10 и более поздних версий",
+ "windows10CM": "Windows 10 и более поздней версии (ConfigMgr)",
+ "windows10Holo": "Windows 10 Holographic",
+ "windows10Mobile": "Windows 10 Mobile",
+ "windows10Team": "Windows 10 для совместной работы",
+ "windows10X": "Windows 10X",
+ "windows8": "Windows 8.1 и более поздней версии",
+ "windows8And10": "Windows 8 и 10",
+ "windowsPhone": "Windows Phone 8.1",
+ "windows10AndLater": "Windows 10 и более поздних версий",
+ "windows10AndWindowsServer": "Windows 10, Windows 11 и Windows Server (ConfigMgr)",
+ "windows10andLaterCM": "Windows 10 и более поздней версии (ConfigMgr)",
+ "holoLens": "HoloLens",
+ "surfaceHub2": "Surface Hub 2",
+ "surfaceHub2S": "Surface Hub 2S",
+ "windowsPC": "Компьютер с Windows"
+ },
+ "AppInformationTab": {
+ "Error": {
+ "multipleChildApps": "Бизнес-приложение macOS можно установить как управляемое, только если отправляемый пакет содержит одно приложение."
+ },
+ "Info": {
+ "AppStoreUrl": {
+ "android": "Введите ссылку на описание приложения в Google Play Маркет. Например:",
+ "androidLink": "https://play.google.com/store/apps/details?id=com.microsoft.office.outlook",
+ "windows": "Введите ссылку на описание приложения в Microsoft Store. Например:",
+ "windowsLink": "https://www.microsoft.com/en-us/p/microsoft-to-do-lists-tasks-reminders/9nblggh5r558"
+ },
+ "appPackageFile": "Файл, содержащий ваше приложение в формате, который можно загрузить без публикации на устройство. Допустимые типы пакетов: Android (APK), iOS (IPA), macOS (PKG, INTUNEMAC), Windows (MSI, APPX, APPXBUNDLE, MSIX и MSIXBUNDLE).",
+ "applicableDeviceType": "Выберите типы устройств, на которых можно установить это приложение.",
+ "category": "Категоризация приложения позволит пользователям легче отсортировать и найти его в Корпоративном портале. Вы можете выбрать множество категорий.",
+ "categoryLink": "https://docs.microsoft.com/en-us/intune/apps/apps-add#create-and-edit-categories-for-apps",
+ "description": "Помогите пользователям устройств понять назначение приложения. Они увидят это описание на корпоративном портале.",
+ "developer": "Имя компании или лица, разработавших приложение. Эти сведения будут отображаться пользователям, вошедшим в центр администрирования.",
+ "displayVersion": "Версия приложения. Пользователи увидят эти сведения на корпоративном портале.",
+ "infoUrl": "Предоставьте пользователям ссылку на веб-сайт или документацию с дополнительными сведениями о приложении. Пользователи увидят этот URL-адрес в Корпоративном портале.",
+ "isFeatured": "Приложения из подборки размещаются на видном месте в Корпоративном портале, чтобы пользователи могли быстро получать к ним доступ.",
+ "learnMore": "Дополнительные сведения",
+ "logo": "Отправьте логотип, связанный с приложением. Он будет отображаться рядом с приложением в Корпоративном портале.",
+ "macOSDmgAppPackageFile": "Файл, содержащий приложение в формате, который можно загрузить неопубликованным на устройстве. Допустимый тип пакета: DMG.",
+ "minOperatingSystem": "Выберите самую раннюю версию операционной системы, в которой можно установить приложение. Если приложение назначается устройству с более ранней версией ОС, оно не будет установлено.",
+ "name": "Добавьте имя для приложения. Это имя будет отображаться в списке приложений Intune, и его будут видеть пользователи в Корпоративном портале.",
+ "notes": "Добавьте дополнительные заметки о приложении. Они будут отображаться пользователям, вошедшим в центр администрирования.",
+ "owner": "Имя пользователя в организации, который управляет лицензированием или является контактным лицом для этого приложения. Это имя будет отображаться пользователям, вошедшим в центр администрирования.",
+ "packageName": "Чтобы узнать имя пакета приложения, обратитесь к изготовителю устройства. Пример имени пакета: com.example.app.",
+ "privacyUrl": "Предоставьте пользователям ссылку на дополнительные сведения об условиях и параметрах конфиденциальности приложения. Пользователи увидят URL-адрес сведений о конфиденциальности в Корпоративном портале.",
+ "publisher": "Имя разработчика или название компании, которая распространяет приложение. Пользователи увидят эти сведения на корпоративном портале.",
+ "selectApp": "Найдите в App Store приложения iOS, которые хотите развернуть в Intune.",
+ "useManagedBrowser": "При необходимости открываемое пользователем веб-приложение будет открываться в браузере, защищенном Intune, например в Microsoft Edge или Intune Managed Browser. Этот параметр применяется к устройствам с iOS и Android.",
+ "useManagedBrowserLink": "https://docs.microsoft.com/en-us/intune/apps/app-configuration-managed-browser",
+ "win32AppPackageFile": "Файл, содержащий приложение в формате для загрузки неопубликованных приложений на устройство. Допустимый тип пакета: .intunewin."
+ },
+ "descriptionPreview": "Предварительная версия",
+ "descriptionRequired": "Требуется описание.",
+ "editDescription": "Изменение описания",
+ "macOSMinOperatingSystemAdditionalInfo": "Минимальная версия операционной системы для отправки PKG-файла — macOS 10.14. Отправьте intunemac-файл, чтобы выбрать более старую минимальную операционную систему.",
+ "name": "Сведения о приложении",
+ "nameForOfficeSuitApp": "Сведения о наборе приложений"
+ },
+ "Tooltips": {
+ "PolicySettings": {
+ "TouchId1": {
+ "android": "На Android можно разрешить использование идентификации по отпечатку пальца вместо ПИН-кода. Пользователям будет предложено предоставить свой отпечаток пальца при доступен к этому приложению с помощью рабочей учетной записи.",
+ "iOS": "На устройствах iOS или iPadOS можно разрешить идентификацию с помощью отпечатка пальца вместо ПИН-кода. При открытии этого приложения с рабочей учетной записью пользователи будут получать запрос на предоставление отпечатков пальцев.",
+ "mac": "На устройствах Mac можно разрешить идентификацию с помощью отпечатка пальца вместо ПИН-кода. При открытии этого приложения с рабочей учетной записью пользователи будут получать запрос на предоставление отпечатка."
+ },
+ "appSharingFromLevel1": "Выберите один из следующих вариантов, чтобы указать приложения, от которых это приложение может получать данные.",
+ "appSharingFromLevel2": "{0}: разрешить получение данных из корпоративных документов и учетных записей только других управляемых политикой приложений.",
+ "appSharingFromLevel3": "{0}: разрешить получение данных из корпоративных документов и учетных записей любого приложения.",
+ "appSharingFromLevel4": "{0}: заблокировать получение данных из корпоративных документов и учетных записей любого приложения.",
+ "appSharingFromLevel5": "{0}: разрешает передачу данных из любого приложения и учитывает все входящие данные, не имеющие удостоверения пользователя, как данные организации.",
+ "appSharingToLevel1": "Выберите один из следующих вариантов, чтобы указать приложения, которым это приложение может отправлять данные.",
+ "appSharingToLevel2": "{0}: разрешить отправку корпоративных данных только в другие управляемые политикой приложения.",
+ "appSharingToLevel3": "{0}: разрешить отправку корпоративных данных в любые приложения.",
+ "appSharingToLevel4": "{0}: заблокировать отправку корпоративных данных в любые приложения.",
+ "appSharingToLevel5": "{0}: разрешает передачу данных только в другие управляемые политиками приложения и передачу файлов в управляемые приложения MDM на зарегистрированных устройствах.",
+ "appSharingToLevel6": "{0}: разрешить передачу данных только в другие приложения, управляемые политикой, и фильтровать показ только управляемых политикой приложений в диалоговых окнах ОС \"Открыть в\"/\"Поделиться\".",
+ "conditionalEncryption1": "Выберите {0}, чтобы отключить шифрование приложений для внутреннего хранилища приложений, если на зарегистрированном устройстве обнаружено шифрование устройства.",
+ "conditionalEncryption2": "Примечание. Intune может обнаружить регистрацию устройств только с помощью Intune MDM. Внешнее хранилище приложений будет по-прежнему зашифровано, чтобы неуправляемые приложения не могли получить доступ к данным.",
+ "contactSyncMac": "Если этот параметр отключен, приложения не могут сохранять контакты в свою адресную книгу.",
+ "contactsSync": "Выберите Заблокировать, чтобы запретить приложениям, управляемым политикой, сохранять данные в собственных приложениях устройства (например, в контактах, календаре и мини-приложениях) или запретить использование надстроек в приложениях, управляемых политикой. При выборе варианта Разрешить управляемое политикой приложение сможет сохранять данные в собственных приложениях или использовать надстройки, если эти функции поддерживаются и включены в приложении, управляемом политикой.
Приложения могут предоставлять дополнительную возможность настройки с помощью политик конфигурации приложений. Дополнительные сведения см. в документации приложения.",
+ "encryptionAndroid1": "Для приложений, связанных с политикой управления мобильными приложениями Intune, шифрование обеспечивается средствами Майкрософт. Данные шифруются синхронно при выполнении операций ввода-вывода с файлами в соответствии с параметрами политики. Управляемые приложения Android используют шифрование AES-128 в режиме CBC с помощью библиотек платформы. Метод шифрования не соответствует стандарту FIPS 140-2. Шифрование SHA-256 поддерживается в виде явной инструкции с использованием параметра SigAlg и работает только на устройствах с операционной системой версии 4.2 и выше. Содержимое в хранилище устройства всегда зашифровано.",
+ "encryptionAndroid2": "Когда в политике приложения указывается на необходимость шифрования, конечному пользователю необходимо настроить ПИН-код и использовать его для доступа к устройству. Если ПИН-код не настроен, приложение не запустится и конечный пользователь увидит следующее сообщение: \"По требованию вашей организации для доступа к приложению нужно сначала задать ПИН-код для устройства\".",
+ "encryptionMac1": "Для приложений, связанных с политикой управления мобильными приложениями Intune, шифрование обеспечивается средствами Майкрософт. Данные шифруются синхронно при выполнении операций ввода-вывода с файлами в соответствии с параметрами политики. Управляемые приложения на Mac используют шифрование AES-128 в режиме CBC с помощью библиотек платформы. Метод шифрования не соответствует стандарту FIPS 140-2. Шифрование SHA-256 поддерживается в виде явной инструкции с использованием параметра SigAlg и работает только на устройствах с операционной системой версии 4.2 и выше. Содержимое в хранилище устройства всегда зашифровано.",
+ "faceId1": "При необходимости вы можете разрешить пользователям доступ к этому приложению с рабочих учетных записей через идентификацию лиц вместо ПИН-кода.",
+ "faceId2": "Выберите Да, чтобы разрешить использовать идентификацию лиц вместо ПИН-кода для доступа к приложению.",
+ "managementLevelsAndroid1": "Этот параметр позволяет задать применение политики к устройствам администратора устройств Android, устройствам Android Enterprise или неуправляемым устройствам.",
+ "managementLevelsAndroid2": "{0}: неуправляемые устройства — это устройства, на которых не найдено управление Intune MDM. Сюда входят сторонние поставщики MDM.",
+ "managementLevelsAndroid3": "{0}: управление устройствами с помощью API администрирования устройств Android в Intune.",
+ "managementLevelsAndroid4": "{0}: управление устройствами с рабочих профилей Android Enterprise или полное управление устройствами Android Enterprise в Intune.",
+ "managementLevelsIos1": "Этот параметр позволяет указать, применяется ли эта политика к управляемым или неуправляемым устройствам MDM.",
+ "managementLevelsIos2": "{0}: неуправляемые устройства — это устройства, на которых не найдено управление Intune MDM. Сюда входят сторонние поставщики MDM.",
+ "managementLevelsIos3": "{0}: управляемые устройства управляются через Intune MDM.",
+ "minAppVersion": "Укажите обязательную минимальную версию приложения, которая нужна пользователю для безопасного доступа к приложению.",
+ "minAppVersionWarning": "Укажите рекомендуемую минимальную версию приложения, которая нужна пользователю для безопасного доступа к приложению.",
+ "minOsVersion": "Укажите обязательную минимальную версию ОС, которая нужна пользователю для безопасного доступа к приложению.",
+ "minOsVersionWarning": "Укажите рекомендуемую минимальную версию ОС, которая нужна пользователю для безопасного доступа к приложению.",
+ "minPatchVersion": "Определите самый старый уровень исправлений для системы безопасности Android, допустимый для пользователя при безопасном доступе к приложению.",
+ "minPatchVersionWarning": "Определите рекомендуемый уровень исправлений для системы безопасности Android для пользователя при безопасном доступе к приложению.",
+ "minSdkVersion": "Укажите обязательную минимальную версию пакета SDK для политики защиты приложений Intune, которая нужна пользователю для безопасного доступа к приложению.",
+ "requireAppPinDefault": "Выберите Да, чтобы отключить ПИН-код приложения, если на зарегистрированном устройстве обнаружена блокировка.
",
+ "targetAllApps1": "Этот параметр позволяет использовать политику как целевую в приложениях на устройствах с любым состоянием управления.",
+ "targetAllApps2": "При разрешении конфликта политик этот параметр будет заменен, если у пользователя есть целевая политика для определенного состояния управления.",
+ "touchId2": "Выберите {0}, чтобы для доступа к приложению требовалась идентификация с помощью отпечатка пальца вместо ПИН-кода."
+ },
+ "Tap": {
+ "pinResetAfterNumberOfDays": "Укажите количество дней, по истечении которых будет затребован сброс ПИН-кода.",
+ "previousPinBlockCount": "Этот параметр определяет число предыдущих ПИН-кодов, которые будут храниться в Intune. Все новые ПИН-коды должны отличаться от тех, которые хранятся в Intune."
+ },
+ "WipPolicySettings": {
+ "25": "",
+ "allowWindowsSearch": "Это разрешит службе поиска Windows продолжить поиск в зашифрованных данных.",
+ "authoritativeIpRanges": "Включите этот параметр, если хотите переопределить автообнаружение диапазонов IP-адресов Windows.",
+ "authoritativeProxyServers": "Включите этот параметр, если хотите переопределить автообнаружение прокси-серверов Windows.",
+ "checkInput": "Проверить допустимость входных данных",
+ "dataRecoveryCert": "Сертификат восстановления — это специальный сертификат шифрованной файловой системы (EFS), который вы можете использовать для восстановления зашифрованных файлов при утере или повреждении ключа шифрования. Нужно создать сертификат восстановления и указать его здесь. Дополнительные сведения",
+ "enterpriseCloudResources": "Укажите облачные ресурсы, которые будут считаться корпоративными и защищаться политикой Windows Information Protection. Можно указать несколько ресурсов, разделив записи символом \"|\".
Если в вашей организации настроен прокси-сервер, вы можете указать прокси-сервер, через который будет направляться трафик в облачные ресурсы.
URL[,Proxy]|URL[,Proxy]
Без прокси-сервера: contoso.sharepoint.com|contoso.visualstudio.com
С прокси-сервером: contoso.sharepoint.com,proxy.contoso.com|contoso.visualstudio.com,proxy.contoso.com
",
+ "enterpriseIPv4Ranges": "Укажите диапазоны IPv4-адресов, которые формируют вашу корпоративную сеть. Они используются вместе с доменными именами корпоративной сети, определяющими границу корпоративной сети.
Для этого параметра нужно включить Windows Information Protection.
Можно указать несколько диапазонов, разделив их запятой.
Пример: 3.4.0.1-3.4.255.255,192.168.1.1-192.168.255.255
",
+ "enterpriseIPv6Ranges": "Укажите диапазоны IPv6-адресов, которые формируют корпоративную сеть. Они используются вместе с доменными именами корпоративной сети, определяющими границу корпоративной сети.
Можно указать несколько диапазонов, разделив их запятой.
Пример: 2001:4898:dc05::-2001:4898:dc05:ffff:ffff:ffff:ffff:ffff,2a01:110::-2a01:110:7fff:ffff:ffff:ffff:ffff:ffff
",
+ "enterpriseInternalProxyServers": "Если в вашей организации настроен прокси-сервер, укажите прокси-сервер, через который будет направляться трафик к облачным ресурсам, указанным в параметрах корпоративных облачных ресурсов.
Можно указать несколько значений, разделив их точкой с запятой.
Пример: contoso.internalproxy1.com;contoso.internalproxy2.com
",
+ "enterpriseNetworkDomainNames": "Укажите DNS-имена, которые формируют вашу корпоративную сеть. Они используются вместе с диапазонами IP-адресов для определения границы корпоративной сети. Можно указать несколько значений, разделив их запятой.
Для этого параметра нужно включить Windows Information Protection.
Пример: corp.contoso.com,region.contoso.com
",
+ "enterpriseProtectedDomainNames": "Укажите DNS-имена, которые формируют вашу корпоративную сеть. Они используются вместе с диапазонами IP-адресов, указанными для определения границ корпоративной сети. Можно указать несколько значений, разделив отдельные записи с помощью \"|\".
Этот параметр требуется для включения Windows Information Protection.
Пример: corp.contoso.com|region.contoso.com
",
+ "enterpriseProxyServers": "Если в вашей корпоративной сети внешние прокси-серверы, укажите их здесь. При указании адреса прокси-сервера нужно также указать порт, через который будет разрешено направлять трафик и защищать его с помощью Windows Information Protection.
Примечание. Этот список не должен включать серверы в списке внутренних прокси-серверов. Можно указать несколько значений, разделив их точкой с запятой.
Пример: proxy.contoso.com:80;proxy2.contoso.com:80
",
+ "maxInactivityTime1": "Указывает максимальное количество времени (в минутах) при простое до блокировки устройства с помощью ПИН-кода или пароля. Пользователи могут выбрать любое значение времени ожидания в пределах указанных максимальных значений в приложении \"Параметры\". Обратите внимание, что для Lumia 950 и 950XL максимальное время ожидания — пять минут независимо от значения, заданного политикой.",
+ "maxInactivityTime2": "0 (по умолчанию) — время ожидания не задано. Значение по умолчанию \"0\" значит, что время ожидания не задано.",
+ "maxPasswordAttempts1": "У этой политики разное поведение на мобильном устройстве и компьютере.",
+ "maxPasswordAttempts2": "На мобильном устройстве, когда пользователь достигает значения, заданного политикой, происходит очистка устройства.",
+ "maxPasswordAttempts3": "На компьютере, когда пользователь достигает значения, заданного политикой, очистка устройства не выполняется. Вместо этого компьютер переходит в режим восстановления BitLocker, в котором данные недоступны, но их можно восстановить. Если BitLocker не включен, политику невозможно применить.",
+ "maxPasswordAttempts4": "Перед достижением предельного числа неудачных попыток пользователь переходит на экран блокировки и получает предупреждение, что компьютер будет заблокирован. При достижении предельного числа попыток устройство автоматически перезагрузится и откроет страницу восстановления BitLocker. На этой странице пользователь получит приглашение указать ключ восстановления BitLocker.",
+ "maxPasswordAttempts5": "0 (по умолчанию) — устройство не очищается после ввода неправильного ПИН-кода или пароля.",
+ "maxPasswordAttempts6": "Самое безопасное значение — 0, если все значения политики равны нулю. В противном случае самое безопасное значение — минимальное значение политики.",
+ "mdmDiscoveryUrl": "Укажите URL-адрес конечной точки регистрации MDM, с помощью которого пользователи будут регистрироваться в MDM. По умолчанию он указывается для Intune.",
+ "minimumPinLength1": "Целое значение, которое задает минимальное число символов ПИН-кода. Значение по умолчанию — 4. Наименьшее число, которое можно указать для этого параметра политики — 4. Наибольшее число должно быть меньше указанного в параметре \"Максимальная длина ПИН-кода\" или равно числу 127 в зависимости от того, что окажется меньше.",
+ "minimumPinLength2": "Если вы настроите этот параметр политики, длина ПИН-кода должна быть не меньше этого числа. Если вы отключите или не настроите этот параметр, длина ПИН-кода должна быть не меньше четырех символов.",
+ "name": "Имя границы сети",
+ "neutralResources": "Если в вашей организации есть конечные точки перенаправления проверки подлинности, укажите их здесь. Указанные расположения считаются личными или корпоративными в зависимости от контекста подключения перед перенаправлением.
Можно указать несколько значений, разделив их запятой.
Пример: sts.contoso.com,sts.contoso2.com
",
+ "passportForWork1": "Значение, которое задает Windows Hello для бизнеса в качестве способа входа в Windows.",
+ "passportForWork2": "Значение по умолчанию — True. Если вы зададите значение False, пользователь сможет подготовить Windows Hello для бизнеса только на мобильных телефонах, присоединенных к Azure Active Directory, где требуется подготовка.",
+ "pinExpiration": "Наибольшее число, которое можно указать для политики, — 730, а наименьшее — 0. Если задан параметр политики 0, ПИН-код бессрочный.",
+ "pinHistory1": "Наибольшее число, которое можно указать для политики, — 50, а наименьшее — 0. Если задан параметр политики 0, хранение предыдущих ПИН-кодов не требуется.",
+ "pinHistory2": "Текущий ПИН-код пользователя включен в набор ПИН-кодов, связанных с учетной записью пользователя. Журнал ПИН-кодов не сохраняется после сброса ПИН-кода.",
+ "protectUnderLock": "Защищает содержимое приложения, когда устройство заблокировано.",
+ "protectionModeBlock": "Блокировать: блокирует перемещение корпоративных данных из защищенных приложений.
",
+ "protectionModeOff": "Отключено. Пользователь может перемещать данные из защищенных приложений. Действия не записываются в журнал.
",
+ "protectionModeOverride": "Разрешить переопределения. Пользователь получает запрос при попытке переместить данные из защищенного приложения в незащищенное. Если он отклонит этот запрос, действие будет записано в журнал.
",
+ "protectionModeSilent": "Автоматически. Пользователь может перемещать данные из защищенных приложений. Эти действия записываются в журнал.
",
+ "required": "Обязательно",
+ "revokeOnMdmHandoff": "Добавлена в Windows 10 версии 1703. Эта политика контролирует отзыв ключей WIP при обновлении устройства с MAM до MDM. Если она отключена, ключи не будут отозваны и пользователь сохранит доступ к защищенным файлам после обновления. Это рекомендуемый режим, если в службе MDM настроен тот же EnterpriseID WIP, что и в службе MAM.",
+ "revokeOnUnenroll": "Ключи шифрования будут отозваны при отмене регистрации устройства в политике.",
+ "rmsTemplateForEdp": "GUID TemplateID, который используется для шифрования RMS. Шаблон Azure RMS позволяет ИТ-администратору настроить сведения о том, у кого есть доступ к файлу, защищенному RMS, и длительность этого доступа.",
+ "showWipIcon": "Это позволит пользователю узнать, когда он выступает от лица организации, путем наложения значка.",
+ "useRmsForWip": "Указывает, следует ли разрешить шифрование Azure RMS для WIP."
+ },
+ "requireAppPin": "Выберите Да, чтобы отключить ПИН-код приложения, если на зарегистрированном устройстве обнаружена блокировка.
Примечание. Intune не может обнаружить регистрацию устройств в стороннем решении EMM в iOS или iPadOS.
"
+ },
+ "Autopilot": {
+ "AssignResourceAccount": {
+ "createNewCommandMenu": "Создать",
+ "createNewResourceAccountInfo": "\r\nСоздание новой учетной записи ресурса во время регистрации. Учетная запись ресурса будет добавлена в таблицу учетных записей ресурсов сразу же, но будет неактивна до регистрации устройства и проверки подписки Surface Hub. Подробнее об учетных записях ресурсов.
\r\n ",
+ "createNewResourceTitle": "Создание учетной записи ресурса",
+ "deviceNameInvalid": "Имя устройства имеет недопустимый формат",
+ "deviceNameRequired": "Требуется имя устройства",
+ "editResourceAccountLabel": "Изменить",
+ "selectExistingCommandMenu": "Выбрать существующую"
+ },
+ "Device": {
+ "ComputerName": {
+ "validFormat": "Имена должны быть длиной до 15 символов и могут включать буквы (a–z, A–Z), цифры (0–9) и дефисы. Имена только из цифр недопустимы, и они не могут включать пробелы."
+ },
+ "Header": {
+ "addressableUserName": "Понятное имя",
+ "azureADDevice": "Связанное устройство Azure AD",
+ "batch": "Тег группы",
+ "dateAssigned": "Дата назначения",
+ "deviceAccountFriendlyName": "Понятное имя учетной записи устройства",
+ "deviceAccountPwd": "Пароль учетной записи устройства",
+ "deviceAccountUpn": "Device account",
+ "deviceDisplayName": "Имя устройства",
+ "deviceName": "имя устройства.",
+ "deviceUseType": "Тип использования устройства",
+ "enrollmentState": "Состояние регистрации",
+ "intuneDevice": "Связанное устройство Intune",
+ "lastContacted": "Последнее обращение",
+ "make": "Изготовитель",
+ "model": "Модель",
+ "profile": "Присвоенный профиль",
+ "profileStatus": "Состояние профиля",
+ "purchaseOrderId": "Заказ на поставку",
+ "resourceAccount": "Учетная запись ресурса",
+ "serialNumber": "серийный номер;",
+ "userPrincipalName": "Пользователь"
+ },
+ "SurfaceHub": {
+ "friendlyNameRequired": "Требуется понятное имя",
+ "pwdRequired": "Требуется пароль",
+ "upnRequired": "Требуется учетная запись устройства",
+ "upnValidFormat": "Значения могут содержать буквы (a–z, A–Z), цифры (0–9) и дефисы. Значения не могут содержать пробел."
+ }
+ },
+ "DeviceUseType": {
+ "meetingAndPresentation": "Собрания и презентации",
+ "teamCollaboration": "Совместная работа в команде"
+ },
+ "Devices": {
+ "featureDescription": "Windows Autopilot позволяет настроить запуск при первом включении компьютера для пользователей.",
+ "importErrorStatus": "Некоторые устройства не были импортированы. Щелкните здесь, чтобы получить дополнительные сведения.",
+ "importPendingStatus": "Идет импорт. Затраченное время: {0} мин. Процесс может занять до {1} мин."
+ },
+ "DirectoryService": {
+ "activeDirectoryAD": "С гибридным присоединением к Azure AD",
+ "activeDirectoryADLabel": "Гибридное присоединение к Azure AD с Autopilot",
+ "azureAD": "Присоединено к Azure AD",
+ "unknownType": "Неизвестный тип"
+ },
+ "Filter": {
+ "enrollmentState": "Состояние",
+ "profile": "Состояние профиля"
+ },
+ "OOBE": {
+ "AddressableUserName": {
+ "validateEmpty": "Понятное имя пользователя не может быть пустым."
+ },
+ "ApplyComputerNameTemplate": {
+ "infoBalloon": "Создайте шаблон именования, чтобы добавить имена устройств во время регистрации.",
+ "label": "Применить шаблон имени устройства"
+ },
+ "ApplyComputerNameTemplateDisabled": {
+ "label": "В профилях развертывания Autopilot с гибридным присоединением к Azure AD устройства именуются согласно параметрам, указанным в конфигурации присоединения к домену."
+ },
+ "ComputerNameTemplate": {
+ "emptyValue": "MyCompany-%RAND:4%",
+ "label": "Ввод имени",
+ "noDisallowedChars": "Имя должно включать только буквы, цифры, дефисы и макросы %SERIAL% или %RAND:x%",
+ "serialLength": "При использовании %SERIAL% допустимо не больше 7 символов",
+ "validateLessThan15Chars": "В имени должно быть не больше 15 символов",
+ "validateNoSpaces": "В именах компьютеров не должно быть пробелов",
+ "validateNotAllNumbers": "Имя должно также включать буквы и (или) дефисы",
+ "validateNotEmpty": "Имя не может быть пустым",
+ "validateOnlyOneMacro": "В имени может быть только один макрос %SERIAL% или %RAND:x%"
+ },
+ "ConfigureComputerNameTemplate": {
+ "description": "Создайте уникальное имя для своих устройств. Имена должны быть длиной до 15 символов и могут включать буквы (a — z, A — Z), цифры (0–9) и дефисы. Имена только из цифр недопустимы, и они не могут включать пробелы. Используйте макрос %SERIAL%, чтобы добавить уникальный серийный номер оборудования, или макрос %RAND:x%, чтобы добавить случайную строку цифр, где x — количество этих цифр."
+ },
+ "EnableWhiteGlove": {
+ "infoBalloon": "Включите функцию запуска при первом включении компьютера (OOBE) без проверки подлинности пользователя. Чтобы включить интерфейс OOBE, нужно нажать клавишу Windows пять раз. Устройство будет зарегистрировано, а также будут подготовлены все приложения и параметры в контексте локального компьютера. Приложения и параметры в контексте пользователя будут доставлены, когда пользователь выполнит вход в систему.",
+ "label": "Разрешить предварительно подготовленное развертывание"
+ },
+ "HybridAzureADSkipConnectivityCheck": {
+ "infoBalloon": "Поток Autopilot гибридного присоединения к Azure AD продолжит работу, даже если ему не удастся установить подключение к контроллеру домена во время запуска при первом включении компьютера.",
+ "label": "Пропустить проверку подключения AD (предварительная версия)"
+ },
+ "accountType": "Тип учетной записи пользователя",
+ "accountTypeInfo": "Укажите, являются ли пользователи администраторами или обычными пользователями на устройстве. Обратите внимание, что этот параметр не применяется к учетным записям глобального администратора или администратора организации. Эти учетные записи не могут быть обычными пользователями, так как они имеют доступ ко всем возможностям администрирования в Azure AD.",
+ "configOOBEInfo": "\r\nНастройка готового интерфейса для устройств Autopilot\r\n
",
+ "configureDevice": "Режим развертывания",
+ "configureDeviceHintForSurfaceHub2": "Autopilot поддерживает режим самостоятельного развертывания только для Surface Hub 2. Этот режим не связывает пользователя с зарегистрированным устройством, поэтому для него не требуются учетные данные пользователя.",
+ "configureDeviceHintForWindowsPC": "\r\n Режим развертывания указывает, нужно ли пользователю вводить учетные данные, чтобы подготовить устройство.\r\n
\r\n \r\n - \r\n Под управлением пользователя: устройства связываются с пользователем, регистрирующим устройство. Для подготовки устройства требуются учетные данные.\r\n
\r\n - \r\n Самостоятельное развертывание (предварительная версия): устройства не связываются с регистрирующим пользователем, и учетные данные не требуются для подготовки устройства.\r\n
\r\n
",
+ "createSurfaceHub2Info": "Настройте параметры регистрации Autopilot для устройств Surface Hub 2. По умолчанию в Autopilot включен пропуск проверки подлинности пользователей при первом включении (OBEE). Дополнительные сведения о Windows Autopilot для Surface Hub 2.",
+ "createWindowsPCInfo": "\r\n\r\nСледующие параметры автоматически включаются для устройств Autopilot в режиме самостоятельного развертывания.\r\n
\r\n\r\n - \r\n Пропустить выбор рабочего или домашнего использования.\r\n
\r\n - \r\n Пропустить регистрацию OEM и настройку OneDrive.\r\n
\r\n - \r\n Пропустить проверку подлинности в OOBE.\r\n
\r\n
",
+ "endUserDevice": "Под управлением пользователя",
+ "hideEscapeLink": "Скрыть параметры изменения учетной записи",
+ "hideEscapeLinkInfo": "Функции смены учетной записи и перезапуска с новой отображаются соответственно при начальной настройке устройства на корпоративной странице входа и на странице ошибки домена. Чтобы скрыть эти функции, настройте корпоративную фирменную символику в Azure Active Directory (требуется Windows 10 как минимум версии 1809 или Windows 11).",
+ "info": "Параметры профиля AutoPilot позволяют задать готовую конфигурацию, которую пользователи получат при первом запуске Windows. ",
+ "language": "Язык (регион)",
+ "languageInfo": "Укажите язык и регион, которые будут использоваться.",
+ "licenseAgreement": "Условия лицензионного соглашения корпорации Майкрософт",
+ "licenseAgreementInfo": "Укажите, следует ли показывать условия лицензии пользователям.",
+ "plugAndForgetDevice": "Самостоятельное развертывание (предварительная версия)",
+ "plugAndForgetGA": "Самостоятельное развертывание",
+ "privacySettingWarning": "Изменено значение по умолчанию для сбора диагностических данных на устройствах под управлением Windows 10 версии 1903 и более поздних версий или Windows 11. ",
+ "privacySettings": "Настройки приватности",
+ "privacySettingsInfo": "Укажите, следует ли показывать пользователям параметры конфиденциальности.",
+ "showCortanaConfigurationPage": "Настройка Кортаны",
+ "showCortanaConfigurationPageInfo": "Вариант \"Показать\" включит введение в настройку Кортаны во время запуска.",
+ "skipEULAWarning": "Важные сведения о скрытии условий лицензии",
+ "skipKeyboardSelection": "Автоматически настроить клавиатуру",
+ "skipKeyboardSelectionInfo": "Если значение равно True, пропускать страницу выбора клавиатуры, когда задан параметр \"Язык\".",
+ "subtitle": "Профили AutoPilot",
+ "title": "Готовый интерфейс (OOBE)",
+ "useOSDefaultLanguage": "Значение ОС по умолчанию",
+ "userSelect": "Выбор пользователя"
+ },
+ "Sync": {
+ "lastRequestedLabel": "Последний запрос синхронизации",
+ "lastSuccessfulLabel": "Последняя успешная синхронизация",
+ "syncInProgress": "Выполняется синхронизация. Вернитесь чуть позже.",
+ "syncInitiated": "Запущена синхронизация параметров AutoPilot.",
+ "syncSettingsTitle": "Синхронизация параметров AutoPilot"
+ },
+ "Title": {
+ "devices": "Устройства Windows AutoPilot"
+ },
+ "Tooltips": {
+ "addressableUserName": "Имя пользователя в приветствии, которое отображается во время настройки устройства.",
+ "azureADDevice": "Перейдите к сведениям о связанном устройстве. \"Н/Д\" означает, что связанное устройство отсутствует.",
+ "batch": "Строковый атрибут, позволяющий идентифицировать группу устройств. Поле \"Тег группы\" в Intune сопоставляется с атрибутом OrderID на устройствах Azure AD.",
+ "dateAssigned": "Временная метка назначения профиля устройству.",
+ "deviceAccountFriendlyName": "Понятное имя учетной записи устройств Surface Hub",
+ "deviceAccountPwd": "Пароль учетной записи устройств Surface Hub",
+ "deviceAccountUpn": "Адрес электронной почты учетных записей устройств Surface Hub",
+ "deviceDisplayName": "Задайте уникальное имя для устройства. Это имя будет игнорироваться в развертываниях с гибридным присоединением к Azure AD, где по-прежнему используется имя устройства из профиля присоединения к домену.",
+ "deviceName": "Имя, отображаемое при попытке пользователя обнаружить устройство и подключиться к нему.",
+ "deviceUseType": " Устройство будет настроено в соответствии с вашим выбором. Вы всегда можете изменить параметры позже.\r\n \r\n - Для собраний и презентаций Windows Hello не включен, и данные удаляются после каждого сеанса.\r\n
\r\n - Для совместной работы команды Windows Hello включен, и профили сохраняются для быстрого входа.
\r\n
",
+ "enrollmentState": "Указывает, зарегистрировано ли устройство.",
+ "intuneDevice": "Перейдите к сведениям о связанном устройстве. \"Н/Д\" означает, что связанное устройство отсутствует.",
+ "lastContacted": "Временная метка последнего обращения к устройству.",
+ "make": "Изготовитель выбранного устройства.",
+ "model": "Модель выбранного устройства",
+ "profile": "Имя профиля, назначенного устройству.",
+ "profileStatus": "Указывает, назначен ли профиль устройству.",
+ "purchaseOrderId": "Идентификатор заказа на покупку",
+ "resourceAccount": "Удостоверение устройства или имя субъекта-пользователя (UPN).",
+ "serialNumber": "Серийный номер выбранного устройства.",
+ "userPrincipalName": "Пользователь, который должен выполнить проверку подлинности при настройке устройства."
+ },
+ "allDevices": "Все устройства",
+ "allDevicesAlreadyAssignedError": "Профиль Autopilot уже назначен всем устройствам.",
+ "assignFailedDescription": "Не удалось изменить назначения для {0}.",
+ "assignFailedTitle": "Не удалось изменить назначения профилей AutoPilot.",
+ "assignSuccessDescription": "Назначения для {0} успешно изменены.",
+ "assignSuccessTitle": "Назначения профиля AutoPilot изменены.",
+ "assignSufaceHub2ProfileNextStep": "Следующие шаги для этого развертывания",
+ "assignSurfaceHub2ProfileToDeviceGroup": "1. Назначьте этот профиль по крайней мере одной группе устройств.",
+ "assignSurfaceHub2ProfileToResourceAccount": "2. Назначьте учетную запись ресурса каждому устройству Surface Hub, на которое вы разворачиваете этот профиль.",
+ "assignedDevicesCount": "Назначенные устройства",
+ "assignedDevicesResourceAccountDescription": "Для развертывания этого профиля на устройстве необходимо назначить устройству учетную запись ресурса. Выберите одно устройство, чтобы назначить существующую учетную запись ресурса или создать новую. Подробнее об учетных записях ресурсов
",
+ "assignedDevicesResourceAccountStatusBarMessage": "В этой таблице перечислены только устройства Surface Hub 2, которым был назначен этот профиль.",
+ "assigningDescription": "Изменяются назначения для {0}.",
+ "assigningTitle": "Изменяются назначения профилей AutoPilot.",
+ "autoremediationContext": "We've detected a hardware change on this device. We're trying to automatically register the new hardware. You don't need to do anything now; the status will be updated at the next check in with the result. Learn more about resetting the profile.",
+ "autoremediationTitle": "Device {0} has a fix pending",
+ "cannotDeleteMessage": "Этот профиль назначен группам. Отмените назначение всех групп в этом профиле, прежде чем удалить его.",
+ "cannotDeleteTitle": "Невозможно удалить {0}",
+ "createdDateTime": "Создано",
+ "deleteMessage": "Если удалить этот профиль AutoPilot, для всех устройств, которым он назначен, будет отображаться \"Не назначено\".",
+ "deleteMessageWithPolicySet": "Профиль {0} включен как минимум в один набор политик. Если вы удалите {0}, вы больше не сможете назначать его через эти наборы.",
+ "deleteTitle": "Вы действительно хотите удалить этот профиль?",
+ "description": "Описание",
+ "deviceType": "Тип устройства",
+ "deviceUse": "Использование устройства",
+ "directoryServiceHintForSurfaceHub2": " \r\n Autopilot поддерживает присоединение к Azure AD только для устройств Surface Hub 2. Укажите, как устройства присоединяются к Active Directory (AD) в вашей организации.\r\n
\r\n \r\n - \r\n Присоединено к Azure AD: только облако без локального каталога Windows Server Active Directory.\r\n
\r\n
\r\n ",
+ "directoryServiceHintForWindowsPC": "\r\n \r\n Укажите, как устройства присоединяются к Active Directory (AD) в вашей организации:\r\n
\r\n \r\n - \r\n Присоединено к Azure AD: только облако без локального Windows Server Active Directory\r\n
\r\n
\r\n ",
+ "getAssignedDevicesCountError": "Произошла ошибка при извлечении числа назначенных устройств.",
+ "getAssignmentsError": "Произошла ошибка при извлечении назначений профиля AutoPilot.",
+ "harvestDeviceId": "Преобразовать все целевые устройства в Autopilot",
+ "harvestDeviceIdDescription": "По умолчанию этот профиль можно применить только к устройствам Autopilot, синхронизированным в службе Autopilot.",
+ "harvestDeviceIdInfo": "\r\n Выберите \"Да\", чтобы зарегистрировать все целевые устройства в Autopilot, если они еще не зарегистрированы. Назначенный сценарий Autopilot будет выполнен для них в следующий раз при процедуре первого включения компьютера (OOBE) с Windows.\r\n
\r\n Обратите внимание, что для некоторых сценариев Autopilot требуются определенные минимальные версии сборок Windows. Проверьте наличие на устройстве требуемой минимальной версии сборки для нужного сценария.\r\n
\r\n При удалении этого профиля связанные устройства не будут удалены из Autopilot. Для удаления устройства из Autopilot воспользуйтесь представлением \"Устройства Windows Autopilot\".\r\n ",
+ "harvestDeviceIdWarning": "После преобразования устройства Autopilot можно восстановить, только удалив их из списка устройств Autopilot.",
+ "holoLensCommandMenu": "HoloLens",
+ "info": "Профили развертывания Windows AutoPilot позволяют настроить конфигурацию запуска при первом включении для ваших устройств.",
+ "invalidProfileNameMessage": "Символ \"{0}\" не допускается",
+ "joinTypeLabel": "Присоединение к Azure AD как",
+ "lastModifiedDateTime": "Последнее изменение:",
+ "manualRemediationContext": "We've detected a hardware change on this device. It won't automatically receive an Autopilot profile when it's reset unless you register the device again. Learn more about resetting the profile.",
+ "manualRemediationTitle": "Device {0} needs your attention",
+ "name": "Имя",
+ "noAutopilotProfile": "Нет профилей AutoPilot",
+ "notEnoughPermissionAssignedError": "У вас нет необходимых разрешений для назначения этого профиля некоторым из выбранных групп. Обратитесь к администратору.",
+ "profile": "профиль",
+ "resourceAccountStatusBarMessage": "Учетная запись ресурса необходима для каждого устройства Surface Hub 2, на котором развертывается этот профиль. Щелкните для получения дополнительных сведений.",
+ "selectServices": "Выберите службу каталогов, к которой будут присоединены устройства",
+ "surfaceHub2CommandMenu": "Surface Hub 2",
+ "surfaceHub2SCommandMenu": "Surface Hub 2S",
+ "userAffinityLabel": "Режим развертывания",
+ "windowsPCCommandMenu": "Компьютер с Windows",
+ "directoryServiceLabel": "Тип присоединения к Azure AD:"
},
- "CategoryDescription": {
- "androidGeneralApplicationRestrictions": "Используйте эти параметры, чтобы получать оповещения об установке приложений, запрещенных для использования в организации. Выберите тип приложений:
\r\n Запрещенные приложения — список приложений, об установке которых вы хотите получать оповещения.
\r\n Утвержденные приложения — список приложений, которые утверждены для использования в вашей организации. Если пользователь устанавливает приложение, не входящее в этот список, вы получаете оповещение.
\r\n ",
- "androidZebraMxZebraMx": "Настройте устройства Zebra, отправив профиль MX в формате XML.",
- "iosDeviceFeaturesAirprint": "Используйте эти параметры, чтобы настроить устройства iOS для автоматического подключения к AirPrint-совместимым принтерам в вашей сети. Для принтеров вам потребуется знать IP-адрес и путь ресурса.",
- "iosDeviceFeaturesExtensibleSingleSignOn": "Настройте расширение приложения, позволяющее использовать единый вход (SSO) для устройств под управлением iOS 13.0 или более поздних версий.",
- "iosDeviceFeaturesHomeScreenLayout": "Настройте макет для панели закрепления и начальных экранов на устройствах с iOS. На некоторых устройствах могут быть ограничения на количество отображаемых элементов.",
- "iosDeviceFeaturesIOSWallpaper": "Показ изображения на начальном экране и (или) экране блокировки устройств с iOS.\r\n Чтобы использовать разные изображения на этих двух экранах, создайте один профиль с изображением для экрана блокировки и другой — с изображением начального экрана.\r\n Затем назначьте оба профиля пользователям.\r\n
\r\n \r\n - Максимальный размер файла: 750 КБ
\r\n - Тип файла: PNG, JPG или JPEG
\r\n
\r\n ",
- "iosDeviceFeaturesNotifications": "Укажите параметры уведомлений для приложений. Поддерживает iOS 9.3 и более поздних версий.",
- "iosDeviceFeaturesSharedDevice": "Введите дополнительный текст, который будет отображаться на заблокированном экране. Поддерживается в iOS 9.3 и более поздних версиях. Дополнительные сведения",
- "iosGeneralApplicationRestrictions": "Используйте эти параметры, чтобы получать оповещения об установке приложений, запрещенных для использования в организации. Выберите тип приложений:
\r\n Запрещенные приложения — список приложений, об установке которых вы хотите получать оповещения.
\r\n Утвержденные приложения — список приложений, которые утверждены для использования в вашей организации. Если пользователь устанавливает приложение, не входящее в этот список, вы получаете оповещение.
\r\n ",
- "iosGeneralApplicationVisibility": "Используйте список отображаемых приложений, чтобы указать те приложения для iOS, которые пользователь может просматривать или запускать. Используйте список скрываемых приложений, чтобы указать приложения для iOS, которые пользователь не сможет просматривать или запускать.",
- "iosGeneralAutonomousSingleAppMode": "Приложения, которые вы добавляете в этот список и назначаете устройству, могут препятствовать запуску остальных приложений или блокировать устройство при выполнении определенного действия (например, прохождении теста). После завершения действия или удаления ограничения устройство возвращается в обычное состояние.",
- "iosGeneralKiosk": "Режим киоска блокирует различные параметры на устройстве или задает одно приложение, которое может работать на устройстве. Это может быть полезно в таких местах, как магазины, где на устройстве нужно запустить только одно демонстрационное приложение.",
- "macDeviceFeaturesAirprint": "Используйте эти параметры, чтобы настроить на устройствах с macOS автоматическое подключение к совместимым принтерам AirPrint в сети. Вам потребуется IP-адрес и путь к ресурсам принтеров.",
- "macDeviceFeaturesAssociatedDomains": "Настройка связанных доменов, позволяющих использовать общие данные и учетные данные для входа в приложениях и на веб-сайтах вашей организации. Этот профиль можно применять к устройствам под управлением macOS 10.15 или более поздних версий.",
- "macDeviceFeaturesExtensibleSingleSignOn": "Настройте расширение приложения, позволяющее использовать единый вход (SSO) для устройств под управлением macOS 10.15 или более поздних версий.",
- "macDeviceFeaturesLoginItems": "Выберите, какие приложения, файлы и папки будут открываться при входе пользователей на устройства. Чтобы пользователи не могли изменять способ открытия выбранных приложений, вы можете скрыть эти приложения из пользовательских настроек.",
- "macDeviceFeaturesLoginWindow": "Настройка внешнего вида экрана входа macOS и функций, которые доступны пользователям после входа в систему.",
- "macExtensionsKernelExtensions": "Используйте эти параметры для настройки политики расширения ядра на устройствах под управлением macOS 10.13.2 или более поздних версий.",
- "macGeneralDomains": "Электронные адреса, по которым пользователь отправляет и получает почту и в которых не используются указанные здесь домены, будут помечены как ненадежные.",
- "windows10EndpointProtectionApplicationGuard": "При использовании Microsoft Edge компонент Application Guard в Microsoft Defender защищает вашу среду от сайтов, которые не были определены как доверенные вашей организацией. Когда пользователи переходят на сайты, не указанные в вашей границе изолированной сети, эти сайты открываются в виртуальном сеансе браузера в Hyper-V. Доверенные сайты определяются границей сети, которую можно настроить в разделе \"Конфигурация устройства\". Обратите внимание, что эта функция доступна только для устройств под управлением Windows 10 (64-разрядная версия) или более поздней версии.",
- "windows10EndpointProtectionCredentialGuard": "Включение Credential Guard затрагивает следующие обязательные параметры.\r\n
\r\n \r\n - Включить функции безопасности на основе виртуализации: включение виртуализации на основе безопасности (VBS) при следующей перезагрузке. Безопасность на основе виртуализации использует низкоуровневую оболочку Windows для поддержки устройств безопасности.
\r\n
\r\n - Безопасная загрузка с прямым доступом к памяти: включение VBS с безопасной загрузкой и прямым доступом к памяти (DMA).
\r\n
\r\n ",
- "windows10EndpointProtectionDeviceGuard": "Выберите другие приложения, для которых необходим аудит со стороны компонента управления приложениями в Microsoft Defender либо которые можно считать надежными для запуска с точки зрения этого компонента. Надежными для запуска автоматически считаются компоненты Windows и все приложения из Магазина Windows.
\r\n При запуске в режиме \"Только аудит\" приложения не блокируются. В режиме \"Только аудит\" все события записываются в локальные журналы клиентов.\r\n ",
- "windows10GeneralPrivacyPerApp": "Добавьте приложения, поведение конфиденциальности которых должно отличаться от заданного в разделе \"Конфиденциальность по умолчанию\".",
- "windows10NetworkBoundaryNetworkBoundary": "Граница сети представляет собой список корпоративных ресурсов, таких как облачный домен, и диапазонов IP-адресов для компьютеров в корпоративной сети. Определите границы сети, чтобы применять политики для защиты данных, находящихся в этих расположениях.",
- "windowsHealthMonitoring": "Настройте политику мониторинга работоспособности Windows.",
- "windowsPhoneGeneralApplicationRestrictions": "Windows Phone может заблокировать установку или запуск приложений из списка запрещенных приложений либо приложений, отсутствующих в утвержденном списке. Все управляемые приложения следует добавить в утвержденный список."
- },
"MinimumOperatingSystem": {
"Android": {
"v10": "Android 10.0",
@@ -2435,6 +1154,304 @@
"excludedGroups": "Исключенные группы",
"licenseType": "Тип лицензии"
},
+ "TAP": {
+ "AccessRequirements": {
+ "infoText": "Настройте требования к ПИН-коду и учетным данным, которым должны следовать пользователи для доступа к приложениям в рабочем контексте."
+ },
+ "DataProtection": {
+ "infoText": "Эта группа включает элементы управления защиты от потери данных (DLP), такие как ограничение на вырезание, копирование, вставку и сохранение. Эти параметры определяют, как пользователи взаимодействуют с данными в приложениях."
+ },
+ "DeviceTypes": {
+ "selectOne": "Выберите хотя бы один тип устройства."
+ },
+ "TargetedApps": {
+ "TargetToAll": {
+ "label": "Поддержка приложений на любых типах устройств"
+ },
+ "infoText": "Выберите способ применения этой политики к приложениям на различных устройствах. Затем добавьте хотя бы одно приложение.",
+ "selectOne": "Выберите по меньшей мере одно приложение, чтобы создать политику."
+ }
+ },
+ "AssignmentAction": {
+ "exclude": "Исключенные",
+ "include": "Включено",
+ "includeAllDevicesVirtualGroup": "Включено",
+ "includeAllUsersVirtualGroup": "Включено"
+ },
+ "AppType": {
+ "androidEnterpriseSystemApp": "Системное приложение Android Enterprise",
+ "androidForWorkApp": "Приложение управляемого Google Play Маркета",
+ "androidLobApp": "Бизнес-приложение для Android",
+ "androidStoreApp": "Приложение для Магазина Android",
+ "builtInAndroid": "Встроенное приложение для Android",
+ "builtInApp": "Встроенное приложение",
+ "builtInIos": "Встроенное приложение для iOS",
+ "default": "",
+ "iosLobApp": "Бизнес-приложение для iOS",
+ "iosStoreApp": "Приложение iOS Store",
+ "iosVppApp": "Приложение iOS Volume Purchase Program",
+ "lineOfBusinessApp": "Бизнес-приложение",
+ "macOSDmgApp": "Приложение macOS (DMG)",
+ "macOSEdgeApp": "Microsoft Edge (macOS)",
+ "macOSLobApp": "Бизнес-приложение macOS",
+ "macOSMdatpApp": "ATP в Microsoft Defender (macOS)",
+ "macOSOfficeSuiteApp": "Приложения Microsoft 365 (macOS)",
+ "macOsVppApp": "Приложение macOS Volume Purchase Program",
+ "managedAndroidLobApp": "Управляемое бизнес-приложение для Android",
+ "managedAndroidStoreApp": "Управляемое приложение Магазина Android",
+ "managedGooglePlayApp": "Приложение управляемого Google Play Маркета",
+ "managedGooglePlayPrivateApp": "Частное приложение управляемого Google Play",
+ "managedGooglePlayWebApp": "Веб-ссылка управляемого Google Play",
+ "managedIosLobApp": "Управляемое бизнес-приложение для iOS",
+ "managedIosStoreApp": "Управляемое приложение Магазина iOS",
+ "microsoftStoreForBusinessApp": "Приложение Магазина Майкрософт для бизнеса",
+ "microsoftStoreForBusinessReleaseManagedApp": "Магазин Майкрософт для бизнеса",
+ "officeSuiteApp": "Приложения Microsoft 365 (Windows 10 и более поздних версий)",
+ "webApp": "Веб-ссылка",
+ "windowsAppXLobApp": "Бизнес-приложение Windows AppX",
+ "windowsClassicApp": "Приложение Windows (Win32)",
+ "windowsEdgeApp": "Microsoft Edge (Windows 10 и более поздних версий)",
+ "windowsMobileMsiLobApp": "Бизнес-приложение Windows MSI",
+ "windowsPhone81AppXBundleLobApp": "Бизнес-приложение Windows Phone 8.1 AppX",
+ "windowsPhone81AppXLobApp": "Бизнес-приложение Windows Phone 8.1 AppX",
+ "windowsPhone81StoreApp": "Приложение Магазина Windows Phone 8.1",
+ "windowsPhoneXapLobApp": "Бизнес-приложение Windows Phone XAP",
+ "windowsStoreApp": "Приложение Microsoft Store",
+ "windowsUniversalAppXLobApp": "Универсальное бизнес-приложение Windows AppX",
+ "windowsUniversalLobApp": "Универсальное бизнес-приложение Windows"
+ },
+ "TAPSettings": {
+ "AllowedDataIngestionLocations": {
+ "label": "Разрешить пользователям открывать данные из выбранных служб",
+ "tooltip": "Выберите службы хранения приложений, из которых пользователи смогут открывать данные. Все прочие службы блокируются. Если не выбрать никаких служб, пользователи не смогут открывать данные."
+ },
+ "AndroidBackup": {
+ "label": "Резервное копирование корпоративных данных в службы Android",
+ "tooltip": "Выберите {0}, чтобы заблокировать резервное копирование корпоративных данных в службы резервного копирования Android. \r\nВыберите {1}, чтобы разрешить резервное копирование корпоративных данных в службы резервного копирования Android. \r\nЛичные или неуправляемые данные затронуты не будут."
+ },
+ "AndroidBiometricAuthentication": {
+ "label": "Доступ с помощью биометрии вместо ПИН-кода",
+ "tooltip": "Выберите доступные людям способы проверки подлинности в Android вместо ПИН-кода приложения (при наличии)."
+ },
+ "AndroidFingerprint": {
+ "label": "Отпечаток пальца вместо ПИН-кода для доступа (Android 6.0 и выше)",
+ "tooltip": "Для проверки подлинности пользователей устройств с ОС Android сканируется отпечаток пальца. Эта функция поддерживает встроенные биометрические элементы управления устройств с Android. Биометрические параметры конкретных изготовителей, такие как Samsung Pass, не поддерживаются. Для доступа к приложению на соответствующем устройстве следует использовать встроенные биометрические элементы управления, если они разрешены."
+ },
+ "AndroidOverrideFingerprint": {
+ "label": "Заменять отпечаток пальца ПИН-кодом после истечения времени ожидания"
+ },
+ "AppPIN": {
+ "label": "ПИН-код приложения, если задан ПИН-код устройства",
+ "tooltip": "Если задан ПИН-код для зарегистрированного устройства в MDM, использовать ПИН-код для доступа к приложению не обязательно.
\r\n\r\nПримечание. Intune не может обнаружить регистрацию устройства в стороннем решении EMM на Android."
+ },
+ "BlockDataIngestionIntoOrganizationDocuments": {
+ "label": "Открывать данные из корпоративных документов",
+ "tooltip1": "Выберите Блокировать, чтобы отключить использование параметра Открыть или других параметров для предоставления учетным записям в этом приложении общего доступа к данным. Выберите Разрешить, чтобы разрешить использование параметра Открыть и других параметров для предоставления учетным записям в этом приложении общего доступа к данным.",
+ "tooltip2": "Если выбран параметр Блокировать, можно настроить параметр Разрешить пользователю открывать данные из выбранных служб, чтобы указать, в каких службах разрешено размещать корпоративные данные.",
+ "tooltip3": "Примечание. Этот параметр применяется только в том случае, если параметру \"Получать данные из других приложений\" задано значение \"Приложения, управляемые политикой\".
\r\nПримечание. Этот параметр применяется не ко всем приложениям. Дополнительные сведения: {0}.",
+ "tooltip4": "Примечание. Этот параметр применяется только в том случае, если параметру \"Получать данные из других приложений\" задано значение \"Приложения, управляемые политикой\".
\r\nПримечание. Этот параметр применяется не ко всем приложениям. Дополнительные сведения: {0} или {0}."
+ },
+ "ConnectToVpnOnLaunch": {
+ "label": "Запуск подключения к Microsoft Tunnel при запуске приложения",
+ "tooltip": "Разрешить подключение к VPN при запуске приложения"
+ },
+ "CredentialsForAccess": {
+ "label": "Учетные данные рабочей или учебной учетной записи для доступа",
+ "tooltip": "При необходимости для доступа к приложению, управляемому политикой, нужно использовать рабочую или учебную учетную запись. Если ПИН-код или биомерические методы также требуются для доступа к приложению, помимо этих запросов потребуется рабочая или учебная учетная запись."
+ },
+ "CustomBrowserDisplayName": {
+ "label": "Название неуправляемого браузера",
+ "tooltip": "Введите имя приложения браузера, связанного с \"ИД неуправляемого браузера\". Это имя будет отображаться для пользователей, если указанный браузер не установлен."
+ },
+ "CustomBrowserPackageId": {
+ "label": "ИД неуправляемого браузера",
+ "tooltip": "Введите идентификатор приложения для одного браузера. Веб-содержимое (http/s) в управляемых политиками приложениях будет открываться в указанном браузере."
+ },
+ "CustomBrowserProtocol": {
+ "label": "Протокол неуправляемого браузера",
+ "tooltip": "Введите протокол для одного неуправляемого браузера. Веб-содержимое (http/s) в управляемых политиками приложениях будет открываться в любом приложении, поддерживающим этот протокол.
\r\n \r\nПримечание. Укажите только префикс протокола. Если ваш браузер требует использовать ссылки вида \"mybrowser://www.microsoft.com\", введите \"mybrowser\".
"
+ },
+ "CustomDialerAppDisplayName": {
+ "label": "Имя приложения номеронабирателя"
+ },
+ "CustomDialerAppPackageId": {
+ "label": "Идентификатор пакета приложения номеронабирателя"
+ },
+ "CustomDialerAppProtocol": {
+ "label": "Схема URL-адресов приложений номеронабирателя"
+ },
+ "Cutcopypaste": {
+ "label": "Ограничение вырезания, копирования и вставки между приложениями",
+ "tooltip": "Вырезание, копирование и вставка данных между вашим приложением и другими утвержденными приложениями, установленными на устройстве. Вы можете полностью заблокировать эти действия, разрешить использовать их между любыми приложениями или только между теми, которыми управляет ваша организация.
\r\n\r\nУправляемые политикой приложения со вставкой позволяют принимать содержимое, вставляемое из других приложений, но блокировать копирование и вставку в приложения, не являющиеся управляемыми.
"
+ },
+ "DialerRestrictionLevel": {
+ "iosTooltip": "Обычно когда пользователь нажимает на гиперссылку с номером телефона в приложении, открывается приложение номеронабирателя с уже подставленным номером, готовое к совершению вызова. Для этого параметра выберите, как будет обрабатываться этот тип передачи содержимого, когда он инициируется из приложения, управляемого политикой. Чтобы этот параметр вступил в силу, могут потребоваться дополнительные действия. Сначала проверьте, что tel и telprompt удалены из списка \"Выберите исключаемые приложения\". Затем убедитесь, что приложение использует более новую версию пакета SDK для Intune (версия 12.7.0 или выше).",
+ "label": "Ограничить передачу коммуникационных данных",
+ "tooltip": "Как правило, когда пользователь выбирает в приложении номер телефона в виде гиперссылки, приложение набирателя номера откроется с предварительно заполненным полем номера телефона и будет готово к вызову. Для использования этого параметра выберите способ обработки этого типа передачи содержимого, когда передача инициируется из приложения, управляемого политикой."
+ },
+ "EncryptData": {
+ "label": "Шифрование корпоративных данных",
+ "link": "https://docs.microsoft.com/ru-ru/intune/app-protection-policy-settings-android#data-relocation-settings",
+ "tooltip": "Выберите {0}, чтобы принудительно использовать шифрование уровня приложений Intune для корпоративных данных.\r\n
\r\nВыберите {1}, чтобы не использовать шифрование уровня приложений Intune для корпоративных данных.\r\n\r\n
\r\nПримечание. Дополнительные сведения о шифровании уровня приложений Intune: {2}."
+ },
+ "EncryptDataAndroid": {
+ "tooltip": "Выберите Требовать, чтобы включить шифрование рабочих или учебных данных в этом приложении. Для надежного шифрования Intune использует OpenSSL, 256-разрядную схему шифрования AES и систему хранения ключей Android Keystore. Данные шифруются синхронно при выполнении задач ввода-вывода с файлами. Содержимое в хранилище устройства всегда зашифровано. Пакет SDK по-прежнему будет поддерживать 128-разрядные ключи для совместимости с содержимым и приложениями, где используются его более ранние версии.
\r\n\r\nЭтот метод шифрования соответствует стандарту FIPS 140-2.
"
+ },
+ "EncryptDataIos": {
+ "tooltip1": "Выберите Требовать, чтобы включить шифрование рабочих или учебных данных в этом приложении. Intune принудительно применяет шифрование устройств iOS или iPadOS для защиты данных приложений, пока устройство заблокировано. Приложения могут при необходимости зашифровать данные приложений с помощью шифрования пакетов SDK для приложений Intune. Пакет SDK для приложений Intune использует методы шифрования iOS или iPadOS, чтобы применить 128-разрядное шифрование AES к данным приложения.",
+ "tooltip2": "При включении этого параметра пользователю может потребоваться настроить и использовать ПИН-код для доступа к устройству. Если ПИН-код и шифрование устройства не требуются, пользователя попросят задать ПИН-код в следующем сообщении: \"Для доступа к этому приложению организации требуется, чтобы вы сначала задали ПИН-код устройства\".",
+ "tooltip3": "См. официальную документацию Apple, где указано, какие модули шифрования iOS соответствуют стандарту FIPS 140-2 или ожидают признания соответствия."
+ },
+ "EncryptDataOnEnrolledDevices": {
+ "label": "Шифрование корпоративных данных на зарегистрированных устройствах",
+ "tooltip": "Выберите {0}, чтобы принудительно использовать шифрование уровня приложений Intune для корпоративных данных на всех устройствах.
\r\n\r\nВыберите {1}, чтобы не использовать шифрование уровня приложений Intune для корпоративных данных на всех устройствах."
+ },
+ "IOSBackup": {
+ "label": "Резервное копирование корпоративных данных в iTunes и iCloud",
+ "tooltip": "Выберите {0}, чтобы заблокировать резервное копирование корпоративных данных в iTunes или iCloud. \r\nВыберите {1}, чтобы разрешить резервное копирование корпоративных данных в iTunes или iCloud. \r\nЛичные и неуправляемые данные затронуты не будут."
+ },
+ "IOSFaceID": {
+ "label": "Face ID вместо ПИН-кода для доступа (iOS 11 и более поздние версии/iPadOS)",
+ "tooltip": "Face ID использует технологию распознавания лиц для проверки подлинности пользователей на устройствах с iOS или iPadOS. Intune вызывает API LocalAuthentication для проверки подлинности пользователей с помощью Face ID. Если Face ID разрешена, ее следует использовать для доступа к приложению на устройстве с поддержкой Face ID."
+ },
+ "IOSOverrideTouchId": {
+ "label": "Заменять биометрические данные ПИН-кодом после истечения времени ожидания"
+ },
+ "IOSTouchId": {
+ "label": "Touch ID вместо ПИН-кода для доступа (iOS 8 и более поздние версии/iPadOS)",
+ "tooltip": "Touch ID использует технологию распознавания отпечатков пальцев для проверки подлинности пользователей на устройствах с iOS. Intune вызывает API LocalAuthentication для проверки подлинности пользователей с помощью Touch ID. Если Touch ID разрешена, ее следует использовать для доступа к приложению на устройстве с поддержкой Touch ID."
+ },
+ "NotificationRestriction": {
+ "label": "Уведомления о данных организации",
+ "tooltip": "Выберите один из следующих способов отображения уведомлений для учетных записей организации в этом приложении и на всех подключенных устройствах (например, переносных).
\r\n{0}: не выводить уведомления.
\r\n{1}: не показывать в уведомлениях корпоративные данные. Если приложение это не поддерживает, уведомления блокируются.
\r\n{2}: выводить все уведомления.
\r\n Только для Android\r\n Примечание. Этот параметр применяется только к некоторым приложениям. Дополнительные сведения: {3}.
\r\n \r\nТолько для iOS\r\nПримечание. Этот параметр применяется только к некоторым приложениям. Дополнительные сведения: {4}.
"
+ },
+ "OpenLinksManagedBrowser": {
+ "label": "Ограничение передачи веб-содержимого другими приложениями",
+ "tooltip": "Выберите один из следующих вариантов для приложений, в которых данное приложение может открывать веб-содержимое.
\r\nEdge: разрешить открывать веб-содержимое только в Edge.
\r\nНеуправляемый браузер: разрешить открывать веб-содержимое только в неуправляемом браузере, определяемом параметром \"Протокол неуправляемого браузера\".
\r\nЛюбое приложение: разрешить открывать веб-ссылки в любом приложении.
"
+ },
+ "OverrideBiometric": {
+ "tooltip": "При необходимости в зависимости от времени ожидания (в минутах бездействия) запрос ПИН-кода может переопределить запросы биометрических данных. Если значение времени ожидания не достигнуто, продолжит появляться запрос биометрических данных. Значение времени ожидания должно быть больше значения, указанного в пункте \"Повторно проверить требования доступа через (в минутах бездействия)\". "
+ },
+ "PinAccess": {
+ "label": "ПИН-код для доступа",
+ "tooltip": "При необходимости для доступа к приложению, управляемому политикой, нужно использовать ПИН-код. Пользователи должны создать ПИН-код доступа при первом открытии приложения в рабочей или учебной учетной записи."
+ },
+ "PinLength": {
+ "label": "Выбрать минимальную длину ПИН-кода",
+ "tooltip": "Этот параметр указывает минимальное количество цифр в ПИН-коде."
+ },
+ "PinType": {
+ "label": "Тип ПИН-кода",
+ "tooltip": "Числовые ПИН-коды состоят из цифр. Секретные коды состоят из букв, цифр и специальных символов. "
+ },
+ "Printing": {
+ "label": "Печать корпоративных данных",
+ "tooltip": "Если задать блокировку, приложение не сможет печатать защищенные данные."
+ },
+ "ReceiveData": {
+ "label": "Получать данные из других приложений",
+ "tooltip": "Выберите, из каких приложений это приложение может получать данные.
\r\n\r\nНет: заблокировать получение данных из корпоративных документов и учетных записей любого приложения.
\r\n\r\nПриложения, управляемые политикой: разрешить получение данных из корпоративных документов и учетных записей только других управляемых политикой приложений.\r\n
\r\nЛюбое приложение с входящими корпоративными данными: разрешить получение данных из корпоративных документов и учетных записей любого приложения и считать все входящие данные без пользовательской учетной записи корпоративными данными.
\r\n\r\nВсе приложения: разрешить получение данных из корпоративных документов и учетных записей любого приложения."
+ },
+ "RecheckAccessAfter": {
+ "label": "Повторно проверять требования доступа через (в минутах бездействия)\r\n\r\n",
+ "tooltip": "Если приложение, управляемое политикой, неактивно дольше указанного числа минут, приложение запросит повторную проверку требований к доступу (т. е. ПИН-код, параметры условного запуска) после запуска приложения."
+ },
+ "RestrictKeyboards": {
+ "duplicatePackageError": "Идентификатор пакета должен быть уникальным.",
+ "invalidPackageError": "Недопустимый идентификатор пакета",
+ "label": "Утвержденные клавиатуры",
+ "select": "Выберите клавиатуры для утверждения",
+ "subtitle": "Добавьте все клавиатуры и методы ввода, которые пользователям разрешено использовать с целевыми приложениями. Введите имя клавиатуры, которое будет отображаться для пользователя.",
+ "title": "Добавление утвержденных клавиатур",
+ "toolTip": "Выберите \"Требовать\" и укажите список утвержденных клавиатур для этой политики. Дополнительные сведения."
+ },
+ "SaveData": {
+ "label": "Сохранение копий корпоративных данных",
+ "tooltip": "Выберите {0}, чтобы заблокировать сохранение копии корпоративных данных с помощью команды \"Сохранить как\" в любых новых расположениях помимо выбранных служб хранения.\r\n Выберите {1}, чтобы разрешить сохранение копии корпоративных данных с помощью команды \"Сохранить как\" в новом расположении.
\r\n\r\n\r\nПримечание. Этот параметр применяется не ко всем приложениям. Дополнительные сведения: {2}.\r\n"
+ },
+ "SaveDataToSelected": {
+ "label": "Разрешить пользователю сохранять копии в выбранных службах",
+ "tooltip": "Выберите службы хранения, в которых пользователи смогут сохранять свои копии корпоративных данных. Все прочие службы блокируются. Если не выбрать никаких служб, пользователи не смогут сохранять копии корпоративных данных."
+ },
+ "ScreenCaptureAndAndroidAssistant": {
+ "label": "Снимок экрана и Google Ассистент\r\n",
+ "tooltip": "Если этот параметр заблокирован, снимки экрана и возможности сканирования приложения Google Ассистент будут отключены при использовании приложения, управляемого политикой. Эта функция поддерживает обычное приложение Google Ассистента. Сторонние помощники, использующие API Google Ассистента, не поддерживаются. Выберите \"Заблокировать\", чтобы размыть изображение для предварительного просмотра переключателя приложений при использовании приложения с рабочей или учебной учетной записью."
+ },
+ "SendData": {
+ "label": "Отправка корпоративных данных другим приложениям",
+ "tooltip": "Выберите, в какие приложения это приложение сможет отправлять корпоративные данные.
\r\n\r\n\r\nНет: заблокировать отправку корпоративных данных в любые приложения.
\r\n\r\n\r\nПриложения, управляемые политикой: разрешить отправку корпоративных данных только в другие управляемые политикой приложения.
\r\n\r\n\r\nПриложения, управляемые политикой, с общим доступом к ОС: разрешить отправку корпоративных данных только в другие управляемые политикой приложения, а также отправку корпоративных документов в другие приложения, управляемые MDM на зарегистрированных устройствах.
\r\n\r\n\r\nПриложения, управляемые политикой, с фильтрацией в \"Открыть в\"/\"Поделиться\": разрешить отправку корпоративных данных только в другие управляемые политикой приложения и фильтровать в диалоговых окнах ОС \"Открыть в\"/\"Поделиться\" отображение только управляемых политикой приложений.\r\n
\r\n\r\nВсе приложения: разрешить отправку корпоративных данных в любые приложения."
+ },
+ "SimplePin": {
+ "label": "Простой ПИН-код",
+ "tooltip": "Если параметр заблокирован, пользователи не смогут создать простой ПИН-код. Простой ПИН-код — это прямая последовательность цифр или повторяющиеся цифры, например, 1234, ABCD или 1111. Обратите внимание, что при блокировке простого ПИН-кода типа \"Секретный код\" потребуется секретный код как минимум с одной цифрой, одной буквой и одним специальным символом."
+ },
+ "SyncContacts": {
+ "label": "Синхронизация данных приложения, управляемого политикой, в собственных приложениях и надстройках"
+ },
+ "ThirdPartyKeyboards": {
+ "infoBox": "Ограничения клавиатуры будут применены ко всем областям приложения. Это ограничение повлияет на личные учетные записи для приложений, поддерживающих несколько удостоверений. Дополнительные сведения.",
+ "label": "Клавиатуры сторонних производителей"
+ },
+ "Timeout": {
+ "label": "Время ожидания (в минутах бездействия)"
+ },
+ "Tap": {
+ "numberOfDays": "Дней",
+ "pinResetAfterNumberOfDays": "Сброс ПИН-кода через указанное количество дней",
+ "previousPinBlockCount": "Выберите количество предыдущих значений ПИН-кода, которые будут сохранены"
+ }
+ },
+ "ScheduledAction": {
+ "Form": {
+ "editBlockActionInfo": "Для всех политик соответствия требуется одна блокировка.",
+ "graceperiod": "Расписание (дни после наступления несоответствия)",
+ "graceperiodInfo": "Укажите срок несоответствия в днях, по истечении которого следует применить это действие к устройству пользователя.",
+ "subtitle": "Укажите параметры действия.",
+ "title": "Параметры действия"
+ },
+ "List": {
+ "gracePeriodDay": "{0} день после наступления несоответствия",
+ "gracePeriodDays": "{0} дн. после наступления несоответствия",
+ "gracePeriodHour": "{0} ч после наступления несоответствия",
+ "gracePeriodHours": "{0} ч после наступления несоответствия",
+ "gracePeriodMinute": "{0} мин после наступления несоответствия",
+ "gracePeriodMinutes": "{0} мин после наступления несоответствия",
+ "immediately": "Немедленно",
+ "schedule": "Расписание",
+ "scheduleInfoBalloon": "Число дней после наступления несоответствия",
+ "subtitle": "Укажите последовательность действий для несоответствующих устройств.",
+ "title": "Действия"
+ },
+ "Notification": {
+ "additionalEmailLabel": "Другие",
+ "additionalRecipients": "Дополнительные получатели (по электронной почте)",
+ "additionalRecipientsBladeTitle": "Выбор дополнительных получателей",
+ "emailAddressPrompt": "Введите адреса электронной почты (через запятую)",
+ "invalidEmail": "Недопустимый адрес электронной почты",
+ "messageTemplate": "Шаблон сообщения",
+ "noneSelected": "Выбранных нет",
+ "notSelected": "Не выбрано",
+ "numSelected": "Выбрано: {0}",
+ "selected": "Выбрано"
+ },
+ "block": "Отметить устройство как несоответствующее политике",
+ "lockDevice": "Блокировка устройства (локальное действие)",
+ "lockDeviceWithPasscode": "Блокировка устройства (локальное действие)",
+ "noAction": "Нет действий",
+ "noActionRow": "Нет действий; выберите команду \"Добавить\", чтобы добавить действие.",
+ "pushNotification": "Отправить push-уведомление пользователю",
+ "remoteLock": "Удаленно заблокировать несовместимое устройство",
+ "removeSourceAccessProfile": "Удалить профиль доступа к источнику",
+ "retire": "Снять несоответствующее устройство с учета",
+ "wipe": "Очистка",
+ "emailNotification": "Отправить сообщение электронной почты пользователю"
+ },
+ "InstallIntent": {
+ "available": "Доступно для зарегистрированных устройств",
+ "availableWithoutEnrollment": "Доступно с регистрацией или без регистрации",
+ "required": "Обязательно",
+ "uninstall": "Удалить"
+ },
"EnrollmentStatusScreen": {
"Apps": {
"managedApps": "Управляемые приложения",
@@ -2466,142 +1483,61 @@
"resetToggle": "Разрешить пользователям сбросить параметры устройства при ошибке установки",
"timeout": "Отобразить ошибку, если установка занимает больше указанного времени в минутах"
},
- "EnrollmentType": {
- "devicesWithEnrollment": "Управляемые устройства",
- "devicesWithoutEnrollment": "Управляемые приложения"
- },
- "ApplicabilityRules": {
- "GridLabel": {
- "property": "Свойство",
- "rule": "Правило",
- "ruleDetails": "Сведения о правиле",
- "value": "Значение"
- },
- "assignIf": "Назначить профиль, если",
- "deleteWarning": "Это приведет к удалению выбранного правила применимости.",
- "dontAssignIf": "Не назначать профиль, если",
- "editionDisplayText": "{0} {1}",
- "editionDisplayTextMore": "и еще {0}",
- "instructions": "Укажите, как применить этот профиль в назначенной группе. Intune применит профиль только к устройствам, соответствующим объединенным критериям этих правил.",
- "maxText": "Максимум",
- "minText": "Минимум",
- "noActionRow": "Правила применимости не указаны.",
- "oSVersion": "Пример: 1.2.3.4.",
- "toText": "по",
- "windows10Education": "Windows 10/11 для образовательных учреждений",
- "windows10EducationN": "Windows 10/11 для образовательных учреждений N",
- "windows10Enterprise": "Windows 10/11 Корпоративная",
- "windows10EnterpriseN": "Windows 10/11 Корпоративная N",
- "windows10HolographicEnterprise": "Windows 10 Holographic для бизнеса",
- "windows10Home": "Windows 10/11 Домашняя",
- "windows10HomeChina": "Windows 10 Домашняя (Китай)",
- "windows10HomeN": "Windows 10/11 Домашняя N",
- "windows10HomeSingleLanguage": "Windows 10/11 Домашняя для одного языка",
- "windows10IoTCore": "Windows 10 IoT Базовая",
- "windows10IoTCoreCommercial": "Windows 10 IoT Базовая для коммерческих организаций",
- "windows10Mobile": "Windows 10 Mobile",
- "windows10MobileEnterprise": "Windows 10 Mobile Корпоративная",
- "windows10OsEdition": "Выпуск ОС",
- "windows10OsVersion": "Версия ОС",
- "windows10Professional": "Windows 10/11 Профессиональная",
- "windows10ProfessionalEducation": "Windows 10/11 профессиональная для образовательных учреждений",
- "windows10ProfessionalEducationN": "Windows 10/11 Профессиональная для образовательных учреждений N",
- "windows10ProfessionalN": "Windows 10 Профессиональная N",
- "windows10ProfessionalWorkstation": "Windows 10/11 Профессиональная Workstation",
- "windows10ProfessionalWorkstationN": "Windows 10/11 Профессиональная Workstation N"
+ "Devices": {
+ "General": {
+ "android": "Android"
+ },
+ "aOSP": "Проект Android с открытым исходным кодом",
+ "android": "Администратор устройств Android",
+ "androidWorkProfile": "Android Enterprise (рабочий профиль)",
+ "iOS": "iOS/iPadOS",
+ "mac": "macOS",
+ "windows": "Windows (MDM)",
+ "windows10": "Windows 10 и более поздних версий",
+ "windowsHomeSku": "Номер SKU Windows Домашняя",
+ "windowsMobile": "Windows Mobile"
+ },
+ "AppInfoBalloonText": {
+ "Certificate": {
+ "customSubjectName": "CN={{UserName}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US\r\nor\r\nCN={{AAD_Device_ID}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US",
+ "keySize": "Выберите число битов, содержащееся в ключе.",
+ "keyUsage": "Укажите криптографическое действие, необходимое для обмена открытым ключом сертификата.",
+ "renewalThreshold": "Введите процент (от 1 до 99 %) оставшегося времени существования сертификата, по достижении которого устройство может запросить его продление. Рекомендуемое значение в Intune — 20 %. (1–99)",
+ "rootCert": "Выберите ранее настроенный и назначенный профиль корневого сертификата ЦС. Сертификат ЦС должен совпадать с корневым сертификатом ЦС, выдающим сертификат для этого профиля (который вы сейчас настраиваете).",
+ "scepServerUrl": "Введите URL-адрес сервера NDES, выдающего сертификаты по протоколу SCEP (требуется HTTPS), например https://contoso.com/certsrv/mscep/mscep.dll.",
+ "scepServerUrls": "Добавьте URL-адреса для сервера NDES, который выдает сертификаты по протоколу SCEP (требуется HTTPS), например https://contoso.com/certsrv/mscep/mscep.dll.",
+ "subjectAlternativeName": "Альтернативное имя субъекта",
+ "subjectNameFormat": "Формат имени субъекта",
+ "validityPeriod": "Время, оставшееся до истечения срока действия сертификата. Введите значение не больше срока действия, указанного в шаблоне сертификата. Значение по умолчанию — один год."
+ },
+ "appInstallContext": "Этот параметр задает контекст установки, связываемый с приложением. Для приложений в двойном режиме выберите нужный контекст. Для прочих приложений выбор делается заранее на основе пакета и не может быть изменен.",
+ "autoUpdateMode": "Настройте приоритет обновления приложения. Выберите \"По умолчанию\", чтобы перед обновлением приложения устройство было подключено к сети Wi-Fi, заряжалось от источника питания и не находилось в состоянии активного использования. Выберите \"Высокая важность\", чтобы обновить приложение немедленно после его публикации разработчиком вне зависимости от состояния заряда, подключения к сети Wi-Fi или действий конечного пользователя на устройстве. Выберите \"Отложено\", чтобы отказаться от обновлений приложения на срок до 90 дней. Значения \"Высокая важность\" и \"Отложено\" применяются только для устройств DO.",
+ "configurationSettingsFormat": "Текст формата для параметров конфигурации",
+ "ignoreVersionDetection": "Задайте значение \"Да\" для приложений, которые автоматически обновляются разработчиком (например, Google Chrome).",
+ "ignoreVersionDetectionMacOSLobApp": "Выберите \"Да\" для приложений, которые будут автоматически обновляться разработчиком или для которых нужно только проверить bundleID (ИД пакета) перед установкой. Выберите \"Нет\" для проверки bundleID и номера версии приложения перед установкой.",
+ "installAsManagedMacOSLobApp": "Этот параметр применяется только к macOS 11 и более поздним версиям. Приложение будет установлено, но не будет управляться в версиях до macOS 10.15 включительно.",
+ "installContextDropdown": "Выберите нужный контекст установки. В контексте пользователя приложение будет установлено только для целевого пользователя, а в контексте устройства — для всех пользователей на устройстве.",
+ "ldapUrl": "Это имя узла LDAP, где клиенты могут получить открытые ключи шифрования для получателей электронной почты. Сообщения электронной почты будут зашифрованы, когда ключ станет доступен. Поддерживаемые форматы: - ldap.example.com
\r\n- ldap.example.com:123
\r\n- ldap://ldap.example.com
- ldap://ldap.example.com:123
- ldaps://ldap.example.com
\r\n- ldaps://ldap.example.com:123
",
+ "permissionsSettings": "Выберите разрешения среды выполнения для связанного приложения.",
+ "policyAssociatedApp": "Выберите приложение, с которым будет связана эта политика.",
+ "policyConfigurationSettings": "Выберите способ для определения параметров конфигурации этой политики.",
+ "policyDescription": "Дополнительно можно ввести описание этой политики конфигурации.",
+ "policyEnrollmentType": "Выберите, как осуществляется управление этими параметрами: с помощью управления устройствами или приложений, созданных на основе пакета SDK Intune.",
+ "policyName": "Введите имя политики конфигурации.",
+ "policyPlatform": "Выберите платформу, к которой будет применена эта политика конфигурации приложений.",
+ "policyProfileType": "Выберите типы профилей устройств, к которым будет применяться этот профиль конфигурации приложений.",
+ "policySMime": "Настройка параметров подписи и шифрования S/MIME для Outlook.",
+ "sMimeDeployCertsFromIntune": "Укажите, будут ли доставляться сертификаты S/MIME из Intune для использования с Outlook.\r\nIntune может автоматически развертывать пользователям сертификаты для подписи и шифрования через Корпоративный портал.",
+ "sMimeEnable": "Укажите, включены ли элементы управления S/MIME при написании электронного письма.",
+ "sMimeEnableAllowChange": "Укажите, разрешено ли пользователю изменять параметр \"Включить S/MIME\".",
+ "sMimeEncryptAllEmails": "Укажите, должны ли шифроваться все электронные письма.\r\nШифрование преобразует данные в зашифрованный текст, чтобы их мог прочесть только получатель.",
+ "sMimeEncryptAllEmailsAllowChange": "Укажите, разрешено ли пользователю изменять параметр \"Шифровать все электронные письма\".",
+ "sMimeEncryptionCertProfile": "Укажите профиль сертификата для шифрования электронной почты.",
+ "sMimeSignAllEmails": "Укажите, следует ли подписывать все электронные письма.\r\nЦифровая подпись проверяет подлинность письма и защищает от незаконного изменения содержимого при передаче.",
+ "sMimeSignAllEmailsAllowChange": "Укажите, разрешено ли пользователю изменять параметр \"Подписать все электронные письма\".",
+ "sMimeSigningCertProfile": "Укажите профиль сертификата для подписывания электронной почты.",
+ "sMimeUserNotificationType": "Способ уведомления пользователей о необходимости открыть Корпоративный портал и получить сертификаты S/MIME для Outlook."
},
- "BooleanActions": {
- "allow": "Разрешить",
- "block": "Блокировать",
- "configured": "Настроено",
- "disable": "Отключить",
- "dontRequire": "Не требовать",
- "enable": "Включить",
- "hide": "Скрыть",
- "limit": "Ограничение",
- "notConfigured": "Не настроено",
- "require": "Требовать",
- "show": "Показать",
- "yes": "Да"
- },
- "ProactiveRemediations": {
- "Create": {
- "Basics": {
- "DescriptionMultiLineTextBox": {
- "label": "Описание",
- "placeholder": "Введите описание"
- },
- "NameTextBox": {
- "label": "Имя",
- "placeholder": "Ввод имени"
- },
- "PublisherTextBox": {
- "label": "Издатель",
- "placeholder": "Введите издателя"
- },
- "VersionTextBox": {
- "label": "Версия"
- },
- "headerDescription": "Создайте новый настраиваемый пакет сценариев на основе написанных вами сценариев обнаружения и исправления."
- },
- "ScopeTags": {
- "headerDescription": "Выберите группы для назначения пакета сценариев."
- },
- "Settings": {
- "DetectionScriptMultiLineTextBox": {
- "label": "Сценарий обнаружения",
- "placeholder": "Введите текст сценария",
- "requiredValidationMessage": "Введите сценарий обнаружения"
- },
- "EnforceScriptSignatureCheckOptionPicker": {
- "label": "Принудительно проверить подпись сценария"
- },
- "LoggedOnCredentialsOptionPicker": {
- "label": "Запуск сценария с использованием текущих учетных данных"
- },
- "RemediationScript": {
- "infoBox": "Этот сценарий будет выполняться в режиме только обнаружения, поскольку сценарий исправления отсутствует."
- },
- "RemediationScriptMultiLineTextBox": {
- "label": "Сценарий исправления",
- "placeholder": "Введите текст сценария"
- },
- "RunIn64BitPSOptionPicker": {
- "label": "Запуск сценария в 64-разрядной версии PowerShell"
- },
- "ScriptMultiLineTextBox": {
- "base64EncodingValidationMessage": "Недопустимый сценарий. Один или несколько символов, используемых в сценарии, являются недопустимыми."
- },
- "headerDescription": "Создание настраиваемого пакета сценариев на основе написанных сценариев. По умолчанию сценарии будут выполняться на назначенных устройствах каждый день.",
- "infoBox": "Этот скрипт доступен только для чтения. Возможно, некоторые параметры этого скрипта отключены."
- },
- "title": "Создание настраиваемого сценария",
- "ScriptProperties": {
- "GridHeaders": {
- "interval": "Интервал",
- "time": "Дата и время"
- },
- "Interval": {
- "day": "Повторяется каждый день",
- "days": "Повторяется каждые {0} дн.",
- "hour": "Повторяется каждый час",
- "hours": "Повторять через каждые {0} часов",
- "month": "Повторяется каждый месяц",
- "months": "Повторяется каждые {0} мес.",
- "week": "Повторяется каждую неделю",
- "weeks": "Повторяется каждые {0} нед."
- },
- "Time": {
- "utc": "{0} (время в формате UTC)",
- "utcWithDate": "{0} (UTC) {1}",
- "withDate": "{0} {1}"
- }
- }
- },
- "Edit": {
- "title": "Изменить — {0}"
- }
- },
"WindowsManagement": {
"Assignment": {
"noAssignmentCustomAttributeDisplayText": "Назначьте настраиваемый атрибут хотя бы одной группе. Изменить назначения можно в разделе \"Свойства\".",
@@ -2708,910 +1644,6 @@
"shellScriptObjectName": "Скрипт оболочки",
"successfullySavedPolicy": "Сохранено {0}"
},
- "AssignmentFilters": {
- "assignmentFilterColumnHeader": "Фильтр",
- "noFilters": "Нет"
- },
- "Category": {
- "airPlay": "AirPlay",
- "airPrint": "AirPrint",
- "androidDefenderAtp": "Microsoft Defender для конечной точки",
- "androidDeviceOwnerApplications": "Приложения",
- "androidForWorkPassword": "Пароль устройства",
- "appManagement": "Разрешить или блокировать приложения",
- "applicationGuard": "Application Guard в Microsoft Defender",
- "applicationRestrictions": "Ограниченные приложения",
- "applicationVisibility": "Отображение или скрытие приложений",
- "applications": "App Store",
- "applicationsAndGames": "App Store, просмотр документов, игры",
- "applicationsAndGoogle": "Магазин Google Play",
- "appsAndExperience": "Приложения и интерфейс",
- "associatedDomains": "Связанные домены",
- "autonomousSingleAppMode": "Режим одного автономного приложения (ASAM)",
- "azureOperationalInsights": "Оперативная аналитика Azure",
- "bitLocker": "Шифрование Windows",
- "browser": "Браузер",
- "builtinApps": "Встроенные приложения",
- "cellular": "Сотовая связь",
- "cloudAndStorage": "Облако и хранилище",
- "cloudPrint": "Облачный принтер",
- "complianceEmailProfile": "Электронная почта",
- "connectedDevices": "Подключенные устройства",
- "connectivity": "Сотовая связь и взаимодействие",
- "contentCaching": "Кэширование содержимого",
- "controlPanelAndSettings": "Панель управления и параметры",
- "credentialGuard": "Credential Guard в Microsoft Defender",
- "customCompliance": "Настраиваемое соответствие",
- "customCompliancePreview": "Настраиваемое соответствие требованиям (предварительная версия)",
- "customConfiguration": "Пользовательский профиль конфигурации",
- "customOMASettings": "Настраиваемые параметры OMA-URI",
- "customPreferences": "Файл настроек",
- "defender": "Антивирусная программа в Microsoft Defender",
- "defenderAntivirus": "Антивирусная программа в Microsoft Defender",
- "defenderExploitGuard": "Exploit Guard в Microsoft Defender",
- "defenderFirewall": "Брандмауэр в Microsoft Defender",
- "defenderLocalSecurityOptions": "Параметры безопасности локального устройства",
- "defenderSecurityCenter": "Центр безопасности в Microsoft Defender",
- "deliveryOptimization": "Оптимизация доставки",
- "derivedCredentialAuthenticationConfiguration": "Производные учетные данные",
- "deviceExperience": "Интерфейс устройства",
- "deviceFirmwareConfigurationInterface": "Интерфейс настройки встроенного ПО устройства",
- "deviceGuard": "Управление приложениями в Microsoft Defender",
- "deviceHealth": "Работоспособность устройств",
- "devicePassword": "Пароль устройства",
- "deviceProperties": "Свойства устройства",
- "deviceRestrictions": "Общие",
- "deviceSecurity": "Безопасность системы",
- "display": "Отображение",
- "domainJoin": "Присоединение к домену",
- "domains": "Домены",
- "edgeBrowser": "Устаревшие версии Microsoft Edge (версия 45 и более ранние версии)",
- "edgeBrowserSmartScreen": "Фильтр SmartScreen в Microsoft Defender",
- "edgeKiosk": "Режим киоска Microsoft Edge",
- "editionUpgrade": "Обновление выпуска",
- "education": "Образование",
- "educationDeviceCerts": "Сертификаты устройств",
- "educationStudentCerts": "Сертификаты учащихся",
- "educationTakeATest": "Выполнить проверку",
- "educationTeacherCerts": "Сертификаты преподавателей",
- "emailProfile": "Электронная почта",
- "enterpriseDataProtection": "Windows Information Protection",
- "expeditedCheckin": "Конфигурация управления мобильным устройством",
- "extensibleSingleSignOn": "Расширение единого входа для приложения",
- "filevault": "FileVault",
- "firewall": "Брандмауэр",
- "games": "Игры",
- "gatekeeper": "Привратник",
- "healthMonitoring": "Мониторинг работоспособности",
- "homeScreenLayout": "Макет начального экрана",
- "iOSWallpaper": "Фоновый рисунок",
- "importedPFX": "Импортированный сертификат PKCS",
- "iosDefenderAtp": "Microsoft Defender для конечной точки",
- "iosKiosk": "Киоск",
- "kernelExtensions": "Расширения ядра",
- "keyboardAndDictionary": "Клавиатура и словарь",
- "kiosk": "Киоск",
- "kioskAndroidEnterprise": "Выделенные устройства",
- "kioskConfiguration": "Киоск",
- "kioskConfigurationV2": "Киоск",
- "kioskWebBrowser": "Веб-браузер киоска",
- "lockScreenMessage": "Сообщение на экране блокировки",
- "lockedScreenExperience": "Интерфейс заблокированного экрана",
- "logging": "Создание отчетов и телеметрия",
- "loginItems": "Элементы входа",
- "loginWindow": "Окно входа",
- "macDefenderAtp": "Microsoft Defender для конечной точки",
- "maintenance": "Обслуживание",
- "malware": "Вредоносные программы",
- "messaging": "Сообщения",
- "networkBoundary": "Граница сети",
- "networkProxy": "Прокси-сервер сети",
- "notifications": "Уведомления приложений",
- "pKCS": "Сертификат PKCS",
- "password": "Пароль",
- "personalProfile": "Личный профиль",
- "personalization": "Персонализация",
- "policyOverride": "Переопределение групповой политики",
- "powerSettings": "Параметры управления питанием",
- "printer": "Принтер",
- "privacy": "Конфиденциальность",
- "privacyPerApp": "Исключения конфиденциальности на приложение",
- "privacyPreferences": "Параметры конфиденциальности",
- "projection": "Проекция",
- "sCCMCompliance": "Соответствие Configuration Manager",
- "sCEP": "Сертификат SCEP",
- "sCEPProperties": "Сертификат SCEP",
- "sMode": "Смена режима (только программа предварительной оценки Windows)",
- "safari": "Safari",
- "search": "Поиск",
- "session": "Сеанс",
- "sharedDevice": "Общий iPad",
- "sharedPCAccountManager": "Устройство коллективного пользования с общим доступом",
- "singleSignOn": "Единый вход",
- "smartScreen": "Фильтр SmartScreen в Microsoft Defender",
- "softwareUpdates": "Параметры",
- "start": "Начало",
- "systemExtensions": "Расширения системы",
- "systemSecurity": "Безопасность системы",
- "trustedCert": "Доверенный сертификат",
- "updates": "Обновления",
- "userRights": "Права пользователей",
- "usersAndAccounts": "Пользователи и учетные записи",
- "vPN": "Базовая VPN",
- "vPNApps": "Автоподключение VPN",
- "vPNAppsAndTrafficRules": "Приложения и правила трафика",
- "vPNConditionalAccess": "Условный доступ",
- "vPNConnectivity": "Подключение",
- "vPNDNSTriggers": "Параметры DNS",
- "vPNIKEv2": "Параметры IKEv2",
- "vPNProxy": "Прокси",
- "vPNSplitTunneling": "Раздельное туннелирование",
- "vPNTrustedNetwork": "Обнаружение доверенной сети",
- "webContentFilter": "Фильтр веб-содержимого",
- "wiFi": "Wi-Fi",
- "win10Wifi": "Wi-Fi",
- "windowsAtp": "Microsoft Defender для конечной точки",
- "windowsDefenderATP": "Microsoft Defender для конечной точки",
- "windowsHelloForBusiness": "Windows Hello для бизнеса",
- "windowsSpotlight": "Windows: интересное",
- "wiredNetwork": "Проводная сеть",
- "wireless": "Беспроводная",
- "wirelessProjection": "Беспроводная проекция",
- "workProfile": "Параметры рабочего профиля",
- "workProfilePassword": "Пароль рабочего профиля",
- "xboxServices": "Службы Xbox",
- "zebraMx": "Профиль MX (только Zebra)",
- "complianceActionsLabel": "Действия при несоответствии"
- },
- "MicrosoftEdgeChannel": {
- "beta": "Beta",
- "dev": "Dev",
- "stable": "Stable"
- },
- "ConfigurationTypes": {
- "Table": {
- "androidDeviceOwnerGeneral": "Ограничения устройств (владелец устройства)",
- "androidForWorkGeneral": "Ограничения устройств (рабочий профиль)"
- },
- "androidCustom": "Настраиваемая",
- "androidDeviceOwnerGeneral": "Ограничения устройств",
- "androidDeviceOwnerPkcs": "Сертификат PKCS",
- "androidDeviceOwnerScep": "Сертификат SCEP",
- "androidDeviceOwnerTrustedCertificate": "Доверенный сертификат",
- "androidDeviceOwnerVpn": "Виртуальная частная сеть (VPN)",
- "androidDeviceOwnerWiFi": "Wi-Fi",
- "androidEmailProfile": "Электронная почта (только Samsung KNOX)",
- "androidForWorkCustom": "Настраиваемая",
- "androidForWorkEmailProfile": "Электронная почта",
- "androidForWorkGeneral": "Ограничения устройств",
- "androidForWorkImportedPFX": "Импортированный сертификат PKCS",
- "androidForWorkOemConfig": "OEMConfig",
- "androidForWorkPKCS": "Сертификат PKCS",
- "androidForWorkSCEP": "Сертификат SCEP",
- "androidForWorkTrustedCertificate": "Доверенный сертификат",
- "androidForWorkVpn": "VPN",
- "androidForWorkWiFi": "Wi-Fi",
- "androidGeneral": "Ограничения устройств",
- "androidImportedPFX": "Импортированный сертификат PKCS",
- "androidPKCS": "Сертификат PKCS",
- "androidSCEP": "Сертификат SCEP",
- "androidTrustedCertificate": "Доверенный сертификат",
- "androidVPN": "VPN",
- "androidWiFi": "Wi-Fi",
- "androidZebraMx": "Профиль MX (только Zebra)",
- "complianceAndroid": "Политика соответствия для Android",
- "complianceAndroidDeviceOwner": "Полностью управляемый, выделенный и корпоративный рабочий профиль",
- "complianceAndroidEnterprise": "Личный рабочий профиль",
- "complianceAndroidForWork": "Политика соответствия Android for Work",
- "complianceIos": "Политика соответствия для iOS",
- "complianceMac": "Политика соответствия для Mac",
- "complianceWindows10": "Политика соответствия для Windows 10 и более поздних версий",
- "complianceWindows10Mobile": "Политика соответствия для Windows 10 Mobile",
- "complianceWindows8": "Политика соответствия для Windows 8",
- "complianceWindowsPhone": "Политика соответствия для Windows Phone",
- "exchangeActiveSync": "Exchange Active Sync",
- "iosCustom": "Настраиваемая",
- "iosDerivedCredentialAuthenticationConfiguration": "Производные учетные данные PIV",
- "iosDeviceFeatures": "Функции устройства",
- "iosEDU": "Образование",
- "iosEducation": "Образование",
- "iosEmailProfile": "Электронная почта",
- "iosGeneral": "Ограничения устройств",
- "iosImportedPFX": "Импортированный сертификат PKCS",
- "iosPKCS": "Сертификат PKCS",
- "iosPresets": "Предустановки",
- "iosSCEP": "Сертификат SCEP",
- "iosTrustedCertificate": "Доверенный сертификат",
- "iosVPN": "VPN",
- "iosVPNZscaler": "Виртуальная частная сеть (VPN)",
- "iosWiFi": "Wi-Fi",
- "macCustom": "Настраиваемая",
- "macDeviceFeatures": "Функции устройства",
- "macEndpointProtection": "Endpoint Protection",
- "macExtensions": "Расширения",
- "macGeneral": "Ограничения устройств",
- "macImportedPFX": "Импортированный сертификат PKCS",
- "macSCEP": "Сертификат SCEP",
- "macTrustedCertificate": "Доверенный сертификат",
- "macVPN": "VPN",
- "macWiFi": "Wi-Fi",
- "settingsCatalog": "Каталог параметров (предварительная версия)",
- "unsupported": "Не поддерживается",
- "windows10AdministrativeTemplate": "Административные шаблоны (предварительная версия)",
- "windows10Atp": "Microsoft Defender для конечной точки (настольные компьютеры под управлением Windows 10 или более поздних версий)",
- "windows10Custom": "Настраиваемая",
- "windows10DesktopSoftwareUpdate": "Обновления программного обеспечения",
- "windows10DeviceFirmwareConfigurationInterface": "Интерфейс настройки встроенного ПО устройства",
- "windows10EmailProfile": "Электронная почта",
- "windows10EndpointProtection": "Endpoint Protection",
- "windows10EnterpriseDataProtection": "Windows Information Protection",
- "windows10General": "Ограничения устройств",
- "windows10ImportedPFX": "Импортированный сертификат PKCS",
- "windows10Kiosk": "Киоск",
- "windows10NetworkBoundary": "Граница сети",
- "windows10PKCS": "Сертификат PKCS",
- "windows10PolicyOverride": "Переопределение групповой политики",
- "windows10SCEP": "Сертификат SCEP",
- "windows10SecureAssessmentProfile": "Профиль образования",
- "windows10SharedPC": "Устройство коллективного пользования с общим доступом",
- "windows10TeamGeneral": "Ограничения для устройств (Windows 10 для совместной работы)",
- "windows10TrustedCertificate": "Доверенный сертификат",
- "windows10VPN": "VPN",
- "windows10WiFi": "Wi-Fi",
- "windows10WiFiCustom": "Настраиваемый Wi-Fi",
- "windows8General": "Ограничения устройств",
- "windows8SCEP": "Сертификат SCEP",
- "windows8TrustedCertificate": "Доверенный сертификат",
- "windows8VPN": "VPN",
- "windows8WiFi": "Импорт Wi-Fi",
- "windowsDeliveryOptimization": "Оптимизация доставки",
- "windowsDomainJoin": "Присоединение к домену",
- "windowsEditionUpgrade": "Обновление выпуска и переключение режима",
- "windowsIdentityProtection": "Защита идентификации",
- "windowsPhoneCustom": "Настраиваемая",
- "windowsPhoneEmailProfile": "Электронная почта",
- "windowsPhoneGeneral": "Ограничения устройств",
- "windowsPhoneImportedPFX": "Импортированный сертификат PKCS",
- "windowsPhoneSCEP": "Сертификат SCEP",
- "windowsPhoneTrustedCertificate": "Доверенный сертификат",
- "windowsPhoneVPN": "VPN",
- "IosUpdate": "Политика обновления iOS"
- },
- "WindowsEnrollment": {
- "coManagementAuthorityDesc": "Настройка параметров совместного управления для интеграции Configuration Manager",
- "coManagementAuthorityTitle": "Параметры совместного управления ",
- "deploymentProfiles": "Профили развертывания Windows AutoPilot",
- "description": "Дополнительные сведения о семи способах регистрации ПК с Windows 10/11 в Intune пользователями или администраторами.",
- "descriptionLabel": "Методы регистрации Windows",
- "enrollmentStatusPage": "Страница состояния регистрации"
- },
- "Platform": {
- "all": "Все",
- "android": "Администратор устройств Android",
- "androidAOSP": "Android (AOSP)",
- "androidEnterprise": "Android Enterprise",
- "androidForWork": "Android Enterprise",
- "androidWorkProfile": "Android Enterprise",
- "common": "Общий",
- "iOS": "iOS/iPadOS",
- "iosAndAndroidPlatformLabel": "iOS и Android",
- "iosCommaAndroidPlatformLabel": "iOS, Android",
- "linux": "Linux",
- "macOS": "macOS",
- "unknown": "Неизвестно",
- "unsupported": "Не поддерживается",
- "windows": "Windows",
- "windows10": "Windows 10 и более поздних версий",
- "windows10CM": "Windows 10 и более поздней версии (ConfigMgr)",
- "windows10Holo": "Windows 10 Holographic",
- "windows10Mobile": "Windows 10 Mobile",
- "windows10Team": "Windows 10 для совместной работы",
- "windows10X": "Windows 10X",
- "windows8": "Windows 8.1 и более поздней версии",
- "windows8And10": "Windows 8 и 10",
- "windowsPhone": "Windows Phone 8.1",
- "windows10AndLater": "Windows 10 и более поздних версий",
- "windows10AndWindowsServer": "Windows 10, Windows 11 и Windows Server (ConfigMgr)",
- "windows10andLaterCM": "Windows 10 и более поздней версии (ConfigMgr)",
- "holoLens": "HoloLens",
- "surfaceHub2": "Surface Hub 2",
- "surfaceHub2S": "Surface Hub 2S",
- "windowsPC": "Компьютер с Windows"
- },
- "EnrollmentRestrictions": {
- "DeletePayloadLink": {
- "content": "{0} включено как минимум в один набор политик. Если вы удалите {0}, вы больше не сможете назначать его через эти наборы. Все равно удалить?",
- "contentWithError": "{0}, возможно, включено как минимум в один набор политик. Если вы удалите {0}, вы больше не сможете назначать его через эти наборы. Все равно удалить?",
- "header": "Вы действительно хотите удалить это ограничение?"
- },
- "DeviceLimit": {
- "description": "Укажите максимальное число устройств, которые может зарегистрировать пользователь.",
- "header": "Ограничения числа устройств",
- "info": "Определяет, сколько устройств может зарегистрировать каждый пользователь."
- },
- "DeviceType": {
- "VersionValidation": {
- "aOSP": "Должна использоваться версия 1.0 или более поздняя.",
- "android": "Введите допустимый номер версии. Например, 5.0, 5.5.1, 6.0.0.1",
- "androidForWork": "Введите допустимый номер версии. Например, 5.0, 5.1.1",
- "iOS": "Введите допустимый номер версии. Например, 9.0, 10.0, 9.0.2",
- "mac": "Введите допустимый номер версии. Примеры: 10, 10.10, 10.10.1",
- "min": "Минимум не может быть меньше {0}",
- "minMax": "Минимальная версия не может быть больше максимальной.",
- "windows": "Требуется 10.0 или более поздняя версия. Оставьте поле пустым, чтобы разрешить устройства с версией 8.1.",
- "windowsMobile": "Требуется 10.0 или более поздняя версия. Оставьте поле пустым, чтобы разрешить устройства с версией 8.1."
- },
- "allPlatformsBlocked": "Все платформы устройств заблокированы. Разрешите регистрацию платформ, чтобы включить их конфигурацию.",
- "blockManufacturerPlaceHolder": "Имя изготовителя",
- "blockManufacturersHeader": "Заблокированные производители",
- "cannotRestrict": "Ограничение не поддерживается",
- "configurationDescription": "Укажите ограничения конфигурации платформы, которые должны быть соблюдены при регистрации устройства. Для ограничения устройств после регистрации используйте политики соответствия. Формат версии: основная.дополнительная.сборка. Ограничения версии относятся только к устройствам, зарегистрированным на корпоративном портале. Intune по умолчанию классифицирует устройства как находящиеся в личном владении. Для их классификации как корпоративных нужны дополнительные действия.",
- "configurationDescriptionLabel": "Дополнительные сведения о настройке ограничений регистрации",
- "configurations": "Настройка платформ",
- "deviceManufacturer": "Производитель устройства",
- "header": "Ограничения по типу устройств",
- "info": "Определяет, какие платформы, версии и типы управления можно регистрировать.",
- "manufacturer": "Производитель",
- "max": "Макс.",
- "maxVersion": "Максимальная версия",
- "min": "Min",
- "minVersion": "Минимальная версия",
- "newPlatforms": "Вы разрешили использование новых платформ. При необходимости обновите конфигурации платформ.",
- "personal": "Личные",
- "platform": "Платформа",
- "platformDescription": "Вы можете разрешить регистрацию для следующих платформ. Блокируйте только те платформы, которые не будете поддерживать. Для разрешенных платформ можно настроить дополнительные ограничения развертывания.",
- "platformSettings": "Параметры платформы",
- "platforms": "Выбор платформ",
- "platformsSelected": "Выбрано платформ: {0}",
- "type": "Тип",
- "versions": "версии",
- "versionsRange": "Разрешите диапазон минимальных и максимальных значений:",
- "windowsTooltip": "Ограничивает регистрацию через Управление мобильными устройствами. Установка с использованием агента для ПК не ограничивается. Поддерживаются только версии Windows 10 и Windows 11. Чтобы разрешить Windows 8.1, оставьте поле версий пустым."
- },
- "Priority": {
- "saved": "Приоритеты ограничений успешно сохранены."
- },
- "Row": {
- "announce": "Приоритет: {0}, имя: {1}, назначено: {2}"
- },
- "Table": {
- "deployed": "Развернуто",
- "name": "Имя",
- "priority": "Приоритет"
- },
- "Type": {
- "limit": "Ограничение на число устройств",
- "type": "Ограничение на типы устройств"
- },
- "allUsers": "Все пользователи",
- "androidRestrictions": "Ограничения Android",
- "create": "Создать ограничение",
- "defaultLimitDescription": "Это — ограничение на максимальное число устройств по умолчанию, применяемое с наименьшим приоритетом ко всем пользователям вне зависимости от группы.",
- "defaultTypeDescription": "Это — ограничение на тип устройств по умолчанию, применяемое с наименьшим приоритетом ко всем пользователям вне зависимости от группы.",
- "defaultWhfbDescription": "Это конфигурация Windows Hello для бизнеса по умолчанию, применяемая с наименьшим приоритетом ко всем пользователям вне зависимости от группы.",
- "deleteMessage": "На затронутых пользователей будет распространяться следующее ограничение с самым высоким приоритетом или ограничение по умолчанию, если другие ограничения не назначены.",
- "deleteTitle": "Вы действительно хотите удалить ограничение {0}?",
- "descriptionHint": "Короткий текст, содержащий описание бизнес-использования или уровня ограничения, задаваемых параметрами ограничения.",
- "edit": "Изменить ограничение",
- "info": "Устройство должно соответствовать приоритетным ограничениям регистрации, назначенным его пользователю. Вы можете перетаскивать ограничения, чтобы изменять их приоритет. Ограничения по умолчанию имеют для всех пользователей самый низкий приоритет, и они предназначены для регистрации без пользователей. Вы можете редактировать ограничения по умолчанию, но не можете их удалять.",
- "iosRestrictions": "Ограничения iOS",
- "mDM": "MDM",
- "macRestrictions": "Ограничения MacOS",
- "maxVersion": "Максимальная версия",
- "minVersion": "Минимальная версия",
- "nameHint": "Это основной видимый атрибут для идентификации набора ограничений.",
- "noAssignmentsStatusBar": "Назначьте ограничение по меньшей мере одной группе. Щелкните \"Свойства\".",
- "notFound": "Ограничение не найдено. Возможно, оно уже удалено.",
- "personallyOwned": "Личные устройства",
- "restriction": "Ограничение",
- "restrictionLowerCase": "ограничение",
- "restrictionType": "Тип ограничения",
- "selectType": "Выбрать тип ограничения",
- "selectValidation": "Выберите платформу",
- "typeHint": "Выберите \"Ограничение на типы устройств\", чтобы ограничить их свойства. Выберите \"Ограничение на число устройств\", чтобы ограничить число устройств на пользователя.",
- "typeRequired": "Требуется тип ограничения.",
- "winPhoneRestrictions": "Ограничения Windows Phone",
- "windowsRestrictions": "Ограничения Windows"
- },
- "Titles": {
- "ChromeOs": {
- "devices": "Устройства под управлением ОС Chrome"
- },
- "ManagedDesktop": {
- "adminContacts": "Контакты администратора",
- "appPackaging": "Упаковка приложений",
- "devices": "Устройства",
- "feedback": "Отзывы и предложения",
- "gettingStarted": "Приступая к работе",
- "messages": "Сообщения",
- "onlineResources": "Интернет-ресурсы",
- "serviceRequests": "Запросы на обслуживание",
- "settings": "Параметры",
- "tenantEnrollment": "Регистрация клиента"
- },
- "actions": "Действия для несоответствия",
- "advancedExchangeSettings": "Параметры Exchange Online",
- "advancedThreatProtection": "Microsoft Defender для конечной точки",
- "allApps": "Все приложения",
- "allDevices": "Все устройства",
- "androidFotaDeployments": "Развертывания FOTA Android",
- "appBundles": "Пакеты приложений",
- "appCategories": "Категории приложений",
- "appConfigPolicies": "Политики конфигурации приложений",
- "appInstallStatus": "Состояние установки приложения",
- "appLicences": "Лицензии на приложения",
- "appProtectionPolicies": "Политики защиты приложений",
- "appProtectionStatus": "Состояние защиты приложений",
- "appSelectiveWipe": "Выборочная очистка приложений",
- "appleVppTokens": "Токены Apple VPP",
- "apps": "Приложения",
- "assign": "Назначения",
- "assignedPermissions": "Назначенные разрешения",
- "assignedRoles": "Назначенные роли",
- "autopilotDeploymentReport": "Развертывания Autopilot (предварительная версия)",
- "brandingAndCustomization": "Настройка",
- "cartProfiles": "Профили для покупок",
- "certificateConnectors": "Соединители сертификатов",
- "chromeEnterprise": "Chrome Enterprise",
- "compliancePolicies": "Политики соответствия",
- "complianceScriptManagement": "Сценарии",
- "complianceScriptManagementPreview": "Сценарии (предварительная версия)",
- "complianceSettings": "Параметры политики соответствия",
- "conditionStatements": "Условные операторы",
- "conditions": "Расположения",
- "configMgr": "Microsoft Endpoint Configuration Manager",
- "configurationProfiles": "Профили конфигурации",
- "configurationProfilesPreview": "Профили конфигурации (предварительный просмотр)",
- "connectorsAndTokens": "Соединители и токены",
- "corporateDeviceIdentifiers": "Идентификаторы корпоративных устройств",
- "customAttributes": "Настраиваемые атрибуты",
- "customNotifications": "Настраиваемые уведомления",
- "deploymentSettings": "Параметры развертывания",
- "derivedCredentials": "Производные учетные данные",
- "deviceActions": "Действия устройства",
- "deviceCategories": "Категории устройств",
- "deviceCleanUp": "Правила очистки устройств",
- "deviceEnrollmentManagers": "Менеджеры регистрации устройств",
- "deviceExecutionStatus": "Состояние устройства",
- "deviceLimitEnrollmentRestrictions": "Ограничения количества устройств для регистрации",
- "deviceTypeEnrollmentRestrictions": "Ограничения количества устройств платформы для регистрации",
- "devices": "Устройства",
- "discoveredApps": "Обнаруженные приложения",
- "embeddedSIM": "Профили сотовой связи eSIM (предварительная версия)",
- "enrollDevices": "Регистрация устройств",
- "enrollmentFailures": "Сбои регистрации",
- "enrollmentNotifications": "Уведомления о регистрации (предварительная версия)",
- "enrollmentRestrictions": "Ограничения регистрации",
- "exchangeActiveSync": "Exchange ActiveSync",
- "exchangeServiceConnectors": "Соединители сервисов Exchange",
- "failuresForFeatureUpdates": "Сбои при обновлении компонентов (предварительная версия)",
- "failuresForQualityUpdates": "Сбои ускоренного обновления Windows (предварительная версия)",
- "featureFlighting": "Фокус-тестирование функций",
- "featureUpdateDeployments": "Обновление компонентов для Windows 10 и более поздних версий (предварительная версия)",
- "flighting": "Фокус-тестирование",
- "fotaUpdate": "Обновление по воздуху для встроенного ПО",
- "groupPolicy": "Административные шаблоны",
- "groupPolicyAnalytics": "Анализ групповой политики",
- "helpSupport": "Справка и поддержка",
- "helpSupportReplacement": "Справка и поддержка ({0})",
- "iOSAppProvisioning": "Профили подготовки приложений iOS",
- "incompleteUserEnrollments": "Неполные регистрации пользователей",
- "intuneRemoteAssistance": "Удаленная справка (предварительная версия)",
- "iosUpdates": "Политики обновления для iOS/iPadOS",
- "legacyPcManagement": "Традиционное управление ПК",
- "macOSSoftwareUpdate": "Политики обновления для macOS",
- "macOSSoftwareUpdateAccountSummaries": "Состояние установки для устройств с macOS",
- "macOSSoftwareUpdateCategorySummaries": "Сводка обновлений ПО",
- "macOSSoftwareUpdateStateSummaries": "обновления",
- "managedGooglePlay": "Управляемый Google Play",
- "msfb": "Магазин Майкрософт для бизнеса",
- "myPermissions": "Мои разрешения",
- "notifications": "Уведомления",
- "officeApps": "Приложения Office",
- "officeProPlusPolicies": "Политики для приложений Office",
- "onPremise": "Локальные",
- "onPremisesConnector": "Локальный соединитель Exchange ActiveSync",
- "onPremisesDeviceAccess": "Устройства Exchange ActiveSync",
- "onPremisesManageAccess": "Локальный доступ к Exchange",
- "outOfDateIosDevices": "Ошибки установки для устройств с iOS",
- "overview": "Обзор",
- "partnerDeviceManagement": "Управление партнерскими устройствами",
- "perUpdateRingDeploymentState": "По состоянию развертывания кольца обновления",
- "permissions": "Разрешения",
- "platformApps": "Приложений: {0}",
- "platformDevices": "Устройств: {0}",
- "platformEnrollment": "Регистрация {0}",
- "policies": "Политики",
- "previewMDMDevices": "Все управляемые устройства (предварительная версия)",
- "profiles": "Профили",
- "properties": "Свойства",
- "reports": "Отчеты",
- "retireNoncompliantDevices": "Снятие с учета несоответствующих устройств",
- "retireNoncompliantDevicesPreview": "Retire noncompliant devices (preview)",
- "role": "Роль",
- "scriptManagement": "Сценарии",
- "securityBaselines": "Базовые показатели безопасности",
- "serviceToServiceConnector": "Соединитель Exchange Online",
- "shellScripts": "Скрипты оболочки",
- "teamViewerConnector": "Соединитель TeamViewer",
- "telecomeExpenseManagement": "Управление затратами на телекоммуникации",
- "tenantAdmin": "Администратор клиента",
- "tenantAdministration": "Администрирование клиента",
- "termsAndConditions": "Условия",
- "titles": "Названия",
- "troubleshootSupport": "Устранение неполадок и поддержка",
- "user": "Пользователь",
- "userExecutionStatus": "Состояние пользователя",
- "warranty": "Поставщики гарантии",
- "wdacSupplementalPolicies": "Дополнительные политики режима S",
- "windows10DriverUpdate": "Обновление драйверов для Windows 10 и более поздних версий (предварительная версия)",
- "windows10QualityUpdate": "Исправления для Windows 10 и более поздних версий (предварительная версия)",
- "windows10UpdateRings": "Круги обновления для Windows 10 и более поздних версий",
- "windows10XPolicyFailures": "Сбои политики Windows 10X",
- "windowsEnterpriseCertificate": "Сертификат Windows Корпоративная",
- "windowsManagement": "Сценарии PowerShell",
- "windowsSideLoadingKeys": "Ключи загрузки неопубликованных приложений Windows",
- "windowsSymantecCertificate": "Сертификат Windows DigiCert",
- "windowsThreatReport": "Состояние агента угроз"
- },
- "ScopeTypes": {
- "allDevices": "Все устройства",
- "allUsers": "Все пользователи",
- "allUsersAndDevices": "Все пользователи и все устройства",
- "selectedGroups": "Выбранные группы"
- },
- "DetectionRules": {
- "ComparisonOperators": {
- "equals": "Равно",
- "greaterThan": "Больше",
- "greaterThanOrEqualTo": "Больше или равно",
- "lessThan": "Меньше чем",
- "lessThanOrEqualTo": "меньше чем или равно",
- "notEqualTo": "не равно"
- },
- "CustomScript": {
- "enforceSignatureCheck": "Принудительная проверка подписи сценария и автоматический запуск сценария",
- "enforceSignatureCheckTooltip": "Выберите \"Да\", чтобы убедиться, что сценарий подписан доверенным издателем, что позволит выполнять сценарий без отображения предупреждений или запросов. Сценарий будет выполнен без блокировки. Выберите \"Нет\" (по умолчанию) для выполнения сценария с подтверждением конечного пользователя без проверки подписи.",
- "header": "Использование настраиваемого сценария обнаружения",
- "runAs32Bit": "Запуск сценария как 32-разрядного процесса на 64-разрядных клиентах",
- "runAs32BitTooltip": "Выберите \"Да\", чтобы запустить сценарий в 32-разрядном процессе на 64-разрядных клиентах. Выберите \"Нет\" (по умолчанию), чтобы запустить сценарий в 64-разрядном процессе на 64-разрядных клиентах. 32-разрядные клиенты выполняют сценарий в 32-разрядном процессе.",
- "scriptFile": "Файл сценария",
- "scriptFileNotSelectedValidation": "Файл сценария не выбран.",
- "scriptFileTooltip": "Выберите сценарий PowerShell, который будет определять наличие приложения на клиенте. Приложение обнаружено, если сценарий возвращает код выхода 0 и записывает строковое значение в STDOUT."
- },
- "Manual": {
- "FileRule": {
- "DetectionMethodOptions": {
- "dateCreated": "Дата создания",
- "dateModified": "Дата изменения",
- "doesNotExist": "Файл или папка не существует.",
- "fileOrFolderExists": "Файл или папка существует",
- "sizeInMB": "Размер в МБ",
- "version": "Строка (версия)"
- },
- "associatedWith32Bit": "Связанные с 32-разрядным приложением на 64-разрядных клиентах",
- "associatedWith32BitTooltip": "Выберите \"Да\", чтобы развернуть все переменные среды PATH в 32-разрядном контексте на 64-разрядных клиентах. Выберите \"Нет\" (по умолчанию), чтобы развернуть все переменные среды PATH в 64-разрядном контексте на 64-разрядных клиентах. 32-разрядные клиенты всегда будут использовать 32-разрядный контекст.",
- "detectionMethod": "Метод обнаружения",
- "detectionMethodTooltip": "Выберите тип метода обнаружения, используемого для проверки наличия приложения.",
- "fileOrFolder": "Файл или папка",
- "fileOrFolderToolTip": "Файл или папка для обнаружения.",
- "operator": "Оператор",
- "operatorTooltip": "Выберите оператор для метода обнаружения, используемого для проверки сравнения.",
- "path": "Путь",
- "pathTooltip": "Полный путь к папке, содержащей файл или папку для обнаружения.",
- "value": "Значение",
- "valueTooltip": "Выберите значение, которое соответствует выбранному методу обнаружения. Методы обнаружения даты должны вводиться с использованием местного времени."
- },
- "GridColumns": {
- "pathOrCode": "Путь/код",
- "type": "Тип"
- },
- "MsiRule": {
- "operator": "Оператор",
- "operatorTooltip": "Выберите оператор для сравнения проверки версии продукта MSI.",
- "productCode": "Код продукта MSI",
- "productCodeTooltip": "Допустимый код продукта MSI для приложения.",
- "productVersion": "Значение",
- "productVersionCheck": "Проверка версии продукта MSI",
- "productVersionCheckTooltip": "Выберите \"Да\", чтобы проверять версию продукта MSI в дополнение к коду продукта MSI.",
- "productVersionTooltip": "Введите версию продукта MSI для приложения."
- },
- "RegistryRule": {
- "DetectionMethodOptions": {
- "integerComparison": "Сравнение целых чисел",
- "keyDoesNotExist": "Раздел не существует",
- "keyExists": "Раздел существует",
- "stringComparison": "Сравнение строк",
- "valueDoesNotExist": "Значение не существует",
- "valueExists": "Значение существует",
- "versionComparison": "Сравнение версий"
- },
- "associatedWith32Bit": "Связанные с 32-разрядным приложением на 64-разрядных клиентах",
- "associatedWith32BitTooltip": "Выберите \"Да\", чтобы выполнить поиск в 32-разрядном реестре на 64-разрядных клиентах. Выберите \"Нет\" (по умолчанию), чтобы выполнить поиск в 64-разрядном реестре на 64-разрядных клиентах. 32-разрядные клиенты всегда будут выполнять поиск в 32-разрядном реестре.",
- "detectionMethod": "Метод обнаружения",
- "detectionMethodTooltip": "Выберите тип метода обнаружения, используемого для проверки наличия приложения.",
- "keyPath": "Путь к разделу",
- "keyPathTooltip": "Полный путь к записи реестра, содержащей значение для обнаружения.",
- "operator": "Оператор",
- "operatorTooltip": "Выберите оператор для метода обнаружения, используемого для проверки сравнения.",
- "value": "Значение",
- "valueName": "Имя параметра",
- "valueNameTooltip": "Имя отслеживаемого значения реестра.",
- "valueTooltip": "Выберите значение, которое соответствует выбранному методу обнаружения."
- },
- "RuleTypeOptions": {
- "file": "Файл",
- "mSI": "MSI",
- "registry": "Реестр"
- },
- "gridAriaLabel": "Правила обнаружения",
- "header": "Создайте правило, указывающее на наличие приложения.",
- "noRulesSelectedPlaceholder": "Правила не указаны.",
- "ruleTableLimit": "Можно добавить до 25 правил обнаружения.",
- "ruleType": "Тип правила",
- "ruleTypeTooltip": "Выберите тип добавляемого правила обнаружения."
- },
- "RuleConfigurationOptions": {
- "customScript": "Использование настраиваемого сценария обнаружения",
- "manual": "Ручная настройка правил обнаружения"
- },
- "bladeTitle": "Правила обнаружения",
- "header": "Настройте правила, определяемые приложением, используемые для обнаружения наличия приложения.",
- "rulesFormat": "Формат правил",
- "rulesFormatTooltip": "Выберите ручную настройку правил обнаружения или используйте настраиваемый сценарий для определения наличия приложения.",
- "selectorLabel": "Правила обнаружения"
- },
- "AppType": {
- "androidEnterpriseSystemApp": "Системное приложение Android Enterprise",
- "androidForWorkApp": "Приложение управляемого Google Play Маркета",
- "androidLobApp": "Бизнес-приложение для Android",
- "androidStoreApp": "Приложение для Магазина Android",
- "builtInAndroid": "Встроенное приложение для Android",
- "builtInApp": "Встроенное приложение",
- "builtInIos": "Встроенное приложение для iOS",
- "default": "",
- "iosLobApp": "Бизнес-приложение для iOS",
- "iosStoreApp": "Приложение iOS Store",
- "iosVppApp": "Приложение iOS Volume Purchase Program",
- "lineOfBusinessApp": "Бизнес-приложение",
- "macOSDmgApp": "Приложение macOS (DMG)",
- "macOSEdgeApp": "Microsoft Edge (macOS)",
- "macOSLobApp": "Бизнес-приложение macOS",
- "macOSMdatpApp": "ATP в Microsoft Defender (macOS)",
- "macOSOfficeSuiteApp": "Приложения Microsoft 365 (macOS)",
- "macOsVppApp": "Приложение macOS Volume Purchase Program",
- "managedAndroidLobApp": "Управляемое бизнес-приложение для Android",
- "managedAndroidStoreApp": "Управляемое приложение Магазина Android",
- "managedGooglePlayApp": "Приложение управляемого Google Play Маркета",
- "managedGooglePlayPrivateApp": "Частное приложение управляемого Google Play",
- "managedGooglePlayWebApp": "Веб-ссылка управляемого Google Play",
- "managedIosLobApp": "Управляемое бизнес-приложение для iOS",
- "managedIosStoreApp": "Управляемое приложение Магазина iOS",
- "microsoftStoreForBusinessApp": "Приложение Магазина Майкрософт для бизнеса",
- "microsoftStoreForBusinessReleaseManagedApp": "Магазин Майкрософт для бизнеса",
- "officeSuiteApp": "Приложения Microsoft 365 (Windows 10 и более поздних версий)",
- "webApp": "Веб-ссылка",
- "windowsAppXLobApp": "Бизнес-приложение Windows AppX",
- "windowsClassicApp": "Приложение Windows (Win32)",
- "windowsEdgeApp": "Microsoft Edge (Windows 10 и более поздних версий)",
- "windowsMobileMsiLobApp": "Бизнес-приложение Windows MSI",
- "windowsPhone81AppXBundleLobApp": "Бизнес-приложение Windows Phone 8.1 AppX",
- "windowsPhone81AppXLobApp": "Бизнес-приложение Windows Phone 8.1 AppX",
- "windowsPhone81StoreApp": "Приложение Магазина Windows Phone 8.1",
- "windowsPhoneXapLobApp": "Бизнес-приложение Windows Phone XAP",
- "windowsStoreApp": "Приложение Microsoft Store",
- "windowsUniversalAppXLobApp": "Универсальное бизнес-приложение Windows AppX",
- "windowsUniversalLobApp": "Универсальное бизнес-приложение Windows"
- },
- "PolicyType": {
- "AttackSurfaceReductionRules": {
- "configMgr": "Правила сокращения направлений атак (ConfigMgr)"
- },
- "EndpointDetectionandResponse": {
- "mDE": "Обнаружение и нейтрализация атак на конечные точки"
- },
- "EndpointSecurityTemplate": {
- "aSRAppBrowserSecurity": "Изоляция приложения и браузера",
- "aSRApplicationControl": "Управление приложениями",
- "aSRAttackSurfaceReduction": "Правила сокращения направлений атак",
- "aSRDeviceControl": "Управление устройством",
- "aSRExploitProtection": "Защита от эксплойтов",
- "aSRWebProtection": "Защита от веб-угроз (устаревшая версия Microsoft Edge)",
- "aVExclusions": "Исключения антивирусной программы в Microsoft Defender",
- "antivirus": "Антивирусная программа в Microsoft Defender",
- "cloudPC": "Базовые показатели системы безопасности для Windows 365",
- "default": "Безопасность конечных точек",
- "defenderTest": "Демонстрация Microsoft Defender для конечной точки",
- "diskEncryption": "BitLocker",
- "eDR": "Обнаружение и нейтрализация атак на конечные точки",
- "edgeSecurityBaseline": "Базовая конфигурация Microsoft Edge",
- "edgeSecurityBaselinePreview": "Предварительная версия: базовые показатели Microsoft Edge",
- "editionUpgradeConfiguration": "Обновление выпуска и переключение режима",
- "firewall": "Брандмауэр в Microsoft Defender",
- "firewallRules": "Правила брандмауэра в Microsoft Defender",
- "identityProtection": "Защита учетных записей",
- "identityProtectionPreview": "Защита учетных записей (предварительная версия)",
- "mDMSecurityBaseline1810": "Базовая конфигурация безопасности MDM для Windows 10 и более поздних версий на октябрь 2018 г.",
- "mDMSecurityBaseline1810Preview": "Предварительная версия базового плана безопасности MDM для Windows 10 и более поздних версий на октябрь 2018",
- "mDMSecurityBaseline1810PreviewBeta": "Предварительная версия базовой конфигурации безопасности MDM для Windows 10 за октябрь 2018 (бета-версия)",
- "mDMSecurityBaseline1906": "Базовая конфигурация безопасности MDM для Windows 10 и более поздних версий на май 2019 г.",
- "mDMSecurityBaseline2004": "Базовая конфигурация безопасности MDM для Windows 10 и более поздних версий за август 2020 г.",
- "mDMSecurityBaseline2101": "Базовая конфигурация безопасности MDM для Windows 10 и более поздних версий за декабрь 2020 г.",
- "macOSAntivirus": "Антивирус",
- "macOSDiskEncryption": "FileVault",
- "macOSFirewall": "Брандмауэр macOS",
- "microsoftDefenderBaseline": "Базовые показатели Microsoft Defender для конечной точки",
- "office365Baseline": "Базовая конфигурация Microsoft Office O365",
- "office365BaselinePreview": "Предварительная версия: базовый показатель Microsoft Office O365",
- "securityBaselines": "Базовые показатели системы безопасности",
- "test": "Тестовый шаблон",
- "testFirewallRulesSecurityTemplateName": "Правила брандмауэра в Microsoft Defender (тест)",
- "testIdentityProtectionSecurityTemplateName": "Защита учетных записей (тест)",
- "windowsSecurityExperience": "Интерфейс безопасности Windows"
- },
- "Firewall": {
- "mDE": "Брандмауэр в Microsoft Defender"
- },
- "FirewallRules": {
- "mDE": "Правила брандмауэра в Microsoft Defender"
- },
- "administrativeTemplates": "Административные шаблоны",
- "androidCompliancePolicy": "Политика соответствия для Android",
- "aospDeviceOwnerCompliancePolicy": "Политика соответствия для Android (AOSP)",
- "applicationControl": "Управление приложениями",
- "custom": "Пользовательская",
- "deliveryOptimization": "Оптимизация доставки",
- "derivedPersonalIdentityVerificationCredential": "Производные учетные данные",
- "deviceFeatures": "Функции устройства",
- "deviceFirmwareConfigurationInterface": "Интерфейс настройки встроенного ПО устройства",
- "deviceLock": "Блокировка устройства",
- "deviceOwner": "Полностью управляемый, выделенный и корпоративный рабочий профиль",
- "deviceRestrictions": "Ограничения устройств",
- "deviceRestrictionsWindows10Team": "Ограничения для устройств (Windows 10 для совместной работы)",
- "domainJoinPreview": "Присоединение к домену",
- "editionUpgradeAndModeSwitch": "Обновление выпуска и переключение режима",
- "education": "Образование",
- "email": "Электронная почта",
- "emailSamsungKnoxOnly": "Электронная почта (только Samsung KNOX)",
- "endpointProtection": "Защита конечных точек",
- "expeditedCheckin": "Конфигурация управления мобильным устройством",
- "exploitProtection": "Защита от эксплойтов",
- "extensions": "Расширения",
- "hardwareConfigurations": "Конфигурации BIOS",
- "identityProtection": "Защита идентификации",
- "iosCompliancePolicy": "Политика соответствия для iOS",
- "kiosk": "Киоск",
- "macCompliancePolicy": "Политика соответствия для Mac",
- "microsoftDefenderAntivirus": "Антивирусная программа в Microsoft Defender",
- "microsoftDefenderAntivirusexclusions": "Исключения антивирусной программы в Microsoft Defender",
- "microsoftDefenderAtpWindows10Desktop": "Microsoft Defender для конечной точки (настольные компьютеры под управлением Windows 10 или более поздних версий)",
- "microsoftDefenderFirewallRules": "Правила брандмауэра в Microsoft Defender",
- "microsoftEdgeBaseline": "Базовые показатели Microsoft Edge",
- "mxProfileZebraOnly": "Профиль MX (только Zebra)",
- "networkBoundary": "Граница сети",
- "oemConfig": "OEMConfig",
- "overrideGroupPolicy": "Переопределение групповой политики",
- "pkcsCertificate": "Сертификат PKCS",
- "pkcsImportedCertificate": "Импортированный сертификат PKCS",
- "preferenceFile": "Файл настроек",
- "presets": "Предустановки",
- "scepCertificate": "Сертификат SCEP",
- "secureAssessmentEducation": "Безопасная оценка (образование)",
- "settingsCatalog": "Каталог параметров",
- "sharedMultiUserDevice": "Устройство коллективного пользования с общим доступом",
- "softwareUpdates": "Обновления программного обеспечения",
- "trustedCertificate": "Доверенный сертификат",
- "unknown": "Неизвестно",
- "unsupported": "Не поддерживается",
- "vpn": "VPN",
- "wiFi": "Wi-Fi",
- "wiFiImport": "Импорт Wi-Fi",
- "windows10CompliancePolicy": "Политика соответствия для Windows 10/11",
- "windows10MobileCompliancePolicy": "Политика соответствия для Windows 10 Mobile",
- "windows10XScep": "Сертификат SCEP — тест",
- "windows10XTrustedCertificate": "Доверенный сертификат — тест",
- "windows10XVPN": "VPN — тест",
- "windows10XWifi": "WIFI — тест",
- "windows8CompliancePolicy": "Политика соответствия для Windows 8",
- "windowsHealthMonitoring": "Мониторинг работоспособности Windows",
- "windowsInformationProtection": "Windows Information Protection",
- "windowsPhoneCompliancePolicy": "Политика соответствия для Windows Phone",
- "windowsUpdateforBusiness": "Центр обновления Windows для бизнеса",
- "wiredNetwork": "Проводная сеть",
- "workProfile": "Личный рабочий профиль"
- },
- "OfficeSuiteAppsTab": {
- "acceptLicenseOnBehalfOfUsersLabel": "Принятие от имени пользователей условий лицензионного соглашения на использование программного обеспечения корпорации Майкрософт",
- "appSuiteConfigurationLabel": "Конфигурация набора приложений",
- "appSuiteInformationLabel": "Сведения о наборе приложений",
- "appsToBeInstalledLabel": "Приложения для установки в составе набора",
- "architectureLabel": "Архитектура",
- "architectureTooltip": "Определяет установку на устройствах 32- или 64-разрядного выпуска приложений Microsoft 365.",
- "configurationDesignerLabel": "Конструктор конфигурации",
- "configurationFileLabel": "Файл конфигурации",
- "configurationSettingsFormatLabel": "Формат параметров конфигурации",
- "configureAppSuiteLabel": "Настройка набора приложений",
- "configuredLabel": "Настроено",
- "currentVersionLabel": "Текущая версия",
- "currentVersionTooltip": "Это текущая версия Office, настроенная в этом наборе. Это значение будет обновлено при настройке и сохранении более новой версии.",
- "enableMicrosoftSearchAsDefaultTooltip": "Устанавливает фоновую службу, которая помогает определить, установлено ли расширение \"Поиск (Майкрософт) в Bing\" в Google Chrome на устройстве.",
- "enterXmlDataLabel": "Введите данные XML",
- "languagesLabel": "Языки",
- "languagesTooltip": "По умолчанию Intune устанавливает Office на языке операционной системы по умолчанию. Выберите дополнительные языки, которые необходимо установить.",
- "learnMoreText": "Дополнительные сведения",
- "newUpdateChannelTooltip": "Определяет частоту установки обновлений приложения, содержащих новые функции.",
- "noCurrentVersionText": "Нет текущей версии",
- "noLanguagesSelectedLabel": "Языки не выбраны.",
- "notConfiguredLabel": "Не настроено",
- "propertiesLabel": "Свойства",
- "removeOtherVersionsLabel": "Удаление других версий",
- "removeOtherVersionsTooltip": "Выберите Да, чтобы удалить другие версии Office (MSI) с пользовательских устройств.",
- "selectOfficeAppsLabel": "Выбор приложений Office",
- "selectOfficeAppsTooltip": "Выберите приложения Office 365, которые вы хотите установить как часть набора.",
- "selectOtherOfficeAppsLabel": "Выбор других приложений Office (требуется лицензия)",
- "selectOtherOfficeAppsTooltip": "Если у вас есть лицензии для этих дополнительных приложений Office, их также можно назначить в Intune.",
- "specificVersionLabel": "Конкретная версия",
- "updateChannelLabel": "Канал обновления",
- "updateChannelTooltip": "Определяет частоту установки обновлений приложения, содержащих новые функции.
\r\nMonthly. Предоставление пользователям новейших возможностей Office сразу после их выхода.
\r\nMonthly Enterprise Channel. Предоставление пользователям новейших возможностей Office один раз в месяц, во второй вторник месяца.
\r\nMonthly (Targeted). Предоставление раннего доступа к предстоящему выпуску Monthly Channel. Это поддерживаемый канал обновления, который обычно доступен как минимум за неделю до выпуска Monthly Channel с новыми функциями.
\r\nSemi-Annual. Предоставление пользователям новых возможностей Office всего несколько раз в год.
\r\nSemi-Annual (Targeted). Предоставление возможности тестирования следующего выпуска Semi-Annual для пользователей пилотных версий и тестировщиков совместимости приложений.",
- "useMicrosoftSearchAsDefault": "Установить фоновую службу для Поиска (Майкрософт) в Bing",
- "useSharedComputerActivationLabel": "Использовать активацию на общем компьютере",
- "useSharedComputerActivationTooltip": "Активация на общем компьютере позволяет развертывать приложения Microsoft 365 на компьютерах, используемых несколькими пользователями. Обычно пользователи могут устанавливать и активировать приложения Microsoft 365 лишь на ограниченном числе устройств, например на пяти компьютерах. При использовании активации на общем компьютере это ограничение не учитывается.",
- "versionToInstallLabel": "Версия для установки",
- "versionToInstallTooltip": "Выберите версию Office, которую нужно установить.",
- "xLanguagesSelectedLabel": "Выбрано языков: {0}.",
- "xmlConfigurationLabel": "Конфигурация XML"
- },
- "OfficeApplicationType": {
- "access": "Access",
- "bing": "Поиск (Майкрософт) по умолчанию",
- "excel": "Excel",
- "groove": "OneDrive (Groove)",
- "lync": "Skype для бизнеса",
- "oneDrive": "Классическое приложение OneDrive",
- "oneNote": "OneNote",
- "outlook": "Outlook",
- "powerPoint": "PowerPoint",
- "publisher": "Publisher",
- "teams": "Teams",
- "word": "Word"
- },
- "WindowsQualityUpdateProfile": {
- "Details": {
- "DaysUntilForcedReboot": {
- "label": "Число дней до принудительной перезагрузки"
- },
- "Description": {
- "label": "Описание"
- },
- "Name": {
- "label": "Имя"
- },
- "QualityUpdateRelease": {
- "label": "Ускоренная установка исправлений, если версия ОС устройства ниже:"
- },
- "bladeTitle": "Исправления для Windows 10 и более поздних версий (предварительная версия)",
- "loadError": "Не удалось выполнить загрузку!"
- },
- "TabName": {
- "qualityUpdateSettings": "Параметры"
- },
- "infoBoxText": "Единственным выделенным элементом управления исправлениями, который доступен в настоящее время, за исключением существующей политики кругов обновления для Windows 10 и более поздних версий, является возможность ускорения исправлений для устройств, находящихся ниже указанного уровня исправлений. Дополнительные элементы управления станут доступны в будущем.",
- "warningBoxText": "Хотя ускорение обновлений программного обеспечения позволит быстрее обеспечить соответствие требованиям, весьма вероятно, что оно нарушит работу пользователей из-за необходимости перезагрузки в рабочие часы."
- },
- "Devices": {
- "General": {
- "android": "Android"
- },
- "aOSP": "Проект Android с открытым исходным кодом",
- "android": "Администратор устройств Android",
- "androidWorkProfile": "Android Enterprise (рабочий профиль)",
- "iOS": "iOS/iPadOS",
- "mac": "macOS",
- "windows": "Windows (MDM)",
- "windows10": "Windows 10 и более поздних версий",
- "windowsHomeSku": "Номер SKU Windows Домашняя",
- "windowsMobile": "Windows Mobile"
- },
"SettingDetails": {
"CustomPolicyConfigurationProfile": {
"uploadControlPlaceHolderText": "Выберите файл профиля конфигурации"
@@ -3675,7 +1707,7 @@
"aESGCM128": "AES-128-GCM (16-октетные ICV)",
"aESGCM256": "AES-256-GCM (16-октетные ICV)",
"aadSharedDeviceDataClearAppsDescription": "Добавьте в список любые приложения, не оптимизированные для режима общего устройства. Локальные данные этих приложений будут очищаться каждый раз, когда пользователь будет выходить из приложения, оптимизированного для режима общего устройства. Доступно для выделенных устройств, зарегистрированных в общем режиме, под управлением Android 9 или более поздних версий.",
- "aadSharedDeviceDataClearAppsName": "Очищать локальные данные в приложениях, не оптимизированных для режима общего устройства (общедоступная предварительная версия)",
+ "aadSharedDeviceDataClearAppsName": "Очищать локальные данные в приложениях, не оптимизированных для режима общего устройства",
"accountsPageDescription": "Блокировка доступа к папке \"Учетные записи\" в приложении \"Параметры\".",
"accountsPageName": "Учетные записи",
"accountsSignInAssistantSettingsDescription": "Блокирование службы помощника по входу (Майкрософт) — wlidsvc. Если этот параметр не настроен, NT-служба wlidsvc управляется пользователем (запускается вручную)",
@@ -5503,7 +3535,7 @@
"enableEndUserAccessToDefenderName": "Доступ конечных пользователей к Защитнику",
"enableEngagedRestartDescription": "Включает параметры, разрешающие пользователю перейти к запланированному перезапуску.",
"enableEngagedRestartName": "Разрешить пользователю выполнять перезапуск (запланированный перезапуск)",
- "enableIdentityPrivacyDescription": "Это свойство маскирует имена пользователей введенным текстом. Например, если вы введете \"анонимно\", для всех пользователей, прошедших проверку подлинности с помощью подключения Wi-Fi и использующих реальное имя пользователя, будет отображаться значение \"анонимно\".",
+ "enableIdentityPrivacyDescription": "Это свойство маскирует имена пользователей с использованием введенного вами текста. Например, если вы введете \"анонимный\", каждый пользователь, выполняющий проверку подлинности с помощью этого подключения Wi-Fi с использованием своего настоящего имени, будет отображаться как \"анонимный\". Это может потребоваться при использовании проверки подлинности на основе сертификата для устройств.",
"enableIdentityPrivacyName": "Конфиденциальность удостоверений (внешнее удостоверение)",
"enableNetworkInspectionSystemDescription": "Блокировать вредоносный трафик, обнаруженный по сигнатурам в системе проверки сети (NIS)",
"enableNetworkInspectionSystemName": "Система проверки сети (NIS)",
@@ -7252,6 +5284,8 @@
"presharedKeyEncodingDescription": "Кодируйте предварительные ключи с помощью UTF-8.",
"presharedKeyEncodingName": "Кодирование предварительных ключей",
"preventAny": "Запретить любой совместный доступ за границами организации",
+ "primaryAuthenticationMethodName": "Основной метод проверки подлинности",
+ "primaryAuthenticationMethodTEAPDescription": "Выберите основной способ проверки подлинности пользователей. При выборе сертификатов выберите один из профилей сертификатов (SCEP или PKCS), который также развернут на устройстве. Это сертификат удостоверения, предоставляемый устройством серверу.",
"primarySMTPAddressOption": "Первичный SMTP-адрес",
"printersColumns": "например DNS-имя принтера",
"printersDescription": "Автоматическая подготовка принтеров на основе их сетевых имен узлов. Этот параметр не распространяется на общие принтеры.",
@@ -7663,6 +5697,8 @@
"searchEnableRemoteQueriesName": "Удаленные запросы",
"secondActiveEthernet": "Второе активное подключение Ethernet",
"secondEthernet": "Второе подключение Ethernet",
+ "secondaryAuthenticationMethodName": "Дополнительный метод проверки подлинности",
+ "secondaryAuthenticationMethodTEAPDescription": "Выберите дополнительный способ проверки подлинности пользователей. При выборе сертификатов выберите один из профилей сертификатов (SCEP или PKCS), который также развернут на устройстве. Это сертификат удостоверения, предоставляемый устройством серверу.",
"secretKey": "Секретный ключ:",
"secureBootEnabledDescription": "Обязательное включение безопасной загрузки на устройстве",
"secureBootEnabledName": "Обязательное включение безопасной загрузки на устройстве",
@@ -8074,6 +6110,7 @@
"systemUpdateWindow9": "04:30",
"systemWindowsBlockedDescription": "Отключение окон уведомления, например баннеров, уведомлений о входящих и исходящих звонках, системных оповещений и ошибок.",
"systemWindowsBlockedName": "Окна уведомлений",
+ "tEAPName": "Туннель EAP (TEAP)",
"tLSMinMax": "Минимальная версия протокола TLS должна быть меньше или равна максимальной версии.",
"tLSVersionRangeMaximum": "Максимальная версия TLS в диапазоне",
"tLSVersionRangeMaximumDescription": "Введите максимальную версию протокола TLS: 1.0, 1.1 или 1.2. Если оставить ее пустой, по умолчанию будет использоваться значение 1.2.",
@@ -8126,6 +6163,17 @@
"timeWindowSameStartEndDayTime": "Дата и время окончания не должны совпадать с датой и временем начала.",
"timeZoneDescription": "Выберите часовой пояс для целевых устройств.",
"timeZoneName": "Часовой пояс",
+ "timeoutFifteenMinutes": "15 минут",
+ "timeoutFiveMinutes": "5 минут",
+ "timeoutFourHours": "4 часа",
+ "timeoutNever": "Никогда не истекает",
+ "timeoutOneHour": "1 час",
+ "timeoutOneMinute": "1 мин",
+ "timeoutTenMinutes": "10 минут",
+ "timeoutThirtyMinutes": "30 минут",
+ "timeoutThreeMinutes": "3 минуты",
+ "timeoutTwoHours": "2 часа",
+ "timeoutTwoMinutes": "2 минуты",
"toggleConfigurationPkgDescription": "Отправка подписанного пакета конфигурации, который будет использоваться для подключения клиента Microsoft Defender для конечной точки.",
"toggleConfigurationPkgName": "Тип пакета конфигурации клиента Microsoft Defender для конечной точки:",
"trafficRuleAppName": "Приложение",
@@ -8824,6 +6872,33 @@
"win10WifiWirelessSecurityTypeName": "Тип защиты беспроводной сети",
"win10WifiWirelessSecurityTypeOpen": "Открыть (без проверки подлинности)",
"win10WifiWirelessSecurityTypeWPA": "WPA/WPA2-Personal",
+ "win10WiredAuthenticationModeDescription": "Укажите, следует ли выполнять проверку подлинности пользователя, устройства либо использовать гостевую проверку подлинности (нет). Если вы используете проверку подлинности с помощью сертификата, убедитесь, что тип сертификата соответствует типу проверки подлинности.",
+ "win10WiredAuthenticationModeName": "Режим проверки подлинности",
+ "win10WiredAuthenticationPeriodDescription": "Время ожидания клиента (в секундах) после попытки проверки подлинности перед ее сбоем. Выберите число от 1 до 3600. Если значение не указано, используется 18 секунд.",
+ "win10WiredAuthenticationPeriodName": "Период проверки подлинности",
+ "win10WiredAuthenticationRetryDelayPeriodDescription": "Число секунд между неудачной проверкой подлинности и следующей попыткой проверки подлинности. Выберите значение от 1 до 3600. Если значение не указано, используется 1 секунда.",
+ "win10WiredAuthenticationRetryDelayPeriodName": "Период задержки попытки проверки подлинности ",
+ "win10WiredFIPSComplianceDescription": "Проверка соблюдения стандарта FIPS 140-2 является обязательной для всех федеральных государственных учреждений США, которые используют системы безопасности на основе криптографии для защиты конфиденциальной, но не секретной информации, хранящейся в цифровом виде.",
+ "win10WiredFIPSComplianceName": "Принудительная совместимость профиля проводной сети с федеральным стандартом обработки информации (FIPS)",
+ "win10WiredGuest": "Гость",
+ "win10WiredMachine": "Компьютер",
+ "win10WiredMachineOrUser": "Пользователь или компьютер",
+ "win10WiredMaximumAuthenticationFailuresDescription": "Введите максимальное число сбоев проверки подлинности для этого набора учетных данных. Если значение не задано, будет использоваться 1 попытка.",
+ "win10WiredMaximumAuthenticationFailuresName": "Максимальное число сбоев проверки подлинности",
+ "win10WiredMaximumEAPOLStartMessagesDescription": "Выберите число сообщений EAPOL-Start в диапазоне от 1 до 100. Если значение не указано, будет отправлено не более 3 сообщений.",
+ "win10WiredMaximumEAPOLStartMessagesName": "Максимальное число пакетов EAPOL-start",
+ "win10WiredNetworkAuthenticationBlockPeriodDescription": "Период блокировки проверки подлинности в минутах. Указывает продолжительность времени после неудачной попытки проверки подлинности, в течение которого попытки автоматической проверки подлинности будут блокироваться. Укажите значение от 0 до 1440.",
+ "win10WiredNetworkAuthenticationBlockPeriodName": "Период блокировки (в минутах)",
+ "win10WiredNetworkAuthenticationModeName": "Режим проверки подлинности",
+ "win10WiredNetworkDoNotEnforceName": "Не применять принудительно",
+ "win10WiredNetworkEnforce8021XDescription": "Указывает, требует ли служба автоматической настройки для проводных сетей использовать протокол 802.1X для проверки подлинности порта.",
+ "win10WiredNetworkEnforce8021XName": "802.1x",
+ "win10WiredNetworkEnforceName": "Применять принудительно",
+ "win10WiredRememberCredentialsDescription": "Укажите, следует ли кэшировать учетные данные пользователей при первом подключении к проводной сети. Кэшированные учетные данные используются для последующих подключений, и пользователям не нужно повторно указывать их. Если значение этого параметра не задано, это соответствует значению \"Да\".",
+ "win10WiredRememberCredentialsName": "Запоминать учетные данные при каждом входе",
+ "win10WiredStartPeriodDescription": "Время ожидания (в секундах) перед отправкой сообщения EAPOL-Start. Выберите значение от 1 до 3600. Если значение не указано, используется 5 секунд.",
+ "win10WiredStartPeriodName": "Начальный период",
+ "win10WiredUser": "Пользователь",
"win10appLockerApplicationControlAllowDescription": "Запуск этих приложений будет разрешен",
"win10appLockerApplicationControlAllowName": "Применить",
"win10appLockerApplicationControlAuditComponentsAndStoreAppsDescription": "В режиме \"Только аудит\" в журнал записываются все события из журналов событий локальных клиентов, но запуск приложений не блокируется. Компоненты Windows и приложения Магазина Майкрософт будут записаны в журнал как соответствующие требованиям безопасности.",
@@ -9165,7 +7240,6 @@
"deviceConditionsInfoParagraph2": "Для зарегистрированных устройств можно настроить аналогичные параметры.",
"deviceConditionsInfoParagraph2LinkText": "Дополнительные сведения о настройке параметров соответствия для зарегистрированных устройств.",
"deviceId": "ИД устройства",
- "deviceLockComplexityValidationFailureNotes": "Примечания.
\r\n\r\n - Для блокировки устройства может потребоваться пароль со сложностью: НИЗКАЯ, СРЕДНЯЯ или ВЫСОКАЯ, предназначенной для Android 11+. Для устройств с Android 10 и более ранних установка низкой/средней/высокой сложности приведет к ожидаемому значению по умолчанию \"Низкая сложность\".
\r\n - Определения паролей ниже могут быть изменены. Чтобы узнать самые актуальные определения разных уровней сложности паролей, см. DevicePolicyManager|Разработчики Android.
\r\n
\r\n\r\nНизкая
\r\n\r\n - Пароль может быть последовательностью или ПИН-кодом с повторяющимися (4444) или последовательными (1234, 4321, 2468) цифрами.
\r\n
\r\n\r\nСредняя
\r\n\r\n - ПИН-код без повторяющихся (4444) или последовательных (1234, 4321, 2468) цифр с минимальной длиной 4 символа
\r\n - Буквенные пароли с минимальной длиной 4 символа
\r\n - Буквенно-цифровые пароли с минимальной длиной 4 символа
\r\n
\r\n\r\nВысокая
\r\n\r\n - ПИН-код без повторяющихся (4444) или последовательных (1234, 4321, 2468) цифр с минимальной длиной 8 символов
\r\n - Буквенные пароли с минимальной длиной 6 символов
\r\n - Буквенно-цифровые пароли с минимальной длиной 6 символов
\r\n
\r\n",
"deviceLockedOpenFilesOptionsText": "Когда устройство заблокировано и есть открытые файлы",
"deviceLockedOptionText": "Когда устройство заблокировано",
"deviceManufacturer": "Производитель устройства",
@@ -9463,7 +7537,7 @@
"reporting": "Отчеты",
"reports": "Отчеты",
"require": "Требовать",
- "requireDeviceLockComplexityOnApps": "Требовать сложность блокировки устройства",
+ "requireDeviceLockOnApps": "Require device lock",
"requireThreatScanOnApps": "Требовать проверку угроз в приложениях",
"requiredField": "Это поле не может быть пустым.",
"requiredSafetyNetEvaluationType": "Требуемый тип оценки SafetyNet",
@@ -9659,6 +7733,7 @@
"yourDataIsBeingDownloadedEllipsis": "Выполняется скачивание данных. Это может занять некоторое время...",
"yourDataIsBeingDownloadedMinutes": "Ваши данные скачиваются, процесс может занять несколько минут...",
"yourProtectionLevel": "Уровень защиты",
+ "rules": "Правила",
"basics": "Основные",
"modeTableHeader": "Групповой режим",
"appAssignmentMsg": "Группа",
@@ -9695,221 +7770,2042 @@
"licenseTypeDevice": "Устройство",
"licenseTypeUser": "Пользователь"
},
- "Languages": {
- "ar-aE": "Арабский (ОАЭ)",
- "ar-bH": "Арабский (Бахрейн)",
- "ar-dZ": "Арабский (Алжир)",
- "ar-eG": "Арабский (Египет)",
- "ar-iQ": "Арабский (Ирак)",
- "ar-jO": "Арабский (Иордания)",
- "ar-kW": "Арабский (Кувейт)",
- "ar-lB": "Арабский (Ливан)",
- "ar-lY": "Арабский (Ливия)",
- "ar-mA": "Арабский (Марокко)",
- "ar-oM": "Арабский (Оман)",
- "ar-qA": "Арабский (Катар)",
- "ar-sA": "Арабский (Саудовская Аравия)",
- "ar-sY": "Арабский (Сирия)",
- "ar-tN": "Арабский (Тунис)",
- "ar-yE": "Арабский (Йемен)",
- "az-cyrl": "Азербайджанский (кириллица, Азербайджан)",
- "az-latn": "Азербайджанский (латиница, Азербайджан)",
- "bn-bD": "Бенгальский (Бангладеш)",
- "bn-iN": "Бенгальский (Индия)",
- "bs-cyrl": "Боснийский (кириллица)",
- "bs-latn": "Боснийский (латиница)",
- "zh-cN": "Китайский (КНР)",
- "zh-hK": "Китайский (Гонконг, САР)",
- "zh-mO": "Китайский (Макао, САР)",
- "zh-sG": "Китайский (Сингапур)",
- "zh-tW": "Китайский (Тайвань)",
- "hr-bA": "Хорватский (латиница)",
- "hr-hR": "Хорватский (Хорватия)",
- "nl-bE": "Нидерландский (Бельгия)",
- "nl-nL": "Нидерландский (Нидерланды)",
- "en-aU": "Английский (Австралия)",
- "en-bZ": "Английский (Белиз)",
- "en-cA": "Английский (Канада)",
- "en-cabn": "Английский (Карибские острова)",
- "en-iE": "Английский (Ирландия)",
- "en-iN": "Английский (Индия)",
- "en-jM": "Английский (Ямайка)",
- "en-mY": "Английский (Малайзия)",
- "en-nZ": "Английский (Новая Зеландия)",
- "en-pH": "Английский (Республика Филиппины)",
- "en-sG": "Английский (Сингапур)",
- "en-tT": "Английский (Тринидад и Тобаго)",
- "en-uK": "Английский (Соединенное Королевство)",
- "en-uS": "Английский (Соединенные Штаты)",
- "en-zA": "Английский (Южная Африка)",
- "en-zW": "Английский (Зимбабве)",
- "fr-bE": "Французский (Бельгия)",
- "fr-cA": "Французский (Канада)",
- "fr-cH": "Французский (Швейцария)",
- "fr-fR": "французский (Франция)",
- "fr-lU": "Французский (Люксембург)",
- "fr-mC": "Французский (Монако)",
- "de-aT": "Немецкий (Австрия)",
- "de-cH": "Немецкий (Швейцария)",
- "de-dE": "Немецкий (Германия)",
- "de-lI": "Немецкий (Лихтенштейн)",
- "de-lU": "Немецкий (Люксембург)",
- "iu-cans": "Инуктитут (слоговое письмо, Канада)",
- "iu-latn": "Инуктитут (латиница, Канада)",
- "it-cH": "Итальянский (Швейцария)",
- "it-iT": "Итальянский (Италия)",
- "ms-bN": "Малайский (Бруней-Даруссалам)",
- "ms-mY": "Малайский (Малайзия)",
- "mn-cN": "Монгольский (старомонгольское письмо, КНР)",
- "mn-mN": "Монгольский (кириллица, Монголия)",
- "no-nB": "Норвежский (букмол, Норвегия)",
- "no-nn": "Норвежский (нюнорск, Норвегия)",
- "pt-bR": "Португальский (Бразилия)",
- "pt-pT": "Португальский (Португалия)",
- "quz-bO": "Кечуа (Боливия)",
- "quz-eC": "Кечуа (Эквадор)",
- "quz-pE": "Кечуа (Перу)",
- "smj-nO": "Луле-саамский (Норвегия)",
- "smj-sE": "Луле-саамский (Швеция)",
- "se-fI": "Северносаамский (Финляндия)",
- "se-nO": "Северносаамский (Норвегия)",
- "se-sE": "Северносаамский (Швеция)",
- "sma-nO": "Южносаамский (Норвегия)",
- "sma-sE": "Южносаамский (Швеция)",
- "smn": "Инари-саамский (Финляндия)",
- "sms": "Сколт-саамский (Финляндия)",
- "sr-Cyrl-bA": "Сербский (кириллица)",
- "sr-Cyrl-rS": "Сербский (кириллица, Сербия и Черногория (бывшая))",
- "sr-Latn-bA": "Сербский (латиница)",
- "sr-Latn-rS": "Сербский (латиница, Сербия)",
- "dsb": "Нижнелужицкий (Германия)",
- "hsb": "Верхнелужицкий (Германия)",
- "es-es-tradnl": "Испанский (Испания, традиционная сортировка)",
- "es-aR": "Испанский (Аргентина)",
- "es-bO": "Испанский (Боливия)",
- "es-cL": "Испанский (Чили)",
- "es-cO": "Испанский (Колумбия)",
- "es-cR": "Испанский (Коста-Рика)",
- "es-dO": "Испанский (Доминиканская Республика)",
- "es-eC": "Испанский (Эквадор)",
- "es-eS": "Испанский (Испания)",
- "es-gT": "Испанский (Гватемала)",
- "es-hN": "Испанский (Гондурас)",
- "es-mX": "Испанский (Мексика)",
- "es-nI": "Испанский (Никарагуа)",
- "es-pA": "Испанский (Панама)",
- "es-pE": "Испанский (Перу)",
- "es-pR": "Испанский (Пуэрто-Рико)",
- "es-pY": "Испанский (Парагвай)",
- "es-sV": "Испанский (Эль-Сальвадор)",
- "es-uS": "Испанский (США)",
- "es-uY": "Испанский (Уругвай)",
- "es-vE": "Испанский (Венесуэла)",
- "sv-fI": "Шведский (Финляндия)",
- "uz-cyrl": "Узбекский (кириллица, Узбекистан)",
- "uz-latn": "Узбекский (латиница, Узбекистан)",
- "af": "Африкаанс (Южная Африка)",
- "sq": "Албанский (Албания)",
- "am": "Амхарский (Эфиопия)",
- "hy": "Армянский (Армения)",
- "as": "Ассамский (Индия)",
- "ba": "Башкирский (Россия)",
- "eu": "Баскский (Баскский)",
- "be": "Белорусский (Беларусь)",
- "br": "Бретонский (Франция)",
- "bg": "Болгарский (Болгария)",
- "ca": "Каталонский (Каталонский)",
- "co": "Корсиканский (Франция)",
- "cs": "Чешский (Чешская Республика)",
- "da": "Датский (Дания)",
- "prs": "Дари (Афганистан)",
- "dv": "Мальдивский (Мальдивы)",
- "et": "Эстонский (Эстония)",
- "fo": "Фарерский (Фарерские о-ва)",
- "fil": "Филиппинский (Филиппины)",
- "fi": "Финский (Финляндия)",
- "gl": "Галисийский (Галисия)",
- "ka": "Грузинский (Грузия)",
- "el": "Греческий (Греция)",
- "gu": "Гуджарати (Индия)",
- "ha": "Хауса (латиница, Нигерия)",
- "he": "Иврит (Израиль)",
- "hi": "Хинди (Индия)",
- "hu": "Венгерский (Венгрия)",
- "is": "Исландский (Исландия)",
- "ig": "Игбо (Нигерия)",
- "id": "Индонезийский (Индонезия)",
- "ga": "Ирландский (Ирландия)",
- "xh": "Коса (Южная Африка)",
- "zu": "Зулу (Южная Африка)",
- "ja": "Японский (Япония)",
- "kn": "Каннада (Индия)",
- "kk": "Казахский (Казахстан)",
- "km": "Кхмерский (Камбоджа)",
- "rw": "Киньяруанда (Руанда)",
- "sw": "Суахили (Кения)",
- "kok": "Конкани (Индия)",
- "ko": "Корейский (Корея)",
- "ky": "Киргизский (Киргизия)",
- "lo": "Лаосский (Лаосская Народно-Демократическая Республика)",
- "lv": "Латвийский (Латвия)",
- "lt": "Литовский (Литва)",
- "lb": "Люксембургский (Люксембург)",
- "mk": "Македонский (Северная Македония)",
- "ml": "Малаялам (Индия)",
- "mt": "Мальтийский (Мальта)",
- "mi": "Маори (Новая Зеландия)",
- "mr": "Маратхи (Индия)",
- "moh": "Мохаук (племя Мохауков)",
- "ne": "Непальский (Непал)",
- "oc": "Окситанский (Франция)",
- "or": "Ория (Индия)",
- "ps": "Пушту (Афганистан)",
- "fa": "Фарси",
- "pl": "Польский (Польша)",
- "pa": "Панджаби (Индия)",
- "ro": "Румынский (Румыния)",
- "rm": "Ретороманский (Швейцария)",
- "ru": "Русский (Россия)",
- "sa": "Санскрит (Индия)",
- "st": "Северный сото (Южная Африка)",
- "tn": "Тсвана (Южная Африка)",
- "si": "Сингальский (Шри-Ланка)",
- "sk": "Словацкий (Словакия)",
- "sl": "Словенский (Словения)",
- "sv": "Шведский (Швеция)",
- "syr": "Сирийский (Сирия)",
- "tg": "Таджикский (кириллица, Таджикистан)",
- "ta": "Тамильский (Индия)",
- "tt": "Татарский (Россия)",
- "te": "Телугу (Индия)",
- "th": "Тайский (Таиланд)",
- "bo": "Тибетский (КНР)",
- "tr": "Турецкий (Турция)",
- "tk": "Туркменский (Туркменистан)",
- "uk": "Украинский (Украина)",
- "ur": "Урду (Исламская Республика Пакистан)",
- "vi": "Вьетнамский (Вьетнам)",
- "cy": "Валлийский (Соединенное Королевство)",
- "wo": "Волоф (Сенегал)",
- "ii": "носу (КНР)",
- "yo": "Йоруба (Нигерия)"
- },
- "AppProtection": {
- "allAppTypes": "Предназначены для всех типов приложений",
- "androidPlatformLabel": "Android",
- "appsInAndroidWorkProfile": "Приложения в рабочем профиле Android",
- "appsOnIntuneManagedDevices": "Приложения на управляемых устройствах Intune",
- "appsOnUnmanagedDevices": "Приложения на неуправляемых устройствах",
- "iOSPlatformLabel": "iOS/iPadOS",
- "iosAndroidMacPlatformLabel": "iOS, Android, Mac",
- "iosAndroidPlatformLabel": "iOS, Android",
- "macPlatformLabel": "MAC-адрес",
- "notAvailable": "Недоступно",
- "windows10PlatformLabel": "Windows 10 и более поздних версий",
- "withEnrollment": "С регистрацией",
- "withoutEnrollment": "Без регистрации"
- },
+ "ApplicabilityRules": {
+ "GridLabel": {
+ "property": "Свойство",
+ "rule": "Правило",
+ "ruleDetails": "Сведения о правиле",
+ "value": "Значение"
+ },
+ "assignIf": "Назначить профиль, если",
+ "deleteWarning": "Это приведет к удалению выбранного правила применимости.",
+ "dontAssignIf": "Не назначать профиль, если",
+ "editionDisplayText": "{0} {1}",
+ "editionDisplayTextMore": "и еще {0}",
+ "instructions": "Укажите, как применить этот профиль в назначенной группе. Intune применит профиль только к устройствам, соответствующим объединенным критериям этих правил.",
+ "maxText": "Максимум",
+ "minText": "Минимум",
+ "noActionRow": "Правила применимости не указаны.",
+ "oSVersion": "Пример: 1.2.3.4.",
+ "toText": "по",
+ "windows10Education": "Windows 10/11 для образовательных учреждений",
+ "windows10EducationN": "Windows 10/11 для образовательных учреждений N",
+ "windows10Enterprise": "Windows 10/11 Корпоративная",
+ "windows10EnterpriseN": "Windows 10/11 Корпоративная N",
+ "windows10HolographicEnterprise": "Windows 10 Holographic для бизнеса",
+ "windows10Home": "Windows 10/11 Домашняя",
+ "windows10HomeChina": "Windows 10 Домашняя (Китай)",
+ "windows10HomeN": "Windows 10/11 Домашняя N",
+ "windows10HomeSingleLanguage": "Windows 10/11 Домашняя для одного языка",
+ "windows10IoTCore": "Windows 10 IoT Базовая",
+ "windows10IoTCoreCommercial": "Windows 10 IoT Базовая для коммерческих организаций",
+ "windows10Mobile": "Windows 10 Mobile",
+ "windows10MobileEnterprise": "Windows 10 Mobile Корпоративная",
+ "windows10OsEdition": "Выпуск ОС",
+ "windows10OsVersion": "Версия ОС",
+ "windows10Professional": "Windows 10/11 Профессиональная",
+ "windows10ProfessionalEducation": "Windows 10/11 профессиональная для образовательных учреждений",
+ "windows10ProfessionalEducationN": "Windows 10/11 Профессиональная для образовательных учреждений N",
+ "windows10ProfessionalN": "Windows 10 Профессиональная N",
+ "windows10ProfessionalWorkstation": "Windows 10/11 Профессиональная Workstation",
+ "windows10ProfessionalWorkstationN": "Windows 10/11 Профессиональная Workstation N"
+ },
+ "DetectionRules": {
+ "ComparisonOperators": {
+ "equals": "Равно",
+ "greaterThan": "Больше",
+ "greaterThanOrEqualTo": "Больше или равно",
+ "lessThan": "Меньше чем",
+ "lessThanOrEqualTo": "меньше чем или равно",
+ "notEqualTo": "не равно"
+ },
+ "CustomScript": {
+ "enforceSignatureCheck": "Принудительная проверка подписи сценария и автоматический запуск сценария",
+ "enforceSignatureCheckTooltip": "Выберите \"Да\", чтобы убедиться, что сценарий подписан доверенным издателем, что позволит выполнять сценарий без отображения предупреждений или запросов. Сценарий будет выполнен без блокировки. Выберите \"Нет\" (по умолчанию) для выполнения сценария с подтверждением конечного пользователя без проверки подписи.",
+ "header": "Использование настраиваемого сценария обнаружения",
+ "runAs32Bit": "Запуск сценария как 32-разрядного процесса на 64-разрядных клиентах",
+ "runAs32BitTooltip": "Выберите \"Да\", чтобы запустить сценарий в 32-разрядном процессе на 64-разрядных клиентах. Выберите \"Нет\" (по умолчанию), чтобы запустить сценарий в 64-разрядном процессе на 64-разрядных клиентах. 32-разрядные клиенты выполняют сценарий в 32-разрядном процессе.",
+ "scriptFile": "Файл сценария",
+ "scriptFileNotSelectedValidation": "Файл сценария не выбран.",
+ "scriptFileTooltip": "Выберите сценарий PowerShell, который будет определять наличие приложения на клиенте. Приложение обнаружено, если сценарий возвращает код выхода 0 и записывает строковое значение в STDOUT.",
+ "scriptSizeLimitValidation": "Размер сценария обнаружения превышает максимально допустимый. Устраните эту проблему, уменьшив размер сценария обнаружения."
+ },
+ "Manual": {
+ "FileRule": {
+ "DetectionMethodOptions": {
+ "dateCreated": "Дата создания",
+ "dateModified": "Дата изменения",
+ "doesNotExist": "Файл или папка не существует.",
+ "fileOrFolderExists": "Файл или папка существует",
+ "sizeInMB": "Размер в МБ",
+ "version": "Строка (версия)"
+ },
+ "associatedWith32Bit": "Связанные с 32-разрядным приложением на 64-разрядных клиентах",
+ "associatedWith32BitTooltip": "Выберите \"Да\", чтобы развернуть все переменные среды PATH в 32-разрядном контексте на 64-разрядных клиентах. Выберите \"Нет\" (по умолчанию), чтобы развернуть все переменные среды PATH в 64-разрядном контексте на 64-разрядных клиентах. 32-разрядные клиенты всегда будут использовать 32-разрядный контекст.",
+ "detectionMethod": "Метод обнаружения",
+ "detectionMethodTooltip": "Выберите тип метода обнаружения, используемого для проверки наличия приложения.",
+ "fileOrFolder": "Файл или папка",
+ "fileOrFolderToolTip": "Файл или папка для обнаружения.",
+ "operator": "Оператор",
+ "operatorTooltip": "Выберите оператор для метода обнаружения, используемого для проверки сравнения.",
+ "path": "Путь",
+ "pathTooltip": "Полный путь к папке, содержащей файл или папку для обнаружения.",
+ "value": "Значение",
+ "valueTooltip": "Выберите значение, которое соответствует выбранному методу обнаружения. Методы обнаружения даты должны вводиться с использованием местного времени."
+ },
+ "GridColumns": {
+ "pathOrCode": "Путь/код",
+ "type": "Тип"
+ },
+ "MsiRule": {
+ "operator": "Оператор",
+ "operatorTooltip": "Выберите оператор для сравнения проверки версии продукта MSI.",
+ "productCode": "Код продукта MSI",
+ "productCodeTooltip": "Допустимый код продукта MSI для приложения.",
+ "productVersion": "Значение",
+ "productVersionCheck": "Проверка версии продукта MSI",
+ "productVersionCheckTooltip": "Выберите \"Да\", чтобы проверять версию продукта MSI в дополнение к коду продукта MSI.",
+ "productVersionTooltip": "Введите версию продукта MSI для приложения."
+ },
+ "RegistryRule": {
+ "DetectionMethodOptions": {
+ "integerComparison": "Сравнение целых чисел",
+ "keyDoesNotExist": "Раздел не существует",
+ "keyExists": "Раздел существует",
+ "stringComparison": "Сравнение строк",
+ "valueDoesNotExist": "Значение не существует",
+ "valueExists": "Значение существует",
+ "versionComparison": "Сравнение версий"
+ },
+ "associatedWith32Bit": "Связанные с 32-разрядным приложением на 64-разрядных клиентах",
+ "associatedWith32BitTooltip": "Выберите \"Да\", чтобы выполнить поиск в 32-разрядном реестре на 64-разрядных клиентах. Выберите \"Нет\" (по умолчанию), чтобы выполнить поиск в 64-разрядном реестре на 64-разрядных клиентах. 32-разрядные клиенты всегда будут выполнять поиск в 32-разрядном реестре.",
+ "detectionMethod": "Метод обнаружения",
+ "detectionMethodTooltip": "Выберите тип метода обнаружения, используемого для проверки наличия приложения.",
+ "keyPath": "Путь к разделу",
+ "keyPathTooltip": "Полный путь к записи реестра, содержащей значение для обнаружения.",
+ "operator": "Оператор",
+ "operatorTooltip": "Выберите оператор для метода обнаружения, используемого для проверки сравнения.",
+ "value": "Значение",
+ "valueName": "Имя параметра",
+ "valueNameTooltip": "Имя отслеживаемого значения реестра.",
+ "valueTooltip": "Выберите значение, которое соответствует выбранному методу обнаружения."
+ },
+ "RuleTypeOptions": {
+ "file": "Файл",
+ "mSI": "MSI",
+ "registry": "Реестр"
+ },
+ "gridAriaLabel": "Правила обнаружения",
+ "header": "Создайте правило, указывающее на наличие приложения.",
+ "noRulesSelectedPlaceholder": "Правила не указаны.",
+ "ruleTableLimit": "Можно добавить до 25 правил обнаружения.",
+ "ruleType": "Тип правила",
+ "ruleTypeTooltip": "Выберите тип добавляемого правила обнаружения."
+ },
+ "RuleConfigurationOptions": {
+ "customScript": "Использование настраиваемого сценария обнаружения",
+ "manual": "Ручная настройка правил обнаружения"
+ },
+ "bladeTitle": "Правила обнаружения",
+ "header": "Настройте правила, определяемые приложением, используемые для обнаружения наличия приложения.",
+ "rulesFormat": "Формат правил",
+ "rulesFormatTooltip": "Выберите ручную настройку правил обнаружения или используйте настраиваемый сценарий для определения наличия приложения.",
+ "selectorLabel": "Правила обнаружения"
+ },
+ "PolicyType": {
+ "AttackSurfaceReductionRules": {
+ "configMgr": "Правила сокращения направлений атак (ConfigMgr)"
+ },
+ "EndpointDetectionandResponse": {
+ "mDE": "Обнаружение и нейтрализация атак на конечные точки"
+ },
+ "EndpointSecurityTemplate": {
+ "aSRAppBrowserSecurity": "Изоляция приложения и браузера",
+ "aSRApplicationControl": "Управление приложениями",
+ "aSRAttackSurfaceReduction": "Правила сокращения направлений атак",
+ "aSRDeviceControl": "Управление устройством",
+ "aSRExploitProtection": "Защита от эксплойтов",
+ "aSRWebProtection": "Защита от веб-угроз (устаревшая версия Microsoft Edge)",
+ "aVExclusions": "Исключения антивирусной программы в Microsoft Defender",
+ "antivirus": "Антивирусная программа в Microsoft Defender",
+ "cloudPC": "Базовые показатели системы безопасности для Windows 365",
+ "default": "Безопасность конечных точек",
+ "defenderTest": "Демонстрация Microsoft Defender для конечной точки",
+ "diskEncryption": "BitLocker",
+ "eDR": "Обнаружение и нейтрализация атак на конечные точки",
+ "edgeSecurityBaseline": "Базовая конфигурация Microsoft Edge",
+ "edgeSecurityBaselinePreview": "Предварительная версия: базовые показатели Microsoft Edge",
+ "editionUpgradeConfiguration": "Обновление выпуска и переключение режима",
+ "firewall": "Брандмауэр в Microsoft Defender",
+ "firewallRules": "Правила брандмауэра в Microsoft Defender",
+ "identityProtection": "Защита учетных записей",
+ "identityProtectionPreview": "Защита учетных записей (предварительная версия)",
+ "mDMSecurityBaseline1810": "Базовая конфигурация безопасности MDM для Windows 10 и более поздних версий на октябрь 2018 г.",
+ "mDMSecurityBaseline1810Preview": "Предварительная версия базового плана безопасности MDM для Windows 10 и более поздних версий на октябрь 2018",
+ "mDMSecurityBaseline1810PreviewBeta": "Предварительная версия базовой конфигурации безопасности MDM для Windows 10 за октябрь 2018 (бета-версия)",
+ "mDMSecurityBaseline1906": "Базовая конфигурация безопасности MDM для Windows 10 и более поздних версий на май 2019 г.",
+ "mDMSecurityBaseline2004": "Базовая конфигурация безопасности MDM для Windows 10 и более поздних версий за август 2020 г.",
+ "mDMSecurityBaseline2101": "Базовая конфигурация безопасности MDM для Windows 10 и более поздних версий за декабрь 2020 г.",
+ "macOSAntivirus": "Антивирус",
+ "macOSDiskEncryption": "FileVault",
+ "macOSFirewall": "Брандмауэр macOS",
+ "microsoftDefenderBaseline": "Базовые показатели Microsoft Defender для конечной точки",
+ "office365Baseline": "Базовая конфигурация Microsoft Office O365",
+ "office365BaselinePreview": "Предварительная версия: базовый показатель Microsoft Office O365",
+ "securityBaselines": "Базовые показатели системы безопасности",
+ "test": "Тестовый шаблон",
+ "testFirewallRulesSecurityTemplateName": "Правила брандмауэра в Microsoft Defender (тест)",
+ "testIdentityProtectionSecurityTemplateName": "Защита учетных записей (тест)",
+ "windowsSecurityExperience": "Интерфейс безопасности Windows"
+ },
+ "Firewall": {
+ "mDE": "Брандмауэр в Microsoft Defender"
+ },
+ "FirewallRules": {
+ "mDE": "Правила брандмауэра в Microsoft Defender"
+ },
+ "administrativeTemplates": "Административные шаблоны",
+ "androidCompliancePolicy": "Политика соответствия для Android",
+ "aospDeviceOwnerCompliancePolicy": "Политика соответствия для Android (AOSP)",
+ "applicationControl": "Управление приложениями",
+ "custom": "Пользовательская",
+ "deliveryOptimization": "Оптимизация доставки",
+ "derivedPersonalIdentityVerificationCredential": "Производные учетные данные",
+ "deviceFeatures": "Функции устройства",
+ "deviceFirmwareConfigurationInterface": "Интерфейс настройки встроенного ПО устройства",
+ "deviceLock": "Блокировка устройства",
+ "deviceOwner": "Полностью управляемый, выделенный и корпоративный рабочий профиль",
+ "deviceRestrictions": "Ограничения устройств",
+ "deviceRestrictionsWindows10Team": "Ограничения для устройств (Windows 10 для совместной работы)",
+ "domainJoinPreview": "Присоединение к домену",
+ "editionUpgradeAndModeSwitch": "Обновление выпуска и переключение режима",
+ "education": "Образование",
+ "email": "Электронная почта",
+ "emailSamsungKnoxOnly": "Электронная почта (только Samsung KNOX)",
+ "endpointProtection": "Защита конечных точек",
+ "expeditedCheckin": "Конфигурация управления мобильным устройством",
+ "exploitProtection": "Защита от эксплойтов",
+ "extensions": "Расширения",
+ "hardwareConfigurations": "Конфигурации BIOS",
+ "identityProtection": "Защита идентификации",
+ "iosCompliancePolicy": "Политика соответствия для iOS",
+ "kiosk": "Киоск",
+ "macCompliancePolicy": "Политика соответствия для Mac",
+ "microsoftDefenderAntivirus": "Антивирусная программа в Microsoft Defender",
+ "microsoftDefenderAntivirusexclusions": "Исключения антивирусной программы в Microsoft Defender",
+ "microsoftDefenderAtpWindows10Desktop": "Microsoft Defender для конечной точки (настольные компьютеры под управлением Windows 10 или более поздних версий)",
+ "microsoftDefenderFirewallRules": "Правила брандмауэра в Microsoft Defender",
+ "microsoftEdgeBaseline": "Базовые показатели Microsoft Edge",
+ "mxProfileZebraOnly": "Профиль MX (только Zebra)",
+ "networkBoundary": "Граница сети",
+ "oemConfig": "OEMConfig",
+ "overrideGroupPolicy": "Переопределение групповой политики",
+ "pkcsCertificate": "Сертификат PKCS",
+ "pkcsImportedCertificate": "Импортированный сертификат PKCS",
+ "preferenceFile": "Файл настроек",
+ "presets": "Предустановки",
+ "scepCertificate": "Сертификат SCEP",
+ "secureAssessmentEducation": "Безопасная оценка (образование)",
+ "settingsCatalog": "Каталог параметров",
+ "sharedMultiUserDevice": "Устройство коллективного пользования с общим доступом",
+ "softwareUpdates": "Обновления программного обеспечения",
+ "trustedCertificate": "Доверенный сертификат",
+ "unknown": "Неизвестно",
+ "unsupported": "Не поддерживается",
+ "vpn": "VPN",
+ "wiFi": "Wi-Fi",
+ "wiFiImport": "Импорт Wi-Fi",
+ "windows10CompliancePolicy": "Политика соответствия для Windows 10/11",
+ "windows10MobileCompliancePolicy": "Политика соответствия для Windows 10 Mobile",
+ "windows10XScep": "Сертификат SCEP — тест",
+ "windows10XTrustedCertificate": "Доверенный сертификат — тест",
+ "windows10XVPN": "VPN — тест",
+ "windows10XWifi": "WIFI — тест",
+ "windows8CompliancePolicy": "Политика соответствия для Windows 8",
+ "windowsHealthMonitoring": "Мониторинг работоспособности Windows",
+ "windowsInformationProtection": "Windows Information Protection",
+ "windowsPhoneCompliancePolicy": "Политика соответствия для Windows Phone",
+ "windowsUpdateforBusiness": "Центр обновления Windows для бизнеса",
+ "wiredNetwork": "Проводная сеть",
+ "workProfile": "Личный рабочий профиль"
+ },
+ "Win32Requirements": {
+ "AdditionalRequirements": {
+ "File": {
+ "fileOrFolderToolTip": "Файл или папка в качестве выбранного требования.",
+ "pathToolTip": "Полный путь к файлу или папке для обнаружения.",
+ "property": "Свойство",
+ "valueToolTip": "Выберите значение требования, соответствующее выбранному методу обнаружения. Дату и время требования необходимо указать в локальном формате."
+ },
+ "GridColumns": {
+ "pathOrScript": "Путь или сценарий",
+ "type": "Тип"
+ },
+ "Registry": {
+ "keyPath": "Путь к разделу",
+ "keyPathTooltip": "Полный путь к записи реестра, содержащей значение требования.",
+ "operator": "Operator",
+ "operatorTooltip": "Выберите оператор для сравнения.",
+ "registryRequirement": "Требование для ключа реестра",
+ "registryRequirementTooltip": "Выберите сравнение для требования ключа реестра.",
+ "valueName": "Имя параметра",
+ "valueNameTooltip": "Имя требуемого значения реестра."
+ },
+ "RequirementTypeOptions": {
+ "fileType": "Файл",
+ "registry": "Реестр",
+ "script": "Скрипт"
+ },
+ "Script": {
+ "RequirementMethodOptions": {
+ "boolean": "Логический",
+ "dateTime": "Дата и время",
+ "float": "С плавающей запятой",
+ "integer": "Целое число",
+ "string": "Строка",
+ "version": "Версия"
+ },
+ "ScriptContent": {
+ "emptyMessage": "Содержимое сценария не должно быть пустым."
+ },
+ "duplicateName": "Имя сценария {0} уже используется. Введите другое имя.",
+ "enforceSignatureCheck": "Принудительно проверить подпись сценария",
+ "enforceSignatureCheckTooltip": "Выберите \"Да\", чтобы проверить, что сценарий подписан доверенным издателем, что позволит выполнять сценарий без отображения предупреждений или запросов. Сценарий будет выполнен без блокировки. Выберите \"Нет\" (по умолчанию), чтобы сценарий выполнялся с выдачей запроса на подтверждение пользователю, но без проверки подписи.",
+ "loggedOnCredentials": "Запускать сценарий по учетным данным",
+ "loggedOnCredentialsTooltip": "Запустите сценарий с использованием учетных данных устройства, использованных при входе.",
+ "operatorTooltip": "Выберите оператор для сравнения требований.",
+ "requirementMethod": "Выберите тип выходных данных.",
+ "requirementMethodTooltip": "Выберите тип данных, используемый при определении соответствия требованию.",
+ "scriptFile": "Файл скрипта",
+ "scriptFileTooltip": "Выберите сценарий PowerShell, который будет определять наличие приложения на клиенте. Если приложение обнаружено, процесс обнаружения возвратит нулевой код выхода и запишет строковое значение в стандартный поток вывода.",
+ "scriptName": "Имя скрипта",
+ "value": "Значение",
+ "valueTooltip": "Выберите значение требования, соответствующее выбранному методу обнаружения. Дату и время требования необходимо указать в локальном формате."
+ },
+ "bladeTitle": "Добавление правила требований",
+ "createRequirementHeader": "Создание требования",
+ "header": "Настройка дополнительных правил требований",
+ "label": "Правила дополнительных требований",
+ "noRequirementsSelectedPlaceholder": "Требования не указаны.",
+ "requirementType": "Тип требования",
+ "requirementTypeTooltip": "Выберите тип метода обнаружения, используемого для определения того, как будет проверяться требование."
+ },
+ "architectures": "Архитектура операционной системы",
+ "architecturesTooltip": "Выберите архитектуры, необходимые для установки приложения.",
+ "bladeTitle": "Требования",
+ "diskSpace": "Требуется места на диске (МБ)",
+ "diskSpaceTooltip": "Свободное дисковое пространство на системном диске, необходимое для установки приложения.",
+ "header": "Укажите требования, которым должны соответствовать устройства до установки приложения:",
+ "maximumTextFieldValue": "Максимальное значение — {0}.",
+ "minimumCpuSpeed": "Минимальная требуемая частота ЦП (МГц)",
+ "minimumCpuSpeedTooltip": "Минимальная частота ЦП, необходимая для установки приложения.",
+ "minimumLogicalProcessors": "Минимальное требуемое число логических процессоров",
+ "minimumLogicalProcessorsTooltip": "Минимальное число логических процессоров, необходимое для установки приложения.",
+ "minimumOperatingSystem": "Минимальная версия операционной системы",
+ "minimumOperatingSystemTooltip": "Выберите минимальную версию операционной системы, необходимую для установки приложения.",
+ "minumumTextFieldValue": "Значение должно быть не менее {0}.",
+ "physicalMemory": "Необходимый объем физической памяти (МБ)",
+ "physicalMemoryTooltip": "Физическая память (ОЗУ), необходимая для установки приложения.",
+ "selectorLabel": "Требования",
+ "validNumber": "Введите допустимое число."
+ },
+ "AzureIAM": {
+ "AdrsUserActionSelectionWarning": {
+ "conditions": "Условия, требующие регистрации устройства, недоступны с действием пользователя \"Регистрация или присоединение устройств\".",
+ "message": "Параметр \"Требовать многофакторную проверку подлинности\" можно применять только в политиках, созданных для пользовательского действия \"Зарегистрировать или присоединить устройства\".{0}"
+ },
+ "AuthContext": {
+ "Delete": {
+ "failure": "Не удалось удалить {0}",
+ "failureCa": "Не удалось удалить {0}, так как на него ссылаются политики центра сертификации",
+ "modifying": "Выполняется удаление {0}",
+ "success": "{0} удалено"
+ },
+ "Included": {
+ "none": "Облачные приложения, действия или контексты проверки подлинности не выбраны.",
+ "plural": "Включено контекстов проверки подлинности: {0}.",
+ "singular": "Включен один контекст проверки подлинности."
+ },
+ "InfoBlade": {
+ "createTitle": "Добавление контекста проверки подлинности",
+ "descPlaceholder": "Добавьте описание для контекста проверки подлинности",
+ "modifyTitle": "Изменение контекста проверки подлинности",
+ "namePlaceholder": "Пример: доверенное расположение, доверенное устройство, строгая авторизация",
+ "publishDesc": "Публикация в приложениях сделает контекст проверки подлинности доступным для использования приложениями. Публикация после завершения настройки политики условного доступа для тега. [Дополнительные сведения][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150966.",
+ "publishLabel": "Публикация в приложениях",
+ "titleDesc": "Настройте контекст проверки подлинности, который будет использоваться для защиты данных и действий приложения. Используйте имена и описания, которые могут быть понятны администраторам приложений. [Дополнительные сведения][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150965."
+ },
+ "Notify": {
+ "failure": "Не удалось обновить {0}",
+ "modifying": "Изменение: {0}.",
+ "success": "Изменено: {0}."
+ },
+ "WhatIf": {
+ "selected": "Включен контекст проверки подлинности"
+ },
+ "addNewStepUp": "Новый контекст проверки подлинности",
+ "checkBoxInfo": "Выберите контексты проверки подлинности, к которым будет применяться эта политика.",
+ "configure": "Настройка контекстов проверки подлинности",
+ "createCA": "Назначение политик условного доступа для контекста проверки подлинности",
+ "dataGrid": "Список контекстов проверки подлинности",
+ "deleteFailedByReference": "You cannot delete this authentication context because it is being referenced by CA policies.",
+ "description": "Описание",
+ "documentation": "Документация",
+ "getStarted": "Начало работы",
+ "label": "Контекст проверки подлинности (предварительная версия)",
+ "menuLabel": "Контекст проверки подлинности (предварительный просмотр)",
+ "name": "Имя",
+ "noAuthContextConfigured": "Контексты проверки подлинности не настроены.",
+ "noAuthContextSet": "Контекстов проверки подлинности не существует",
+ "noData": "Нет контекстов проверки подлинности для отображения.",
+ "selectionInfo": "Контекст проверки подлинности используется для защиты данных и действий в таких приложениях, как SharePoint и Microsoft Cloud App Security.",
+ "step": "Шаг",
+ "tabDescription": "Управление контекстом проверки подлинности для защиты данных и действий в ваших приложениях. [Дополнительные сведения][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150965.",
+ "tagResources": "Установка тегов ресурсов в контексте проверки подлинности"
+ },
+ "AuthenticationStrength": {
+ "Mode": {
+ "deviceBasedPush": "Microsoft Authenticator (вход с помощью телефона)",
+ "deviceBasedPushFido2X509Certificate": "Microsoft Authenticator (вход с помощью телефона) + Fido 2 + проверка подлинности на основе сертификата",
+ "deviceBasedPushX509CertificateSingleFactor": "Microsoft Authenticator (вход с помощью телефона) + Fido 2 + проверка подлинности на основе сертификата (однофакторная)",
+ "email": "Одноразовый секретный код, отправляемый по электронной почте",
+ "emailOtp": "Одноразовый секретный код, отправляемый по электронной почте",
+ "federatedMultiFactor": "Федеративная многофакторная",
+ "federatedSingleFactor": "Один федеративный фактор",
+ "federatedSingleFactorFederatedMultiFactor": "Федеративная однофакторная + федеративная многофакторная",
+ "fido2": "Ключ безопасности FIDO 2",
+ "fido2X509CertificateSingleFactor": "Ключ безопасности FIDO 2 + проверка подлинности на основе сертификата (однофакторная)",
+ "hardwareOath": "Аппаратные маркеры OATH",
+ "hardwareOathEmail": "Аппаратные маркеры OATH + одноразовый секретный код, отправляемый по электронной почте",
+ "hardwareOathX509CertificateSingleFactor": "Аппаратные маркеры OATH + проверка подлинности на основе сертификата (однофакторная)",
+ "microsoftAuthenticatorPSIX509CertificateSingleFactor": "Microsoft Authenticator (вход с помощью телефона) + проверка подлинности на основе сертификата (однофакторная)",
+ "microsoftAuthenticatorPsi": "Microsoft Authenticator (вход с помощью телефона)",
+ "microsoftAuthenticatorPush": "Microsoft Authenticator (push-уведомление)",
+ "microsoftAuthenticatorPushEmail": "Microsoft Authenticator (push-уведомление) + одноразовый секретный код, отправляемый по электронной почте",
+ "microsoftAuthenticatorPushX509CertificateSingleFactor": "Microsoft Authenticator (push-уведомление) + проверка подлинности на основе сертификата (однофакторная)",
+ "none": "Нет",
+ "password": "Пароль",
+ "passwordDeviceBasedPush": "Пароль + Microsoft Authenticator (вход с помощью телефона)",
+ "passwordFido2": "Пароль + ключ безопасности FIDO 2",
+ "passwordHardwareOath": "Пароль + аппаратные маркеры OATH",
+ "passwordMicrosoftAuthenticatorPSI": "Пароль + Microsoft Authenticator (вход с помощью телефона)",
+ "passwordMicrosoftAuthenticatorPush": "Пароль + Microsoft Authenticator (push-уведомление)",
+ "passwordSms": "Пароль + SMS",
+ "passwordSoftwareOath": "Пароль + программные маркеры OATH",
+ "passwordTemporaryAccessPassMultiUse": "Пароль + временный секретный код (многоразовый)",
+ "passwordTemporaryAccessPassOneTime": "Пароль + временный секретный код (одноразовый)",
+ "passwordVoice": "Пароль + голос",
+ "sms": "SMS",
+ "smsEmail": "SMS + одноразовый секретный код, отправляемый по электронной почте",
+ "smsSignIn": "Вход через SMS",
+ "smsX509CertificateSingleFactor": "SMS + проверка подлинности на основе сертификата (однофакторная)",
+ "softwareOath": "Программные маркеры OATH",
+ "softwareOathEmail": "Программные маркеры OATH + одноразовый секретный код, отправляемый по электронной почте",
+ "softwareOathX509CertificateSingleFactor": "Программные маркеры OATH + проверка подлинности на основе сертификата (однофакторная)",
+ "temporaryAccessPassMultiUse": "Временный секретный код (многоразовый)",
+ "temporaryAccessPassMultiUseX509CertificateSingleFactor": "Временный секретный код (многоразовый) + проверка подлинности на основе сертификата (однофакторная)",
+ "temporaryAccessPassOneTime": "Временный секретный код (одноразовый)",
+ "temporaryAccessPassOneTimeX509CertificateSingleFactor": "Временный секретный код (одноразовый) + проверка подлинности на основе сертификата (однофакторная)",
+ "voice": "Голосовая связь",
+ "voiceEmail": "Голос + одноразовый секретный код, отправляемый по электронной почте",
+ "voiceX509CertificateSingleFactor": "Голос + проверка подлинности на основе сертификата (однофакторная)",
+ "windowsHelloForBusiness": "Windows Hello для бизнеса",
+ "x509CertificateMultiFactor": "Проверка подлинности на основе сертификата (многофакторная)",
+ "x509CertificateSingleFactor": "Проверка подлинности на основе сертификата (однофакторная)"
+ }
+ },
+ "CAS": {
+ "BuiltinPolicy": {
+ "Option": {
+ "blockDownloads": "Блокировка загрузок (предварительная версия)",
+ "monitorOnly": "Только мониторинг (предварительная версия)",
+ "protectDownloads": "Защита загрузок (предварительная версия)",
+ "useCustomControls": "Использовать пользовательскую политику…"
+ },
+ "ariaLabel": "Выберите тип управления условным доступом к приложениям, который необходимо применить."
+ }
+ },
+ "ChooseApplications": {
+ "Grid": {
+ "appIdAria": "ИД приложения: {0}"
+ },
+ "LowerGrid": {
+ "ariaLabel": "Список выбранных облачных приложений"
+ },
+ "UpperGrid": {
+ "ariaLabel": "Список облачных приложений, соответствующих условию поиска"
+ }
+ },
+ "ChooseLocations": {
+ "Validation": {
+ "failed": "Необходимо выбрать по крайней мере одно расположение в поле \"Выбранные расположения\".",
+ "selector": "Выберите по меньшей мере одно расположение"
+ }
+ },
+ "ClientApp": {
+ "Clients": {
+ "Validation": {
+ "failed": "Необходимо выбрать по крайней мере одного из следующих клиентов."
+ }
+ }
+ },
+ "ClientConditionsInfo": {
+ "browserAndModern": "Эта политика применяется только к браузеру и современным приложениям проверки подлинности. Чтобы применить политику ко всем клиентским приложениям, включите условие клиентского приложения и выберите все клиентские приложения.",
+ "classicExperience": "Так как эта политика создана, конфигурация клиентских приложений по умолчанию была обновлена.",
+ "legacyAuth": "Если параметр не настроен, политики применяются ко всем клиентским приложениям, в том числе с современной и устаревшей проверкой подлинности."
+ },
+ "CloudAppFilterBlade": {
+ "AssignmentFilter": {
+ "header": "Атрибут",
+ "placeholder": "Выберите атрибут"
+ },
+ "Configure": {
+ "infoBalloon": "Настройте фильтры устройств, к которым нужно применить политику."
+ },
+ "NoPermissions": {
+ "learnMoreAria": "Дополнительная информация о разрешениях на использование настраиваемых атрибутов безопасности.",
+ "message": "У вас нет разрешений, необходимых для использования настраиваемых атрибутов безопасности."
+ },
+ "gridHeader": "С помощью настраиваемых атрибутов безопасности можно использовать построитель правил или текстовое поле синтаксиса правил для создания или изменения правил фильтрации. В предварительной версии поддерживаются только атрибуты типа String. Атрибуты типа Integer или Boolean не будут отображаться.",
+ "learnMoreAria": "Дополнительная информация об использовании построителя правил и текстового поля синтаксиса.",
+ "noAttributes": "Нет настраиваемых атрибутов, доступных для фильтрации. Чтобы использовать этот фильтр, настройте какие-нибудь атрибуты.",
+ "title": "Редактирование фильтра (предварительный просмотр)"
+ },
+ "CloudAppsUserActions": {
+ "any": "Любое облачное приложение или действие",
+ "infoBalloon": "Облачное приложение или действие пользователя, которое нужно протестировать. Например, \"SharePoint Online\".",
+ "learnMore": "Управляйте доступом на основе всех или только некоторых облачных приложений или действий.",
+ "learnMoreB2C": "Управляйте доступом на основе всех или только некоторых облачных приложений.",
+ "title": "Облачные приложения или действия"
+ },
+ "CloudappsSelectionBlade": {
+ "Excluded": {
+ "gridAria": "Список исключенных облачных приложений"
+ },
+ "Filter": {
+ "configured": "Настроено",
+ "label": "Редактирование фильтра (предварительный просмотр)",
+ "with": "{0} с {1}"
+ },
+ "Included": {
+ "gridAria": "Список включенных облачных приложений"
+ },
+ "Validation": {
+ "authContext": "Для варианта \"Контекст проверки подлинности\" необходимо настроить по крайней мере один вложенный элемент.",
+ "selectApps": "Необходимо настроить \"{0}\"",
+ "selector": "Выберите по меньшей мере одно приложение.",
+ "userActions": "Для варианта \"Действия пользователя\" необходимо настроить по крайней мере один вложенный элемент."
+ }
+ },
+ "DeviceState": {
+ "LearnMore": {
+ "message": "Управление доступом пользователя, когда состояние устройства, с которого входит пользователь, отличается от \\\"с гибридным присоединением к Azure AD\\\" или \\\"помеченное как соответствующее требованиям\\\".\n Этот параметр не рекомендуется. Вместо этого используйте \\\"{1}\\\"."
+ }
+ },
+ "Errors": {
+ "notFound": "Политика не найдена или была удалена.",
+ "notFoundDetailed": "Политика \"{0}\" больше не существует. Возможно, она удалена."
+ },
+ "GuestsOrExternalUsers": {
+ "allExternalTenantsLabel": "Все организации Azure AD",
+ "b2bCollaborationGuestLabel": "Гостевые пользователи Совместной работы B2B",
+ "b2bCollaborationMemberLabel": "Пользователи-участники Совместной работы B2B",
+ "b2bDirectConnectUserLabel": "Пользователи прямого соединения B2B",
+ "enumeratedExternalTenantsError": "Выберите по крайней мере один внешний клиент",
+ "enumeratedExternalTenantsLabel": "Выбранные организации Azure AD",
+ "externalTenantsLabel": "Укажите внешние организации Azure AD",
+ "externalUserDropdownLabel": "Выберите типы гостевых или внешних пользователей",
+ "externalUsersError": "Выберите хотя бы один тип внешнего гостя или пользователя",
+ "guestOrExternalUsersInfoContent": "Включает Совместную работу B2B, прямое соединение B2B и другие типы внешних пользователей.",
+ "guestOrExternalUsersLabel": "Гостевые или внешние пользователи",
+ "internalGuestLabel": "Локальные гостевые пользователи",
+ "otherExternalUserLabel": "Другие внешние пользователи"
+ },
+ "NamedLocation": {
+ "Form": {
+ "CountryLookup": {
+ "ariaLabel": "Метод поиска страны",
+ "gps": "Определение расположения по GPS-координатам",
+ "info": "Если настроено условие расположения политики условного доступа, приложение Authenticator будет запрашивать у пользователей общий доступ к их GPS-координатам. ",
+ "ip": "Определение расположения по IP-адресам (только IPv4-адреса)"
+ },
+ "Header": {
+ "new": "Новое расположение ({0})",
+ "update": "Изменение расположения ({0})"
+ },
+ "IP": {
+ "learn": "Настройте диапазоны адресов IPv4 и IPv6 для именованного расположения.\n[Дополнительные сведения][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
+ },
+ "Include": {
+ "infoBalloon": "Неизвестные страны или регионы имеют IP-адреса, не связанные с определенной страной или регионом. [Дополнительные сведения][1]\n\nВ их число входят:\n* адреса IPv6;\n* адреса IPv4 без прямого сопоставления.\n[1]: https://aka.ms/canamedlocations\n",
+ "label": "Включить неизвестные страны и регионы"
+ },
+ "Name": {
+ "empty": "Имя не может быть пустым.",
+ "placeholder": "Назвать это расположение"
+ },
+ "PrivateLink": {
+ "learn": "Создайте новое именованное расположение, содержащее приватные каналы для Azure AD. \n[Подробнее][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
+ },
+ "Search": {
+ "countries": "Поиск стран и регионов",
+ "names": "Поиск по именам",
+ "privateLinks": "Искать приватные каналы"
+ },
+ "Trusted": {
+ "label": "Отметить как надежное расположение"
+ },
+ "enter": "Введите новый диапазон IPv4 или IPv6",
+ "example": "Пример: 40.77.182.32/27 или 2a01:111::/32"
+ },
+ "Label": {
+ "addCountries": "Расположение в странах",
+ "addIpRange": "Расположение в диапазонах IP-адресов",
+ "addPrivateLink": "Приватные каналы Azure"
+ },
+ "Notification": {
+ "Create": {
+ "Failed": {
+ "description": "Не удалось создать расположение ({0}).",
+ "title": "Сбой создания"
+ },
+ "InProgress": {
+ "description": "Создание нового расположения ({0}).",
+ "title": "Идет создание"
+ },
+ "Success": {
+ "description": "Расположение создано ({0}).",
+ "title": "Создание выполнено"
+ }
+ },
+ "Delete": {
+ "Failed": {
+ "description": "Не удалось удалить расположение ({0}).",
+ "title": "Сбой удаления"
+ },
+ "InProgress": {
+ "description": "Удаление расположения ({0}).",
+ "title": "Идет удаление"
+ },
+ "Success": {
+ "description": "Расположение удалено ({0}).",
+ "title": "Удаление выполнено"
+ }
+ },
+ "Update": {
+ "Failed": {
+ "description": "Не удалось изменить расположение ({0}).",
+ "title": "Сбой изменения"
+ },
+ "InProgress": {
+ "description": "Изменение расположения ({0}).",
+ "title": "Выполняется изменение"
+ },
+ "Success": {
+ "description": "Расположение изменено ({0}).",
+ "title": "Изменение выполнено"
+ }
+ }
+ },
+ "PrivateLinks": {
+ "grid": "Список приватных каналов"
+ },
+ "Trusted": {
+ "title": "Доверенный тип",
+ "trusted": "Надежный"
+ },
+ "Type": {
+ "all": "Все типы",
+ "countries": "Страны",
+ "ipRanges": "Диапазоны IP-адресов",
+ "privateLinks": "Приватные каналы",
+ "title": "Тип расположения"
+ },
+ "iPRangeInvalidError": "Значение должно быть допустимым диапазоном адресов IPv4 или IPv6.",
+ "iPRangeLinkOrSiteLocalError": "IP-сеть определена как локальная ссылка или локальный адрес сайта.",
+ "iPRangeOctetError": "IP-сеть не должна начинаться с 0 или 255.",
+ "iPRangePrefixError": "Префикс IP-адресов сети должен находиться в диапазоне от /{0} до /{1}.",
+ "iPRangePrivateError": "IP-сеть определена как частный адрес."
+ },
+ "NamedNetwork": {
+ "List": {
+ "gridAria": "Список именованных расположений"
+ }
+ },
+ "Policies": {
+ "Grid": {
+ "aria": "Список политик условного доступа"
+ },
+ "countText": "Обнаружено политик: {0} из {1}.",
+ "countTextSingular": "Обнаружено политик: {0} из 1.",
+ "search": "Поиск политик"
+ },
+ "Policy": {
+ "Condition": {
+ "ServicePrincipalRisk": {
+ "description": "Настройка уровней риска субъекта-службы, необходимых для применения политики",
+ "infoBalloonContent": "Настройка применения политики к выбранным уровням риска субъекта-службы",
+ "title": "Риск субъекта-службы (предварительная версия)"
+ }
+ }
+ },
+ "PolicyControlAuthStrength": {
+ "MultiFactorAuthentication": {
+ "description": "Сочетания методов, удовлетворяющих строгой проверке подлинности, например пароль + SMS",
+ "displayName": "Многофакторная проверка подлинности (MFA)"
+ },
+ "Passwordless": {
+ "description": "Методы без пароля, удовлетворяющие строгой проверке подлинности, например Microsoft Authenticator ",
+ "displayName": "MFA без пароля"
+ },
+ "PhishingResistant": {
+ "description": "Методы защиты от фишинга без пароля для наиболее строгой проверки подлинности, такие как ключ безопасности FIDO2",
+ "displayName": "MFA с защитой от фишинга"
+ }
+ },
+ "PolicyControlFedAuthMethod": {
+ "ariaLabel": "Дополнительные сведения о требованиях к методам проверки подлинности, которым должны удовлетворять поставщики федерации.",
+ "certificate": "Проверка подлинности на основе сертификата",
+ "infoBubble": "Укажите нужный способ проверки подлинности, который должен предоставлять поставщик федерации, например ADFS.",
+ "multifactor": "Многофакторная проверка подлинности",
+ "require": "Требовать федеративный метод проверки подлинности (предварительная версия)",
+ "whatIfFormat": "{0} — {1}"
+ },
+ "PolicyState": {
+ "off": "Выкл.",
+ "on": "Вкл.",
+ "reportOnly": "Только отчет"
+ },
+ "PolicyTemplates": {
+ "Devices": {
+ "description": "Выберите категорию шаблона политики устройств, чтобы получить сведения об устройствах, обращающихся к сети. Проверьте соответствие требованиям и состояния работоспособности перед предоставлением доступа.",
+ "name": "Устройства"
+ },
+ "Identities": {
+ "description": "Выберите категорию шаблонов политик удостоверений для проверки и защиты каждого удостоверения с помощью надежной проверки подлинности во всей вашей цифровой среде.",
+ "name": "Удостоверения"
+ },
+ "Summary": {
+ "CloudApps": {
+ "allCloudApps": "Все приложения",
+ "office365": "Office 365",
+ "registerSecurityInfo": "Регистрация сведений для защиты"
+ },
+ "Conditions": {
+ "androidAndIOS": "Платформа устройства: Android и IOS",
+ "anyDevice": "Все устройства, кроме устройств с Android, iOS, Windows и macOS",
+ "anyDeviceStateExceptHybrid": "Любое состояние устройства, кроме \"Совместимо\" и \"С гибридным присоединением к Azure AD\"",
+ "anyLocation": "Любое расположение, кроме доверенного",
+ "browserMobileDesktop": "Клиентские приложения: браузер, мобильные приложения и клиенты для настольных компьютеров",
+ "exchangeActiveSync": "Клиентские приложения: Exchange Active Sync, другие клиенты",
+ "windowsAndMac": "Платформа устройства: Windows и Mac"
+ },
+ "Devices": {
+ "anyDevice": "Любое устройство"
+ },
+ "Grant": {
+ "appProtectionPolicy": "Требовать политику защиты приложений",
+ "approvedClientApp": "Требовать утвержденное клиентское приложение",
+ "blockAccess": "Блокировать доступ",
+ "mfa": "Требовать многофакторную проверку подлинности",
+ "passwordChange": "Требовать изменения пароля",
+ "requireCompliantDevice": "Требовать, чтобы устройство было отмечено как соответствующее требованиям",
+ "requireHybridAzureADDevice": "Требовать устройство с гибридным присоединением к Azure AD"
+ },
+ "Session": {
+ "appEnforcedRestrictions": "Использовать ограничения, применяемые приложениями",
+ "signInFrequency": "Периодичность входа и никогда не сохраняемый сеанс браузера"
+ },
+ "UsersAndGroups": {
+ "allUsers": "Все пользователи",
+ "directoryRoles": "Роли каталога, кроме текущего администратора",
+ "globalAdmin": "Глобальный администратор",
+ "noGuestAndAdmins": "Все пользователи, кроме гостевых и внешних, глобальных администраторов и текущего администратора"
+ },
+ "azureManagement": "Управление Azure",
+ "deviceFilters": "Фильтры для устройств",
+ "devicePlatforms": "Платформы устройств"
+ },
+ "TemplateId": {
+ "AppEnforcedRestrictions": {
+ "description": "Заблокируйте или ограничьте доступ к содержимому SharePoint, OneDrive и Exchange с неуправляемых устройств.",
+ "name": "CA014: Использование принудительных ограничений со стороны приложения для неуправляемых устройств",
+ "title": "Использование принудительных ограничений приложения для неуправляемых устройств"
+ },
+ "ApprovedClientApps": {
+ "description": "Чтобы предотвратить потерю данных, организации могут ограничить доступ к утвержденным клиентским приложениям с современной проверкой подлинности с помощью средства защиты приложений Intune.",
+ "name": "CA012: Требование утвержденных клиентских приложений и защиты приложений",
+ "title": "Требование утвержденных клиентских приложений и защиты приложений"
+ },
+ "BlockAccessOnUnknowns": {
+ "description": "Пользователям будет заблокирован доступ к ресурсам компании, если тип устройства неизвестен или не поддерживается.",
+ "name": "CA010: Блокировка доступа для неизвестной или неподдерживаемой платформы устройства",
+ "title": "Блокировка доступа для неизвестной или неподдерживаемой платформы устройства"
+ },
+ "BlockLegacyAuth": {
+ "description": "Заблокируйте устаревшие конечные точки проверки подлинности, которые можно использовать для обхода многофакторной проверки подлинности.",
+ "name": "CA003: Блокировка устаревшей проверки подлинности",
+ "title": "Блокировка устаревшей проверки подлинности"
+ },
+ "NoPersistentBrowserSession": {
+ "description": "Защитите доступ пользователей на неуправляемых устройствах, запретив им оставаться в системе после закрытия браузера и установив частоту входа в систему в 1 час.",
+ "name": "CA011: Сеанс браузера не сохраняется",
+ "title": "Сеанс браузера не сохраняется"
+ },
+ "RequireCompliantOrHybridADAdmins": {
+ "description": "Потребуйте, чтобы привилегированные администраторы получали доступ к ресурсам только при использовании соответствующего требованиям устройства или устройства с гибридным присоединением к Azure AD.",
+ "name": "CA009: требовать совместимое устройство или устройство с гибридным присоединением к Azure AD для администраторов",
+ "title": "Требовать совместимое устройство или устройство с гибридным присоединением к Azure AD для администраторов"
+ },
+ "RequireCompliantOrHybridADAllUsers": {
+ "description": "Защитите доступ к ресурсам вашей организации, потребовав от пользователей использовать управляемое устройство или выполнять многофакторную проверку подлинности (только macOS или Windows).",
+ "name": "CA013: требовать соответствующее устройство, устройство с гибридным присоединением к Azure AD или многофакторную проверку подлинности для всех пользователей",
+ "title": "Требовать соответствующее устройство, устройство с гибридным присоединением к Azure AD или многофакторную проверку подлинности для всех пользователей"
+ },
+ "RequireMFAAllUsers": {
+ "description": "Настройте многофакторную проверку подлинности для всех учетных записей пользователей, чтобы снизить риск их компрометации.",
+ "name": "CA004: Требование многофакторной проверки подлинности для всех пользователей",
+ "title": "Требование многофакторной проверки подлинности для всех пользователей"
+ },
+ "RequireMFAForAdmins": {
+ "description": "Настройте многофакторную проверку подлинности для учетных записей привилегированных администраторов, чтобы снизить риск их компрометации. Эта политика нацелена на те же роли, что и политика обеспечения безопасности по умолчанию.",
+ "name": "CA001: Требование многофакторной проверки подлинности для администраторов",
+ "title": "Требование многофакторной проверки подлинности для администраторов"
+ },
+ "RequireMFAForAzureManagement": {
+ "description": "Требовать многофакторную проверку подлинности для защиты привилегированного доступа к ресурсам Azure.",
+ "name": "CA006: Требование многофакторной проверки подлинности для управления Azure",
+ "title": "Требование многофакторной проверки подлинности для управления Azure"
+ },
+ "RequireMFAForGuestAccess": {
+ "description": "Требовать, чтобы гости выполняли многофакторную проверку подлинности при доступе к ресурсам вашей организации.",
+ "name": "CA005: Требование многофакторной проверки подлинности для гостевого доступа",
+ "title": "Требование многофакторной проверки подлинности для гостевого доступа"
+ },
+ "RequireMFAForRiskySignIn": {
+ "description": "Требовать многофакторную проверку подлинности, если риск при входе в систему является средним или высоким. (Требуется лицензия Azure AD Premium 2)",
+ "name": "CA007: требовать многофакторную проверку подлинности при рискованных входах",
+ "title": "Требовать многофакторную проверку подлинности при рискованных входах"
+ },
+ "RequirePasswordChangeForHighRiskUsers": {
+ "description": "Требовать, чтобы пользователь изменил свой пароль, если риск для пользователя является высоким. (Требуется лицензия Azure AD Premium 2)",
+ "name": "CA008: Требование смены пароля для пользователей с высоким уровнем риска",
+ "title": "Требование смены пароля для пользователей с высоким уровнем риска"
+ },
+ "RequireSecurityInfo": {
+ "description": "Защитите пользователей при самостоятельной регистрации для многофакторной проверки подлинности в Azure AD и создании пароля. ",
+ "name": "CA002: Обеспечение безопасности при регистрации сведений для защиты",
+ "title": "Обеспечение безопасности при регистрации сведений для защиты"
+ }
+ },
+ "TemplateState": {
+ "BlockAccessOnUnknowns": {
+ "title": "Включение этой политики приведет к блокировке доступа с устройств неизвестного типа. Используйте режим \"Только отчет\", пока не убедитесь, что эти изменения не повлияют на ваших пользователей."
+ },
+ "BlockLegacyAuth": {
+ "description": "Используйте режим \"Только отчет\", пока не убедитесь, что эти изменения не повлияют на ваших пользователей.",
+ "title": "Включение этой политики приведет к блокировке устаревшей проверки подлинности для всех пользователей."
+ },
+ "RequireCompliantOrHybridADAdmins": {
+ "Description": {
+ "on": "Используйте режим \"Только отчет\", пока не убедитесь, что эти изменения не повлияют на ваших привилегированных пользователей.",
+ "reportOnly": "Политики в режиме \"Только отчет\", которые требуют, чтобы устройства соответствовали требованиям, могут предлагать пользователям устройств с macOS, iOS и Android выбрать сертификат устройства во время проверки, даже если политика соответствия требованиям не применяется. Эти запросы могут повторяться до тех пор, пока устройство не будет соответствовать требованиям."
+ },
+ "Title": {
+ "on": "Включение этой политики приведет к блокировке доступа привилегированных пользователей, если только они не будут использовать управляемое устройство, например соответствующее требованиям или с гибридным присоединением к Azure AD. Перед включением этой политики убедитесь, что настроены политики соответствия требованиям или включена конфигурация гибридной службы Azure AD.",
+ "reportOnly": "Перед включением этой политики убедитесь, что настроены политики соответствия требованиям или включена конфигурация гибридной службы Azure AD."
+ }
+ },
+ "RequireCompliantOrHybridADAllUsers": {
+ "Description": {
+ "on": "Эта политика затронет всех пользователей, кроме текущего администратора, вошедшего в систему. Используйте режим \"Только отчет\", пока не убедитесь, что эти изменения не повлияют на ваших пользователей."
+ },
+ "Title": {
+ "on": "Не заблокируйте себя! Убедитесь, что ваше устройство соответствует требованиям, подключено к гибридной службе Azure AD или настроена многофакторная проверка подлинности.",
+ "reportOnly": "Политики в режиме \"Только отчет\", которые требуют, чтобы устройства соответствовали требованиям, могут предлагать пользователям устройств с macOS, iOS и Android выбрать сертификат устройства во время проверки, даже если политика соответствия требованиям не применяется. Эти запросы могут повторяться до тех пор, пока устройство не будет соответствовать требованиям."
+ }
+ },
+ "RequireMfa": {
+ "description": "При использовании учетных записей экстренного доступа или службы Azure AD Connect для синхронизации локальных объектов может потребоваться исключить эти учетные записи из этой политики после ее создания."
+ },
+ "RequireMfaAdmins": {
+ "description": "Обратите внимание, что текущая учетная запись администратора будет автоматически исключена, но все остальные учетные записи будут защищены при создании политики. Для начала используйте режим \"Только отчет\".",
+ "title": "Не заблокируйте себя! Эта политика влияет на портал Azure."
+ },
+ "RequireMfaAllUsers": {
+ "description": "Используйте режим \"Только отчет\", пока не запланируете внесение этих изменений и не сообщите о них всем пользователям.",
+ "title": "Включение этой политики приведет к принудительному использованию многофакторной проверки подлинности для всех пользователей."
+ },
+ "RequireSecurityInfo": {
+ "description": "Проверьте конфигурацию, чтобы защитить эти учетные записи в соответствии с потребностями вашей организации.",
+ "title": "Из этой политики исключены следующие пользователи и роли: гости и внешние пользователи, глобальные администраторы и текущий администратор"
+ }
+ },
+ "basics": "Основные сведения",
+ "clientApps": "Клиентские приложения",
+ "cloudApps": "Облачные приложения",
+ "cloudAppsOrActions": "Облачные приложения или действия ",
+ "conditions": "Условия ",
+ "createNewPolicy": "Создание новой политики на основе шаблонов (предварительная версия)",
+ "createPolicy": "Создание политики",
+ "currentUser": "Текущий пользователь",
+ "customizeBuild": "Настройка сборки",
+ "customizeTemplate": "Списки шаблонов настраиваются на основе типа создаваемой политики",
+ "excludedDevicePlatform": "Исключенные платформы устройств",
+ "excludedDirectoryRoles": "Исключенные роли каталога",
+ "excludedLocation": "Исключенные роли каталога",
+ "excludedUsers": "Исключенные пользователи",
+ "grantControl": "Предоставление управления ",
+ "includeFilteredDevice": "Добавить отфильтрованные устройства в политику",
+ "includedDevicePlatform": "Добавленные платформы устройств",
+ "includedDirectoryRoles": "Добавленные роли каталога",
+ "includedLocation": "Добавленное расположение",
+ "includedUsers": "Добавленные пользователи",
+ "legacyAuthenticationClients": "Клиенты с устаревшими способами проверки подлинности",
+ "namePolicy": "Назвать политику",
+ "next": "Далее",
+ "policyName": "Имя политики",
+ "policyState": "Состояние политики",
+ "policySummary": "Сводка по политике",
+ "policyTemplate": "Шаблон политики",
+ "previous": "Назад",
+ "reviewAndCreate": "Проверка и создание",
+ "riskLevels": "Уровни риска",
+ "selectATemplate": "Выбор шаблона",
+ "selectTemplate": "Выбор шаблона",
+ "selectTemplateCategory": "Выберите категорию шаблона",
+ "selectTemplateRecommendation": "Рекомендуется использовать следующие шаблоны на основе вашего отклика",
+ "sessionControl": "Управление сеансом ",
+ "signInFrequency": "Частота попыток входа",
+ "signInRisk": "Риск при входе",
+ "template": "Шаблон ",
+ "templateCategory": "Категория шаблона",
+ "userRisk": "Риск пользователя",
+ "usersAndGroups": "Пользователи и группы ",
+ "viewPolicySummary": "Просмотр сводки политики "
+ },
+ "SSM": {
+ "MemberSelector": {
+ "description": "Пользователи и группы"
+ },
+ "Notification": {
+ "Migration": {
+ "error": "Не удалось перенести параметры Непрерывной оценки доступа в политики условного доступа.",
+ "inProgress": "Выполняется перенос параметров Непрерывной оценки доступа.",
+ "success": "Параметры Непрерывной оценки доступа успешно перенесены в политики условного доступа.",
+ "successDescription": "Перейдите к политикам условного доступа, чтобы просмотреть перенесенные параметры во вновь созданной политике с именем \"Политика условного доступа, созданная на основе параметров Непрерывной оценки доступа\"."
+ },
+ "error": "Не удалось обновить параметры Непрерывной оценки доступа.",
+ "inProgress": "Выполняется обновление параметров Непрерывной оценки доступа.",
+ "success": "Параметры Непрерывной оценки доступа обновлены."
+ },
+ "PreviewOptions": {
+ "disable": "Отключить предварительный просмотр",
+ "enable": "Включить предварительный просмотр"
+ },
+ "StrictLocationEnforcement": {
+ "infoContent1": "IP-адреса одного клиентского устройства, определяемые Azure AD и поставщиком ресурсов, могут не совпадать из-за разделения сети или несоответствия между протоколами IPv4 и IPv6. Строгое принудительное применение для расположения обеспечит применение политики условного доступа на основе IP-адресов, определяемых и Azure AD, и поставщиком ресурсов.",
+ "infoContent2": "Чтобы обеспечить максимальную безопасность, рекомендуется включить в политику именованных расположений все IP-адреса, которые могут определяться и Azure AD, и поставщиком ресурсов, а также включить режим \"Строгое принудительное применение для расположения\".",
+ "label": "Строгое принудительное применение для расположения",
+ "title": "Дополнительные режимы принудительного применения"
+ },
+ "bladeTitle": "Непрерывная оценка доступа",
+ "description": "При удалении доступа пользователя или изменении IP-адреса клиента Непрерывная оценка доступа автоматически блокирует доступ к ресурсам и приложениям практически в режиме реального времени. ",
+ "migrateLabel": "Миграция",
+ "migrationError": "Миграция не выполнена из-за следующей ошибки: {0}",
+ "migrationInfo": "Параметр CAE перемещен в раздел \"Пользовательский интерфейс условного доступа\". Выполните миграцию с помощью кнопки \"Перенести\" и настройте его позднее с помощью политики условного доступа. Щелкните здесь, чтобы получить дополнительные сведения.",
+ "noLicenseMessage": "Для настройки параметров интеллектуального управления сеансами используйте Azure AD Premium.",
+ "optionsPickerTitle": "Включить/отключить Непрерывную оценку доступа",
+ "upsellInfo": "Параметры на этой странице недоступны для изменений, и их следует игнорировать. Будут действовать предыдущие параметры. В дальнейшем вы сможете настроить параметры CAE в разделе \"Условный доступ\". Щелкните здесь, чтобы получить дополнительные сведения."
+ },
+ "SelectOrganizations": {
+ "Blade": {
+ "Lower": {
+ "gridAria": "Список выбранных организаций"
+ },
+ "Upper": {
+ "gridAria": "Список доступных организаций"
+ },
+ "description": "Добавьте организацию Azure AD, начав вводить одно из ее доменных имен",
+ "notFoundResult": "Не найдено",
+ "searchBoxPlaceholder": "Идентификатор клиента или имя домена",
+ "subTitle": "Организация Azure AD"
+ },
+ "Selector": {
+ "AdditionalDetails": {
+ "aria": "Идентификатор организации: {0}"
+ },
+ "DisplayText": {
+ "multiple": "Выбрано организаций Azure AD: {0}",
+ "single": "Выбрана одна организация Azure AD"
+ },
+ "gridAria": "Список выбранных организаций"
+ }
+ },
+ "SessionLifetime": {
+ "PersistentBrowser": {
+ "Error": {
+ "notAllApps": "Политика постоянного сеанса браузера работает правильно только при выборе варианта \"Все облачные приложения\". Обновите конфигурацию облачных приложений."
+ },
+ "Option": {
+ "always": "Всегда постоянный",
+ "help": "Постоянный сеанс в браузере означает, что пользователям не требуется снова выполнять вход после закрытия и повторного открытия окна браузера.
\n\n- Этот параметр работает правильно при выборе варианта \"Все облачные приложения\".
\n- Он не влияет на время жизни маркеров или настройку периодичности входа.
\n- Этот параметр приводит к переопределению политики \"Показать возможность не выходить из системы\" в фирменном оформлении компании.
\n- \"Запретить постоянный\" переопределяет любые утверждения постоянного единого входа, переданные из федеративных служб проверки подлинности.
\n- \"Запретить постоянный\" блокирует единый вход на мобильных устройствах в приложениях и между приложениями и мобильным браузером пользователя.
\n",
+ "label": "Сохраняемый сеанс браузера",
+ "never": "Запретить постоянный"
+ },
+ "Warning": {
+ "allApps": "Постоянный сеанс браузера работает правильно только при выборе варианта \"Все облачные приложения\". Измените конфигурацию облачных приложений. Щелкните здесь для получения дополнительных сведений."
+ }
+ },
+ "SignInFrequency": {
+ "Aria": {
+ "units": "Часы или дни",
+ "value": "Периодичность"
+ },
+ "Option": {
+ "Day": {
+ "plural": "{0} дн.",
+ "singular": "1 день"
+ },
+ "Hour": {
+ "plural": "{0} ч",
+ "singular": "1 час"
+ },
+ "daysOption": "Дни",
+ "everytime": "Каждый раз",
+ "help": "Период времени, по истечении которого пользователю будет предложено повторить вход при попытке доступа к ресурсу. Значение по умолчанию — скользящий интервал 90 дней, т. е. пользователю будет предложено повторно пройти проверку подлинности при первой попытке доступа к ресурсу после периода отсутствия активности в течение не менее 90 дней.",
+ "hoursOption": "Часы",
+ "label": "Частота входа",
+ "placeholder": "Выбрать единицы отображения"
+ }
+ },
+ "mainOption": "Изменить время существования сеанса",
+ "mainOptionHelp": "Настройте частоту получения запросов пользователями и сохранение сеанса браузера. Приложения, которые не поддерживают современные протоколы проверки подлинности, могут не учитывать эти политики. В этом случае обратитесь к разработчику приложения."
+ },
+ "SigninRisk": {
+ "LearnMore": {
+ "message": "Управляйте доступом пользователей для реагирования на определенные уровни риска при входе в систему."
+ }
+ },
+ "SingleSelectorActive": {
+ "failed": "Не удалось загрузить эти данные.",
+ "reattempt": "Загрузка данных. Повторная попытка: {0} из {1}."
+ },
+ "TimeCondition": {
+ "Errors": {
+ "both": "Недопустимый диапазон времени для \"Включения\" или \"Исключения\".",
+ "daysOfWeek": "{0} Укажите как минимум один день недели.",
+ "endBeforeStart": "{0} Дата и время начала должны предшествовать дате и времени окончания.",
+ "exclude": "Недопустимый диапазон времени для \"Исключения\".",
+ "generic": "{0} Укажите дни недели и часовой пояс. Если не установлен флажок \"Весь день\", нужно также задать время начала и время окончания.",
+ "include": "Недопустимый диапазон времени для \"Включения\".",
+ "timeMissing": "{0} Укажите время начала и время окончания.",
+ "timeZone": "{0} Укажите часовой пояс.",
+ "timesAndZone": "{0} Укажите время начала, время окончания и часовой пояс."
+ }
+ },
+ "UserActions": {
+ "Included": {
+ "none": "Облачные приложения или действия не выбраны.",
+ "plural": "Действий пользователя включено: {0}.",
+ "singular": "1 действие пользователя включено."
+ },
+ "accessRequirement1": "Уровень 1",
+ "accessRequirement2": "Уровень 2",
+ "accessRequirement3": "Уровень 3",
+ "accessRequirementsLabel": "Доступ к защищенным данным приложений",
+ "appsActionsAuthTitle": "Облачные приложения, действия или контекст проверки подлинности",
+ "appsOrActionsSelectorInfoBallonText": "Доступ к приложениям или действия пользователей",
+ "appsOrActionsTitle": "Облачные приложения или действия",
+ "label": "Действия пользователя",
+ "mainOptionsLabel": "Выбрать объект, к которому будет применяться эта политика",
+ "registerOrJoinDevices": "Регистрация или присоединение устройств",
+ "registerSecurityInfo": "Регистрация сведений о безопасности",
+ "selectionInfo": "Выберите действие, к которому будет применяться эта политика",
+ "whatIf": "Включено действие пользователя"
+ },
+ "UserSelectionBlade": {
+ "DirectoryRoles": {
+ "ariaLabel": "Выбор ролей каталога"
+ },
+ "Excluded": {
+ "gridAria": "Список исключенных пользователей"
+ },
+ "Included": {
+ "gridAria": "Список включенных пользователей"
+ },
+ "Validation": {
+ "customRoleIncluded": "\"Роли каталога\" включают как минимум одну настраиваемую роль.",
+ "customRoleSelected": "Выбрана как минимум одна настраиваемая роль.",
+ "failed": "Необходимо настроить \"{0}\"",
+ "roles": "Выберите по меньшей мере одну роль",
+ "usersGroups": "Выберите по меньшей мере одного пользователя или одну группу"
+ },
+ "learnMore": "Управляйте доступом в зависимости от того, к кому будет применяться политика, например к пользователям и группам, удостоверениям рабочей нагрузки, ролям каталогов или внешним гостям."
+ },
+ "ValidationResult": {
+ "blockEveryonePolicy": "Конфигурация политики не поддерживается. Ознакомьтесь с назначениями и механизмами управления.",
+ "invalidApplicationCondition": "Выбраны недопустимые облачные приложения",
+ "invalidClientTypesCondition": "Выбраны недопустимые клиентские приложения",
+ "invalidConditions": "Назначения не выбраны",
+ "invalidControls": "Выбраны недопустимые элементы управления",
+ "invalidDevicePlatformsCondition": "Выбраны недопустимые платформы устройств",
+ "invalidDevicesCondition": "Недопустимая конфигурация устройства. Вероятно, конфигурация \"{0}\" является недопустимой.",
+ "invalidGrantControlPolicy": "Недопустимое предоставление управления",
+ "invalidLocationsCondition": "Выбраны недопустимые расположения",
+ "invalidPolicy": "Назначения не выбраны",
+ "invalidSessionControlPolicy": "Недопустимое управление сеансом",
+ "invalidSignInRisksCondition": "Выбран недопустимый риск, связанный с входом",
+ "invalidUserRisksCondition": "Выбран недопустимый риск для пользователя",
+ "invalidUsersCondition": "Выбраны недопустимые пользователи",
+ "mamPolicyShouldOnlyTargetAndroidOrIosPlatforms": "Политика MAM может применяться к только клиентским платформам Android и iOS.",
+ "notSupportedCombination": "Конфигурация политики не поддерживается. Подробности о поддерживаемых политиках.",
+ "pending": "Проверка политики",
+ "requireComplianceEveryonePolicy": "Конфигурация политики потребует соответствия устройств всех пользователей требованиям. Проверьте выбранные назначения.",
+ "success": "Допустимая политика"
+ },
+ "VpnCert": {
+ "Grid": {
+ "aria": "Список сертификатов VPN"
+ }
+ },
+ "WarningsInfo": {
+ "Controls": {
+ "compliantDeviceEnabled": "Не заблокируйте себя! Убедитесь, что ваше устройство соответствует требованиям.",
+ "domainJoinedDeviceEnabled": "Не заблокируйте себя! Убедитесь, что ваше устройство является устройством с гибридным присоединением к Azure AD.",
+ "exchangeDisabled": "Exchange ActiveSync поддерживает только элементы управления \"Соответствующее устройство\" и \"Утвержденное клиентское приложение\". Щелкните, чтобы узнать больше.",
+ "exchangeDisabled2": "Exchange ActiveSync поддерживает только элементы управления \"Соответствующее устройство\", \"Утвержденное клиентское приложение\" и \"Соответствующее клиентское приложение\". Щелкните здесь, чтобы узнать больше.",
+ "notAvailableForSP": "Некоторые элементы управления недоступны из-за выбора \"{0}\" при назначении политики",
+ "requireAuthOrMfa": "\"{0}\" не может использоваться с \"{1}\".",
+ "requireMfa": "Попробуйте протестировать новую общедоступную предварительную версию \"{0}\"",
+ "requirePasswordChangeEnabled": "Вариант \"Требовать изменения пароля\" можно использовать только при назначении политики всем облачным приложениям."
+ },
+ "Policies": {
+ "Linux": {
+ "devicePlatformsReportOnlyPolicy": "Политики в режиме только для отчета, которые требуют соответствия устройств, могут предлагать пользователям macOS, iOS, Android и Linux выбрать сертификат устройства.",
+ "excludeDevicePlatforms": "Исключите платформы устройств macOS, iOS, Android и Linux из этой политики.",
+ "proceedAnywayDevicePlatforms": "Продолжить с выбранной конфигурацией. При проверке устройства на соответствие требованиям пользователи macOS, iOS, Android и Linux могут получать запросы."
+ },
+ "blockCurrentUserPolicy": "Не заблокируйте себя! Рекомендуем сначала применить политику к небольшому числу пользователей, чтобы проверить ее действие. Также рекомендуем исключить из нее хотя бы одного администратора. Тогда вы гарантируете себе возможность доступа к политике и, при необходимости, ее изменения. Просмотрите затронутых пользователей и приложения.",
+ "devicePlatformsReportOnlyPolicy": "Политики в режиме только для отчета, которые требуют соответствия устройств, могут предлагать пользователям macOS, iOS и Android выбрать сертификат устройства.",
+ "excludeCurrentUserSelection": "Текущий пользователь ({0}) будет исключен из этой политики.",
+ "excludeDevicePlatforms": "Исключите платформы устройств macOS, iOS и Android из этой политики.",
+ "proceedAnywayDevicePlatforms": "Продолжить с выбранной конфигурацией. При проверке устройства на соответствие требованиям пользователи macOS, iOS и Android могут получать запросы.",
+ "proceedAnywaySelection": "Я понимаю, что эта политика затронет мою учетную запись. Все равно продолжить."
+ },
+ "ServicePrincipals": {
+ "blockExchange": "Выбор Office 365 Exchange Online также повлияет на такие приложения, как OneDrive и Teams.",
+ "blockPortal": "Не заблокируйте себя! Эта политика затронет портал Azure. Прежде чем продолжить, убедитесь, что вы или другой пользователь сможете вернуться на портал.",
+ "blockPortalWithSession": "Не лишите себя доступа! Эта политика применяется к порталу Azure. Прежде чем продолжить, убедитесь в том, что вы или другой пользователь сможете вернуться на портал.
Не обращайте внимания на это предупреждение, если вы настраиваете политику постоянных сеансов браузера, которая действует правильно только при выборе варианта \"Все облачные приложения\".",
+ "blockSharePoint": "Выбор SharePoint Online затронет также такие приложения, как Microsoft Teams, Planner, Delve, MyAnalytics и Newsfeed.",
+ "blockSkype": "Выбор Skype для бизнеса Online также повлияет на Microsoft Teams.",
+ "includeOrExclude": "Фильтр приложений можно настроить для \"{0}\" или \"{1}\", но не для обоих параметров.",
+ "selectAppsNAForSP": "Невозможно выбрать отдельные облачные приложения из-за выбора \"{0}\" в назначении политики",
+ "teamsBlocked": "Включение в политику таких приложений, как SharePoint Online и Exchange Online, также затронет Microsoft Teams."
+ },
+ "Users": {
+ "blockAllUsers": "Не заблокируйте себя! Эта политика затрагивает всех пользователей. Политику рекомендуется применить сначала к небольшому числу пользователей, чтобы проверить ее поведение."
+ }
+ },
+ "WhatIf": {
+ "Device": {
+ "AttributesGrid": {
+ "aria": "Список атрибутов на устройстве, примененном при входе.",
+ "infoBalloon": "Список атрибутов на устройстве, примененном при входе."
+ }
+ }
+ },
+ "advancedTabText": "Дополнительно",
+ "allCloudAppsErrorBox": "Если выбрано предоставление разрешения \"Требовать изменения пароля\", необходимо выбрать \"Все облачные приложения\".",
+ "allCloudAppsReauth": "Если выбран элемент управления сеансом \"Частота входа (каждый раз)\" и условие \"Риск входа\", необходимо выбрать \"Все облачные приложения\"",
+ "allCloudOrSpecificApps": "Для элемента управления сеансом \"Частота входа (каждый раз)\" требуется выбрать \"Все облачные приложения\" или специально поддерживаемые приложения",
+ "allDayCheckboxLabel": "Весь день",
+ "allDevicePlatforms": "Любое устройство",
+ "allGuestUserInfoContent": "Включает гостей Azure AD B2B, но не гостей SharePoint B2B",
+ "allGuestUserLabel": "Все гости и внешние пользователи",
+ "allRiskLevelsOption": "Все уровни рисков",
+ "allTrustedLocationLabel": "Все надежные расположения",
+ "allUserGroupSetSelectorLabel": "Все выбранные пользователи и группы",
+ "allUsersReauth": "Для элемента управления сеансом \"Частота входа (каждый раз)\" требуется выбрать \"Все пользователи\"",
+ "allUsersString": "Все пользователи",
+ "and": "{0} И {1} ",
+ "andWithGrouping": "({0}) и {1} ",
+ "androidDisplayName": "Android",
+ "anyCloudAppSelection": "Любое приложение облака",
+ "appContextOptionInfoContent": "Тег запрошенной проверки подлинности",
+ "appContextOptionLabel": "Запрошенный тег проверки подлинности (предварительная версия)",
+ "appContextUriPlaceholder": "Пример: uri:contoso.com:level3",
+ "appEnforceInfoBubble": "Ограничения, применяемые приложением, могут требовать дополнительной настройки администратором в случае облачных приложений. Ограничения будут действовать только для новых сеансов.",
+ "appNotSetSeletorLabel": "Выбрано 0 облачных приложений",
+ "applyConditionClientAppInfoBalloonContent": "Настроить применение политики к определенным клиентским приложениям",
+ "applyConditionDevicePlatformInfoBalloonContent": "Настроить применение политики к определенным платформам устройств",
+ "applyConditionDeviceStateInfoBalloonContent": "Настроить применение политики к определенным состояниям устройств",
+ "applyConditionLocationInfoBalloonContent": "Настроить применение политики к надежным и ненадежным расположениям",
+ "applyConditionSigninRiskInfoBalloonContent": "Настроить применение политики к выбранным уровням риска для входа",
+ "applyConditionUserRiskInfoBalloonContent": "Настройте применение политики для выбранных уровней пользовательского риска",
+ "applyConditonLabel": "Настроить",
+ "ariaLabelPolicyDisabled": "Политика отключена",
+ "ariaLabelPolicyEnabled": "Политика включена",
+ "ariaLabelPolicyReportOnly": "Политика находится в режиме \"Только отчет\"",
+ "blockAccess": "Блокировка доступа",
+ "builtInDirectoryRoleLabel": "Встроенные роли каталога",
+ "casCustomControlInfo": "Необходимо настроить пользовательские политики на портале Cloud App Security. Этот элемент управления сразу же работает для популярных приложений, и его можно подключить к любому приложению. Щелкните здесь, чтобы получить дополнительные сведения о каждом из этих сценариев.",
+ "casInfoBubble": "Этот элемент управления можно использовать в разных облачных приложениях.",
+ "casPreconfiguredControlInfo": "Этот элемент управления сразу же работает для популярных приложений, и его можно подключить к любому приложению. Щелкните здесь, чтобы получить дополнительные сведения о каждом из этих сценариев.",
+ "cert64DownloadCol": "Скачать сертификат Base64",
+ "cert64Name": "VpnBase64Cert",
+ "certDownloadCol": "Скачать сертификат",
+ "certDurationCol": "Срок действия",
+ "certDurationStartCol": "Действителен с",
+ "certName": "VpnCert",
+ "certainApps": "Только определенные приложения поддерживаются для параметра \"Частота входа (каждый раз)\", если не выбраны разрешения \"Требовать многофакторную проверку подлинности\" и \"Требовать смену пароля\"",
+ "chooseApplicationsBladeSubtitle": "",
+ "chooseApplicationsBladeTitle": "Выбор приложений",
+ "chooseApplicationsCartSubitle": "",
+ "chooseApplicationsCartTitle": "Выбранные приложения",
+ "chooseApplicationsEmpty": "Нет приложений",
+ "chooseApplicationsNone": "Нет",
+ "chooseApplicationsNoneFound": "Не удалось найти \"{0}\". Попробуйте использовать другое имя или идентификатор.",
+ "chooseApplicationsPlural": "{0} и еще {1}",
+ "chooseApplicationsReAuthEverytimeInfo": "Ищете приложение? Некоторые приложения нельзя использовать с элементом управления сеанса \"Каждый раз требовать повторной проверки подлинности\"",
+ "chooseApplicationsRemove": "Удалить",
+ "chooseApplicationsReturnedPlural": "Найдено приложений: {0}.",
+ "chooseApplicationsReturnedSingular": "Найдено одно приложение.",
+ "chooseApplicationsSearchBalloon": "Поиск приложения по имени или идентификатору.",
+ "chooseApplicationsSearchHint": "Поиск приложений...",
+ "chooseApplicationsSearchLabel": "Приложения",
+ "chooseApplicationsSearching": "Идет поиск...",
+ "chooseApplicationsSelect": "Выбрать",
+ "chooseApplicationsSelected": "Выбрано",
+ "chooseApplicationsSingular": "{0} и еще 1",
+ "chooseApplicationsTooMany": "Результатов больше, чем может быть отображено. Выполните фильтрацию при помощи поля поиска.",
+ "chooseLocationCorpnetItem": "Корпоративная сеть",
+ "chooseLocationSelectedLocationsLabel": "Выбранные расположения",
+ "chooseLocationTrustedIpsItem": "Надежные IP-адреса MFA",
+ "chooseLocationsBladeSubtitle": "",
+ "chooseLocationsBladeTitle": "Выбор расположений",
+ "chooseLocationsCartSubitle": "",
+ "chooseLocationsCartTitle": "Выбранные расположения",
+ "chooseLocationsEmpty": "Расположений нет",
+ "chooseLocationsExcludedSelectorTitle": "Выбрать",
+ "chooseLocationsIncludedSelectorTitle": "Выбрать",
+ "chooseLocationsNone": "Нет",
+ "chooseLocationsNoneFound": "Не удалось найти \"{0}\". Попробуйте использовать другое имя или идентификатор.",
+ "chooseLocationsPlural": "{0} и еще {1}",
+ "chooseLocationsRemove": "Удалить",
+ "chooseLocationsReturnedPlural": "Найдено расположений: {0}",
+ "chooseLocationsReturnedSingular": "Найдено одно расположение.",
+ "chooseLocationsSearchBalloon": "Поиск расположения по имени.",
+ "chooseLocationsSearchHint": "Поиск расположений...",
+ "chooseLocationsSearchLabel": "Расположение",
+ "chooseLocationsSearching": "Идет поиск...",
+ "chooseLocationsSelect": "Выбрать",
+ "chooseLocationsSelected": "Выбрано",
+ "chooseLocationsSelectionBladeExcludedSelectorTitle": "Выбрать",
+ "chooseLocationsSelectionBladeIncludedSelectorTitle": "Выбрать",
+ "chooseLocationsSingular": "{0} и еще 1",
+ "chooseLocationsTooMany": "Результатов больше, чем может быть отображено. Выполните фильтрацию при помощи поля поиска.",
+ "claimProviderAddCommandText": "Новый настраиваемый элемент управления",
+ "claimProviderAddNewBladeTitle": "Новый настраиваемый элемент управления",
+ "claimProviderDeleteCommand": "Удалить",
+ "claimProviderDeleteDescription": "Вы действительно хотите удалить сеть \"{0}\"? Это действие невозможно отменить.",
+ "claimProviderDeleteTitle": "Вы уверены?",
+ "claimProviderEditInfoText": "Введите JSON для настраиваемых элементов управления, предоставленных поставщиками утверждений.",
+ "claimProviderNotificationCreateDescription": "Создается настраиваемый элемент управления \"{0}\"",
+ "claimProviderNotificationCreateFailedDescription": "Произошел сбой при создании настраиваемого элемента управления \"{0}\". Повторите попытку позже.",
+ "claimProviderNotificationCreateFailedTitle": "Не удалось создать настраиваемый элемент управления",
+ "claimProviderNotificationCreateSuccessDescription": "Создан настраиваемый элемент управления \"{0}\"",
+ "claimProviderNotificationCreateSuccessTitle": "Создана сеть \"{0}\"",
+ "claimProviderNotificationCreateTitle": "Идет создание сети \"{0}\"",
+ "claimProviderNotificationDeleteDescription": "Удаляется настраиваемый элемент управления \"{0}\"",
+ "claimProviderNotificationDeleteFailedDescription": "Произошел сбой при удалении настраиваемого элемента управления \"{0}\". Повторите попытку позже.",
+ "claimProviderNotificationDeleteFailedTitle": "Не удалось удалить настраиваемый элемент управления",
+ "claimProviderNotificationDeleteSuccessDescription": "Удален настраиваемый элемент управления \"{0}\"",
+ "claimProviderNotificationDeleteSuccessTitle": "Сеть \"{0}\" удалена.",
+ "claimProviderNotificationDeleteTitle": "Идет удаление \"{0}\"",
+ "claimProviderNotificationUpdateDescription": "Обновляется настраиваемый элемент управления \"{0}\"",
+ "claimProviderNotificationUpdateFailedDescription": "Произошел сбой при обновлении настраиваемого элемента управления \"{0}\". Повторите попытку позже.",
+ "claimProviderNotificationUpdateFailedTitle": "Не удалось обновить настраиваемый элемент управления",
+ "claimProviderNotificationUpdateSuccessDescription": "Обновлен настраиваемый элемент управления \"{0}\"",
+ "claimProviderNotificationUpdateSuccessTitle": "Сеть \"{0}\" изменена.",
+ "claimProviderNotificationUpdateTitle": "Идет обновление сети \"{0}\".",
+ "claimProviderValidationAppIdInvalid": "Значение \"AppId\" недопустимо. Проверьте и повторите попытку.",
+ "claimProviderValidationClientIdMissing": "В данных отсутствует значение \"ClientId\". Проверьте и повторите попытку.",
+ "claimProviderValidationControlClaimsRequestedMissing": "В \"Control\" отсутствует значение \"ClaimsRequested\". Проверьте и повторите попытку.",
+ "claimProviderValidationControlClaimsRequestedTypeMissing": "В элементе \"ClaimsRequested\" отсутствует значение \"Type\". Проверьте и повторите попытку.",
+ "claimProviderValidationControlIdAlreadyExists": "Значение \"Id\" для \"Control\" уже существует. Проверьте и повторите попытку.",
+ "claimProviderValidationControlIdMissing": "В \"Control\" отсутствует значение \"Id\". Проверьте и повторите попытку.",
+ "claimProviderValidationControlIdReferencedInExistingPolicy": "Значение \"Id\" для \"Control\" невозможно удалить, так как на него ссылается существующая политика. Сначала удалите его из политики.",
+ "claimProviderValidationControlIdTooManyControls": "Свойство \"Control\" содержит слишком много элементов управления. Проверьте его и повторите попытку.",
+ "claimProviderValidationControlIdValueReserved": "Значение \"Id\" для \"Control\" является зарезервированным ключевым словом; используйте другой идентификатор.",
+ "claimProviderValidationControlNameAlreadyExists": "Значение \"Name\" для \"Control\" уже существует. Проверьте и повторите попытку.",
+ "claimProviderValidationControlNameMissing": "В \"Control\" отсутствует значение \"Name\". Проверьте и повторите попытку.",
+ "claimProviderValidationControlsMissing": "В данных отсутствует значение \"Controls\". Проверьте и повторите попытку.",
+ "claimProviderValidationDiscoveryUrlMissing": "В данных отсутствует значение \"DiscoveryUrl\". Проверьте и повторите попытку.",
+ "claimProviderValidationInvalid": "Предоставленные данные недопустимы. Проверьте и повторите попытку.",
+ "claimProviderValidationInvalidJsonDefinition": "Не удалось сохранить настраиваемый элемент управления. Проверьте текст JSON и повторите попытку.",
+ "claimProviderValidationNameAlreadyExists": "Значение \"Name\" уже существует. Проверьте и повторите попытку.",
+ "claimProviderValidationNameMissing": "В данных отсутствует значение \"Name\". Проверьте и повторите попытку.",
+ "claimProviderValidationUnknown": "Произошла неизвестная ошибка при проверке предоставленных данных. Проверьте и повторите попытку.",
+ "claimProvidersNone": "Нет настраиваемых элементов управления",
+ "claimProvidersSearchPlaceholder": "Поиск элементов управления.",
+ "classicPoilcyFilterTitle": "Показать",
+ "classicPolicyAllPlatforms": "Все платформы",
+ "classicPolicyClientAppBrowserAndNative": "Браузер, мобильные приложения и клиенты для настольных ПК",
+ "classicPolicyCloudAppTitle": "Облачное приложение",
+ "classicPolicyControlAllow": "Разрешить",
+ "classicPolicyControlBlock": "Заблокировать",
+ "classicPolicyControlBlockWhenNotAtWork": "Блокировать доступ, если не на работе",
+ "classicPolicyControlRequireCompliantDevice": "Требовать соответствующее устройство",
+ "classicPolicyControlRequireDomainJoinedDevice": "Требуется устройство, присоединенное к домену",
+ "classicPolicyControlRequireMfa": "Требовать многофакторную проверку подлинности",
+ "classicPolicyControlRequireMfaWhenNotAtWork": "Требовать многофакторную проверку подлинности, если не на работе",
+ "classicPolicyDeleteCommand": "Удалить",
+ "classicPolicyDeleteFailTitle": "Не удалось удалить классическую политику",
+ "classicPolicyDeleteInProgressTitle": "Удаление классической политики",
+ "classicPolicyDeleteSuccessTitle": "Классическая политика удалена",
+ "classicPolicyDetailBladeTitle": "Подробности",
+ "classicPolicyDisableCommand": "Отключить",
+ "classicPolicyDisableConfirmation": "Действительно отключить \"{0}\"? Это действие невозможно отменить.",
+ "classicPolicyDisableFailDescription": "Не удалось отключить политику \"{0}\"",
+ "classicPolicyDisableFailTitle": "Не удалось отключить классическую политику",
+ "classicPolicyDisableInProgressDescription": "Отключение политики \"{0}\"",
+ "classicPolicyDisableInProgressTitle": "Отключение классической политики",
+ "classicPolicyDisableSuccessDescription": "Политика \"{0}\" отключена",
+ "classicPolicyDisableSuccessTitle": "Классическая политика отключена",
+ "classicPolicyEasSupportedPlatforms": "Поддерживаемые платформы Exchange ActiveSync",
+ "classicPolicyEasUnsupportedPlatforms": "Неподдерживаемые платформы Exchange ActiveSync",
+ "classicPolicyExcludedPlatformsTitle": "Исключенные платформы устройств",
+ "classicPolicyFilterAll": "Все политики",
+ "classicPolicyFilterDisabled": "Отключенные политики",
+ "classicPolicyFilterEnabled": "Включенные политики",
+ "classicPolicyIncludeExcludeMembersDescription": "Исключая группы, вы можете выполнить поэтапный перенос политик.",
+ "classicPolicyIncludeExcludeMembersTitle": "Включение и исключение групп",
+ "classicPolicyIncludedPlatformsTitle": "Включенные платформы устройств",
+ "classicPolicyManualMigrationMessage": "Эту политику необходимо перенести вручную.",
+ "classicPolicyMigrateCommand": "Перенос",
+ "classicPolicyMigrateConfirmation": "Действительно выполнить миграцию \"{0}\"? Эту политику можно перенести только один раз.",
+ "classicPolicyMigrateFailDescription": "Не удалось перенести \"{0}\"",
+ "classicPolicyMigrateFailTitle": "Не удалось перенести классическую политику",
+ "classicPolicyMigrateInProgressDescription": "Миграция \"{0}\"...",
+ "classicPolicyMigrateInProgressTitle": "Перенос классической политики",
+ "classicPolicyMigrateRecommendText": "Рекомендация: перейдите на новые политики портала Azure.",
+ "classicPolicyMigrateSuccessTitle": "Классическая политика перенесена",
+ "classicPolicyMigratedSuccessDescription": "Теперь этой классической политикой можно управлять в разделе \"Политики\".",
+ "classicPolicyMigratedSuccessDescriptionMultiple": "Эта классическая политика переносится в виде нескольких новых политик ({0}). Новыми политиками можно управлять в разделе \"Политики\".",
+ "classicPolicyNoEditPermissionMsg": "У вас нет разрешения на изменение этой политики. Только глобальные администраторы и администраторы безопасности могут изменять политику. Щелкните здесь, чтобы получить дополнительные сведения.",
+ "classicPolicySaveFailDescription": "Не удалось сохранить политику \"{0}\"",
+ "classicPolicySaveFailTitle": "Не удалось сохранить классическую политику",
+ "classicPolicySaveInProgressDescription": "Сохранение политики \"{0}\"",
+ "classicPolicySaveInProgressTitle": "Сохранение классической политики",
+ "classicPolicySaveSuccessDescription": "Политика \"{0}\" сохранена",
+ "classicPolicySaveSuccessTitle": "Классическая политика сохранена",
+ "clientAppBladeLegacyInfoBanner": "Устаревший способ проверки подлинности сейчас не поддерживается.",
+ "clientAppBladeLegacyUpsellBanner": "Блокировка неподдерживаемых клиентских приложений (предварительная версия)",
+ "clientAppBladeTitle": "Клиентские приложения",
+ "clientAppDescription": "Выберите клиентские приложения, на которые будет распространяться эта политика.",
+ "clientAppExchangeActiveSync": "Exchange ActiveSync",
+ "clientAppExchangeDisabledInfo": "Exchange ActiveSync доступен, если Exchange Online — единственное выбранное облачное приложение. Щелкните, чтобы узнать больше.",
+ "clientAppExchangeWarning": "Exchange ActiveSync сейчас не поддерживает все остальные условия.",
+ "clientAppLearnMore": "Управляйте доступом пользователей к определенным клиентским приложениям, не использующим современную проверку подлинности.",
+ "clientAppLegacyHeader": "Клиенты с устаревшими версиями проверки подлинности",
+ "clientAppMobileDesktop": "Мобильные приложения и настольные клиенты",
+ "clientAppModernHeader": "Клиенты с современной проверкой подлинности",
+ "clientAppOnlySupportedPlatforms": "Применить политику только к поддерживаемым платформам",
+ "clientAppSelectSpecificClientApps": "Выбрать клиентские приложения",
+ "clientAppV2BladeTitle": "Клиентские приложения (предварительная версия)",
+ "clientAppWebBrowser": "Браузер",
+ "clientAppsSelectedLabel": "Включено: {0}",
+ "clientTypeBrowser": "Браузер",
+ "clientTypeEas": "Клиенты Exchange ActiveSync",
+ "clientTypeEasInfo": "Клиенты Exchange ActiveSync, использующие только устаревшую проверку подлинности.",
+ "clientTypeModernAuth": "Клиенты с современной проверкой подлинности",
+ "clientTypeOtherClients": "Другие клиенты",
+ "clientTypeOtherClientsInfo": "Сюда входят старые офисные клиенты и другие протоколы электронной почты (POP, IMAP, SMTP и т. д.). [Дополнительные сведения][1]\n[1]: https://aka.ms/caclientapps\n",
+ "cloudAppCountDiffBannerText": "Из каталога удалены облачные приложения ({0}), настроенные в этой политике, но это не затронет другие ее приложения. Удаление из политики произойдет автоматически при следующем изменении ее раздела приложений.",
+ "cloudAppsSelectionBladeAllMicrosoftApps": "Все приложения Майкрософт",
+ "cloudAppsSelectionExcludeAllMicrosoftClients": "Разрешить облачные, классические и мобильные приложения Майкрософт (предварительная версия)",
+ "cloudappsSelectionBladeAllCloudapps": "Все облачные приложения",
+ "cloudappsSelectionBladeExcludeDescription": "Выбор облачных приложений, которые будут исключены из политики.",
+ "cloudappsSelectionBladeExcludedSelectorTitle": "Выбрать исключенные облачные приложения",
+ "cloudappsSelectionBladeIncludeDescription": "Выбрать облачные приложения, к которым будет применяться эта политика",
+ "cloudappsSelectionBladeIncludedSelectorTitle": "Выбрать",
+ "cloudappsSelectionBladeSelectedCloudapps": "Выбрать приложения",
+ "cloudappsSelectorInfoBallonText": "Службы, которые пользователь использует для работы. Например, Salesforce.",
+ "cloudappsSelectorPluralExcluded": "Исключено приложений: {0}",
+ "cloudappsSelectorPluralIncluded": "Включено приложений: {0}",
+ "cloudappsSelectorSingularExcluded": "Исключено 1 приложение",
+ "cloudappsSelectorSingularIncluded": "Включено 1 приложение",
+ "cloudappsSelectorUserPlural": "Приложений: {0}",
+ "cloudappsSelectorUserSingular": "1 приложение",
+ "conditionLabelMulti": "Выбрано условий: {0}",
+ "conditionLabelOne": "1 условие выбрано",
+ "conditionalAccessBladeTitle": "Условный доступ",
+ "conditionsNotSelectedLabel": "Не настроено",
+ "conditionsReqMfaReauthSet": "Некоторые параметры недоступны из-за того, что сейчас выбрано разрешение \"Требовать многофакторную проверку подлинности\" и элемент управления сеансом \"Частота входа (каждый раз)\"",
+ "conditionsReqPwSet": "Некоторые варианты недоступны, так как сейчас выбрано предоставление разрешения \"Требовать изменения пароля\".",
+ "configureCasText": "Настроить Cloud App Security",
+ "configureCustomControlsText": "Настроить пользовательскую политику",
+ "controlLabelMulti": "Выбрано элементов управления: {0}",
+ "controlLabelOne": "1 элемент управления выбран",
+ "controlValidatorText": "Выберите по меньшей мере один элемент управления",
+ "controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
+ "controlsDeviceComplianceAriaLabel": "Дополнительные сведения о требовании совместимых устройств.",
+ "controlsDeviceComplianceInfoBubble": "Устройство должно соответствовать политике Intune. Если устройство не соответствует ей, пользователя попросят привести его в соответствие с требованиями.",
+ "controlsDomainJoinedAriaLabel": "Дополнительные сведения о требовании гибридных устройств, присоединенных к Azure AD.",
+ "controlsDomainJoinedInfoBubble": "Устройства должны быть устройствами с гибридным присоединением к Azure AD.",
+ "controlsMamAriaLabel": "Дополнительные сведения об обязательном использовании утвержденных клиентских приложений.",
+ "controlsMamInfoBubble": "Устройство должно использовать следующие утвержденные клиентские приложения.",
+ "controlsMfaInfoBubble": "Пользователь должен выполнить дополнительные требования безопасности, такие как телефонный звонок, SMS.",
+ "controlsOrAndInfoBubble": "ControlsOrAndInfoBubble",
+ "controlsRequireCompliantAppAriaLabel": "Дополнительные сведения о требовании приложений, защищенных политикой.",
+ "controlsRequireCompliantAppInfoBubble": "На устройстве следует использовать приложения, защищенные политикой.",
+ "controlsRequirePasswordResetAriaLabel": "Дополнительные сведения о необходимости смены пароля.",
+ "controlsRequirePasswordResetInfoBubble": "Требование изменения пароля для снижения пользовательского риска. Этот вариант также требует многофакторной проверки подлинности. Использовать другие элементы управления невозможно.",
+ "countriesRadiobuttonInfoBalloonContent": "Страна или регион, откуда выполняется вход, определяются по IP-адресу пользователя.",
+ "createNewVpnCert": "Новый сертификат",
+ "createdTimeLabel": "Время создания",
+ "customRoleLabel": "Настраиваемые роли (не поддерживаются)",
+ "dateRangeTypeLabel": "Диапазон дат",
+ "daysOfWeekPlaceholderText": "Фильтр по дням недели",
+ "daysOfWeekTypeLabel": "Дни недели",
+ "deletePolicyNoLicenseText": "Теперь вы можете удалить эту политику. После удаления вы не сможете создать ее повторно, если у вас нет необходимых лицензий.",
+ "descriptionContentForControlsAndOr": "Для нескольких элементов управления",
+ "devicePlatform": "Платформа устройства",
+ "devicePlatformConditionHelpDescription": "Применение политики к выбранным платформам устройств.\n[Дополнительные сведения][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2044750",
+ "devicePlatformInclude": "Включено: {0}",
+ "devicePlatformIncludeExclude": "Исключены: {0} и {1}",
+ "devicePlatformNoSelectionError": "Для выбора платформ устройств требуется выбрать один вложенный элемент.",
+ "devicePlatformsNone": "Нет",
+ "deviceSelectionBladeExcludeDescription": "Выбор платформ, которые будут исключены из политики.",
+ "deviceSelectionBladeIncludeDescription": "Выбрать платформы устройств, включаемые в эту политику",
+ "deviceStateAll": "Все состояния устройств",
+ "deviceStateCompliant": "Устройство, отмеченное как соответствующее требованиям",
+ "deviceStateCompliantInfoContent": "Устройства, совместимые с Intune, будут исключены из оценки этой политики, поэтому, например, если политика блокирует доступ, она заблокирует все устройства, кроме совместимых с Intune.",
+ "deviceStateConditionConfigureInfoContent": "Настроить политику на основе состояния устройства",
+ "deviceStateConditionSelectorInfoContent": "Определяет состояние устройства, с которого входит пользователь: \\\"с гибридным присоединением к Azure AD\\\" или \\\"помеченное как соответствующее требованиям\\\".\n Этот параметр не рекомендуется. Вместо этого используйте \\\"{1}\\\".",
+ "deviceStateConditionSelectorLabel": "Состояние устройства (не рекомендуется)",
+ "deviceStateDomainJoined": "Устройство с гибридным присоединением к Azure AD",
+ "deviceStateDomainJoinedInfoContent": "Устройства с гибридным присоединением к Azure AD не будут проверяться на соответствие этой политике. Например, если политика блокирует доступ, она будет делать это для всех устройств, кроме этих.",
+ "deviceStateDomainJoinedInfoLinkText": "Дополнительные сведения.",
+ "deviceStateExcludeDescription": "Выберите условие состояния устройства, используемое для исключения устройств из политики.",
+ "deviceStateIncludeAndExcludeOneLabel": "{0} и исключить {1}",
+ "deviceStateIncludeAndExcludeTwoLabel": "{0} и исключить {1}, {2}",
+ "directoryRoleInfoContent": "Назначьте политику для встроенных ролей каталога.",
+ "directoryRolesLabel": "Роли каталога",
+ "discardbutton": "Отменить",
+ "downloadDefaultFileName": "Диапазоны IP-адресов",
+ "downloadExampleFileName": "Пример",
+ "downloadExampleHeader": "Это пример файла, в котором демонстрируются типы данных, которые могут быть приняты. Строки, начинающиеся с символа #, будут пропущены.",
+ "endDatePickerLabel": "Элементы",
+ "endTimePickerLabel": "Время окончания",
+ "enterCountryText": "IP-адрес и страна проверяются в паре. Выберите страну.",
+ "enterIpText": "IP-адрес и страна проверяются в паре. Введите IP-адрес.",
+ "enterUserText": "Нет выбранных пользователей. Выберите пользователя.",
+ "evaluationResult": "Результат вычисления",
+ "exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
+ "exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Только Exchange ActiveSync с поддерживаемыми платформами",
+ "excludeAllTrustedLocationSelectorText": "все надежные расположения",
+ "featureRequiresP2": "Для этой функции требуется лицензия Azure AD Premium 2.",
+ "friday": "Пятница",
+ "grantControls": "Предоставить управление",
+ "gridNetworkTrusted": "Надежный",
+ "gridPolicyCreatedDateTime": "Дата создания",
+ "gridPolicyEnabled": "Включено",
+ "gridPolicyModifiedDateTime": "Дата изменения",
+ "gridPolicyName": "Имя политики",
+ "gridPolicyState": "Состояние",
+ "groupSelectionBladeExcludeDescription": "Выбор групп, которые будут исключены из политики",
+ "groupSelectionBladeExcludedSelectorTitle": "Выбор исключенных групп",
+ "groupSelectionBladeSelect": "Выбор групп",
+ "groupSelectorInfoBallonText": "Группы в каталоге, к которому применяется политика. Например, \"пилотная группа\"",
+ "groupsSelectionBladeTitle": "Группы",
+ "helpCommonScenariosText": "Хотите узнать о распространенных ситуациях?",
+ "helpCondition1": "Когда любой пользователь вне сети компании",
+ "helpCondition2": "Когда пользователи в группе \"Менеджеры\" входят",
+ "helpConditionsTitle": "Условия",
+ "helpControl1": "При входе от них требуется пройти многофакторную идентификацию.",
+ "helpControl2": "Они должны использовать устройство, присоединенное к домену и соответствующее требованиям Intune.",
+ "helpControlsTitle": "Элементы управления",
+ "helpIntroText": "Условный доступ позволяет требовать соблюдение определенных условий в отношении доступа, когда удовлетворяется определенный критерий. Приведем несколько примеров.",
+ "helpIntroTitle": "Что представляет собой условный доступ?",
+ "helpLearnMoreText": "Хотите узнать больше об условном доступе?",
+ "helpStartStep1": "Создайте первую политику, щелкнув \"+ Новая политика\"",
+ "helpStartStep2": "Укажите условия и механизмы контроля для политики",
+ "helpStartStep3": "Когда все сделаете, не забудьте включить политику и создать",
+ "helpStartTitle": "Начало работы",
+ "highRisk": "Высокая",
+ "includeAndExcludeAppsTextFormat": "Включить: {0}. Исключить: {1}.",
+ "includeAppsTextFormat": "Включить: {0}.",
+ "includeUnknownAreasCheckboxInfoBalloonContent": "Неизвестные области — это IP-адреса, которые невозможно сопоставить со страной или регионом.",
+ "includeUnknownAreasCheckboxLabel": "Включить неизвестные области",
+ "infoCommandLabel": "Сведения",
+ "invalidCertDuration": "Недопустимый срок действия сертификата",
+ "invalidIpAddress": "Необходимо указать допустимый IP-адрес.",
+ "invalidUriErrorMsg": "Введите допустимый URI, например \"uri:contoso.com:acr\" ",
+ "iosDisplayName": "iOS",
+ "linuxDisplayName": "Linux",
+ "loadAll": "Загрузить все",
+ "loading": "Идет загрузка...",
+ "locationConfigureNamedLocationsText": "Настроить все надежные расположения",
+ "locationConfigureNamedLocationsUri": "{0}/usermanagement/mfasettings.aspx?tenantid={1}&culture={2}",
+ "locationNameTooLongError": "Слишком длинное имя расположения. Максимум — 256 символов",
+ "locationSelectionBladeExcludeDescription": "Выбор расположений, которые будут исключены из политики.",
+ "locationSelectionBladeIncludeDescription": "Выберите расположения, включаемые в эту политику",
+ "locationsAllLocationsLabel": "Любое местонахождение",
+ "locationsAllNamedLocationsLabel": "Все надежные IP-адреса",
+ "locationsAllPrivateLinksLabel": "Все частные каналы в моем клиенте",
+ "locationsIncludeExcludeLabel": "{0} и исключить все надежные IP-адреса",
+ "locationsSelectedPrivateLinksLabel": "Выбранные приватные каналы",
+ "lowRisk": "Низкий",
+ "macOsDisplayName": "macOS",
+ "managePoliciesLicenseText": "Для управления политиками условного доступа вашей организации требуется Azure AD Premium P1 или P2.",
+ "markAsTrustedCheckboxInfoBalloonContent": "Вход из надежного расположения снижает риск входа пользователя. Отмечайте это расположение как надежное, только если указанные диапазоны IP-адресов в организации хорошо известны и получены из достоверных источников.",
+ "markAsTrustedCheckboxLabel": "Отметить как надежное расположение",
+ "mediumRisk": "Средняя",
+ "memberSelectionCommandRemove": "Удалить",
+ "menuItemClaimProviderControls": "Настраиваемые элементы управления (предварительная версия)",
+ "menuItemClassicPolicies": "Классические политики",
+ "menuItemInsightsAndReporting": "Аналитические данные и отчеты",
+ "menuItemManage": "Управление",
+ "menuItemNamedLocationsPreview": "Именованные расположения (предварительная версия)",
+ "menuItemNamedNetworks": "Именованные расположения",
+ "menuItemPolicies": "Политики",
+ "menuItemTermsOfUse": "Условия использования",
+ "modifiedTimeLabel": "Время изменения",
+ "monday": "Понедельник",
+ "nameLabel": "Имя",
+ "namedLocationCountryInfoBanner": "Со странами и регионами сопоставляются только адреса IPv4. Адреса IPv6 включаются в неизвестные страны и регионы.",
+ "namedLocationTypeCountry": "Страны/регионы",
+ "namedLocationTypeLabel": "Задайте расположение, используя:",
+ "namedLocationUpsellBanner": "Использовать это представление не рекомендуется. Перейти к новому улучшенному представлению \"Именованные расположения\".",
+ "namedLocationsHelpDescription": "Именованные расположения используются отчетами о безопасности Microsoft Azure AD для сокращения числа ложноположительных результатов, а также политиками условного доступа Microsoft Azure AD.\n[Подробнее][1]\n[1]: https://aka.ms/namedlocationupdate",
+ "namedNetworkAddIpRanges": "Добавьте новый диапазон IP-адресов (например: 40.77.182.32/27)",
+ "namedNetworkCountryNeeded": "Нужно выбрать по меньшей мере одну страну",
+ "namedNetworkDeleteCommand": "Удалить",
+ "namedNetworkDeleteDescription": "Вы действительно хотите удалить сеть \"{0}\"? Это действие невозможно отменить.",
+ "namedNetworkDeleteTitle": "Вы уверены?",
+ "namedNetworkDownloadIpRange": "Скачать",
+ "namedNetworkInvalidRange": "Значение должно быть допустимым диапазоном IP-адресов.",
+ "namedNetworkIpRangeNeeded": "Требуется по меньшей мере один допустимый диапазон IP-адресов.",
+ "namedNetworkIpRangesDescriptionContent": "Настройка диапазонов IP-адресов организации",
+ "namedNetworkIpRangesTab": "Диапазоны IP-адресов",
+ "namedNetworkListAdd": "Создать расположение",
+ "namedNetworkListConfigureTrustedIps": "Настроить надежные IP-адреса MFA",
+ "namedNetworkNameDescription": "Пример: \"офис Redmond\"",
+ "namedNetworkNameInvalid": "Указанное имя недопустимо.",
+ "namedNetworkNameRequired": "Необходимо указать имя для этого расположения.",
+ "namedNetworkNoIpRanges": "Диапазоны IP-адресов отсутствуют",
+ "namedNetworkNotificationCreateDescription": "Создание расположения с именем \"{0}\"",
+ "namedNetworkNotificationCreateFailedDescription": "Сбой при создании расположения \"{0}\". Повторите попытку позже.",
+ "namedNetworkNotificationCreateFailedTitle": "Не удалось создать расположение",
+ "namedNetworkNotificationCreateSuccessDescription": "Создано расположение с именем \"{0}\"",
+ "namedNetworkNotificationCreateSuccessTitle": "Создана сеть \"{0}\"",
+ "namedNetworkNotificationCreateTitle": "Идет создание сети \"{0}\"",
+ "namedNetworkNotificationDeleteDescription": "Удаление расположения с именем \"{0}\"",
+ "namedNetworkNotificationDeleteFailedDescription": "Сбой при удалении расположения \"{0}\". Повторите попытку позже.",
+ "namedNetworkNotificationDeleteFailedTitle": "Не удалось удалить расположение",
+ "namedNetworkNotificationDeleteSuccessDescription": "Расположение с именем \"{0}\" удалено",
+ "namedNetworkNotificationDeleteSuccessTitle": "Сеть \"{0}\" удалена.",
+ "namedNetworkNotificationDeleteTitle": "Идет удаление \"{0}\"",
+ "namedNetworkNotificationUpdateDescription": "Изменение расположения с именем \"{0}\"",
+ "namedNetworkNotificationUpdateFailedDescription": "Сбой при изменении расположения \"{0}\". Повторите попытку позже.",
+ "namedNetworkNotificationUpdateFailedTitle": "Не удалось изменить расположение",
+ "namedNetworkNotificationUpdateSuccessDescription": "Расположение с именем \"{0}\" изменено",
+ "namedNetworkNotificationUpdateSuccessTitle": "Сеть \"{0}\" изменена.",
+ "namedNetworkNotificationUpdateTitle": "Идет обновление сети \"{0}\".",
+ "namedNetworkSearchPlaceholder": "Поиск расположений.",
+ "namedNetworkUploadFailedDescription": "Произошла ошибка при анализе предоставленного файла. Отправьте обычный текстовый файл со строками в формате CIDR.",
+ "namedNetworkUploadFailedTitle": "Не удалось проанализировать \"{0}\".",
+ "namedNetworkUploadInProgressDescription": "Выполняется попытка проанализировать допустимые значения CIDR из \"{0}\".",
+ "namedNetworkUploadInProgressTitle": "Анализируется \"{0}\"",
+ "namedNetworkUploadInvalidDescription": "\"{0}\" слишком велик или имеет недопустимый формат.",
+ "namedNetworkUploadInvalidTitle": "Недопустимый файл \"{0}\"",
+ "namedNetworkUploadIpRange": "Отправка",
+ "namedNetworkUploadSuccessDescription": "Проанализировано строк: {0}. В неправильном формате: {1}. Пропущено: {2}.",
+ "namedNetworkUploadSuccessTitle": "Завершен анализ \"{0}\"",
+ "namedNetworksAdd": "Новое именованное расположение",
+ "namedNetworksConditionHelpDescription": "Управление доступом пользователей на основе физического расположения.\n[Дополнительные сведения][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
+ "namedNetworksExcludeLabel": "Исключены: {0} и {1}",
+ "namedNetworksHelpDescription": "Именованные расположения используются отчетами о безопасности Microsoft Azure AD для сокращения числа ложноположительных результатов, а также политиками условного доступа Microsoft Azure AD.\n[Подробнее][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
+ "namedNetworksIncludeLabel": "Включено: {0}",
+ "namedNetworksNone": "Нет именованных расположений",
+ "namedNetworksTitle": "Настройка расположений",
+ "namednetworkExceedingSizeErrorBladeTitle": "Сведения об ошибке",
+ "namednetworkExceedingSizeErrorDetailText": "Для получения дополнительных сведений щелкните здесь.",
+ "namednetworkExceedingSizeErrorMessage": "Максимальный допустимый размер хранилища для именованных расположений превышен. Попробуйте сократить список. Для получения дополнительных сведений щелкните здесь.",
+ "needMfaSecondary": "Если выбран параметр \"Частота входа (каждый раз)\" с вариантом \"Только дополнительные методы проверки подлинности\", необходимо выбрать параметр \"Требовать многофакторную проверку подлинности\"",
+ "newCertName": "Новый сертификат",
+ "noAttributePermissionsError": "Недостаточно прав для создания или изменения политики. Чтобы добавить или изменить динамические фильтры, требуется роль читателя определений атрибутов.",
+ "noPolicyRowMessage": "Политик нет",
+ "noSPSelected": "Не выбран ни один субъект-служба",
+ "noUpdatePermissionMessage": "У вас нет разрешений для изменения этих параметров. Запросите доступ у глобального администратора.",
+ "noUserSelected": "Пользователи не выбраны",
+ "noneRisk": "Без риска",
+ "office365Description": "Эти приложения включают Microsoft Flow, Microsoft Forms, Microsoft Teams, Office 365 Exchange Online, Office 365 SharePoint Online, Office 365 Yammer и другие.",
+ "office365InfoBox": "По крайней мере одно из выбранных приложений входит в состав Office 365. Рекомендуется настроить эту политику для приложения Office 365.",
+ "oneUserSelected": "Выбран один пользователь",
+ "onlyGlobalAdminsCanSaveThisPolicyConfig": "Только глобальные администраторы могут сохранить эту политику.",
+ "or": "{0} ИЛИ {1} ",
+ "pickerDoneCommand": "Готово",
+ "policiesBladeAdPremiumUpsellBannerText": "Azure AD Premium позволяет вам создавать собственные политики под конкретные области: облачные приложения, риски входа и платформы устройств",
+ "policiesBladeTitle": "Политики",
+ "policiesBladeTitleWithAppName": "Политик: {0}",
+ "policiesDisabledBannerText": "Создание и изменение политик запрещено для приложений, с которыми связан атрибут входа.",
+ "policiesHitMaxLimitStatusBarMessage": "Достигнуто максимальное число политик для этого клиента. Перед созданием дополнительных политик удалите существующие.",
+ "policyAssignmentsSection": "Назначения",
+ "policyBlockAllInfoBox": "Настроенная политика заблокирует всех пользователей, поэтому она не поддерживается. Проверьте назначения и средства контроля. Исключите текущего пользователя {0}, если вы хотите сохранить эту политику.",
+ "policyCloudAppsDisplayTextAllApp": "Все приложения",
+ "policyCloudAppsLabel": "Облачные приложения",
+ "policyConditionClientAppDescription": "Программное обеспечение, которое пользователь использует для обращения к облачному приложению. Например, браузер.",
+ "policyConditionClientAppV2Description": "Программное обеспечение, которое пользователь использует для обращения к облачному приложению. Например, браузер.",
+ "policyConditionDevicePlatform": "Платформы устройств",
+ "policyConditionDevicePlatformDescription": "Платформа, с которой пользователь выполняет вход. Например, iOS.",
+ "policyConditionLocation": "Расположение",
+ "policyConditionLocationDescription": "Расположение, определенное при помощи диапазона IP-адресов, из которого пользователь выполняет вход.",
+ "policyConditionSigninRisk": "Риск при входе",
+ "policyConditionSigninRiskDescription": "Вероятность входа по чужим учетным данным. Уровень риска может быть высоким, средним или низким. Требуется лицензия Azure AD Premium 2.",
+ "policyConditionUserRisk": "Риск пользователя",
+ "policyConditionUserRiskDescription": "Настройте уровни риска пользователей, необходимые для применения политики.",
+ "policyConditioniClientApp": "Клиентские приложения",
+ "policyConditioniClientAppV2": "Клиентские приложения (предварительная версия)",
+ "policyControlAllowAccessDisplayedName": "Разрешить доступ",
+ "policyControlAuthenticationStrengthDisplayedName": "Требуемая надежность проверки подлинности (предварительная версия)",
+ "policyControlBladeTitle": "Предоставление",
+ "policyControlBlockAccessDisplayedName": "Блокировка доступа",
+ "policyControlCompliantDeviceDisplayedName": "Требовать, чтобы устройство было отмечено как соответствующее",
+ "policyControlContentDescription": "Управляйте применением доступа для его блокировки или предоставления.",
+ "policyControlInfoBallonText": "Заблокируйте доступ или укажите дополнительные требования, которые необходимо выполнить для разрешения доступа.",
+ "policyControlMfaChallengeDisplayedName": "Требовать многофакторную проверку подлинности",
+ "policyControlRequireCompliantAppDisplayedName": "Требование политики защиты приложений",
+ "policyControlRequireDomainJoinedDisplayedName": "Требовать устройство с гибридным присоединением к Azure AD",
+ "policyControlRequireMamDisplayedName": "Требовать утвержденное клиентское приложение",
+ "policyControlRequiredPasswordChangeDisplayedName": "Требовать изменения пароля",
+ "policyControlSelectAuthStrength": "Требуемая надежность проверки подлинности",
+ "policyControlsNoControlsSelected": "Выбрано 0 механизмов управления",
+ "policyControlsSection": "Элементы управления доступом",
+ "policyCreatBladeTitle": "Создать",
+ "policyCreateButton": "Создать",
+ "policyCreateFailedMessage": "Ошибка. {0}",
+ "policyCreateFailedTitle": "Не удалось создать политику \"{0}\"",
+ "policyCreateInProgressTitle": "Идет создание сети \"{0}\"",
+ "policyCreateSuccessMessage": "Политика \"{0}\" создана. Она будет включена через несколько минут, если параметр \"Включить политику\" имеет значение \"Включен\".",
+ "policyCreateSuccessTitle": "Политика \"{0}\" создана",
+ "policyDeleteConfirmation": "Вы действительно хотите удалить сеть \"{0}\"? Это действие невозможно отменить.",
+ "policyDeleteFailTitle": "Не удалось удалить \"{0}\"",
+ "policyDeleteInProgressTitle": "Идет удаление \"{0}\"",
+ "policyDeleteSuccessTitle": "\"{0}\" успешно удалено",
+ "policyEnforceLabel": "Включить политику",
+ "policyErrorCannotSetSigninRisk": "У вас нет разрешений на сохранение политики с условием риска для входа.",
+ "policyErrorNoPermission": "У вас нет разрешения на сохранение политики. Обратитесь к глобальному администратору.",
+ "policyErrorUnknown": "Что-то пошло не так, повторите попытку позже.",
+ "policyFallbackWarningMessage": "Не удалось создать или обновить \"{0}\" с помощью MS Graph, что привело к откату к AD Graph. Изучите следующий сценарий, так как наиболее вероятно возникновение ошибки при вызове конечной точки политики для MS Graph с несовместимым условием.",
+ "policyFallbackWarningTitle": "Создание или обновление \"{0}\" выполнено частично успешно",
+ "policyNameCannotBeEmpty": "Имя политики не может быть пустым.",
+ "policyNameDevice": "Политика устройства",
+ "policyNameFormat": "[{0}] {1}",
+ "policyNameMam": "Политика управления мобильными приложениями",
+ "policyNameMfaLocation": "Политика по многофакторной идентификации и расположениям",
+ "policyNamePlaceholderText": "Пример: \"политика в отношении соответствия приложений на устройствах\"",
+ "policyNameTooLongError": "Слишком длинное имя политики. Максимум — 256 символов",
+ "policyOff": "Выкл.",
+ "policyOn": "Вкл.",
+ "policyReportOnly": "Только отчет",
+ "policyReviewSection": "Просмотр",
+ "policySaveButton": "Сохранить",
+ "policyStatusIconDescription": "Политика включена",
+ "policyStatusIconEnabled": "Значок состояния \"Включено\"",
+ "policyTemplateName1": "Использовать ограничения, применяемые приложением, для доступа к {0} в браузере",
+ "policyTemplateName2": "Разрешить доступ для {0} только на управляемых устройствах",
+ "policyTemplateName3": "Политика, перенесенная из параметров Непрерывной оценки доступа",
+ "policyTriggerRiskSpecific": "Выберите уровень риска",
+ "policyTriggersInfoBalloonText": "Условия, при которых будет применена политика. Например, \"расположение\".",
+ "policyTriggersNoConditionsSelected": "Выбрано 0 условий",
+ "policyTriggersSelectorLabel": "Условия",
+ "policyUpdateFailedMessage": "Ошибка. {0}",
+ "policyUpdateFailedTitle": "Не удалось обновить {0}",
+ "policyUpdateInProgressTitle": "Идет обновление {0}",
+ "policyUpdateSuccessMessage": "Политика {0} обновлена. Она будет включена через несколько минут, если параметр \"Включить политику\" имеет значение \"Включен\".",
+ "policyUpdateSuccessTitle": "{0} успешно обновлено",
+ "primaryCol": "Основной",
+ "privateLinkLabel": "Приватный канал Azure AD",
+ "reportOnlyInfoBox": "Режим \"Только отчет\": при входе выполняется оценка соответствия политикам и запись в журнал, но пользователи никак не затрагиваются.",
+ "requireAllControlsText": "Требовать все выбранные элементы управления",
+ "requireCompliantDevice": "Требовать соответствующее устройство",
+ "requireDomainJoined": "Требуется устройство, присоединенное к домену",
+ "requireGrantReauth": "Элементу управления сеансом \"Частота входа (каждый раз)\" требуется управление предоставлением разрешения \"Требовать многофакторную проверку подлинности\" или \"Требовать смену пароля\" при выборе параметра \"Все облачные приложения\"",
+ "requireMFA": "Требуется многофакторная проверка подлинности ",
+ "requireMfaReauth": "Элементу управления сеансом \"Частота входа (каждый раз)\" требуется управление предоставлением разрешения \"Требовать многофакторную проверку подлинности\" для параметра \"Риск при входе\"",
+ "requireOneControlText": "Требовать один из выбранных элементов управления",
+ "requirePasswordChangeReauth": "Элементу управления сеансом \"Частота входа (каждый раз)\" требуется управление предоставлением разрешения \"Требовать смену пароля\" для параметра \"Риск пользователя\"",
+ "requireRiskReauth": "Элементу управления сеансом \"Частота входа (каждый раз)\" требуется элемент управления сеансом \"Риск пользователя\" или \"Риск при входе\", если выбран параметр \"Все облачные приложения\".",
+ "resetFilters": "Сброс фильтров",
+ "sPRequired": "Требуется субъект-служба",
+ "sPSelectorInfoBalloon": "Пользователь или субъект-служба, которые нужно проверить",
+ "saturday": "Суббота",
+ "searchTextTooLongError": "Слишком длинный поисковый запрос. Максимальное число символов — 256.",
+ "securityDefaultsPolicyName": "Параметры безопасности по умолчанию",
+ "securityDefaultsTextMessage": "Для включения политики условного доступа необходимо отключить параметры безопасности по умолчанию.",
+ "securityDefaultsWarningMessage": "Похоже, вы хотите управлять конфигурациями безопасности организации. Отлично! Перед включением политики условного доступа необходимо отключить параметры безопасности по умолчанию.",
+ "selectDevicePlatforms": "Выбрать платформы устройств",
+ "selectNamedNetworksSubtitle": "",
+ "selectNamedNetworksTitle": "Выберите расположения",
+ "selectedSP": "Выбранный субъект-служба",
+ "servicePrincipalDataGridAria": "Список доступных субъектов-служб",
+ "servicePrincipalDropDownLabel": "К чему применяется эта политика?",
+ "servicePrincipalInfoBox": "Некоторые условия недоступны из-за выбора \"{0}\" в назначении политики",
+ "servicePrincipalRadioAll": "Все субъекты-службы, находящиеся в собственности",
+ "servicePrincipalRadioSelect": "Выберите субъекты-службы",
+ "servicePrincipalSelectionsAria": "Сетка выбранных субъектов-служб",
+ "servicePrincipalSelectorAria": "Список выбранных субъектов-служб",
+ "servicePrincipalSelectorMultiple": "Выбрано субъектов-служб: {0}",
+ "servicePrincipalSelectorSingle": "Выбран один субъект-служба",
+ "servicePrincipalSpecificInc": "Включены конкретные субъекты-службы",
+ "servicePrincipals": "Субъекты-службы",
+ "sessionControlBladeTitle": "Сеанс",
+ "sessionControlDescriptionContent": "Управляйте доступом пользователей на основе элементов управления сеансами для ограничения возможностей взаимодействия с определенными облачными приложениями.",
+ "sessionControlDisableInfo": "Этот элемент управления работает только с поддерживаемыми приложениями. Сейчас Office 365, Exchange Online и SharePoint Online — единственные облачные приложения, которые поддерживают ограничения приложений. Щелкните здесь, чтобы получить дополнительные сведения.",
+ "sessionControlInfoBallonText": "Элементы управления сеанса предоставляют ограниченную функциональность в облачных приложениях.",
+ "sessionControls": "Элементы управления сеансом",
+ "sessionControlsAppEnforcedLabel": "Использовать ограничения, применяемые приложениями",
+ "sessionControlsCasLabel": "Использовать управление условным доступом к приложениям",
+ "sessionControlsSecureSignInLabel": "Требовать привязку токена",
+ "sharepointAppName": "SharePoint",
+ "signinRiskDescription": "Выберите уровень угрозы, связанной с входом, на который будет распространяться эта политика.",
+ "signinRiskInclude": "Включено: {0}",
+ "signinRiskReauth": "Если выбрано разрешение \"Требовать многофакторную проверку подлинности\" и элемент управления сеансом \"Частота входа (каждый раз)\", необходимо выбрать условие \"Риск входа\"",
+ "signinRiskTriggerDescriptionContent": "Выберите уровень риска при входе",
+ "singleTenantServicePrincipalInfoBallonText": "Политика применяется только к субъектам-службам одного клиента, принадлежащим вашей организации. Щелкните здесь, чтобы получить дополнительные сведения ",
+ "specificSigninRiskLevelsOption": "Выберите конкретные уровни риска для входа",
+ "specificUsersExcluded": "отдельные пользователи исключены",
+ "specificUsersIncluded": "Отдельные пользователи включены",
+ "specificUsersIncludedAndExcluded": "Определенные пользователи, исключенные и включенные",
+ "startDatePickerLabel": "Запускается",
+ "startFreeTrial": "Начните пользоваться бесплатной пробной версией",
+ "startTimePickerLabel": "Время начала",
+ "sunday": "Воскресенье",
+ "testButton": "Параметр \"What If\"",
+ "thumbprintCol": "Отпечаток",
+ "thursday": "Четверг",
+ "timeConditionAllTimesLabel": "В любое время",
+ "timeConditionIntroText": "Настройте время, когда будет применяться политика",
+ "timeConditionSelectorInfoBallonContent": "Время входа пользователя в систему. Например, \"Среда с 09:00 до 17:00 по тихоокеанскому стандартному времени\"",
+ "timeConditionSelectorLabel": "Время (предварительная версия)",
+ "timeConditionSpecificLabel": "Определенное время",
+ "timeSelectorAllTimesText": "В любое время",
+ "timeSelectorSpecificTimesText": "Определенное время настроено",
+ "timeZoneDropdownInfoBalloonContent": "Выберите часовой пояс, в котором указан диапазон времени. Эта политика применяется к пользователям во всех часовых поясах. Например, время \"Среда с 9:00 до 17:00\" выглядит как \"Среда с 10:00 до 18:00\" для пользователя в другом часовом поясе.",
+ "timeZoneDropdownLabel": "Часовой пояс",
+ "timeZoneDropdownPlaceholderText": "Выберите часовой пояс",
+ "tooManyPoliciesDescription": "Сейчас отображаются только первые 50 политик. Щелкните здесь, чтобы увидеть все политики.",
+ "tooManyPoliciesTitle": "Найдено больше 50 политик.",
+ "trustedLocationStatusIconDescription": "Это надежное расположение",
+ "trustedLocationStatusIconEnabled": "Значок состояния \"Надежное\"",
+ "tuesday": "Вторник",
+ "uploadInBadState": "Не удалось отправить указанный файл.",
+ "upsellAppsDescription": "Вы можете требовать использовать многофакторную идентификацию при работе в приложениях с конфиденциальной информацией все время или только при их использовании вне сети организации.",
+ "upsellAppsTitle": "Защита приложений",
+ "upsellBannerText": "Получить бесплатную пробную версию уровня \"Премиум\" для использования этой возможности",
+ "upsellDataDescription": "Требовать, чтобы устройство было помечено как соответствующее или являлось устройствами с гибридным присоединением к Azure AD, чтобы получить доступ к ресурсам компании.",
+ "upsellDataTitle": "Защита данных",
+ "upsellDescription": "Условный доступ предоставляет механизмы управления и защиту, необходимые для обеспечения безопасности данных организации, а также позволяет пользователям наиболее эффективно работать с любого устройства. Например, вы можете разрешить доступ только при работе из локальной сети или запретить доступ устройствам, которые не соответствуют политикам.",
+ "upsellRiskDescription": "Требование многофакторной проверки подлинности для событий риска, обнаруженных системой машинного обучения Майкрософт.",
+ "upsellRiskTitle": "Защита от рисков",
+ "upsellTitle": "Условный доступ",
+ "upsellWhyTitle": "Зачем нужно использовать условный доступ?",
+ "userAppNoneOption": "Нет",
+ "userNamePlaceholderText": "Введите имя пользователя",
+ "userNotSetSeletorLabel": "Выбрано 0 пользователей и групп",
+ "userOnlySelectionBladeExcludeDescription": "Выберите пользователей, которые будут исключены из политики",
+ "userOrGroupSelectionCountDiffBannerText": "{0}, настроенные в этой политике, были удалены из каталога, однако это не влияет на других пользователей и на другие группы в политике. При следующем обновлении политики удаленные пользователи и/или группы будут автоматически удалены.",
+ "userOrSPNotSetSelectorLabel": "Удостоверения пользователей или рабочих нагрузок не выбраны",
+ "userOrSPSelectionBladeTitle": "Удостоверения пользователей или рабочих нагрузок",
+ "userOrSPSelectorInfoBallonText": "Удостоверения в каталоге, к которому применяется политика, включая пользователей, группы и субъекты-службы",
+ "userRequired": "Требуется пользователь",
+ "userRiskErrorBox": "Если выбрано предоставления разрешения \"Требовать изменения пароля\", необходимо выбрать условие \"Пользовательский риск\".",
+ "userRiskReauth": "Если выбрано разрешение \"Требовать смену пароля\" и элемент управления сеансом \"Частота входа (каждый раз)\", необходимо выбрать условие \"Риск пользователя\", а не \"Риск входа\"",
+ "userSPRequired": "Требуется пользователь или субъект-служба",
+ "userSPSelectorTitle": "Удостоверение пользователя или рабочей нагрузки",
+ "userSelectionBladeAllUsersAndGroups": "Все пользователи и группы",
+ "userSelectionBladeExcludeDescription": "Выбор пользователей и групп, которые будут исключены из политики.",
+ "userSelectionBladeExcludeTabTitle": "Исключить",
+ "userSelectionBladeExcludedSelectorTitle": "Выбор исключенных пользователей",
+ "userSelectionBladeIncludeDescription": "Выберите пользователей, к которым будет применяться эта политика",
+ "userSelectionBladeIncludeTabTitle": "Включение",
+ "userSelectionBladeIncludedSelectorTitle": "Выбрать",
+ "userSelectionBladeSelectUsers": "Выбрать пользователей",
+ "userSelectionBladeSelectedUsers": "Выбрать пользователей и группы",
+ "userSelectionBladeTitle": "Пользователи и группы",
+ "userSelectorBladeTitle": "Пользователи",
+ "userSelectorExcluded": "Исключено: {0}",
+ "userSelectorGroupPlural": "Групп: {0}",
+ "userSelectorGroupSingular": "1 группа",
+ "userSelectorIncluded": "Включено: {0}",
+ "userSelectorInfoBallonText": "Пользователи и группы в каталоге, к которому применяется политика. Например, \"пилотная группа\".",
+ "userSelectorSelected": "Выбрано: {0}.",
+ "userSelectorTitle": "Пользователь",
+ "userSelectorUserAndGroup": "{0}, {1}",
+ "userSelectorUserPlural": "Пользователи: {0}",
+ "userSelectorUserSingular": "1 пользователь",
+ "userSelectorWithExclusion": "{0} и {1}",
+ "usersGroupsLabel": "Пользователи и группы",
+ "viewApprovedAppsText": "Смотреть список утвержденных клиентских приложений",
+ "viewCompliantAppsText": "Смотреть список клиентских приложений, защищенных политикой",
+ "vpnBladeTitle": "Подключение VPN",
+ "vpnCertCreateFailedMessage": "Ошибка: {0}",
+ "vpnCertCreateFailedTitle": "Не удалось создать {0}.",
+ "vpnCertCreateInProgressTitle": "Создание {0}",
+ "vpnCertCreateSuccessMessage": "Сертификат {0} успешно создан.",
+ "vpnCertCreateSuccessTitle": "{0} создана.",
+ "vpnCertNoRowsMessage": "Сертификаты VPN не найдены",
+ "vpnCertUpdateFailedMessage": "Ошибка: {0}",
+ "vpnCertUpdateFailedTitle": "Не удалось обновить {0}",
+ "vpnCertUpdateInProgressTitle": "Идет обновление {0}",
+ "vpnCertUpdateSuccessMessage": "Сертификат {0} успешно обновлен.",
+ "vpnCertUpdateSuccessTitle": "{0} успешно обновлено",
+ "vpnFeatureInfo": "Чтобы получить дополнительные сведения о подключении VPN и условном доступе, щелкните здесь.",
+ "vpnFeatureWarning": "Сертификат VPN, созданный на портале Azure, будет сразу же использоваться в Azure AD для выдачи краткосрочных сертификатов VPN-клиенту. Чтобы избежать проблем с проверкой учетных данных VPN-клиента, необходимо немедленно развернуть сертификат VPN на VPN-сервере.",
+ "vpnMenuText": "Подключение VPN",
+ "vpncertDropdownDefaultOption": "Длительность",
+ "vpncertDropdownInfoBalloonContent": "Выберите срок действия создаваемого сертификата",
+ "vpncertDropdownLabel": "Выбрать длительность",
+ "vpncertDropdownOneyearOption": "1 год",
+ "vpncertDropdownThreeyearOption": "3 года",
+ "vpncertDropdownTwoyearOption": "2 года",
+ "wednesday": "Среда",
+ "whatIfAppEnforcedControl": "Использовать ограничения, применяемые приложениями",
+ "whatIfBladeDescription": "Проверка влияния условного доступа на пользователя при входе в определенных условиях.",
+ "whatIfBladeTitle": "Параметр \"What If\"",
+ "whatIfClassicPoliciesWarning": "Этот инструмент не оценивает классические политики.",
+ "whatIfClientAppInfo": "Клиентское приложение, откуда входит пользователь. Например, \"Браузер\".",
+ "whatIfCountry": "Страна",
+ "whatIfCountryInfo": "Страна, из которой входит пользователь.",
+ "whatIfDevicePlatformInfo": "Платформа устройства, с которой пользователь входит в систему.",
+ "whatIfDeviceStateInfo": "Состояние устройства, с которого входит пользователь",
+ "whatIfEnterIpAddress": "Введите IP-адрес (например: 40.77.182.32)",
+ "whatIfErrorInvalidIpAddress": "Указан недопустимый адрес IP.",
+ "whatIfEvaResultApplication": "Облачные приложения",
+ "whatIfEvaResultClientApps": "Клиентское приложение",
+ "whatIfEvaResultDevicePlatform": "Платформа устройства",
+ "whatIfEvaResultEmptyPolicy": "Пустая политика",
+ "whatIfEvaResultInvalidCondition": "Недопустимое условие",
+ "whatIfEvaResultInvalidPolicy": "Недопустимая политика",
+ "whatIfEvaResultLocation": "Расположение",
+ "whatIfEvaResultNotEnoughInformation": "Недостаточно сведений",
+ "whatIfEvaResultPolicyNotEnabled": "Политика не включена",
+ "whatIfEvaResultSignInRisk": "Риск при входе",
+ "whatIfEvaResultUsers": "Пользователи и группы",
+ "whatIfIpAddress": "IP-адрес",
+ "whatIfIpAddressInfo": "IP-адрес, с которого пользователь входит в систему.",
+ "whatIfIpCountryInfoBoxText": "При указании IP-адреса или страны оба поля являются обязательными и должны правильно сопоставляться.",
+ "whatIfPolicyAppliesTab": "Политики, которые будут применяться",
+ "whatIfPolicyDoesNotApplyTab": "Политики, которые не будут применяться",
+ "whatIfReasons": "Причины, по которым эта политика не применяется",
+ "whatIfSelectClientApp": "Выберите клиентское приложение…",
+ "whatIfSelectCountry": "Выберите страну...",
+ "whatIfSelectDevicePlatform": "Выберите платформу устройства...",
+ "whatIfSelectPrivateLink": "Выберите приватный канал…",
+ "whatIfSelectServicePrincipalRisk": "Выбор риска субъект-службы...",
+ "whatIfSelectSignInRisk": "Выберите риск входа…",
+ "whatIfSelectType": "Выберите тип удостоверения",
+ "whatIfSelectUserRisk": "Выберите пользовательский риск…",
+ "whatIfServicePrincipalRiskInfo": "Уровень риска, связанный с субъект-службой",
+ "whatIfSignInRisk": "Риск при входе",
+ "whatIfSignInRiskInfo": "Уровень риска, связанный со входом в систему",
+ "whatIfUnknownAreas": "Неизвестные области",
+ "whatIfUserPickerLabel": "Выбранный пользователь",
+ "whatIfUserPickerNoRowsLabel": "Пользователи или субъекты-службы не выбраны",
+ "whatIfUserRiskInfo": "Связанный с пользователем уровень риска",
+ "whatIfUserSelectorInfo": "Пользователь в каталоге, которого вы хотите проверить",
+ "windows365InfoBox": "Выбор Windows 365 повлияет на подключения к облачным компьютерам и узлам сеансов виртуальных рабочих столов Azure. Щелкните здесь для получения дополнительных сведений.",
+ "windowsDisplayName": "Windows",
+ "windowsPhoneDisplayName": "Windows Phone",
+ "workloadIdentities": "Удостоверения рабочей нагрузки (предварительная версия)",
+ "workloadIdentity": "Удостоверение рабочей нагрузки"
+ },
+ "AppResources": {
+ "AppSettingsUx": {
+ "assignmentFilterColumnHeader": "Фильтр",
+ "assignmentFilterTypeColumnHeader": "Режим фильтра",
+ "assignmentToast": "Уведомления для конечных пользователей",
+ "assignmentTypeTableHeader": "Тип назначения",
+ "deadlineTimeColumnLabel": "Крайний срок установки",
+ "deliveryOptimizationPriorityHeader": "Приоритет оптимизации доставки",
+ "groupTableHeader": "Группа",
+ "installContextLabel": "Контекст установки",
+ "isRemovable": "Установить как удаляемое",
+ "licenseTypeLabel": "Тип лицензии",
+ "modeTableHeader": "Групповой режим",
+ "policySet": "Набор политик",
+ "restartGracePeriodHeader": "Льготный период перезапуска",
+ "startTimeColumnLabel": "Доступность",
+ "tracks": "Пути",
+ "uninstallOnRemoval": "Удаление при удалении устройства",
+ "updateMode": "Приоритет обновления",
+ "vPN": "VPN"
+ },
+ "AppType": {
+ "aADWebApp": "Веб-приложение AAD",
+ "androidEnterpriseSystemApp": "Системное приложение Android Enterprise",
+ "androidForWorkApp": "Приложение управляемого Google Play Маркета",
+ "androidLobApp": "Бизнес-приложение для Android",
+ "androidStoreApp": "Приложение для Магазина Android",
+ "builtInAndroid": "Встроенное приложение для Android",
+ "builtInApp": "Встроенное приложение",
+ "builtInIos": "Встроенное приложение для iOS",
+ "iosLobApp": "Бизнес-приложение для iOS",
+ "iosStoreApp": "Приложение iOS Store",
+ "iosVppApp": "Приложение iOS Volume Purchase Program",
+ "lineOfBusinessApp": "Бизнес-приложение",
+ "macOSDmgApp": "Приложение macOS (DMG)",
+ "macOSEdgeApp": "Microsoft Edge (macOS)",
+ "macOSLobApp": "Бизнес-приложение macOS",
+ "macOSMdatpApp": "ATP в Microsoft Defender (macOS)",
+ "macOSOfficeSuiteApp": "Пакет Office для macOS",
+ "macOsVppApp": "Приложение macOS Volume Purchase Program",
+ "managedAndroidLobApp": "Управляемое бизнес-приложение для Android",
+ "managedAndroidStoreApp": "Управляемое приложение Магазина Android",
+ "managedGooglePlayApp": "Приложение управляемого Google Play Маркета",
+ "managedGooglePlayPrivateApp": "Частное приложение управляемого Google Play",
+ "managedGooglePlayWebApp": "Веб-ссылка управляемого Google Play",
+ "managedIosLobApp": "Управляемое бизнес-приложение для iOS",
+ "managedIosStoreApp": "Управляемое приложение Магазина iOS",
+ "microsoftStoreForBusinessApp": "Приложение Магазина Майкрософт для бизнеса",
+ "microsoftStoreForBusinessReleaseManagedApp": "Магазин Майкрософт для бизнеса",
+ "officeAddIn": "Надстройка Office",
+ "officeSuiteApp": "Приложения Microsoft 365 (Windows 10 и более поздних версий)",
+ "sharePointApp": "Приложение SharePoint",
+ "teamsApp": "Приложение Teams",
+ "webApp": "Веб-ссылка",
+ "windowsAppXLobApp": "Бизнес-приложение Windows AppX",
+ "windowsClassicApp": "Приложение Windows (Win32)",
+ "windowsEdgeApp": "Microsoft Edge (Windows 10 и более поздних версий)",
+ "windowsMobileMsiLobApp": "Бизнес-приложение Windows MSI",
+ "windowsPhone81AppXBundleLobApp": "Бизнес-приложение Windows Phone 8.1 AppX",
+ "windowsPhone81AppXLobApp": "Бизнес-приложение Windows Phone 8.1 AppX",
+ "windowsPhone81StoreApp": "Приложение Магазина Windows Phone 8.1",
+ "windowsPhoneXapLobApp": "Бизнес-приложение Windows Phone XAP",
+ "windowsStoreApp": "Приложение Microsoft Store",
+ "windowsUniversalAppXLobApp": "Универсальное бизнес-приложение Windows AppX",
+ "windowsUniversalLobApp": "Универсальное бизнес-приложение Windows"
+ },
+ "AppTypePlatform": {
+ "android": "Android",
+ "ios": "iOS",
+ "macOs": "macOS",
+ "web": "Web",
+ "windows": "Windows"
+ },
+ "AssignmentAction": {
+ "exclude": "Исключено",
+ "include": "Включено",
+ "includeAllDevicesVirtualGroup": "Включено",
+ "includeAllUsersVirtualGroup": "Включено"
+ },
+ "AssignmentToast": {
+ "hideAll": "Скрывать все всплывающие уведомления",
+ "showAll": "Показывать все всплывающие уведомления",
+ "showReboot": "Показывать всплывающие уведомления о перезапуске компьютера"
+ },
+ "DeliveryOptimizationPriority": {
+ "backgroundNormal": "Фон",
+ "displayText": "Скачивание содержимого в {0}",
+ "foreground": "Передний план",
+ "header": "Приоритет оптимизации доставки"
+ },
+ "DeviceRestartBehaviorOptions": {
+ "allow": "Установка приложения может привести к перезапуску устройства",
+ "basedOnReturnCode": "Определять режим по кодам возврата",
+ "force": "Intune выполнит принудительную перезагрузку устройства",
+ "suppress": "Без определенных действий"
+ },
+ "FilterType": {
+ "exclude": "Исключить",
+ "include": "Включить",
+ "none": "Нет"
+ },
+ "InstallIntent": {
+ "available": "Доступно для зарегистрированных устройств",
+ "availableWithoutEnrollment": "Доступно с регистрацией или без регистрации",
+ "notApplicable": "неприменимо",
+ "required": "Обязательно",
+ "uninstall": "Удалить"
+ },
+ "SettingType": {
+ "assignmentType": "Тип назначения",
+ "deviceLicensing": "Тип лицензии",
+ "installContext": "Удаление при удалении устройства",
+ "toastSettings": "Уведомления для конечных пользователей",
+ "vpnConfiguration": "VPN"
+ },
+ "UpdateMode": {
+ "default": "По умолчанию",
+ "postponed": "Отложено",
+ "priority": "Высокий приоритет"
+ }
+ },
+ "WindowsEnrollment": {
+ "coManagementAuthorityDesc": "Настройка параметров совместного управления для интеграции Configuration Manager",
+ "coManagementAuthorityTitle": "Параметры совместного управления ",
+ "deploymentProfiles": "Профили развертывания Windows AutoPilot",
+ "description": "Дополнительные сведения о семи способах регистрации ПК с Windows 10/11 в Intune пользователями или администраторами.",
+ "descriptionLabel": "Методы регистрации Windows",
+ "enrollmentStatusPage": "Страница состояния регистрации"
+ },
+ "Win32Program": {
+ "DeviceRestartBehaviorOptions": {
+ "allow": "Установка приложения может привести к перезапуску устройства",
+ "basedOnReturnCode": "Определять режим по кодам возврата",
+ "force": "Intune выполнит принудительную перезагрузку устройства",
+ "suppress": "Никаких действий выполняться не будет"
+ },
+ "RunAsAccountOptions": {
+ "system": "Система",
+ "user": "Пользователь"
+ },
+ "bladeTitle": "Программа",
+ "deviceRestartBehavior": "Действие при перезагрузке устройства",
+ "deviceRestartBehaviorTooltip": "Выберите режим перезагрузки устройства после успешной установки приложения. Выберите \"Определять режим по кодам возврата\", чтобы перезагрузить устройство на основе параметров конфигурации кодов возврата. Выберите \"Никаких действий выполняться не будет\" для подавления перезагрузки устройства во время установки приложения на основе MSI. Выберите \"Установка приложения может принудительно выполнить перезагрузку устройства\", чтобы позволить установке приложения завершиться без подавления перезагрузок. Выберите \"Intune выполнит принудительную перезагрузку устройства\", чтобы всегда перезагружать устройство после успешной установки приложения.",
+ "header": "Укажите команды для установки и удаления этого приложения:",
+ "installCommand": "Команда установки",
+ "installCommandMaxLengthErrorMessage": "Длина команды установки не может превышать допустимый максимум в 1024 символа.",
+ "installCommandTooltip": "Командная строка завершения установки, используемая для установки этого приложения.",
+ "runAs32Bit": "Запуск команд установки и удаления в 32-разрядном процессе на 64-разрядных клиентах",
+ "runAs32BitTooltip": "Выберите \"Да\" для установки и удаления приложения в 32-разрядном процессе на 64-разрядных клиентах. Выберите \"Нет\" (по умолчанию) для установки и удаления приложения в 64-разрядном процессе на 64-разрядных клиентах. 32-разрядные клиенты всегда будут использовать 32-разрядный процесс.",
+ "runAsAccount": "Поведение при установке",
+ "runAsAccountTooltip": "Выберите \"Система\", чтобы установить приложение для всех пользователей, если это поддерживается. Выберите \"Пользователь\", чтобы установить приложение для пользователя, выполнившего вход на устройстве. В приложениях MSI двойного назначения внесение изменений сделает невозможным установку обновлений и удаление, пока не будет восстановлено значение, использованное на устройстве при первоначальной установке.",
+ "selectorLabel": "Программа",
+ "uninstallCommand": "Команда удаления",
+ "uninstallCommandTooltip": "Командная строка завершения удаления, используемая для удаления этого приложения."
+ },
+ "CategoryDescription": {
+ "androidGeneralApplicationRestrictions": "Используйте эти параметры, чтобы получать оповещения об установке приложений, запрещенных для использования в организации. Выберите тип приложений:
\r\n Запрещенные приложения — список приложений, об установке которых вы хотите получать оповещения.
\r\n Утвержденные приложения — список приложений, которые утверждены для использования в вашей организации. Если пользователь устанавливает приложение, не входящее в этот список, вы получаете оповещение.
\r\n ",
+ "androidZebraMxZebraMx": "Настройте устройства Zebra, отправив профиль MX в формате XML.",
+ "iosDeviceFeaturesAirprint": "Используйте эти параметры, чтобы настроить устройства iOS для автоматического подключения к AirPrint-совместимым принтерам в вашей сети. Для принтеров вам потребуется знать IP-адрес и путь ресурса.",
+ "iosDeviceFeaturesExtensibleSingleSignOn": "Настройте расширение приложения, позволяющее использовать единый вход (SSO) для устройств под управлением iOS 13.0 или более поздних версий.",
+ "iosDeviceFeaturesHomeScreenLayout": "Настройте макет для панели закрепления и начальных экранов на устройствах с iOS. На некоторых устройствах могут быть ограничения на количество отображаемых элементов.",
+ "iosDeviceFeaturesIOSWallpaper": "Показ изображения на начальном экране и (или) экране блокировки устройств с iOS.\r\n Чтобы использовать разные изображения на этих двух экранах, создайте один профиль с изображением для экрана блокировки и другой — с изображением начального экрана.\r\n Затем назначьте оба профиля пользователям.\r\n
\r\n \r\n - Максимальный размер файла: 750 КБ
\r\n - Тип файла: PNG, JPG или JPEG
\r\n
\r\n ",
+ "iosDeviceFeaturesNotifications": "Укажите параметры уведомлений для приложений. Поддерживает iOS 9.3 и более поздних версий.",
+ "iosDeviceFeaturesSharedDevice": "Введите дополнительный текст, который будет отображаться на заблокированном экране. Поддерживается в iOS 9.3 и более поздних версиях. Дополнительные сведения",
+ "iosGeneralApplicationRestrictions": "Используйте эти параметры, чтобы получать оповещения об установке приложений, запрещенных для использования в организации. Выберите тип приложений:
\r\n Запрещенные приложения — список приложений, об установке которых вы хотите получать оповещения.
\r\n Утвержденные приложения — список приложений, которые утверждены для использования в вашей организации. Если пользователь устанавливает приложение, не входящее в этот список, вы получаете оповещение.
\r\n ",
+ "iosGeneralApplicationVisibility": "Используйте список отображаемых приложений, чтобы указать те приложения для iOS, которые пользователь может просматривать или запускать. Используйте список скрываемых приложений, чтобы указать приложения для iOS, которые пользователь не сможет просматривать или запускать.",
+ "iosGeneralAutonomousSingleAppMode": "Приложения, которые вы добавляете в этот список и назначаете устройству, могут препятствовать запуску остальных приложений или блокировать устройство при выполнении определенного действия (например, прохождении теста). После завершения действия или удаления ограничения устройство возвращается в обычное состояние.",
+ "iosGeneralKiosk": "Режим киоска блокирует различные параметры на устройстве или задает одно приложение, которое может работать на устройстве. Это может быть полезно в таких местах, как магазины, где на устройстве нужно запустить только одно демонстрационное приложение.",
+ "macDeviceFeaturesAirprint": "Используйте эти параметры, чтобы настроить на устройствах с macOS автоматическое подключение к совместимым принтерам AirPrint в сети. Вам потребуется IP-адрес и путь к ресурсам принтеров.",
+ "macDeviceFeaturesAssociatedDomains": "Настройка связанных доменов, позволяющих использовать общие данные и учетные данные для входа в приложениях и на веб-сайтах вашей организации. Этот профиль можно применять к устройствам под управлением macOS 10.15 или более поздних версий.",
+ "macDeviceFeaturesExtensibleSingleSignOn": "Настройте расширение приложения, позволяющее использовать единый вход (SSO) для устройств под управлением macOS 10.15 или более поздних версий.",
+ "macDeviceFeaturesLoginItems": "Выберите, какие приложения, файлы и папки будут открываться при входе пользователей на устройства. Чтобы пользователи не могли изменять способ открытия выбранных приложений, вы можете скрыть эти приложения из пользовательских настроек.",
+ "macDeviceFeaturesLoginWindow": "Настройка внешнего вида экрана входа macOS и функций, которые доступны пользователям после входа в систему.",
+ "macExtensionsKernelExtensions": "Используйте эти параметры для настройки политики расширения ядра на устройствах под управлением macOS 10.13.2 или более поздних версий.",
+ "macGeneralDomains": "Электронные адреса, по которым пользователь отправляет и получает почту и в которых не используются указанные здесь домены, будут помечены как ненадежные.",
+ "windows10EndpointProtectionApplicationGuard": "При использовании Microsoft Edge компонент Application Guard в Microsoft Defender защищает вашу среду от сайтов, которые не были определены как доверенные вашей организацией. Когда пользователи переходят на сайты, не указанные в вашей границе изолированной сети, эти сайты открываются в виртуальном сеансе браузера в Hyper-V. Доверенные сайты определяются границей сети, которую можно настроить в разделе \"Конфигурация устройства\". Обратите внимание, что эта функция доступна только для устройств под управлением Windows 10 (64-разрядная версия) или более поздней версии.",
+ "windows10EndpointProtectionCredentialGuard": "Включение Credential Guard затрагивает следующие обязательные параметры.\r\n
\r\n \r\n - Включить функции безопасности на основе виртуализации: включение виртуализации на основе безопасности (VBS) при следующей перезагрузке. Безопасность на основе виртуализации использует низкоуровневую оболочку Windows для поддержки устройств безопасности.
\r\n
\r\n - Безопасная загрузка с прямым доступом к памяти: включение VBS с безопасной загрузкой и прямым доступом к памяти (DMA).
\r\n
\r\n ",
+ "windows10EndpointProtectionDeviceGuard": "Выберите другие приложения, для которых необходим аудит со стороны компонента управления приложениями в Microsoft Defender либо которые можно считать надежными для запуска с точки зрения этого компонента. Надежными для запуска автоматически считаются компоненты Windows и все приложения из Магазина Windows.
\r\n При запуске в режиме \"Только аудит\" приложения не блокируются. В режиме \"Только аудит\" все события записываются в локальные журналы клиентов.\r\n ",
+ "windows10GeneralPrivacyPerApp": "Добавьте приложения, поведение конфиденциальности которых должно отличаться от заданного в разделе \"Конфиденциальность по умолчанию\".",
+ "windows10NetworkBoundaryNetworkBoundary": "Граница сети представляет собой список корпоративных ресурсов, таких как облачный домен, и диапазонов IP-адресов для компьютеров в корпоративной сети. Определите границы сети, чтобы применять политики для защиты данных, находящихся в этих расположениях.",
+ "windowsHealthMonitoring": "Настройте политику мониторинга работоспособности Windows.",
+ "windowsPhoneGeneralApplicationRestrictions": "Windows Phone может заблокировать установку или запуск приложений из списка запрещенных приложений либо приложений, отсутствующих в утвержденном списке. Все управляемые приложения следует добавить в утвержденный список."
+ },
"Inputs": {
"accountDomain": "Домен учетной записи",
"accountDomainHint": "Например, contosodomain",
@@ -9962,6 +9858,7 @@
"displayNameLabel": "Имя",
"displayVersionHint": "Введите версию проекта",
"displayVersionLabel": "Версия приложения",
+ "displayVersionLengthCheck": "Длина версии просмотра не должна превышать 130 символов",
"eBookCategoryNameLabel": "Имя по умолчанию",
"emailAccount": "Имя учетной записи электронной почты",
"emailAccountHint": "например, корпоративная электронная почта",
@@ -10066,385 +9963,51 @@
"xmlFormatInvalid": "Формат политики XML недопустим.",
"xmlTooLarge": "Размер входных данных должен быть менее 1 МБ."
},
- "Tooltips": {
- "PolicySettings": {
- "TouchId1": {
- "android": "На Android можно разрешить использование идентификации по отпечатку пальца вместо ПИН-кода. Пользователям будет предложено предоставить свой отпечаток пальца при доступен к этому приложению с помощью рабочей учетной записи.",
- "iOS": "На устройствах iOS или iPadOS можно разрешить идентификацию с помощью отпечатка пальца вместо ПИН-кода. При открытии этого приложения с рабочей учетной записью пользователи будут получать запрос на предоставление отпечатков пальцев.",
- "mac": "На устройствах Mac можно разрешить идентификацию с помощью отпечатка пальца вместо ПИН-кода. При открытии этого приложения с рабочей учетной записью пользователи будут получать запрос на предоставление отпечатка."
- },
- "appSharingFromLevel1": "Выберите один из следующих вариантов, чтобы указать приложения, от которых это приложение может получать данные.",
- "appSharingFromLevel2": "{0}: разрешить получение данных из корпоративных документов и учетных записей только других управляемых политикой приложений.",
- "appSharingFromLevel3": "{0}: разрешить получение данных из корпоративных документов и учетных записей любого приложения.",
- "appSharingFromLevel4": "{0}: заблокировать получение данных из корпоративных документов и учетных записей любого приложения.",
- "appSharingFromLevel5": "{0}: разрешает передачу данных из любого приложения и учитывает все входящие данные, не имеющие удостоверения пользователя, как данные организации.",
- "appSharingToLevel1": "Выберите один из следующих вариантов, чтобы указать приложения, которым это приложение может отправлять данные.",
- "appSharingToLevel2": "{0}: разрешить отправку корпоративных данных только в другие управляемые политикой приложения.",
- "appSharingToLevel3": "{0}: разрешить отправку корпоративных данных в любые приложения.",
- "appSharingToLevel4": "{0}: заблокировать отправку корпоративных данных в любые приложения.",
- "appSharingToLevel5": "{0}: разрешает передачу данных только в другие управляемые политиками приложения и передачу файлов в управляемые приложения MDM на зарегистрированных устройствах.",
- "appSharingToLevel6": "{0}: разрешить передачу данных только в другие приложения, управляемые политикой, и фильтровать показ только управляемых политикой приложений в диалоговых окнах ОС \"Открыть в\"/\"Поделиться\".",
- "conditionalEncryption1": "Выберите {0}, чтобы отключить шифрование приложений для внутреннего хранилища приложений, если на зарегистрированном устройстве обнаружено шифрование устройства.",
- "conditionalEncryption2": "Примечание. Intune может обнаружить регистрацию устройств только с помощью Intune MDM. Внешнее хранилище приложений будет по-прежнему зашифровано, чтобы неуправляемые приложения не могли получить доступ к данным.",
- "contactSyncMac": "Если этот параметр отключен, приложения не могут сохранять контакты в свою адресную книгу.",
- "contactsSync": "Выберите Заблокировать, чтобы запретить приложениям, управляемым политикой, сохранять данные в собственных приложениях устройства (например, в контактах, календаре и мини-приложениях) или запретить использование надстроек в приложениях, управляемых политикой. При выборе варианта Разрешить управляемое политикой приложение сможет сохранять данные в собственных приложениях или использовать надстройки, если эти функции поддерживаются и включены в приложении, управляемом политикой.
Приложения могут предоставлять дополнительную возможность настройки с помощью политик конфигурации приложений. Дополнительные сведения см. в документации приложения.",
- "encryptionAndroid1": "Для приложений, связанных с политикой управления мобильными приложениями Intune, шифрование обеспечивается средствами Майкрософт. Данные шифруются синхронно при выполнении операций ввода-вывода с файлами в соответствии с параметрами политики. Управляемые приложения Android используют шифрование AES-128 в режиме CBC с помощью библиотек платформы. Метод шифрования не соответствует стандарту FIPS 140-2. Шифрование SHA-256 поддерживается в виде явной инструкции с использованием параметра SigAlg и работает только на устройствах с операционной системой версии 4.2 и выше. Содержимое в хранилище устройства всегда зашифровано.",
- "encryptionAndroid2": "Когда в политике приложения указывается на необходимость шифрования, конечному пользователю необходимо настроить ПИН-код и использовать его для доступа к устройству. Если ПИН-код не настроен, приложение не запустится и конечный пользователь увидит следующее сообщение: \"По требованию вашей организации для доступа к приложению нужно сначала задать ПИН-код для устройства\".",
- "encryptionMac1": "Для приложений, связанных с политикой управления мобильными приложениями Intune, шифрование обеспечивается средствами Майкрософт. Данные шифруются синхронно при выполнении операций ввода-вывода с файлами в соответствии с параметрами политики. Управляемые приложения на Mac используют шифрование AES-128 в режиме CBC с помощью библиотек платформы. Метод шифрования не соответствует стандарту FIPS 140-2. Шифрование SHA-256 поддерживается в виде явной инструкции с использованием параметра SigAlg и работает только на устройствах с операционной системой версии 4.2 и выше. Содержимое в хранилище устройства всегда зашифровано.",
- "faceId1": "При необходимости вы можете разрешить пользователям доступ к этому приложению с рабочих учетных записей через идентификацию лиц вместо ПИН-кода.",
- "faceId2": "Выберите Да, чтобы разрешить использовать идентификацию лиц вместо ПИН-кода для доступа к приложению.",
- "managementLevelsAndroid1": "Этот параметр позволяет задать применение политики к устройствам администратора устройств Android, устройствам Android Enterprise или неуправляемым устройствам.",
- "managementLevelsAndroid2": "{0}: неуправляемые устройства — это устройства, на которых не найдено управление Intune MDM. Сюда входят сторонние поставщики MDM.",
- "managementLevelsAndroid3": "{0}: управление устройствами с помощью API администрирования устройств Android в Intune.",
- "managementLevelsAndroid4": "{0}: управление устройствами с рабочих профилей Android Enterprise или полное управление устройствами Android Enterprise в Intune.",
- "managementLevelsIos1": "Этот параметр позволяет указать, применяется ли эта политика к управляемым или неуправляемым устройствам MDM.",
- "managementLevelsIos2": "{0}: неуправляемые устройства — это устройства, на которых не найдено управление Intune MDM. Сюда входят сторонние поставщики MDM.",
- "managementLevelsIos3": "{0}: управляемые устройства управляются через Intune MDM.",
- "minAppVersion": "Укажите обязательную минимальную версию приложения, которая нужна пользователю для безопасного доступа к приложению.",
- "minAppVersionWarning": "Укажите рекомендуемую минимальную версию приложения, которая нужна пользователю для безопасного доступа к приложению.",
- "minOsVersion": "Укажите обязательную минимальную версию ОС, которая нужна пользователю для безопасного доступа к приложению.",
- "minOsVersionWarning": "Укажите рекомендуемую минимальную версию ОС, которая нужна пользователю для безопасного доступа к приложению.",
- "minPatchVersion": "Определите самый старый уровень исправлений для системы безопасности Android, допустимый для пользователя при безопасном доступе к приложению.",
- "minPatchVersionWarning": "Определите рекомендуемый уровень исправлений для системы безопасности Android для пользователя при безопасном доступе к приложению.",
- "minSdkVersion": "Укажите обязательную минимальную версию пакета SDK для политики защиты приложений Intune, которая нужна пользователю для безопасного доступа к приложению.",
- "requireAppPinDefault": "Выберите Да, чтобы отключить ПИН-код приложения, если на зарегистрированном устройстве обнаружена блокировка.
",
- "targetAllApps1": "Этот параметр позволяет использовать политику как целевую в приложениях на устройствах с любым состоянием управления.",
- "targetAllApps2": "При разрешении конфликта политик этот параметр будет заменен, если у пользователя есть целевая политика для определенного состояния управления.",
- "touchId2": "Выберите {0}, чтобы для доступа к приложению требовалась идентификация с помощью отпечатка пальца вместо ПИН-кода."
- },
- "Tap": {
- "pinResetAfterNumberOfDays": "Укажите количество дней, по истечении которых будет затребован сброс ПИН-кода.",
- "previousPinBlockCount": "Этот параметр определяет число предыдущих ПИН-кодов, которые будут храниться в Intune. Все новые ПИН-коды должны отличаться от тех, которые хранятся в Intune."
+ "WindowsFeatureUpdate": {
+ "EndOFSupportStatus": {
+ "notSupported": "Не поддерживается",
+ "supportEnding": "Завершение поддержки",
+ "supported": "Поддерживается"
+ }
},
- "WipPolicySettings": {
- "25": "",
- "allowWindowsSearch": "Это разрешит службе поиска Windows продолжить поиск в зашифрованных данных.",
- "authoritativeIpRanges": "Включите этот параметр, если хотите переопределить автообнаружение диапазонов IP-адресов Windows.",
- "authoritativeProxyServers": "Включите этот параметр, если хотите переопределить автообнаружение прокси-серверов Windows.",
- "checkInput": "Проверить допустимость входных данных",
- "dataRecoveryCert": "Сертификат восстановления — это специальный сертификат шифрованной файловой системы (EFS), который вы можете использовать для восстановления зашифрованных файлов при утере или повреждении ключа шифрования. Нужно создать сертификат восстановления и указать его здесь. Дополнительные сведения",
- "enterpriseCloudResources": "Укажите облачные ресурсы, которые будут считаться корпоративными и защищаться политикой Windows Information Protection. Можно указать несколько ресурсов, разделив записи символом \"|\".
Если в вашей организации настроен прокси-сервер, вы можете указать прокси-сервер, через который будет направляться трафик в облачные ресурсы.
URL[,Proxy]|URL[,Proxy]
Без прокси-сервера: contoso.sharepoint.com|contoso.visualstudio.com
С прокси-сервером: contoso.sharepoint.com,proxy.contoso.com|contoso.visualstudio.com,proxy.contoso.com
",
- "enterpriseIPv4Ranges": "Укажите диапазоны IPv4-адресов, которые формируют вашу корпоративную сеть. Они используются вместе с доменными именами корпоративной сети, определяющими границу корпоративной сети.
Для этого параметра нужно включить Windows Information Protection.
Можно указать несколько диапазонов, разделив их запятой.
Пример: 3.4.0.1-3.4.255.255,192.168.1.1-192.168.255.255
",
- "enterpriseIPv6Ranges": "Укажите диапазоны IPv6-адресов, которые формируют корпоративную сеть. Они используются вместе с доменными именами корпоративной сети, определяющими границу корпоративной сети.
Можно указать несколько диапазонов, разделив их запятой.
Пример: 2001:4898:dc05::-2001:4898:dc05:ffff:ffff:ffff:ffff:ffff,2a01:110::-2a01:110:7fff:ffff:ffff:ffff:ffff:ffff
",
- "enterpriseInternalProxyServers": "Если в вашей организации настроен прокси-сервер, укажите прокси-сервер, через который будет направляться трафик к облачным ресурсам, указанным в параметрах корпоративных облачных ресурсов.
Можно указать несколько значений, разделив их точкой с запятой.
Пример: contoso.internalproxy1.com;contoso.internalproxy2.com
",
- "enterpriseNetworkDomainNames": "Укажите DNS-имена, которые формируют вашу корпоративную сеть. Они используются вместе с диапазонами IP-адресов для определения границы корпоративной сети. Можно указать несколько значений, разделив их запятой.
Для этого параметра нужно включить Windows Information Protection.
Пример: corp.contoso.com,region.contoso.com
",
- "enterpriseProtectedDomainNames": "Укажите DNS-имена, которые формируют вашу корпоративную сеть. Они используются вместе с диапазонами IP-адресов, указанными для определения границ корпоративной сети. Можно указать несколько значений, разделив отдельные записи с помощью \"|\".
Этот параметр требуется для включения Windows Information Protection.
Пример: corp.contoso.com|region.contoso.com
",
- "enterpriseProxyServers": "Если в вашей корпоративной сети внешние прокси-серверы, укажите их здесь. При указании адреса прокси-сервера нужно также указать порт, через который будет разрешено направлять трафик и защищать его с помощью Windows Information Protection.
Примечание. Этот список не должен включать серверы в списке внутренних прокси-серверов. Можно указать несколько значений, разделив их точкой с запятой.
Пример: proxy.contoso.com:80;proxy2.contoso.com:80
",
- "maxInactivityTime1": "Указывает максимальное количество времени (в минутах) при простое до блокировки устройства с помощью ПИН-кода или пароля. Пользователи могут выбрать любое значение времени ожидания в пределах указанных максимальных значений в приложении \"Параметры\". Обратите внимание, что для Lumia 950 и 950XL максимальное время ожидания — пять минут независимо от значения, заданного политикой.",
- "maxInactivityTime2": "0 (по умолчанию) — время ожидания не задано. Значение по умолчанию \"0\" значит, что время ожидания не задано.",
- "maxPasswordAttempts1": "У этой политики разное поведение на мобильном устройстве и компьютере.",
- "maxPasswordAttempts2": "На мобильном устройстве, когда пользователь достигает значения, заданного политикой, происходит очистка устройства.",
- "maxPasswordAttempts3": "На компьютере, когда пользователь достигает значения, заданного политикой, очистка устройства не выполняется. Вместо этого компьютер переходит в режим восстановления BitLocker, в котором данные недоступны, но их можно восстановить. Если BitLocker не включен, политику невозможно применить.",
- "maxPasswordAttempts4": "Перед достижением предельного числа неудачных попыток пользователь переходит на экран блокировки и получает предупреждение, что компьютер будет заблокирован. При достижении предельного числа попыток устройство автоматически перезагрузится и откроет страницу восстановления BitLocker. На этой странице пользователь получит приглашение указать ключ восстановления BitLocker.",
- "maxPasswordAttempts5": "0 (по умолчанию) — устройство не очищается после ввода неправильного ПИН-кода или пароля.",
- "maxPasswordAttempts6": "Самое безопасное значение — 0, если все значения политики равны нулю. В противном случае самое безопасное значение — минимальное значение политики.",
- "mdmDiscoveryUrl": "Укажите URL-адрес конечной точки регистрации MDM, с помощью которого пользователи будут регистрироваться в MDM. По умолчанию он указывается для Intune.",
- "minimumPinLength1": "Целое значение, которое задает минимальное число символов ПИН-кода. Значение по умолчанию — 4. Наименьшее число, которое можно указать для этого параметра политики — 4. Наибольшее число должно быть меньше указанного в параметре \"Максимальная длина ПИН-кода\" или равно числу 127 в зависимости от того, что окажется меньше.",
- "minimumPinLength2": "Если вы настроите этот параметр политики, длина ПИН-кода должна быть не меньше этого числа. Если вы отключите или не настроите этот параметр, длина ПИН-кода должна быть не меньше четырех символов.",
- "name": "Имя границы сети",
- "neutralResources": "Если в вашей организации есть конечные точки перенаправления проверки подлинности, укажите их здесь. Указанные расположения считаются личными или корпоративными в зависимости от контекста подключения перед перенаправлением.
Можно указать несколько значений, разделив их запятой.
Пример: sts.contoso.com,sts.contoso2.com
",
- "passportForWork1": "Значение, которое задает Windows Hello для бизнеса в качестве способа входа в Windows.",
- "passportForWork2": "Значение по умолчанию — True. Если вы зададите значение False, пользователь сможет подготовить Windows Hello для бизнеса только на мобильных телефонах, присоединенных к Azure Active Directory, где требуется подготовка.",
- "pinExpiration": "Наибольшее число, которое можно указать для политики, — 730, а наименьшее — 0. Если задан параметр политики 0, ПИН-код бессрочный.",
- "pinHistory1": "Наибольшее число, которое можно указать для политики, — 50, а наименьшее — 0. Если задан параметр политики 0, хранение предыдущих ПИН-кодов не требуется.",
- "pinHistory2": "Текущий ПИН-код пользователя включен в набор ПИН-кодов, связанных с учетной записью пользователя. Журнал ПИН-кодов не сохраняется после сброса ПИН-кода.",
- "protectUnderLock": "Защищает содержимое приложения, когда устройство заблокировано.",
- "protectionModeBlock": "Блокировать: блокирует перемещение корпоративных данных из защищенных приложений.
",
- "protectionModeOff": "Отключено. Пользователь может перемещать данные из защищенных приложений. Действия не записываются в журнал.
",
- "protectionModeOverride": "Разрешить переопределения. Пользователь получает запрос при попытке переместить данные из защищенного приложения в незащищенное. Если он отклонит этот запрос, действие будет записано в журнал.
",
- "protectionModeSilent": "Автоматически. Пользователь может перемещать данные из защищенных приложений. Эти действия записываются в журнал.
",
- "required": "Обязательно",
- "revokeOnMdmHandoff": "Добавлена в Windows 10 версии 1703. Эта политика контролирует отзыв ключей WIP при обновлении устройства с MAM до MDM. Если она отключена, ключи не будут отозваны и пользователь сохранит доступ к защищенным файлам после обновления. Это рекомендуемый режим, если в службе MDM настроен тот же EnterpriseID WIP, что и в службе MAM.",
- "revokeOnUnenroll": "Ключи шифрования будут отозваны при отмене регистрации устройства в политике.",
- "rmsTemplateForEdp": "GUID TemplateID, который используется для шифрования RMS. Шаблон Azure RMS позволяет ИТ-администратору настроить сведения о том, у кого есть доступ к файлу, защищенному RMS, и длительность этого доступа.",
- "showWipIcon": "Это позволит пользователю узнать, когда он выступает от лица организации, путем наложения значка.",
- "useRmsForWip": "Указывает, следует ли разрешить шифрование Azure RMS для WIP."
+ "SecurityTemplate": {
+ "aSR": "Сокращение направлений атак",
+ "accountProtection": "Защита учетной записи",
+ "allDevices": "Все устройства",
+ "antivirus": "Антивирус",
+ "antivirusReporting": "Отчеты антивирусных программ (предварительная версия)",
+ "conditionalAccess": "Условный доступ",
+ "deviceCompliance": "Соответствие устройства политике",
+ "diskEncryption": "Шифрование диска",
+ "eDR": "Обнаружение и нейтрализация атак на конечные точки",
+ "firewall": "Брандмауэр",
+ "helpSupport": "Справка и поддержка",
+ "setup": "Установка",
+ "wdapt": "Microsoft Defender для конечной точки"
+ },
+ "Win32ReturnCodes": {
+ "CodeTypes": {
+ "failed": "Сбой",
+ "hardReboot": "Холодная перезагрузка",
+ "retry": "Повторить",
+ "softReboot": "Горячая перезагрузка",
+ "success": "Успешно выполнено"
},
- "requireAppPin": "Выберите Да, чтобы отключить ПИН-код приложения, если на зарегистрированном устройстве обнаружена блокировка.
Примечание. Intune не может обнаружить регистрацию устройств в стороннем решении EMM в iOS или iPadOS.
"
- },
- "AppInfoBalloonText": {
- "Certificate": {
- "customSubjectName": "CN={{UserName}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US\r\nor\r\nCN={{AAD_Device_ID}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US",
- "keySize": "Выберите число битов, содержащееся в ключе.",
- "keyUsage": "Укажите криптографическое действие, необходимое для обмена открытым ключом сертификата.",
- "renewalThreshold": "Введите процент (от 1 до 99 %) оставшегося времени существования сертификата, по достижении которого устройство может запросить его продление. Рекомендуемое значение в Intune — 20 %. (1–99)",
- "rootCert": "Выберите ранее настроенный и назначенный профиль корневого сертификата ЦС. Сертификат ЦС должен совпадать с корневым сертификатом ЦС, выдающим сертификат для этого профиля (который вы сейчас настраиваете).",
- "scepServerUrl": "Введите URL-адрес сервера NDES, выдающего сертификаты по протоколу SCEP (требуется HTTPS), например https://contoso.com/certsrv/mscep/mscep.dll.",
- "scepServerUrls": "Добавьте URL-адреса для сервера NDES, который выдает сертификаты по протоколу SCEP (требуется HTTPS), например https://contoso.com/certsrv/mscep/mscep.dll.",
- "subjectAlternativeName": "Альтернативное имя субъекта",
- "subjectNameFormat": "Формат имени субъекта",
- "validityPeriod": "Время, оставшееся до истечения срока действия сертификата. Введите значение не больше срока действия, указанного в шаблоне сертификата. Значение по умолчанию — один год."
- },
- "appInstallContext": "Этот параметр задает контекст установки, связываемый с приложением. Для приложений в двойном режиме выберите нужный контекст. Для прочих приложений выбор делается заранее на основе пакета и не может быть изменен.",
- "autoUpdateMode": "Настройте приоритет обновления для приложения. Выберите \"По умолчанию\", чтобы перед обновлением приложения устройство было подключено к сети Wi-Fi, заряжалось от источника питания и не находилось в состоянии активного использования. Выберите \"Высокая важность\", чтобы обновить приложение немедленно после его публикации разработчиком вне зависимости от состояния заряда, подключения к сети Wi-Fi или действий конечного пользователя на устройстве. Высокая важность применяется только для устройств DO.",
- "configurationSettingsFormat": "Текст формата для параметров конфигурации",
- "ignoreVersionDetection": "Задайте значение \"Да\" для приложений, которые автоматически обновляются разработчиком (например, Google Chrome).",
- "ignoreVersionDetectionMacOSLobApp": "Выберите \"Да\" для приложений, которые будут автоматически обновляться разработчиком или для которых нужно только проверить bundleID (ИД пакета) перед установкой. Выберите \"Нет\" для проверки bundleID и номера версии приложения перед установкой.",
- "installAsManagedMacOSLobApp": "Этот параметр применяется только к macOS 11 и более поздним версиям. Приложение будет установлено, но не будет управляться в версиях до macOS 10.15 включительно.",
- "installContextDropdown": "Выберите нужный контекст установки. В контексте пользователя приложение будет установлено только для целевого пользователя, а в контексте устройства — для всех пользователей на устройстве.",
- "ldapUrl": "Это имя узла LDAP, где клиенты могут получить открытые ключи шифрования для получателей электронной почты. Сообщения электронной почты будут зашифрованы, когда ключ станет доступен. Поддерживаемые форматы: - ldap.example.com
\r\n- ldap.example.com:123
\r\n- ldap://ldap.example.com
- ldap://ldap.example.com:123
- ldaps://ldap.example.com
\r\n- ldaps://ldap.example.com:123
",
- "permissionsSettings": "Выберите разрешения среды выполнения для связанного приложения.",
- "policyAssociatedApp": "Выберите приложение, с которым будет связана эта политика.",
- "policyConfigurationSettings": "Выберите способ для определения параметров конфигурации этой политики.",
- "policyDescription": "Дополнительно можно ввести описание этой политики конфигурации.",
- "policyEnrollmentType": "Выберите, как осуществляется управление этими параметрами: с помощью управления устройствами или приложений, созданных на основе пакета SDK Intune.",
- "policyName": "Введите имя политики конфигурации.",
- "policyPlatform": "Выберите платформу, к которой будет применена эта политика конфигурации приложений.",
- "policyProfileType": "Выберите типы профилей устройств, к которым будет применяться этот профиль конфигурации приложений.",
- "policySMime": "Настройка параметров подписи и шифрования S/MIME для Outlook.",
- "sMimeDeployCertsFromIntune": "Укажите, будут ли доставляться сертификаты S/MIME из Intune для использования с Outlook.\r\nIntune может автоматически развертывать пользователям сертификаты для подписи и шифрования через Корпоративный портал.",
- "sMimeEnable": "Укажите, включены ли элементы управления S/MIME при написании электронного письма.",
- "sMimeEnableAllowChange": "Укажите, разрешено ли пользователю изменять параметр \"Включить S/MIME\".",
- "sMimeEncryptAllEmails": "Укажите, должны ли шифроваться все электронные письма.\r\nШифрование преобразует данные в зашифрованный текст, чтобы их мог прочесть только получатель.",
- "sMimeEncryptAllEmailsAllowChange": "Укажите, разрешено ли пользователю изменять параметр \"Шифровать все электронные письма\".",
- "sMimeEncryptionCertProfile": "Укажите профиль сертификата для шифрования электронной почты.",
- "sMimeSignAllEmails": "Укажите, следует ли подписывать все электронные письма.\r\nЦифровая подпись проверяет подлинность письма и защищает от незаконного изменения содержимого при передаче.",
- "sMimeSignAllEmailsAllowChange": "Укажите, разрешено ли пользователю изменять параметр \"Подписать все электронные письма\".",
- "sMimeSigningCertProfile": "Укажите профиль сертификата для подписывания электронной почты.",
- "sMimeUserNotificationType": "Способ уведомления пользователей о необходимости открыть Корпоративный портал и получить сертификаты S/MIME для Outlook."
- },
- "WindowsQualityUpdateDaysUntilForcedReboot": {
- "oneDay": "1 день",
- "twoDays": "2 дня",
- "zeroDays": "0 дней"
- },
- "Autopilot": {
- "AssignResourceAccount": {
- "createNewCommandMenu": "Создать",
- "createNewResourceAccountInfo": "\r\nСоздание новой учетной записи ресурса во время регистрации. Учетная запись ресурса будет добавлена в таблицу учетных записей ресурсов сразу же, но будет неактивна до регистрации устройства и проверки подписки Surface Hub. Подробнее об учетных записях ресурсов.
\r\n ",
- "createNewResourceTitle": "Создание учетной записи ресурса",
- "deviceNameInvalid": "Имя устройства имеет недопустимый формат",
- "deviceNameRequired": "Требуется имя устройства",
- "editResourceAccountLabel": "Изменить",
- "selectExistingCommandMenu": "Выбрать существующую"
- },
- "Device": {
- "ComputerName": {
- "validFormat": "Имена должны быть длиной до 15 символов и могут включать буквы (a–z, A–Z), цифры (0–9) и дефисы. Имена только из цифр недопустимы, и они не могут включать пробелы."
- },
- "Header": {
- "addressableUserName": "Понятное имя",
- "azureADDevice": "Связанное устройство Azure AD",
- "batch": "Тег группы",
- "dateAssigned": "Дата назначения",
- "deviceDisplayName": "Имя устройства",
- "deviceName": "имя устройства.",
- "deviceUseType": "Тип использования устройства",
- "enrollmentState": "Состояние регистрации",
- "intuneDevice": "Связанное устройство Intune",
- "lastContacted": "Последнее обращение",
- "make": "Изготовитель",
- "model": "Модель",
- "profile": "Присвоенный профиль",
- "profileStatus": "Состояние профиля",
- "purchaseOrderId": "Заказ на поставку",
- "resourceAccount": "Учетная запись ресурса",
- "serialNumber": "серийный номер;",
- "userPrincipalName": "Пользователь"
- }
- },
- "DeviceUseType": {
- "meetingAndPresentation": "Собрания и презентации",
- "teamCollaboration": "Совместная работа в команде"
- },
- "Devices": {
- "featureDescription": "Windows Autopilot позволяет настроить запуск при первом включении компьютера для пользователей.",
- "importErrorStatus": "Некоторые устройства не были импортированы. Щелкните здесь, чтобы получить дополнительные сведения.",
- "importPendingStatus": "Идет импорт. Затраченное время: {0} мин. Процесс может занять до {1} мин."
- },
- "DirectoryService": {
- "activeDirectoryAD": "С гибридным присоединением к Azure AD",
- "activeDirectoryADLabel": "Гибридное присоединение к Azure AD с Autopilot",
- "azureAD": "Присоединено к Azure AD",
- "unknownType": "Неизвестный тип"
- },
- "Filter": {
- "enrollmentState": "Состояние",
- "profile": "Состояние профиля"
- },
- "OOBE": {
- "AddressableUserName": {
- "validateEmpty": "Понятное имя пользователя не может быть пустым."
- },
- "ApplyComputerNameTemplate": {
- "infoBalloon": "Создайте шаблон именования, чтобы добавить имена устройств во время регистрации.",
- "label": "Применить шаблон имени устройства"
- },
- "ApplyComputerNameTemplateDisabled": {
- "label": "В профилях развертывания Autopilot с гибридным присоединением к Azure AD устройства именуются согласно параметрам, указанным в конфигурации присоединения к домену."
- },
- "ComputerNameTemplate": {
- "emptyValue": "MyCompany-%RAND:4%",
- "label": "Ввод имени",
- "noDisallowedChars": "Имя должно включать только буквы, цифры, дефисы и макросы %SERIAL% или %RAND:x%",
- "serialLength": "При использовании %SERIAL% допустимо не больше 7 символов",
- "validateLessThan15Chars": "В имени должно быть не больше 15 символов",
- "validateNoSpaces": "В именах компьютеров не должно быть пробелов",
- "validateNotAllNumbers": "Имя должно также включать буквы и (или) дефисы",
- "validateNotEmpty": "Имя не может быть пустым",
- "validateOnlyOneMacro": "В имени может быть только один макрос %SERIAL% или %RAND:x%"
- },
- "ConfigureComputerNameTemplate": {
- "description": "Создайте уникальное имя для своих устройств. Имена должны быть длиной до 15 символов и могут включать буквы (a — z, A — Z), цифры (0–9) и дефисы. Имена только из цифр недопустимы, и они не могут включать пробелы. Используйте макрос %SERIAL%, чтобы добавить уникальный серийный номер оборудования, или макрос %RAND:x%, чтобы добавить случайную строку цифр, где x — количество этих цифр."
- },
- "EnableWhiteGlove": {
- "infoBalloon": "Включите функцию запуска при первом включении компьютера (OOBE) без проверки подлинности пользователя. Чтобы включить интерфейс OOBE, нужно нажать клавишу Windows пять раз. Устройство будет зарегистрировано, а также будут подготовлены все приложения и параметры в контексте локального компьютера. Приложения и параметры в контексте пользователя будут доставлены, когда пользователь выполнит вход в систему.",
- "label": "Разрешить предварительно подготовленное развертывание"
- },
- "HybridAzureADSkipConnectivityCheck": {
- "infoBalloon": "Поток Autopilot гибридного присоединения к Azure AD продолжит работу, даже если ему не удастся установить подключение к контроллеру домена во время запуска при первом включении компьютера.",
- "label": "Пропустить проверку подключения AD (предварительная версия)"
- },
- "accountType": "Тип учетной записи пользователя",
- "accountTypeInfo": "Укажите, являются ли пользователи администраторами или обычными пользователями на устройстве. Обратите внимание, что этот параметр не применяется к учетным записям глобального администратора или администратора организации. Эти учетные записи не могут быть обычными пользователями, так как они имеют доступ ко всем возможностям администрирования в Azure AD.",
- "configOOBEInfo": "\r\nНастройка готового интерфейса для устройств Autopilot\r\n
",
- "configureDevice": "Режим развертывания",
- "configureDeviceHintForSurfaceHub2": "Autopilot поддерживает режим самостоятельного развертывания только для Surface Hub 2. Этот режим не связывает пользователя с зарегистрированным устройством, поэтому для него не требуются учетные данные пользователя.",
- "configureDeviceHintForWindowsPC": "\r\n Режим развертывания указывает, нужно ли пользователю вводить учетные данные, чтобы подготовить устройство.\r\n
\r\n \r\n - \r\n Под управлением пользователя: устройства связываются с пользователем, регистрирующим устройство. Для подготовки устройства требуются учетные данные.\r\n
\r\n - \r\n Самостоятельное развертывание (предварительная версия): устройства не связываются с регистрирующим пользователем, и учетные данные не требуются для подготовки устройства.\r\n
\r\n
",
- "createSurfaceHub2Info": "Настройте параметры регистрации Autopilot для устройств Surface Hub 2. По умолчанию в Autopilot включен пропуск проверки подлинности пользователей при первом включении (OBEE). Дополнительные сведения о Windows Autopilot для Surface Hub 2.",
- "createWindowsPCInfo": "\r\n\r\nСледующие параметры автоматически включаются для устройств Autopilot в режиме самостоятельного развертывания.\r\n
\r\n\r\n - \r\n Пропустить выбор рабочего или домашнего использования.\r\n
\r\n - \r\n Пропустить регистрацию OEM и настройку OneDrive.\r\n
\r\n - \r\n Пропустить проверку подлинности в OOBE.\r\n
\r\n
",
- "endUserDevice": "Под управлением пользователя",
- "hideEscapeLink": "Скрыть параметры изменения учетной записи",
- "hideEscapeLinkInfo": "Функции смены учетной записи и перезапуска с новой отображаются соответственно при начальной настройке устройства на корпоративной странице входа и на странице ошибки домена. Чтобы скрыть эти функции, настройте корпоративную фирменную символику в Azure Active Directory (требуется Windows 10 как минимум версии 1809 или Windows 11).",
- "info": "Параметры профиля AutoPilot позволяют задать готовую конфигурацию, которую пользователи получат при первом запуске Windows. ",
- "language": "Язык (регион)",
- "languageInfo": "Укажите язык и регион, которые будут использоваться.",
- "licenseAgreement": "Условия лицензионного соглашения корпорации Майкрософт",
- "licenseAgreementInfo": "Укажите, следует ли показывать условия лицензии пользователям.",
- "plugAndForgetDevice": "Самостоятельное развертывание (предварительная версия)",
- "plugAndForgetGA": "Самостоятельное развертывание",
- "privacySettingWarning": "Изменено значение по умолчанию для сбора диагностических данных на устройствах под управлением Windows 10 версии 1903 и более поздних версий или Windows 11. ",
- "privacySettings": "Настройки приватности",
- "privacySettingsInfo": "Укажите, следует ли показывать пользователям параметры конфиденциальности.",
- "showCortanaConfigurationPage": "Настройка Кортаны",
- "showCortanaConfigurationPageInfo": "Вариант \"Показать\" включит введение в настройку Кортаны во время запуска.",
- "skipEULAWarning": "Важные сведения о скрытии условий лицензии",
- "skipKeyboardSelection": "Автоматически настроить клавиатуру",
- "skipKeyboardSelectionInfo": "Если значение равно True, пропускать страницу выбора клавиатуры, когда задан параметр \"Язык\".",
- "subtitle": "Профили AutoPilot",
- "title": "Готовый интерфейс (OOBE)",
- "useOSDefaultLanguage": "Значение ОС по умолчанию",
- "userSelect": "Выбор пользователя"
- },
- "Sync": {
- "lastRequestedLabel": "Последний запрос синхронизации",
- "lastSuccessfulLabel": "Последняя успешная синхронизация",
- "syncInProgress": "Выполняется синхронизация. Вернитесь чуть позже.",
- "syncInitiated": "Запущена синхронизация параметров AutoPilot.",
- "syncSettingsTitle": "Синхронизация параметров AutoPilot"
- },
- "Title": {
- "devices": "Устройства Windows AutoPilot"
- },
- "Tooltips": {
- "addressableUserName": "Имя пользователя в приветствии, которое отображается во время настройки устройства.",
- "azureADDevice": "Перейдите к сведениям о связанном устройстве. \"Н/Д\" означает, что связанное устройство отсутствует.",
- "batch": "Строковый атрибут, позволяющий идентифицировать группу устройств. Поле \"Тег группы\" в Intune сопоставляется с атрибутом OrderID на устройствах Azure AD.",
- "dateAssigned": "Временная метка назначения профиля устройству.",
- "deviceDisplayName": "Задайте уникальное имя для устройства. Это имя будет игнорироваться в развертываниях с гибридным присоединением к Azure AD, где по-прежнему используется имя устройства из профиля присоединения к домену.",
- "deviceName": "Имя, отображаемое при попытке пользователя обнаружить устройство и подключиться к нему.",
- "deviceUseType": " Устройство будет настроено в соответствии с вашим выбором. Вы всегда можете изменить параметры позже.\r\n \r\n - Для собраний и презентаций Windows Hello не включен, и данные удаляются после каждого сеанса.\r\n
\r\n - Для совместной работы команды Windows Hello включен, и профили сохраняются для быстрого входа.
\r\n
",
- "enrollmentState": "Указывает, зарегистрировано ли устройство.",
- "intuneDevice": "Перейдите к сведениям о связанном устройстве. \"Н/Д\" означает, что связанное устройство отсутствует.",
- "lastContacted": "Временная метка последнего обращения к устройству.",
- "make": "Изготовитель выбранного устройства.",
- "model": "Модель выбранного устройства",
- "profile": "Имя профиля, назначенного устройству.",
- "profileStatus": "Указывает, назначен ли профиль устройству.",
- "purchaseOrderId": "Идентификатор заказа на покупку",
- "resourceAccount": "Удостоверение устройства или имя субъекта-пользователя (UPN).",
- "serialNumber": "Серийный номер выбранного устройства.",
- "userPrincipalName": "Пользователь, который должен выполнить проверку подлинности при настройке устройства."
- },
- "allDevices": "Все устройства",
- "allDevicesAlreadyAssignedError": "Профиль Autopilot уже назначен всем устройствам.",
- "assignFailedDescription": "Не удалось изменить назначения для {0}.",
- "assignFailedTitle": "Не удалось изменить назначения профилей AutoPilot.",
- "assignSuccessDescription": "Назначения для {0} успешно изменены.",
- "assignSuccessTitle": "Назначения профиля AutoPilot изменены.",
- "assignSufaceHub2ProfileNextStep": "Следующие шаги для этого развертывания",
- "assignSurfaceHub2ProfileToDeviceGroup": "1. Назначьте этот профиль по крайней мере одной группе устройств.",
- "assignSurfaceHub2ProfileToResourceAccount": "2. Назначьте учетную запись ресурса каждому устройству Surface Hub, на которое вы разворачиваете этот профиль.",
- "assignedDevicesCount": "Назначенные устройства",
- "assignedDevicesResourceAccountDescription": "Для развертывания этого профиля на устройстве необходимо назначить устройству учетную запись ресурса. Выберите одно устройство, чтобы назначить существующую учетную запись ресурса или создать новую. Подробнее об учетных записях ресурсов
",
- "assignedDevicesResourceAccountStatusBarMessage": "В этой таблице перечислены только устройства Surface Hub 2, которым был назначен этот профиль.",
- "assigningDescription": "Изменяются назначения для {0}.",
- "assigningTitle": "Изменяются назначения профилей AutoPilot.",
- "cannotDeleteMessage": "Этот профиль назначен группам. Отмените назначение всех групп в этом профиле, прежде чем удалить его.",
- "cannotDeleteTitle": "Невозможно удалить {0}",
- "createdDateTime": "Создано",
- "deleteMessage": "Если удалить этот профиль AutoPilot, для всех устройств, которым он назначен, будет отображаться \"Не назначено\".",
- "deleteMessageWithPolicySet": "Профиль {0} включен как минимум в один набор политик. Если вы удалите {0}, вы больше не сможете назначать его через эти наборы.",
- "deleteTitle": "Вы действительно хотите удалить этот профиль?",
- "description": "Описание",
- "deviceType": "Тип устройства",
- "deviceUse": "Использование устройства",
- "directoryServiceHintForSurfaceHub2": " \r\n Autopilot поддерживает присоединение к Azure AD только для устройств Surface Hub 2. Укажите, как устройства присоединяются к Active Directory (AD) в вашей организации.\r\n
\r\n \r\n - \r\n Присоединено к Azure AD: только облако без локального каталога Windows Server Active Directory.\r\n
\r\n
\r\n ",
- "directoryServiceHintForWindowsPC": "\r\n \r\n Укажите, как устройства присоединяются к Active Directory (AD) в вашей организации:\r\n
\r\n \r\n - \r\n Присоединено к Azure AD: только облако без локального Windows Server Active Directory\r\n
\r\n
\r\n ",
- "getAssignedDevicesCountError": "Произошла ошибка при извлечении числа назначенных устройств.",
- "getAssignmentsError": "Произошла ошибка при извлечении назначений профиля AutoPilot.",
- "harvestDeviceId": "Преобразовать все целевые устройства в Autopilot",
- "harvestDeviceIdDescription": "По умолчанию этот профиль можно применить только к устройствам Autopilot, синхронизированным в службе Autopilot.",
- "harvestDeviceIdInfo": "\r\n Выберите \"Да\", чтобы зарегистрировать все целевые устройства в Autopilot, если они еще не зарегистрированы. Назначенный сценарий Autopilot будет выполнен для них в следующий раз при процедуре первого включения компьютера (OOBE) с Windows.\r\n
\r\n Обратите внимание, что для некоторых сценариев Autopilot требуются определенные минимальные версии сборок Windows. Проверьте наличие на устройстве требуемой минимальной версии сборки для нужного сценария.\r\n
\r\n При удалении этого профиля связанные устройства не будут удалены из Autopilot. Для удаления устройства из Autopilot воспользуйтесь представлением \"Устройства Windows Autopilot\".\r\n ",
- "harvestDeviceIdWarning": "После преобразования устройства Autopilot можно восстановить, только удалив их из списка устройств Autopilot.",
- "holoLensCommandMenu": "HoloLens",
- "info": "Профили развертывания Windows AutoPilot позволяют настроить конфигурацию запуска при первом включении для ваших устройств.",
- "invalidProfileNameMessage": "Символ \"{0}\" не допускается",
- "joinTypeLabel": "Присоединение к Azure AD как",
- "lastModifiedDateTime": "Последнее изменение:",
- "name": "Имя",
- "noAutopilotProfile": "Нет профилей AutoPilot",
- "notEnoughPermissionAssignedError": "У вас нет необходимых разрешений для назначения этого профиля некоторым из выбранных групп. Обратитесь к администратору.",
- "profile": "профиль",
- "resourceAccountStatusBarMessage": "Учетная запись ресурса необходима для каждого устройства Surface Hub 2, на котором развертывается этот профиль. Щелкните для получения дополнительных сведений.",
- "selectServices": "Выберите службу каталогов, к которой будут присоединены устройства",
- "surfaceHub2CommandMenu": "Surface Hub 2",
- "surfaceHub2SCommandMenu": "Surface Hub 2S",
- "userAffinityLabel": "Режим развертывания",
- "windowsPCCommandMenu": "Компьютер с Windows",
- "directoryServiceLabel": "Тип присоединения к Azure AD:"
- },
- "AppInformationTab": {
- "Error": {
- "multipleChildApps": "Бизнес-приложение macOS можно установить как управляемое, только если отправляемый пакет содержит одно приложение."
- },
- "Info": {
- "AppStoreUrl": {
- "android": "Введите ссылку на описание приложения в Google Play Маркет. Например:",
- "androidLink": "https://play.google.com/store/apps/details?id=com.microsoft.office.outlook",
- "windows": "Введите ссылку на описание приложения в Microsoft Store. Например:",
- "windowsLink": "https://www.microsoft.com/en-us/p/microsoft-to-do-lists-tasks-reminders/9nblggh5r558"
- },
- "appPackageFile": "Файл, содержащий приложение в формате для загрузки неопубликованных приложений на устройстве. Допустимые типы пакетов: Android (.apk), iOS (.ipa), macOS (.intunemac), Windows (.msi, .appx, .appxbundle, .msix и .msixbundle).",
- "applicableDeviceType": "Выберите типы устройств, на которых можно установить это приложение.",
- "category": "Категоризация приложения позволит пользователям легче отсортировать и найти его в Корпоративном портале. Вы можете выбрать множество категорий.",
- "categoryLink": "https://docs.microsoft.com/en-us/intune/apps/apps-add#create-and-edit-categories-for-apps",
- "description": "Помогите пользователям устройств понять назначение приложения. Они увидят это описание на корпоративном портале.",
- "developer": "Имя компании или лица, разработавших приложение. Эти сведения будут отображаться пользователям, вошедшим в центр администрирования.",
- "displayVersion": "Версия приложения. Пользователи увидят эти сведения на корпоративном портале.",
- "infoUrl": "Предоставьте пользователям ссылку на веб-сайт или документацию с дополнительными сведениями о приложении. Пользователи увидят этот URL-адрес в Корпоративном портале.",
- "isFeatured": "Приложения из подборки размещаются на видном месте в Корпоративном портале, чтобы пользователи могли быстро получать к ним доступ.",
- "learnMore": "Дополнительные сведения",
- "logo": "Отправьте логотип, связанный с приложением. Он будет отображаться рядом с приложением в Корпоративном портале.",
- "macOSDmgAppPackageFile": "Файл, содержащий приложение в формате, который можно загрузить неопубликованным на устройстве. Допустимый тип пакета: DMG.",
- "minOperatingSystem": "Выберите самую раннюю версию операционной системы, в которой можно установить приложение. Если приложение назначается устройству с более ранней версией ОС, оно не будет установлено.",
- "name": "Добавьте имя для приложения. Это имя будет отображаться в списке приложений Intune, и его будут видеть пользователи в Корпоративном портале.",
- "notes": "Добавьте дополнительные заметки о приложении. Они будут отображаться пользователям, вошедшим в центр администрирования.",
- "owner": "Имя пользователя в организации, который управляет лицензированием или является контактным лицом для этого приложения. Это имя будет отображаться пользователям, вошедшим в центр администрирования.",
- "packageName": "Чтобы узнать имя пакета приложения, обратитесь к изготовителю устройства. Пример имени пакета: com.example.app.",
- "privacyUrl": "Предоставьте пользователям ссылку на дополнительные сведения об условиях и параметрах конфиденциальности приложения. Пользователи увидят URL-адрес сведений о конфиденциальности в Корпоративном портале.",
- "publisher": "Имя разработчика или название компании, которая распространяет приложение. Пользователи увидят эти сведения на корпоративном портале.",
- "selectApp": "Найдите в App Store приложения iOS, которые хотите развернуть в Intune.",
- "useManagedBrowser": "При необходимости открываемое пользователем веб-приложение будет открываться в браузере, защищенном Intune, например в Microsoft Edge или Intune Managed Browser. Этот параметр применяется к устройствам с iOS и Android.",
- "useManagedBrowserLink": "https://docs.microsoft.com/en-us/intune/apps/app-configuration-managed-browser",
- "win32AppPackageFile": "Файл, содержащий приложение в формате для загрузки неопубликованных приложений на устройство. Допустимый тип пакета: .intunewin."
- },
- "descriptionPreview": "Предварительная версия",
- "descriptionRequired": "Требуется описание.",
- "editDescription": "Изменение описания",
- "name": "Сведения о приложении",
- "nameForOfficeSuitApp": "Сведения о наборе приложений"
- },
+ "Columns": {
+ "codeType": "Тип кода",
+ "returnCode": "Код возврата"
+ },
+ "bladeTitle": "Коды возврата",
+ "gridAriaLabel": "Коды возврата",
+ "header": "Задайте коды возврата, чтобы указать действия после установки:",
+ "onAddAnnounceMessage": "Код возврата: добавлен элемент {0} из {1}.",
+ "onDeleteSuccess": "Код возврата {0} удален.",
+ "returnCodeAlreadyUsedValidation": "Код возврата уже используется.",
+ "returnCodeMustBeIntegerValidation": "Код возврата должен быть целым числом.",
+ "returnCodeShouldBeAtLeast": "Код возврата не может быть меньше {0}.",
+ "returnCodeShouldBeAtMost": "Код возврата не может превышать {0}.",
+ "selectorLabel": "Коды возврата"
+ },
"NotificationMessage": {
"NotificationMessageTemplatesTab": {
"arabic": "Арабский",
@@ -10516,84 +10079,599 @@
"localeLabel": "Языковой стандарт",
"isDefaultLocale": "По умолчанию"
},
- "Win32Program": {
- "DeviceRestartBehaviorOptions": {
- "allow": "Установка приложения может привести к перезапуску устройства",
- "basedOnReturnCode": "Определять режим по кодам возврата",
- "force": "Intune выполнит принудительную перезагрузку устройства",
- "suppress": "Никаких действий выполняться не будет"
- },
- "RunAsAccountOptions": {
- "system": "Система",
- "user": "Пользователь"
- },
- "bladeTitle": "Программа",
- "deviceRestartBehavior": "Действие при перезагрузке устройства",
- "deviceRestartBehaviorTooltip": "Выберите режим перезагрузки устройства после успешной установки приложения. Выберите \"Определять режим по кодам возврата\", чтобы перезагрузить устройство на основе параметров конфигурации кодов возврата. Выберите \"Никаких действий выполняться не будет\" для подавления перезагрузки устройства во время установки приложения на основе MSI. Выберите \"Установка приложения может принудительно выполнить перезагрузку устройства\", чтобы позволить установке приложения завершиться без подавления перезагрузок. Выберите \"Intune выполнит принудительную перезагрузку устройства\", чтобы всегда перезагружать устройство после успешной установки приложения.",
- "header": "Укажите команды для установки и удаления этого приложения:",
- "installCommand": "Команда установки",
- "installCommandMaxLengthErrorMessage": "Длина команды установки не может превышать допустимый максимум в 1024 символа.",
- "installCommandTooltip": "Командная строка завершения установки, используемая для установки этого приложения.",
- "runAs32Bit": "Запуск команд установки и удаления в 32-разрядном процессе на 64-разрядных клиентах",
- "runAs32BitTooltip": "Выберите \"Да\" для установки и удаления приложения в 32-разрядном процессе на 64-разрядных клиентах. Выберите \"Нет\" (по умолчанию) для установки и удаления приложения в 64-разрядном процессе на 64-разрядных клиентах. 32-разрядные клиенты всегда будут использовать 32-разрядный процесс.",
- "runAsAccount": "Поведение при установке",
- "runAsAccountTooltip": "Выберите \"Система\", чтобы установить приложение для всех пользователей, если это поддерживается. Выберите \"Пользователь\", чтобы установить приложение для пользователя, выполнившего вход на устройстве. В приложениях MSI двойного назначения внесение изменений сделает невозможным установку обновлений и удаление, пока не будет восстановлено значение, использованное на устройстве при первоначальной установке.",
- "selectorLabel": "Программа",
- "uninstallCommand": "Команда удаления",
- "uninstallCommandTooltip": "Командная строка завершения удаления, используемая для удаления этого приложения."
- },
- "OutlookAppConfigSettings": {
- "AllowUserToChangeSetting": {
- "title": "Разрешить пользователю менять настройку",
- "tooltip": "Укажите, разрешено ли пользователю менять настройку."
- },
- "AllowWorkAccounts": {
- "title": "Разрешение только рабочих и учебных учетных записей",
- "tooltip": " При включении этого параметра пользователи не смогут добавить личный адрес электронной почты и учетные записи хранения в Outlook. Если у пользователя добавлена в Outlook личная учетная запись, ему потребуется ее удалить. Если он этого не сделает, добавить рабочую или учебную учетную запись будет невозможно."
- },
- "BlockExternalImages": {
- "title": "Блокировка внешних изображений",
- "tooltip": "При блокировке внешних изображений приложение не позволит скачивать размещенные в Интернете изображения, встроенные в текст сообщения. Если не настроить эту функцию, по умолчанию она будет для приложения отключена."
- },
- "ConfigureEmail": {
- "title": "Параметры учетной записи электронной почты"
- },
- "DefaultAppSignatureSetting": {
- "Tooltip": {
- "android": "Подпись приложения по умолчанию указывает, будет ли приложение использовать \"Получить Outlook для Android\" в качестве подписи по умолчанию во время написания сообщения. Если параметр отключен, подпись по умолчанию не будет использоваться, однако пользователи могут добавить собственную подпись.\r\n\r\nЕсли задано значение \"Не настроено\", параметр приложения по умолчанию включен.",
- "iOS": "Подпись приложения по умолчанию указывает, будет ли приложение использовать \"Получить Outlook для iOS\" в качестве подписи по умолчанию во время написания сообщения. Если параметр отключен, подпись по умолчанию не будет использоваться, однако пользователи могут добавить собственную подпись.\r\n\r\nЕсли задано значение \"Не настроено\", параметр приложения по умолчанию включен."
- },
- "title": "Подпись приложения по умолчанию"
- },
- "OfficeFeedReplies": {
- "title": "Веб-канал обнаружения",
- "tooltip": "Веб-канал обнаружения отображает ваши самые часто используемые файлы Office. По умолчанию он включен, когда для пользователя включена служба Delve. Если не настроить канал, по умолчанию для приложения используется значение \"Включено\"."
- },
- "OrganizeMailByThread": {
- "title": "Сообщения в цепочках",
- "tooltip": "По умолчанию в Outlook используется режим объединения бесед в представление беседы с несколькими цепочками. Если этот параметр отключен, Outlook будет отображать все сообщения по отдельности и не будет группировать их по цепочкам."
- },
- "PlayMyEmails": {
- "title": "Воспроизвести мои письма",
- "tooltip": "По умолчанию функция \"Воспроизвести мои письма\" отключена в приложении, но доступна соответствующим пользователям в виде баннера в папке \"Входящие\". Если параметру задано значение \"Отключено\", функция будет недоступна соответствующим пользователям в приложении. Пользователи могут вручную включить эту функцию в приложении, даже если она отключена. Если параметру задано значение \"Не настроено\", по умолчанию используется значение параметра \"Включено\", и функция будет доступна соответствующим пользователям."
- },
- "SuggestedReplies": {
- "title": "Предлагаемые ответы",
- "tooltip": "Outlook может предлагать варианты ответов в нижней части при открытии сообщения. Выбрав предложенный ответ, вы можете изменить его перед отправкой."
- },
- "SyncCalendars": {
- "title": "Синхронизация календарей",
- "tooltip": "Укажите, могут ли пользователи синхронизировать свой календарь Outlook с собственным приложением календаря и базой данных."
- },
- "TextPredictions": {
- "title": "Прогнозирование текста",
- "tooltip": "Outlook может предлагать слова и фразы при создании сообщений. Если Outlook предлагает вариант, проведите, чтобы принять его. Если задано значение \"Не настроено\", используется параметр приложения по умолчанию со значением \"Включено\"."
+ "WindowsQualityUpdateProfile": {
+ "Details": {
+ "DaysUntilForcedReboot": {
+ "label": "Число дней до принудительной перезагрузки"
+ },
+ "Description": {
+ "label": "Описание"
+ },
+ "Name": {
+ "label": "Имя"
+ },
+ "QualityUpdateRelease": {
+ "label": "Ускоренная установка исправлений, если версия ОС устройства ниже:"
+ },
+ "bladeTitle": "Исправления для Windows 10 и более поздних версий (предварительная версия)",
+ "loadError": "Не удалось выполнить загрузку!"
+ },
+ "TabName": {
+ "qualityUpdateSettings": "Параметры"
+ },
+ "infoBoxText": "Единственным выделенным элементом управления исправлениями, который доступен в настоящее время, за исключением существующей политики кругов обновления для Windows 10 и более поздних версий, является возможность ускорения исправлений для устройств, находящихся ниже указанного уровня исправлений. Дополнительные элементы управления станут доступны в будущем.",
+ "warningBoxText": "Хотя ускорение обновлений программного обеспечения позволит быстрее обеспечить соответствие требованиям, весьма вероятно, что оно нарушит работу пользователей из-за необходимости перезагрузки в рабочие часы."
+ },
+ "TermsOfUse": {
+ "Languages": {
+ "addLanguage": "Add language",
+ "af": "Afrikaans",
+ "am": "Amharic",
+ "arSA": "Arabic (Saudi Arabia)",
+ "as": "Assamese",
+ "az": "Azerbaijani",
+ "be": "Belarusian",
+ "bg": "Bulgarian",
+ "bn": "Bangla",
+ "bnIN": "Bangla (India)",
+ "bs": "Bosnian",
+ "ca": "Catalan",
+ "caESvalencia": "Valencian (Spain)",
+ "cs": "Czech",
+ "cy": "Welsh",
+ "da": "Danish",
+ "de": "German",
+ "default": "Default",
+ "defaultDetailsTag": "{0} (Default)",
+ "el": "Greek",
+ "en": "English",
+ "enGB": "English (United Kingdom)",
+ "es": "Spanish",
+ "esMX": "Spanish (Mexico)",
+ "et": "Estonian",
+ "eu": "Basque",
+ "fa": "Persian",
+ "fi": "Finnish",
+ "fil": "Filipino",
+ "fr": "French",
+ "frCA": "French (Canada)",
+ "ga": "Irish",
+ "gd": "Scottish Gaelic",
+ "gl": "Galician",
+ "gu": "Gujarati",
+ "ha": "Hausa",
+ "he": "Hebrew",
+ "hi": "Hindi",
+ "hr": "Croatian",
+ "hu": "Hungarian",
+ "hy": "Armenian",
+ "id": "Indonesian",
+ "ig": "Igbo",
+ "is": "Icelandic",
+ "it": "Italian",
+ "ja": "Japanese",
+ "ka": "Georgian",
+ "kk": "Kazakh",
+ "km": "Khmer",
+ "kn": "Kannada",
+ "ko": "Korean",
+ "kok": "Konkani",
+ "kuArab": "Central Kurdish (Arabic)",
+ "ky": "Kyrgyz",
+ "languageOptions": "Language Options",
+ "lb": "Luxembourgish",
+ "lo": "Lao",
+ "lt": "Lithuanian",
+ "lv": "Latvian",
+ "mi": "Maori",
+ "mk": "Macedonian",
+ "ml": "Malayalam",
+ "mn": "Mongolian",
+ "mr": "Marathi",
+ "ms": "Malay",
+ "mt": "Maltese",
+ "ne": "Nepali",
+ "nl": "Dutch",
+ "nnNO": "Norwegian, Nynorsk (Norway)",
+ "no": "Norwegian",
+ "notSpecified": "Language not specified",
+ "nso": "Sesotho sa Leboa",
+ "or": "Odia",
+ "paArabPK": "Punjabi (Islamic Republic of Pakistan)",
+ "paIN": "Punjabi (India)",
+ "pl": "Polish",
+ "prs": "Dari",
+ "ptBR": "Portuguese (Brazil)",
+ "ptPT": "Portuguese (Portugal)",
+ "quz": "Quechua",
+ "ro": "Romanian",
+ "ru": "Russian",
+ "rw": "Kinyarwanda",
+ "sd": "Sindhi",
+ "si": "Sinhala",
+ "sk": "Slovak",
+ "sl": "Slovenian",
+ "sq": "Albanian",
+ "srCyrlBA": "Serbian (Cyrillic, Bosnia and Herzegovina)",
+ "srCyrlRS": "Serbian (Cyrillic, Serbia)",
+ "srLatnRS": "Serbian (Latin, Serbia)",
+ "sv": "Swedish",
+ "sw": "Kiswahili",
+ "ta": "Tamil",
+ "te": "Telugu",
+ "tg": "Tajik",
+ "th": "Thai",
+ "ti": "Tigrinya",
+ "tk": "Turkmen",
+ "tn": "Setswana",
+ "tr": "Turkish",
+ "tt": "Tatar",
+ "ug": "Uyghur",
+ "uk": "Ukrainian",
+ "ur": "Urdu",
+ "uz": "Uzbek",
+ "vi": "Vietnamese",
+ "wo": "Wolof",
+ "xh": "isiXhosa",
+ "yo": "Yoruba",
+ "zhHans": "Chinese (Simplified)",
+ "zhHant": "Chinese (Traditional)",
+ "zu": "isiZulu"
+ },
+ "AcceptanceExpirationFrequency": {
+ "annually": "Annually",
+ "biannually": "Bi-annually",
+ "monthly": "Monthly",
+ "quarterly": "Quarterly"
},
- "ThemesEnabled": {
- "title": "Темы включены",
- "tooltip": "Укажите, разрешено ли пользователю применять настраиваемую визуальную тему."
- }
- },
+ "Wizard": {
+ "AgreementTargetEntityScope": {
+ "NotSelected": {
+ "label": "None selected"
+ },
+ "selectEntityTitle": "Select group",
+ "title": "Select group"
+ },
+ "PolicyFile": {
+ "Languages": {
+ "Empty": {
+ "default": "Select default language",
+ "nonDefault": "Select a language"
+ }
+ },
+ "Validations": {
+ "duplicateLanguage": "Oops, {0} appears to be selected multiple times. Language selection must be unique."
+ }
+ },
+ "PolicyTemplate": {
+ "InfoBox": {
+ "allGuestsAllApps": "A conditional access policy will be created for all guests and all cloud apps. This policy impacts the Azure portal. Once this is created you might be required to sign-out and sign-in.",
+ "allUsersAllApps": "A conditional access policy will be created for all users and all cloud apps. This policy impacts the Azure portal. Once this is created you will be required to sign-out and sign-in.",
+ "custom": "Select the users, groups, and apps that this Terms of Use will be applied to.",
+ "noPolicy": "This terms of use will appear in the grant control list when creating a conditional access policy."
+ }
+ },
+ "Section": {
+ "conditionalAccessSubtitle": "Enforce with conditional access policy templates",
+ "conditionalAccessTitle": "Conditional access",
+ "termsOfUseSubtitle": "Create and upload documents",
+ "termsOfUseTitle": "Terms of use"
+ },
+ "acceptanceDurationInfo": "The terms of use will be enforced immediately and each user will have to re-consent every specified number of days.",
+ "acceptanceDurationLabel": "Duration before re-acceptance required (days)",
+ "acceptanceDurationPlaceholder": "Example: '90'",
+ "acceptanceExpirationFrequencyInfo": "Require users to consent on a recurring basis.",
+ "acceptanceExpirationFrequencyLabel": "Frequency",
+ "acceptanceExpirationStartDateTimeInfo": "The terms of use will be enforced immediately and users will be required to re-consent on this date.",
+ "acceptanceExpirationStartDateTimeLabel": "Expire starting on",
+ "agreementIsPerDeviceAcceptanceRequiredInfo": "The end users will be required to consent to the terms of use on every device.",
+ "agreementIsPerDeviceAcceptanceRequiredLabel": "Require users to consent on every device",
+ "agreementIsViewingBeforeAcceptanceRequiredInfo": "The end users will be required to view the terms of use prior to accepting.",
+ "agreementIsViewingBeforeAcceptanceRequiredLabel": "Require users to expand the terms of use",
+ "agreementNameInfo": "Name will be used to manage the terms of use within the Azure portal.",
+ "agreementNameLabel": "Name",
+ "agreementNamePlaceholderText": "Example: 'All users terms of use'",
+ "agreementRequirmentLabel": "Required Upon",
+ "agreementTargetEntityLabel": "Users targeted",
+ "agreementUploadPolicyLabel": "Terms of use",
+ "agreementUploadPolicyPlaceholderText": "Upload required PDF",
+ "createButtonLabel": "Create",
+ "createPolicyInfo": "In order to enforce the terms of use, a conditional access policy is required. You can create a conditional access policy targeted to specific users and applications later or use one of the predefined templates.",
+ "createPolicyLabel": "Create a policy",
+ "isAcceptanceExpirationEnabledInfo": "The terms of use will be enforced immediately and all users will be forced to re-consent on a schedule.",
+ "isAcceptanceExpirationEnabledLabel": "Expire consents",
+ "pdfValidationInvalidFileFormat": "The file must be in the .pdf format.",
+ "policyFilesInfo": "Upload a PDF file containing the terms of use that your end users must accept. Based on end user preferences they will be shown the appropriate language or if not match the default language will be shown.
For end users agreeing on mobile devices, we recommend the PDF font size to be at least 24 pt.
Display name will be the title of the terms of use that is presented to the end user.",
+ "policyFilesLabel": "Terms of use document",
+ "policyTemplateInfo": "These templates are pre configured conditional access policies that are targeted to specific users and applications.",
+ "policyTemplateLabel": "Policy templates",
+ "title": "New terms of use"
+ }
+ },
+ "TACSettings": {
+ "edgeSettings": "Параметры конфигурации Microsoft Edge",
+ "edgeWindowsDataProtectionSettings": "Параметры защиты данных Microsoft Edge (Windows) — предварительная версия",
+ "edgeWindowsSettings": "Параметры конфигурации Microsoft Edge (Windows) — предварительная версия",
+ "generalAppConfig": "Общая конфигурация приложений",
+ "generalSettings": "Общие параметры конфигурации",
+ "outlookSMIMEConfig": "Параметры S/MIME Outlook",
+ "outlookSettings": "Параметры конфигурации Outlook",
+ "sMIME": "S/MIME"
+ },
+ "MicrosoftEdgeChannel": {
+ "beta": "Beta",
+ "dev": "Dev",
+ "stable": "Stable"
+ },
+ "WipPolicySettings": {
+ "addNetworkBoundary": "Добавить границу сети",
+ "addNetworkBoundaryButton": "Добавить границу сети...",
+ "allowWindowsSearch": "Разрешить службе Windows Search искать зашифрованные данные предприятия и приложения Магазина",
+ "authoritativeIpRanges": "Список диапазонов корпоративных IP-адресов является надежным (не вести автоматическое обнаружение)",
+ "authoritativeProxyServers": "Список корпоративных прокси-серверов является надежным (не вести автоматическое обнаружение)",
+ "boundaryType": "Тип границ",
+ "cloudResources": "Облачные ресурсы",
+ "corporateIdentity": "Удостоверение организации",
+ "dataRecoveryCert": "Отправить сертификат агента восстановления данных (DRA), чтобы обеспечить расшифровку зашифрованных данных",
+ "editNetworkBoundary": "Изменить границу сети",
+ "enrollmentState": "Состояние регистрации",
+ "iPv4Ranges": "Диапазоны IPv4-адресов",
+ "iPv6Ranges": "Диапазоны IPv6-адресов",
+ "internalProxyServers": "Внутренние прокси-серверы",
+ "maxInactivityTime": "Максимальное количество времени (в минутах) при простое до блокировки устройства с помощью ПИН-кода или пароля",
+ "maxPasswordAttempts": "Число неудачных попыток проверки подлинности до очистки устройства",
+ "mdmDiscoveryUrl": "URL-адрес обнаружения MDM",
+ "mdmRequiredSettingsInfo": "Эта политика применяется только к юбилейному обновлению Windows 10 и более поздним версиям. Она использует Windows Information Protection (WIP), чтобы применить защиту.",
+ "minimumPinLength": "Задать минимальное число символов для ПИН-кода",
+ "name": "Имя",
+ "networkBoundariesGridEmptyText": "Здесь будут показаны все границы сети, которые вы добавите.",
+ "networkBoundary": "Граница сети",
+ "networkDomainNames": "Сетевые домены",
+ "neutralResources": "Нейтральные ресурсы",
+ "passportForWork": "Использовать Windows Hello для бизнеса для входа в Windows",
+ "pinExpiration": "Укажите интервал времени (в днях), в течение которого можно использовать ПИН-код до того, как система потребует его изменить.",
+ "pinHistory": "Укажите число запрещенных к использованию предыдущих значений ПИН-кода, связываемых с учетной записью пользователя",
+ "pinLowercaseLetters": "Настроить использование строчных букв в ПИН-коде Windows Hello для бизнеса.",
+ "pinSpecialCharacters": "Настроить использование специальных символов в ПИН-коде Windows Hello для бизнеса.",
+ "pinUppercaseLetters": "Настроить использование прописных букы в ПИН-коде Windows Hello для бизнеса.",
+ "protectUnderLock": "Препятствовать доступу приложений к данным предприятия, если устройство заблокировано. Применимо только к Windows 10 Mobile",
+ "protectedDomainNames": "Защищенные домены",
+ "proxyServers": "Прокси-серверы",
+ "requireAppPin": "Отключить ПИН-код приложения, если ПИН-код устройства управляемый",
+ "requiredSettings": "Обязательные параметры",
+ "requiredSettingsInfo": "Изменение области или удаление этой политики приведет к расшифровке корпоративных данных.",
+ "revokeOnMdmHandoff": "Отозвать доступ к защищенным данным при регистрации устройства в MDM",
+ "revokeOnUnenroll": "Отзывать ключи шифрования при отмене регистрации",
+ "rmsTemplateForEdp": "Укажите идентификатор шаблона, который следует использовать для Azure RMS.",
+ "showWipIcon": "Показать значок защиты корпоративных данных",
+ "type": "Тип",
+ "useRmsForWip": "Использовать Azure RMS для WIP",
+ "value": "Значение",
+ "weRequiredSettingsInfo": "Эта политика применяется только к обновлению Windows 10 Creators Update или более поздним версиям. Она использует Windows Information Protection (WIP) и Windows MAM, чтобы применить защиту.",
+ "wipProtectionMode": "Режим защиты Windows Information Protection",
+ "withEnrollment": "С регистрацией",
+ "withoutEnrollment": "Без регистрации"
+ },
+ "OfficeApplicationAdditionalType": {
+ "projectProRetail": "Настольный клиент Project Online",
+ "visioProRetail": "Visio Online Plan 2"
+ },
+ "Countries": {
+ "ae": "ОАЭ",
+ "ag": "Антигуа и Барбуда",
+ "ai": "Ангилья",
+ "al": "Албания",
+ "am": "Армения",
+ "ao": "Ангола",
+ "ar": "Аргентина",
+ "at": "Австрия",
+ "au": "Австралия",
+ "az": "Азербайджан",
+ "bb": "Барбадос",
+ "be": "Бельгия",
+ "bf": "Буркина-Фасо",
+ "bg": "Болгария",
+ "bh": "Бахрейн",
+ "bj": "Бенин",
+ "bm": "Бермуды",
+ "bn": "Бруней-Даруссалам",
+ "bo": "Боливия",
+ "br": "Бразилия",
+ "bs": "Багамы",
+ "bt": "Бутан",
+ "bw": "Ботсвана",
+ "by": "Беларусь",
+ "bz": "Белиз",
+ "ca": "Канада",
+ "cg": "Республика Конго",
+ "ch": "Швейцария",
+ "cl": "Чили",
+ "cn": "Китай",
+ "co": "Колумбия",
+ "cr": "Коста-Рика",
+ "cv": "Кабо-Верде",
+ "cy": "Кипр",
+ "cz": "Чешская Республика",
+ "de": "Германия",
+ "dk": "Дания",
+ "dm": "Доминика",
+ "do": "Доминиканская Республика",
+ "dz": "Алжир",
+ "ec": "Эквадор",
+ "ee": "Эстония",
+ "eg": "Египет",
+ "es": "Испания",
+ "fi": "Финляндия",
+ "fj": "Фиджи",
+ "fm": "Федеративные Штаты Микронезии",
+ "fr": "Франция",
+ "gb": "Соединенное Королевство",
+ "gd": "Гренада",
+ "gh": "Гана",
+ "gm": "Гамбия",
+ "gr": "Греция",
+ "gt": "Гватемала",
+ "gw": "Гвинея-Бисау",
+ "gy": "Гайана",
+ "hk": "Гонконг",
+ "hn": "Гондурас",
+ "hr": "Хорватия",
+ "hu": "Венгрия",
+ "id": "Индонезия",
+ "ie": "Ирландия",
+ "il": "Израиль",
+ "in": "Индия",
+ "is": "Исландия",
+ "it": "Италия",
+ "jm": "Ямайка",
+ "jo": "Иордания",
+ "jp": "Япония",
+ "ke": "Кения",
+ "kg": "Киргизия",
+ "kh": "Камбоджа",
+ "kn": "Сент-Китс и Невис",
+ "kr": "Республика Корея",
+ "kw": "Кувейт",
+ "ky": "Острова Кайман",
+ "kz": "Казахстан",
+ "la": "Лаосская Народно-Демократическая Республика",
+ "lb": "Ливан",
+ "lc": "Сент-Люсия",
+ "lk": "Шри-Ланка",
+ "lr": "Либерия",
+ "lt": "Литва",
+ "lu": "Люксембург",
+ "lv": "Латвия",
+ "md": "Республика Молдова",
+ "mg": "Мадагаскар",
+ "mk": "Северная Македония",
+ "ml": "Мали",
+ "mn": "Монголия",
+ "mo": "Макао",
+ "mr": "Мавритания",
+ "ms": "Монтсеррат",
+ "mt": "Мальта",
+ "mu": "Маврикий",
+ "mw": "Малави",
+ "mx": "Мексика",
+ "my": "Малайзия",
+ "mz": "Мозамбик",
+ "na": "Намибия",
+ "ne": "Нигер",
+ "ng": "Нигерия",
+ "ni": "Никарагуа",
+ "nl": "Нидерланды",
+ "no": "Норвегия",
+ "np": "Непал",
+ "nz": "Новая Зеландия",
+ "om": "Оман",
+ "pa": "Панама",
+ "pe": "Перу",
+ "pg": "Папуа — Новая Гвинея",
+ "ph": "Филиппины",
+ "pk": "Пакистан",
+ "pl": "Польша",
+ "pt": "Португалия",
+ "pw": "Палау",
+ "py": "Парагвай",
+ "qa": "Катар",
+ "ro": "Румыния",
+ "ru": "Россия",
+ "sa": "Саудовская Аравия",
+ "sb": "Соломоновы Острова",
+ "sc": "Сейшелы",
+ "se": "Швеция",
+ "sg": "Сингапур",
+ "si": "Словения",
+ "sk": "Словакия",
+ "sl": "Сьерра-Леоне",
+ "sn": "Сенегал",
+ "sr": "Суринам",
+ "st": "Сан-Томе и Принсипи",
+ "sv": "Эль-Сальвадор",
+ "sz": "Свазиленд",
+ "tc": "о-ва Тёркс и Кайкос",
+ "td": "Чад",
+ "th": "Таиланд",
+ "tj": "Таджикистан",
+ "tm": "Туркменистан",
+ "tn": "Тунис",
+ "tr": "Турция",
+ "tt": "Тринидад и Тобаго",
+ "tw": "Тайвань",
+ "tz": "Танзания",
+ "ua": "Украина",
+ "ug": "Уганда",
+ "us": "США",
+ "uy": "Уругвай",
+ "uz": "Узбекистан",
+ "vc": "Сент-Винсент и Гренадины",
+ "ve": "Венесуэла",
+ "vg": "Виргинские о-ва (Великобритания)",
+ "vn": "Вьетнам",
+ "ye": "Йемен",
+ "za": "ЮАР",
+ "zw": "Зимбабве"
+ },
+ "OfficeUpdateChannel": {
+ "current": "Текущий канал",
+ "deferred": "Полугодовой канал (корпоративный)",
+ "firstReleaseCurrent": "Текущий канал (предварительная версия)",
+ "firstReleaseDeferred": "Полугодовой канал (предварительная корпоративная версия)",
+ "monthlyEnterprise": "Ежемесячный канал Enterprise",
+ "placeHolder": "Выберите один вариант"
+ },
+ "AppProtection": {
+ "allAppTypes": "Предназначены для всех типов приложений",
+ "androidPlatformLabel": "Android",
+ "appsInAndroidWorkProfile": "Приложения в рабочем профиле Android",
+ "appsOnIntuneManagedDevices": "Приложения на управляемых устройствах Intune",
+ "appsOnUnmanagedDevices": "Приложения на неуправляемых устройствах",
+ "iOSPlatformLabel": "iOS/iPadOS",
+ "iosAndroidMacPlatformLabel": "iOS, Android, Mac",
+ "iosAndroidPlatformLabel": "iOS, Android",
+ "macPlatformLabel": "MAC-адрес",
+ "notAvailable": "Недоступно",
+ "windows10PlatformLabel": "Windows 10 и более поздних версий",
+ "withEnrollment": "С регистрацией",
+ "withoutEnrollment": "Без регистрации"
+ },
+ "InstallContextType": {
+ "device": "Устройство",
+ "deviceContext": "Контекст устройства",
+ "user": "Пользователь",
+ "userContext": "Контекст пользователя"
+ },
+ "ProactiveRemediations": {
+ "Create": {
+ "Basics": {
+ "DescriptionMultiLineTextBox": {
+ "label": "Описание",
+ "placeholder": "Введите описание"
+ },
+ "NameTextBox": {
+ "label": "Имя",
+ "placeholder": "Ввод имени"
+ },
+ "PublisherTextBox": {
+ "label": "Издатель",
+ "placeholder": "Введите издателя"
+ },
+ "VersionTextBox": {
+ "label": "Версия"
+ },
+ "headerDescription": "Создайте новый настраиваемый пакет сценариев на основе написанных вами сценариев обнаружения и исправления."
+ },
+ "ScopeTags": {
+ "headerDescription": "Выберите группы для назначения пакета сценариев."
+ },
+ "Settings": {
+ "DetectionScriptMultiLineTextBox": {
+ "label": "Сценарий обнаружения",
+ "placeholder": "Введите текст сценария",
+ "requiredValidationMessage": "Введите сценарий обнаружения"
+ },
+ "EnforceScriptSignatureCheckOptionPicker": {
+ "label": "Принудительно проверить подпись сценария"
+ },
+ "LoggedOnCredentialsOptionPicker": {
+ "label": "Запуск сценария с использованием текущих учетных данных"
+ },
+ "RemediationScript": {
+ "infoBox": "Этот сценарий будет выполняться в режиме только обнаружения, поскольку сценарий исправления отсутствует."
+ },
+ "RemediationScriptMultiLineTextBox": {
+ "label": "Сценарий исправления",
+ "placeholder": "Введите текст сценария"
+ },
+ "RunIn64BitPSOptionPicker": {
+ "label": "Запуск сценария в 64-разрядной версии PowerShell"
+ },
+ "ScriptMultiLineTextBox": {
+ "base64EncodingValidationMessage": "Недопустимый сценарий. Один или несколько символов, используемых в сценарии, являются недопустимыми."
+ },
+ "headerDescription": "Создание настраиваемого пакета сценариев на основе написанных сценариев. По умолчанию сценарии будут выполняться на назначенных устройствах каждый день.",
+ "infoBox": "Этот скрипт доступен только для чтения. Возможно, некоторые параметры этого скрипта отключены."
+ },
+ "title": "Создание настраиваемого сценария",
+ "ScriptProperties": {
+ "GridHeaders": {
+ "interval": "Интервал",
+ "time": "Дата и время"
+ },
+ "Interval": {
+ "day": "Повторяется каждый день",
+ "days": "Повторяется каждые {0} дн.",
+ "hour": "Повторяется каждый час",
+ "hours": "Повторять через каждые {0} часов",
+ "month": "Повторяется каждый месяц",
+ "months": "Повторяется каждые {0} мес.",
+ "week": "Повторяется каждую неделю",
+ "weeks": "Повторяется каждые {0} нед."
+ },
+ "Time": {
+ "utc": "{0} (время в формате UTC)",
+ "utcWithDate": "{0} (UTC) {1}",
+ "withDate": "{0} {1}"
+ }
+ }
+ },
+ "Edit": {
+ "title": "Изменить — {0}"
+ }
+ },
+ "EdgeAppConfig": {
+ "AllowedURLs": {
+ "title": "Разрешенные URL-адреса",
+ "tooltip": "Укажите сайты, разрешенные для доступа пользователей в рабочем контексте. Доступ к другим сайтам будет запрещен. Можно настроить либо список разрешенных, либо список заблокированных сайтов, но не оба одновременно. "
+ },
+ "ApplicationProxyRedirection": {
+ "header": "Прокси приложения",
+ "title": "Перенаправление прокси приложения",
+ "tooltip": "Включите перенаправление прокси приложения, чтобы предоставить пользователям доступ к корпоративным ссылкам и локальным веб-приложениям."
+ },
+ "BlockedURLs": {
+ "title": "Заблокированные URL-адреса",
+ "tooltip": "Укажите сайты, заблокированные для доступа пользователей в рабочем контексте. Доступ к другим сайтам будет разрешен. Можно настроить либо список разрешенных, либо список заблокированных сайтов, но не оба одновременно. "
+ },
+ "Bookmarks": {
+ "header": "Управляемые закладки",
+ "tooltip": "Введите список URL-адресов с закладками, которые будут доступны пользователям при использовании Microsoft Edge в рабочем контексте.",
+ "uRL": "URL-адрес"
+ },
+ "HomepageURL": {
+ "header": "Управляемая домашняя страница",
+ "title": "URL-адрес ярлыка домашней страницы",
+ "tooltip": "Настройте ярлык домашней страницы, который будет первым значком, отображаемым под панелью поиска при открытии новой вкладки в Microsoft Edge"
+ },
+ "PersonalContext": {
+ "label": "Перенаправление сайтов с ограниченным доступом в личный контекст",
+ "tooltip": "Укажите, разрешено ли пользователям переходить в свой персональный контекст, чтобы открывать запрещенные сайты."
+ }
+ },
+ "BooleanActions": {
+ "allow": "Разрешить",
+ "block": "Блокировать",
+ "configured": "Настроено",
+ "disable": "Отключить",
+ "dontRequire": "Не требовать",
+ "enable": "Включить",
+ "hide": "Скрыть",
+ "limit": "Ограничение",
+ "notConfigured": "Не настроено",
+ "require": "Требовать",
+ "show": "Показать",
+ "yes": "Да"
+ },
+ "ArchitectureOptions": {
+ "sixtyFourBit": "64-разрядный",
+ "thirtyTwoBit": "32-разрядный"
+ },
+ "WindowsQualityUpdateDaysUntilForcedReboot": {
+ "oneDay": "1 день",
+ "twoDays": "2 дня",
+ "zeroDays": "0 дней"
+ },
"SoftwareUpdates": {
"BladeTitles": {
"overview": "Обзор"
@@ -10800,66 +10878,732 @@
"notScannedYet": "Еще не проверено",
"outOfDateIosDevices": "Устаревшие устройства с iOS"
},
- "ScheduledAction": {
- "Form": {
- "editBlockActionInfo": "Для всех политик соответствия требуется одна блокировка.",
- "graceperiod": "Расписание (дни после наступления несоответствия)",
- "graceperiodInfo": "Укажите срок несоответствия в днях, по истечении которого следует применить это действие к устройству пользователя.",
- "subtitle": "Укажите параметры действия.",
- "title": "Параметры действия"
- },
- "List": {
- "gracePeriodDay": "{0} день после наступления несоответствия",
- "gracePeriodDays": "{0} дн. после наступления несоответствия",
- "gracePeriodHour": "{0} ч после наступления несоответствия",
- "gracePeriodHours": "{0} ч после наступления несоответствия",
- "gracePeriodMinute": "{0} мин после наступления несоответствия",
- "gracePeriodMinutes": "{0} мин после наступления несоответствия",
- "immediately": "Немедленно",
- "schedule": "Расписание",
- "scheduleInfoBalloon": "Число дней после наступления несоответствия",
- "subtitle": "Укажите последовательность действий для несоответствующих устройств.",
- "title": "Действия"
- },
- "Notification": {
- "additionalEmailLabel": "Другие",
- "additionalRecipients": "Дополнительные получатели (по электронной почте)",
- "additionalRecipientsBladeTitle": "Выбор дополнительных получателей",
- "emailAddressPrompt": "Введите адреса электронной почты (через запятую)",
- "invalidEmail": "Недопустимый адрес электронной почты",
- "messageTemplate": "Шаблон сообщения",
- "noneSelected": "Выбранных нет",
- "notSelected": "Не выбрано",
- "numSelected": "Выбрано: {0}",
- "selected": "Выбрано"
+ "ConfigurationTypes": {
+ "Table": {
+ "androidDeviceOwnerGeneral": "Ограничения устройств (владелец устройства)",
+ "androidForWorkGeneral": "Ограничения устройств (рабочий профиль)"
+ },
+ "androidCustom": "Настраиваемая",
+ "androidDeviceOwnerGeneral": "Ограничения устройств",
+ "androidDeviceOwnerPkcs": "Сертификат PKCS",
+ "androidDeviceOwnerScep": "Сертификат SCEP",
+ "androidDeviceOwnerTrustedCertificate": "Доверенный сертификат",
+ "androidDeviceOwnerVpn": "Виртуальная частная сеть (VPN)",
+ "androidDeviceOwnerWiFi": "Wi-Fi",
+ "androidEmailProfile": "Электронная почта (только Samsung KNOX)",
+ "androidForWorkCustom": "Настраиваемая",
+ "androidForWorkEmailProfile": "Электронная почта",
+ "androidForWorkGeneral": "Ограничения устройств",
+ "androidForWorkImportedPFX": "Импортированный сертификат PKCS",
+ "androidForWorkOemConfig": "OEMConfig",
+ "androidForWorkPKCS": "Сертификат PKCS",
+ "androidForWorkSCEP": "Сертификат SCEP",
+ "androidForWorkTrustedCertificate": "Доверенный сертификат",
+ "androidForWorkVpn": "VPN",
+ "androidForWorkWiFi": "Wi-Fi",
+ "androidGeneral": "Ограничения устройств",
+ "androidImportedPFX": "Импортированный сертификат PKCS",
+ "androidPKCS": "Сертификат PKCS",
+ "androidSCEP": "Сертификат SCEP",
+ "androidTrustedCertificate": "Доверенный сертификат",
+ "androidVPN": "VPN",
+ "androidWiFi": "Wi-Fi",
+ "androidZebraMx": "Профиль MX (только Zebra)",
+ "complianceAndroid": "Политика соответствия для Android",
+ "complianceAndroidDeviceOwner": "Полностью управляемый, выделенный и корпоративный рабочий профиль",
+ "complianceAndroidEnterprise": "Личный рабочий профиль",
+ "complianceAndroidForWork": "Политика соответствия Android for Work",
+ "complianceIos": "Политика соответствия для iOS",
+ "complianceMac": "Политика соответствия для Mac",
+ "complianceWindows10": "Политика соответствия для Windows 10 и более поздних версий",
+ "complianceWindows10Mobile": "Политика соответствия для Windows 10 Mobile",
+ "complianceWindows8": "Политика соответствия для Windows 8",
+ "complianceWindowsPhone": "Политика соответствия для Windows Phone",
+ "exchangeActiveSync": "Exchange Active Sync",
+ "iosCustom": "Настраиваемая",
+ "iosDerivedCredentialAuthenticationConfiguration": "Производные учетные данные PIV",
+ "iosDeviceFeatures": "Функции устройства",
+ "iosEDU": "Образование",
+ "iosEducation": "Образование",
+ "iosEmailProfile": "Электронная почта",
+ "iosGeneral": "Ограничения устройств",
+ "iosImportedPFX": "Импортированный сертификат PKCS",
+ "iosPKCS": "Сертификат PKCS",
+ "iosPresets": "Предустановки",
+ "iosSCEP": "Сертификат SCEP",
+ "iosTrustedCertificate": "Доверенный сертификат",
+ "iosVPN": "VPN",
+ "iosVPNZscaler": "Виртуальная частная сеть (VPN)",
+ "iosWiFi": "Wi-Fi",
+ "macCustom": "Настраиваемая",
+ "macDeviceFeatures": "Функции устройства",
+ "macEndpointProtection": "Endpoint Protection",
+ "macExtensions": "Расширения",
+ "macGeneral": "Ограничения устройств",
+ "macImportedPFX": "Импортированный сертификат PKCS",
+ "macSCEP": "Сертификат SCEP",
+ "macTrustedCertificate": "Доверенный сертификат",
+ "macVPN": "VPN",
+ "macWiFi": "Wi-Fi",
+ "settingsCatalog": "Каталог параметров (предварительная версия)",
+ "unsupported": "Не поддерживается",
+ "windows10AdministrativeTemplate": "Административные шаблоны (предварительная версия)",
+ "windows10Atp": "Microsoft Defender для конечной точки (настольные компьютеры под управлением Windows 10 или более поздних версий)",
+ "windows10Custom": "Настраиваемая",
+ "windows10DesktopSoftwareUpdate": "Обновления программного обеспечения",
+ "windows10DeviceFirmwareConfigurationInterface": "Интерфейс настройки встроенного ПО устройства",
+ "windows10EmailProfile": "Электронная почта",
+ "windows10EndpointProtection": "Endpoint Protection",
+ "windows10EnterpriseDataProtection": "Windows Information Protection",
+ "windows10General": "Ограничения устройств",
+ "windows10ImportedPFX": "Импортированный сертификат PKCS",
+ "windows10Kiosk": "Киоск",
+ "windows10NetworkBoundary": "Граница сети",
+ "windows10PKCS": "Сертификат PKCS",
+ "windows10PolicyOverride": "Переопределение групповой политики",
+ "windows10SCEP": "Сертификат SCEP",
+ "windows10SecureAssessmentProfile": "Профиль образования",
+ "windows10SharedPC": "Устройство коллективного пользования с общим доступом",
+ "windows10TeamGeneral": "Ограничения для устройств (Windows 10 для совместной работы)",
+ "windows10TrustedCertificate": "Доверенный сертификат",
+ "windows10VPN": "VPN",
+ "windows10WiFi": "Wi-Fi",
+ "windows10WiFiCustom": "Настраиваемый Wi-Fi",
+ "windows8General": "Ограничения устройств",
+ "windows8SCEP": "Сертификат SCEP",
+ "windows8TrustedCertificate": "Доверенный сертификат",
+ "windows8VPN": "VPN",
+ "windows8WiFi": "Импорт Wi-Fi",
+ "windowsDeliveryOptimization": "Оптимизация доставки",
+ "windowsDomainJoin": "Присоединение к домену",
+ "windowsEditionUpgrade": "Обновление выпуска и переключение режима",
+ "windowsIdentityProtection": "Защита идентификации",
+ "windowsPhoneCustom": "Настраиваемая",
+ "windowsPhoneEmailProfile": "Электронная почта",
+ "windowsPhoneGeneral": "Ограничения устройств",
+ "windowsPhoneImportedPFX": "Импортированный сертификат PKCS",
+ "windowsPhoneSCEP": "Сертификат SCEP",
+ "windowsPhoneTrustedCertificate": "Доверенный сертификат",
+ "windowsPhoneVPN": "VPN",
+ "IosUpdate": "Политика обновления iOS"
+ },
+ "OfficeSuiteAppsTab": {
+ "acceptLicenseOnBehalfOfUsersLabel": "Принятие от имени пользователей условий лицензионного соглашения на использование программного обеспечения корпорации Майкрософт",
+ "appSuiteConfigurationLabel": "Конфигурация набора приложений",
+ "appSuiteInformationLabel": "Сведения о наборе приложений",
+ "appsToBeInstalledLabel": "Приложения для установки в составе набора",
+ "architectureLabel": "Архитектура",
+ "architectureTooltip": "Определяет установку на устройствах 32- или 64-разрядного выпуска приложений Microsoft 365.",
+ "configurationDesignerLabel": "Конструктор конфигурации",
+ "configurationFileLabel": "Файл конфигурации",
+ "configurationSettingsFormatLabel": "Формат параметров конфигурации",
+ "configureAppSuiteLabel": "Настройка набора приложений",
+ "configuredLabel": "Настроено",
+ "currentVersionLabel": "Текущая версия",
+ "currentVersionTooltip": "Это текущая версия Office, настроенная в этом наборе. Это значение будет обновлено при настройке и сохранении более новой версии.",
+ "enableMicrosoftSearchAsDefaultTooltip": "Устанавливает фоновую службу, которая помогает определить, установлено ли расширение \"Поиск (Майкрософт) в Bing\" в Google Chrome на устройстве.",
+ "enterXmlDataLabel": "Введите данные XML",
+ "languagesLabel": "Языки",
+ "languagesTooltip": "По умолчанию Intune устанавливает Office на языке операционной системы по умолчанию. Выберите дополнительные языки, которые необходимо установить.",
+ "learnMoreText": "Дополнительные сведения",
+ "newUpdateChannelTooltip": "Определяет частоту установки обновлений приложения, содержащих новые функции.",
+ "noCurrentVersionText": "Нет текущей версии",
+ "noLanguagesSelectedLabel": "Языки не выбраны.",
+ "notConfiguredLabel": "Не настроено",
+ "propertiesLabel": "Свойства",
+ "removeOtherVersionsLabel": "Удаление других версий",
+ "removeOtherVersionsTooltip": "Выберите Да, чтобы удалить другие версии Office (MSI) с пользовательских устройств.",
+ "selectOfficeAppsLabel": "Выбор приложений Office",
+ "selectOfficeAppsTooltip": "Выберите приложения Office 365, которые вы хотите установить как часть набора.",
+ "selectOtherOfficeAppsLabel": "Выбор других приложений Office (требуется лицензия)",
+ "selectOtherOfficeAppsTooltip": "Если у вас есть лицензии для этих дополнительных приложений Office, их также можно назначить в Intune.",
+ "specificVersionLabel": "Конкретная версия",
+ "updateChannelLabel": "Канал обновления",
+ "updateChannelTooltip": "Определяет частоту установки обновлений приложения, содержащих новые функции.
\r\nMonthly. Предоставление пользователям новейших возможностей Office сразу после их выхода.
\r\nMonthly Enterprise Channel. Предоставление пользователям новейших возможностей Office один раз в месяц, во второй вторник месяца.
\r\nMonthly (Targeted). Предоставление раннего доступа к предстоящему выпуску Monthly Channel. Это поддерживаемый канал обновления, который обычно доступен как минимум за неделю до выпуска Monthly Channel с новыми функциями.
\r\nSemi-Annual. Предоставление пользователям новых возможностей Office всего несколько раз в год.
\r\nSemi-Annual (Targeted). Предоставление возможности тестирования следующего выпуска Semi-Annual для пользователей пилотных версий и тестировщиков совместимости приложений.",
+ "useMicrosoftSearchAsDefault": "Установить фоновую службу для Поиска (Майкрософт) в Bing",
+ "useSharedComputerActivationLabel": "Использовать активацию на общем компьютере",
+ "useSharedComputerActivationTooltip": "Активация на общем компьютере позволяет развертывать приложения Microsoft 365 на компьютерах, используемых несколькими пользователями. Обычно пользователи могут устанавливать и активировать приложения Microsoft 365 лишь на ограниченном числе устройств, например на пяти компьютерах. При использовании активации на общем компьютере это ограничение не учитывается.",
+ "versionToInstallLabel": "Версия для установки",
+ "versionToInstallTooltip": "Выберите версию Office, которую нужно установить.",
+ "xLanguagesSelectedLabel": "Выбрано языков: {0}.",
+ "xmlConfigurationLabel": "Конфигурация XML"
+ },
+ "EnrollmentRestrictions": {
+ "DeletePayloadLink": {
+ "content": "{0} включено как минимум в один набор политик. Если вы удалите {0}, вы больше не сможете назначать его через эти наборы. Все равно удалить?",
+ "contentWithError": "{0}, возможно, включено как минимум в один набор политик. Если вы удалите {0}, вы больше не сможете назначать его через эти наборы. Все равно удалить?",
+ "header": "Вы действительно хотите удалить это ограничение?"
+ },
+ "DeviceLimit": {
+ "description": "Укажите максимальное число устройств, которые может зарегистрировать пользователь.",
+ "header": "Ограничения числа устройств",
+ "info": "Определяет, сколько устройств может зарегистрировать каждый пользователь."
+ },
+ "DeviceType": {
+ "VersionValidation": {
+ "aOSP": "Должна использоваться версия 1.0 или более поздняя.",
+ "android": "Введите допустимый номер версии. Например, 5.0, 5.5.1, 6.0.0.1",
+ "androidForWork": "Введите допустимый номер версии. Например, 5.0, 5.1.1",
+ "iOS": "Введите допустимый номер версии. Например, 9.0, 10.0, 9.0.2",
+ "mac": "Введите допустимый номер версии. Примеры: 10, 10.10, 10.10.1",
+ "min": "Минимум не может быть меньше {0}",
+ "minMax": "Минимальная версия не может быть больше максимальной.",
+ "windows": "Требуется 10.0 или более поздняя версия. Оставьте поле пустым, чтобы разрешить устройства с версией 8.1.",
+ "windowsMobile": "Требуется 10.0 или более поздняя версия. Оставьте поле пустым, чтобы разрешить устройства с версией 8.1."
+ },
+ "allPlatformsBlocked": "Все платформы устройств заблокированы. Разрешите регистрацию платформ, чтобы включить их конфигурацию.",
+ "blockManufacturerPlaceHolder": "Имя изготовителя",
+ "blockManufacturersHeader": "Заблокированные производители",
+ "cannotRestrict": "Ограничение не поддерживается",
+ "configurationDescription": "Укажите ограничения конфигурации платформы, которые должны быть соблюдены при регистрации устройства. Для ограничения устройств после регистрации используйте политики соответствия. Формат версии: основная.дополнительная.сборка. Ограничения версии относятся только к устройствам, зарегистрированным на корпоративном портале. Intune по умолчанию классифицирует устройства как находящиеся в личном владении. Для их классификации как корпоративных нужны дополнительные действия.",
+ "configurationDescriptionLabel": "Дополнительные сведения о настройке ограничений регистрации",
+ "configurations": "Настройка платформ",
+ "deviceManufacturer": "Производитель устройства",
+ "header": "Ограничения по типу устройств",
+ "info": "Определяет, какие платформы, версии и типы управления можно регистрировать.",
+ "manufacturer": "Производитель",
+ "max": "Макс.",
+ "maxVersion": "Максимальная версия",
+ "min": "Min",
+ "minVersion": "Минимальная версия",
+ "newPlatforms": "Вы разрешили использование новых платформ. При необходимости обновите конфигурации платформ.",
+ "personal": "Личные",
+ "platform": "Платформа",
+ "platformDescription": "Вы можете разрешить регистрацию для следующих платформ. Блокируйте только те платформы, которые не будете поддерживать. Для разрешенных платформ можно настроить дополнительные ограничения развертывания.",
+ "platformSettings": "Параметры платформы",
+ "platforms": "Выбор платформ",
+ "platformsSelected": "Выбрано платформ: {0}",
+ "type": "Тип",
+ "versions": "версии",
+ "versionsRange": "Разрешите диапазон минимальных и максимальных значений:",
+ "windowsTooltip": "Ограничивает регистрацию через Управление мобильными устройствами. Установка с использованием агента для ПК не ограничивается. Поддерживаются только версии Windows 10 и Windows 11. Чтобы разрешить Windows 8.1, оставьте поле версий пустым."
+ },
+ "Priority": {
+ "saved": "Приоритеты ограничений успешно сохранены."
+ },
+ "Row": {
+ "announce": "Приоритет: {0}, имя: {1}, назначено: {2}"
+ },
+ "Table": {
+ "deployed": "Развернуто",
+ "name": "Имя",
+ "priority": "Приоритет"
},
- "block": "Отметить устройство как несоответствующее политике",
- "lockDevice": "Блокировка устройства (локальное действие)",
- "lockDeviceWithPasscode": "Блокировка устройства (локальное действие)",
- "noAction": "Нет действий",
- "noActionRow": "Нет действий; выберите команду \"Добавить\", чтобы добавить действие.",
- "pushNotification": "Отправить push-уведомление пользователю",
- "remoteLock": "Удаленно заблокировать несовместимое устройство",
- "removeSourceAccessProfile": "Удалить профиль доступа к источнику",
- "retire": "Снять несоответствующее устройство с учета",
- "wipe": "Очистка",
- "emailNotification": "Отправить сообщение электронной почты пользователю"
- },
- "WIPPinRequirements": {
- "WipLowercaseCharacterPinRequirements": {
- "allow": "Разрешить использование строчных букв в ПИН-коде",
- "notAllow": "Запретить использование строчных букв в ПИН-коде",
- "requireAtLeastOne": "Требовать по меньшей мере одну строчную букву в ПИН-коде"
- },
- "WipSpecialCharacterPinRequirements": {
- "allow": "Разрешить использование специальных символов в ПИН-коде",
- "notAllow": "Запретить использование специальных символов в ПИН-коде",
- "requireAtLeastOne": "Требовать по меньшей мере один специальный символ в ПИН-коде"
- },
- "WipUppercaseCharacterPinRequirements": {
- "allow": "Разрешить использование прописных букв в ПИН-коде",
- "notAllow": "Запретить использование прописных букв в ПИН-коде",
- "requireAtLeastOne": "Требовать по меньшей мере одну прописную букву в ПИН-коде"
- }
- }
+ "Type": {
+ "limit": "Ограничение на число устройств",
+ "type": "Ограничение на типы устройств"
+ },
+ "allUsers": "Все пользователи",
+ "androidRestrictions": "Ограничения Android",
+ "create": "Создать ограничение",
+ "defaultLimitDescription": "Это — ограничение на максимальное число устройств по умолчанию, применяемое с наименьшим приоритетом ко всем пользователям вне зависимости от группы.",
+ "defaultTypeDescription": "Это — ограничение на тип устройств по умолчанию, применяемое с наименьшим приоритетом ко всем пользователям вне зависимости от группы.",
+ "defaultWhfbDescription": "Это конфигурация Windows Hello для бизнеса по умолчанию, применяемая с наименьшим приоритетом ко всем пользователям вне зависимости от группы.",
+ "deleteMessage": "На затронутых пользователей будет распространяться следующее ограничение с самым высоким приоритетом или ограничение по умолчанию, если другие ограничения не назначены.",
+ "deleteTitle": "Вы действительно хотите удалить ограничение {0}?",
+ "descriptionHint": "Короткий текст, содержащий описание бизнес-использования или уровня ограничения, задаваемых параметрами ограничения.",
+ "edit": "Изменить ограничение",
+ "info": "Устройство должно соответствовать приоритетным ограничениям регистрации, назначенным его пользователю. Вы можете перетаскивать ограничения, чтобы изменять их приоритет. Ограничения по умолчанию имеют для всех пользователей самый низкий приоритет, и они предназначены для регистрации без пользователей. Вы можете редактировать ограничения по умолчанию, но не можете их удалять.",
+ "iosRestrictions": "Ограничения iOS",
+ "mDM": "MDM",
+ "macRestrictions": "Ограничения MacOS",
+ "maxVersion": "Максимальная версия",
+ "minVersion": "Минимальная версия",
+ "nameHint": "Это основной видимый атрибут для идентификации набора ограничений.",
+ "noAssignmentsStatusBar": "Назначьте ограничение по меньшей мере одной группе. Щелкните \"Свойства\".",
+ "notFound": "Ограничение не найдено. Возможно, оно уже удалено.",
+ "personallyOwned": "Личные устройства",
+ "restriction": "Ограничение",
+ "restrictionLowerCase": "ограничение",
+ "restrictionType": "Тип ограничения",
+ "selectType": "Выбрать тип ограничения",
+ "selectValidation": "Выберите платформу",
+ "typeHint": "Выберите \"Ограничение на типы устройств\", чтобы ограничить их свойства. Выберите \"Ограничение на число устройств\", чтобы ограничить число устройств на пользователя.",
+ "typeRequired": "Требуется тип ограничения.",
+ "winPhoneRestrictions": "Ограничения Windows Phone",
+ "windowsRestrictions": "Ограничения Windows"
+ },
+ "Titles": {
+ "ChromeOs": {
+ "devices": "Устройства под управлением ОС Chrome"
+ },
+ "ManagedDesktop": {
+ "adminContacts": "Контакты администратора",
+ "appPackaging": "Упаковка приложений",
+ "devices": "Устройства",
+ "feedback": "Отзывы и предложения",
+ "gettingStarted": "Приступая к работе",
+ "messages": "Сообщения",
+ "onlineResources": "Интернет-ресурсы",
+ "serviceRequests": "Запросы на обслуживание",
+ "settings": "Параметры",
+ "tenantEnrollment": "Регистрация клиента"
+ },
+ "actions": "Действия для несоответствия",
+ "advancedExchangeSettings": "Параметры Exchange Online",
+ "advancedThreatProtection": "Microsoft Defender для конечной точки",
+ "allApps": "Все приложения",
+ "allDevices": "Все устройства",
+ "androidFotaDeployments": "Развертывания FOTA Android",
+ "appBundles": "Пакеты приложений",
+ "appCategories": "Категории приложений",
+ "appConfigPolicies": "Политики конфигурации приложений",
+ "appInstallStatus": "Состояние установки приложения",
+ "appLicences": "Лицензии на приложения",
+ "appProtectionPolicies": "Политики защиты приложений",
+ "appProtectionStatus": "Состояние защиты приложений",
+ "appSelectiveWipe": "Выборочная очистка приложений",
+ "appleVppTokens": "Токены Apple VPP",
+ "apps": "Приложения",
+ "assign": "Назначения",
+ "assignedPermissions": "Назначенные разрешения",
+ "assignedRoles": "Назначенные роли",
+ "autopilotDeploymentReport": "Развертывания Autopilot (предварительная версия)",
+ "brandingAndCustomization": "Настройка",
+ "cartProfiles": "Профили для покупок",
+ "certificateConnectors": "Соединители сертификатов",
+ "chromeEnterprise": "Chrome Enterprise",
+ "compliancePolicies": "Политики соответствия",
+ "complianceScriptManagement": "Сценарии",
+ "complianceScriptManagementPreview": "Сценарии (предварительная версия)",
+ "complianceSettings": "Параметры политики соответствия",
+ "conditionStatements": "Условные операторы",
+ "conditions": "Расположения",
+ "configMgr": "Microsoft Endpoint Configuration Manager",
+ "configurationProfiles": "Профили конфигурации",
+ "configurationProfilesPreview": "Профили конфигурации (предварительный просмотр)",
+ "connectorsAndTokens": "Соединители и токены",
+ "corporateDeviceIdentifiers": "Идентификаторы корпоративных устройств",
+ "customAttributes": "Настраиваемые атрибуты",
+ "customNotifications": "Настраиваемые уведомления",
+ "deploymentSettings": "Параметры развертывания",
+ "derivedCredentials": "Производные учетные данные",
+ "deviceActions": "Действия устройства",
+ "deviceCategories": "Категории устройств",
+ "deviceCleanUp": "Правила очистки устройств",
+ "deviceEnrollmentManagers": "Менеджеры регистрации устройств",
+ "deviceExecutionStatus": "Состояние устройства",
+ "deviceLimitEnrollmentRestrictions": "Ограничения количества устройств для регистрации",
+ "deviceTypeEnrollmentRestrictions": "Ограничения количества устройств платформы для регистрации",
+ "devices": "Устройства",
+ "discoveredApps": "Обнаруженные приложения",
+ "embeddedSIM": "Профили сотовой связи eSIM (предварительная версия)",
+ "enrollDevices": "Регистрация устройств",
+ "enrollmentFailures": "Сбои регистрации",
+ "enrollmentNotifications": "Уведомления о регистрации (предварительная версия)",
+ "enrollmentRestrictions": "Ограничения регистрации",
+ "exchangeActiveSync": "Exchange ActiveSync",
+ "exchangeServiceConnectors": "Соединители сервисов Exchange",
+ "failuresForFeatureUpdates": "Сбои при обновлении компонентов (предварительная версия)",
+ "failuresForQualityUpdates": "Сбои ускоренного обновления Windows (предварительная версия)",
+ "featureFlighting": "Фокус-тестирование функций",
+ "featureUpdateDeployments": "Обновление компонентов для Windows 10 и более поздних версий (предварительная версия)",
+ "flighting": "Фокус-тестирование",
+ "fotaUpdate": "Обновление по воздуху для встроенного ПО",
+ "groupPolicy": "Административные шаблоны",
+ "groupPolicyAnalytics": "Анализ групповой политики",
+ "helpSupport": "Справка и поддержка",
+ "helpSupportReplacement": "Справка и поддержка ({0})",
+ "iOSAppProvisioning": "Профили подготовки приложений iOS",
+ "incompleteUserEnrollments": "Неполные регистрации пользователей",
+ "intuneRemoteAssistance": "Удаленная справка (предварительная версия)",
+ "iosUpdates": "Политики обновления для iOS/iPadOS",
+ "legacyPcManagement": "Традиционное управление ПК",
+ "macOSSoftwareUpdate": "Политики обновления для macOS",
+ "macOSSoftwareUpdateAccountSummaries": "Состояние установки для устройств с macOS",
+ "macOSSoftwareUpdateCategorySummaries": "Сводка обновлений ПО",
+ "macOSSoftwareUpdateStateSummaries": "обновления",
+ "managedGooglePlay": "Управляемый Google Play",
+ "msfb": "Магазин Майкрософт для бизнеса",
+ "myPermissions": "Мои разрешения",
+ "notifications": "Уведомления",
+ "officeApps": "Приложения Office",
+ "officeProPlusPolicies": "Политики для приложений Office",
+ "onPremise": "Локальные",
+ "onPremisesConnector": "Локальный соединитель Exchange ActiveSync",
+ "onPremisesDeviceAccess": "Устройства Exchange ActiveSync",
+ "onPremisesManageAccess": "Локальный доступ к Exchange",
+ "outOfDateIosDevices": "Ошибки установки для устройств с iOS",
+ "overview": "Обзор",
+ "partnerDeviceManagement": "Управление партнерскими устройствами",
+ "perUpdateRingDeploymentState": "По состоянию развертывания кольца обновления",
+ "permissions": "Разрешения",
+ "platformApps": "Приложений: {0}",
+ "platformDevices": "Устройств: {0}",
+ "platformEnrollment": "Регистрация {0}",
+ "policies": "Политики",
+ "previewMDMDevices": "Все управляемые устройства (предварительная версия)",
+ "profiles": "Профили",
+ "properties": "Свойства",
+ "reports": "Отчеты",
+ "retireNoncompliantDevices": "Снятие с учета несоответствующих устройств",
+ "retireNoncompliantDevicesPreview": "Retire noncompliant devices (preview)",
+ "role": "Роль",
+ "scriptManagement": "Сценарии",
+ "securityBaselines": "Базовые показатели безопасности",
+ "serviceToServiceConnector": "Соединитель Exchange Online",
+ "shellScripts": "Скрипты оболочки",
+ "teamViewerConnector": "Соединитель TeamViewer",
+ "telecomeExpenseManagement": "Управление затратами на телекоммуникации",
+ "tenantAdmin": "Администратор клиента",
+ "tenantAdministration": "Администрирование клиента",
+ "termsAndConditions": "Условия",
+ "titles": "Названия",
+ "troubleshootSupport": "Устранение неполадок и поддержка",
+ "user": "Пользователь",
+ "userExecutionStatus": "Состояние пользователя",
+ "warranty": "Поставщики гарантии",
+ "wdacSupplementalPolicies": "Дополнительные политики режима S",
+ "windows10DriverUpdate": "Обновление драйверов для Windows 10 и более поздних версий (предварительная версия)",
+ "windows10QualityUpdate": "Исправления для Windows 10 и более поздних версий (предварительная версия)",
+ "windows10UpdateRings": "Круги обновления для Windows 10 и более поздних версий",
+ "windows10XPolicyFailures": "Сбои политики Windows 10X",
+ "windowsEnterpriseCertificate": "Сертификат Windows Корпоративная",
+ "windowsManagement": "Сценарии PowerShell",
+ "windowsSideLoadingKeys": "Ключи загрузки неопубликованных приложений Windows",
+ "windowsSymantecCertificate": "Сертификат Windows DigiCert",
+ "windowsThreatReport": "Состояние агента угроз"
+ },
+ "ScopeTypes": {
+ "allDevices": "Все устройства",
+ "allUsers": "Все пользователи",
+ "allUsersAndDevices": "Все пользователи и все устройства",
+ "selectedGroups": "Выбранные группы"
+ },
+ "OfficeApplicationType": {
+ "access": "Access",
+ "bing": "Поиск (Майкрософт) по умолчанию",
+ "excel": "Excel",
+ "groove": "OneDrive (Groove)",
+ "lync": "Skype для бизнеса",
+ "oneDrive": "Классическое приложение OneDrive",
+ "oneNote": "OneNote",
+ "outlook": "Outlook",
+ "powerPoint": "PowerPoint",
+ "publisher": "Publisher",
+ "teams": "Teams",
+ "word": "Word"
+ },
+ "ApplicableDeviceType": {
+ "iPad": "iPad",
+ "iPhoneAndIPod": "iPhone и iPod"
+ },
+ "Assignment": {
+ "AutoUpdateMode": {
+ "default": "По умолчанию",
+ "header": "Приоритет обновления",
+ "postponed": "Отложено",
+ "priority": "Высокий приоритет"
+ },
+ "DeliveryOptimizationPriority": {
+ "backgroundNormal": "Фон",
+ "displayText": "Скачивание содержимого в {0}",
+ "foreground": "Передний план",
+ "header": "Приоритет оптимизации доставки"
+ },
+ "RestartGracePeriod": {
+ "allowSnooze": "Разрешить пользователю отложить уведомление о перезапуске",
+ "countdownDialog": "Выберите, когда следует отображать диалоговое окно обратного отсчета перед перезапуском (в минутах)",
+ "durationInMinutes": "Льготный период для перезапуска устройства (в минутах)",
+ "snoozeDurationInMinutes": "Выберите, на сколько отложить (в минутах)"
+ },
+ "SoftwareInstallationTime": {
+ "TimeZone": {
+ "label": "Часовой пояс",
+ "local": "Часовой пояс устройства",
+ "utc": "Время в формате UTC"
+ },
+ "dateAndTimeLabel": "Дата и время",
+ "deadlineTimeColumnLabel": "Крайний срок установки",
+ "deadlineTimeDatePickerErrorMessage": "Выбранная дата окончания должна следовать за доступной датой.",
+ "deadlineTimeLabel": "Крайний срок установки приложения",
+ "defaultTime": "Как можно скорее",
+ "infoText": "Это приложение будет доступно сразу после развертывания, если не указано время доступности ниже. Если это обязательное приложение, можно указать крайний срок установки.",
+ "specificTime": "Конкретные дата и время",
+ "startTimeColumnLabel": "Доступность",
+ "startTimeDatePickerErrorMessage": "Выбранная дата должна предшествовать дате крайнего срока.",
+ "startTimeLabel": "Доступность приложения"
+ },
+ "restartGracePeriodHeader": "Льготный период для перезапуска",
+ "restartGracePeriodLabel": "Льготный период для перезапуска устройства",
+ "summaryTitle": "Взаимодействие с пользователем"
+ },
+ "EnrollmentType": {
+ "devicesWithEnrollment": "Управляемые устройства",
+ "devicesWithoutEnrollment": "Управляемые приложения"
+ },
+ "PolicySet": {
+ "appManagement": "Управление приложениями",
+ "assignments": "Назначения",
+ "basics": "Основные",
+ "deviceEnrollment": "Регистрация устройства",
+ "deviceManagement": "Управление устройствами",
+ "scopeTags": "Теги области",
+ "appConfigurationTitle": "Политики конфигурации приложений",
+ "appProtectionTitle": "Политики защиты приложений",
+ "appTitle": "Приложения",
+ "iOSAppProvisioningTitle": "Профили подготовки приложений iOS",
+ "deviceLimitRestrictionTitle": "Ограничения числа устройств",
+ "deviceTypeRestrictionTitle": "Ограничения по типу устройств",
+ "enrollmentStatusSettingTitle": "Страницы состояния регистрации",
+ "windowsAutopilotDeploymentProfileTitle": "Профили развертывания Windows Autopilot",
+ "deviceComplianceTitle": "Политики соответствия устройств",
+ "deviceConfigurationTitle": "Профили конфигурации устройств",
+ "powershellScriptTitle": "Сценарии PowerShell"
+ },
+ "AzureIAMCommon": {
+ "CountryNames": {
+ "countryNameNR": "Науру",
+ "countryNameBH": "Бахрейн",
+ "countryNameZA": "ЮАР",
+ "countryNameJO": "Иордания",
+ "countryNameSD": "Судан",
+ "countryNameNU": "Ниуэ",
+ "countryNameCZ": "Чешская Республика",
+ "countryNameLT": "Литва",
+ "countryNameTK": "Токелау",
+ "countryNameEC": "Эквадор",
+ "countryNameVU": "Вануату",
+ "countryNameUG": "Уганда",
+ "countryNameLI": "Лихтенштейн",
+ "countryNameHK": "Гонконг, CАР",
+ "countryNameGH": "Гана",
+ "countryNameSA": "Саудовская Аравия",
+ "countryNamePG": "Папуа — Новая Гвинея",
+ "countryNameBW": "Ботсвана",
+ "countryNameDG": "Диего-Гарсия",
+ "countryNameIN": "Индия",
+ "countryNameHN": "Гондурас",
+ "countryNameRO": "Румыния",
+ "countryNameKZ": "Казахстан",
+ "countryNameLC": "Сент-Люсия",
+ "countryNameGE": "Грузия",
+ "countryNameTT": "Тринидад и Тобаго",
+ "countryNameMP": "Северные Марианские острова",
+ "countryNameMV": "Мальдивы",
+ "countryNameFI": "Финляндия",
+ "countryNameNO": "Норвегия",
+ "countryNameEE": "Эстония",
+ "countryNameVE": "Венесуэла",
+ "countryNameUZ": "Узбекистан",
+ "countryNameME": "Черногория",
+ "countryNameTJ": "Таджикистан",
+ "countryNameAW": "Аруба",
+ "countryNameFR": "Франция",
+ "countryNameOM": "Оман",
+ "countryNameAO": "Ангола",
+ "countryNameIT": "Италия",
+ "countryNameAZ": "Азербайджан",
+ "countryNameKG": "Киргизия",
+ "countryNameWF": "Уоллис и Футуна",
+ "countryNameTL": "Тимор-Лесте",
+ "countryNameFK": "Фолклендские острова (Мальвинские)",
+ "countryNameGY": "Гайана",
+ "countryNameSS": "Южный Судан",
+ "countryNameMM": "Мьянма",
+ "countryNameHT": "Гаити",
+ "countryNameSY": "Сирия",
+ "countryNameMD": "Молдова",
+ "countryNameVC": "Сент-Винсент и Гренадины",
+ "countryNameID": "Индонезия",
+ "countryNameRE": "Реюньон",
+ "countryNameER": "Эритрея",
+ "countryNameMK": "Северная Македония",
+ "countryNameTG": "Того",
+ "countryNamePF": "Французская Полинезия",
+ "countryNameKY": "Острова Кайман",
+ "countryNameIO": "Британская территория в Индийском океане",
+ "countryNameRU": "Россия",
+ "countryNameMA": "Марокко",
+ "countryNameAU": "Австралия",
+ "countryNameBO": "Боливия",
+ "countryNameVA": "Ватикан",
+ "countryNameVG": "Виргинские острова (Великобритания)",
+ "countryNameFM": "Микронезия, Федеративные Штаты",
+ "countryNameAQ": "Антарктида",
+ "countryNameZM": "Замбия",
+ "countryNameBR": "Бразилия",
+ "countryNameIS": "Исландия",
+ "countryNamePE": "Перу",
+ "countryNameBG": "Болгария",
+ "countryNamePR": "Пуэрто-Рико",
+ "countryNameGI": "Гибралтар",
+ "countryNameBS": "Багамы",
+ "countryNameJE": "Джерси",
+ "countryNameMO": "Макао, САР",
+ "countryNameRW": "Руанда",
+ "countryNameAS": "Американское Самоа",
+ "countryNameBQ": "Бонэйр, Синт-Эстатиус и Саба",
+ "countryNameMF": "Сен-Мартен",
+ "countryNameTM": "Туркменистан",
+ "countryNameML": "Мали",
+ "countryNameTO": "Тонга",
+ "countryNameNC": "Новая Каледония",
+ "countryNameAC": "о. Вознесения",
+ "countryNameBN": "Бруней",
+ "countryNameBD": "Бангладеш",
+ "countryNameMW": "Малави",
+ "countryNameGM": "Гамбия",
+ "countryNameGA": "Габон",
+ "countryNameCA": "Канада",
+ "countryNameSH": "Святая Елена",
+ "countryNameYT": "Майотта",
+ "countryNameMN": "Монголия",
+ "countryNamePA": "Панама",
+ "countryNameCM": "Камерун",
+ "countryNameNE": "Нигер",
+ "countryNameCW": "Кюрасао",
+ "countryNameJP": "Япония",
+ "countryNameCY": "Кипр",
+ "countryNameCD": "Демократическая Республика Конго",
+ "countryNameTN": "Тунис",
+ "countryNameTR": "Турция",
+ "countryNameWS": "Самоа",
+ "countryNameSE": "Швеция",
+ "countryNameXK": "Косово",
+ "countryNameKH": "Камбоджа",
+ "countryNamePL": "Польша",
+ "countryNameDZ": "Алжир",
+ "countryNameLR": "Либерия",
+ "countryNameSO": "Сомали",
+ "countryNameDM": "Доминика",
+ "countryNameEG": "Египет",
+ "countryNameGF": "Французская Гвиана",
+ "countryNameNZ": "Новая Зеландия",
+ "countryNamePS": "Палестинская автономия",
+ "countryNameIL": "Израиль",
+ "countryNameSL": "Сьерра-Леоне",
+ "countryNameGR": "Греция",
+ "countryNameNG": "Нигерия",
+ "countryNameMR": "Мавритания",
+ "countryNameVI": "Виргинские острова (США)",
+ "countryNameGQ": "Экваториальная Гвинея",
+ "countryNameMX": "Мексика",
+ "countryNameDJ": "Джибути",
+ "countryNameGN": "Гвинея",
+ "countryNameCN": "Китай",
+ "countryNameMZ": "Мозамбик",
+ "countryNameBV": "Остров Буве",
+ "countryNameNF": "Остров Норфолк",
+ "countryNameTZ": "Танзания",
+ "countryNameAI": "Ангилья",
+ "countryNameGS": "Южная Георгия и Южные Сандвичевы о-ва",
+ "countryNameRS": "Сербия",
+ "countryNameCC": "Кокосовые (Килинг) острова",
+ "countryNameNA": "Намибия",
+ "countryNameDE": "Германия",
+ "countryNameCG": "Республика Конго",
+ "countryNameKW": "Кувейт",
+ "countryNameMH": "Маршалловы Острова",
+ "countryNameVN": "Вьетнам",
+ "countryNameBY": "Беларусь",
+ "countryNameMY": "Малайзия",
+ "countryNameST": "Сан-Томе и Принсипи",
+ "countryNameLS": "Лесото",
+ "countryNameBI": "Бурунди",
+ "countryNameTD": "Чад",
+ "countryNameCX": "Остров Рождества",
+ "countryNameIR": "Иран",
+ "countryNameTV": "Тувалу",
+ "countryNameGW": "Гвинея-Бисау",
+ "countryNameUA": "Украина",
+ "countryNameCU": "Куба",
+ "countryNameCO": "Колумбия",
+ "countryNameNI": "Никарагуа",
+ "countryNameHR": "Хорватия",
+ "countryNameSC": "Сейшелы",
+ "countryNameNL": "Нидерланды",
+ "countryNameUM": "Малые Тихоокеанские Отдаленные Острова США",
+ "countryNameIM": "Остров Мэн",
+ "countryNameFJ": "Фиджи",
+ "countryNameSR": "Суринам",
+ "countryNameGT": "Гватемала",
+ "countryNameSM": "Сан-Марино",
+ "countryNameLA": "Лаос",
+ "countryNameGB": "Соединенное Королевство",
+ "countryNameBB": "Барбадос",
+ "countryNameSI": "Словения",
+ "countryNameAM": "Армения",
+ "countryNameAR": "Аргентина",
+ "countryNamePM": "Сен-Пьер и Микелон",
+ "countryNameTF": "Французские Южные Территории",
+ "countryNameDO": "Доминиканская Республика",
+ "countryNameZW": "Зимбабве",
+ "countryNameMQ": "Мартиника",
+ "countryNamePT": "Португалия",
+ "countryNameCF": "Центрально-Африканская Республика",
+ "countryNameBE": "Бельгия",
+ "countryNameKM": "Коморы",
+ "countryNameLY": "Ливия",
+ "countryNameIE": "Ирландия",
+ "countryNameKP": "Северная Корея",
+ "countryNameGG": "Гернси",
+ "countryNameSK": "Словакия",
+ "countryNameTC": "Острова Теркс и Кайкос",
+ "countryNameNP": "Непал",
+ "countryNameBF": "Буркина-Фасо",
+ "countryNameYE": "Йемен",
+ "countryNameBA": "Босния и Герцеговина",
+ "countryNameGP": "Гваделупа",
+ "countryNameMS": "Монтсеррат",
+ "countryNameCL": "Чили",
+ "countryNameIQ": "Ирак",
+ "countryNameSJ": "Шпицберген и остров Ян-Майен",
+ "countryNameAX": "Аландские острова",
+ "countryNameKE": "Кения",
+ "countryNameGU": "Гуам",
+ "countryNameBM": "Бермуды",
+ "countryNameFO": "Фарерские Острова",
+ "countryNameBL": "Сен-Бартельми",
+ "countryNameLB": "Ливан",
+ "countryNameJM": "Ямайка",
+ "countryNameAF": "Афганистан",
+ "countryNameES": "Испания",
+ "countryNameMC": "Монако",
+ "countryNameSG": "Сингапур",
+ "countryNameAL": "Албания",
+ "countryNameSN": "Сенегал",
+ "countryNameSZ": "Свазиленд",
+ "countryNameBZ": "Белиз",
+ "countryNameCI": "Кот-д'Ивуар",
+ "countryNameTW": "Тайвань",
+ "countryNameUY": "Уругвай",
+ "countryNameCK": "Острова Кука",
+ "countryNameTH": "Таиланд",
+ "countryNameHM": "Остров Херд и острова Макдональд",
+ "countryNameGD": "Гренада",
+ "countryNameUS": "Соединенные Штаты",
+ "countryNameAT": "Австрия",
+ "countryNameKR": "Республика Корея",
+ "countryNamePK": "Пакистан",
+ "countryNameDK": "Дания",
+ "countryNameSV": "Сальвадор",
+ "countryNamePW": "Палау",
+ "countryNameET": "Эфиопия",
+ "countryNameMG": "Мадагаскар",
+ "countryNameCR": "Коста-Рика",
+ "countryNameLU": "Люксембург",
+ "countryNameQA": "Катар",
+ "countryNameBT": "Бутан",
+ "countryNameSB": "Соломоновы Острова",
+ "countryNameAE": "ОАЭ",
+ "countryNameAD": "Андорра",
+ "countryNameCV": "Кабо-Верде",
+ "countryNameAG": "Антигуа и Барбуда",
+ "countryNameMU": "Маврикий",
+ "countryNameHU": "Венгрия",
+ "countryNameSX": "Синт-Мартен",
+ "countryNameCH": "Швейцария",
+ "countryNamePN": "О-ва Питкэрн",
+ "countryNameGL": "Гренландия",
+ "countryNamePH": "Филиппины",
+ "countryNameMT": "Мальта",
+ "countryNameKN": "Сент-Китс и Невис",
+ "countryNameLK": "Шри-Ланка",
+ "countryNameKI": "Кирибати",
+ "countryNameBJ": "Бенин",
+ "countryNameLV": "Латвия",
+ "countryNamePY": "Парагвай"
+ }
+ }
}
diff --git a/Documentation/Strings-sv.json b/Documentation/Strings-sv.json
index 82e34ce..3f29a65 100644
--- a/Documentation/Strings-sv.json
+++ b/Documentation/Strings-sv.json
@@ -1,1842 +1,4 @@
{
- "InstallContextType": {
- "device": "Enhet",
- "deviceContext": "Enhetssammanhang",
- "user": "Användare",
- "userContext": "Användarsammanhang"
- },
- "WipPolicySettings": {
- "addNetworkBoundary": "Lägg till nätverksgräns",
- "addNetworkBoundaryButton": "Lägg till nätverksgräns...",
- "allowWindowsSearch": "Låt Windows Search söka i krypterade företagsdata och Store-appar",
- "authoritativeIpRanges": "Listan över företagets ip-intervall är auktoritativ (identifiera inte automatiskt)",
- "authoritativeProxyServers": "Listan över företagsproxyservrar är auktoritativ (identifiera inte automatiskt)",
- "boundaryType": "Gränstyp",
- "cloudResources": "Molnresurser",
- "corporateIdentity": "Företagsidentitet",
- "dataRecoveryCert": "Ladda upp ett certifikat för dataåterställningsagenten för att tillåta återställning av krypterade data",
- "editNetworkBoundary": "Redigera nätverksgräns",
- "enrollmentState": "Registreringsstatus",
- "iPv4Ranges": "IPv4-intervall",
- "iPv6Ranges": "IPv6-intervall",
- "internalProxyServers": "Interna proxyservrar",
- "maxInactivityTime": "Maximal tid (i minuter) som får passera innan en inaktiv enhet låses med PIN-kod eller lösenord",
- "maxPasswordAttempts": "Antal autentiseringsförsök som tillåts innan enheten rensas",
- "mdmDiscoveryUrl": "Webbadress till MDM-identifiering",
- "mdmRequiredSettingsInfo": "Principen avser endast Windows 10 Anniversary och högre. Med den här principen används Windows informationsskydd (WIP) som skydd.",
- "minimumPinLength": "Ange lägsta antal tillåtna tecken för PIN-kod",
- "name": "Namn",
- "networkBoundariesGridEmptyText": "Alla nätverksgränser du lägger till visas här",
- "networkBoundary": "Nätverksgräns",
- "networkDomainNames": "Nätverksdomäner",
- "neutralResources": "Neutrala resurser",
- "passportForWork": "Använd Windows Hello för företag som inloggningsmetod i Windows",
- "pinExpiration": "Ange tidsperiod (i dagar) som en PIN-kod får användas innan användaren måste ändra den",
- "pinHistory": "Ange antalet tidigare PIN-koder som kan kopplas till ett användarkonto och som inte kan återanvändas",
- "pinLowercaseLetters": "Ställ in användning av gemener i PIN-koden för Windows Hello för företag",
- "pinSpecialCharacters": "Ställ in användning av specialtecken i PIN-koden för Windows Hello för företag",
- "pinUppercaseLetters": "Ställ in användning av versaler i PIN-koden för Windows Hello för företag",
- "protectUnderLock": "Förhindra appars tillgång till företagsdata när enheten är låst. Gäller endast Windows 10 Mobile",
- "protectedDomainNames": "Skyddade domäner",
- "proxyServers": "Proxyservrar",
- "requireAppPin": "Inaktivera appens PIN-kod när enhetens PIN-kod hanteras",
- "requiredSettings": "Nödvändiga inställningar",
- "requiredSettingsInfo": "Om du ändrar omfång eller tar bort principen dekrypteras företagsinformationen.",
- "revokeOnMdmHandoff": "Återkalla åtkomst till skyddade data när enheten registreras i MDM",
- "revokeOnUnenroll": "Återkalla krypteringsnycklar vid avregistrering",
- "rmsTemplateForEdp": "Ange det mall-ID som ska användas för Azure RMS",
- "showWipIcon": "Visa symbol för företagsdataskydd",
- "type": "Typ",
- "useRmsForWip": "Använd Azure RMS för Windows informationsskydd",
- "value": "Värde",
- "weRequiredSettingsInfo": "Principen avser endast Windows 10 Creators Update och högre. Med den här principen används Windows informationsskydd (WIP) och Windows MAM som skydd.",
- "wipProtectionMode": "Läget för Windows informationsskydd",
- "withEnrollment": "Med registrering",
- "withoutEnrollment": "Utan registrering"
- },
- "EdgeAppConfig": {
- "AllowedURLs": {
- "title": "Tillåtna webbadresser",
- "tooltip": "Ange de webbplatser användarna har tillgång till i ett arbetssammanhang. Inga andra webbplatser tillåts. Du kan välja att ställa in antingen en lista över tillåtna eller blockerade webbplatser, men inte båda. "
- },
- "ApplicationProxyRedirection": {
- "header": "Programproxy",
- "title": "Proxyomdirigering för program",
- "tooltip": "Aktivera proxyomdirigering för appar för att ge användarna åtkomst till företagslänkar och lokala webbappar."
- },
- "BlockedURLs": {
- "title": "Blockerade webbadresser",
- "tooltip": "Ange de webbplatser som är blockerade för användare när de befinner sig i ett arbetssammanhang. Alla andra webbplatser tillåts. Du kan välja att ställa in antingen en lista över tillåtna eller blockerade webbplatser, men inte båda. "
- },
- "Bookmarks": {
- "header": "Hanterade bokmärken",
- "tooltip": "Ange en lista över bokmärkta webbadresser som är tillgängliga för användarna när de använder Microsoft Edge i ett arbetssammanhang.",
- "uRL": "URL"
- },
- "HomepageURL": {
- "header": "Hanterad startsida",
- "title": "Webbadress för genväg till hemsida",
- "tooltip": "Ställ in en genväg till hemsidan som visas för användarna som första symbol under sökfältet när de öppnar en ny flik i Microsoft Edge."
- },
- "PersonalContext": {
- "label": "Omdirigera ej tillförlitliga webbplatser till privat sammanhang",
- "tooltip": "Ställ in om användaren ska kunna övergå till sitt privata sammanhang för att öppna ej betrodda webbplatser."
- }
- },
- "AzureIAM": {
- "AdrsUserActionSelectionWarning": {
- "conditions": "Villkor som kräver att enhetsregistrering inte är tillgängliga med användaråtgärden \"Registrera eller ansluta till enheter\".",
- "message": "Endast \"Kräv multifaktorautentisering\" kan användas i principer som skapats för användaråtgärden \"Registrera eller anslut enheter\".{0}"
- },
- "AuthContext": {
- "Included": {
- "none": "Inga molnappar, åtgärder eller autentiseringssammanhang har valts",
- "plural": "{0} autentiseringssammanhang ingår",
- "singular": "1 autentiseringssammanhang ingår"
- },
- "InfoBlade": {
- "createTitle": "Lägg till autentiseringssammanhang",
- "descPlaceholder": "Lägg till beskrivning av autentiseringssammanhanget",
- "modifyTitle": "Ändra autentiseringssammanhang",
- "namePlaceholder": "Exempel: Betrodd plats, betrodd enhet, stark auktorisering",
- "publishDesc": "När du publicerar till appar blir autentiseringssammanhanget tillgänglig för appar att använda. Publicera när du har konfigurerat principen för villkorsstyrd åtkomst för taggen. [Learn more][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150966",
- "publishLabel": "Publicera till appar",
- "titleDesc": "Konfigurera ett autentiseringssammanhang som ska användas för att skydda programdata och åtgärder. Använd namn och beskrivningar som kan förstås av programadministratörer. [Learn more][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150965"
- },
- "Notify": {
- "failure": "Det gick inte att uppdatera {0}",
- "modifying": "Ändrar {0}",
- "success": "Uppdaterade {0}"
- },
- "WhatIf": {
- "selected": "Autentiseringssammanhang ingår"
- },
- "addNewStepUp": "Nytt autentiseringssammanhang",
- "checkBoxInfo": "Välj de autentiseringssammanhang som den härprincipen ska användas för",
- "configure": "Konfigurera autentiseringssammanhang",
- "createCA": "Tilldela autentiseringssammanhanget principer för villkorsstyrd åtkomst",
- "dataGrid": "Lista med autentiseringssammanhang",
- "description": "Beskrivning",
- "documentation": "Dokumentation",
- "getStarted": "Kom igång",
- "label": "Autentiseringssammanhang (förhandsversion)",
- "menuLabel": "Autentiseringssammanhang (förhandsversion)",
- "name": "Namn",
- "noAuthContextSet": "Det finns inga autentiseringssammanhang",
- "noData": "Inga autentiseringssammanhang att visa",
- "selectionInfo": "Autentiseringssammanhang används för att skydda programdata och åtgärder i appar som SharePoint och Microsoft Cloud App Security.",
- "step": "Steg",
- "tabDescription": "Hantera autentiseringssammanhang för att skydda data och åtgärder i dina appar. [Learn more][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150965",
- "tagResources": "Tagga resurser med ett autentiseringssammanhang"
- },
- "AuthenticationStrength": {
- "Mode": {
- "deviceBasedPush": "Microsoft Authenticator (telefoninloggning)",
- "deviceBasedPushFido2X509Certificate": "Microsoft Authenticator (telefoninloggning) + Fido 2 + certifikatbaserad autentisering",
- "deviceBasedPushX509CertificateSingleFactor": "Microsoft Authenticator (telefoninloggning) + Fido 2 + certifikatbaserad autentisering (enkel faktor)",
- "email": "Engångslösenord via e-post",
- "emailOtp": "Engångskod för e-post",
- "federatedMultiFactor": "Federerad multifaktor",
- "federatedSingleFactor": "Sammansluten enkel faktor",
- "federatedSingleFactorFederatedMultiFactor": "Federerad enkel faktor + federerad multifaktor",
- "fido2": "FIDO 2-säkerhetsnyckel",
- "fido2X509CertificateSingleFactor": "FIDO 2-säkerhetsnyckel + certifikatbaserad autentisering (enkel faktor)",
- "hardwareOath": "Engångskod för maskinvara",
- "hardwareOathX509CertificateSingleFactor": "Engångslösenord för maskinvara + certifikatbaserad autentisering (enkel faktor)",
- "microsoftAuthenticatorPSIX509CertificateSingleFactor": "Microsoft Authenticator (telefoninloggning) + certifikatbaserad autentisering (enkel faktor)",
- "microsoftAuthenticatorPsi": "Microsoft Authenticator (telefoninloggning)",
- "microsoftAuthenticatorPush": "Microsoft Authenticator (push-meddelande)",
- "microsoftAuthenticatorPushX509CertificateSingleFactor": "Microsoft Authenticator (push-meddelande) + certifikatbaserad autentisering (enkel faktor)",
- "none": "Ingen",
- "password": "Lösenord",
- "passwordDeviceBasedPush": "Lösenord + Microsoft Authenticator (telefoninloggning)",
- "passwordFido2": "Lösenord + FIDO 2-säkerhetsnyckel",
- "passwordHardwareOath": "Lösenord + engångslösenord för maskinvara",
- "passwordMicrosoftAuthenticatorPSI": "Lösenord + Microsoft Authenticator (telefoninloggning)",
- "passwordMicrosoftAuthenticatorPush": "Lösenord + Microsoft Authenticator (push-meddelande)",
- "passwordSms": "Lösenord + sms",
- "passwordSoftwareOath": "Lösenord + engångslösenord för programvara",
- "passwordTemporaryAccessPassMultiUse": "Lösenord + tillfällig åtkomstkod (flergångsanvändning)",
- "passwordTemporaryAccessPassOneTime": "Lösenord + tillfällig åtkomstkod (engångsanvändning)",
- "passwordVoice": "Lösenord + röst",
- "sms": "SMS",
- "smsSignIn": "SMS-inloggning",
- "smsX509CertificateSingleFactor": "Sms + certifikatbaserad autentisering (enkel faktor)",
- "softwareOath": "Engångskod för program",
- "softwareOathX509CertificateSingleFactor": "Engångslösenord för programvara + certifikatbaserad autentisering (enkel faktor)",
- "temporaryAccessPassMultiUse": "Tillfällig åtkomstkod (flergångsanvändning)",
- "temporaryAccessPassMultiUseX509CertificateSingleFactor": "Tillfällig åtkomstkod (flergångsanvändning) + certifikatbaserad autentisering (enkel faktor)",
- "temporaryAccessPassOneTime": "Tillfällig åtkomstkod (engångsanvändning)",
- "temporaryAccessPassOneTimeX509CertificateSingleFactor": "Tillfällig åtkomstkod (engångsanvändning) + certifikatbaserad autentisering (enkel faktor)",
- "voice": "Röst",
- "voiceX509CertificateSingleFactor": "Röst + certifikatbaserad autentisering (enkel faktor)",
- "windowsHelloForBusiness": "Windows Hello för företag",
- "x509CertificateMultiFactor": "Certifikatbaserad autentisering (multifaktor)",
- "x509CertificateSingleFactor": "Certifikatbaserad autentisering (enkel faktor)"
- }
- },
- "CAS": {
- "BuiltinPolicy": {
- "Option": {
- "blockDownloads": "Blockera nedladdningar (förhandsversion)",
- "monitorOnly": "Endast övervakning (förhandsversion)",
- "protectDownloads": "Skydda nedladdningar (förhandsversion)",
- "useCustomControls": "Använd en anpassad princip..."
- },
- "ariaLabel": "Ange vilken typ av appkontroll för villkorsstyrd åtkomst som ska användas"
- }
- },
- "ChooseApplications": {
- "Grid": {
- "appIdAria": "App-ID: {0}"
- },
- "LowerGrid": {
- "ariaLabel": "Lista över valda molnappar"
- },
- "UpperGrid": {
- "ariaLabel": "Lista med molnappar som matchar sökningsvillkoren"
- }
- },
- "ChooseLocations": {
- "Validation": {
- "failed": "Med Valda platser måste du välja minst en plats.",
- "selector": "Välj minst en plats"
- }
- },
- "ClientApp": {
- "Clients": {
- "Validation": {
- "failed": "Du måste välja minst en av följande klientorganisationer"
- }
- }
- },
- "ClientConditionsInfo": {
- "browserAndModern": "Den här principen gäller endast för webbläsare och moderna autentiseringsappar. Om du vill tillämpa principen på alla klientappar måste du aktivera klientappvillkoret och välja alla klientappar.",
- "classicExperience": "Sedan den här principen skapades har standardklientapparnas konfiguration uppdaterats.",
- "legacyAuth": "Utan konfiguration gäller principerna nu för alla klientappar, inklusive modern och äldre autentisering."
- },
- "CloudAppFilterBlade": {
- "AssignmentFilter": {
- "header": "Attribut",
- "placeholder": "Välj ett attribut"
- },
- "Configure": {
- "infoBalloon": "Ställ in appfilter som du vill att principen ska tillämpas på."
- },
- "NoPermissions": {
- "learnMoreAria": "Mer om behörigheter för anpassade säkerhetsattribut.",
- "message": "Du har inte de behörigheter som krävs för att använda anpassade säkerhetsattribut."
- },
- "gridHeader": "Med anpassade säkerhetsattribut kan du använda regelverktyget eller regelsyntaxrutan för att skapa eller redigera filterreglerna. I förhandsgranskningen stöds enbart attribut av strängtyp. Attribut av typen heltal eller boolesk visas inte.",
- "learnMoreAria": "Mer information om hur man använder regelverktyget och syntaxtextrutan.",
- "noAttributes": "Det finns inga anpassade attribut tillgängliga att filtrera på. Du måste ställa in några attribut för att kunna använda det här filtret.",
- "title": "Edit filter (Preview)"
- },
- "CloudAppsUserActions": {
- "any": "Valfri molnapp eller åtgärd",
- "infoBalloon": "Molnapp eller användaråtgärd som du vill testa, t.ex. SharePoint Online",
- "learnMore": "Kontrollera åtkomsten baserat på alla eller specifika molnappar eller åtgärder.",
- "learnMoreB2C": "Kontrollera åtkomsten baserat på alla eller specifika molnappar.",
- "title": "Molnappar eller åtgärder"
- },
- "CloudappsSelectionBlade": {
- "Excluded": {
- "gridAria": "Lista över exkluderade molnappar"
- },
- "Filter": {
- "configured": "Konfigurerad",
- "label": "Edit filter (Preview)",
- "with": "{0} med {1}"
- },
- "Included": {
- "gridAria": "Lista över inkluderade molnappar"
- },
- "Validation": {
- "authContext": "Med \"autentiseringssammanhang\" måste du konfigurera minst ett underobjekt.",
- "selectApps": "{0} måste konfigureras",
- "selector": "Välj minst en app.",
- "userActions": "Med \"Användaråtgärder\" måste du konfigurera minst ett underobjekt."
- }
- },
- "DeviceState": {
- "LearnMore": {
- "message": "Control user access when the device the user is signing-in from is not \"Hybrid Azure AD joined\" or \"marked as compliant\".\n '{0}' has been deprecated. Use '{1}' instead."
- }
- },
- "Errors": {
- "notFound": "Det gick inte att hitta principen, eller så har den tagits bort.",
- "notFoundDetailed": "Principen {0} finns inte längre. Den kan ha tagits bort."
- },
- "NamedLocation": {
- "Form": {
- "CountryLookup": {
- "ariaLabel": "Sökmetod för land",
- "gps": "Fastställ plats efter GPS-koordinater",
- "info": "När platsvillkoret för en princip för villkorsstyrd åtkomst har konfigurerats uppmanas användarna av Authenticator-appen att dela sina GPS-platser. ",
- "ip": "Bestäm plats efter IP-adress (endast IPv4)"
- },
- "Header": {
- "new": "Ny plats ({0})",
- "update": "Uppdatera plats ({0})"
- },
- "IP": {
- "learn": "Konfigurera IPv4-och IPv6-intervall för namngivna platser.\n[Learn more][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
- },
- "Include": {
- "infoBalloon": "Okända länder/regioner är IP-adresser som inte är associerade till något specifikt land eller region. [Learn more][1]\n\nDetta omfattar:\n* IPv6-adresser\n* IPv4-adresser utan direkt mappning\n[1]: https://aka.ms/canamedlocations\n",
- "label": "Inkludera okända länder/regioner"
- },
- "Name": {
- "empty": "Namnet får inte vara tomt",
- "placeholder": "Namnge den här platsen"
- },
- "PrivateLink": {
- "learn": "Skapa en ny namngiven plats som innehåller privata länkar för Azure AD. \n[Learn more][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
- },
- "Search": {
- "countries": "Sök efter länder",
- "names": "Sök namn",
- "privateLinks": "Sök efter privata länkar"
- },
- "Trusted": {
- "label": "Markera som betrodd plats"
- },
- "enter": "Ange ett nytt IPv4- eller IPv6-intervall",
- "example": "exempel: 40.77.182.32/27 eller 2a01:111::/32"
- },
- "Label": {
- "addCountries": "Länders plats",
- "addIpRange": "IP-intervallsplats",
- "addPrivateLink": "Azure Private Links"
- },
- "Notification": {
- "Create": {
- "Failed": {
- "description": "Det gick inte att skapa ny plats ({0})",
- "title": "Det gick inte att skapa"
- },
- "InProgress": {
- "description": "Skapa ny plats ({0})",
- "title": "Håller på att skapa"
- },
- "Success": {
- "description": "Den nya platsen ({0}) har skapats",
- "title": "Skapandet har slutförts"
- }
- },
- "Delete": {
- "Failed": {
- "description": "Det gick inte att ta bort platsen ({0})",
- "title": "Borttagningen misslyckades"
- },
- "InProgress": {
- "description": "Platsen ({0}) tas bort",
- "title": "Borttagning pågår"
- },
- "Success": {
- "description": "Platsen ({0}) har tagits bort",
- "title": "Borttagningen har slutförts"
- }
- },
- "Update": {
- "Failed": {
- "description": "Det gick inte att uppdatera platsen ({0})",
- "title": "Uppdateringen misslyckades"
- },
- "InProgress": {
- "description": "Platsen ({0}) uppdateras",
- "title": "Uppdatering pågår"
- },
- "Success": {
- "description": "Platsen ({0}) har uppdaterats",
- "title": "Uppdateringen har slutförts"
- }
- }
- },
- "PrivateLinks": {
- "grid": "Lista över privata länkar"
- },
- "Trusted": {
- "title": "Betrodd typ",
- "trusted": "Betrodda"
- },
- "Type": {
- "all": "Alla typer",
- "countries": "Länder",
- "ipRanges": "IP-intervall",
- "privateLinks": "Privata länkar",
- "title": "Platstyp"
- },
- "iPRangeInvalidError": "Värdet måste vara ett giltigt IPv4- eller IPv6-intervall.",
- "iPRangeLinkOrSiteLocalError": "IP-nätverket har identifierats som en lokal länk eller en lokal webbplatsadress.",
- "iPRangeOctetError": "IP-nätverket får inte börja med 0 eller 255.",
- "iPRangePrefixError": "IP-nätverksprefixet måste vara från /{0} till /{1}.",
- "iPRangePrivateError": "IP-nätverket har identifierats som en privat adress."
- },
- "Policies": {
- "Grid": {
- "aria": "Lista över principer för villkorsstyrd åtkomst"
- },
- "countText": "{0} av {1} principer hittades",
- "countTextSingular": "{0} av den 1 princip hittades",
- "search": "Sökningsprinciper"
- },
- "Policy": {
- "Condition": {
- "ServicePrincipalRisk": {
- "description": "Konfigurera risknivåerna för tjänstens huvudnamn som krävs för att principen ska tillämpas",
- "infoBalloonContent": "Konfigurera risken för tjänstens huvudnamn för att tillämpa principen för specifika risknivåer",
- "title": "Risk för tjänstens huvudnamn"
- }
- }
- },
- "PolicyControlAuthStrength": {
- "MultiFactorAuthentication": {
- "description": "Kombinationer av metoder som uppfyller stark autentisering, till exempel lösenord + sms",
- "displayName": "Multifaktorautentisering (MFA)"
- },
- "Passwordless": {
- "description": "Lösenordslösa metoder som uppfyller stark autentisering, t.ex. Microsoft Authenticator ",
- "displayName": "Lösenordsfri multifaktorautentisering"
- },
- "PhishingResistant": {
- "description": "Lösenordsfria metoder mot nätfiske för starkast autentisering, till exempel FIDO2-säkerhetsnyckel",
- "displayName": "Nätfiskeskyddad multifaktorautentisering"
- }
- },
- "PolicyControlFedAuthMethod": {
- "certificate": "Certifikatautentisering",
- "infoBubble": "Ange en nödvändig autentiseringsmetod som måste uppfyllas av en federationsprovider, t.ex. ADFS.",
- "multifactor": "Multifaktorautentisering",
- "require": "Kräv federerad autentiseringsmetod (förhandsversion)",
- "whatIfFormat": "{0} - {1}"
- },
- "PolicyState": {
- "off": "Av",
- "on": "På",
- "reportOnly": "Enbart rapport"
- },
- "PolicyTemplates": {
- "Devices": {
- "description": "Välj principmallkategorin Enheter för att se vilka enheter som ansluter till nätverket. Kontrollera efterlevnad och hälsostatus innan du beviljar åtkomst.",
- "name": "Enheter"
- },
- "Identities": {
- "description": "Välj principmallkategorin Identiteter för att verifiera och skydda varje identitet med stark autentisering för hela din digitala egendom.",
- "name": "Identiteter"
- },
- "Summary": {
- "CloudApps": {
- "allCloudApps": "Alla appar",
- "office365": "Office 365",
- "registerSecurityInfo": "Registrera säkerhetsinformation"
- },
- "Conditions": {
- "androidAndIOS": "Enhetsplattform: Android och IOS",
- "anyDevice": "Alla enheter utom Android, IOS, Windows och Mac",
- "anyDeviceStateExceptHybrid": "All eventuell enhetsstatus förutom kompatibel och Hybrid Azure AD-ansluten",
- "anyLocation": "Valfri plats förutom betrodd",
- "browserMobileDesktop": "Klientappar: webbläsare, mobilappar och stationära klienter",
- "exchangeActiveSync": "Klientappar: Exchange Active Sync, övriga klienter",
- "windowsAndMac": "Enhetsplattform: Windows och Mac"
- },
- "Devices": {
- "anyDevice": "Valfri enhet"
- },
- "Grant": {
- "appProtectionPolicy": "Kräv appskyddsprincip",
- "approvedClientApp": "Kräv godkänd klientapp",
- "blockAccess": "Blockera åtkomst",
- "mfa": "Kräv multifaktorautentisering",
- "passwordChange": "Kräv lösenordsändring",
- "requireCompliantDevice": "Kräv att enheten är markerad som kompatibel",
- "requireHybridAzureADDevice": "Kräv hybrid Azure AD-ansluten enhet"
- },
- "Session": {
- "appEnforcedRestrictions": "Använd app-framtvingade begränsningar",
- "signInFrequency": "Inloggningsfrekvens och aldrig beständig webbläsarsession"
- },
- "UsersAndGroups": {
- "allUsers": "Alla användare",
- "directoryRoles": "Katalogroller med undantag för aktuell administratör",
- "globalAdmin": "Global administratör",
- "noGuestAndAdmins": "Alla användare utom gästadministratörer, externa administratörer, globala administratörer och aktuell administratör"
- },
- "azureManagement": "Azure Management",
- "deviceFilters": "Filter för enheter",
- "devicePlatforms": "Enhetsplattformar"
- },
- "TemplateId": {
- "AppEnforcedRestrictions": {
- "description": "Blockera eller begränsa åtkomst till SharePoint, OneDrive och Exchange-innehåll från ohanterade enheter.",
- "name": "CA014: Använd programtvingande begränsningar för ohanterade enheter",
- "title": "Använd programtvingande begränsningar för ohanterade enheter"
- },
- "ApprovedClientApps": {
- "description": "För att förhindra dataförlust kan organisationer begränsa åtkomsten till godkända appar för modern klientautentisering med Intune App Protection.",
- "name": "CA012: Kräv godkända klientappar och appskydd",
- "title": "Kräv godkända klientappar och appskydd"
- },
- "BlockAccessOnUnknowns": {
- "description": "Användarna blockeras från att få åtkomst till företagsresurser när enhetstypen är okänd eller inte stöds.",
- "name": "CA010: Blockera åtkomst för enhetsplattformar som är okända eller inte stöds",
- "title": "Blockera åtkomst för enhetsplattformar som är okända eller inte stöds"
- },
- "BlockLegacyAuth": {
- "description": "Blockera bakåtkompatibla slutpunkter som kan användas för att kringgå multifaktorautentisering. ",
- "name": "CA003: Blockera äldre autentisering",
- "title": "Blockera äldre autentisering"
- },
- "NoPersistentBrowserSession": {
- "description": "Skydda användaråtkomst på ohanterade enheter genom att förhindra att webbläsarsessioner förblir inloggade efter det att webbläsaren har stängts och ange en inloggningsfrekvens på 1 timme.",
- "name": "CA011: Ingen beständig webbläsarsession",
- "title": "Icke-beständig webbläsarsession"
- },
- "RequireCompliantOrHybridADAdmins": {
- "description": "Kräv att privilegierade administratörer bara får åtkomst till resurser när de använder en kompatibel eller hybrid Azure AD-ansluten enhet.",
- "name": "CA009: Kräv kompatibel eller hybrid Azure AD-ansluten enhet för administratörer",
- "title": "Kräv kompatibel eller hybrid Azure AD-ansluten enhet för administratörer"
- },
- "RequireCompliantOrHybridADAllUsers": {
- "description": "Skydda åtkomst till företagsresurser genom att kräva att användarna använder en hanterad enhet eller utför multifaktorautentisering. (endast macOS eller Windows)",
- "name": "CA013: Kräv kompatibel eller hybrid Azure AD-ansluten enhet eller multifaktorautentisering för alla användare",
- "title": "Kräv kompatibel eller hybrid Azure AD-ansluten enhet eller multifaktorautentisering för alla användare"
- },
- "RequireMFAAllUsers": {
- "description": "Kräv multifaktorautentisering för alla användarkonton för att minska risken för kompromettering.",
- "name": "CA004: Kräv multifaktorautentisering för alla användare",
- "title": "Kräv multifaktorautentisering för alla användare"
- },
- "RequireMFAForAdmins": {
- "description": "Kräv multifaktorautentisering för privilegierade administratörskonton för att minska risken för kompromettering. Den här principen riktar sig till samma roller som standardsäkerhet.",
- "name": "CA001: Kräv multifaktorautentisering för administratörer",
- "title": "Kräv multifaktorautentisering för administratörer"
- },
- "RequireMFAForAzureManagement": {
- "description": "Kräv multifaktorautentisering för att skydda privilegierad åtkomst till Azure-resurser.",
- "name": "CA006: Kräv multifaktorautentisering för Azure-hantering",
- "title": "Kräv multifaktorautentisering för Azure-hantering"
- },
- "RequireMFAForGuestAccess": {
- "description": "Kräv att gästanvändare utför multifaktorautentisering vid åtkomst till företagets resurser.",
- "name": "CA005: Kräv multifaktorautentisering för gäståtkomst",
- "title": "Kräv multifaktorautentisering för gäståtkomst"
- },
- "RequireMFAForRiskySignIn": {
- "description": "Kräv multifaktorautentisering om inloggningsrisken har identifierats som medelhög eller hög. (Azure Active Directory Premium 2-licens krävs)",
- "name": "CA007: Kräv multifaktorautentisering för riskfylld inloggningar",
- "title": "Kräv multifaktorautentisering för riskfylld inloggningar"
- },
- "RequirePasswordChangeForHighRiskUsers": {
- "description": "Kräv att användaren ändrar sitt lösenord om användarrisken är hög. (Azure Active Directory Premium 2-licens krävs)",
- "name": "CA008: Kräv lösenordsändring för högriskanvändare",
- "title": "Kräv lösenordsändring för högriskanvändare"
- },
- "RequireSecurityInfo": {
- "description": "Säkra när och hur användare registrerar sig för Azure AD multi-factor authentication och självbetjäningslösenord. ",
- "name": "CA002: Skydda registrering av säkerhetsinformation",
- "title": "Skydda registrering av säkerhetsinformation"
- }
- },
- "TemplateState": {
- "BlockAccessOnUnknowns": {
- "title": "Om du aktiverar den här principen förhindras åtkomst från okänd enhetstyp, Tänk på att till en början endast använda rapportläge tills du har bekräftat att det här inte påverkar dina användare."
- },
- "BlockLegacyAuth": {
- "description": "Använd till en början endast rapportläge tills du har bekräftat att detta inte påverkar dina användare.",
- "title": "Om du aktiverar den här principen blockeras äldre autentisering för alla användare."
- },
- "RequireCompliantOrHybridADAdmins": {
- "Description": {
- "on": "Använd till en början endast rapportläge tills du har bekräftat att detta inte påverkar dina privilegierade användare.",
- "reportOnly": "Principer i enbart rapportläge som kräver kompatibla enheter kan uppmana användare på Mac, iOS och Android att välja ett enhetscertifikat under principutvärderingen, även om enhetskompatibilitet inte tillämpas. Dessa uppmaningar kan upprepas fram till dess att enheten blir kompatibel."
- },
- "Title": {
- "on": "Om du aktiverar den här principen förhindras åtkomst för privilegierade användare om du inte använder en hanterad enhet som kompatibel eller hybrid Azure AD-ansluten. Kontrollera att du har ställt in efterlevnadsprinciper eller aktiverat konfiguration av hybrid Azure Active Directory innan du aktiverar.",
- "reportOnly": "Kontrollera att du har ställt in efterlevnadsprinciper eller aktiverat konfiguration av hybrid Azure Active Directory innan du aktiverar. "
- }
- },
- "RequireCompliantOrHybridADAllUsers": {
- "Description": {
- "on": "Den här principen påverkar alla användare förutom den aktuella inloggade administratören. Använd endast rapportläge i början tills du har bekräftat att det här inte påverkar dina användare."
- },
- "Title": {
- "on": "Lås inte ute dig själv! Kontrollera att enheten är kompatibel eller hybrid Azure AD-ansluten, eller du har ställt in multifaktorautentisering. ",
- "reportOnly": "Principer i enbart rapportläge som kräver kompatibla enheter kan uppmana användare på Mac, iOS och Android att välja ett enhetscertifikat under principutvärderingen, även om enhetskompatibilitet inte tillämpas. Dessa uppmaningar kan upprepas fram till dess att enheten blir kompatibel."
- }
- },
- "RequireMfa": {
- "description": "Om du använder konton för nödåtkomst eller Azure AD Connect för att synkronisera dina lokala objekt, kan du behöva undanta dessa konton från den här principen när du har skapat den."
- },
- "RequireMfaAdmins": {
- "description": "Observera att det aktuella administratörskontot undantas automatiskt, men att alla andra kommer att skyddas när principen skapas. Överväg att till en början endast använda rapportläge.",
- "title": "Lås inte ut dig! Den här principen påverkar Azure Portal."
- },
- "RequireMfaAllUsers": {
- "description": "Använd till att börja med endast rapportläge tills du har planerat och förmedlat den här ändringen till alla dina användare.",
- "title": "Om du aktiverar den här principen tillämpas multifaktorautentisering för alla användare."
- },
- "RequireSecurityInfo": {
- "description": "Se till att granska din konfiguration så att du skyddar kontona utifrån företagets behov.",
- "title": "Följande användare och roller undantas från den här principen: Gäster och externa användare, Globala administratörer, Aktuell administratör"
- }
- },
- "basics": "Grundläggande information",
- "clientApps": "Klientappar",
- "cloudApps": "Molnappar",
- "cloudAppsOrActions": "Molnappar eller åtgärder ",
- "conditions": "Villkor ",
- "createNewPolicy": "Skapa ny princip från mallar (förhandsversion)",
- "createPolicy": "Skapa princip",
- "currentUser": "Aktuell användare",
- "customizeBuild": "Anpassa ditt bygge",
- "customizeTemplate": "Mallistorna anpassas baserat på den typ av princip du vill skapa",
- "excludedDevicePlatform": "Undantagna enhetsplattformar",
- "excludedDirectoryRoles": "Undantagna katalogroller",
- "excludedLocation": "Undantagna katalogroller",
- "excludedUsers": "Undantagna användare",
- "grantControl": "Bevilja kontroll ",
- "includeFilteredDevice": "Ta med filtrerade enheter i principen",
- "includedDevicePlatform": "Enhetsplattformar som ingår",
- "includedDirectoryRoles": "Katalogroller som ingår",
- "includedLocation": "Plats som ingår",
- "includedUsers": "Användare som ingår",
- "legacyAuthenticationClients": "Äldre autentiseringsklienter",
- "namePolicy": "Ge policyn ett namn",
- "next": "Nästa",
- "policyName": "Principnamn",
- "policyState": "Principtillstånd",
- "policySummary": "Principsammanfattning",
- "policyTemplate": "Principmall",
- "previous": "Föregående",
- "reviewAndCreate": "Granska + skapa",
- "riskLevels": "Risknivåer",
- "selectATemplate": "Välj en mall",
- "selectTemplate": "Välj mall",
- "selectTemplateCategory": "Välj en mallkategori",
- "selectTemplateRecommendation": "Vi rekommenderar följande mallar baserat på ditt svar",
- "sessionControl": "Sessionskontroll ",
- "signInFrequency": "Inloggningsfrekvens",
- "signInRisk": "Inloggningsrisk",
- "template": "Mall ",
- "templateCategory": "Mallkategori",
- "userRisk": "Användarrisk",
- "usersAndGroups": "Användare och grupper ",
- "viewPolicySummary": "Visa principsammanfattning "
- },
- "SSM": {
- "MemberSelector": {
- "description": "Användare och grupper"
- },
- "Notification": {
- "Migration": {
- "error": "Det gick inte att migrera inställningar för kontinuerlig tillgänglighetskontroll till principer för villkorsstyrd åtkomst",
- "inProgress": "Migrera inställningar för kontinuerlig tillgänglighetskontroll",
- "success": "Utvärderingsinställningarna för kontinuerlig tillgänglighetskontroll har migrerats till principer för villkorsstyrd åtkomst",
- "successDescription": "Gå vidare till principer för villkorsstyrd åtkomst för att visa de migrerade inställningarna i den nyligen skapade principen med namnet \"CA-princip som skapats från CAE-inställningar\"."
- },
- "error": "Det gick inte att uppdatera inställningar för Kontinuerlig tillgänglighetskontroll",
- "inProgress": "Uppdaterar inställningar för Kontinuerlig tillgänglighetskontroll",
- "success": "Inställningar för Kontinuerlig tillgänglighetskontroll har uppdaterats"
- },
- "PreviewOptions": {
- "disable": "Inaktivera förhandsversion",
- "enable": "Aktivera förhandsversion"
- },
- "StrictLocationEnforcement": {
- "infoContent1": "Olika IP-adresser kan visas av Azure AD och resursprovidern från samma klientenhet beroende på nätverkspartition eller IPv4/IPv6-felmatchning. Med strikt platstillämpning tillämpas principen Villkorsstyrd åtkomst utifrån båda IP-adresserna som visas av Azure AD och resursprovidern.",
- "infoContent2": "För att säkerställa maximal säkerhet rekommenderas du att lägga till alla IP-adresser som kan visas av både Azure AD och resursprovidern i din princip för namngiven plats och aktivera läget för strikt tillämpning av plats.",
- "label": "Strikt platsframtvingande",
- "title": "Ytterligare tvingande lägen"
- },
- "bladeTitle": "Kontinuerlig tillgänglighetskontroll",
- "description": "När en användares åtkomst tas bort eller en klients IP-adress ändras, blockerar Kontinuerlig tillgänglighetskontroll åtkomst till resurser och program i nära realtid. ",
- "migrateLabel": "Migrera",
- "migrationError": "Migreringen misslyckades på grund av följande fel: {0}",
- "migrationInfo": "CAE-inställningen har flyttats under villkorsstyrd åtkomst-UX. Migrera med knappen Migrera ovan och konfigurera den med principen för villkorsstyrd åtkomst framöver. Klicka här för mer information.",
- "noLicenseMessage": "Hantera inställningar för smart sessionshantering med Azure AD Premium",
- "optionsPickerTitle": "Aktivera/inaktivera Kontinuerlig tillgänglighetskontroll",
- "upsellInfo": "Du kan inte ändra inställningarna på den här sidan längre och eventuella inställningar här bör ignoreras. Din tidigare inställning kommer att hanteras. Du kan konfigurera dina CAE-inställningar under Villkorsstyrd åtkomst framöver. Klicka här för mer information."
- },
- "SessionLifetime": {
- "PersistentBrowser": {
- "Error": {
- "notAllApps": "En princip för beständig webbläsarsession fungerar bara korrekt när Alla molnappar har valts. Uppdatera ditt val av molnappar."
- },
- "Option": {
- "always": "Alltid beständig",
- "help": "En beständig webbläsarsession tillåter användare att förbli inloggade efter det att de har stängt sitt webbläsarfönster och öppnat det igen.
\n\n- Den här inställningen fungerar korrekt när du har valt Alla molnappar
\n- Det här påverkar inte tokenlivstider eller inställningen av inloggningsfrekvens.
\n- Det här åsidosätter principen Visa alternativ att fortsätta vara inloggad i Företagsanpassning.
\n- Inställningen Aldrig beständig åsidosätter alla beständiga anspråk för enkel inloggning som skickas från federerade autentiseringstjänster.
\n- Inställningen Aldrig beständig förhindrar enkel inloggning på mobila enheter för alla program och mellan program och användarens mobila webbläsare.
\n",
- "label": "Beständig webbläsarsession",
- "never": "Aldrig beständig"
- },
- "Warning": {
- "allApps": "En beständig webbläsarsession fungerar bara korrekt när Alla molnappar har valts. Ändra valet för dina molnappar. Klicka här för att läsa mer."
- }
- },
- "SignInFrequency": {
- "Aria": {
- "units": "Timmar eller dagar",
- "value": "Frekvens"
- },
- "Option": {
- "Day": {
- "plural": "{0} dagar",
- "singular": "1 dag"
- },
- "Hour": {
- "plural": "{0} timmar",
- "singular": "1 timme"
- },
- "daysOption": "Dagar",
- "everytime": "Varje gång",
- "help": "Tidsperiod innan en användare uppmanas att logga in igen när de försöker komma åt en resurs. Standardinställningen är ett rullande fönster på 90 dagar, d.v.s. användare ombeds återautentisera sig vid det första försöket att komma åt en resurs efter att ha varit inaktiva på sin dator i 90 dagar eller längre.",
- "hoursOption": "Timmar",
- "label": "Inloggningsfrekvens",
- "placeholder": "Välj enheter "
- }
- },
- "mainOption": "Ändra sessionens livstid",
- "mainOptionHelp": "Konfigurera hur ofta användare tillfrågas och om webbläsarsessioner är beständiga. Program som inte stöder moderna autentiseringsprotokoll kanske inte tar hänsyn till dessa principer. Kontakta i sådana fall programutvecklaren."
- },
- "SigninRisk": {
- "LearnMore": {
- "message": "Kontrollera användaråtkomst som svar på specifika risknivåer för inloggning."
- }
- },
- "SingleSelectorActive": {
- "failed": "Det gick inte att läsa in den här informationen.",
- "reattempt": "Läser in data. Försök igen med {0} av {1}."
- },
- "TimeCondition": {
- "Errors": {
- "both": "Ogiltigt tidsintervall för \"inkludera\" eller \"exkludera\".",
- "daysOfWeek": "{0} Se till att ange minst en veckodag.",
- "endBeforeStart": "{0} Se till att startdatum/-tid är tidigare är slutdatum/-tid.",
- "exclude": "Ogiltigt tidsintervall för \"exkludera\".",
- "generic": "{0} Se till att både veckodagar och tidszon är inställt. Om du inte markerar hela dagen, måste du även ställa in starttid och sluttid.",
- "include": "Ogiltigt tidsintervall för \"inkludera\".",
- "timeMissing": "{0} Se till att ange både start- och sluttid.",
- "timeZone": "{0} Se till att ange en tidszon.",
- "timesAndZone": "{0} Se till att ställa in starttid, sluttid och tidszon."
- }
- },
- "UserActions": {
- "Included": {
- "none": "Inga molnappar eller åtgärder har valts",
- "plural": "{0} användaråtgärder ingår",
- "singular": "1 användaråtgärd ingår"
- },
- "accessRequirement1": "Nivå 1",
- "accessRequirement2": "Nivå 2",
- "accessRequirement3": "Nivå 3",
- "accessRequirementsLabel": "Åtkomst till säkra appdata",
- "appsActionsAuthTitle": "Molnappar, åtgärder eller autentiseringssammanhang",
- "appsOrActionsSelectorInfoBallonText": "Program som används eller användaråtgärder",
- "appsOrActionsTitle": "Molnappar eller åtgärder",
- "label": "Användaråtgärder",
- "mainOptionsLabel": "Välj vad den här principen gäller för",
- "registerOrJoinDevices": "Registrera eller anslut enheter",
- "registerSecurityInfo": "Registrera säkerhetsinformation",
- "selectionInfo": "Välj den åtgärden som principen ska gälla för"
- },
- "UserSelectionBlade": {
- "DirectoryRoles": {
- "ariaLabel": "Välj katalogroller"
- },
- "Excluded": {
- "gridAria": "Lista över exkluderade användare"
- },
- "Included": {
- "gridAria": "Lista över inkluderade användare"
- },
- "Validation": {
- "customRoleIncluded": "\"Katalogroller\" innehåller minst en anpassad roll",
- "customRoleSelected": "Minst en anpassad roll har valts",
- "failed": "{0} måste konfigureras",
- "roles": "Välj minst en roll",
- "usersGroups": "Välj minst en användare eller grupp"
- },
- "learnMore": "Kontrollera åtkomst baserat på vem principen gäller för, till exempel användare och grupper, arbetsbelastningsidentiteter, katalogroller eller externa gäster."
- },
- "ValidationResult": {
- "blockEveryonePolicy": "Principkonfigurationen stöds inte. Granska tilldelningarna och kontrollerna.",
- "invalidApplicationCondition": "Ogiltiga molnprogram har valts",
- "invalidClientTypesCondition": "Ogiltiga klientappar har valts",
- "invalidConditions": "Inga tilldelningar har valts",
- "invalidControls": "Ogiltiga kontroller har valts",
- "invalidDevicePlatformsCondition": "Ogiltiga enhetsplattformar har valts",
- "invalidDevicesCondition": "Ogiltig enhetskonfiguration. Sannolikt en ogiltig {0}-konfiguration.",
- "invalidGrantControlPolicy": "Ogiltig beviljandekontroll",
- "invalidLocationsCondition": "Ogiltiga platser har valts",
- "invalidPolicy": "Inga tilldelningar har valts",
- "invalidSessionControlPolicy": "Ogiltig sessionskontroll",
- "invalidSignInRisksCondition": "Ogiltiga inloggningsrisker har valts",
- "invalidUserRisksCondition": "Ogiltiga användarrisker har valts",
- "invalidUsersCondition": "Ogiltiga användare har valts",
- "mamPolicyShouldOnlyTargetAndroidOrIosPlatforms": "MAM-policyn kan bara tillämpas på Android- eller iOS-klientplattformar.",
- "notSupportedCombination": "Principkonfigurationen stöds inte. Läs mer om principer som stöds.",
- "pending": "Validerar policy",
- "requireComplianceEveryonePolicy": "Principkonfigurationen kommer att kräva enhetskompatibilitet för alla användare. Granska de tilldelningar som valts.",
- "success": "Giltig policy"
- },
- "VpnCert": {
- "Grid": {
- "aria": "Lista över VPN-certifikat"
- }
- },
- "WarningsInfo": {
- "Controls": {
- "compliantDeviceEnabled": "Lås inte ut dig! Kontrollera att enheten följer standard.",
- "domainJoinedDeviceEnabled": "Lås inte ut dig! Kontrollera att enheten är Hybrid Azure AD-ansluten.",
- "exchangeDisabled": "Exchange ActiveSync stöder bara kontrollerna Enhet som följer standard och Godkänd klientapp. Klicka om du vill veta mer.",
- "exchangeDisabled2": "Exchange ActiveSync stöder bara kontrollerna Enhet som följer standard och Godkänd klientapp och Klientapp som följer standard. Klicka om du vill veta mer.",
- "notAvailableForSP": "Vissa kontroller är inte tillgängliga på grund av valet {0} i principtilldelningen",
- "requireAuthOrMfa": "{0} får inte användas med {1}",
- "requireMfa": "Testa den nya allmänt tillgänglig förhandsversionen{0}",
- "requirePasswordChangeEnabled": "\"Kräv lösenordsändring\" kan bara användas när principen har tilldelats \"Alla molnappar\""
- },
- "Policies": {
- "Linux": {
- "devicePlatformsReportOnlyPolicy": "Policyer i endast-rapportläge som kräver enheter som följer standard kan uppmana användaren på macOS, iOS, Android och Linux att välja ett enhetscertifikat.",
- "excludeDevicePlatforms": "Exkludera enhetsplattformarna macOS, iOS, Android och Linux från den här policyn.",
- "proceedAnywayDevicePlatforms": "Fortsätt med den valda konfigurationen. Användaren på macOS, iOS Android och Linux kan få frågor när kontroll görs om enheten följer standard."
- },
- "blockCurrentUserPolicy": "Lås inte ut dig! Vi rekommenderar att du först använder en princip för en liten uppsättning användare så att du kan verifiera att den fungerar som förväntat. Vi rekommenderar även att du exkluderar minst en administratör från den här principen. Detta säkerställer att du fortfarande har åtkomst och kan uppdatera en princip om en ändring krävs. Granska berörda användare och appar.",
- "devicePlatformsReportOnlyPolicy": "Policyer i endast-rapportläge som kräver enheter som följer standard kan uppmana macOS-, iOS- och Android-användare att välja ett enhetscertifikat.",
- "excludeCurrentUserSelection": "Exkludera aktuell användare, {0}, från den här principen.",
- "excludeDevicePlatforms": "Exkludera enhetsplattformarna macOS, iOS och Android från den här policyn.",
- "proceedAnywayDevicePlatforms": "Fortsätt med den valda konfigurationen. Användare på macOS, iOS och Android kan få frågor när kontroll görs om enheten följer standard.",
- "proceedAnywaySelection": "Jag förstår att mitt konto kommer att påverkas av den här principen. Fortsätt ändå."
- },
- "ServicePrincipals": {
- "blockExchange": "Om du väljer Office 365 Exchange Online påverkar detta även appar som OneDrive och Teams.",
- "blockPortal": "Lås inte ut dig! Den här principen påverkar Azure-portalen. Se till att du eller någon annan kan få tillgång till portalen innan du fortsätter.",
- "blockPortalWithSession": "Lås inte ute dig! Den här principen påverkar Azure Portal. Se till att du eller någon annan kan har garanterad tillgång till portalen innan du fortsätter.
Ignorera den här varningen om du konfigurerar en beständig webbläsarsessionsprincip som bara fungerar korrekt om Alla molnappar har valts.",
- "blockSharePoint": "Om du väljer SharePoint Online så påverkas även appar som Microsoft Teams, Planner, Delve, MyAnalyticsm och Newsfeed.",
- "blockSkype": "Om du väljer Skype för företag – Online, så påverkas även Microsoft Teams.",
- "includeOrExclude": "Du kan ställa in appfiltret för {0} eller {1}, men inte båda.",
- "selectAppsNAForSP": "Det går inte att välja enskilda molnappar på grund av valet{0}i principtilldelningen",
- "teamsBlocked": "Microsoft Teams påverkas också när appar som SharePoint Online och Exchange Online ingår i principen."
- },
- "Users": {
- "blockAllUsers": "Lås inte ut dig! Den här principen påverkar alla användare. Vi rekommenderar att du först tillämpar en princip på ett litet antal användare, så att du kan verifiera att den fungerar som förväntat."
- }
- },
- "WhatIf": {
- "Device": {
- "AttributesGrid": {
- "aria": "Lista med attribut på den enhet som använts under inloggningen.",
- "infoBalloon": "Lista med attribut på den enhet som använts under inloggningen."
- }
- }
- },
- "advancedTabText": "Avancerad",
- "allCloudAppsErrorBox": "Du måste välja \"Alla molnappar\" när beviljandet \"Tillåt lösenordsändring\" har valts",
- "allDayCheckboxLabel": "Dygnet runt",
- "allDevicePlatforms": "Valfri enhet",
- "allGuestUserInfoContent": "Omfattar Azure AD B2B-gäster men inte SharePoint B2B-gäster",
- "allGuestUserLabel": "Alla gästanvändare och externa användare",
- "allRiskLevelsOption": "Alla risknivåer",
- "allTrustedLocationLabel": "Alla betrodda platser",
- "allUserGroupSetSelectorLabel": "Alla användare och grupper har valts",
- "allUsersString": "Alla användare",
- "and": "{0} OCH {1}",
- "andWithGrouping": "({0}) och {1}",
- "androidDisplayName": "Android",
- "anyCloudAppSelection": "Valfri molnapp",
- "appContextOptionInfoContent": "Begärd autentiseringstagg",
- "appContextOptionLabel": "Begärd autentiseringstagg (förhandsversion)",
- "appContextUriPlaceholder": "Exempel: uri:contoso.com:level3",
- "appEnforceInfoBubble": "App-framtvingade begränsningar kan kräva ytterligare administratörskonfigurationer inom molnapparna. Begränsningarna börjar bara gälla för nya sessioner.",
- "appNotSetSeletorLabel": "0 molnappar valda",
- "applyConditionClientAppInfoBalloonContent": "Konfigurera klientapparna för att tillämpa principen på specifika klientappar",
- "applyConditionDevicePlatformInfoBalloonContent": "Konfigurera enhetsplattformarna för att tillämpa principen för specifika plattformar",
- "applyConditionDeviceStateInfoBalloonContent": "Konfigurera enhetstillståndet att tillämpa principen för specifika enhetstillstånd",
- "applyConditionLocationInfoBalloonContent": "Konfigurera platserna för att tillämpa principen för betrodda/icke-betrodda platser",
- "applyConditionSigninRiskInfoBalloonContent": "Konfigurera inloggningsrisken för att tillämpa principen för specifika risknivåer",
- "applyConditionUserRiskInfoBalloonContent": "Konfigurera den användarrisk som ska tillämpa principen på valda risknivåer",
- "applyConditonLabel": "Konfigurera",
- "ariaLabelPolicyDisabled": "Hanteringsprincipregeln (MPR) är inaktiverad",
- "ariaLabelPolicyEnabled": "Principen är aktiverad",
- "ariaLabelPolicyReportOnly": "Principen är i rapportexklusivt läge",
- "blockAccess": "Blockera åtkomst",
- "builtInDirectoryRoleLabel": "Inbyggda katalogroller",
- "casCustomControlInfo": "Anpassade principer måste konfigureras i Cloud App Security-portalen. Den här kontrollen fungerar direkt för aktuella appar och kan installeras automatiskt för alla appar. Klicka här om du vill läsa mer om båda scenarierna.",
- "casInfoBubble": "Den här kontrollen fungerar för olika molnappar.",
- "casPreconfiguredControlInfo": "Den här kontrollen fungerar direkt för aktuella appar och kan installeras automatiskt för alla appar. Klicka här om du vill läsa mer om båda scenarierna.",
- "cert64DownloadCol": "Ladda ned base64-certifikat",
- "cert64Name": "VpnBase64Cert",
- "certDownloadCol": "Hämta certifikat",
- "certDurationCol": "Förfallodatum",
- "certDurationStartCol": "Giltigt från",
- "certName": "VpnCert",
- "chooseApplicationsBladeSubtitle": "",
- "chooseApplicationsBladeTitle": "Välj program",
- "chooseApplicationsCartSubitle": "",
- "chooseApplicationsCartTitle": "Valda program",
- "chooseApplicationsEmpty": "Inga program",
- "chooseApplicationsNone": "Ingen",
- "chooseApplicationsNoneFound": "Vi hittade inte \"{0}\". Försök med ett annat namn eller ID.",
- "chooseApplicationsPlural": "{0} och {1} till",
- "chooseApplicationsReAuthEverytimeInfo": "Letar du efter din app? Vissa program kan inte användas med sessionskontrollen Kräv omautentisering – varje gång",
- "chooseApplicationsRemove": "Ta bort",
- "chooseApplicationsReturnedPlural": "{0} program hittades",
- "chooseApplicationsReturnedSingular": "1 program hittades",
- "chooseApplicationsSearchBalloon": "Sök efter ett program genom att ange dess namn eller ID.",
- "chooseApplicationsSearchHint": "Sök program...",
- "chooseApplicationsSearchLabel": "Program",
- "chooseApplicationsSearching": "Söker...",
- "chooseApplicationsSelect": "Välj",
- "chooseApplicationsSelected": "Vald",
- "chooseApplicationsSingular": "{0} och 1 till",
- "chooseApplicationsTooMany": "Fler resultat än vad som kan visas. Filtrera med sökrutan.",
- "chooseLocationCorpnetItem": "Företagsnätverk",
- "chooseLocationSelectedLocationsLabel": "Valda platser",
- "chooseLocationTrustedIpsItem": "Tillförlitliga MFA IP-adresser",
- "chooseLocationsBladeSubtitle": "",
- "chooseLocationsBladeTitle": "Välj platser",
- "chooseLocationsCartSubitle": "",
- "chooseLocationsCartTitle": "Valda platser",
- "chooseLocationsEmpty": "Inga platser",
- "chooseLocationsExcludedSelectorTitle": "Markera",
- "chooseLocationsIncludedSelectorTitle": "Markera",
- "chooseLocationsNone": "Ingen",
- "chooseLocationsNoneFound": "Vi hittade inte \"{0}\". Försök med ett annat namn eller ID.",
- "chooseLocationsPlural": "{0} och {1} till",
- "chooseLocationsRemove": "Ta bort",
- "chooseLocationsReturnedPlural": "{0} platser hittades",
- "chooseLocationsReturnedSingular": "1 plats hittades",
- "chooseLocationsSearchBalloon": "Sök efter en plats genom att ange dess namn.",
- "chooseLocationsSearchHint": "Sök efter platser...",
- "chooseLocationsSearchLabel": "Sökvägar",
- "chooseLocationsSearching": "Söker...",
- "chooseLocationsSelect": "Markera",
- "chooseLocationsSelected": "markerat",
- "chooseLocationsSelectionBladeExcludedSelectorTitle": "Markera",
- "chooseLocationsSelectionBladeIncludedSelectorTitle": "Markera",
- "chooseLocationsSingular": "{0} och 1 till",
- "chooseLocationsTooMany": "Fler resultat än vad som kan visas. Filtrera med sökrutan.",
- "claimProviderAddCommandText": "Ny anpassad kontroll",
- "claimProviderAddNewBladeTitle": "Ny anpassad kontroll",
- "claimProviderDeleteCommand": "Ta bort",
- "claimProviderDeleteDescription": "Vill du ta bort {0}? Du kan inte ångra den här åtgärden.",
- "claimProviderDeleteTitle": "Är du säker?",
- "claimProviderEditInfoText": "Ange JSON för anpassade kontroller som du fått av dina anspråksproviders.",
- "claimProviderNotificationCreateDescription": "Skapar en anpassad kontroll som heter {0}",
- "claimProviderNotificationCreateFailedDescription": "Det gick inte att skapa den anpassade kontrollen {0}. Försök igen senare.",
- "claimProviderNotificationCreateFailedTitle": "Det gick inte att skapa den anpassade kontrollen",
- "claimProviderNotificationCreateSuccessDescription": "Den anpassade kontrollen {0} skapades",
- "claimProviderNotificationCreateSuccessTitle": "{0} har skapats",
- "claimProviderNotificationCreateTitle": "{0} skapas",
- "claimProviderNotificationDeleteDescription": "Tar bort den anpassade kontrollen som heter {0}",
- "claimProviderNotificationDeleteFailedDescription": "Det gick inte att ta bort den anpassade kontrollen {0}. Försök igen senare.",
- "claimProviderNotificationDeleteFailedTitle": "Det gick inte att ta bort den anpassade kontrollen",
- "claimProviderNotificationDeleteSuccessDescription": "Den anpassade kontrollen som heter {0} togs bort",
- "claimProviderNotificationDeleteSuccessTitle": "{0} har tagits bort",
- "claimProviderNotificationDeleteTitle": "Tar bort {0}",
- "claimProviderNotificationUpdateDescription": "Uppdaterar den anpassade kontrollen som heter {0}",
- "claimProviderNotificationUpdateFailedDescription": "Det gick inte att uppdatera den anpassade kontrollen {0}. Försök igen senare.",
- "claimProviderNotificationUpdateFailedTitle": "Det gick inte att uppdatera den anpassade kontrollen",
- "claimProviderNotificationUpdateSuccessDescription": "Den anpassade kontrollen som heter {0} uppdaterades",
- "claimProviderNotificationUpdateSuccessTitle": "{0} har uppdaterats",
- "claimProviderNotificationUpdateTitle": "Uppdaterar {0}",
- "claimProviderValidationAppIdInvalid": "AppId-värdet är inte giltigt. Granska det och försök igen.",
- "claimProviderValidationClientIdMissing": "Data saknar ett ClientId-värde. Granska och försök igen.",
- "claimProviderValidationControlClaimsRequestedMissing": "Kontrollen saknar ett ClaimsRequested-värde. Granska och försök igen.",
- "claimProviderValidationControlClaimsRequestedTypeMissing": "Objektet ClaimsRequested saknar ett Typ-värde. Granska och försök igen.",
- "claimProviderValidationControlIdAlreadyExists": "Kontroll Id-värdet finns redan. Granska och försök igen.",
- "claimProviderValidationControlIdMissing": "Kontroll saknar ett Id-värde. Granska och försök igen.",
- "claimProviderValidationControlIdReferencedInExistingPolicy": "Kontroll Id-värdet kan inte tas bort eftersom det refereras till i en befintlig princip. Ta bort det från principen först.",
- "claimProviderValidationControlIdTooManyControls": "Egenskapen Control har för många kontroller. Granska och försök igen.",
- "claimProviderValidationControlIdValueReserved": "Kontroll Id-värdet är ett reserverat nyckelord. Använd ett annat id.",
- "claimProviderValidationControlNameAlreadyExists": "Kontroll Namn-värdet finns redan. Granska och försök igen.",
- "claimProviderValidationControlNameMissing": "Kontroll saknar ett Namn-värde. Granska och försök igen.",
- "claimProviderValidationControlsMissing": "Data saknar ett Kontroller-värde. Granska och försök igen.",
- "claimProviderValidationDiscoveryUrlMissing": "Data saknnar ett DiscoveryUrl-värde. Granska och försök igen.",
- "claimProviderValidationInvalid": "De data som angetts är inte giltiga. Granska och försök igen.",
- "claimProviderValidationInvalidJsonDefinition": "Det går inte att spara den anpassade kontrollen. Granska JSON-texten och försök igen.",
- "claimProviderValidationNameAlreadyExists": "Namn-värdet finns redan. Granska och försök igen.",
- "claimProviderValidationNameMissing": "Data saknar ett Namn-värde. Granska och försök igen.",
- "claimProviderValidationUnknown": "Ett okänt fel uppstod vid validering av angivna data. Granska och försök igen.",
- "claimProvidersNone": "Inga anpassade kontroller",
- "claimProvidersSearchPlaceholder": "Genomsök kontroller.",
- "classicPoilcyFilterTitle": "Visa",
- "classicPolicyAllPlatforms": "Alla plattformar",
- "classicPolicyClientAppBrowserAndNative": "Webbläsare, mobilappar och stationära klienter",
- "classicPolicyCloudAppTitle": "Molnprogram",
- "classicPolicyControlAllow": "Tillåt",
- "classicPolicyControlBlock": "Blockera",
- "classicPolicyControlBlockWhenNotAtWork": "Blockera åtkomst när du inte arbetar",
- "classicPolicyControlRequireCompliantDevice": "Kräv kompatibel enhet",
- "classicPolicyControlRequireDomainJoinedDevice": "Kräv domänansluten enhet",
- "classicPolicyControlRequireMfa": "Kräv multifaktorautentisering",
- "classicPolicyControlRequireMfaWhenNotAtWork": "Kräv multifaktorautentisering när du inte arbetar",
- "classicPolicyDeleteCommand": "Ta bort",
- "classicPolicyDeleteFailTitle": "Det gick inte att ta bort den klassiska principen",
- "classicPolicyDeleteInProgressTitle": "Den klassiska principen tas bort",
- "classicPolicyDeleteSuccessTitle": "Den klassiska principen har tagits bort",
- "classicPolicyDetailBladeTitle": "Information",
- "classicPolicyDisableCommand": "Inaktivera",
- "classicPolicyDisableConfirmation": "Är du säker på att du vill inaktivera {0}? Du kan inte ångra den här åtgärden.",
- "classicPolicyDisableFailDescription": "Det gick inte att inaktivera {0}",
- "classicPolicyDisableFailTitle": "Det gick inte att inaktivera den klassiska principen",
- "classicPolicyDisableInProgressDescription": "Inaktiverar {0}",
- "classicPolicyDisableInProgressTitle": "Den klassiska principen inaktiveras",
- "classicPolicyDisableSuccessDescription": "{0} har inaktiverats",
- "classicPolicyDisableSuccessTitle": "Den klassiska principen har inaktiverats",
- "classicPolicyEasSupportedPlatforms": "Plattformar som stöds av Exchange ActiveSync",
- "classicPolicyEasUnsupportedPlatforms": "Plattformar som inte stöds av Exchange ActiveSync",
- "classicPolicyExcludedPlatformsTitle": "Exkluderade enhetsplattformar",
- "classicPolicyFilterAll": "Alla principer",
- "classicPolicyFilterDisabled": "Inaktiverade principer",
- "classicPolicyFilterEnabled": "Aktiverade principer",
- "classicPolicyIncludeExcludeMembersDescription": "Du kan utföra fasindelad principmigrering genom att exkludera grupper.",
- "classicPolicyIncludeExcludeMembersTitle": "Inkludera/exkludera grupper",
- "classicPolicyIncludedPlatformsTitle": "Inkluderade enhetsplattformar",
- "classicPolicyManualMigrationMessage": "Den här principen måste migreras manuellt.",
- "classicPolicyMigrateCommand": "Migrera",
- "classicPolicyMigrateConfirmation": "Är du säker på att du vill migrera {0}? Den här principen kan bara migreras en gång.",
- "classicPolicyMigrateFailDescription": "Det gick inte att migrera {0}",
- "classicPolicyMigrateFailTitle": "Det gick inte att migrera den klassiska principen",
- "classicPolicyMigrateInProgressDescription": "Migrerar {0}",
- "classicPolicyMigrateInProgressTitle": "Den klassiska principen migreras",
- "classicPolicyMigrateRecommendText": "Rekommendation: Migrera till de nya Azure-portalprinciperna.",
- "classicPolicyMigrateSuccessTitle": "Den klassiska principen har migrerats",
- "classicPolicyMigratedSuccessDescription": "Den klassiska principen kan nu hanteras under principer.",
- "classicPolicyMigratedSuccessDescriptionMultiple": "Den här klassiska principen migreras som {0} nya principer. Nya principer kan hanteras under principer.",
- "classicPolicyNoEditPermissionMsg": "Du har inte behörighet att redigera den här principen. Endast globala administratörer eller säkerhetsadministratörer kan redigera principen. Klicka här för mer information.",
- "classicPolicySaveFailDescription": "Det gick inte att spara {0}",
- "classicPolicySaveFailTitle": "Det gick inte att spara den klassiska principen",
- "classicPolicySaveInProgressDescription": "Sparar {0}",
- "classicPolicySaveInProgressTitle": "Den klassiska principen sparas",
- "classicPolicySaveSuccessDescription": "{0} har sparats",
- "classicPolicySaveSuccessTitle": "Den klassiska principen har sparats",
- "clientAppBladeLegacyInfoBanner": "Bakåtkompatibel autentisering stöds inte för tillfället",
- "clientAppBladeLegacyUpsellBanner": "Blockera klientappar utan support (förhandsversion)",
- "clientAppBladeTitle": "Klientappar",
- "clientAppDescription": "Välj de klientappar som den här principen ska gälla för",
- "clientAppExchangeActiveSync": "Exchange ActiveSync",
- "clientAppExchangeDisabledInfo": "Exchange ActiveSync är tillgängligt när Exchange Online är den enda valda molnappen. Klicka för att läsa mer",
- "clientAppExchangeWarning": "Exchange ActiveSync stöder inte alla andra villkor",
- "clientAppLearnMore": "Kontrollera användaråtkomsten med fokus på särskilda klientprogram som inte använder modern autentisering.",
- "clientAppLegacyHeader": "Äldre autentiseringsklienter",
- "clientAppMobileDesktop": "Mobila appar och skrivbordsklienter",
- "clientAppModernHeader": "Moderna autentiseringsklienter",
- "clientAppOnlySupportedPlatforms": "Tillämpa bara principen på plattformar som stöds",
- "clientAppSelectSpecificClientApps": "Välj klientappar",
- "clientAppV2BladeTitle": "Klientappar (förhandsversion)",
- "clientAppWebBrowser": "Webbläsare",
- "clientAppsSelectedLabel": "{0} inkluderade",
- "clientTypeBrowser": "Webbläsare",
- "clientTypeEas": "Exchange ActiveSync-klienter",
- "clientTypeEasInfo": "Exchange ActiveSync-klienter som enbart använder äldre autentisering.",
- "clientTypeModernAuth": "Moderna autentiseringsklienter",
- "clientTypeOtherClients": "Övriga klienter",
- "clientTypeOtherClientsInfo": "Detta omfattar äldre Office-klienter och andra e-postprotokoll (POP, IMAP, SMTP osv). [Learn more][1]\n[1]: https://aka.ms/caclientapps\n",
- "cloudAppCountDiffBannerText": "{0} molnappar som konfigurerats i den här principen har tagits bort från katalogen, men detta påverkar inte andra program i principen. Nästa gång som du uppdaterar programavsnittet i principen tas de borttagna apparna automatiskt bort från den.",
- "cloudAppsSelectionBladeAllMicrosoftApps": "Alla Microsoft-appar",
- "cloudAppsSelectionExcludeAllMicrosoftClients": "Tillåt Microsofts molnappar, skrivbordsappar och mobilappar (förhandsversion)",
- "cloudappsSelectionBladeAllCloudapps": "Alla molnappar",
- "cloudappsSelectionBladeExcludeDescription": "Välj vilka molnappar som ska undantas principen",
- "cloudappsSelectionBladeExcludedSelectorTitle": "Välj exkluderade molnappar",
- "cloudappsSelectionBladeIncludeDescription": "Välj de molnappar som den här principen ska gälla för",
- "cloudappsSelectionBladeIncludedSelectorTitle": "Välj",
- "cloudappsSelectionBladeSelectedCloudapps": "Välj appar",
- "cloudappsSelectorInfoBallonText": "Tjänster som användaren har åtkomst till för att göra sitt arbete. Exempelvis Salesforce",
- "cloudappsSelectorUserPlural": "{0} appar",
- "cloudappsSelectorUserSingular": "1 app",
- "conditionLabelMulti": "{0} villkor valda",
- "conditionLabelOne": "1 villkor valt",
- "conditionalAccessBladeTitle": "Villkorad åtkomst",
- "conditionsNotSelectedLabel": "Inte konfigurerad",
- "conditionsReqPwSet": "Vissa alternativ är inte tillgängliga pga att beviljandet \"Kräv lösenordsändring\" har valts",
- "configureCasText": "Konfigurera Cloud App Security",
- "configureCustomControlsText": "Konfigurera anpassad princip",
- "controlLabelMulti": "{0} kontroller valda",
- "controlLabelOne": "1 kontroll vald",
- "controlValidatorText": "Välj minst en kontroll",
- "controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
- "controlsDeviceComplianceInfoBubble": "Enheten måste vara Intune-kompatibel. Om enheten inte är kompatibel så ombeds användaren att göra enheten kompatibel",
- "controlsDomainJoinedInfoBubble": "Enheterna måste vara Hybrid Azure AD-anslutna.",
- "controlsMamInfoBubble": "Enheten måste använda de här godkända programmen.",
- "controlsMfaInfoBubble": "Användaren måste slutföra ytterligare säkerhetskrav, exempelvis ett telefonsamtal eller textmeddelande",
- "controlsOrAndInfoBubble": "ControlsOrAndInfoBubble",
- "controlsRequireCompliantAppInfoBubble": "Enheten måste använda principskyddade appar.",
- "controlsRequirePasswordResetInfoBubble": "Minska användarrisken genom att kräva lösenordsändring. Det här alternativet kräver också multifaktorautentisering. Det går inte att använda övriga kontroller.",
- "countriesRadiobuttonInfoBalloonContent": "Landet/regionen som en inloggning kommer från fastställs av användarens IP-adress.",
- "createNewVpnCert": "Nytt certifikat",
- "createdTimeLabel": "Skapandetid",
- "customRoleLabel": "Anpassade roller (stöds inte)",
- "dateRangeTypeLabel": "Datumintervall",
- "daysOfWeekPlaceholderText": "Filtrera veckodagarna",
- "daysOfWeekTypeLabel": "Veckodagar",
- "deletePolicyNoLicenseText": "Du kan ta bort den här principen nu. När den väl är borttagen kan du inte återskapa den förrän du har de licenser som krävs.",
- "descriptionContentForControlsAndOr": "För flera kontroller",
- "devicePlatform": "Enhetsplattform",
- "devicePlatformConditionHelpDescription": "Tillämpa principen för valda enhetsplattformar.\n[Learn more][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2044750",
- "devicePlatformInclude": "{0} inkluderade",
- "devicePlatformIncludeExclude": "{0} och {1} exkluderades",
- "devicePlatformNoSelectionError": "Om du ska välja enhetsplattformar måste du först välja ett underordnat objekt.",
- "devicePlatformsNone": "Ingen",
- "deviceSelectionBladeExcludeDescription": "Välj plattformar som ska undantas principen",
- "deviceSelectionBladeIncludeDescription": "Välj enhetsplattformarna att inkludera i den här principen",
- "deviceStateAll": "Alla enhetstillstånd",
- "deviceStateCompliant": "Enheten markerades som kompatibel",
- "deviceStateCompliantInfoContent": "Enheter som är Intune-kompatibla kommer att uteslutas från bedömningen av den här principen så att om principen blockerar åtkomst till exempel så blockeras alla enheter utom de som är Intune-kompatibla.",
- "deviceStateConditionConfigureInfoContent": "Konfigurera princip baserat på enhetstillstånd",
- "deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Hybrid Azure AD joined' or 'marked as compliant'.\n '{0}' has been deprecated. Use '{1}' instead.",
- "deviceStateConditionSelectorLabel": "Enhetstillstånd (förhandsversion)",
- "deviceStateDomainJoined": "Hybrid Azure AD-ansluten enhet",
- "deviceStateDomainJoinedInfoContent": "Enheter som är Hybrid Azure AD-anslutna utesluts från utvärderingen av den här policyn. Så om policyn t.ex. blockerar åtkomst så blockeras alla enheter utom de som är Hybrid Azure AD-anslutna.",
- "deviceStateDomainJoinedInfoLinkText": "Läs mer.",
- "deviceStateExcludeDescription": "Välj det enhetstillståndsvillkor som används för att utesluta enheter från principen.",
- "deviceStateIncludeAndExcludeOneLabel": "{0} och uteslut {1}",
- "deviceStateIncludeAndExcludeTwoLabel": "{0} och uteslut {1}, {2}",
- "directoryRoleInfoContent": "Tilldela inbyggda katalogroller en princip.",
- "directoryRolesLabel": "Katalogroller",
- "discardbutton": "Ta bort",
- "downloadDefaultFileName": "IP-intervall",
- "downloadExampleFileName": "Exempel",
- "downloadExampleHeader": "Detta är en exempelfil med demonstationer av de typer av data som kan godkännas. Rader som börjar med # ignoreras.",
- "endDatePickerLabel": "Slutar",
- "endTimePickerLabel": "Sluttid",
- "enterCountryText": "IP-adress och land utvärderas parvis. Välj land.",
- "enterIpText": "IP-adress och land utvärderas parvis. Ange IP-adressen.",
- "enterUserText": "Ingen användare har valts. Välj en användare.",
- "evaluationResult": "Utvärderingsresultat",
- "exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
- "exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync enbart med plattformar som stöds",
- "excludeAllTrustedLocationSelectorText": "alla betrodda platser",
- "featureRequiresP2": "Den här funktionen kräver en Azure Active Directory Premium 2-licens.",
- "friday": "fredag",
- "grantControls": "Bevilja kontroller",
- "gridNetworkTrusted": "Betrodda",
- "gridPolicyCreatedDateTime": "Skapandedatum",
- "gridPolicyEnabled": "Aktiverad",
- "gridPolicyModifiedDateTime": "Ändringsdatum",
- "gridPolicyName": "Principnamn",
- "gridPolicyState": "Tillstånd",
- "groupSelectionBladeExcludeDescription": "Välj de grupper som ska undantas från principen",
- "groupSelectionBladeExcludedSelectorTitle": "Välj exkluderade grupper",
- "groupSelectionBladeSelect": "Välj grupper",
- "groupSelectorInfoBallonText": "De användare och grupper i katalogen som principen tillämpas på. Exempel: pilotgrupp",
- "groupsSelectionBladeTitle": "Grupper",
- "helpCommonScenariosText": "Är du intresserad av några vanliga scenarion?",
- "helpCondition1": "När en användare befinner sig utanför företagets nätverk",
- "helpCondition2": "När användare i gruppen Chefer loggar in",
- "helpConditionsTitle": "Villkor",
- "helpControl1": "De måste logga in med multifaktorautentisering",
- "helpControl2": "De måste arbeta från en Intune-kompatibel eller domänansluten enhet",
- "helpControlsTitle": "Kontroller",
- "helpIntroText": "Med villkorsstyrd åtkomst kan du framtvinga åtkomstkrav under vissa förhållanden. Här följer några exempel",
- "helpIntroTitle": "Vad är villkorsstyrd åtkomst?",
- "helpLearnMoreText": "Vill du veta mer om villkorsstyrd åtkomst?",
- "helpStartStep1": "Skapa din första princip genom att klicka på \"+ Ny princip\"",
- "helpStartStep2": "Ange princip Villkor och kontroller",
- "helpStartStep3": "Glöm inte att aktivera principen och skapa när du är klar",
- "helpStartTitle": "Kom igång",
- "highRisk": "Hög",
- "includeAndExcludeAppsTextFormat": "Inkludera: {0}. Exkludera: {1}.",
- "includeAppsTextFormat": "Inkluderra: {0}.",
- "includeUnknownAreasCheckboxInfoBalloonContent": "Okända områden är IP-adresser som inte kan mappas till ett land/region.",
- "includeUnknownAreasCheckboxLabel": "Inkludera okända områden",
- "infoCommandLabel": "Info",
- "invalidCertDuration": "Ogiltig varaktighet för certifikat",
- "invalidIpAddress": "Värdet måste vara en giltig IP-adress",
- "invalidUriErrorMsg": "Ange en giltig URI. Till exempel, uri:contoso.com:acr",
- "iosDisplayName": "iOS",
- "linuxDisplayName": "Linux",
- "linuxDisplayNamePreview": "Linux (förhandsversion)",
- "loadAll": "Läs in alla",
- "loading": "Laddar...",
- "locationConfigureNamedLocationsText": "Konfigurera alla betrodda platser",
- "locationConfigureNamedLocationsUri": "{0}/usermanagement/mfasettings.aspx?tenantid={1}&culture={2}",
- "locationNameTooLongError": "Platsnamnet är för långt. Maximalt antal tecken är 256",
- "locationSelectionBladeExcludeDescription": "Välj de platser som ska undantas principen",
- "locationSelectionBladeIncludeDescription": "Välj platserna att inkludera i den här principen",
- "locationsAllLocationsLabel": "Vilken plats som helst",
- "locationsAllNamedLocationsLabel": "Alla betrodda IP-adresser",
- "locationsAllPrivateLinksLabel": "Alla privata länkar i min klientorganisation",
- "locationsIncludeExcludeLabel": "{0} och uteslut alla betrodda IP-adresser",
- "locationsSelectedPrivateLinksLabel": "Valda privata länkar",
- "lowRisk": "Låg",
- "macOsDisplayName": "macOS",
- "managePoliciesLicenseText": "Om du vill hantera principer för villkorsstyrd åtkomst måste organisationen ha Azure AD Premium P1 eller P2.",
- "markAsTrustedCheckboxInfoBalloonContent": "Inloggning från en betrodd plats sänker en användares inloggningsrisk. Markera bara den här platsen som betrodd om du känner till att de IP-intervall som angetts är etablerade och trovärdiga inom din organisation.",
- "markAsTrustedCheckboxLabel": "Markera som betrodd plats",
- "mediumRisk": "Medel",
- "memberSelectionCommandRemove": "Ta bort",
- "menuItemClaimProviderControls": "Anpassade kontroller (förhandsversion)",
- "menuItemClassicPolicies": "Klassiska principer",
- "menuItemInsightsAndReporting": "Insikter och rapportering",
- "menuItemManage": "Hantera",
- "menuItemNamedLocationsPreview": "Namngivna platser (förhandsversion)",
- "menuItemNamedNetworks": "Namngivna platser",
- "menuItemPolicies": "Principer",
- "menuItemTermsOfUse": "Användningsvillkor",
- "modifiedTimeLabel": "Ändrad tid",
- "monday": "måndag",
- "nameLabel": "Namn",
- "namedLocationCountryInfoBanner": "Endast IPv4-adresser mappas till länder/regioner. IPv6-adresser ingår i okända länder/regioner.",
- "namedLocationTypeCountry": "Länder/regioner",
- "namedLocationTypeLabel": "Definiera platsen med:",
- "namedLocationUpsellBanner": "Den här vyn är inaktuell. Gå till den nya och förbättrade vyn Namngivna platser.",
- "namedLocationsHelpDescription": "Namngivna platser används av Azure AD-säkerhetsrapporter för att minska falskt positiva resultat och Azure AD-principer för villkorsstyrd åtkomst.\n[Läs mer][1]\n[1]: https://aka.ms/namedlocationupdate",
- "namedNetworkAddIpRanges": "Lägg till ett nytt IP-intervall (t.ex. 40.77.182.32/27)",
- "namedNetworkCountryNeeded": "Du måste välja minst ett land",
- "namedNetworkDeleteCommand": "Ta bort",
- "namedNetworkDeleteDescription": "Vill du ta bort {0}? Du kan inte ångra den här åtgärden.",
- "namedNetworkDeleteTitle": "Är du säker?",
- "namedNetworkDownloadIpRange": "Hämta",
- "namedNetworkInvalidRange": "Värdet måste vara ett giltigt IP-intervall.",
- "namedNetworkIpRangeNeeded": "Du behöver minst ett giltig IP-intervall",
- "namedNetworkIpRangesDescriptionContent": "Konfigurera IP-intervallen för din organisation",
- "namedNetworkIpRangesTab": "IP-intervall",
- "namedNetworkListAdd": "Ny plats",
- "namedNetworkListConfigureTrustedIps": "Konfigurera betrodda MFA IP-adresser",
- "namedNetworkNameDescription": "Exempelvis: Redmondkontoret",
- "namedNetworkNameInvalid": "Det tillhandahållna namnet är ogiltigt.",
- "namedNetworkNameRequired": "Du måste tillhandahålla ett namn för den här platsen.",
- "namedNetworkNoIpRanges": "Inga IP-intervall",
- "namedNetworkNotificationCreateDescription": "Skapa en plats med namnet {0}",
- "namedNetworkNotificationCreateFailedDescription": "Det gick inte att skapa {0}. Försök igen senare.",
- "namedNetworkNotificationCreateFailedTitle": "Det gick inte att skapa platsen",
- "namedNetworkNotificationCreateSuccessDescription": "En plats med namnet {0} har skapats",
- "namedNetworkNotificationCreateSuccessTitle": "{0} har skapats",
- "namedNetworkNotificationCreateTitle": "{0} skapas",
- "namedNetworkNotificationDeleteDescription": "Platsen med namnet {0} tas bort",
- "namedNetworkNotificationDeleteFailedDescription": "Det gick inte att ta bort {0}. Försök igen senare.",
- "namedNetworkNotificationDeleteFailedTitle": "Det gick inte att ta bort platsen",
- "namedNetworkNotificationDeleteSuccessDescription": "Platsen med namnet {0} har tagits bort",
- "namedNetworkNotificationDeleteSuccessTitle": "{0} har tagits bort",
- "namedNetworkNotificationDeleteTitle": "Tar bort {0}",
- "namedNetworkNotificationUpdateDescription": "Platsen med namnet {0} uppdateras",
- "namedNetworkNotificationUpdateFailedDescription": "Det gick inte att ta bort platsen {0}. Försök igen senare.",
- "namedNetworkNotificationUpdateFailedTitle": "Det gick inte att uppdatera platsen",
- "namedNetworkNotificationUpdateSuccessDescription": "Platsen med namnet {0} har uppdaterats",
- "namedNetworkNotificationUpdateSuccessTitle": "{0} har uppdaterats",
- "namedNetworkNotificationUpdateTitle": "Uppdaterar {0}",
- "namedNetworkSearchPlaceholder": "Sök efter platser.",
- "namedNetworkUploadFailedDescription": "Ett fel inträffade när den tillhandahållna filen skulle parsas. Se till att ladda upp en oformaterad textfil där varje rad är i CIDR-format.",
- "namedNetworkUploadFailedTitle": "Det gick inte att tolka {0}",
- "namedNetworkUploadInProgressDescription": "Försöker parsa giltiga CIDR-värden från {0}.",
- "namedNetworkUploadInProgressTitle": "{0} parsas",
- "namedNetworkUploadInvalidDescription": "{0} är antingen för stor eller har ett ogiltigt format.",
- "namedNetworkUploadInvalidTitle": "{0} Ogiltig",
- "namedNetworkUploadIpRange": "Ladda upp",
- "namedNetworkUploadSuccessDescription": "{0} rader har analyserats. {1} har ett dåligt format. {2} hoppades över.",
- "namedNetworkUploadSuccessTitle": "Parsningen avslutades för {0}",
- "namedNetworksAdd": "Ny namngiven plats",
- "namedNetworksConditionHelpDescription": "Kontrollera användaråtkomst baserat på fysisk plats.\n[Läs mer][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
- "namedNetworksExcludeLabel": "{0} och {1} exkluderades",
- "namedNetworksHelpDescription": "Namngivna platser används av Azure AD-säkerhetsrapporter för att minska falskt positiva resultat och Azure AD-principer för villkorsstyrd åtkomst.\n[Läs mer][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
- "namedNetworksIncludeLabel": "{0} inkluderade",
- "namedNetworksNone": "Det gick inte att hitta några namgivna platser.",
- "namedNetworksTitle": "Konfigurera platser",
- "namednetworkExceedingSizeErrorBladeTitle": "Felinformation",
- "namednetworkExceedingSizeErrorDetailText": "Klicka här om du vill ha mer information.",
- "namednetworkExceedingSizeErrorMessage": "Du har överstigit det högsta tillåtna lagringsutrymmet för namngivna platser. Försök igen med en kortare lista. Klicka här för att se fler alternativ.",
- "newCertName": "nytt certifikat",
- "noPolicyRowMessage": "Inga principer",
- "noSPSelected": "Inget tjänsthuvudnamn har valts",
- "noUpdatePermissionMessage": "Du har inte behörigheter att uppdatera de här inställningarna. Be din globala administratör om att få åtkomst.",
- "noUserSelected": "Ingen användare har valts",
- "noneRisk": "Ingen risk",
- "office365Description": "Dessa appar är Microsoft Flow, Microsoft Forms, Microsoft Teams, Office 365 Exchange Online, Office 365 SharePoint Online, Office 365 Yammer och andra.",
- "office365InfoBox": "Minst en av de valda apparna ingår i Office 365. Vi rekommenderar att du konfigurerar principen i Office 365-appen i stället.",
- "oneUserSelected": "1 användare vald",
- "onlyGlobalAdminsCanSaveThisPolicyConfig": "Endast globala administratörer kan spara den här policyn.",
- "or": "{0} ELLER {1}",
- "pickerDoneCommand": "Klart",
- "policiesBladeAdPremiumUpsellBannerText": "Skapa dina egna principer och målspecifika villkor som molnappar, inloggningsrisk och enhetsplattformar med Azure AD Premium",
- "policiesBladeTitle": "Principer",
- "policiesBladeTitleWithAppName": "Principer: {0}",
- "policiesDisabledBannerText": "Att skapa och redigera principer är inte tillåtet för program med länkade inloggningsattribut.",
- "policiesHitMaxLimitStatusBarMessage": "Du har nått det maximala antalet principer för den här klientorganisationen. Ta bort några principer innan du skapar fler.",
- "policyAssignmentsSection": "Tilldelningar",
- "policyBlockAllInfoBox": "Den konfigurerade principen blockerar alla användare och stöds därmed inte. Granska tilldelningarna och kontrollerna. Exkludera den aktuella användaren {0} om du vill spara den här principen.",
- "policyCloudAppsDisplayTextAllApp": "Alla appar",
- "policyCloudAppsLabel": "Molnappar",
- "policyConditionClientAppDescription": "Programvaran som användaren använder för att komma åt molnappen. Exempelvis webbläsare",
- "policyConditionClientAppV2Description": "Programvaran som användaren använder för att komma åt molnappen. Exempelvis webbläsare",
- "policyConditionDevicePlatform": "Enhetsplattformar",
- "policyConditionDevicePlatformDescription": "Plattformen som användaren loggar in från. Exempelvis iOS",
- "policyConditionLocation": "Platser",
- "policyConditionLocationDescription": "Platsen (fastställs av IP-adressintervallet) som användaren loggar in från",
- "policyConditionSigninRisk": "Inloggningsrisk",
- "policyConditionSigninRiskDescription": "Sannolikhet att inloggningen kommer från någon annan än användaren. Risknivån kan vara hög, medel eller låg. Kräver en Azure AD Premium 2-licens.",
- "policyConditionUserRisk": "Användarrisk",
- "policyConditionUserRiskDescription": "Konfigurera de användarrisknivåer som krävs för att principen ska tillämpas",
- "policyConditioniClientApp": "Klientappar",
- "policyConditioniClientAppV2": "Klientappar (förhandsversion)",
- "policyControlAllowAccessDisplayedName": "Bevilja åtkomst",
- "policyControlAuthenticationStrengthDisplayedName": "Kräv autentiseringsstyrka (förhandsversion)",
- "policyControlBladeTitle": "Bevilja",
- "policyControlBlockAccessDisplayedName": "Blockera åtkomst",
- "policyControlCompliantDeviceDisplayedName": "Kräv att enheten är markerad som kompatibel",
- "policyControlContentDescription": "Kontrollera framtvingande av åtkomst för att blockera eller bevilja åtkomst.",
- "policyControlInfoBallonText": "Blockera åtkomst eller välj ytterligare krav som behöver uppfyllas för att tillåta åtkomst",
- "policyControlMfaChallengeDisplayedName": "Kräv multifaktorautentisering",
- "policyControlRequireCompliantAppDisplayedName": "Kräv appskyddsprincip",
- "policyControlRequireDomainJoinedDisplayedName": "Kräv Hybrid Azure AD-ansluten enhet",
- "policyControlRequireMamDisplayedName": "Kräv godkänd klientapp",
- "policyControlRequiredPasswordChangeDisplayedName": "Kräv lösenordsändring",
- "policyControlSelectAuthStrength": "Kräv autentiseringsstyrka",
- "policyControlsNoControlsSelected": "0 kontroller valda",
- "policyControlsSection": "Åtkomstkontroller",
- "policyCreatBladeTitle": "Ny",
- "policyCreateButton": "Skapa",
- "policyCreateFailedMessage": "Fel: {0}",
- "policyCreateFailedTitle": "Det gick inte att skapa {0}",
- "policyCreateInProgressTitle": "{0} skapas",
- "policyCreateSuccessMessage": "{0} har skapats. Principen aktiveras om några minuter om du har gett Aktivera princip värdet På.",
- "policyCreateSuccessTitle": "{0} har skapats",
- "policyDeleteConfirmation": "Vill du ta bort {0}? Du kan inte ångra den här åtgärden.",
- "policyDeleteFailTitle": "Kunde inte ta bort {0}",
- "policyDeleteInProgressTitle": "Tar bort {0}",
- "policyDeleteSuccessTitle": "{0} togs bort.",
- "policyEnforceLabel": "Aktivera princip",
- "policyErrorCannotSetSigninRisk": "Du har inte behörighet att spara en princip med inloggningsriskvillkor.",
- "policyErrorNoPermission": "Du har inte behörighet att spara principen. Kontakta din globala administratör.",
- "policyErrorUnknown": "Något gick fel. Försök igen senare.",
- "policyFallbackWarningMessage": "Det gick inte att skapa eller uppdatera {0} med MS Graph vilket innebär att AD Graph återställs. Gå igenom följande scenario noggrant eftersom det troligen finns en bugg när principslutpunkten för MS Graph anropas med ett inkompatibelt villkor.",
- "policyFallbackWarningTitle": "{0} har delvis skapats eller uppdaterats",
- "policyNameCannotBeEmpty": "Principnamnet kan inte vara tomt",
- "policyNameDevice": "Enhetspolicy",
- "policyNameFormat": "[{0}] {1}",
- "policyNameMam": "Mobilapphanteringspolicy",
- "policyNameMfaLocation": "MFA- och platspolicy",
- "policyNamePlaceholderText": "Exempelvis: App-princip för enhetskompatibilitet",
- "policyNameTooLongError": "Principnamnet är för långt. Max 256 tecken",
- "policyOff": "Av",
- "policyOn": "På",
- "policyReportOnly": "Endast rapport",
- "policyReviewSection": "Granska",
- "policySaveButton": "Spara",
- "policyStatusIconDescription": "Principen har aktiverats",
- "policyStatusIconEnabled": "Aktiverad statusikon",
- "policyTemplateName1": "Använd app-framtvingade begräsningar för {0} webbläsaråtkomst",
- "policyTemplateName2": "Tillåt enbart åtkomst för {0} på hanterade enheter",
- "policyTemplateName3": "Principen har migrerats från inställningarna för Kontinuerlig tillgänglighetskontroll",
- "policyTriggerRiskSpecific": "Välj specifik risknivå",
- "policyTriggersInfoBalloonText": "Villkor som definierar när principen ska tillämpas. Exempelvis plats",
- "policyTriggersNoConditionsSelected": "0 villkor valda",
- "policyTriggersSelectorLabel": "Villkor",
- "policyUpdateFailedMessage": "Fel: {0}",
- "policyUpdateFailedTitle": "Det gick inte att uppdatera {0}",
- "policyUpdateInProgressTitle": "Uppdaterar {0}",
- "policyUpdateSuccessMessage": "{0} har uppdaterats. Principen kommer att aktiveras om några minuter om du har satt \"aktivera princip\" till \"På\".",
- "policyUpdateSuccessTitle": "{0} har uppdaterats",
- "primaryCol": "Primär",
- "privateLinkLabel": "Microsoft Azure Active Directory privat länk",
- "reportOnlyInfoBox": "Rapportspecifikt läge: Policyer utvärderas och loggas i samband med inloggningen, men de påverkar inte användarna.",
- "requireAllControlsText": "Begär alla de valda kontrollerna",
- "requireCompliantDevice": "Kräv kompatibel enhet",
- "requireDomainJoined": "Kräver domänansluten enhet",
- "requireMFA": "Kräv multifaktorautentisering",
- "requireOneControlText": "Begär en av de valda kontrollerna",
- "resetFilters": "Återställ filter",
- "sPRequired": "Tjänstens huvudnamn krävs",
- "sPSelectorInfoBalloon": "Användare eller tjänstens huvudnamn som du vill testa",
- "saturday": "lördag",
- "searchTextTooLongError": "Söktexten är för lång. Den får innehålla högst 256 tecken",
- "securityDefaultsPolicyName": "Standardinställningar för säkerhet",
- "securityDefaultsTextMessage": "Du måste inaktivera standardinställningarna för säkerhet för att kunna aktivera principen för villkorsstyrd åtkomst.",
- "securityDefaultsWarningMessage": "Det verkar som du håller på att hantera din organisations säkerhetskonfigurationer. Utmärkt! Du måste först inaktivera standardinställningarna för säkerhet innan du aktiverar en princip för villkorsstyrd åtkomst.",
- "selectDevicePlatforms": "Välj enhetsplattformar",
- "selectNamedNetworksSubtitle": "",
- "selectNamedNetworksTitle": "Välj platser",
- "selectedSP": "Valt tjänsthuvudnamn",
- "servicePrincipalDataGridAria": "Lista över tillgängliga tjänsthuvudnamn",
- "servicePrincipalDropDownLabel": "Vad gäller den här principen för?",
- "servicePrincipalInfoBox": "Vissa villkor är inte tillgängliga på grund av valet {0} i principtilldelning",
- "servicePrincipalRadioAll": "Alla ägda tjänstens huvudnamn",
- "servicePrincipalRadioSelect": "Välj tjänsthuvudnamn",
- "servicePrincipalSelectionsAria": "Valt rutnät för tjänsthuvudnamn",
- "servicePrincipalSelectorAria": "Lista över valda tjänsthuvudnamn",
- "servicePrincipalSelectorMultiple": "{0} tjänsthuvudnamn har valts",
- "servicePrincipalSelectorSingle": "1 tjänsthuvudnamn har valts",
- "servicePrincipalSpecificInc": "Specifika tjänsthuvudnamn ingår",
- "servicePrincipals": "Tjänsthuvudnamn",
- "sessionControlBladeTitle": "Session",
- "sessionControlDescriptionContent": "Kontrollera åtkomsten baserat på sessionskontroller för att möjliggöra begränsade upplevelser i specifika molnprogram.",
- "sessionControlDisableInfo": "Den här kontrollen fungerar bara med appar som stöds. För närvarande är Office 365, Exchange Online och SharePoint Online de enda molnapparna som stöder appframtvingade begränsningar. Klicka här om du vill läsa mer.",
- "sessionControlInfoBallonText": "Sessionskontroller aktiverar en begränsad upplevelse inom en molnapp.",
- "sessionControls": "Sessionskontroller",
- "sessionControlsAppEnforcedLabel": "Använd app-framtvingade begränsningar",
- "sessionControlsCasLabel": "Använd Appkontroll för villkorsstyrd åtkomst",
- "sessionControlsSecureSignInLabel": "Kräv token-bindning",
- "sharepointAppName": "SharePoint",
- "signinRiskDescription": "Välj risknivån på inloggning som den här principen ska gälla för",
- "signinRiskInclude": "{0} inkluderade",
- "signinRiskTriggerDescriptionContent": "Välj nivå för inloggningsrisk",
- "singleTenantServicePrincipalInfoBallonText": "Principen gäller endast för tjänstens huvudnamn för enskild klientorganisation som ägs av din organisation. Klicka här om du vill veta mer ",
- "specificSigninRiskLevelsOption": "Välj specifika risknivåer för inloggning",
- "specificUsersExcluded": "specifika användare som undantas",
- "specificUsersIncluded": "Specifika användare som inkluderas",
- "specificUsersIncludedAndExcluded": "Specifika användare som exkluderats och inkluderats",
- "startDatePickerLabel": "Startar",
- "startFreeTrial": "Starta en kostnadsfri utvärdering",
- "startTimePickerLabel": "Starttid",
- "sunday": "söndag",
- "testButton": "What If",
- "thumbprintCol": "Tumavtryck",
- "thursday": "torsdag",
- "timeConditionAllTimesLabel": "När som helst",
- "timeConditionIntroText": "Konfigurera tiden då den här principen ska gälla",
- "timeConditionSelectorInfoBallonContent": "När användaren loggar in. Till exempel \"onsdag 09.00-17.00 PST\"",
- "timeConditionSelectorLabel": "Tid (förhandsversion)",
- "timeConditionSpecificLabel": "Specifika tider",
- "timeSelectorAllTimesText": "När som helst",
- "timeSelectorSpecificTimesText": "Specifika tider konfigurerade",
- "timeZoneDropdownInfoBalloonContent": "Välj en tidszon som definierar tidsintervallet. Den här principen gäller för alla användare i alla tidszoner. \"Onsdag 09.00-17.00\" för en användare, kan till exempel vara \"onsdag 10.00-18.00\" för en användare i en annan tidszon.",
- "timeZoneDropdownLabel": "Tidszon",
- "timeZoneDropdownPlaceholderText": "Välj en tidszon",
- "tooManyPoliciesDescription": "Bara de 50 första principerna visas, klicka här för att visa alla principer",
- "tooManyPoliciesTitle": "Fler än 50 principer hittades",
- "trustedLocationStatusIconDescription": "Platsen är betrodd",
- "trustedLocationStatusIconEnabled": "Betrodd statusikon",
- "tuesday": "tisdag",
- "uploadInBadState": "Det gick inte att ladda upp den angivna filen.",
- "upsellAppsDescription": "Kräv alltid multifaktorautentisering för känsliga program eller bara från utanför företagsnätverket.",
- "upsellAppsTitle": "Säkra program",
- "upsellBannerText": "Skaffa en kostnadsfri Premium-utvärderingsversion om du vill använda den här funktionen",
- "upsellDataDescription": "Kräv att enheten markeras som att den följer standard eller är Hybrid Azure AD-ansluten för att den ska beviljas åtkomst till företagsresurserna.",
- "upsellDataTitle": "Säkra data",
- "upsellDescription": "Villkorad åtkomst ger dig den kontroll och det skydd du behöver för att hålla dina företagsdata säkra, samtidigt som den ger dina användare möjligheten att arbeta från valfri enhet. Du kan t.ex. begränsa åtkomsten utanför företagsnätverket eller begränsa åtkomsten till enheter med principer som följer standard.",
- "upsellRiskDescription": "Kräv multifaktorautentisering för riskhändelser som identifierats av Microsofts Machine Learning-system.",
- "upsellRiskTitle": "Skydda mot risk",
- "upsellTitle": "Villkorad åtkomst",
- "upsellWhyTitle": "Varför ska man använda villkorsstyrd åtkomst?",
- "userAppNoneOption": "Ingen",
- "userNamePlaceholderText": "Ange användarnamn",
- "userNotSetSeletorLabel": "0 användare och grupper valda",
- "userOnlySelectionBladeExcludeDescription": "Välj de användare som ska undantas principen",
- "userOrGroupSelectionCountDiffBannerText": "{0} som konfigurerats i den här policyn har tagits bort från katalogen, men detta påverkar inte andra användare och grupper i policyn. Nästa gång som du uppdaterar policyn tas de borttagna användarna och/eller grupperna automatiskt bort från den.",
- "userOrSPNotSetSelectorLabel": "Inga användar- eller arbetsbelastningsidentiteter har valts",
- "userOrSPSelectionBladeTitle": "Användar- eller arbetsbelastningsidentiteter",
- "userOrSPSelectorInfoBallonText": "Identiteter i katalogen som principen gäller för, inklusive användare, grupper och tjänstens huvudnamn",
- "userRequired": "Användare krävs",
- "userRiskErrorBox": "Du måste välja villkoret \"Användarrisk\" när beviljandet \"Tillåt lösenordsändring\" har valts",
- "userSPRequired": "Användare eller tjänstens huvudnamn måste anges",
- "userSPSelectorTitle": "Användar- eller arbetsbelastningsidentitet",
- "userSelectionBladeAllUsersAndGroups": "Alla användare och grupper",
- "userSelectionBladeExcludeDescription": "Välj de användare och grupper som ska undantas från principen",
- "userSelectionBladeExcludeTabTitle": "Uteslut",
- "userSelectionBladeExcludedSelectorTitle": "Välj exkluderade användare",
- "userSelectionBladeIncludeDescription": "Välj de användare som principen ska gälla för",
- "userSelectionBladeIncludeTabTitle": "Inkludera",
- "userSelectionBladeIncludedSelectorTitle": "Välj",
- "userSelectionBladeSelectUsers": "Välj användare",
- "userSelectionBladeSelectedUsers": "Välj användare och grupper",
- "userSelectionBladeTitle": "Användare och grupper",
- "userSelectorBladeTitle": "Användare",
- "userSelectorExcluded": "{0} exkluderade",
- "userSelectorGroupPlural": "{0} grupper",
- "userSelectorGroupSingular": "1 grupp",
- "userSelectorIncluded": "{0} inkluderade",
- "userSelectorInfoBallonText": "Användare och grupper i katalogen som principen tillämpas för. Exempelvis pilotgrupp",
- "userSelectorSelected": "{0} har valts",
- "userSelectorTitle": "Användare",
- "userSelectorUserAndGroup": "{0}, {1}",
- "userSelectorUserPlural": "{0} användare",
- "userSelectorUserSingular": "1 användare",
- "userSelectorWithExclusion": "{0} och {1}",
- "usersGroupsLabel": "Användare och grupper",
- "viewApprovedAppsText": "Se lista över godkända klientappar",
- "viewCompliantAppsText": "Visa en lista över principskyddade klientappar",
- "vpnBladeTitle": "VPN-anslutningsmöjlighet",
- "vpnCertCreateFailedMessage": "Fel: {0}",
- "vpnCertCreateFailedTitle": "Det gick inte att skapa {0}",
- "vpnCertCreateInProgressTitle": "{0} skapas",
- "vpnCertCreateSuccessMessage": "{0} skapades.",
- "vpnCertCreateSuccessTitle": "{0} skapades",
- "vpnCertNoRowsMessage": "Inga VPN-certifikat hittades",
- "vpnCertUpdateFailedMessage": "Fel: {0}",
- "vpnCertUpdateFailedTitle": "Det gick inte att uppdatera {0}",
- "vpnCertUpdateInProgressTitle": "Uppdaterar {0}",
- "vpnCertUpdateSuccessMessage": "{0} har uppdaterats.",
- "vpnCertUpdateSuccessTitle": "{0} har uppdaterats",
- "vpnFeatureInfo": "Klicka här om du vill ha mer information om VPN-anslutningsmöjligheter och villkorsstyrd åtkomst.",
- "vpnFeatureWarning": "När ett VPN-certifikat har skapats i Azure Portal, så börjar Azure AD använda det omedelbart för att kunna utfärda certifikat med kort livslängd till VPN-klienten. Det är viktigt att VPN-certifikatet omedelbart distribueras till VPN-servern, så att du undviker problem med valideringen av VPN-klientens autentiseringsuppgifter.",
- "vpnMenuText": "VPN-anslutningsmöjlighet",
- "vpncertDropdownDefaultOption": "Giltighetstid",
- "vpncertDropdownInfoBalloonContent": "Välj varaktighet för certifikatet som du vill skapa",
- "vpncertDropdownLabel": "Välj varaktighet",
- "vpncertDropdownOneyearOption": "1 år",
- "vpncertDropdownThreeyearOption": "3 år",
- "vpncertDropdownTwoyearOption": "2 år",
- "wednesday": "onsdag",
- "whatIfAppEnforcedControl": "Använd app-framtvingade begränsningar",
- "whatIfBladeDescription": "Testa effekten av villkorsstyrd åtkomst för en användare som loggar in under vissa villkor.",
- "whatIfBladeTitle": "What If",
- "whatIfClassicPoliciesWarning": "Klassiska principer utvärderas inte av det här verktyget.",
- "whatIfClientAppInfo": "Den klientapp som användaren loggar in från. Exempel: webbläsare.",
- "whatIfCountry": "Land",
- "whatIfCountryInfo": "Landet som användaren loggar in från.",
- "whatIfDevicePlatformInfo": "Den enhetsplattform från vilken användaren loggar in.",
- "whatIfDeviceStateInfo": "Den enhetsstatus från vilken användaren loggar in",
- "whatIfEnterIpAddress": "Ange IP-adress (t.ex. 40.77.182.32)",
- "whatIfErrorInvalidIpAddress": "En ogiltig IP-adress angavs.",
- "whatIfEvaResultApplication": "Molnappar",
- "whatIfEvaResultClientApps": "Klientapp",
- "whatIfEvaResultDevicePlatform": "Enhetsplattform",
- "whatIfEvaResultEmptyPolicy": "Tom princip",
- "whatIfEvaResultInvalidCondition": "Ogiltigt villkor",
- "whatIfEvaResultInvalidPolicy": "Ogiltig princip",
- "whatIfEvaResultLocation": "Plats",
- "whatIfEvaResultNotEnoughInformation": "Det finns inte tillräckligt med information",
- "whatIfEvaResultPolicyNotEnabled": "Principen har inte aktiverats",
- "whatIfEvaResultSignInRisk": "Inloggningsrisk",
- "whatIfEvaResultUsers": "Användare och grupper",
- "whatIfIpAddress": "IP-adress",
- "whatIfIpAddressInfo": "Den IP-adress användaren in från.",
- "whatIfIpCountryInfoBoxText": "Om du använder en IP-adress eller land, krävs bägge fälten och bör mappa tillsammans korrekt.",
- "whatIfPolicyAppliesTab": "Principer som ska tillämpas",
- "whatIfPolicyDoesNotApplyTab": "Principer som inte ska tillämpas",
- "whatIfReasons": "Orsaker till varför den här principen inte ska tillämpas",
- "whatIfSelectClientApp": "Välj en klientapp...",
- "whatIfSelectCountry": "Välj land...",
- "whatIfSelectDevicePlatform": "Välj enhetsplattform...",
- "whatIfSelectPrivateLink": "Välj privat länk...",
- "whatIfSelectServicePrincipalRisk": "Välj risknivå för tjänstens huvudnamn...",
- "whatIfSelectSignInRisk": "Välj risknivå för inloggning...",
- "whatIfSelectType": "Välj identitetstyp",
- "whatIfSelectUserRisk": "Välj användarrisk...",
- "whatIfServicePrincipalRiskInfo": "Den risknivå som är kopplad till tjänstens huvudnamn",
- "whatIfSignInRisk": "Inloggningsrisk",
- "whatIfSignInRiskInfo": "Den risknivå som är kopplad till inloggningen",
- "whatIfUnknownAreas": "Okända områden",
- "whatIfUserPickerLabel": "Vald användare",
- "whatIfUserPickerNoRowsLabel": "Ingen användare eller tjänsthuvudnamn har valts",
- "whatIfUserRiskInfo": "Den risknivå som är kopplad till användaren",
- "whatIfUserSelectorInfo": "De användare i katalogen som du vill testa",
- "windows365InfoBox": "Om du väljer Windows 365 påverkas anslutningar till molnbaserade datorer och Azure Virtual Desktop-sessionsvärdar. Klicka här om du vill veta mer.",
- "windowsDisplayName": "Windows",
- "windowsPhoneDisplayName": "Windows Phone",
- "workloadIdentities": "Arbetsbelastningsidentiteter (förhandsversion)",
- "workloadIdentity": "Arbetsbelastningsidentitet"
- },
- "ApplicableDeviceType": {
- "iPad": "iPad",
- "iPhoneAndIPod": "iPhone och iPod"
- },
- "TAPSettings": {
- "AllowedDataIngestionLocations": {
- "label": "Tillåt användare att öppna data från valda tjänster",
- "tooltip": "Välj de programlagringstjänster som användarna får öppna data från. Alla andra tjänster blockeras. Om inga tjänster väljs kan användarna inte öppna data."
- },
- "AndroidBackup": {
- "label": "Säkerhetskopiera organisationsdata till Android-säkerhetskopieringstjänster",
- "tooltip": "Välj {0} om du vill förhindra säkerhetskopiering av organisationsdata till Android-säkerhetskopieringstjänster. \r\nVälj {1} om du vill tillåta säkerhetskopiering av organisationsdata till Android-säkerhetskopieringstjänster. \r\nPersonliga eller ohanterade data påverkas inte."
- },
- "AndroidBiometricAuthentication": {
- "label": "Biometrik i stället för åtkomst via pin-kod",
- "tooltip": "Välj vilka eventuella Android-autentiseringsmetoder som får användas i stället för pin-kod för app."
- },
- "AndroidFingerprint": {
- "label": "Fingeravtryck istället för PIN-kod för åtkomst (Android 6.0+)",
- "tooltip": "I Android-operativsystemet autentiseras Android-användare via skanning av fingeravtryck. Funktionen kan användas med inbyggda biometriska reglage på Android-enheter. OEM-specifika biometriska inställningar, till exempel Samsung Pass, stöds inte. Om alternativet tillåts måste inbyggda biometriska reglage användas för att öppna appen på en aktiverad enhet."
- },
- "AndroidOverrideFingerprint": {
- "label": "Åsidosätt fingeravtryck med PIN-kod efter uppnådd tidsgräns"
- },
- "AppPIN": {
- "label": "PIN-appkod när enhetens PIN-kod har ställts in",
- "tooltip": "Om det inte krävs behöver ingen PIN-kod användas för att öppna appen om enhetens PIN-kod har ställts in i en mobilenhetshanterad registrerad enhet.
\r\n\r\nObs! Intune kan inte identifiera enhetsregistrering med en EMM-lösning från tredje part i Android."
- },
- "BlockDataIngestionIntoOrganizationDocuments": {
- "label": "Öppna data i organisationsdokument",
- "tooltip1": "Välj Blockera om du vill inaktivera användning av alternativet Öppna eller andra alternativ för att dela data mellan konton i den här appen. Välj Tillåt om du vill tillåta användning av alternativet Öppna och andra alternativ för att dela data mellan konton i den här appen.",
- "tooltip2": "När Blockera är inställt kan du konfigurera inställningen Tillåt användare öppna data från valda tjänster och ställa in vilka tjänster som ska tillåtas för organisationsdataplatser.",
- "tooltip3": "Obs! Den här inställningen gäller bara om inställningen Ta emot data från andra appar, är inställd på Principhanterade appar.
\r\nObs! Den här inställningen gäller inte alla program. Mer information finns i {0}.",
- "tooltip4": "Obs! Den här inställningen gäller bara om inställningen Ta emot data från andra appar, är inställd på Principhanterade appar.
\r\nObs! Den här inställningen gäller inte alla program. Mer information finns i {0} eller {0}."
- },
- "ConnectToVpnOnLaunch": {
- "label": "Starta Microsoft Tunnel-anslutning vid appstart",
- "tooltip": "Tillåt anslutning till VPN när appen startas"
- },
- "CredentialsForAccess": {
- "label": "Arbets- eller skolkontoautentiseringsuppgifter för åtkomst",
- "tooltip": "Om det krävs måste arbets- eller skolautentiseringsuppgifter användas för att öppna den principhanterade appen. Om det även krävs PIN-kod eller biometriska metoder för att öppna appen, krävs dessutom arbets- eller skolkontoautentiseringsuppgifter."
- },
- "CustomBrowserDisplayName": {
- "label": "Namn på ohanterad webbläsare",
- "tooltip": "Ange programnamnet för webbläsaren som är kopplad till \"Id för ohanterad webbläsare\". Det här namnet visas för användarna om den angivna webbläsaren inte är installerad."
- },
- "CustomBrowserPackageId": {
- "label": "Id för ohanterad webbläsare",
- "tooltip": "Ange program-id:t för en enskild webbläsare. Webbinnehåll (http/s) från principhanterade program öppnas i den angivna webbläsaren."
- },
- "CustomBrowserProtocol": {
- "label": "Protokoll för ohanterad webbläsare",
- "tooltip": "Ange protokollet för en enskild ohanterad webbläsare. Webbinnehåll (http/s) från principhanterade program öppnas i en app som har stöd för protokollet.
\r\n \r\nOBS! Ange bara protokollets prefix. Om webbläsaren kräver länkar i formatet \"minwebbläsare://www.microsoft.com\" så skriver du \"minwebbläsare\".
"
- },
- "CustomDialerAppDisplayName": {
- "label": "Namn på uppringningsapp"
- },
- "CustomDialerAppPackageId": {
- "label": "Paket-id för uppringningsapp"
- },
- "CustomDialerAppProtocol": {
- "label": "Webbadresschema för uppringningsapp"
- },
- "Cutcopypaste": {
- "label": "Begränsa klipp ut, kopiera och klistra in mellan andra appar",
- "tooltip": "Klipp ut, kopiera och klistra in data mellan din app och andra godkända appar på enheten. Välj att blockera de här åtgärderna helt mellan appar, tillåta dem att användas med valfri app eller begränsa användningen till appar som hanteras av din organisation.
\r\n\r\nMed principhanterade appar med inklistring kan du godkänna inkommande innehåll som klistrats in från en annan app. Användarna blockeras dock från att dela innehåll utåt, såvida det inte sker med en hanterad app.
"
- },
- "DialerRestrictionLevel": {
- "iosTooltip": "När en användare väljer ett hyperlänkat telefonnummer i en app öppnas vanligtvis en uppringningsapp med telefonnumret ifyllt och redo att ringa. Med den här inställningen kan du välja hur den här typen av innehållsöverföring ska hanteras när den startas från en principhanterad app. Ytterligare steg kan komma att krävas för att inställningen ska börja gälla. Kontrollera först att tel och telprompt har tagits bort från listan över appar som ska undantas. Kontrollera sedan att programmet använder en nyare version av Intune SDK (12.7.0+).",
- "label": "Överför telekommunikationsdata till",
- "tooltip": "När en användare väljer ett hyperlänkat telefonnummer i en app öppnas vanligtvis en uppringningsapp med telefonnumret ifyllt och redo att ringa. Med den här inställningen kan du välja hur den här typen av innehållsöverföring ska hanteras när den startas från en principhanterad app."
- },
- "EncryptData": {
- "label": "Kryptera organisationsdata",
- "link": "https://docs.microsoft.com/en-us/intune/app-protection-policy-settings-android#data-relocation-settings",
- "tooltip": "Välj {0} om du vill framtvinga kryptering av organisationsdata med applagerkryptering från Intune.\r\n
\r\nVälj {1} om du inte vill framtvinga kryptering av organisationsdata med applagerkryptering från Intune.\r\n\r\n
\r\nObs! Mer information om applagerkryptering från Intune finns i {2}."
- },
- "EncryptDataAndroid": {
- "tooltip": "Välj Kräv om du vill aktivera kryptering av arbets- eller skoldata i den här appen. I Intune används ett OpenSSL, 256-bitars AES-krypteringsschema tillsammans med Android Keystore-systemet för att kryptera appdata på ett säkert sätt. Data krypteras synkront under I/O-filåtgärder. Innehåll i enhetens lagringsutrymme krypteras alltid. SDK-paketet ger fortsatt stöd för 128-bitars nycklar för kompatibilitet med innehåll och appar som använder äldre SDK-versioner.
\r\n\r\nKrypteringsmetoden är FIPS 140-2-kompatibel.
"
- },
- "EncryptDataIos": {
- "tooltip1": "Välj Kräv om du vill aktivera kryptering av arbets- eller skoldata i den här appen. I Intune används iOS-/iPadOS-enhetskryptering för att skydda appdata när enheten är låst. Program kan också kryptera appdata med hjälp av Intune APP-SDK-kryptering. I Intune APP-SDK används iOS-/iPadOS-kryptografimetoder för att tillämpa 128-bitars AES-kryptering av appdata.",
- "tooltip2": "När du aktiverar den här inställningen kan användaren vara tvungen att ställa in och använda en PIN-kod för att få åtkomst till sin enhet. Om ingen PIN-kod finns och kryptering krävs, uppmanas användaren att ställa in en PIN-kod med meddelandet: ”Enligt din organisation måste du först aktivera en PIN-kod på enheten för att få åtkomst till den här appen”.",
- "tooltip3": "Gå till den officiella Apple-dokumentationen och se vilka iOS-krypteringsmodeller som är FIPS 140-2-kompatibla eller som väntar på FIPS 140-2-kompatibilitet."
- },
- "EncryptDataOnEnrolledDevices": {
- "label": "Kryptera organisationsdata på registrerade enheter",
- "tooltip": "Välj {0} om du vill framtvinga kryptering av organisationsdata med applagerkryptering från Intune på alla enheter.
\r\n\r\nVälj {1} om du inte vill framtvinga kryptering av organisationsdata med applagerkryptering från Intune på registrerade enheter."
- },
- "IOSBackup": {
- "label": "Säkerhetskopiera organisationsdata till iTunes- och iCloud-säkerhetskopieringar",
- "tooltip": "Välj {0} om du vill förhindra säkerhetskopiering av organisationsdata till iTunes eller iCloud. \r\nVälj {1} om du vill tillåta säkerhetskopiering av organisationsdata till iTunes eller iCloud. \r\nPersonliga eller ohanterade data påverkas inte."
- },
- "IOSFaceID": {
- "label": "Face ID istället för PIN-kod för åtkomst (iOS 11+/iPadOS)",
- "tooltip": "Face ID använder ansiktsigenkänning för att autentisera användare på iOS-/iPadOS-enheter. Intune anropar LocalAuthentication-API för att autentisera användare via Face ID. Om det här tillåts måste Face ID användas för att öppna appen på en Face ID-aktiverad enhet."
- },
- "IOSOverrideTouchId": {
- "label": "Åsidosätt biometrik med PIN-kod efter uppnådd tidsgräns"
- },
- "IOSTouchId": {
- "label": "Touch ID istället för PIN-kod för åtkomst (iOS 8+/iPadOS)",
- "tooltip": "Touch ID använder fingeravtrycksigenkänning för att autentisera användare på iOS-enheter. Intune anropar LocalAuthentication-API för att autentisera användare via Touch ID. Om det tillåts måste Touch ID användas för att öppna appen på en Touch ID-aktiverad enhet."
- },
- "NotificationRestriction": {
- "label": "Organisationsdatameddelanden",
- "tooltip": "Välj ett av följande alternativ för att ange hur meddelanden för organisationskonton ska visas för den här appen och alla anslutna enheter, till exempel kroppsnära enheter:
\r\n{0}: Dela inte meddelanden.
\r\n{1}: Dela inte organisationsdata i meddelanden. Om meddelanden inte stöds av programmet blockeras de.
\r\n{2}: Dela alla meddelanden.
\r\n Endast Android:\r\n Obs! Den här inställningen gäller inte alla program. Mer information finns i {3}
\r\n \r\n Endast iOS:\r\nObs! Den här inställningen gäller inte alla program. Mer information finns i {4}
"
- },
- "OpenLinksManagedBrowser": {
- "label": "Begränsa överföring av webbinnehåll till andra appar",
- "tooltip": "Välj ett av följande alternativ för att ange de appar som den här appen kan öppna webbinnehåll i:
\r\nEdge: Tillåt endast att webbinnehåll öppnas i en Edge-hanterad webbläsare
\r\nOhanterad webbläsare: Tillåt endast att webbinnehåll öppnas i den ohanterade webbläsaren som anges i inställningen Protokoll för ohanterad webbläsare
\r\nValfri app: Tillåt webblänkar i valfri app
"
- },
- "OverrideBiometric": {
- "tooltip": "Om det krävs, åsidosätts biometrik av en PIN-kod, beroende på tidsgränsen (minuter av inaktivitet). Om tidsgränsvärdet inte har nåtts fortsätter biometriken att visas. Tidsgränsvärdet måste vara större än det värde som anges i Kontrollera åtkomstkraven igen efter (minuters inaktivitet). "
- },
- "PinAccess": {
- "label": "PIN-kod för åtkomst",
- "tooltip": "Om det här krävs, måste en PIN-kod användas för att öppna den principhanterade appen. Användarna måste skapa en PIN-kod första gången de öppnar en app från ett arbets- eller skolkonto."
- },
- "PinLength": {
- "label": "Välj minimilängd för PIN-kod",
- "tooltip": "Den här inställningen anger det minsta tillåtna antalet siffror i en PIN-kod."
- },
- "PinType": {
- "label": "Typ av PIN-kod",
- "tooltip": "Numeriska PIN-koder består bara av siffror. Lösenord består av alfanumeriska tecken och specialtecken. "
- },
- "Printing": {
- "label": "Skriver ut organisationsdata",
- "tooltip": "Skyddade data kan inte skrivas ut från appen om det har inaktiverats."
- },
- "ReceiveData": {
- "label": "Ta emot data från andra appar",
- "tooltip": "Välj ett av följande alternativ för att ange de appar som den här appen kan ta emot data från:
\r\n\r\nIngen: Tillåt inte mottagning av data i organisationsdokument eller konton från någon app
\r\n\r\nPrinciphanterade appar: Tillåt endast mottagning av data i organisationsdokument eller konton från andra principhanterade appar\r\n
\r\nValfri app med inkommande organisationsdata: Tillåt mottagning av data i organisationsdokument eller konton från valfri app och behandla alla inkommande data utan användarkonto som organisationsdata
\r\n\r\nAlla appar: Tillåt mottagning av data i organisationsdokument eller konton från valfri app"
- },
- "RecheckAccessAfter": {
- "label": "Kontrollera åtkomstkraven igen efter (minuters inaktivitet)\r\n\r\n",
- "tooltip": "Om den principhanterade appen är inaktiv längre än det angivna antalet minuter av inaktivitet, visas en uppmaning om att kontrollera åtkomstkraven igen (till exempel PIN-kod, villkorlig start) när appen har startats."
- },
- "RestrictKeyboards": {
- "duplicatePackageError": "Paketets id måste vara unikt.",
- "invalidPackageError": "Ogiltigt paket-id",
- "label": "Godkända tangentbord",
- "select": "Välj tangentbord som ska godkännas",
- "subtitle": "Lägg till alla tangentbord och indatametoder som användarna kan använda med riktade appar. Ange det tangentbordsnamn som du vill ska visas för slutanvändaren.",
- "title": "Lägg till godkända tangentbord",
- "toolTip": "Välj Kräv och ange sedan en lista med godkända tangentbord för den här principen. Läs mer."
- },
- "SaveData": {
- "label": "Spara kopior av organisationsdata",
- "tooltip": "Välj {0} om du inte vill att en kopia av organisationsdata ska kunna sparas på en annan plats än i de valda lagringstjänsterna med Spara som.\r\n Välj {1} om du vill tillåta att en kopia av organisationsdata sparas på en ny plats med Spara som.
\r\n\r\n\r\nObs! Den här inställningen gäller inte alla program. Mer information finns i {2}.\r\n"
- },
- "SaveDataToSelected": {
- "label": "Tillåt användaren att spara kopior i valda tjänster",
- "tooltip": "Välj de lagringstjänster som användarna kan spara kopior av organisationsdata på. Alla andra tjänster blockeras. Om inga tjänster väljs kan användarna inte spara kopior av organisationsdata."
- },
- "ScreenCaptureAndAndroidAssistant": {
- "label": "Skärmbild och Google Assistent\r\n",
- "tooltip": "Om det är blockerat inaktiveras både skanningsfunktioner för skärmbild och Google Assistent-appen när den principhanterade appen används. Funktionen kan användas med den vanliga Google Assistent-appen. Det finns inte stöd för assistenter från tredje part som använder Google Assistent-API. Om du väljer Blockera blir förhandsgranskningsbilden av Appväxlaren suddig när appen används med ett arbets- eller skolkonto."
- },
- "SendData": {
- "label": "Skicka organisationsdata till andra appar",
- "tooltip": "Välj ett av följande alternativ för att ange de appar som den här appen kan skicka organisationsdata till:
\r\n\r\n\r\nIngen: Skicka inte organisationsdata till någon app
\r\n\r\n\r\nPrinciphanterade appar: Tillåt bara sändning av organisationsdata till andra principhanterade appar
\r\n\r\n\r\nPrinciphanterade appar med operativsystemdelning: Tillåt endast sändning av organisationsdata till andra principhanterade appar och sändning av organisationsdokument till andra mobilenhetshanterade appar på registrerade enheter
\r\n\r\n\r\nPrinciphanterade appar med Öppna i/Dela-filtrering: Tillåt endast sändning av organisationsdata till andra principhanterade appar och filtrera Öppna i/Dela-dialogrutor så att bara principhanterade appar visas\r\n
\r\n\r\nAlla appar: Tillåt sändning av organisationsdata till valfri app"
- },
- "SimplePin": {
- "label": "Enkel PIN-kod",
- "tooltip": "Om det är blockerat kan användarna inte skapa en enkel PIN-kod. En enkel PIN-kod är en sträng med på varandra följande eller upprepade siffror, till exempel 1234, ABCD eller 1111. Tänk på att om du blockerar enkel PIN-kod av typen Lösenord, måste lösenordet bestå av minst en siffra, en bokstav och ett specialtecken."
- },
- "SyncContacts": {
- "label": "Synkronisera data i principhanterade appar med inbyggda appar eller tillägg"
- },
- "ThirdPartyKeyboards": {
- "infoBox": "Tangentbordsbegränsningar gäller för alla områden i en app. Privata konton för appar som har stöd för flera identiteter påverkas av den här begränsningen. Läs mer.",
- "label": "Tangentbord från tredje part"
- },
- "Timeout": {
- "label": "Tidsgräns (minuters aktivitet)"
- },
- "Tap": {
- "numberOfDays": "Antal dagar",
- "pinResetAfterNumberOfDays": "Återställ PIN-kod efter antal dagar",
- "previousPinBlockCount": "Välj antal tidigare PIN-koder som ska behållas"
- }
- },
- "WindowsFeatureUpdateProfile": {
- "Details": {
- "Description": {
- "label": "Beskrivning"
- },
- "FeatureDeploymentSettings": {
- "header": "Inställningar för funktionsdistribution"
- },
- "FeatureUpdateVersion": {
- "infoballoon": "Den här funktionen kan inte nedgradera en enhet.",
- "label": "Funktionsuppdatering som ska distribueras"
- },
- "GradualRolloutEndDate": {
- "label": "Tillgänglighet för slutlig grupp"
- },
- "GradualRolloutInterval": {
- "label": "Dagar mellan grupper"
- },
- "GradualRolloutStartDate": {
- "label": "Tillgänglighet för första gruppen"
- },
- "Name": {
- "label": "Namn"
- },
- "RolloutOptions": {
- "label": "Distributionsalternativ"
- },
- "RolloutSettings": {
- "header": "När vill du göra uppdateringen tillgänglig i Windows Update?"
- },
- "ScopeSettings": {
- "header": "Ställ in omfångstaggar för den här principen."
- },
- "StartDateOnlyStartDate": {
- "label": "Första tillgängliga datum"
- },
- "bladeTitle": "Funktionsuppdateringsdistributioner",
- "deploymentSettingsTitle": "Distributionsinställningar",
- "loadError": "Det gick inte att läsa in!",
- "windows11EULA": "Genom att markera användning av den här funktionsuppdateringen när du använder detta operativsystem på en enhet godkänner du att (1) den tillämpliga Windows-licensen köptes genom volymlicensiering, eller (2) du har behörighet att binda din organisation och accepterar å organisationens vägnar relevanta Licensvillkor för Programvara från Microsoft som du hittar här {0}."
- },
- "Notifications": {
- "deploymentSaved": "{0} har sparats.",
- "newFeatureUpdateDeploymentCreated": "Ny distribution av funktionsuppdatering har skapats."
- },
- "TabName": {
- "deploymentSettings": "Distributionsinställningar",
- "groupAssignmentSettings": "Tilldelningar",
- "scopeSettings": "Omfångstaggar"
- }
- },
- "OfficeUpdateChannel": {
- "current": "Aktuell kanal",
- "deferred": "Halvårskanal för företag",
- "firstReleaseCurrent": "Aktuell kanal (förhandsversion)",
- "firstReleaseDeferred": "Halvårskanal för företag (förhandsversion)",
- "monthlyEnterprise": "Månadskanal för företag",
- "placeHolder": "Välj en"
- },
- "Win32ReturnCodes": {
- "CodeTypes": {
- "failed": "Misslyckad",
- "hardReboot": "Hård omstart",
- "retry": "Försök igen",
- "softReboot": "Mjuk omstart",
- "success": "Klart"
- },
- "Columns": {
- "codeType": "Kodtyp",
- "returnCode": "Returkod"
- },
- "bladeTitle": "Returkoder",
- "gridAriaLabel": "Returkoder",
- "header": "Ange returkoder för att visa på funktionssätt efter installation:",
- "onAddAnnounceMessage": "Returkod vid tillagt objekt {0} av {1}",
- "onDeleteSuccess": "Returkoden {0} har tagits bort",
- "returnCodeAlreadyUsedValidation": "Returkoden används redan.",
- "returnCodeMustBeIntegerValidation": "Returkoden måste vara ett heltal.",
- "returnCodeShouldBeAtLeast": "Returkoden måste vara minst {0}.",
- "returnCodeShouldBeAtMost": "Returkoden får vara högst {0}.",
- "selectorLabel": "Returkoder"
- },
- "SecurityTemplate": {
- "aSR": "Minskning av attackytan",
- "accountProtection": "Kontoskydd",
- "allDevices": "Alla enheter",
- "antivirus": "Antivirus",
- "antivirusReporting": "Antivirusrapportering (förhandsversion)",
- "conditionalAccess": "Villkorlig åtkomst",
- "deviceCompliance": "Enhetsefterlevnad",
- "diskEncryption": "Diskkryptering",
- "eDR": "Slutpunktsidentifiering och svar",
- "firewall": "Brandvägg",
- "helpSupport": "Hjälp och support",
- "setup": "Installation",
- "wdapt": "Microsoft Defender for Endpoint"
- },
- "PolicySet": {
- "appManagement": "Programhantering",
- "assignments": "Tilldelningar",
- "basics": "Grundläggande inställningar",
- "deviceEnrollment": "Enhetsregistrering",
- "deviceManagement": "Enhetshantering",
- "scopeTags": "Omfångstaggar",
- "appConfigurationTitle": "Appkonfigurationsprinciper",
- "appProtectionTitle": "Principer för appskydd",
- "appTitle": "Appar",
- "iOSAppProvisioningTitle": "Etableringsprofiler för iOS-app",
- "deviceLimitRestrictionTitle": "Begränsningar för antal enheter",
- "deviceTypeRestrictionTitle": "Begränsningar av enhetstyp",
- "enrollmentStatusSettingTitle": "Registreringsstatussidor",
- "windowsAutopilotDeploymentProfileTitle": "Windows Autopilot-distributionsprofiler",
- "deviceComplianceTitle": "Efterlevnadsprinciper för enhet",
- "deviceConfigurationTitle": "Profiler för enhetskonfigurationer",
- "powershellScriptTitle": "PowerShell-skript"
- },
- "AssignmentAction": {
- "exclude": "Undantaget",
- "include": "Inklusive",
- "includeAllDevicesVirtualGroup": "Inklusive",
- "includeAllUsersVirtualGroup": "Inklusive"
- },
- "WindowsFeatureUpdate": {
- "EndOFSupportStatus": {
- "notSupported": "Stöds inte",
- "supportEnding": "Supporten upphör",
- "supported": "Stöds"
- }
- },
- "InstallIntent": {
- "available": "Tillgängligt för registrerade enheter",
- "availableWithoutEnrollment": "Tillgänglig med eller utan registrering",
- "required": "Obligatoriskt",
- "uninstall": "Avinstallera"
- },
"OutlookAppConfig": {
"DataProtectionConfiguration": {
"header": "Inställning av dataskydd"
@@ -1938,307 +100,864 @@
"themesEnabledTitle": "Aktiverade teman",
"themesEnabledTooltip": "Ange om användaren får använda ett anpassat visuellt tema."
},
- "TAP": {
- "AccessRequirements": {
- "infoText": "Konfigurera de PIN-koder och autentiseringsuppgifter som användarna måste ange för att få åtkomst till appar i ett arbetssammanhang."
- },
- "DataProtection": {
- "infoText": "Den här gruppen omfattar kontroller för dataförlustskydd, som begränsningar för klipp ut, kopiera, klistra in och spara som. De här inställningarna fastställer hur användarna samverkar med data i apparna."
- },
- "DeviceTypes": {
- "selectOne": "Markera minst en enhetstyp."
- },
- "TargetedApps": {
- "TargetToAll": {
- "label": "Riktat till appar på alla typer av enheter"
- },
- "infoText": "Välj hur du vill tillämpa den här principen på appar på olika enheter. Lägg sedan till minst en app.",
- "selectOne": "Välj minst en app för att skapa en princip."
- }
- },
- "TACSettings": {
- "edgeSettings": "Edge-konfigurationsinställningar",
- "edgeWindowsDataProtectionSettings": "Edge-dataskyddsinställningar (Windows) – förhandsversion",
- "edgeWindowsSettings": "Edge-konfigurationsinställningar (Windows) – förhandsversion",
- "generalAppConfig": "Allmän appkonfiguration",
- "generalSettings": "Allmänna konfigurationsinställningar",
- "outlookSMIMEConfig": "Outlook S/MIME-inställningar",
- "outlookSettings": "Outlook-konfigurationsinställningar",
- "sMIME": "S/MIME"
- },
- "OfficeApplicationAdditionalType": {
- "projectProRetail": "Project Online Desktop Client",
- "visioProRetail": "Visio Online, abonnemang 2"
- },
- "Win32Requirements": {
- "AdditionalRequirements": {
- "File": {
- "fileOrFolderToolTip": "Filen eller mappen enligt angivet krav.",
- "pathToolTip": "Den fullständiga sökvägen till den fil eller mapp som ska identifieras.",
- "property": "Egenskap",
- "valueToolTip": "Välj ett kravvärde som matchar den valda identifieringsmetoden. Krav på datum och tid måste anges i lokalt format."
- },
- "GridColumns": {
- "pathOrScript": "Sökväg/skript",
- "type": "Typ"
- },
- "Registry": {
- "keyPath": "Nyckelsökväg",
- "keyPathTooltip": "Den fullständiga sökvägen till registerposten som innehåller värdet enligt krav.",
- "operator": "Operator",
- "operatorTooltip": "Välj operator för jämförelsen.",
- "registryRequirement": "Registernyckelkrav",
- "registryRequirementTooltip": "Välj jämförelse av registernyckelkrav.",
- "valueName": "Värdenamn",
- "valueNameTooltip": "Namnet på begärt registervärde."
- },
- "RequirementTypeOptions": {
- "fileType": "Fil",
- "registry": "Register",
- "script": "Skript"
- },
- "Script": {
- "RequirementMethodOptions": {
- "boolean": "Boolesk",
- "dateTime": "Datum och tid",
- "float": "Flyttal",
- "integer": "Heltal",
- "string": "Sträng",
- "version": "Version"
- },
- "ScriptContent": {
- "emptyMessage": "Skriptinnehåll måste anges."
- },
- "duplicateName": "Skriptnamnet {0} har redan använts. Ange ett annat namn.",
- "enforceSignatureCheck": "Framtvinga signaturkontroll av skript",
- "enforceSignatureCheckTooltip": "Välj Ja om du vill kontrollera att skriptet har signerats av en betrodd utgivare så att skriptet körs utan varningar eller uppmaningar. Skriptet körs avblockerat. Välj Nej (standard) om du vill köra skriptet med slutanvändarens bekräftelse men utan signaturkontroll.",
- "loggedOnCredentials": "Kör det här skriptet med inloggningsuppgifterna",
- "loggedOnCredentialsTooltip": "Kör skript med enhetens inloggningsuppgifter.",
- "operatorTooltip": "Välj operator för kravjämförelsen.",
- "requirementMethod": "Välj typ av utdata",
- "requirementMethodTooltip": "Välj den datatyp som används vid fastställande av krav på identifieringsmatchning.",
- "scriptFile": "Skriptfil",
- "scriptFileTooltip": "Välj ett PowerShell-skript som identifierar förekomst av appen på klienten. Om appen har identifierats visar kravprocessen en slutkod med värdet 0 och skriver strängvärdet STDOUT.",
- "scriptName": "Skriptets namn",
- "value": "Värde",
- "valueTooltip": "Välj ett kravvärde som matchar den valda identifieringsmetoden. Krav på datum och tid måste anges i lokalt format."
- },
- "bladeTitle": "Lägg till en kravregel",
- "createRequirementHeader": "Skapa ett krav.",
- "header": "Ställ in ytterligare kravregler",
- "label": "Ytterligare kravregler",
- "noRequirementsSelectedPlaceholder": "Inga krav har angetts.",
- "requirementType": "Kravtyp",
- "requirementTypeTooltip": "Välj typ av identifieringsmetod som ska användas för att fastställa hur ett krav ska utvärderas."
- },
- "architectures": "Operativsystemarkitektur",
- "architecturesTooltip": "Välj de arkitekturer som behövs för att installera appen.",
- "bladeTitle": "Krav",
- "diskSpace": "Diskutrymme som krävs (MB)",
- "diskSpaceTooltip": "Ledigt diskutrymme som krävs på systemenheten för att installera appen.",
- "header": "Ange krav som måste uppfyllas på enheterna innan appen kan installeras:",
- "maximumTextFieldValue": "Det här värdet måste åtminstone vara {0}.",
- "minimumCpuSpeed": "Lägsta processorhastighet som krävs (MHz)",
- "minimumCpuSpeedTooltip": "Lägsta processorhastighet som krävs för att installera appen.",
- "minimumLogicalProcessors": "Lägsta antal logiska processorer som krävs",
- "minimumLogicalProcessorsTooltip": "Lägsta antal logiska processorer som behövs för att installera appen.",
- "minimumOperatingSystem": "Lägsta operativsystemsversion",
- "minimumOperatingSystemTooltip": "Välj det minimioperativsystem som behövs för att installera appen.",
- "minumumTextFieldValue": "Värdet måste vara minst {0}.",
- "physicalMemory": "Fysiskt minne som krävs (MB)",
- "physicalMemoryTooltip": "Fysiskt minne (RAM) som krävs för att installera appen.",
- "selectorLabel": "Krav",
- "validNumber": "Ange ett giltigt tal."
- },
- "ArchitectureOptions": {
- "sixtyFourBit": "64-bitars",
- "thirtyTwoBit": "32-bitars"
- },
- "Countries": {
- "ae": "Förenade Arabemiraten",
- "ag": "Antigua och Barbuda",
- "ai": "Anguilla",
- "al": "Albanien",
- "am": "Armenien",
- "ao": "Angola",
- "ar": "Argentina",
- "at": "Österrike",
- "au": "Australien",
- "az": "Azerbajdzjan",
- "bb": "Barbados",
- "be": "Belgien",
- "bf": "Burkina Faso",
- "bg": "Bulgarien",
- "bh": "Bahrain",
- "bj": "Benin",
- "bm": "Bermuda",
- "bn": "Brunei",
- "bo": "Bolivia",
- "br": "Brasilien",
- "bs": "Bahamas",
- "bt": "Bhutan",
- "bw": "Botswana",
- "by": "Vitryssland",
- "bz": "Belize",
- "ca": "Kanada",
- "cg": "Republiken Kongo",
- "ch": "Schweiz",
- "cl": "Chile",
- "cn": "Kina",
- "co": "Colombia",
- "cr": "Costa Rica",
- "cv": "Cabo Verde",
- "cy": "Cypern",
- "cz": "Tjeckien",
- "de": "Tyskland",
- "dk": "Danmark",
- "dm": "Dominica",
- "do": "Dominikanska republiken",
- "dz": "Algeriet",
- "ec": "Ecuador",
- "ee": "Estland",
- "eg": "Egypten",
- "es": "Spanien",
- "fi": "Finland",
- "fj": "Fiji",
- "fm": "Mikronesiska federationen",
- "fr": "Frankrike",
- "gb": "Storbritannien",
- "gd": "Grenada",
- "gh": "Ghana",
- "gm": "Gambia",
- "gr": "Grekland",
- "gt": "Guatemala",
- "gw": "Guinea-Bissau",
- "gy": "Guyana",
- "hk": "Hongkong",
- "hn": "Honduras",
- "hr": "Kroatien",
- "hu": "Ungern",
- "id": "Indonesien",
- "ie": "Irland",
- "il": "Israel",
- "in": "Indien",
- "is": "Island",
- "it": "Italien",
- "jm": "Jamaica",
- "jo": "Jordanien",
- "jp": "Japan",
- "ke": "Kenya",
- "kg": "Kirgizistan",
- "kh": "Kambodja",
- "kn": "Saint Kitts och Nevis",
- "kr": "Republiken Korea",
- "kw": "Kuwait",
- "ky": "Caymanöarna",
- "kz": "Kazakstan",
- "la": "Demokratiska folkrepubliken Laos",
- "lb": "Libanon",
- "lc": "Saint Lucia",
- "lk": "Sri Lanka",
- "lr": "Liberia",
- "lt": "Litauen",
- "lu": "Luxemburg",
- "lv": "Lettland",
- "md": "Republiken Moldavien",
- "mg": "Madagaskar",
- "mk": "Nordmakedonien",
- "ml": "Mali",
- "mn": "Mongoliet",
- "mo": "Macao",
- "mr": "Mauretanien",
- "ms": "Montserrat",
- "mt": "Malta",
- "mu": "Mauritius",
- "mw": "Malawi",
- "mx": "Mexiko",
- "my": "Malaysia",
- "mz": "Moçambique",
- "na": "Namibia",
- "ne": "Niger",
- "ng": "Nigeria",
- "ni": "Nicaragua",
- "nl": "Nederländerna",
- "no": "Norge",
- "np": "Nepal",
- "nz": "Nya Zeeland",
- "om": "Oman",
- "pa": "Panama",
- "pe": "Peru",
- "pg": "Papua Nya Guinea",
- "ph": "Filippinerna",
- "pk": "Pakistan",
- "pl": "Polen",
- "pt": "Portugal",
- "pw": "Palau",
- "py": "Paraguay",
- "qa": "Qatar",
- "ro": "Rumänien",
- "ru": "Ryssland",
- "sa": "Saudiarabien",
- "sb": "Solomonöarna",
- "sc": "Seychellerna",
- "se": "Sverige",
- "sg": "Singapore",
- "si": "Slovenien",
- "sk": "Slovakien",
- "sl": "Sierra Leone",
- "sn": "Senegal",
- "sr": "Surinam",
- "st": "São Tomé och Príncipe",
- "sv": "El Salvador",
- "sz": "Swaziland",
- "tc": "Turks- och Caicosöarna",
- "td": "Tchad",
- "th": "Thailand",
- "tj": "Tadzjikistan",
- "tm": "Turkmenistan",
- "tn": "Tunisien",
- "tr": "Turkiet",
- "tt": "Trinidad och Tobago",
- "tw": "Taiwan",
- "tz": "Tanzania",
- "ua": "Ukraina",
- "ug": "Uganda",
- "us": "USA",
- "uy": "Uruguay",
- "uz": "Uzbekistan",
- "vc": "Saint Vincent och Grenadinerna",
- "ve": "Venezuela",
- "vg": "Brittiska Jungfruöarna",
- "vn": "Vietnam",
- "ye": "Jemen",
- "za": "Sydafrika",
- "zw": "Zimbabwe"
+ "Languages": {
+ "ar-aE": "Arabiska (Förenade Arabemiraten)",
+ "ar-bH": "Arabiska (Bahrain)",
+ "ar-dZ": "Arabiska (Algeriet)",
+ "ar-eG": "Arabiska (Egypten)",
+ "ar-iQ": "Arabiska (Irak)",
+ "ar-jO": "Arabiska (Jordanien)",
+ "ar-kW": "Arabiska (Kuwait)",
+ "ar-lB": "Arabiska (Libanon)",
+ "ar-lY": "Arabiska (Libyen)",
+ "ar-mA": "Arabiska (Marocko)",
+ "ar-oM": "Arabiska (Oman)",
+ "ar-qA": "Arabiska (Qatar)",
+ "ar-sA": "Arabiska (Saudiarabien)",
+ "ar-sY": "Arabiska (Syrien)",
+ "ar-tN": "Arabiska (Tunisien)",
+ "ar-yE": "Arabiska (Jemen)",
+ "az-cyrl": "Azerbajdzjanska (kyrillisk, Azerbajdzjan)",
+ "az-latn": "Azerbajdzjanska (latinsk, Azerbajdzjan)",
+ "bn-bD": "Bangla (Bangladesh)",
+ "bn-iN": "Bangla (Indien)",
+ "bs-cyrl": "Bosniska (kyrillisk)",
+ "bs-latn": "Bosniska (latinsk)",
+ "zh-cN": "Kinesiska (Folkrepubliken Kina)",
+ "zh-hK": "Kinesiska (Hongkong SAR)",
+ "zh-mO": "Kinesiska (Macao SAR)",
+ "zh-sG": "Kinesiska (Singapore)",
+ "zh-tW": "Kinesiska (Taiwan)",
+ "hr-bA": "Kroatiska (latinsk)",
+ "hr-hR": "Kroatiska (Kroatien)",
+ "nl-bE": "Nederländska (Belgien)",
+ "nl-nL": "Nederländska (Nederländerna)",
+ "en-aU": "Engelska (Australien)",
+ "en-bZ": "Engelska (Belize)",
+ "en-cA": "Engelska (Kanada)",
+ "en-cabn": "Engelska (Karibien)",
+ "en-iE": "Engelska (Irland)",
+ "en-iN": "Engelska (Indien)",
+ "en-jM": "Engelska (Jamaica)",
+ "en-mY": "Engelska (Malaysia)",
+ "en-nZ": "Engelska (Nya Zeeland)",
+ "en-pH": "Engelska (Filippinerna)",
+ "en-sG": "Engelska (Singapore)",
+ "en-tT": "Engelska (Trinidad och Tobago)",
+ "en-uK": "Engelska (Storbritannien)",
+ "en-uS": "Engelska (USA)",
+ "en-zA": "Engelska (Sydafrika)",
+ "en-zW": "Engelska (Zimbabwe)",
+ "fr-bE": "Franska (Belgien)",
+ "fr-cA": "Franska (Kanada)",
+ "fr-cH": "Franska (Schweiz)",
+ "fr-fR": "Franska (Frankrike)",
+ "fr-lU": "Franska (Luxemburg)",
+ "fr-mC": "Franska (Monaco)",
+ "de-aT": "Tyska (Österrike)",
+ "de-cH": "Tyska (Schweiz)",
+ "de-dE": "Tyska (Tyskland)",
+ "de-lI": "Tyska (Liechtenstein)",
+ "de-lU": "Tyska (Luxemburg)",
+ "iu-cans": "Inuktitut (syllabisk, Kanada)",
+ "iu-latn": "Inuktitut (latinsk, Kanada)",
+ "it-cH": "Italienska (Schweiz)",
+ "it-iT": "Italienska (Italien)",
+ "ms-bN": "Malajiska (Brunei Darussalam)",
+ "ms-mY": "Malajiska (Malaysia)",
+ "mn-cN": "Mongoliska (traditionell mongoliska, Kina)",
+ "mn-mN": "Mongoliska (kyrillisk, Mongoliet)",
+ "no-nB": "Norska, bokmål (Norge)",
+ "no-nn": "Norska, nynorsk (Norge)",
+ "pt-bR": "Portugisiska (Brasilien)",
+ "pt-pT": "Portugisiska (Portugal)",
+ "quz-bO": "Quechua (Bolivia)",
+ "quz-eC": "Quechua (Ecuador)",
+ "quz-pE": "Quechua (Peru)",
+ "smj-nO": "Lulesamiska (Norge)",
+ "smj-sE": "Lulesamiska (Sverige)",
+ "se-fI": "Nordsamiska (Finland)",
+ "se-nO": "Nordsamiska (Norge)",
+ "se-sE": "Nordsamiska (Sverige)",
+ "sma-nO": "Sydsamiska (Norge)",
+ "sma-sE": "Sydsamiska (Sverige)",
+ "smn": "Enaresamiska (Finland)",
+ "sms": "Skoltsamiska (Finland)",
+ "sr-Cyrl-bA": "Serbiska (kyrillisk)",
+ "sr-Cyrl-rS": "Serbiska (kyrillisk, Serbien och Montenegro [f.d.])",
+ "sr-Latn-bA": "Serbiska (latinsk)",
+ "sr-Latn-rS": "Serbiska (latinsk, Serbien)",
+ "dsb": "Lågsorbiska (Tyskland)",
+ "hsb": "Högsorbiska (Tyskland)",
+ "es-es-tradnl": "Spanska (Spanien, traditionell sort)",
+ "es-aR": "Spanska (Argentina)",
+ "es-bO": "Spanska (Bolivia)",
+ "es-cL": "Spanska (Chile)",
+ "es-cO": "Spanska (Colombia)",
+ "es-cR": "Spanska (Costa Rica)",
+ "es-dO": "Spanska (Dominikanska republiken)",
+ "es-eC": "Spanska (Ecuador)",
+ "es-eS": "Spanska (Spanien)",
+ "es-gT": "Spanska (Guatemala)",
+ "es-hN": "Spanska (Honduras)",
+ "es-mX": "Spanska (Mexiko)",
+ "es-nI": "Spanska (Nicaragua)",
+ "es-pA": "Spanska (Panama)",
+ "es-pE": "Spanska (Peru)",
+ "es-pR": "Spanska (Puerto Rico)",
+ "es-pY": "Spanska (Paraguay)",
+ "es-sV": "Spanska (El Salvador)",
+ "es-uS": "Spanska (USA)",
+ "es-uY": "Spanska (Uruguay)",
+ "es-vE": "Spanska (Venezuela)",
+ "sv-fI": "Svenska (Finland)",
+ "uz-cyrl": "Uzbekiska (kyrillisk) (Uzbekistan)",
+ "uz-latn": "Uzbekiska (latinsk) (Uzbekistan)",
+ "af": "Afrikaans (Sydafrika)",
+ "sq": "Albanska (Albanien)",
+ "am": "Amhariska (Etiopien)",
+ "hy": "Armeniska (Armenien)",
+ "as": "Assamesiska (Indien)",
+ "ba": "Basjkiriska (Ryssland)",
+ "eu": "Baskiska (Baskiska)",
+ "be": "Vitryska (Vitryssland)",
+ "br": "Bretonska (Frankrike)",
+ "bg": "Bulgariska (Bulgarien)",
+ "ca": "Katalanska (Katalanska)",
+ "co": "Korsikanska (Frankrike)",
+ "cs": "Tjeckiska (Tjeckien)",
+ "da": "Danska (Danmark)",
+ "prs": "Dari (Afghanistan)",
+ "dv": "Divehi (Maldiverna)",
+ "et": "Estniska (Estland)",
+ "fo": "Färöiska (Färöarna)",
+ "fil": "Filippinska (Filippinerna)",
+ "fi": "Finska (Finland)",
+ "gl": "Galiciska (Galicien)",
+ "ka": "Georgiska (Georgien)",
+ "el": "Grekiska (Grekland)",
+ "gu": "Gujarati (Indien)",
+ "ha": "Haussa (latinsk, Nigeria)",
+ "he": "Hebreiska (Israel)",
+ "hi": "Hindi (Indien)",
+ "hu": "Ungerska (Ungern)",
+ "is": "Isländska (Island)",
+ "ig": "Ibo (Nigeria)",
+ "id": "Indonesiska (Indonesien)",
+ "ga": "Iriska (Irland)",
+ "xh": "isiXhosa (Sydafrika)",
+ "zu": "isiZulu (Sydafrika)",
+ "ja": "Japanska (Japan)",
+ "kn": "Kannada (Indien)",
+ "kk": "Kazakiska (Kazakstan)",
+ "km": "Kambodjanska (Kambodja)",
+ "rw": "Rwanda (Rwanda)",
+ "sw": "Swahili (Kenya)",
+ "kok": "Konkani (Indien)",
+ "ko": "Koreanska (Korea)",
+ "ky": "Kirgiziska (Kirgizistan)",
+ "lo": "Laotiska (Laos)",
+ "lv": "Lettiska (Lettland)",
+ "lt": "Litauiska (Litauen)",
+ "lb": "Luxemburgiska (Luxemburg)",
+ "mk": "Makedonska (Nordmakedonien)",
+ "ml": "Malayalam (Indien)",
+ "mt": "Maltesiska (Malta)",
+ "mi": "Maori (Nya Zeeland)",
+ "mr": "Marathi (Indien)",
+ "moh": "Mohawk (Mohawk)",
+ "ne": "Nepalesiska (Nepal)",
+ "oc": "Occitanska (Frankrike)",
+ "or": "Odia (Indien)",
+ "ps": "Afghanska (Afghanistan)",
+ "fa": "Persiska",
+ "pl": "Polska (Polen)",
+ "pa": "Punjabi (Indien)",
+ "ro": "Rumänska (Rumänien)",
+ "rm": "Rätoromanska (Schweiz)",
+ "ru": "Ryska (Ryssland)",
+ "sa": "Sanskrit (Indien)",
+ "st": "Nordsotho (Sydafrika)",
+ "tn": "Tswana (Sydafrika)",
+ "si": "Singalesiska (Sri Lanka)",
+ "sk": "Slovakiska (Slovakien)",
+ "sl": "Slovenska (Slovenien)",
+ "sv": "Svenska (Sverige)",
+ "syr": "Syriska (Syrien)",
+ "tg": "Tadzjikiska (kyrillisk, Tadzjikistan)",
+ "ta": "Tamil (Indien)",
+ "tt": "Tatariska (Ryssland)",
+ "te": "Telugu (Indien)",
+ "th": "Thailändska (Thailand)",
+ "bo": "Tibetanska (Kina)",
+ "tr": "Turkiska (Turkiet)",
+ "tk": "Turkmeniska (Turkmenistan)",
+ "uk": "Ukrainska (Ukraina)",
+ "ur": "Urdu (Pakistan)",
+ "vi": "Vietnamesiska (Vietnam)",
+ "cy": "Walesiska (Storbritannien)",
+ "wo": "Wolof (Senegal)",
+ "ii": "Yi (Kina)",
+ "yo": "Yoruba (Nigeria)"
+ },
+ "Category": {
+ "airPlay": "AirPlay",
+ "airPrint": "AirPrint",
+ "androidDefenderAtp": "Microsoft Defender for Endpoint",
+ "androidDeviceOwnerApplications": "Program",
+ "androidForWorkPassword": "Enhetslösenord",
+ "appManagement": "Tillåt eller blockera appar",
+ "applicationGuard": "Microsoft Defender Application Guard",
+ "applicationRestrictions": "Begränsade appar",
+ "applicationVisibility": "Visa eller dölj appar",
+ "applications": "Appbutik",
+ "applicationsAndGames": "App Store, dokumentvisning, spel",
+ "applicationsAndGoogle": "Google Play Store",
+ "appsAndExperience": "Appar och användarupplevelse",
+ "associatedDomains": "Tillhörande domäner",
+ "autonomousSingleAppMode": "Autonomt enappsläge",
+ "azureOperationalInsights": "Azure Operational Insights",
+ "bitLocker": "Windows-kryptering",
+ "browser": "Webbläsare",
+ "builtinApps": "Inbyggda appar",
+ "cellular": "Mobilnät",
+ "cloudAndStorage": "Moln och lagring",
+ "cloudPrint": "Molnskrivare",
+ "complianceEmailProfile": "E-post",
+ "connectedDevices": "Anslutna enheter",
+ "connectivity": "Mobilnät och anslutning",
+ "contentCaching": "Cachelagring av innehåll",
+ "controlPanelAndSettings": "Kontrollpanel och inställningar",
+ "credentialGuard": "Microsoft Defender Credential Guard",
+ "customCompliance": "Anpassad regelefterlevnad",
+ "customCompliancePreview": "Anpassad efterlevnad (förhandsversion)",
+ "customConfiguration": "Anpassad konfigurationsprofil",
+ "customOMASettings": "Anpassade OMA-URI-inställningar",
+ "customPreferences": "Prioritetsfil",
+ "defender": "Microsoft Defender Antivirus",
+ "defenderAntivirus": "Microsoft Defender Antivirus",
+ "defenderExploitGuard": "Microsoft Defender Exploit Guard",
+ "defenderFirewall": "Microsoft Defender-brandvägg",
+ "defenderLocalSecurityOptions": "Säkerhetsalternativ för lokal enhet",
+ "defenderSecurityCenter": "Microsoft Defender Säkerhetscenter",
+ "deliveryOptimization": "Leveransoptimering",
+ "derivedCredentialAuthenticationConfiguration": "Härledd autentiseringsuppgift",
+ "deviceExperience": "Enhetsupplevelse",
+ "deviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
+ "deviceGuard": "Microsoft Defender Application Control",
+ "deviceHealth": "Enhetens hälsotillstånd",
+ "devicePassword": "Enhetslösenord",
+ "deviceProperties": "Enhetsegenskaper",
+ "deviceRestrictions": "Allmänt",
+ "deviceSecurity": "Systemsäkerhet",
+ "display": "Visning",
+ "domainJoin": "Domänanslutning",
+ "domains": "Domäner",
+ "edgeBrowser": "Äldre Microsoft Edge (version 45 och tidigare)",
+ "edgeBrowserSmartScreen": "Microsoft Defender SmartScreen",
+ "edgeKiosk": "Microsoft Edge-kioskläge",
+ "editionUpgrade": "Uppgradering av utgåva",
+ "education": "Utbildning",
+ "educationDeviceCerts": "Enhetscertifikat",
+ "educationStudentCerts": "Elevcertifikat",
+ "educationTakeATest": "Gör ett prov",
+ "educationTeacherCerts": "Lärarcertifikat",
+ "emailProfile": "E-post",
+ "enterpriseDataProtection": "Windows Information Protection",
+ "expeditedCheckin": "Konfiguration för hantering av mobil enhet",
+ "extensibleSingleSignOn": "Tillägg för enkel inloggning",
+ "filevault": "FileVault",
+ "firewall": "Brandvägg",
+ "games": "Spel",
+ "gatekeeper": "Gatekeeper",
+ "healthMonitoring": "Hälsoövervakning",
+ "homeScreenLayout": "Hemskärmslayout",
+ "iOSWallpaper": "Skrivbordsunderlägg",
+ "importedPFX": "PKCS-importerat certifikat",
+ "iosDefenderAtp": "Microsoft Defender for Endpoint",
+ "iosKiosk": "Kiosk",
+ "kernelExtensions": "Kerneltillägg",
+ "keyboardAndDictionary": "Tangentbord och ordlista",
+ "kiosk": "Kiosk",
+ "kioskAndroidEnterprise": "Särskilda enheter",
+ "kioskConfiguration": "Kiosk",
+ "kioskConfigurationV2": "Kiosk",
+ "kioskWebBrowser": "Kiosk-webbläsare",
+ "lockScreenMessage": "Meddelande på låsskärm",
+ "lockedScreenExperience": "Låst skärm",
+ "logging": "Rapportering och telemetri",
+ "loginItems": "Inloggningsalternativ",
+ "loginWindow": "Inloggningsfönster",
+ "macDefenderAtp": "Microsoft Defender for Endpoint",
+ "maintenance": "Underhåll",
+ "malware": "Skadlig kod",
+ "messaging": "Meddelanden",
+ "networkBoundary": "Nätverksgräns",
+ "networkProxy": "Nätverksproxy",
+ "notifications": "Appnotiser",
+ "pKCS": "PKCS-certifikat",
+ "password": "Lösenord",
+ "personalProfile": "Privat profil",
+ "personalization": "Anpassning",
+ "policyOverride": "Åsidosätt grupprincip",
+ "powerSettings": "Energiinställningar",
+ "printer": "Skrivare",
+ "privacy": "Sekretess",
+ "privacyPerApp": "Sekretessundantag per app",
+ "privacyPreferences": "Sekretessinställningar",
+ "projection": "Projektion",
+ "sCCMCompliance": "Configuration Manager-kompatibilitet",
+ "sCEP": "SCEP-certifikat",
+ "sCEPProperties": "SCEP-certifikat",
+ "sMode": "Växla läge (endast Windows Insider)",
+ "safari": "Safari",
+ "search": "Sök",
+ "session": "Session",
+ "sharedDevice": "Delad iPad",
+ "sharedPCAccountManager": "Delad enhet för flera användare",
+ "singleSignOn": "Enkel inloggning",
+ "smartScreen": "Microsoft Defender SmartScreen",
+ "softwareUpdates": "Inställningar",
+ "start": "Start",
+ "systemExtensions": "Systemtillägg",
+ "systemSecurity": "Systemsäkerhet",
+ "trustedCert": "Betrott certifikat",
+ "updates": "Uppdateringar",
+ "userRights": "Användarrättigheter",
+ "usersAndAccounts": "Användare och konton",
+ "vPN": "Bas-VPN",
+ "vPNApps": "Automatisk VPN",
+ "vPNAppsAndTrafficRules": "Appar och trafikregler",
+ "vPNConditionalAccess": "Villkorlig åtkomst",
+ "vPNConnectivity": "Anslutningar",
+ "vPNDNSTriggers": "DNS-inställningar",
+ "vPNIKEv2": "IKEv2-inställningar",
+ "vPNProxy": "Proxy",
+ "vPNSplitTunneling": "Delade tunnlar (Split Tunneling)",
+ "vPNTrustedNetwork": "Identifiering av betrott nätverk",
+ "webContentFilter": "Webbinnehållsfilter",
+ "wiFi": "Trådlöst",
+ "win10Wifi": "Trådlöst",
+ "windowsAtp": "Microsoft Defender for Endpoint",
+ "windowsDefenderATP": "Microsoft Defender for Endpoint",
+ "windowsHelloForBusiness": "Windows Hello för företag",
+ "windowsSpotlight": "Windows Spotlight",
+ "wiredNetwork": "Kabelanslutet nätverk",
+ "wireless": "Trådlöst",
+ "wirelessProjection": "Trådlös projektion",
+ "workProfile": "Arbetsprofilinställningar",
+ "workProfilePassword": "Lösenord för arbetsprofil",
+ "xboxServices": "Xbox-tjänster",
+ "zebraMx": "MX-profil (endast Zebra)",
+ "complianceActionsLabel": "Åtgärder vid inkompatibilitet"
+ },
+ "WindowsFeatureUpdateProfile": {
+ "Details": {
+ "Description": {
+ "label": "Beskrivning"
+ },
+ "FeatureDeploymentSettings": {
+ "header": "Inställningar för funktionsdistribution"
+ },
+ "FeatureUpdateVersion": {
+ "infoballoon": "Den här funktionen kan inte nedgradera en enhet.",
+ "label": "Funktionsuppdatering som ska distribueras"
+ },
+ "GradualRolloutEndDate": {
+ "label": "Tillgänglighet för slutlig grupp"
+ },
+ "GradualRolloutInterval": {
+ "label": "Dagar mellan grupper"
+ },
+ "GradualRolloutStartDate": {
+ "label": "Tillgänglighet för första gruppen"
+ },
+ "Name": {
+ "label": "Namn"
+ },
+ "RolloutOptions": {
+ "label": "Distributionsalternativ"
+ },
+ "RolloutSettings": {
+ "header": "När vill du göra uppdateringen tillgänglig i Windows Update?"
+ },
+ "ScopeSettings": {
+ "header": "Ställ in omfångstaggar för den här principen."
+ },
+ "StartDateOnlyStartDate": {
+ "label": "Första tillgängliga datum"
+ },
+ "bladeTitle": "Funktionsuppdateringsdistributioner",
+ "deploymentSettingsTitle": "Distributionsinställningar",
+ "loadError": "Det gick inte att läsa in!",
+ "windows11EULA": "Genom att markera användning av den här funktionsuppdateringen när du använder detta operativsystem på en enhet godkänner du att (1) den tillämpliga Windows-licensen köptes genom volymlicensiering, eller (2) du har behörighet att binda din organisation och accepterar å organisationens vägnar relevanta Licensvillkor för Programvara från Microsoft som du hittar här {0}."
+ },
+ "Notifications": {
+ "deploymentSaved": "{0} har sparats.",
+ "newFeatureUpdateDeploymentCreated": "Ny distribution av funktionsuppdatering har skapats."
+ },
+ "TabName": {
+ "deploymentSettings": "Distributionsinställningar",
+ "groupAssignmentSettings": "Tilldelningar",
+ "scopeSettings": "Omfångstaggar"
+ }
+ },
+ "WIPPinRequirements": {
+ "WipLowercaseCharacterPinRequirements": {
+ "allow": "Tillåt användning av gemener i PIN-kod",
+ "notAllow": "Tillåt inte användning av gemener i PIN-kod",
+ "requireAtLeastOne": "Kräv att minst en gemen bokstav används i PIN-kod"
+ },
+ "WipSpecialCharacterPinRequirements": {
+ "allow": "Tillåt användning av specialtecken i PIN-kod",
+ "notAllow": "Tillåt inte användning av specialtecken i PIN-kod",
+ "requireAtLeastOne": "Kräv att minst ett specialtecken används i PIN-kod"
+ },
+ "WipUppercaseCharacterPinRequirements": {
+ "allow": "Tillåt användning av versaler i PIN-kod",
+ "notAllow": "Tillåt inte användning av versaler i PIN-kod",
+ "requireAtLeastOne": "Kräv att minst en versal bokstav används i PIN-kod"
+ }
+ },
+ "OutlookAppConfigSettings": {
+ "AllowUserToChangeSetting": {
+ "title": "Tillåt användaren att ändra inställning",
+ "tooltip": "Ange om användaren får ändra inställningen."
+ },
+ "AllowWorkAccounts": {
+ "title": "Tillåt endast arbets- eller skolkonton",
+ "tooltip": " När den här inställningen är aktiverad kan användarna inte lägga till privata mejl och lagringskonton i Outlook. En användare som har ett lagt till ett privat konto i Outlook ombeds att ta bort det privata kontot. Om användaren inte tar bort det privata kontot går det inte att lägga till arbets- eller skolkontot."
+ },
+ "BlockExternalImages": {
+ "title": "Blockera externa bilder",
+ "tooltip": "När Blockera externa bilder är aktiverat går det inte att ladda ned bilder från Internet som är inbäddade i meddelandetexten. När alternativet inte är konfigurerat är standardappinställningen Av"
+ },
+ "ConfigureEmail": {
+ "title": "Ställ in e-postkontoinställningar"
+ },
+ "DefaultAppSignatureSetting": {
+ "Tooltip": {
+ "android": "Standardsignatur för app visar om appen ska använda Skaffa Outlook för Android som standardsignatur när meddelanden skrivs. Om inställningen är Av, används ingen standardsignatur utan användarna kan lägga till egna signaturer.\r\n\r\nNär alternativet inte är konfigurerat är standardappinställningen På.",
+ "iOS": "Standardsignatur för app visar om appen ska använda Skaffa Outlook för iOS som standardsignatur när meddelanden skrivs. Om inställningen är Av, används ingen standardsignatur utan användarna kan lägga till egna signaturer.\r\n\r\nNär alternativet inte är konfigurerat är standardappinställningen På."
+ },
+ "title": "Standardsignatur för app"
+ },
+ "OfficeFeedReplies": {
+ "title": "Identifieringsflöde",
+ "tooltip": "Identifieringsflödet täcker de Office-filer du använder mest. Det här flödet aktiveras automatiskt när Delve har aktiverats för användaren. När alternativet inte är konfigurerat är standardappinställningen På."
+ },
+ "OrganizeMailByThread": {
+ "title": "Sortera e-post efter tråd",
+ "tooltip": "Standardfunktionssättet i Outlook är att slå ihop mejlkonversationer till en trådad konversationsvy. Om inställningen är inaktiverad visas varje mejl enskilt i Outlook och grupperas inte efter tråd."
+ },
+ "PlayMyEmails": {
+ "title": "Spela upp mina e-postmeddelanden",
+ "tooltip": "Funktionen Spela upp mina e-postmeddelanden är inte aktiverad som standard i appen men visas för behöriga användare via en banderoll i inkorgen. När funktionen är inställd på Av, visas den inte för behöriga användare i appen. Användarna kan manuellt aktivera Spela upp mina e-postmeddelanden inifrån appen även när funktionen är Av. När den är inställd på Inte konfigurerat är standardappinställningen På och funktionen visas för behöriga användare."
+ },
+ "SuggestedReplies": {
+ "title": "Föreslagna svar",
+ "tooltip": "När du öppnar ett meddelande kan du få svarsförslag från Office under meddelandet. Om du markerar ett förslag på svar kan du redigera det innan du skickar det."
+ },
+ "SyncCalendars": {
+ "title": "Synkronisera kalendrar",
+ "tooltip": "Ställ in om användarna ska kunna synkronisera Outlook-kalendern med den inbyggda kalenderappen och databasen."
+ },
+ "TextPredictions": {
+ "title": "Textförutsägelse",
+ "tooltip": "Outlook kan föreslå ord och fraser medan du skriver meddelanden. Svep för att godkänna ett förslag från Outlook. När alternativet inte är konfigurerat är standardappinställningen På."
+ },
+ "ThemesEnabled": {
+ "title": "Aktiverade teman",
+ "tooltip": "Ange om användaren får använda ett anpassat visuellt tema."
+ }
+ },
+ "AssignmentFilters": {
+ "assignmentFilterColumnHeader": "Filter",
+ "noFilters": "Inget"
+ },
+ "Platform": {
+ "all": "Alla",
+ "android": "Android-enhetsadministratör",
+ "androidAOSP": "Android (AOSP)",
+ "androidEnterprise": "Android Enterprise",
+ "androidForWork": "Android Enterprise",
+ "androidWorkProfile": "Android Enterprise",
+ "common": "Gemensam",
+ "iOS": "iOS/iPadOS",
+ "iosAndAndroidPlatformLabel": "iOS och Android",
+ "iosCommaAndroidPlatformLabel": "iOS, Android",
+ "linux": "Linux",
+ "macOS": "macOS",
+ "unknown": "Okänd",
+ "unsupported": "Stöds inte",
+ "windows": "Windows",
+ "windows10": "Windows 10 och senare",
+ "windows10CM": "Windows 10 och senare (ConfigMgr)",
+ "windows10Holo": "Windows 10 Holographic",
+ "windows10Mobile": "Windows 10 Mobile",
+ "windows10Team": "Windows 10 Team",
+ "windows10X": "Windows 10X",
+ "windows8": "Windows 8.1 och senare",
+ "windows8And10": "Windows 8 och 10",
+ "windowsPhone": "Windows Phone 8.1",
+ "windows10AndLater": "Windows 10 och senare",
+ "windows10AndWindowsServer": "Windows 10, Windows 11 och Windows Server (ConfigMgr)",
+ "windows10andLaterCM": "Windows 10 och senare (ConfigMgr)",
+ "holoLens": "HoloLens",
+ "surfaceHub2": "Surface Hub 2",
+ "surfaceHub2S": "Surface Hub 2S",
+ "windowsPC": "Windows-dator"
+ },
+ "AppInformationTab": {
+ "Error": {
+ "multipleChildApps": "En verksamhetsspecifik macOS-app kan bara installeras som hanterad när det uppladdade paketet innehåller en enda app."
+ },
+ "Info": {
+ "AppStoreUrl": {
+ "android": "Ange länken till appresentationen i Google Play-butiken. Exempel:",
+ "androidLink": "https://play.google.com/store/apps/details?id=com.microsoft.office.outlook",
+ "windows": "Ange länken till appresentationen i Microsoft Store. Exempel:",
+ "windowsLink": "https://www.microsoft.com/en-us/p/microsoft-to-do-lists-tasks-reminders/9nblggh5r558"
+ },
+ "appPackageFile": "En fil som innehåller din app i ett format som kan läsas in separat på en enhet. Giltiga pakettyper är: Android (.apk), iOS (.ipa), macOS (.pkg, .intunemac), Windows (.msi, .appx, .appxbundle, .msix och .msixbundle).",
+ "applicableDeviceType": "Välj vilka typer av enheter som appen kan installeras på.",
+ "category": "Kategorisera appen för att göra det lättare för användarna att sortera och hitta den på företagsportalen. Du kan välja flera kategorier.",
+ "categoryLink": "https://docs.microsoft.com/en-us/intune/apps/apps-add#create-and-edit-categories-for-apps",
+ "description": "Hjälp enhetsanvändarna att förstå vilken typ av app det är och/eller vad de kan göra med appen. Den här beskrivningen visas för dem på företagsportalen.",
+ "developer": "Namnet på företaget eller den privatperson som har utvecklat appen. Informationen visas för alla som loggar in på administrationscentret.",
+ "displayVersion": "Appens version. Den här informationen visas för användarna på företagsportalen.",
+ "infoUrl": "Länka personer till en webbplats eller till dokumentation som innehåller mer information om appen. Webbadressen till informationen visas för användarna på företagsportalen.",
+ "isFeatured": "Aktuella appar får en framträdande plats på företagportalen så att användarna snabbt hittar dem.",
+ "learnMore": "Läs mer",
+ "logo": "Ladda upp en logotyp som hör till appen. Logotypen visas bredvid appen i hela företagsportalen.",
+ "macOSDmgAppPackageFile": "En fil som innehåller appen i ett format som kan läsas in separat på en enhet. Giltig pakettyp: .dmg.",
+ "minOperatingSystem": "Välj den tidigaste operativsystemversionen som appen kan installeras på. Om du tilldelar appen en enhet med ett tidigare operativsystem kommer den inte att installeras.",
+ "name": "Lägg till ett namn på appen. Namnet visas i din Intune-applista och för användare på företagsportalen.",
+ "notes": "Lägg till ytterligare anteckningar om appen. Anteckningarna visas för användare som loggar in på administrationscentret.",
+ "owner": "Namnet på den person i organisationen som hanterar licenser eller är kontaktperson för den här appen. Namnet visas för alla som loggar in på administrationscentret.",
+ "packageName": "Kontakta enhetstillverkaren för att få appaketets namn. Exempel på paketnamn: com.example.app",
+ "privacyUrl": "Ange en länk för personer som vill veta mer om appens sekretessinställningar och villkor. Webbadressen till sekretessinställningarna visas för användarna på företagsportalen.",
+ "publisher": "Namnet på utvecklaren eller företaget som distribuerar appen. Den här informationen visas för användarna på företagsportalen.",
+ "selectApp": "Sök i App Store efter iOS-appar som du vill distribuera med Intune.",
+ "useManagedBrowser": "När en användare öppnar webbappen öppnas den i en Intune-skyddad webbläsare, till exempel Microsoft Edge eller Intune Managed Browser. Den här inställningen gäller både iOS- och Android-enheter.",
+ "useManagedBrowserLink": "https://docs.microsoft.com/en-us/intune/apps/app-configuration-managed-browser",
+ "win32AppPackageFile": "En fil som innehåller din app i ett format som kan läsas in separat på en enhet. Giltig pakettyp: .intunewin."
+ },
+ "descriptionPreview": "Förhandsversion",
+ "descriptionRequired": "Beskrivning måste anges.",
+ "editDescription": "Redigera beskrivning",
+ "macOSMinOperatingSystemAdditionalInfo": "Det minsta operativsystemet för att ladda upp en .pkg-fil är macOS 10.14. Ladda upp en .intunemac-fil för att välja ett äldre lägsta operativsystem.",
+ "name": "Appinformation",
+ "nameForOfficeSuitApp": "Information om appsvit"
+ },
+ "Tooltips": {
+ "PolicySettings": {
+ "TouchId1": {
+ "android": "På Android kan du tillåta fingeravtrycksidentifiering istället för en PIN-kod. Användare ombeds att lämna sitt fingeravtryck när de ska komma åt den här appen från sina arbetskonton.",
+ "iOS": "På iOS-/iPadOS-enheter kan du tillåta fingeravtrycksidentifiering istället för PIN-kod. Användarna uppmanas att använda fingeravtryck när de öppnar appen via arbetskontot.",
+ "mac": "På Mac-enheter kan du tillåta fingeravtrycksidentifiering istället för PIN-kod. Användarna uppmanas att använda fingeravtryck när de öppnar appen via arbetskontot."
+ },
+ "appSharingFromLevel1": "Välj något av de följande alternativen för att ange de appar som den här appen kan ta emot data från:",
+ "appSharingFromLevel2": "{0}: Tillåt endast mottagning av data i organisationsdokument eller konton från andra principhanterade appar",
+ "appSharingFromLevel3": "{0}: Tillåt mottagning av data i organisationsdokument eller konton från valfri app",
+ "appSharingFromLevel4": "{0}: Tillåt inte mottagning av data i organisationsdokument eller konton från någon app",
+ "appSharingFromLevel5": "{0}: Tillåt dataöverföring från alla appar och behandla alla inkommande data utan användaridentitet som organisationsdata.",
+ "appSharingToLevel1": "Välj något av de följande alternativen för att ange de appar som den här appen kan ta skicka data till:",
+ "appSharingToLevel2": "{0}: Tillåt endast sändning av organisationsdata till andra principhanterade appar",
+ "appSharingToLevel3": "{0}: Tillåt sändning av organisationsdata till valfri app",
+ "appSharingToLevel4": "{0}: Tillåt inte sändning av organisationsdata till någon app",
+ "appSharingToLevel5": "{0}: Tillåt bara överföring till andra principhanterade appar och filöverföring till andra mobilenhetshanterade appar på registrerade enheter",
+ "appSharingToLevel6": "{0}: Tillåt bara överföring till andra principhanterade appar och filtrera operativsystem i dialogrutor Öppna i/Dela till att bara visa principhanterade appar",
+ "conditionalEncryption1": "Välj {0} om du vill inaktivera appkryptering för intern applagring när enhetskryptering har upptäckts på en registrerad enhet.",
+ "conditionalEncryption2": "Obs! Intune kan bara identifiera enhetsregistrering med Intune MDM. Extern applagring krypteras fortfarande för att säkerställa att data inte kan nås av ohanterade program.",
+ "contactSyncMac": "Om det är inaktiverat kan inte appar spara kontakter i den interna adressboken.",
+ "contactsSync": "Välj Blockera för att förhindra att principhanterade appar sparar data i enhetens inbyggda appar (t.ex. kontakter, kalender och widgetar) eller för att förhindra att tillägg används i de principhanterade apparna. Om du väljer Tillåt kan den principhanterade appen spara data i de interna apparna eller använda tillägg, om dessa funktioner stöds och aktiveras i den principhanterade appen.
Appar kan ge ytterligare konfigurationsfunktioner med appkonfigurationsprinciper. Mer information finns i appens dokumentation.",
+ "encryptionAndroid1": "För appar som omfattas av en princip för Intune-mobilprogramhantering tillhandahålls kryptering av Microsoft. Data krypteras synkront under I/O-åtgärder enligt inställningen i hanteringsprincipen för mobila program. Hanterade appar på Android använder AES-128-kryptering i CBC-läge med hjälp av plattformens kryptografibibliotek. Krypteringsmetoden är inte FIPS 140-2-kompatibel. SHA-256-kryptering stöds som explicit instruktion med SigAlg-parametern och fungerar bara på 4.2-enheter och senare. Innehåll på enhetslagringen krypteras alltid.",
+ "encryptionAndroid2": "När du kräver kryptering i din apprincip måste slutanvändarna konfigurera och använda PIN-koder för att få åtkomst till sina enheter. Om någon PIN-kod inte har konfigurerats för enhetsåtkomst startar inte apparna, utan istället visas ett meddelande för slutanvändaren som säger: \"Ditt företag kräver att du först aktiverar en PIN-kod för enheten för att få åtkomst till det här programmet.\"",
+ "encryptionMac1": "För appar som omfattas av en princip för Intune-mobilprogramhantering tillhandahålls kryptering av Microsoft. Data krypteras synkront under I/O-åtgärder enligt inställningen i hanteringsprincipen för mobila program. Hanterade appar på Mac använder AES-128-kryptering i CBC-läge med hjälp av plattformskryptografibibliotek. Krypteringsmetoden är inte FIPS 140-2-kompatibel. SHA-256-kryptering stöds som explicit instruktion med SigAlg-parametern och fungerar bara på 4.2-enheter och senare. Innehåll på enhetslagringen krypteras alltid.",
+ "faceId1": "När det är tillämpligt kan du tillåta att ansiktsidentifiering används istället för PIN-kod. Användare uppmanas då att använda ansiktsidentifiering när de ansluter till den här appen med sina arbetskonton.",
+ "faceId2": "Välj Ja om du vill tillåta ansiktsidentifiering istället för PIN-kod för appåtkomst.",
+ "managementLevelsAndroid1": "Använd det här alternativet för att ange huruvida principen avser Android-enhetsadministratörsenheter, Android Enterprise-enheter eller ohanterade enheter.",
+ "managementLevelsAndroid2": "{0}: Ohanterade enheter är enheter där ingen Intune-mobilenhetshantering har identifierats. Det omfattar även mobilenhetshanteringsleverantörer från tredje part.",
+ "managementLevelsAndroid3": "{0}: Intune-hanterade enheter som använder Androids enhetsadministrations-API.",
+ "managementLevelsAndroid4": "{0}: Intune-hanterade enheter som använder Android Enterprise-arbetsprofiler eller Android Enterprise fullständig enhetshantering.",
+ "managementLevelsIos1": "Använd det här alternativet för att ange om principen avser enheter hanterade via mobilenhetshantering (MDM) eller ohanterade enheter.",
+ "managementLevelsIos2": "{0}: Ohanterade enheter är enheter där ingen Intune-mobilenhetshantering har identifierats. Det omfattar även mobilenhetshanteringsleverantörer från tredje part.",
+ "managementLevelsIos3": "{0}: Hanterade enheter hanteras av Intune-mobilenhetshantering.",
+ "minAppVersion": "Ange det lägsta appversionsnumret som en användare måste ha för att få säker åtkomst till appen.",
+ "minAppVersionWarning": "Ange det rekommenderade lägsta appversionsnumret som en användare måste ha för säker åtkomst till appen.",
+ "minOsVersion": "Ange den lägsta operativsystemsversionen som en användare måste ha för att få säker åtkomst till appen.",
+ "minOsVersionWarning": "Ange den rekommenderade lägsta operativsystemsversionen som en användare måste ha för att få säker åtkomst till appen.",
+ "minPatchVersion": "Definiera den äldsta Android-säkerhetsuppdateringsnivån som krävs för att en användare ska ha säker åtkomst till appen.",
+ "minPatchVersionWarning": "Definiera den äldsta rekommenderade Android-säkerhetsuppdateringsnivån som en användare kan ha för att få säker åtkomst till appen.",
+ "minSdkVersion": "Ange den lägsta versionen av SDK för Intune-programmets skyddsprincip som en användare måste ha för att få säker åtkomst till appen.",
+ "requireAppPinDefault": "Välj Ja om du vill inaktivera appens PIN-kod när ett enhetslås upptäcks på en registrerad enhet.
",
+ "targetAllApps1": "Använd det här alternativet om principen ska avse appar på enheter i valfritt hanteringsläge.",
+ "targetAllApps2": "Den här inställningen ersätts vid en principkonflikt om användaren har angett en princip avsedd för ett särskilt hanteringsläge.",
+ "touchId2": "Välj {0} om du vill kräva identifiering med fingeravtryck istället för PIN-kod för appåtkomst."
+ },
+ "Tap": {
+ "pinResetAfterNumberOfDays": "Ange efter hur många dagar användaren måste återställa PIN-koden.",
+ "previousPinBlockCount": "Här visas antalet tidigare PIN-koder som sparas i Intune. Eventuellt nya PIN-koder får inte vara desamma som de koder som sparas i Intune."
+ },
+ "WipPolicySettings": {
+ "25": "",
+ "allowWindowsSearch": "Det här gör att Windows Search kan fortsätta söka igenom krypterade data.",
+ "authoritativeIpRanges": "Aktivera den här inställningen om du vill åsidosätta Windows automatiska identifiering av IP-intervall.",
+ "authoritativeProxyServers": "Aktivera den här inställningen om du vill åsidosätta Windows automatiska identifiering av proxyservrar.",
+ "checkInput": "Kontrollera inmatningens giltighet",
+ "dataRecoveryCert": "Ett återställningscertifikat är ett speciellt EFS-certifikat (krypterande filsystem) som du kan använda för att återställa krypterade filer om du skulle tappa bort eller skada krypteringsnyckeln. Du måste skapa återställningscertifikatet och ange det här. Mer information hittar du här",
+ "enterpriseCloudResources": "Ange molnresurser som ska betraktas som företagsresurser och skyddas av Windows informationsskyddsprincip. Du kan ange flera resurser genom att ange ett |-tecken mellan varje.
Om du har ställt in en proxyserver i företaget kan du ange den proxyserver genom vilken trafik till de angivna molnresurserna ska dirigeras.
webbadress[,proxy]|webbadress[,proxy]
Utan proxy: contoso.sharepoint.com|contoso.visualstudio.com
Med proxy: contoso.sharepoint.com,proxy.contoso.com|contoso.visualstudio.com,proxy.contoso.com
",
+ "enterpriseIPv4Ranges": "Ange de IPv4-intervall som utgör ditt företagsnätverk. De används tillsammans med företagsnätverkets domännamn som du anger för att definiera nätverkets gräns.
Windows informationsskydd måste vara aktiverat för att den här inställningen ska gälla.
Du kan ange flera värden genom att ange ett kommatecken mellan varje.
Till exempel: 3.4.0.1-3.4.255.255,192.168.1.1-192.168.255.255
",
+ "enterpriseIPv6Ranges": "Ange de IPv6-intervall som utgör ditt företagsnätverk. De används tillsammans med företagsnätverkets domännamn som du anger för att definiera nätverkets gräns.
Du kan ange flera värden genom att ange ett kommatecken mellan varje.
Till exempel: 2001:4898:dc05::-2001:4898:dc05:ffff:ffff:ffff:ffff:ffff,2a01:110::-2a01:110:7fff:ffff:ffff:ffff:ffff:ffff
",
+ "enterpriseInternalProxyServers": "Om du har ställt in en proxyserver i företaget kan du ange den proxyserver genom vilken trafik till de angivna molnresurserna i inställningarna för företagsmolnresurser ska dirigeras.
Du kan ange flera värden genom att ange ett semikolon mellan varje.
Till exempel: contoso.internalproxy1.com;contoso.internalproxy2.com
",
+ "enterpriseNetworkDomainNames": "Ange de DNS-namn som utgör ditt företagsnätverk. De används tillsammans med de IP-intervall som du anger för att definiera företagsnätverkets gräns. Du kan ange flera värden genom att ange ett kommatecken mellan varje.
Windows informationsskydd måste vara aktiverat för att den här inställningen ska gälla.
Till exempel: corp.contoso.com,region.contoso.com
",
+ "enterpriseProtectedDomainNames": "Ange de DNS-namn som utgör ditt företagsnätverk. De används tillsammans med de IP-intervall som du anger för att definiera företagsnätverkets gräns. Du kan ange flera värden genom att ange ett lodrätt streck, \"|\", mellan varje.
Windows informationsskydd måste vara aktiverat för att den här inställningen ska gälla.
Till exempel: corp.contoso.com|region.contoso.com
",
+ "enterpriseProxyServers": "Om du har externt riktade proxyservrar i företagsnätverket anger du dem här. När du anger en proxyserveradress bör du också ange genom vilken port trafik ska tillåtas och skyddas via Windows informationsskydd.
Obs! Listan får inte innehålla servrar från listan över företagets interna proxyservrar. Du kan ange flera värden genom att ange ett semikolon mellan varje.
Till exempel: proxy.contoso.com:80;proxy2.contoso.com:80
",
+ "maxInactivityTime1": "Anger hur lång tid som får passera (i minuter) innan en inaktiv enhet låses med PIN-kod eller lösenord. Användarna kan välja en befintlig tidsgräns som är lägre än den angivna maxtiden i Inställningar. Tänk på att Lumia 950 och 950XL har en högsta tidsgräns på 5 minuter, oavsett vilket värde som anges i den här principen.",
+ "maxInactivityTime2": "0 (standardvärde) – Ingen tidsgräns anges. Standardvärdet 0 tolkas som Ingen tidsgräns anges.",
+ "maxPasswordAttempts1": "Den här principen fungerar på olika sätt på mobila enheter och skrivbordsenheter.",
+ "maxPasswordAttempts2": "På en mobil enhet rensas enheten när användaren når det värde som har angetts i principen.",
+ "maxPasswordAttempts3": "På en skrivbordsenhet rensas inte enheten när användaren når värdet i principen. I stället försätts enheten i BitLocker-återställningsläge vilket gör att data inte kan nås, men de kan återställas. Om BitLocker inte är aktiverat kan principen inte tillämpas.",
+ "maxPasswordAttempts4": "Innan gränsen för antal misslyckade försök nås, skickas användaren till låsskärmen och varnas om att fler försök kommer att låsa datorn. När gränsen nås startar enheten automatiskt om och BitLocker-återställningssidan öppnas. Användaren uppmanas där att ange BitLocker-återställningsnyckeln.",
+ "maxPasswordAttempts5": "0 (standardvärde) – Enheten rensas aldrig när en felaktig PIN-kod eller ett felaktigt lösenord har angetts.",
+ "maxPasswordAttempts6": "Det säkraste värdet är 0 om alla principvärden = 0. I annat fall är principvärdet Min det säkraste värdet.",
+ "mdmDiscoveryUrl": "Ange webbadressen till registreringsslutpunkten för mobilenhetshantering som ska anges av de användare som registrerar sig för mobilenhetshantering. Det anges som standard för Intune.",
+ "minimumPinLength1": "Heltal som anger minsta antal tecken som krävs för PIN-koden. Standardvärdet är 4. Du kan ange lägst 4. Det högsta värdet du kan ange måste vara mindre än värdet för Maximal PIN-längd i principen eller 127, beroende på vilket som är lägst.",
+ "minimumPinLength2": "Om du konfigurerar den här principinställningen måste PIN-längden vara större än eller lika med det här värdet. Om du inaktiverar eller inte konfigurerar den här principinställningen måste PIN-längden vara större än eller lika med 4.",
+ "name": "Namnet på den här nätverksgränsen",
+ "neutralResources": "Om du har autentiseringsslutpunkter för omdirigering i företaget anger du dem här. De platser som anges här betraktas antingen som personliga eller företagsplatser beroende på kontext och anslutning före omdirigeringen.
Du kan ange flera värden genom att ange ett kommatecken mellan varje.
Till exempel: sts.contoso.com,sts.contoso2.com
",
+ "passportForWork1": "Värde som anger Windows Hello för företag som inloggningsmetod i Windows.",
+ "passportForWork2": "Standardvärdet är Sant. Om du ställer in värdet på Falskt kan användaren inte installera Windows Hello för företag förutom på Azure Active Directory-anslutna mobiltelefoner där installation krävs.",
+ "pinExpiration": "Det högsta talet du kan ange för den här principinställningen är 730. Det lägsta är 0. Om du anger 0 upphör användarens PIN-kod aldrig att gälla.",
+ "pinHistory1": "Det högsta talet du kan ange för den här principinställningen är 50. Det lägsta är 0. Om du anger 0 krävs ingen lagring av tidigare PIN-koder.",
+ "pinHistory2": "Den aktuella PIN-koden ingår i den grupp PIN-koder som hör till användarkontot. PIN-kodshistoriken sparas inte under en PIN-kodsåterställning.",
+ "protectUnderLock": "Skyddar appinnehåll när enheten är låst.",
+ "protectionModeBlock": "Blockera: Blockerar företagsdata från att lämna skyddade appar.
",
+ "protectionModeOff": "Av: Användaren kan fritt flytta data från skyddade appar. Inga åtgärder loggas.
",
+ "protectionModeOverride": "Tillåt åsidosättningar: Användarna får en fråga när de försöker flytta data från en skyddad app till en oskyddad app. Om användaren väljer att åsidosätta frågan loggas åtgärden.
",
+ "protectionModeSilent": "Tyst: Användaren kan fritt flytta data från skyddade appar. De här åtgärderna loggas.
",
+ "required": "Obligatorisk",
+ "revokeOnMdmHandoff": "Tillagt i Windows 10, version 1703. Den här principen styr om nycklar för Windows informationstjänst ska återkallas när en enhet uppgraderas från MAM till MDM. Om det är inställt på Av återkallas inte nycklarna och användaren har fortsatt åtkomst till skyddade filer efter uppgraderingen. Det här rekommenderas om MDM-tjänsten är inställd med samma EnterpriseID för Windows informationsskydd som MAM-tjänsten.",
+ "revokeOnUnenroll": "Det här gör att krypteringsnycklarna återkallas när en enhet avregistreras från den här principen.",
+ "rmsTemplateForEdp": "GUID för TemplateID som ska användas för RMS-kryptering. Med hjälp av Azure RMS-mallen kan IT-administratören ange information om vem som har åtkomst till RMS-skyddade filer och hur länge de har åtkomst.",
+ "showWipIcon": "Det här gör att en symbol visas för användarna så att de vet att de befinner sig i ett företagssammanhang.",
+ "useRmsForWip": "Anger om Azure RMS-kryptering ska tillåtas för Windows informationsskydd."
+ },
+ "requireAppPin": "Välj Ja om du vill inaktivera appens PIN-kod när ett enhetslås upptäcks på en registrerad enhet.
Obs! Intune kan inte identifiera enhetsregistrering med en EMM-lösning från tredje part i iOS/iPadOS.
"
+ },
+ "Autopilot": {
+ "AssignResourceAccount": {
+ "createNewCommandMenu": "Skapa ny",
+ "createNewResourceAccountInfo": "\r\nSkapa ett nytt resurskonto under registreringen. Resurskontot läggs till i resurskontotabellen direkt men aktiveras inte förrän enheten registreras och Surface Hub-prenumerationen har kontrollerats. Läs mer om resurskonton
\r\n ",
+ "createNewResourceTitle": "Skapa nytt resurskonto",
+ "deviceNameInvalid": "Enhetsnamnets format är felaktigt",
+ "deviceNameRequired": "Ett enhetsnamn måste anges",
+ "editResourceAccountLabel": "Redigera",
+ "selectExistingCommandMenu": "Välj befintligt"
+ },
+ "Device": {
+ "ComputerName": {
+ "validFormat": "Namnen får innehålla högst 15 tecken och får innehålla bokstäver (a–ö, A–Ö), siffror (0–9) samt bindestreck. Namnen får inte bara bestå av siffror. Namnen får inte innehålla blanksteg."
+ },
+ "Header": {
+ "addressableUserName": "Eget namn för användare",
+ "azureADDevice": "Tillhörande Azure AD-enhet",
+ "batch": "Grupptagg",
+ "dateAssigned": "Tilldelat datum",
+ "deviceAccountFriendlyName": "Eget namn för enhetskonto",
+ "deviceAccountPwd": "Tjänstkontolösenord",
+ "deviceAccountUpn": "Device account",
+ "deviceDisplayName": "Enhetsnamn",
+ "deviceName": "Enhetsnamn",
+ "deviceUseType": "Typ av enhetsanvändning",
+ "enrollmentState": "Registreringsstatus",
+ "intuneDevice": "Tillhörande Intune-enhet",
+ "lastContacted": "Senast kontaktad",
+ "make": "Tillverkare",
+ "model": "Modell",
+ "profile": "Tilldelad profil",
+ "profileStatus": "Profilstatus",
+ "purchaseOrderId": "Inköpsorder",
+ "resourceAccount": "Resurskonto",
+ "serialNumber": "Serienummer",
+ "userPrincipalName": "Användare"
+ },
+ "SurfaceHub": {
+ "friendlyNameRequired": "Ett eget namn krävs",
+ "pwdRequired": "Ett lösenord måste anges.",
+ "upnRequired": "Ett enhetskonto krävs",
+ "upnValidFormat": "Värden kan innehålla bokstäver (a-z, A-Z), siffror (0-9) och bindestreck. Värden får inte innehålla blanksteg."
+ }
+ },
+ "DeviceUseType": {
+ "meetingAndPresentation": "Möten och presentation",
+ "teamCollaboration": "Gruppsamarbete"
+ },
+ "Devices": {
+ "featureDescription": "Med Windows Autopilot kan du anpassa hela välkomstupplevelsen för användarna.",
+ "importErrorStatus": "Vissa enheter importerades inte. Klicka här om du vill ha mer information.",
+ "importPendingStatus": "Import pågår. Tid som förflutit: {0} min. Processen kan ta upp till {1} min."
+ },
+ "DirectoryService": {
+ "activeDirectoryAD": "Hybrid Azure AD-ansluten",
+ "activeDirectoryADLabel": "Hybrid Azure AD med Autopilot",
+ "azureAD": "Azure AD-ansluten",
+ "unknownType": "Okänd typ"
+ },
+ "Filter": {
+ "enrollmentState": "Region",
+ "profile": "Profilstatus"
+ },
+ "OOBE": {
+ "AddressableUserName": {
+ "validateEmpty": "Eget användarnamn måste anges."
+ },
+ "ApplyComputerNameTemplate": {
+ "infoBalloon": "Skapa en namngivningsmall för att lägga till namn på enheterna under registreringen.",
+ "label": "Använd mall för enhetsnamn"
+ },
+ "ApplyComputerNameTemplateDisabled": {
+ "label": "För Hybrid Azure AD-anslutna typer av Autopilot-distributionsprofiler namnges enheterna med hjälp av inställningarna i domänanslutningskonfigurationen."
+ },
+ "ComputerNameTemplate": {
+ "emptyValue": "MyCompany-%RAND:4%",
+ "label": "Ange ett namn",
+ "noDisallowedChars": "Namnet får bara innehålla alfanumeriska tecken, bindestreck, %SERIAL% eller %RAND:x%",
+ "serialLength": "Det går inte att använda fler än 7 tecken med %SERIAL%",
+ "validateLessThan15Chars": "Namnet får innehålla högst 15 tecken",
+ "validateNoSpaces": "Datornamn får inte innehålla mellanslag",
+ "validateNotAllNumbers": "Namnet måste även innehålla bokstäver och/eller bindestreck",
+ "validateNotEmpty": "Namnet får inte vara tomt",
+ "validateOnlyOneMacro": "Namnet får bara innehålla ett av %SERIAL% eller %RAND:x%"
+ },
+ "ConfigureComputerNameTemplate": {
+ "description": "Skapa ett unikt namn för dina enheter. Namnen får innehålla högst 15 tecken, och bokstäver (a–ö, A–Ö), siffror (0–9) och bindestreck. Namnen får inte bara bestå av siffror. Namnen får inte innehålla blanksteg. Använd makrot %SERIAL% om du vill lägga till ett serienummer för maskinvara. Du kan också använda makrot %RAND:x% om du vill lägga till en slumpmässig siffersträng där x är lika med antalet siffror som ska läggas till."
+ },
+ "EnableWhiteGlove": {
+ "infoBalloon": "Aktivera möjligheten att trycka på Windows-tangenten 5 gånger för att köra välkomstprogrammet utan användarautentisering för att registrera enheten och installera alla systemappar och inställningar. Användarappar och inställningar levereras när användaren loggar in.",
+ "label": "Tillåt förallokerad distribution"
+ },
+ "HybridAzureADSkipConnectivityCheck": {
+ "infoBalloon": "Autopilot Hybrid Azure AD-anslutningsflödet fortsätter även om ingen domänkontrollantanslutning upprättas under välkomstprogrammet.",
+ "label": "Hoppa över AD-anslutningskontroll (förhandsversion)"
+ },
+ "accountType": "Användarkontotyp",
+ "accountTypeInfo": "Ange huruvida användarna ska vara administratörer eller standardanvändare på enheten. Tänk på att den här inställningen inte gäller globala administratörskonton eller företagsadministratörskonton. De här kontona kan inte vara standardanvändarkonton eftersom de har åtkomst till administrativa funktioner i Azure AD.",
+ "configOOBEInfo": "\r\nStäll in välkomstprogrammet för Autopilot-enheter\r\n
",
+ "configureDevice": "Distributionsläge",
+ "configureDeviceHintForSurfaceHub2": "Autopilot har bara stöd för självdistributionsläge för Surface Hub 2. I det läget kopplas inte användaren till den registrerade enheten så inga användarautentiseringsuppgifter krävs.",
+ "configureDeviceHintForWindowsPC": "\r\n Distributionsläget avgör om en användare måste ange autentiseringsuppgifter för att etablera enheten.\r\n
\r\n \r\n - \r\n Användarbaserat: Enheterna är kopplade till den användare som registrerar enheten och det krävs användarautentiseringsuppgifter för att etablera enheten\r\n
\r\n - \r\n Självdistribution (förhandsversion): Enheterna är inte kopplade till den användare som registrerar enheten och inga användarautentiseringsuppgifter krävs för att etablera enheten\r\n
\r\n
",
+ "createSurfaceHub2Info": "Ställ in Autopilot-registreringsinställningarna för dina Surface Hub 2-enheter. Som standard är det möjligt att hoppa över användarautentisering i Autopilot under välkomstprogrammet. Läs mer om Windows Autopilot för Surface Hub 2.",
+ "createWindowsPCInfo": "\r\n\r\nFöljande alternativ aktiveras automatiskt för Autopilot-profiler i självdistributionsläge:\r\n
\r\n\r\n - \r\n Hoppa över val av användning på arbete eller hemma\r\n
\r\n - \r\n Hoppa över OEM-registrering och OneDrive-konfiguration\r\n
\r\n - \r\n Hoppa över användarautentisering i välkomstupplevelsen\r\n
\r\n
",
+ "endUserDevice": "Användarbaserat",
+ "hideEscapeLink": "Dölj alternativ för att ändra konto",
+ "hideEscapeLinkInfo": "Alternativen för att ändra konto och börja om med ett annat konto visas på företagsinloggningssidan första gången enheten ställs in respektive på domänfelsidan. Om du vill dölja alternativen måste du ställa in företagsanpassning i Azure Active Directory (Windows 10, 1809 eller senare eller Windows 11 krävs).",
+ "info": "Inställningarna för AutoPilot-profilen avgör vilken välkomstupplevelse användarna får när de startar Windows för första gången. ",
+ "language": "Språk (region)",
+ "languageInfo": "Ange det språk och den region som ska användas.",
+ "licenseAgreement": "Licensvillkor för programvara från Microsoft",
+ "licenseAgreementInfo": "Ange om licensavtalet ska visas för användarna.",
+ "plugAndForgetDevice": "Självdistribution (förhandsversion)",
+ "plugAndForgetGA": "Självdistribution",
+ "privacySettingWarning": "Standardvärdet för diagnostikdatainsamlingen har ändrats för enheter som kör Windows 10, version 1903 och senare eller Windows 11. ",
+ "privacySettings": "Sekretessinställningar",
+ "privacySettingsInfo": "Ange om sekretessinställningar ska visas för användarna.",
+ "showCortanaConfigurationPage": "Cortana-konfiguration",
+ "showCortanaConfigurationPageInfo": "Med Visa aktiveras introduktionen till Cortana-konfiguration under starten.",
+ "skipEULAWarning": "Viktig information om att dölja licensvillkor",
+ "skipKeyboardSelection": "Konfigurera tangentbord automatiskt",
+ "skipKeyboardSelectionInfo": "Om värdet är true hoppar du över sidan med val av tangentbord om språk är inställt.",
+ "subtitle": "AutoPilot-profiler",
+ "title": "Välkomstupplevelse (OOBE)",
+ "useOSDefaultLanguage": "Standardoperativsystem",
+ "userSelect": "Användarval"
+ },
+ "Sync": {
+ "lastRequestedLabel": "Senaste synkroniseringsbegäran",
+ "lastSuccessfulLabel": "Senast slutförda synkronisering",
+ "syncInProgress": "Synkronisering pågår. Kom tillbaka snart.",
+ "syncInitiated": "Synkronisering av AutoPilot-inställningarna har initierats.",
+ "syncSettingsTitle": "Synkronisera AutoPilot-inställningar"
+ },
+ "Title": {
+ "devices": "Windows AutoPilot-enheter"
+ },
+ "Tooltips": {
+ "addressableUserName": "Hälsningsnamn som visas när enheten ställs in.",
+ "azureADDevice": "Gå till enhetsinformationen för tillhörande enhet. Saknas betyder att det inte finns någon tillhörande enhet.",
+ "batch": "Ett strängattribut som kan användas för att identifiera en grupp enheter. Fältet Grupptagg i Intune mappar till OrderID-attributet på Azure AD-enheter.",
+ "dateAssigned": "Tidsstämpel för när profilen tilldelades enheten.",
+ "deviceAccountFriendlyName": "Eget namn på enhetskonto för Surface Hub-enheter",
+ "deviceAccountPwd": "Lösenord för enhetskonto för Surface Hub-enheter",
+ "deviceAccountUpn": "E-postadress för enhetskonto för Surface Hub-enheter",
+ "deviceDisplayName": "Ange ett unikt namn för en enhet. Det här namnet ignoreras i Hybrid Azure AD-anslutna distributioner. Enhetsnamnet kommer fortfarande från domänanslutningsprofilen för Hybrid Azure AD-enheter.",
+ "deviceName": "Namnet som visas när någon försöker identifiera och ansluta till enheten.",
+ "deviceUseType": " Enheten installeras baserat på ditt val. Du kan alltid ändra det här senare i inställningarna.\r\n \r\n - För möten och presentationer aktiveras inte Windows Hello och data tas bort efter varje session.\r\n
\r\n - För gruppsamarbete aktiveras Windows Hello och profiler sparas för snabb inloggning
\r\n
",
+ "enrollmentState": "Anger om enheten är registrerad.",
+ "intuneDevice": "Gå till enhetsinformationen för tillhörande enhet. Saknas betyder att det inte finns någon tillhörande enhet.",
+ "lastContacted": "Tidsstämpel för när enheten senast kontaktades.",
+ "make": "Den valda enhetens tillverkare.",
+ "model": "Den valda enhetens modell",
+ "profile": "Namn på den profil som har tilldelats enheten.",
+ "profileStatus": "Anger om en profil har tilldelats enheten.",
+ "purchaseOrderId": "Inköpsorder-ID",
+ "resourceAccount": "Enhetens identitet eller användarhuvudnamn (UPN).",
+ "serialNumber": "Den valda enhetens serienummer.",
+ "userPrincipalName": "Användare för ifylld autentisering när enheten ställs in."
+ },
+ "allDevices": "Alla enheter",
+ "allDevicesAlreadyAssignedError": "En Autopilot-profil har redan tilldelats Alla enheter.",
+ "assignFailedDescription": "Det gick inte att uppdatera tilldelningar för {0}.",
+ "assignFailedTitle": "Det gick inte att uppdatera Autopilot-profiltilldelningar.",
+ "assignSuccessDescription": "Tilldelningar har uppdaterats för {0}.",
+ "assignSuccessTitle": "Autopilot-profiltilldelningarna har uppdaterats.",
+ "assignSufaceHub2ProfileNextStep": "Nästa steg i distributionen",
+ "assignSurfaceHub2ProfileToDeviceGroup": "1. Koppla den här profilen till minst en enhetsgrupp",
+ "assignSurfaceHub2ProfileToResourceAccount": "2. Koppla ett resurskonto till varje Surface Hub-enhet som profilen ska distribueras till",
+ "assignedDevicesCount": "Tilldelade enheter",
+ "assignedDevicesResourceAccountDescription": "Om du vill distribuera den här profilen till en enhet måste du tilldela enheten ett resurskonto. Välj en enhet åt gången om du vill tilldela ett befintligt resurskonto eller skapa ett nytt. Läs mer om resurskonton
",
+ "assignedDevicesResourceAccountStatusBarMessage": "I den här tabellen visas bara Surface Hub 2-enheter som har tilldelats den här profilen.",
+ "assigningDescription": "Uppdaterar tilldelningar för {0}.",
+ "assigningTitle": "Uppdaterar Autopilot-profiltilldelningar.",
+ "autoremediationContext": "We've detected a hardware change on this device. We're trying to automatically register the new hardware. You don't need to do anything now; the status will be updated at the next check in with the result. Learn more about resetting the profile.",
+ "autoremediationTitle": "Device {0} has a fix pending",
+ "cannotDeleteMessage": "Den här profilen har tilldelats grupper. Du måste ta bort tilldelningen för alla grupper från den här profilen innan du kan ta bort den.",
+ "cannotDeleteTitle": "Det går inte att ta bort {0}",
+ "createdDateTime": "Skapad",
+ "deleteMessage": "Om du tar bort den här AutoPilot-profilen visas alla enheter som är tilldelade till den här profilen som otilldelade.",
+ "deleteMessageWithPolicySet": "{0} ingår i en eller flera principuppsättningar. Om du tar bort {0} kan du inte längre tilldela den via de principuppsättningarna.",
+ "deleteTitle": "Vill du ta bort den här profilen?",
+ "description": "Beskrivning",
+ "deviceType": "Enhetstyp",
+ "deviceUse": "Enhetsanvändning",
+ "directoryServiceHintForSurfaceHub2": " \r\n Autopilot har bara stöd för Azure AD-anslutning för Surface Hub 2-enheter. Ange hur enheter ska ansluta till Active Directory (AD) i din organisation.\r\n
\r\n \r\n - \r\n Azure AD-anslutning: Enbart molnet utan en lokal Windows Server Active Directory.\r\n
\r\n
\r\n ",
+ "directoryServiceHintForWindowsPC": "\r\n \r\n Ange hur enheter ska ansluta till Active Directory (AD) i din organisation:\r\n
\r\n \r\n - \r\n Azure AD-ansluten: Enbart molnet utan en lokal Windows Server Active Directory\r\n
\r\n
\r\n ",
+ "getAssignedDevicesCountError": "Ett fel uppstod när antalet tilldelade enheter hämtades.",
+ "getAssignmentsError": "Ett fel inträffade när Autopilot-profiltilldelningarna hämtades.",
+ "harvestDeviceId": "Omvandla alla målenheter till Autopilot",
+ "harvestDeviceIdDescription": "Den här profilen kan som standard bara tillämpas på Autopilot-enheter som har synkroniserats från Autopilot-tjänsten.",
+ "harvestDeviceIdInfo": "\r\n Välj Ja om du vill registrera alla målenheter på Autopilot om de inte redan är registrerade. Nästa gång registrerade enheter genomgår Windows välkomstprogram kommer de genomgå det tilldelade Autopilot-scenariot.\r\n
\r\n Tänk på att det för vissa Autopilot-scenarier krävs särskilda minimiversioner av Windows. Se till att din enhet har den minimiversion som krävs för att genomgå scenariot.\r\n
\r\n Berörda enheter tas inte bort från Autopilot när profilen tas bort. Om du vill ta bort enheten från Autopilot använder du vyn över Windows Autopilot-enheter.\r\n ",
+ "harvestDeviceIdWarning": "Efter omvandlingen kan du bara återställa Autopilot-enheter genom att ta bort dem från listan över Autopilot-enheter.",
+ "holoLensCommandMenu": "HoloLens",
+ "info": "Med Windows AutoPilot-distributionsprofiler kan du anpassa hela välkomstupplevelsen för dina enheter.",
+ "invalidProfileNameMessage": "Tecknet \"{0}\" är inte tillåtet",
+ "joinTypeLabel": "Anslut till Azure AD som",
+ "lastModifiedDateTime": "Senast ändrad:",
+ "manualRemediationContext": "We've detected a hardware change on this device. It won't automatically receive an Autopilot profile when it's reset unless you register the device again. Learn more about resetting the profile.",
+ "manualRemediationTitle": "Device {0} needs your attention",
+ "name": "Namn",
+ "noAutopilotProfile": "Inga AutoPilot-profiler",
+ "notEnoughPermissionAssignedError": "Du har inte behörighet att koppla den här profilen till en eller flera av de valda grupperna. Kontakta administratören.",
+ "profile": "profil",
+ "resourceAccountStatusBarMessage": "Ett resurskonto krävs för varje Surface Hub 2-enhet som den här profilen har distribuerats till. Klicka här om du vill läsa mer.",
+ "selectServices": "Välj katalogtjänsten som enheter ska ansluta till",
+ "surfaceHub2CommandMenu": "Surface Hub 2",
+ "surfaceHub2SCommandMenu": "Surface Hub 2S",
+ "userAffinityLabel": "Distributionsläge",
+ "windowsPCCommandMenu": "Windows-dator",
+ "directoryServiceLabel": "Anslut till Azure AD som"
},
- "CategoryDescription": {
- "androidGeneralApplicationRestrictions": "Använd de här inställningarna för att få information om vilka användare som installerar appar som inte är godkända för användning i företaget. Välj typ av lista över begränsade appar:
\r\n Förbjudna appar – en lista över appar som du vill bli informerad om när användare installerar.
\r\n Godkända appar – en lista över appar som är godkända för användning i företaget. Du informeras när användare installerar en app som inte finns med på listan.
\r\n ",
- "androidZebraMxZebraMx": "Konfigurera Zebra-enheter genom att ladda upp en MX-profil i XML-format.",
- "iosDeviceFeaturesAirprint": "Använd de här inställningarna för att ställa in iOS-enheter på att automatiskt ansluta till AirPrint-kompatibla skrivare i nätverket. Du behöver IP-adress och resurssökväg till dina skrivare.",
- "iosDeviceFeaturesExtensibleSingleSignOn": "Ställ in ett apptillägg som aktiverar enkel inloggning för enheter som kör iOS 13.0 eller senare.",
- "iosDeviceFeaturesHomeScreenLayout": "Ställ in layouten för Dock och hemskärmar på iOS-enheter. Vissa enheter kan ha begränsningar för hur många objekt som får visas.",
- "iosDeviceFeaturesIOSWallpaper": "Visa en bild som ska synas på hemskärmen och/eller låsskärmen på iOS-enheter.\r\n Om du vill visa en unik bild på varje plats skapar du en profil med låsskärmsbilden och en med hemskärmsbilden.\r\n Tilldela sedan användarna båda profilerna.\r\n
\r\n \r\n - Maximal filstorlek: 750 kB
\r\n - Filtyp: PNG, JPG eller JPEG
\r\n
\r\n ",
- "iosDeviceFeaturesNotifications": "Ange aviseringsinställningar för appar. Har stöd för iOS 9.3 och senare.",
- "iosDeviceFeaturesSharedDevice": "Ange valfri text som ska visas på den låsta skärmen. Det här stöds på iOS 9.3 och senare. Läs mer",
- "iosGeneralApplicationRestrictions": "Använd de här inställningarna för att få information om vilka användare som installerar appar som inte är godkända för användning i företaget. Välj typ av lista över begränsade appar:
\r\n Förbjudna appar – en lista över appar som du vill bli informerad om när användare installerar.
\r\n Godkända appar – en lista över appar som är godkända för användning i företaget. Du informeras när användare installerar en app som inte finns med på listan.
\r\n ",
- "iosGeneralApplicationVisibility": "Använd listan med visade appar för att ange de iOS-appar som användaren kan visa eller starta. Använd listan med dolda appar för att ange de iOS-appar som användaren inte får visa eller starta.",
- "iosGeneralAutonomousSingleAppMode": "Appar som du lägger till i listan och kopplar till en enhet kan låsa enheten så att bara den appen körs efter start, eller låsa enheten medan en viss åtgärd pågår (till exempel när du gör ett prov). När åtgärden har slutförts, eller om du tar bort begränsningen, återgår enheten till normalläget.",
- "iosGeneralKiosk": "I kioskläget låses olika inställningar på en enhet eller också anges det att bara en viss app kan köras på en enhet. Det kan vara praktiskt i butiksmiljöer där du vill att bara en viss demoapp ska köras på enheten.",
- "macDeviceFeaturesAirprint": "Använd de här inställningarna för att ställa in macOS-enheter på att automatiskt ansluta till AirPrint-kompatibla skrivare i nätverket. Du behöver IP-adress och resurssökväg till dina skrivare.",
- "macDeviceFeaturesAssociatedDomains": "Konfigurera tillhörande domäner för delning av data och inloggningsuppgifter mellan organisationens appar och webbplatser. Den här profilen kan tillämpas på enheter som kör macOS 10.15 eller senare.",
- "macDeviceFeaturesExtensibleSingleSignOn": "Ställ in ett apptillägg som aktiverar enkel inloggning för enheter som kör macOS 10.15 eller senare.",
- "macDeviceFeaturesLoginItems": "Välj vilka appar, filer och mappar som ska öppnas när användarna loggar in på sina enheter. Om du inte vill att användarna ska kunna ändra hur valda appar ska öppnas, kan du dölja appen från användarkonfigurationen.",
- "macDeviceFeaturesLoginWindow": "Ställ in hur macOS-inloggningsskärmen ska se ut och vilka funktioner som ska visas för användarna innan och efter de loggar in.",
- "macExtensionsKernelExtensions": "Använd de här inställningarna för att ange en princip för kerneltillägg på macOS-enheter som kör 10.13.2 eller senare.",
- "macGeneralDomains": "E-postmeddelanden som användaren skickar eller tar emot och som inte matchar de domäner du anger här, markeras som icke tillförlitliga.",
- "windows10EndpointProtectionApplicationGuard": "När du använder Microsoft Edge skyddar Microsoft Defender Application Guard din miljö mot webbplatser som din organisation inte har definierat som tillförlitliga. När användare besöker webbplatser som inte är med på listan för ditt isolerade nätverk, öppnas webbplatserna i en virtuell webbläsarsession i Hyper-V. Tillförlitliga webbplatser definieras av en nätverksgräns som kan ställas in i Enhetskonfiguration. Observera att den här funktionen endast är tillgänglig för enheter som kör 64-bitars Windows 10 eller senare.",
- "windows10EndpointProtectionCredentialGuard": "Om du aktiverar Credential Guard aktiveras följande obligatoriska inställningar:\r\n
\r\n \r\n - Aktivera virtualiseringsbaserad säkerhet: Virtualiseringsbaserad säkerhet (VBS) aktiveras vid nästa omstart. För virtualiseringsbaserad säkerhet används Windows Hypervisor för att ge stöd för säkerhetstjänster.
\r\n
\r\n - Säker start med direkt minnesåtkomst: VBS aktiveras med säker start och direkt minnesåtkomst (DMA).
\r\n
\r\n ",
- "windows10EndpointProtectionDeviceGuard": "Välj ytterligare appar som antingen måste granskas av eller som är betrodda att köras av Microsoft Defender Application Control. Windows-komponenter och alla appar från Windows Store är automatiskt betrodda att köras.
\r\n Program blockeras inte när de körs i läget Endast granskning. I läget Endast granskning, loggas alla händelser i lokala klientloggar.\r\n ",
- "windows10GeneralPrivacyPerApp": "Lägg till appar som ska ha en annan sekretesspolicy än den du definierade i Standardsekretess.",
- "windows10NetworkBoundaryNetworkBoundary": "Nätverksgränsen är en lista över företagsresurser, till exempel molnbaserade domäner och IP-adressintervall för datorer i företagsnätverket. Ange nätverksgränser för att tillämpa principer som skyddar data på de här platserna.",
- "windowsHealthMonitoring": "Ställ in hälsoövervakningsprincipen i Windows.",
- "windowsPhoneGeneralApplicationRestrictions": "Windows Phone kan blockera användare från att installera eller starta appar som står med i listan över otillåtna appar eller appar som inte står med i listan över godkända appar. Alla hanterade appar måste läggas till i listan över godkända appar."
- },
"MinimumOperatingSystem": {
"Android": {
"v10": "Android 10,0",
@@ -2435,6 +1154,304 @@
"excludedGroups": "Grupper som undantas",
"licenseType": "Licenstyp"
},
+ "TAP": {
+ "AccessRequirements": {
+ "infoText": "Konfigurera de PIN-koder och autentiseringsuppgifter som användarna måste ange för att få åtkomst till appar i ett arbetssammanhang."
+ },
+ "DataProtection": {
+ "infoText": "Den här gruppen omfattar kontroller för dataförlustskydd, som begränsningar för klipp ut, kopiera, klistra in och spara som. De här inställningarna fastställer hur användarna samverkar med data i apparna."
+ },
+ "DeviceTypes": {
+ "selectOne": "Markera minst en enhetstyp."
+ },
+ "TargetedApps": {
+ "TargetToAll": {
+ "label": "Riktat till appar på alla typer av enheter"
+ },
+ "infoText": "Välj hur du vill tillämpa den här principen på appar på olika enheter. Lägg sedan till minst en app.",
+ "selectOne": "Välj minst en app för att skapa en princip."
+ }
+ },
+ "AssignmentAction": {
+ "exclude": "Undantaget",
+ "include": "Inklusive",
+ "includeAllDevicesVirtualGroup": "Inklusive",
+ "includeAllUsersVirtualGroup": "Inklusive"
+ },
+ "AppType": {
+ "androidEnterpriseSystemApp": "Android Enterprise-systemapp",
+ "androidForWorkApp": "App från hanterad Google Play-butik",
+ "androidLobApp": "Branschspecifik Android-app",
+ "androidStoreApp": "Google Play-app",
+ "builtInAndroid": "Inbyggd Android-app",
+ "builtInApp": "Inbyggd app",
+ "builtInIos": "Inbyggd iOS-app",
+ "default": "",
+ "iosLobApp": "Branschspecifik iOS-app",
+ "iosStoreApp": "iOS Store-app",
+ "iosVppApp": "Volyminköpsprogramapp för iOS",
+ "lineOfBusinessApp": "Branschspecifik app",
+ "macOSDmgApp": "macOS app (DMG)",
+ "macOSEdgeApp": "Microsoft Edge (macOS)",
+ "macOSLobApp": "Verksamhetsspecifik macOS-app",
+ "macOSMdatpApp": "Microsoft Defender ATP (macOS)",
+ "macOSOfficeSuiteApp": "Microsoft 365-appar (macOS)",
+ "macOsVppApp": "Volyminköpsprogramapp för macOS",
+ "managedAndroidLobApp": "Hanterad branschspecifik Android-app",
+ "managedAndroidStoreApp": "Hanterad Google Play-app",
+ "managedGooglePlayApp": "App från hanterad Google Play-butik",
+ "managedGooglePlayPrivateApp": "Privat app från hanterad Google Play-butik",
+ "managedGooglePlayWebApp": "Hanterad Google Play-webblänk",
+ "managedIosLobApp": "Hanterad branschspecifik iOS-app",
+ "managedIosStoreApp": "Hanterad iOS Store-app",
+ "microsoftStoreForBusinessApp": "Microsoft Store för företag-app",
+ "microsoftStoreForBusinessReleaseManagedApp": "Microsoft Store för företag",
+ "officeSuiteApp": "Microsoft 365-applikationer (Windows 10 och senare)",
+ "webApp": "Webblänk",
+ "windowsAppXLobApp": "Branschspecifik Windows AppX-app",
+ "windowsClassicApp": "Windows-app (Win32)",
+ "windowsEdgeApp": "Microsoft Edge (Windows 10 och senare)",
+ "windowsMobileMsiLobApp": "Branschspecifik Windows MSI-app",
+ "windowsPhone81AppXBundleLobApp": "Branschspecifik Windows Phone 8.1 AppX-app",
+ "windowsPhone81AppXLobApp": "Branschspecifik Windows Phone 8.1 AppX-app",
+ "windowsPhone81StoreApp": "Windows Phone 8.1 Store-app",
+ "windowsPhoneXapLobApp": "Branschspecifik Windows Phone XAP-app",
+ "windowsStoreApp": "Microsoft Store-app",
+ "windowsUniversalAppXLobApp": "Branschspecifik Windows Universal AppX-app",
+ "windowsUniversalLobApp": "Branschspecifik universell Windows-app"
+ },
+ "TAPSettings": {
+ "AllowedDataIngestionLocations": {
+ "label": "Tillåt användare att öppna data från valda tjänster",
+ "tooltip": "Välj de programlagringstjänster som användarna får öppna data från. Alla andra tjänster blockeras. Om inga tjänster väljs kan användarna inte öppna data."
+ },
+ "AndroidBackup": {
+ "label": "Säkerhetskopiera organisationsdata till Android-säkerhetskopieringstjänster",
+ "tooltip": "Välj {0} om du vill förhindra säkerhetskopiering av organisationsdata till Android-säkerhetskopieringstjänster. \r\nVälj {1} om du vill tillåta säkerhetskopiering av organisationsdata till Android-säkerhetskopieringstjänster. \r\nPersonliga eller ohanterade data påverkas inte."
+ },
+ "AndroidBiometricAuthentication": {
+ "label": "Biometrik i stället för åtkomst via pin-kod",
+ "tooltip": "Välj vilka eventuella Android-autentiseringsmetoder som får användas i stället för pin-kod för app."
+ },
+ "AndroidFingerprint": {
+ "label": "Fingeravtryck istället för PIN-kod för åtkomst (Android 6.0+)",
+ "tooltip": "I Android-operativsystemet autentiseras Android-användare via skanning av fingeravtryck. Funktionen kan användas med inbyggda biometriska reglage på Android-enheter. OEM-specifika biometriska inställningar, till exempel Samsung Pass, stöds inte. Om alternativet tillåts måste inbyggda biometriska reglage användas för att öppna appen på en aktiverad enhet."
+ },
+ "AndroidOverrideFingerprint": {
+ "label": "Åsidosätt fingeravtryck med PIN-kod efter uppnådd tidsgräns"
+ },
+ "AppPIN": {
+ "label": "PIN-appkod när enhetens PIN-kod har ställts in",
+ "tooltip": "Om det inte krävs behöver ingen PIN-kod användas för att öppna appen om enhetens PIN-kod har ställts in i en mobilenhetshanterad registrerad enhet.
\r\n\r\nObs! Intune kan inte identifiera enhetsregistrering med en EMM-lösning från tredje part i Android."
+ },
+ "BlockDataIngestionIntoOrganizationDocuments": {
+ "label": "Öppna data i organisationsdokument",
+ "tooltip1": "Välj Blockera om du vill inaktivera användning av alternativet Öppna eller andra alternativ för att dela data mellan konton i den här appen. Välj Tillåt om du vill tillåta användning av alternativet Öppna och andra alternativ för att dela data mellan konton i den här appen.",
+ "tooltip2": "När Blockera är inställt kan du konfigurera inställningen Tillåt användare öppna data från valda tjänster och ställa in vilka tjänster som ska tillåtas för organisationsdataplatser.",
+ "tooltip3": "Obs! Den här inställningen gäller bara om inställningen Ta emot data från andra appar, är inställd på Principhanterade appar.
\r\nObs! Den här inställningen gäller inte alla program. Mer information finns i {0}.",
+ "tooltip4": "Obs! Den här inställningen gäller bara om inställningen Ta emot data från andra appar, är inställd på Principhanterade appar.
\r\nObs! Den här inställningen gäller inte alla program. Mer information finns i {0} eller {0}."
+ },
+ "ConnectToVpnOnLaunch": {
+ "label": "Starta Microsoft Tunnel-anslutning vid appstart",
+ "tooltip": "Tillåt anslutning till VPN när appen startas"
+ },
+ "CredentialsForAccess": {
+ "label": "Arbets- eller skolkontoautentiseringsuppgifter för åtkomst",
+ "tooltip": "Om det krävs måste arbets- eller skolautentiseringsuppgifter användas för att öppna den principhanterade appen. Om det även krävs PIN-kod eller biometriska metoder för att öppna appen, krävs dessutom arbets- eller skolkontoautentiseringsuppgifter."
+ },
+ "CustomBrowserDisplayName": {
+ "label": "Namn på ohanterad webbläsare",
+ "tooltip": "Ange programnamnet för webbläsaren som är kopplad till \"Id för ohanterad webbläsare\". Det här namnet visas för användarna om den angivna webbläsaren inte är installerad."
+ },
+ "CustomBrowserPackageId": {
+ "label": "Id för ohanterad webbläsare",
+ "tooltip": "Ange program-id:t för en enskild webbläsare. Webbinnehåll (http/s) från principhanterade program öppnas i den angivna webbläsaren."
+ },
+ "CustomBrowserProtocol": {
+ "label": "Protokoll för ohanterad webbläsare",
+ "tooltip": "Ange protokollet för en enskild ohanterad webbläsare. Webbinnehåll (http/s) från principhanterade program öppnas i en app som har stöd för protokollet.
\r\n \r\nOBS! Ange bara protokollets prefix. Om webbläsaren kräver länkar i formatet \"minwebbläsare://www.microsoft.com\" så skriver du \"minwebbläsare\".
"
+ },
+ "CustomDialerAppDisplayName": {
+ "label": "Namn på uppringningsapp"
+ },
+ "CustomDialerAppPackageId": {
+ "label": "Paket-id för uppringningsapp"
+ },
+ "CustomDialerAppProtocol": {
+ "label": "Webbadresschema för uppringningsapp"
+ },
+ "Cutcopypaste": {
+ "label": "Begränsa klipp ut, kopiera och klistra in mellan andra appar",
+ "tooltip": "Klipp ut, kopiera och klistra in data mellan din app och andra godkända appar på enheten. Välj att blockera de här åtgärderna helt mellan appar, tillåta dem att användas med valfri app eller begränsa användningen till appar som hanteras av din organisation.
\r\n\r\nMed principhanterade appar med inklistring kan du godkänna inkommande innehåll som klistrats in från en annan app. Användarna blockeras dock från att dela innehåll utåt, såvida det inte sker med en hanterad app.
"
+ },
+ "DialerRestrictionLevel": {
+ "iosTooltip": "När en användare väljer ett hyperlänkat telefonnummer i en app öppnas vanligtvis en uppringningsapp med telefonnumret ifyllt och redo att ringa. Med den här inställningen kan du välja hur den här typen av innehållsöverföring ska hanteras när den startas från en principhanterad app. Ytterligare steg kan komma att krävas för att inställningen ska börja gälla. Kontrollera först att tel och telprompt har tagits bort från listan över appar som ska undantas. Kontrollera sedan att programmet använder en nyare version av Intune SDK (12.7.0+).",
+ "label": "Överför telekommunikationsdata till",
+ "tooltip": "När en användare väljer ett hyperlänkat telefonnummer i en app öppnas vanligtvis en uppringningsapp med telefonnumret ifyllt och redo att ringa. Med den här inställningen kan du välja hur den här typen av innehållsöverföring ska hanteras när den startas från en principhanterad app."
+ },
+ "EncryptData": {
+ "label": "Kryptera organisationsdata",
+ "link": "https://docs.microsoft.com/en-us/intune/app-protection-policy-settings-android#data-relocation-settings",
+ "tooltip": "Välj {0} om du vill framtvinga kryptering av organisationsdata med applagerkryptering från Intune.\r\n
\r\nVälj {1} om du inte vill framtvinga kryptering av organisationsdata med applagerkryptering från Intune.\r\n\r\n
\r\nObs! Mer information om applagerkryptering från Intune finns i {2}."
+ },
+ "EncryptDataAndroid": {
+ "tooltip": "Välj Kräv om du vill aktivera kryptering av arbets- eller skoldata i den här appen. I Intune används ett OpenSSL, 256-bitars AES-krypteringsschema tillsammans med Android Keystore-systemet för att kryptera appdata på ett säkert sätt. Data krypteras synkront under I/O-filåtgärder. Innehåll i enhetens lagringsutrymme krypteras alltid. SDK-paketet ger fortsatt stöd för 128-bitars nycklar för kompatibilitet med innehåll och appar som använder äldre SDK-versioner.
\r\n\r\nKrypteringsmetoden är FIPS 140-2-kompatibel.
"
+ },
+ "EncryptDataIos": {
+ "tooltip1": "Välj Kräv om du vill aktivera kryptering av arbets- eller skoldata i den här appen. I Intune används iOS-/iPadOS-enhetskryptering för att skydda appdata när enheten är låst. Program kan också kryptera appdata med hjälp av Intune APP-SDK-kryptering. I Intune APP-SDK används iOS-/iPadOS-kryptografimetoder för att tillämpa 128-bitars AES-kryptering av appdata.",
+ "tooltip2": "När du aktiverar den här inställningen kan användaren vara tvungen att ställa in och använda en PIN-kod för att få åtkomst till sin enhet. Om ingen PIN-kod finns och kryptering krävs, uppmanas användaren att ställa in en PIN-kod med meddelandet: ”Enligt din organisation måste du först aktivera en PIN-kod på enheten för att få åtkomst till den här appen”.",
+ "tooltip3": "Gå till den officiella Apple-dokumentationen och se vilka iOS-krypteringsmodeller som är FIPS 140-2-kompatibla eller som väntar på FIPS 140-2-kompatibilitet."
+ },
+ "EncryptDataOnEnrolledDevices": {
+ "label": "Kryptera organisationsdata på registrerade enheter",
+ "tooltip": "Välj {0} om du vill framtvinga kryptering av organisationsdata med applagerkryptering från Intune på alla enheter.
\r\n\r\nVälj {1} om du inte vill framtvinga kryptering av organisationsdata med applagerkryptering från Intune på registrerade enheter."
+ },
+ "IOSBackup": {
+ "label": "Säkerhetskopiera organisationsdata till iTunes- och iCloud-säkerhetskopieringar",
+ "tooltip": "Välj {0} om du vill förhindra säkerhetskopiering av organisationsdata till iTunes eller iCloud. \r\nVälj {1} om du vill tillåta säkerhetskopiering av organisationsdata till iTunes eller iCloud. \r\nPersonliga eller ohanterade data påverkas inte."
+ },
+ "IOSFaceID": {
+ "label": "Face ID istället för PIN-kod för åtkomst (iOS 11+/iPadOS)",
+ "tooltip": "Face ID använder ansiktsigenkänning för att autentisera användare på iOS-/iPadOS-enheter. Intune anropar LocalAuthentication-API för att autentisera användare via Face ID. Om det här tillåts måste Face ID användas för att öppna appen på en Face ID-aktiverad enhet."
+ },
+ "IOSOverrideTouchId": {
+ "label": "Åsidosätt biometrik med PIN-kod efter uppnådd tidsgräns"
+ },
+ "IOSTouchId": {
+ "label": "Touch ID istället för PIN-kod för åtkomst (iOS 8+/iPadOS)",
+ "tooltip": "Touch ID använder fingeravtrycksigenkänning för att autentisera användare på iOS-enheter. Intune anropar LocalAuthentication-API för att autentisera användare via Touch ID. Om det tillåts måste Touch ID användas för att öppna appen på en Touch ID-aktiverad enhet."
+ },
+ "NotificationRestriction": {
+ "label": "Organisationsdatameddelanden",
+ "tooltip": "Välj ett av följande alternativ för att ange hur meddelanden för organisationskonton ska visas för den här appen och alla anslutna enheter, till exempel kroppsnära enheter:
\r\n{0}: Dela inte meddelanden.
\r\n{1}: Dela inte organisationsdata i meddelanden. Om meddelanden inte stöds av programmet blockeras de.
\r\n{2}: Dela alla meddelanden.
\r\n Endast Android:\r\n Obs! Den här inställningen gäller inte alla program. Mer information finns i {3}
\r\n \r\n Endast iOS:\r\nObs! Den här inställningen gäller inte alla program. Mer information finns i {4}
"
+ },
+ "OpenLinksManagedBrowser": {
+ "label": "Begränsa överföring av webbinnehåll till andra appar",
+ "tooltip": "Välj ett av följande alternativ för att ange de appar som den här appen kan öppna webbinnehåll i:
\r\nEdge: Tillåt endast att webbinnehåll öppnas i en Edge-hanterad webbläsare
\r\nOhanterad webbläsare: Tillåt endast att webbinnehåll öppnas i den ohanterade webbläsaren som anges i inställningen Protokoll för ohanterad webbläsare
\r\nValfri app: Tillåt webblänkar i valfri app
"
+ },
+ "OverrideBiometric": {
+ "tooltip": "Om det krävs, åsidosätts biometrik av en PIN-kod, beroende på tidsgränsen (minuter av inaktivitet). Om tidsgränsvärdet inte har nåtts fortsätter biometriken att visas. Tidsgränsvärdet måste vara större än det värde som anges i Kontrollera åtkomstkraven igen efter (minuters inaktivitet). "
+ },
+ "PinAccess": {
+ "label": "PIN-kod för åtkomst",
+ "tooltip": "Om det här krävs, måste en PIN-kod användas för att öppna den principhanterade appen. Användarna måste skapa en PIN-kod första gången de öppnar en app från ett arbets- eller skolkonto."
+ },
+ "PinLength": {
+ "label": "Välj minimilängd för PIN-kod",
+ "tooltip": "Den här inställningen anger det minsta tillåtna antalet siffror i en PIN-kod."
+ },
+ "PinType": {
+ "label": "Typ av PIN-kod",
+ "tooltip": "Numeriska PIN-koder består bara av siffror. Lösenord består av alfanumeriska tecken och specialtecken. "
+ },
+ "Printing": {
+ "label": "Skriver ut organisationsdata",
+ "tooltip": "Skyddade data kan inte skrivas ut från appen om det har inaktiverats."
+ },
+ "ReceiveData": {
+ "label": "Ta emot data från andra appar",
+ "tooltip": "Välj ett av följande alternativ för att ange de appar som den här appen kan ta emot data från:
\r\n\r\nIngen: Tillåt inte mottagning av data i organisationsdokument eller konton från någon app
\r\n\r\nPrinciphanterade appar: Tillåt endast mottagning av data i organisationsdokument eller konton från andra principhanterade appar\r\n
\r\nValfri app med inkommande organisationsdata: Tillåt mottagning av data i organisationsdokument eller konton från valfri app och behandla alla inkommande data utan användarkonto som organisationsdata
\r\n\r\nAlla appar: Tillåt mottagning av data i organisationsdokument eller konton från valfri app"
+ },
+ "RecheckAccessAfter": {
+ "label": "Kontrollera åtkomstkraven igen efter (minuters inaktivitet)\r\n\r\n",
+ "tooltip": "Om den principhanterade appen är inaktiv längre än det angivna antalet minuter av inaktivitet, visas en uppmaning om att kontrollera åtkomstkraven igen (till exempel PIN-kod, villkorlig start) när appen har startats."
+ },
+ "RestrictKeyboards": {
+ "duplicatePackageError": "Paketets id måste vara unikt.",
+ "invalidPackageError": "Ogiltigt paket-id",
+ "label": "Godkända tangentbord",
+ "select": "Välj tangentbord som ska godkännas",
+ "subtitle": "Lägg till alla tangentbord och indatametoder som användarna kan använda med riktade appar. Ange det tangentbordsnamn som du vill ska visas för slutanvändaren.",
+ "title": "Lägg till godkända tangentbord",
+ "toolTip": "Välj Kräv och ange sedan en lista med godkända tangentbord för den här principen. Läs mer."
+ },
+ "SaveData": {
+ "label": "Spara kopior av organisationsdata",
+ "tooltip": "Välj {0} om du inte vill att en kopia av organisationsdata ska kunna sparas på en annan plats än i de valda lagringstjänsterna med Spara som.\r\n Välj {1} om du vill tillåta att en kopia av organisationsdata sparas på en ny plats med Spara som.
\r\n\r\n\r\nObs! Den här inställningen gäller inte alla program. Mer information finns i {2}.\r\n"
+ },
+ "SaveDataToSelected": {
+ "label": "Tillåt användaren att spara kopior i valda tjänster",
+ "tooltip": "Välj de lagringstjänster som användarna kan spara kopior av organisationsdata på. Alla andra tjänster blockeras. Om inga tjänster väljs kan användarna inte spara kopior av organisationsdata."
+ },
+ "ScreenCaptureAndAndroidAssistant": {
+ "label": "Skärmbild och Google Assistent\r\n",
+ "tooltip": "Om det är blockerat inaktiveras både skanningsfunktioner för skärmbild och Google Assistent-appen när den principhanterade appen används. Funktionen kan användas med den vanliga Google Assistent-appen. Det finns inte stöd för assistenter från tredje part som använder Google Assistent-API. Om du väljer Blockera blir förhandsgranskningsbilden av Appväxlaren suddig när appen används med ett arbets- eller skolkonto."
+ },
+ "SendData": {
+ "label": "Skicka organisationsdata till andra appar",
+ "tooltip": "Välj ett av följande alternativ för att ange de appar som den här appen kan skicka organisationsdata till:
\r\n\r\n\r\nIngen: Skicka inte organisationsdata till någon app
\r\n\r\n\r\nPrinciphanterade appar: Tillåt bara sändning av organisationsdata till andra principhanterade appar
\r\n\r\n\r\nPrinciphanterade appar med operativsystemdelning: Tillåt endast sändning av organisationsdata till andra principhanterade appar och sändning av organisationsdokument till andra mobilenhetshanterade appar på registrerade enheter
\r\n\r\n\r\nPrinciphanterade appar med Öppna i/Dela-filtrering: Tillåt endast sändning av organisationsdata till andra principhanterade appar och filtrera Öppna i/Dela-dialogrutor så att bara principhanterade appar visas\r\n
\r\n\r\nAlla appar: Tillåt sändning av organisationsdata till valfri app"
+ },
+ "SimplePin": {
+ "label": "Enkel PIN-kod",
+ "tooltip": "Om det är blockerat kan användarna inte skapa en enkel PIN-kod. En enkel PIN-kod är en sträng med på varandra följande eller upprepade siffror, till exempel 1234, ABCD eller 1111. Tänk på att om du blockerar enkel PIN-kod av typen Lösenord, måste lösenordet bestå av minst en siffra, en bokstav och ett specialtecken."
+ },
+ "SyncContacts": {
+ "label": "Synkronisera data i principhanterade appar med inbyggda appar eller tillägg"
+ },
+ "ThirdPartyKeyboards": {
+ "infoBox": "Tangentbordsbegränsningar gäller för alla områden i en app. Privata konton för appar som har stöd för flera identiteter påverkas av den här begränsningen. Läs mer.",
+ "label": "Tangentbord från tredje part"
+ },
+ "Timeout": {
+ "label": "Tidsgräns (minuters aktivitet)"
+ },
+ "Tap": {
+ "numberOfDays": "Antal dagar",
+ "pinResetAfterNumberOfDays": "Återställ PIN-kod efter antal dagar",
+ "previousPinBlockCount": "Välj antal tidigare PIN-koder som ska behållas"
+ }
+ },
+ "ScheduledAction": {
+ "Form": {
+ "editBlockActionInfo": "En blockeringsåtgärd krävs för alla principer för efterlevnad.",
+ "graceperiod": "Schema (dagar av icke-kompatibilitet)",
+ "graceperiodInfo": "Ange efter hur många dagars icke-kompatibilitet den här åtgärden ska aktiveras på användarens enhet",
+ "subtitle": "Ange åtgärdsparametrar",
+ "title": "Åtgärdsparametrar"
+ },
+ "List": {
+ "gracePeriodDay": "{0} dag av icke-kompatibilitet",
+ "gracePeriodDays": "{0} dagar av icke-kompatibilitet",
+ "gracePeriodHour": "{0} timme av icke-kompatibilitet",
+ "gracePeriodHours": "{0} timmar av icke-kompatibilitet",
+ "gracePeriodMinute": "{0} minut av icke-kompatibilitet",
+ "gracePeriodMinutes": "{0} minuter av icke-kompatibilitet",
+ "immediately": "Omedelbart",
+ "schedule": "Schema",
+ "scheduleInfoBalloon": "Dagar efter inkompatibilitet",
+ "subtitle": "Ange följden av åtgärder på icke-kompatibla enheter",
+ "title": "Åtgärder"
+ },
+ "Notification": {
+ "additionalEmailLabel": "Övrigt",
+ "additionalRecipients": "Ytterligare mottagare (via e-post)",
+ "additionalRecipientsBladeTitle": "Välj ytterligare mottagare",
+ "emailAddressPrompt": "Ange e-postadresser (kommateckenåtskilda)",
+ "invalidEmail": "Ogiltig e-postadress",
+ "messageTemplate": "Meddelandemall",
+ "noneSelected": "Inga valda",
+ "notSelected": "Inte valt",
+ "numSelected": "{0} har valts",
+ "selected": "Valda"
+ },
+ "block": "Markera enheten som inkompatibel",
+ "lockDevice": "Lås enhet (lokal åtgärd)",
+ "lockDeviceWithPasscode": "Lås enhet (lokal åtgärd)",
+ "noAction": "Ingen åtgärd",
+ "noActionRow": "Inga åtgärder, välj Lägg till för att lägga till en åtgärd",
+ "pushNotification": "Skicka push-meddelande till slutanvändare",
+ "remoteLock": "Fjärrlås en inkompatibel enhet",
+ "removeSourceAccessProfile": "Ta bort profil för källåtkomst",
+ "retire": "Ta icke-kompatibel enhet ur bruk",
+ "wipe": "Rensa",
+ "emailNotification": "Skicka e-post till slutanvändare"
+ },
+ "InstallIntent": {
+ "available": "Tillgängligt för registrerade enheter",
+ "availableWithoutEnrollment": "Tillgänglig med eller utan registrering",
+ "required": "Obligatoriskt",
+ "uninstall": "Avinstallera"
+ },
"EnrollmentStatusScreen": {
"Apps": {
"managedApps": "Hanterade appar",
@@ -2466,142 +1483,61 @@
"resetToggle": "Tillåt användare att återställa enheten om det uppstår fel vid installationen",
"timeout": "Visa ett fel när installationen tar länge tid än angivet antal minuter"
},
- "EnrollmentType": {
- "devicesWithEnrollment": "Hanterade enheter",
- "devicesWithoutEnrollment": "Hanterade appar"
- },
- "ApplicabilityRules": {
- "GridLabel": {
- "property": "Egenskap ",
- "rule": "Regel",
- "ruleDetails": "Regelinformation",
- "value": "Värde"
- },
- "assignIf": "Tilldela profil om",
- "deleteWarning": "Den valda tillämplighetsregeln tas bort",
- "dontAssignIf": "Tilldela inte profil om",
- "editionDisplayText": "{0} {1}",
- "editionDisplayTextMore": "och {0} till",
- "instructions": "Ange hur den här profilen ska tillämpas i en tilldelad grupp. Profilen tillämpas endast på enheter som uppfyller de kombinerade villkoren för reglerna i Intune.",
- "maxText": "Max",
- "minText": "Min",
- "noActionRow": "Inga tillämplighetsregler har angetts",
- "oSVersion": "t.ex. 1.2.3.4",
- "toText": "till",
- "windows10Education": "Windows 10/11 Education",
- "windows10EducationN": "Windows 10/11 Education N",
- "windows10Enterprise": "Windows 10/11 Enterprise",
- "windows10EnterpriseN": "Windows 10/11 Enterprise N",
- "windows10HolographicEnterprise": "Windows 10 Holographic for Business",
- "windows10Home": "Windows 10/11 Home",
- "windows10HomeChina": "Windows 10 Home China",
- "windows10HomeN": "Windows 10/11 Home N",
- "windows10HomeSingleLanguage": "Windows 10/11 Home – enkelt språk",
- "windows10IoTCore": "Windows 10 IoT Core",
- "windows10IoTCoreCommercial": "Windows 10 IoT Core Commercial",
- "windows10Mobile": "Windows 10 Mobile",
- "windows10MobileEnterprise": "Windows 10 Mobile Enterprise",
- "windows10OsEdition": "Operativsystemutgåva",
- "windows10OsVersion": "Operativsystemsversion",
- "windows10Professional": "Windows 10/11 Professional",
- "windows10ProfessionalEducation": "Windows 10/11 Professional Education",
- "windows10ProfessionalEducationN": "Windows 10/11 Professional Education N",
- "windows10ProfessionalN": "Windows 10 Professional N",
- "windows10ProfessionalWorkstation": "Windows 10/11 Professional Workstation",
- "windows10ProfessionalWorkstationN": "Windows 10/11 Professionell Workstation N"
+ "Devices": {
+ "General": {
+ "android": "Android"
+ },
+ "aOSP": "Android Open Source Project",
+ "android": "Android-enhetsadministratör",
+ "androidWorkProfile": "Android Enterprise (arbetsprofil)",
+ "iOS": "iOS/iPadOS",
+ "mac": "macOS",
+ "windows": "Windows (mobilenhetshantering)",
+ "windows10": "Windows 10 och senare",
+ "windowsHomeSku": "Windows Home Sku",
+ "windowsMobile": "Windows Mobile"
+ },
+ "AppInfoBalloonText": {
+ "Certificate": {
+ "customSubjectName": "CN={{UserName}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US\r\nor\r\nCN={{AAD_Device_ID}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US",
+ "keySize": "Välj antalet bitar i nyckeln.",
+ "keyUsage": "Ange den kryptografiåtgärd som krävs för att byta ut certifikatets offentliga nyckel.",
+ "renewalThreshold": "Ange hur många procent (1–99 procent) av den återstående certifikatgiltighetstiden som tillåts innan förnyelse av certifikatet kan begäras. Rekommenderad mängd i Intune är 20 %. (1–99)",
+ "rootCert": "Välj en tidigare inställd och tilldelad profil för certifikatutfärdares rotcertifikat. Certifikatutfärdarcertifikatet måste matcha rotcertifikatet för den certifikatutfärdare som utfärdar certifikatet för den här profilen (den du just nu ställer in).",
+ "scepServerUrl": "Ange en webbadress för den NDES-server som utfärdar certifikat via SCEP (måste vara HTTPS), till exempel https://contoso.com/certsrv/mscep/mscep.dll",
+ "scepServerUrls": "Lägg till en eller flera webbadresser för den NDES-server som utfärdar certifikat via SCEP (måste vara HTTPS), till exempel https://contoso.com/certsrv/mscep/mscep.dll",
+ "subjectAlternativeName": "Alternativt namn för certifikatmottagare",
+ "subjectNameFormat": "Format för namn på certifikatmottagare",
+ "validityPeriod": "Tid som återstår innan certifikatet går ut. Ange ett värde som är lika med eller mindre än den giltighetstid som visas i certifikatmallen. Standardvärdet är ett år."
+ },
+ "appInstallContext": "Anger vilken installationskontext som ska kopplas till appen. För appar i dubbelläge väljer du önskad kontext för appen. För alla andra appar är det här förinställt baserat på paketet, och kan inte ändras.",
+ "autoUpdateMode": "Konfigurera appens uppdateringsprioritet. Välj Standard om du vill att enheten ska vara ansluten till WiFi, laddas och inte aktivt användas innan du uppdaterar appen. Välj Hög prioritet om du vill uppdatera appen så snart utvecklaren har publicerat appen, oavsett debiteringsstatus, WiFi-kapacitet eller slutanvändaraktivitet på enheten. Välj Uppskjutet om du vill avstå från appuppdateringar i upp till 90 dagar. Hög prioritet och uppskjuten träder endast i kraft på DO-enheter.",
+ "configurationSettingsFormat": "Formattext för konfigurationsinställningar",
+ "ignoreVersionDetection": "Ställ in på Ja för appar som uppdateras automatiskt av apputvecklaren (till exempel Google Chrome).",
+ "ignoreVersionDetectionMacOSLobApp": "Välj Ja för appar som uppdateras automatiskt av apputvecklaren eller om du bara vill se appens bundleID innan du installerar. Välj Nej om du vill visa appens bundleID och versionsnummer innan du installerar.",
+ "installAsManagedMacOSLobApp": "Den här inställningen gäller bara macOS 11 och högre. Appen kommer att installeras men inte hanteras på macOS 10.15 och tidigare.",
+ "installContextDropdown": "Välj rätt installationssammanhang. Med användarsammanhang installeras appen enbart för den angivna användaren medan enhetssammanhang installerar appen för alla användare på enheten.",
+ "ldapUrl": "Det här är LDAP-värdnamnet där klienter kan få de offentliga krypteringsnycklarna för mejlmottagarna. Mejlen krypteras när en nyckel är tillgänglig. Format som stöds: - ldap.example.com
\r\n- ldap.example.com:123
\r\n- ldap://ldap.example.com
- ldap://ldap.example.com:123
- ldaps://ldap.example.com
\r\n- ldaps://ldap.example.com:123
",
+ "permissionsSettings": "Välj körningsbehörigheter för den tillhörande appen.",
+ "policyAssociatedApp": "Välj en app som principen ska kopplas till.",
+ "policyConfigurationSettings": "Välj den metod som du vill använda för att definiera konfigurationsinställningarna för den här principen.",
+ "policyDescription": "Eller ange en beskrivning för konfigurationsprincipen.",
+ "policyEnrollmentType": "Välj om de här inställningarna ska hanteras via enhetshantering eller via appar som skapats med Intune SDK.",
+ "policyName": "Ange ett namn för den här konfigurationsprincipen.",
+ "policyPlatform": "Välj en plattform som ska gälla för den här appkonfigurationsprincipen.",
+ "policyProfileType": "Välj de enhetsprofiltyper som den här appkonfigurationsprofilen ska tillämpas på",
+ "policySMime": "Ange inställningar för S/MIME-signering och kryptering för Outlook.",
+ "sMimeDeployCertsFromIntune": "Ange om S/MIME-certifikat ska levereras från Intune för användning med Outlook.\r\nIntune kan automatiskt distribuera signerings- och krypteringscertifikat till användare via företagsportalen.",
+ "sMimeEnable": "Ange om S/MIME-kontroller ska aktiveras när ett mejl skrivs",
+ "sMimeEnableAllowChange": "Ange om användaren får ändra Aktivera S/MIME-inställningen.",
+ "sMimeEncryptAllEmails": "Ange om alla mejl måste krypteras.\r\nVid kryptering omvandlas data till en chiffertext som bara kan läsas av behöriga mottagare.",
+ "sMimeEncryptAllEmailsAllowChange": "Ange om användaren får ändra inställningen Kryptera alla mejl.",
+ "sMimeEncryptionCertProfile": "Ange en certifikatprofil för kryptering av e-post.",
+ "sMimeSignAllEmails": "Ange om alla mejl måste signeras.\r\nEn digital signatur kontrollerar mejlets äkthet och säkerställer att innehållet inte har manipulerats under överföringen.",
+ "sMimeSignAllEmailsAllowChange": "Ange om användaren får ändra inställningen Signera alla mejl.",
+ "sMimeSigningCertProfile": "Ange en certifikatprofil för signering av e-post.",
+ "sMimeUserNotificationType": "Metod för att meddela användarna om att de måste öppna företagsportalen för att hämta S/MIME-certifikat för Outlook."
},
- "BooleanActions": {
- "allow": "Tillåt",
- "block": "Blockera",
- "configured": "Konfigurerat",
- "disable": "Inaktivera",
- "dontRequire": "Kräv inte",
- "enable": "Aktivera",
- "hide": "Dölj",
- "limit": "Begränsning",
- "notConfigured": "Inte konfigurerat",
- "require": "Kräv",
- "show": "Visa",
- "yes": "Ja"
- },
- "ProactiveRemediations": {
- "Create": {
- "Basics": {
- "DescriptionMultiLineTextBox": {
- "label": "Beskrivning",
- "placeholder": "Ange en beskrivning"
- },
- "NameTextBox": {
- "label": "Namn",
- "placeholder": "Ange ett namn"
- },
- "PublisherTextBox": {
- "label": "Publisher",
- "placeholder": "Ange en utgivare"
- },
- "VersionTextBox": {
- "label": "Version"
- },
- "headerDescription": "Skapa ett nytt anpassat skriptpaket av de identifierings- och reparationsskript du har skrivit."
- },
- "ScopeTags": {
- "headerDescription": "Välj en eller flera grupper som skriptpaketet ska tilldelas."
- },
- "Settings": {
- "DetectionScriptMultiLineTextBox": {
- "label": "Identifieringsskript",
- "placeholder": "Ange skripttext",
- "requiredValidationMessage": "Ange identifieringsskriptet"
- },
- "EnforceScriptSignatureCheckOptionPicker": {
- "label": "Framtvinga signaturkontroll av skript"
- },
- "LoggedOnCredentialsOptionPicker": {
- "label": "Kör det här skriptet med inloggningsuppgifterna"
- },
- "RemediationScript": {
- "infoBox": "Skriptet körs i läget för endast identifiering eftersom det inte finns något reparationsskript."
- },
- "RemediationScriptMultiLineTextBox": {
- "label": "Reparationsskript",
- "placeholder": "Ange skripttext"
- },
- "RunIn64BitPSOptionPicker": {
- "label": "Kör skript i 64-bitars PowerShell"
- },
- "ScriptMultiLineTextBox": {
- "base64EncodingValidationMessage": "Ogiltigt skript. Ett eller flera tecken i skriptet är ogiltiga."
- },
- "headerDescription": "Skapa ett anpassat skriptpaket av de skript du skrivit. Skripten körs som standard på tilldelade enheter en gång om dagen.",
- "infoBox": "Det här skriptet är skrivskyddat. Några av inställningarna för skriptet kan ha inaktiverats."
- },
- "title": "Skapa anpassat skript",
- "ScriptProperties": {
- "GridHeaders": {
- "interval": "Intervall",
- "time": "Datum och tid"
- },
- "Interval": {
- "day": "Upprepas varje dag",
- "days": "Upprepas var {0}:e dag",
- "hour": "Upprepas en gång i timmen",
- "hours": "Upprepas var {0}:e timme",
- "month": "Upprepas varje månad",
- "months": "Upprepas var {0}:e månad",
- "week": "Upprepas varje vecka",
- "weeks": "Upprepas var {0}:e vecka"
- },
- "Time": {
- "utc": "{0} (UTC)",
- "utcWithDate": "{0} (UTC) på {1}",
- "withDate": "{0} kl. {1}"
- }
- }
- },
- "Edit": {
- "title": "Redigera: {0}"
- }
- },
"WindowsManagement": {
"Assignment": {
"noAssignmentCustomAttributeDisplayText": "Tilldela minst en grupp ett anpassat attribut. Gå till Egenskaper för att redigera tilldelningar.",
@@ -2708,910 +1644,6 @@
"shellScriptObjectName": "Shell-skript",
"successfullySavedPolicy": "Sparade {0}"
},
- "AssignmentFilters": {
- "assignmentFilterColumnHeader": "Filter",
- "noFilters": "Inget"
- },
- "Category": {
- "airPlay": "AirPlay",
- "airPrint": "AirPrint",
- "androidDefenderAtp": "Microsoft Defender for Endpoint",
- "androidDeviceOwnerApplications": "Program",
- "androidForWorkPassword": "Enhetslösenord",
- "appManagement": "Tillåt eller blockera appar",
- "applicationGuard": "Microsoft Defender Application Guard",
- "applicationRestrictions": "Begränsade appar",
- "applicationVisibility": "Visa eller dölj appar",
- "applications": "Appbutik",
- "applicationsAndGames": "App Store, dokumentvisning, spel",
- "applicationsAndGoogle": "Google Play Store",
- "appsAndExperience": "Appar och användarupplevelse",
- "associatedDomains": "Tillhörande domäner",
- "autonomousSingleAppMode": "Autonomt enappsläge",
- "azureOperationalInsights": "Azure Operational Insights",
- "bitLocker": "Windows-kryptering",
- "browser": "Webbläsare",
- "builtinApps": "Inbyggda appar",
- "cellular": "Mobilnät",
- "cloudAndStorage": "Moln och lagring",
- "cloudPrint": "Molnskrivare",
- "complianceEmailProfile": "E-post",
- "connectedDevices": "Anslutna enheter",
- "connectivity": "Mobilnät och anslutning",
- "contentCaching": "Cachelagring av innehåll",
- "controlPanelAndSettings": "Kontrollpanel och inställningar",
- "credentialGuard": "Microsoft Defender Credential Guard",
- "customCompliance": "Anpassad regelefterlevnad",
- "customCompliancePreview": "Anpassad efterlevnad (förhandsversion)",
- "customConfiguration": "Anpassad konfigurationsprofil",
- "customOMASettings": "Anpassade OMA-URI-inställningar",
- "customPreferences": "Prioritetsfil",
- "defender": "Microsoft Defender Antivirus",
- "defenderAntivirus": "Microsoft Defender Antivirus",
- "defenderExploitGuard": "Microsoft Defender Exploit Guard",
- "defenderFirewall": "Microsoft Defender-brandvägg",
- "defenderLocalSecurityOptions": "Säkerhetsalternativ för lokal enhet",
- "defenderSecurityCenter": "Microsoft Defender Säkerhetscenter",
- "deliveryOptimization": "Leveransoptimering",
- "derivedCredentialAuthenticationConfiguration": "Härledd autentiseringsuppgift",
- "deviceExperience": "Enhetsupplevelse",
- "deviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
- "deviceGuard": "Microsoft Defender Application Control",
- "deviceHealth": "Enhetens hälsotillstånd",
- "devicePassword": "Enhetslösenord",
- "deviceProperties": "Enhetsegenskaper",
- "deviceRestrictions": "Allmänt",
- "deviceSecurity": "Systemsäkerhet",
- "display": "Visning",
- "domainJoin": "Domänanslutning",
- "domains": "Domäner",
- "edgeBrowser": "Äldre Microsoft Edge (version 45 och tidigare)",
- "edgeBrowserSmartScreen": "Microsoft Defender SmartScreen",
- "edgeKiosk": "Microsoft Edge-kioskläge",
- "editionUpgrade": "Uppgradering av utgåva",
- "education": "Utbildning",
- "educationDeviceCerts": "Enhetscertifikat",
- "educationStudentCerts": "Elevcertifikat",
- "educationTakeATest": "Gör ett prov",
- "educationTeacherCerts": "Lärarcertifikat",
- "emailProfile": "E-post",
- "enterpriseDataProtection": "Windows Information Protection",
- "expeditedCheckin": "Konfiguration för hantering av mobil enhet",
- "extensibleSingleSignOn": "Tillägg för enkel inloggning",
- "filevault": "FileVault",
- "firewall": "Brandvägg",
- "games": "Spel",
- "gatekeeper": "Gatekeeper",
- "healthMonitoring": "Hälsoövervakning",
- "homeScreenLayout": "Hemskärmslayout",
- "iOSWallpaper": "Skrivbordsunderlägg",
- "importedPFX": "PKCS-importerat certifikat",
- "iosDefenderAtp": "Microsoft Defender for Endpoint",
- "iosKiosk": "Kiosk",
- "kernelExtensions": "Kerneltillägg",
- "keyboardAndDictionary": "Tangentbord och ordlista",
- "kiosk": "Kiosk",
- "kioskAndroidEnterprise": "Särskilda enheter",
- "kioskConfiguration": "Kiosk",
- "kioskConfigurationV2": "Kiosk",
- "kioskWebBrowser": "Kiosk-webbläsare",
- "lockScreenMessage": "Meddelande på låsskärm",
- "lockedScreenExperience": "Låst skärm",
- "logging": "Rapportering och telemetri",
- "loginItems": "Inloggningsalternativ",
- "loginWindow": "Inloggningsfönster",
- "macDefenderAtp": "Microsoft Defender for Endpoint",
- "maintenance": "Underhåll",
- "malware": "Skadlig kod",
- "messaging": "Meddelanden",
- "networkBoundary": "Nätverksgräns",
- "networkProxy": "Nätverksproxy",
- "notifications": "Appnotiser",
- "pKCS": "PKCS-certifikat",
- "password": "Lösenord",
- "personalProfile": "Privat profil",
- "personalization": "Anpassning",
- "policyOverride": "Åsidosätt grupprincip",
- "powerSettings": "Energiinställningar",
- "printer": "Skrivare",
- "privacy": "Sekretess",
- "privacyPerApp": "Sekretessundantag per app",
- "privacyPreferences": "Sekretessinställningar",
- "projection": "Projektion",
- "sCCMCompliance": "Configuration Manager-kompatibilitet",
- "sCEP": "SCEP-certifikat",
- "sCEPProperties": "SCEP-certifikat",
- "sMode": "Växla läge (endast Windows Insider)",
- "safari": "Safari",
- "search": "Sök",
- "session": "Session",
- "sharedDevice": "Delad iPad",
- "sharedPCAccountManager": "Delad enhet för flera användare",
- "singleSignOn": "Enkel inloggning",
- "smartScreen": "Microsoft Defender SmartScreen",
- "softwareUpdates": "Inställningar",
- "start": "Start",
- "systemExtensions": "Systemtillägg",
- "systemSecurity": "Systemsäkerhet",
- "trustedCert": "Betrott certifikat",
- "updates": "Uppdateringar",
- "userRights": "Användarrättigheter",
- "usersAndAccounts": "Användare och konton",
- "vPN": "Bas-VPN",
- "vPNApps": "Automatisk VPN",
- "vPNAppsAndTrafficRules": "Appar och trafikregler",
- "vPNConditionalAccess": "Villkorlig åtkomst",
- "vPNConnectivity": "Anslutningar",
- "vPNDNSTriggers": "DNS-inställningar",
- "vPNIKEv2": "IKEv2-inställningar",
- "vPNProxy": "Proxy",
- "vPNSplitTunneling": "Delade tunnlar (Split Tunneling)",
- "vPNTrustedNetwork": "Identifiering av betrott nätverk",
- "webContentFilter": "Webbinnehållsfilter",
- "wiFi": "Trådlöst",
- "win10Wifi": "Trådlöst",
- "windowsAtp": "Microsoft Defender for Endpoint",
- "windowsDefenderATP": "Microsoft Defender for Endpoint",
- "windowsHelloForBusiness": "Windows Hello för företag",
- "windowsSpotlight": "Windows Spotlight",
- "wiredNetwork": "Kabelanslutet nätverk",
- "wireless": "Trådlöst",
- "wirelessProjection": "Trådlös projektion",
- "workProfile": "Arbetsprofilinställningar",
- "workProfilePassword": "Lösenord för arbetsprofil",
- "xboxServices": "Xbox-tjänster",
- "zebraMx": "MX-profil (endast Zebra)",
- "complianceActionsLabel": "Åtgärder vid inkompatibilitet"
- },
- "MicrosoftEdgeChannel": {
- "beta": "Beta",
- "dev": "Dev",
- "stable": "Stable"
- },
- "ConfigurationTypes": {
- "Table": {
- "androidDeviceOwnerGeneral": "Enhetsbegränsningar (enhetsägare)",
- "androidForWorkGeneral": "Enhetsbegränsningar (arbetsprofil)"
- },
- "androidCustom": "Anpassade",
- "androidDeviceOwnerGeneral": "Enhetsbegränsningar",
- "androidDeviceOwnerPkcs": "PKCS-certifikat",
- "androidDeviceOwnerScep": "SCEP-certifikat",
- "androidDeviceOwnerTrustedCertificate": "Betrott certifikat",
- "androidDeviceOwnerVpn": "VPN",
- "androidDeviceOwnerWiFi": "Trådlöst",
- "androidEmailProfile": "Cookies (endast Samsung KNOX)",
- "androidForWorkCustom": "Anpassade",
- "androidForWorkEmailProfile": "E-post",
- "androidForWorkGeneral": "Enhetsbegränsningar",
- "androidForWorkImportedPFX": "PKCS-importerat certifikat",
- "androidForWorkOemConfig": "OEMConfig",
- "androidForWorkPKCS": "PKCS-certifikat",
- "androidForWorkSCEP": "SCEP-certifikat",
- "androidForWorkTrustedCertificate": "Betrott certifikat",
- "androidForWorkVpn": "VPN",
- "androidForWorkWiFi": "Trådlöst",
- "androidGeneral": "Enhetsbegränsningar",
- "androidImportedPFX": "PKCS-importerat certifikat",
- "androidPKCS": "PKCS-certifikat",
- "androidSCEP": "SCEP-certifikat",
- "androidTrustedCertificate": "Betrott certifikat",
- "androidVPN": "VPN",
- "androidWiFi": "Trådlöst",
- "androidZebraMx": "MX-profil (endast Zebra)",
- "complianceAndroid": "Kompatibilitetsprincip för Android",
- "complianceAndroidDeviceOwner": "Fullständigt hanterad, särskilt avsedd och företagsägd arbetsprofil",
- "complianceAndroidEnterprise": "Privatägd arbetsprofil",
- "complianceAndroidForWork": "Android for Work-efterlevnadsprincip",
- "complianceIos": "Kompatibilitetsprincip för iOS",
- "complianceMac": "Kompatibilitetsprincip för Mac",
- "complianceWindows10": "Windows 10 och senare efterlevnadsprincip",
- "complianceWindows10Mobile": "Kompatibilitetsprincip för Windows 10 Mobile",
- "complianceWindows8": "Kompatibilitetsprincip för Windows 8",
- "complianceWindowsPhone": "Kompatibilitetsprincip för Windows Phone",
- "exchangeActiveSync": "Exchange Active Sync",
- "iosCustom": "Anpassade",
- "iosDerivedCredentialAuthenticationConfiguration": "Härledd PIV-autentiseringsuppgift",
- "iosDeviceFeatures": "Enhetsfunktioner",
- "iosEDU": "Utbildning",
- "iosEducation": "Utbildning",
- "iosEmailProfile": "E-post",
- "iosGeneral": "Enhetsbegränsningar",
- "iosImportedPFX": "PKCS-importerat certifikat",
- "iosPKCS": "PKCS-certifikat",
- "iosPresets": "Förinställningar",
- "iosSCEP": "SCEP-certifikat",
- "iosTrustedCertificate": "Betrott certifikat",
- "iosVPN": "VPN",
- "iosVPNZscaler": "VPN",
- "iosWiFi": "Trådlöst",
- "macCustom": "Anpassade",
- "macDeviceFeatures": "Enhetsfunktioner",
- "macEndpointProtection": "Slutpunktsskydd",
- "macExtensions": "Tillägg",
- "macGeneral": "Enhetsbegränsningar",
- "macImportedPFX": "PKCS-importerat certifikat",
- "macSCEP": "SCEP-certifikat",
- "macTrustedCertificate": "Betrott certifikat",
- "macVPN": "VPN",
- "macWiFi": "Trådlöst",
- "settingsCatalog": "Inställningskatalog (förhandsversion)",
- "unsupported": "Stöds inte",
- "windows10AdministrativeTemplate": "Administrativa mallar (förhandsversion)",
- "windows10Atp": "Microsoft Defender för Endpoint (stationära enheter som kör Windows 10 och senare)",
- "windows10Custom": "Anpassade",
- "windows10DesktopSoftwareUpdate": "Programuppdateringar",
- "windows10DeviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
- "windows10EmailProfile": "E-post",
- "windows10EndpointProtection": "Slutpunktsskydd",
- "windows10EnterpriseDataProtection": "Windows Information Protection",
- "windows10General": "Enhetsbegränsningar",
- "windows10ImportedPFX": "PKCS-importerat certifikat",
- "windows10Kiosk": "Kiosk",
- "windows10NetworkBoundary": "Nätverksgräns",
- "windows10PKCS": "PKCS-certifikat",
- "windows10PolicyOverride": "Åsidosätt grupprincip",
- "windows10SCEP": "SCEP-certifikat",
- "windows10SecureAssessmentProfile": "Utbildningsprofil",
- "windows10SharedPC": "Delad enhet för flera användare",
- "windows10TeamGeneral": "Enhetsbegränsningar (Windows 10 Team)",
- "windows10TrustedCertificate": "Betrott certifikat",
- "windows10VPN": "VPN",
- "windows10WiFi": "Trådlöst",
- "windows10WiFiCustom": "Trådlöst (anpassat)",
- "windows8General": "Enhetsbegränsningar",
- "windows8SCEP": "SCEP-certifikat",
- "windows8TrustedCertificate": "Betrott certifikat",
- "windows8VPN": "VPN",
- "windows8WiFi": "Trådlöst (import)",
- "windowsDeliveryOptimization": "Leveransoptimering",
- "windowsDomainJoin": "Domänanslutning",
- "windowsEditionUpgrade": "Utgåveuppgradering och lägesväxling",
- "windowsIdentityProtection": "Identitetsskydd",
- "windowsPhoneCustom": "Anpassade",
- "windowsPhoneEmailProfile": "E-post",
- "windowsPhoneGeneral": "Enhetsbegränsningar",
- "windowsPhoneImportedPFX": "PKCS-importerat certifikat",
- "windowsPhoneSCEP": "SCEP-certifikat",
- "windowsPhoneTrustedCertificate": "Betrott certifikat",
- "windowsPhoneVPN": "VPN",
- "IosUpdate": "iOS-uppdateringsprincip"
- },
- "WindowsEnrollment": {
- "coManagementAuthorityDesc": "Ställ in samhanteringsinställningar för Configuration Manager-integrering",
- "coManagementAuthorityTitle": "Samhanteringsinställningar ",
- "deploymentProfiles": "Windows AutoPilot-distributionsprofiler",
- "description": "Lär dig om sju olika sätt att registrera en Windows 10/11-dator på Intune av användare eller administratörer.",
- "descriptionLabel": "Windows-registreringsmetoder",
- "enrollmentStatusPage": "Statussidan för registrering"
- },
- "Platform": {
- "all": "Alla",
- "android": "Android-enhetsadministratör",
- "androidAOSP": "Android (AOSP)",
- "androidEnterprise": "Android Enterprise",
- "androidForWork": "Android Enterprise",
- "androidWorkProfile": "Android Enterprise",
- "common": "Gemensam",
- "iOS": "iOS/iPadOS",
- "iosAndAndroidPlatformLabel": "iOS och Android",
- "iosCommaAndroidPlatformLabel": "iOS, Android",
- "linux": "Linux",
- "macOS": "macOS",
- "unknown": "Okänd",
- "unsupported": "Stöds inte",
- "windows": "Windows",
- "windows10": "Windows 10 och senare",
- "windows10CM": "Windows 10 och senare (ConfigMgr)",
- "windows10Holo": "Windows 10 Holographic",
- "windows10Mobile": "Windows 10 Mobile",
- "windows10Team": "Windows 10 Team",
- "windows10X": "Windows 10X",
- "windows8": "Windows 8.1 och senare",
- "windows8And10": "Windows 8 och 10",
- "windowsPhone": "Windows Phone 8.1",
- "windows10AndLater": "Windows 10 och senare",
- "windows10AndWindowsServer": "Windows 10, Windows 11 och Windows Server (ConfigMgr)",
- "windows10andLaterCM": "Windows 10 och senare (ConfigMgr)",
- "holoLens": "HoloLens",
- "surfaceHub2": "Surface Hub 2",
- "surfaceHub2S": "Surface Hub 2S",
- "windowsPC": "Windows-dator"
- },
- "EnrollmentRestrictions": {
- "DeletePayloadLink": {
- "content": "{0} ingår i en eller flera principuppsättningar. Om du tar bort {0} kan du inte längre tilldela den via de principuppsättningarna. Vill ta bort den ändå?",
- "contentWithError": "{0} kan ingå i en eller flera principuppsättningar. Om du tar bort {0} kan du inte längre tilldela den via de principuppsättningarna. Vill ta bort den ändå?",
- "header": "Vill du ta bort den här begränsningen?"
- },
- "DeviceLimit": {
- "description": "Ange högst antal enheter som en användare får registrera.",
- "header": "Begränsningar för antal enheter",
- "info": "Ange hur många enheter som varje användare kan registrera."
- },
- "DeviceType": {
- "VersionValidation": {
- "aOSP": "Måste vara minst 1.0.",
- "android": "Ange ett giltigt versionsnummer. Exempel: 5.0, 5.5.1, 6.0.0.1",
- "androidForWork": "Ange ett giltigt versionsnummer. Exempel: 5.0, 5.1.1",
- "iOS": "Ange ett giltigt versionsnummer. Exempel: 9.0, 10.0, 9.0.2",
- "mac": "Ange ett giltigt versionsnummer. Exempel: 10, 10.10, 10.10.1",
- "min": "Minimum får inte vara lägre än {0}",
- "minMax": "Minimiversionen får inte vara högre än maxversionen.",
- "windows": "Måste vara minst 10.0. Lämna tomt för att tillåta 8.1-enheter",
- "windowsMobile": "Måste vara minst 10.0. Lämna tomt för att tillåta 8.1-enheter"
- },
- "allPlatformsBlocked": "Alla enhetsplattformar är blockerade. Tillåt plattformsregistrering för att aktivera plattformskonfiguration.",
- "blockManufacturerPlaceHolder": "Namn på tillverkare",
- "blockManufacturersHeader": "Blockerade tillverkare",
- "cannotRestrict": "Begränsningen stöds inte",
- "configurationDescription": "Ange de begränsningar för plattformskonfiguration som gäller för att registrera en enhet. Använd kompatibilitetsprinciper för att begränsa enheter efter registreringen. Ange versioner som major.minor.build. Versionsbegränsningar gäller endast för enheter som registrerats med företagsportalen. Intune klassificerar enheter som privatägda som standard. En ytterligare åtgärd krävs för att klassificera enheter som företagsägda.",
- "configurationDescriptionLabel": "Läs mer om att ställa in registreringsbegränsningar",
- "configurations": "Konfigurera plattformar",
- "deviceManufacturer": "Enhetstillverkare",
- "header": "Begränsningar av enhetstyp",
- "info": "Ange vilka plattformar, versioner och hanteringstyper som kan registreras.",
- "manufacturer": "Tillverkare",
- "max": "Max",
- "maxVersion": "Högsta version",
- "min": "Min",
- "minVersion": "Lägsta version",
- "newPlatforms": "Du har tillåtit nya plattformar. Uppdatera plattformskonfigurationer.",
- "personal": "Personligt ägd",
- "platform": "Plattform",
- "platformDescription": "Du kan tillåta registrering av följande plattformar. Blockera bara plattformar som du inte har stöd för. Du kan ange ytterligare registreringsbegränsningar för tillåtna plattformar.",
- "platformSettings": "Plattformsinställningar",
- "platforms": "Välj plattformar",
- "platformsSelected": "{0} plattformar markerade",
- "type": "Typ",
- "versions": "versioner",
- "versionsRange": "Tillåt minsta/största intervall:",
- "windowsTooltip": "Begränsar registrering via mobilenhetshantering. Begränsar inte installation av datoragent. Det finns bara stöd för Windows 10- och Windows 11-enheter. Lämna versioner tomt för att tillåta Windows 8.1."
- },
- "Priority": {
- "saved": "Begränsningsprioriteringar har sparats."
- },
- "Row": {
- "announce": "Prioritet: {0}, namn: {1}, tilldelat: {2}"
- },
- "Table": {
- "deployed": "Distribuerad",
- "name": "Namn",
- "priority": "Prioritet"
- },
- "Type": {
- "limit": "Begränsning för antal enheter",
- "type": "Begränsning av enhetstyp"
- },
- "allUsers": "Alla användare",
- "androidRestrictions": "Android-begränsningar",
- "create": "Skapa begränsning",
- "defaultLimitDescription": "Det här är standardbegränsningen för antal enheter som tillämpas med lägsta prioritet för alla användare oavsett gruppmedlemskap.",
- "defaultTypeDescription": "Det här är standardbegränsningen för enhetstyper som tillämpas med lägsta prioritet för alla användare oavsett gruppmedlemskap.",
- "defaultWhfbDescription": "Det här är standardkonfigurationen för Windows Hello för företag som tillämpas med lägsta prioritet för alla användare oavsett gruppmedlemskap.",
- "deleteMessage": "Användare som påverkas begränsas av nästa högsta tilldelade prioritetsbegränsning eller standardbegränsningen om ingen annan begränsning har tilldelats.",
- "deleteTitle": "Vill du ta bort begränsningen för {0}?",
- "descriptionHint": "Kort stycke som beskriver företagsanvändning eller begränsningsnivå som anges av begränsningsinställningarna.",
- "edit": "Redigera begränsning",
- "info": "En enhet måste uppfylla de mest högprioriterade registreringsbegränsningarna som tilldelats användaren. Du kan dra en enhetsbegränsning om du vill ändra prioriteten. Standardbegränsningar har lägst prioritet för alla användare och styr användarlösa registreringar. En standardbegränsning kan redigeras men inte tas bort.",
- "iosRestrictions": "iOS-begränsningar",
- "mDM": "MDM",
- "macRestrictions": "MacOS-begränsningar",
- "maxVersion": "Högsta version",
- "minVersion": "Lägsta version",
- "nameHint": "Det här är det primära attributet som visas för att identifiera begränsningsuppsättningen.",
- "noAssignmentsStatusBar": "Koppla en begränsning till minst en grupp. Klicka på Egenskaper.",
- "notFound": "Begränsningen hittades inte. Den kanske redan har tagits bort.",
- "personallyOwned": "Privatägda enheter",
- "restriction": "Begränsning",
- "restrictionLowerCase": "begränsning",
- "restrictionType": "Begränsningstyp",
- "selectType": "Välj begränsningstyp",
- "selectValidation": "Välj en plattform",
- "typeHint": "Välj begränsning för enhetstyp för att begränsa enhetsegenskaper. Välj begränsning för enhetsgräns för att begränsa antalet enheter per användare.",
- "typeRequired": "Begränsningstyp krävs.",
- "winPhoneRestrictions": "Windows Phone-begränsningar",
- "windowsRestrictions": "Windows-begränsningar"
- },
- "Titles": {
- "ChromeOs": {
- "devices": "Chrome OS-enheter"
- },
- "ManagedDesktop": {
- "adminContacts": "Administratörskontakter",
- "appPackaging": "Appaket",
- "devices": "Enheter",
- "feedback": "Feedback",
- "gettingStarted": "Komma igång",
- "messages": "Meddelanden",
- "onlineResources": "Onlineresurser",
- "serviceRequests": "Tjänstförfrågningar",
- "settings": "Inställningar",
- "tenantEnrollment": "Klientorganisationsregistrering"
- },
- "actions": "Åtgärder vid inkompatibilitet",
- "advancedExchangeSettings": "Exchange Online-inställningar",
- "advancedThreatProtection": "Microsoft Defender for Endpoint",
- "allApps": "Alla appar",
- "allDevices": "Alla enheter",
- "androidFotaDeployments": "Android FOTA-distributioner",
- "appBundles": "Appaket",
- "appCategories": "Appkategorier",
- "appConfigPolicies": "Appkonfigurationsprinciper",
- "appInstallStatus": "Status för appinstallation",
- "appLicences": "Applicenser",
- "appProtectionPolicies": "Principer för appskydd",
- "appProtectionStatus": "Status för appskydd",
- "appSelectiveWipe": "Selektiv radering av app",
- "appleVppTokens": "Apple VPP-token",
- "apps": "Appar",
- "assign": "Tilldelningar",
- "assignedPermissions": "Tilldelade behörigheter",
- "assignedRoles": "Tilldelade roller",
- "autopilotDeploymentReport": "AutoPilot-distributioner (förhandsversion)",
- "brandingAndCustomization": "Anpassning",
- "cartProfiles": "Kundvagnsprofiler",
- "certificateConnectors": "Certifikatanslutningsprogram",
- "chromeEnterprise": "Chrome Enterprise",
- "compliancePolicies": "Kompatibilitetsprinciper",
- "complianceScriptManagement": "Skript",
- "complianceScriptManagementPreview": "Skript (förhandsversion)",
- "complianceSettings": "Inställningar för efterlevnadsprinciper",
- "conditionStatements": "Villkorssatser",
- "conditions": "Platser",
- "configMgr": "Microsoft Endpoint Configuration Manager",
- "configurationProfiles": "Konfigurationsprofiler",
- "configurationProfilesPreview": "Konfigurationsprofiler (förhandsversion)",
- "connectorsAndTokens": "Anslutning och token",
- "corporateDeviceIdentifiers": "ID:n för företagsenheter",
- "customAttributes": "Anpassade attribut",
- "customNotifications": "Anpassade meddelanden",
- "deploymentSettings": "Distributionsinställningar",
- "derivedCredentials": "Härledda autentiseringsuppgifter",
- "deviceActions": "Enhetsåtgärder",
- "deviceCategories": "Enhetskategorier",
- "deviceCleanUp": "Regler för enhetsrensning",
- "deviceEnrollmentManagers": "Enhetsregistreringshanterare",
- "deviceExecutionStatus": "Enhetsstatus",
- "deviceLimitEnrollmentRestrictions": "Gränser för enhetsregistrering",
- "deviceTypeEnrollmentRestrictions": "Plattformsbegränsningar för enhetsregistrering",
- "devices": "Enheter",
- "discoveredApps": "Identifierade appar",
- "embeddedSIM": "eSIM-mobilprofiler (förhandsversion)",
- "enrollDevices": "Registrera enheter",
- "enrollmentFailures": "Registreringsfel",
- "enrollmentNotifications": "Registreringsmeddelanden (förhandsversion)",
- "enrollmentRestrictions": "Registreringsbegränsningar",
- "exchangeActiveSync": "Exchange ActiveSync",
- "exchangeServiceConnectors": "Exchange-tjänstekopplingar",
- "failuresForFeatureUpdates": "Fel vid funktionsuppdatering (förhandsversion)",
- "failuresForQualityUpdates": "Snabbuppdateringsfel i Windows (förhandsversion)",
- "featureFlighting": "Förhandsversionstestning av funktioner",
- "featureUpdateDeployments": "Funktionsuppdateringar för Windows 10 och senare (förhandsversion)",
- "flighting": "Förhandsversionstestning",
- "fotaUpdate": "OTA-uppdatering (Over The Air) av inbyggd programvara",
- "groupPolicy": "Administrativa mallar",
- "groupPolicyAnalytics": "Grupprincipanalys",
- "helpSupport": "Hjälp och support",
- "helpSupportReplacement": "Hjälp och support ({0})",
- "iOSAppProvisioning": "Etableringsprofiler för iOS-app",
- "incompleteUserEnrollments": "Ofullständiga användarregistreringar",
- "intuneRemoteAssistance": "Fjärrhjälp (förhandsversion)",
- "iosUpdates": "Uppdatera principer för iOS/iPadOS",
- "legacyPcManagement": "Hantering av äldre datorer",
- "macOSSoftwareUpdate": "Uppdateringsprinciper för macOS",
- "macOSSoftwareUpdateAccountSummaries": "Installationsstatus för macOS-enheter",
- "macOSSoftwareUpdateCategorySummaries": "Sammanfattning av programuppdateringar",
- "macOSSoftwareUpdateStateSummaries": "uppdateringar",
- "managedGooglePlay": "Hanterat Google Play-konto",
- "msfb": "Microsoft Store för företag",
- "myPermissions": "Mina behörigheter",
- "notifications": "Aviseringar",
- "officeApps": "Office-appar",
- "officeProPlusPolicies": "Principer för Office-appar",
- "onPremise": "Lokalt",
- "onPremisesConnector": "Exchange ActiveSync On-Premises Connector",
- "onPremisesDeviceAccess": "Exchange ActiveSync-enheter",
- "onPremisesManageAccess": "Åtkomst till Exchange lokalt",
- "outOfDateIosDevices": "Installationsfel för iOS-enheter",
- "overview": "Översikt",
- "partnerDeviceManagement": "Enhetshantering för partner",
- "perUpdateRingDeploymentState": "Per distributionsstatus för uppdateringsring",
- "permissions": "Behörigheter",
- "platformApps": "{0} appar",
- "platformDevices": "{0} enheter",
- "platformEnrollment": "{0} registrering",
- "policies": "Principer",
- "previewMDMDevices": "Alla hanterade enheter (förhandsversion)",
- "profiles": "Profiler",
- "properties": "Egenskaper",
- "reports": "Rapporter",
- "retireNoncompliantDevices": "Dra tillbaka icke-kompatibla enheter",
- "retireNoncompliantDevicesPreview": "Retire noncompliant devices (preview)",
- "role": "Roll",
- "scriptManagement": "Skript",
- "securityBaselines": "Säkerhetsbaslinjer",
- "serviceToServiceConnector": "Exchange Online Connector",
- "shellScripts": "Shell-skript",
- "teamViewerConnector": "TeamViewer-anslutningsprogram",
- "telecomeExpenseManagement": "Kostnadsuppföljning av telekommunikation",
- "tenantAdmin": "Klientorganisationsadministratör",
- "tenantAdministration": "Administration av klientorganisation",
- "termsAndConditions": "Villkor",
- "titles": "Rubriker",
- "troubleshootSupport": "Felsökning + support",
- "user": "Användare",
- "userExecutionStatus": "Användarstatus",
- "warranty": "Garantileverantörer",
- "wdacSupplementalPolicies": "Tilläggsprinciper för S-läge",
- "windows10DriverUpdate": "Drivrutinsuppdateringar för Windows 10 och senare (förhandsversion)",
- "windows10QualityUpdate": "Kvalitetsuppdateringar för Windows 10 och senare (förhandsversion)",
- "windows10UpdateRings": "Uppdateringringar för Windows 10 och senare",
- "windows10XPolicyFailures": "Windows 10X-principfel",
- "windowsEnterpriseCertificate": "Windows Enterprise-certifikat",
- "windowsManagement": "PowerShell-skript",
- "windowsSideLoadingKeys": "Nycklar för separat inläsning i Windows",
- "windowsSymantecCertificate": "Windows DigiCert-certifikat",
- "windowsThreatReport": "Agentstatus för hot"
- },
- "ScopeTypes": {
- "allDevices": "Alla enheter",
- "allUsers": "Alla användare",
- "allUsersAndDevices": "Alla användare och alla enheter",
- "selectedGroups": "Valda grupper"
- },
- "DetectionRules": {
- "ComparisonOperators": {
- "equals": "Lika med",
- "greaterThan": "Större än",
- "greaterThanOrEqualTo": "Större än eller lika med",
- "lessThan": "Mindre än",
- "lessThanOrEqualTo": "Mindre än eller lika med",
- "notEqualTo": "Inte lika med"
- },
- "CustomScript": {
- "enforceSignatureCheck": "Tillämpa kontroll av skriptsignatur och kör skriptet obemärkt",
- "enforceSignatureCheckTooltip": "Välj Ja om du vill kontrollera att skriptet har signerats av en betrodd utgivare så att skriptet körs utan varningar eller uppmaningar. Skriptet körs avblockerat. Välj Nej (standard) om du vill köra skriptet med slutanvändarens bekräftelse utan signaturkontroll.",
- "header": "Använd ett anpassat identifieringsskript",
- "runAs32Bit": "Kör skript som 32-bitarsprocess på 64-bitarsklienter",
- "runAs32BitTooltip": "Välj Ja om du vill köra skriptet i en 32-bitarsprocess på 64-bitarsklienter. Välj Nej (standard) om du vill köra skriptet i en 64-bitarsprocess på 64-bitarsklienter. 32-bitarsklienter kör skriptet i en 32-bitarsprocess.",
- "scriptFile": "Skriptfil",
- "scriptFileNotSelectedValidation": "Ingen skriptfil har valts.",
- "scriptFileTooltip": "Välj ett PowerShell-skript som identifierar förekomst av appen på klienten. Appen identifieras när skriptet både returnerar värdet 0 som slutkod och skriver ett strängvärde till STDOUT."
- },
- "Manual": {
- "FileRule": {
- "DetectionMethodOptions": {
- "dateCreated": "Skapad",
- "dateModified": "Ändrad den",
- "doesNotExist": "Filen eller mappen finns inte",
- "fileOrFolderExists": "Fil eller mapp finns",
- "sizeInMB": "Storlek i MB",
- "version": "Sträng (version)"
- },
- "associatedWith32Bit": "Kopplat till en 32-bitarsapp på 64-bitarsklienter",
- "associatedWith32BitTooltip": "Välj Ja om du vill expandera eventuella sökvägsmiljövariabler i 32-bitarskontexten på 64-bitarsklienter. Välj Nej (standard) om du vill expandera eventuella sökvägsmiljövariabler i 64-bitarskontexten på 64-bitarsklienter. 32-bitarsklienter använder alltid 32-bitarskontexten.",
- "detectionMethod": "Identfieringsmetod",
- "detectionMethodTooltip": "Välj typ av identifieringsmetod som används för att verifiera förekomsten av appen.",
- "fileOrFolder": "Fil eller mapp",
- "fileOrFolderToolTip": "Den fil eller mapp som ska identifieras.",
- "operator": "Operator",
- "operatorTooltip": "Välj operator för identifieringsmetoden som används för att verifiera jämförelsen.",
- "path": "Sökväg",
- "pathTooltip": "Den fullständiga sökvägen till mappen som innehåller filen eller mappen som ska identifieras.",
- "value": "Värde",
- "valueTooltip": "Välj ett värde som matchar den valda identifieringsmetoden. Dataidentifieringsmetoder måste anges i lokal tid."
- },
- "GridColumns": {
- "pathOrCode": "Sökväg/kod",
- "type": "Typ"
- },
- "MsiRule": {
- "operator": "Operator",
- "operatorTooltip": "Välj operator för att jämföra MSI-produktversionsverifiering.",
- "productCode": "MSI-produktkod",
- "productCodeTooltip": "En giltig MSI-produktkod för appen.",
- "productVersion": "Värde",
- "productVersionCheck": "Kontroll av MSI-produktversion",
- "productVersionCheckTooltip": "Välj Ja om du utöver MSI-produktkoden också vill kontrollera MSI-produktversionen.",
- "productVersionTooltip": "Ange appens MSI-produktversion."
- },
- "RegistryRule": {
- "DetectionMethodOptions": {
- "integerComparison": "Heltalsjämförelse",
- "keyDoesNotExist": "Nyckeln finns inte",
- "keyExists": "Nyckeln finns",
- "stringComparison": "Strängjämförelse",
- "valueDoesNotExist": "Värdet finns inte",
- "valueExists": "Värdet finns",
- "versionComparison": "Versionsjämförelse"
- },
- "associatedWith32Bit": "Kopplat till en 32-bitarsapp på 64-bitarsklienter",
- "associatedWith32BitTooltip": "Välj Ja om du vill söka i 32-bitarsregistret på 64-bitarsklienter. Välj Nej (standard) om du vill söka i 64-bitarsregistret på 64-bitarsklienter. 32-bitarsklienter söker alltid i 32-bitarsregistret.",
- "detectionMethod": "Identfieringsmetod",
- "detectionMethodTooltip": "Välj typ av identifieringsmetod som används för att verifiera förekomsten av appen.",
- "keyPath": "Nyckelsökväg",
- "keyPathTooltip": "Den fullständiga sökvägen till registerposten som innehåller värdet som ska identifieras.",
- "operator": "Operator",
- "operatorTooltip": "Välj operator för identifieringsmetoden som används för att verifiera jämförelsen.",
- "value": "Värde",
- "valueName": "Värdenamn",
- "valueNameTooltip": "Namnet på det registervärde som ska identifieras.",
- "valueTooltip": "Välj ett värde som matchar den valda identifieringsmetoden."
- },
- "RuleTypeOptions": {
- "file": "Fil",
- "mSI": "MSI",
- "registry": "Register"
- },
- "gridAriaLabel": "Identifieringsregler",
- "header": "Skapa en regel som visar förekomst av appen.",
- "noRulesSelectedPlaceholder": "Inga regler har angetts.",
- "ruleTableLimit": "Du kan lägga till upp till 25 identifieringsregler",
- "ruleType": "Regeltyp",
- "ruleTypeTooltip": "Välj den typ av identifieringsregel du vill lägga till."
- },
- "RuleConfigurationOptions": {
- "customScript": "Använd ett anpassat identifieringsskript",
- "manual": "Ställ in identifieringsregler manuellt"
- },
- "bladeTitle": "Identifieringsregler",
- "header": "Ställ in appspecifika regler för att identifiera förekomst av appen.",
- "rulesFormat": "Regelformat",
- "rulesFormatTooltip": "Ställ antingen in identifieringsregler manuellt eller använd ett anpassat skript för att identifiera förekomst av appen.",
- "selectorLabel": "Identifieringsregler"
- },
- "AppType": {
- "androidEnterpriseSystemApp": "Android Enterprise-systemapp",
- "androidForWorkApp": "App från hanterad Google Play-butik",
- "androidLobApp": "Branschspecifik Android-app",
- "androidStoreApp": "Google Play-app",
- "builtInAndroid": "Inbyggd Android-app",
- "builtInApp": "Inbyggd app",
- "builtInIos": "Inbyggd iOS-app",
- "default": "",
- "iosLobApp": "Branschspecifik iOS-app",
- "iosStoreApp": "iOS Store-app",
- "iosVppApp": "Volyminköpsprogramapp för iOS",
- "lineOfBusinessApp": "Branschspecifik app",
- "macOSDmgApp": "macOS app (DMG)",
- "macOSEdgeApp": "Microsoft Edge (macOS)",
- "macOSLobApp": "Verksamhetsspecifik macOS-app",
- "macOSMdatpApp": "Microsoft Defender ATP (macOS)",
- "macOSOfficeSuiteApp": "Microsoft 365-appar (macOS)",
- "macOsVppApp": "Volyminköpsprogramapp för macOS",
- "managedAndroidLobApp": "Hanterad branschspecifik Android-app",
- "managedAndroidStoreApp": "Hanterad Google Play-app",
- "managedGooglePlayApp": "App från hanterad Google Play-butik",
- "managedGooglePlayPrivateApp": "Privat app från hanterad Google Play-butik",
- "managedGooglePlayWebApp": "Hanterad Google Play-webblänk",
- "managedIosLobApp": "Hanterad branschspecifik iOS-app",
- "managedIosStoreApp": "Hanterad iOS Store-app",
- "microsoftStoreForBusinessApp": "Microsoft Store för företag-app",
- "microsoftStoreForBusinessReleaseManagedApp": "Microsoft Store för företag",
- "officeSuiteApp": "Microsoft 365-applikationer (Windows 10 och senare)",
- "webApp": "Webblänk",
- "windowsAppXLobApp": "Branschspecifik Windows AppX-app",
- "windowsClassicApp": "Windows-app (Win32)",
- "windowsEdgeApp": "Microsoft Edge (Windows 10 och senare)",
- "windowsMobileMsiLobApp": "Branschspecifik Windows MSI-app",
- "windowsPhone81AppXBundleLobApp": "Branschspecifik Windows Phone 8.1 AppX-app",
- "windowsPhone81AppXLobApp": "Branschspecifik Windows Phone 8.1 AppX-app",
- "windowsPhone81StoreApp": "Windows Phone 8.1 Store-app",
- "windowsPhoneXapLobApp": "Branschspecifik Windows Phone XAP-app",
- "windowsStoreApp": "Microsoft Store-app",
- "windowsUniversalAppXLobApp": "Branschspecifik Windows Universal AppX-app",
- "windowsUniversalLobApp": "Branschspecifik universell Windows-app"
- },
- "PolicyType": {
- "AttackSurfaceReductionRules": {
- "configMgr": "Regler för att minska attackytan (ConfigMgr)"
- },
- "EndpointDetectionandResponse": {
- "mDE": "Slutpunktsidentifiering och svar"
- },
- "EndpointSecurityTemplate": {
- "aSRAppBrowserSecurity": "App- och webbläsarisolering",
- "aSRApplicationControl": "Programreglering",
- "aSRAttackSurfaceReduction": "Regler för minskning av attackytan",
- "aSRDeviceControl": "Enhetskontroll",
- "aSRExploitProtection": "Sårbarhetsskydd",
- "aSRWebProtection": "Webbskydd (äldre Microsoft Edge)",
- "aVExclusions": "Microsoft Defender Antivirus-uteslutning",
- "antivirus": "Microsoft Defender Antivirus",
- "cloudPC": "Windows 365-säkerhetsbaslinje",
- "default": "Slutpunktsskydd",
- "defenderTest": "Demonstration av Microsoft Defender för Endpoint",
- "diskEncryption": "BitLocker",
- "eDR": "Slutpunktsidentifiering och svar",
- "edgeSecurityBaseline": "Microsoft Edge-baslinje",
- "edgeSecurityBaselinePreview": "Förhandsversion: Microsoft Edge-baslinje",
- "editionUpgradeConfiguration": "Utgåveuppgradering och lägesväxling",
- "firewall": "Microsoft Defender-brandvägg",
- "firewallRules": "Microsoft Defender-brandväggsregler",
- "identityProtection": "Kontoskydd",
- "identityProtectionPreview": "Kontoskydd (förhandsversion)",
- "mDMSecurityBaseline1810": "MDM-säkerhetsbaslinje för Windows 10 och senare för oktober 2018",
- "mDMSecurityBaseline1810Preview": "Förhandsversion: MDM-säkerhetsbaslinje för Windows 10 och senare för oktober 2018",
- "mDMSecurityBaseline1810PreviewBeta": "Förhandsversion: MDM-säkerhetsbaslinje för Windows 10 för oktober 2018 (beta)",
- "mDMSecurityBaseline1906": "MDM-säkerhetsbaslinje för Windows 10 och senare för maj 2019",
- "mDMSecurityBaseline2004": "MDM-säkerhetsbaslinje för Windows 10 och senare för augusti 2020",
- "mDMSecurityBaseline2101": "MDM-säkerhetsbaslinje för Windows 10 och senare december 2020",
- "macOSAntivirus": "Antivirus",
- "macOSDiskEncryption": "FileVault",
- "macOSFirewall": "macOS-brandvägg",
- "microsoftDefenderBaseline": "Baslinjeinställning för Microsoft Defender för Endpoint",
- "office365Baseline": "Microsoft Office O365-baslinje",
- "office365BaselinePreview": "Förhandsversion: Microsoft Office O365-baslinje",
- "securityBaselines": "Säkerhetsbaslinjer",
- "test": "Testmall",
- "testFirewallRulesSecurityTemplateName": "Microsoft Defender-brandväggsregler (test)",
- "testIdentityProtectionSecurityTemplateName": "Kontoskydd (test)",
- "windowsSecurityExperience": "Windows-säkerhetsupplevelse"
- },
- "Firewall": {
- "mDE": "Microsoft Defender-brandväggen"
- },
- "FirewallRules": {
- "mDE": "Microsoft Defender-brandväggsregler"
- },
- "administrativeTemplates": "Administrativa mallar",
- "androidCompliancePolicy": "Kompatibilitetsprincip för Android",
- "aospDeviceOwnerCompliancePolicy": "Kompatibilitetsprincip för Android (AOSP)",
- "applicationControl": "Programreglering",
- "custom": "Anpassad",
- "deliveryOptimization": "Leveransoptimering",
- "derivedPersonalIdentityVerificationCredential": "Härledd autentiseringsuppgift",
- "deviceFeatures": "Enhetsfunktioner",
- "deviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
- "deviceLock": "Enhetslås",
- "deviceOwner": "Fullständigt hanterad, särskilt avsedd och företagsägd arbetsprofil",
- "deviceRestrictions": "Enhetsbegränsningar",
- "deviceRestrictionsWindows10Team": "Enhetsbegränsningar (Windows 10 Team)",
- "domainJoinPreview": "Domänanslutning",
- "editionUpgradeAndModeSwitch": "Utgåveuppgradering och lägesväxling",
- "education": "Utbildning",
- "email": "E-post",
- "emailSamsungKnoxOnly": "Cookies (endast Samsung KNOX)",
- "endpointProtection": "Slutpunktsskydd",
- "expeditedCheckin": "Konfiguration för hantering av mobil enhet",
- "exploitProtection": "Sårbarhetsskydd",
- "extensions": "Tillägg",
- "hardwareConfigurations": "BIOS-konfigurationer",
- "identityProtection": "Identitetsskydd",
- "iosCompliancePolicy": "Kompatibilitetsprincip för iOS",
- "kiosk": "Kiosk",
- "macCompliancePolicy": "Kompatibilitetsprincip för Mac",
- "microsoftDefenderAntivirus": "Microsoft Defender Antivirus",
- "microsoftDefenderAntivirusexclusions": "Microsoft Defender Antivirus-uteslutning",
- "microsoftDefenderAtpWindows10Desktop": "Microsoft Defender för Endpoint (stationära enheter som kör Windows 10 eller senare)",
- "microsoftDefenderFirewallRules": "Microsoft Defender-brandväggsregler",
- "microsoftEdgeBaseline": "Microsoft Edge-baslinje",
- "mxProfileZebraOnly": "MX-profil (endast Zebra)",
- "networkBoundary": "Nätverksgräns",
- "oemConfig": "OEMConfig",
- "overrideGroupPolicy": "Åsidosätt grupprincip",
- "pkcsCertificate": "PKCS-certifikat",
- "pkcsImportedCertificate": "PKCS-importerat certifikat",
- "preferenceFile": "Prioritetsfil",
- "presets": "Förinställningar",
- "scepCertificate": "SCEP-certifikat",
- "secureAssessmentEducation": "Begränsad provmiljö (utbildning)",
- "settingsCatalog": "Inställningskatalog",
- "sharedMultiUserDevice": "Delad enhet för flera användare",
- "softwareUpdates": "Programuppdateringar",
- "trustedCertificate": "Betrott certifikat",
- "unknown": "Okänd",
- "unsupported": "Stöds inte",
- "vpn": "VPN",
- "wiFi": "Trådlöst",
- "wiFiImport": "Trådlöst (import)",
- "windows10CompliancePolicy": "Kompatibilitetsprincip för Windows 10/11",
- "windows10MobileCompliancePolicy": "Kompatibilitetsprincip för Windows 10 Mobile",
- "windows10XScep": "SCEP-certifikat – TEST",
- "windows10XTrustedCertificate": "Betrott certifikat – TEST",
- "windows10XVPN": "VPN – TEST",
- "windows10XWifi": "WIFI – TEST",
- "windows8CompliancePolicy": "Kompatibilitetsprincip för Windows 8",
- "windowsHealthMonitoring": "Hälsoövervakning i Windows",
- "windowsInformationProtection": "Windows Information Protection",
- "windowsPhoneCompliancePolicy": "Kompatibilitetsprincip för Windows Phone",
- "windowsUpdateforBusiness": "Windows Update för företag",
- "wiredNetwork": "Kabelanslutet nätverk",
- "workProfile": "Privatägd arbetsprofil"
- },
- "OfficeSuiteAppsTab": {
- "acceptLicenseOnBehalfOfUsersLabel": "Godkänn licensvillkoren för programvara från Microsoft för användares räkning",
- "appSuiteConfigurationLabel": "Konfiguration av appsvit",
- "appSuiteInformationLabel": "Information om appsvit",
- "appsToBeInstalledLabel": "Appar som ska installeras som en del av sviten",
- "architectureLabel": "Arkitektur",
- "architectureTooltip": "Anger om 32-bitars- eller 64-bitarsversionen av Microsoft 365-appar är installerad på enheter.",
- "configurationDesignerLabel": "Configuration Designer",
- "configurationFileLabel": "Konfigurationsfil",
- "configurationSettingsFormatLabel": "Format för konfigurationsinställningar",
- "configureAppSuiteLabel": "Konfigurera appsviten",
- "configuredLabel": "Konfigurerat",
- "currentVersionLabel": "Aktuell version",
- "currentVersionTooltip": "Det här är den aktuella versionen av Office som har ställts in i den här sviten. Det här värdet uppdaterats när en nyare version ställs in och sparas.",
- "enableMicrosoftSearchAsDefaultTooltip": "Installerar en bakgrundstjänst för att fastställa huruvida ett Microsoft Search i Bing-tillägg för Google Chrome är installerat på enheten.",
- "enterXmlDataLabel": "Ange XML-data",
- "languagesLabel": "Språk",
- "languagesTooltip": "Office installeras automatiskt med operativsystemets standardspråk. Välj eventuellt ytterligare språk som du vill installera.",
- "learnMoreText": "Läs mer",
- "newUpdateChannelTooltip": "Anger hur ofta appen ska uppdateras med nya funktioner.",
- "noCurrentVersionText": "Ingen aktuell version",
- "noLanguagesSelectedLabel": "Inga språk har valts",
- "notConfiguredLabel": "Inte konfigurerat",
- "propertiesLabel": "Egenskaper",
- "removeOtherVersionsLabel": "Ta bort andra versioner",
- "removeOtherVersionsTooltip": "Välj Ja om du vill ta bort andra versioner av Office (MSI) från användarenheter.",
- "selectOfficeAppsLabel": "Välj Office-appar",
- "selectOfficeAppsTooltip": "Välj de Office 365-appar som du vill installera som en del av sviten.",
- "selectOtherOfficeAppsLabel": "Välj andra Office-appar (licens krävs)",
- "selectOtherOfficeAppsTooltip": "Om du äger licenser för de här ytterligare Office-apparna kan du även tilldela dem i Intune.",
- "specificVersionLabel": "Specifik version",
- "updateChannelLabel": "Uppdateringskanal",
- "updateChannelTooltip": "Anger hur ofta appen ska uppdateras med nya funktioner.
\r\nMånadskanal – Ge användarna de senaste funktionerna i Office så fort de är tillgängliga.
\r\nMånadskanal för företag – Ge en förhandstitt på de senaste funktionerna i Office en gång i månaden, den andra tisdagen i månaden.
\r\nMånadskanal (riktad) – Ge en förhandstitt på den kommande månadskanalversionen. Det är en uppdateringskanal som stöds och som brukar vara tillgänglig minst en vecka i förväg när det är en månadskanalversion som innehåller nya funktioner.
\r\nHalvårskanal – Ger användarna nya Office-funktioner några gånger om året.
\r\nHalvårskanal (riktad) – Ger pilotavändare och programkompatibilitetstestare möjlighet att testa nästa halvårskanal.",
- "useMicrosoftSearchAsDefault": "Installera bakgrundstjänst för Microsoft Search i Bing",
- "useSharedComputerActivationLabel": "Använd aktivering av delade datorer",
- "useSharedComputerActivationTooltip": "Med aktivering av delad dator kan du distribuera Microsoft 365-appar till datorer som används av flera användare. I vanliga fall kan användare bara installera och aktivera Microsoft 365-appar på ett begränsat antal enheter, till exempel 5 datorer. Om du använder Microsoft 365-appar med aktivering av delad dator, räknas det inte av mot den kvoten.",
- "versionToInstallLabel": "Version som ska installeras",
- "versionToInstallTooltip": "Välj den version av Office som ska installeras.",
- "xLanguagesSelectedLabel": "{0} språk har valts",
- "xmlConfigurationLabel": "XML-konfiguration"
- },
- "OfficeApplicationType": {
- "access": "Access",
- "bing": "Microsoft Search som standard",
- "excel": "Excel",
- "groove": "OneDrive (Groove)",
- "lync": "Skype för företag",
- "oneDrive": "OneDrive Desktop",
- "oneNote": "OneNote",
- "outlook": "Outlook",
- "powerPoint": "PowerPoint",
- "publisher": "Publisher",
- "teams": "Teams",
- "word": "Word"
- },
- "WindowsQualityUpdateProfile": {
- "Details": {
- "DaysUntilForcedReboot": {
- "label": "Antal dagar att vänta innan omstart framtvingas"
- },
- "Description": {
- "label": "Beskrivning"
- },
- "Name": {
- "label": "Namn"
- },
- "QualityUpdateRelease": {
- "label": "Skicka ut installation av kvalitetsuppdateringar om enhetens operativsystemversion är under:"
- },
- "bladeTitle": "Kvalitetsuppdateringar Windows 10 och senare (förhandsversion)",
- "loadError": "Det gick inte att läsa in!"
- },
- "TabName": {
- "qualityUpdateSettings": "Inställningar"
- },
- "infoBoxText": "Den enda kontrollen av kvalitetsuppdateringar som just nu är tillgänglig förutom den befintliga principen för uppdateringsringar för Windows 10 och senare är möjligheten att skicka kvalitetsuppdateringar för enheter som hamnat under en angiven korrigeringsnivå. Det kommer att finnas fler kontroller i framtiden.",
- "warningBoxText": "Utskick av programuppdateringar kan visserligen förkorta tiden till regelefterlevnad men påverkar också användarnas produktivitet. Risken för att användarna måste starta om datorn under arbetstid ökar markant."
- },
- "Devices": {
- "General": {
- "android": "Android"
- },
- "aOSP": "Android Open Source Project",
- "android": "Android-enhetsadministratör",
- "androidWorkProfile": "Android Enterprise (arbetsprofil)",
- "iOS": "iOS/iPadOS",
- "mac": "macOS",
- "windows": "Windows (mobilenhetshantering)",
- "windows10": "Windows 10 och senare",
- "windowsHomeSku": "Windows Home Sku",
- "windowsMobile": "Windows Mobile"
- },
"SettingDetails": {
"CustomPolicyConfigurationProfile": {
"uploadControlPlaceHolderText": "Välj en konfigurationsprofilfil"
@@ -3675,7 +1707,7 @@
"aESGCM128": "AES-128-GCM (16-octet ICV)",
"aESGCM256": "AES-256-GCM (16-octet ICV)",
"aadSharedDeviceDataClearAppsDescription": "Lägg till appar som inte optimerats för läget Delad enhet i listan. Appens lokala data raderas när en användare loggar ut från en app som är optimerad för delat enhetsläge. Tillgängligt för dedikerade enheter som har registrerats med Delat läge med Android 9 och senare.",
- "aadSharedDeviceDataClearAppsName": "Rensa lokala data i appar som inte optimerats för läget Delad enhet (allmänt tillgänglig förhandsversion)",
+ "aadSharedDeviceDataClearAppsName": "Rensa lokala data i appar som inte optimerats för läget Delad enhet",
"accountsPageDescription": "Blockera åtkomst till konton i inställningsappen.",
"accountsPageName": "Konton",
"accountsSignInAssistantSettingsDescription": "Blockera Tjänsten Inloggningsassistent för Microsoft (wlidsvc). Om den här inställningen inte konfigureras kan NT-tjänsten wlidsvc kontrolleras av användaren (manuell start)",
@@ -5503,7 +3535,7 @@
"enableEndUserAccessToDefenderName": "Användaråtkomst till Defender",
"enableEngagedRestartDescription": "Aktiverar inställningar som tillåter användaren att växla till interaktiv omstart.",
"enableEngagedRestartName": "Tillåt användare att starta om (interaktiv omstart)",
- "enableIdentityPrivacyDescription": "Den här egenskapen döljer användarnamn med den text du anger. Om du exempelvis skriver ”anonym” visas alla användare som autentiseras med den här trådlösa anslutningen med hjälp av sitt riktiga namn, som ”anonym”.",
+ "enableIdentityPrivacyDescription": "Den här egenskapen maskerar användarnamn med den text du anger. Om du till exempel skriver \"anonym\" visas varje användare som autentiserar med den här Wi-Fi-anslutningen med sitt riktiga användarnamn som anonyma. Detta kan krävas om du använder enhetsbaserad certifikatautentisering.",
"enableIdentityPrivacyName": "Identitetsskydd (yttre identitet)",
"enableNetworkInspectionSystemDescription": "Blockera skadlig trafik som identifierats av signaturer i NIS (Network Inspection System)",
"enableNetworkInspectionSystemName": "NIS (Network Inspection System)",
@@ -7252,6 +5284,8 @@
"presharedKeyEncodingDescription": "Koda i förväg delade nycklar med UTF-8.",
"presharedKeyEncodingName": "I förväg delad nyckelkodning",
"preventAny": "Hindra all delning över gränser",
+ "primaryAuthenticationMethodName": "Primär autentiseringsmetod",
+ "primaryAuthenticationMethodTEAPDescription": "Välj det primära sättet som du vill att användarna ska autentisera. När du väljer Certifikat väljer du en av de certifikatprofiler (SCEP eller PKCS) som också distribueras till enheten. Det här är identitetscertifikatet som presenteras av enheten för servern.",
"primarySMTPAddressOption": "Primär SMTP-adress",
"printersColumns": "t.ex. skrivarens DNS-namn",
"printersDescription": "Tillhandahåll skrivare automatiskt baserat på deras nätverksvärdnamn. Den här inställningen har inte stöd för delade skrivare.",
@@ -7663,6 +5697,8 @@
"searchEnableRemoteQueriesName": "Fjärrfrågor",
"secondActiveEthernet": "Andra aktiva Ethernet",
"secondEthernet": "Andra Ethernet",
+ "secondaryAuthenticationMethodName": "Sekundär autentiseringsmetod",
+ "secondaryAuthenticationMethodTEAPDescription": "Välj det sekundära sättet som du vill att användarna ska autentisera. När du väljer Certifikat väljer du en av de certifikatprofiler (SCEP eller PKCS) som också distribueras till enheten. Det här är identitetscertifikatet som presenteras av enheten för servern.",
"secretKey": "Hemlig nyckel:",
"secureBootEnabledDescription": "Kräv att säker start ska vara aktiverat på enheten",
"secureBootEnabledName": "Kräv att säker start ska vara aktiverat på enheten",
@@ -8074,6 +6110,7 @@
"systemUpdateWindow9": "04:30:00",
"systemWindowsBlockedDescription": "Inaktivera meddelanden som popup-fönster, inkommande samtal, utgående samtal, systemaviseringar och systemfel.",
"systemWindowsBlockedName": "Meddelandefönster",
+ "tEAPName": "Tunnel EAP (TEAP)",
"tLSMinMax": "Minimiversionen av TLS måste vara mindre än eller lika med maxversionen av TLS.",
"tLSVersionRangeMaximum": "Högsta TLS-versionsintervall",
"tLSVersionRangeMaximumDescription": "Ange en högsta TLS-version på 1.0, 1.1 eller 1.2. Om inget anges så används standardvärdet 1.2.",
@@ -8126,6 +6163,17 @@
"timeWindowSameStartEndDayTime": "Slutdatum/tid kan inte vara detsamma som startdatum/tid.",
"timeZoneDescription": "Välj tidszon för målenheterna.",
"timeZoneName": "Tidszon",
+ "timeoutFifteenMinutes": "15 minuter",
+ "timeoutFiveMinutes": "5 minuter",
+ "timeoutFourHours": "4 timmar",
+ "timeoutNever": "Ingen tidsgräns",
+ "timeoutOneHour": "1 timme",
+ "timeoutOneMinute": "1 minut",
+ "timeoutTenMinutes": "10 minuter",
+ "timeoutThirtyMinutes": "30 minuter",
+ "timeoutThreeMinutes": "3 minuter",
+ "timeoutTwoHours": "2 timmar",
+ "timeoutTwoMinutes": "2 minuter",
"toggleConfigurationPkgDescription": "Ladda upp ett signerat konfigurationspaket som ska användas för att registrera Microsoft Defender för Endpoint-klienten",
"toggleConfigurationPkgName": "Konfigurationspakettyp för Microsoft Defender för Endpoint-klient:",
"trafficRuleAppName": "App",
@@ -8824,6 +6872,33 @@
"win10WifiWirelessSecurityTypeName": "Typ av trådlös säkerhet",
"win10WifiWirelessSecurityTypeOpen": "Öppen (ingen autentisering)",
"win10WifiWirelessSecurityTypeWPA": "WPA/WPA2-Personal",
+ "win10WiredAuthenticationModeDescription": "Välj om du vill autentisera användaren, enheten, båda eller använda gästautentisering (inget). Kontrollera att certifikattypen matchar autentiseringstypen om du använder certifikatautentisering.",
+ "win10WiredAuthenticationModeName": "Autentiseringsläge",
+ "win10WiredAuthenticationPeriodDescription": "Antal sekunder som klienten ska vänta efter ett autentiseringsförsök innan det misslyckas. Välj ett tal mellan 1 och 3 600. Om inget värde anges används 18 sekunder.",
+ "win10WiredAuthenticationPeriodName": "Autentiseringsperiod",
+ "win10WiredAuthenticationRetryDelayPeriodDescription": "Antal sekunder mellan en misslyckad autentisering och nästa autentiseringsförsök. Välj ett värde mellan 1 och 3 600. Om inget värde anges används 1 sekund.",
+ "win10WiredAuthenticationRetryDelayPeriodName": "Tid innan nytt autentiseringsförsök ",
+ "win10WiredFIPSComplianceDescription": "Verifiering mot FIPS 140-2-standarden krävs för alla amerikanska federala myndigheter som använder kryptografibaserade säkerhetssystem för att skydda känslig men oklassificerad information som lagras digitalt.",
+ "win10WiredFIPSComplianceName": "Tvinga kabelansluten profil att vara kompatibel med Federal Information Processing Standard (FIPS)",
+ "win10WiredGuest": "Gäst",
+ "win10WiredMachine": "Dator",
+ "win10WiredMachineOrUser": "Användare eller enhet",
+ "win10WiredMaximumAuthenticationFailuresDescription": "Ange högsta antal autentiseringsfel för de här autentiseringsuppgifterna. Om inget värde anges kan 1 försök användas.",
+ "win10WiredMaximumAuthenticationFailuresName": "Högsta antal autentiseringsfel",
+ "win10WiredMaximumEAPOLStartMessagesDescription": "Välj ett antal EAPOL-Start-meddelanden mellan 1 och 100. Om inget värde anges skickas högst 3 meddelanden.",
+ "win10WiredMaximumEAPOLStartMessagesName": "Maximal EAPOL-start",
+ "win10WiredNetworkAuthenticationBlockPeriodDescription": "Autentiseringsblockeringsperiod i minuter. Används för att ange hur länge automatiska autentiseringsförsök ska blockeras efter ett misslyckat autentiseringsförsök. Välj ett värde mellan 0 och 1440.",
+ "win10WiredNetworkAuthenticationBlockPeriodName": "Blockeringsperiod (minuter)",
+ "win10WiredNetworkAuthenticationModeName": "Autentiseringsläge",
+ "win10WiredNetworkDoNotEnforceName": "Framtvinga inte",
+ "win10WiredNetworkEnforce8021XDescription": "Anger om den automatiska konfigurationstjänsten för kabelanslutna nätverk kräver att 802.1X används för portautentisering.",
+ "win10WiredNetworkEnforce8021XName": "802.1x",
+ "win10WiredNetworkEnforceName": "Framtvinga",
+ "win10WiredRememberCredentialsDescription": "Välj om användarnas autentiseringsuppgifter ska cachelagras när de anger dem första gången de ansluter till det kabelanslutna nätverket. Cachelagrade autentiseringsuppgifter används för efterföljande anslutningar och användarna behöver inte ange dem igen. Att inte konfigurera den här inställningen motsvarar att ställa in den på Ja.",
+ "win10WiredRememberCredentialsName": "Kom ihåg autentiseringsuppgifter vid varje inloggning",
+ "win10WiredStartPeriodDescription": "Antal sekunder innan ett EAPOL-Start-meddelande skickas. Välj ett värde mellan 1 och 3 600. Om inget värde anges används 5 sekunder.",
+ "win10WiredStartPeriodName": "Startperiod",
+ "win10WiredUser": "Användare",
"win10appLockerApplicationControlAllowDescription": "De här apparna kommer att kunna köras",
"win10appLockerApplicationControlAllowName": "Framtvinga",
"win10appLockerApplicationControlAuditComponentsAndStoreAppsDescription": "Läget \"Endast granskning\" loggar alla händelser i händelseloggar för lokal klient men blockerar inte några program från att köras. Windows-komponenter och Microsoft Store-appar loggas som att de passerar säkerhetskraven.",
@@ -9165,7 +7240,6 @@
"deviceConditionsInfoParagraph2": "Liknande enhetsbaserade inställningar kan anges för registrerade enheter.",
"deviceConditionsInfoParagraph2LinkText": "Läs mer om att ange inställningar för enhetskompatibilitet för registrerade enheter.",
"deviceId": "Enhets-ID",
- "deviceLockComplexityValidationFailureNotes": "Obs!
\r\n\r\n - Enhetslåset kan kräva lösenordskomplexitet: LÅG, MEDEL eller HÖG som riktas mot Android 11+. För enheter som använder Android 10 och tidigare kommer ett komplexitetsvärde på Låg/Medel/Hög att användas som standard för det förväntade beteendet för Låg komplexitet.
\r\n - Lösenordsdefinitionerna nedan kan komma att ändras. Mer information om uppdaterade definitioner för de olika komplexitetsnivåerna för lösenord finns i DevicePolicyManager|Android Developers.
\r\n
\r\n\r\nLåg
\r\n\r\n - Lösenordet kan vara ett mönster eller en PIN-kod som upprepas (4444) eller är i nummerföljd (1234, 4321, 2468).
\r\n
\r\n\r\nMedel
\r\n\r\n - PIN-koder utan upprepning (4444) eller nummerföljd (1234, 4321, 2468) med minst 4 tecken
\r\n - Alfabetiska lösenord med minst 4 tecken
\r\n - Alfanumeriska lösenord med minst 4 tecken
\r\n
\r\n\r\nHög
\r\n\r\n - PIN-kod utan upprepning (4444) eller nummerföljd (1234, 4321, 2468) med minst 8 tecken
\r\n - Alfabetiska lösenord med minst 6 tecken
\r\n - Alfanumeriska lösenord med minst 6 tecken
\r\n
\r\n",
"deviceLockedOpenFilesOptionsText": "När enheten är låst och det finns öppna filer",
"deviceLockedOptionText": "När enheten är låst",
"deviceManufacturer": "Enhetstillverkare",
@@ -9463,7 +7537,7 @@
"reporting": "Rapporterar",
"reports": "Rapporter",
"require": "Kräv",
- "requireDeviceLockComplexityOnApps": "Kräv komplexitet för enhetslås",
+ "requireDeviceLockOnApps": "Require device lock",
"requireThreatScanOnApps": "Kräv genomsökning efter hot i appar",
"requiredField": "Det här fältet måste fyllas i",
"requiredSafetyNetEvaluationType": "SafetyNet-utvärderingstyp som krävs",
@@ -9659,6 +7733,7 @@
"yourDataIsBeingDownloadedEllipsis": "Dina data hämtas, det här kan ta ett tag...",
"yourDataIsBeingDownloadedMinutes": "Dina data hämtas. Det kan ta några minuter...",
"yourProtectionLevel": "Din skyddsnivå",
+ "rules": "Regler",
"basics": "Grundläggande inställningar",
"modeTableHeader": "Gruppläge",
"appAssignmentMsg": "Grupp",
@@ -9695,221 +7770,2042 @@
"licenseTypeDevice": "Enhet",
"licenseTypeUser": "Användare"
},
- "Languages": {
- "ar-aE": "Arabiska (Förenade Arabemiraten)",
- "ar-bH": "Arabiska (Bahrain)",
- "ar-dZ": "Arabiska (Algeriet)",
- "ar-eG": "Arabiska (Egypten)",
- "ar-iQ": "Arabiska (Irak)",
- "ar-jO": "Arabiska (Jordanien)",
- "ar-kW": "Arabiska (Kuwait)",
- "ar-lB": "Arabiska (Libanon)",
- "ar-lY": "Arabiska (Libyen)",
- "ar-mA": "Arabiska (Marocko)",
- "ar-oM": "Arabiska (Oman)",
- "ar-qA": "Arabiska (Qatar)",
- "ar-sA": "Arabiska (Saudiarabien)",
- "ar-sY": "Arabiska (Syrien)",
- "ar-tN": "Arabiska (Tunisien)",
- "ar-yE": "Arabiska (Jemen)",
- "az-cyrl": "Azerbajdzjanska (kyrillisk, Azerbajdzjan)",
- "az-latn": "Azerbajdzjanska (latinsk, Azerbajdzjan)",
- "bn-bD": "Bangla (Bangladesh)",
- "bn-iN": "Bangla (Indien)",
- "bs-cyrl": "Bosniska (kyrillisk)",
- "bs-latn": "Bosniska (latinsk)",
- "zh-cN": "Kinesiska (Folkrepubliken Kina)",
- "zh-hK": "Kinesiska (Hongkong SAR)",
- "zh-mO": "Kinesiska (Macao SAR)",
- "zh-sG": "Kinesiska (Singapore)",
- "zh-tW": "Kinesiska (Taiwan)",
- "hr-bA": "Kroatiska (latinsk)",
- "hr-hR": "Kroatiska (Kroatien)",
- "nl-bE": "Nederländska (Belgien)",
- "nl-nL": "Nederländska (Nederländerna)",
- "en-aU": "Engelska (Australien)",
- "en-bZ": "Engelska (Belize)",
- "en-cA": "Engelska (Kanada)",
- "en-cabn": "Engelska (Karibien)",
- "en-iE": "Engelska (Irland)",
- "en-iN": "Engelska (Indien)",
- "en-jM": "Engelska (Jamaica)",
- "en-mY": "Engelska (Malaysia)",
- "en-nZ": "Engelska (Nya Zeeland)",
- "en-pH": "Engelska (Filippinerna)",
- "en-sG": "Engelska (Singapore)",
- "en-tT": "Engelska (Trinidad och Tobago)",
- "en-uK": "Engelska (Storbritannien)",
- "en-uS": "Engelska (USA)",
- "en-zA": "Engelska (Sydafrika)",
- "en-zW": "Engelska (Zimbabwe)",
- "fr-bE": "Franska (Belgien)",
- "fr-cA": "Franska (Kanada)",
- "fr-cH": "Franska (Schweiz)",
- "fr-fR": "Franska (Frankrike)",
- "fr-lU": "Franska (Luxemburg)",
- "fr-mC": "Franska (Monaco)",
- "de-aT": "Tyska (Österrike)",
- "de-cH": "Tyska (Schweiz)",
- "de-dE": "Tyska (Tyskland)",
- "de-lI": "Tyska (Liechtenstein)",
- "de-lU": "Tyska (Luxemburg)",
- "iu-cans": "Inuktitut (syllabisk, Kanada)",
- "iu-latn": "Inuktitut (latinsk, Kanada)",
- "it-cH": "Italienska (Schweiz)",
- "it-iT": "Italienska (Italien)",
- "ms-bN": "Malajiska (Brunei Darussalam)",
- "ms-mY": "Malajiska (Malaysia)",
- "mn-cN": "Mongoliska (traditionell mongoliska, Kina)",
- "mn-mN": "Mongoliska (kyrillisk, Mongoliet)",
- "no-nB": "Norska, bokmål (Norge)",
- "no-nn": "Norska, nynorsk (Norge)",
- "pt-bR": "Portugisiska (Brasilien)",
- "pt-pT": "Portugisiska (Portugal)",
- "quz-bO": "Quechua (Bolivia)",
- "quz-eC": "Quechua (Ecuador)",
- "quz-pE": "Quechua (Peru)",
- "smj-nO": "Lulesamiska (Norge)",
- "smj-sE": "Lulesamiska (Sverige)",
- "se-fI": "Nordsamiska (Finland)",
- "se-nO": "Nordsamiska (Norge)",
- "se-sE": "Nordsamiska (Sverige)",
- "sma-nO": "Sydsamiska (Norge)",
- "sma-sE": "Sydsamiska (Sverige)",
- "smn": "Enaresamiska (Finland)",
- "sms": "Skoltsamiska (Finland)",
- "sr-Cyrl-bA": "Serbiska (kyrillisk)",
- "sr-Cyrl-rS": "Serbiska (kyrillisk, Serbien och Montenegro [f.d.])",
- "sr-Latn-bA": "Serbiska (latinsk)",
- "sr-Latn-rS": "Serbiska (latinsk, Serbien)",
- "dsb": "Lågsorbiska (Tyskland)",
- "hsb": "Högsorbiska (Tyskland)",
- "es-es-tradnl": "Spanska (Spanien, traditionell sort)",
- "es-aR": "Spanska (Argentina)",
- "es-bO": "Spanska (Bolivia)",
- "es-cL": "Spanska (Chile)",
- "es-cO": "Spanska (Colombia)",
- "es-cR": "Spanska (Costa Rica)",
- "es-dO": "Spanska (Dominikanska republiken)",
- "es-eC": "Spanska (Ecuador)",
- "es-eS": "Spanska (Spanien)",
- "es-gT": "Spanska (Guatemala)",
- "es-hN": "Spanska (Honduras)",
- "es-mX": "Spanska (Mexiko)",
- "es-nI": "Spanska (Nicaragua)",
- "es-pA": "Spanska (Panama)",
- "es-pE": "Spanska (Peru)",
- "es-pR": "Spanska (Puerto Rico)",
- "es-pY": "Spanska (Paraguay)",
- "es-sV": "Spanska (El Salvador)",
- "es-uS": "Spanska (USA)",
- "es-uY": "Spanska (Uruguay)",
- "es-vE": "Spanska (Venezuela)",
- "sv-fI": "Svenska (Finland)",
- "uz-cyrl": "Uzbekiska (kyrillisk) (Uzbekistan)",
- "uz-latn": "Uzbekiska (latinsk) (Uzbekistan)",
- "af": "Afrikaans (Sydafrika)",
- "sq": "Albanska (Albanien)",
- "am": "Amhariska (Etiopien)",
- "hy": "Armeniska (Armenien)",
- "as": "Assamesiska (Indien)",
- "ba": "Basjkiriska (Ryssland)",
- "eu": "Baskiska (Baskiska)",
- "be": "Vitryska (Vitryssland)",
- "br": "Bretonska (Frankrike)",
- "bg": "Bulgariska (Bulgarien)",
- "ca": "Katalanska (Katalanska)",
- "co": "Korsikanska (Frankrike)",
- "cs": "Tjeckiska (Tjeckien)",
- "da": "Danska (Danmark)",
- "prs": "Dari (Afghanistan)",
- "dv": "Divehi (Maldiverna)",
- "et": "Estniska (Estland)",
- "fo": "Färöiska (Färöarna)",
- "fil": "Filippinska (Filippinerna)",
- "fi": "Finska (Finland)",
- "gl": "Galiciska (Galicien)",
- "ka": "Georgiska (Georgien)",
- "el": "Grekiska (Grekland)",
- "gu": "Gujarati (Indien)",
- "ha": "Haussa (latinsk, Nigeria)",
- "he": "Hebreiska (Israel)",
- "hi": "Hindi (Indien)",
- "hu": "Ungerska (Ungern)",
- "is": "Isländska (Island)",
- "ig": "Ibo (Nigeria)",
- "id": "Indonesiska (Indonesien)",
- "ga": "Iriska (Irland)",
- "xh": "isiXhosa (Sydafrika)",
- "zu": "isiZulu (Sydafrika)",
- "ja": "Japanska (Japan)",
- "kn": "Kannada (Indien)",
- "kk": "Kazakiska (Kazakstan)",
- "km": "Kambodjanska (Kambodja)",
- "rw": "Rwanda (Rwanda)",
- "sw": "Swahili (Kenya)",
- "kok": "Konkani (Indien)",
- "ko": "Koreanska (Korea)",
- "ky": "Kirgiziska (Kirgizistan)",
- "lo": "Laotiska (Laos)",
- "lv": "Lettiska (Lettland)",
- "lt": "Litauiska (Litauen)",
- "lb": "Luxemburgiska (Luxemburg)",
- "mk": "Makedonska (Nordmakedonien)",
- "ml": "Malayalam (Indien)",
- "mt": "Maltesiska (Malta)",
- "mi": "Maori (Nya Zeeland)",
- "mr": "Marathi (Indien)",
- "moh": "Mohawk (Mohawk)",
- "ne": "Nepalesiska (Nepal)",
- "oc": "Occitanska (Frankrike)",
- "or": "Odia (Indien)",
- "ps": "Afghanska (Afghanistan)",
- "fa": "Persiska",
- "pl": "Polska (Polen)",
- "pa": "Punjabi (Indien)",
- "ro": "Rumänska (Rumänien)",
- "rm": "Rätoromanska (Schweiz)",
- "ru": "Ryska (Ryssland)",
- "sa": "Sanskrit (Indien)",
- "st": "Nordsotho (Sydafrika)",
- "tn": "Tswana (Sydafrika)",
- "si": "Singalesiska (Sri Lanka)",
- "sk": "Slovakiska (Slovakien)",
- "sl": "Slovenska (Slovenien)",
- "sv": "Svenska (Sverige)",
- "syr": "Syriska (Syrien)",
- "tg": "Tadzjikiska (kyrillisk, Tadzjikistan)",
- "ta": "Tamil (Indien)",
- "tt": "Tatariska (Ryssland)",
- "te": "Telugu (Indien)",
- "th": "Thailändska (Thailand)",
- "bo": "Tibetanska (Kina)",
- "tr": "Turkiska (Turkiet)",
- "tk": "Turkmeniska (Turkmenistan)",
- "uk": "Ukrainska (Ukraina)",
- "ur": "Urdu (Pakistan)",
- "vi": "Vietnamesiska (Vietnam)",
- "cy": "Walesiska (Storbritannien)",
- "wo": "Wolof (Senegal)",
- "ii": "Yi (Kina)",
- "yo": "Yoruba (Nigeria)"
- },
- "AppProtection": {
- "allAppTypes": "Rikta till alla typer av appar",
- "androidPlatformLabel": "Android",
- "appsInAndroidWorkProfile": "Appar i Android Work-profil",
- "appsOnIntuneManagedDevices": "Appar på Intune-hanterade enheter",
- "appsOnUnmanagedDevices": "Appar på ohanterade enheter",
- "iOSPlatformLabel": "iOS/iPadOS",
- "iosAndroidMacPlatformLabel": "iOS, Android, Mac",
- "iosAndroidPlatformLabel": "iOS, Android",
- "macPlatformLabel": "Mac",
- "notAvailable": "Ej tillgänglig",
- "windows10PlatformLabel": "Windows 10 och senare",
- "withEnrollment": "Med registrering",
- "withoutEnrollment": "Utan registrering"
- },
+ "ApplicabilityRules": {
+ "GridLabel": {
+ "property": "Egenskap ",
+ "rule": "Regel",
+ "ruleDetails": "Regelinformation",
+ "value": "Värde"
+ },
+ "assignIf": "Tilldela profil om",
+ "deleteWarning": "Den valda tillämplighetsregeln tas bort",
+ "dontAssignIf": "Tilldela inte profil om",
+ "editionDisplayText": "{0} {1}",
+ "editionDisplayTextMore": "och {0} till",
+ "instructions": "Ange hur den här profilen ska tillämpas i en tilldelad grupp. Profilen tillämpas endast på enheter som uppfyller de kombinerade villkoren för reglerna i Intune.",
+ "maxText": "Max",
+ "minText": "Min",
+ "noActionRow": "Inga tillämplighetsregler har angetts",
+ "oSVersion": "t.ex. 1.2.3.4",
+ "toText": "till",
+ "windows10Education": "Windows 10/11 Education",
+ "windows10EducationN": "Windows 10/11 Education N",
+ "windows10Enterprise": "Windows 10/11 Enterprise",
+ "windows10EnterpriseN": "Windows 10/11 Enterprise N",
+ "windows10HolographicEnterprise": "Windows 10 Holographic for Business",
+ "windows10Home": "Windows 10/11 Home",
+ "windows10HomeChina": "Windows 10 Home China",
+ "windows10HomeN": "Windows 10/11 Home N",
+ "windows10HomeSingleLanguage": "Windows 10/11 Home – enkelt språk",
+ "windows10IoTCore": "Windows 10 IoT Core",
+ "windows10IoTCoreCommercial": "Windows 10 IoT Core Commercial",
+ "windows10Mobile": "Windows 10 Mobile",
+ "windows10MobileEnterprise": "Windows 10 Mobile Enterprise",
+ "windows10OsEdition": "Operativsystemutgåva",
+ "windows10OsVersion": "Operativsystemsversion",
+ "windows10Professional": "Windows 10/11 Professional",
+ "windows10ProfessionalEducation": "Windows 10/11 Professional Education",
+ "windows10ProfessionalEducationN": "Windows 10/11 Professional Education N",
+ "windows10ProfessionalN": "Windows 10 Professional N",
+ "windows10ProfessionalWorkstation": "Windows 10/11 Professional Workstation",
+ "windows10ProfessionalWorkstationN": "Windows 10/11 Professionell Workstation N"
+ },
+ "DetectionRules": {
+ "ComparisonOperators": {
+ "equals": "Lika med",
+ "greaterThan": "Större än",
+ "greaterThanOrEqualTo": "Större än eller lika med",
+ "lessThan": "Mindre än",
+ "lessThanOrEqualTo": "Mindre än eller lika med",
+ "notEqualTo": "Inte lika med"
+ },
+ "CustomScript": {
+ "enforceSignatureCheck": "Tillämpa kontroll av skriptsignatur och kör skriptet obemärkt",
+ "enforceSignatureCheckTooltip": "Välj Ja om du vill kontrollera att skriptet har signerats av en betrodd utgivare så att skriptet körs utan varningar eller uppmaningar. Skriptet körs avblockerat. Välj Nej (standard) om du vill köra skriptet med slutanvändarens bekräftelse utan signaturkontroll.",
+ "header": "Använd ett anpassat identifieringsskript",
+ "runAs32Bit": "Kör skript som 32-bitarsprocess på 64-bitarsklienter",
+ "runAs32BitTooltip": "Välj Ja om du vill köra skriptet i en 32-bitarsprocess på 64-bitarsklienter. Välj Nej (standard) om du vill köra skriptet i en 64-bitarsprocess på 64-bitarsklienter. 32-bitarsklienter kör skriptet i en 32-bitarsprocess.",
+ "scriptFile": "Skriptfil",
+ "scriptFileNotSelectedValidation": "Ingen skriptfil har valts.",
+ "scriptFileTooltip": "Välj ett PowerShell-skript som identifierar förekomst av appen på klienten. Appen identifieras när skriptet både returnerar värdet 0 som slutkod och skriver ett strängvärde till STDOUT.",
+ "scriptSizeLimitValidation": "Identifieringsskriptet överskrider den tillåtna maxstorleken. Lös problemet genom att minska storleken på skriptet."
+ },
+ "Manual": {
+ "FileRule": {
+ "DetectionMethodOptions": {
+ "dateCreated": "Skapad",
+ "dateModified": "Ändrad den",
+ "doesNotExist": "Filen eller mappen finns inte",
+ "fileOrFolderExists": "Fil eller mapp finns",
+ "sizeInMB": "Storlek i MB",
+ "version": "Sträng (version)"
+ },
+ "associatedWith32Bit": "Kopplat till en 32-bitarsapp på 64-bitarsklienter",
+ "associatedWith32BitTooltip": "Välj Ja om du vill expandera eventuella sökvägsmiljövariabler i 32-bitarskontexten på 64-bitarsklienter. Välj Nej (standard) om du vill expandera eventuella sökvägsmiljövariabler i 64-bitarskontexten på 64-bitarsklienter. 32-bitarsklienter använder alltid 32-bitarskontexten.",
+ "detectionMethod": "Identfieringsmetod",
+ "detectionMethodTooltip": "Välj typ av identifieringsmetod som används för att verifiera förekomsten av appen.",
+ "fileOrFolder": "Fil eller mapp",
+ "fileOrFolderToolTip": "Den fil eller mapp som ska identifieras.",
+ "operator": "Operator",
+ "operatorTooltip": "Välj operator för identifieringsmetoden som används för att verifiera jämförelsen.",
+ "path": "Sökväg",
+ "pathTooltip": "Den fullständiga sökvägen till mappen som innehåller filen eller mappen som ska identifieras.",
+ "value": "Värde",
+ "valueTooltip": "Välj ett värde som matchar den valda identifieringsmetoden. Dataidentifieringsmetoder måste anges i lokal tid."
+ },
+ "GridColumns": {
+ "pathOrCode": "Sökväg/kod",
+ "type": "Typ"
+ },
+ "MsiRule": {
+ "operator": "Operator",
+ "operatorTooltip": "Välj operator för att jämföra MSI-produktversionsverifiering.",
+ "productCode": "MSI-produktkod",
+ "productCodeTooltip": "En giltig MSI-produktkod för appen.",
+ "productVersion": "Värde",
+ "productVersionCheck": "Kontroll av MSI-produktversion",
+ "productVersionCheckTooltip": "Välj Ja om du utöver MSI-produktkoden också vill kontrollera MSI-produktversionen.",
+ "productVersionTooltip": "Ange appens MSI-produktversion."
+ },
+ "RegistryRule": {
+ "DetectionMethodOptions": {
+ "integerComparison": "Heltalsjämförelse",
+ "keyDoesNotExist": "Nyckeln finns inte",
+ "keyExists": "Nyckeln finns",
+ "stringComparison": "Strängjämförelse",
+ "valueDoesNotExist": "Värdet finns inte",
+ "valueExists": "Värdet finns",
+ "versionComparison": "Versionsjämförelse"
+ },
+ "associatedWith32Bit": "Kopplat till en 32-bitarsapp på 64-bitarsklienter",
+ "associatedWith32BitTooltip": "Välj Ja om du vill söka i 32-bitarsregistret på 64-bitarsklienter. Välj Nej (standard) om du vill söka i 64-bitarsregistret på 64-bitarsklienter. 32-bitarsklienter söker alltid i 32-bitarsregistret.",
+ "detectionMethod": "Identfieringsmetod",
+ "detectionMethodTooltip": "Välj typ av identifieringsmetod som används för att verifiera förekomsten av appen.",
+ "keyPath": "Nyckelsökväg",
+ "keyPathTooltip": "Den fullständiga sökvägen till registerposten som innehåller värdet som ska identifieras.",
+ "operator": "Operator",
+ "operatorTooltip": "Välj operator för identifieringsmetoden som används för att verifiera jämförelsen.",
+ "value": "Värde",
+ "valueName": "Värdenamn",
+ "valueNameTooltip": "Namnet på det registervärde som ska identifieras.",
+ "valueTooltip": "Välj ett värde som matchar den valda identifieringsmetoden."
+ },
+ "RuleTypeOptions": {
+ "file": "Fil",
+ "mSI": "MSI",
+ "registry": "Register"
+ },
+ "gridAriaLabel": "Identifieringsregler",
+ "header": "Skapa en regel som visar förekomst av appen.",
+ "noRulesSelectedPlaceholder": "Inga regler har angetts.",
+ "ruleTableLimit": "Du kan lägga till upp till 25 identifieringsregler",
+ "ruleType": "Regeltyp",
+ "ruleTypeTooltip": "Välj den typ av identifieringsregel du vill lägga till."
+ },
+ "RuleConfigurationOptions": {
+ "customScript": "Använd ett anpassat identifieringsskript",
+ "manual": "Ställ in identifieringsregler manuellt"
+ },
+ "bladeTitle": "Identifieringsregler",
+ "header": "Ställ in appspecifika regler för att identifiera förekomst av appen.",
+ "rulesFormat": "Regelformat",
+ "rulesFormatTooltip": "Ställ antingen in identifieringsregler manuellt eller använd ett anpassat skript för att identifiera förekomst av appen.",
+ "selectorLabel": "Identifieringsregler"
+ },
+ "PolicyType": {
+ "AttackSurfaceReductionRules": {
+ "configMgr": "Regler för att minska attackytan (ConfigMgr)"
+ },
+ "EndpointDetectionandResponse": {
+ "mDE": "Slutpunktsidentifiering och svar"
+ },
+ "EndpointSecurityTemplate": {
+ "aSRAppBrowserSecurity": "App- och webbläsarisolering",
+ "aSRApplicationControl": "Programreglering",
+ "aSRAttackSurfaceReduction": "Regler för minskning av attackytan",
+ "aSRDeviceControl": "Enhetskontroll",
+ "aSRExploitProtection": "Sårbarhetsskydd",
+ "aSRWebProtection": "Webbskydd (äldre Microsoft Edge)",
+ "aVExclusions": "Microsoft Defender Antivirus-uteslutning",
+ "antivirus": "Microsoft Defender Antivirus",
+ "cloudPC": "Windows 365-säkerhetsbaslinje",
+ "default": "Slutpunktsskydd",
+ "defenderTest": "Demonstration av Microsoft Defender för Endpoint",
+ "diskEncryption": "BitLocker",
+ "eDR": "Slutpunktsidentifiering och svar",
+ "edgeSecurityBaseline": "Microsoft Edge-baslinje",
+ "edgeSecurityBaselinePreview": "Förhandsversion: Microsoft Edge-baslinje",
+ "editionUpgradeConfiguration": "Utgåveuppgradering och lägesväxling",
+ "firewall": "Microsoft Defender-brandvägg",
+ "firewallRules": "Microsoft Defender-brandväggsregler",
+ "identityProtection": "Kontoskydd",
+ "identityProtectionPreview": "Kontoskydd (förhandsversion)",
+ "mDMSecurityBaseline1810": "MDM-säkerhetsbaslinje för Windows 10 och senare för oktober 2018",
+ "mDMSecurityBaseline1810Preview": "Förhandsversion: MDM-säkerhetsbaslinje för Windows 10 och senare för oktober 2018",
+ "mDMSecurityBaseline1810PreviewBeta": "Förhandsversion: MDM-säkerhetsbaslinje för Windows 10 för oktober 2018 (beta)",
+ "mDMSecurityBaseline1906": "MDM-säkerhetsbaslinje för Windows 10 och senare för maj 2019",
+ "mDMSecurityBaseline2004": "MDM-säkerhetsbaslinje för Windows 10 och senare för augusti 2020",
+ "mDMSecurityBaseline2101": "MDM-säkerhetsbaslinje för Windows 10 och senare december 2020",
+ "macOSAntivirus": "Antivirus",
+ "macOSDiskEncryption": "FileVault",
+ "macOSFirewall": "macOS-brandvägg",
+ "microsoftDefenderBaseline": "Baslinjeinställning för Microsoft Defender för Endpoint",
+ "office365Baseline": "Microsoft Office O365-baslinje",
+ "office365BaselinePreview": "Förhandsversion: Microsoft Office O365-baslinje",
+ "securityBaselines": "Säkerhetsbaslinjer",
+ "test": "Testmall",
+ "testFirewallRulesSecurityTemplateName": "Microsoft Defender-brandväggsregler (test)",
+ "testIdentityProtectionSecurityTemplateName": "Kontoskydd (test)",
+ "windowsSecurityExperience": "Windows-säkerhetsupplevelse"
+ },
+ "Firewall": {
+ "mDE": "Microsoft Defender-brandväggen"
+ },
+ "FirewallRules": {
+ "mDE": "Microsoft Defender-brandväggsregler"
+ },
+ "administrativeTemplates": "Administrativa mallar",
+ "androidCompliancePolicy": "Kompatibilitetsprincip för Android",
+ "aospDeviceOwnerCompliancePolicy": "Kompatibilitetsprincip för Android (AOSP)",
+ "applicationControl": "Programreglering",
+ "custom": "Anpassad",
+ "deliveryOptimization": "Leveransoptimering",
+ "derivedPersonalIdentityVerificationCredential": "Härledd autentiseringsuppgift",
+ "deviceFeatures": "Enhetsfunktioner",
+ "deviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
+ "deviceLock": "Enhetslås",
+ "deviceOwner": "Fullständigt hanterad, särskilt avsedd och företagsägd arbetsprofil",
+ "deviceRestrictions": "Enhetsbegränsningar",
+ "deviceRestrictionsWindows10Team": "Enhetsbegränsningar (Windows 10 Team)",
+ "domainJoinPreview": "Domänanslutning",
+ "editionUpgradeAndModeSwitch": "Utgåveuppgradering och lägesväxling",
+ "education": "Utbildning",
+ "email": "E-post",
+ "emailSamsungKnoxOnly": "Cookies (endast Samsung KNOX)",
+ "endpointProtection": "Slutpunktsskydd",
+ "expeditedCheckin": "Konfiguration för hantering av mobil enhet",
+ "exploitProtection": "Sårbarhetsskydd",
+ "extensions": "Tillägg",
+ "hardwareConfigurations": "BIOS-konfigurationer",
+ "identityProtection": "Identitetsskydd",
+ "iosCompliancePolicy": "Kompatibilitetsprincip för iOS",
+ "kiosk": "Kiosk",
+ "macCompliancePolicy": "Kompatibilitetsprincip för Mac",
+ "microsoftDefenderAntivirus": "Microsoft Defender Antivirus",
+ "microsoftDefenderAntivirusexclusions": "Microsoft Defender Antivirus-uteslutning",
+ "microsoftDefenderAtpWindows10Desktop": "Microsoft Defender för Endpoint (stationära enheter som kör Windows 10 eller senare)",
+ "microsoftDefenderFirewallRules": "Microsoft Defender-brandväggsregler",
+ "microsoftEdgeBaseline": "Microsoft Edge-baslinje",
+ "mxProfileZebraOnly": "MX-profil (endast Zebra)",
+ "networkBoundary": "Nätverksgräns",
+ "oemConfig": "OEMConfig",
+ "overrideGroupPolicy": "Åsidosätt grupprincip",
+ "pkcsCertificate": "PKCS-certifikat",
+ "pkcsImportedCertificate": "PKCS-importerat certifikat",
+ "preferenceFile": "Prioritetsfil",
+ "presets": "Förinställningar",
+ "scepCertificate": "SCEP-certifikat",
+ "secureAssessmentEducation": "Begränsad provmiljö (utbildning)",
+ "settingsCatalog": "Inställningskatalog",
+ "sharedMultiUserDevice": "Delad enhet för flera användare",
+ "softwareUpdates": "Programuppdateringar",
+ "trustedCertificate": "Betrott certifikat",
+ "unknown": "Okänd",
+ "unsupported": "Stöds inte",
+ "vpn": "VPN",
+ "wiFi": "Trådlöst",
+ "wiFiImport": "Trådlöst (import)",
+ "windows10CompliancePolicy": "Kompatibilitetsprincip för Windows 10/11",
+ "windows10MobileCompliancePolicy": "Kompatibilitetsprincip för Windows 10 Mobile",
+ "windows10XScep": "SCEP-certifikat – TEST",
+ "windows10XTrustedCertificate": "Betrott certifikat – TEST",
+ "windows10XVPN": "VPN – TEST",
+ "windows10XWifi": "WIFI – TEST",
+ "windows8CompliancePolicy": "Kompatibilitetsprincip för Windows 8",
+ "windowsHealthMonitoring": "Hälsoövervakning i Windows",
+ "windowsInformationProtection": "Windows Information Protection",
+ "windowsPhoneCompliancePolicy": "Kompatibilitetsprincip för Windows Phone",
+ "windowsUpdateforBusiness": "Windows Update för företag",
+ "wiredNetwork": "Kabelanslutet nätverk",
+ "workProfile": "Privatägd arbetsprofil"
+ },
+ "Win32Requirements": {
+ "AdditionalRequirements": {
+ "File": {
+ "fileOrFolderToolTip": "Filen eller mappen enligt angivet krav.",
+ "pathToolTip": "Den fullständiga sökvägen till den fil eller mapp som ska identifieras.",
+ "property": "Egenskap",
+ "valueToolTip": "Välj ett kravvärde som matchar den valda identifieringsmetoden. Krav på datum och tid måste anges i lokalt format."
+ },
+ "GridColumns": {
+ "pathOrScript": "Sökväg/skript",
+ "type": "Typ"
+ },
+ "Registry": {
+ "keyPath": "Nyckelsökväg",
+ "keyPathTooltip": "Den fullständiga sökvägen till registerposten som innehåller värdet enligt krav.",
+ "operator": "Operator",
+ "operatorTooltip": "Välj operator för jämförelsen.",
+ "registryRequirement": "Registernyckelkrav",
+ "registryRequirementTooltip": "Välj jämförelse av registernyckelkrav.",
+ "valueName": "Värdenamn",
+ "valueNameTooltip": "Namnet på begärt registervärde."
+ },
+ "RequirementTypeOptions": {
+ "fileType": "Fil",
+ "registry": "Register",
+ "script": "Skript"
+ },
+ "Script": {
+ "RequirementMethodOptions": {
+ "boolean": "Boolesk",
+ "dateTime": "Datum och tid",
+ "float": "Flyttal",
+ "integer": "Heltal",
+ "string": "Sträng",
+ "version": "Version"
+ },
+ "ScriptContent": {
+ "emptyMessage": "Skriptinnehåll måste anges."
+ },
+ "duplicateName": "Skriptnamnet {0} har redan använts. Ange ett annat namn.",
+ "enforceSignatureCheck": "Framtvinga signaturkontroll av skript",
+ "enforceSignatureCheckTooltip": "Välj Ja om du vill kontrollera att skriptet har signerats av en betrodd utgivare så att skriptet körs utan varningar eller uppmaningar. Skriptet körs avblockerat. Välj Nej (standard) om du vill köra skriptet med slutanvändarens bekräftelse men utan signaturkontroll.",
+ "loggedOnCredentials": "Kör det här skriptet med inloggningsuppgifterna",
+ "loggedOnCredentialsTooltip": "Kör skript med enhetens inloggningsuppgifter.",
+ "operatorTooltip": "Välj operator för kravjämförelsen.",
+ "requirementMethod": "Välj typ av utdata",
+ "requirementMethodTooltip": "Välj den datatyp som används vid fastställande av krav på identifieringsmatchning.",
+ "scriptFile": "Skriptfil",
+ "scriptFileTooltip": "Välj ett PowerShell-skript som identifierar förekomst av appen på klienten. Om appen har identifierats visar kravprocessen en slutkod med värdet 0 och skriver strängvärdet STDOUT.",
+ "scriptName": "Skriptets namn",
+ "value": "Värde",
+ "valueTooltip": "Välj ett kravvärde som matchar den valda identifieringsmetoden. Krav på datum och tid måste anges i lokalt format."
+ },
+ "bladeTitle": "Lägg till en kravregel",
+ "createRequirementHeader": "Skapa ett krav.",
+ "header": "Ställ in ytterligare kravregler",
+ "label": "Ytterligare kravregler",
+ "noRequirementsSelectedPlaceholder": "Inga krav har angetts.",
+ "requirementType": "Kravtyp",
+ "requirementTypeTooltip": "Välj typ av identifieringsmetod som ska användas för att fastställa hur ett krav ska utvärderas."
+ },
+ "architectures": "Operativsystemarkitektur",
+ "architecturesTooltip": "Välj de arkitekturer som behövs för att installera appen.",
+ "bladeTitle": "Krav",
+ "diskSpace": "Diskutrymme som krävs (MB)",
+ "diskSpaceTooltip": "Ledigt diskutrymme som krävs på systemenheten för att installera appen.",
+ "header": "Ange krav som måste uppfyllas på enheterna innan appen kan installeras:",
+ "maximumTextFieldValue": "Det här värdet måste åtminstone vara {0}.",
+ "minimumCpuSpeed": "Lägsta processorhastighet som krävs (MHz)",
+ "minimumCpuSpeedTooltip": "Lägsta processorhastighet som krävs för att installera appen.",
+ "minimumLogicalProcessors": "Lägsta antal logiska processorer som krävs",
+ "minimumLogicalProcessorsTooltip": "Lägsta antal logiska processorer som behövs för att installera appen.",
+ "minimumOperatingSystem": "Lägsta operativsystemsversion",
+ "minimumOperatingSystemTooltip": "Välj det minimioperativsystem som behövs för att installera appen.",
+ "minumumTextFieldValue": "Värdet måste vara minst {0}.",
+ "physicalMemory": "Fysiskt minne som krävs (MB)",
+ "physicalMemoryTooltip": "Fysiskt minne (RAM) som krävs för att installera appen.",
+ "selectorLabel": "Krav",
+ "validNumber": "Ange ett giltigt tal."
+ },
+ "AzureIAM": {
+ "AdrsUserActionSelectionWarning": {
+ "conditions": "Villkor som kräver att enhetsregistrering inte är tillgängliga med användaråtgärden \"Registrera eller ansluta till enheter\".",
+ "message": "Endast \"Kräv multifaktorautentisering\" kan användas i principer som skapats för användaråtgärden \"Registrera eller anslut enheter\".{0}"
+ },
+ "AuthContext": {
+ "Delete": {
+ "failure": "Det gick inte att ta bort {0}",
+ "failureCa": "Det gick inte att ta bort {0} eftersom certifikatutfärdarprinciper refererar till den",
+ "modifying": "Tar bort {0}",
+ "success": "{0} har tagits bort"
+ },
+ "Included": {
+ "none": "Inga molnappar, åtgärder eller autentiseringssammanhang har valts",
+ "plural": "{0} autentiseringssammanhang ingår",
+ "singular": "1 autentiseringssammanhang ingår"
+ },
+ "InfoBlade": {
+ "createTitle": "Lägg till autentiseringssammanhang",
+ "descPlaceholder": "Lägg till beskrivning av autentiseringssammanhanget",
+ "modifyTitle": "Ändra autentiseringssammanhang",
+ "namePlaceholder": "Exempel: Betrodd plats, betrodd enhet, stark auktorisering",
+ "publishDesc": "När du publicerar till appar blir autentiseringssammanhanget tillgänglig för appar att använda. Publicera när du har konfigurerat principen för villkorsstyrd åtkomst för taggen. [Learn more][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150966",
+ "publishLabel": "Publicera till appar",
+ "titleDesc": "Konfigurera ett autentiseringssammanhang som ska användas för att skydda programdata och åtgärder. Använd namn och beskrivningar som kan förstås av programadministratörer. [Learn more][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150965"
+ },
+ "Notify": {
+ "failure": "Det gick inte att uppdatera {0}",
+ "modifying": "Ändrar {0}",
+ "success": "Uppdaterade {0}"
+ },
+ "WhatIf": {
+ "selected": "Autentiseringssammanhang ingår"
+ },
+ "addNewStepUp": "Nytt autentiseringssammanhang",
+ "checkBoxInfo": "Välj de autentiseringssammanhang som den härprincipen ska användas för",
+ "configure": "Konfigurera autentiseringssammanhang",
+ "createCA": "Tilldela autentiseringssammanhanget principer för villkorsstyrd åtkomst",
+ "dataGrid": "Lista med autentiseringssammanhang",
+ "deleteFailedByReference": "You cannot delete this authentication context because it is being referenced by CA policies.",
+ "description": "Beskrivning",
+ "documentation": "Dokumentation",
+ "getStarted": "Kom igång",
+ "label": "Autentiseringssammanhang (förhandsversion)",
+ "menuLabel": "Autentiseringssammanhang (förhandsversion)",
+ "name": "Namn",
+ "noAuthContextConfigured": "Inga autentiseringskontexter har konfigurerats.",
+ "noAuthContextSet": "Det finns inga autentiseringssammanhang",
+ "noData": "Inga autentiseringssammanhang att visa",
+ "selectionInfo": "Autentiseringssammanhang används för att skydda programdata och åtgärder i appar som SharePoint och Microsoft Cloud App Security.",
+ "step": "Steg",
+ "tabDescription": "Hantera autentiseringssammanhang för att skydda data och åtgärder i dina appar. [Learn more][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150965",
+ "tagResources": "Tagga resurser med ett autentiseringssammanhang"
+ },
+ "AuthenticationStrength": {
+ "Mode": {
+ "deviceBasedPush": "Microsoft Authenticator (telefoninloggning)",
+ "deviceBasedPushFido2X509Certificate": "Microsoft Authenticator (telefoninloggning) + Fido 2 + certifikatbaserad autentisering",
+ "deviceBasedPushX509CertificateSingleFactor": "Microsoft Authenticator (telefoninloggning) + Fido 2 + certifikatbaserad autentisering (enkel faktor)",
+ "email": "Engångslösenord via e-post",
+ "emailOtp": "Engångslösenord via e-post",
+ "federatedMultiFactor": "Federerad multifaktor",
+ "federatedSingleFactor": "Sammansluten enkel faktor",
+ "federatedSingleFactorFederatedMultiFactor": "Federerad enkel faktor + federerad multifaktor",
+ "fido2": "FIDO 2-säkerhetsnyckel",
+ "fido2X509CertificateSingleFactor": "FIDO 2-säkerhetsnyckel + certifikatbaserad autentisering (enkel faktor)",
+ "hardwareOath": "OATH-token för maskinvara",
+ "hardwareOathEmail": "OATH-token för maskinvara + engångslösenord för e-post",
+ "hardwareOathX509CertificateSingleFactor": "OATH-token för maskinvara + certifikatbaserad autentisering (enkel faktor)",
+ "microsoftAuthenticatorPSIX509CertificateSingleFactor": "Microsoft Authenticator (telefoninloggning) + certifikatbaserad autentisering (enkel faktor)",
+ "microsoftAuthenticatorPsi": "Microsoft Authenticator (telefoninloggning)",
+ "microsoftAuthenticatorPush": "Microsoft Authenticator (push-meddelande)",
+ "microsoftAuthenticatorPushEmail": "Microsoft Authenticator (push-meddelande) + engångslösenord för e-post",
+ "microsoftAuthenticatorPushX509CertificateSingleFactor": "Microsoft Authenticator (push-meddelande) + certifikatbaserad autentisering (enkel faktor)",
+ "none": "Ingen",
+ "password": "Lösenord",
+ "passwordDeviceBasedPush": "Lösenord + Microsoft Authenticator (telefoninloggning)",
+ "passwordFido2": "Lösenord + FIDO 2-säkerhetsnyckel",
+ "passwordHardwareOath": "Lösenord + OATH-token för maskinvara",
+ "passwordMicrosoftAuthenticatorPSI": "Lösenord + Microsoft Authenticator (telefoninloggning)",
+ "passwordMicrosoftAuthenticatorPush": "Lösenord + Microsoft Authenticator (push-meddelande)",
+ "passwordSms": "Lösenord + sms",
+ "passwordSoftwareOath": "Lösenord + OATH-token för programvara",
+ "passwordTemporaryAccessPassMultiUse": "Lösenord + tillfällig åtkomstkod (flergångsanvändning)",
+ "passwordTemporaryAccessPassOneTime": "Lösenord + tillfällig åtkomstkod (engångsanvändning)",
+ "passwordVoice": "Lösenord + röst",
+ "sms": "SMS",
+ "smsEmail": "Sms + engångslösenord via e-post",
+ "smsSignIn": "SMS-inloggning",
+ "smsX509CertificateSingleFactor": "Sms + certifikatbaserad autentisering (enkel faktor)",
+ "softwareOath": "OATH-token för programvara",
+ "softwareOathEmail": "OATH-token för programvara + engångslösenord för e-post",
+ "softwareOathX509CertificateSingleFactor": "OATH-token för programvara + certifikatbaserad autentisering (enkel faktor)",
+ "temporaryAccessPassMultiUse": "Tillfällig åtkomstkod (flergångsanvändning)",
+ "temporaryAccessPassMultiUseX509CertificateSingleFactor": "Tillfällig åtkomstkod (flergångsanvändning) + certifikatbaserad autentisering (enkel faktor)",
+ "temporaryAccessPassOneTime": "Tillfällig åtkomstkod (engångsanvändning)",
+ "temporaryAccessPassOneTimeX509CertificateSingleFactor": "Tillfällig åtkomstkod (engångsanvändning) + certifikatbaserad autentisering (enkel faktor)",
+ "voice": "Röst",
+ "voiceEmail": "Röst + engångslösenord via e-post",
+ "voiceX509CertificateSingleFactor": "Röst + certifikatbaserad autentisering (enkel faktor)",
+ "windowsHelloForBusiness": "Windows Hello för företag",
+ "x509CertificateMultiFactor": "Certifikatbaserad autentisering (multifaktor)",
+ "x509CertificateSingleFactor": "Certifikatbaserad autentisering (enkel faktor)"
+ }
+ },
+ "CAS": {
+ "BuiltinPolicy": {
+ "Option": {
+ "blockDownloads": "Blockera nedladdningar (förhandsversion)",
+ "monitorOnly": "Endast övervakning (förhandsversion)",
+ "protectDownloads": "Skydda nedladdningar (förhandsversion)",
+ "useCustomControls": "Använd en anpassad princip..."
+ },
+ "ariaLabel": "Ange vilken typ av appkontroll för villkorsstyrd åtkomst som ska användas"
+ }
+ },
+ "ChooseApplications": {
+ "Grid": {
+ "appIdAria": "App-ID: {0}"
+ },
+ "LowerGrid": {
+ "ariaLabel": "Lista över valda molnappar"
+ },
+ "UpperGrid": {
+ "ariaLabel": "Lista med molnappar som matchar sökningsvillkoren"
+ }
+ },
+ "ChooseLocations": {
+ "Validation": {
+ "failed": "Med Valda platser måste du välja minst en plats.",
+ "selector": "Välj minst en plats"
+ }
+ },
+ "ClientApp": {
+ "Clients": {
+ "Validation": {
+ "failed": "Du måste välja minst en av följande klientorganisationer"
+ }
+ }
+ },
+ "ClientConditionsInfo": {
+ "browserAndModern": "Den här principen gäller endast för webbläsare och moderna autentiseringsappar. Om du vill tillämpa principen på alla klientappar måste du aktivera klientappvillkoret och välja alla klientappar.",
+ "classicExperience": "Sedan den här principen skapades har standardklientapparnas konfiguration uppdaterats.",
+ "legacyAuth": "Utan konfiguration gäller principerna nu för alla klientappar, inklusive modern och äldre autentisering."
+ },
+ "CloudAppFilterBlade": {
+ "AssignmentFilter": {
+ "header": "Attribut",
+ "placeholder": "Välj ett attribut"
+ },
+ "Configure": {
+ "infoBalloon": "Ställ in appfilter som du vill att principen ska tillämpas på."
+ },
+ "NoPermissions": {
+ "learnMoreAria": "Mer om behörigheter för anpassade säkerhetsattribut.",
+ "message": "Du har inte de behörigheter som krävs för att använda anpassade säkerhetsattribut."
+ },
+ "gridHeader": "Med anpassade säkerhetsattribut kan du använda regelverktyget eller regelsyntaxrutan för att skapa eller redigera filterreglerna. I förhandsgranskningen stöds enbart attribut av strängtyp. Attribut av typen heltal eller boolesk visas inte.",
+ "learnMoreAria": "Mer information om hur man använder regelverktyget och syntaxtextrutan.",
+ "noAttributes": "Det finns inga anpassade attribut tillgängliga att filtrera på. Du måste ställa in några attribut för att kunna använda det här filtret.",
+ "title": "Redigera filter (förhandsversion)"
+ },
+ "CloudAppsUserActions": {
+ "any": "Valfri molnapp eller åtgärd",
+ "infoBalloon": "Molnapp eller användaråtgärd som du vill testa, t.ex. SharePoint Online",
+ "learnMore": "Kontrollera åtkomsten baserat på alla eller specifika molnappar eller åtgärder.",
+ "learnMoreB2C": "Kontrollera åtkomsten baserat på alla eller specifika molnappar.",
+ "title": "Molnappar eller åtgärder"
+ },
+ "CloudappsSelectionBlade": {
+ "Excluded": {
+ "gridAria": "Lista över exkluderade molnappar"
+ },
+ "Filter": {
+ "configured": "Konfigurerad",
+ "label": "Redigera filter (förhandsversion)",
+ "with": "{0} med {1}"
+ },
+ "Included": {
+ "gridAria": "Lista över inkluderade molnappar"
+ },
+ "Validation": {
+ "authContext": "Med \"autentiseringssammanhang\" måste du konfigurera minst ett underobjekt.",
+ "selectApps": "{0} måste konfigureras",
+ "selector": "Välj minst en app.",
+ "userActions": "Med \"Användaråtgärder\" måste du konfigurera minst ett underobjekt."
+ }
+ },
+ "DeviceState": {
+ "LearnMore": {
+ "message": "Kontrollera användaråtkomsten när enheten som användaren loggar in från inte är hybrid Azure AD-ansluten eller markerad som kompatibel. \n Den här har tagits ur bruk. Använd {1} istället."
+ }
+ },
+ "Errors": {
+ "notFound": "Det gick inte att hitta principen, eller så har den tagits bort.",
+ "notFoundDetailed": "Principen {0} finns inte längre. Den kan ha tagits bort."
+ },
+ "GuestsOrExternalUsers": {
+ "allExternalTenantsLabel": "Alla Azure Active Directory-organisationer",
+ "b2bCollaborationGuestLabel": "B2B-samarbete: gästanvändare",
+ "b2bCollaborationMemberLabel": "B2B-samarbete: medlemsanvändare",
+ "b2bDirectConnectUserLabel": "B2B-direktanslutningsanvändare",
+ "enumeratedExternalTenantsError": "Välj minst en extern klientorganisation",
+ "enumeratedExternalTenantsLabel": "Välj Azure Active Directory-organisationer",
+ "externalTenantsLabel": "Ange externa Azure Active Directory-organisationer",
+ "externalUserDropdownLabel": "Välj typen gäst eller extern användare",
+ "externalUsersError": "Välj minst en typ av extern gäst eller användare",
+ "guestOrExternalUsersInfoContent": "Omfattar B2B-samarbete, B2B-direktanslutning och andra typer av externa användare.",
+ "guestOrExternalUsersLabel": "Gäster eller externa användare",
+ "internalGuestLabel": "Lokala gästanvändare",
+ "otherExternalUserLabel": "Andra externa användare"
+ },
+ "NamedLocation": {
+ "Form": {
+ "CountryLookup": {
+ "ariaLabel": "Sökmetod för land",
+ "gps": "Fastställ plats efter GPS-koordinater",
+ "info": "När platsvillkoret för en princip för villkorsstyrd åtkomst har konfigurerats uppmanas användarna av Authenticator-appen att dela sina GPS-platser. ",
+ "ip": "Bestäm plats efter IP-adress (endast IPv4)"
+ },
+ "Header": {
+ "new": "Ny plats ({0})",
+ "update": "Uppdatera plats ({0})"
+ },
+ "IP": {
+ "learn": "Konfigurera IPv4-och IPv6-intervall för namngivna platser.\n[Learn more][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
+ },
+ "Include": {
+ "infoBalloon": "Okända länder/regioner är IP-adresser som inte är associerade till något specifikt land eller region. [Learn more][1]\n\nDetta omfattar:\n* IPv6-adresser\n* IPv4-adresser utan direkt mappning\n[1]: https://aka.ms/canamedlocations\n",
+ "label": "Inkludera okända länder/regioner"
+ },
+ "Name": {
+ "empty": "Namnet får inte vara tomt",
+ "placeholder": "Namnge den här platsen"
+ },
+ "PrivateLink": {
+ "learn": "Skapa en ny namngiven plats som innehåller privata länkar för Azure AD. \n[Learn more][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
+ },
+ "Search": {
+ "countries": "Sök efter länder",
+ "names": "Sök namn",
+ "privateLinks": "Sök efter privata länkar"
+ },
+ "Trusted": {
+ "label": "Markera som betrodd plats"
+ },
+ "enter": "Ange ett nytt IPv4- eller IPv6-intervall",
+ "example": "exempel: 40.77.182.32/27 eller 2a01:111::/32"
+ },
+ "Label": {
+ "addCountries": "Länders plats",
+ "addIpRange": "IP-intervallsplats",
+ "addPrivateLink": "Azure Private Links"
+ },
+ "Notification": {
+ "Create": {
+ "Failed": {
+ "description": "Det gick inte att skapa ny plats ({0})",
+ "title": "Det gick inte att skapa"
+ },
+ "InProgress": {
+ "description": "Skapa ny plats ({0})",
+ "title": "Håller på att skapa"
+ },
+ "Success": {
+ "description": "Den nya platsen ({0}) har skapats",
+ "title": "Skapandet har slutförts"
+ }
+ },
+ "Delete": {
+ "Failed": {
+ "description": "Det gick inte att ta bort platsen ({0})",
+ "title": "Borttagningen misslyckades"
+ },
+ "InProgress": {
+ "description": "Platsen ({0}) tas bort",
+ "title": "Borttagning pågår"
+ },
+ "Success": {
+ "description": "Platsen ({0}) har tagits bort",
+ "title": "Borttagningen har slutförts"
+ }
+ },
+ "Update": {
+ "Failed": {
+ "description": "Det gick inte att uppdatera platsen ({0})",
+ "title": "Uppdateringen misslyckades"
+ },
+ "InProgress": {
+ "description": "Platsen ({0}) uppdateras",
+ "title": "Uppdatering pågår"
+ },
+ "Success": {
+ "description": "Platsen ({0}) har uppdaterats",
+ "title": "Uppdateringen har slutförts"
+ }
+ }
+ },
+ "PrivateLinks": {
+ "grid": "Lista över privata länkar"
+ },
+ "Trusted": {
+ "title": "Betrodd typ",
+ "trusted": "Betrodda"
+ },
+ "Type": {
+ "all": "Alla typer",
+ "countries": "Länder",
+ "ipRanges": "IP-intervall",
+ "privateLinks": "Privata länkar",
+ "title": "Platstyp"
+ },
+ "iPRangeInvalidError": "Värdet måste vara ett giltigt IPv4- eller IPv6-intervall.",
+ "iPRangeLinkOrSiteLocalError": "IP-nätverket har identifierats som en lokal länk eller en lokal webbplatsadress.",
+ "iPRangeOctetError": "IP-nätverket får inte börja med 0 eller 255.",
+ "iPRangePrefixError": "IP-nätverksprefixet måste vara från /{0} till /{1}.",
+ "iPRangePrivateError": "IP-nätverket har identifierats som en privat adress."
+ },
+ "NamedNetwork": {
+ "List": {
+ "gridAria": "Lista över namngivna platser"
+ }
+ },
+ "Policies": {
+ "Grid": {
+ "aria": "Lista över principer för villkorsstyrd åtkomst"
+ },
+ "countText": "{0} av {1} principer hittades",
+ "countTextSingular": "{0} av den 1 princip hittades",
+ "search": "Sökningsprinciper"
+ },
+ "Policy": {
+ "Condition": {
+ "ServicePrincipalRisk": {
+ "description": "Konfigurera risknivåerna för tjänstens huvudnamn som krävs för att principen ska tillämpas",
+ "infoBalloonContent": "Konfigurera risken för tjänstens huvudnamn för att tillämpa principen för specifika risknivåer",
+ "title": "Risknivå för tjänstens huvudnamn (förhandsversion)"
+ }
+ }
+ },
+ "PolicyControlAuthStrength": {
+ "MultiFactorAuthentication": {
+ "description": "Kombinationer av metoder som uppfyller stark autentisering, till exempel lösenord + sms",
+ "displayName": "Multifaktorautentisering (MFA)"
+ },
+ "Passwordless": {
+ "description": "Lösenordslösa metoder som uppfyller stark autentisering, t.ex. Microsoft Authenticator ",
+ "displayName": "Lösenordsfri multifaktorautentisering"
+ },
+ "PhishingResistant": {
+ "description": "Lösenordsfria metoder mot nätfiske för starkast autentisering, till exempel FIDO2-säkerhetsnyckel",
+ "displayName": "Nätfiskeskyddad multifaktorautentisering"
+ }
+ },
+ "PolicyControlFedAuthMethod": {
+ "ariaLabel": "Learn more about requiring authentication methods satisfied by federation providers.",
+ "certificate": "Certifikatautentisering",
+ "infoBubble": "Ange en nödvändig autentiseringsmetod som måste uppfyllas av en federationsprovider, t.ex. ADFS.",
+ "multifactor": "Multifaktorautentisering",
+ "require": "Kräv federerad autentiseringsmetod (förhandsversion)",
+ "whatIfFormat": "{0} - {1}"
+ },
+ "PolicyState": {
+ "off": "Av",
+ "on": "På",
+ "reportOnly": "Enbart rapport"
+ },
+ "PolicyTemplates": {
+ "Devices": {
+ "description": "Välj principmallkategorin Enheter för att se vilka enheter som ansluter till nätverket. Kontrollera efterlevnad och hälsostatus innan du beviljar åtkomst.",
+ "name": "Enheter"
+ },
+ "Identities": {
+ "description": "Välj principmallkategorin Identiteter för att verifiera och skydda varje identitet med stark autentisering för hela din digitala egendom.",
+ "name": "Identiteter"
+ },
+ "Summary": {
+ "CloudApps": {
+ "allCloudApps": "Alla appar",
+ "office365": "Office 365",
+ "registerSecurityInfo": "Registrera säkerhetsinformation"
+ },
+ "Conditions": {
+ "androidAndIOS": "Enhetsplattform: Android och IOS",
+ "anyDevice": "Alla enheter utom Android, IOS, Windows och Mac",
+ "anyDeviceStateExceptHybrid": "All eventuell enhetsstatus förutom kompatibel och Hybrid Azure AD-ansluten",
+ "anyLocation": "Valfri plats förutom betrodd",
+ "browserMobileDesktop": "Klientappar: webbläsare, mobilappar och stationära klienter",
+ "exchangeActiveSync": "Klientappar: Exchange Active Sync, övriga klienter",
+ "windowsAndMac": "Enhetsplattform: Windows och Mac"
+ },
+ "Devices": {
+ "anyDevice": "Valfri enhet"
+ },
+ "Grant": {
+ "appProtectionPolicy": "Kräv appskyddsprincip",
+ "approvedClientApp": "Kräv godkänd klientapp",
+ "blockAccess": "Blockera åtkomst",
+ "mfa": "Kräv multifaktorautentisering",
+ "passwordChange": "Kräv lösenordsändring",
+ "requireCompliantDevice": "Kräv att enheten är markerad som kompatibel",
+ "requireHybridAzureADDevice": "Kräv hybrid Azure AD-ansluten enhet"
+ },
+ "Session": {
+ "appEnforcedRestrictions": "Använd app-framtvingade begränsningar",
+ "signInFrequency": "Inloggningsfrekvens och aldrig beständig webbläsarsession"
+ },
+ "UsersAndGroups": {
+ "allUsers": "Alla användare",
+ "directoryRoles": "Katalogroller med undantag för aktuell administratör",
+ "globalAdmin": "Global administratör",
+ "noGuestAndAdmins": "Alla användare utom gästadministratörer, externa administratörer, globala administratörer och aktuell administratör"
+ },
+ "azureManagement": "Azure Management",
+ "deviceFilters": "Filter för enheter",
+ "devicePlatforms": "Enhetsplattformar"
+ },
+ "TemplateId": {
+ "AppEnforcedRestrictions": {
+ "description": "Blockera eller begränsa åtkomst till SharePoint, OneDrive och Exchange-innehåll från ohanterade enheter.",
+ "name": "CA014: Använd programtvingande begränsningar för ohanterade enheter",
+ "title": "Använd programtvingande begränsningar för ohanterade enheter"
+ },
+ "ApprovedClientApps": {
+ "description": "För att förhindra dataförlust kan organisationer begränsa åtkomsten till godkända appar för modern klientautentisering med Intune App Protection.",
+ "name": "CA012: Kräv godkända klientappar och appskydd",
+ "title": "Kräv godkända klientappar och appskydd"
+ },
+ "BlockAccessOnUnknowns": {
+ "description": "Användarna blockeras från att få åtkomst till företagsresurser när enhetstypen är okänd eller inte stöds.",
+ "name": "CA010: Blockera åtkomst för enhetsplattformar som är okända eller inte stöds",
+ "title": "Blockera åtkomst för enhetsplattformar som är okända eller inte stöds"
+ },
+ "BlockLegacyAuth": {
+ "description": "Blockera bakåtkompatibla slutpunkter som kan användas för att kringgå multifaktorautentisering. ",
+ "name": "CA003: Blockera äldre autentisering",
+ "title": "Blockera äldre autentisering"
+ },
+ "NoPersistentBrowserSession": {
+ "description": "Skydda användaråtkomst på ohanterade enheter genom att förhindra att webbläsarsessioner förblir inloggade efter det att webbläsaren har stängts och ange en inloggningsfrekvens på 1 timme.",
+ "name": "CA011: Ingen beständig webbläsarsession",
+ "title": "Icke-beständig webbläsarsession"
+ },
+ "RequireCompliantOrHybridADAdmins": {
+ "description": "Kräv att privilegierade administratörer bara får åtkomst till resurser när de använder en kompatibel eller hybrid Azure AD-ansluten enhet.",
+ "name": "CA009: Kräv kompatibel eller hybrid Azure AD-ansluten enhet för administratörer",
+ "title": "Kräv kompatibel eller hybrid Azure AD-ansluten enhet för administratörer"
+ },
+ "RequireCompliantOrHybridADAllUsers": {
+ "description": "Skydda åtkomst till företagsresurser genom att kräva att användarna använder en hanterad enhet eller utför multifaktorautentisering. (endast macOS eller Windows)",
+ "name": "CA013: Kräv kompatibel eller hybrid Azure AD-ansluten enhet eller multifaktorautentisering för alla användare",
+ "title": "Kräv kompatibel eller hybrid Azure AD-ansluten enhet eller multifaktorautentisering för alla användare"
+ },
+ "RequireMFAAllUsers": {
+ "description": "Kräv multifaktorautentisering för alla användarkonton för att minska risken för kompromettering.",
+ "name": "CA004: Kräv multifaktorautentisering för alla användare",
+ "title": "Kräv multifaktorautentisering för alla användare"
+ },
+ "RequireMFAForAdmins": {
+ "description": "Kräv multifaktorautentisering för privilegierade administratörskonton för att minska risken för kompromettering. Den här principen riktar sig till samma roller som standardsäkerhet.",
+ "name": "CA001: Kräv multifaktorautentisering för administratörer",
+ "title": "Kräv multifaktorautentisering för administratörer"
+ },
+ "RequireMFAForAzureManagement": {
+ "description": "Kräv multifaktorautentisering för att skydda privilegierad åtkomst till Azure-resurser.",
+ "name": "CA006: Kräv multifaktorautentisering för Azure-hantering",
+ "title": "Kräv multifaktorautentisering för Azure-hantering"
+ },
+ "RequireMFAForGuestAccess": {
+ "description": "Kräv att gästanvändare utför multifaktorautentisering vid åtkomst till företagets resurser.",
+ "name": "CA005: Kräv multifaktorautentisering för gäståtkomst",
+ "title": "Kräv multifaktorautentisering för gäståtkomst"
+ },
+ "RequireMFAForRiskySignIn": {
+ "description": "Kräv multifaktorautentisering om inloggningsrisken har identifierats som medelhög eller hög. (Azure Active Directory Premium 2-licens krävs)",
+ "name": "CA007: Kräv multifaktorautentisering för riskfylld inloggningar",
+ "title": "Kräv multifaktorautentisering för riskfylld inloggningar"
+ },
+ "RequirePasswordChangeForHighRiskUsers": {
+ "description": "Kräv att användaren ändrar sitt lösenord om användarrisken är hög. (Azure Active Directory Premium 2-licens krävs)",
+ "name": "CA008: Kräv lösenordsändring för högriskanvändare",
+ "title": "Kräv lösenordsändring för högriskanvändare"
+ },
+ "RequireSecurityInfo": {
+ "description": "Säkra när och hur användare registrerar sig för Azure AD multi-factor authentication och självbetjäningslösenord. ",
+ "name": "CA002: Skydda registrering av säkerhetsinformation",
+ "title": "Skydda registrering av säkerhetsinformation"
+ }
+ },
+ "TemplateState": {
+ "BlockAccessOnUnknowns": {
+ "title": "Om du aktiverar den här principen förhindras åtkomst från okänd enhetstyp, Tänk på att till en början endast använda rapportläge tills du har bekräftat att det här inte påverkar dina användare."
+ },
+ "BlockLegacyAuth": {
+ "description": "Använd till en början endast rapportläge tills du har bekräftat att detta inte påverkar dina användare.",
+ "title": "Om du aktiverar den här principen blockeras äldre autentisering för alla användare."
+ },
+ "RequireCompliantOrHybridADAdmins": {
+ "Description": {
+ "on": "Använd till en början endast rapportläge tills du har bekräftat att detta inte påverkar dina privilegierade användare.",
+ "reportOnly": "Principer i enbart rapportläge som kräver kompatibla enheter kan uppmana användare på Mac, iOS och Android att välja ett enhetscertifikat under principutvärderingen, även om enhetskompatibilitet inte tillämpas. Dessa uppmaningar kan upprepas fram till dess att enheten blir kompatibel."
+ },
+ "Title": {
+ "on": "Om du aktiverar den här principen förhindras åtkomst för privilegierade användare om du inte använder en hanterad enhet som kompatibel eller hybrid Azure AD-ansluten. Kontrollera att du har ställt in efterlevnadsprinciper eller aktiverat konfiguration av hybrid Azure Active Directory innan du aktiverar.",
+ "reportOnly": "Kontrollera att du har ställt in efterlevnadsprinciper eller aktiverat konfiguration av hybrid Azure Active Directory innan du aktiverar. "
+ }
+ },
+ "RequireCompliantOrHybridADAllUsers": {
+ "Description": {
+ "on": "Den här principen påverkar alla användare förutom den aktuella inloggade administratören. Använd endast rapportläge i början tills du har bekräftat att det här inte påverkar dina användare."
+ },
+ "Title": {
+ "on": "Lås inte ute dig själv! Kontrollera att enheten är kompatibel eller hybrid Azure AD-ansluten, eller du har ställt in multifaktorautentisering. ",
+ "reportOnly": "Principer i enbart rapportläge som kräver kompatibla enheter kan uppmana användare på Mac, iOS och Android att välja ett enhetscertifikat under principutvärderingen, även om enhetskompatibilitet inte tillämpas. Dessa uppmaningar kan upprepas fram till dess att enheten blir kompatibel."
+ }
+ },
+ "RequireMfa": {
+ "description": "Om du använder konton för nödåtkomst eller Azure AD Connect för att synkronisera dina lokala objekt, kan du behöva undanta dessa konton från den här principen när du har skapat den."
+ },
+ "RequireMfaAdmins": {
+ "description": "Observera att det aktuella administratörskontot undantas automatiskt, men att alla andra kommer att skyddas när principen skapas. Överväg att till en början endast använda rapportläge.",
+ "title": "Lås inte ut dig! Den här principen påverkar Azure Portal."
+ },
+ "RequireMfaAllUsers": {
+ "description": "Använd till att börja med endast rapportläge tills du har planerat och förmedlat den här ändringen till alla dina användare.",
+ "title": "Om du aktiverar den här principen tillämpas multifaktorautentisering för alla användare."
+ },
+ "RequireSecurityInfo": {
+ "description": "Se till att granska din konfiguration så att du skyddar kontona utifrån företagets behov.",
+ "title": "Följande användare och roller undantas från den här principen: Gäster och externa användare, Globala administratörer, Aktuell administratör"
+ }
+ },
+ "basics": "Grundläggande information",
+ "clientApps": "Klientappar",
+ "cloudApps": "Molnappar",
+ "cloudAppsOrActions": "Molnappar eller åtgärder ",
+ "conditions": "Villkor ",
+ "createNewPolicy": "Skapa ny princip från mallar (förhandsversion)",
+ "createPolicy": "Skapa princip",
+ "currentUser": "Aktuell användare",
+ "customizeBuild": "Anpassa ditt bygge",
+ "customizeTemplate": "Mallistorna anpassas baserat på den typ av princip du vill skapa",
+ "excludedDevicePlatform": "Undantagna enhetsplattformar",
+ "excludedDirectoryRoles": "Undantagna katalogroller",
+ "excludedLocation": "Undantagna katalogroller",
+ "excludedUsers": "Undantagna användare",
+ "grantControl": "Bevilja kontroll ",
+ "includeFilteredDevice": "Ta med filtrerade enheter i principen",
+ "includedDevicePlatform": "Enhetsplattformar som ingår",
+ "includedDirectoryRoles": "Katalogroller som ingår",
+ "includedLocation": "Plats som ingår",
+ "includedUsers": "Användare som ingår",
+ "legacyAuthenticationClients": "Äldre autentiseringsklienter",
+ "namePolicy": "Ge policyn ett namn",
+ "next": "Nästa",
+ "policyName": "Principnamn",
+ "policyState": "Principtillstånd",
+ "policySummary": "Principsammanfattning",
+ "policyTemplate": "Principmall",
+ "previous": "Föregående",
+ "reviewAndCreate": "Granska + skapa",
+ "riskLevels": "Risknivåer",
+ "selectATemplate": "Välj en mall",
+ "selectTemplate": "Välj mall",
+ "selectTemplateCategory": "Välj en mallkategori",
+ "selectTemplateRecommendation": "Vi rekommenderar följande mallar baserat på ditt svar",
+ "sessionControl": "Sessionskontroll ",
+ "signInFrequency": "Inloggningsfrekvens",
+ "signInRisk": "Inloggningsrisk",
+ "template": "Mall ",
+ "templateCategory": "Mallkategori",
+ "userRisk": "Användarrisk",
+ "usersAndGroups": "Användare och grupper ",
+ "viewPolicySummary": "Visa principsammanfattning "
+ },
+ "SSM": {
+ "MemberSelector": {
+ "description": "Användare och grupper"
+ },
+ "Notification": {
+ "Migration": {
+ "error": "Det gick inte att migrera inställningar för kontinuerlig tillgänglighetskontroll till principer för villkorsstyrd åtkomst",
+ "inProgress": "Migrera inställningar för kontinuerlig tillgänglighetskontroll",
+ "success": "Utvärderingsinställningarna för kontinuerlig tillgänglighetskontroll har migrerats till principer för villkorsstyrd åtkomst",
+ "successDescription": "Gå vidare till principer för villkorsstyrd åtkomst för att visa de migrerade inställningarna i den nyligen skapade principen med namnet \"CA-princip som skapats från CAE-inställningar\"."
+ },
+ "error": "Det gick inte att uppdatera inställningar för Kontinuerlig tillgänglighetskontroll",
+ "inProgress": "Uppdaterar inställningar för Kontinuerlig tillgänglighetskontroll",
+ "success": "Inställningar för Kontinuerlig tillgänglighetskontroll har uppdaterats"
+ },
+ "PreviewOptions": {
+ "disable": "Inaktivera förhandsversion",
+ "enable": "Aktivera förhandsversion"
+ },
+ "StrictLocationEnforcement": {
+ "infoContent1": "Olika IP-adresser kan visas av Azure AD och resursprovidern från samma klientenhet beroende på nätverkspartition eller IPv4/IPv6-felmatchning. Med strikt platstillämpning tillämpas principen Villkorsstyrd åtkomst utifrån båda IP-adresserna som visas av Azure AD och resursprovidern.",
+ "infoContent2": "För att säkerställa maximal säkerhet rekommenderas du att lägga till alla IP-adresser som kan visas av både Azure AD och resursprovidern i din princip för namngiven plats och aktivera läget för strikt tillämpning av plats.",
+ "label": "Strikt platsframtvingande",
+ "title": "Ytterligare tvingande lägen"
+ },
+ "bladeTitle": "Kontinuerlig tillgänglighetskontroll",
+ "description": "När en användares åtkomst tas bort eller en klients IP-adress ändras, blockerar Kontinuerlig tillgänglighetskontroll åtkomst till resurser och program i nära realtid. ",
+ "migrateLabel": "Migrera",
+ "migrationError": "Migreringen misslyckades på grund av följande fel: {0}",
+ "migrationInfo": "CAE-inställningen har flyttats under villkorsstyrd åtkomst-UX. Migrera med knappen Migrera ovan och konfigurera den med principen för villkorsstyrd åtkomst framöver. Klicka här för mer information.",
+ "noLicenseMessage": "Hantera inställningar för smart sessionshantering med Azure AD Premium",
+ "optionsPickerTitle": "Aktivera/inaktivera Kontinuerlig tillgänglighetskontroll",
+ "upsellInfo": "Du kan inte ändra inställningarna på den här sidan längre och eventuella inställningar här bör ignoreras. Din tidigare inställning kommer att hanteras. Du kan konfigurera dina CAE-inställningar under Villkorsstyrd åtkomst framöver. Klicka här för mer information."
+ },
+ "SelectOrganizations": {
+ "Blade": {
+ "Lower": {
+ "gridAria": "Lista över valda organisationer"
+ },
+ "Upper": {
+ "gridAria": "Lista över tillgängliga organisationer"
+ },
+ "description": "Lägg till en extern Azure Active Directory-organisation genom att ange ett av dess domännamn.",
+ "notFoundResult": "Hittades inte",
+ "searchBoxPlaceholder": "Klient-ID eller domännamn",
+ "subTitle": "Azure Active Directory-organisation"
+ },
+ "Selector": {
+ "AdditionalDetails": {
+ "aria": "Organisations-id: {0}"
+ },
+ "DisplayText": {
+ "multiple": "{0} Azure Active Directory-organisation har valts",
+ "single": "1 Azure Active Directory-organisation har valts"
+ },
+ "gridAria": "Lista över valda organisationer"
+ }
+ },
+ "SessionLifetime": {
+ "PersistentBrowser": {
+ "Error": {
+ "notAllApps": "En princip för beständig webbläsarsession fungerar bara korrekt när Alla molnappar har valts. Uppdatera ditt val av molnappar."
+ },
+ "Option": {
+ "always": "Alltid beständig",
+ "help": "En beständig webbläsarsession tillåter användare att förbli inloggade efter det att de har stängt sitt webbläsarfönster och öppnat det igen.
\n\n- Den här inställningen fungerar korrekt när du har valt Alla molnappar
\n- Det här påverkar inte tokenlivstider eller inställningen av inloggningsfrekvens.
\n- Det här åsidosätter principen Visa alternativ att fortsätta vara inloggad i Företagsanpassning.
\n- Inställningen Aldrig beständig åsidosätter alla beständiga anspråk för enkel inloggning som skickas från federerade autentiseringstjänster.
\n- Inställningen Aldrig beständig förhindrar enkel inloggning på mobila enheter för alla program och mellan program och användarens mobila webbläsare.
\n",
+ "label": "Beständig webbläsarsession",
+ "never": "Aldrig beständig"
+ },
+ "Warning": {
+ "allApps": "En beständig webbläsarsession fungerar bara korrekt när Alla molnappar har valts. Ändra valet för dina molnappar. Klicka här för att läsa mer."
+ }
+ },
+ "SignInFrequency": {
+ "Aria": {
+ "units": "Timmar eller dagar",
+ "value": "Frekvens"
+ },
+ "Option": {
+ "Day": {
+ "plural": "{0} dagar",
+ "singular": "1 dag"
+ },
+ "Hour": {
+ "plural": "{0} timmar",
+ "singular": "1 timme"
+ },
+ "daysOption": "Dagar",
+ "everytime": "Varje gång",
+ "help": "Tidsperiod innan en användare uppmanas att logga in igen när de försöker komma åt en resurs. Standardinställningen är ett rullande fönster på 90 dagar, d.v.s. användare ombeds återautentisera sig vid det första försöket att komma åt en resurs efter att ha varit inaktiva på sin dator i 90 dagar eller längre.",
+ "hoursOption": "Timmar",
+ "label": "Inloggningsfrekvens",
+ "placeholder": "Välj enheter "
+ }
+ },
+ "mainOption": "Ändra sessionens livstid",
+ "mainOptionHelp": "Konfigurera hur ofta användare tillfrågas och om webbläsarsessioner är beständiga. Program som inte stöder moderna autentiseringsprotokoll kanske inte tar hänsyn till dessa principer. Kontakta i sådana fall programutvecklaren."
+ },
+ "SigninRisk": {
+ "LearnMore": {
+ "message": "Kontrollera användaråtkomst som svar på specifika risknivåer för inloggning."
+ }
+ },
+ "SingleSelectorActive": {
+ "failed": "Det gick inte att läsa in den här informationen.",
+ "reattempt": "Läser in data. Försök igen med {0} av {1}."
+ },
+ "TimeCondition": {
+ "Errors": {
+ "both": "Ogiltigt tidsintervall för \"inkludera\" eller \"exkludera\".",
+ "daysOfWeek": "{0} Se till att ange minst en veckodag.",
+ "endBeforeStart": "{0} Se till att startdatum/-tid är tidigare är slutdatum/-tid.",
+ "exclude": "Ogiltigt tidsintervall för \"exkludera\".",
+ "generic": "{0} Se till att både veckodagar och tidszon är inställt. Om du inte markerar hela dagen, måste du även ställa in starttid och sluttid.",
+ "include": "Ogiltigt tidsintervall för \"inkludera\".",
+ "timeMissing": "{0} Se till att ange både start- och sluttid.",
+ "timeZone": "{0} Se till att ange en tidszon.",
+ "timesAndZone": "{0} Se till att ställa in starttid, sluttid och tidszon."
+ }
+ },
+ "UserActions": {
+ "Included": {
+ "none": "Inga molnappar eller åtgärder har valts",
+ "plural": "{0} användaråtgärder ingår",
+ "singular": "1 användaråtgärd ingår"
+ },
+ "accessRequirement1": "Nivå 1",
+ "accessRequirement2": "Nivå 2",
+ "accessRequirement3": "Nivå 3",
+ "accessRequirementsLabel": "Åtkomst till säkra appdata",
+ "appsActionsAuthTitle": "Molnappar, åtgärder eller autentiseringssammanhang",
+ "appsOrActionsSelectorInfoBallonText": "Program som används eller användaråtgärder",
+ "appsOrActionsTitle": "Molnappar eller åtgärder",
+ "label": "Användaråtgärder",
+ "mainOptionsLabel": "Välj vad den här principen gäller för",
+ "registerOrJoinDevices": "Registrera eller anslut enheter",
+ "registerSecurityInfo": "Registrera säkerhetsinformation",
+ "selectionInfo": "Välj den åtgärden som principen ska gälla för",
+ "whatIf": "Användaråtgärd ingår"
+ },
+ "UserSelectionBlade": {
+ "DirectoryRoles": {
+ "ariaLabel": "Välj katalogroller"
+ },
+ "Excluded": {
+ "gridAria": "Lista över exkluderade användare"
+ },
+ "Included": {
+ "gridAria": "Lista över inkluderade användare"
+ },
+ "Validation": {
+ "customRoleIncluded": "\"Katalogroller\" innehåller minst en anpassad roll",
+ "customRoleSelected": "Minst en anpassad roll har valts",
+ "failed": "{0} måste konfigureras",
+ "roles": "Välj minst en roll",
+ "usersGroups": "Välj minst en användare eller grupp"
+ },
+ "learnMore": "Kontrollera åtkomst baserat på vem principen gäller för, till exempel användare och grupper, arbetsbelastningsidentiteter, katalogroller eller externa gäster."
+ },
+ "ValidationResult": {
+ "blockEveryonePolicy": "Principkonfigurationen stöds inte. Granska tilldelningarna och kontrollerna.",
+ "invalidApplicationCondition": "Ogiltiga molnprogram har valts",
+ "invalidClientTypesCondition": "Ogiltiga klientappar har valts",
+ "invalidConditions": "Inga tilldelningar har valts",
+ "invalidControls": "Ogiltiga kontroller har valts",
+ "invalidDevicePlatformsCondition": "Ogiltiga enhetsplattformar har valts",
+ "invalidDevicesCondition": "Ogiltig enhetskonfiguration. Sannolikt en ogiltig {0}-konfiguration.",
+ "invalidGrantControlPolicy": "Ogiltig beviljandekontroll",
+ "invalidLocationsCondition": "Ogiltiga platser har valts",
+ "invalidPolicy": "Inga tilldelningar har valts",
+ "invalidSessionControlPolicy": "Ogiltig sessionskontroll",
+ "invalidSignInRisksCondition": "Ogiltiga inloggningsrisker har valts",
+ "invalidUserRisksCondition": "Ogiltiga användarrisker har valts",
+ "invalidUsersCondition": "Ogiltiga användare har valts",
+ "mamPolicyShouldOnlyTargetAndroidOrIosPlatforms": "MAM-policyn kan bara tillämpas på Android- eller iOS-klientplattformar.",
+ "notSupportedCombination": "Principkonfigurationen stöds inte. Läs mer om principer som stöds.",
+ "pending": "Validerar policy",
+ "requireComplianceEveryonePolicy": "Principkonfigurationen kommer att kräva enhetskompatibilitet för alla användare. Granska de tilldelningar som valts.",
+ "success": "Giltig policy"
+ },
+ "VpnCert": {
+ "Grid": {
+ "aria": "Lista över VPN-certifikat"
+ }
+ },
+ "WarningsInfo": {
+ "Controls": {
+ "compliantDeviceEnabled": "Lås inte ut dig! Kontrollera att enheten följer standard.",
+ "domainJoinedDeviceEnabled": "Lås inte ut dig! Kontrollera att enheten är Hybrid Azure AD-ansluten.",
+ "exchangeDisabled": "Exchange ActiveSync stöder bara kontrollerna Enhet som följer standard och Godkänd klientapp. Klicka om du vill veta mer.",
+ "exchangeDisabled2": "Exchange ActiveSync stöder bara kontrollerna Enhet som följer standard och Godkänd klientapp och Klientapp som följer standard. Klicka om du vill veta mer.",
+ "notAvailableForSP": "Vissa kontroller är inte tillgängliga på grund av valet {0} i principtilldelningen",
+ "requireAuthOrMfa": "{0} får inte användas med {1}",
+ "requireMfa": "Testa den nya allmänt tillgänglig förhandsversionen{0}",
+ "requirePasswordChangeEnabled": "\"Kräv lösenordsändring\" kan bara användas när principen har tilldelats \"Alla molnappar\""
+ },
+ "Policies": {
+ "Linux": {
+ "devicePlatformsReportOnlyPolicy": "Policyer i endast-rapportläge som kräver enheter som följer standard kan uppmana användaren på macOS, iOS, Android och Linux att välja ett enhetscertifikat.",
+ "excludeDevicePlatforms": "Exkludera enhetsplattformarna macOS, iOS, Android och Linux från den här policyn.",
+ "proceedAnywayDevicePlatforms": "Fortsätt med den valda konfigurationen. Användaren på macOS, iOS Android och Linux kan få frågor när kontroll görs om enheten följer standard."
+ },
+ "blockCurrentUserPolicy": "Lås inte ut dig! Vi rekommenderar att du först använder en princip för en liten uppsättning användare så att du kan verifiera att den fungerar som förväntat. Vi rekommenderar även att du exkluderar minst en administratör från den här principen. Detta säkerställer att du fortfarande har åtkomst och kan uppdatera en princip om en ändring krävs. Granska berörda användare och appar.",
+ "devicePlatformsReportOnlyPolicy": "Policyer i endast-rapportläge som kräver enheter som följer standard kan uppmana macOS-, iOS- och Android-användare att välja ett enhetscertifikat.",
+ "excludeCurrentUserSelection": "Exkludera aktuell användare, {0}, från den här principen.",
+ "excludeDevicePlatforms": "Exkludera enhetsplattformarna macOS, iOS och Android från den här policyn.",
+ "proceedAnywayDevicePlatforms": "Fortsätt med den valda konfigurationen. Användare på macOS, iOS och Android kan få frågor när kontroll görs om enheten följer standard.",
+ "proceedAnywaySelection": "Jag förstår att mitt konto kommer att påverkas av den här principen. Fortsätt ändå."
+ },
+ "ServicePrincipals": {
+ "blockExchange": "Om du väljer Office 365 Exchange Online påverkar detta även appar som OneDrive och Teams.",
+ "blockPortal": "Lås inte ut dig! Den här principen påverkar Azure-portalen. Se till att du eller någon annan kan få tillgång till portalen innan du fortsätter.",
+ "blockPortalWithSession": "Lås inte ute dig! Den här principen påverkar Azure Portal. Se till att du eller någon annan kan har garanterad tillgång till portalen innan du fortsätter.
Ignorera den här varningen om du konfigurerar en beständig webbläsarsessionsprincip som bara fungerar korrekt om Alla molnappar har valts.",
+ "blockSharePoint": "Om du väljer SharePoint Online så påverkas även appar som Microsoft Teams, Planner, Delve, MyAnalyticsm och Newsfeed.",
+ "blockSkype": "Om du väljer Skype för företag – Online, så påverkas även Microsoft Teams.",
+ "includeOrExclude": "Du kan ställa in appfiltret för {0} eller {1}, men inte båda.",
+ "selectAppsNAForSP": "Det går inte att välja enskilda molnappar på grund av valet{0}i principtilldelningen",
+ "teamsBlocked": "Microsoft Teams påverkas också när appar som SharePoint Online och Exchange Online ingår i principen."
+ },
+ "Users": {
+ "blockAllUsers": "Lås inte ut dig! Den här principen påverkar alla användare. Vi rekommenderar att du först tillämpar en princip på ett litet antal användare, så att du kan verifiera att den fungerar som förväntat."
+ }
+ },
+ "WhatIf": {
+ "Device": {
+ "AttributesGrid": {
+ "aria": "Lista med attribut på den enhet som använts under inloggningen.",
+ "infoBalloon": "Lista med attribut på den enhet som använts under inloggningen."
+ }
+ }
+ },
+ "advancedTabText": "Avancerad",
+ "allCloudAppsErrorBox": "Du måste välja \"Alla molnappar\" när beviljandet \"Tillåt lösenordsändring\" har valts",
+ "allCloudAppsReauth": "”Alla molnappar” måste ha valts när sessionskontrollen ”Inloggningsfrekvens varje gång” och villkoret ”Inloggningsrisk” har valts",
+ "allCloudOrSpecificApps": "Sessionskontrollen Inloggningsfrekvens varje gång kräver att Alla molnappar eller appar som specifikt stöds har valts",
+ "allDayCheckboxLabel": "Dygnet runt",
+ "allDevicePlatforms": "Valfri enhet",
+ "allGuestUserInfoContent": "Omfattar Azure AD B2B-gäster men inte SharePoint B2B-gäster",
+ "allGuestUserLabel": "Alla gästanvändare och externa användare",
+ "allRiskLevelsOption": "Alla risknivåer",
+ "allTrustedLocationLabel": "Alla betrodda platser",
+ "allUserGroupSetSelectorLabel": "Alla användare och grupper har valts",
+ "allUsersReauth": "Sessionskontrollen Inloggningsfrekvens varje gång kräver att Alla användare har valts",
+ "allUsersString": "Alla användare",
+ "and": "{0} OCH {1}",
+ "andWithGrouping": "({0}) och {1}",
+ "androidDisplayName": "Android",
+ "anyCloudAppSelection": "Valfri molnapp",
+ "appContextOptionInfoContent": "Begärd autentiseringstagg",
+ "appContextOptionLabel": "Begärd autentiseringstagg (förhandsversion)",
+ "appContextUriPlaceholder": "Exempel: uri:contoso.com:level3",
+ "appEnforceInfoBubble": "App-framtvingade begränsningar kan kräva ytterligare administratörskonfigurationer inom molnapparna. Begränsningarna börjar bara gälla för nya sessioner.",
+ "appNotSetSeletorLabel": "0 molnappar valda",
+ "applyConditionClientAppInfoBalloonContent": "Konfigurera klientapparna för att tillämpa principen på specifika klientappar",
+ "applyConditionDevicePlatformInfoBalloonContent": "Konfigurera enhetsplattformarna för att tillämpa principen för specifika plattformar",
+ "applyConditionDeviceStateInfoBalloonContent": "Konfigurera enhetstillståndet att tillämpa principen för specifika enhetstillstånd",
+ "applyConditionLocationInfoBalloonContent": "Konfigurera platserna för att tillämpa principen för betrodda/icke-betrodda platser",
+ "applyConditionSigninRiskInfoBalloonContent": "Konfigurera inloggningsrisken för att tillämpa principen för specifika risknivåer",
+ "applyConditionUserRiskInfoBalloonContent": "Konfigurera den användarrisk som ska tillämpa principen på valda risknivåer",
+ "applyConditonLabel": "Konfigurera",
+ "ariaLabelPolicyDisabled": "Hanteringsprincipregeln (MPR) är inaktiverad",
+ "ariaLabelPolicyEnabled": "Principen är aktiverad",
+ "ariaLabelPolicyReportOnly": "Principen är i rapportexklusivt läge",
+ "blockAccess": "Blockera åtkomst",
+ "builtInDirectoryRoleLabel": "Inbyggda katalogroller",
+ "casCustomControlInfo": "Anpassade principer måste konfigureras i Cloud App Security-portalen. Den här kontrollen fungerar direkt för aktuella appar och kan installeras automatiskt för alla appar. Klicka här om du vill läsa mer om båda scenarierna.",
+ "casInfoBubble": "Den här kontrollen fungerar för olika molnappar.",
+ "casPreconfiguredControlInfo": "Den här kontrollen fungerar direkt för aktuella appar och kan installeras automatiskt för alla appar. Klicka här om du vill läsa mer om båda scenarierna.",
+ "cert64DownloadCol": "Ladda ned base64-certifikat",
+ "cert64Name": "VpnBase64Cert",
+ "certDownloadCol": "Hämta certifikat",
+ "certDurationCol": "Förfallodatum",
+ "certDurationStartCol": "Giltigt från",
+ "certName": "VpnCert",
+ "certainApps": "Endast appar som specifikt stöds är aktiverade för Inloggningsfrekvens varje gång om beviljandena Kräv multifaktorautentisering och Kräv lösenordsändring inte har valts",
+ "chooseApplicationsBladeSubtitle": "",
+ "chooseApplicationsBladeTitle": "Välj program",
+ "chooseApplicationsCartSubitle": "",
+ "chooseApplicationsCartTitle": "Valda program",
+ "chooseApplicationsEmpty": "Inga program",
+ "chooseApplicationsNone": "Ingen",
+ "chooseApplicationsNoneFound": "Vi hittade inte \"{0}\". Försök med ett annat namn eller ID.",
+ "chooseApplicationsPlural": "{0} och {1} till",
+ "chooseApplicationsReAuthEverytimeInfo": "Letar du efter din app? Vissa program kan inte användas med sessionskontrollen Kräv omautentisering – varje gång",
+ "chooseApplicationsRemove": "Ta bort",
+ "chooseApplicationsReturnedPlural": "{0} program hittades",
+ "chooseApplicationsReturnedSingular": "1 program hittades",
+ "chooseApplicationsSearchBalloon": "Sök efter ett program genom att ange dess namn eller ID.",
+ "chooseApplicationsSearchHint": "Sök program...",
+ "chooseApplicationsSearchLabel": "Program",
+ "chooseApplicationsSearching": "Söker...",
+ "chooseApplicationsSelect": "Välj",
+ "chooseApplicationsSelected": "Vald",
+ "chooseApplicationsSingular": "{0} och 1 till",
+ "chooseApplicationsTooMany": "Fler resultat än vad som kan visas. Filtrera med sökrutan.",
+ "chooseLocationCorpnetItem": "Företagsnätverk",
+ "chooseLocationSelectedLocationsLabel": "Valda platser",
+ "chooseLocationTrustedIpsItem": "Tillförlitliga MFA IP-adresser",
+ "chooseLocationsBladeSubtitle": "",
+ "chooseLocationsBladeTitle": "Välj platser",
+ "chooseLocationsCartSubitle": "",
+ "chooseLocationsCartTitle": "Valda platser",
+ "chooseLocationsEmpty": "Inga platser",
+ "chooseLocationsExcludedSelectorTitle": "Markera",
+ "chooseLocationsIncludedSelectorTitle": "Markera",
+ "chooseLocationsNone": "Ingen",
+ "chooseLocationsNoneFound": "Vi hittade inte \"{0}\". Försök med ett annat namn eller ID.",
+ "chooseLocationsPlural": "{0} och {1} till",
+ "chooseLocationsRemove": "Ta bort",
+ "chooseLocationsReturnedPlural": "{0} platser hittades",
+ "chooseLocationsReturnedSingular": "1 plats hittades",
+ "chooseLocationsSearchBalloon": "Sök efter en plats genom att ange dess namn.",
+ "chooseLocationsSearchHint": "Sök efter platser...",
+ "chooseLocationsSearchLabel": "Sökvägar",
+ "chooseLocationsSearching": "Söker...",
+ "chooseLocationsSelect": "Markera",
+ "chooseLocationsSelected": "markerat",
+ "chooseLocationsSelectionBladeExcludedSelectorTitle": "Markera",
+ "chooseLocationsSelectionBladeIncludedSelectorTitle": "Markera",
+ "chooseLocationsSingular": "{0} och 1 till",
+ "chooseLocationsTooMany": "Fler resultat än vad som kan visas. Filtrera med sökrutan.",
+ "claimProviderAddCommandText": "Ny anpassad kontroll",
+ "claimProviderAddNewBladeTitle": "Ny anpassad kontroll",
+ "claimProviderDeleteCommand": "Ta bort",
+ "claimProviderDeleteDescription": "Vill du ta bort {0}? Du kan inte ångra den här åtgärden.",
+ "claimProviderDeleteTitle": "Är du säker?",
+ "claimProviderEditInfoText": "Ange JSON för anpassade kontroller som du fått av dina anspråksproviders.",
+ "claimProviderNotificationCreateDescription": "Skapar en anpassad kontroll som heter {0}",
+ "claimProviderNotificationCreateFailedDescription": "Det gick inte att skapa den anpassade kontrollen {0}. Försök igen senare.",
+ "claimProviderNotificationCreateFailedTitle": "Det gick inte att skapa den anpassade kontrollen",
+ "claimProviderNotificationCreateSuccessDescription": "Den anpassade kontrollen {0} skapades",
+ "claimProviderNotificationCreateSuccessTitle": "{0} har skapats",
+ "claimProviderNotificationCreateTitle": "{0} skapas",
+ "claimProviderNotificationDeleteDescription": "Tar bort den anpassade kontrollen som heter {0}",
+ "claimProviderNotificationDeleteFailedDescription": "Det gick inte att ta bort den anpassade kontrollen {0}. Försök igen senare.",
+ "claimProviderNotificationDeleteFailedTitle": "Det gick inte att ta bort den anpassade kontrollen",
+ "claimProviderNotificationDeleteSuccessDescription": "Den anpassade kontrollen som heter {0} togs bort",
+ "claimProviderNotificationDeleteSuccessTitle": "{0} har tagits bort",
+ "claimProviderNotificationDeleteTitle": "Tar bort {0}",
+ "claimProviderNotificationUpdateDescription": "Uppdaterar den anpassade kontrollen som heter {0}",
+ "claimProviderNotificationUpdateFailedDescription": "Det gick inte att uppdatera den anpassade kontrollen {0}. Försök igen senare.",
+ "claimProviderNotificationUpdateFailedTitle": "Det gick inte att uppdatera den anpassade kontrollen",
+ "claimProviderNotificationUpdateSuccessDescription": "Den anpassade kontrollen som heter {0} uppdaterades",
+ "claimProviderNotificationUpdateSuccessTitle": "{0} har uppdaterats",
+ "claimProviderNotificationUpdateTitle": "Uppdaterar {0}",
+ "claimProviderValidationAppIdInvalid": "AppId-värdet är inte giltigt. Granska det och försök igen.",
+ "claimProviderValidationClientIdMissing": "Data saknar ett ClientId-värde. Granska och försök igen.",
+ "claimProviderValidationControlClaimsRequestedMissing": "Kontrollen saknar ett ClaimsRequested-värde. Granska och försök igen.",
+ "claimProviderValidationControlClaimsRequestedTypeMissing": "Objektet ClaimsRequested saknar ett Typ-värde. Granska och försök igen.",
+ "claimProviderValidationControlIdAlreadyExists": "Kontroll Id-värdet finns redan. Granska och försök igen.",
+ "claimProviderValidationControlIdMissing": "Kontroll saknar ett Id-värde. Granska och försök igen.",
+ "claimProviderValidationControlIdReferencedInExistingPolicy": "Kontroll Id-värdet kan inte tas bort eftersom det refereras till i en befintlig princip. Ta bort det från principen först.",
+ "claimProviderValidationControlIdTooManyControls": "Egenskapen Control har för många kontroller. Granska och försök igen.",
+ "claimProviderValidationControlIdValueReserved": "Kontroll Id-värdet är ett reserverat nyckelord. Använd ett annat id.",
+ "claimProviderValidationControlNameAlreadyExists": "Kontroll Namn-värdet finns redan. Granska och försök igen.",
+ "claimProviderValidationControlNameMissing": "Kontroll saknar ett Namn-värde. Granska och försök igen.",
+ "claimProviderValidationControlsMissing": "Data saknar ett Kontroller-värde. Granska och försök igen.",
+ "claimProviderValidationDiscoveryUrlMissing": "Data saknnar ett DiscoveryUrl-värde. Granska och försök igen.",
+ "claimProviderValidationInvalid": "De data som angetts är inte giltiga. Granska och försök igen.",
+ "claimProviderValidationInvalidJsonDefinition": "Det går inte att spara den anpassade kontrollen. Granska JSON-texten och försök igen.",
+ "claimProviderValidationNameAlreadyExists": "Namn-värdet finns redan. Granska och försök igen.",
+ "claimProviderValidationNameMissing": "Data saknar ett Namn-värde. Granska och försök igen.",
+ "claimProviderValidationUnknown": "Ett okänt fel uppstod vid validering av angivna data. Granska och försök igen.",
+ "claimProvidersNone": "Inga anpassade kontroller",
+ "claimProvidersSearchPlaceholder": "Genomsök kontroller.",
+ "classicPoilcyFilterTitle": "Visa",
+ "classicPolicyAllPlatforms": "Alla plattformar",
+ "classicPolicyClientAppBrowserAndNative": "Webbläsare, mobilappar och stationära klienter",
+ "classicPolicyCloudAppTitle": "Molnprogram",
+ "classicPolicyControlAllow": "Tillåt",
+ "classicPolicyControlBlock": "Blockera",
+ "classicPolicyControlBlockWhenNotAtWork": "Blockera åtkomst när du inte arbetar",
+ "classicPolicyControlRequireCompliantDevice": "Kräv kompatibel enhet",
+ "classicPolicyControlRequireDomainJoinedDevice": "Kräv domänansluten enhet",
+ "classicPolicyControlRequireMfa": "Kräv multifaktorautentisering",
+ "classicPolicyControlRequireMfaWhenNotAtWork": "Kräv multifaktorautentisering när du inte arbetar",
+ "classicPolicyDeleteCommand": "Ta bort",
+ "classicPolicyDeleteFailTitle": "Det gick inte att ta bort den klassiska principen",
+ "classicPolicyDeleteInProgressTitle": "Den klassiska principen tas bort",
+ "classicPolicyDeleteSuccessTitle": "Den klassiska principen har tagits bort",
+ "classicPolicyDetailBladeTitle": "Information",
+ "classicPolicyDisableCommand": "Inaktivera",
+ "classicPolicyDisableConfirmation": "Är du säker på att du vill inaktivera {0}? Du kan inte ångra den här åtgärden.",
+ "classicPolicyDisableFailDescription": "Det gick inte att inaktivera {0}",
+ "classicPolicyDisableFailTitle": "Det gick inte att inaktivera den klassiska principen",
+ "classicPolicyDisableInProgressDescription": "Inaktiverar {0}",
+ "classicPolicyDisableInProgressTitle": "Den klassiska principen inaktiveras",
+ "classicPolicyDisableSuccessDescription": "{0} har inaktiverats",
+ "classicPolicyDisableSuccessTitle": "Den klassiska principen har inaktiverats",
+ "classicPolicyEasSupportedPlatforms": "Plattformar som stöds av Exchange ActiveSync",
+ "classicPolicyEasUnsupportedPlatforms": "Plattformar som inte stöds av Exchange ActiveSync",
+ "classicPolicyExcludedPlatformsTitle": "Exkluderade enhetsplattformar",
+ "classicPolicyFilterAll": "Alla principer",
+ "classicPolicyFilterDisabled": "Inaktiverade principer",
+ "classicPolicyFilterEnabled": "Aktiverade principer",
+ "classicPolicyIncludeExcludeMembersDescription": "Du kan utföra fasindelad principmigrering genom att exkludera grupper.",
+ "classicPolicyIncludeExcludeMembersTitle": "Inkludera/exkludera grupper",
+ "classicPolicyIncludedPlatformsTitle": "Inkluderade enhetsplattformar",
+ "classicPolicyManualMigrationMessage": "Den här principen måste migreras manuellt.",
+ "classicPolicyMigrateCommand": "Migrera",
+ "classicPolicyMigrateConfirmation": "Är du säker på att du vill migrera {0}? Den här principen kan bara migreras en gång.",
+ "classicPolicyMigrateFailDescription": "Det gick inte att migrera {0}",
+ "classicPolicyMigrateFailTitle": "Det gick inte att migrera den klassiska principen",
+ "classicPolicyMigrateInProgressDescription": "Migrerar {0}",
+ "classicPolicyMigrateInProgressTitle": "Den klassiska principen migreras",
+ "classicPolicyMigrateRecommendText": "Rekommendation: Migrera till de nya Azure-portalprinciperna.",
+ "classicPolicyMigrateSuccessTitle": "Den klassiska principen har migrerats",
+ "classicPolicyMigratedSuccessDescription": "Den klassiska principen kan nu hanteras under principer.",
+ "classicPolicyMigratedSuccessDescriptionMultiple": "Den här klassiska principen migreras som {0} nya principer. Nya principer kan hanteras under principer.",
+ "classicPolicyNoEditPermissionMsg": "Du har inte behörighet att redigera den här principen. Endast globala administratörer eller säkerhetsadministratörer kan redigera principen. Klicka här för mer information.",
+ "classicPolicySaveFailDescription": "Det gick inte att spara {0}",
+ "classicPolicySaveFailTitle": "Det gick inte att spara den klassiska principen",
+ "classicPolicySaveInProgressDescription": "Sparar {0}",
+ "classicPolicySaveInProgressTitle": "Den klassiska principen sparas",
+ "classicPolicySaveSuccessDescription": "{0} har sparats",
+ "classicPolicySaveSuccessTitle": "Den klassiska principen har sparats",
+ "clientAppBladeLegacyInfoBanner": "Bakåtkompatibel autentisering stöds inte för tillfället",
+ "clientAppBladeLegacyUpsellBanner": "Blockera klientappar utan support (förhandsversion)",
+ "clientAppBladeTitle": "Klientappar",
+ "clientAppDescription": "Välj de klientappar som den här principen ska gälla för",
+ "clientAppExchangeActiveSync": "Exchange ActiveSync",
+ "clientAppExchangeDisabledInfo": "Exchange ActiveSync är tillgängligt när Exchange Online är den enda valda molnappen. Klicka för att läsa mer",
+ "clientAppExchangeWarning": "Exchange ActiveSync stöder inte alla andra villkor",
+ "clientAppLearnMore": "Kontrollera användaråtkomsten med fokus på särskilda klientprogram som inte använder modern autentisering.",
+ "clientAppLegacyHeader": "Äldre autentiseringsklienter",
+ "clientAppMobileDesktop": "Mobila appar och skrivbordsklienter",
+ "clientAppModernHeader": "Moderna autentiseringsklienter",
+ "clientAppOnlySupportedPlatforms": "Tillämpa bara principen på plattformar som stöds",
+ "clientAppSelectSpecificClientApps": "Välj klientappar",
+ "clientAppV2BladeTitle": "Klientappar (förhandsversion)",
+ "clientAppWebBrowser": "Webbläsare",
+ "clientAppsSelectedLabel": "{0} inkluderade",
+ "clientTypeBrowser": "Webbläsare",
+ "clientTypeEas": "Exchange ActiveSync-klienter",
+ "clientTypeEasInfo": "Exchange ActiveSync-klienter som enbart använder äldre autentisering.",
+ "clientTypeModernAuth": "Moderna autentiseringsklienter",
+ "clientTypeOtherClients": "Övriga klienter",
+ "clientTypeOtherClientsInfo": "Detta omfattar äldre Office-klienter och andra e-postprotokoll (POP, IMAP, SMTP osv). [Learn more][1]\n[1]: https://aka.ms/caclientapps\n",
+ "cloudAppCountDiffBannerText": "{0} molnappar som konfigurerats i den här principen har tagits bort från katalogen, men detta påverkar inte andra program i principen. Nästa gång som du uppdaterar programavsnittet i principen tas de borttagna apparna automatiskt bort från den.",
+ "cloudAppsSelectionBladeAllMicrosoftApps": "Alla Microsoft-appar",
+ "cloudAppsSelectionExcludeAllMicrosoftClients": "Tillåt Microsofts molnappar, skrivbordsappar och mobilappar (förhandsversion)",
+ "cloudappsSelectionBladeAllCloudapps": "Alla molnappar",
+ "cloudappsSelectionBladeExcludeDescription": "Välj vilka molnappar som ska undantas principen",
+ "cloudappsSelectionBladeExcludedSelectorTitle": "Välj exkluderade molnappar",
+ "cloudappsSelectionBladeIncludeDescription": "Välj de molnappar som den här principen ska gälla för",
+ "cloudappsSelectionBladeIncludedSelectorTitle": "Välj",
+ "cloudappsSelectionBladeSelectedCloudapps": "Välj appar",
+ "cloudappsSelectorInfoBallonText": "Tjänster som användaren har åtkomst till för att göra sitt arbete. Exempelvis Salesforce",
+ "cloudappsSelectorPluralExcluded": "{0} appar som undantas",
+ "cloudappsSelectorPluralIncluded": "{0} appar ingår",
+ "cloudappsSelectorSingularExcluded": "1 app undantas",
+ "cloudappsSelectorSingularIncluded": "1 app ingår",
+ "cloudappsSelectorUserPlural": "{0} appar",
+ "cloudappsSelectorUserSingular": "1 app",
+ "conditionLabelMulti": "{0} villkor valda",
+ "conditionLabelOne": "1 villkor valt",
+ "conditionalAccessBladeTitle": "Villkorad åtkomst",
+ "conditionsNotSelectedLabel": "Inte konfigurerad",
+ "conditionsReqMfaReauthSet": "Vissa alternativ är inte tillgängliga på grund av beviljandet \"Kräv multifaktorautentisering\" och sessionskontrollen \"inloggningsfrekvens varje gång\" väljs för närvarande",
+ "conditionsReqPwSet": "Vissa alternativ är inte tillgängliga pga att beviljandet \"Kräv lösenordsändring\" har valts",
+ "configureCasText": "Konfigurera Cloud App Security",
+ "configureCustomControlsText": "Konfigurera anpassad princip",
+ "controlLabelMulti": "{0} kontroller valda",
+ "controlLabelOne": "1 kontroll vald",
+ "controlValidatorText": "Välj minst en kontroll",
+ "controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
+ "controlsDeviceComplianceAriaLabel": "Learn more about requiring compliant devices.",
+ "controlsDeviceComplianceInfoBubble": "Device must be Intune compliant. If the device is non-compliant, the user will be prompted to bring the device under compliance.",
+ "controlsDomainJoinedAriaLabel": "Learn more about requiring hybrid Azure AD joined devices.",
+ "controlsDomainJoinedInfoBubble": "Enheterna måste vara Hybrid Azure AD-anslutna.",
+ "controlsMamAriaLabel": "Learn more about requiring approved client applications.",
+ "controlsMamInfoBubble": "Enheten måste använda de här godkända programmen.",
+ "controlsMfaInfoBubble": "Användaren måste slutföra ytterligare säkerhetskrav, exempelvis ett telefonsamtal eller textmeddelande",
+ "controlsOrAndInfoBubble": "ControlsOrAndInfoBubble",
+ "controlsRequireCompliantAppAriaLabel": "Learn more about requiring policy protected apps.",
+ "controlsRequireCompliantAppInfoBubble": "Enheten måste använda principskyddade appar.",
+ "controlsRequirePasswordResetAriaLabel": "Learn more about requiring a password change.",
+ "controlsRequirePasswordResetInfoBubble": "Minska användarrisken genom att kräva lösenordsändring. Det här alternativet kräver också multifaktorautentisering. Det går inte att använda övriga kontroller.",
+ "countriesRadiobuttonInfoBalloonContent": "Landet/regionen som en inloggning kommer från fastställs av användarens IP-adress.",
+ "createNewVpnCert": "Nytt certifikat",
+ "createdTimeLabel": "Skapandetid",
+ "customRoleLabel": "Anpassade roller (stöds inte)",
+ "dateRangeTypeLabel": "Datumintervall",
+ "daysOfWeekPlaceholderText": "Filtrera veckodagarna",
+ "daysOfWeekTypeLabel": "Veckodagar",
+ "deletePolicyNoLicenseText": "Du kan ta bort den här principen nu. När den väl är borttagen kan du inte återskapa den förrän du har de licenser som krävs.",
+ "descriptionContentForControlsAndOr": "För flera kontroller",
+ "devicePlatform": "Enhetsplattform",
+ "devicePlatformConditionHelpDescription": "Tillämpa principen för valda enhetsplattformar.\n[Learn more][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2044750",
+ "devicePlatformInclude": "{0} inkluderade",
+ "devicePlatformIncludeExclude": "{0} och {1} exkluderades",
+ "devicePlatformNoSelectionError": "Om du ska välja enhetsplattformar måste du först välja ett underordnat objekt.",
+ "devicePlatformsNone": "Ingen",
+ "deviceSelectionBladeExcludeDescription": "Välj plattformar som ska undantas principen",
+ "deviceSelectionBladeIncludeDescription": "Välj enhetsplattformarna att inkludera i den här principen",
+ "deviceStateAll": "Alla enhetstillstånd",
+ "deviceStateCompliant": "Enheten markerades som kompatibel",
+ "deviceStateCompliantInfoContent": "Enheter som är Intune-kompatibla kommer att uteslutas från bedömningen av den här principen så att om principen blockerar åtkomst till exempel så blockeras alla enheter utom de som är Intune-kompatibla.",
+ "deviceStateConditionConfigureInfoContent": "Konfigurera princip baserat på enhetstillstånd",
+ "deviceStateConditionSelectorInfoContent": "Huruvida den enhet som användaren loggar in från är hybrid Azure AD-ansluten eller markerad som kompatibel. \n Den här har tagits ur bruk. Använd {1} istället.",
+ "deviceStateConditionSelectorLabel": "Enhetstillstånd (ur bruk)",
+ "deviceStateDomainJoined": "Hybrid Azure AD-ansluten enhet",
+ "deviceStateDomainJoinedInfoContent": "Enheter som är Hybrid Azure AD-anslutna utesluts från utvärderingen av den här policyn. Så om policyn t.ex. blockerar åtkomst så blockeras alla enheter utom de som är Hybrid Azure AD-anslutna.",
+ "deviceStateDomainJoinedInfoLinkText": "Läs mer.",
+ "deviceStateExcludeDescription": "Välj det enhetstillståndsvillkor som används för att utesluta enheter från principen.",
+ "deviceStateIncludeAndExcludeOneLabel": "{0} och uteslut {1}",
+ "deviceStateIncludeAndExcludeTwoLabel": "{0} och uteslut {1}, {2}",
+ "directoryRoleInfoContent": "Tilldela inbyggda katalogroller en princip.",
+ "directoryRolesLabel": "Katalogroller",
+ "discardbutton": "Ta bort",
+ "downloadDefaultFileName": "IP-intervall",
+ "downloadExampleFileName": "Exempel",
+ "downloadExampleHeader": "Detta är en exempelfil med demonstationer av de typer av data som kan godkännas. Rader som börjar med # ignoreras.",
+ "endDatePickerLabel": "Slutar",
+ "endTimePickerLabel": "Sluttid",
+ "enterCountryText": "IP-adress och land utvärderas parvis. Välj land.",
+ "enterIpText": "IP-adress och land utvärderas parvis. Ange IP-adressen.",
+ "enterUserText": "Ingen användare har valts. Välj en användare.",
+ "evaluationResult": "Utvärderingsresultat",
+ "exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
+ "exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync enbart med plattformar som stöds",
+ "excludeAllTrustedLocationSelectorText": "alla betrodda platser",
+ "featureRequiresP2": "Den här funktionen kräver en Azure Active Directory Premium 2-licens.",
+ "friday": "fredag",
+ "grantControls": "Bevilja kontroller",
+ "gridNetworkTrusted": "Betrodda",
+ "gridPolicyCreatedDateTime": "Skapandedatum",
+ "gridPolicyEnabled": "Aktiverad",
+ "gridPolicyModifiedDateTime": "Ändringsdatum",
+ "gridPolicyName": "Principnamn",
+ "gridPolicyState": "Tillstånd",
+ "groupSelectionBladeExcludeDescription": "Välj de grupper som ska undantas från principen",
+ "groupSelectionBladeExcludedSelectorTitle": "Välj exkluderade grupper",
+ "groupSelectionBladeSelect": "Välj grupper",
+ "groupSelectorInfoBallonText": "De användare och grupper i katalogen som principen tillämpas på. Exempel: pilotgrupp",
+ "groupsSelectionBladeTitle": "Grupper",
+ "helpCommonScenariosText": "Är du intresserad av några vanliga scenarion?",
+ "helpCondition1": "När en användare befinner sig utanför företagets nätverk",
+ "helpCondition2": "När användare i gruppen Chefer loggar in",
+ "helpConditionsTitle": "Villkor",
+ "helpControl1": "De måste logga in med multifaktorautentisering",
+ "helpControl2": "De måste arbeta från en Intune-kompatibel eller domänansluten enhet",
+ "helpControlsTitle": "Kontroller",
+ "helpIntroText": "Med villkorsstyrd åtkomst kan du framtvinga åtkomstkrav under vissa förhållanden. Här följer några exempel",
+ "helpIntroTitle": "Vad är villkorsstyrd åtkomst?",
+ "helpLearnMoreText": "Vill du veta mer om villkorsstyrd åtkomst?",
+ "helpStartStep1": "Skapa din första princip genom att klicka på \"+ Ny princip\"",
+ "helpStartStep2": "Ange princip Villkor och kontroller",
+ "helpStartStep3": "Glöm inte att aktivera principen och skapa när du är klar",
+ "helpStartTitle": "Kom igång",
+ "highRisk": "Hög",
+ "includeAndExcludeAppsTextFormat": "Inkludera: {0}. Exkludera: {1}.",
+ "includeAppsTextFormat": "Inkluderra: {0}.",
+ "includeUnknownAreasCheckboxInfoBalloonContent": "Okända områden är IP-adresser som inte kan mappas till ett land/region.",
+ "includeUnknownAreasCheckboxLabel": "Inkludera okända områden",
+ "infoCommandLabel": "Info",
+ "invalidCertDuration": "Ogiltig varaktighet för certifikat",
+ "invalidIpAddress": "Värdet måste vara en giltig IP-adress",
+ "invalidUriErrorMsg": "Ange en giltig URI. Till exempel, uri:contoso.com:acr",
+ "iosDisplayName": "iOS",
+ "linuxDisplayName": "Linux",
+ "loadAll": "Läs in alla",
+ "loading": "Laddar...",
+ "locationConfigureNamedLocationsText": "Konfigurera alla betrodda platser",
+ "locationConfigureNamedLocationsUri": "{0}/usermanagement/mfasettings.aspx?tenantid={1}&culture={2}",
+ "locationNameTooLongError": "Platsnamnet är för långt. Maximalt antal tecken är 256",
+ "locationSelectionBladeExcludeDescription": "Välj de platser som ska undantas principen",
+ "locationSelectionBladeIncludeDescription": "Välj platserna att inkludera i den här principen",
+ "locationsAllLocationsLabel": "Vilken plats som helst",
+ "locationsAllNamedLocationsLabel": "Alla betrodda IP-adresser",
+ "locationsAllPrivateLinksLabel": "Alla privata länkar i min klientorganisation",
+ "locationsIncludeExcludeLabel": "{0} och uteslut alla betrodda IP-adresser",
+ "locationsSelectedPrivateLinksLabel": "Valda privata länkar",
+ "lowRisk": "Låg",
+ "macOsDisplayName": "macOS",
+ "managePoliciesLicenseText": "Om du vill hantera principer för villkorsstyrd åtkomst måste organisationen ha Azure AD Premium P1 eller P2.",
+ "markAsTrustedCheckboxInfoBalloonContent": "Inloggning från en betrodd plats sänker en användares inloggningsrisk. Markera bara den här platsen som betrodd om du känner till att de IP-intervall som angetts är etablerade och trovärdiga inom din organisation.",
+ "markAsTrustedCheckboxLabel": "Markera som betrodd plats",
+ "mediumRisk": "Medel",
+ "memberSelectionCommandRemove": "Ta bort",
+ "menuItemClaimProviderControls": "Anpassade kontroller (förhandsversion)",
+ "menuItemClassicPolicies": "Klassiska principer",
+ "menuItemInsightsAndReporting": "Insikter och rapportering",
+ "menuItemManage": "Hantera",
+ "menuItemNamedLocationsPreview": "Namngivna platser (förhandsversion)",
+ "menuItemNamedNetworks": "Namngivna platser",
+ "menuItemPolicies": "Principer",
+ "menuItemTermsOfUse": "Användningsvillkor",
+ "modifiedTimeLabel": "Ändrad tid",
+ "monday": "måndag",
+ "nameLabel": "Namn",
+ "namedLocationCountryInfoBanner": "Endast IPv4-adresser mappas till länder/regioner. IPv6-adresser ingår i okända länder/regioner.",
+ "namedLocationTypeCountry": "Länder/regioner",
+ "namedLocationTypeLabel": "Definiera platsen med:",
+ "namedLocationUpsellBanner": "Den här vyn är inaktuell. Gå till den nya och förbättrade vyn Namngivna platser.",
+ "namedLocationsHelpDescription": "Namngivna platser används av Azure AD-säkerhetsrapporter för att minska falskt positiva resultat och Azure AD-principer för villkorsstyrd åtkomst.\n[Läs mer][1]\n[1]: https://aka.ms/namedlocationupdate",
+ "namedNetworkAddIpRanges": "Lägg till ett nytt IP-intervall (t.ex. 40.77.182.32/27)",
+ "namedNetworkCountryNeeded": "Du måste välja minst ett land",
+ "namedNetworkDeleteCommand": "Ta bort",
+ "namedNetworkDeleteDescription": "Vill du ta bort {0}? Du kan inte ångra den här åtgärden.",
+ "namedNetworkDeleteTitle": "Är du säker?",
+ "namedNetworkDownloadIpRange": "Hämta",
+ "namedNetworkInvalidRange": "Värdet måste vara ett giltigt IP-intervall.",
+ "namedNetworkIpRangeNeeded": "Du behöver minst ett giltig IP-intervall",
+ "namedNetworkIpRangesDescriptionContent": "Konfigurera IP-intervallen för din organisation",
+ "namedNetworkIpRangesTab": "IP-intervall",
+ "namedNetworkListAdd": "Ny plats",
+ "namedNetworkListConfigureTrustedIps": "Konfigurera betrodda MFA IP-adresser",
+ "namedNetworkNameDescription": "Exempelvis: Redmondkontoret",
+ "namedNetworkNameInvalid": "Det tillhandahållna namnet är ogiltigt.",
+ "namedNetworkNameRequired": "Du måste tillhandahålla ett namn för den här platsen.",
+ "namedNetworkNoIpRanges": "Inga IP-intervall",
+ "namedNetworkNotificationCreateDescription": "Skapa en plats med namnet {0}",
+ "namedNetworkNotificationCreateFailedDescription": "Det gick inte att skapa {0}. Försök igen senare.",
+ "namedNetworkNotificationCreateFailedTitle": "Det gick inte att skapa platsen",
+ "namedNetworkNotificationCreateSuccessDescription": "En plats med namnet {0} har skapats",
+ "namedNetworkNotificationCreateSuccessTitle": "{0} har skapats",
+ "namedNetworkNotificationCreateTitle": "{0} skapas",
+ "namedNetworkNotificationDeleteDescription": "Platsen med namnet {0} tas bort",
+ "namedNetworkNotificationDeleteFailedDescription": "Det gick inte att ta bort {0}. Försök igen senare.",
+ "namedNetworkNotificationDeleteFailedTitle": "Det gick inte att ta bort platsen",
+ "namedNetworkNotificationDeleteSuccessDescription": "Platsen med namnet {0} har tagits bort",
+ "namedNetworkNotificationDeleteSuccessTitle": "{0} har tagits bort",
+ "namedNetworkNotificationDeleteTitle": "Tar bort {0}",
+ "namedNetworkNotificationUpdateDescription": "Platsen med namnet {0} uppdateras",
+ "namedNetworkNotificationUpdateFailedDescription": "Det gick inte att ta bort platsen {0}. Försök igen senare.",
+ "namedNetworkNotificationUpdateFailedTitle": "Det gick inte att uppdatera platsen",
+ "namedNetworkNotificationUpdateSuccessDescription": "Platsen med namnet {0} har uppdaterats",
+ "namedNetworkNotificationUpdateSuccessTitle": "{0} har uppdaterats",
+ "namedNetworkNotificationUpdateTitle": "Uppdaterar {0}",
+ "namedNetworkSearchPlaceholder": "Sök efter platser.",
+ "namedNetworkUploadFailedDescription": "Ett fel inträffade när den tillhandahållna filen skulle parsas. Se till att ladda upp en oformaterad textfil där varje rad är i CIDR-format.",
+ "namedNetworkUploadFailedTitle": "Det gick inte att tolka {0}",
+ "namedNetworkUploadInProgressDescription": "Försöker parsa giltiga CIDR-värden från {0}.",
+ "namedNetworkUploadInProgressTitle": "{0} parsas",
+ "namedNetworkUploadInvalidDescription": "{0} är antingen för stor eller har ett ogiltigt format.",
+ "namedNetworkUploadInvalidTitle": "{0} Ogiltig",
+ "namedNetworkUploadIpRange": "Ladda upp",
+ "namedNetworkUploadSuccessDescription": "{0} rader har analyserats. {1} har ett dåligt format. {2} hoppades över.",
+ "namedNetworkUploadSuccessTitle": "Parsningen avslutades för {0}",
+ "namedNetworksAdd": "Ny namngiven plats",
+ "namedNetworksConditionHelpDescription": "Kontrollera användaråtkomst baserat på fysisk plats.\n[Läs mer][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
+ "namedNetworksExcludeLabel": "{0} och {1} exkluderades",
+ "namedNetworksHelpDescription": "Namngivna platser används av Azure AD-säkerhetsrapporter för att minska falskt positiva resultat och Azure AD-principer för villkorsstyrd åtkomst.\n[Läs mer][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
+ "namedNetworksIncludeLabel": "{0} inkluderade",
+ "namedNetworksNone": "Det gick inte att hitta några namgivna platser.",
+ "namedNetworksTitle": "Konfigurera platser",
+ "namednetworkExceedingSizeErrorBladeTitle": "Felinformation",
+ "namednetworkExceedingSizeErrorDetailText": "Klicka här om du vill ha mer information.",
+ "namednetworkExceedingSizeErrorMessage": "Du har överstigit det högsta tillåtna lagringsutrymmet för namngivna platser. Försök igen med en kortare lista. Klicka här för att se fler alternativ.",
+ "needMfaSecondary": "\"Kräv multifaktorautentisering\" måste väljas när \"Inloggningsfrekvens varje gång\" väljs med \"Endast sekundära autentiseringsmetoder\"",
+ "newCertName": "nytt certifikat",
+ "noAttributePermissionsError": "Du har inte den behörighet som krävs för att skapa eller uppdatera principen. Attributdefinitionsläsarroll krävs för att lägga till/redigera dynamiska filter.",
+ "noPolicyRowMessage": "Inga principer",
+ "noSPSelected": "Inget tjänsthuvudnamn har valts",
+ "noUpdatePermissionMessage": "Du har inte behörigheter att uppdatera de här inställningarna. Be din globala administratör om att få åtkomst.",
+ "noUserSelected": "Ingen användare har valts",
+ "noneRisk": "Ingen risk",
+ "office365Description": "Dessa appar är Microsoft Flow, Microsoft Forms, Microsoft Teams, Office 365 Exchange Online, Office 365 SharePoint Online, Office 365 Yammer och andra.",
+ "office365InfoBox": "Minst en av de valda apparna ingår i Office 365. Vi rekommenderar att du konfigurerar principen i Office 365-appen i stället.",
+ "oneUserSelected": "1 användare vald",
+ "onlyGlobalAdminsCanSaveThisPolicyConfig": "Endast globala administratörer kan spara den här policyn.",
+ "or": "{0} ELLER {1}",
+ "pickerDoneCommand": "Klart",
+ "policiesBladeAdPremiumUpsellBannerText": "Skapa dina egna principer och målspecifika villkor som molnappar, inloggningsrisk och enhetsplattformar med Azure AD Premium",
+ "policiesBladeTitle": "Principer",
+ "policiesBladeTitleWithAppName": "Principer: {0}",
+ "policiesDisabledBannerText": "Att skapa och redigera principer är inte tillåtet för program med länkade inloggningsattribut.",
+ "policiesHitMaxLimitStatusBarMessage": "Du har nått det maximala antalet principer för den här klientorganisationen. Ta bort några principer innan du skapar fler.",
+ "policyAssignmentsSection": "Tilldelningar",
+ "policyBlockAllInfoBox": "Den konfigurerade principen blockerar alla användare och stöds därmed inte. Granska tilldelningarna och kontrollerna. Exkludera den aktuella användaren {0} om du vill spara den här principen.",
+ "policyCloudAppsDisplayTextAllApp": "Alla appar",
+ "policyCloudAppsLabel": "Molnappar",
+ "policyConditionClientAppDescription": "Programvaran som användaren använder för att komma åt molnappen. Exempelvis webbläsare",
+ "policyConditionClientAppV2Description": "Programvaran som användaren använder för att komma åt molnappen. Exempelvis webbläsare",
+ "policyConditionDevicePlatform": "Enhetsplattformar",
+ "policyConditionDevicePlatformDescription": "Plattformen som användaren loggar in från. Exempelvis iOS",
+ "policyConditionLocation": "Platser",
+ "policyConditionLocationDescription": "Platsen (fastställs av IP-adressintervallet) som användaren loggar in från",
+ "policyConditionSigninRisk": "Inloggningsrisk",
+ "policyConditionSigninRiskDescription": "Sannolikhet att inloggningen kommer från någon annan än användaren. Risknivån kan vara hög, medel eller låg. Kräver en Azure AD Premium 2-licens.",
+ "policyConditionUserRisk": "Användarrisk",
+ "policyConditionUserRiskDescription": "Konfigurera de användarrisknivåer som krävs för att principen ska tillämpas",
+ "policyConditioniClientApp": "Klientappar",
+ "policyConditioniClientAppV2": "Klientappar (förhandsversion)",
+ "policyControlAllowAccessDisplayedName": "Bevilja åtkomst",
+ "policyControlAuthenticationStrengthDisplayedName": "Kräv autentiseringsstyrka (förhandsversion)",
+ "policyControlBladeTitle": "Bevilja",
+ "policyControlBlockAccessDisplayedName": "Blockera åtkomst",
+ "policyControlCompliantDeviceDisplayedName": "Kräv att enheten är markerad som kompatibel",
+ "policyControlContentDescription": "Kontrollera framtvingande av åtkomst för att blockera eller bevilja åtkomst.",
+ "policyControlInfoBallonText": "Blockera åtkomst eller välj ytterligare krav som behöver uppfyllas för att tillåta åtkomst",
+ "policyControlMfaChallengeDisplayedName": "Kräv multifaktorautentisering",
+ "policyControlRequireCompliantAppDisplayedName": "Kräv appskyddsprincip",
+ "policyControlRequireDomainJoinedDisplayedName": "Kräv Hybrid Azure AD-ansluten enhet",
+ "policyControlRequireMamDisplayedName": "Kräv godkänd klientapp",
+ "policyControlRequiredPasswordChangeDisplayedName": "Kräv lösenordsändring",
+ "policyControlSelectAuthStrength": "Kräv autentiseringsstyrka",
+ "policyControlsNoControlsSelected": "0 kontroller valda",
+ "policyControlsSection": "Åtkomstkontroller",
+ "policyCreatBladeTitle": "Ny",
+ "policyCreateButton": "Skapa",
+ "policyCreateFailedMessage": "Fel: {0}",
+ "policyCreateFailedTitle": "Det gick inte att skapa {0}",
+ "policyCreateInProgressTitle": "{0} skapas",
+ "policyCreateSuccessMessage": "{0} har skapats. Principen aktiveras om några minuter om du har gett Aktivera princip värdet På.",
+ "policyCreateSuccessTitle": "{0} har skapats",
+ "policyDeleteConfirmation": "Vill du ta bort {0}? Du kan inte ångra den här åtgärden.",
+ "policyDeleteFailTitle": "Kunde inte ta bort {0}",
+ "policyDeleteInProgressTitle": "Tar bort {0}",
+ "policyDeleteSuccessTitle": "{0} togs bort.",
+ "policyEnforceLabel": "Aktivera princip",
+ "policyErrorCannotSetSigninRisk": "Du har inte behörighet att spara en princip med inloggningsriskvillkor.",
+ "policyErrorNoPermission": "Du har inte behörighet att spara principen. Kontakta din globala administratör.",
+ "policyErrorUnknown": "Något gick fel. Försök igen senare.",
+ "policyFallbackWarningMessage": "Det gick inte att skapa eller uppdatera {0} med MS Graph vilket innebär att AD Graph återställs. Gå igenom följande scenario noggrant eftersom det troligen finns en bugg när principslutpunkten för MS Graph anropas med ett inkompatibelt villkor.",
+ "policyFallbackWarningTitle": "{0} har delvis skapats eller uppdaterats",
+ "policyNameCannotBeEmpty": "Principnamnet kan inte vara tomt",
+ "policyNameDevice": "Enhetspolicy",
+ "policyNameFormat": "[{0}] {1}",
+ "policyNameMam": "Mobilapphanteringspolicy",
+ "policyNameMfaLocation": "MFA- och platspolicy",
+ "policyNamePlaceholderText": "Exempelvis: App-princip för enhetskompatibilitet",
+ "policyNameTooLongError": "Principnamnet är för långt. Max 256 tecken",
+ "policyOff": "Av",
+ "policyOn": "På",
+ "policyReportOnly": "Endast rapport",
+ "policyReviewSection": "Granska",
+ "policySaveButton": "Spara",
+ "policyStatusIconDescription": "Principen har aktiverats",
+ "policyStatusIconEnabled": "Aktiverad statusikon",
+ "policyTemplateName1": "Använd app-framtvingade begräsningar för {0} webbläsaråtkomst",
+ "policyTemplateName2": "Tillåt enbart åtkomst för {0} på hanterade enheter",
+ "policyTemplateName3": "Principen har migrerats från inställningarna för Kontinuerlig tillgänglighetskontroll",
+ "policyTriggerRiskSpecific": "Välj specifik risknivå",
+ "policyTriggersInfoBalloonText": "Villkor som definierar när principen ska tillämpas. Exempelvis plats",
+ "policyTriggersNoConditionsSelected": "0 villkor valda",
+ "policyTriggersSelectorLabel": "Villkor",
+ "policyUpdateFailedMessage": "Fel: {0}",
+ "policyUpdateFailedTitle": "Det gick inte att uppdatera {0}",
+ "policyUpdateInProgressTitle": "Uppdaterar {0}",
+ "policyUpdateSuccessMessage": "{0} har uppdaterats. Principen kommer att aktiveras om några minuter om du har satt \"aktivera princip\" till \"På\".",
+ "policyUpdateSuccessTitle": "{0} har uppdaterats",
+ "primaryCol": "Primär",
+ "privateLinkLabel": "Microsoft Azure Active Directory privat länk",
+ "reportOnlyInfoBox": "Rapportspecifikt läge: Policyer utvärderas och loggas i samband med inloggningen, men de påverkar inte användarna.",
+ "requireAllControlsText": "Begär alla de valda kontrollerna",
+ "requireCompliantDevice": "Kräv kompatibel enhet",
+ "requireDomainJoined": "Kräver domänansluten enhet",
+ "requireGrantReauth": "Sessionskontrollen Inloggningsfrekvens varje gång kräver beviljandekontrollen Kräv multifaktorautentisering eller Kräv lösenordsändring när Alla molnappar har valts",
+ "requireMFA": "Kräv multifaktorautentisering",
+ "requireMfaReauth": "Sessionskontrollen Inloggningsfrekvens varje gång kräver beviljandekontrollen Kräv multifaktorautentisering för Inloggningsrisk",
+ "requireOneControlText": "Begär en av de valda kontrollerna",
+ "requirePasswordChangeReauth": "Sessionskontrollen Inloggningsfrekvens varje gång kräver beviljandekontrollen Kräv lösenordsändring för användarrisk.",
+ "requireRiskReauth": "Sessionskontrollen Inloggningsfrekvens varje gång kräver sessionskontrollen Användarrisk eller Inloggningsrisk när Alla molnappar har valts.",
+ "resetFilters": "Återställ filter",
+ "sPRequired": "Tjänstens huvudnamn krävs",
+ "sPSelectorInfoBalloon": "Användare eller tjänstens huvudnamn som du vill testa",
+ "saturday": "lördag",
+ "searchTextTooLongError": "Söktexten är för lång. Den får innehålla högst 256 tecken",
+ "securityDefaultsPolicyName": "Standardinställningar för säkerhet",
+ "securityDefaultsTextMessage": "Du måste inaktivera standardinställningarna för säkerhet för att kunna aktivera principen för villkorsstyrd åtkomst.",
+ "securityDefaultsWarningMessage": "Det verkar som du håller på att hantera din organisations säkerhetskonfigurationer. Utmärkt! Du måste först inaktivera standardinställningarna för säkerhet innan du aktiverar en princip för villkorsstyrd åtkomst.",
+ "selectDevicePlatforms": "Välj enhetsplattformar",
+ "selectNamedNetworksSubtitle": "",
+ "selectNamedNetworksTitle": "Välj platser",
+ "selectedSP": "Valt tjänsthuvudnamn",
+ "servicePrincipalDataGridAria": "Lista över tillgängliga tjänsthuvudnamn",
+ "servicePrincipalDropDownLabel": "Vad gäller den här principen för?",
+ "servicePrincipalInfoBox": "Vissa villkor är inte tillgängliga på grund av valet {0} i principtilldelning",
+ "servicePrincipalRadioAll": "Alla ägda tjänstens huvudnamn",
+ "servicePrincipalRadioSelect": "Välj tjänsthuvudnamn",
+ "servicePrincipalSelectionsAria": "Valt rutnät för tjänsthuvudnamn",
+ "servicePrincipalSelectorAria": "Lista över valda tjänsthuvudnamn",
+ "servicePrincipalSelectorMultiple": "{0} tjänsthuvudnamn har valts",
+ "servicePrincipalSelectorSingle": "1 tjänsthuvudnamn har valts",
+ "servicePrincipalSpecificInc": "Specifika tjänsthuvudnamn ingår",
+ "servicePrincipals": "Tjänsthuvudnamn",
+ "sessionControlBladeTitle": "Session",
+ "sessionControlDescriptionContent": "Kontrollera åtkomsten baserat på sessionskontroller för att möjliggöra begränsade upplevelser i specifika molnprogram.",
+ "sessionControlDisableInfo": "Den här kontrollen fungerar bara med appar som stöds. För närvarande är Office 365, Exchange Online och SharePoint Online de enda molnapparna som stöder appframtvingade begränsningar. Klicka här om du vill läsa mer.",
+ "sessionControlInfoBallonText": "Sessionskontroller aktiverar en begränsad upplevelse inom en molnapp.",
+ "sessionControls": "Sessionskontroller",
+ "sessionControlsAppEnforcedLabel": "Använd app-framtvingade begränsningar",
+ "sessionControlsCasLabel": "Använd Appkontroll för villkorsstyrd åtkomst",
+ "sessionControlsSecureSignInLabel": "Kräv token-bindning",
+ "sharepointAppName": "SharePoint",
+ "signinRiskDescription": "Välj risknivån på inloggning som den här principen ska gälla för",
+ "signinRiskInclude": "{0} inkluderade",
+ "signinRiskReauth": "Villkoret \"Inloggningsrisk\" måste väljas när \"Kräv multifaktorautentisering\" och sessionskontrollen \"inloggningsfrekvens varje gång\" har valts",
+ "signinRiskTriggerDescriptionContent": "Välj nivå för inloggningsrisk",
+ "singleTenantServicePrincipalInfoBallonText": "Principen gäller endast för tjänstens huvudnamn för enskild klientorganisation som ägs av din organisation. Klicka här om du vill veta mer ",
+ "specificSigninRiskLevelsOption": "Välj specifika risknivåer för inloggning",
+ "specificUsersExcluded": "specifika användare som undantas",
+ "specificUsersIncluded": "Specifika användare som inkluderas",
+ "specificUsersIncludedAndExcluded": "Specifika användare som exkluderats och inkluderats",
+ "startDatePickerLabel": "Startar",
+ "startFreeTrial": "Starta en kostnadsfri utvärdering",
+ "startTimePickerLabel": "Starttid",
+ "sunday": "söndag",
+ "testButton": "What If",
+ "thumbprintCol": "Tumavtryck",
+ "thursday": "torsdag",
+ "timeConditionAllTimesLabel": "När som helst",
+ "timeConditionIntroText": "Konfigurera tiden då den här principen ska gälla",
+ "timeConditionSelectorInfoBallonContent": "När användaren loggar in. Till exempel \"onsdag 09.00-17.00 PST\"",
+ "timeConditionSelectorLabel": "Tid (förhandsversion)",
+ "timeConditionSpecificLabel": "Specifika tider",
+ "timeSelectorAllTimesText": "När som helst",
+ "timeSelectorSpecificTimesText": "Specifika tider konfigurerade",
+ "timeZoneDropdownInfoBalloonContent": "Välj en tidszon som definierar tidsintervallet. Den här principen gäller för alla användare i alla tidszoner. \"Onsdag 09.00-17.00\" för en användare, kan till exempel vara \"onsdag 10.00-18.00\" för en användare i en annan tidszon.",
+ "timeZoneDropdownLabel": "Tidszon",
+ "timeZoneDropdownPlaceholderText": "Välj en tidszon",
+ "tooManyPoliciesDescription": "Bara de 50 första principerna visas, klicka här för att visa alla principer",
+ "tooManyPoliciesTitle": "Fler än 50 principer hittades",
+ "trustedLocationStatusIconDescription": "Platsen är betrodd",
+ "trustedLocationStatusIconEnabled": "Betrodd statusikon",
+ "tuesday": "tisdag",
+ "uploadInBadState": "Det gick inte att ladda upp den angivna filen.",
+ "upsellAppsDescription": "Kräv alltid multifaktorautentisering för känsliga program eller bara från utanför företagsnätverket.",
+ "upsellAppsTitle": "Säkra program",
+ "upsellBannerText": "Skaffa en kostnadsfri Premium-utvärderingsversion om du vill använda den här funktionen",
+ "upsellDataDescription": "Kräv att enheten markeras som att den följer standard eller är Hybrid Azure AD-ansluten för att den ska beviljas åtkomst till företagsresurserna.",
+ "upsellDataTitle": "Säkra data",
+ "upsellDescription": "Villkorad åtkomst ger dig den kontroll och det skydd du behöver för att hålla dina företagsdata säkra, samtidigt som den ger dina användare möjligheten att arbeta från valfri enhet. Du kan t.ex. begränsa åtkomsten utanför företagsnätverket eller begränsa åtkomsten till enheter med principer som följer standard.",
+ "upsellRiskDescription": "Kräv multifaktorautentisering för riskhändelser som identifierats av Microsofts Machine Learning-system.",
+ "upsellRiskTitle": "Skydda mot risk",
+ "upsellTitle": "Villkorad åtkomst",
+ "upsellWhyTitle": "Varför ska man använda villkorsstyrd åtkomst?",
+ "userAppNoneOption": "Ingen",
+ "userNamePlaceholderText": "Ange användarnamn",
+ "userNotSetSeletorLabel": "0 användare och grupper valda",
+ "userOnlySelectionBladeExcludeDescription": "Välj de användare som ska undantas principen",
+ "userOrGroupSelectionCountDiffBannerText": "{0} som konfigurerats i den här policyn har tagits bort från katalogen, men detta påverkar inte andra användare och grupper i policyn. Nästa gång som du uppdaterar policyn tas de borttagna användarna och/eller grupperna automatiskt bort från den.",
+ "userOrSPNotSetSelectorLabel": "Inga användar- eller arbetsbelastningsidentiteter har valts",
+ "userOrSPSelectionBladeTitle": "Användar- eller arbetsbelastningsidentiteter",
+ "userOrSPSelectorInfoBallonText": "Identiteter i katalogen som principen gäller för, inklusive användare, grupper och tjänstens huvudnamn",
+ "userRequired": "Användare krävs",
+ "userRiskErrorBox": "Du måste välja villkoret \"Användarrisk\" när beviljandet \"Tillåt lösenordsändring\" har valts",
+ "userRiskReauth": "Villkoret \"Användarrisk\" och inte \"Inloggningsrisk\" måste väljas när beviljandet \"Kräv lösenordsändring\" och sessionskontrollen \"Inloggningsfrekvens varje gång\" har valts",
+ "userSPRequired": "Användare eller tjänstens huvudnamn måste anges",
+ "userSPSelectorTitle": "Användar- eller arbetsbelastningsidentitet",
+ "userSelectionBladeAllUsersAndGroups": "Alla användare och grupper",
+ "userSelectionBladeExcludeDescription": "Välj de användare och grupper som ska undantas från principen",
+ "userSelectionBladeExcludeTabTitle": "Uteslut",
+ "userSelectionBladeExcludedSelectorTitle": "Välj exkluderade användare",
+ "userSelectionBladeIncludeDescription": "Välj de användare som principen ska gälla för",
+ "userSelectionBladeIncludeTabTitle": "Inkludera",
+ "userSelectionBladeIncludedSelectorTitle": "Välj",
+ "userSelectionBladeSelectUsers": "Välj användare",
+ "userSelectionBladeSelectedUsers": "Välj användare och grupper",
+ "userSelectionBladeTitle": "Användare och grupper",
+ "userSelectorBladeTitle": "Användare",
+ "userSelectorExcluded": "{0} exkluderade",
+ "userSelectorGroupPlural": "{0} grupper",
+ "userSelectorGroupSingular": "1 grupp",
+ "userSelectorIncluded": "{0} inkluderade",
+ "userSelectorInfoBallonText": "Användare och grupper i katalogen som principen tillämpas för. Exempelvis pilotgrupp",
+ "userSelectorSelected": "{0} har valts",
+ "userSelectorTitle": "Användare",
+ "userSelectorUserAndGroup": "{0}, {1}",
+ "userSelectorUserPlural": "{0} användare",
+ "userSelectorUserSingular": "1 användare",
+ "userSelectorWithExclusion": "{0} och {1}",
+ "usersGroupsLabel": "Användare och grupper",
+ "viewApprovedAppsText": "Se lista över godkända klientappar",
+ "viewCompliantAppsText": "Visa en lista över principskyddade klientappar",
+ "vpnBladeTitle": "VPN-anslutningsmöjlighet",
+ "vpnCertCreateFailedMessage": "Fel: {0}",
+ "vpnCertCreateFailedTitle": "Det gick inte att skapa {0}",
+ "vpnCertCreateInProgressTitle": "{0} skapas",
+ "vpnCertCreateSuccessMessage": "{0} skapades.",
+ "vpnCertCreateSuccessTitle": "{0} skapades",
+ "vpnCertNoRowsMessage": "Inga VPN-certifikat hittades",
+ "vpnCertUpdateFailedMessage": "Fel: {0}",
+ "vpnCertUpdateFailedTitle": "Det gick inte att uppdatera {0}",
+ "vpnCertUpdateInProgressTitle": "Uppdaterar {0}",
+ "vpnCertUpdateSuccessMessage": "{0} har uppdaterats.",
+ "vpnCertUpdateSuccessTitle": "{0} har uppdaterats",
+ "vpnFeatureInfo": "Klicka här om du vill ha mer information om VPN-anslutningsmöjligheter och villkorsstyrd åtkomst.",
+ "vpnFeatureWarning": "När ett VPN-certifikat har skapats i Azure Portal, så börjar Azure AD använda det omedelbart för att kunna utfärda certifikat med kort livslängd till VPN-klienten. Det är viktigt att VPN-certifikatet omedelbart distribueras till VPN-servern, så att du undviker problem med valideringen av VPN-klientens autentiseringsuppgifter.",
+ "vpnMenuText": "VPN-anslutningsmöjlighet",
+ "vpncertDropdownDefaultOption": "Giltighetstid",
+ "vpncertDropdownInfoBalloonContent": "Välj varaktighet för certifikatet som du vill skapa",
+ "vpncertDropdownLabel": "Välj varaktighet",
+ "vpncertDropdownOneyearOption": "1 år",
+ "vpncertDropdownThreeyearOption": "3 år",
+ "vpncertDropdownTwoyearOption": "2 år",
+ "wednesday": "onsdag",
+ "whatIfAppEnforcedControl": "Använd app-framtvingade begränsningar",
+ "whatIfBladeDescription": "Testa effekten av villkorsstyrd åtkomst för en användare som loggar in under vissa villkor.",
+ "whatIfBladeTitle": "What If",
+ "whatIfClassicPoliciesWarning": "Klassiska principer utvärderas inte av det här verktyget.",
+ "whatIfClientAppInfo": "Den klientapp som användaren loggar in från. Exempel: webbläsare.",
+ "whatIfCountry": "Land",
+ "whatIfCountryInfo": "Landet som användaren loggar in från.",
+ "whatIfDevicePlatformInfo": "Den enhetsplattform från vilken användaren loggar in.",
+ "whatIfDeviceStateInfo": "Den enhetsstatus från vilken användaren loggar in",
+ "whatIfEnterIpAddress": "Ange IP-adress (t.ex. 40.77.182.32)",
+ "whatIfErrorInvalidIpAddress": "En ogiltig IP-adress angavs.",
+ "whatIfEvaResultApplication": "Molnappar",
+ "whatIfEvaResultClientApps": "Klientapp",
+ "whatIfEvaResultDevicePlatform": "Enhetsplattform",
+ "whatIfEvaResultEmptyPolicy": "Tom princip",
+ "whatIfEvaResultInvalidCondition": "Ogiltigt villkor",
+ "whatIfEvaResultInvalidPolicy": "Ogiltig princip",
+ "whatIfEvaResultLocation": "Plats",
+ "whatIfEvaResultNotEnoughInformation": "Det finns inte tillräckligt med information",
+ "whatIfEvaResultPolicyNotEnabled": "Principen har inte aktiverats",
+ "whatIfEvaResultSignInRisk": "Inloggningsrisk",
+ "whatIfEvaResultUsers": "Användare och grupper",
+ "whatIfIpAddress": "IP-adress",
+ "whatIfIpAddressInfo": "Den IP-adress användaren in från.",
+ "whatIfIpCountryInfoBoxText": "Om du använder en IP-adress eller land, krävs bägge fälten och bör mappa tillsammans korrekt.",
+ "whatIfPolicyAppliesTab": "Principer som ska tillämpas",
+ "whatIfPolicyDoesNotApplyTab": "Principer som inte ska tillämpas",
+ "whatIfReasons": "Orsaker till varför den här principen inte ska tillämpas",
+ "whatIfSelectClientApp": "Välj en klientapp...",
+ "whatIfSelectCountry": "Välj land...",
+ "whatIfSelectDevicePlatform": "Välj enhetsplattform...",
+ "whatIfSelectPrivateLink": "Välj privat länk...",
+ "whatIfSelectServicePrincipalRisk": "Välj risknivå för tjänstens huvudnamn...",
+ "whatIfSelectSignInRisk": "Välj risknivå för inloggning...",
+ "whatIfSelectType": "Välj identitetstyp",
+ "whatIfSelectUserRisk": "Välj användarrisk...",
+ "whatIfServicePrincipalRiskInfo": "Den risknivå som är kopplad till tjänstens huvudnamn",
+ "whatIfSignInRisk": "Inloggningsrisk",
+ "whatIfSignInRiskInfo": "Den risknivå som är kopplad till inloggningen",
+ "whatIfUnknownAreas": "Okända områden",
+ "whatIfUserPickerLabel": "Vald användare",
+ "whatIfUserPickerNoRowsLabel": "Ingen användare eller tjänsthuvudnamn har valts",
+ "whatIfUserRiskInfo": "Den risknivå som är kopplad till användaren",
+ "whatIfUserSelectorInfo": "De användare i katalogen som du vill testa",
+ "windows365InfoBox": "Om du väljer Windows 365 påverkas anslutningar till molnbaserade datorer och Azure Virtual Desktop-sessionsvärdar. Klicka här om du vill veta mer.",
+ "windowsDisplayName": "Windows",
+ "windowsPhoneDisplayName": "Windows Phone",
+ "workloadIdentities": "Arbetsbelastningsidentiteter (förhandsversion)",
+ "workloadIdentity": "Arbetsbelastningsidentitet"
+ },
+ "AppResources": {
+ "AppSettingsUx": {
+ "assignmentFilterColumnHeader": "Filter",
+ "assignmentFilterTypeColumnHeader": "Filterläge",
+ "assignmentToast": "Slutanvändarmeddelanden",
+ "assignmentTypeTableHeader": "TILLDELNINGSTYP",
+ "deadlineTimeColumnLabel": "Tidsgräns för installation",
+ "deliveryOptimizationPriorityHeader": "Prioritet för leveransoptimering",
+ "groupTableHeader": "Grupp",
+ "installContextLabel": "Installationssammanhang",
+ "isRemovable": "Installera som flyttbart",
+ "licenseTypeLabel": "Licenstyp",
+ "modeTableHeader": "Gruppläge",
+ "policySet": "Principuppsättning",
+ "restartGracePeriodHeader": "Respitperiod för omstart",
+ "startTimeColumnLabel": "Tillgänglighet",
+ "tracks": "Spår",
+ "uninstallOnRemoval": "Avinstallera när enheten tas bort",
+ "updateMode": "Uppdateringsprioritet",
+ "vPN": "VPN"
+ },
+ "AppType": {
+ "aADWebApp": "AAD-webbapp",
+ "androidEnterpriseSystemApp": "Android Enterprise-systemapp",
+ "androidForWorkApp": "App från hanterad Google Play-butik",
+ "androidLobApp": "Branschspecifik Android-app",
+ "androidStoreApp": "Google Play-app",
+ "builtInAndroid": "Inbyggd Android-app",
+ "builtInApp": "Inbyggd app",
+ "builtInIos": "Inbyggd iOS-app",
+ "iosLobApp": "Branschspecifik iOS-app",
+ "iosStoreApp": "iOS Store-app",
+ "iosVppApp": "Volyminköpsprogramapp för iOS",
+ "lineOfBusinessApp": "Branschspecifik app",
+ "macOSDmgApp": "macOS app (DMG)",
+ "macOSEdgeApp": "Microsoft Edge (macOS)",
+ "macOSLobApp": "Verksamhetsspecifik macOS-app",
+ "macOSMdatpApp": "Microsoft Defender ATP (macOS)",
+ "macOSOfficeSuiteApp": "macOS Office-paket",
+ "macOsVppApp": "Volyminköpsprogramapp för macOS",
+ "managedAndroidLobApp": "Hanterad branschspecifik Android-app",
+ "managedAndroidStoreApp": "Hanterad Google Play-app",
+ "managedGooglePlayApp": "App från hanterad Google Play-butik",
+ "managedGooglePlayPrivateApp": "Privat app från hanterad Google Play-butik",
+ "managedGooglePlayWebApp": "Hanterad Google Play-webblänk",
+ "managedIosLobApp": "Hanterad branschspecifik iOS-app",
+ "managedIosStoreApp": "Hanterad iOS Store-app",
+ "microsoftStoreForBusinessApp": "Microsoft Store för företag-app",
+ "microsoftStoreForBusinessReleaseManagedApp": "Microsoft Store för företag",
+ "officeAddIn": "Office-tillägg",
+ "officeSuiteApp": "Microsoft 365-applikationer (Windows 10 och senare)",
+ "sharePointApp": "SharePoint-app",
+ "teamsApp": "Teams-app",
+ "webApp": "Webblänk",
+ "windowsAppXLobApp": "Branschspecifik Windows AppX-app",
+ "windowsClassicApp": "Windows-app (Win32)",
+ "windowsEdgeApp": "Microsoft Edge (Windows 10 och senare)",
+ "windowsMobileMsiLobApp": "Branschspecifik Windows MSI-app",
+ "windowsPhone81AppXBundleLobApp": "Branschspecifik Windows Phone 8.1 AppX-app",
+ "windowsPhone81AppXLobApp": "Branschspecifik Windows Phone 8.1 AppX-app",
+ "windowsPhone81StoreApp": "Windows Phone 8.1 Store-app",
+ "windowsPhoneXapLobApp": "Branschspecifik Windows Phone XAP-app",
+ "windowsStoreApp": "Microsoft Store-app",
+ "windowsUniversalAppXLobApp": "Branschspecifik Windows Universal AppX-app",
+ "windowsUniversalLobApp": "Branschspecifik universell Windows-app"
+ },
+ "AppTypePlatform": {
+ "android": "Android",
+ "ios": "iOS",
+ "macOs": "macOS",
+ "web": "Webben",
+ "windows": "Windows"
+ },
+ "AssignmentAction": {
+ "exclude": "Undantaget",
+ "include": "Inklusive",
+ "includeAllDevicesVirtualGroup": "Inklusive",
+ "includeAllUsersVirtualGroup": "Inklusive"
+ },
+ "AssignmentToast": {
+ "hideAll": "Dölj alla popup-meddelanden",
+ "showAll": "Visa alla popup-meddelanden",
+ "showReboot": "Visa popup-meddelanden om omstart av dator"
+ },
+ "DeliveryOptimizationPriority": {
+ "backgroundNormal": "Bakgrund",
+ "displayText": "Innehållsnedladdning i {0}",
+ "foreground": "Förgrund",
+ "header": "Prioritet för leveransoptimering"
+ },
+ "DeviceRestartBehaviorOptions": {
+ "allow": "Appinstallation kan tvinga fram omstart av enhet",
+ "basedOnReturnCode": "Bestäm beteende baserat på returkoder",
+ "force": "Intune tvingar fram obligatorisk omstart av enhet",
+ "suppress": "Ingen särskild åtgärd"
+ },
+ "FilterType": {
+ "exclude": "Undanta",
+ "include": "Ta med",
+ "none": "Inget"
+ },
+ "InstallIntent": {
+ "available": "Tillgängligt för registrerade enheter",
+ "availableWithoutEnrollment": "Tillgänglig med eller utan registrering",
+ "notApplicable": "Saknas",
+ "required": "Obligatoriskt",
+ "uninstall": "Avinstallera"
+ },
+ "SettingType": {
+ "assignmentType": "Tilldelningstyp",
+ "deviceLicensing": "Licenstyp",
+ "installContext": "Avinstallera när enheten tas bort",
+ "toastSettings": "Slutanvändarmeddelanden",
+ "vpnConfiguration": "VPN"
+ },
+ "UpdateMode": {
+ "default": "Standardinställning",
+ "postponed": "Uppskjuten",
+ "priority": "Hög prioritet"
+ }
+ },
+ "WindowsEnrollment": {
+ "coManagementAuthorityDesc": "Ställ in samhanteringsinställningar för Configuration Manager-integrering",
+ "coManagementAuthorityTitle": "Samhanteringsinställningar ",
+ "deploymentProfiles": "Windows AutoPilot-distributionsprofiler",
+ "description": "Lär dig om sju olika sätt att registrera en Windows 10/11-dator på Intune av användare eller administratörer.",
+ "descriptionLabel": "Windows-registreringsmetoder",
+ "enrollmentStatusPage": "Statussidan för registrering"
+ },
+ "Win32Program": {
+ "DeviceRestartBehaviorOptions": {
+ "allow": "Appinstallation kan tvinga fram omstart av enhet",
+ "basedOnReturnCode": "Bestäm beteende baserat på returkoder",
+ "force": "Intune tvingar fram obligatorisk omstart av enhet",
+ "suppress": "Ingen specifik åtgärd"
+ },
+ "RunAsAccountOptions": {
+ "system": "System",
+ "user": "Användare"
+ },
+ "bladeTitle": "Program",
+ "deviceRestartBehavior": "Beteende för enhetsomstart",
+ "deviceRestartBehaviorTooltip": "Välj funktionssätt för omstart av enheten när appen har installerats. Välj Bestäm beteende baserat på returkoder, om du vill starta om enheten utifrån inställningarna för returkoder. Välj Ingen särskild åtgärd om du inte vill att enheten ska startas om när MSI-baserade appar installeras. Välj Appinstallation kan tvinga fram omstart av enhet, om du vill att appinstallationen ska slutföras utan att åsidosätta omstart. Välj Intune tvingar fram obligatorisk omstart av enhet, om enheten alltid ska starta om efter en lyckad appinstallation.",
+ "header": "Ange kommandon för att installera och avinstallera appen:",
+ "installCommand": "Installationskommando",
+ "installCommandMaxLengthErrorMessage": "Installationskommandot får inte överskrida maxlängden på 1 024 tecken.",
+ "installCommandTooltip": "Den fullständiga installationskommandoraden som används för att installera appen.",
+ "runAs32Bit": "Kör installationsprogrammet och avinstallera kommandon i en 32-bitarsprocess på 64-bitarsklienter",
+ "runAs32BitTooltip": "Välj Ja om du vill installera och avinstallera appen i en 32-bitarsprocess på 64-bitarsklienter. Välj Nej (standard) om du vill installera och avinstallera appen i en 64-bitarsprocess på 64-bitarsklienter. 32-bitarsklienter använder alltid en 32-bitarsprocess.",
+ "runAsAccount": "Installationsbeteende",
+ "runAsAccountTooltip": "Välj System om du vill installera appen för alla användare, om stöds finns. Välj Användare om du vill installera appen för den inloggade användaren på enheten. Om du har MSI-appar för flera syften kommer ändringar att hindra uppdateringar och avinstallationer från att slutföras tills det värde som tillämpades på enheten vid den ursprungliga installationen har återställts.",
+ "selectorLabel": "Program",
+ "uninstallCommand": "Avinstallationskommando",
+ "uninstallCommandTooltip": "Den fullständiga avinstallationskommandoraden som används för att avinstallera appen."
+ },
+ "CategoryDescription": {
+ "androidGeneralApplicationRestrictions": "Använd de här inställningarna för att få information om vilka användare som installerar appar som inte är godkända för användning i företaget. Välj typ av lista över begränsade appar:
\r\n Förbjudna appar – en lista över appar som du vill bli informerad om när användare installerar.
\r\n Godkända appar – en lista över appar som är godkända för användning i företaget. Du informeras när användare installerar en app som inte finns med på listan.
\r\n ",
+ "androidZebraMxZebraMx": "Konfigurera Zebra-enheter genom att ladda upp en MX-profil i XML-format.",
+ "iosDeviceFeaturesAirprint": "Använd de här inställningarna för att ställa in iOS-enheter på att automatiskt ansluta till AirPrint-kompatibla skrivare i nätverket. Du behöver IP-adress och resurssökväg till dina skrivare.",
+ "iosDeviceFeaturesExtensibleSingleSignOn": "Ställ in ett apptillägg som aktiverar enkel inloggning för enheter som kör iOS 13.0 eller senare.",
+ "iosDeviceFeaturesHomeScreenLayout": "Ställ in layouten för Dock och hemskärmar på iOS-enheter. Vissa enheter kan ha begränsningar för hur många objekt som får visas.",
+ "iosDeviceFeaturesIOSWallpaper": "Visa en bild som ska synas på hemskärmen och/eller låsskärmen på iOS-enheter.\r\n Om du vill visa en unik bild på varje plats skapar du en profil med låsskärmsbilden och en med hemskärmsbilden.\r\n Tilldela sedan användarna båda profilerna.\r\n
\r\n \r\n - Maximal filstorlek: 750 kB
\r\n - Filtyp: PNG, JPG eller JPEG
\r\n
\r\n ",
+ "iosDeviceFeaturesNotifications": "Ange aviseringsinställningar för appar. Har stöd för iOS 9.3 och senare.",
+ "iosDeviceFeaturesSharedDevice": "Ange valfri text som ska visas på den låsta skärmen. Det här stöds på iOS 9.3 och senare. Läs mer",
+ "iosGeneralApplicationRestrictions": "Använd de här inställningarna för att få information om vilka användare som installerar appar som inte är godkända för användning i företaget. Välj typ av lista över begränsade appar:
\r\n Förbjudna appar – en lista över appar som du vill bli informerad om när användare installerar.
\r\n Godkända appar – en lista över appar som är godkända för användning i företaget. Du informeras när användare installerar en app som inte finns med på listan.
\r\n ",
+ "iosGeneralApplicationVisibility": "Använd listan med visade appar för att ange de iOS-appar som användaren kan visa eller starta. Använd listan med dolda appar för att ange de iOS-appar som användaren inte får visa eller starta.",
+ "iosGeneralAutonomousSingleAppMode": "Appar som du lägger till i listan och kopplar till en enhet kan låsa enheten så att bara den appen körs efter start, eller låsa enheten medan en viss åtgärd pågår (till exempel när du gör ett prov). När åtgärden har slutförts, eller om du tar bort begränsningen, återgår enheten till normalläget.",
+ "iosGeneralKiosk": "I kioskläget låses olika inställningar på en enhet eller också anges det att bara en viss app kan köras på en enhet. Det kan vara praktiskt i butiksmiljöer där du vill att bara en viss demoapp ska köras på enheten.",
+ "macDeviceFeaturesAirprint": "Använd de här inställningarna för att ställa in macOS-enheter på att automatiskt ansluta till AirPrint-kompatibla skrivare i nätverket. Du behöver IP-adress och resurssökväg till dina skrivare.",
+ "macDeviceFeaturesAssociatedDomains": "Konfigurera tillhörande domäner för delning av data och inloggningsuppgifter mellan organisationens appar och webbplatser. Den här profilen kan tillämpas på enheter som kör macOS 10.15 eller senare.",
+ "macDeviceFeaturesExtensibleSingleSignOn": "Ställ in ett apptillägg som aktiverar enkel inloggning för enheter som kör macOS 10.15 eller senare.",
+ "macDeviceFeaturesLoginItems": "Välj vilka appar, filer och mappar som ska öppnas när användarna loggar in på sina enheter. Om du inte vill att användarna ska kunna ändra hur valda appar ska öppnas, kan du dölja appen från användarkonfigurationen.",
+ "macDeviceFeaturesLoginWindow": "Ställ in hur macOS-inloggningsskärmen ska se ut och vilka funktioner som ska visas för användarna innan och efter de loggar in.",
+ "macExtensionsKernelExtensions": "Använd de här inställningarna för att ange en princip för kerneltillägg på macOS-enheter som kör 10.13.2 eller senare.",
+ "macGeneralDomains": "E-postmeddelanden som användaren skickar eller tar emot och som inte matchar de domäner du anger här, markeras som icke tillförlitliga.",
+ "windows10EndpointProtectionApplicationGuard": "När du använder Microsoft Edge skyddar Microsoft Defender Application Guard din miljö mot webbplatser som din organisation inte har definierat som tillförlitliga. När användare besöker webbplatser som inte är med på listan för ditt isolerade nätverk, öppnas webbplatserna i en virtuell webbläsarsession i Hyper-V. Tillförlitliga webbplatser definieras av en nätverksgräns som kan ställas in i Enhetskonfiguration. Observera att den här funktionen endast är tillgänglig för enheter som kör 64-bitars Windows 10 eller senare.",
+ "windows10EndpointProtectionCredentialGuard": "Om du aktiverar Credential Guard aktiveras följande obligatoriska inställningar:\r\n
\r\n \r\n - Aktivera virtualiseringsbaserad säkerhet: Virtualiseringsbaserad säkerhet (VBS) aktiveras vid nästa omstart. För virtualiseringsbaserad säkerhet används Windows Hypervisor för att ge stöd för säkerhetstjänster.
\r\n
\r\n - Säker start med direkt minnesåtkomst: VBS aktiveras med säker start och direkt minnesåtkomst (DMA).
\r\n
\r\n ",
+ "windows10EndpointProtectionDeviceGuard": "Välj ytterligare appar som antingen måste granskas av eller som är betrodda att köras av Microsoft Defender Application Control. Windows-komponenter och alla appar från Windows Store är automatiskt betrodda att köras.
\r\n Program blockeras inte när de körs i läget Endast granskning. I läget Endast granskning, loggas alla händelser i lokala klientloggar.\r\n ",
+ "windows10GeneralPrivacyPerApp": "Lägg till appar som ska ha en annan sekretesspolicy än den du definierade i Standardsekretess.",
+ "windows10NetworkBoundaryNetworkBoundary": "Nätverksgränsen är en lista över företagsresurser, till exempel molnbaserade domäner och IP-adressintervall för datorer i företagsnätverket. Ange nätverksgränser för att tillämpa principer som skyddar data på de här platserna.",
+ "windowsHealthMonitoring": "Ställ in hälsoövervakningsprincipen i Windows.",
+ "windowsPhoneGeneralApplicationRestrictions": "Windows Phone kan blockera användare från att installera eller starta appar som står med i listan över otillåtna appar eller appar som inte står med i listan över godkända appar. Alla hanterade appar måste läggas till i listan över godkända appar."
+ },
"Inputs": {
"accountDomain": "Kontodomän",
"accountDomainHint": "t.ex. contosodomain",
@@ -9962,6 +9858,7 @@
"displayNameLabel": "Namn",
"displayVersionHint": "Ange appversionen",
"displayVersionLabel": "Appversion",
+ "displayVersionLengthCheck": "Visningsversionen får innehålla högst 130 tecken",
"eBookCategoryNameLabel": "Standardnamn",
"emailAccount": "Namn på e-postkonto",
"emailAccountHint": "t.ex. e-post för företag",
@@ -10066,385 +9963,51 @@
"xmlFormatInvalid": "XML-principformatet är ogiltigt.",
"xmlTooLarge": "Storleken på indata måste vara mindre än 1 MB."
},
- "Tooltips": {
- "PolicySettings": {
- "TouchId1": {
- "android": "På Android kan du tillåta fingeravtrycksidentifiering istället för en PIN-kod. Användare ombeds att lämna sitt fingeravtryck när de ska komma åt den här appen från sina arbetskonton.",
- "iOS": "På iOS-/iPadOS-enheter kan du tillåta fingeravtrycksidentifiering istället för PIN-kod. Användarna uppmanas att använda fingeravtryck när de öppnar appen via arbetskontot.",
- "mac": "På Mac-enheter kan du tillåta fingeravtrycksidentifiering istället för PIN-kod. Användarna uppmanas att använda fingeravtryck när de öppnar appen via arbetskontot."
- },
- "appSharingFromLevel1": "Välj något av de följande alternativen för att ange de appar som den här appen kan ta emot data från:",
- "appSharingFromLevel2": "{0}: Tillåt endast mottagning av data i organisationsdokument eller konton från andra principhanterade appar",
- "appSharingFromLevel3": "{0}: Tillåt mottagning av data i organisationsdokument eller konton från valfri app",
- "appSharingFromLevel4": "{0}: Tillåt inte mottagning av data i organisationsdokument eller konton från någon app",
- "appSharingFromLevel5": "{0}: Tillåt dataöverföring från alla appar och behandla alla inkommande data utan användaridentitet som organisationsdata.",
- "appSharingToLevel1": "Välj något av de följande alternativen för att ange de appar som den här appen kan ta skicka data till:",
- "appSharingToLevel2": "{0}: Tillåt endast sändning av organisationsdata till andra principhanterade appar",
- "appSharingToLevel3": "{0}: Tillåt sändning av organisationsdata till valfri app",
- "appSharingToLevel4": "{0}: Tillåt inte sändning av organisationsdata till någon app",
- "appSharingToLevel5": "{0}: Tillåt bara överföring till andra principhanterade appar och filöverföring till andra mobilenhetshanterade appar på registrerade enheter",
- "appSharingToLevel6": "{0}: Tillåt bara överföring till andra principhanterade appar och filtrera operativsystem i dialogrutor Öppna i/Dela till att bara visa principhanterade appar",
- "conditionalEncryption1": "Välj {0} om du vill inaktivera appkryptering för intern applagring när enhetskryptering har upptäckts på en registrerad enhet.",
- "conditionalEncryption2": "Obs! Intune kan bara identifiera enhetsregistrering med Intune MDM. Extern applagring krypteras fortfarande för att säkerställa att data inte kan nås av ohanterade program.",
- "contactSyncMac": "Om det är inaktiverat kan inte appar spara kontakter i den interna adressboken.",
- "contactsSync": "Välj Blockera för att förhindra att principhanterade appar sparar data i enhetens inbyggda appar (t.ex. kontakter, kalender och widgetar) eller för att förhindra att tillägg används i de principhanterade apparna. Om du väljer Tillåt kan den principhanterade appen spara data i de interna apparna eller använda tillägg, om dessa funktioner stöds och aktiveras i den principhanterade appen.
Appar kan ge ytterligare konfigurationsfunktioner med appkonfigurationsprinciper. Mer information finns i appens dokumentation.",
- "encryptionAndroid1": "För appar som omfattas av en princip för Intune-mobilprogramhantering tillhandahålls kryptering av Microsoft. Data krypteras synkront under I/O-åtgärder enligt inställningen i hanteringsprincipen för mobila program. Hanterade appar på Android använder AES-128-kryptering i CBC-läge med hjälp av plattformens kryptografibibliotek. Krypteringsmetoden är inte FIPS 140-2-kompatibel. SHA-256-kryptering stöds som explicit instruktion med SigAlg-parametern och fungerar bara på 4.2-enheter och senare. Innehåll på enhetslagringen krypteras alltid.",
- "encryptionAndroid2": "När du kräver kryptering i din apprincip måste slutanvändarna konfigurera och använda PIN-koder för att få åtkomst till sina enheter. Om någon PIN-kod inte har konfigurerats för enhetsåtkomst startar inte apparna, utan istället visas ett meddelande för slutanvändaren som säger: \"Ditt företag kräver att du först aktiverar en PIN-kod för enheten för att få åtkomst till det här programmet.\"",
- "encryptionMac1": "För appar som omfattas av en princip för Intune-mobilprogramhantering tillhandahålls kryptering av Microsoft. Data krypteras synkront under I/O-åtgärder enligt inställningen i hanteringsprincipen för mobila program. Hanterade appar på Mac använder AES-128-kryptering i CBC-läge med hjälp av plattformskryptografibibliotek. Krypteringsmetoden är inte FIPS 140-2-kompatibel. SHA-256-kryptering stöds som explicit instruktion med SigAlg-parametern och fungerar bara på 4.2-enheter och senare. Innehåll på enhetslagringen krypteras alltid.",
- "faceId1": "När det är tillämpligt kan du tillåta att ansiktsidentifiering används istället för PIN-kod. Användare uppmanas då att använda ansiktsidentifiering när de ansluter till den här appen med sina arbetskonton.",
- "faceId2": "Välj Ja om du vill tillåta ansiktsidentifiering istället för PIN-kod för appåtkomst.",
- "managementLevelsAndroid1": "Använd det här alternativet för att ange huruvida principen avser Android-enhetsadministratörsenheter, Android Enterprise-enheter eller ohanterade enheter.",
- "managementLevelsAndroid2": "{0}: Ohanterade enheter är enheter där ingen Intune-mobilenhetshantering har identifierats. Det omfattar även mobilenhetshanteringsleverantörer från tredje part.",
- "managementLevelsAndroid3": "{0}: Intune-hanterade enheter som använder Androids enhetsadministrations-API.",
- "managementLevelsAndroid4": "{0}: Intune-hanterade enheter som använder Android Enterprise-arbetsprofiler eller Android Enterprise fullständig enhetshantering.",
- "managementLevelsIos1": "Använd det här alternativet för att ange om principen avser enheter hanterade via mobilenhetshantering (MDM) eller ohanterade enheter.",
- "managementLevelsIos2": "{0}: Ohanterade enheter är enheter där ingen Intune-mobilenhetshantering har identifierats. Det omfattar även mobilenhetshanteringsleverantörer från tredje part.",
- "managementLevelsIos3": "{0}: Hanterade enheter hanteras av Intune-mobilenhetshantering.",
- "minAppVersion": "Ange det lägsta appversionsnumret som en användare måste ha för att få säker åtkomst till appen.",
- "minAppVersionWarning": "Ange det rekommenderade lägsta appversionsnumret som en användare måste ha för säker åtkomst till appen.",
- "minOsVersion": "Ange den lägsta operativsystemsversionen som en användare måste ha för att få säker åtkomst till appen.",
- "minOsVersionWarning": "Ange den rekommenderade lägsta operativsystemsversionen som en användare måste ha för att få säker åtkomst till appen.",
- "minPatchVersion": "Definiera den äldsta Android-säkerhetsuppdateringsnivån som krävs för att en användare ska ha säker åtkomst till appen.",
- "minPatchVersionWarning": "Definiera den äldsta rekommenderade Android-säkerhetsuppdateringsnivån som en användare kan ha för att få säker åtkomst till appen.",
- "minSdkVersion": "Ange den lägsta versionen av SDK för Intune-programmets skyddsprincip som en användare måste ha för att få säker åtkomst till appen.",
- "requireAppPinDefault": "Välj Ja om du vill inaktivera appens PIN-kod när ett enhetslås upptäcks på en registrerad enhet.
",
- "targetAllApps1": "Använd det här alternativet om principen ska avse appar på enheter i valfritt hanteringsläge.",
- "targetAllApps2": "Den här inställningen ersätts vid en principkonflikt om användaren har angett en princip avsedd för ett särskilt hanteringsläge.",
- "touchId2": "Välj {0} om du vill kräva identifiering med fingeravtryck istället för PIN-kod för appåtkomst."
- },
- "Tap": {
- "pinResetAfterNumberOfDays": "Ange efter hur många dagar användaren måste återställa PIN-koden.",
- "previousPinBlockCount": "Här visas antalet tidigare PIN-koder som sparas i Intune. Eventuellt nya PIN-koder får inte vara desamma som de koder som sparas i Intune."
+ "WindowsFeatureUpdate": {
+ "EndOFSupportStatus": {
+ "notSupported": "Stöds inte",
+ "supportEnding": "Supporten upphör",
+ "supported": "Stöds"
+ }
},
- "WipPolicySettings": {
- "25": "",
- "allowWindowsSearch": "Det här gör att Windows Search kan fortsätta söka igenom krypterade data.",
- "authoritativeIpRanges": "Aktivera den här inställningen om du vill åsidosätta Windows automatiska identifiering av IP-intervall.",
- "authoritativeProxyServers": "Aktivera den här inställningen om du vill åsidosätta Windows automatiska identifiering av proxyservrar.",
- "checkInput": "Kontrollera inmatningens giltighet",
- "dataRecoveryCert": "Ett återställningscertifikat är ett speciellt EFS-certifikat (krypterande filsystem) som du kan använda för att återställa krypterade filer om du skulle tappa bort eller skada krypteringsnyckeln. Du måste skapa återställningscertifikatet och ange det här. Mer information hittar du här",
- "enterpriseCloudResources": "Ange molnresurser som ska betraktas som företagsresurser och skyddas av Windows informationsskyddsprincip. Du kan ange flera resurser genom att ange ett |-tecken mellan varje.
Om du har ställt in en proxyserver i företaget kan du ange den proxyserver genom vilken trafik till de angivna molnresurserna ska dirigeras.
webbadress[,proxy]|webbadress[,proxy]
Utan proxy: contoso.sharepoint.com|contoso.visualstudio.com
Med proxy: contoso.sharepoint.com,proxy.contoso.com|contoso.visualstudio.com,proxy.contoso.com
",
- "enterpriseIPv4Ranges": "Ange de IPv4-intervall som utgör ditt företagsnätverk. De används tillsammans med företagsnätverkets domännamn som du anger för att definiera nätverkets gräns.
Windows informationsskydd måste vara aktiverat för att den här inställningen ska gälla.
Du kan ange flera värden genom att ange ett kommatecken mellan varje.
Till exempel: 3.4.0.1-3.4.255.255,192.168.1.1-192.168.255.255
",
- "enterpriseIPv6Ranges": "Ange de IPv6-intervall som utgör ditt företagsnätverk. De används tillsammans med företagsnätverkets domännamn som du anger för att definiera nätverkets gräns.
Du kan ange flera värden genom att ange ett kommatecken mellan varje.
Till exempel: 2001:4898:dc05::-2001:4898:dc05:ffff:ffff:ffff:ffff:ffff,2a01:110::-2a01:110:7fff:ffff:ffff:ffff:ffff:ffff
",
- "enterpriseInternalProxyServers": "Om du har ställt in en proxyserver i företaget kan du ange den proxyserver genom vilken trafik till de angivna molnresurserna i inställningarna för företagsmolnresurser ska dirigeras.
Du kan ange flera värden genom att ange ett semikolon mellan varje.
Till exempel: contoso.internalproxy1.com;contoso.internalproxy2.com
",
- "enterpriseNetworkDomainNames": "Ange de DNS-namn som utgör ditt företagsnätverk. De används tillsammans med de IP-intervall som du anger för att definiera företagsnätverkets gräns. Du kan ange flera värden genom att ange ett kommatecken mellan varje.
Windows informationsskydd måste vara aktiverat för att den här inställningen ska gälla.
Till exempel: corp.contoso.com,region.contoso.com
",
- "enterpriseProtectedDomainNames": "Ange de DNS-namn som utgör ditt företagsnätverk. De används tillsammans med de IP-intervall som du anger för att definiera företagsnätverkets gräns. Du kan ange flera värden genom att ange ett lodrätt streck, \"|\", mellan varje.
Windows informationsskydd måste vara aktiverat för att den här inställningen ska gälla.
Till exempel: corp.contoso.com|region.contoso.com
",
- "enterpriseProxyServers": "Om du har externt riktade proxyservrar i företagsnätverket anger du dem här. När du anger en proxyserveradress bör du också ange genom vilken port trafik ska tillåtas och skyddas via Windows informationsskydd.
Obs! Listan får inte innehålla servrar från listan över företagets interna proxyservrar. Du kan ange flera värden genom att ange ett semikolon mellan varje.
Till exempel: proxy.contoso.com:80;proxy2.contoso.com:80
",
- "maxInactivityTime1": "Anger hur lång tid som får passera (i minuter) innan en inaktiv enhet låses med PIN-kod eller lösenord. Användarna kan välja en befintlig tidsgräns som är lägre än den angivna maxtiden i Inställningar. Tänk på att Lumia 950 och 950XL har en högsta tidsgräns på 5 minuter, oavsett vilket värde som anges i den här principen.",
- "maxInactivityTime2": "0 (standardvärde) – Ingen tidsgräns anges. Standardvärdet 0 tolkas som Ingen tidsgräns anges.",
- "maxPasswordAttempts1": "Den här principen fungerar på olika sätt på mobila enheter och skrivbordsenheter.",
- "maxPasswordAttempts2": "På en mobil enhet rensas enheten när användaren når det värde som har angetts i principen.",
- "maxPasswordAttempts3": "På en skrivbordsenhet rensas inte enheten när användaren når värdet i principen. I stället försätts enheten i BitLocker-återställningsläge vilket gör att data inte kan nås, men de kan återställas. Om BitLocker inte är aktiverat kan principen inte tillämpas.",
- "maxPasswordAttempts4": "Innan gränsen för antal misslyckade försök nås, skickas användaren till låsskärmen och varnas om att fler försök kommer att låsa datorn. När gränsen nås startar enheten automatiskt om och BitLocker-återställningssidan öppnas. Användaren uppmanas där att ange BitLocker-återställningsnyckeln.",
- "maxPasswordAttempts5": "0 (standardvärde) – Enheten rensas aldrig när en felaktig PIN-kod eller ett felaktigt lösenord har angetts.",
- "maxPasswordAttempts6": "Det säkraste värdet är 0 om alla principvärden = 0. I annat fall är principvärdet Min det säkraste värdet.",
- "mdmDiscoveryUrl": "Ange webbadressen till registreringsslutpunkten för mobilenhetshantering som ska anges av de användare som registrerar sig för mobilenhetshantering. Det anges som standard för Intune.",
- "minimumPinLength1": "Heltal som anger minsta antal tecken som krävs för PIN-koden. Standardvärdet är 4. Du kan ange lägst 4. Det högsta värdet du kan ange måste vara mindre än värdet för Maximal PIN-längd i principen eller 127, beroende på vilket som är lägst.",
- "minimumPinLength2": "Om du konfigurerar den här principinställningen måste PIN-längden vara större än eller lika med det här värdet. Om du inaktiverar eller inte konfigurerar den här principinställningen måste PIN-längden vara större än eller lika med 4.",
- "name": "Namnet på den här nätverksgränsen",
- "neutralResources": "Om du har autentiseringsslutpunkter för omdirigering i företaget anger du dem här. De platser som anges här betraktas antingen som personliga eller företagsplatser beroende på kontext och anslutning före omdirigeringen.
Du kan ange flera värden genom att ange ett kommatecken mellan varje.
Till exempel: sts.contoso.com,sts.contoso2.com
",
- "passportForWork1": "Värde som anger Windows Hello för företag som inloggningsmetod i Windows.",
- "passportForWork2": "Standardvärdet är Sant. Om du ställer in värdet på Falskt kan användaren inte installera Windows Hello för företag förutom på Azure Active Directory-anslutna mobiltelefoner där installation krävs.",
- "pinExpiration": "Det högsta talet du kan ange för den här principinställningen är 730. Det lägsta är 0. Om du anger 0 upphör användarens PIN-kod aldrig att gälla.",
- "pinHistory1": "Det högsta talet du kan ange för den här principinställningen är 50. Det lägsta är 0. Om du anger 0 krävs ingen lagring av tidigare PIN-koder.",
- "pinHistory2": "Den aktuella PIN-koden ingår i den grupp PIN-koder som hör till användarkontot. PIN-kodshistoriken sparas inte under en PIN-kodsåterställning.",
- "protectUnderLock": "Skyddar appinnehåll när enheten är låst.",
- "protectionModeBlock": "Blockera: Blockerar företagsdata från att lämna skyddade appar.
",
- "protectionModeOff": "Av: Användaren kan fritt flytta data från skyddade appar. Inga åtgärder loggas.
",
- "protectionModeOverride": "Tillåt åsidosättningar: Användarna får en fråga när de försöker flytta data från en skyddad app till en oskyddad app. Om användaren väljer att åsidosätta frågan loggas åtgärden.
",
- "protectionModeSilent": "Tyst: Användaren kan fritt flytta data från skyddade appar. De här åtgärderna loggas.
",
- "required": "Obligatorisk",
- "revokeOnMdmHandoff": "Tillagt i Windows 10, version 1703. Den här principen styr om nycklar för Windows informationstjänst ska återkallas när en enhet uppgraderas från MAM till MDM. Om det är inställt på Av återkallas inte nycklarna och användaren har fortsatt åtkomst till skyddade filer efter uppgraderingen. Det här rekommenderas om MDM-tjänsten är inställd med samma EnterpriseID för Windows informationsskydd som MAM-tjänsten.",
- "revokeOnUnenroll": "Det här gör att krypteringsnycklarna återkallas när en enhet avregistreras från den här principen.",
- "rmsTemplateForEdp": "GUID för TemplateID som ska användas för RMS-kryptering. Med hjälp av Azure RMS-mallen kan IT-administratören ange information om vem som har åtkomst till RMS-skyddade filer och hur länge de har åtkomst.",
- "showWipIcon": "Det här gör att en symbol visas för användarna så att de vet att de befinner sig i ett företagssammanhang.",
- "useRmsForWip": "Anger om Azure RMS-kryptering ska tillåtas för Windows informationsskydd."
+ "SecurityTemplate": {
+ "aSR": "Minskning av attackytan",
+ "accountProtection": "Kontoskydd",
+ "allDevices": "Alla enheter",
+ "antivirus": "Antivirus",
+ "antivirusReporting": "Antivirusrapportering (förhandsversion)",
+ "conditionalAccess": "Villkorlig åtkomst",
+ "deviceCompliance": "Enhetsefterlevnad",
+ "diskEncryption": "Diskkryptering",
+ "eDR": "Slutpunktsidentifiering och svar",
+ "firewall": "Brandvägg",
+ "helpSupport": "Hjälp och support",
+ "setup": "Installation",
+ "wdapt": "Microsoft Defender for Endpoint"
+ },
+ "Win32ReturnCodes": {
+ "CodeTypes": {
+ "failed": "Misslyckad",
+ "hardReboot": "Hård omstart",
+ "retry": "Försök igen",
+ "softReboot": "Mjuk omstart",
+ "success": "Klart"
},
- "requireAppPin": "Välj Ja om du vill inaktivera appens PIN-kod när ett enhetslås upptäcks på en registrerad enhet.
Obs! Intune kan inte identifiera enhetsregistrering med en EMM-lösning från tredje part i iOS/iPadOS.
"
- },
- "AppInfoBalloonText": {
- "Certificate": {
- "customSubjectName": "CN={{UserName}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US\r\nor\r\nCN={{AAD_Device_ID}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US",
- "keySize": "Välj antalet bitar i nyckeln.",
- "keyUsage": "Ange den kryptografiåtgärd som krävs för att byta ut certifikatets offentliga nyckel.",
- "renewalThreshold": "Ange hur många procent (1–99 procent) av den återstående certifikatgiltighetstiden som tillåts innan förnyelse av certifikatet kan begäras. Rekommenderad mängd i Intune är 20 %. (1–99)",
- "rootCert": "Välj en tidigare inställd och tilldelad profil för certifikatutfärdares rotcertifikat. Certifikatutfärdarcertifikatet måste matcha rotcertifikatet för den certifikatutfärdare som utfärdar certifikatet för den här profilen (den du just nu ställer in).",
- "scepServerUrl": "Ange en webbadress för den NDES-server som utfärdar certifikat via SCEP (måste vara HTTPS), till exempel https://contoso.com/certsrv/mscep/mscep.dll",
- "scepServerUrls": "Lägg till en eller flera webbadresser för den NDES-server som utfärdar certifikat via SCEP (måste vara HTTPS), till exempel https://contoso.com/certsrv/mscep/mscep.dll",
- "subjectAlternativeName": "Alternativt namn för certifikatmottagare",
- "subjectNameFormat": "Format för namn på certifikatmottagare",
- "validityPeriod": "Tid som återstår innan certifikatet går ut. Ange ett värde som är lika med eller mindre än den giltighetstid som visas i certifikatmallen. Standardvärdet är ett år."
- },
- "appInstallContext": "Anger vilken installationskontext som ska kopplas till appen. För appar i dubbelläge väljer du önskad kontext för appen. För alla andra appar är det här förinställt baserat på paketet, och kan inte ändras.",
- "autoUpdateMode": "Konfigurera appens uppdateringsprioritet. Välj Standard om du vill att enheten ska vara ansluten till WiFi, laddas och inte aktivt användas innan du uppdaterar appen. Välj Hög prioritet om du vill uppdatera appen så snart utvecklaren har publicerat appen, oavsett debiteringsstatus, WiFi-kapacitet eller slutanvändaraktivitet på enheten. Hög prioritet träder endast i kraft på DO-enheter.",
- "configurationSettingsFormat": "Formattext för konfigurationsinställningar",
- "ignoreVersionDetection": "Ställ in på Ja för appar som uppdateras automatiskt av apputvecklaren (till exempel Google Chrome).",
- "ignoreVersionDetectionMacOSLobApp": "Välj Ja för appar som uppdateras automatiskt av apputvecklaren eller om du bara vill se appens bundleID innan du installerar. Välj Nej om du vill visa appens bundleID och versionsnummer innan du installerar.",
- "installAsManagedMacOSLobApp": "Den här inställningen gäller bara macOS 11 och högre. Appen kommer att installeras men inte hanteras på macOS 10.15 och tidigare.",
- "installContextDropdown": "Välj rätt installationssammanhang. Med användarsammanhang installeras appen enbart för den angivna användaren medan enhetssammanhang installerar appen för alla användare på enheten.",
- "ldapUrl": "Det här är LDAP-värdnamnet där klienter kan få de offentliga krypteringsnycklarna för mejlmottagarna. Mejlen krypteras när en nyckel är tillgänglig. Format som stöds: - ldap.example.com
\r\n- ldap.example.com:123
\r\n- ldap://ldap.example.com
- ldap://ldap.example.com:123
- ldaps://ldap.example.com
\r\n- ldaps://ldap.example.com:123
",
- "permissionsSettings": "Välj körningsbehörigheter för den tillhörande appen.",
- "policyAssociatedApp": "Välj en app som principen ska kopplas till.",
- "policyConfigurationSettings": "Välj den metod som du vill använda för att definiera konfigurationsinställningarna för den här principen.",
- "policyDescription": "Eller ange en beskrivning för konfigurationsprincipen.",
- "policyEnrollmentType": "Välj om de här inställningarna ska hanteras via enhetshantering eller via appar som skapats med Intune SDK.",
- "policyName": "Ange ett namn för den här konfigurationsprincipen.",
- "policyPlatform": "Välj en plattform som ska gälla för den här appkonfigurationsprincipen.",
- "policyProfileType": "Välj de enhetsprofiltyper som den här appkonfigurationsprofilen ska tillämpas på",
- "policySMime": "Ange inställningar för S/MIME-signering och kryptering för Outlook.",
- "sMimeDeployCertsFromIntune": "Ange om S/MIME-certifikat ska levereras från Intune för användning med Outlook.\r\nIntune kan automatiskt distribuera signerings- och krypteringscertifikat till användare via företagsportalen.",
- "sMimeEnable": "Ange om S/MIME-kontroller ska aktiveras när ett mejl skrivs",
- "sMimeEnableAllowChange": "Ange om användaren får ändra Aktivera S/MIME-inställningen.",
- "sMimeEncryptAllEmails": "Ange om alla mejl måste krypteras.\r\nVid kryptering omvandlas data till en chiffertext som bara kan läsas av behöriga mottagare.",
- "sMimeEncryptAllEmailsAllowChange": "Ange om användaren får ändra inställningen Kryptera alla mejl.",
- "sMimeEncryptionCertProfile": "Ange en certifikatprofil för kryptering av e-post.",
- "sMimeSignAllEmails": "Ange om alla mejl måste signeras.\r\nEn digital signatur kontrollerar mejlets äkthet och säkerställer att innehållet inte har manipulerats under överföringen.",
- "sMimeSignAllEmailsAllowChange": "Ange om användaren får ändra inställningen Signera alla mejl.",
- "sMimeSigningCertProfile": "Ange en certifikatprofil för signering av e-post.",
- "sMimeUserNotificationType": "Metod för att meddela användarna om att de måste öppna företagsportalen för att hämta S/MIME-certifikat för Outlook."
- },
- "WindowsQualityUpdateDaysUntilForcedReboot": {
- "oneDay": "1 dag",
- "twoDays": "2 dagar",
- "zeroDays": "0 dagar"
- },
- "Autopilot": {
- "AssignResourceAccount": {
- "createNewCommandMenu": "Skapa ny",
- "createNewResourceAccountInfo": "\r\nSkapa ett nytt resurskonto under registreringen. Resurskontot läggs till i resurskontotabellen direkt men aktiveras inte förrän enheten registreras och Surface Hub-prenumerationen har kontrollerats. Läs mer om resurskonton
\r\n ",
- "createNewResourceTitle": "Skapa nytt resurskonto",
- "deviceNameInvalid": "Enhetsnamnets format är felaktigt",
- "deviceNameRequired": "Ett enhetsnamn måste anges",
- "editResourceAccountLabel": "Redigera",
- "selectExistingCommandMenu": "Välj befintligt"
- },
- "Device": {
- "ComputerName": {
- "validFormat": "Namnen får innehålla högst 15 tecken och får innehålla bokstäver (a–ö, A–Ö), siffror (0–9) samt bindestreck. Namnen får inte bara bestå av siffror. Namnen får inte innehålla blanksteg."
- },
- "Header": {
- "addressableUserName": "Eget namn för användare",
- "azureADDevice": "Tillhörande Azure AD-enhet",
- "batch": "Grupptagg",
- "dateAssigned": "Tilldelat datum",
- "deviceDisplayName": "Enhetsnamn",
- "deviceName": "Enhetsnamn",
- "deviceUseType": "Typ av enhetsanvändning",
- "enrollmentState": "Registreringsstatus",
- "intuneDevice": "Tillhörande Intune-enhet",
- "lastContacted": "Senast kontaktad",
- "make": "Tillverkare",
- "model": "Modell",
- "profile": "Tilldelad profil",
- "profileStatus": "Profilstatus",
- "purchaseOrderId": "Inköpsorder",
- "resourceAccount": "Resurskonto",
- "serialNumber": "Serienummer",
- "userPrincipalName": "Användare"
- }
- },
- "DeviceUseType": {
- "meetingAndPresentation": "Möten och presentation",
- "teamCollaboration": "Gruppsamarbete"
- },
- "Devices": {
- "featureDescription": "Med Windows Autopilot kan du anpassa hela välkomstupplevelsen för användarna.",
- "importErrorStatus": "Vissa enheter importerades inte. Klicka här om du vill ha mer information.",
- "importPendingStatus": "Import pågår. Tid som förflutit: {0} min. Processen kan ta upp till {1} min."
- },
- "DirectoryService": {
- "activeDirectoryAD": "Hybrid Azure AD-ansluten",
- "activeDirectoryADLabel": "Hybrid Azure AD med Autopilot",
- "azureAD": "Azure AD-ansluten",
- "unknownType": "Okänd typ"
- },
- "Filter": {
- "enrollmentState": "Region",
- "profile": "Profilstatus"
- },
- "OOBE": {
- "AddressableUserName": {
- "validateEmpty": "Eget användarnamn måste anges."
- },
- "ApplyComputerNameTemplate": {
- "infoBalloon": "Skapa en namngivningsmall för att lägga till namn på enheterna under registreringen.",
- "label": "Använd mall för enhetsnamn"
- },
- "ApplyComputerNameTemplateDisabled": {
- "label": "För Hybrid Azure AD-anslutna typer av Autopilot-distributionsprofiler namnges enheterna med hjälp av inställningarna i domänanslutningskonfigurationen."
- },
- "ComputerNameTemplate": {
- "emptyValue": "MyCompany-%RAND:4%",
- "label": "Ange ett namn",
- "noDisallowedChars": "Namnet får bara innehålla alfanumeriska tecken, bindestreck, %SERIAL% eller %RAND:x%",
- "serialLength": "Det går inte att använda fler än 7 tecken med %SERIAL%",
- "validateLessThan15Chars": "Namnet får innehålla högst 15 tecken",
- "validateNoSpaces": "Datornamn får inte innehålla mellanslag",
- "validateNotAllNumbers": "Namnet måste även innehålla bokstäver och/eller bindestreck",
- "validateNotEmpty": "Namnet får inte vara tomt",
- "validateOnlyOneMacro": "Namnet får bara innehålla ett av %SERIAL% eller %RAND:x%"
- },
- "ConfigureComputerNameTemplate": {
- "description": "Skapa ett unikt namn för dina enheter. Namnen får innehålla högst 15 tecken, och bokstäver (a–ö, A–Ö), siffror (0–9) och bindestreck. Namnen får inte bara bestå av siffror. Namnen får inte innehålla blanksteg. Använd makrot %SERIAL% om du vill lägga till ett serienummer för maskinvara. Du kan också använda makrot %RAND:x% om du vill lägga till en slumpmässig siffersträng där x är lika med antalet siffror som ska läggas till."
- },
- "EnableWhiteGlove": {
- "infoBalloon": "Aktivera möjligheten att trycka på Windows-tangenten 5 gånger för att köra välkomstprogrammet utan användarautentisering för att registrera enheten och installera alla systemappar och inställningar. Användarappar och inställningar levereras när användaren loggar in.",
- "label": "Tillåt förallokerad distribution"
- },
- "HybridAzureADSkipConnectivityCheck": {
- "infoBalloon": "Autopilot Hybrid Azure AD-anslutningsflödet fortsätter även om ingen domänkontrollantanslutning upprättas under välkomstprogrammet.",
- "label": "Hoppa över AD-anslutningskontroll (förhandsversion)"
- },
- "accountType": "Användarkontotyp",
- "accountTypeInfo": "Ange huruvida användarna ska vara administratörer eller standardanvändare på enheten. Tänk på att den här inställningen inte gäller globala administratörskonton eller företagsadministratörskonton. De här kontona kan inte vara standardanvändarkonton eftersom de har åtkomst till administrativa funktioner i Azure AD.",
- "configOOBEInfo": "\r\nStäll in välkomstprogrammet för Autopilot-enheter\r\n
",
- "configureDevice": "Distributionsläge",
- "configureDeviceHintForSurfaceHub2": "Autopilot har bara stöd för självdistributionsläge för Surface Hub 2. I det läget kopplas inte användaren till den registrerade enheten så inga användarautentiseringsuppgifter krävs.",
- "configureDeviceHintForWindowsPC": "\r\n Distributionsläget avgör om en användare måste ange autentiseringsuppgifter för att etablera enheten.\r\n
\r\n \r\n - \r\n Användarbaserat: Enheterna är kopplade till den användare som registrerar enheten och det krävs användarautentiseringsuppgifter för att etablera enheten\r\n
\r\n - \r\n Självdistribution (förhandsversion): Enheterna är inte kopplade till den användare som registrerar enheten och inga användarautentiseringsuppgifter krävs för att etablera enheten\r\n
\r\n
",
- "createSurfaceHub2Info": "Ställ in Autopilot-registreringsinställningarna för dina Surface Hub 2-enheter. Som standard är det möjligt att hoppa över användarautentisering i Autopilot under välkomstprogrammet. Läs mer om Windows Autopilot för Surface Hub 2.",
- "createWindowsPCInfo": "\r\n\r\nFöljande alternativ aktiveras automatiskt för Autopilot-profiler i självdistributionsläge:\r\n
\r\n\r\n - \r\n Hoppa över val av användning på arbete eller hemma\r\n
\r\n - \r\n Hoppa över OEM-registrering och OneDrive-konfiguration\r\n
\r\n - \r\n Hoppa över användarautentisering i välkomstupplevelsen\r\n
\r\n
",
- "endUserDevice": "Användarbaserat",
- "hideEscapeLink": "Dölj alternativ för att ändra konto",
- "hideEscapeLinkInfo": "Alternativen för att ändra konto och börja om med ett annat konto visas på företagsinloggningssidan första gången enheten ställs in respektive på domänfelsidan. Om du vill dölja alternativen måste du ställa in företagsanpassning i Azure Active Directory (Windows 10, 1809 eller senare eller Windows 11 krävs).",
- "info": "Inställningarna för AutoPilot-profilen avgör vilken välkomstupplevelse användarna får när de startar Windows för första gången. ",
- "language": "Språk (region)",
- "languageInfo": "Ange det språk och den region som ska användas.",
- "licenseAgreement": "Licensvillkor för programvara från Microsoft",
- "licenseAgreementInfo": "Ange om licensavtalet ska visas för användarna.",
- "plugAndForgetDevice": "Självdistribution (förhandsversion)",
- "plugAndForgetGA": "Självdistribution",
- "privacySettingWarning": "Standardvärdet för diagnostikdatainsamlingen har ändrats för enheter som kör Windows 10, version 1903 och senare eller Windows 11. ",
- "privacySettings": "Sekretessinställningar",
- "privacySettingsInfo": "Ange om sekretessinställningar ska visas för användarna.",
- "showCortanaConfigurationPage": "Cortana-konfiguration",
- "showCortanaConfigurationPageInfo": "Med Visa aktiveras introduktionen till Cortana-konfiguration under starten.",
- "skipEULAWarning": "Viktig information om att dölja licensvillkor",
- "skipKeyboardSelection": "Konfigurera tangentbord automatiskt",
- "skipKeyboardSelectionInfo": "Om värdet är true hoppar du över sidan med val av tangentbord om språk är inställt.",
- "subtitle": "AutoPilot-profiler",
- "title": "Välkomstupplevelse (OOBE)",
- "useOSDefaultLanguage": "Standardoperativsystem",
- "userSelect": "Användarval"
- },
- "Sync": {
- "lastRequestedLabel": "Senaste synkroniseringsbegäran",
- "lastSuccessfulLabel": "Senast slutförda synkronisering",
- "syncInProgress": "Synkronisering pågår. Kom tillbaka snart.",
- "syncInitiated": "Synkronisering av AutoPilot-inställningarna har initierats.",
- "syncSettingsTitle": "Synkronisera AutoPilot-inställningar"
- },
- "Title": {
- "devices": "Windows AutoPilot-enheter"
- },
- "Tooltips": {
- "addressableUserName": "Hälsningsnamn som visas när enheten ställs in.",
- "azureADDevice": "Gå till enhetsinformationen för tillhörande enhet. Saknas betyder att det inte finns någon tillhörande enhet.",
- "batch": "Ett strängattribut som kan användas för att identifiera en grupp enheter. Fältet Grupptagg i Intune mappar till OrderID-attributet på Azure AD-enheter.",
- "dateAssigned": "Tidsstämpel för när profilen tilldelades enheten.",
- "deviceDisplayName": "Ange ett unikt namn för en enhet. Det här namnet ignoreras i Hybrid Azure AD-anslutna distributioner. Enhetsnamnet kommer fortfarande från domänanslutningsprofilen för Hybrid Azure AD-enheter.",
- "deviceName": "Namnet som visas när någon försöker identifiera och ansluta till enheten.",
- "deviceUseType": " Enheten installeras baserat på ditt val. Du kan alltid ändra det här senare i inställningarna.\r\n \r\n - För möten och presentationer aktiveras inte Windows Hello och data tas bort efter varje session.\r\n
\r\n - För gruppsamarbete aktiveras Windows Hello och profiler sparas för snabb inloggning
\r\n
",
- "enrollmentState": "Anger om enheten är registrerad.",
- "intuneDevice": "Gå till enhetsinformationen för tillhörande enhet. Saknas betyder att det inte finns någon tillhörande enhet.",
- "lastContacted": "Tidsstämpel för när enheten senast kontaktades.",
- "make": "Den valda enhetens tillverkare.",
- "model": "Den valda enhetens modell",
- "profile": "Namn på den profil som har tilldelats enheten.",
- "profileStatus": "Anger om en profil har tilldelats enheten.",
- "purchaseOrderId": "Inköpsorder-ID",
- "resourceAccount": "Enhetens identitet eller användarhuvudnamn (UPN).",
- "serialNumber": "Den valda enhetens serienummer.",
- "userPrincipalName": "Användare för ifylld autentisering när enheten ställs in."
- },
- "allDevices": "Alla enheter",
- "allDevicesAlreadyAssignedError": "En Autopilot-profil har redan tilldelats Alla enheter.",
- "assignFailedDescription": "Det gick inte att uppdatera tilldelningar för {0}.",
- "assignFailedTitle": "Det gick inte att uppdatera Autopilot-profiltilldelningar.",
- "assignSuccessDescription": "Tilldelningar har uppdaterats för {0}.",
- "assignSuccessTitle": "Autopilot-profiltilldelningarna har uppdaterats.",
- "assignSufaceHub2ProfileNextStep": "Nästa steg i distributionen",
- "assignSurfaceHub2ProfileToDeviceGroup": "1. Koppla den här profilen till minst en enhetsgrupp",
- "assignSurfaceHub2ProfileToResourceAccount": "2. Koppla ett resurskonto till varje Surface Hub-enhet som profilen ska distribueras till",
- "assignedDevicesCount": "Tilldelade enheter",
- "assignedDevicesResourceAccountDescription": "Om du vill distribuera den här profilen till en enhet måste du tilldela enheten ett resurskonto. Välj en enhet åt gången om du vill tilldela ett befintligt resurskonto eller skapa ett nytt. Läs mer om resurskonton
",
- "assignedDevicesResourceAccountStatusBarMessage": "I den här tabellen visas bara Surface Hub 2-enheter som har tilldelats den här profilen.",
- "assigningDescription": "Uppdaterar tilldelningar för {0}.",
- "assigningTitle": "Uppdaterar Autopilot-profiltilldelningar.",
- "cannotDeleteMessage": "Den här profilen har tilldelats grupper. Du måste ta bort tilldelningen för alla grupper från den här profilen innan du kan ta bort den.",
- "cannotDeleteTitle": "Det går inte att ta bort {0}",
- "createdDateTime": "Skapad",
- "deleteMessage": "Om du tar bort den här AutoPilot-profilen visas alla enheter som är tilldelade till den här profilen som otilldelade.",
- "deleteMessageWithPolicySet": "{0} ingår i en eller flera principuppsättningar. Om du tar bort {0} kan du inte längre tilldela den via de principuppsättningarna.",
- "deleteTitle": "Vill du ta bort den här profilen?",
- "description": "Beskrivning",
- "deviceType": "Enhetstyp",
- "deviceUse": "Enhetsanvändning",
- "directoryServiceHintForSurfaceHub2": " \r\n Autopilot har bara stöd för Azure AD-anslutning för Surface Hub 2-enheter. Ange hur enheter ska ansluta till Active Directory (AD) i din organisation.\r\n
\r\n \r\n - \r\n Azure AD-anslutning: Enbart molnet utan en lokal Windows Server Active Directory.\r\n
\r\n
\r\n ",
- "directoryServiceHintForWindowsPC": "\r\n \r\n Ange hur enheter ska ansluta till Active Directory (AD) i din organisation:\r\n
\r\n \r\n - \r\n Azure AD-ansluten: Enbart molnet utan en lokal Windows Server Active Directory\r\n
\r\n
\r\n ",
- "getAssignedDevicesCountError": "Ett fel uppstod när antalet tilldelade enheter hämtades.",
- "getAssignmentsError": "Ett fel inträffade när Autopilot-profiltilldelningarna hämtades.",
- "harvestDeviceId": "Omvandla alla målenheter till Autopilot",
- "harvestDeviceIdDescription": "Den här profilen kan som standard bara tillämpas på Autopilot-enheter som har synkroniserats från Autopilot-tjänsten.",
- "harvestDeviceIdInfo": "\r\n Välj Ja om du vill registrera alla målenheter på Autopilot om de inte redan är registrerade. Nästa gång registrerade enheter genomgår Windows välkomstprogram kommer de genomgå det tilldelade Autopilot-scenariot.\r\n
\r\n Tänk på att det för vissa Autopilot-scenarier krävs särskilda minimiversioner av Windows. Se till att din enhet har den minimiversion som krävs för att genomgå scenariot.\r\n
\r\n Berörda enheter tas inte bort från Autopilot när profilen tas bort. Om du vill ta bort enheten från Autopilot använder du vyn över Windows Autopilot-enheter.\r\n ",
- "harvestDeviceIdWarning": "Efter omvandlingen kan du bara återställa Autopilot-enheter genom att ta bort dem från listan över Autopilot-enheter.",
- "holoLensCommandMenu": "HoloLens",
- "info": "Med Windows AutoPilot-distributionsprofiler kan du anpassa hela välkomstupplevelsen för dina enheter.",
- "invalidProfileNameMessage": "Tecknet \"{0}\" är inte tillåtet",
- "joinTypeLabel": "Anslut till Azure AD som",
- "lastModifiedDateTime": "Senast ändrad:",
- "name": "Namn",
- "noAutopilotProfile": "Inga AutoPilot-profiler",
- "notEnoughPermissionAssignedError": "Du har inte behörighet att koppla den här profilen till en eller flera av de valda grupperna. Kontakta administratören.",
- "profile": "profil",
- "resourceAccountStatusBarMessage": "Ett resurskonto krävs för varje Surface Hub 2-enhet som den här profilen har distribuerats till. Klicka här om du vill läsa mer.",
- "selectServices": "Välj katalogtjänsten som enheter ska ansluta till",
- "surfaceHub2CommandMenu": "Surface Hub 2",
- "surfaceHub2SCommandMenu": "Surface Hub 2S",
- "userAffinityLabel": "Distributionsläge",
- "windowsPCCommandMenu": "Windows-dator",
- "directoryServiceLabel": "Anslut till Azure AD som"
- },
- "AppInformationTab": {
- "Error": {
- "multipleChildApps": "En verksamhetsspecifik macOS-app kan bara installeras som hanterad när det uppladdade paketet innehåller en enda app."
- },
- "Info": {
- "AppStoreUrl": {
- "android": "Ange länken till appresentationen i Google Play-butiken. Exempel:",
- "androidLink": "https://play.google.com/store/apps/details?id=com.microsoft.office.outlook",
- "windows": "Ange länken till appresentationen i Microsoft Store. Exempel:",
- "windowsLink": "https://www.microsoft.com/en-us/p/microsoft-to-do-lists-tasks-reminders/9nblggh5r558"
- },
- "appPackageFile": "En fil som innehåller din app i ett format som kan läsas in separat på en enhet. Giltiga paketttyper: Android (.apk), iOS (.ipa), macOS (.intunemac), Windows (.msi, .appx, .appxbundle, .msix och .msixbundle).",
- "applicableDeviceType": "Välj vilka typer av enheter som appen kan installeras på.",
- "category": "Kategorisera appen för att göra det lättare för användarna att sortera och hitta den på företagsportalen. Du kan välja flera kategorier.",
- "categoryLink": "https://docs.microsoft.com/en-us/intune/apps/apps-add#create-and-edit-categories-for-apps",
- "description": "Hjälp enhetsanvändarna att förstå vilken typ av app det är och/eller vad de kan göra med appen. Den här beskrivningen visas för dem på företagsportalen.",
- "developer": "Namnet på företaget eller den privatperson som har utvecklat appen. Informationen visas för alla som loggar in på administrationscentret.",
- "displayVersion": "Appens version. Den här informationen visas för användarna på företagsportalen.",
- "infoUrl": "Länka personer till en webbplats eller till dokumentation som innehåller mer information om appen. Webbadressen till informationen visas för användarna på företagsportalen.",
- "isFeatured": "Aktuella appar får en framträdande plats på företagportalen så att användarna snabbt hittar dem.",
- "learnMore": "Läs mer",
- "logo": "Ladda upp en logotyp som hör till appen. Logotypen visas bredvid appen i hela företagsportalen.",
- "macOSDmgAppPackageFile": "En fil som innehåller appen i ett format som kan läsas in separat på en enhet. Giltig pakettyp: .dmg.",
- "minOperatingSystem": "Välj den tidigaste operativsystemversionen som appen kan installeras på. Om du tilldelar appen en enhet med ett tidigare operativsystem kommer den inte att installeras.",
- "name": "Lägg till ett namn på appen. Namnet visas i din Intune-applista och för användare på företagsportalen.",
- "notes": "Lägg till ytterligare anteckningar om appen. Anteckningarna visas för användare som loggar in på administrationscentret.",
- "owner": "Namnet på den person i organisationen som hanterar licenser eller är kontaktperson för den här appen. Namnet visas för alla som loggar in på administrationscentret.",
- "packageName": "Kontakta enhetstillverkaren för att få appaketets namn. Exempel på paketnamn: com.example.app",
- "privacyUrl": "Ange en länk för personer som vill veta mer om appens sekretessinställningar och villkor. Webbadressen till sekretessinställningarna visas för användarna på företagsportalen.",
- "publisher": "Namnet på utvecklaren eller företaget som distribuerar appen. Den här informationen visas för användarna på företagsportalen.",
- "selectApp": "Sök i App Store efter iOS-appar som du vill distribuera med Intune.",
- "useManagedBrowser": "När en användare öppnar webbappen öppnas den i en Intune-skyddad webbläsare, till exempel Microsoft Edge eller Intune Managed Browser. Den här inställningen gäller både iOS- och Android-enheter.",
- "useManagedBrowserLink": "https://docs.microsoft.com/en-us/intune/apps/app-configuration-managed-browser",
- "win32AppPackageFile": "En fil som innehåller din app i ett format som kan läsas in separat på en enhet. Giltig pakettyp: .intunewin."
- },
- "descriptionPreview": "Förhandsversion",
- "descriptionRequired": "Beskrivning måste anges.",
- "editDescription": "Redigera beskrivning",
- "name": "Appinformation",
- "nameForOfficeSuitApp": "Information om appsvit"
- },
+ "Columns": {
+ "codeType": "Kodtyp",
+ "returnCode": "Returkod"
+ },
+ "bladeTitle": "Returkoder",
+ "gridAriaLabel": "Returkoder",
+ "header": "Ange returkoder för att visa på funktionssätt efter installation:",
+ "onAddAnnounceMessage": "Returkod vid tillagt objekt {0} av {1}",
+ "onDeleteSuccess": "Returkoden {0} har tagits bort",
+ "returnCodeAlreadyUsedValidation": "Returkoden används redan.",
+ "returnCodeMustBeIntegerValidation": "Returkoden måste vara ett heltal.",
+ "returnCodeShouldBeAtLeast": "Returkoden måste vara minst {0}.",
+ "returnCodeShouldBeAtMost": "Returkoden får vara högst {0}.",
+ "selectorLabel": "Returkoder"
+ },
"NotificationMessage": {
"NotificationMessageTemplatesTab": {
"arabic": "arabiska",
@@ -10516,84 +10079,599 @@
"localeLabel": "Nationella inställningar",
"isDefaultLocale": "Är standard"
},
- "Win32Program": {
- "DeviceRestartBehaviorOptions": {
- "allow": "Appinstallation kan tvinga fram omstart av enhet",
- "basedOnReturnCode": "Bestäm beteende baserat på returkoder",
- "force": "Intune tvingar fram obligatorisk omstart av enhet",
- "suppress": "Ingen specifik åtgärd"
- },
- "RunAsAccountOptions": {
- "system": "System",
- "user": "Användare"
- },
- "bladeTitle": "Program",
- "deviceRestartBehavior": "Beteende för enhetsomstart",
- "deviceRestartBehaviorTooltip": "Välj funktionssätt för omstart av enheten när appen har installerats. Välj Bestäm beteende baserat på returkoder, om du vill starta om enheten utifrån inställningarna för returkoder. Välj Ingen särskild åtgärd om du inte vill att enheten ska startas om när MSI-baserade appar installeras. Välj Appinstallation kan tvinga fram omstart av enhet, om du vill att appinstallationen ska slutföras utan att åsidosätta omstart. Välj Intune tvingar fram obligatorisk omstart av enhet, om enheten alltid ska starta om efter en lyckad appinstallation.",
- "header": "Ange kommandon för att installera och avinstallera appen:",
- "installCommand": "Installationskommando",
- "installCommandMaxLengthErrorMessage": "Installationskommandot får inte överskrida maxlängden på 1 024 tecken.",
- "installCommandTooltip": "Den fullständiga installationskommandoraden som används för att installera appen.",
- "runAs32Bit": "Kör installationsprogrammet och avinstallera kommandon i en 32-bitarsprocess på 64-bitarsklienter",
- "runAs32BitTooltip": "Välj Ja om du vill installera och avinstallera appen i en 32-bitarsprocess på 64-bitarsklienter. Välj Nej (standard) om du vill installera och avinstallera appen i en 64-bitarsprocess på 64-bitarsklienter. 32-bitarsklienter använder alltid en 32-bitarsprocess.",
- "runAsAccount": "Installationsbeteende",
- "runAsAccountTooltip": "Välj System om du vill installera appen för alla användare, om stöds finns. Välj Användare om du vill installera appen för den inloggade användaren på enheten. Om du har MSI-appar för flera syften kommer ändringar att hindra uppdateringar och avinstallationer från att slutföras tills det värde som tillämpades på enheten vid den ursprungliga installationen har återställts.",
- "selectorLabel": "Program",
- "uninstallCommand": "Avinstallationskommando",
- "uninstallCommandTooltip": "Den fullständiga avinstallationskommandoraden som används för att avinstallera appen."
- },
- "OutlookAppConfigSettings": {
- "AllowUserToChangeSetting": {
- "title": "Tillåt användaren att ändra inställning",
- "tooltip": "Ange om användaren får ändra inställningen."
- },
- "AllowWorkAccounts": {
- "title": "Tillåt endast arbets- eller skolkonton",
- "tooltip": " När den här inställningen är aktiverad kan användarna inte lägga till privata mejl och lagringskonton i Outlook. En användare som har ett lagt till ett privat konto i Outlook ombeds att ta bort det privata kontot. Om användaren inte tar bort det privata kontot går det inte att lägga till arbets- eller skolkontot."
- },
- "BlockExternalImages": {
- "title": "Blockera externa bilder",
- "tooltip": "När Blockera externa bilder är aktiverat går det inte att ladda ned bilder från Internet som är inbäddade i meddelandetexten. När alternativet inte är konfigurerat är standardappinställningen Av"
- },
- "ConfigureEmail": {
- "title": "Ställ in e-postkontoinställningar"
- },
- "DefaultAppSignatureSetting": {
- "Tooltip": {
- "android": "Standardsignatur för app visar om appen ska använda Skaffa Outlook för Android som standardsignatur när meddelanden skrivs. Om inställningen är Av, används ingen standardsignatur utan användarna kan lägga till egna signaturer.\r\n\r\nNär alternativet inte är konfigurerat är standardappinställningen På.",
- "iOS": "Standardsignatur för app visar om appen ska använda Skaffa Outlook för iOS som standardsignatur när meddelanden skrivs. Om inställningen är Av, används ingen standardsignatur utan användarna kan lägga till egna signaturer.\r\n\r\nNär alternativet inte är konfigurerat är standardappinställningen På."
- },
- "title": "Standardsignatur för app"
- },
- "OfficeFeedReplies": {
- "title": "Identifieringsflöde",
- "tooltip": "Identifieringsflödet täcker de Office-filer du använder mest. Det här flödet aktiveras automatiskt när Delve har aktiverats för användaren. När alternativet inte är konfigurerat är standardappinställningen På."
- },
- "OrganizeMailByThread": {
- "title": "Sortera e-post efter tråd",
- "tooltip": "Standardfunktionssättet i Outlook är att slå ihop mejlkonversationer till en trådad konversationsvy. Om inställningen är inaktiverad visas varje mejl enskilt i Outlook och grupperas inte efter tråd."
- },
- "PlayMyEmails": {
- "title": "Spela upp mina e-postmeddelanden",
- "tooltip": "Funktionen Spela upp mina e-postmeddelanden är inte aktiverad som standard i appen men visas för behöriga användare via en banderoll i inkorgen. När funktionen är inställd på Av, visas den inte för behöriga användare i appen. Användarna kan manuellt aktivera Spela upp mina e-postmeddelanden inifrån appen även när funktionen är Av. När den är inställd på Inte konfigurerat är standardappinställningen På och funktionen visas för behöriga användare."
- },
- "SuggestedReplies": {
- "title": "Föreslagna svar",
- "tooltip": "När du öppnar ett meddelande kan du få svarsförslag från Office under meddelandet. Om du markerar ett förslag på svar kan du redigera det innan du skickar det."
- },
- "SyncCalendars": {
- "title": "Synkronisera kalendrar",
- "tooltip": "Ställ in om användarna ska kunna synkronisera Outlook-kalendern med den inbyggda kalenderappen och databasen."
- },
- "TextPredictions": {
- "title": "Textförutsägelse",
- "tooltip": "Outlook kan föreslå ord och fraser medan du skriver meddelanden. Svep för att godkänna ett förslag från Outlook. När alternativet inte är konfigurerat är standardappinställningen På."
+ "WindowsQualityUpdateProfile": {
+ "Details": {
+ "DaysUntilForcedReboot": {
+ "label": "Antal dagar att vänta innan omstart framtvingas"
+ },
+ "Description": {
+ "label": "Beskrivning"
+ },
+ "Name": {
+ "label": "Namn"
+ },
+ "QualityUpdateRelease": {
+ "label": "Skicka ut installation av kvalitetsuppdateringar om enhetens operativsystemversion är under:"
+ },
+ "bladeTitle": "Kvalitetsuppdateringar Windows 10 och senare (förhandsversion)",
+ "loadError": "Det gick inte att läsa in!"
+ },
+ "TabName": {
+ "qualityUpdateSettings": "Inställningar"
+ },
+ "infoBoxText": "Den enda kontrollen av kvalitetsuppdateringar som just nu är tillgänglig förutom den befintliga principen för uppdateringsringar för Windows 10 och senare är möjligheten att skicka kvalitetsuppdateringar för enheter som hamnat under en angiven korrigeringsnivå. Det kommer att finnas fler kontroller i framtiden.",
+ "warningBoxText": "Utskick av programuppdateringar kan visserligen förkorta tiden till regelefterlevnad men påverkar också användarnas produktivitet. Risken för att användarna måste starta om datorn under arbetstid ökar markant."
+ },
+ "TermsOfUse": {
+ "Languages": {
+ "addLanguage": "Add language",
+ "af": "Afrikaans",
+ "am": "Amharic",
+ "arSA": "Arabic (Saudi Arabia)",
+ "as": "Assamese",
+ "az": "Azerbaijani",
+ "be": "Belarusian",
+ "bg": "Bulgarian",
+ "bn": "Bangla",
+ "bnIN": "Bangla (India)",
+ "bs": "Bosnian",
+ "ca": "Catalan",
+ "caESvalencia": "Valencian (Spain)",
+ "cs": "Czech",
+ "cy": "Welsh",
+ "da": "Danish",
+ "de": "German",
+ "default": "Default",
+ "defaultDetailsTag": "{0} (Default)",
+ "el": "Greek",
+ "en": "English",
+ "enGB": "English (United Kingdom)",
+ "es": "Spanish",
+ "esMX": "Spanish (Mexico)",
+ "et": "Estonian",
+ "eu": "Basque",
+ "fa": "Persian",
+ "fi": "Finnish",
+ "fil": "Filipino",
+ "fr": "French",
+ "frCA": "French (Canada)",
+ "ga": "Irish",
+ "gd": "Scottish Gaelic",
+ "gl": "Galician",
+ "gu": "Gujarati",
+ "ha": "Hausa",
+ "he": "Hebrew",
+ "hi": "Hindi",
+ "hr": "Croatian",
+ "hu": "Hungarian",
+ "hy": "Armenian",
+ "id": "Indonesian",
+ "ig": "Igbo",
+ "is": "Icelandic",
+ "it": "Italian",
+ "ja": "Japanese",
+ "ka": "Georgian",
+ "kk": "Kazakh",
+ "km": "Khmer",
+ "kn": "Kannada",
+ "ko": "Korean",
+ "kok": "Konkani",
+ "kuArab": "Central Kurdish (Arabic)",
+ "ky": "Kyrgyz",
+ "languageOptions": "Language Options",
+ "lb": "Luxembourgish",
+ "lo": "Lao",
+ "lt": "Lithuanian",
+ "lv": "Latvian",
+ "mi": "Maori",
+ "mk": "Macedonian",
+ "ml": "Malayalam",
+ "mn": "Mongolian",
+ "mr": "Marathi",
+ "ms": "Malay",
+ "mt": "Maltese",
+ "ne": "Nepali",
+ "nl": "Dutch",
+ "nnNO": "Norwegian, Nynorsk (Norway)",
+ "no": "Norwegian",
+ "notSpecified": "Language not specified",
+ "nso": "Sesotho sa Leboa",
+ "or": "Odia",
+ "paArabPK": "Punjabi (Islamic Republic of Pakistan)",
+ "paIN": "Punjabi (India)",
+ "pl": "Polish",
+ "prs": "Dari",
+ "ptBR": "Portuguese (Brazil)",
+ "ptPT": "Portuguese (Portugal)",
+ "quz": "Quechua",
+ "ro": "Romanian",
+ "ru": "Russian",
+ "rw": "Kinyarwanda",
+ "sd": "Sindhi",
+ "si": "Sinhala",
+ "sk": "Slovak",
+ "sl": "Slovenian",
+ "sq": "Albanian",
+ "srCyrlBA": "Serbian (Cyrillic, Bosnia and Herzegovina)",
+ "srCyrlRS": "Serbian (Cyrillic, Serbia)",
+ "srLatnRS": "Serbian (Latin, Serbia)",
+ "sv": "Swedish",
+ "sw": "Kiswahili",
+ "ta": "Tamil",
+ "te": "Telugu",
+ "tg": "Tajik",
+ "th": "Thai",
+ "ti": "Tigrinya",
+ "tk": "Turkmen",
+ "tn": "Setswana",
+ "tr": "Turkish",
+ "tt": "Tatar",
+ "ug": "Uyghur",
+ "uk": "Ukrainian",
+ "ur": "Urdu",
+ "uz": "Uzbek",
+ "vi": "Vietnamese",
+ "wo": "Wolof",
+ "xh": "isiXhosa",
+ "yo": "Yoruba",
+ "zhHans": "Chinese (Simplified)",
+ "zhHant": "Chinese (Traditional)",
+ "zu": "isiZulu"
+ },
+ "AcceptanceExpirationFrequency": {
+ "annually": "Annually",
+ "biannually": "Bi-annually",
+ "monthly": "Monthly",
+ "quarterly": "Quarterly"
},
- "ThemesEnabled": {
- "title": "Aktiverade teman",
- "tooltip": "Ange om användaren får använda ett anpassat visuellt tema."
- }
- },
+ "Wizard": {
+ "AgreementTargetEntityScope": {
+ "NotSelected": {
+ "label": "None selected"
+ },
+ "selectEntityTitle": "Select group",
+ "title": "Select group"
+ },
+ "PolicyFile": {
+ "Languages": {
+ "Empty": {
+ "default": "Select default language",
+ "nonDefault": "Select a language"
+ }
+ },
+ "Validations": {
+ "duplicateLanguage": "Oops, {0} appears to be selected multiple times. Language selection must be unique."
+ }
+ },
+ "PolicyTemplate": {
+ "InfoBox": {
+ "allGuestsAllApps": "A conditional access policy will be created for all guests and all cloud apps. This policy impacts the Azure portal. Once this is created you might be required to sign-out and sign-in.",
+ "allUsersAllApps": "A conditional access policy will be created for all users and all cloud apps. This policy impacts the Azure portal. Once this is created you will be required to sign-out and sign-in.",
+ "custom": "Select the users, groups, and apps that this Terms of Use will be applied to.",
+ "noPolicy": "This terms of use will appear in the grant control list when creating a conditional access policy."
+ }
+ },
+ "Section": {
+ "conditionalAccessSubtitle": "Enforce with conditional access policy templates",
+ "conditionalAccessTitle": "Conditional access",
+ "termsOfUseSubtitle": "Create and upload documents",
+ "termsOfUseTitle": "Terms of use"
+ },
+ "acceptanceDurationInfo": "The terms of use will be enforced immediately and each user will have to re-consent every specified number of days.",
+ "acceptanceDurationLabel": "Duration before re-acceptance required (days)",
+ "acceptanceDurationPlaceholder": "Example: '90'",
+ "acceptanceExpirationFrequencyInfo": "Require users to consent on a recurring basis.",
+ "acceptanceExpirationFrequencyLabel": "Frequency",
+ "acceptanceExpirationStartDateTimeInfo": "The terms of use will be enforced immediately and users will be required to re-consent on this date.",
+ "acceptanceExpirationStartDateTimeLabel": "Expire starting on",
+ "agreementIsPerDeviceAcceptanceRequiredInfo": "The end users will be required to consent to the terms of use on every device.",
+ "agreementIsPerDeviceAcceptanceRequiredLabel": "Require users to consent on every device",
+ "agreementIsViewingBeforeAcceptanceRequiredInfo": "The end users will be required to view the terms of use prior to accepting.",
+ "agreementIsViewingBeforeAcceptanceRequiredLabel": "Require users to expand the terms of use",
+ "agreementNameInfo": "Name will be used to manage the terms of use within the Azure portal.",
+ "agreementNameLabel": "Name",
+ "agreementNamePlaceholderText": "Example: 'All users terms of use'",
+ "agreementRequirmentLabel": "Required Upon",
+ "agreementTargetEntityLabel": "Users targeted",
+ "agreementUploadPolicyLabel": "Terms of use",
+ "agreementUploadPolicyPlaceholderText": "Upload required PDF",
+ "createButtonLabel": "Create",
+ "createPolicyInfo": "In order to enforce the terms of use, a conditional access policy is required. You can create a conditional access policy targeted to specific users and applications later or use one of the predefined templates.",
+ "createPolicyLabel": "Create a policy",
+ "isAcceptanceExpirationEnabledInfo": "The terms of use will be enforced immediately and all users will be forced to re-consent on a schedule.",
+ "isAcceptanceExpirationEnabledLabel": "Expire consents",
+ "pdfValidationInvalidFileFormat": "The file must be in the .pdf format.",
+ "policyFilesInfo": "Upload a PDF file containing the terms of use that your end users must accept. Based on end user preferences they will be shown the appropriate language or if not match the default language will be shown.
For end users agreeing on mobile devices, we recommend the PDF font size to be at least 24 pt.
Display name will be the title of the terms of use that is presented to the end user.",
+ "policyFilesLabel": "Terms of use document",
+ "policyTemplateInfo": "These templates are pre configured conditional access policies that are targeted to specific users and applications.",
+ "policyTemplateLabel": "Policy templates",
+ "title": "New terms of use"
+ }
+ },
+ "TACSettings": {
+ "edgeSettings": "Edge-konfigurationsinställningar",
+ "edgeWindowsDataProtectionSettings": "Edge-dataskyddsinställningar (Windows) – förhandsversion",
+ "edgeWindowsSettings": "Edge-konfigurationsinställningar (Windows) – förhandsversion",
+ "generalAppConfig": "Allmän appkonfiguration",
+ "generalSettings": "Allmänna konfigurationsinställningar",
+ "outlookSMIMEConfig": "Outlook S/MIME-inställningar",
+ "outlookSettings": "Outlook-konfigurationsinställningar",
+ "sMIME": "S/MIME"
+ },
+ "MicrosoftEdgeChannel": {
+ "beta": "Beta",
+ "dev": "Dev",
+ "stable": "Stable"
+ },
+ "WipPolicySettings": {
+ "addNetworkBoundary": "Lägg till nätverksgräns",
+ "addNetworkBoundaryButton": "Lägg till nätverksgräns...",
+ "allowWindowsSearch": "Låt Windows Search söka i krypterade företagsdata och Store-appar",
+ "authoritativeIpRanges": "Listan över företagets ip-intervall är auktoritativ (identifiera inte automatiskt)",
+ "authoritativeProxyServers": "Listan över företagsproxyservrar är auktoritativ (identifiera inte automatiskt)",
+ "boundaryType": "Gränstyp",
+ "cloudResources": "Molnresurser",
+ "corporateIdentity": "Företagsidentitet",
+ "dataRecoveryCert": "Ladda upp ett certifikat för dataåterställningsagenten för att tillåta återställning av krypterade data",
+ "editNetworkBoundary": "Redigera nätverksgräns",
+ "enrollmentState": "Registreringsstatus",
+ "iPv4Ranges": "IPv4-intervall",
+ "iPv6Ranges": "IPv6-intervall",
+ "internalProxyServers": "Interna proxyservrar",
+ "maxInactivityTime": "Maximal tid (i minuter) som får passera innan en inaktiv enhet låses med PIN-kod eller lösenord",
+ "maxPasswordAttempts": "Antal autentiseringsförsök som tillåts innan enheten rensas",
+ "mdmDiscoveryUrl": "Webbadress till MDM-identifiering",
+ "mdmRequiredSettingsInfo": "Principen avser endast Windows 10 Anniversary och högre. Med den här principen används Windows informationsskydd (WIP) som skydd.",
+ "minimumPinLength": "Ange lägsta antal tillåtna tecken för PIN-kod",
+ "name": "Namn",
+ "networkBoundariesGridEmptyText": "Alla nätverksgränser du lägger till visas här",
+ "networkBoundary": "Nätverksgräns",
+ "networkDomainNames": "Nätverksdomäner",
+ "neutralResources": "Neutrala resurser",
+ "passportForWork": "Använd Windows Hello för företag som inloggningsmetod i Windows",
+ "pinExpiration": "Ange tidsperiod (i dagar) som en PIN-kod får användas innan användaren måste ändra den",
+ "pinHistory": "Ange antalet tidigare PIN-koder som kan kopplas till ett användarkonto och som inte kan återanvändas",
+ "pinLowercaseLetters": "Ställ in användning av gemener i PIN-koden för Windows Hello för företag",
+ "pinSpecialCharacters": "Ställ in användning av specialtecken i PIN-koden för Windows Hello för företag",
+ "pinUppercaseLetters": "Ställ in användning av versaler i PIN-koden för Windows Hello för företag",
+ "protectUnderLock": "Förhindra appars tillgång till företagsdata när enheten är låst. Gäller endast Windows 10 Mobile",
+ "protectedDomainNames": "Skyddade domäner",
+ "proxyServers": "Proxyservrar",
+ "requireAppPin": "Inaktivera appens PIN-kod när enhetens PIN-kod hanteras",
+ "requiredSettings": "Nödvändiga inställningar",
+ "requiredSettingsInfo": "Om du ändrar omfång eller tar bort principen dekrypteras företagsinformationen.",
+ "revokeOnMdmHandoff": "Återkalla åtkomst till skyddade data när enheten registreras i MDM",
+ "revokeOnUnenroll": "Återkalla krypteringsnycklar vid avregistrering",
+ "rmsTemplateForEdp": "Ange det mall-ID som ska användas för Azure RMS",
+ "showWipIcon": "Visa symbol för företagsdataskydd",
+ "type": "Typ",
+ "useRmsForWip": "Använd Azure RMS för Windows informationsskydd",
+ "value": "Värde",
+ "weRequiredSettingsInfo": "Principen avser endast Windows 10 Creators Update och högre. Med den här principen används Windows informationsskydd (WIP) och Windows MAM som skydd.",
+ "wipProtectionMode": "Läget för Windows informationsskydd",
+ "withEnrollment": "Med registrering",
+ "withoutEnrollment": "Utan registrering"
+ },
+ "OfficeApplicationAdditionalType": {
+ "projectProRetail": "Project Online Desktop Client",
+ "visioProRetail": "Visio Online, abonnemang 2"
+ },
+ "Countries": {
+ "ae": "Förenade Arabemiraten",
+ "ag": "Antigua och Barbuda",
+ "ai": "Anguilla",
+ "al": "Albanien",
+ "am": "Armenien",
+ "ao": "Angola",
+ "ar": "Argentina",
+ "at": "Österrike",
+ "au": "Australien",
+ "az": "Azerbajdzjan",
+ "bb": "Barbados",
+ "be": "Belgien",
+ "bf": "Burkina Faso",
+ "bg": "Bulgarien",
+ "bh": "Bahrain",
+ "bj": "Benin",
+ "bm": "Bermuda",
+ "bn": "Brunei",
+ "bo": "Bolivia",
+ "br": "Brasilien",
+ "bs": "Bahamas",
+ "bt": "Bhutan",
+ "bw": "Botswana",
+ "by": "Vitryssland",
+ "bz": "Belize",
+ "ca": "Kanada",
+ "cg": "Republiken Kongo",
+ "ch": "Schweiz",
+ "cl": "Chile",
+ "cn": "Kina",
+ "co": "Colombia",
+ "cr": "Costa Rica",
+ "cv": "Cabo Verde",
+ "cy": "Cypern",
+ "cz": "Tjeckien",
+ "de": "Tyskland",
+ "dk": "Danmark",
+ "dm": "Dominica",
+ "do": "Dominikanska republiken",
+ "dz": "Algeriet",
+ "ec": "Ecuador",
+ "ee": "Estland",
+ "eg": "Egypten",
+ "es": "Spanien",
+ "fi": "Finland",
+ "fj": "Fiji",
+ "fm": "Mikronesiska federationen",
+ "fr": "Frankrike",
+ "gb": "Storbritannien",
+ "gd": "Grenada",
+ "gh": "Ghana",
+ "gm": "Gambia",
+ "gr": "Grekland",
+ "gt": "Guatemala",
+ "gw": "Guinea-Bissau",
+ "gy": "Guyana",
+ "hk": "Hongkong",
+ "hn": "Honduras",
+ "hr": "Kroatien",
+ "hu": "Ungern",
+ "id": "Indonesien",
+ "ie": "Irland",
+ "il": "Israel",
+ "in": "Indien",
+ "is": "Island",
+ "it": "Italien",
+ "jm": "Jamaica",
+ "jo": "Jordanien",
+ "jp": "Japan",
+ "ke": "Kenya",
+ "kg": "Kirgizistan",
+ "kh": "Kambodja",
+ "kn": "Saint Kitts och Nevis",
+ "kr": "Republiken Korea",
+ "kw": "Kuwait",
+ "ky": "Caymanöarna",
+ "kz": "Kazakstan",
+ "la": "Demokratiska folkrepubliken Laos",
+ "lb": "Libanon",
+ "lc": "Saint Lucia",
+ "lk": "Sri Lanka",
+ "lr": "Liberia",
+ "lt": "Litauen",
+ "lu": "Luxemburg",
+ "lv": "Lettland",
+ "md": "Republiken Moldavien",
+ "mg": "Madagaskar",
+ "mk": "Nordmakedonien",
+ "ml": "Mali",
+ "mn": "Mongoliet",
+ "mo": "Macao",
+ "mr": "Mauretanien",
+ "ms": "Montserrat",
+ "mt": "Malta",
+ "mu": "Mauritius",
+ "mw": "Malawi",
+ "mx": "Mexiko",
+ "my": "Malaysia",
+ "mz": "Moçambique",
+ "na": "Namibia",
+ "ne": "Niger",
+ "ng": "Nigeria",
+ "ni": "Nicaragua",
+ "nl": "Nederländerna",
+ "no": "Norge",
+ "np": "Nepal",
+ "nz": "Nya Zeeland",
+ "om": "Oman",
+ "pa": "Panama",
+ "pe": "Peru",
+ "pg": "Papua Nya Guinea",
+ "ph": "Filippinerna",
+ "pk": "Pakistan",
+ "pl": "Polen",
+ "pt": "Portugal",
+ "pw": "Palau",
+ "py": "Paraguay",
+ "qa": "Qatar",
+ "ro": "Rumänien",
+ "ru": "Ryssland",
+ "sa": "Saudiarabien",
+ "sb": "Solomonöarna",
+ "sc": "Seychellerna",
+ "se": "Sverige",
+ "sg": "Singapore",
+ "si": "Slovenien",
+ "sk": "Slovakien",
+ "sl": "Sierra Leone",
+ "sn": "Senegal",
+ "sr": "Surinam",
+ "st": "São Tomé och Príncipe",
+ "sv": "El Salvador",
+ "sz": "Swaziland",
+ "tc": "Turks- och Caicosöarna",
+ "td": "Tchad",
+ "th": "Thailand",
+ "tj": "Tadzjikistan",
+ "tm": "Turkmenistan",
+ "tn": "Tunisien",
+ "tr": "Turkiet",
+ "tt": "Trinidad och Tobago",
+ "tw": "Taiwan",
+ "tz": "Tanzania",
+ "ua": "Ukraina",
+ "ug": "Uganda",
+ "us": "USA",
+ "uy": "Uruguay",
+ "uz": "Uzbekistan",
+ "vc": "Saint Vincent och Grenadinerna",
+ "ve": "Venezuela",
+ "vg": "Brittiska Jungfruöarna",
+ "vn": "Vietnam",
+ "ye": "Jemen",
+ "za": "Sydafrika",
+ "zw": "Zimbabwe"
+ },
+ "OfficeUpdateChannel": {
+ "current": "Aktuell kanal",
+ "deferred": "Halvårskanal för företag",
+ "firstReleaseCurrent": "Aktuell kanal (förhandsversion)",
+ "firstReleaseDeferred": "Halvårskanal för företag (förhandsversion)",
+ "monthlyEnterprise": "Månadskanal för företag",
+ "placeHolder": "Välj en"
+ },
+ "AppProtection": {
+ "allAppTypes": "Rikta till alla typer av appar",
+ "androidPlatformLabel": "Android",
+ "appsInAndroidWorkProfile": "Appar i Android Work-profil",
+ "appsOnIntuneManagedDevices": "Appar på Intune-hanterade enheter",
+ "appsOnUnmanagedDevices": "Appar på ohanterade enheter",
+ "iOSPlatformLabel": "iOS/iPadOS",
+ "iosAndroidMacPlatformLabel": "iOS, Android, Mac",
+ "iosAndroidPlatformLabel": "iOS, Android",
+ "macPlatformLabel": "Mac",
+ "notAvailable": "Ej tillgänglig",
+ "windows10PlatformLabel": "Windows 10 och senare",
+ "withEnrollment": "Med registrering",
+ "withoutEnrollment": "Utan registrering"
+ },
+ "InstallContextType": {
+ "device": "Enhet",
+ "deviceContext": "Enhetssammanhang",
+ "user": "Användare",
+ "userContext": "Användarsammanhang"
+ },
+ "ProactiveRemediations": {
+ "Create": {
+ "Basics": {
+ "DescriptionMultiLineTextBox": {
+ "label": "Beskrivning",
+ "placeholder": "Ange en beskrivning"
+ },
+ "NameTextBox": {
+ "label": "Namn",
+ "placeholder": "Ange ett namn"
+ },
+ "PublisherTextBox": {
+ "label": "Publisher",
+ "placeholder": "Ange en utgivare"
+ },
+ "VersionTextBox": {
+ "label": "Version"
+ },
+ "headerDescription": "Skapa ett nytt anpassat skriptpaket av de identifierings- och reparationsskript du har skrivit."
+ },
+ "ScopeTags": {
+ "headerDescription": "Välj en eller flera grupper som skriptpaketet ska tilldelas."
+ },
+ "Settings": {
+ "DetectionScriptMultiLineTextBox": {
+ "label": "Identifieringsskript",
+ "placeholder": "Ange skripttext",
+ "requiredValidationMessage": "Ange identifieringsskriptet"
+ },
+ "EnforceScriptSignatureCheckOptionPicker": {
+ "label": "Framtvinga signaturkontroll av skript"
+ },
+ "LoggedOnCredentialsOptionPicker": {
+ "label": "Kör det här skriptet med inloggningsuppgifterna"
+ },
+ "RemediationScript": {
+ "infoBox": "Skriptet körs i läget för endast identifiering eftersom det inte finns något reparationsskript."
+ },
+ "RemediationScriptMultiLineTextBox": {
+ "label": "Reparationsskript",
+ "placeholder": "Ange skripttext"
+ },
+ "RunIn64BitPSOptionPicker": {
+ "label": "Kör skript i 64-bitars PowerShell"
+ },
+ "ScriptMultiLineTextBox": {
+ "base64EncodingValidationMessage": "Ogiltigt skript. Ett eller flera tecken i skriptet är ogiltiga."
+ },
+ "headerDescription": "Skapa ett anpassat skriptpaket av de skript du skrivit. Skripten körs som standard på tilldelade enheter en gång om dagen.",
+ "infoBox": "Det här skriptet är skrivskyddat. Några av inställningarna för skriptet kan ha inaktiverats."
+ },
+ "title": "Skapa anpassat skript",
+ "ScriptProperties": {
+ "GridHeaders": {
+ "interval": "Intervall",
+ "time": "Datum och tid"
+ },
+ "Interval": {
+ "day": "Upprepas varje dag",
+ "days": "Upprepas var {0}:e dag",
+ "hour": "Upprepas en gång i timmen",
+ "hours": "Upprepas var {0}:e timme",
+ "month": "Upprepas varje månad",
+ "months": "Upprepas var {0}:e månad",
+ "week": "Upprepas varje vecka",
+ "weeks": "Upprepas var {0}:e vecka"
+ },
+ "Time": {
+ "utc": "{0} (UTC)",
+ "utcWithDate": "{0} (UTC) på {1}",
+ "withDate": "{0} kl. {1}"
+ }
+ }
+ },
+ "Edit": {
+ "title": "Redigera: {0}"
+ }
+ },
+ "EdgeAppConfig": {
+ "AllowedURLs": {
+ "title": "Tillåtna webbadresser",
+ "tooltip": "Ange de webbplatser användarna har tillgång till i ett arbetssammanhang. Inga andra webbplatser tillåts. Du kan välja att ställa in antingen en lista över tillåtna eller blockerade webbplatser, men inte båda. "
+ },
+ "ApplicationProxyRedirection": {
+ "header": "Programproxy",
+ "title": "Proxyomdirigering för program",
+ "tooltip": "Aktivera proxyomdirigering för appar för att ge användarna åtkomst till företagslänkar och lokala webbappar."
+ },
+ "BlockedURLs": {
+ "title": "Blockerade webbadresser",
+ "tooltip": "Ange de webbplatser som är blockerade för användare när de befinner sig i ett arbetssammanhang. Alla andra webbplatser tillåts. Du kan välja att ställa in antingen en lista över tillåtna eller blockerade webbplatser, men inte båda. "
+ },
+ "Bookmarks": {
+ "header": "Hanterade bokmärken",
+ "tooltip": "Ange en lista över bokmärkta webbadresser som är tillgängliga för användarna när de använder Microsoft Edge i ett arbetssammanhang.",
+ "uRL": "URL"
+ },
+ "HomepageURL": {
+ "header": "Hanterad startsida",
+ "title": "Webbadress för genväg till hemsida",
+ "tooltip": "Ställ in en genväg till hemsidan som visas för användarna som första symbol under sökfältet när de öppnar en ny flik i Microsoft Edge."
+ },
+ "PersonalContext": {
+ "label": "Omdirigera ej tillförlitliga webbplatser till privat sammanhang",
+ "tooltip": "Ställ in om användaren ska kunna övergå till sitt privata sammanhang för att öppna ej betrodda webbplatser."
+ }
+ },
+ "BooleanActions": {
+ "allow": "Tillåt",
+ "block": "Blockera",
+ "configured": "Konfigurerat",
+ "disable": "Inaktivera",
+ "dontRequire": "Kräv inte",
+ "enable": "Aktivera",
+ "hide": "Dölj",
+ "limit": "Begränsning",
+ "notConfigured": "Inte konfigurerat",
+ "require": "Kräv",
+ "show": "Visa",
+ "yes": "Ja"
+ },
+ "ArchitectureOptions": {
+ "sixtyFourBit": "64-bitars",
+ "thirtyTwoBit": "32-bitars"
+ },
+ "WindowsQualityUpdateDaysUntilForcedReboot": {
+ "oneDay": "1 dag",
+ "twoDays": "2 dagar",
+ "zeroDays": "0 dagar"
+ },
"SoftwareUpdates": {
"BladeTitles": {
"overview": "Översikt"
@@ -10800,66 +10878,732 @@
"notScannedYet": "Inte genomsökt ännu",
"outOfDateIosDevices": "Föråldrade iOS-enheter"
},
- "ScheduledAction": {
- "Form": {
- "editBlockActionInfo": "En blockeringsåtgärd krävs för alla principer för efterlevnad.",
- "graceperiod": "Schema (dagar av icke-kompatibilitet)",
- "graceperiodInfo": "Ange efter hur många dagars icke-kompatibilitet den här åtgärden ska aktiveras på användarens enhet",
- "subtitle": "Ange åtgärdsparametrar",
- "title": "Åtgärdsparametrar"
- },
- "List": {
- "gracePeriodDay": "{0} dag av icke-kompatibilitet",
- "gracePeriodDays": "{0} dagar av icke-kompatibilitet",
- "gracePeriodHour": "{0} timme av icke-kompatibilitet",
- "gracePeriodHours": "{0} timmar av icke-kompatibilitet",
- "gracePeriodMinute": "{0} minut av icke-kompatibilitet",
- "gracePeriodMinutes": "{0} minuter av icke-kompatibilitet",
- "immediately": "Omedelbart",
- "schedule": "Schema",
- "scheduleInfoBalloon": "Dagar efter inkompatibilitet",
- "subtitle": "Ange följden av åtgärder på icke-kompatibla enheter",
- "title": "Åtgärder"
- },
- "Notification": {
- "additionalEmailLabel": "Övrigt",
- "additionalRecipients": "Ytterligare mottagare (via e-post)",
- "additionalRecipientsBladeTitle": "Välj ytterligare mottagare",
- "emailAddressPrompt": "Ange e-postadresser (kommateckenåtskilda)",
- "invalidEmail": "Ogiltig e-postadress",
- "messageTemplate": "Meddelandemall",
- "noneSelected": "Inga valda",
- "notSelected": "Inte valt",
- "numSelected": "{0} har valts",
- "selected": "Valda"
+ "ConfigurationTypes": {
+ "Table": {
+ "androidDeviceOwnerGeneral": "Enhetsbegränsningar (enhetsägare)",
+ "androidForWorkGeneral": "Enhetsbegränsningar (arbetsprofil)"
+ },
+ "androidCustom": "Anpassade",
+ "androidDeviceOwnerGeneral": "Enhetsbegränsningar",
+ "androidDeviceOwnerPkcs": "PKCS-certifikat",
+ "androidDeviceOwnerScep": "SCEP-certifikat",
+ "androidDeviceOwnerTrustedCertificate": "Betrott certifikat",
+ "androidDeviceOwnerVpn": "VPN",
+ "androidDeviceOwnerWiFi": "Trådlöst",
+ "androidEmailProfile": "Cookies (endast Samsung KNOX)",
+ "androidForWorkCustom": "Anpassade",
+ "androidForWorkEmailProfile": "E-post",
+ "androidForWorkGeneral": "Enhetsbegränsningar",
+ "androidForWorkImportedPFX": "PKCS-importerat certifikat",
+ "androidForWorkOemConfig": "OEMConfig",
+ "androidForWorkPKCS": "PKCS-certifikat",
+ "androidForWorkSCEP": "SCEP-certifikat",
+ "androidForWorkTrustedCertificate": "Betrott certifikat",
+ "androidForWorkVpn": "VPN",
+ "androidForWorkWiFi": "Trådlöst",
+ "androidGeneral": "Enhetsbegränsningar",
+ "androidImportedPFX": "PKCS-importerat certifikat",
+ "androidPKCS": "PKCS-certifikat",
+ "androidSCEP": "SCEP-certifikat",
+ "androidTrustedCertificate": "Betrott certifikat",
+ "androidVPN": "VPN",
+ "androidWiFi": "Trådlöst",
+ "androidZebraMx": "MX-profil (endast Zebra)",
+ "complianceAndroid": "Kompatibilitetsprincip för Android",
+ "complianceAndroidDeviceOwner": "Fullständigt hanterad, särskilt avsedd och företagsägd arbetsprofil",
+ "complianceAndroidEnterprise": "Privatägd arbetsprofil",
+ "complianceAndroidForWork": "Android for Work-efterlevnadsprincip",
+ "complianceIos": "Kompatibilitetsprincip för iOS",
+ "complianceMac": "Kompatibilitetsprincip för Mac",
+ "complianceWindows10": "Windows 10 och senare efterlevnadsprincip",
+ "complianceWindows10Mobile": "Kompatibilitetsprincip för Windows 10 Mobile",
+ "complianceWindows8": "Kompatibilitetsprincip för Windows 8",
+ "complianceWindowsPhone": "Kompatibilitetsprincip för Windows Phone",
+ "exchangeActiveSync": "Exchange Active Sync",
+ "iosCustom": "Anpassade",
+ "iosDerivedCredentialAuthenticationConfiguration": "Härledd PIV-autentiseringsuppgift",
+ "iosDeviceFeatures": "Enhetsfunktioner",
+ "iosEDU": "Utbildning",
+ "iosEducation": "Utbildning",
+ "iosEmailProfile": "E-post",
+ "iosGeneral": "Enhetsbegränsningar",
+ "iosImportedPFX": "PKCS-importerat certifikat",
+ "iosPKCS": "PKCS-certifikat",
+ "iosPresets": "Förinställningar",
+ "iosSCEP": "SCEP-certifikat",
+ "iosTrustedCertificate": "Betrott certifikat",
+ "iosVPN": "VPN",
+ "iosVPNZscaler": "VPN",
+ "iosWiFi": "Trådlöst",
+ "macCustom": "Anpassade",
+ "macDeviceFeatures": "Enhetsfunktioner",
+ "macEndpointProtection": "Slutpunktsskydd",
+ "macExtensions": "Tillägg",
+ "macGeneral": "Enhetsbegränsningar",
+ "macImportedPFX": "PKCS-importerat certifikat",
+ "macSCEP": "SCEP-certifikat",
+ "macTrustedCertificate": "Betrott certifikat",
+ "macVPN": "VPN",
+ "macWiFi": "Trådlöst",
+ "settingsCatalog": "Inställningskatalog (förhandsversion)",
+ "unsupported": "Stöds inte",
+ "windows10AdministrativeTemplate": "Administrativa mallar (förhandsversion)",
+ "windows10Atp": "Microsoft Defender för Endpoint (stationära enheter som kör Windows 10 och senare)",
+ "windows10Custom": "Anpassade",
+ "windows10DesktopSoftwareUpdate": "Programuppdateringar",
+ "windows10DeviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
+ "windows10EmailProfile": "E-post",
+ "windows10EndpointProtection": "Slutpunktsskydd",
+ "windows10EnterpriseDataProtection": "Windows Information Protection",
+ "windows10General": "Enhetsbegränsningar",
+ "windows10ImportedPFX": "PKCS-importerat certifikat",
+ "windows10Kiosk": "Kiosk",
+ "windows10NetworkBoundary": "Nätverksgräns",
+ "windows10PKCS": "PKCS-certifikat",
+ "windows10PolicyOverride": "Åsidosätt grupprincip",
+ "windows10SCEP": "SCEP-certifikat",
+ "windows10SecureAssessmentProfile": "Utbildningsprofil",
+ "windows10SharedPC": "Delad enhet för flera användare",
+ "windows10TeamGeneral": "Enhetsbegränsningar (Windows 10 Team)",
+ "windows10TrustedCertificate": "Betrott certifikat",
+ "windows10VPN": "VPN",
+ "windows10WiFi": "Trådlöst",
+ "windows10WiFiCustom": "Trådlöst (anpassat)",
+ "windows8General": "Enhetsbegränsningar",
+ "windows8SCEP": "SCEP-certifikat",
+ "windows8TrustedCertificate": "Betrott certifikat",
+ "windows8VPN": "VPN",
+ "windows8WiFi": "Trådlöst (import)",
+ "windowsDeliveryOptimization": "Leveransoptimering",
+ "windowsDomainJoin": "Domänanslutning",
+ "windowsEditionUpgrade": "Utgåveuppgradering och lägesväxling",
+ "windowsIdentityProtection": "Identitetsskydd",
+ "windowsPhoneCustom": "Anpassade",
+ "windowsPhoneEmailProfile": "E-post",
+ "windowsPhoneGeneral": "Enhetsbegränsningar",
+ "windowsPhoneImportedPFX": "PKCS-importerat certifikat",
+ "windowsPhoneSCEP": "SCEP-certifikat",
+ "windowsPhoneTrustedCertificate": "Betrott certifikat",
+ "windowsPhoneVPN": "VPN",
+ "IosUpdate": "iOS-uppdateringsprincip"
+ },
+ "OfficeSuiteAppsTab": {
+ "acceptLicenseOnBehalfOfUsersLabel": "Godkänn licensvillkoren för programvara från Microsoft för användares räkning",
+ "appSuiteConfigurationLabel": "Konfiguration av appsvit",
+ "appSuiteInformationLabel": "Information om appsvit",
+ "appsToBeInstalledLabel": "Appar som ska installeras som en del av sviten",
+ "architectureLabel": "Arkitektur",
+ "architectureTooltip": "Anger om 32-bitars- eller 64-bitarsversionen av Microsoft 365-appar är installerad på enheter.",
+ "configurationDesignerLabel": "Configuration Designer",
+ "configurationFileLabel": "Konfigurationsfil",
+ "configurationSettingsFormatLabel": "Format för konfigurationsinställningar",
+ "configureAppSuiteLabel": "Konfigurera appsviten",
+ "configuredLabel": "Konfigurerat",
+ "currentVersionLabel": "Aktuell version",
+ "currentVersionTooltip": "Det här är den aktuella versionen av Office som har ställts in i den här sviten. Det här värdet uppdaterats när en nyare version ställs in och sparas.",
+ "enableMicrosoftSearchAsDefaultTooltip": "Installerar en bakgrundstjänst för att fastställa huruvida ett Microsoft Search i Bing-tillägg för Google Chrome är installerat på enheten.",
+ "enterXmlDataLabel": "Ange XML-data",
+ "languagesLabel": "Språk",
+ "languagesTooltip": "Office installeras automatiskt med operativsystemets standardspråk. Välj eventuellt ytterligare språk som du vill installera.",
+ "learnMoreText": "Läs mer",
+ "newUpdateChannelTooltip": "Anger hur ofta appen ska uppdateras med nya funktioner.",
+ "noCurrentVersionText": "Ingen aktuell version",
+ "noLanguagesSelectedLabel": "Inga språk har valts",
+ "notConfiguredLabel": "Inte konfigurerat",
+ "propertiesLabel": "Egenskaper",
+ "removeOtherVersionsLabel": "Ta bort andra versioner",
+ "removeOtherVersionsTooltip": "Välj Ja om du vill ta bort andra versioner av Office (MSI) från användarenheter.",
+ "selectOfficeAppsLabel": "Välj Office-appar",
+ "selectOfficeAppsTooltip": "Välj de Office 365-appar som du vill installera som en del av sviten.",
+ "selectOtherOfficeAppsLabel": "Välj andra Office-appar (licens krävs)",
+ "selectOtherOfficeAppsTooltip": "Om du äger licenser för de här ytterligare Office-apparna kan du även tilldela dem i Intune.",
+ "specificVersionLabel": "Specifik version",
+ "updateChannelLabel": "Uppdateringskanal",
+ "updateChannelTooltip": "Anger hur ofta appen ska uppdateras med nya funktioner.
\r\nMånadskanal – Ge användarna de senaste funktionerna i Office så fort de är tillgängliga.
\r\nMånadskanal för företag – Ge en förhandstitt på de senaste funktionerna i Office en gång i månaden, den andra tisdagen i månaden.
\r\nMånadskanal (riktad) – Ge en förhandstitt på den kommande månadskanalversionen. Det är en uppdateringskanal som stöds och som brukar vara tillgänglig minst en vecka i förväg när det är en månadskanalversion som innehåller nya funktioner.
\r\nHalvårskanal – Ger användarna nya Office-funktioner några gånger om året.
\r\nHalvårskanal (riktad) – Ger pilotavändare och programkompatibilitetstestare möjlighet att testa nästa halvårskanal.",
+ "useMicrosoftSearchAsDefault": "Installera bakgrundstjänst för Microsoft Search i Bing",
+ "useSharedComputerActivationLabel": "Använd aktivering av delade datorer",
+ "useSharedComputerActivationTooltip": "Med aktivering av delad dator kan du distribuera Microsoft 365-appar till datorer som används av flera användare. I vanliga fall kan användare bara installera och aktivera Microsoft 365-appar på ett begränsat antal enheter, till exempel 5 datorer. Om du använder Microsoft 365-appar med aktivering av delad dator, räknas det inte av mot den kvoten.",
+ "versionToInstallLabel": "Version som ska installeras",
+ "versionToInstallTooltip": "Välj den version av Office som ska installeras.",
+ "xLanguagesSelectedLabel": "{0} språk har valts",
+ "xmlConfigurationLabel": "XML-konfiguration"
+ },
+ "EnrollmentRestrictions": {
+ "DeletePayloadLink": {
+ "content": "{0} ingår i en eller flera principuppsättningar. Om du tar bort {0} kan du inte längre tilldela den via de principuppsättningarna. Vill ta bort den ändå?",
+ "contentWithError": "{0} kan ingå i en eller flera principuppsättningar. Om du tar bort {0} kan du inte längre tilldela den via de principuppsättningarna. Vill ta bort den ändå?",
+ "header": "Vill du ta bort den här begränsningen?"
+ },
+ "DeviceLimit": {
+ "description": "Ange högst antal enheter som en användare får registrera.",
+ "header": "Begränsningar för antal enheter",
+ "info": "Ange hur många enheter som varje användare kan registrera."
+ },
+ "DeviceType": {
+ "VersionValidation": {
+ "aOSP": "Måste vara minst 1.0.",
+ "android": "Ange ett giltigt versionsnummer. Exempel: 5.0, 5.5.1, 6.0.0.1",
+ "androidForWork": "Ange ett giltigt versionsnummer. Exempel: 5.0, 5.1.1",
+ "iOS": "Ange ett giltigt versionsnummer. Exempel: 9.0, 10.0, 9.0.2",
+ "mac": "Ange ett giltigt versionsnummer. Exempel: 10, 10.10, 10.10.1",
+ "min": "Minimum får inte vara lägre än {0}",
+ "minMax": "Minimiversionen får inte vara högre än maxversionen.",
+ "windows": "Måste vara minst 10.0. Lämna tomt för att tillåta 8.1-enheter",
+ "windowsMobile": "Måste vara minst 10.0. Lämna tomt för att tillåta 8.1-enheter"
+ },
+ "allPlatformsBlocked": "Alla enhetsplattformar är blockerade. Tillåt plattformsregistrering för att aktivera plattformskonfiguration.",
+ "blockManufacturerPlaceHolder": "Namn på tillverkare",
+ "blockManufacturersHeader": "Blockerade tillverkare",
+ "cannotRestrict": "Begränsningen stöds inte",
+ "configurationDescription": "Ange de begränsningar för plattformskonfiguration som gäller för att registrera en enhet. Använd kompatibilitetsprinciper för att begränsa enheter efter registreringen. Ange versioner som major.minor.build. Versionsbegränsningar gäller endast för enheter som registrerats med företagsportalen. Intune klassificerar enheter som privatägda som standard. En ytterligare åtgärd krävs för att klassificera enheter som företagsägda.",
+ "configurationDescriptionLabel": "Läs mer om att ställa in registreringsbegränsningar",
+ "configurations": "Konfigurera plattformar",
+ "deviceManufacturer": "Enhetstillverkare",
+ "header": "Begränsningar av enhetstyp",
+ "info": "Ange vilka plattformar, versioner och hanteringstyper som kan registreras.",
+ "manufacturer": "Tillverkare",
+ "max": "Max",
+ "maxVersion": "Högsta version",
+ "min": "Min",
+ "minVersion": "Lägsta version",
+ "newPlatforms": "Du har tillåtit nya plattformar. Uppdatera plattformskonfigurationer.",
+ "personal": "Personligt ägd",
+ "platform": "Plattform",
+ "platformDescription": "Du kan tillåta registrering av följande plattformar. Blockera bara plattformar som du inte har stöd för. Du kan ange ytterligare registreringsbegränsningar för tillåtna plattformar.",
+ "platformSettings": "Plattformsinställningar",
+ "platforms": "Välj plattformar",
+ "platformsSelected": "{0} plattformar markerade",
+ "type": "Typ",
+ "versions": "versioner",
+ "versionsRange": "Tillåt minsta/största intervall:",
+ "windowsTooltip": "Begränsar registrering via mobilenhetshantering. Begränsar inte installation av datoragent. Det finns bara stöd för Windows 10- och Windows 11-enheter. Lämna versioner tomt för att tillåta Windows 8.1."
+ },
+ "Priority": {
+ "saved": "Begränsningsprioriteringar har sparats."
+ },
+ "Row": {
+ "announce": "Prioritet: {0}, namn: {1}, tilldelat: {2}"
+ },
+ "Table": {
+ "deployed": "Distribuerad",
+ "name": "Namn",
+ "priority": "Prioritet"
},
- "block": "Markera enheten som inkompatibel",
- "lockDevice": "Lås enhet (lokal åtgärd)",
- "lockDeviceWithPasscode": "Lås enhet (lokal åtgärd)",
- "noAction": "Ingen åtgärd",
- "noActionRow": "Inga åtgärder, välj Lägg till för att lägga till en åtgärd",
- "pushNotification": "Skicka push-meddelande till slutanvändare",
- "remoteLock": "Fjärrlås en inkompatibel enhet",
- "removeSourceAccessProfile": "Ta bort profil för källåtkomst",
- "retire": "Ta icke-kompatibel enhet ur bruk",
- "wipe": "Rensa",
- "emailNotification": "Skicka e-post till slutanvändare"
- },
- "WIPPinRequirements": {
- "WipLowercaseCharacterPinRequirements": {
- "allow": "Tillåt användning av gemener i PIN-kod",
- "notAllow": "Tillåt inte användning av gemener i PIN-kod",
- "requireAtLeastOne": "Kräv att minst en gemen bokstav används i PIN-kod"
- },
- "WipSpecialCharacterPinRequirements": {
- "allow": "Tillåt användning av specialtecken i PIN-kod",
- "notAllow": "Tillåt inte användning av specialtecken i PIN-kod",
- "requireAtLeastOne": "Kräv att minst ett specialtecken används i PIN-kod"
- },
- "WipUppercaseCharacterPinRequirements": {
- "allow": "Tillåt användning av versaler i PIN-kod",
- "notAllow": "Tillåt inte användning av versaler i PIN-kod",
- "requireAtLeastOne": "Kräv att minst en versal bokstav används i PIN-kod"
- }
- }
+ "Type": {
+ "limit": "Begränsning för antal enheter",
+ "type": "Begränsning av enhetstyp"
+ },
+ "allUsers": "Alla användare",
+ "androidRestrictions": "Android-begränsningar",
+ "create": "Skapa begränsning",
+ "defaultLimitDescription": "Det här är standardbegränsningen för antal enheter som tillämpas med lägsta prioritet för alla användare oavsett gruppmedlemskap.",
+ "defaultTypeDescription": "Det här är standardbegränsningen för enhetstyper som tillämpas med lägsta prioritet för alla användare oavsett gruppmedlemskap.",
+ "defaultWhfbDescription": "Det här är standardkonfigurationen för Windows Hello för företag som tillämpas med lägsta prioritet för alla användare oavsett gruppmedlemskap.",
+ "deleteMessage": "Användare som påverkas begränsas av nästa högsta tilldelade prioritetsbegränsning eller standardbegränsningen om ingen annan begränsning har tilldelats.",
+ "deleteTitle": "Vill du ta bort begränsningen för {0}?",
+ "descriptionHint": "Kort stycke som beskriver företagsanvändning eller begränsningsnivå som anges av begränsningsinställningarna.",
+ "edit": "Redigera begränsning",
+ "info": "En enhet måste uppfylla de mest högprioriterade registreringsbegränsningarna som tilldelats användaren. Du kan dra en enhetsbegränsning om du vill ändra prioriteten. Standardbegränsningar har lägst prioritet för alla användare och styr användarlösa registreringar. En standardbegränsning kan redigeras men inte tas bort.",
+ "iosRestrictions": "iOS-begränsningar",
+ "mDM": "MDM",
+ "macRestrictions": "MacOS-begränsningar",
+ "maxVersion": "Högsta version",
+ "minVersion": "Lägsta version",
+ "nameHint": "Det här är det primära attributet som visas för att identifiera begränsningsuppsättningen.",
+ "noAssignmentsStatusBar": "Koppla en begränsning till minst en grupp. Klicka på Egenskaper.",
+ "notFound": "Begränsningen hittades inte. Den kanske redan har tagits bort.",
+ "personallyOwned": "Privatägda enheter",
+ "restriction": "Begränsning",
+ "restrictionLowerCase": "begränsning",
+ "restrictionType": "Begränsningstyp",
+ "selectType": "Välj begränsningstyp",
+ "selectValidation": "Välj en plattform",
+ "typeHint": "Välj begränsning för enhetstyp för att begränsa enhetsegenskaper. Välj begränsning för enhetsgräns för att begränsa antalet enheter per användare.",
+ "typeRequired": "Begränsningstyp krävs.",
+ "winPhoneRestrictions": "Windows Phone-begränsningar",
+ "windowsRestrictions": "Windows-begränsningar"
+ },
+ "Titles": {
+ "ChromeOs": {
+ "devices": "Chrome OS-enheter"
+ },
+ "ManagedDesktop": {
+ "adminContacts": "Administratörskontakter",
+ "appPackaging": "Appaket",
+ "devices": "Enheter",
+ "feedback": "Feedback",
+ "gettingStarted": "Komma igång",
+ "messages": "Meddelanden",
+ "onlineResources": "Onlineresurser",
+ "serviceRequests": "Tjänstförfrågningar",
+ "settings": "Inställningar",
+ "tenantEnrollment": "Klientorganisationsregistrering"
+ },
+ "actions": "Åtgärder vid inkompatibilitet",
+ "advancedExchangeSettings": "Exchange Online-inställningar",
+ "advancedThreatProtection": "Microsoft Defender for Endpoint",
+ "allApps": "Alla appar",
+ "allDevices": "Alla enheter",
+ "androidFotaDeployments": "Android FOTA-distributioner",
+ "appBundles": "Appaket",
+ "appCategories": "Appkategorier",
+ "appConfigPolicies": "Appkonfigurationsprinciper",
+ "appInstallStatus": "Status för appinstallation",
+ "appLicences": "Applicenser",
+ "appProtectionPolicies": "Principer för appskydd",
+ "appProtectionStatus": "Status för appskydd",
+ "appSelectiveWipe": "Selektiv radering av app",
+ "appleVppTokens": "Apple VPP-token",
+ "apps": "Appar",
+ "assign": "Tilldelningar",
+ "assignedPermissions": "Tilldelade behörigheter",
+ "assignedRoles": "Tilldelade roller",
+ "autopilotDeploymentReport": "AutoPilot-distributioner (förhandsversion)",
+ "brandingAndCustomization": "Anpassning",
+ "cartProfiles": "Kundvagnsprofiler",
+ "certificateConnectors": "Certifikatanslutningsprogram",
+ "chromeEnterprise": "Chrome Enterprise",
+ "compliancePolicies": "Kompatibilitetsprinciper",
+ "complianceScriptManagement": "Skript",
+ "complianceScriptManagementPreview": "Skript (förhandsversion)",
+ "complianceSettings": "Inställningar för efterlevnadsprinciper",
+ "conditionStatements": "Villkorssatser",
+ "conditions": "Platser",
+ "configMgr": "Microsoft Endpoint Configuration Manager",
+ "configurationProfiles": "Konfigurationsprofiler",
+ "configurationProfilesPreview": "Konfigurationsprofiler (förhandsversion)",
+ "connectorsAndTokens": "Anslutning och token",
+ "corporateDeviceIdentifiers": "ID:n för företagsenheter",
+ "customAttributes": "Anpassade attribut",
+ "customNotifications": "Anpassade meddelanden",
+ "deploymentSettings": "Distributionsinställningar",
+ "derivedCredentials": "Härledda autentiseringsuppgifter",
+ "deviceActions": "Enhetsåtgärder",
+ "deviceCategories": "Enhetskategorier",
+ "deviceCleanUp": "Regler för enhetsrensning",
+ "deviceEnrollmentManagers": "Enhetsregistreringshanterare",
+ "deviceExecutionStatus": "Enhetsstatus",
+ "deviceLimitEnrollmentRestrictions": "Gränser för enhetsregistrering",
+ "deviceTypeEnrollmentRestrictions": "Plattformsbegränsningar för enhetsregistrering",
+ "devices": "Enheter",
+ "discoveredApps": "Identifierade appar",
+ "embeddedSIM": "eSIM-mobilprofiler (förhandsversion)",
+ "enrollDevices": "Registrera enheter",
+ "enrollmentFailures": "Registreringsfel",
+ "enrollmentNotifications": "Registreringsmeddelanden (förhandsversion)",
+ "enrollmentRestrictions": "Registreringsbegränsningar",
+ "exchangeActiveSync": "Exchange ActiveSync",
+ "exchangeServiceConnectors": "Exchange-tjänstekopplingar",
+ "failuresForFeatureUpdates": "Fel vid funktionsuppdatering (förhandsversion)",
+ "failuresForQualityUpdates": "Snabbuppdateringsfel i Windows (förhandsversion)",
+ "featureFlighting": "Förhandsversionstestning av funktioner",
+ "featureUpdateDeployments": "Funktionsuppdateringar för Windows 10 och senare (förhandsversion)",
+ "flighting": "Förhandsversionstestning",
+ "fotaUpdate": "OTA-uppdatering (Over The Air) av inbyggd programvara",
+ "groupPolicy": "Administrativa mallar",
+ "groupPolicyAnalytics": "Grupprincipanalys",
+ "helpSupport": "Hjälp och support",
+ "helpSupportReplacement": "Hjälp och support ({0})",
+ "iOSAppProvisioning": "Etableringsprofiler för iOS-app",
+ "incompleteUserEnrollments": "Ofullständiga användarregistreringar",
+ "intuneRemoteAssistance": "Fjärrhjälp (förhandsversion)",
+ "iosUpdates": "Uppdatera principer för iOS/iPadOS",
+ "legacyPcManagement": "Hantering av äldre datorer",
+ "macOSSoftwareUpdate": "Uppdateringsprinciper för macOS",
+ "macOSSoftwareUpdateAccountSummaries": "Installationsstatus för macOS-enheter",
+ "macOSSoftwareUpdateCategorySummaries": "Sammanfattning av programuppdateringar",
+ "macOSSoftwareUpdateStateSummaries": "uppdateringar",
+ "managedGooglePlay": "Hanterat Google Play-konto",
+ "msfb": "Microsoft Store för företag",
+ "myPermissions": "Mina behörigheter",
+ "notifications": "Aviseringar",
+ "officeApps": "Office-appar",
+ "officeProPlusPolicies": "Principer för Office-appar",
+ "onPremise": "Lokalt",
+ "onPremisesConnector": "Exchange ActiveSync On-Premises Connector",
+ "onPremisesDeviceAccess": "Exchange ActiveSync-enheter",
+ "onPremisesManageAccess": "Åtkomst till Exchange lokalt",
+ "outOfDateIosDevices": "Installationsfel för iOS-enheter",
+ "overview": "Översikt",
+ "partnerDeviceManagement": "Enhetshantering för partner",
+ "perUpdateRingDeploymentState": "Per distributionsstatus för uppdateringsring",
+ "permissions": "Behörigheter",
+ "platformApps": "{0} appar",
+ "platformDevices": "{0} enheter",
+ "platformEnrollment": "{0} registrering",
+ "policies": "Principer",
+ "previewMDMDevices": "Alla hanterade enheter (förhandsversion)",
+ "profiles": "Profiler",
+ "properties": "Egenskaper",
+ "reports": "Rapporter",
+ "retireNoncompliantDevices": "Dra tillbaka icke-kompatibla enheter",
+ "retireNoncompliantDevicesPreview": "Retire noncompliant devices (preview)",
+ "role": "Roll",
+ "scriptManagement": "Skript",
+ "securityBaselines": "Säkerhetsbaslinjer",
+ "serviceToServiceConnector": "Exchange Online Connector",
+ "shellScripts": "Shell-skript",
+ "teamViewerConnector": "TeamViewer-anslutningsprogram",
+ "telecomeExpenseManagement": "Kostnadsuppföljning av telekommunikation",
+ "tenantAdmin": "Klientorganisationsadministratör",
+ "tenantAdministration": "Administration av klientorganisation",
+ "termsAndConditions": "Villkor",
+ "titles": "Rubriker",
+ "troubleshootSupport": "Felsökning + support",
+ "user": "Användare",
+ "userExecutionStatus": "Användarstatus",
+ "warranty": "Garantileverantörer",
+ "wdacSupplementalPolicies": "Tilläggsprinciper för S-läge",
+ "windows10DriverUpdate": "Drivrutinsuppdateringar för Windows 10 och senare (förhandsversion)",
+ "windows10QualityUpdate": "Kvalitetsuppdateringar för Windows 10 och senare (förhandsversion)",
+ "windows10UpdateRings": "Uppdateringringar för Windows 10 och senare",
+ "windows10XPolicyFailures": "Windows 10X-principfel",
+ "windowsEnterpriseCertificate": "Windows Enterprise-certifikat",
+ "windowsManagement": "PowerShell-skript",
+ "windowsSideLoadingKeys": "Nycklar för separat inläsning i Windows",
+ "windowsSymantecCertificate": "Windows DigiCert-certifikat",
+ "windowsThreatReport": "Agentstatus för hot"
+ },
+ "ScopeTypes": {
+ "allDevices": "Alla enheter",
+ "allUsers": "Alla användare",
+ "allUsersAndDevices": "Alla användare och alla enheter",
+ "selectedGroups": "Valda grupper"
+ },
+ "OfficeApplicationType": {
+ "access": "Access",
+ "bing": "Microsoft Search som standard",
+ "excel": "Excel",
+ "groove": "OneDrive (Groove)",
+ "lync": "Skype för företag",
+ "oneDrive": "OneDrive Desktop",
+ "oneNote": "OneNote",
+ "outlook": "Outlook",
+ "powerPoint": "PowerPoint",
+ "publisher": "Publisher",
+ "teams": "Teams",
+ "word": "Word"
+ },
+ "ApplicableDeviceType": {
+ "iPad": "iPad",
+ "iPhoneAndIPod": "iPhone och iPod"
+ },
+ "Assignment": {
+ "AutoUpdateMode": {
+ "default": "Standardinställning",
+ "header": "Uppdateringsprioritet",
+ "postponed": "Uppskjuten",
+ "priority": "Hög prioritet"
+ },
+ "DeliveryOptimizationPriority": {
+ "backgroundNormal": "Bakgrund",
+ "displayText": "Innehållsnedladdning i {0}",
+ "foreground": "Foreground",
+ "header": "Prioritet för leveransoptimering"
+ },
+ "RestartGracePeriod": {
+ "allowSnooze": "Tillåt användaren att snooza omstartsmeddelande",
+ "countdownDialog": "Välj när dialogrutan för nedräkning till omstart ska visas innan omstart sker (minuter)",
+ "durationInMinutes": "Respitperiod för omstart av enhet (minuter)",
+ "snoozeDurationInMinutes": "Välj snooze-tid (minuter)"
+ },
+ "SoftwareInstallationTime": {
+ "TimeZone": {
+ "label": "Tidszon",
+ "local": "Enhetens tidszon",
+ "utc": "UTC"
+ },
+ "dateAndTimeLabel": "Datum och tid",
+ "deadlineTimeColumnLabel": "Tidsgräns för installation",
+ "deadlineTimeDatePickerErrorMessage": "Det valda datumet måste infalla efter det tillgängliga datumet",
+ "deadlineTimeLabel": "Tidsgräns för appinstallation",
+ "defaultTime": "Så snart som möjligt",
+ "infoText": "Det här programmet blir tillgängligt så fort det har distribuerats, såvida du inte anger en tillgänglighetstid nedan. Om det är ett nödvändigt program kan du ange en tidsgräns för installationen.",
+ "specificTime": "Ett visst datum och tid",
+ "startTimeColumnLabel": "Tillgänglighet",
+ "startTimeDatePickerErrorMessage": "Det valda datumet måste infalla före tidsgränsdatumet",
+ "startTimeLabel": "Apptillgänglighet"
+ },
+ "restartGracePeriodHeader": "Respitperiod för omstart",
+ "restartGracePeriodLabel": "Respitperiod för omstart av enhet",
+ "summaryTitle": "Slutanvändarupplevelse"
+ },
+ "EnrollmentType": {
+ "devicesWithEnrollment": "Hanterade enheter",
+ "devicesWithoutEnrollment": "Hanterade appar"
+ },
+ "PolicySet": {
+ "appManagement": "Programhantering",
+ "assignments": "Tilldelningar",
+ "basics": "Grundläggande inställningar",
+ "deviceEnrollment": "Enhetsregistrering",
+ "deviceManagement": "Enhetshantering",
+ "scopeTags": "Omfångstaggar",
+ "appConfigurationTitle": "Appkonfigurationsprinciper",
+ "appProtectionTitle": "Principer för appskydd",
+ "appTitle": "Appar",
+ "iOSAppProvisioningTitle": "Etableringsprofiler för iOS-app",
+ "deviceLimitRestrictionTitle": "Begränsningar för antal enheter",
+ "deviceTypeRestrictionTitle": "Begränsningar av enhetstyp",
+ "enrollmentStatusSettingTitle": "Registreringsstatussidor",
+ "windowsAutopilotDeploymentProfileTitle": "Windows Autopilot-distributionsprofiler",
+ "deviceComplianceTitle": "Efterlevnadsprinciper för enhet",
+ "deviceConfigurationTitle": "Profiler för enhetskonfigurationer",
+ "powershellScriptTitle": "PowerShell-skript"
+ },
+ "AzureIAMCommon": {
+ "CountryNames": {
+ "countryNameNR": "Nauru",
+ "countryNameBH": "Bahrain",
+ "countryNameZA": "Sydafrika",
+ "countryNameJO": "Jordanien",
+ "countryNameSD": "Sudan",
+ "countryNameNU": "Niue",
+ "countryNameCZ": "Tjeckien",
+ "countryNameLT": "Litauen",
+ "countryNameTK": "Tokelau",
+ "countryNameEC": "Ecuador",
+ "countryNameVU": "Vanuatu",
+ "countryNameUG": "Uganda",
+ "countryNameLI": "Liechtenstein",
+ "countryNameHK": "Hongkong SAR",
+ "countryNameGH": "Ghana",
+ "countryNameSA": "Saudiarabien",
+ "countryNamePG": "Papua Nya Guinea",
+ "countryNameBW": "Botswana",
+ "countryNameDG": "Diego Garcia",
+ "countryNameIN": "Indien",
+ "countryNameHN": "Honduras",
+ "countryNameRO": "Rumänien",
+ "countryNameKZ": "Kazakstan",
+ "countryNameLC": "Saint Lucia",
+ "countryNameGE": "Georgien",
+ "countryNameTT": "Trinidad och Tobago",
+ "countryNameMP": "Nordmarianerna",
+ "countryNameMV": "Maldiverna",
+ "countryNameFI": "Finland",
+ "countryNameNO": "Norge",
+ "countryNameEE": "Estland",
+ "countryNameVE": "Venezuela",
+ "countryNameUZ": "Uzbekistan",
+ "countryNameME": "Montenegro",
+ "countryNameTJ": "Tadzjikistan",
+ "countryNameAW": "Aruba",
+ "countryNameFR": "Frankrike",
+ "countryNameOM": "Oman",
+ "countryNameAO": "Angola",
+ "countryNameIT": "Italien",
+ "countryNameAZ": "Azerbajdzjan",
+ "countryNameKG": "Kirgizistan",
+ "countryNameWF": "Wallis och Futuna",
+ "countryNameTL": "Timor-Leste",
+ "countryNameFK": "Falklandsöarna",
+ "countryNameGY": "Guyana",
+ "countryNameSS": "Sydsudan",
+ "countryNameMM": "Myanmar",
+ "countryNameHT": "Haiti",
+ "countryNameSY": "Syrien",
+ "countryNameMD": "Moldavien",
+ "countryNameVC": "Saint Vincent och Grenadinerna",
+ "countryNameID": "Indonesien",
+ "countryNameRE": "Réunion",
+ "countryNameER": "Eritrea",
+ "countryNameMK": "Nordmakedonien",
+ "countryNameTG": "Togo",
+ "countryNamePF": "Franska Polynesien",
+ "countryNameKY": "Caymanöarna",
+ "countryNameIO": "Brittiska territoriet i Indiska Oceanen",
+ "countryNameRU": "Ryssland",
+ "countryNameMA": "Marocko",
+ "countryNameAU": "Australien",
+ "countryNameBO": "Bolivia",
+ "countryNameVA": "Heliga stolen (Vatikanstaten)",
+ "countryNameVG": "Brittiska Jungfruöarna",
+ "countryNameFM": "Mikronesien",
+ "countryNameAQ": "Antarktis",
+ "countryNameZM": "Zambia",
+ "countryNameBR": "Brasilien",
+ "countryNameIS": "Island",
+ "countryNamePE": "Peru",
+ "countryNameBG": "Bulgarien",
+ "countryNamePR": "Puerto Rico",
+ "countryNameGI": "Gibraltar",
+ "countryNameBS": "Bahamas",
+ "countryNameJE": "Jersey",
+ "countryNameMO": "Macao SAR",
+ "countryNameRW": "Rwanda",
+ "countryNameAS": "Amerikanska Samoa",
+ "countryNameBQ": "Bonaire, Sint Eustatius och Saba",
+ "countryNameMF": "Saint Martin",
+ "countryNameTM": "Turkmenistan",
+ "countryNameML": "Mali",
+ "countryNameTO": "Tonga",
+ "countryNameNC": "Nya Kaledonien",
+ "countryNameAC": "Ascensionön",
+ "countryNameBN": "Brunei",
+ "countryNameBD": "Bangladesh",
+ "countryNameMW": "Malawi",
+ "countryNameGM": "Gambia",
+ "countryNameGA": "Gabon",
+ "countryNameCA": "Kanada",
+ "countryNameSH": "Sankta Helena",
+ "countryNameYT": "Mayotte",
+ "countryNameMN": "Mongoliet",
+ "countryNamePA": "Panama",
+ "countryNameCM": "Kamerun",
+ "countryNameNE": "Niger",
+ "countryNameCW": "Curaçao",
+ "countryNameJP": "Japan",
+ "countryNameCY": "Cypern",
+ "countryNameCD": "Demokratiska republiken Kongo",
+ "countryNameTN": "Tunisien",
+ "countryNameTR": "Turkiet",
+ "countryNameWS": "Samoa",
+ "countryNameSE": "Sverige",
+ "countryNameXK": "Kosovo",
+ "countryNameKH": "Kambodja",
+ "countryNamePL": "Polen",
+ "countryNameDZ": "Algeriet",
+ "countryNameLR": "Liberia",
+ "countryNameSO": "Somalia",
+ "countryNameDM": "Dominica",
+ "countryNameEG": "Egypten",
+ "countryNameGF": "Franska Guyana",
+ "countryNameNZ": "Nya Zeeland",
+ "countryNamePS": "Den palestinska myndigheten",
+ "countryNameIL": "Israel",
+ "countryNameSL": "Sierra Leone",
+ "countryNameGR": "Grekland",
+ "countryNameNG": "Nigeria",
+ "countryNameMR": "Mauretanien",
+ "countryNameVI": "Amerikanska Jungfruöarna",
+ "countryNameGQ": "Ekvatorialguinea",
+ "countryNameMX": "Mexiko",
+ "countryNameDJ": "Djibouti",
+ "countryNameGN": "Guinea",
+ "countryNameCN": "Kina",
+ "countryNameMZ": "Moçambique",
+ "countryNameBV": "Bouvetön",
+ "countryNameNF": "Norfolkön",
+ "countryNameTZ": "Tanzania",
+ "countryNameAI": "Anguilla",
+ "countryNameGS": "Sydgeorgien och Sydsandwichöarna",
+ "countryNameRS": "Serbien",
+ "countryNameCC": "Kokosöarna",
+ "countryNameNA": "Namibia",
+ "countryNameDE": "Tyskland",
+ "countryNameCG": "Republiken Kongo",
+ "countryNameKW": "Kuwait",
+ "countryNameMH": "Marshallöarna",
+ "countryNameVN": "Vietnam",
+ "countryNameBY": "Vitryssland",
+ "countryNameMY": "Malaysia",
+ "countryNameST": "São Tomé och Príncipe",
+ "countryNameLS": "Lesotho",
+ "countryNameBI": "Burundi",
+ "countryNameTD": "Tchad",
+ "countryNameCX": "Julön",
+ "countryNameIR": "Iran",
+ "countryNameTV": "Tuvalu",
+ "countryNameGW": "Guinea-Bissau",
+ "countryNameUA": "Ukraina",
+ "countryNameCU": "Kuba",
+ "countryNameCO": "Colombia",
+ "countryNameNI": "Nicaragua",
+ "countryNameHR": "Kroatien",
+ "countryNameSC": "Seychellerna",
+ "countryNameNL": "Nederländerna",
+ "countryNameUM": "Förenta staternas mindre öar i Oceanien och Västindien",
+ "countryNameIM": "Isle of Man",
+ "countryNameFJ": "Fiji",
+ "countryNameSR": "Surinam",
+ "countryNameGT": "Guatemala",
+ "countryNameSM": "San Marino",
+ "countryNameLA": "Laos",
+ "countryNameGB": "Storbritannien",
+ "countryNameBB": "Barbados",
+ "countryNameSI": "Slovenien",
+ "countryNameAM": "Armenien",
+ "countryNameAR": "Argentina",
+ "countryNamePM": "Saint Pierre och Miquelon",
+ "countryNameTF": "De franska territorierna i södra Indiska oceanen",
+ "countryNameDO": "Dominikanska republiken",
+ "countryNameZW": "Zimbabwe",
+ "countryNameMQ": "Martinique",
+ "countryNamePT": "Portugal",
+ "countryNameCF": "Centralafrikanska republiken",
+ "countryNameBE": "Belgien",
+ "countryNameKM": "Komorerna",
+ "countryNameLY": "Libyen",
+ "countryNameIE": "Irland",
+ "countryNameKP": "Nordkorea",
+ "countryNameGG": "Guernsey",
+ "countryNameSK": "Slovakien",
+ "countryNameTC": "Turks- och Caicosöarna",
+ "countryNameNP": "Nepal",
+ "countryNameBF": "Burkina Faso",
+ "countryNameYE": "Jemen",
+ "countryNameBA": "Bosnien och Hercegovina",
+ "countryNameGP": "Guadeloupe",
+ "countryNameMS": "Montserrat",
+ "countryNameCL": "Chile",
+ "countryNameIQ": "Irak",
+ "countryNameSJ": "Svalbard och Jan Mayen",
+ "countryNameAX": "Åland",
+ "countryNameKE": "Kenya",
+ "countryNameGU": "Guam",
+ "countryNameBM": "Bermuda",
+ "countryNameFO": "Färöarna",
+ "countryNameBL": "Saint Barthélemy",
+ "countryNameLB": "Libanon",
+ "countryNameJM": "Jamaica",
+ "countryNameAF": "Afghanistan",
+ "countryNameES": "Spanien",
+ "countryNameMC": "Monaco",
+ "countryNameSG": "Singapore",
+ "countryNameAL": "Albanien",
+ "countryNameSN": "Senegal",
+ "countryNameSZ": "Swaziland",
+ "countryNameBZ": "Belize",
+ "countryNameCI": "Côte d’Ivoire",
+ "countryNameTW": "Taiwan",
+ "countryNameUY": "Uruguay",
+ "countryNameCK": "Cooköarna",
+ "countryNameTH": "Thailand",
+ "countryNameHM": "Heardön och McDonaldöarna",
+ "countryNameGD": "Grenada",
+ "countryNameUS": "USA",
+ "countryNameAT": "Österrike",
+ "countryNameKR": "Sydkorea",
+ "countryNamePK": "Pakistan",
+ "countryNameDK": "Danmark",
+ "countryNameSV": "El Salvador",
+ "countryNamePW": "Palau",
+ "countryNameET": "Etiopien",
+ "countryNameMG": "Madagaskar",
+ "countryNameCR": "Costa Rica",
+ "countryNameLU": "Luxemburg",
+ "countryNameQA": "Qatar",
+ "countryNameBT": "Bhutan",
+ "countryNameSB": "Salomonöarna",
+ "countryNameAE": "Förenade Arabemiraten",
+ "countryNameAD": "Andorra",
+ "countryNameCV": "Cabo Verde",
+ "countryNameAG": "Antigua och Barbuda",
+ "countryNameMU": "Mauritius",
+ "countryNameHU": "Ungern",
+ "countryNameSX": "Sint Maarten",
+ "countryNameCH": "Schweiz",
+ "countryNamePN": "Pitcairn",
+ "countryNameGL": "Grönland",
+ "countryNamePH": "Filippinerna",
+ "countryNameMT": "Malta",
+ "countryNameKN": "Saint Kitts och Nevis",
+ "countryNameLK": "Sri Lanka",
+ "countryNameKI": "Kiribati",
+ "countryNameBJ": "Benin",
+ "countryNameLV": "Lettland",
+ "countryNamePY": "Paraguay"
+ }
+ }
}
diff --git a/Documentation/Strings-tr.json b/Documentation/Strings-tr.json
index 17d25d1..9b08eaf 100644
--- a/Documentation/Strings-tr.json
+++ b/Documentation/Strings-tr.json
@@ -1,1842 +1,4 @@
{
- "InstallContextType": {
- "device": "Cihaz",
- "deviceContext": "Cihaz bağlamı",
- "user": "Kullanıcı",
- "userContext": "Kullanıcı bağlamı"
- },
- "WipPolicySettings": {
- "addNetworkBoundary": "Ağ sınırı ekle",
- "addNetworkBoundaryButton": "Ağ sınırı ekle...",
- "allowWindowsSearch": "Şifrelenen kurumsal verilerin ve Mağaza uygulamalarının Windows Search tarafından aranmasına izin ver",
- "authoritativeIpRanges": "Kurumsal IP Aralıkları listesi yetkilendirildi (otomatik olarak algılama)",
- "authoritativeProxyServers": "Kurumsal Proxy Sunucular listesi yetkilendirildi (otomatik olarak algılama)",
- "boundaryType": "Sınır türü",
- "cloudResources": "Bulut kaynakları",
- "corporateIdentity": "Kurumsal kimlik",
- "dataRecoveryCert": "Şifrelenmiş verilerin kurtarılmasını sağlamak için Veri Kurtarma Aracısı (DRA) sertifikasını karşıya yükle",
- "editNetworkBoundary": "Ağ sınırını düzenle",
- "enrollmentState": "Kayıt durumu",
- "iPv4Ranges": "IPv4 aralıkları",
- "iPv6Ranges": "IPv6 aralıkları",
- "internalProxyServers": "İç proxy sunucular",
- "maxInactivityTime": "Cihazın PIN'inin veya parolasının kilitlenmesine neden olan izin verilen en uzun boşta kalma süresi (dakika cinsinden)",
- "maxPasswordAttempts": "Cihaz silinmeden önce izin verilen kimlik doğrulama hatası sayısı",
- "mdmDiscoveryUrl": "MDM bulma URL'si",
- "mdmRequiredSettingsInfo": "Bu ilke yalnızca Windows 10 Yıldönümü Sürümü ve üzeri için geçerlidir. Bu ilke, korumayı uygulamak için Windows Bilgi Koruması (WIP) kullanır.",
- "minimumPinLength": "PIN için gerekli en az karakter sayısını ayarla",
- "name": "Ad",
- "networkBoundariesGridEmptyText": "Eklediğiniz ağ sınırları burada gösterilir",
- "networkBoundary": "Ağ sınırı",
- "networkDomainNames": "Ağ etki alanları",
- "neutralResources": "Bağımsız kaynaklar",
- "passportForWork": "Windows'ta oturum açma yöntemi olarak İş İçin Windows Hello kullan",
- "pinExpiration": "Sistem kullanıcıdan değiştirmesini isteyene kadar PIN'in kullanılabileceği süreyi belirtin (gün olarak)",
- "pinHistory": "Tekrar kullanılamayan bir kullanıcı hesabı ile ilişkili eski PIN'lerin sayısını belirtin",
- "pinLowercaseLetters": "İş İçin Windows Hello PIN'inde küçük harf kullanımını yapılandır",
- "pinSpecialCharacters": "İş İçin Windows Hello PIN'inde özel karakter kullanımını yapılandır",
- "pinUppercaseLetters": "İş İçin Windows Hello PIN'inde büyük harf kullanımını yapılandır",
- "protectUnderLock": "Cihaz kilitliyken uygulamaların kurumsal verilere erişmesini engelleyin. Yalnızca Windows 10 Mobile için geçerlidir",
- "protectedDomainNames": "Korunan etki alanları",
- "proxyServers": "Proxy sunucuları",
- "requireAppPin": "Cihaz PIN'i yönetildiğinde uygulama PIN'ini devre dışı bırakma",
- "requiredSettings": "Gerekli ayarlar",
- "requiredSettingsInfo": "Kapsamı değiştirmek veya bu ilkeyi kaldırmak kurumsal verilerin şifresini çözer.",
- "revokeOnMdmHandoff": "Cihaz MDM'ye kaydedildiğinde korumalı verilere erişimi iptal edin",
- "revokeOnUnenroll": "Kayıt kaldırılırken şifreleme anahtarlarını iptal et",
- "rmsTemplateForEdp": "Azure RMS için kullanılacak şablon kimliğini belirt",
- "showWipIcon": "Kurumsal verileri koruma simgesini göster",
- "type": "Tür",
- "useRmsForWip": "WIP için Azure RMS kullan",
- "value": "Değer",
- "weRequiredSettingsInfo": "Bu ilke yalnızca Windows 10 Creators Update ve üzeri için geçerlidir. Bu ilke, korumayı uygulamak için Windows Bilgi Koruması (WIP) ve Windows MAM kullanır.",
- "wipProtectionMode": "Windows Bilgi Koruması modu",
- "withEnrollment": "Kayıt ile",
- "withoutEnrollment": "Kayıt olmadan"
- },
- "EdgeAppConfig": {
- "AllowedURLs": {
- "title": "İzin verilen URL'ler",
- "tooltip": "Kullanıcılarınızın iş bağlamında erişmelerine izin verilen siteleri belirtin. Diğer sitelere izin verilmez. Bir izin verilenler/engellenenler listesi yapılandırmayı seçebilirsiniz, ancak her ikisini birden belirtemezsiniz. "
- },
- "ApplicationProxyRedirection": {
- "header": "Uygulama proxy'si",
- "title": "Uygulama ara sunucusu yeniden yönlendirme",
- "tooltip": "Kullanıcılara şirket bağlantılarına ve şirket içi Web uygulamalarına erişim vermek için Uygulama ara sunucusu yeniden yönlendirmesini etkinleştirin."
- },
- "BlockedURLs": {
- "title": "Engellenen URL'ler",
- "tooltip": "Kullanıcılarınız için, iş bağlamında engellenen siteleri belirtin. Diğer tüm sitelere izin verilecek. Bir izin verilenler/engellenenler listesi yapılandırmayı seçebilirsiniz, ancak her ikisini birden belirtemezsiniz. "
- },
- "Bookmarks": {
- "header": "Yönetilen yer imleri",
- "tooltip": "Kullanıcılarınızın iş bağlamında Microsoft Edge kullanırken kullanabileceği yer işaretli URL'ler listesini girin.",
- "uRL": "URL"
- },
- "HomepageURL": {
- "header": "Yönetilen giriş sayfası",
- "title": "Giriş sayfası kısayol URL'si",
- "tooltip": "Microsoft Edge'de yeni bir sekme açıldığında arama çubuğunun altındaki ilk simge olarak kullanıcılara gösterilecek bir giriş sayfası kısayolu yapılandırın."
- },
- "PersonalContext": {
- "label": "Kısıtlı siteleri kişisel bağlama yönlendir",
- "tooltip": "Kullanıcıların kısıtlanmış siteleri açmak için kişisel bağlamlarına geçiş yapmasına izin verilip verilmeyeceğini yapılandırın."
- }
- },
- "AzureIAM": {
- "AdrsUserActionSelectionWarning": {
- "conditions": "Cihaz kaydını gerektiren koşullar “Cihaz kaydet veya ekle” kullanıcı eylemiyle kullanılamıyor.",
- "message": "\"Cihazları kaydetme veya ekleme\" kullanıcı eylemi için oluşturulan ilkelerde yalnızca \"Çok faktörlü kimlik doğrulaması gerektir\" kullanılabilir.{0}"
- },
- "AuthContext": {
- "Included": {
- "none": "Bulut uygulaması, eylem veya kimlik doğrulaması bağlamı seçilmedi",
- "plural": "{0} kimlik doğrulaması bağlamı dahil edildi",
- "singular": "1 kimlik doğrulaması bağlamı dahil edildi"
- },
- "InfoBlade": {
- "createTitle": "Kimlik doğrulaması bağlamı ekleme",
- "descPlaceholder": "Kimlik doğrulaması bağlamı için açıklama ekleyin",
- "modifyTitle": "Kimlik doğrulaması bağlamını değiştirme",
- "namePlaceholder": "Ör. Güvenilen konum, Güvenilen cihaz, Güçlü yetkilendirme",
- "publishDesc": "Uygulamalarda yayımlama, kullanılacak uygulamalar için kimlik doğrulaması bağlamını kullanılabilir hale getirir. Etiket için Koşullu Erişim ilkesini yapılandırmayı tamamladıktan sonra yayımlayın. [Daha fazla bilgi][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150966",
- "publishLabel": "Uygulamalara yayınla",
- "titleDesc": "Uygulama verilerini ve eylemlerini korumak için kullanılacak bir kimlik doğrulaması bağlamı yapılandırın. Uygulama yöneticileri tarafından anlaşılabilecek adlar ve açıklamalar kullanın. [Daha fazla bilgi][1]\n[1]:https://go.microsoft.com/fwlink/?linkid=2150965"
- },
- "Notify": {
- "failure": "{0} güncelleştirilemedi",
- "modifying": "{0} değiştiriliyor",
- "success": "{0} başarıyla güncelleştirildi"
- },
- "WhatIf": {
- "selected": "Kimlik doğrulaması bağlamı dahil edildi"
- },
- "addNewStepUp": "Yeni kimlik doğrulaması bağlamı",
- "checkBoxInfo": "Bu ilkenin uygulanacağı kimlik doğrulaması bağlamlarını seçin",
- "configure": "Kimlik doğrulaması bağlamlarını yapılandır",
- "createCA": "Kimlik doğrulama bağlamına Koşullu Erişim ilkeleri atayın",
- "dataGrid": "Kimlik doğrulaması bağlamlarının listesi",
- "description": "Açıklama",
- "documentation": "Belgeler",
- "getStarted": "Kullanmaya başlayın",
- "label": "Kimlik doğrulaması bağlamı (önizleme)",
- "menuLabel": "Kimlik doğrulaması bağlamı (Önizleme)",
- "name": "Ad",
- "noAuthContextSet": "Kimlik doğrulama bağlamı yok",
- "noData": "Görüntülenecek kimlik doğrulaması bağlamı yok",
- "selectionInfo": "Kimlik doğrulaması bağlamı, SharePoint ve Microsoft Cloud App Security gibi uygulamalardaki uygulama verilerinin ve eylemlerinin güvenliğini sağlamak için kullanılır.",
- "step": "Adım",
- "tabDescription": "Uygulamalarınızda verileri ve eylemleri korumak için kimlik doğrulaması bağlamını yönetin. [Daha fazla bilgi][1]\n[1]:https://go.microsoft.com/fwlink/?linkid=2150965",
- "tagResources": "Kaynakları kimlik doğrulama bağlamıyla etiketleyin"
- },
- "AuthenticationStrength": {
- "Mode": {
- "deviceBasedPush": "Microsoft Authenticator (Telefonla Oturum Açma)",
- "deviceBasedPushFido2X509Certificate": "Microsoft Authenticator (Telefonla Oturum Açma), Fido 2 ve Sertifika Tabanlı Kimlik Doğrulaması",
- "deviceBasedPushX509CertificateSingleFactor": "Microsoft Authenticator (Telefonla Oturum Açma), Fido 2 ve Sertifika Tabanlı Kimlik Doğrulaması (Tek Faktörlü)",
- "email": "Bir Kerelik Geçiş Kodunu E-posta ile Gönder",
- "emailOtp": "E-posta OTP",
- "federatedMultiFactor": "Federasyon Çok Faktörlü",
- "federatedSingleFactor": "Şirket dışı tek faktörlü",
- "federatedSingleFactorFederatedMultiFactor": "Federasyon tek faktörlü + Federasyon Çok Faktörlü",
- "fido2": "FIDO 2 güvenlik anahtarı",
- "fido2X509CertificateSingleFactor": "FIDO 2 güvenlik anahtarı ve Sertifika Tabanlı Kimlik Doğrulaması (Tek Faktörlü)",
- "hardwareOath": "Donanım OTP",
- "hardwareOathX509CertificateSingleFactor": "Donanım OTP’si ve Sertifika Tabanlı Kimlik Doğrulaması (Tek Faktörlü)",
- "microsoftAuthenticatorPSIX509CertificateSingleFactor": "Microsoft Authenticator (Telefonla Oturum Açma) ve Sertifika Tabanlı Kimlik Doğrulaması (Tek Faktörlü)",
- "microsoftAuthenticatorPsi": "Microsoft Authenticator (Telefonla Oturum Açma)",
- "microsoftAuthenticatorPush": "Microsoft Authenticator (Anında İletme Bildirimi)",
- "microsoftAuthenticatorPushX509CertificateSingleFactor": "Microsoft Authenticator (Anında İletme Bildirimi) ve Sertifika Tabanlı Kimlik Doğrulaması (Tek Faktörlü)",
- "none": "Yok",
- "password": "Parola",
- "passwordDeviceBasedPush": "Parola ve Microsoft Authenticator (Telefonla Oturum Açma)",
- "passwordFido2": "Parola + FIDO 2 güvenlik anahtarı",
- "passwordHardwareOath": "Parola ve Donanım OTP’si",
- "passwordMicrosoftAuthenticatorPSI": "Parola ve Microsoft Authenticator (Telefonla Oturum Açma)",
- "passwordMicrosoftAuthenticatorPush": "Parola ve Microsoft Authenticator (Anında İletme Bildirimi)",
- "passwordSms": "Parola + SMS",
- "passwordSoftwareOath": "Parola ve Yazılım OTP’si",
- "passwordTemporaryAccessPassMultiUse": "Parola + Geçici Erişim Kodu (Çok kullanımlık)",
- "passwordTemporaryAccessPassOneTime": "Parola ve Geçici Erişim Kodu (Tek kullanımlık)",
- "passwordVoice": "Parola + Ses",
- "sms": "SMS",
- "smsSignIn": "SMS ile oturum açma",
- "smsX509CertificateSingleFactor": "SMS ve Sertifika Tabanlı Kimlik Doğrulaması (Tek Faktörlü)",
- "softwareOath": "Yazılım OTP",
- "softwareOathX509CertificateSingleFactor": "Yazılım OTP’si ve Sertifika Tabanlı Kimlik Doğrulaması (Tek Faktörlü)",
- "temporaryAccessPassMultiUse": "Geçici Erişim Kodu (Çok kullanımlık)",
- "temporaryAccessPassMultiUseX509CertificateSingleFactor": "Geçici Erişim Kodu (Çok kullanımlık) ve Sertifika Tabanlı Kimlik Doğrulaması (Tek Faktörlü)",
- "temporaryAccessPassOneTime": "Geçici Erişim Kodu (Tek kullanımlık)",
- "temporaryAccessPassOneTimeX509CertificateSingleFactor": "Geçici Erişim Kodu (Tek kullanımlık) ve Sertifika Tabanlı Kimlik Doğrulaması (Tek Faktörlü)",
- "voice": "Sesli",
- "voiceX509CertificateSingleFactor": "Ses ve Sertifika Tabanlı Kimlik Doğrulaması (Tek Faktörlü)",
- "windowsHelloForBusiness": "İş için Windows Hello",
- "x509CertificateMultiFactor": "Sertifika Tabanlı Kimlik Doğrulaması (Çok Faktörlü)",
- "x509CertificateSingleFactor": "Sertifika Tabanlı Kimlik Doğrulaması (Tek Faktörlü)"
- }
- },
- "CAS": {
- "BuiltinPolicy": {
- "Option": {
- "blockDownloads": "İndirmeleri engelleme (Önizleme)",
- "monitorOnly": "Yalnızca izleme (Önizleme)",
- "protectDownloads": "İndirmeleri koruma (Önizleme)",
- "useCustomControls": "Özel ilke kullan..."
- },
- "ariaLabel": "Uygulanacak Koşullu Erişim Uygulama Denetimi tipini seçin"
- }
- },
- "ChooseApplications": {
- "Grid": {
- "appIdAria": "Uygulama Kimliği: {0}"
- },
- "LowerGrid": {
- "ariaLabel": "Seçili bulut uygulamalarının listesi"
- },
- "UpperGrid": {
- "ariaLabel": "Arama terimiyle eşleşen bulut uygulamalarının listesi"
- }
- },
- "ChooseLocations": {
- "Validation": {
- "failed": "\"Seçili konumlar\" ile en az bir konum seçmeniz gerekir.",
- "selector": "En az bir konum seçin"
- }
- },
- "ClientApp": {
- "Clients": {
- "Validation": {
- "failed": "Aşağıdaki istemcilerden en az birini seçmelisiniz"
- }
- }
- },
- "ClientConditionsInfo": {
- "browserAndModern": "Bu ilke, yalnızca tarayıcı ve modern kimlik doğrulaması uygulamaları için geçerlidir. İlkeyi tüm istemci uygulamalara uygulamak için, istemci uygulaması koşulunu etkinleştirin ve tüm istemci uygulamaları seçin.",
- "classicExperience": "Bu ilke oluşturulduğundan bu yana varsayılan istemci uygulamalarının yapılandırması güncelleştirildi.",
- "legacyAuth": "Yapılandırılmadığında, ilkeler artık tüm istemci uygulamalarına uygulanır (modern ve eski kimlik doğrulaması dahil)."
- },
- "CloudAppFilterBlade": {
- "AssignmentFilter": {
- "header": "Öznitelik",
- "placeholder": "Öznitelik seçin"
- },
- "Configure": {
- "infoBalloon": "İlkeyi uygulamak istediğiniz uygulama filtrelerini yapılandırın."
- },
- "NoPermissions": {
- "learnMoreAria": "Özel güvenlik özniteliği izinleri hakkında daha fazla bilgi.",
- "message": "Özel güvenlik özelliklerini kullanmak için gereken izinlere sahip değilsiniz."
- },
- "gridHeader": "Özel güvenlik özniteliklerini kullanarak filtre kuralı oluşturmak veya düzenlemek için kural oluşturucuyu veya kural söz dizimi metin kutusunu kullanabilirsiniz. Önizlemede yalnızca Dize türündeki öznitelikler desteklenir. Tamsayı veya Boole türündeki öznitelikler gösterilmez.",
- "learnMoreAria": "Kural oluşturucuyu ve söz dizimi metin kutusunu kullanma hakkında daha fazla bilgi.",
- "noAttributes": "Filtrelenecek kullanılabilir özel öznitelik yok. Bu filtreyi uygulamak için bazı öznitelikleri yapılandırmanız gerekir.",
- "title": "Edit filter (Preview)"
- },
- "CloudAppsUserActions": {
- "any": "Herhangi bir bulut uygulaması veya eylemi",
- "infoBalloon": "Test etmek istediğiniz bulut uygulaması veya kullanıcı eylemi. Örneğin, 'SharePoint Online'",
- "learnMore": "Tüm veya belirli bulut uygulamalarını veya eylemlerini temel alarak erişimi denetleyin.",
- "learnMoreB2C": "Tüm veya belirli bulut uygulamalarını temel alarak erişimi denetleyin.",
- "title": "Bulut uygulamaları veya eylemleri"
- },
- "CloudappsSelectionBlade": {
- "Excluded": {
- "gridAria": "Dışlanan bulut uygulamalarının listesi"
- },
- "Filter": {
- "configured": "Yapılandırıldı",
- "label": "Edit filter (Preview)",
- "with": "{1} ile {0}"
- },
- "Included": {
- "gridAria": "Eklenen bulut uygulamalarının listesi"
- },
- "Validation": {
- "authContext": "\"Kimlik doğrulaması bağlamı\" seçeneği ile en az bir alt öğe yapılandırmanız gerekir.",
- "selectApps": "\"{0}\" yapılandırılmalıdır",
- "selector": "En az bir uygulama seçin.",
- "userActions": "\"Kullanıcı eylemleri\" seçeneği ile en az bir alt öğe yapılandırmanız gerekir."
- }
- },
- "DeviceState": {
- "LearnMore": {
- "message": "Control user access when the device the user is signing-in from is not \"Hybrid Azure AD joined\" or \"marked as compliant\".\n '{0}' has been deprecated. Use '{1}' instead."
- }
- },
- "Errors": {
- "notFound": "İlke bulunamadı veya silinmiş.",
- "notFoundDetailed": "\"{0}\" ilkesi artık yok. Silinmiş olabilir."
- },
- "NamedLocation": {
- "Form": {
- "CountryLookup": {
- "ariaLabel": "Ülke arama yöntemi",
- "gps": "GPS koordinatlarına göre konumu belirle",
- "info": "Bir Koşullu Erişim ilkesinin konum koşulu yapılandırıldığında, Authenticator uygulaması tarafından kullanıcılardan GPS konumlarını paylaşması istenir. ",
- "ip": "IP adresine göre konumu belirle (yalnızca IPv4)"
- },
- "Header": {
- "new": "Yeni konum ({0})",
- "update": "Konumu güncelleştirin ({0})"
- },
- "IP": {
- "learn": "Adlandırılmış konum IPv4 ve IPv6 aralıklarını yapılandırın.\n[Daha fazla bilgi][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
- },
- "Include": {
- "infoBalloon": "Bilinmeyen ülkeler/bölgeler, belirli bir ülke veya bölgeyle ilişkilendirilmemiş IP adresleridir. [Daha fazla bilgi][1]\n\nBu adreslere şunlar dahildir:\n* IPv6 adresleri\n* Doğrudan eşlemesi olmayan IPv4 adresleri\n[1]: https://aka.ms/canamedlocations\n",
- "label": "Bilinmeyen ülkeleri/bölgeleri dahil et"
- },
- "Name": {
- "empty": "Ad boş olamaz",
- "placeholder": "Bu konumu adlandırın"
- },
- "PrivateLink": {
- "learn": "Azure AD için Özel Bağlantılar içeren yeni bir adlandırılmış konum oluşturun.\n[Daha fazla bilgi][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
- },
- "Search": {
- "countries": "Ülke ara",
- "names": "Adları arayın",
- "privateLinks": "Özel Bağlantı Ara"
- },
- "Trusted": {
- "label": "Güvenilen konum olarak işaretle"
- },
- "enter": "Yeni bir IPv4 veya IPv6 aralığı girin",
- "example": "örn: 40.77.182.32/27 veya 2a01:111::/32"
- },
- "Label": {
- "addCountries": "Ülke konumu",
- "addIpRange": "IP aralıkları konumu",
- "addPrivateLink": "Azure Özel Bağlantıları"
- },
- "Notification": {
- "Create": {
- "Failed": {
- "description": "Yeni konum oluşturma hatası ({0})",
- "title": "Oluşturma başarısız oldu"
- },
- "InProgress": {
- "description": "Yeni konum oluşturuluyor ({0})",
- "title": "Oluşturma devam ediyor"
- },
- "Success": {
- "description": "Yeni konum oluşturma işlemi başarılı ({0})",
- "title": "Oluşturma başarılı oldu"
- }
- },
- "Delete": {
- "Failed": {
- "description": "Konum silme hatası ({0})",
- "title": "Silme işlemi başarısız oldu"
- },
- "InProgress": {
- "description": "Konum siliniyor ({0})",
- "title": "Silme sürüyor"
- },
- "Success": {
- "description": "Konumu silme işlemi başarılı ({0})",
- "title": "Silme işlemi başarılı oldu"
- }
- },
- "Update": {
- "Failed": {
- "description": "Konum güncelleştirme hatası ({0})",
- "title": "Güncelleştirme başarısız oldu"
- },
- "InProgress": {
- "description": "Konum güncelleştiriliyor ({0})",
- "title": "Güncelleştirme işlemi sürüyor"
- },
- "Success": {
- "description": "Konumu güncelleştirme işlemi başarılı ({0})",
- "title": "Güncelleştirme başarılı oldu"
- }
- }
- },
- "PrivateLinks": {
- "grid": "Özel Bağlantı Listesi"
- },
- "Trusted": {
- "title": "Güvenilen tür",
- "trusted": "Güvenilir"
- },
- "Type": {
- "all": "Tüm türler",
- "countries": "Ülkeler",
- "ipRanges": "IP aralıkları",
- "privateLinks": "Özel Bağlantılar",
- "title": "Konum türü"
- },
- "iPRangeInvalidError": "Değer geçerli bir IPv4 veya IPv6 aralığı olmalıdır.",
- "iPRangeLinkOrSiteLocalError": "IP ağı, bağlantı yerel adresi veya site yerel adresi olarak algılandı.",
- "iPRangeOctetError": "IP ağı 0 veya 255 ile başlamamalıdır.",
- "iPRangePrefixError": "IP ağ ön eki /{0} ile /{1} arasında olmalıdır.",
- "iPRangePrivateError": "IP ağı, özel adres olarak algılandı."
- },
- "Policies": {
- "Grid": {
- "aria": "Koşullu Erişim ilkeleri listesi"
- },
- "countText": "{1} ilke içinden {0} ilke bulundu",
- "countTextSingular": "1 ilke içinden {0} ilke bulundu",
- "search": "İlkelerde ara"
- },
- "Policy": {
- "Condition": {
- "ServicePrincipalRisk": {
- "description": "İlkenin zorlanması için gereken hizmet sorumlusu risk düzeylerini yapılandırın",
- "infoBalloonContent": "İlkeyi seçili risk düzeylerinde uygulamak için hizmet sorumlusu riskini yapılandırın",
- "title": "Hizmet sorumlusu riski"
- }
- }
- },
- "PolicyControlAuthStrength": {
- "MultiFactorAuthentication": {
- "description": "Parola ve SMS gibi güçlü kimlik doğrulama gereksinimlerini karşılayan yöntemlerin bileşimleri",
- "displayName": "Çok faktörlü kimlik doğrulaması (MFA)"
- },
- "Passwordless": {
- "description": "Microsoft Authenticator gibi güçlü kimlik doğrulama gereksinimlerini karşılayan parolasız yöntemler ",
- "displayName": "Parolasız MFA"
- },
- "PhishingResistant": {
- "description": "FIDO2 Güvenlik Anahtarı gibi en güçlü kimlik doğrulaması için kimlik avına karşı korumalı Parolasız yöntemler",
- "displayName": "Kimlik avına karşı korumalı MFA"
- }
- },
- "PolicyControlFedAuthMethod": {
- "certificate": "Sertifika kimlik doğrulaması",
- "infoBubble": "ADFS gibi Federasyon sağlayıcısı tarafından karşılanması gereken, gerekli kimlik doğrulama yöntemini belirtin.",
- "multifactor": "Çok faktörlü kimlik doğrulaması",
- "require": "Federasyon kimlik doğrulama yöntemi gerektir (Önizleme)",
- "whatIfFormat": "{0} - {1}"
- },
- "PolicyState": {
- "off": "Kapalı",
- "on": "Açık",
- "reportOnly": "Yalnızca rapor"
- },
- "PolicyTemplates": {
- "Devices": {
- "description": "Ağa erişen cihazlara yönelik görünürlük elde etmek için Cihazlar ilke şablonu kategorisini seçin. Erişim vermeden önce uyumluluğu ve sistem durumunu denetleyin.",
- "name": "Cihazlar"
- },
- "Identities": {
- "description": "Tüm dijital varlığınızdaki her bir kimliği güçlü kimlik doğrulamasıyla doğrulayıp korumak için Kimlikler ilke şablonu kategorisini seçin.",
- "name": "Kimlikler"
- },
- "Summary": {
- "CloudApps": {
- "allCloudApps": "Tüm uygulamalar",
- "office365": "Office 365",
- "registerSecurityInfo": "Güvenlik bilgilerini kaydet"
- },
- "Conditions": {
- "androidAndIOS": "Cihaz Platformu: Android ve iOS",
- "anyDevice": "Android, iOS, Windows ve Mac dışındaki tüm cihazlar",
- "anyDeviceStateExceptHybrid": "Uyumlu ve hibrit Azure AD ile katılan dışındaki tüm cihaz durumları",
- "anyLocation": "Güvenilen konumlar dışındaki tüm konumlar",
- "browserMobileDesktop": "İstemci uygulamaları: Tarayıcı, Mobil uygulamalar ve masaüstü istemcileri",
- "exchangeActiveSync": "İstemci Uygulamaları: Exchange Active Sync, Diğer İstemciler",
- "windowsAndMac": "Cihaz Platformu: Windows ve Mac"
- },
- "Devices": {
- "anyDevice": "Herhangi Bir Cihaz"
- },
- "Grant": {
- "appProtectionPolicy": "Uygulama koruma ilkesi iste",
- "approvedClientApp": "Onaylı istemci uygulaması gerektir",
- "blockAccess": "Erişimi engelle",
- "mfa": "Çok faktörlü kimlik doğrulaması gerektir",
- "passwordChange": "Parola değişikliği gerektirme",
- "requireCompliantDevice": "Cihazın uyumlu olarak işaretlenmesini zorunlu kıl",
- "requireHybridAzureADDevice": "Hibrit Azure AD ile katılan cihazı zorunlu kıl"
- },
- "Session": {
- "appEnforcedRestrictions": "Uygulama tarafından zorlanan kısıtlamaları kullan",
- "signInFrequency": "Oturum Açma Sıklığı ve asla kalıcı olmayan tarayıcı oturumu"
- },
- "UsersAndGroups": {
- "allUsers": "Tüm Kullanıcılar",
- "directoryRoles": "Geçerli yönetici dışındaki dizin rolleri",
- "globalAdmin": "Genel Yönetici",
- "noGuestAndAdmins": "Konuk ve Dış, Genel Yöneticiler, Geçerli yönetici dışındaki tüm Kullanıcılar"
- },
- "azureManagement": "Azure Yönetimi",
- "deviceFilters": "Cihazlar için filtreler",
- "devicePlatforms": "Cihaz Platformları"
- },
- "TemplateId": {
- "AppEnforcedRestrictions": {
- "description": "Yönetilmeyen cihazlardan SharePoint, OneDrive ve Exchange içeriğine erişimi engelleyin veya sınırlayın.",
- "name": "CA014: Yönetilmeyen cihazlar için uygulama tarafından zorlanan kısıtlamaları kullan",
- "title": "Yönetilmeyen cihazlar için uygulama tarafından zorlanan kısıtlamaları kullanma"
- },
- "ApprovedClientApps": {
- "description": "Kuruluşlar, veri kaybını önlemek için Intune uygulama koruması ile onaylanmış modern kimlik doğrulaması istemci uygulamalarına erişimi kısıtlayabilir.",
- "name": "CA012: Onaylanan istemci uygulamaları ve uygulama koruması gerektir",
- "title": "Onaylı istemci uygulamaları ve uygulama koruması gerektirme"
- },
- "BlockAccessOnUnknowns": {
- "description": "Cihaz türü bilinmediğinde veya desteklenmediğinde kullanıcıların şirket kaynaklarına erişimi engellenir.",
- "name": "CA010: Bilinmeyen veya desteklenmeyen cihaz platformuna erişimi engelle",
- "title": "Bilinmeyen veya desteklenmeyen cihaz platformuna erişimi engelleme"
- },
- "BlockLegacyAuth": {
- "description": "Çok faktörlü kimlik doğrulamasını atlamak için kullanılabilen eski kimlik doğrulaması uç noktalarını engelleyin. ",
- "name": "CA003: Eski kimlik doğrulamasını engelleme",
- "title": "Eski kimlik doğrulamasını engelleme"
- },
- "NoPersistentBrowserSession": {
- "description": "Tarayıcı kapatıldıktan sonra tarayıcı oturumlarının açık kalmasını önleyerek ve oturum açma sıklığını 1 saat olarak ayarlayarak, yönetilmeyen cihazlarda kullanıcı erişimini koruyun.",
- "name": "CA011: Kalıcı tarayıcı oturumu yok",
- "title": "Kalıcı tarayıcı oturumu yok"
- },
- "RequireCompliantOrHybridADAdmins": {
- "description": "Ayrıcalıklı yöneticilerin yalnızca uyumlu veya hibrit Azure AD ile katılan bir cihaz kullanırken kaynaklara erişmesini gerektirin.",
- "name": "CA009: Yöneticiler için uyumlu veya hibrit Azure AD ile katılan cihaz gerektirme",
- "title": "Yöneticiler için uyumlu veya hibrit Azure AD ile katılan cihaz gerektirme"
- },
- "RequireCompliantOrHybridADAllUsers": {
- "description": "Kullanıcıların yönetilen bir cihaz kullanmasını veya çok faktörlü kimlik doğrulaması gerçekleştirmesini gerektirerek şirket kaynaklarına erişimi koruyun. (Yalnızca macOS veya Windows)",
- "name": "CA013: Tüm kullanıcılar için uyumlu veya hibrit Azure AD ile katılan cihaz veya çok faktörlü kimlik doğrulaması gerektirme",
- "title": "Tüm kullanıcılar için uyumlu veya hibrit Azure AD ile katılan cihaz veya çok faktörlü kimlik doğrulaması gerektirme"
- },
- "RequireMFAAllUsers": {
- "description": "Güvenlik ihlali riskini azaltmak için tüm kullanıcı hesapları için çok faktörlü kimlik doğrulamasını gerektirin.",
- "name": "CA004: Tüm kullanıcılar için çok faktörlü kimlik doğrulaması gerektir",
- "title": "Tüm kullanıcılar için çok faktörlü kimlik doğrulaması gerektir"
- },
- "RequireMFAForAdmins": {
- "description": "Güvenlik ihlali riskini azaltmak için ayrıcalıklı yönetici hesapları için çok faktörlü kimlik doğrulaması gerektirin. Bu ilke, Güvenlik Varsayılanı ile aynı rolleri hedefler.",
- "name": "CA001: Yöneticiler için çok faktörlü kimlik doğrulaması gerektir",
- "title": "Yöneticiler için çok faktörlü kimlik doğrulaması gerektirin"
- },
- "RequireMFAForAzureManagement": {
- "description": "Azure kaynaklarına ayrıcalıklı erişimi korumak için çok faktörlü kimlik doğrulaması gerektirin.",
- "name": "CA006: Azure yönetimi için çok faktörlü kimlik doğrulaması gerektir",
- "title": "Azure yönetimi için çok faktörlü kimlik doğrulaması gerektir"
- },
- "RequireMFAForGuestAccess": {
- "description": "Konuk kullanıcıların şirket kaynaklarınıza erişirken çok faktörlü kimlik doğrulaması yapmasını gerektirin.",
- "name": "CA005: Konuk erişimi için çok faktörlü kimlik doğrulaması gerektir",
- "title": "Konuk erişimi için çok faktörlü kimlik doğrulaması gerektir"
- },
- "RequireMFAForRiskySignIn": {
- "description": "Oturum açma riskinin orta veya yüksek olduğu algılanırsa çok faktörlü kimlik doğrulaması gerektirin. (Azure AD Premium 2 Lisansı gerektirir)",
- "name": "CA007: Riskli oturum açma işlemleri için çok faktörlü kimlik doğrulaması gerektirme",
- "title": "Riskli oturum açma işlemleri için çok faktörlü kimlik doğrulaması gerektirme"
- },
- "RequirePasswordChangeForHighRiskUsers": {
- "description": "Kullanıcı riskinin yüksek olduğu algılanırsa, kullanıcının şifresini değiştirmesini isteyin. (Azure AD Premium 2 Lisansı gerektirir)",
- "name": "CA008: Yüksek riskli kullanıcılar için parola değişikliği gerektir",
- "title": "Yüksek riskli kullanıcılar için parola değişikliği gerektir"
- },
- "RequireSecurityInfo": {
- "description": "Kullanıcıların Azure AD çok faktörlü kimlik doğrulaması ve self servis parola için ne zaman ve nasıl kaydolduğunu güvenli hale getirin. ",
- "name": "CA002: Güvenlik bilgileri kaydının güvenliğini sağlama",
- "title": "Güvenlik bilgileri kaydının güvenliğini sağlama"
- }
- },
- "TemplateState": {
- "BlockAccessOnUnknowns": {
- "title": "Bu ilkenin etkinleştirilmesi, bilinmeyen cihaz türünden tüm erişimleri engeller. Bunun kullanıcılarınızı etkilemeyeceğini onaylayana kadar, başlamak için yalnızca rapor modunu kullanmayı düşünün."
- },
- "BlockLegacyAuth": {
- "description": "Bunun kullanıcılarınızı etkilemeyeceğini onaylayana kadar, başlamak için yalnızca rapor modunu kullanmayı düşünün.",
- "title": "Bu ilkenin etkinleştirilmesi, tüm kullanıcılarınız için eski kimlik doğrulamasını engeller."
- },
- "RequireCompliantOrHybridADAdmins": {
- "Description": {
- "on": "Bunun ayrıcalıklı kullanıcılarınızı etkilemeyeceğini onaylayana kadar, başlamak için yalnızca rapor modunu kullanmayı düşünün.",
- "reportOnly": "Uyumlu cihazlar gerektiren yalnızca rapor modundaki ilkeler, cihaz uyumluluğu zorunlu kılınmasa bile, Mac, iOS ve Android kullanıcılarından ilke değerlendirmesi sırasında bir cihaz sertifikası seçmesini isteyebilir. Bu istemler, cihaz uyumlu hale gelene kadar yinelenebilir."
- },
- "Title": {
- "on": "Bu ilkenin etkinleştirilmesi, uyumlu veya hibrit Azure AD ile katılan gibi yönetilen bir cihaz kullanılmadığı sürece ayrıcalıklı kullanıcılar için tüm erişimleri engeller. Etkinleştirmeden önce uyumluluk ilkelerinizi yapılandırdığınızdan veya hibrit Azure AD yapılandırmasını etkinleştirdiğinizden emin olun.",
- "reportOnly": "Etkinleştirmeden önce uyumluluk ilkelerinizi yapılandırdığınızdan veya hibrit Azure AD yapılandırmasını etkinleştirdiğinizden emin olun."
- }
- },
- "RequireCompliantOrHybridADAllUsers": {
- "Description": {
- "on": "Bu ilke, şu anda oturum açmış olan Yönetici dışındaki tüm kullanıcıları etkiler. Bunun kullanıcılarınızı etkilemeyeceğini onaylayana kadar, başlamak için yalnızca rapor modunu kullanmayı düşünün."
- },
- "Title": {
- "on": "Hesabınıza erişiminizi kaybetmeyin! Cihazınızın uyumlu veya Hibrit Azure AD ile Katılan bir cihaz olduğundan veya çok faktörlü kimlik doğrulamayı yapılandırdığınızdan emin olun.",
- "reportOnly": "Uyumlu cihazlar gerektiren yalnızca rapor modundaki ilkeler, cihaz uyumluluğu zorunlu kılınmasa bile, Mac, iOS ve Android kullanıcılarından ilke değerlendirmesi sırasında bir cihaz sertifikası seçmesini isteyebilir. Bu istemler, cihaz uyumlu hale gelene kadar yinelenebilir."
- }
- },
- "RequireMfa": {
- "description": "Şirket içi nesnelerinizi eşitlemek için acil durum erişim hesaplarını veya Azure AD Connect'i kullanırsanız, oluşturulduktan sonra bu hesapları bu ilkenin dışında tutmanız gerekebilir."
- },
- "RequireMfaAdmins": {
- "description": "İlke oluşturma sırasında geçerli yönetici hesabının otomatik olarak dışlanacağına ancak tüm diğerlerinin korunacağına dikkat edin. Başlamak için yalnızca rapor modunu kullanmayı düşünün.",
- "title": "Hesabınıza erişiminizi kaybetmeyin! Bu ilke Azure portalı etkiler."
- },
- "RequireMfaAllUsers": {
- "description": "Bu değişikliği planlayana ve tüm kullanıcılarınıza iletene kadar başlamak için yalnızca rapor modunu kullanmayı düşünün.",
- "title": "Bu ilkenin etkinleştirilmesi, tüm kullanıcılarınız için çok faktörlü kimlik doğrulamasını zorunlu kılar."
- },
- "RequireSecurityInfo": {
- "description": "Lütfen şirket gereksinimlerinize göre bu hesapları korumak için yapılandırmanızı gözden geçirdiğinizden emin olun.",
- "title": "Şu kullanıcılar ve roller bu ilkeden dışlanır: Konuklar ve Dış Kullanıcılar, Genel Yöneticiler, Geçerli Yönetici"
- }
- },
- "basics": "Temel bilgiler",
- "clientApps": "İstemci uygulamaları",
- "cloudApps": "Bulut uygulamaları",
- "cloudAppsOrActions": "Bulut uygulamaları veya eylemleri ",
- "conditions": "Koşullar ",
- "createNewPolicy": "Şablonlardan yeni ilke oluştur (Önizleme)",
- "createPolicy": "İlke Oluştur",
- "currentUser": "Geçerli kullanıcı",
- "customizeBuild": "Derlemenizi özelleştirin",
- "customizeTemplate": "Şablon listeleri, oluşturmakta olduğunuz ilke türüne göre özelleştirilir",
- "excludedDevicePlatform": "Dışlanan cihaz platformları",
- "excludedDirectoryRoles": "Dışlanan dizin rolleri",
- "excludedLocation": "Dışlanan dizin rolleri",
- "excludedUsers": "Dışlanan kullanıcılar",
- "grantControl": "İzin verme denetimi ",
- "includeFilteredDevice": "Filtrelenen cihazları ilkeye dahil et",
- "includedDevicePlatform": "Dahil edilen cihaz platformları",
- "includedDirectoryRoles": "Dahil edilen dizin rolleri",
- "includedLocation": "Dahil edilen konum",
- "includedUsers": "Eklenen kullanıcılar",
- "legacyAuthenticationClients": "Eski kimlik doğrulama istemcileri",
- "namePolicy": "İlkenizi adlandırın",
- "next": "Sonraki",
- "policyName": "İlke Adı",
- "policyState": "İlke durumu",
- "policySummary": "İlke özeti",
- "policyTemplate": "İlke şablonu",
- "previous": "Önceki",
- "reviewAndCreate": "Gözden geçir ve oluştur",
- "riskLevels": "Risk düzeyleri",
- "selectATemplate": "Şablon Seçin",
- "selectTemplate": "Şablon seçin",
- "selectTemplateCategory": "Şablon kategorisi seç",
- "selectTemplateRecommendation": "Yanıtınıza göre aşağıdaki şablonları kullanmanızı öneririz",
- "sessionControl": "Oturum denetimi ",
- "signInFrequency": "Oturum açma sıklığı",
- "signInRisk": "Oturum açma riski",
- "template": "Şablon ",
- "templateCategory": "Şablon kategorisi",
- "userRisk": "Kullanıcı riski",
- "usersAndGroups": "Kullanıcılar ve gruplar ",
- "viewPolicySummary": "İlke özetini görüntüle "
- },
- "SSM": {
- "MemberSelector": {
- "description": "Kullanıcılar ve gruplar"
- },
- "Notification": {
- "Migration": {
- "error": "Sürekli erişim değerlendirmesi ayarları Koşullu erişim ilkelerine geçirilemedi",
- "inProgress": "Sürekli erişim değerlendirmesi ayarları geçiriliyor",
- "success": "Sürekli erişim değerlendirmesi ayarları Koşullu erişim ilkelerine başarıyla geçirildi",
- "successDescription": "“CAE ayarlarından oluşturulan CA ilkesi” adlı yeni oluşturulan ilkedeki geçirilen ayarları görüntülemek için lütfen Koşullu erişim ilkelerine gidin."
- },
- "error": "Sürekli Erişim Değerlendirmesi ayarları güncelleştirilemedi",
- "inProgress": "Sürekli Erişim Değerlendirmesi ayarları güncelleştiriliyor",
- "success": "Sürekli Erişim Değerlendirmesi ayarları başarıyla güncelleştirildi"
- },
- "PreviewOptions": {
- "disable": "Önizlemeyi devre dışı bırak",
- "enable": "Önizlemeyi etkinleştir"
- },
- "StrictLocationEnforcement": {
- "infoContent1": "Ağ bölümü veya IPv4/IPv6 uyumsuzluğu nedeniyle, farklı IP'ler Azure AD ve Kaynak Sağlayıcısı tarafından aynı istemci cihazından görülebilir. Katı Konum Zorlaması, Azure AD ve Kaynak Sağlayıcısı tarafından görülen her iki IP adresine göre Koşullu Erişim ilkesini uygular.",
- "infoContent2": "En yüksek güvenliği sağlamak için, hem Azure AD hem de Kaynak Sağlayıcısı tarafından görülebilen tüm IP'leri Adlandırılmış Konum ilkenize dahil etmeniz ve \"Katı Konum Zorlaması\" modunu açmanız önerilir.",
- "label": "Katı Konum Zorlaması",
- "title": "Ek zorunlu kılma modları"
- },
- "bladeTitle": "Sürekli erişim değerlendirmesi",
- "description": "Kullanıcının erişimi kaldırıldığında veya istemci IP adresi değiştirildiğinde, Sürekli Erişim Değerlendirmesi gerçek zamanlıya yakın olarak kaynaklara ve uygulamalara erişimi otomatik olarak engeller. ",
- "migrateLabel": "Geçir",
- "migrationError": "Şu hata nedeniyle geçiş yapılamadı: {0}",
- "migrationInfo": "CAE ayarı Koşullu Erişim kullanıcı deneyimi altına taşındı. Lütfen yukarıdaki “Geçir” düğmesiyle geçirip Koşullu Erişim ilkesiyle birlikte doğru bir şekilde yapılandırın. Daha fazla bilgi için buraya tıklayın.",
- "noLicenseMessage": "Azure AD Premium ile akıllı oturum yönetimi ayarlarını yönetin",
- "optionsPickerTitle": "Sürekli Erişim Değerlendirmesini Etkinleştir/Devre Dışı Bırak",
- "upsellInfo": "Artık bu sayfadaki ayarlarınızı değiştiremezsiniz ve buradaki tüm ayarların yoksayılması gerekir. Önceki ayarınız kabul edilir. Bundan sonra CAE ayarlarınızı Koşullu Erişim altından yapılandırabilirsiniz. Daha fazla bilgi edinmek için buraya tıklayın."
- },
- "SessionLifetime": {
- "PersistentBrowser": {
- "Error": {
- "notAllApps": "Kalıcı tarayıcı oturumu ilkesi yalnızca \"Tüm bulut uygulamaları\" seçildiğinde doğru şekilde çalışır. Lütfen bulut uygulamaları seçiminizi güncelleştirin."
- },
- "Option": {
- "always": "Her zaman kalıcı",
- "help": "Kalıcı tarayıcı oturumu, kullanıcılar tarayıcı pencerelerini kapatıp açtıklarında oturumlarının açık kalmasını sağlar.
\n\n- Bu ayar \"Tüm bulut uygulamaları\" seçildiğinde doğru çalışır
\n- Bu, belirteç ömürlerini veya oturum açma sıklığı ayarını etkilemez.
\n- Bu, Şirket Markasında \"Oturumun açık kalması seçeneğini göster\" ayarını geçersiz kılar.
\n- \"Asla kalıcı yapma\", şirket dışı kimlik doğrulaması hizmetlerinden geçirilen tüm kalıcı SSO taleplerini geçersiz kılar.
\n- \"Asla kalıcı yapma\", uygulamalarda ve uygulamalar ile kullanıcının mobil tarayıcısı arasında mobil cihazlardaki SSO'yu engeller.
\n",
- "label": "Kalıcı tarayıcı oturumu",
- "never": "Asla kalıcı yapma"
- },
- "Warning": {
- "allApps": "Kalıcı tarayıcı oturumu yalnızca Tüm bulut uygulamaları seçildiğinde doğru şekilde çalışır. Lütfen bulut uygulamaları seçiminizi değiştirin. Daha fazla bilgi edinmek için buraya tıklayın."
- }
- },
- "SignInFrequency": {
- "Aria": {
- "units": "Saatler veya günler",
- "value": "Sıklık"
- },
- "Option": {
- "Day": {
- "plural": "{0} gün",
- "singular": "1 gün"
- },
- "Hour": {
- "plural": "{0} saat",
- "singular": "1 saat"
- },
- "daysOption": "Gün",
- "everytime": "Her seferinde",
- "help": "Kullanıcının bir kaynağa erişmeye çalışırken tekrar oturum açmasının istenmesi için geçmesi gereken süre. Varsayılan ayar 90 günlük bir hareketli zaman aralığıdır, yani en az 90 gün boyunca makinelerinde etkin olmayan kullanıcılardan, bu süre sonunda bir kaynağa ilk kez erişmeyi denediklerinde kimliklerini yeniden doğrulamaları istenir.",
- "hoursOption": "Saat",
- "label": "Oturum açma sıklığı",
- "placeholder": "Birim seçin"
- }
- },
- "mainOption": "Oturum ömrünü değiştir",
- "mainOptionHelp": "Kullanıcılara ne sıklıkta istemde bulunulacağını ve tarayıcı oturumlarının kalıcı olup olmayacağını yapılandırın. Modern kimlik doğrulaması protokollerini desteklemeyen uygulamalar bu ilkelere uymayabilir. Bu gibi durumlarda lütfen uygulama geliştiricisine başvurun."
- },
- "SigninRisk": {
- "LearnMore": {
- "message": "Kullanıcı erişimini, belirli oturum açma ve risk düzeylerine yanıt verecek şekilde denetleyin."
- }
- },
- "SingleSelectorActive": {
- "failed": "Bu veriler yüklenemiyor.",
- "reattempt": "Veriler yükleniyor. Yeniden deneme {0} / {1}."
- },
- "TimeCondition": {
- "Errors": {
- "both": "\"Ekle\" veya \"Hariç Tut\" zaman aralığı geçersiz.",
- "daysOfWeek": "{0} Haftanın en az bir gününü belirttiğinizden emin olun.",
- "endBeforeStart": "{0} Başlangıç tarih/saatinin bitiş tarih/saatinden önce olduğundan emin olun.",
- "exclude": "\"Hariç Tut\" zaman aralığı geçersiz.",
- "generic": "{0} Hem haftanın günlerini hem de saat dilimini ayarladığınızdan emin olun. \"Tüm gün\" seçeneğini işaretlemezseniz, başlangıç ve bitiş saatlerini de ayarlamanız gerekir.",
- "include": "\"Ekle\" zaman aralığı geçersiz.",
- "timeMissing": "{0} Hem başlangıç hem de bitiş saati belirttiğinizden emin olun.",
- "timeZone": "{0} Saat dilimini belirttiğinizden emin olun.",
- "timesAndZone": "{0} Başlangıç saatini, bitiş saatini ve saat dilimini ayarladığınızdan emin olun."
- }
- },
- "UserActions": {
- "Included": {
- "none": "Bulut uygulaması veya eylemi seçilmedi",
- "plural": "{0} kullanıcı eylemleri dahil edildi",
- "singular": "1 kullanıcı eylemi dahil edildi"
- },
- "accessRequirement1": "Düzey 1",
- "accessRequirement2": "Düzey 2",
- "accessRequirement3": "Düzey 3",
- "accessRequirementsLabel": "Güvenli uygulama verilerine erişiliyor",
- "appsActionsAuthTitle": "Bulut uygulamaları, eylemleri veya kimlik doğrulaması bağlamı",
- "appsOrActionsSelectorInfoBallonText": "Erişilen uygulamalar veya kullanıcı eylemleri",
- "appsOrActionsTitle": "Bulut uygulamaları veya eylemleri",
- "label": "Kullanıcı eylemleri",
- "mainOptionsLabel": "Bu ilkenin neye uygulanacağını seçin",
- "registerOrJoinDevices": "Cihazları kaydet veya ekle",
- "registerSecurityInfo": "Güvenlik bilgilerini kaydedin",
- "selectionInfo": "Bu ilkenin uygulanacağı eylemi seçin"
- },
- "UserSelectionBlade": {
- "DirectoryRoles": {
- "ariaLabel": "Dizin rollerini seçin"
- },
- "Excluded": {
- "gridAria": "Hariç tutulan kullanıcıların listesi"
- },
- "Included": {
- "gridAria": "Dahil edilen kullanıcıların listesi"
- },
- "Validation": {
- "customRoleIncluded": "\"Dizin Rolleri\" en az bir özel rol içerir",
- "customRoleSelected": "En az bir özel rol seçildi",
- "failed": "\"{0}\" yapılandırılmalıdır",
- "roles": "En az bir rol seçin",
- "usersGroups": "En az bir kullanıcı veya grup seçin"
- },
- "learnMore": "Kullanıcılar ve gruplar, iş yükü kimlikleri, dizin rolleri veya dış konuklar gibi ilkenin kime uygulanacağına bağlı olarak erişimi denetleyin."
- },
- "ValidationResult": {
- "blockEveryonePolicy": "İlke yapılandırması desteklenmiyor. Seçilen atama ve denetimleri gözden geçirin.",
- "invalidApplicationCondition": "Seçilen bulut uygulamaları geçersiz",
- "invalidClientTypesCondition": "Seçilen istemci uygulamaları geçersiz",
- "invalidConditions": "Atamalar seçilmedi",
- "invalidControls": "Seçilen denetimler geçersiz",
- "invalidDevicePlatformsCondition": "Seçilen cihaz platformları geçersiz",
- "invalidDevicesCondition": "Cihaz yapılandırması geçersiz. \"{0}\" yapılandırması büyük olasılıkla geçersiz.",
- "invalidGrantControlPolicy": "İzin verme denetimi geçersiz",
- "invalidLocationsCondition": "Seçilen konumlar geçersiz",
- "invalidPolicy": "Atamalar seçilmedi",
- "invalidSessionControlPolicy": "Oturum denetimi geçersiz",
- "invalidSignInRisksCondition": "Seçilen oturum açma riski geçersiz",
- "invalidUserRisksCondition": "Seçilen kullanıcı riski geçersiz",
- "invalidUsersCondition": "Seçilen kullanıcılar geçersiz",
- "mamPolicyShouldOnlyTargetAndroidOrIosPlatforms": "MAM ilkesi, Android veya iOS istemci platformlarına uygulanabilir.",
- "notSupportedCombination": "İlke yapılandırması desteklenmiyor. Desteklenen ilkeler hakkında daha fazla bilgi edinin.",
- "pending": "İlke doğrulanıyor",
- "requireComplianceEveryonePolicy": "İlke yapılandırması, tüm kullanıcılar için cihaz uyumluluğunu gerekli kılacak. Seçilen atamaları gözden geçirin.",
- "success": "Geçerli ilke"
- },
- "VpnCert": {
- "Grid": {
- "aria": "VPN Sertifikalarının listesi"
- }
- },
- "WarningsInfo": {
- "Controls": {
- "compliantDeviceEnabled": "Hesabınıza erişiminizi kaybetmeyin! Cihazınızın uyumlu olduğundan emin olun.",
- "domainJoinedDeviceEnabled": "Hesabınıza erişiminizi kaybetmeyin! Cihazınızın Hibrit Azure AD ile katılan bir cihaz olduğundan emin olun.",
- "exchangeDisabled": "Exchange ActiveSync yalnızca \"Uyumlu cihaz\" ve \"Onaylı istemci uygulaması\" denetimlerini destekler. Daha fazla bilgi edinmek için tıklayın.",
- "exchangeDisabled2": "Exchange ActiveSync yalnızca \"Uyumlu cihaz\", \"Onaylı istemci uygulaması\" ve \"Uyumlu istemci uygulaması\" denetimlerini destekler. Daha fazla bilgi edinmek için tıklayın.",
- "notAvailableForSP": "İlke atamasındaki '{0}' seçimi nedeniyle bazı denetimler kullanılamıyor",
- "requireAuthOrMfa": "'{0}', '{1}' ile kullanılamaz",
- "requireMfa": "Yeni \"{0}\" genel önizlemesini test etmeyi düşünün",
- "requirePasswordChangeEnabled": "\"Parola değişikliği iste\" yalnızca ilke \"Tüm bulut uygulamaları\"na atandığında kullanılabilir"
- },
- "Policies": {
- "Linux": {
- "devicePlatformsReportOnlyPolicy": "Uyumlu cihazlar gerektiren Yalnızca rapor modundaki ilkeler, macOS, iOS, Android ve Linux kullanıcılarının bir cihaz sertifikası seçmesini isteyebilir.",
- "excludeDevicePlatforms": "macOS, iOS, Android ve Linux cihaz platformlarını bu ilkenin dışında tutun.",
- "proceedAnywayDevicePlatforms": "Seçili yapılandırma ile devam edin. macOS, iOS, Android ve Linux kullanıcıları, cihaz uyumluluk için denetlendiğinde komut istemleri alabilir."
- },
- "blockCurrentUserPolicy": "Hesabınıza erişiminizi kaybetmeyin! Bir ilkenin beklendiği şekilde çalıştığından emin olmak için öncelikle küçük bir kullanıcı grubuna uygulamanız önerilir. Ayrıca en az bir yöneticiyi bu ilkenin dışında tutmanız önerilir. Bu, bir değişiklik yapılması gerektiğinde hala erişim sağlanabilmesini ve ilkelerin güncelleştirilebilmesini sağlar. Lütfen etkilenen kullanıcıları ve uygulamaları gözden geçirin.",
- "devicePlatformsReportOnlyPolicy": "Uyumlu cihazlar gerektiren Yalnızca rapor modundaki ilkeler, macOS, iOS ve Android kullanıcılarının bir cihaz sertifikası seçmesini isteyebilir.",
- "excludeCurrentUserSelection": "Geçerli kullanıcıyı ({0}) bu ilkenin dışında tutun.",
- "excludeDevicePlatforms": "Tüm macOS, iOS ve Android cihaz platformlarını bu ilkenin dışında tutun.",
- "proceedAnywayDevicePlatforms": "Seçili yapılandırma ile devam edin. macOS, iOS ve Android kullanıcıları, cihaz uyumluluk için denetlendiğinde komut istemi alabilir.",
- "proceedAnywaySelection": "Hesabımın bu ilkeden etkileneceğini anlıyorum. Yine de devam et."
- },
- "ServicePrincipals": {
- "blockExchange": "Office 365 Exchange Online'ı seçmek OneDrive ve Teams gibi uygulamaları da etkileyecektir.",
- "blockPortal": "Hesabınıza erişiminizi kaybetmeyin! Bu ilke Azure portalını etkiler. Devam etmeden önce sizin veya bir başkasının portala geri dönmesinin mümkün olduğundan emin olun.",
- "blockPortalWithSession": "Kendinizi dışarıda bırakmayın! Bu ilke Azure portalını etkiler. Devam etmeden önce sizin veya bir başkasının portala dönebileceğinden emin olun.
Yalnızca \"Tüm bulut uygulamaları\" seçiliyken düzgün çalışan bir kalıcı tarayıcı oturumu ilkesi yapılandırıyorsanız bu uyarıyı dikkate almayın.",
- "blockSharePoint": "SharePoint Online'ı seçmek Microsoft Teams, Planner, Delve, MyAnalytics ve Newsfeed gibi uygulamaları etkileyecektir.",
- "blockSkype": "Skype Kurumsal Çevrimiçi Sürüm'ün seçilmesi Microsoft Teams'i de etkiler",
- "includeOrExclude": "Uygulama Filtresini '{0}' veya '{1}' için yapılandırabilirsiniz ancak her ikisi için yapılandıramazsınız.",
- "selectAppsNAForSP": "İlke atamasındaki '{0}' seçimi nedeniyle tek tek bulut uygulamaları seçilemiyor",
- "teamsBlocked": "SharePoint Online ve Exchange Online gibi uygulamalar ilkeye dahil olduğunda Microsoft Teams de etkilenir."
- },
- "Users": {
- "blockAllUsers": "Hesabınıza erişiminizi kaybetmeyin! Bu ilke tüm kullanıcılarınızı etkiler. İlkenin beklenen şekilde çalıştığını doğrulamak için önce ilkeyi küçük bir kullanıcı grubuna uygulamanızı öneririz."
- }
- },
- "WhatIf": {
- "Device": {
- "AttributesGrid": {
- "aria": "Cihazda oturum açma sırasında kullanıma alınan özniteliklerin listesi.",
- "infoBalloon": "Cihazda oturum açma sırasında kullanıma alınan özniteliklerin listesi."
- }
- }
- },
- "advancedTabText": "Gelişmiş",
- "allCloudAppsErrorBox": "\"Parola değişikliği iste\" izni seçildiğinde \"Tüm bulut uygulamaları\" seçilmelidir",
- "allDayCheckboxLabel": "Tüm gün",
- "allDevicePlatforms": "Herhangi bir aygıt",
- "allGuestUserInfoContent": "Azure AD B2B konuklarını içerir, SharePoint B2B konuklarını içermez",
- "allGuestUserLabel": "Tüm konuk ve dış kullanıcılar",
- "allRiskLevelsOption": "Tüm risk düzeyleri",
- "allTrustedLocationLabel": "Tüm güvenilen konumlar",
- "allUserGroupSetSelectorLabel": "Seçilen tüm kullanıcılar ve gruplar",
- "allUsersString": "Tüm kullanıcılar",
- "and": "{0} VE {1} ",
- "andWithGrouping": "({0}) VE {1} ",
- "androidDisplayName": "Android",
- "anyCloudAppSelection": "Herhangi bir bulut uygulaması",
- "appContextOptionInfoContent": "İstenen kimlik doğrulaması etiketi",
- "appContextOptionLabel": "İstenen kimlik doğrulama etiketi (Önizleme)",
- "appContextUriPlaceholder": "Örnek: uri:contoso.com:level3",
- "appEnforceInfoBubble": "Uygulama tarafından zorlanan kısıtlamalar, bulut uygulamaları içinde ek yönetim yapılandırmaları gerektirebilir. Kısıtlamalar yalnızca yeni oturumlar için geçerli olur.",
- "appNotSetSeletorLabel": "0 bulut uygulaması seçili",
- "applyConditionClientAppInfoBalloonContent": "Belirli istemci uygulamalarında ilkeyi uygulamak için istemci uygulamalarını yapılandırın",
- "applyConditionDevicePlatformInfoBalloonContent": "Belirli platformlarda ilkeyi uygulamak için cihaz platformlarını yapılandırın",
- "applyConditionDeviceStateInfoBalloonContent": "Belirli cihaz durumlarına ilkeyi uygulamak için cihaz durumlarını yapılandırın",
- "applyConditionLocationInfoBalloonContent": "Güvenilen/güvenilmeyen konumlarda ilkeyi uygulamak için konumları yapılandırın",
- "applyConditionSigninRiskInfoBalloonContent": "Seçili risk düzeylerinde ilkeyi uygulamak için, oturum açma riskini yapılandırın",
- "applyConditionUserRiskInfoBalloonContent": "İlkeyi seçili risk düzeylerine uygulamak için kullanıcı riskini yapılandırın",
- "applyConditonLabel": "Yapılandır",
- "ariaLabelPolicyDisabled": "İlke devre dışı",
- "ariaLabelPolicyEnabled": "İlke etkin",
- "ariaLabelPolicyReportOnly": "İlke Yalnızca rapor modunda",
- "blockAccess": "Erişimi engelle",
- "builtInDirectoryRoleLabel": "Yerleşik dizin rolleri",
- "casCustomControlInfo": "Özel ilkelerin Cloud App Security portalında yapılandırılması gerekir. Bu denetim öne çıkan uygulamalar için anında çalışır ve herhangi bir uygulama için kendi kendine eklenebilir. Her iki senaryo hakkında daha fazla bilgi edinmek için buraya tıklayın.",
- "casInfoBubble": "Bu denetim çeşitli bulut uygulamaları için çalışır.",
- "casPreconfiguredControlInfo": "Bu denetim öne çıkan uygulamalar için anında çalışır ve herhangi bir uygulama için kendi kendine eklenebilir. Her iki senaryo hakkında daha fazla bilgi edinmek için buraya tıklayın.",
- "cert64DownloadCol": "Base64 sertifikasını indir",
- "cert64Name": "VpnBase64Cert",
- "certDownloadCol": "Sertifikayı indir",
- "certDurationCol": "Süre Sonu",
- "certDurationStartCol": "Şu tarihten itibaren geçerli",
- "certName": "VpnCert",
- "chooseApplicationsBladeSubtitle": "",
- "chooseApplicationsBladeTitle": "Uygulama Seçin",
- "chooseApplicationsCartSubitle": "",
- "chooseApplicationsCartTitle": "Seçilen Uygulamalar",
- "chooseApplicationsEmpty": "Uygulama Yok",
- "chooseApplicationsNone": "Yok",
- "chooseApplicationsNoneFound": "\"{0}\" ifadesini bulamadık. Başka bir ad veya kimlik deneyin.",
- "chooseApplicationsPlural": "{0} ve {1} uygulama daha",
- "chooseApplicationsReAuthEverytimeInfo": "Uygulamanızı mı arıyorsunuz? Bazı uygulamalar “Yeniden kimlik doğrulaması gerektir - her seferinde” oturum denetimi ile kullanılamaz",
- "chooseApplicationsRemove": "Kaldır",
- "chooseApplicationsReturnedPlural": "{0} uygulama bulundu",
- "chooseApplicationsReturnedSingular": "1 uygulama bulundu",
- "chooseApplicationsSearchBalloon": "Adını veya kimliğini girerek bir Uygulama arayın.",
- "chooseApplicationsSearchHint": "Uygulamalarda Ara...",
- "chooseApplicationsSearchLabel": "Uygulamalar",
- "chooseApplicationsSearching": "Aranıyor...",
- "chooseApplicationsSelect": "Seç",
- "chooseApplicationsSelected": "Seçili",
- "chooseApplicationsSingular": "{0} ve 1 uygulama daha",
- "chooseApplicationsTooMany": "Görüntülenen sonuçlardan daha fazlası bulundu. Lütfen arama kutusunu kullanarak filtreleyin.",
- "chooseLocationCorpnetItem": "Şirket ağı",
- "chooseLocationSelectedLocationsLabel": "Seçili konumlar",
- "chooseLocationTrustedIpsItem": "MFA Güvenilen IP'ler",
- "chooseLocationsBladeSubtitle": "",
- "chooseLocationsBladeTitle": "Konum Seçin",
- "chooseLocationsCartSubitle": "",
- "chooseLocationsCartTitle": "Seçili Konumlar",
- "chooseLocationsEmpty": "Konum Yok",
- "chooseLocationsExcludedSelectorTitle": "Seçin",
- "chooseLocationsIncludedSelectorTitle": "Seçin",
- "chooseLocationsNone": "Yok",
- "chooseLocationsNoneFound": "\"{0}\" ifadesini bulamadık. Başka bir ad veya kimlik deneyin.",
- "chooseLocationsPlural": "{0} ve {1} uygulama daha",
- "chooseLocationsRemove": "Kaldır",
- "chooseLocationsReturnedPlural": "{0} konum bulundu",
- "chooseLocationsReturnedSingular": "1 konum bulundu",
- "chooseLocationsSearchBalloon": "Adını girerek bir Konum arayın.",
- "chooseLocationsSearchHint": "Konum Arayın...",
- "chooseLocationsSearchLabel": "Konumlar",
- "chooseLocationsSearching": "Aranıyor...",
- "chooseLocationsSelect": "Seçin",
- "chooseLocationsSelected": "seçili",
- "chooseLocationsSelectionBladeExcludedSelectorTitle": "Seçin",
- "chooseLocationsSelectionBladeIncludedSelectorTitle": "Seçin",
- "chooseLocationsSingular": "{0} ve 1 uygulama daha",
- "chooseLocationsTooMany": "Görüntülenen sonuçlardan daha fazlası bulundu. Lütfen arama kutusunu kullanarak filtreleyin.",
- "claimProviderAddCommandText": "Yeni özel denetim",
- "claimProviderAddNewBladeTitle": "Yeni özel denetim",
- "claimProviderDeleteCommand": "Sil",
- "claimProviderDeleteDescription": "'{0}' adlı ağı silmek istediğinizden emin misiniz? Bu eylem geri alınamaz.",
- "claimProviderDeleteTitle": "Emin misiniz?",
- "claimProviderEditInfoText": "Talep sağlayıcılarınız tarafından verilen özelleştirilmiş denetimler için JSON girin.",
- "claimProviderNotificationCreateDescription": "'{0}' adlı özel denetim oluşturuluyor",
- "claimProviderNotificationCreateFailedDescription": "'{0}' özel denetimi oluşturulamadı. Lütfen daha sonra yeniden deneyin.",
- "claimProviderNotificationCreateFailedTitle": "Özel denetim oluşturulamadı",
- "claimProviderNotificationCreateSuccessDescription": "'{0}' adlı özel denetim oluşturuldu",
- "claimProviderNotificationCreateSuccessTitle": "'{0}' oluşturuldu",
- "claimProviderNotificationCreateTitle": "'{0}' oluşturuluyor",
- "claimProviderNotificationDeleteDescription": "'{0}' adlı özel denetim siliniyor",
- "claimProviderNotificationDeleteFailedDescription": "'{0}' özel denetimi silinemedi. Lütfen daha sonra yeniden deneyin.",
- "claimProviderNotificationDeleteFailedTitle": "Özel denetim silinemedi",
- "claimProviderNotificationDeleteSuccessDescription": "'{0}' adlı özel denetim silindi",
- "claimProviderNotificationDeleteSuccessTitle": "'{0}' silindi",
- "claimProviderNotificationDeleteTitle": "{0} siliniyor",
- "claimProviderNotificationUpdateDescription": "'{0}' adlı özel denetim güncelleştiriliyor",
- "claimProviderNotificationUpdateFailedDescription": "'{0}' özel denetimi güncelleştirilemedi. Lütfen daha sonra yeniden deneyin.",
- "claimProviderNotificationUpdateFailedTitle": "Özel denetim güncelleştirilemedi",
- "claimProviderNotificationUpdateSuccessDescription": "'{0}' adlı özel denetim güncelleştirildi",
- "claimProviderNotificationUpdateSuccessTitle": "'{0}' güncelleştirildi",
- "claimProviderNotificationUpdateTitle": "'{0}' güncelleştiriliyor",
- "claimProviderValidationAppIdInvalid": "\"AppId\" değeri geçerli değil. Lütfen gözden geçirip yeniden deneyin.",
- "claimProviderValidationClientIdMissing": "Veriler \"ClientId\" değerini içermiyor. Lütfen gözden geçirip yeniden deneyin.",
- "claimProviderValidationControlClaimsRequestedMissing": "\"Control\" bir \"ClaimsRequested\" değerini içermiyor. Lütfen gözden geçirip yeniden deneyin.",
- "claimProviderValidationControlClaimsRequestedTypeMissing": "\"ClaimsRequested\" öğesi bir \"Type\" değerini içermiyor. Lütfen gözden geçirip yeniden deneyin.",
- "claimProviderValidationControlIdAlreadyExists": "\"Control\" \"Id\" değeri zaten var. Lütfen gözden geçirip yeniden deneyin.",
- "claimProviderValidationControlIdMissing": "\"Control\" bir \"Id\" değerini içermiyor. Lütfen gözden geçirip yeniden deneyin.",
- "claimProviderValidationControlIdReferencedInExistingPolicy": "\"Control\" \"Id\" değerine mevcut ilkede başvurulduğundan bu değer kaldırılamıyor. Lütfen öncelikle bu değeri ilkeden kaldırın.",
- "claimProviderValidationControlIdTooManyControls": "\"Control\" özelliği çok fazla denetim içeriyor. Lütfen gözden geçirip tekrar deneyin.",
- "claimProviderValidationControlIdValueReserved": "\"Control\" \"Id\" değeri, ayrılmış bir anahtar sözcük. Lütfen farklı bir kimlik kullanın.",
- "claimProviderValidationControlNameAlreadyExists": "\"Control\" \"Name\" değeri zaten var. Lütfen gözden geçirip yeniden deneyin.",
- "claimProviderValidationControlNameMissing": "\"Control\" bir \"Name\" değerini içermiyor. Lütfen gözden geçirip yeniden deneyin.",
- "claimProviderValidationControlsMissing": "Veriler \"Controls\" değerini içermiyor. Lütfen gözden geçirip yeniden deneyin.",
- "claimProviderValidationDiscoveryUrlMissing": "Veriler \"DiscoveryUrl\" değerini içermiyor. Lütfen gözden geçirip yeniden deneyin.",
- "claimProviderValidationInvalid": "Sağlanan veriler geçerli değil. Lütfen gözden geçirip yeniden deneyin.",
- "claimProviderValidationInvalidJsonDefinition": "Özel denetim kaydedilemiyor. JSON metnini gözden geçirip yeniden deneyin.",
- "claimProviderValidationNameAlreadyExists": "\"Name\" değeri zaten var. Lütfen gözden geçirip yeniden deneyin.",
- "claimProviderValidationNameMissing": "Veriler \"Name\" değerini içermiyor. Lütfen gözden geçirip yeniden deneyin.",
- "claimProviderValidationUnknown": "Sağlanan veriler doğrulanırken bilinmeyen bir hata oluştu. Lütfen gözden geçirip yeniden deneyin.",
- "claimProvidersNone": "Özel denetim yok",
- "claimProvidersSearchPlaceholder": "Arama denetimleri.",
- "classicPoilcyFilterTitle": "Göster",
- "classicPolicyAllPlatforms": "Tüm Platformlar",
- "classicPolicyClientAppBrowserAndNative": "Tarayıcı, mobil uygulamalar ve masaüstü istemcileri",
- "classicPolicyCloudAppTitle": "Bulut uygulaması",
- "classicPolicyControlAllow": "İzin Ver",
- "classicPolicyControlBlock": "Engelle",
- "classicPolicyControlBlockWhenNotAtWork": "Çalışmıyorken erişimi engelle",
- "classicPolicyControlRequireCompliantDevice": "Uyumlu cihaz gerektir",
- "classicPolicyControlRequireDomainJoinedDevice": "Etki alanına katılmış cihaz gerektir",
- "classicPolicyControlRequireMfa": "Çok faktörlü kimlik doğrulaması gerektir",
- "classicPolicyControlRequireMfaWhenNotAtWork": "Çalışmıyorken çok faktörlü kimlik doğrulaması gerektir",
- "classicPolicyDeleteCommand": "Sil",
- "classicPolicyDeleteFailTitle": "Klasik ilke silinemedi",
- "classicPolicyDeleteInProgressTitle": "Klasik ilke siliniyor",
- "classicPolicyDeleteSuccessTitle": "Klasik ilke silindi",
- "classicPolicyDetailBladeTitle": "Ayrıntılar",
- "classicPolicyDisableCommand": "Devre dışı bırak",
- "classicPolicyDisableConfirmation": "'{0}' adlı ilkeyi devre dışı bırakmak istediğinizden emin misiniz? Bu eylem geri alınamaz.",
- "classicPolicyDisableFailDescription": "'{0}' devre dışı bırakılamadı",
- "classicPolicyDisableFailTitle": "Klasik ilke devre dışı bırakılamadı",
- "classicPolicyDisableInProgressDescription": "'{0}' devre dışı bırakılıyor",
- "classicPolicyDisableInProgressTitle": "Klasik ilke devre dışı bırakılıyor",
- "classicPolicyDisableSuccessDescription": "'{0}' başarıyla devre dışı bırakıldı",
- "classicPolicyDisableSuccessTitle": "Klasik ilke devre dışı bırakıldı",
- "classicPolicyEasSupportedPlatforms": "Exchange ActiveSync tarafından desteklenen platformlar",
- "classicPolicyEasUnsupportedPlatforms": "Exchange ActiveSync tarafından desteklenmeyen platformlar",
- "classicPolicyExcludedPlatformsTitle": "Dışlanan cihaz platformları",
- "classicPolicyFilterAll": "Tüm ilkeler",
- "classicPolicyFilterDisabled": "Devre dışı ilkeler",
- "classicPolicyFilterEnabled": "Etkin ilkeler",
- "classicPolicyIncludeExcludeMembersDescription": "Grupları dışlayarak aşamalı ilke geçişi gerçekleştirebilirsiniz.",
- "classicPolicyIncludeExcludeMembersTitle": "Grupları içerme/dışlama",
- "classicPolicyIncludedPlatformsTitle": "Dahil edilen cihaz platformları",
- "classicPolicyManualMigrationMessage": "Bu ilkenin el ile geçirilmesi gerekiyor.",
- "classicPolicyMigrateCommand": "Geçir",
- "classicPolicyMigrateConfirmation": "'{0}' adlı ilkeyi geçirmek istediğinizden emin misiniz? Bu ilke yalnızca bir kez geçirilebilir.",
- "classicPolicyMigrateFailDescription": "'{0}' geçirilemedi",
- "classicPolicyMigrateFailTitle": "Klasik ilke geçirilemedi",
- "classicPolicyMigrateInProgressDescription": "'{0}' geçiriliyor",
- "classicPolicyMigrateInProgressTitle": "Klasik ilke geçiriliyor",
- "classicPolicyMigrateRecommendText": "Öneri: Yeni Azure portalı ilkelerine geçin.",
- "classicPolicyMigrateSuccessTitle": "Klasik ilke başarıyla geçirildi",
- "classicPolicyMigratedSuccessDescription": "Bu klasik ilke artık İlkeler bölümünden yönetilebilir.",
- "classicPolicyMigratedSuccessDescriptionMultiple": "Bu klasik ilke, {0} yeni ilke olarak geçirildi. Yeni ilkeleri yönetmek için İlkeler bölümünü kullanabilirsiniz.",
- "classicPolicyNoEditPermissionMsg": "Bu ilkeyi düzenleme izniniz yok. İlkeyi yalnızca genel yöneticiler ve güvenlik yöneticileri düzenleyebilir. Daha fazla bilgi edinmek için buraya tıklayın.",
- "classicPolicySaveFailDescription": "'{0}' kaydedilemedi",
- "classicPolicySaveFailTitle": "Klasik ilke kaydedilemedi",
- "classicPolicySaveInProgressDescription": "'{0}' kaydediliyor",
- "classicPolicySaveInProgressTitle": "Klasik ilke kaydediliyor",
- "classicPolicySaveSuccessDescription": "'{0}' başarıyla kaydedildi",
- "classicPolicySaveSuccessTitle": "Klasik ilke kaydedildi",
- "clientAppBladeLegacyInfoBanner": "Eski kimlik doğrulaması şu anda desteklenmiyor",
- "clientAppBladeLegacyUpsellBanner": "Desteklenmeyen istemci uygulamalarını engelle (Önizleme)",
- "clientAppBladeTitle": "İstemci uygulamaları",
- "clientAppDescription": "Bu ilkenin uygulanacağı istemci uygulamalarını seçin",
- "clientAppExchangeActiveSync": "Exchange ActiveSync",
- "clientAppExchangeDisabledInfo": "Exchange ActiveSync, seçili tek bulut uygulaması Exchange Online olduğunda kullanılabilir. Daha fazla bilgi edinmek için tıklayın",
- "clientAppExchangeWarning": "Exchange ActiveSync, şu anda diğer koşulların hiçbirini desteklemiyor",
- "clientAppLearnMore": "Kullanıcı erişimini, modern kimlik doğrulaması kullanmayan belirli istemci uygulamalarını hedeflemek için denetleyin.",
- "clientAppLegacyHeader": "Eski kimlik doğrulama istemcileri",
- "clientAppMobileDesktop": "Mobil uygulamalar ve masaüstü istemcileri",
- "clientAppModernHeader": "Modern kimlik doğrulama istemcileri",
- "clientAppOnlySupportedPlatforms": "İlkeyi yalnızca desteklenen platformlara uygula",
- "clientAppSelectSpecificClientApps": "İstemci uygulamalarını seçin",
- "clientAppV2BladeTitle": "İstemci uygulamaları (Önizleme)",
- "clientAppWebBrowser": "Tarayıcı",
- "clientAppsSelectedLabel": "{0} eklendi",
- "clientTypeBrowser": "Tarayıcı",
- "clientTypeEas": "Exchange ActiveSync istemcileri",
- "clientTypeEasInfo": "Yalnızca eski kimlik doğrulaması kullanan Exchange ActiveSync istemcileri.",
- "clientTypeModernAuth": "Modern kimlik doğrulama istemcileri",
- "clientTypeOtherClients": "Diğer istemciler",
- "clientTypeOtherClientsInfo": "Bu, eski Office istemcilerini ve diğer posta protokollerini (POP, IMAP, SMTP vb.) içerir. [Daha fazla bilgi][1]\n[1]: https://aka.ms/caclientapps\n",
- "cloudAppCountDiffBannerText": "Bu ilkede yapılandırılan {0} bulut uygulaması dizinden silinmiş, ancak bu durum ilkedeki diğer uygulamaları etkilemiyor. İlkenin uygulama bölümünü sonraki ilk güncelleştirmenizde, silinen uygulamalar ilkeden otomatik olarak kaldırılır.",
- "cloudAppsSelectionBladeAllMicrosoftApps": "Tüm Microsoft uygulamaları",
- "cloudAppsSelectionExcludeAllMicrosoftClients": "Microsoft bulut, mobil ve masaüstü uygulamalarına izin ver (Önizleme)",
- "cloudappsSelectionBladeAllCloudapps": "Tüm bulut uygulamaları",
- "cloudappsSelectionBladeExcludeDescription": "İlkenin dışında tutulacak bulut uygulamalarını seçin",
- "cloudappsSelectionBladeExcludedSelectorTitle": "Dışlanan bulut uygulamalarını seçin",
- "cloudappsSelectionBladeIncludeDescription": "Bu ilkenin uygulanacağı bulut uygulamalarını seçin",
- "cloudappsSelectionBladeIncludedSelectorTitle": "Seç",
- "cloudappsSelectionBladeSelectedCloudapps": "Uygulama seç",
- "cloudappsSelectorInfoBallonText": "Kullanıcının, işlerini yapmak için eriştiği hizmetler. Örneğin, 'Salesforce'",
- "cloudappsSelectorUserPlural": "{0} uygulama",
- "cloudappsSelectorUserSingular": "1 uygulama",
- "conditionLabelMulti": "{0} koşul seçildi",
- "conditionLabelOne": "1 koşul seçildi",
- "conditionalAccessBladeTitle": "Koşullu Erişim",
- "conditionsNotSelectedLabel": "Yapılandırılmadı",
- "conditionsReqPwSet": "Şu anda seçilmekte olan \"Parola değişikliği iste\" izni nedeniyle bazı seçenekler kullanılamıyor",
- "configureCasText": "Cloud App Security'yi Yapılandırın",
- "configureCustomControlsText": "Özel ilke yapılandır",
- "controlLabelMulti": "{0} denetim seçildi",
- "controlLabelOne": "1 denetim seçildi",
- "controlValidatorText": "Lütfen en az bir denetim seçin",
- "controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
- "controlsDeviceComplianceInfoBubble": "Cihaz, Intune ile uyumlu olmalıdır. Cihaz uyumlu değilse, kullanıcıdan cihazı uyumlu hale getirmesi istenir",
- "controlsDomainJoinedInfoBubble": "Cihazlar Hibrit Azure AD ile katılan cihazlar olmalıdır.",
- "controlsMamInfoBubble": "Cihaz bu onaylı istemci uygulamalarını kullanmalıdır.",
- "controlsMfaInfoBubble": "Kullanıcının, telefon görüşmeleri ve kısa mesaj gibi ek güvenlik gereksinimleri tamamlaması gerekir",
- "controlsOrAndInfoBubble": "ControlsOrAndInfoBubble",
- "controlsRequireCompliantAppInfoBubble": "Cihazın ilke korumalı uygulamaları kullanması gerekir.",
- "controlsRequirePasswordResetInfoBubble": "Kullanıcı kaynaklı riski azaltmak için parola değişikliği isteyin. Bu seçenek ayrıca çok faktörlü kimlik doğrulaması da gerektirir. Diğer denetimler kullanılamaz.",
- "countriesRadiobuttonInfoBalloonContent": "Oturum açma işleminin yapıldığı ülke/bölge, kullanıcının IP adresine göre belirlenir.",
- "createNewVpnCert": "Yeni sertifika",
- "createdTimeLabel": "Oluşturma zamanı",
- "customRoleLabel": "Özel roller (desteklenmiyor)",
- "dateRangeTypeLabel": "Tarih aralığı",
- "daysOfWeekPlaceholderText": "Haftanın günlerini filtreleyin",
- "daysOfWeekTypeLabel": "Haftanın günleri",
- "deletePolicyNoLicenseText": "Bu ilkeyi artık silebilirsiniz. İlke silindikten sonra, gerekli lisanslara sahip olmadığınız sürece ilkeyi yeniden oluşturamazsınız.",
- "descriptionContentForControlsAndOr": "Birden fazla denetim için",
- "devicePlatform": "Cihaz platformu",
- "devicePlatformConditionHelpDescription": "İlkeyi seçili cihaz platformlarına uygulayın.\n[Daha fazla bilgi][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2044750",
- "devicePlatformInclude": "{0} eklendi",
- "devicePlatformIncludeExclude": "{0} ve {1} dışlandı",
- "devicePlatformNoSelectionError": "Cihaz platformlarını seçmek için bir alt öğenin seçilmesi gerekir.",
- "devicePlatformsNone": "Yok",
- "deviceSelectionBladeExcludeDescription": "İlkenin dışında tutulacak platformları seçin",
- "deviceSelectionBladeIncludeDescription": "Bu ilkeye dahil edilecek cihaz platformlarını seçin",
- "deviceStateAll": "Tüm cihaz durumları",
- "deviceStateCompliant": "Cihaz uyumlu olarak işaretli",
- "deviceStateCompliantInfoContent": "Intune ile uyumlu cihazlar bu ilkenin değerlendirilmesinden dışlanır; örneğin ilke erişimi engellerse, Intune ile uyumlu cihazlar dışındaki tüm cihazları engeller.",
- "deviceStateConditionConfigureInfoContent": "Cihaz durumuna göre ilkeyi yapılandırma",
- "deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Hybrid Azure AD joined' or 'marked as compliant'.\n '{0}' has been deprecated. Use '{1}' instead.",
- "deviceStateConditionSelectorLabel": "Cihaz durumu (Önizleme)",
- "deviceStateDomainJoined": "Cihaz Hibrit Azure AD ile katıldı",
- "deviceStateDomainJoinedInfoContent": "Hibrit Azure AD ile katılan cihazlar bu ilkenin değerlendirilmesinden dışlanır; örneğin ilke erişimi engellerse, Hibrit Azure AD'ye katılmış cihazlar dışındaki tüm cihazları engeller.",
- "deviceStateDomainJoinedInfoLinkText": "Daha fazla bilgi edinin.",
- "deviceStateExcludeDescription": "Cihazları ilkeden dışlamak için kullanılan cihaz durumu koşulunu seçin.",
- "deviceStateIncludeAndExcludeOneLabel": "{0} ve şunu dışla: {1}",
- "deviceStateIncludeAndExcludeTwoLabel": "{0} ve şunları dışla: {1} ve {2}",
- "directoryRoleInfoContent": "Yerleşik dizin rollerine ilke atayın.",
- "directoryRolesLabel": "Dizin rolleri",
- "discardbutton": "At",
- "downloadDefaultFileName": "IP Aralıkları",
- "downloadExampleFileName": "Örnek",
- "downloadExampleHeader": "Bu örnek dosyasında, kabul edilebilir veri türleri gösterilmektedir. # ile başlayan satırlar yoksayılır.",
- "endDatePickerLabel": "Uçlar",
- "endTimePickerLabel": "Bitiş saati",
- "enterCountryText": "IP adresi ve Ülke bir çift olarak değerlendirilir. Ülke seçin.",
- "enterIpText": "IP adresi ve Ülke bir çift olarak değerlendirilir. IP adresi girin.",
- "enterUserText": "Hiçbir kullanıcı seçilmedi. Bir kullanıcı seçin.",
- "evaluationResult": "Değerlendirme sonucu",
- "exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
- "exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Yalnızca desteklenen platformlarla Exchange ActiveSync",
- "excludeAllTrustedLocationSelectorText": "tüm güvenilen konumları hariç tut",
- "featureRequiresP2": "Bu özellik Azure AD Premium 2 lisansı gerektirir.",
- "friday": "Cuma",
- "grantControls": "İzin verme denetimleri",
- "gridNetworkTrusted": "Güvenilir",
- "gridPolicyCreatedDateTime": "Oluşturulma Tarihi",
- "gridPolicyEnabled": "Etkin",
- "gridPolicyModifiedDateTime": "Değişiklik Tarihi",
- "gridPolicyName": "İlke Adı",
- "gridPolicyState": "Durum",
- "groupSelectionBladeExcludeDescription": "İlkenin dışında tutulacak grupları seçin",
- "groupSelectionBladeExcludedSelectorTitle": "Dışlanan grupları seçin",
- "groupSelectionBladeSelect": "Grupları seçin",
- "groupSelectorInfoBallonText": "Dizinde ilkenin uygulandığı gruplar. Örneğin, 'Pilot grup'",
- "groupsSelectionBladeTitle": "Gruplar",
- "helpCommonScenariosText": "Sık karşılaşılan senaryolar ilginizi çekiyor mu?",
- "helpCondition1": "Herhangi bir kullanıcı şirket ağının dışında olduğunda",
- "helpCondition2": "‘Yöneticiler’ grubundaki kullanıcılar oturum açtığında",
- "helpConditionsTitle": "Koşullar",
- "helpControl1": "Çok faktörlü kimlik doğrulaması ile oturum açmaları gerekir",
- "helpControl2": "Intune ile uyumlu veya etki alanına katılmış bir cihaz kullanıyor olmaları gerekir",
- "helpControlsTitle": "Denetimler",
- "helpIntroText": "Koşullu Erişim size belirli koşullar oluştuğunda erişim gereksinimleri uygulamaya koyma olanağı sunar. Birkaç örneğe bakalım",
- "helpIntroTitle": "Koşullu Erişim nedir?",
- "helpLearnMoreText": "Koşullu Erişim hakkında daha fazla bilgi edinmek ister misiniz?",
- "helpStartStep1": "\"+ Yeni ilke\" seçeneğine tıklayarak ilk ilkenizi oluşturun",
- "helpStartStep2": "İlke Koşullarını ve Denetimlerini belirtin",
- "helpStartStep3": "İşiniz bittiğinde ilkeyi Etkinleştirmeyi ve Oluşturmayı unutmayın",
- "helpStartTitle": "Kullanmaya başlayın",
- "highRisk": "Yüksek",
- "includeAndExcludeAppsTextFormat": "Dahil et: {0}. Hariç tut: {1}.",
- "includeAppsTextFormat": "Dahil et: {0}.",
- "includeUnknownAreasCheckboxInfoBalloonContent": "Bilinmeyen alanlar, bir ülke/bölge ile eşleştirilemeyen IP adresleridir.",
- "includeUnknownAreasCheckboxLabel": "Bilinmeyen alanları dahil et",
- "infoCommandLabel": "Bilgi",
- "invalidCertDuration": "Sertifika süresi geçersiz",
- "invalidIpAddress": "Değer, geçerli bir IP adresi olmalıdır",
- "invalidUriErrorMsg": "Lütfen geçerli bir URI girin. Örneğin, 'uri:contoso.com:acr' ",
- "iosDisplayName": "iOS",
- "linuxDisplayName": "Linux",
- "linuxDisplayNamePreview": "Linux (Önizleme)",
- "loadAll": "Tümünü yükle",
- "loading": "Yükleniyor...",
- "locationConfigureNamedLocationsText": "Güvenilen tüm konumları yapılandır",
- "locationConfigureNamedLocationsUri": "{0}/usermanagement/mfasettings.aspx?tenantid={1}&culture={2}",
- "locationNameTooLongError": "Konum adı çok uzun. En fazla 256 karakter uzunluğunda olabilir",
- "locationSelectionBladeExcludeDescription": "İlkenin dışında tutulacak konumları seçin",
- "locationSelectionBladeIncludeDescription": "Bu ilkeye dahil edilecek konumları seçin",
- "locationsAllLocationsLabel": "Herhangi bir konum",
- "locationsAllNamedLocationsLabel": "Güvenilen tüm IP'ler",
- "locationsAllPrivateLinksLabel": "Kiracımdaki Tüm Özel Bağlantılar",
- "locationsIncludeExcludeLabel": "{0} ve tüm güvenilen IP'leri dışla",
- "locationsSelectedPrivateLinksLabel": "Seçili Özel Bağlantılar",
- "lowRisk": "Düşük",
- "macOsDisplayName": "macOS",
- "managePoliciesLicenseText": "Kuruluşunuzun Koşullu Erişim ilkelerini yönetebilmesi için Azure AD Premium P1 veya P2 gerekiyor.",
- "markAsTrustedCheckboxInfoBalloonContent": "Güvenilen bir konumdan oturum açmak, kullanıcının oturum açma riskini azaltır. Bu konumu yalnızca, girilen IP aralıkları şirketiniz tarafından tanınıyor ve bu IP aralıklarına güveniliyorsa güvenilen olarak işaretleyin.",
- "markAsTrustedCheckboxLabel": "Güvenilen konum olarak işaretle",
- "mediumRisk": "Orta",
- "memberSelectionCommandRemove": "Kaldır",
- "menuItemClaimProviderControls": "Özel denetimler (Önizleme)",
- "menuItemClassicPolicies": "Klasik ilkeler",
- "menuItemInsightsAndReporting": "İçgörüler ve raporlama",
- "menuItemManage": "Yönet",
- "menuItemNamedLocationsPreview": "Adlandırılmış konumlar (Önizleme)",
- "menuItemNamedNetworks": "Adlandırılmış konumlar",
- "menuItemPolicies": "İlkeler",
- "menuItemTermsOfUse": "Kullanım koşulları",
- "modifiedTimeLabel": "Değiştirme saati",
- "monday": "Pazartesi",
- "nameLabel": "Ad",
- "namedLocationCountryInfoBanner": "Ülkelere/bölgelere yalnızca IPv4 adresleri eşlenir. IPv6 adresleri bilinmeyen ülkelerde/bölgelerde yer alır.",
- "namedLocationTypeCountry": "Ülkeler/Bölgeler",
- "namedLocationTypeLabel": "Konumu şunu kullanarak tanımla:",
- "namedLocationUpsellBanner": "Bu görünüm kullanımdan kaldırıldı. Yeni ve iyileştirilmiş ‘Adlandırılmış konumlar’ görünümüne gidin.",
- "namedLocationsHelpDescription": "Adlandırılmış konumlar, Azure AD güvenlik raporları tarafından hatalı pozitif sonuçları ve Azure AD Koşullu Erişim ilkelerini azaltmak için kullanılır.\n[Daha fazla bilgi][1]\n[1]: https://aka.ms/namedlocationupdate",
- "namedNetworkAddIpRanges": "Yeni bir IP aralığı ekleyin (ör: 40.77.182.32/27)",
- "namedNetworkCountryNeeded": "En az bir ülke seçmeniz gerekiyor",
- "namedNetworkDeleteCommand": "Sil",
- "namedNetworkDeleteDescription": "'{0}' adlı ağı silmek istediğinizden emin misiniz? Bu eylem geri alınamaz.",
- "namedNetworkDeleteTitle": "Emin misiniz?",
- "namedNetworkDownloadIpRange": "İndir",
- "namedNetworkInvalidRange": "Değer, geçerli bir IP aralığı olmalıdır.",
- "namedNetworkIpRangeNeeded": "En az bir geçerli IP aralığı gereklidir",
- "namedNetworkIpRangesDescriptionContent": "Kuruluşunuzun IP aralıklarını yapılandırın",
- "namedNetworkIpRangesTab": "IP aralıkları",
- "namedNetworkListAdd": "Yeni konum",
- "namedNetworkListConfigureTrustedIps": "MFA güvenilen IP'lerini yapılandır",
- "namedNetworkNameDescription": "Örnek: 'Redmond ofisi'",
- "namedNetworkNameInvalid": "Belirtilen ad geçersiz.",
- "namedNetworkNameRequired": "Bu konum için bir ad belirtmelisiniz.",
- "namedNetworkNoIpRanges": "IP aralığı yok",
- "namedNetworkNotificationCreateDescription": "'{0}' adlı konum oluşturuluyor",
- "namedNetworkNotificationCreateFailedDescription": "'{0}' adlı konum oluşturulamadı. Lütfen daha sonra yeniden deneyin.",
- "namedNetworkNotificationCreateFailedTitle": "Konum oluşturulamadı",
- "namedNetworkNotificationCreateSuccessDescription": "'{0}' adlı konum oluşturuldu",
- "namedNetworkNotificationCreateSuccessTitle": "'{0}' oluşturuldu",
- "namedNetworkNotificationCreateTitle": "'{0}' oluşturuluyor",
- "namedNetworkNotificationDeleteDescription": "'{0}' adlı konum siliniyor",
- "namedNetworkNotificationDeleteFailedDescription": "'{0}' adlı konum silinemedi. Lütfen daha sonra yeniden deneyin.",
- "namedNetworkNotificationDeleteFailedTitle": "Konum Silinemedi",
- "namedNetworkNotificationDeleteSuccessDescription": "'{0}' adlı konum silindi",
- "namedNetworkNotificationDeleteSuccessTitle": "'{0}' silindi",
- "namedNetworkNotificationDeleteTitle": "{0} siliniyor",
- "namedNetworkNotificationUpdateDescription": "'{0}' adlı konum güncelleştiriliyor",
- "namedNetworkNotificationUpdateFailedDescription": "'{0}' adlı konum güncelleştirilemedi. Lütfen daha sonra yeniden deneyin.",
- "namedNetworkNotificationUpdateFailedTitle": "Konum Güncelleştirilemedi",
- "namedNetworkNotificationUpdateSuccessDescription": "'{0}' adlı konum güncelleştirildi",
- "namedNetworkNotificationUpdateSuccessTitle": "'{0}' güncelleştirildi",
- "namedNetworkNotificationUpdateTitle": "'{0}' güncelleştiriliyor",
- "namedNetworkSearchPlaceholder": "Konumlarda arama yapın.",
- "namedNetworkUploadFailedDescription": "Sağlanan dosya ayrıştırılırken hata oluştu. Karşıya yüklediğiniz dosyanın, her satırı CIDR biçiminde olan bir düz metin dosyası olduğundan emin olun.",
- "namedNetworkUploadFailedTitle": "'{0}' ayrıştırılamadı",
- "namedNetworkUploadInProgressDescription": "'{0}' dosyasından geçerli CIDR değerleri ayrıştırılmaya çalışılıyor.",
- "namedNetworkUploadInProgressTitle": "'{0}' ayrıştırılıyor",
- "namedNetworkUploadInvalidDescription": "'{0}' dosyası çok büyük ya da biçimi geçersiz.",
- "namedNetworkUploadInvalidTitle": "'{0}' Geçersiz",
- "namedNetworkUploadIpRange": "Karşıya yükle",
- "namedNetworkUploadSuccessDescription": "{0} satır analiz edildi. {1} tanesinin biçimi hatalı. {2} tanesi atlandı.",
- "namedNetworkUploadSuccessTitle": "'{0}' dosyasını ayrıştırma işlemi tamamlandı",
- "namedNetworksAdd": "Adlandırılmış yeni konum",
- "namedNetworksConditionHelpDescription": "Kullanıcı erişimini kullanıcıların fiziksel konumlarına göre denetleyin.\n[Daha fazla bilgi][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
- "namedNetworksExcludeLabel": "{0} ve {1} dışlandı",
- "namedNetworksHelpDescription": "Adlandırılmış konumlar, Azure AD güvenlik raporları tarafından, hatalı pozitif sonuçları ve Azure AD Koşullu Erişim ilkelerini azaltmak için kullanılır.\n[Daha fazla bilgi][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
- "namedNetworksIncludeLabel": "{0} eklendi",
- "namedNetworksNone": "Adlandırılmış konum bulunamadı.",
- "namedNetworksTitle": "Konumları yapılandırın",
- "namednetworkExceedingSizeErrorBladeTitle": "Hata ayrıntıları",
- "namednetworkExceedingSizeErrorDetailText": "Daha fazla ayrıntı için buraya tıklayın.",
- "namednetworkExceedingSizeErrorMessage": "Adlandırılmış konumlar için izin verilen en fazla depolama boyutu aşıldı. Daha kısa bir listeyle tekrar deneyin. Daha fazla ayrıntı görüntülemek için buraya tıklayın.",
- "newCertName": "yeni sertifika",
- "noPolicyRowMessage": "İlke yok",
- "noSPSelected": "Hiç bir hizmet sorumlusu seçilmedi",
- "noUpdatePermissionMessage": "Bu ayarları güncelleştirme izniniz yok. Erişim elde etmek için genel yöneticinize başvurun.",
- "noUserSelected": "Kullanıcı seçilmedi",
- "noneRisk": "Risk yok",
- "office365Description": "Bu uygulamalar Microsoft Flow, Microsoft Forms, Microsoft Teams, Office 365 Exchange Online, Office 365 SharePoint Online, Office 365 Yammer ve diğerleridir.",
- "office365InfoBox": "Seçilen uygulamalardan en az biri Office 365'in parçası. Bunun yerine Office 365'te ilke ayarlamanızı öneririz.",
- "oneUserSelected": "1 kullanıcı seçildi",
- "onlyGlobalAdminsCanSaveThisPolicyConfig": "Bu ilkeyi yalnızca genel yöneticiler kaydedebilir.",
- "or": "{0} VEYA {1} ",
- "pickerDoneCommand": "Bitti",
- "policiesBladeAdPremiumUpsellBannerText": "Azure AD Premium ile kendi ilkelerinize ek olarak Bulut uygulamaları, Oturum açma riski, Cihaz platformları gibi hedefe yönelik koşullar oluşturun",
- "policiesBladeTitle": "İlkeler",
- "policiesBladeTitleWithAppName": "İlkeler: {0}",
- "policiesDisabledBannerText": "Bağlı oturum açma özniteliğine sahip uygulamalarda ilke oluşturma ve düzenleme özelliği yasaklanmış.",
- "policiesHitMaxLimitStatusBarMessage": "Bu kiracı için en fazla ilke sayısına ulaştınız. Daha fazla oluşturmadan önce bazı ilkeleri silin.",
- "policyAssignmentsSection": "Atamalar",
- "policyBlockAllInfoBox": "Yapılandırılan ilke tüm kullanıcıları engelleyeceğinden desteklenmiyor. Atamaları ve denetimleri gözden geçirin. Bu ilkeyi kaydetmek istiyorsanız geçerli {0} kullanıcısını hariç tutun.",
- "policyCloudAppsDisplayTextAllApp": "Tüm uygulamalar",
- "policyCloudAppsLabel": "Bulut uygulamaları",
- "policyConditionClientAppDescription": "Kullanıcının bulut uygulamasına erişmek için kullandığı yazılım. Örneğin, 'Tarayıcı'",
- "policyConditionClientAppV2Description": "Kullanıcının bulut uygulamasına erişmek için kullandığı yazılım. Örneğin, 'Tarayıcı'",
- "policyConditionDevicePlatform": "Cihaz platformları",
- "policyConditionDevicePlatformDescription": "Kullanıcının oturum açtığı platform. Örneğin, 'iOS'",
- "policyConditionLocation": "Konumlar",
- "policyConditionLocationDescription": "Kullanıcının oturum açtığı konum (IP adresi aralığı kullanılarak belirlenir)",
- "policyConditionSigninRisk": "Oturum açma riski",
- "policyConditionSigninRiskDescription": "Oturum açma eyleminin, hesabın kullanıcısı dışındaki biri tarafından gerçekleştirilme olasılığı. Risk düzeyi yüksek, orta veya düşük olabilir. Azure AD Premium 2 lisansı gerektirir.",
- "policyConditionUserRisk": "Kullanıcı riski",
- "policyConditionUserRiskDescription": "İlkenin zorlanması için gereken kullanıcı risk düzeylerini yapılandırın",
- "policyConditioniClientApp": "İstemci uygulamaları",
- "policyConditioniClientAppV2": "İstemci uygulamaları (Önizleme)",
- "policyControlAllowAccessDisplayedName": "Erişim izni ver",
- "policyControlAuthenticationStrengthDisplayedName": "Kimlik doğrulaması gücü gerektir (Önizleme)",
- "policyControlBladeTitle": "Erişim İzni Verme",
- "policyControlBlockAccessDisplayedName": "Erişimi engelle",
- "policyControlCompliantDeviceDisplayedName": "Cihazın uyumlu olarak işaretlenmesini gerektir",
- "policyControlContentDescription": "Erişimi engellemek veya erişim izni vermek için erişim zorlamasını denetleyin.",
- "policyControlInfoBallonText": "Erişimi engelleyin veya erişim izni vermek için karşılanması gereken ek gereksinimleri seçin",
- "policyControlMfaChallengeDisplayedName": "Çok faktörlü kimlik doğrulaması gerektir",
- "policyControlRequireCompliantAppDisplayedName": "Uygulama koruma ilkesi iste",
- "policyControlRequireDomainJoinedDisplayedName": "Hibrit Azure AD ile katılmayı zorunlu kılın",
- "policyControlRequireMamDisplayedName": "Onaylı istemci uygulaması gerektir",
- "policyControlRequiredPasswordChangeDisplayedName": "Parola değişikliği iste",
- "policyControlSelectAuthStrength": "Kimlik doğrulaması gücü gerektir",
- "policyControlsNoControlsSelected": "0 denetim seçili",
- "policyControlsSection": "Erişim denetimleri",
- "policyCreatBladeTitle": "Yeni",
- "policyCreateButton": "Oluştur",
- "policyCreateFailedMessage": "Hata: {0}",
- "policyCreateFailedTitle": "'{0}' oluşturulamadı",
- "policyCreateInProgressTitle": "'{0}' oluşturuluyor",
- "policyCreateSuccessMessage": "'{0}' başarıyla oluşturuldu. \"İlkeyi etkinleştir\" seçeneğini \"Açık\" olarak ayarladıysanız ilke birkaç dakika içinde etkinleştirilecektir.",
- "policyCreateSuccessTitle": "'{0}' başarıyla oluşturuldu",
- "policyDeleteConfirmation": "'{0}' adlı ağı silmek istediğinizden emin misiniz? Bu eylem geri alınamaz.",
- "policyDeleteFailTitle": "'{0}' silinemedi",
- "policyDeleteInProgressTitle": "{0} siliniyor",
- "policyDeleteSuccessTitle": "'{0}' başarıyla silindi.",
- "policyEnforceLabel": "İlkeyi etkinleştir",
- "policyErrorCannotSetSigninRisk": "Oturum açma riski koşuluna sahip bir ilkeyi kaydetme izniniz yok.",
- "policyErrorNoPermission": "İlkeyi kaydetmek için izniniz yok. Genel yöneticinizle iletişime geçin.",
- "policyErrorUnknown": "Bir sorun oluştu, lütfen daha sonra yeniden deneyin.",
- "policyFallbackWarningMessage": "MS Graph kullanarak '{0}' ilkesini oluşturma veya güncelleştirme işlemi başarısız oluyor ve AD Graph’e geri dönme sonucu veriyor. Büyük olasılıkla MS Graph için uyumsuz bir koşulla ilke uç noktası çağrılırken hata oluştuğundan, lütfen aşağıdaki senaryoyu araştırın.",
- "policyFallbackWarningTitle": "'{0}' ilkesini oluşturma veya güncelleştirme işlemi kısmen başarılı oldu",
- "policyNameCannotBeEmpty": "İlke adı boş olamaz",
- "policyNameDevice": "Cihaz ilkesi",
- "policyNameFormat": "[{0}] {1}",
- "policyNameMam": "Mobil Uygulama Yönetimi ilkesi",
- "policyNameMfaLocation": "MFA ve konum ilkesi",
- "policyNamePlaceholderText": "Örnek: 'Cihaz uyumluluğu uygulama ilkesi'",
- "policyNameTooLongError": "İlke adı çok uzun. En fazla 256 karakter uzunluğunda olabilir",
- "policyOff": "Kapalı",
- "policyOn": "Açık",
- "policyReportOnly": "Yalnızca rapor",
- "policyReviewSection": "Gözden Geçir",
- "policySaveButton": "Kaydet",
- "policyStatusIconDescription": "İlke Etkin",
- "policyStatusIconEnabled": "Etkinleştirildi durum simgesi",
- "policyTemplateName1": "{0} tarayıcı erişiminde uygulama tarafından zorlanan kısıtlamalar kullan",
- "policyTemplateName2": "{0} erişimine yalnızca yönetilen cihazlarda izin ver",
- "policyTemplateName3": "Sürekli Erişim Değerlendirmesi ayarlarından geçirilen ilke",
- "policyTriggerRiskSpecific": "Özel risk düzeyi seçin",
- "policyTriggersInfoBalloonText": "İlkenin geçerli olacağı zamanı tanımlayan koşullar. Örneğin, 'konum'",
- "policyTriggersNoConditionsSelected": "0 koşul seçili",
- "policyTriggersSelectorLabel": "Koşullar",
- "policyUpdateFailedMessage": "Hata: {0}",
- "policyUpdateFailedTitle": "{0} güncelleştirilemedi",
- "policyUpdateInProgressTitle": "{0} güncelleştiriliyor",
- "policyUpdateSuccessMessage": "{0} başarıyla güncelleştirildi. \"İlkeyi etkinleştir\" seçeneğini \"Açık\" olarak ayarladıysanız ilke birkaç dakika içinde etkinleştirilecektir.",
- "policyUpdateSuccessTitle": "{0} başarıyla güncelleştirildi",
- "primaryCol": "Birincil",
- "privateLinkLabel": "Azure AD Özel Bağlantı",
- "reportOnlyInfoBox": "Yalnızca rapor modu: İlkeler oturum açma sırasında değerlendirilir ve kaydedilir ancak kullanıcıları etkilemez.",
- "requireAllControlsText": "Seçilen tüm denetimleri gerekli kıl",
- "requireCompliantDevice": "Uyumlu cihaz gerektir",
- "requireDomainJoined": "Etki alanına katılmış cihaz gerektir",
- "requireMFA": "Çok faktörlü kimlik doğrulamasını gerektir ",
- "requireOneControlText": "Seçilen denetimlerden birini gerekli kıl",
- "resetFilters": "Filtreleri sıfırla",
- "sPRequired": "Hizmet sorumlusu gerekiyor",
- "sPSelectorInfoBalloon": "Sınamak istediğiniz Kullanıcı veya Hizmet Sorumlusu",
- "saturday": "Cumartesi",
- "searchTextTooLongError": "Arama metni çok uzun. En fazla 256 karakter",
- "securityDefaultsPolicyName": "Güvenlik varsayılanları",
- "securityDefaultsTextMessage": "Koşullu Erişim ilkesini etkinleştirmek için güvenlik varsayılanları devre dışı bırakılmalıdır.",
- "securityDefaultsWarningMessage": "Kuruluşunuzun güvenlik yapılandırmalarını yönetmek üzeresiniz gibi görünüyor. Mükemmel! Bir Koşullu Erişim ilkesini etkinleştirmeden önce Güvenlik varsayılanlarını devre dışı bırakmanız gerekir.",
- "selectDevicePlatforms": "Cihaz platformlarını seçin",
- "selectNamedNetworksSubtitle": "",
- "selectNamedNetworksTitle": "Konumları seç",
- "selectedSP": "Seçili Hizmet sorumlusu",
- "servicePrincipalDataGridAria": "Kullanılabilir hizmet sorumlularının listesi",
- "servicePrincipalDropDownLabel": "Bu ilke nereye uygulanacak?",
- "servicePrincipalInfoBox": "İlke atamasındaki '{0}' seçimi nedeniyle bazı koşullar kullanılamıyor",
- "servicePrincipalRadioAll": "Sahip olunan tüm hizmet sorumluları",
- "servicePrincipalRadioSelect": "Hizmet sorumlularını seçin",
- "servicePrincipalSelectionsAria": "Seçili hizmet sorumluları kılavuzu",
- "servicePrincipalSelectorAria": "Seçilen hizmet sorumlularının listesi",
- "servicePrincipalSelectorMultiple": "{0} hizmet sorumlusu seçildi",
- "servicePrincipalSelectorSingle": "1 hizmet sorumlusu seçildi",
- "servicePrincipalSpecificInc": "Eklenen belirli hizmet sorumluları",
- "servicePrincipals": "Hizmet sorumluları",
- "sessionControlBladeTitle": "Oturum",
- "sessionControlDescriptionContent": "Belirli bulut uygulamalarında sınırlı deneyimler sağlamak için erişimi oturum denetimlerini temel alarak denetleyin.",
- "sessionControlDisableInfo": "Bu denetim yalnızca desteklenen uygulamalarda kullanılabilir. Şu anda uygulama tarafından zorlanan kısıtlamaları destekleyen bulut uygulamaları yalnızca Office 365, Exchange Online ve SharePoint Online'dır. Daha fazla bilgi edinmek için buraya tıklayın.",
- "sessionControlInfoBallonText": "Oturum denetimleri, bulut uygulaması içinde sınırlı deneyim sağlar.",
- "sessionControls": "Oturum denetimleri",
- "sessionControlsAppEnforcedLabel": "Uygulama tarafından zorlanan kısıtlamaları kullan",
- "sessionControlsCasLabel": "Koşullu Erişim Uygulama Denetimi kullanın",
- "sessionControlsSecureSignInLabel": "Belirteç bağlaması gerektir",
- "sharepointAppName": "SharePoint",
- "signinRiskDescription": "Bu ilkenin uygulanacağı oturum açma risk düzeyini seçin",
- "signinRiskInclude": "{0} eklendi",
- "signinRiskTriggerDescriptionContent": "Oturum açma risk düzeyini seçin",
- "singleTenantServicePrincipalInfoBallonText": "İlke yalnızca kuruluşunuza ait tek kiracılı hizmet sorumluları için geçerlidir. Daha fazla bilgi edinmek için buraya tıklayın ",
- "specificSigninRiskLevelsOption": "Belirli oturum açma risk düzeyleri seçin",
- "specificUsersExcluded": "belirli kullanıcılar hariç",
- "specificUsersIncluded": "Belirli kullanıcılar dahil",
- "specificUsersIncludedAndExcluded": "Dışarıda bırakılan ve dahil edilen belirli kullanıcılar",
- "startDatePickerLabel": "Başlangıç",
- "startFreeTrial": "Ücretsiz bir deneme başlatın",
- "startTimePickerLabel": "Başlangıç zamanı",
- "sunday": "Pazar",
- "testButton": "What If",
- "thumbprintCol": "Parmak İzi",
- "thursday": "Perşembe",
- "timeConditionAllTimesLabel": "Her zaman",
- "timeConditionIntroText": "Bu ilkenin uygulanacağı zamanı yapılandırın",
- "timeConditionSelectorInfoBallonContent": "Kullanıcı oturum açarken. Örneğin, \"Çarşamba 09:00-17:00 PST\"",
- "timeConditionSelectorLabel": "Zaman (Önizleme)",
- "timeConditionSpecificLabel": "Belirli saatler",
- "timeSelectorAllTimesText": "Her zaman",
- "timeSelectorSpecificTimesText": "Yapılandırılan belirli saatlerde",
- "timeZoneDropdownInfoBalloonContent": "Zaman aralığını tanımlayan bir saat dilimi seçin. Bu ilke, tüm saat dilimlerindeki kullanıcılar için geçerlidir. Örneğin, bir kullanıcı için 'Çarşamba 09:00 - 17:00' zaman aralığı, farklı bir saat dilimindeki bir kullanıcı için 'Çarşamba 10:00 - 18:00' olur.",
- "timeZoneDropdownLabel": "Saat dilimi",
- "timeZoneDropdownPlaceholderText": "Saat dilimi seçin",
- "tooManyPoliciesDescription": "Şu anda yalnızca ilk 50 ilke görüntüleniyor, tüm ilkeleri görüntülemek için buraya tıklayın",
- "tooManyPoliciesTitle": "50'den fazla ilke bulundu",
- "trustedLocationStatusIconDescription": "Konuma güveniliyor",
- "trustedLocationStatusIconEnabled": "Güvenilen durum simgesi",
- "tuesday": "Salı",
- "uploadInBadState": "Belirtilen dosya karşıya yüklenemiyor.",
- "upsellAppsDescription": "Hassas uygulamalar için, her zaman veya yalnızca şirket ağının dışından erişim sağlandığı durumlarda çok faktörlü kimlik doğrulaması gerektirin.",
- "upsellAppsTitle": "Uygulamaları güvenli hale getirin",
- "upsellBannerText": "Bu özelliği kullanmak için ücretsiz bir Premium deneme sürümü edinin",
- "upsellDataDescription": "Şirket kaynaklarına erişim izni vermek için, cihazın uyumlu olarak işaretlenmesini veya Hibrit Azure AD ile katılmayı zorunlu kılın.",
- "upsellDataTitle": "Verileri güvenli hale getirin",
- "upsellDescription": "Koşullu Erişim sayesinde, kullanıcılarınıza tüm cihazlardan en iyi şekilde çalışma olanağı sağlarken aynı zamanda kurumsal verilerinizi güvende tutmanız için gereken denetim ve korumaya sahip olursunuz. Örneğin, şirket ağı dışından gerçekleştirilen ya da uyumluluk ilkelerini karşılayan cihazlara yönelik erişimi engelleyebilirsiniz.",
- "upsellRiskDescription": "Microsoft’un makine öğrenmesi sistemi tarafından algılanan risk olayları için çok faktörlü kimlik doğrulaması isteyin.",
- "upsellRiskTitle": "Riske karşı koruma sağlayın",
- "upsellTitle": "Koşullu Erişim",
- "upsellWhyTitle": "Koşullu Erişim neden kullanılmalıdır?",
- "userAppNoneOption": "Yok",
- "userNamePlaceholderText": "Kullanıcı Adını Girin",
- "userNotSetSeletorLabel": "0 kullanıcı ve grup seçili",
- "userOnlySelectionBladeExcludeDescription": "İlkenin dışında tutulacak kullanıcıları seçin",
- "userOrGroupSelectionCountDiffBannerText": "Bu ilkede yapılandırılan {0} dizinden silinmiş ancak bu durum, ilkedeki diğer kullanıcıları ve grupları etkilemiyor. Bir sonraki ilke güncelleştirmenizde, silinen kullanıcılar ve/veya gruplar otomatik olarak kaldırılır.",
- "userOrSPNotSetSelectorLabel": "0 kullanıcı veya iş yükü kimliği seçildi",
- "userOrSPSelectionBladeTitle": "Kullanıcılar veya iş yükü kimlikleri",
- "userOrSPSelectorInfoBallonText": "Kullanıcılar, gruplar ve hizmet sorumluları dahil olmak üzere, ilkenin uygulandığı dizindeki kimlikler",
- "userRequired": "Kullanıcı Gerekli",
- "userRiskErrorBox": "\"Parola değişikliği iste\" izni seçildiğinde \"Kullanıcı riski\" koşulu seçilmelidir",
- "userSPRequired": "Kullanıcı veya Hizmet sorumlusu gerekiyor",
- "userSPSelectorTitle": "Kullanıcı veya İş yükü kimliği",
- "userSelectionBladeAllUsersAndGroups": "Tüm kullanıcılar ve gruplar",
- "userSelectionBladeExcludeDescription": "İlkenin dışında tutulacak kullanıcıları ve grupları seçin",
- "userSelectionBladeExcludeTabTitle": "Dışla",
- "userSelectionBladeExcludedSelectorTitle": "Dışlanacak kullanıcıları seçin",
- "userSelectionBladeIncludeDescription": "Bu ilkenin uygulanacağı kullanıcıları seçin",
- "userSelectionBladeIncludeTabTitle": "Ekle",
- "userSelectionBladeIncludedSelectorTitle": "Seç",
- "userSelectionBladeSelectUsers": "Kullanıcıları seçin",
- "userSelectionBladeSelectedUsers": "Kullanıcı ve grupları seçin",
- "userSelectionBladeTitle": "Kullanıcılar ve gruplar",
- "userSelectorBladeTitle": "Kullanıcılar",
- "userSelectorExcluded": "{0} dışarıda bırakıldı",
- "userSelectorGroupPlural": "{0} grup",
- "userSelectorGroupSingular": "1 grup",
- "userSelectorIncluded": "{0} eklendi",
- "userSelectorInfoBallonText": "İlkenin uygulandığı dizindeki kullanıcılar ve gruplar. Örneğin, 'Pilot grup'",
- "userSelectorSelected": "{0} seçildi",
- "userSelectorTitle": "Kullanıcı",
- "userSelectorUserAndGroup": "{0}, {1}",
- "userSelectorUserPlural": "{0} kullanıcı",
- "userSelectorUserSingular": "1 kullanıcı",
- "userSelectorWithExclusion": "{0} ve {1}",
- "usersGroupsLabel": "Kullanıcılar ve gruplar",
- "viewApprovedAppsText": "Onaylı istemci uygulamalarının listesini görün",
- "viewCompliantAppsText": "İlke korumalı istemci uygulamalarının listesini görün",
- "vpnBladeTitle": "VPN bağlantısı",
- "vpnCertCreateFailedMessage": "Hata: {0}",
- "vpnCertCreateFailedTitle": "{0} oluşturulamadı",
- "vpnCertCreateInProgressTitle": "{0} oluşturuluyor",
- "vpnCertCreateSuccessMessage": "{0} başarıyla oluşturuldu.",
- "vpnCertCreateSuccessTitle": "{0} başarıyla oluşturuldu",
- "vpnCertNoRowsMessage": "VPN sertifikası bulunamadı",
- "vpnCertUpdateFailedMessage": "Hata: {0}",
- "vpnCertUpdateFailedTitle": "{0} güncelleştirilemedi",
- "vpnCertUpdateInProgressTitle": "{0} güncelleştiriliyor",
- "vpnCertUpdateSuccessMessage": "{0} başarıyla güncelleştirildi.",
- "vpnCertUpdateSuccessTitle": "{0} başarıyla güncelleştirildi",
- "vpnFeatureInfo": "VPN bağlantısı ve Koşullu Erişim hakkında daha fazla bilgi için buraya tıklayın.",
- "vpnFeatureWarning": "Azure portalında bir VPN sertifikası oluşturulduğunda Azure AD, VPN istemcisine kısa süreli sertifikalar vermek için bunu hemen kullanmaya başlar. VPN istemcisinin kimlik doğrulamasıyla ilgili sorunları önlemek için VPN sertifikasının VPN sunucusuna hızla dağıtılması önemlidir.",
- "vpnMenuText": "VPN bağlantısı",
- "vpncertDropdownDefaultOption": "Süre",
- "vpncertDropdownInfoBalloonContent": "Oluşturmak istediğiniz sertifikanın süresini seçin",
- "vpncertDropdownLabel": "Süre seçin",
- "vpncertDropdownOneyearOption": "1 yıl",
- "vpncertDropdownThreeyearOption": "3 yıl",
- "vpncertDropdownTwoyearOption": "2 yıl",
- "wednesday": "Çarşamba",
- "whatIfAppEnforcedControl": "Uygulama tarafından zorlanan kısıtlamaları kullan",
- "whatIfBladeDescription": "Belirli koşullarda oturum açılırken Koşullu Erişimin bir kullanıcı üzerindeki etkisini test edin.",
- "whatIfBladeTitle": "What If",
- "whatIfClassicPoliciesWarning": "Klasik ilkeler bu araç tarafından değerlendirilmez.",
- "whatIfClientAppInfo": "Kullanıcının oturum açmak için kullandığı istemci uygulaması. Örneğin, 'Tarayıcı'.",
- "whatIfCountry": "Ülke",
- "whatIfCountryInfo": "Kullanıcının oturum açtığı ülke.",
- "whatIfDevicePlatformInfo": "Kullanıcının oturum açmak için kullandığı cihaz platformu.",
- "whatIfDeviceStateInfo": "Kullanıcının oturum açmak için kullandığı cihazın durumu",
- "whatIfEnterIpAddress": "IP adresi girin (ör: 40.77.182.32)",
- "whatIfErrorInvalidIpAddress": "Geçersiz IP adresi belirtildi.",
- "whatIfEvaResultApplication": "Bulut uygulamaları",
- "whatIfEvaResultClientApps": "İstemci uygulaması",
- "whatIfEvaResultDevicePlatform": "Cihaz platformu",
- "whatIfEvaResultEmptyPolicy": "Boş ilke",
- "whatIfEvaResultInvalidCondition": "Geçersiz koşul",
- "whatIfEvaResultInvalidPolicy": "Geçersiz ilke",
- "whatIfEvaResultLocation": "Konum",
- "whatIfEvaResultNotEnoughInformation": "Yeterli bilgi yok",
- "whatIfEvaResultPolicyNotEnabled": "İlke etkin değil",
- "whatIfEvaResultSignInRisk": "Oturum açma riski",
- "whatIfEvaResultUsers": "Kullanıcılar ve gruplar",
- "whatIfIpAddress": "IP adresi",
- "whatIfIpAddressInfo": "Kullanıcının oturum açtığı konumun IP adresi.",
- "whatIfIpCountryInfoBoxText": "IP adresi veya Ülke kullanıyorsanız, her iki alan gereklidir ve birlikte doğru eşlenmelidir.",
- "whatIfPolicyAppliesTab": "Uygulanacak ilkeler",
- "whatIfPolicyDoesNotApplyTab": "Uygulanmayacak ilkeler",
- "whatIfReasons": "Bu ilkenin uygulanmama nedenleri",
- "whatIfSelectClientApp": "Bir istemci uygulaması seçin...",
- "whatIfSelectCountry": "Ülke seçin...",
- "whatIfSelectDevicePlatform": "Cihaz platformunu seçin...",
- "whatIfSelectPrivateLink": "Özel bağlantı seçin...",
- "whatIfSelectServicePrincipalRisk": "Hizmet sorumlusu riskini seçin...",
- "whatIfSelectSignInRisk": "Oturum açma riskini seçin...",
- "whatIfSelectType": "Kimlik türünü seçin",
- "whatIfSelectUserRisk": "Kullanıcı riskini seçin...",
- "whatIfServicePrincipalRiskInfo": "Hizmet sorumlusuyla ilişkili risk düzeyi",
- "whatIfSignInRisk": "Oturum açma riski",
- "whatIfSignInRiskInfo": "Oturum açma ile ilişkili risk düzeyi",
- "whatIfUnknownAreas": "Bilinmeyen Alanlar",
- "whatIfUserPickerLabel": "Seçili kullanıcı",
- "whatIfUserPickerNoRowsLabel": "Kullanıcı veya hizmet sorumlusu seçilmedi",
- "whatIfUserRiskInfo": "Kullanıcı ile ilişkili risk düzeyi",
- "whatIfUserSelectorInfo": "Dizinde bulunan ve test etmek istediğiniz kullanıcı",
- "windows365InfoBox": "Windows 365’in seçilmesi Bulut PC’lere ve Azure Sanal Masaüstü oturumu ana bilgisayarlarına bağlantıları etkiler. Daha fazla bilgi edinmek için buraya tıklayın.",
- "windowsDisplayName": "Windows",
- "windowsPhoneDisplayName": "Windows Phone",
- "workloadIdentities": "İş yükü kimlikleri (Önizleme)",
- "workloadIdentity": "İş yükü kimliği"
- },
- "ApplicableDeviceType": {
- "iPad": "iPad",
- "iPhoneAndIPod": "iPhone ve iPod"
- },
- "TAPSettings": {
- "AllowedDataIngestionLocations": {
- "label": "Kullanıcıların seçili hizmetlerden veri açmasına izin ver",
- "tooltip": "Kullanıcıların verileri açabileceği uygulama depolama hizmetlerini seçin. Diğer tüm hizmetler engellenir. Hizmet seçilmemesi, kullanıcıların verileri açmasını engeller."
- },
- "AndroidBackup": {
- "label": "Kuruluş verilerini Android yedekleme hizmetlerine yedekleme",
- "tooltip": "Kuruluş verilerinin Android yedekleme hizmetlerine yedeklenmesini engellemek için {0} seçeneğini belirleyin. \r\nKuruluş verilerinin Android yedekleme hizmetlerine yedeklenmesine izin vermek için {1} seçeneğini belirleyin. \r\nKişisel veya yönetilmeyen veriler bu ayardan etkilenmez."
- },
- "AndroidBiometricAuthentication": {
- "label": "Erişim için PIN yerine biyometri",
- "tooltip": "Varsa, kullanıcıların uygulama PIN'i yerine kullanabileceği Android kimlik doğrulaması yöntemlerini seçin."
- },
- "AndroidFingerprint": {
- "label": "Erişim için PIN yerine parmak izi (Android 6.0+)",
- "tooltip": "Android işletim sistemi, Android cihaz kullanıcılarının kimliğini doğrulamak için parmak izi taramalarını kullanır. Bu özellik, Android cihazlardaki yerel biyometrik denetimleri destekler. Samsung Geçiş İzni gibi OEM'ye özgü biyometrik ayarlar desteklenmez. İzin verilirse, biyometrik denetimi olan bir cihazda uygulamaya erişmek için bu yerel biyometrik denetimler kullanılmalıdır."
- },
- "AndroidOverrideFingerprint": {
- "label": "Zaman aşımından sonra parmak izini PIN ile geçersiz kıl"
- },
- "AppPIN": {
- "label": "Cihaz PIN'i ayarlı olduğunda uygulama PIN'i",
- "tooltip": "Gerekli değilse, MDM kayıtlı bir cihazda cihaz PIN’i ayarlıysa uygulamaya erişmek için bir uygulama PIN’i kullanılması gerekmez.
\r\n\r\nNot: Intune, Android’de üçüncü taraf bir EMM çözümüyle yapılan cihaz kaydını algılayamaz."
- },
- "BlockDataIngestionIntoOrganizationDocuments": {
- "label": "Verileri Kuruluş belgelerine aç",
- "tooltip1": "Aç seçeneğinin veya bu uygulamadaki hesaplar arasında veri paylaşmayı sağlayan diğer seçeneklerin kullanımını devre dışı bırakmak için Engelle'yi seçin. Aç seçeneğinin veya bu uygulamadaki hesaplar arasında veri paylaşmayı sağlayan diğer seçeneklerin kullanımına izin vermek istiyorsanız İzin ver'i seçin.",
- "tooltip2": "Engelle olarak ayarlandığında, Kullanıcının seçili hizmetlerden veri açmasına izin ver ayarını Kuruluş veri konumları için hangi hizmetlere izin verileceğini belirleyecek şekilde yapılandırabilirsiniz.",
- "tooltip3": "Not: Bu ayar yalnızca \"Diğer uygulamalardan veri al\" ayarı \"İlke tarafından yönetilen uygulamalar\" olarak belirlendiğinde uygulanır.
\r\nNot: Bu ayar tüm uygulamalar için geçerli değildir. Daha fazla bilgi için bkz. {0}.",
- "tooltip4": "Not: Bu ayar yalnızca \"Diğer uygulamalardan veri al\" ayarı \"İlke tarafından yönetilen uygulamalar\" olarak belirlendiğinde uygulanır.
\r\nNot: Bu ayar tüm uygulamalar için geçerli değildir. Daha fazla bilgi için bkz. {0} veya {0}."
- },
- "ConnectToVpnOnLaunch": {
- "label": "Uygulama başlatılınca Microsoft Tunnel bağlantısını başlat.",
- "tooltip": "Uygulama başlatılırken VPN bağlantısına izin ver."
- },
- "CredentialsForAccess": {
- "label": "Erişim için iş veya okul hesabı kimlik bilgileri",
- "tooltip": "İstenirse, ilkeyle yönetilen uygulamaya erişmek için iş veya okul kimlik bilgilerinin kullanılması gerekir. Uygulamaya erişmek için ayrıca PIN veya biyometrik yöntemler gerekirse, bu istemlere ek olarak iş veya okul hesabı kimlik bilgileri de istenir."
- },
- "CustomBrowserDisplayName": {
- "label": "Yönetilmeyen Tarayıcı Adı",
- "tooltip": "\"Yönetilmeyen Tarayıcı Kimliği\" ile ilişkili tarayıcı için uygulama adını girin. Belirtilen tarayıcı yüklü değilse kullanıcılara bu ad görüntülenir."
- },
- "CustomBrowserPackageId": {
- "label": "Yönetilmeyen Tarayıcı Kimliği",
- "tooltip": "Tek bir tarayıcının uygulama kimliğini girin. İlkeyle yönetilen uygulamaların Web içeriği (http/s) belirtilen tarayıcıda açılır."
- },
- "CustomBrowserProtocol": {
- "label": "Yönetilmeyen tarayıcı protokolü",
- "tooltip": "Tek bir yönetilmeyen tarayıcı için protokol girin. İlkeyle yönetilen uygulamaların web içeriği (http/s) bu protokolü destekleyen herhangi bir uygulamada açılır.
\r\n \r\nNot: Yalnızca protokol ön ekini ekleyin. Tarayıcınız \"tarayıcım://www.microsoft.com\" biçiminde bağlantılar gerektiriyorsa \"tarayıcım\" yazın.
"
- },
- "CustomDialerAppDisplayName": {
- "label": "Numara Çevirici Uygulaması Adı"
- },
- "CustomDialerAppPackageId": {
- "label": "Numara Çevirici Uygulaması Paket Kimliği"
- },
- "CustomDialerAppProtocol": {
- "label": "Numara Çevirici Uygulaması URL Şeması"
- },
- "Cutcopypaste": {
- "label": "Diğer uygulamalar arasında kesme, kopyalama ve yapıştırmayı kısıtla",
- "tooltip": "Uygulamanız ve cihaza yüklü diğer onaylı uygulamalar arasında veri kesin, kopyalayın ve yapıştırın. Uygulamalar arasında bu eylemleri tamamen engelleme, bunların herhangi bir uygulamada kullanılmasına izin verme veya kuruluşunuzun yönettiği uygulamaların kullanımını kısıtlama arasında bir seçim yapın.
\r\n\r\nİçine yapıştıracağınız ilkeyle yönetilen uygulamalar başka bir uygulamadan yapıştırılmış gelen içeriği kabul etme seçeneği sunar. Ancak yönetilen bir uygulamayla paylaşılmıyorsa, kullanıcıların içeriği dolaysız olarak paylaşmasını engeller.
"
- },
- "DialerRestrictionLevel": {
- "iosTooltip": "Genellikle kullanıcı, uygulamada bağlantılı bir telefon numarası seçtiğinde çevirici uygulaması önceden doldurulan telefon numarasıyla ve aramaya hazır şekilde açılır. Bu ayar için bu tür içerik aktarımı ilke tarafından yönetilen bir uygulamadan başlatıldığında bu aktarımın nasıl işleneceğini seçin. Bu ayarın etkili olması için ek adımlar gerekebilir. İlk olarak, listeyi hariç tutmak için telefonun ve telefon isteminin Uygulama seç bölümünden kaldırıldığını doğrulayın. Daha sonra uygulamanın, Intune SDK'sının daha yeni bir sürümünü (12.7.0 üzeri bir sürüm) kullandığından emin olun.",
- "label": "İletişim verilerini şuraya aktar:",
- "tooltip": "Genellikle kullanıcı uygulamada köprü biçimindeki bir telefon numarası seçtiğinde, önceden doldurulmuş telefon numarasıyla arama yapmaya hazır bir çevirici uygulaması açılır. Bu ayar için ilke tarafından yönetilen bir uygulamadan bu tür içerik aktarımı başlatıldığında bu aktarımın nasıl yönetileceğini seçin."
- },
- "EncryptData": {
- "label": "Kuruluş verilerini şifrele",
- "link": "https://docs.microsoft.com/en-us/intune/app-protection-policy-settings-android#data-relocation-settings",
- "tooltip": "Kuruluş verilerini Intune uygulama katmanı şifrelemesiyle şifrelemeyi zorunlu kılmak için {0} seçeneğini belirleyin.\r\n
\r\nKuruluş verilerini Intune uygulama katmanı şifrelemesi ile şifrelemeyi zorunlu kılmamak için {1} seçeneğini belirleyin.\r\n\r\n
\r\nNot: Intune uygulama katmanı şifrelemesi hakkında daha fazla bilgi için bkz. {2}."
- },
- "EncryptDataAndroid": {
- "tooltip": "Bu uygulamada iş veya okul verilerinin şifrelenmesini etkinleştirmek için Gerektir seçeneğini belirleyin. Intune, uygulama verilerini güvenle şifrelemek için Android Keystore sisteminin yanı sıra bir OpenSSL, 256 bit AES şifreleme düzenini kullanır. Veriler, dosya G/Ç görevleri sırasında eş zamanlı olarak şifrelenir. Cihaz depolamasındaki içerik her zaman şifrelenir. SDK, eski SDK sürümlerini kullanan içerik ve uygulamalarla uyumluluğu sürdürmek amacıyla 128 bit anahtar desteği sağlamaya devam eder.
\r\n\r\nŞifreleme yöntemi FIPS 140-2 uyumludur.
"
- },
- "EncryptDataIos": {
- "tooltip1": "Bu uygulamada iş veya okul verilerinin şifrelemesini etkinleştirmek için Gerektir seçeneğini belirleyin. Intune, cihaz kilitliyken uygulama verilerini korumak için iOS/iPadOS cihaz şifrelemesini zorunlu tutar. Uygulamalar, Intune APP SDK'sı şifrelemesini kullanarak isteğe bağlı olarak uygulama verilerini şifreleyebilir. Intune APP SDK'sı, uygulama verilerine 128 bit AES şifrelemesi uygulamak amacıyla iOS/iPadOS şifreleme yöntemlerini kullanır.",
- "tooltip2": "Bu ayarı etkinleştirdiğinizde, kullanıcının cihazına erişmek için bir PIN ayarlayıp bunu kullanması gerekir. Cihaz PIN'i yoksa ve şifreleme gerekliyse \"Kuruluşunuz bu uygulamaya erişebilmeniz için bir cihaz PIN'i etkinleştirmenizi gerektiriyor\" iletisiyle kullanıcıdan bir PIN ayarlaması istenir.",
- "tooltip3": "Hangi iOS şifreleme modüllerinin FIPS 140-2 uyumlu olduğunu veya FIPS 140-2 uyumluluğu beklediğini görmek için resmi Apple belgelerine gidin."
- },
- "EncryptDataOnEnrolledDevices": {
- "label": "Kuruluş verilerini kayıtlı cihazlarda şifrele",
- "tooltip": "Tüm cihazlarda kuruluş verilerini Intune uygulama katmanı şifrelemesi ile şifrelemeyi zorunlu kılmak için {0} seçeneğini belirleyin.
\r\n\r\nKayıtlı cihazlarda kuruluş verilerini Intune uygulama katmanı şifrelemesi ile şifrelemeyi zorunlu kılmamak için {1} seçeneğini belirleyin."
- },
- "IOSBackup": {
- "label": "Kuruluş verilerini iTunes ve iCloud yedeklerine yedekle",
- "tooltip": "Kuruluş verilerinin iTunes veya iCloud'a yedeklenmesini engellemek için {0} seçeneğini belirleyin. \r\nKuruluş verilerinin iTunes veya iCloud'a yedeklenmesine izin vermek için {1} seçeneğini belirleyin. \r\nKişisel veya yönetilmeyen veriler etkilenmez."
- },
- "IOSFaceID": {
- "label": "Erişim için PIN yerine Face ID (iOS 11+/iPadOS)",
- "tooltip": "Face ID, iOS/iPadOS cihazlarında kullanıcıların kimliklerini doğrulamak için yüz tanıma teknolojisi kullanır. Intune, kullanıcıların kimliğini Face ID kullanarak doğrulamak için LocalAuthentication API'sini çağırır. Bu ayara izin verilirse, uygulamaya Face ID özellikli bir cihazda erişmek için Face ID kullanılması gerekir."
- },
- "IOSOverrideTouchId": {
- "label": "Zaman aşımından sonra biyometriyi PIN ile geçersiz kıl"
- },
- "IOSTouchId": {
- "label": "Erişim için PIN yerine Touch ID (iOS 8+/iPadOS)",
- "tooltip": "Touch ID, iOS cihazlarında kullanıcıların kimliğini doğrulamak için parmak izi tanıma teknolojisi kullanır. Intune, kullanıcıların kimliklerini Touch ID kullanarak doğrulamak için LocalAuthentication API'sini çağırır. Bu ayara izin verilirse uygulamaya Touch ID özellikli bir cihazda erişmek için Touch ID kullanılması gerekir."
- },
- "NotificationRestriction": {
- "label": "Kuruluş verileri bildirimleri",
- "tooltip": "Bu uygulama ve giyilebilir cihazlar gibi bağlı cihazlar için kuruluş hesaplarına yönelik bildirimlerin nasıl gösterileceğini belirtmek üzere aşağıdaki seçeneklerden birini belirleyin:
\r\n{0}: Bildirimleri paylaşma.
\r\n{1}: Kuruluş verilerini bildirimlerde paylaşma. Uygulama tarafından desteklenmiyorsa bildirimler engellenir.
\r\n{2}: Tüm bildirimleri paylaş.
\r\n Yalnızca Android:\r\n Not: Bu ayar tüm uygulamalar için geçerli değildir. Daha fazla bilgi için bkz. {3}
\r\n \r\n Yalnızca iOS:\r\nNot: Bu ayar tüm uygulamalar için geçerli değildir. Daha fazla bilgi için bkz. {4}
"
- },
- "OpenLinksManagedBrowser": {
- "label": "Diğer uygulamalarla web içerik aktarımını kısıtla",
- "tooltip": "Bu uygulamanın, web içeriğini açabileceği uygulamaları belirtmek için şu seçeneklerden birini belirleyin:
\r\nMicrosoft Edge: Web içeriğinin yalnızca Microsoft Edge’de açılmasına izin ver
\r\nYönetilmeyen tarayıcı: Web içeriğinin yalnızca \"Yönetilmeyen tarayıcı protokolü\" ayarıyla tanımlanan yönetilmeyen tarayıcıda açılmasına izin verin.
\r\nTüm uygulamalar: Web bağlantılarının tüm uygulamalarda açılmasına izin ver
"
- },
- "OverrideBiometric": {
- "tooltip": "Gerekirse zaman aşımına (dakika olarak eylemsizlik süresi) bağlı olarak bir PIN istemi, biyometrik istemlerini geçersiz kılar. Bu zaman aşımı değerine ulaşılmazsa biyometrik istemi gösterilmeye devam eder. Bu zaman aşımı değeri, 'Erişim gereksinimlerini yeniden denetlemek için geçecek süre (dakika olarak eylemsizlik süresi)' altında belirtilen değerden büyük olmalıdır. "
- },
- "PinAccess": {
- "label": "Erişim için PIN",
- "tooltip": "Gerekirse ilke ile yönetilen uygulamaya erişmek için bir PIN kullanılması gerekir. Bir iş veya okul hesabından uygulamayı ilk kez açtıklarında kullanıcıların bir erişim PIN'i oluşturması gerekir."
- },
- "PinLength": {
- "label": "En düşük PIN uzunluğunu seçin",
- "tooltip": "Bu ayar bir PIN'de bulunması gereken en az rakam sayısını belirtir."
- },
- "PinType": {
- "label": "PIN türü",
- "tooltip": "Sayısal PIN'ler tamamen sayıdan oluşur. Geçiş kodları alfasayısal ve özel karakterlerden oluşur. "
- },
- "Printing": {
- "label": "Kuruluş verileri yazdırılıyor",
- "tooltip": "Engellenmişse, uygulama korumalı verileri yazdıramaz."
- },
- "ReceiveData": {
- "label": "Diğer uygulamalardan veri al",
- "tooltip": "Bu uygulamanın veri alabileceği uygulamaları belirtmek için aşağıdaki seçeneklerden birini belirleyin:
\r\n\r\nHiçbiri: Hiçbir uygulamadan kuruluş belgeleri veya hesaplarındaki verilerin alınmasına izin vermeyin
\r\n\r\nİlkeyle yönetilen uygulamalar: Kuruluş belgeleri veya hesaplarındaki verilerin yalnızca ilkeyle yönetilen diğer uygulamalardan alınmasına izin verin\r\n
\r\nGelen kuruluş verisi olan tüm uygulamalar: Kuruluş belgeleri veya hesaplarındaki verilerin tüm uygulamalardan alınmasına izin verin ve kullanıcı hesabı bulunmayan tüm gelen verileri kuruluş verisi olarak değerlendirin
\r\n\r\nTüm uygulamalar: Kuruluş belgeleri veya hesaplarındaki verilerin tüm uygulamalardan alınmasına izin verin"
- },
- "RecheckAccessAfter": {
- "label": "Erişim gereksinimlerini yeniden denetlemek için geçecek süre (dakika olarak eylemsizlik)\r\n\r\n",
- "tooltip": "İlkeyle yönetilen uygulama belirtilen dakika olarak eylemsizlik süresinden daha uzun bir süre eylemsiz kalırsa uygulama, başlatıldıktan sonra erişim gereksinimlerinin (yani PIN, koşullu başlatma ayarları) yeniden denetlenmesini ister."
- },
- "RestrictKeyboards": {
- "duplicatePackageError": "Paket kimliği benzersiz olmalıdır.",
- "invalidPackageError": "Geçersiz paket kimliği",
- "label": "Onaylanan klavyeler",
- "select": "Onaylanacak klavyeleri seçin",
- "subtitle": "Kullanıcıların hedeflenen uygulamalarla kullanmasına izin verilen tüm klavye ve giriş yöntemlerini ekleyin. Son kullanıcıya görünmesini istediğiniz klavye adını girin.",
- "title": "Onaylanan klavyeleri ekle",
- "toolTip": "Gerektir seçeneğini belirleyin ve ardından bu ilke için onaylanan klavyelerin bir listesini belirtin. Daha fazla bilgi."
- },
- "SaveData": {
- "label": "Kuruluş verilerinin kopyalarını kaydet",
- "tooltip": "Kuruluş verilerinin bir kopyasının \"Farklı Kaydet\" kullanılarak seçili depolama hizmetlerinden başka bir konuma kaydedilmesini engellemek için {0} seçeneğini belirleyin.\r\nKuruluş verilerinin \"Farklı Kaydet\" kullanılarak yeni bir konuma kaydedilmesine izin vermek için {1} seçeneğini belirleyin.
\r\n\r\n\r\nNot: Bu ayar tüm uygulamalar için geçerli değildir. Daha fazla bilgi için bkz. {2}.\r\n"
- },
- "SaveDataToSelected": {
- "label": "Kullanıcının seçili hizmetlere kopya kaydetmesine izin ver",
- "tooltip": "Kullanıcıların kuruluş verilerinin kopyalarını kaydedebileceği depolama hizmetlerini seçin. Diğer tüm hizmetler engellenir. Hizmet seçilmemesi, kullanıcıların kuruluş verilerinin bir kopyasını kaydetmesini engeller."
- },
- "ScreenCaptureAndAndroidAssistant": {
- "label": "Ekran yakalama ve Google Assistant\r\n",
- "tooltip": "Engellenirse ilkeyle yönetilen bir uygulama kullanılırken, ekran yakalama ve Google Assistant uygulama tarama özellikleri devre dışı bırakılır. Bu özellik bilinen Google Assistant uygulamasını destekler. Google'ın Assist API'sini kullanan üçüncü taraf yardımcılar desteklenmez. Engelle'yi seçmek ayrıca, uygulama bir iş veya okul hesabıyla kullanılırken Uygulama Geçişi önizleme görüntüsünü bulanıklaştırır."
- },
- "SendData": {
- "label": "Kuruluş verilerini diğer uygulamalara gönder",
- "tooltip": "Bu uygulamanın kuruluş verileri gönderebileceği uygulamaları belirtmek için aşağıdaki seçeneklerden birini belirleyin:
\r\n\r\n\r\nHiçbiri: Hiçbir uygulamaya kuruluş verilerinin gönderilmesine izin vermeyin
\r\n\r\n\r\nİlkeyle yönetilen uygulamalar: Yalnızca ilkeyle yönetilen diğer uygulamalara kuruluş verilerinin gönderilmesine izin verin
\r\n\r\n\r\nİşletim sistemi paylaşımlı, ilkeyle yönetilen uygulamalar: Yalnızca ilkeyle yönetilen diğer uygulamalara ve kayıtlı cihazlarda MDM yönetimli diğer uygulamalara kuruluş verilerinin gönderilmesine izin verin
\r\n\r\n\r\nBirlikte Aç/Paylaş filtrelemeli, ilkeyle yönetilen uygulamalar: Yalnızca ilkeyle yönetilen diğer uygulamalara kuruluş verilerinin gönderilmesine izin verin ve yalnızca ilkeyle yönetilen uygulamaları görüntülemek için işletim sistemi Birlikte Aç/Paylaş iletişim kutularını filtreleyin\r\n
\r\n\r\nTüm uygulamalar: Tüm uygulamalara kuruluş verilerinin gönderilmesine izin verin"
- },
- "SimplePin": {
- "label": "Basit PIN",
- "tooltip": "Engellenirse kullanıcılar basit bir PIN oluşturamayabilir. Basit bir PIN 1234, ABCD veya 1111 gibi art arda veya yinelenen bir dizi harf veya rakamdır. Lütfen 'Geçiş kodu' türünde bir basit PIN'in engellenmesinin geçiş kodunun en bir rakam, bir harf ve bir özel karakter gerektirdiğini unutmayın."
- },
- "SyncContacts": {
- "label": "İlke tarafından yönetilen uygulama verilerini yerel uygulamalarla veya eklentilerle eşitle"
- },
- "ThirdPartyKeyboards": {
- "infoBox": "Klavye kısıtlamaları, uygulamanın tüm alanlarına uygulanır. Birden çok kimliği destekleyen uygulamaların kişisel hesapları, bu kısıtlamadan etkilenir. Daha fazla bilgi.",
- "label": "Üçüncü taraf klavyeler"
- },
- "Timeout": {
- "label": "Zaman aşımı (dakika olarak eylemsizlik)"
- },
- "Tap": {
- "numberOfDays": "Gün Sayısı",
- "pinResetAfterNumberOfDays": "Belirtilen sayıda gün sonra PIN sıfırlama",
- "previousPinBlockCount": "Korunacak önceki PIN değerlerinin sayısını seçin"
- }
- },
- "WindowsFeatureUpdateProfile": {
- "Details": {
- "Description": {
- "label": "Açıklama"
- },
- "FeatureDeploymentSettings": {
- "header": "Özellik dağıtımı ayarları"
- },
- "FeatureUpdateVersion": {
- "infoballoon": "Bu özellik bir cihazın sürümünü düşüremez.",
- "label": "Dağıtılacak özellik güncelleştirmesi"
- },
- "GradualRolloutEndDate": {
- "label": "Son grup kullanılabilirliği"
- },
- "GradualRolloutInterval": {
- "label": "Gruplar arasındaki gün sayısı"
- },
- "GradualRolloutStartDate": {
- "label": "İlk grup kullanılabilirliği"
- },
- "Name": {
- "label": "Ad"
- },
- "RolloutOptions": {
- "label": "Piyasaya çıkma seçenekleri"
- },
- "RolloutSettings": {
- "header": "Güncelleştirmeyi Windows Update’te ne zaman kullanıma sunmak istersiniz?"
- },
- "ScopeSettings": {
- "header": "Bu ilke için kapsam etiketlerini yapılandırın."
- },
- "StartDateOnlyStartDate": {
- "label": "İlk kullanıma sunma tarihi"
- },
- "bladeTitle": "Özellik güncelleştirmesi dağıtımları",
- "deploymentSettingsTitle": "Dağıtım ayarları",
- "loadError": "Profil yükleme başarısız oldu!",
- "windows11EULA": "Dağıtılacak Özellik güncelleştirmesini seçerek, bu işletim sistemini bir cihaza uygularken (1) geçerli Windows lisansının toplu lisanslama yoluyla satın alındığını veya (2) kuruluşunuzu bağlama yetkisine sahip olduğunuzu ve burada bulabileceğiniz ilgili Microsoft Yazılımı Lisans Koşulları’nı kuruluş adına kabul ettiğinizi onaylamış oluyorsunuz: {0}."
- },
- "Notifications": {
- "deploymentSaved": "\"{0}\" kaydedildi.",
- "newFeatureUpdateDeploymentCreated": "Yeni özellik güncelleştirme dağıtımı oluşturuldu."
- },
- "TabName": {
- "deploymentSettings": "Dağıtım ayarları",
- "groupAssignmentSettings": "Atamalar",
- "scopeSettings": "Kapsam etiketleri"
- }
- },
- "OfficeUpdateChannel": {
- "current": "Geçerli Kanal",
- "deferred": "Altı Aylık Kurumsal Kanal",
- "firstReleaseCurrent": "Geçerli Kanal (Önizleme)",
- "firstReleaseDeferred": "Yarı Yıllık Kurumsal Kanal (Önizleme)",
- "monthlyEnterprise": "Aylık Kurumsal Kanal",
- "placeHolder": "Birini seçin"
- },
- "Win32ReturnCodes": {
- "CodeTypes": {
- "failed": "Başarısız",
- "hardReboot": "Donanımdan önyükleme",
- "retry": "Yeniden Dene",
- "softReboot": "Yazılımdan önyükleme",
- "success": "Başarılı"
- },
- "Columns": {
- "codeType": "Kod türü",
- "returnCode": "Dönüş kodu"
- },
- "bladeTitle": "Dönüş kodları",
- "gridAriaLabel": "Dönüş kodları",
- "header": "Yükleme sonrası davranışını göstermek için dönüş kodları belirtin:",
- "onAddAnnounceMessage": "Dönüş kodu {1} öğeden {0} tanesini ekledi",
- "onDeleteSuccess": "{0} dönüş kodu başarıyla silindi",
- "returnCodeAlreadyUsedValidation": "Dönüş kodu zaten kullanılıyor.",
- "returnCodeMustBeIntegerValidation": "Dönüş kodu tamsayı olmalıdır.",
- "returnCodeShouldBeAtLeast": "Dönüş kodu en az {0} olmalıdır.",
- "returnCodeShouldBeAtMost": "Dönüş kodu en çok {0} olmalıdır.",
- "selectorLabel": "Dönüş kodları"
- },
- "SecurityTemplate": {
- "aSR": "Saldırı yüzeyini azaltma",
- "accountProtection": "Hesap koruması",
- "allDevices": "Tüm cihazlar",
- "antivirus": "Virüsten Koruma",
- "antivirusReporting": "Virüsten Koruma Raporlaması (Önizleme)",
- "conditionalAccess": "Koşullu erişim",
- "deviceCompliance": "Cihaz uyumluluğu",
- "diskEncryption": "Disk şifrelemesi",
- "eDR": "Uç nokta algılama ve yanıt",
- "firewall": "Güvenlik duvarı",
- "helpSupport": "Yardım ve destek",
- "setup": "Kur",
- "wdapt": "Uç Nokta için Microsoft Defender"
- },
- "PolicySet": {
- "appManagement": "Uygulama yönetimi",
- "assignments": "Atamalar",
- "basics": "Temel Ayarlar",
- "deviceEnrollment": "Cihaz kaydı",
- "deviceManagement": "Cihaz yönetimi",
- "scopeTags": "Kapsam etiketleri",
- "appConfigurationTitle": "Uygulama yapılandırma ilkeleri",
- "appProtectionTitle": "Uygulama koruma ilkeleri",
- "appTitle": "Uygulamalar",
- "iOSAppProvisioningTitle": "iOS uygulama sağlama profilleri",
- "deviceLimitRestrictionTitle": "Cihaz sınırı kısıtlamaları",
- "deviceTypeRestrictionTitle": "Cihaz türü kısıtlamaları",
- "enrollmentStatusSettingTitle": "Kayıt durumu sayfaları",
- "windowsAutopilotDeploymentProfileTitle": "Windows Autopilot Deployment profilleri",
- "deviceComplianceTitle": "Cihaz uyumluluk ilkeleri",
- "deviceConfigurationTitle": "Cihaz yapılandırma profilleri",
- "powershellScriptTitle": "Powershell betikleri"
- },
- "AssignmentAction": {
- "exclude": "Dışlandı",
- "include": "Dahil edilen",
- "includeAllDevicesVirtualGroup": "Dahil edilen",
- "includeAllUsersVirtualGroup": "Dahil edilen"
- },
- "WindowsFeatureUpdate": {
- "EndOFSupportStatus": {
- "notSupported": "Desteklenmiyor",
- "supportEnding": "Destek sonu",
- "supported": "Destekleniyor"
- }
- },
- "InstallIntent": {
- "available": "Kayıtlı cihazlar için bulunur",
- "availableWithoutEnrollment": "Kayıtlı veya kayıtsız olarak kullanılabilir",
- "required": "Gerekli",
- "uninstall": "Kaldır"
- },
"OutlookAppConfig": {
"DataProtectionConfiguration": {
"header": "Veri Koruması yapılandırması"
@@ -1938,307 +100,864 @@
"themesEnabledTitle": "Temalar Etkin",
"themesEnabledTooltip": "Kullanıcının özel görsel tema kullanmasına izin verilip verilmediğini belirtin."
},
- "TAP": {
- "AccessRequirements": {
- "infoText": "Kullanıcıların bir iş bağlamındaki uygulamalara erişmek için karşılaması gereken PIN ve kimlik bilgisi gereksinimlerini yapılandırın."
- },
- "DataProtection": {
- "infoText": "Bu grup kesme, kopyalama, yapıştırma ve farklı kaydetme kısıtlamaları gibi veri kaybı önleme (DLP) denetimlerini içerir. Bu ayarlar, kullanıcıların uygulamalardaki verilerle nasıl etkileşim kurduğunu belirler."
- },
- "DeviceTypes": {
- "selectOne": "En az bir cihaz türü seçin."
- },
- "TargetedApps": {
- "TargetToAll": {
- "label": "Tüm cihaz türlerindeki uygulamaları hedefle"
- },
- "infoText": "Bu ilkeyi farklı cihazlardaki uygulamalara nasıl uygulamak istediğinizi seçin. Ardından en az bir uygulama ekleyin.",
- "selectOne": "İlke oluşturmak için en az bir uygulama seçin."
- }
- },
- "TACSettings": {
- "edgeSettings": "Edge yapılandırma ayarları",
- "edgeWindowsDataProtectionSettings": "Edge (Windows) veri koruma ayarları - Önizleme",
- "edgeWindowsSettings": "Edge (Windows) yapılandırma ayarları - Önizleme",
- "generalAppConfig": "Genel uygulama yapılandırması",
- "generalSettings": "Genel yapılandırma ayarları",
- "outlookSMIMEConfig": "Outlook S/MIME ayarları",
- "outlookSettings": "Outlook yapılandırma ayarları",
- "sMIME": "S/MIME"
- },
- "OfficeApplicationAdditionalType": {
- "projectProRetail": "Proje Çevrimiçi Masaüstü İstemcisi",
- "visioProRetail": "Visio Çevrimiçi Plan 2"
- },
- "Win32Requirements": {
- "AdditionalRequirements": {
- "File": {
- "fileOrFolderToolTip": "Seçili gereksinim olarak dosya veya klasör.",
- "pathToolTip": "Algılanacak dosya veya klasörün tam yolu.",
- "property": "Özellik",
- "valueToolTip": "Seçili algılama yöntemiyle eşleşen bir gereksinim değeri seçin. Tarih ve saat gereksinimi yerel biçimde girilmelidir."
- },
- "GridColumns": {
- "pathOrScript": "Yol/Betik",
- "type": "Tür"
- },
- "Registry": {
- "keyPath": "Anahtar yolu",
- "keyPathTooltip": "Değeri bir gereksinim olarak içeren kayıt defteri girişinin tam yolu.",
- "operator": "İşleç",
- "operatorTooltip": "Karşılaştırma için işleci seçin.",
- "registryRequirement": "Kayıt defteri anahtarı gereksinimi",
- "registryRequirementTooltip": "Kayıt defteri anahtarı gereksinim karşılaştırmasını seçin.",
- "valueName": "Değer adı",
- "valueNameTooltip": "Gerekli kayıt defteri değerinin adı."
- },
- "RequirementTypeOptions": {
- "fileType": "Dosya",
- "registry": "Kayıt Defteri",
- "script": "Betik"
- },
- "Script": {
- "RequirementMethodOptions": {
- "boolean": "Boolean",
- "dateTime": "Tarih ve Saat",
- "float": "Kayan Nokta",
- "integer": "Tam sayı",
- "string": "Dize",
- "version": "Sürüm"
- },
- "ScriptContent": {
- "emptyMessage": "Betik içeriği boş olmamalıdır."
- },
- "duplicateName": "{0} betik adı zaten kullanılıyor. Lütfen farklı bir ad girin.",
- "enforceSignatureCheck": "Betik imzası denetimini zorla",
- "enforceSignatureCheckTooltip": "Betiğin güvenilen bir yayıncı tarafından imzalandığını doğrulamak için \"Evet\" seçeneğini belirleyin. Bunun yapılması, betiğin uyarı ya da komut istemi görüntülenmeden çalıştırılmasına olanak tanır. Betik engellenmeden çalışır. Betiği imza doğrulaması olmadan, son kullanıcı onayıyla çalıştırmak için \"Hayır\" (varsayılan) seçeneğini belirleyin.",
- "loggedOnCredentials": "Bu betiği oturum açmış olan kullanıcının kimlik bilgilerini kullanarak çalıştır",
- "loggedOnCredentialsTooltip": "Betiği oturum açılan cihazın kimlik bilgilerini kullanarak çalıştır.",
- "operatorTooltip": "Gereksinim karşılaştırması için işleci seçin.",
- "requirementMethod": "Çıkış veri türünü seçin",
- "requirementMethodTooltip": "Bir algılama eşleşme gereksinimi belirlenirken kullanılan veri türünü seçin.",
- "scriptFile": "Betik dosyası",
- "scriptFileTooltip": "İstemcide uygulamanın olup olmadığını algılayacak bir PowerShell betiği seçin. Uygulama algılanırsa gereksinim süreci tarafından 0 değerli bir çıkış kodu sağlanır ve STDOUT'a bir dize değeri yazılır.",
- "scriptName": "Betik adı",
- "value": "Değer",
- "valueTooltip": "Seçili algılama yöntemiyle eşleşen bir gereksinim değeri seçin. Tarih ve saat gereksinimi yerel biçimde girilmelidir."
- },
- "bladeTitle": "Gereksinim kuralı ekle",
- "createRequirementHeader": "Bir gereksinim oluşturun.",
- "header": "Ek gereksinim kuralları yapılandırın",
- "label": "Ek gereksinim kuralları",
- "noRequirementsSelectedPlaceholder": "Gereksinim belirtilmedi.",
- "requirementType": "Gereksinim türü",
- "requirementTypeTooltip": "Bir gereksiniminin nasıl doğrulanacağının belirlenmesi için kullanılacak algılama yöntemini seçin."
- },
- "architectures": "İşletim sistemi mimarisi",
- "architecturesTooltip": "Uygulamayı yüklemek için gereken mimarileri seçin.",
- "bladeTitle": "Gereksinimler",
- "diskSpace": "Gerekli disk alanı (MB)",
- "diskSpaceTooltip": "Uygulamayı yüklemek için sistem sürücüsünde gereken boş disk alanı.",
- "header": "Uygulamanın yüklenebilmesi için cihazların karşılaması gereken gereksinimleri belirtin:",
- "maximumTextFieldValue": "Değer en fazla {0} olabilir.",
- "minimumCpuSpeed": "Gereken en düşük CPU hızı (MHz)",
- "minimumCpuSpeedTooltip": "Uygulamayı yüklemek için gereken en düşük CPU hızı.",
- "minimumLogicalProcessors": "Gereken en düşük mantıksal işlemci sayısı",
- "minimumLogicalProcessorsTooltip": "Uygulamayı yüklemek için gereken en düşük mantıksal işlemci sayısı.",
- "minimumOperatingSystem": "Minimum işletim sistemi",
- "minimumOperatingSystemTooltip": "Uygulamayı yüklemek için gereken en düşük işletim sistemi seçin.",
- "minumumTextFieldValue": "Değer en az {0} olmalıdır.",
- "physicalMemory": "Gerekli fiziksel bellek (MB)",
- "physicalMemoryTooltip": "Uygulamayı yüklemek için gereken fiziksel bellek (RAM).",
- "selectorLabel": "Gereksinimler",
- "validNumber": "Lütfen geçerli bir sayı girin."
- },
- "ArchitectureOptions": {
- "sixtyFourBit": "64 bit",
- "thirtyTwoBit": "32 bit"
- },
- "Countries": {
- "ae": "Birleşik Arap Emirlikleri",
- "ag": "Antigua ve Barbuda",
- "ai": "Anguilla",
- "al": "Arnavutluk",
- "am": "Ermenistan",
- "ao": "Angola",
- "ar": "Arjantin",
- "at": "Avusturya",
- "au": "Avustralya",
- "az": "Azerbaycan",
- "bb": "Barbados",
- "be": "Belçika",
- "bf": "Burkina Faso",
- "bg": "Bulgaristan",
- "bh": "Bahreyn",
- "bj": "Benin",
- "bm": "Bermuda",
- "bn": "Brunei",
- "bo": "Bolivya",
- "br": "Brezilya",
- "bs": "Bahamalar",
- "bt": "Bhutan",
- "bw": "Botsvana",
- "by": "Belarus",
- "bz": "Belize",
- "ca": "Kanada",
- "cg": "Kongo Cumhuriyeti",
- "ch": "İsviçre",
- "cl": "Şili",
- "cn": "Çin",
- "co": "Kolombiya",
- "cr": "Kosta Rika",
- "cv": "Cabo Verde",
- "cy": "Kıbrıs",
- "cz": "Çek Cumhuriyeti",
- "de": "Almanya",
- "dk": "Danimarka",
- "dm": "Dominika",
- "do": "Dominik Cumhuriyeti",
- "dz": "Cezayir",
- "ec": "Ekvador",
- "ee": "Estonya",
- "eg": "Mısır",
- "es": "İspanya",
- "fi": "Finlandiya",
- "fj": "Fiji",
- "fm": "Mikronezya Federe Devletleri",
- "fr": "Fransa",
- "gb": "Birleşik Krallık",
- "gd": "Grenada",
- "gh": "Gana",
- "gm": "Gambiya",
- "gr": "Yunanistan",
- "gt": "Guatemala",
- "gw": "Gine-Bissau",
- "gy": "Guyana",
- "hk": "Hong Kong",
- "hn": "Honduras",
- "hr": "Hırvatistan",
- "hu": "Macaristan",
- "id": "Endonezya",
- "ie": "İrlanda",
- "il": "İsrail",
- "in": "Hindistan",
- "is": "İzlanda",
- "it": "İtalya",
- "jm": "Jamaika",
- "jo": "Ürdün",
- "jp": "Japonya",
- "ke": "Kenya",
- "kg": "Kırgızistan",
- "kh": "Kamboçya",
- "kn": "St. Kitts ve Nevis",
- "kr": "Kore Cumhuriyeti",
- "kw": "Kuveyt",
- "ky": "Cayman Adaları",
- "kz": "Kazakistan",
- "la": "Laos Demokratik Halk Cumhuriyeti",
- "lb": "Lübnan",
- "lc": "St. Lucia",
- "lk": "Sri Lanka",
- "lr": "Liberya",
- "lt": "Litvanya",
- "lu": "Lüksemburg",
- "lv": "Letonya",
- "md": "Moldova Cumhuriyeti",
- "mg": "Madagaskar",
- "mk": "Kuzey Makedonya",
- "ml": "Mali",
- "mn": "Moğolistan",
- "mo": "Makao",
- "mr": "Moritanya",
- "ms": "Montserrat",
- "mt": "Malta",
- "mu": "Mauritius",
- "mw": "Malavi",
- "mx": "Meksika",
- "my": "Malezya",
- "mz": "Mozambik",
- "na": "Namibia",
- "ne": "Nijer",
- "ng": "Nijerya",
- "ni": "Nikaragua",
- "nl": "Hollanda",
- "no": "Norveç",
- "np": "Nepal",
- "nz": "Yeni Zelanda",
- "om": "Umman",
- "pa": "Panama",
- "pe": "Peru",
- "pg": "Papua Yeni Gine",
- "ph": "Filipinler",
- "pk": "Pakistan",
- "pl": "Polonya",
- "pt": "Portekiz",
- "pw": "Palau",
- "py": "Paraguay",
- "qa": "Katar",
- "ro": "Romanya",
- "ru": "Rusya",
- "sa": "Suudi Arabistan",
- "sb": "Solomon Adaları",
- "sc": "Seyşeller",
- "se": "İsveç",
- "sg": "Singapur",
- "si": "Slovenya",
- "sk": "Slovakya",
- "sl": "Sierra Leone",
- "sn": "Senegal",
- "sr": "Surinam",
- "st": "Sao Tome ve Principe",
- "sv": "El Salvador",
- "sz": "Svaziland",
- "tc": "Turks ve Caicos",
- "td": "Çad",
- "th": "Tayland",
- "tj": "Tacikistan",
- "tm": "Türkmenistan",
- "tn": "Tunus",
- "tr": "Türkiye",
- "tt": "Trinidad ve Tobago",
- "tw": "Tayvan",
- "tz": "Tanzanya",
- "ua": "Ukrayna",
- "ug": "Uganda",
- "us": "Amerika Birleşik Devletleri",
- "uy": "Uruguay",
- "uz": "Özbekistan",
- "vc": "St. Vincent ve Grenadinler",
- "ve": "Venezuela",
- "vg": "İngiliz Virgin Adaları",
- "vn": "Vietnam",
- "ye": "Yemen",
- "za": "Güney Afrika",
- "zw": "Zimbabve"
+ "Languages": {
+ "ar-aE": "Arapça (B.A.E.)",
+ "ar-bH": "Arapça (Bahreyn)",
+ "ar-dZ": "Arapça (Cezayir)",
+ "ar-eG": "Arapça (Mısır)",
+ "ar-iQ": "Arapça (Irak)",
+ "ar-jO": "Arapça (Ürdün)",
+ "ar-kW": "Arapça (Kuveyt)",
+ "ar-lB": "Arapça (Lübnan)",
+ "ar-lY": "Arapça (Libya)",
+ "ar-mA": "Arapça (Fas)",
+ "ar-oM": "Arapça (Umman)",
+ "ar-qA": "Arapça (Katar)",
+ "ar-sA": "Arapça (Suudi Arabistan)",
+ "ar-sY": "Arapça (Suriye)",
+ "ar-tN": "Arapça (Tunus)",
+ "ar-yE": "Arapça (Yemen)",
+ "az-cyrl": "Azerice (Kiril, Azerbaycan)",
+ "az-latn": "Azerice (Latin, Azerbaycan)",
+ "bn-bD": "Bengalce (Bangladeş)",
+ "bn-iN": "Bengalce (Hindistan)",
+ "bs-cyrl": "Boşnakça (Kiril)",
+ "bs-latn": "Boşnakça (Latin)",
+ "zh-cN": "Çince (ÇHC)",
+ "zh-hK": "Çince (Hong Kong ÖİB)",
+ "zh-mO": "Çince (Macao ÖİB)",
+ "zh-sG": "Çince (Singapur)",
+ "zh-tW": "Çince (Tayvan)",
+ "hr-bA": "Hırvatça (Latin)",
+ "hr-hR": "Hırvatça (Hırvatistan)",
+ "nl-bE": "Felemenkçe (Belçika)",
+ "nl-nL": "Felemenkçe (Hollanda)",
+ "en-aU": "İngilizce (Avustralya)",
+ "en-bZ": "İngilizce (Belize)",
+ "en-cA": "İngilizce (Kanada)",
+ "en-cabn": "İngilizce (Karayipler)",
+ "en-iE": "İngilizce (İrlanda)",
+ "en-iN": "İngilizce (Hindistan)",
+ "en-jM": "İngilizce (Jamaika)",
+ "en-mY": "İngilizce (Malezya)",
+ "en-nZ": "İngilizce (Yeni Zelanda)",
+ "en-pH": "İngilizce (Filipinler Cumhuriyeti)",
+ "en-sG": "İngilizce (Singapur)",
+ "en-tT": "İngilizce (Trinidad ve Tobago)",
+ "en-uK": "İngilizce (Birleşik Krallık)",
+ "en-uS": "İngilizce (Amerika Birleşik Devletleri)",
+ "en-zA": "İngilizce (Güney Afrika)",
+ "en-zW": "İngilizce (Zimbabve)",
+ "fr-bE": "Fransızca (Belçika)",
+ "fr-cA": "Fransızca (Kanada)",
+ "fr-cH": "Fransızca (İsviçre)",
+ "fr-fR": "Fransızca (Fransa)",
+ "fr-lU": "Fransızca (Luksemburg)",
+ "fr-mC": "Fransızca (Monako)",
+ "de-aT": "Almanca (Avusturya)",
+ "de-cH": "Almanca (İsviçre)",
+ "de-dE": "Almanca (Almanya)",
+ "de-lI": "Almanca (Liechtenstein)",
+ "de-lU": "Almanca (Luksemburg)",
+ "iu-cans": "İnuit dili (Hece yazısı, Kanada)",
+ "iu-latn": "İnuit dili (Latin, Kanada)",
+ "it-cH": "İtalyanca (İsviçre)",
+ "it-iT": "İtalyanca (İtalya)",
+ "ms-bN": "Malay dili (Brunei Sultanlığı)",
+ "ms-mY": "Malay dili (Malezya)",
+ "mn-cN": "Moğolca (Geleneksel Moğolca, ÇHC)",
+ "mn-mN": "Moğolca (Kiril, Moğolistan)",
+ "no-nB": "Norveççe, Bokmål (Norveç)",
+ "no-nn": "Norveç dili (Nynorsk, (Norveç)",
+ "pt-bR": "Portekizce (Brezilya)",
+ "pt-pT": "Portekizce (Portekiz)",
+ "quz-bO": "Keçuva dili (Bolivya)",
+ "quz-eC": "Keçuva dili (Ekvador)",
+ "quz-pE": "Keçuva dili (Peru)",
+ "smj-nO": "Sami, Lule (Norveç)",
+ "smj-sE": "Sami, Lule (İsveç)",
+ "se-fI": "Sami, Kuzey (Finlandiya)",
+ "se-nO": "Sami, Kuzey (Norveç)",
+ "se-sE": "Sami, Kuzey (İsveç)",
+ "sma-nO": "Sami, Güney (Norveç)",
+ "sma-sE": "Sami, Güney (İsveç)",
+ "smn": "Sami, Inari (Finlandiya)",
+ "sms": "Sami, Skolt (Finlandiya)",
+ "sr-Cyrl-bA": "Sırpça (Kiril)",
+ "sr-Cyrl-rS": "Sırpça (Kiril, Sırbistan ve Karadağ)",
+ "sr-Latn-bA": "Sırpça (Latin)",
+ "sr-Latn-rS": "Sırpça (Latin, Sırbistan)",
+ "dsb": "Aşağı Sorb dili (Almanya)",
+ "hsb": "Yukarı Sorb dili (Almanya)",
+ "es-es-tradnl": "İspanyolca (İspanya, Geleneksel Sıralama)",
+ "es-aR": "İspanyolca (Arjantin)",
+ "es-bO": "İspanyolca (Bolivya)",
+ "es-cL": "İspanyolca (Şili)",
+ "es-cO": "İspanyolca (Kolombiya)",
+ "es-cR": "İspanyolca (Kosta Rika)",
+ "es-dO": "İspanyolca (Dominik Cumhuriyeti)",
+ "es-eC": "İspanyolca (Ekvator)",
+ "es-eS": "İspanyolca (İspanya)",
+ "es-gT": "İspanyolca (Guatemala)",
+ "es-hN": "İspanyolca (Honduras)",
+ "es-mX": "İspanyolca (Meksika)",
+ "es-nI": "İspanyolca (Nikaragua)",
+ "es-pA": "İspanyolca (Panama)",
+ "es-pE": "İspanyolca (Peru)",
+ "es-pR": "İspanyolca (Porto Riko)",
+ "es-pY": "İspanyolca (Paraguay)",
+ "es-sV": "İspanyolca (El Salvador)",
+ "es-uS": "İspanyolca (Amerika Birleşik Devletleri)",
+ "es-uY": "İspanyolca (Uruguay)",
+ "es-vE": "İspanyolca (Venezuela)",
+ "sv-fI": "İsveç dili (Finlandiya)",
+ "uz-cyrl": "Özbekçe (Kiril, Özbekistan)",
+ "uz-latn": "Özbekçe (Latin, Özbekistan)",
+ "af": "Afrikaner dili (Güney Afrika)",
+ "sq": "Arnavutça (Arnavutluk)",
+ "am": "Amhara dili (Etiyopya)",
+ "hy": "Ermenice (Ermenistan)",
+ "as": "Assam dili (Hindistan)",
+ "ba": "Başkırtça (Rusya)",
+ "eu": "Baskça (Baskça)",
+ "be": "Belarusça (Belarus)",
+ "br": "Bretonca (Fransa)",
+ "bg": "Bulgarca (Bulgaristan)",
+ "ca": "Katalanca (Katalanca)",
+ "co": "Korsika lehçesi (Fransa)",
+ "cs": "Çekçe (Çek Cumhuriyeti)",
+ "da": "Danca (Danimarka)",
+ "prs": "Dari dili (Afganistan)",
+ "dv": "Divehi (Maldivler)",
+ "et": "Estonca (Estonya)",
+ "fo": "Faroe dili (Faroe Adaları)",
+ "fil": "Filipin dili (Filipinler)",
+ "fi": "Fince (Finlandiya)",
+ "gl": "Galiçya dili (Galiçya)",
+ "ka": "Gürcüce (Gürcistan)",
+ "el": "Yunanca (Yunanistan)",
+ "gu": "Gucerat dili (Hindistan)",
+ "ha": "Hausa dili (Latin, Nijerya)",
+ "he": "İbranice (İsrail)",
+ "hi": "Hintçe (Hindistan)",
+ "hu": "Macarca (Macaristan)",
+ "is": "İzlandaca (İzlanda)",
+ "ig": "İgbo dili (Nijerya)",
+ "id": "Endonezce (Endonezya)",
+ "ga": "İrlandaca (Irlanda)",
+ "xh": "Zosa dili (Güney Afrika)",
+ "zu": "Zuluca (Güney Afrika)",
+ "ja": "Japonca (Japonya)",
+ "kn": "Kannada dili (Hindistan)",
+ "kk": "Kazakça (Kazakistan)",
+ "km": "Khmer (Kamboçya)",
+ "rw": "Kinyarvanda dili (Ruanda)",
+ "sw": "Svahili dili (Kenya)",
+ "kok": "Konkani Dili (Hindistan)",
+ "ko": "Korece (Güney Kore)",
+ "ky": "Kırgızca (Kırgızistan)",
+ "lo": "Lao dili (Lao ÖİB)",
+ "lv": "Letonca (Letonya)",
+ "lt": "Litvanca (Litvanya)",
+ "lb": "Lüksemburg dili (Lüksemburg)",
+ "mk": "Makedonca (Kuzey Makedonya)",
+ "ml": "Malayalam dili (Hindistan)",
+ "mt": "Malta dili (Malta)",
+ "mi": "Maori dili (Yeni Zelanda)",
+ "mr": "Marathi (Hindistan)",
+ "moh": "Mohavk dili (Mohavk)",
+ "ne": "Nepal dili (Nepal)",
+ "oc": "Oksitan dili (Fransa)",
+ "or": "Odia (Hindistan)",
+ "ps": "Peştuca (Afganistan)",
+ "fa": "Farsça",
+ "pl": "Lehçe (Polonya)",
+ "pa": "Pencap dili (Hindistan)",
+ "ro": "Rumence (Romanya)",
+ "rm": "Romanş dili (İsviçre)",
+ "ru": "Rusça (Rusya)",
+ "sa": "Sanskritçe (Hindistan)",
+ "st": "Kuzey Sotho Dili (Güney Afrika)",
+ "tn": "Setsvana dili (Güney Afrika)",
+ "si": "Sinhali dili (Sri Lanka)",
+ "sk": "Slovakça (Slovakya)",
+ "sl": "Slovence (Slovenya)",
+ "sv": "İsveççe (İsveç)",
+ "syr": "Süryanice (Suriye)",
+ "tg": "Tacikçe (Kiril, Tacikistan)",
+ "ta": "Tamil dili (Hindistan)",
+ "tt": "Tatarca (Rusça)",
+ "te": "Telugu dili (Hindistan)",
+ "th": "Tayca (Tayland)",
+ "bo": "Tibetçe (ÇHC)",
+ "tr": "Türkçe (Türkiye)",
+ "tk": "Türkmence (Türkmenistan)",
+ "uk": "Ukraynaca (Ukrayna)",
+ "ur": "Urduca (Pakistan İslam Cumhuriyeti)",
+ "vi": "Vietnamca (Vietnam)",
+ "cy": "Galce (Birleşik Krallık)",
+ "wo": "Volof dili (Senegal)",
+ "ii": "Yi dili (ÇHC)",
+ "yo": "Yorubaca (Nijerya)"
+ },
+ "Category": {
+ "airPlay": "AirPlay",
+ "airPrint": "AirPrint",
+ "androidDefenderAtp": "Uç Nokta için Microsoft Defender",
+ "androidDeviceOwnerApplications": "Uygulamalar",
+ "androidForWorkPassword": "Cihaz parolası",
+ "appManagement": "Uygulamalara İzin Ver veya Engelle",
+ "applicationGuard": "Microsoft Defender Application Guard",
+ "applicationRestrictions": "Kısıtlı Uygulamalar",
+ "applicationVisibility": "Uygulamaları Göster veya Gizle",
+ "applications": "Uygulama Mağazası",
+ "applicationsAndGames": "Uygulama Mağazası, Belge Görüntüleme, Oyunlar",
+ "applicationsAndGoogle": "Google Play Mağazası",
+ "appsAndExperience": "Uygulamalar ve deneyim",
+ "associatedDomains": "İlişkili etki alanları",
+ "autonomousSingleAppMode": "Otonom Tekli Uygulama Modu",
+ "azureOperationalInsights": "Azure operasyonel içgörüler",
+ "bitLocker": "Windows Şifrelemesi",
+ "browser": "Tarayıcı",
+ "builtinApps": "Yerleşik Uygulamalar",
+ "cellular": "Hücresel",
+ "cloudAndStorage": "Bulut ve Depolama",
+ "cloudPrint": "Bulut Yazıcı",
+ "complianceEmailProfile": "E-posta",
+ "connectedDevices": "Bağlı Cihazlar",
+ "connectivity": "Şebeke ve bağlantı",
+ "contentCaching": "İçeriği önbelleğe alma",
+ "controlPanelAndSettings": "Denetim Masası ve Ayarlar",
+ "credentialGuard": "Microsoft Defender Credential Guard",
+ "customCompliance": "Özel Uyumluluk",
+ "customCompliancePreview": "Özel Uyumluluk (Önizleme)",
+ "customConfiguration": "Özel Yapılandırma Profili",
+ "customOMASettings": "Özel OMA-URI Ayarları",
+ "customPreferences": "Tercih dosyası",
+ "defender": "Microsoft Defender Virüsten Koruma",
+ "defenderAntivirus": "Microsoft Defender Virüsten Koruma",
+ "defenderExploitGuard": "Microsoft Defender Exploit Guard",
+ "defenderFirewall": "Microsoft Defender Güvenlik Duvarı",
+ "defenderLocalSecurityOptions": "Yerel cihaz güvenlik seçenekleri",
+ "defenderSecurityCenter": "Microsoft Defender Güvenlik Merkezi",
+ "deliveryOptimization": "Teslim İyileştirme",
+ "derivedCredentialAuthenticationConfiguration": "Türetilmiş kimlik bilgisi",
+ "deviceExperience": "Cihaz deneyimi",
+ "deviceFirmwareConfigurationInterface": "Cihaz Üretici Yazılımı Yapılandırma Arabirimi",
+ "deviceGuard": "Microsoft Defender Uygulama Denetimi",
+ "deviceHealth": "Cihaz Durumu",
+ "devicePassword": "Cihaz parolası",
+ "deviceProperties": "Cihaz Özellikleri",
+ "deviceRestrictions": "Genel",
+ "deviceSecurity": "Sistem güvenliği",
+ "display": "Görüntü",
+ "domainJoin": "Etki Alanına Katılma",
+ "domains": "Etki Alanları",
+ "edgeBrowser": "Microsoft Edge'in eski sürümü (Sürüm 45 ve altı bir sürüm)",
+ "edgeBrowserSmartScreen": "Microsoft Defender SmartScreen",
+ "edgeKiosk": "Microsoft Edge kiosk modu",
+ "editionUpgrade": "Sürüm Yükseltmesi",
+ "education": "Eğitim",
+ "educationDeviceCerts": "Cihaz sertifikaları",
+ "educationStudentCerts": "Öğrenci sertifikaları",
+ "educationTakeATest": "Kendinizi Test Edin",
+ "educationTeacherCerts": "Öğretmen sertifikaları",
+ "emailProfile": "E-posta",
+ "enterpriseDataProtection": "Windows Bilgi Koruması",
+ "expeditedCheckin": "Mobil cihaz yönetimi yapılandırması",
+ "extensibleSingleSignOn": "Çoklu oturum açma uygulama uzantısı",
+ "filevault": "FileVault",
+ "firewall": "Güvenlik Duvarı",
+ "games": "Oyunlar",
+ "gatekeeper": "Ağ geçidi denetleyicisi",
+ "healthMonitoring": "İşlevsel durumu izleme",
+ "homeScreenLayout": "Giriş Ekranı Düzeni",
+ "iOSWallpaper": "Duvar Kağıdı",
+ "importedPFX": "PKCS İçe Aktarılan Sertifikası",
+ "iosDefenderAtp": "Uç Nokta için Microsoft Defender",
+ "iosKiosk": "Kiosk",
+ "kernelExtensions": "Çekirdek uzantıları",
+ "keyboardAndDictionary": "Klavye ve Sözlük",
+ "kiosk": "Kiosk",
+ "kioskAndroidEnterprise": "Ayrılmış cihazlar",
+ "kioskConfiguration": "Kiosk",
+ "kioskConfigurationV2": "Kiosk",
+ "kioskWebBrowser": "Kiosk web tarayıcısı",
+ "lockScreenMessage": "Kilit Ekranı İletisi",
+ "lockedScreenExperience": "Kilit Ekranı Deneyimi",
+ "logging": "Raporlama ve Telemetri",
+ "loginItems": "Oturum açma öğeleri",
+ "loginWindow": "Oturum açma penceresi",
+ "macDefenderAtp": "Uç Nokta için Microsoft Defender",
+ "maintenance": "Bakım",
+ "malware": "Kötü Amaçlı Yazılım",
+ "messaging": "Mesajlaşma",
+ "networkBoundary": "Ağ sınırı",
+ "networkProxy": "Ağ proxy'si",
+ "notifications": "Uygulama Bildirimleri",
+ "pKCS": "PKCS Sertifikası",
+ "password": "Parola",
+ "personalProfile": "Kişisel profil",
+ "personalization": "Kişiselleştirme",
+ "policyOverride": "Grup İlkesini Geçersiz Kılma",
+ "powerSettings": "Güç Ayarları",
+ "printer": "Yazıcı",
+ "privacy": "Gizlilik",
+ "privacyPerApp": "Uygulama başına gizlilik özel durumları",
+ "privacyPreferences": "Gizlilik tercihleri",
+ "projection": "İzdüşüm",
+ "sCCMCompliance": "Configuration Manager Uyumluluğu",
+ "sCEP": "SCEP Sertifikası",
+ "sCEPProperties": "SCEP Sertifikası",
+ "sMode": "Mod anahtarı (yalnızca Windows Insider)",
+ "safari": "Safari",
+ "search": "Ara",
+ "session": "Oturum",
+ "sharedDevice": "Paylaşılan iPad",
+ "sharedPCAccountManager": "Paylaşılan çok kullanıcılı cihaz",
+ "singleSignOn": "Çoklu oturum açma",
+ "smartScreen": "Microsoft Defender SmartScreen",
+ "softwareUpdates": "Ayarlar",
+ "start": "Başlat",
+ "systemExtensions": "Sistem uzantıları",
+ "systemSecurity": "Sistem Güvenliği",
+ "trustedCert": "Güvenilen Sertifika",
+ "updates": "Güncelleştirmeler",
+ "userRights": "Kullanıcı Hakları",
+ "usersAndAccounts": "Kullanıcılar ve Hesaplar",
+ "vPN": "Temel VPN",
+ "vPNApps": "Otomatik VPN",
+ "vPNAppsAndTrafficRules": "Uygulamalar ve Trafik Kuralları",
+ "vPNConditionalAccess": "Koşullu Erişim",
+ "vPNConnectivity": "Bağlantı",
+ "vPNDNSTriggers": "DNS Ayarları",
+ "vPNIKEv2": "IKEv2 ayarları",
+ "vPNProxy": "Proxy",
+ "vPNSplitTunneling": "Bölünmüş Tünel",
+ "vPNTrustedNetwork": "Güvenilen Ağ Algılama",
+ "webContentFilter": "Web İçeriği Filtresi",
+ "wiFi": "Wi-Fi",
+ "win10Wifi": "Wi-Fi",
+ "windowsAtp": "Uç Nokta için Microsoft Defender",
+ "windowsDefenderATP": "Uç Nokta için Microsoft Defender",
+ "windowsHelloForBusiness": "İş için Windows Hello",
+ "windowsSpotlight": "Windows Spot",
+ "wiredNetwork": "Kablolu ağ",
+ "wireless": "Kablosuz",
+ "wirelessProjection": "Kablosuz projeksiyon",
+ "workProfile": "İş profili ayarları",
+ "workProfilePassword": "İş profili parolası",
+ "xboxServices": "Xbox hizmetleri",
+ "zebraMx": "MX profili (yalnızca Zebra)",
+ "complianceActionsLabel": "Uyumsuzluk eylemleri"
+ },
+ "WindowsFeatureUpdateProfile": {
+ "Details": {
+ "Description": {
+ "label": "Açıklama"
+ },
+ "FeatureDeploymentSettings": {
+ "header": "Özellik dağıtımı ayarları"
+ },
+ "FeatureUpdateVersion": {
+ "infoballoon": "Bu özellik bir cihazın sürümünü düşüremez.",
+ "label": "Dağıtılacak özellik güncelleştirmesi"
+ },
+ "GradualRolloutEndDate": {
+ "label": "Son grup kullanılabilirliği"
+ },
+ "GradualRolloutInterval": {
+ "label": "Gruplar arasındaki gün sayısı"
+ },
+ "GradualRolloutStartDate": {
+ "label": "İlk grup kullanılabilirliği"
+ },
+ "Name": {
+ "label": "Ad"
+ },
+ "RolloutOptions": {
+ "label": "Piyasaya çıkma seçenekleri"
+ },
+ "RolloutSettings": {
+ "header": "Güncelleştirmeyi Windows Update’te ne zaman kullanıma sunmak istersiniz?"
+ },
+ "ScopeSettings": {
+ "header": "Bu ilke için kapsam etiketlerini yapılandırın."
+ },
+ "StartDateOnlyStartDate": {
+ "label": "İlk kullanıma sunma tarihi"
+ },
+ "bladeTitle": "Özellik güncelleştirmesi dağıtımları",
+ "deploymentSettingsTitle": "Dağıtım ayarları",
+ "loadError": "Profil yükleme başarısız oldu!",
+ "windows11EULA": "Dağıtılacak Özellik güncelleştirmesini seçerek, bu işletim sistemini bir cihaza uygularken (1) geçerli Windows lisansının toplu lisanslama yoluyla satın alındığını veya (2) kuruluşunuzu bağlama yetkisine sahip olduğunuzu ve burada bulabileceğiniz ilgili Microsoft Yazılımı Lisans Koşulları’nı kuruluş adına kabul ettiğinizi onaylamış oluyorsunuz: {0}."
+ },
+ "Notifications": {
+ "deploymentSaved": "\"{0}\" kaydedildi.",
+ "newFeatureUpdateDeploymentCreated": "Yeni özellik güncelleştirme dağıtımı oluşturuldu."
+ },
+ "TabName": {
+ "deploymentSettings": "Dağıtım ayarları",
+ "groupAssignmentSettings": "Atamalar",
+ "scopeSettings": "Kapsam etiketleri"
+ }
+ },
+ "WIPPinRequirements": {
+ "WipLowercaseCharacterPinRequirements": {
+ "allow": "PIN'de küçük harf kullanımına izin ver",
+ "notAllow": "PIN'de küçük harf kullanımına izin verme",
+ "requireAtLeastOne": "PIN'de en az bir küçük harf kullanılmasını gerektir"
+ },
+ "WipSpecialCharacterPinRequirements": {
+ "allow": "PIN'de özel karakter kullanımına izin ver",
+ "notAllow": "PIN'de özel karakter kullanımına izin verme",
+ "requireAtLeastOne": "PIN'de en az bir özel karakter kullanılmasını gerektir"
+ },
+ "WipUppercaseCharacterPinRequirements": {
+ "allow": "PIN'de büyük harf kullanımına izin ver",
+ "notAllow": "PIN'de büyük harf kullanımına izin verme",
+ "requireAtLeastOne": "PIN'de en az bir büyük harf kullanılmasını gerektir"
+ }
+ },
+ "OutlookAppConfigSettings": {
+ "AllowUserToChangeSetting": {
+ "title": "Kullanıcının ayar değiştirmesine izin ver",
+ "tooltip": "Kullanıcının ayarı değiştirmesine izin verilip verilmediğini belirtin."
+ },
+ "AllowWorkAccounts": {
+ "title": "Yalnızca iş veya okul hesaplarına izin ver",
+ "tooltip": " Bu ayar etkinleştirildiğinde kullanıcılar Outlook'a kişisel e-posta ve depolama hesapları ekleyemez. Kullanıcı Outlook'a kişisel hesap eklemişse kişisel hesabı kaldırması istenir. Kullanıcı bu hesabı kaldırmazsa iş veya okul hesabı eklenemez."
+ },
+ "BlockExternalImages": {
+ "title": "Harici görüntüleri engelle",
+ "tooltip": "Harici görüntüleri engelleme özelliği etkinleştirildiğinde uygulama İnternet'te barındırılan ve ileti gövdesine ekli görüntülerin indirilmesini engeller. Yapılandırılmadı olarak ayarlandığında varsayılan uygulama ayarı Kapalı'dır"
+ },
+ "ConfigureEmail": {
+ "title": "E-posta hesabı ayarlarını yapılandır"
+ },
+ "DefaultAppSignatureSetting": {
+ "Tooltip": {
+ "android": "Varsayılan uygulama imzası, uygulamanın ileti oluşturma sırasında varsayılan imza olarak \"Android için Outlook'u edinin\" imzasını kullanıp kullanmayacağını belirtir. Ayar Kapalı olarak yapılandırıldıysa varsayılan imza kullanılmaz, ancak kullanıcılar kendi imzalarını ekleyebilir.\r\n\r\nYapılandırılmadı olarak ayarlandığında, varsayılan uygulama ayarı Açık olarak ayarlanır.",
+ "iOS": "Varsayılan uygulama imzası, uygulamanın ileti oluşturma sırasında varsayılan imza olarak \"iOS için Outlook'u edinin\" imzasını kullanıp kullanmayacağını belirtir. Ayar Kapalı olarak yapılandırıldıysa varsayılan imza kullanılmaz, ancak kullanıcılar kendi imzalarını ekleyebilir.\r\n\r\nYapılandırılmadı olarak ayarlandığında, varsayılan uygulama ayarı Açık olarak ayarlanır."
+ },
+ "title": "Varsayılan uygulama imzası"
+ },
+ "OfficeFeedReplies": {
+ "title": "Keşif Akışı",
+ "tooltip": "Keşif Akışı, en sık erişilen Office dosyalarınızı öne çıkarır. Kullanıcı için Delve etkinleştirildiğinde, bu akış da varsayılan olarak etkinleştirilir. Yapılandırılmadı olarak ayarlandığında, varsayılan uygulama ayarı Açık olarak belirlenir."
+ },
+ "OrganizeMailByThread": {
+ "title": "Postaları yazışmaya göre düzenleme",
+ "tooltip": "Outlook varsayılan olarak, posta konuşmalarını yazışmalardan oluşan bir görüşme görünümünde toplar. Bu ayar devre dışı bırakılırsa Outlook her bir postayı ayrı ayrı görüntüler ve bunları yazışmaya göre gruplandırmaz."
+ },
+ "PlayMyEmails": {
+ "title": "E-postalarımı Oynat",
+ "tooltip": "E-postalarımı Oynat özelliği uygulamada varsayılan olarak etkin değildir ancak uygun kullanıcıların gelen kutusunda bir başlık olarak öne çıkarılır. Kapalı olarak ayarlandığında, bu özellik uygulamada uygun kullanıcılar için öne çıkarılmaz. Bu özellik Kapalı olarak ayarlansa bile kullanıcılar, E-postalarımı Oynat özelliğini uygulamadan el ile etkinleştirmeyi seçebilir. Yapılandırılmadı olarak ayarlandığında varsayılan uygulama ayarı Açık olur ve özellik uygun kullanıcılar için öne çıkarılır."
+ },
+ "SuggestedReplies": {
+ "title": "Önerilen yanıtlar",
+ "tooltip": "Bir iletiyi açtığınızda Outlook, iletinin altında yanıtlar önerebilir. Önerilen bir yanıtı seçerseniz göndermeden önce bunu düzenleyebilirsiniz."
+ },
+ "SyncCalendars": {
+ "title": "Takvimleri Eşitle",
+ "tooltip": "Kullanıcıların Outlook takvimini yerel takvim uygulamasıyla ve veritabanıyla eşitleyip eşitleyemeyeceğini yapılandırın."
+ },
+ "TextPredictions": {
+ "title": "Metin Tahminleri",
+ "tooltip": "Outlook, siz ileti oluştururken sözcük ve tümceler önerebilir. Outlook öneri sunduğunda öneriyi kabul etmek için kaydırın. Yapılandırılmadı olarak ayarlandığında varsayılan uygulama ayarı Açık olarak ayarlanır."
+ },
+ "ThemesEnabled": {
+ "title": "Etkin temalar",
+ "tooltip": "Kullanıcının özel görsel tema kullanmasına izin verilip verilmeyeceğini belirtin."
+ }
+ },
+ "AssignmentFilters": {
+ "assignmentFilterColumnHeader": "Filtre",
+ "noFilters": "Yok"
+ },
+ "Platform": {
+ "all": "Tümü",
+ "android": "Android cihaz yöneticisi",
+ "androidAOSP": "Android (AOSP)",
+ "androidEnterprise": "Android Enterprise",
+ "androidForWork": "Android Enterprise",
+ "androidWorkProfile": "Android Enterprise",
+ "common": "Ortak",
+ "iOS": "iOS/iPadOS",
+ "iosAndAndroidPlatformLabel": "iOS ve Android",
+ "iosCommaAndroidPlatformLabel": "iOS, Android",
+ "linux": "Linux",
+ "macOS": "macOS",
+ "unknown": "Bilinmeyen",
+ "unsupported": "Desteklenmiyor",
+ "windows": "Windows",
+ "windows10": "Windows 10 ve sonraki sürümler",
+ "windows10CM": "Windows 10 ve üzeri sürümler (ConfigMgr)",
+ "windows10Holo": "Windows 10 Holographic",
+ "windows10Mobile": "Windows 10 Mobile",
+ "windows10Team": "Windows 10 Team",
+ "windows10X": "Windows 10X",
+ "windows8": "Windows 8.1 ve sonraki sürümler",
+ "windows8And10": "Windows 8 ve 10",
+ "windowsPhone": "Windows Phone 8.1",
+ "windows10AndLater": "Windows 10 ve sonraki sürümler",
+ "windows10AndWindowsServer": "Windows 10, Windows 11 ve Windows Server (ConfigMgr)",
+ "windows10andLaterCM": "Windows 10 ve üzeri sürümler (ConfigMgr)",
+ "holoLens": "HoloLens",
+ "surfaceHub2": "Surface Hub 2",
+ "surfaceHub2S": "Surface Hub 2S",
+ "windowsPC": "Windows Kişisel Bilgisayarı"
+ },
+ "AppInformationTab": {
+ "Error": {
+ "multipleChildApps": "macOS LOB uygulaması, yalnızca karşıya yüklenen paket tek bir uygulama içerdiğinde yönetilen olarak yüklenebilir."
+ },
+ "Info": {
+ "AppStoreUrl": {
+ "android": "Google Play Store'daki uygulama açıklamasının bağlantısını girin. Örneğin:",
+ "androidLink": "https://play.google.com/store/apps/details?id=com.microsoft.office.outlook",
+ "windows": "Microsoft Store'daki uygulama açıklamasının bağlantısını girin. Örneğin:",
+ "windowsLink": "https://www.microsoft.com/en-us/p/microsoft-to-do-lists-tasks-reminders/9nblggh5r558"
+ },
+ "appPackageFile": "Uygulamanızı bir cihaza dışarıdan yüklenebilecek biçimde içeren dosya. Geçerli paket türleri şunlardır: Android (.apk), iOS (.ipa), macOS (.pkg, .intunemac), Windows (.msi, .appx, .appxbundle, .msix ve .msixbundle).",
+ "applicableDeviceType": "Bu uygulamayı yükleyebilecek cihaz türlerini seçin.",
+ "category": "Kullanıcıların Şirket Portalı'nda sıralama ve arama yapmasını kolaylaştırmak için uygulamayı kategorilere ayırın. Birden çok kategori seçebilirsiniz.",
+ "categoryLink": "https://docs.microsoft.com/en-us/intune/apps/apps-add#create-and-edit-categories-for-apps",
+ "description": "Kullanıcıların uygulamanın ne olduğunu ve/veya uygulamada neler yapabileceklerini anlamalarına yardımcı olun. Bu açıklama Şirket Portalı'nda kullanıcılar tarafından görülebilir.",
+ "developer": "Uygulamayı geliştiren şirket veya kişinin adı. Bu bilgiler, yönetim merkezinde oturum açan kişiler tarafından görülebilir.",
+ "displayVersion": "Uygulamanın sürümü. Bu bilgiler, Şirket Portalı'nda kullanıcılar tarafından görülebilir.",
+ "infoUrl": "Kişileri uygulama hakkında daha fazla bilgi verilen bir web sitesi veya belge bağlantısına yönlendirin. Bilgi URL'si Şirket Portalı'nda kullanıcılar tarafından görülebilir.",
+ "isFeatured": "Öne çıkan uygulamalar, kullanıcıların hızlıca erişebilmesi için Şirket Portalı'nda dikkat çekici bir şekilde sunulur.",
+ "learnMore": "Daha fazla bilgi",
+ "logo": "Uygulama ile ilişkili logoyu karşıya yükleyin. Bu logo, Şirket Portalı'nda uygulamanın yanında görüntülenir.",
+ "macOSDmgAppPackageFile": "Uygulamanızın bir cihaza dışarıdan yüklenebilen bir formatta bulunduğu bir dosya. Geçerli paket türü: .dmg.",
+ "minOperatingSystem": "Uygulamanın yüklenebileceği en eski işletim sistemi sürümünü seçin. Uygulamayı daha eski işletim sistemine sahip bir cihaza atarsanız, uygulama yüklenmez.",
+ "name": "Uygulama için bir ad ekleyin. Bu ad, Intune uygulamaları listesinde ve Şirket Portalı'nda kullanıcılar tarafından görülebilir.",
+ "notes": "Uygulama hakkında ek notlar ekleyin. Notlar, Yönetim Merkezi'nde oturum açan kişiler tarafından görülebilir.",
+ "owner": "Kuruluşunuzda bu uygulama için lisanslamayı yöneten veya uygulamanın iletişim noktası olan kişinin adı. Bu ad, yönetim merkezinde oturum açan kişiler tarafından görülebilir.",
+ "packageName": "Uygulamanın paket adını almak için cihazın üreticisine başvurun. Örnek paket adı: com.example.app",
+ "privacyUrl": "Uygulamanın gizlilik ayarları ve koşulları hakkında daha fazla bilgi edinmek isteyen kişiler için bir bağlantı belirtin. Gizlilik URL'si Şirket Portalı'nda kullanıcılar tarafından görülebilir.",
+ "publisher": "Uygulamayı dağıtan geliştiricinin veya şirketin adı. Bu bilgiler, Şirket Portalı'nda kullanıcılar tarafından görülebilir.",
+ "selectApp": "Intune ile dağıtmak istediğiniz iOS için App Store mağaza uygulamalarını arayın.",
+ "useManagedBrowser": "Gerekirse, kullanıcı web uygulamasını açtığında uygulama, Microsoft Edge veya Intune Managed Browser gibi Intune korumalı bir tarayıcıda açılır. Bu ayar hem iOS hem de Android cihazlar için geçerlidir.",
+ "useManagedBrowserLink": "https://docs.microsoft.com/en-us/intune/apps/app-configuration-managed-browser",
+ "win32AppPackageFile": "Cihaza dışarıdan yüklenebilecek biçimdeki uygulamanızı içeren dosya. Geçerli paket türü: .intunewin."
+ },
+ "descriptionPreview": "Önizleme",
+ "descriptionRequired": "Açıklama gerekiyor.",
+ "editDescription": "Açıklamayı Düzenle",
+ "macOSMinOperatingSystemAdditionalInfo": "Bir .pkg dosyasını karşıya yüklemek için gerekli en düşük işletim sistemi macOS 10.14 sürümüdür. Daha eski bir en düşük işletim sistemi sürümü seçmek için bir .intunemac dosyasını karşıya yükleyin.",
+ "name": "Uygulama bilgileri",
+ "nameForOfficeSuitApp": "Uygulama paketi bilgileri"
+ },
+ "Tooltips": {
+ "PolicySettings": {
+ "TouchId1": {
+ "android": "Android'de PIN yerine parmak izi kimliği kullanılmasına izin verebilirsiniz. Kullanıcılardan, iş hesaplarıyla bu uygulamaya erişirken parmak izlerini sağlamaları istenir.",
+ "iOS": "iOS/iPadOS cihazlarında, PIN numarası yerine parmak izi tanımlaması kullanımına izin verebilirsiniz. Kullanıcılar iş hesaplarını kullanarak bu uygulamaya eriştiklerinde, parmak izlerini sağlamaları istenir.",
+ "mac": "Mac cihazlarda PIN numarası yerine parmak izi kullanımına izin verebilirsiniz. Kullanıcılar iş hesaplarını kullanarak bu uygulamaya eriştiklerinde, parmak izlerini sağlamaları istenir."
+ },
+ "appSharingFromLevel1": "Bu uygulamanın veri alabileceği uygulamaları belirtmek için aşağıdaki seçeneklerden birini belirtin:",
+ "appSharingFromLevel2": "{0}: Kuruluş belgeleri veya hesaplarındaki verilerin yalnızca ilkeyle yönetilen diğer uygulamalardan alınmasına izin ver",
+ "appSharingFromLevel3": "{0}: Kuruluş belgeleri veya hesaplarındaki verilerin tüm uygulamalardan alınmasına izin ver",
+ "appSharingFromLevel4": "{0}: Kuruluş belgeleri veya hesaplarındaki verilerin tüm uygulamalardan alınmasına izin verme",
+ "appSharingFromLevel5": "{0}: Tüm uygulamalardan veri aktarımına izin ver ve bir kullanıcı kimliği olmayan tüm gelen verileri kuruluş verileri olarak değerlendir.",
+ "appSharingToLevel1": "Bu uygulamanın veri gönderebileceği uygulamaları belirtmek için aşağıdaki seçeneklerden birini belirtin:",
+ "appSharingToLevel2": "{0}: Yalnızca ilkeyle yönetilen diğer uygulamalara kuruluş verileri gönderilmesine izin ver",
+ "appSharingToLevel3": "{0}: Tüm uygulamalara kuruluş verileri gönderilmesine izin ver",
+ "appSharingToLevel4": "{0}: Hiçbir uygulamaya kuruluş verileri gönderilmesine izin verme",
+ "appSharingToLevel5": "{0}: Kayıtlı cihazlarda yalnızca ilke ile yönetilen uygulamalara aktarıma ve diğer MDM ile yönetilen uygulamara dosya aktarımına izin ver",
+ "appSharingToLevel6": "{0}: Yalnızca ilke ile yönetilen uygulamalara aktarıma izin ver ve Birlikte Aç/Paylaş iletişim kutularını yalnızca ilke ile yönetilen uygulamaları görüntüleyecek şekilde filtrele",
+ "conditionalEncryption1": "Kayıtlı bir cihazda cihaz şifrelemesi algılandığında dahili uygulama depolaması için uygulama şifrelemesini devre dışı bırakmak üzere {0} seçeneğini belirleyin.",
+ "conditionalEncryption2": "Not: Intune yalnızca Intune MDM ile cihaz kaydını algılayabilir. Verilere yönetilmeyen uygulamalar tarafından erişilmediğinden emin olmak için harici uygulama depolaması yine de şifrelenir.",
+ "contactSyncMac": "Devre dışı bırakılırsa uygulamalar yerel adres defterine kişi kaydedemez.",
+ "contactsSync": "İlke tarafından yönetilen uygulamaların verileri cihazın yerel uygulamalarına (Kişiler, Takvim ve pencere öğeleri) kaydetmesini ve ilke tarafından yönetilen uygulamalardaki eklentilerin kullanılmasını önlemek için Engelle seçeneğini belirleyin. İzin ver seçeneğini belirlerseniz, bu özellikler ilke tarafından yönetilen uygulamada destekleniyorsa ve etkinse ilke tarafından yönetilen uygulama, verileri yerel uygulamalara kaydedebilir veya eklentileri kullanabilir.
Uygulamalar, uygulama yapılandırma ilkeleriyle ek yapılandırma özelliği sağlayabilir. Daha fazla bilgi için uygulamanın belgelerine bakın.",
+ "encryptionAndroid1": "Intune mobil uygulama yönetim ilkesiyle ilişkilendirilen uygulamalar için, şifreleme Microsoft tarafından sağlanır. Veriler, mobil uygulama yönetimi ilkesindeki ayara göre dosya G/Ç işlemleri sırasında eş zamanlı olarak şifrelenir. Android üzerindeki yönetilen uygulamalar, platform şifreleme kitaplıklarından yararlanan CBC modunda AES-128 şifrelemesini kullanır. Şifreleme yöntemi FIPS 140-2 uyumlu değildir. SHA-256 şifrelemesi, SigAlg parametresini kullanan açık bir yönerge olarak desteklenir ve yalnızca 4.2 ve üzeri cihazlarda çalışır. Cihaz depolama alanındaki içerikler her zaman şifrelenir.",
+ "encryptionAndroid2": "Uygulama ilkenizde şifreleme gerektirdiğinizde, cihazlarına erişmek için son kullanıcıların bir PIN ayarlaması ve kullanması gerekir. Cihaz erişimi için ayarlanmış bir PIN yoksa uygulamalar başlatılmaz ve son kullanıcıya “Şirketiniz, bu uygulamaya erişmek için öncelikle bir cihaz PIN'i etkinleştirmenizi gerektirdi.\" iletisi görüntülenir.",
+ "encryptionMac1": "Intune mobil uygulama yönetim ilkesiyle ilişkilendirilen uygulamalar için şifreleme Microsoft tarafından sağlanır. Veriler, mobil uygulama yönetimi ilkesindeki ayara göre dosya G/Ç işlemleri sırasında eş zamanlı olarak şifrelenir. Mac üzerindeki yönetilen uygulamalar, platform şifreleme kitaplıklarından yararlanan CBC modunda AES-128 şifrelemesini kullanır. Şifreleme yöntemi FIPS 140-2 uyumlu değildir. SHA-256 şifrelemesi, SigAlg parametresini kullanan açık bir yönerge olarak desteklenir ve yalnızca 4.2 ve üzeri cihazlarda çalışır. Cihaz depolama alanındaki içerikler her zaman şifrelenir.",
+ "faceId1": "Uygun olan yerlerde, PIN yerine yüz tanıma kullanımına izin verebilirsiniz. Kullanıcılar iş hesapları ile bu uygulamaya eriştiklerinde yüz kimliği sağlamaları istenir.",
+ "faceId2": "Uygulama erişimi için PIN yerine yüz tanıma kullanmaya izin vermek için Evet seçeneğine tıklayın.",
+ "managementLevelsAndroid1": "Bu ilkenin, Android cihaz yöneticisi cihazları, Android Enterprise cihazları veya yönetilmeyen cihazlar için geçerli olup olmayacağını belirtmek üzere bu seçeneği kullanın.",
+ "managementLevelsAndroid2": "{0}: Yönetilmeyen cihazlar, Intune MDM yönetiminin algılanmadığı cihazlardır. Bu, 3. taraf MDM satıcılarını içerir.",
+ "managementLevelsAndroid3": "{0}: Android Cihaz Yönetimi API'sini kullanan Intune tarafından yönetilen cihazlar.",
+ "managementLevelsAndroid4": "{0}: Android Enterprise İş Profilleri veya Android Enterprise Tam Cihaz Yönetimi kullanan, Intune tarafından yönetilen cihazlar.",
+ "managementLevelsIos1": "Bu ilkenin MDM yönetilen cihazlar veya yönetilmeyen cihazlara uygulanıp uygulanmayacağını belirtmek için bu seçeneği kullanın.",
+ "managementLevelsIos2": "{0}: Yönetilmeyen cihazlar, Intune MDM yönetiminin algılanmadığı cihazlardır. Bu, 3. taraf MDM satıcılarını içerir.",
+ "managementLevelsIos3": "{0}: Yönetilen cihazlar, Intune MDM tarafından yönetilir.",
+ "minAppVersion": "Bir kullanıcının uygulamaya güvenli erişim sağlaması için sahip olması gereken en düşük Uygulama sürümünü belirtin.",
+ "minAppVersionWarning": "Bir kullanıcının uygulamaya güvenli erişim sağlaması için sahip olması önerilen en düşük Uygulama sürümünü belirtin.",
+ "minOsVersion": "Bir kullanıcının uygulamaya güvenli erişim sağlaması için sahip olması gereken en düşük işletim sistemi sürümünü belirtin.",
+ "minOsVersionWarning": "Bir kullanıcının uygulamaya güvenli erişim sağlaması için sahip olması önerilen en düşük işletim sistemi sürümünü belirtin.",
+ "minPatchVersion": "Kullanıcının uygulamaya güvenli erişmek için sahip olabileceği en eski gerekli Android güvenlik düzeltme eki düzeyini tanımlayın.",
+ "minPatchVersionWarning": "Kullanıcının uygulamaya güvenli erişmek için sahip olabileceği en eski önerilen Android güvenlik düzeltme eki düzeyini tanımlayın.",
+ "minSdkVersion": "Bir kullanıcının uygulamaya güvenli erişim sağlaması için sahip olması gereken en düşük Intune Uygulama Koruma İlkesi SKD'sı sürümünü belirtin.",
+ "requireAppPinDefault": "Kayıtlı bir cihazda cihaz kilidi algılandığında uygulama PIN'ini devre dışı bırakmak için Evet'i seçin.
",
+ "targetAllApps1": "İlkenizi herhangi bir yönetim durumunda olan cihazlardaki uygulamalara hedeflemek için bu seçeneği kullanın.",
+ "targetAllApps2": "Kullanıcının ilkesi belirli bir yönetim durumu için hedeflendiyse ilke çatışması çözümleme sırasında bu ayarın yerine geçilir.",
+ "touchId2": "Uygulama erişiminde PIN numarası yerine parmak izi kimliğini zorunlu kılmak için {0} seçeneğini belirtin."
+ },
+ "Tap": {
+ "pinResetAfterNumberOfDays": "PIN numarasının kullanıcı tarafından sıfırlanması gerekmeden önce geçmesi gereken gün sayısını belirtin.",
+ "previousPinBlockCount": "Bu ayar, Intune'un koruyacağı önceki PIN'lerin sayısını belirtir. Tüm yeni PIN'ler, Intune'un koruduğu PIN'lerden farklı olmalıdır."
+ },
+ "WipPolicySettings": {
+ "25": "",
+ "allowWindowsSearch": "Bu Windows Search'ün şifrelenmiş verileri aramaya devam etmesine izin verir.",
+ "authoritativeIpRanges": "Windows'un IP aralıklarını otomatik algılamasını geçersiz kılmak istiyorsanız bu ayarı etkinleştirin.",
+ "authoritativeProxyServers": "Windows'un ara sunucuları otomatik algılamasını geçersiz kılmak istiyorsanız bu ayarı etkinleştirin.",
+ "checkInput": "Girişin geçerliliğini denetleyin",
+ "dataRecoveryCert": "Kurtarma sertifikası, şifreleme anahtarınız kaybolduğunda veya zarar gördüğünde şifreli dosyaları kurtarmak için kullanabileceğiniz özel bir Şifreleme Dosya Sistemi (EFS) sertifikasıdır. Kurtarma sertifikasını burada oluşturup belirtmeniz gerekir. Daha fazla bilgiyi burada bulabilirsiniz",
+ "enterpriseCloudResources": "Kurumsal olarak değerlendirilecek ve Windows Bilgi Koruması ilkesiyle korunacak bulut kaynaklarını belirtin. Girişler '|' karakteriyle ayrılarak birden çok kaynak belirtilebilir.
Şirketinizde yapılandırılmış bir proxy varsa, belirttiğiniz bulut kaynaklarına giden trafiğin hangi proxy üzerinden yönlendirileceğini belirtebilirsiniz.
URL[,Proxy]|URL[,Proxy]
Proxy olmadan: contoso.sharepoint.com|contoso.visualstudio.com
Proxy ile: contoso.sharepoint.com,proxy.contoso.com|contoso.visualstudio.com,proxy.contoso.com
",
+ "enterpriseIPv4Ranges": "Kurumsal ağınızı oluşturan IPv4 aralıklarını belirtin. Bunlar, kurumsal ağ sınırınızı tanımlamak için belirttiğiniz Kurumsal Ağ Etki Alanı Adları ile birlikte kullanılır.
Bu ayar, Windows Bilgi Koruması'nı etkinleştirmek için gereklidir.
Girişler virgülle ayrılarak birden çok aralık belirtilebilir.
Örneğin: 3.4.0.1-3.4.255.255,192.168.1.1-192.168.255.255
",
+ "enterpriseIPv6Ranges": "Kurumsal ağınızı oluşturan IPv6 aralıklarını belirtin. Bunlar, kurumsal ağ sınırınızı tanımlamak için belirttiğiniz Kurumsal Ağ Etki Alanı Adları ile birlikte kullanılır.
Girişler virgülle ayrılarak birden çok aralık belirtilebilir.
Örneğin: 2001:4898:dc05::-2001:4898:dc05:ffff:ffff:ffff:ffff:ffff,2a01:110::-2a01:110:7fff:ffff:ffff:ffff:ffff:ffff
",
+ "enterpriseInternalProxyServers": "Şirketinizde yapılandırılmış bir proxy varsa, Kurumsal Bulut Kaynakları ayarlarında belirtilen bulut kaynaklarına giden trafiğin hangi proxy üzerinden yönlendirileceğini belirtebilirsiniz.
Girişler noktalı virgülle ayrılarak birden fazla değer belirtilebilir.
Örneğin: contoso.internalproxy1.com;contoso.internalproxy2.com
",
+ "enterpriseNetworkDomainNames": "Kurumsal ağınızı oluşturan DNS adlarını belirtin. Bunlar, kurumsal ağ sınırınızı tanımlamak için belirttiğiniz IP aralıklarıyla birlikte kullanılır. Girişler virgülle ayrılarak birden çok değer belirtilebilir.
Bu ayar, Windows Bilgi Koruması'nı etkinleştirmek için gereklidir.
Örneğin: corp.contoso.com,region.contoso.com
",
+ "enterpriseProtectedDomainNames": "Şirket ağınızı oluşturan DNS adlarını belirtin. Bunlar, şirket ağı sınırlarınızı tanımlamak üzere belirttiğiniz IP aralıklarıyla birlikte kullanılır. Tek tek girişleri bir '|' ile ayırarak birden fazla değer belirtebilirsiniz.
Windows Bilgi Koruması'nı etkinleştirmek için bu ayar gereklidir.
Örneğin: sirket.contoso.com|bolge.contoso.com
",
+ "enterpriseProxyServers": "Kurumsal ağınızda dışarı yönelik proxy'ler varsa, bunları burada belirtin. Proxy sunucusu adresi belirtirken, trafik akışı için izin verilecek ve Windows Bilgi Koruması ile korunacak bağlantı noktasını da belirtmeniz gerekir.
Not: Bu liste, Kurumsal İç Proxy Sunucu listenizdeki sunucuları içermemelidir. Girişler noktalı virgülle ayrılarak birden çok değer belirtilebilir.
Örneğin: proxy.contoso.com:80;proxy2.contoso.com:80
",
+ "maxInactivityTime1": "Cihazın PIN'inin veya parolasının kilitlenmesine neden olan izin verilen en uzun boşta kalma süresini (dakika cinsinden) belirtir. Kullanıcılar Ayarlar uygulamasında belirtilen en uzun süreden daha kısa herhangi bir mevcut zaman aşımı değerini seçebilir. Bu ilke ile ayarlanana değer ne olursa olsun, Lumia 950 ve 950XL'nin en fazla 5 dakika zaman aşımı değeri olduğuna dikkat edin.",
+ "maxInactivityTime2": "0 (varsayılan) - Bir zaman aşımı değeri tanımlanmaz. '0' varsayılan değeri 'Zaman aşımı tanımlanmadı' olarak yorumlanır.",
+ "maxPasswordAttempts1": "Bu ilkenin, mobil cihazda ve masaüstünde farklı davranışları vardır.",
+ "maxPasswordAttempts2": "Mobil cihazda, kullanıcı bu ilke ile ayarlanan değere ulaştığında cihaz silinir.",
+ "maxPasswordAttempts3": "Masaüstünde, kullanıcı bu ilke ile ayarlanan değere ulaştığında bilgisayar silinmez. Onun yerine, masaüstü BitLocker kurtarma moduna geçirilerek veriler erişilemez ancak kurtarılabilir yapılır. BitLocker etkileştirilmemişse ilke zorlanamaz.",
+ "maxPasswordAttempts4": "Başarısız deneme sınırına ulaşmadan önce, kullanıcı kilit ekranına gönderilir ve daha fazla başarısız denemenin bilgisayarı kilitleyeceği konusunda uyarılır. Kullanıcı sınıra ulaştığında cihaz otomatik olarak yeniden başlatılır ve BitLocker kurtarma sayfasını gösterir. Bu sayfa, kullanıcıya BitLocker kurtarma anahtarını sorar.",
+ "maxPasswordAttempts5": "0 (varsayılan) - Hatalı PIN veya parola girildikten sonra cihaz asla silinmez.",
+ "maxPasswordAttempts6": "Tüm ilke değerleri = 0 ise en güvenli değer 0'dır; aksi takdirde, En düşük ilke değeri en güvenli değerdir.",
+ "mdmDiscoveryUrl": "MDM'ye kaydolan kullanıcıların kullanacağı MDM kayıt uç noktasının URL'sini belirtin. Varsayılan ayar olarak, bu Intune için belirtilmiştir.",
+ "minimumPinLength1": "PIN için gerekli en az sayıda karakteri ayarlayan tamsayı değeri. Varsayılan değer 4'tür. Bu ilke ayarı için yapılandırabileceğiniz en küçük sayı 4'tür. Yapılandırabileceğiniz en büyük sayı, Maksimum PIN uzunluğu ilke ayarında yapılandırılan sayıdan veya 127 sayısından hangisi küçükse ondan küçük olmalıdır.",
+ "minimumPinLength2": "Bu ilke ayarını yapılandırırsanız PIN uzunluğu bu sayıdan büyük veya bu sayıya eşit olmalıdır. Bu ilke ayarını devre dışı bırakır veya yapılandırmazsanız PIN uzunluğu 4'e eşit veya daha büyük olmalıdır.",
+ "name": "Bu ağ sınırının adı",
+ "neutralResources": "Şirketinizde kimlik doğrulama için yeniden yönlendirme uç noktaları varsa, bunları burada belirtin. Burada belirtilen konumlar, bağlantının yeniden yönlendirmeden önceki bağlamına bağlı olarak, kişisel ya da kurumsal olarak değerlendirilir.
Girişler virgülle ayrılarak birden çok değer belirtilebilir.
Örneğin: sts.contoso.com,sts.contoso2.com
",
+ "passportForWork1": "Windows'ta oturum açma yöntemi olarak İş İçin Windows Hello'yu ayarlayan değer",
+ "passportForWork2": "Varsayılan değer true'dur. Bu ilkeyi false olarak ayarlarsanız kullanıcı, sağlamanın gerekli olduğu Azure Active Directory'ye katılan cep telefonları dışında İş İçin Windows Hello'yu hiçbir yerde sağlayamaz.",
+ "pinExpiration": "Bu ilke ayarı için yapılandırabileceğiniz en büyük sayı 730'dur. Bu ilke ayarı için yapılandırabileceğiniz en küçük sayı 0'dır. Bu ilke 0 olarak ayarlanırsa kullanıcının PIN'inin süresi asla sona ermez.",
+ "pinHistory1": "Bu ilke ayarı için yapılandırabileceğiniz en büyük sayı 50'dir. Bu ilke ayarı için yapılandırabileceğiniz en küçük sayı 0'dır. Bu ilke 0 olarak ayarlanırsa önceki PIN'lerin depolanması gerekmez.",
+ "pinHistory2": "Kullanıcının geçerli PIN'i kullanıcı hesabıyla ilişkilendirilmiş PIN'ler kümesine eklenir. PIN geçmişi PIN sıfırlama yoluyla korunmaz.",
+ "protectUnderLock": "Cihaz kilitli durumdayken uygulama içeriği korunur.",
+ "protectionModeBlock": "Engelle: Kurumsal verilerin korumalı uygulamalardan ayrılmasını engeller.
",
+ "protectionModeOff": "Kapalı: Kullanıcı verileri korunan uygulamaların dışında yeniden konumlandırmakta özgürdür. Hiçbir eylem kaydedilmez.
",
+ "protectionModeOverride": "Geçersiz kılmalara izin ver: Kullanıcı verileri korunan uygulamadan korunmayan uygulamaya yeniden konumlandırmayı denediğinde bu durum sorulur. Bu istemi geçersiz kılmayı seçerse eylem kaydedilir.
",
+ "protectionModeSilent": "Sessiz: Kullanıcı verileri korunan uygulamaların dışında yeniden konumlandırmakta özgürdür. Bu eylemler kaydedilir.
",
+ "required": "Gerekli",
+ "revokeOnMdmHandoff": "Windows 10, sürüm 1703'te eklenmiştir. Bu ilke, bir cihaz MAM'den MDM'ye yükseltildiğinde WIP anahtarlarının iptal edilip edilmeyeceğini denetler. \"Kapalı\" olarak ayarlanırsa, anahtarlar iptal edilmez ve kullanıcı yükseltmeden sonra korumalı dosyalara erişmeye devam eder. MDM hizmeti MAM hizmeti ile aynı WIP EnterpriseID kullanılarak yapılandırıldıysa bu önerilir.",
+ "revokeOnUnenroll": "Bir cihazın bu ilkeden kaydı kaldırıldığında şifreleme anahtarlarının iptal edilmesine neden olur.",
+ "rmsTemplateForEdp": "RMS şifrelemesi için kullanılacak TemplateID GUID'si. Azure RMS şablonu, BT yöneticisinin RMS korumalı dosyaya kimlerin ne kadar süreyle erişebileceği ile ilgili ayrıntıları yapılandırmasını sağlar.",
+ "showWipIcon": "Üzerine bir simge koyarak kurumsal bağlamda işlem yapan kullanıcının bunu bilmesini sağlar.",
+ "useRmsForWip": "WIP için Azure RMS şifrelemesine izin verilip verilmeyeceğini belirtir."
+ },
+ "requireAppPin": "Kayıtlı bir cihazda cihaz kilidi algılandığında uygulama PIN'ini devre dışı bırakmak için Evet'i seçin.
Not: Intune, iOS/iPadOS'ta üçüncü taraf EMM çözümü ile yapılan cihaz kaydını algılayamaz.
"
+ },
+ "Autopilot": {
+ "AssignResourceAccount": {
+ "createNewCommandMenu": "Yeni oluştur",
+ "createNewResourceAccountInfo": "\r\nKayıt sırasında yeni bir kaynak hesabı oluşturun. Kaynak hesabı, Kaynak hesabı tablosuna hemen eklenir, ancak cihaz kaydedilinceye ve Surface Hub aboneliği doğrulanıncaya kadar etkin olmaz. Kaynak Hesapları hakkında daha fazla bilgi edinin
\r\n ",
+ "createNewResourceTitle": "Yeni kaynak hesabı oluştur",
+ "deviceNameInvalid": "Cihaz adı geçersiz bir biçimde",
+ "deviceNameRequired": "Cihaz adı gerekiyor",
+ "editResourceAccountLabel": "Düzenle",
+ "selectExistingCommandMenu": "Mevcut olanı seç"
+ },
+ "Device": {
+ "ComputerName": {
+ "validFormat": "Adlar 15 karakter veya daha kısa olmalıdır ve harf (a-z, A-Z), sayı (0-9) ve kısa çizgi içerebilir. Adlar yalnızca sayı içeremez. Adlar boşluk içeremez."
+ },
+ "Header": {
+ "addressableUserName": "Kullanımı kolay ad",
+ "azureADDevice": "İlişkili Azure AD cihazı",
+ "batch": "Group tag",
+ "dateAssigned": "Atama tarihi",
+ "deviceAccountFriendlyName": "Cihaz hesabına uygun ad",
+ "deviceAccountPwd": "Cihaz hesabı şifresi",
+ "deviceAccountUpn": "Device account",
+ "deviceDisplayName": "Device name",
+ "deviceName": "Cihaz adı",
+ "deviceUseType": "Cihaz kullanım türü",
+ "enrollmentState": "Kayıt durumu",
+ "intuneDevice": "İlişkili Intune cihazı",
+ "lastContacted": "Son iletişim",
+ "make": "Üretici",
+ "model": "Model",
+ "profile": "Atanan profil",
+ "profileStatus": "Profil durumu",
+ "purchaseOrderId": "Satın alma siparişi",
+ "resourceAccount": "Kaynak hesabı",
+ "serialNumber": "Seri numarası",
+ "userPrincipalName": "Kullanıcı"
+ },
+ "SurfaceHub": {
+ "friendlyNameRequired": "Kolay bir ad gereklidir",
+ "pwdRequired": "Parola gereklidir",
+ "upnRequired": "Bir cihaz hesabı gerekiyor.",
+ "upnValidFormat": "Değerler harfler (a-z, A-Z), sayılar (0-9) ve kısa çizgiler içerebilir. Değerler boşluk içeremez."
+ }
+ },
+ "DeviceUseType": {
+ "meetingAndPresentation": "Toplantı ve sunum",
+ "teamCollaboration": "Ekip işbirliği"
+ },
+ "Devices": {
+ "featureDescription": "Windows Autopilot, kullanıcılarınız için ilk kez çalıştırma deneyimini (OOBE) özelleştirmenize olanak tanır.",
+ "importErrorStatus": "Bazı cihazlar içeri aktarılamadı. Daha fazla bilgi için buraya tıklayın.",
+ "importPendingStatus": "İçeri aktarma sürüyor. Geçen süre: {0} dk. Bu işlem {1} dakikaya kadar sürebilir."
+ },
+ "DirectoryService": {
+ "activeDirectoryAD": "Hibrit Azure AD ile katılan",
+ "activeDirectoryADLabel": "Autopilot ile Hibrit Azure AD",
+ "azureAD": "Azure AD'ye katıldı",
+ "unknownType": "Bilinmeyen Tür"
+ },
+ "Filter": {
+ "enrollmentState": "Durum",
+ "profile": "Profil durumu"
+ },
+ "OOBE": {
+ "AddressableUserName": {
+ "validateEmpty": "Kullanıcı kolay adı boş olamaz."
+ },
+ "ApplyComputerNameTemplate": {
+ "infoBalloon": "Kayıt sırasında cihazlarınıza ad eklemek için bir adlandırma şablonu oluşturun.",
+ "label": "Cihaz adı şablonu uygula"
+ },
+ "ApplyComputerNameTemplateDisabled": {
+ "label": "Hibrit Azure AD ile katılan türdeki Autopilot dağıtım profillerinde cihazlar, Etki Alanı Katılımı yapılandırmasında belirtilen ayarlar kullanılarak yapılandırılır."
+ },
+ "ComputerNameTemplate": {
+ "emptyValue": "MyCompany-%RAND:4%",
+ "label": "Bir ad girin",
+ "noDisallowedChars": "Ad yalnızca alfasayısal karakterler, kısa çizgi, %SERIAL% veya %RAND:x içermelidir",
+ "serialLength": "%SERIAL% ile 7'den fazla karakter kullanılamaz",
+ "validateLessThan15Chars": "Ad, 15 karakter veya daha kısa olmalıdır",
+ "validateNoSpaces": "Bilgisayar adları boşluk içeremez",
+ "validateNotAllNumbers": "Ad ayrıca harf ve/veya kısa çizgi içermelidir",
+ "validateNotEmpty": "Ad boş olamaz",
+ "validateOnlyOneMacro": "Ad, %SERIAL% veya %RAND:x% makrolarından yalnızca birini içermelidir"
+ },
+ "ConfigureComputerNameTemplate": {
+ "description": "Cihazlarınız için benzersiz bir ad oluşturun. Ad en fazla 15 karakter olmalıdır ve harf (a-z, A-Z), sayı (0-9) ve kısa çizgi içerebilir. Ad yalnızca sayıdan oluşamaz ve boşluk içeremez. Donanıma özgü bir seri numarası eklemek için %SERIAL% makrosunu kullanın. Alternatif olarak rastgele bir sayı dizesi eklemek için x değişkeninin basamak sayısına eşit olduğu %RAND:x% makrosunu kullanın."
+ },
+ "EnableWhiteGlove": {
+ "infoBalloon": "Cihazı kaydetmek ve sistem bağlamındaki tüm uygulama ve ayarları sağlamak amacıyla OOBE'yi kullanıcı kimlik doğrulaması olmadan çalıştırmak için Windows tuşuna 5 kere basmayı etkinleştirin. Kullanıcı bağlamı uygulama ve ayarlar, kullanıcı oturum açtığında teslim edilir.",
+ "label": "Önceden sağlanan dağıtıma izin ver"
+ },
+ "HybridAzureADSkipConnectivityCheck": {
+ "infoBalloon": "Autopilot Hibrit Azure AD'ye katılma akışı, OOBE sırasında etki alanı denetleyicisi bağlantısı oluşturmasa bile devam eder.",
+ "label": "AD bağlantı denetimini atla (önizleme)"
+ },
+ "accountType": "Kullanıcı hesabı türü",
+ "accountTypeInfo": "Cihazdaki kullanıcıların yönetici mi yoksa standart kullanıcı mı olduğunu belirtin. Bu ayarın Genel Yönetici veya Şirket Yöneticisi hesaplarına uygulanmadığını unutmayın. Bu hesaplar, Azure AD'deki tüm yönetici özelliklerine erişebileceği için standart kullanıcılar atanamaz.",
+ "configOOBEInfo": "\r\nAutopilot cihazlarınızın ilk kez kullanım deneyimini yapılandırın\r\n
",
+ "configureDevice": "Dağıtım modu",
+ "configureDeviceHintForSurfaceHub2": "Autopilot, Surface Hub 2 için yalnızca kendi kendine dağıtım modunu destekler. Bu mod, kullanıcıyı kayıtlı cihazla ilişkilendirmediğinden kullanıcı kimlik bilgilerini gerektirmez.",
+ "configureDeviceHintForWindowsPC": "\r\n Dağıtım modu, bir kullanıcının cihaz sağlamak için kimlik bilgilerini girmesi gerekip gerekmediğini belirler.\r\n
\r\n \r\n - \r\n Kullanıcı Temelli: Cihazlar, cihazı kaydeden kullanıcıyla ilişkilendirilir ve cihazın sağlanması için kullanıcı kimlik bilgileri gereklidir\r\n
\r\n - \r\n Otomatik dağıtım (önizleme): Cihazlar, cihazı kaydeden kullanıcıyla ilişkilendirilmez ve cihazın sağlanması için kullanıcı kimlik bilgileri gerekli değildir\r\n
\r\n
",
+ "createSurfaceHub2Info": "Surface Hub 2 cihazlarınız için Autopilot kayıt ayarlarını yapılandırın. Autopilot'ta ilk kez çalıştırma deneyimi sırasında kullanıcı kimliğini doğrulamayı atlama varsayılan olarak etkindir. Surface Hub 2 için Windows Autopilot hakkında daha fazla bilgi edinin.",
+ "createWindowsPCInfo": "\r\n\r\nKendi kendine dağıtım modunda Autopilot cihazları için şu seçenekler otomatik olarak etkinleştirilir:\r\n
\r\n\r\n - \r\n İş veya Ev kullanımı seçimini atla\r\n
\r\n - \r\n OEM kaydını ve OneDrive yapılandırmasını atla\r\n
\r\n - \r\n OOBE'de kullanıcı kimlik doğrulamasını atla\r\n
\r\n
",
+ "endUserDevice": "Kullanıcı Temelli",
+ "hideEscapeLink": "Hesabı değiştirme seçeneklerini gizle",
+ "hideEscapeLinkInfo": "Hesabı değiştirme ve farklı bir hesapla yeniden başlama seçenekleri, sırasıyla şirket oturum açma sayfasında ve etki alanı hata sayfasında ilk cihaz kurulumu sırasında görüntülenir. Bu seçenekleri gizlemek için Azure Active Directory'de şirket markasını yapılandırmanız gerekir (Windows 10, 1809 ve üzeri bir sürüm veya Windows 11 gerektirir).",
+ "info": "Autopilot profili ayarları, kullanıcıların Windows'u ilk kez başlattığında göreceği ilk çalıştırma deneyimini tanımlar.",
+ "language": "Dil (Bölge)",
+ "languageInfo": "Kullanılacak dili ve bölgeyi belirtin.",
+ "licenseAgreement": "Microsoft Yazılım Lisans Koşulları",
+ "licenseAgreementInfo": "EULA'nın kullanıcılara gösterilip gösterilmeyeceğini belirtin.",
+ "plugAndForgetDevice": "Otomatik Dağıtım (önizleme)",
+ "plugAndForgetGA": "Kendi Kendine Dağıtılıyor",
+ "privacySettingWarning": "Windows 10, sürüm 1903 ve sonraki sürümleri veya Windows 11’i çalıştıran cihazlarda, tanılama verilerinin toplanmasına ilişkin varsayılan değer değişti. ",
+ "privacySettings": "Gizlilik ayarları",
+ "privacySettingsInfo": "Gizlilik ayarlarının kullanıcılara gösterilip gösterilmeyeceğini belirtin.",
+ "showCortanaConfigurationPage": "Cortana yapılandırması",
+ "showCortanaConfigurationPageInfo": "Göster seçeneği, başlangıçta Cortana yapılandırma girişini etkinleştirir.",
+ "skipEULAWarning": "Lisans koşullarını gizleme hakkında önemli bilgiler",
+ "skipKeyboardSelection": "Klavyeyi otomatik olarak yapılandırma",
+ "skipKeyboardSelectionInfo": "True değerindeyse Dil ayarlı olduğunda klavye seçimi sayfasını atlayın.",
+ "subtitle": "Autopilot profilleri",
+ "title": "İlk çalıştırma deneyimi (OOBE)",
+ "useOSDefaultLanguage": "İşletim sistemi varsayılanı",
+ "userSelect": "Kullanıcı seçimi"
+ },
+ "Sync": {
+ "lastRequestedLabel": "Son eşitleme isteği",
+ "lastSuccessfulLabel": "Son başarılı eşitleme",
+ "syncInProgress": "Eşitleme sürüyor. En kısa zamanda tekrar gelin.",
+ "syncInitiated": "Autopilot ayarları eşitlemesi başlatıldı.",
+ "syncSettingsTitle": "Autopilot ayarlarını eşitle"
+ },
+ "Title": {
+ "devices": "Windows Autopilot cihazları"
+ },
+ "Tooltips": {
+ "addressableUserName": "Cihaz kurulumu sırasında görüntülenen karşılama adı.",
+ "azureADDevice": "İlişkili cihaz için cihaz ayrıntılarına gidin. Yok, ilişkili cihaz olmadığını gösterir.",
+ "batch": "Bir cihaz grubunu tanımlamak için kullanılabilen bir dize özniteliği. Intune'un Grup Etiketi alanı, Azure AD cihazlarındaki OrderID özniteliğine eşlenir.",
+ "dateAssigned": "Profilin cihaza atandığı tarihin zaman damgası.",
+ "deviceAccountFriendlyName": "Surface Hub cihazları için cihaz hesabına uygun ad",
+ "deviceAccountPwd": "Surface Hub cihazları için cihaz hesabı parolası",
+ "deviceAccountUpn": "Surface Hub cihazları için cihaz hesabı e-postası",
+ "deviceDisplayName": "Bir cihaz için benzersiz bir ad yapılandırın. Bu ad, Hibrit Azure AD ile katılan dağıtımlarda yok sayılacak. Cihaz adı, Hibrit Azure AD cihazları için hala etki alanı katılım profilinden gelir.",
+ "deviceName": "Kullanıcı, cihazı bulmaya ve bu cihaza bağlanmaya çalışırken görüntülenen ad.",
+ "deviceUseType": " Cihaz, seçiminize bağlı olarak ayarlanır. Daha sonra her zaman Ayarlar'dan değişiklik yapabilirsiniz.\r\n \r\n - Toplantılar ve sunular için, Windows Hello açık değildir ve her oturumdan sonra veriler kaldırılır.\r\n
\r\n - Ekip işbirliği için, Windows Hello açıktır ve profiller hızlı oturum açma için kaydedilir
\r\n
",
+ "enrollmentState": "Cihazın kaydolup kaydolmadığını belirtir.",
+ "intuneDevice": "İlişkili cihaz için cihaz ayrıntılarına gidin. Yok, ilişkili cihaz olmadığını gösterir.",
+ "lastContacted": "Cihazla son bağlantı kurulan tarihin zaman damgası.",
+ "make": "Seçilen cihazın üreticisi.",
+ "model": "Seçilen cihazın modeli",
+ "profile": "Cihaza atanmış profilin adı.",
+ "profileStatus": "Cihazın profile atanıp atanmadığını belirtir.",
+ "purchaseOrderId": "Satın alma sipariş kimliği",
+ "resourceAccount": "Cihazın kimliği veya kullanıcı asıl adı (UPN).",
+ "serialNumber": "Seçilen cihazın seri numarası.",
+ "userPrincipalName": "Cihazın kurulumu sırasında kullanıcı, kimlik doğrulama bilgisini önceden dolduracaktır."
+ },
+ "allDevices": "Tüm cihazlar",
+ "allDevicesAlreadyAssignedError": "Tüm Cihazlara zaten bir Autopilot profili atandı.",
+ "assignFailedDescription": "{0} için atamalar güncelleştirilemedi.",
+ "assignFailedTitle": "Autopilot profil atamaları güncelleştirilemedi.",
+ "assignSuccessDescription": "{0} atamaları başarıyla güncelleştirildi.",
+ "assignSuccessTitle": "Autopilot profil atamaları başarıyla güncelleştirildi.",
+ "assignSufaceHub2ProfileNextStep": "Bu dağıtım için sonraki adımlar",
+ "assignSurfaceHub2ProfileToDeviceGroup": "1. Bu profili en az bir cihaz grubuna atayın",
+ "assignSurfaceHub2ProfileToResourceAccount": "2. Bu profili dağıttığınız her Surface Hub cihazına bir kaynak hesabı atayın",
+ "assignedDevicesCount": "Atanan cihazlar",
+ "assignedDevicesResourceAccountDescription": "Bu profilin bir cihaza dağıtılması için cihaza bir Kaynak hesabı atamanız gerekir. Mevcut bir Kaynak hesabını atamak veya yeni bir hesap oluşturmak için tek seferde bir cihaz seçin. Kaynak hesapları hakkında daha fazla bilgi edinin
",
+ "assignedDevicesResourceAccountStatusBarMessage": "Bu tablo yalnızca bu profile atanmış olan Surface Hub 2 cihazlarını listeler.",
+ "assigningDescription": "{0} atamaları güncelleştiriliyor.",
+ "assigningTitle": "Autopilot profil atamaları güncelleştiriliyor.",
+ "autoremediationContext": "We've detected a hardware change on this device. We're trying to automatically register the new hardware. You don't need to do anything now; the status will be updated at the next check in with the result. Learn more about resetting the profile.",
+ "autoremediationTitle": "Device {0} has a fix pending",
+ "cannotDeleteMessage": "Bu profil gruplara atanmış. Silmek için önce bu profilden tüm grupların atamasını kaldırmanız gerekir.",
+ "cannotDeleteTitle": "{0} silinemiyor",
+ "createdDateTime": "Oluşturuldu",
+ "deleteMessage": "Bu Autopilot profilini silerseniz bu profile atanmış tüm cihazlar Atanmamış olarak görüntülenir.",
+ "deleteMessageWithPolicySet": "{0} bir veya daha fazla ilke kümesine eklenmiş. {0} öğesini silerseniz, bu öğeyi artık bu ilke kümeleri aracılığıyla atayamazsınız.",
+ "deleteTitle": "Bu profili silmek istediğinizden emin misiniz?",
+ "description": "Açıklama",
+ "deviceType": "Cihaz türü",
+ "deviceUse": "Cihaz kullanımı",
+ "directoryServiceHintForSurfaceHub2": " \r\n Autopilot, Surface Hub 2 cihazları için yalnızca Azure AD'ye Katılmış olarak desteklenir. Cihazların kuruluşunuzda Active Directory'ye (AD) katılma yöntemini belirtin.\r\n
\r\n \r\n - \r\n Azure AD'ye katılmış: Şirket içi Windows Server Active Directory olmadan yalnızca bulut.\r\n
\r\n
\r\n ",
+ "directoryServiceHintForWindowsPC": "\r\n \r\n Cihazların kuruluşunuzda Active Directory'ye (AD) nasıl katıldığını belirtin:\r\n
\r\n \r\n - \r\n Azure AD'ye katıldı: Şirket içi Windows Server Active Directory olmadan yalnızca bulutta\r\n
\r\n
\r\n ",
+ "getAssignedDevicesCountError": "Atanan cihaz sayısı getirilirken bir hata oluştu.",
+ "getAssignmentsError": "Autopilot profil atamaları getirilirken bir hata oluştu.",
+ "harvestDeviceId": "Hedeflenen tüm cihazları Autopilot'a dönüştür",
+ "harvestDeviceIdDescription": "Bu profil, varsayılan olarak yalnızca Autopilot hizmetinden eşitlenen Autopilot cihazlarına uygulanabilir.",
+ "harvestDeviceIdInfo": "\r\n Zaten kayıtlı değillerse, hedeflenen tüm cihazları Autopilot'a kaydetmek için Evet'i seçin. Kayıtlı cihazlar, bir sonraki Windows İlk Kez Çalıştırma Deneyimi'nden (OOBE) geçişlerinde, atanan Autopilot senaryosunu tamamlar.\r\n
\r\n Bazı Autopilot senaryoları için belirli en düşük Windows derlemelerinin gerektiğini lütfen unutmayın. Lütfen cihazınızda senaryoyu tamamlamak için gereken minimum derlemenin bulunduğundan emin olun.\r\n
\r\n Bu profili kaldırdığınızda, etkilenen cihazlar Autopilot'tan kaldırılmaz. Bir cihazı Autopilot'tan kaldırmak için Windows Autopilot Cihazları görünümünü kullanın.\r\n ",
+ "harvestDeviceIdWarning": "Dönüşümden sonra Autopilot cihazları yalnızca Autopilot cihazları listesinden silinerek geri döndürülebilir.",
+ "holoLensCommandMenu": "HoloLens",
+ "info": "Windows Autopilot dağıtım profilleri cihazlarınızın ilk çalıştırma deneyimini özelleştirmenize olanak sağlar.",
+ "invalidProfileNameMessage": "\"{0}\" karakterine izin verilmiyor",
+ "joinTypeLabel": "Azure AD'ye farklı katıl",
+ "lastModifiedDateTime": "Son değiştirme:",
+ "manualRemediationContext": "We've detected a hardware change on this device. It won't automatically receive an Autopilot profile when it's reset unless you register the device again. Learn more about resetting the profile.",
+ "manualRemediationTitle": "Device {0} needs your attention",
+ "name": "Ad",
+ "noAutopilotProfile": "Autopilot profili yok",
+ "notEnoughPermissionAssignedError": "Bu profili seçili gruplarınızdan en az birine atamak için yeterli izniniz yok. Lütfen yöneticinize başvurun.",
+ "profile": "profil",
+ "resourceAccountStatusBarMessage": "Bu profilin dağıtıldığı her Surface Hub 2 cihazı için bir Kaynak Hesabı gerekir. Daha fazla bilgi için tıklayın.",
+ "selectServices": "Cihazların katılacağı dizin hizmetini seçin",
+ "surfaceHub2CommandMenu": "Surface Hub 2",
+ "surfaceHub2SCommandMenu": "Surface Hub 2S",
+ "userAffinityLabel": "Dağıtım modu",
+ "windowsPCCommandMenu": "Windows Kişisel Bilgisayarı",
+ "directoryServiceLabel": "Azure AD'ye katılma türü:"
},
- "CategoryDescription": {
- "androidGeneralApplicationRestrictions": "Şirketinizde kullanım için onaylanmamış uygulamalar yükleyen kullanıcılar hakkında bilgi sahibi olmak için bu ayarları kullanın. Kısıtlı uygulama listesi türünü seçin:
\r\n Yasaklı uygulamalar - Kullanıcılar tarafından yüklendiğinde bilgilendirilmek istediğiniz uygulamaların listesi.
\r\n Onaylı uygulamalar - Şirketinizde kullanım için onaylanmış uygulamaların listesi. Kullanıcılar bu listede olmayan bir uygulama yüklediğinde bilgilendirilirsiniz.
\r\n ",
- "androidZebraMxZebraMx": "XML biçiminde bir MX profilini karşıya yükleyerek Zebra cihazları yapılandırın.",
- "iosDeviceFeaturesAirprint": "iOS cihazlarını ağınızdaki AirPrint uyumlu yazıcılara otomatik olarak bağlanacak şekilde yapılandırmak için bu ayarları kullanın. Yazıcılarınızın IP adresine ve kaynak yoluna ihtiyacınız vardır.",
- "iosDeviceFeaturesExtensibleSingleSignOn": "iOS 13.0 ve sonraki sürümleri çalıştıran cihazlar için çoklu oturum açma (SSO) sağlayan bir uygulama uzantısı yapılandırın.",
- "iosDeviceFeaturesHomeScreenLayout": "iOS cihazlarında dock ve Giriş Ekranları için ekran düzenini yapılandırın. Bazı cihazlarda, görüntülenebilecek öğe sayısı sınırlandırılmış olabilir.",
- "iosDeviceFeaturesIOSWallpaper": "iOS cihazlarının Giriş Ekranında ve/veya kilit ekranında gösterilecek görüntüyü seçin.\r\n Her iki konumda da benzersiz bir görüntü göstermek için kilit ekranı görüntüsüyle ve Giriş Ekranı görüntüsüyle iki ayrı profil oluşturun.\r\n Daha sonra her iki profili de kullanıcılarınıza atayın.\r\n
\r\n \r\n - Maksimum dosya boyutu: 750 KB
\r\n - Dosya türü: PNG, JPG veya JPEG
\r\n
\r\n ",
- "iosDeviceFeaturesNotifications": "Uygulamalar için bildirim ayarlarını belirtin. iOS 9.3 ve sonraki sürümleri destekler.",
- "iosDeviceFeaturesSharedDevice": "Kilit ekranında görüntülenecek isteğe bağlı bir metin belirtin. Bu, iOS 9.3 ve sonrası sürümlerde desteklenir. Daha Fazla Bilgi Edinin",
- "iosGeneralApplicationRestrictions": "Şirketinizde kullanım için onaylanmamış uygulamalar yükleyen kullanıcılar hakkında bilgi sahibi olmak için bu ayarları kullanın. Kısıtlı uygulama listesi türünü seçin:
\r\n Yasaklı uygulamalar - Kullanıcılar tarafından yüklendiğinde bilgilendirilmek istediğiniz uygulamaların listesi.
\r\n Onaylı uygulamalar - Şirketinizde kullanım için onaylanmış uygulamaların listesi. Kullanıcılar bu listede olmayan bir uygulama yüklediğinde bilgilendirilirsiniz.
\r\n ",
- "iosGeneralApplicationVisibility": "Kullanıcının görüntüleyebileceği veya başlatabileceği iOS uygulamalarını belirtmek için, gösterilen uygulamalar listesini kullanın. Kullanıcının görüntüleyemeyeceği veya başlatamayacağı iOS uygulamalarını belirtmek için, gizli uygulamalar listesini kullanın.",
- "iosGeneralAutonomousSingleAppMode": "Bu listeye eklediğiniz ve bir cihaza atadığınız uygulamalar, başlatıldıktan sonra yalnızca kendisini çalıştırmak için cihazı kilitleyebilir veya belirli bir eylem çalışırken (örneğin bir test yapılırken) cihazı kilitleyebilir. Eylem tamamlandıktan veya siz kısıtlamayı kaldırdıktan sonra cihaz normal durumuna geri döner.",
- "iosGeneralKiosk": "Kiosk modu, çeşitli ayarları cihaza kilitler veya cihazda çalıştırılabilecek tek bir uygulamayı belirtir. Bu özellik, cihazın yalnızca tek bir demo uygulamasını çalıştırmasını istediğiniz perakende mağaza gibi ortamlarda yararlı olabilir.",
- "macDeviceFeaturesAirprint": "macOS cihazları, ağınızdaki AirPrint uyumlu yazıcılara otomatik olarak bağlanmak üzere yapılandırmak için bu ayarları kullanın. Yazıcılarınızın IP adresleri ve kaynak yoluna ihtiyacınız olacaktır.",
- "macDeviceFeaturesAssociatedDomains": "Kuruluşunuzun uygulamaları ile web siteleri arasında veri ve oturum açma kimlik bilgilerini paylaşmak için ilişkili etki alanlarını yapılandırın. Bu profil, macOS 10.15 veya sonraki sürümleri çalıştıran cihazlara uygulanabilir.",
- "macDeviceFeaturesExtensibleSingleSignOn": "macOS 10.15 veya sonraki sürümleri çalıştıran cihazlar için çoklu oturum açma (SSO) sağlayan bir uygulama uzantısı yapılandırın.",
- "macDeviceFeaturesLoginItems": "Kullanıcılar cihazlarında oturum açtığında hangi uygulamaların, dosyaların ve klasörlerin açılacağını seçin. Kullanıcıların seçilen uygulamaların açılma şeklini değiştirmesini istemiyorsanız, uygulamaları kullanıcı yapılandırmasından gizleyebilirsiniz.",
- "macDeviceFeaturesLoginWindow": "macOS oturum açma ekranının görünümünü ve kullanıcılara oturum açmadan önce ve açtıktan sonra sunulan işlevleri yapılandırın.",
- "macExtensionsKernelExtensions": "10.13.2 veya üzeri bir sürüm çalıştıran macOS cihazlarda çekirdek uzantı ilkesini yapılandırmak için bu ayarları kullanın.",
- "macGeneralDomains": "Son kullanıcı tarafından gönderilen veya alınan ve burada belirttiğiniz etki alanlarıyla eşleşmeyen e-postalar, güvenilmeyen olarak işaretlenir.",
- "windows10EndpointProtectionApplicationGuard": "Microsoft Edge kullanırken Microsoft Defender Application Guard, ortamınızı kuruluşunuz tarafından güvenilir olarak tanımlanmayan sitelerden korur. Kullanıcılar, yalıtılmış ağ sınırınızda listelenmeyen siteleri ziyaret ettiğinde, siteler Hyper-V'de sanal bir göz atma oturumunda açılır. Güvenilir siteler, Cihaz Yapılandırmasında yapılandırılabilen bir ağ sınırı ile tanımlanır. Bu özelliğin yalnızca 64 bit Windows 10 veya sonraki bir sürümünü çalıştıran cihazlarda kullanılabildiğini unutmayın.",
- "windows10EndpointProtectionCredentialGuard": "Credential Guard'ı etkinleştirmek şu gerekli ayarları etkinleştirir:\r\n
\r\n \r\n - Sanallaştırma Tabanlı Güvenliği Etkinleştir: Bir sonraki yeniden başlatmada sanallaştırma tabanlı güvenliği (VBS) açar. Sanallaştırma tabanlı güvenlik, güvenlik hizmetlerine destek sağlamak için Windows Hiper Yöneticisi'ni kullanır.
\r\n
\r\n - Doğrudan Bellek Erişimi ile Güvenli Önyükleme: VBS'yi Güvenli Önyükleme ve doğrudan bellek erişimi (DMA) ile açar.
\r\n
\r\n ",
- "windows10EndpointProtectionDeviceGuard": "Microsoft Defender Uygulama Denetimi tarafından denetlenmesi gereken veya çalışması için güvenilebilecek ek uygulamaları seçin. Windows bileşenlerine ve Windows mağazasından alınan tüm uygulamalara çalışmaları için otomatik olarak güvenilir.
\r\n Uygulamalar \"Yalnızca denetim\" modunda çalışırken engellenmez. \"Yalnızca denetim\" modu tüm olayları yerel günlüklere kaydeder.\r\n ",
- "windows10GeneralPrivacyPerApp": "\"Varsayılan gizlilik\"te tanımladığınızdan farklı bir gizlilik davranışı olması gereken uygulamaları ekleyin.",
- "windows10NetworkBoundaryNetworkBoundary": "Ağ sınırı, bulut tarafından barındırılan etki alanı ve kuruluş ağı üzerindeki bilgisayarlar için IP adres aralıkları gibi kurumsal kaynakların listesidir. Bu konumlarda bulunan verileri korumaya yönelik ilkeler uygulamak için ağ sınırlarını tanımlayın.",
- "windowsHealthMonitoring": "Windows işlevsel durum izleme ilkesini yapılandırın.",
- "windowsPhoneGeneralApplicationRestrictions": "Windows Phone, kullanıcıların yasaklı uygulama listesinde belirtilen veya onaylı uygulamalar listesinde belirtilmeyen uygulamaları yüklemesini veya başlatmasını engelleyebilir. Tüm yönetilen uygulamalar onaylı listeye eklenmelidir."
- },
"MinimumOperatingSystem": {
"Android": {
"v10": "Android 10.0",
@@ -2435,6 +1154,304 @@
"excludedGroups": "Dışlanan Gruplar",
"licenseType": "Lisans türü"
},
+ "TAP": {
+ "AccessRequirements": {
+ "infoText": "Kullanıcıların bir iş bağlamındaki uygulamalara erişmek için karşılaması gereken PIN ve kimlik bilgisi gereksinimlerini yapılandırın."
+ },
+ "DataProtection": {
+ "infoText": "Bu grup kesme, kopyalama, yapıştırma ve farklı kaydetme kısıtlamaları gibi veri kaybı önleme (DLP) denetimlerini içerir. Bu ayarlar, kullanıcıların uygulamalardaki verilerle nasıl etkileşim kurduğunu belirler."
+ },
+ "DeviceTypes": {
+ "selectOne": "En az bir cihaz türü seçin."
+ },
+ "TargetedApps": {
+ "TargetToAll": {
+ "label": "Tüm cihaz türlerindeki uygulamaları hedefle"
+ },
+ "infoText": "Bu ilkeyi farklı cihazlardaki uygulamalara nasıl uygulamak istediğinizi seçin. Ardından en az bir uygulama ekleyin.",
+ "selectOne": "İlke oluşturmak için en az bir uygulama seçin."
+ }
+ },
+ "AssignmentAction": {
+ "exclude": "Dışlandı",
+ "include": "Dahil edilen",
+ "includeAllDevicesVirtualGroup": "Dahil edilen",
+ "includeAllUsersVirtualGroup": "Dahil edilen"
+ },
+ "AppType": {
+ "androidEnterpriseSystemApp": "Android Enterprise sistem uygulaması",
+ "androidForWorkApp": "Yönetilen Google Play Store uygulaması",
+ "androidLobApp": "Android iş kolu uygulaması",
+ "androidStoreApp": "Android mağaza uygulaması",
+ "builtInAndroid": "Yerleşik Android uygulaması",
+ "builtInApp": "Yerleşik uygulama",
+ "builtInIos": "Yerleşik iOS uygulaması",
+ "default": "",
+ "iosLobApp": "iOS iş kolu uygulaması",
+ "iosStoreApp": "iOS mağaza uygulaması",
+ "iosVppApp": "iOS Volume Purchase Program uygulaması",
+ "lineOfBusinessApp": "İş kolu uygulaması",
+ "macOSDmgApp": "macOS uygulaması (DMG)",
+ "macOSEdgeApp": "Microsoft Edge (macOS)",
+ "macOSLobApp": "macOS iş kolu uygulaması",
+ "macOSMdatpApp": "Microsoft Defender ATP (macOS)",
+ "macOSOfficeSuiteApp": "Microsoft 365 Uygulamaları (macOS)",
+ "macOsVppApp": "macOS Volume Purchase Program uygulaması",
+ "managedAndroidLobApp": "Yönetilen Android iş kolu uygulaması",
+ "managedAndroidStoreApp": "Yönetilen Android mağaza uygulaması",
+ "managedGooglePlayApp": "Yönetilen Google Play Store uygulaması",
+ "managedGooglePlayPrivateApp": "Yönetilen Google Play özel uygulaması",
+ "managedGooglePlayWebApp": "Yönetilen Google Play web bağlantısı",
+ "managedIosLobApp": "Yönetilen iOS iş kolu uygulaması",
+ "managedIosStoreApp": "Yönetilen iOS mağaza uygulaması",
+ "microsoftStoreForBusinessApp": "İş İçin Microsoft Store uygulaması",
+ "microsoftStoreForBusinessReleaseManagedApp": "İş İçin Microsoft Store",
+ "officeSuiteApp": "Microsoft 365 Uygulamaları (Windows 10 ve üzeri)",
+ "webApp": "Web bağlantısı",
+ "windowsAppXLobApp": "Windows AppX iş kolu uygulaması",
+ "windowsClassicApp": "Windows uygulaması (Win32)",
+ "windowsEdgeApp": "Microsoft Edge (Windows 10 ve üzeri)",
+ "windowsMobileMsiLobApp": "Windows MSI iş kolu uygulaması",
+ "windowsPhone81AppXBundleLobApp": "Windows Phone 8.1 AppX iş kolu uygulaması",
+ "windowsPhone81AppXLobApp": "Windows Phone 8.1 AppX iş kolu uygulaması",
+ "windowsPhone81StoreApp": "Windows Phone 8.1 mağaza uygulaması",
+ "windowsPhoneXapLobApp": "Windows Phone XAP iş kolu uygulaması",
+ "windowsStoreApp": "Microsoft Store uygulaması",
+ "windowsUniversalAppXLobApp": "Windows Universal AppX iş kolu uygulaması",
+ "windowsUniversalLobApp": "Windows Evrensel iş kolu uygulaması"
+ },
+ "TAPSettings": {
+ "AllowedDataIngestionLocations": {
+ "label": "Kullanıcıların seçili hizmetlerden veri açmasına izin ver",
+ "tooltip": "Kullanıcıların verileri açabileceği uygulama depolama hizmetlerini seçin. Diğer tüm hizmetler engellenir. Hizmet seçilmemesi, kullanıcıların verileri açmasını engeller."
+ },
+ "AndroidBackup": {
+ "label": "Kuruluş verilerini Android yedekleme hizmetlerine yedekleme",
+ "tooltip": "Kuruluş verilerinin Android yedekleme hizmetlerine yedeklenmesini engellemek için {0} seçeneğini belirleyin. \r\nKuruluş verilerinin Android yedekleme hizmetlerine yedeklenmesine izin vermek için {1} seçeneğini belirleyin. \r\nKişisel veya yönetilmeyen veriler bu ayardan etkilenmez."
+ },
+ "AndroidBiometricAuthentication": {
+ "label": "Erişim için PIN yerine biyometri",
+ "tooltip": "Varsa, kullanıcıların uygulama PIN'i yerine kullanabileceği Android kimlik doğrulaması yöntemlerini seçin."
+ },
+ "AndroidFingerprint": {
+ "label": "Erişim için PIN yerine parmak izi (Android 6.0+)",
+ "tooltip": "Android işletim sistemi, Android cihaz kullanıcılarının kimliğini doğrulamak için parmak izi taramalarını kullanır. Bu özellik, Android cihazlardaki yerel biyometrik denetimleri destekler. Samsung Geçiş İzni gibi OEM'ye özgü biyometrik ayarlar desteklenmez. İzin verilirse, biyometrik denetimi olan bir cihazda uygulamaya erişmek için bu yerel biyometrik denetimler kullanılmalıdır."
+ },
+ "AndroidOverrideFingerprint": {
+ "label": "Zaman aşımından sonra parmak izini PIN ile geçersiz kıl"
+ },
+ "AppPIN": {
+ "label": "Cihaz PIN'i ayarlı olduğunda uygulama PIN'i",
+ "tooltip": "Gerekli değilse, MDM kayıtlı bir cihazda cihaz PIN’i ayarlıysa uygulamaya erişmek için bir uygulama PIN’i kullanılması gerekmez.
\r\n\r\nNot: Intune, Android’de üçüncü taraf bir EMM çözümüyle yapılan cihaz kaydını algılayamaz."
+ },
+ "BlockDataIngestionIntoOrganizationDocuments": {
+ "label": "Verileri Kuruluş belgelerine aç",
+ "tooltip1": "Aç seçeneğinin veya bu uygulamadaki hesaplar arasında veri paylaşmayı sağlayan diğer seçeneklerin kullanımını devre dışı bırakmak için Engelle'yi seçin. Aç seçeneğinin veya bu uygulamadaki hesaplar arasında veri paylaşmayı sağlayan diğer seçeneklerin kullanımına izin vermek istiyorsanız İzin ver'i seçin.",
+ "tooltip2": "Engelle olarak ayarlandığında, Kullanıcının seçili hizmetlerden veri açmasına izin ver ayarını Kuruluş veri konumları için hangi hizmetlere izin verileceğini belirleyecek şekilde yapılandırabilirsiniz.",
+ "tooltip3": "Not: Bu ayar yalnızca \"Diğer uygulamalardan veri al\" ayarı \"İlke tarafından yönetilen uygulamalar\" olarak belirlendiğinde uygulanır.
\r\nNot: Bu ayar tüm uygulamalar için geçerli değildir. Daha fazla bilgi için bkz. {0}.",
+ "tooltip4": "Not: Bu ayar yalnızca \"Diğer uygulamalardan veri al\" ayarı \"İlke tarafından yönetilen uygulamalar\" olarak belirlendiğinde uygulanır.
\r\nNot: Bu ayar tüm uygulamalar için geçerli değildir. Daha fazla bilgi için bkz. {0} veya {0}."
+ },
+ "ConnectToVpnOnLaunch": {
+ "label": "Uygulama başlatılınca Microsoft Tunnel bağlantısını başlat.",
+ "tooltip": "Uygulama başlatılırken VPN bağlantısına izin ver."
+ },
+ "CredentialsForAccess": {
+ "label": "Erişim için iş veya okul hesabı kimlik bilgileri",
+ "tooltip": "İstenirse, ilkeyle yönetilen uygulamaya erişmek için iş veya okul kimlik bilgilerinin kullanılması gerekir. Uygulamaya erişmek için ayrıca PIN veya biyometrik yöntemler gerekirse, bu istemlere ek olarak iş veya okul hesabı kimlik bilgileri de istenir."
+ },
+ "CustomBrowserDisplayName": {
+ "label": "Yönetilmeyen Tarayıcı Adı",
+ "tooltip": "\"Yönetilmeyen Tarayıcı Kimliği\" ile ilişkili tarayıcı için uygulama adını girin. Belirtilen tarayıcı yüklü değilse kullanıcılara bu ad görüntülenir."
+ },
+ "CustomBrowserPackageId": {
+ "label": "Yönetilmeyen Tarayıcı Kimliği",
+ "tooltip": "Tek bir tarayıcının uygulama kimliğini girin. İlkeyle yönetilen uygulamaların Web içeriği (http/s) belirtilen tarayıcıda açılır."
+ },
+ "CustomBrowserProtocol": {
+ "label": "Yönetilmeyen tarayıcı protokolü",
+ "tooltip": "Tek bir yönetilmeyen tarayıcı için protokol girin. İlkeyle yönetilen uygulamaların web içeriği (http/s) bu protokolü destekleyen herhangi bir uygulamada açılır.
\r\n \r\nNot: Yalnızca protokol ön ekini ekleyin. Tarayıcınız \"tarayıcım://www.microsoft.com\" biçiminde bağlantılar gerektiriyorsa \"tarayıcım\" yazın.
"
+ },
+ "CustomDialerAppDisplayName": {
+ "label": "Numara Çevirici Uygulaması Adı"
+ },
+ "CustomDialerAppPackageId": {
+ "label": "Numara Çevirici Uygulaması Paket Kimliği"
+ },
+ "CustomDialerAppProtocol": {
+ "label": "Numara Çevirici Uygulaması URL Şeması"
+ },
+ "Cutcopypaste": {
+ "label": "Diğer uygulamalar arasında kesme, kopyalama ve yapıştırmayı kısıtla",
+ "tooltip": "Uygulamanız ve cihaza yüklü diğer onaylı uygulamalar arasında veri kesin, kopyalayın ve yapıştırın. Uygulamalar arasında bu eylemleri tamamen engelleme, bunların herhangi bir uygulamada kullanılmasına izin verme veya kuruluşunuzun yönettiği uygulamaların kullanımını kısıtlama arasında bir seçim yapın.
\r\n\r\nİçine yapıştıracağınız ilkeyle yönetilen uygulamalar başka bir uygulamadan yapıştırılmış gelen içeriği kabul etme seçeneği sunar. Ancak yönetilen bir uygulamayla paylaşılmıyorsa, kullanıcıların içeriği dolaysız olarak paylaşmasını engeller.
"
+ },
+ "DialerRestrictionLevel": {
+ "iosTooltip": "Genellikle kullanıcı, uygulamada bağlantılı bir telefon numarası seçtiğinde çevirici uygulaması önceden doldurulan telefon numarasıyla ve aramaya hazır şekilde açılır. Bu ayar için bu tür içerik aktarımı ilke tarafından yönetilen bir uygulamadan başlatıldığında bu aktarımın nasıl işleneceğini seçin. Bu ayarın etkili olması için ek adımlar gerekebilir. İlk olarak, listeyi hariç tutmak için telefonun ve telefon isteminin Uygulama seç bölümünden kaldırıldığını doğrulayın. Daha sonra uygulamanın, Intune SDK'sının daha yeni bir sürümünü (12.7.0 üzeri bir sürüm) kullandığından emin olun.",
+ "label": "İletişim verilerini şuraya aktar:",
+ "tooltip": "Genellikle kullanıcı uygulamada köprü biçimindeki bir telefon numarası seçtiğinde, önceden doldurulmuş telefon numarasıyla arama yapmaya hazır bir çevirici uygulaması açılır. Bu ayar için ilke tarafından yönetilen bir uygulamadan bu tür içerik aktarımı başlatıldığında bu aktarımın nasıl yönetileceğini seçin."
+ },
+ "EncryptData": {
+ "label": "Kuruluş verilerini şifrele",
+ "link": "https://docs.microsoft.com/en-us/intune/app-protection-policy-settings-android#data-relocation-settings",
+ "tooltip": "Kuruluş verilerini Intune uygulama katmanı şifrelemesiyle şifrelemeyi zorunlu kılmak için {0} seçeneğini belirleyin.\r\n
\r\nKuruluş verilerini Intune uygulama katmanı şifrelemesi ile şifrelemeyi zorunlu kılmamak için {1} seçeneğini belirleyin.\r\n\r\n
\r\nNot: Intune uygulama katmanı şifrelemesi hakkında daha fazla bilgi için bkz. {2}."
+ },
+ "EncryptDataAndroid": {
+ "tooltip": "Bu uygulamada iş veya okul verilerinin şifrelenmesini etkinleştirmek için Gerektir seçeneğini belirleyin. Intune, uygulama verilerini güvenle şifrelemek için Android Keystore sisteminin yanı sıra bir OpenSSL, 256 bit AES şifreleme düzenini kullanır. Veriler, dosya G/Ç görevleri sırasında eş zamanlı olarak şifrelenir. Cihaz depolamasındaki içerik her zaman şifrelenir. SDK, eski SDK sürümlerini kullanan içerik ve uygulamalarla uyumluluğu sürdürmek amacıyla 128 bit anahtar desteği sağlamaya devam eder.
\r\n\r\nŞifreleme yöntemi FIPS 140-2 uyumludur.
"
+ },
+ "EncryptDataIos": {
+ "tooltip1": "Bu uygulamada iş veya okul verilerinin şifrelemesini etkinleştirmek için Gerektir seçeneğini belirleyin. Intune, cihaz kilitliyken uygulama verilerini korumak için iOS/iPadOS cihaz şifrelemesini zorunlu tutar. Uygulamalar, Intune APP SDK'sı şifrelemesini kullanarak isteğe bağlı olarak uygulama verilerini şifreleyebilir. Intune APP SDK'sı, uygulama verilerine 128 bit AES şifrelemesi uygulamak amacıyla iOS/iPadOS şifreleme yöntemlerini kullanır.",
+ "tooltip2": "Bu ayarı etkinleştirdiğinizde, kullanıcının cihazına erişmek için bir PIN ayarlayıp bunu kullanması gerekir. Cihaz PIN'i yoksa ve şifreleme gerekliyse \"Kuruluşunuz bu uygulamaya erişebilmeniz için bir cihaz PIN'i etkinleştirmenizi gerektiriyor\" iletisiyle kullanıcıdan bir PIN ayarlaması istenir.",
+ "tooltip3": "Hangi iOS şifreleme modüllerinin FIPS 140-2 uyumlu olduğunu veya FIPS 140-2 uyumluluğu beklediğini görmek için resmi Apple belgelerine gidin."
+ },
+ "EncryptDataOnEnrolledDevices": {
+ "label": "Kuruluş verilerini kayıtlı cihazlarda şifrele",
+ "tooltip": "Tüm cihazlarda kuruluş verilerini Intune uygulama katmanı şifrelemesi ile şifrelemeyi zorunlu kılmak için {0} seçeneğini belirleyin.
\r\n\r\nKayıtlı cihazlarda kuruluş verilerini Intune uygulama katmanı şifrelemesi ile şifrelemeyi zorunlu kılmamak için {1} seçeneğini belirleyin."
+ },
+ "IOSBackup": {
+ "label": "Kuruluş verilerini iTunes ve iCloud yedeklerine yedekle",
+ "tooltip": "Kuruluş verilerinin iTunes veya iCloud'a yedeklenmesini engellemek için {0} seçeneğini belirleyin. \r\nKuruluş verilerinin iTunes veya iCloud'a yedeklenmesine izin vermek için {1} seçeneğini belirleyin. \r\nKişisel veya yönetilmeyen veriler etkilenmez."
+ },
+ "IOSFaceID": {
+ "label": "Erişim için PIN yerine Face ID (iOS 11+/iPadOS)",
+ "tooltip": "Face ID, iOS/iPadOS cihazlarında kullanıcıların kimliklerini doğrulamak için yüz tanıma teknolojisi kullanır. Intune, kullanıcıların kimliğini Face ID kullanarak doğrulamak için LocalAuthentication API'sini çağırır. Bu ayara izin verilirse, uygulamaya Face ID özellikli bir cihazda erişmek için Face ID kullanılması gerekir."
+ },
+ "IOSOverrideTouchId": {
+ "label": "Zaman aşımından sonra biyometriyi PIN ile geçersiz kıl"
+ },
+ "IOSTouchId": {
+ "label": "Erişim için PIN yerine Touch ID (iOS 8+/iPadOS)",
+ "tooltip": "Touch ID, iOS cihazlarında kullanıcıların kimliğini doğrulamak için parmak izi tanıma teknolojisi kullanır. Intune, kullanıcıların kimliklerini Touch ID kullanarak doğrulamak için LocalAuthentication API'sini çağırır. Bu ayara izin verilirse uygulamaya Touch ID özellikli bir cihazda erişmek için Touch ID kullanılması gerekir."
+ },
+ "NotificationRestriction": {
+ "label": "Kuruluş verileri bildirimleri",
+ "tooltip": "Bu uygulama ve giyilebilir cihazlar gibi bağlı cihazlar için kuruluş hesaplarına yönelik bildirimlerin nasıl gösterileceğini belirtmek üzere aşağıdaki seçeneklerden birini belirleyin:
\r\n{0}: Bildirimleri paylaşma.
\r\n{1}: Kuruluş verilerini bildirimlerde paylaşma. Uygulama tarafından desteklenmiyorsa bildirimler engellenir.
\r\n{2}: Tüm bildirimleri paylaş.
\r\n Yalnızca Android:\r\n Not: Bu ayar tüm uygulamalar için geçerli değildir. Daha fazla bilgi için bkz. {3}
\r\n \r\n Yalnızca iOS:\r\nNot: Bu ayar tüm uygulamalar için geçerli değildir. Daha fazla bilgi için bkz. {4}
"
+ },
+ "OpenLinksManagedBrowser": {
+ "label": "Diğer uygulamalarla web içerik aktarımını kısıtla",
+ "tooltip": "Bu uygulamanın, web içeriğini açabileceği uygulamaları belirtmek için şu seçeneklerden birini belirleyin:
\r\nMicrosoft Edge: Web içeriğinin yalnızca Microsoft Edge’de açılmasına izin ver
\r\nYönetilmeyen tarayıcı: Web içeriğinin yalnızca \"Yönetilmeyen tarayıcı protokolü\" ayarıyla tanımlanan yönetilmeyen tarayıcıda açılmasına izin verin.
\r\nTüm uygulamalar: Web bağlantılarının tüm uygulamalarda açılmasına izin ver
"
+ },
+ "OverrideBiometric": {
+ "tooltip": "Gerekirse zaman aşımına (dakika olarak eylemsizlik süresi) bağlı olarak bir PIN istemi, biyometrik istemlerini geçersiz kılar. Bu zaman aşımı değerine ulaşılmazsa biyometrik istemi gösterilmeye devam eder. Bu zaman aşımı değeri, 'Erişim gereksinimlerini yeniden denetlemek için geçecek süre (dakika olarak eylemsizlik süresi)' altında belirtilen değerden büyük olmalıdır. "
+ },
+ "PinAccess": {
+ "label": "Erişim için PIN",
+ "tooltip": "Gerekirse ilke ile yönetilen uygulamaya erişmek için bir PIN kullanılması gerekir. Bir iş veya okul hesabından uygulamayı ilk kez açtıklarında kullanıcıların bir erişim PIN'i oluşturması gerekir."
+ },
+ "PinLength": {
+ "label": "En düşük PIN uzunluğunu seçin",
+ "tooltip": "Bu ayar bir PIN'de bulunması gereken en az rakam sayısını belirtir."
+ },
+ "PinType": {
+ "label": "PIN türü",
+ "tooltip": "Sayısal PIN'ler tamamen sayıdan oluşur. Geçiş kodları alfasayısal ve özel karakterlerden oluşur. "
+ },
+ "Printing": {
+ "label": "Kuruluş verileri yazdırılıyor",
+ "tooltip": "Engellenmişse, uygulama korumalı verileri yazdıramaz."
+ },
+ "ReceiveData": {
+ "label": "Diğer uygulamalardan veri al",
+ "tooltip": "Bu uygulamanın veri alabileceği uygulamaları belirtmek için aşağıdaki seçeneklerden birini belirleyin:
\r\n\r\nHiçbiri: Hiçbir uygulamadan kuruluş belgeleri veya hesaplarındaki verilerin alınmasına izin vermeyin
\r\n\r\nİlkeyle yönetilen uygulamalar: Kuruluş belgeleri veya hesaplarındaki verilerin yalnızca ilkeyle yönetilen diğer uygulamalardan alınmasına izin verin\r\n
\r\nGelen kuruluş verisi olan tüm uygulamalar: Kuruluş belgeleri veya hesaplarındaki verilerin tüm uygulamalardan alınmasına izin verin ve kullanıcı hesabı bulunmayan tüm gelen verileri kuruluş verisi olarak değerlendirin
\r\n\r\nTüm uygulamalar: Kuruluş belgeleri veya hesaplarındaki verilerin tüm uygulamalardan alınmasına izin verin"
+ },
+ "RecheckAccessAfter": {
+ "label": "Erişim gereksinimlerini yeniden denetlemek için geçecek süre (dakika olarak eylemsizlik)\r\n\r\n",
+ "tooltip": "İlkeyle yönetilen uygulama belirtilen dakika olarak eylemsizlik süresinden daha uzun bir süre eylemsiz kalırsa uygulama, başlatıldıktan sonra erişim gereksinimlerinin (yani PIN, koşullu başlatma ayarları) yeniden denetlenmesini ister."
+ },
+ "RestrictKeyboards": {
+ "duplicatePackageError": "Paket kimliği benzersiz olmalıdır.",
+ "invalidPackageError": "Geçersiz paket kimliği",
+ "label": "Onaylanan klavyeler",
+ "select": "Onaylanacak klavyeleri seçin",
+ "subtitle": "Kullanıcıların hedeflenen uygulamalarla kullanmasına izin verilen tüm klavye ve giriş yöntemlerini ekleyin. Son kullanıcıya görünmesini istediğiniz klavye adını girin.",
+ "title": "Onaylanan klavyeleri ekle",
+ "toolTip": "Gerektir seçeneğini belirleyin ve ardından bu ilke için onaylanan klavyelerin bir listesini belirtin. Daha fazla bilgi."
+ },
+ "SaveData": {
+ "label": "Kuruluş verilerinin kopyalarını kaydet",
+ "tooltip": "Kuruluş verilerinin bir kopyasının \"Farklı Kaydet\" kullanılarak seçili depolama hizmetlerinden başka bir konuma kaydedilmesini engellemek için {0} seçeneğini belirleyin.\r\nKuruluş verilerinin \"Farklı Kaydet\" kullanılarak yeni bir konuma kaydedilmesine izin vermek için {1} seçeneğini belirleyin.
\r\n\r\n\r\nNot: Bu ayar tüm uygulamalar için geçerli değildir. Daha fazla bilgi için bkz. {2}.\r\n"
+ },
+ "SaveDataToSelected": {
+ "label": "Kullanıcının seçili hizmetlere kopya kaydetmesine izin ver",
+ "tooltip": "Kullanıcıların kuruluş verilerinin kopyalarını kaydedebileceği depolama hizmetlerini seçin. Diğer tüm hizmetler engellenir. Hizmet seçilmemesi, kullanıcıların kuruluş verilerinin bir kopyasını kaydetmesini engeller."
+ },
+ "ScreenCaptureAndAndroidAssistant": {
+ "label": "Ekran yakalama ve Google Assistant\r\n",
+ "tooltip": "Engellenirse ilkeyle yönetilen bir uygulama kullanılırken, ekran yakalama ve Google Assistant uygulama tarama özellikleri devre dışı bırakılır. Bu özellik bilinen Google Assistant uygulamasını destekler. Google'ın Assist API'sini kullanan üçüncü taraf yardımcılar desteklenmez. Engelle'yi seçmek ayrıca, uygulama bir iş veya okul hesabıyla kullanılırken Uygulama Geçişi önizleme görüntüsünü bulanıklaştırır."
+ },
+ "SendData": {
+ "label": "Kuruluş verilerini diğer uygulamalara gönder",
+ "tooltip": "Bu uygulamanın kuruluş verileri gönderebileceği uygulamaları belirtmek için aşağıdaki seçeneklerden birini belirleyin:
\r\n\r\n\r\nHiçbiri: Hiçbir uygulamaya kuruluş verilerinin gönderilmesine izin vermeyin
\r\n\r\n\r\nİlkeyle yönetilen uygulamalar: Yalnızca ilkeyle yönetilen diğer uygulamalara kuruluş verilerinin gönderilmesine izin verin
\r\n\r\n\r\nİşletim sistemi paylaşımlı, ilkeyle yönetilen uygulamalar: Yalnızca ilkeyle yönetilen diğer uygulamalara ve kayıtlı cihazlarda MDM yönetimli diğer uygulamalara kuruluş verilerinin gönderilmesine izin verin
\r\n\r\n\r\nBirlikte Aç/Paylaş filtrelemeli, ilkeyle yönetilen uygulamalar: Yalnızca ilkeyle yönetilen diğer uygulamalara kuruluş verilerinin gönderilmesine izin verin ve yalnızca ilkeyle yönetilen uygulamaları görüntülemek için işletim sistemi Birlikte Aç/Paylaş iletişim kutularını filtreleyin\r\n
\r\n\r\nTüm uygulamalar: Tüm uygulamalara kuruluş verilerinin gönderilmesine izin verin"
+ },
+ "SimplePin": {
+ "label": "Basit PIN",
+ "tooltip": "Engellenirse kullanıcılar basit bir PIN oluşturamayabilir. Basit bir PIN 1234, ABCD veya 1111 gibi art arda veya yinelenen bir dizi harf veya rakamdır. Lütfen 'Geçiş kodu' türünde bir basit PIN'in engellenmesinin geçiş kodunun en bir rakam, bir harf ve bir özel karakter gerektirdiğini unutmayın."
+ },
+ "SyncContacts": {
+ "label": "İlke tarafından yönetilen uygulama verilerini yerel uygulamalarla veya eklentilerle eşitle"
+ },
+ "ThirdPartyKeyboards": {
+ "infoBox": "Klavye kısıtlamaları, uygulamanın tüm alanlarına uygulanır. Birden çok kimliği destekleyen uygulamaların kişisel hesapları, bu kısıtlamadan etkilenir. Daha fazla bilgi.",
+ "label": "Üçüncü taraf klavyeler"
+ },
+ "Timeout": {
+ "label": "Zaman aşımı (dakika olarak eylemsizlik)"
+ },
+ "Tap": {
+ "numberOfDays": "Gün Sayısı",
+ "pinResetAfterNumberOfDays": "Belirtilen sayıda gün sonra PIN sıfırlama",
+ "previousPinBlockCount": "Korunacak önceki PIN değerlerinin sayısını seçin"
+ }
+ },
+ "ScheduledAction": {
+ "Form": {
+ "editBlockActionInfo": "Tüm uygunluk ilkeleri için bir engelleme eylemi gereklidir.",
+ "graceperiod": "Zamanlama (uyumsuzluktan sonraki günler)",
+ "graceperiodInfo": "Bu eylemin, kaç günlük uyumsuzluktan sonra kullanıcının cihazına yönelik olarak tetikleneceğini belirtin",
+ "subtitle": "Eylem parametrelerini belirtin",
+ "title": "Eylem parametreleri"
+ },
+ "List": {
+ "gracePeriodDay": "Uyumsuzluktan sonra {0} gün",
+ "gracePeriodDays": "Uyumsuzluktan sonra {0} gün",
+ "gracePeriodHour": "Uyumsuzluktan {0} saat sonra",
+ "gracePeriodHours": "Uyumsuzluktan {0} saat sonra",
+ "gracePeriodMinute": "Uyumsuzluktan {0} dakika sonra",
+ "gracePeriodMinutes": "Uyumsuzluktan {0} dakika sonra",
+ "immediately": "Hemen",
+ "schedule": "Zamanlama",
+ "scheduleInfoBalloon": "Uyumsuzluktan sonra geçecek gün sayısı",
+ "subtitle": "Uyumlu olmayan cihazlardaki eylem dizisini belirtin",
+ "title": "Eylemler"
+ },
+ "Notification": {
+ "additionalEmailLabel": "Diğerleri",
+ "additionalRecipients": "Ek alıcılar (e-posta ile)",
+ "additionalRecipientsBladeTitle": "Ek alıcı seç",
+ "emailAddressPrompt": "E-posta adreslerini girin (virgül ile ayırarak)",
+ "invalidEmail": "Geçersiz e-posta adresi",
+ "messageTemplate": "İleti şablonu",
+ "noneSelected": "Hiçbiri seçilmedi",
+ "notSelected": "Seçili değil",
+ "numSelected": "{0} seçildi",
+ "selected": "Seçili"
+ },
+ "block": "Cihazı uyumsuz olarak işaretle",
+ "lockDevice": "Cihazı kilitle (yerel eylem)",
+ "lockDeviceWithPasscode": "Cihazı kilitle (yerel eylem)",
+ "noAction": "Eylem yok",
+ "noActionRow": "Eylem yok; bir eylem eklemek için 'Ekle'yi seçin",
+ "pushNotification": "Son kullanıcıya anında iletme bildirimi gönder",
+ "remoteLock": "Uyumsuz cihazı uzaktan kilitle",
+ "removeSourceAccessProfile": "Kaynak erişim profilini kaldır",
+ "retire": "Uyumsuz cihazı devre dışı bırak",
+ "wipe": "Silme",
+ "emailNotification": "Son kullanıcıya e-posta gönder"
+ },
+ "InstallIntent": {
+ "available": "Kayıtlı cihazlar için bulunur",
+ "availableWithoutEnrollment": "Kayıtlı veya kayıtsız olarak kullanılabilir",
+ "required": "Gerekli",
+ "uninstall": "Kaldır"
+ },
"EnrollmentStatusScreen": {
"Apps": {
"managedApps": "Yönetilen uygulamalar",
@@ -2466,142 +1483,61 @@
"resetToggle": "Yükleme hatası oluşursa kullanıcıların cihazı sıfırlamasına izin ver",
"timeout": "Yükleme belirtilen dakikadan uzun sürerse hata göster"
},
- "EnrollmentType": {
- "devicesWithEnrollment": "Yönetilen cihazlar",
- "devicesWithoutEnrollment": "Yönetilen uygulamalar"
- },
- "ApplicabilityRules": {
- "GridLabel": {
- "property": "Özellik",
- "rule": "Kural",
- "ruleDetails": "Kural Ayrıntıları",
- "value": "Değer"
- },
- "assignIf": "Şu geçerliyse profili ata:",
- "deleteWarning": "Bu işlem seçili Uygulanabilirlik Kuralını silecek",
- "dontAssignIf": "Şu geçerliyse profili atama:",
- "editionDisplayText": "{0} {1}",
- "editionDisplayTextMore": "ve diğer {0} etki alanı denetleyicisi",
- "instructions": "Bu profilin atanmış bir grup içinde nasıl uygulanacağını belirtin. Intune, profili yalnızca bu kuralların birleşik ölçütlerine uyan cihazlara uygular.",
- "maxText": "En Büyük",
- "minText": "En Küçük",
- "noActionRow": "Uygulanabilirlik Kuralı Belirtilmedi",
- "oSVersion": "ör. 1.2.3.4",
- "toText": "buraya",
- "windows10Education": "Windows 10/11 Education",
- "windows10EducationN": "Windows 10/11 Education N",
- "windows10Enterprise": "Windows 10/11 Enterprise",
- "windows10EnterpriseN": "Windows 10/11 Enterprise N",
- "windows10HolographicEnterprise": "Windows 10 Holographic for Business",
- "windows10Home": "Windows 10/11 Home",
- "windows10HomeChina": "Windows 10 Home China",
- "windows10HomeN": "Windows 10/11 Home N",
- "windows10HomeSingleLanguage": "Windows 10/11 Home Single Language",
- "windows10IoTCore": "Windows 10 IoT Core",
- "windows10IoTCoreCommercial": "Windows 10 IoT Core Commercial",
- "windows10Mobile": "Windows 10 Mobile",
- "windows10MobileEnterprise": "Windows 10 Mobile Enterprise",
- "windows10OsEdition": "İşletim sistemi sürümü",
- "windows10OsVersion": "İşletim sistemi sürümü",
- "windows10Professional": "Windows 10/11 Professional",
- "windows10ProfessionalEducation": "Windows 10/11 Professional Education",
- "windows10ProfessionalEducationN": "Windows 10/11 Professional Education N",
- "windows10ProfessionalN": "Windows 10 Professional N",
- "windows10ProfessionalWorkstation": "Windows 10/11 Professional Workstation",
- "windows10ProfessionalWorkstationN": "Windows 10/11 Professional Workstation N"
+ "Devices": {
+ "General": {
+ "android": "Android"
+ },
+ "aOSP": "Android açık kaynak projesi",
+ "android": "Android cihaz yöneticisi",
+ "androidWorkProfile": "Android Enterprise (iş profili)",
+ "iOS": "iOS/iPadOS",
+ "mac": "macOS",
+ "windows": "Windows (MDM)",
+ "windows10": "Windows 10 ve sonraki sürümler",
+ "windowsHomeSku": "Windows Home SKU'su",
+ "windowsMobile": "Windows Mobile"
+ },
+ "AppInfoBalloonText": {
+ "Certificate": {
+ "customSubjectName": "CN={{UserName}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US\r\nor\r\nCN={{AAD_Device_ID}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US",
+ "keySize": "Anahtarda bulunan bit sayısını seçin.",
+ "keyUsage": "Sertifikanın ortak anahtarını değiştirmek için gereken şifreleme eylemini belirtin.",
+ "renewalThreshold": "Cihazın sertifika yenilemesi isteyebilmesi için izin verilen en yüksek kalan sertifika ömrü yüzdesini (yüzde 1 ila 99) girin. Intune'da tavsiye edilen miktar %20'dir (1-99).",
+ "rootCert": "Önceden yapılandırılmış ve atanmış bir kök CA sertifikası profili seçin. CA sertifikası, bu profil (şu anda yapılandırdığınız) için sertifikayı veren CA'nın kök sertifikası ile eşleşmelidir.",
+ "scepServerUrl": "SCEP aracılığıyla sertifika veren NDES Sunucusu için bir URL girin (HTTPS olmalıdır). Örneğin https://contoso.com/certsrv/mscep/mscep.dll",
+ "scepServerUrls": "SCEP aracılığıyla sertifika veren NDES Sunucusu için bir veya daha fazla URL ekleyin (HTTPS olmalıdır). Örneğin https://contoso.com/certsrv/mscep/mscep.dll",
+ "subjectAlternativeName": "Konu diğer adı",
+ "subjectNameFormat": "Konu adı biçimi",
+ "validityPeriod": "Sertifikanın süresinin dolmasına kalan süre miktarı. Sertifika şablonunda gösterilen geçerlilik süresine eşit veya bundan daha düşük bir değer girin. Varsayılan olarak bir yıl ayarlanır."
+ },
+ "appInstallContext": "Bu uygulamayla ilişkilendirilecek yükleme bağlamını belirtir. İkili mod uygulamaları için bu uygulama için istenen bağlamı seçin. Bu seçenek, diğer tüm uygulamalar için pakete göre önceden belirlenir ve değiştirilemez.",
+ "autoUpdateMode": "Uygulamanın güncelleştirme önceliğini yapılandırın. Uygulamayı güncelleştirmeden önce cihazın WiFi'ya bağlı, şarj ediliyor ve etkin olarak kullanımda olmamasını zorunlu kılmak için Varsayılan'ı seçin. Uygulamayı, geliştirici yayımladıktan hemen sonra; şarj durumuna, WiFi özelliğine veya cihazdaki son kullanıcı etkinliğine bakılmaksızın güncelleştirmek için Yüksek Öncelik'i seçin. Uygulama güncelleştirmelerini en fazla 90 güne kadar ötelemek için Ertelendi’yi seçin. Yüksek öncelik ve ertelendi yalnızca DO cihazlarında etkinleştirilir.",
+ "configurationSettingsFormat": "Yapılandırma ayarları biçim metni",
+ "ignoreVersionDetection": "Bunu, uygulama geliştiricisinin otomatik güncelleştirdiği uygulamalar (örneğin Google Chrome) için “Evet” olarak ayarlayın.",
+ "ignoreVersionDetectionMacOSLobApp": "Uygulama geliştiricisi tarafından otomatik olarak güncelleştirilen uygulamalar veya yüklemeden önce yalnızca uygulama paketi kimliğini denetlemek için \"Evet\" seçeneğini belirleyin. Yüklemeden önce uygulama paketi kimliğini ve sürüm numarasını denetlemek için \"Hayır\" seçeneğini belirleyin.",
+ "installAsManagedMacOSLobApp": "Bu ayar yalnızca macOS 11 ve üzeri için geçerlidir. Uygulama yüklenecek ancak macOS 10.15 ve önceki sürümlerde yönetilmeyecek.",
+ "installContextDropdown": "Uygun yükleme bağlamını seçin. Cihaz bağlamı uygulamayı cihaza tüm kullanıcılar için yüklerken, kullanıcı bağlamı uygulamayı yalnızca hedeflenen kullanıcı için yükler.",
+ "ldapUrl": "Bu, istemcilerin e-posta alıcıları için genel şifreleme anahtarlarını alabileceği LDAP ana bilgisayar adıdır. Anahtar kullanılabilir olduğunda e-postalar şifrelenir. Desteklenen biçimler: - ldap.example.com
\r\n- ldap.example.com:123
\r\n- ldap://ldap.example.com
- ldap://ldap.example.com:123
- ldaps://ldap.example.com
\r\n- ldaps://ldap.example.com:123
",
+ "permissionsSettings": "İlişkili uygulama için çalışma zamanı izinlerini seçin.",
+ "policyAssociatedApp": "Bu ilkenin ilişkilendirileceği uygulamayı seçin.",
+ "policyConfigurationSettings": "Bu ilke için yapılandırma ayarlarını tanımlarken kullanmak istediğiniz yöntemi seçin.",
+ "policyDescription": "İsteğe bağlı olarak, bu yapılandırma ilkesi için bir açıklama girebilirsiniz.",
+ "policyEnrollmentType": "Bu ayarların cihaz yönetimi üzerinden mi yoksa Intune SDK'sı ile oluşturulan uygulamalar ile mi yönetileceğini seçin.",
+ "policyName": "Bu yapılandırma ilkesi için bir ad girin.",
+ "policyPlatform": "Bu uygulama yapılandırma ilkesinin geçerli olacağı platformu seçin.",
+ "policyProfileType": "Bu uygulama yapılandırma profilinin uygulanacağı cihaz profili türlerini seçin",
+ "policySMime": "Outlook S/MIME imzalama ve şifreleme ayarlarını yapılandırın.",
+ "sMimeDeployCertsFromIntune": "Intune'dan Outlook ile kullanılmak üzere S/MIME sertifikaları dağıtılıp dağıtılmayacağını belirtin.\r\nIntune tüm imzalama ve şifreleme sertifikalarını Şirket Portalı aracılığıyla kullanıcılara dağıtır.",
+ "sMimeEnable": "E-posta oluştururken S/MIME denetimlerinin etkin olup olmayacağını belirtin",
+ "sMimeEnableAllowChange": "Kullanıcının, S/MIME etkinleştir ayarını değiştirmesine izin verilip verilmediğini belirtin.",
+ "sMimeEncryptAllEmails": "Tüm e-postaların şifrelenip şifrelenmeyeceğini belirtin.\r\nŞifreleme, verileri şifre metnine dönüştürdüğünden metni yalnızca hedeflenen alıcı okuyabilir.",
+ "sMimeEncryptAllEmailsAllowChange": "Kullanıcının, Tüm e-postaları şifrele ayarını değiştirmesine izin verilip verilmediğini belirtin.",
+ "sMimeEncryptionCertProfile": "E-posta şifrelemesi için sertifika profilini belirtin.",
+ "sMimeSignAllEmails": "Tüm e-postaların imzalanıp imzalanmayacağını belirtin.\r\nDijital imza, e-postanın gerçek olduğunu doğrular ve aktarım sırasında içerikle oynanmamasını sağlar.",
+ "sMimeSignAllEmailsAllowChange": "Kullanıcının, Tüm e-postaları imzala ayarını değiştirmesine izin verilip verilmediğini belirtin.",
+ "sMimeSigningCertProfile": "E-posta imzalaması için sertifika profilini belirtin.",
+ "sMimeUserNotificationType": "Kullanıcıları Outlook için S/MIME sertifikalarını almak üzere Şirket Portalı'nı açmaları gerektiği konusunda bilgilendirme yöntemi."
},
- "BooleanActions": {
- "allow": "Şirket Portalı",
- "block": "Engelle",
- "configured": "Yapılandırılan",
- "disable": "Devre dışı bırak",
- "dontRequire": "Gerekli Kılma",
- "enable": "Etkinleştir",
- "hide": "Gizle",
- "limit": "Sınır",
- "notConfigured": "Yapılandırılmadı",
- "require": "Gerekli Kıl",
- "show": "Göster",
- "yes": "Evet"
- },
- "ProactiveRemediations": {
- "Create": {
- "Basics": {
- "DescriptionMultiLineTextBox": {
- "label": "Açıklama",
- "placeholder": "Açıklama girin"
- },
- "NameTextBox": {
- "label": "Ad",
- "placeholder": "Bir ad girin"
- },
- "PublisherTextBox": {
- "label": "Yayımcı",
- "placeholder": "Yayımcı girin"
- },
- "VersionTextBox": {
- "label": "Sürüm"
- },
- "headerDescription": "Yazdığınız algılama ve düzeltme betiklerinden yeni bir özel betik paketi oluşturun."
- },
- "ScopeTags": {
- "headerDescription": "Betik paketini atamak için en az bir grup seçin."
- },
- "Settings": {
- "DetectionScriptMultiLineTextBox": {
- "label": "Algılama betiği",
- "placeholder": "Betik metni girin",
- "requiredValidationMessage": "Lütfen algılama betiğini girin"
- },
- "EnforceScriptSignatureCheckOptionPicker": {
- "label": "Betik imzası denetimini zorla"
- },
- "LoggedOnCredentialsOptionPicker": {
- "label": "Bu betiği oturum açmış olan kullanıcının kimlik bilgilerini kullanarak çalıştır"
- },
- "RemediationScript": {
- "infoBox": "Düzeltme betiği bulunmadığından bu betik yalnızca algılama modunda çalışacak."
- },
- "RemediationScriptMultiLineTextBox": {
- "label": "Düzeltme komut dosyası",
- "placeholder": "Betik metni girin"
- },
- "RunIn64BitPSOptionPicker": {
- "label": "Betiği 64 bit PowerShell'de çalıştır"
- },
- "ScriptMultiLineTextBox": {
- "base64EncodingValidationMessage": "Geçersiz betik. Betikte kullanılan bir veya daha fazla karakter geçerli değil."
- },
- "headerDescription": "Yazdığınız betiklerden özel bir betik paketi oluşturun. Varsayılan olarak betikler, atanmış cihazlarda her gün çalıştırılır.",
- "infoBox": "Bu betik salt okunur. Bu betik için bazı ayarlar devre dışı bırakılmış olabilir."
- },
- "title": "Özel betik oluştur",
- "ScriptProperties": {
- "GridHeaders": {
- "interval": "Aralık",
- "time": "Tarih ve saat"
- },
- "Interval": {
- "day": "Her gün yinelenir",
- "days": "{0} günde bir yinelenir",
- "hour": "Her saat yinelenir",
- "hours": "{0} saatte bir yinelenir",
- "month": "Her ay yinelenir",
- "months": "{0} ayda bir yinelenir",
- "week": "Her hafta yinelenir",
- "weeks": "{0} haftada bir yinelenir"
- },
- "Time": {
- "utc": "{0} (UTC)",
- "utcWithDate": "{1} {0} (UTC)",
- "withDate": "{1} {0}"
- }
- }
- },
- "Edit": {
- "title": "Düzenle - {0}"
- }
- },
"WindowsManagement": {
"Assignment": {
"noAssignmentCustomAttributeDisplayText": "Özel özniteliği en az bir gruba atayın. Atamaları düzenlemek için Özellikler'e gidin.",
@@ -2708,910 +1644,6 @@
"shellScriptObjectName": "Kabuk betiği",
"successfullySavedPolicy": "{0} kaydedildi"
},
- "AssignmentFilters": {
- "assignmentFilterColumnHeader": "Filtre",
- "noFilters": "Yok"
- },
- "Category": {
- "airPlay": "AirPlay",
- "airPrint": "AirPrint",
- "androidDefenderAtp": "Uç Nokta için Microsoft Defender",
- "androidDeviceOwnerApplications": "Uygulamalar",
- "androidForWorkPassword": "Cihaz parolası",
- "appManagement": "Uygulamalara İzin Ver veya Engelle",
- "applicationGuard": "Microsoft Defender Application Guard",
- "applicationRestrictions": "Kısıtlı Uygulamalar",
- "applicationVisibility": "Uygulamaları Göster veya Gizle",
- "applications": "Uygulama Mağazası",
- "applicationsAndGames": "Uygulama Mağazası, Belge Görüntüleme, Oyunlar",
- "applicationsAndGoogle": "Google Play Mağazası",
- "appsAndExperience": "Uygulamalar ve deneyim",
- "associatedDomains": "İlişkili etki alanları",
- "autonomousSingleAppMode": "Otonom Tekli Uygulama Modu",
- "azureOperationalInsights": "Azure operasyonel içgörüler",
- "bitLocker": "Windows Şifrelemesi",
- "browser": "Tarayıcı",
- "builtinApps": "Yerleşik Uygulamalar",
- "cellular": "Hücresel",
- "cloudAndStorage": "Bulut ve Depolama",
- "cloudPrint": "Bulut Yazıcı",
- "complianceEmailProfile": "E-posta",
- "connectedDevices": "Bağlı Cihazlar",
- "connectivity": "Şebeke ve bağlantı",
- "contentCaching": "İçeriği önbelleğe alma",
- "controlPanelAndSettings": "Denetim Masası ve Ayarlar",
- "credentialGuard": "Microsoft Defender Credential Guard",
- "customCompliance": "Özel Uyumluluk",
- "customCompliancePreview": "Özel Uyumluluk (Önizleme)",
- "customConfiguration": "Özel Yapılandırma Profili",
- "customOMASettings": "Özel OMA-URI Ayarları",
- "customPreferences": "Tercih dosyası",
- "defender": "Microsoft Defender Virüsten Koruma",
- "defenderAntivirus": "Microsoft Defender Virüsten Koruma",
- "defenderExploitGuard": "Microsoft Defender Exploit Guard",
- "defenderFirewall": "Microsoft Defender Güvenlik Duvarı",
- "defenderLocalSecurityOptions": "Yerel cihaz güvenlik seçenekleri",
- "defenderSecurityCenter": "Microsoft Defender Güvenlik Merkezi",
- "deliveryOptimization": "Teslim İyileştirme",
- "derivedCredentialAuthenticationConfiguration": "Türetilmiş kimlik bilgisi",
- "deviceExperience": "Cihaz deneyimi",
- "deviceFirmwareConfigurationInterface": "Cihaz Üretici Yazılımı Yapılandırma Arabirimi",
- "deviceGuard": "Microsoft Defender Uygulama Denetimi",
- "deviceHealth": "Cihaz Durumu",
- "devicePassword": "Cihaz parolası",
- "deviceProperties": "Cihaz Özellikleri",
- "deviceRestrictions": "Genel",
- "deviceSecurity": "Sistem güvenliği",
- "display": "Görüntü",
- "domainJoin": "Etki Alanına Katılma",
- "domains": "Etki Alanları",
- "edgeBrowser": "Microsoft Edge'in eski sürümü (Sürüm 45 ve altı bir sürüm)",
- "edgeBrowserSmartScreen": "Microsoft Defender SmartScreen",
- "edgeKiosk": "Microsoft Edge kiosk modu",
- "editionUpgrade": "Sürüm Yükseltmesi",
- "education": "Eğitim",
- "educationDeviceCerts": "Cihaz sertifikaları",
- "educationStudentCerts": "Öğrenci sertifikaları",
- "educationTakeATest": "Kendinizi Test Edin",
- "educationTeacherCerts": "Öğretmen sertifikaları",
- "emailProfile": "E-posta",
- "enterpriseDataProtection": "Windows Bilgi Koruması",
- "expeditedCheckin": "Mobil cihaz yönetimi yapılandırması",
- "extensibleSingleSignOn": "Çoklu oturum açma uygulama uzantısı",
- "filevault": "FileVault",
- "firewall": "Güvenlik Duvarı",
- "games": "Oyunlar",
- "gatekeeper": "Ağ geçidi denetleyicisi",
- "healthMonitoring": "İşlevsel durumu izleme",
- "homeScreenLayout": "Giriş Ekranı Düzeni",
- "iOSWallpaper": "Duvar Kağıdı",
- "importedPFX": "PKCS İçe Aktarılan Sertifikası",
- "iosDefenderAtp": "Uç Nokta için Microsoft Defender",
- "iosKiosk": "Kiosk",
- "kernelExtensions": "Çekirdek uzantıları",
- "keyboardAndDictionary": "Klavye ve Sözlük",
- "kiosk": "Kiosk",
- "kioskAndroidEnterprise": "Ayrılmış cihazlar",
- "kioskConfiguration": "Kiosk",
- "kioskConfigurationV2": "Kiosk",
- "kioskWebBrowser": "Kiosk web tarayıcısı",
- "lockScreenMessage": "Kilit Ekranı İletisi",
- "lockedScreenExperience": "Kilit Ekranı Deneyimi",
- "logging": "Raporlama ve Telemetri",
- "loginItems": "Oturum açma öğeleri",
- "loginWindow": "Oturum açma penceresi",
- "macDefenderAtp": "Uç Nokta için Microsoft Defender",
- "maintenance": "Bakım",
- "malware": "Kötü Amaçlı Yazılım",
- "messaging": "Mesajlaşma",
- "networkBoundary": "Ağ sınırı",
- "networkProxy": "Ağ proxy'si",
- "notifications": "Uygulama Bildirimleri",
- "pKCS": "PKCS Sertifikası",
- "password": "Parola",
- "personalProfile": "Kişisel profil",
- "personalization": "Kişiselleştirme",
- "policyOverride": "Grup İlkesini Geçersiz Kılma",
- "powerSettings": "Güç Ayarları",
- "printer": "Yazıcı",
- "privacy": "Gizlilik",
- "privacyPerApp": "Uygulama başına gizlilik özel durumları",
- "privacyPreferences": "Gizlilik tercihleri",
- "projection": "İzdüşüm",
- "sCCMCompliance": "Configuration Manager Uyumluluğu",
- "sCEP": "SCEP Sertifikası",
- "sCEPProperties": "SCEP Sertifikası",
- "sMode": "Mod anahtarı (yalnızca Windows Insider)",
- "safari": "Safari",
- "search": "Ara",
- "session": "Oturum",
- "sharedDevice": "Paylaşılan iPad",
- "sharedPCAccountManager": "Paylaşılan çok kullanıcılı cihaz",
- "singleSignOn": "Çoklu oturum açma",
- "smartScreen": "Microsoft Defender SmartScreen",
- "softwareUpdates": "Ayarlar",
- "start": "Başlat",
- "systemExtensions": "Sistem uzantıları",
- "systemSecurity": "Sistem Güvenliği",
- "trustedCert": "Güvenilen Sertifika",
- "updates": "Güncelleştirmeler",
- "userRights": "Kullanıcı Hakları",
- "usersAndAccounts": "Kullanıcılar ve Hesaplar",
- "vPN": "Temel VPN",
- "vPNApps": "Otomatik VPN",
- "vPNAppsAndTrafficRules": "Uygulamalar ve Trafik Kuralları",
- "vPNConditionalAccess": "Koşullu Erişim",
- "vPNConnectivity": "Bağlantı",
- "vPNDNSTriggers": "DNS Ayarları",
- "vPNIKEv2": "IKEv2 ayarları",
- "vPNProxy": "Proxy",
- "vPNSplitTunneling": "Bölünmüş Tünel",
- "vPNTrustedNetwork": "Güvenilen Ağ Algılama",
- "webContentFilter": "Web İçeriği Filtresi",
- "wiFi": "Wi-Fi",
- "win10Wifi": "Wi-Fi",
- "windowsAtp": "Uç Nokta için Microsoft Defender",
- "windowsDefenderATP": "Uç Nokta için Microsoft Defender",
- "windowsHelloForBusiness": "İş için Windows Hello",
- "windowsSpotlight": "Windows Spot",
- "wiredNetwork": "Kablolu ağ",
- "wireless": "Kablosuz",
- "wirelessProjection": "Kablosuz projeksiyon",
- "workProfile": "İş profili ayarları",
- "workProfilePassword": "İş profili parolası",
- "xboxServices": "Xbox hizmetleri",
- "zebraMx": "MX profili (yalnızca Zebra)",
- "complianceActionsLabel": "Uyumsuzluk eylemleri"
- },
- "MicrosoftEdgeChannel": {
- "beta": "Beta",
- "dev": "Dev",
- "stable": "Stable"
- },
- "ConfigurationTypes": {
- "Table": {
- "androidDeviceOwnerGeneral": "Cihaz kısıtlamaları (cihaz sahibi)",
- "androidForWorkGeneral": "Cihaz kısıtlamaları (iş profili)"
- },
- "androidCustom": "Özel",
- "androidDeviceOwnerGeneral": "Cihaz kısıtlamaları",
- "androidDeviceOwnerPkcs": "PKCS Sertifikası",
- "androidDeviceOwnerScep": "SCEP Sertifikası",
- "androidDeviceOwnerTrustedCertificate": "Güvenilen Sertifika",
- "androidDeviceOwnerVpn": "VPN",
- "androidDeviceOwnerWiFi": "Wi-Fi",
- "androidEmailProfile": "E-posta (Yalnızca Samsung KNOX)",
- "androidForWorkCustom": "Özel",
- "androidForWorkEmailProfile": "E-posta",
- "androidForWorkGeneral": "Cihaz kısıtlamaları",
- "androidForWorkImportedPFX": "PKCS içe aktarılan sertifikası",
- "androidForWorkOemConfig": "OEMConfig",
- "androidForWorkPKCS": "PKCS sertifikası",
- "androidForWorkSCEP": "SCEP sertifikası",
- "androidForWorkTrustedCertificate": "Güvenilen sertifika",
- "androidForWorkVpn": "VPN",
- "androidForWorkWiFi": "Wi-Fi",
- "androidGeneral": "Cihaz kısıtlamaları",
- "androidImportedPFX": "PKCS içe aktarılan sertifikası",
- "androidPKCS": "PKCS sertifikası",
- "androidSCEP": "SCEP sertifikası",
- "androidTrustedCertificate": "Güvenilen sertifika",
- "androidVPN": "VPN",
- "androidWiFi": "Wi-Fi",
- "androidZebraMx": "MX profili (yalnızca Zebra)",
- "complianceAndroid": "Android uyumluluk ilkesi",
- "complianceAndroidDeviceOwner": "Tam olarak yönetilen, ayrılmış ve şirkete ait iş profili",
- "complianceAndroidEnterprise": "Kişisel olarak sahip olunan iş profili",
- "complianceAndroidForWork": "Android for Work uyumluluk ilkesi",
- "complianceIos": "iOS uyumluluk ilkesi",
- "complianceMac": "Mac uyumluluk ilkesi",
- "complianceWindows10": "Windows 10 ve üzeri uyumluluk ilkesi",
- "complianceWindows10Mobile": "Windows 10 Mobile uyumluluk ilkesi",
- "complianceWindows8": "Windows 8 uyumluluk ilkesi",
- "complianceWindowsPhone": "Windows Phone uyumluluk ilkesi",
- "exchangeActiveSync": "Exchange Active Sync",
- "iosCustom": "Özel",
- "iosDerivedCredentialAuthenticationConfiguration": "Türetilmiş PIV kimlik bilgisi",
- "iosDeviceFeatures": "Cihaz özellikleri",
- "iosEDU": "Eğitim",
- "iosEducation": "Eğitim",
- "iosEmailProfile": "E-posta",
- "iosGeneral": "Cihaz kısıtlamaları",
- "iosImportedPFX": "PKCS içe aktarılan sertifikası",
- "iosPKCS": "PKCS sertifikası",
- "iosPresets": "Önayarlar",
- "iosSCEP": "SCEP sertifikası",
- "iosTrustedCertificate": "Güvenilen sertifika",
- "iosVPN": "VPN",
- "iosVPNZscaler": "VPN",
- "iosWiFi": "Wi-Fi",
- "macCustom": "Özel",
- "macDeviceFeatures": "Cihaz özellikleri",
- "macEndpointProtection": "Uç nokta koruması",
- "macExtensions": "Uzantılar",
- "macGeneral": "Cihaz kısıtlamaları",
- "macImportedPFX": "PKCS içe aktarılan sertifikası",
- "macSCEP": "SCEP sertifikası",
- "macTrustedCertificate": "Güvenilen sertifika",
- "macVPN": "VPN",
- "macWiFi": "Wi-Fi",
- "settingsCatalog": "Ayarlar kataloğu (önizleme)",
- "unsupported": "Desteklenmiyor",
- "windows10AdministrativeTemplate": "Yönetim Şablonları (Önizleme)",
- "windows10Atp": "Uç Nokta için Microsoft Defender (Windows 10 veya sonraki sürümleri çalıştıran masaüstü cihazları)",
- "windows10Custom": "Özel",
- "windows10DesktopSoftwareUpdate": "Yazılım Güncelleştirmeleri",
- "windows10DeviceFirmwareConfigurationInterface": "Cihaz Üretici Yazılımı Yapılandırma Arabirimi",
- "windows10EmailProfile": "E-posta",
- "windows10EndpointProtection": "Uç nokta koruması",
- "windows10EnterpriseDataProtection": "Windows Bilgi Koruması",
- "windows10General": "Cihaz kısıtlamaları",
- "windows10ImportedPFX": "PKCS içe aktarılan sertifikası",
- "windows10Kiosk": "Kiosk",
- "windows10NetworkBoundary": "Ağ sınırı",
- "windows10PKCS": "PKCS sertifikası",
- "windows10PolicyOverride": "Grup İlkesini Geçersiz Kılma",
- "windows10SCEP": "SCEP sertifikası",
- "windows10SecureAssessmentProfile": "Eğitim profili",
- "windows10SharedPC": "Paylaşılan çok kullanıcılı cihaz",
- "windows10TeamGeneral": "Cihaz kısıtlamaları (Windows 10 Ekibi)",
- "windows10TrustedCertificate": "Güvenilen sertifika",
- "windows10VPN": "VPN",
- "windows10WiFi": "Wi-Fi",
- "windows10WiFiCustom": "Wi-Fi özel",
- "windows8General": "Cihaz kısıtlamaları",
- "windows8SCEP": "SCEP sertifikası",
- "windows8TrustedCertificate": "Güvenilen sertifika",
- "windows8VPN": "VPN",
- "windows8WiFi": "Wi-Fi içeri aktarma",
- "windowsDeliveryOptimization": "Teslim İyileştirme",
- "windowsDomainJoin": "Etki Alanına Katılma",
- "windowsEditionUpgrade": "Sürüm yükseltme ve mod değiştirme",
- "windowsIdentityProtection": "Kimlik koruması",
- "windowsPhoneCustom": "Özel",
- "windowsPhoneEmailProfile": "E-posta",
- "windowsPhoneGeneral": "Cihaz kısıtlamaları",
- "windowsPhoneImportedPFX": "PKCS içe aktarılan sertifikası",
- "windowsPhoneSCEP": "SCEP sertifikası",
- "windowsPhoneTrustedCertificate": "Güvenilen sertifika",
- "windowsPhoneVPN": "VPN",
- "IosUpdate": "iOS Güncelleştirme ilkesi"
- },
- "WindowsEnrollment": {
- "coManagementAuthorityDesc": "Configuration Manager tümleştirmesi için ortak yönetim ayarlarını yapılandırın",
- "coManagementAuthorityTitle": "Ortak yönetim ayarları ",
- "deploymentProfiles": "Windows Autopilot dağıtım profilleri",
- "description": "Bir Windows 10/11 bilgisayarının kullanıcılar veya yöneticiler tarafından Intune'a kaydedilmesinin yedi farklı yolu hakkında bilgi edinin.",
- "descriptionLabel": "Windows kayıt yöntemleri",
- "enrollmentStatusPage": "Kayıt Durumu Sayfası"
- },
- "Platform": {
- "all": "Tümü",
- "android": "Android cihaz yöneticisi",
- "androidAOSP": "Android (AOSP)",
- "androidEnterprise": "Android Enterprise",
- "androidForWork": "Android Enterprise",
- "androidWorkProfile": "Android Enterprise",
- "common": "Ortak",
- "iOS": "iOS/iPadOS",
- "iosAndAndroidPlatformLabel": "iOS ve Android",
- "iosCommaAndroidPlatformLabel": "iOS, Android",
- "linux": "Linux",
- "macOS": "macOS",
- "unknown": "Bilinmeyen",
- "unsupported": "Desteklenmiyor",
- "windows": "Windows",
- "windows10": "Windows 10 ve sonraki sürümler",
- "windows10CM": "Windows 10 ve üzeri sürümler (ConfigMgr)",
- "windows10Holo": "Windows 10 Holographic",
- "windows10Mobile": "Windows 10 Mobile",
- "windows10Team": "Windows 10 Team",
- "windows10X": "Windows 10X",
- "windows8": "Windows 8.1 ve sonraki sürümler",
- "windows8And10": "Windows 8 ve 10",
- "windowsPhone": "Windows Phone 8.1",
- "windows10AndLater": "Windows 10 ve sonraki sürümler",
- "windows10AndWindowsServer": "Windows 10, Windows 11 ve Windows Server (ConfigMgr)",
- "windows10andLaterCM": "Windows 10 ve üzeri sürümler (ConfigMgr)",
- "holoLens": "HoloLens",
- "surfaceHub2": "Surface Hub 2",
- "surfaceHub2S": "Surface Hub 2S",
- "windowsPC": "Windows Kişisel Bilgisayarı"
- },
- "EnrollmentRestrictions": {
- "DeletePayloadLink": {
- "content": "{0} bir veya daha fazla ilke kümesine eklenmiş. {0} öğesini silerseniz, bu öğeyi artık bu ilke kümeleri aracılığıyla atayamazsınız. Yine de silinsin mi?",
- "contentWithError": "{0} bir veya daha fazla ilke kümesine eklenmiş olabilir. {0} öğesini silerseniz, bu öğeyi artık bu ilke kümeleri aracılığıyla atayamazsınız. Yine de silinsin mi?",
- "header": "Bu kısıtlamayı silmek istediğinizden emin misiniz?"
- },
- "DeviceLimit": {
- "description": "Bir kullanıcının kaydedebileceği en fazla cihaz sayısını belirtin.",
- "header": "Cihaz sınırı kısıtlamaları",
- "info": "Her kullanıcının kaç cihaz kaydedebileceğini tanımlayın."
- },
- "DeviceType": {
- "VersionValidation": {
- "aOSP": "1.0 veya üzeri olmalıdır.",
- "android": "Geçerli bir sürüm numarası girin. Örnekler: 5.0, 5.5.1, 6.0.0.1",
- "androidForWork": "Geçerli bir sürüm numarası girin. Örnekler: 5.0, 5.1.1",
- "iOS": "Geçerli bir sürüm numarası girin. Örnekler: 9.0, 10.0, 9.0.2",
- "mac": "Geçerli bir sürüm numarası girin. Örnekler: 10, 10.10, 10.10.1",
- "min": "En düşük değer {0} değerinden düşük olamaz",
- "minMax": "En düşük sürüm, en yüksek sürümden büyük olamaz.",
- "windows": "10.0 veya üzeri olmalıdır. 8.1 cihazlara izin vermek için boş bırakın",
- "windowsMobile": "10.0 veya üzeri olmalıdır. 8.1 cihazlara izin vermek için boş bırakın"
- },
- "allPlatformsBlocked": "Tüm cihaz platformları engellendi. Platform yapılandırmasını etkinleştirmek için platform kaydına izin verin.",
- "blockManufacturerPlaceHolder": "Üretici adı",
- "blockManufacturersHeader": "Engellenen üreticiler",
- "cannotRestrict": "Kısıtlama desteklenmiyor",
- "configurationDescription": "Bir cihazın kaydedilmesi için karşılanması gereken platform yapılandırma kısıtlamalarını belirtin. Kayıt sonrasında cihazları kısıtlamak için uyumluluk ilkelerini kullanın. ana.ikincil.derleme gibi sürümler tanımlayın. Sürüm kısıtlamaları yalnızca Şirket Portalı ile kaydedilen cihazlara uygulanır. Intune, cihazları varsayılan olarak kişiye ait olarak sınıflandırır. Cihazların şirkete ait olarak sınıflandırılması için ek eylem gerekir.",
- "configurationDescriptionLabel": "Kayıt kısıtlamalarını ayarlama hakkında daha fazla bilgi edinin",
- "configurations": "Platformları yapılandırma",
- "deviceManufacturer": "Cihaz üreticisi",
- "header": "Cihaz türü kısıtlamaları",
- "info": "Hangi platformların, sürümlerin ve yönetim türlerinin kayıt olabileceğini tanımlayın.",
- "manufacturer": "Üretici",
- "max": "En Fazla",
- "maxVersion": "En yüksek sürüm",
- "min": "En Küçük",
- "minVersion": "En düşük sürüm",
- "newPlatforms": "Yeni platformlara izin verdiniz. Platform Yapılandırmalarını güncelleştirmeniz önerilir.",
- "personal": "Kişiye ait",
- "platform": "Platform",
- "platformDescription": "Aşağıdaki platformların kaydedilmesine izin verebilirsiniz. Yalnızca desteklemediğiniz platformları engelleyin. İzin verilen platformlar ek kayıt kısıtlamalarıyla yapılandırılabilir.",
- "platformSettings": "Platform ayarları",
- "platforms": "Platform seçin",
- "platformsSelected": "{0} platform seçildi",
- "type": "Tür",
- "versions": "sürümler",
- "versionsRange": "En düşük/en yüksek aralığına izin ver:",
- "windowsTooltip": "Mobil Cihaz Yönetimi aracılığıyla kaydı kısıtlar. PC aracısının yüklenmesini kısıtlamaz. Yalnızca Windows 10 ve Windows 11 sürümleri desteklenir. Windows 8.1'e izin vermek için sürümleri boş bırakın."
- },
- "Priority": {
- "saved": "Kısıtlama Öncelikleri başarıyla kaydedildi."
- },
- "Row": {
- "announce": "Öncelik: {0}, Ad: {1}, Atanan: {2}"
- },
- "Table": {
- "deployed": "Dağıtıldı",
- "name": "Ad",
- "priority": "Öncelik"
- },
- "Type": {
- "limit": "Cihaz sınırı kısıtlaması",
- "type": "Cihaz türü kısıtlaması"
- },
- "allUsers": "Tüm Kullanıcılar",
- "androidRestrictions": "Android kısıtlamaları",
- "create": "Kısıtlama oluştur",
- "defaultLimitDescription": "Bu, grup üyeliğinden bağımsız olarak tüm kullanıcılara en düşük öncelikte uygulanan varsayılan Cihaz Sınırı Kısıtlamasıdır.",
- "defaultTypeDescription": "Bu, grup üyeliğinden bağımsız olarak tüm kullanıcılara en düşük öncelikte uygulanan varsayılan Cihaz Türü Kısıtlamasıdır.",
- "defaultWhfbDescription": "Bu, grup üyeliğinden bağımsız olarak tüm kullanıcılara en düşük öncelikte uygulanan varsayılan İş İçin Windows Hello yapılandırmasıdır.",
- "deleteMessage": "Etkilenen kullanıcılara, atanan bir sonraki en yüksek öncelik kısıtlaması veya başka bir kısıtlama atanmamışsa varsayılan kısıtlama uygulanacaktır.",
- "deleteTitle": "{0} kısıtlamasını silmek istediğinizden emin misiniz?",
- "descriptionHint": "Kısıtlama ayarları tarafından belirlenen iş kullanımını veya kısıtlama düzeyini açıklayan kısa bir paragraf.",
- "edit": "Kısıtlamayı düzenle",
- "info": "Bir cihaz, kullanıcısına atanan en yüksek öncelikli kayıt kısıtlamalarıyla uyumlu olmalıdır. Bir cihaz kısıtlamasını sürükleyerek önceliğini değiştirebilirsiniz. Varsayılan kısıtlamalar tüm kullanıcılar için en düşük önceliktedir ve kullanıcısız kayıtları yönetir. Varsayılan kısıtlamalar düzenlenebilir, ancak silinemez.",
- "iosRestrictions": "iOS kısıtlamaları",
- "mDM": "MDM",
- "macRestrictions": "macOS kısıtlamaları",
- "maxVersion": "En Yüksek Sürüm",
- "minVersion": "En Düşük Sürüm",
- "nameHint": "Bu, kısıtlama kümesini tanımlamak üzere görünür olan birincil öznitelik olacaktır.",
- "noAssignmentsStatusBar": "Kısıtlamayı en az bir gruba atayın. Özellikler'e tıklayın.",
- "notFound": "Kısıtlama bulunamadı. Silinmiş olabilir.",
- "personallyOwned": "Kişilere ait cihazlar",
- "restriction": "Kısıtlama",
- "restrictionLowerCase": "kısıtlama",
- "restrictionType": "Kısıtlama türü",
- "selectType": "Kısıtlama türünü seçin",
- "selectValidation": "Lütfen bir platform seçin",
- "typeHint": "Cihaz özelliklerini kısıtlamak için Cihaz Türü Kısıtlamasını seçin. Kullanıcı başına cihaz sayısını kısıtlamak için Cihaz Sınırı Kısıtlamasını seçin.",
- "typeRequired": "Kısıtlama türü gereklidir.",
- "winPhoneRestrictions": "Windows Phone kısıtlamaları",
- "windowsRestrictions": "Windows kısıtlamaları"
- },
- "Titles": {
- "ChromeOs": {
- "devices": "Chrome OS cihazları"
- },
- "ManagedDesktop": {
- "adminContacts": "Yönetici kişileri",
- "appPackaging": "Uygulama paketleme",
- "devices": "Cihazlar",
- "feedback": "Geri Bildirim",
- "gettingStarted": "Başlarken",
- "messages": "İletiler",
- "onlineResources": "Çevrimiçi kaynaklar",
- "serviceRequests": "Hizmet istekleri",
- "settings": "Ayarlar",
- "tenantEnrollment": "Kiracı kaydı"
- },
- "actions": "Uyumsuzluk Eylemleri",
- "advancedExchangeSettings": "Exchange Online ayarları",
- "advancedThreatProtection": "Uç Nokta için Microsoft Defender",
- "allApps": "Tüm uygulamalar",
- "allDevices": "Tüm cihazlar",
- "androidFotaDeployments": "Android FOTA dağıtımları",
- "appBundles": "Uygulama Paketi Grupları",
- "appCategories": "Uygulama kategorileri",
- "appConfigPolicies": "Uygulama yapılandırma ilkeleri",
- "appInstallStatus": "Uygulama yükleme durumu",
- "appLicences": "Uygulama lisansları",
- "appProtectionPolicies": "Uygulama koruma ilkeleri",
- "appProtectionStatus": "Uygulama koruma durumu",
- "appSelectiveWipe": "Uygulama seçmeli silme",
- "appleVppTokens": "Apple VPP Belirteçleri",
- "apps": "Uygulamalar",
- "assign": "Atamalar",
- "assignedPermissions": "Atanan izinler",
- "assignedRoles": "Atanan roller",
- "autopilotDeploymentReport": "Autopilot dağıtımları (önizleme)",
- "brandingAndCustomization": "Özelleştirme",
- "cartProfiles": "Kart profilleri",
- "certificateConnectors": "Sertifika bağlayıcıları",
- "chromeEnterprise": "Chrome Enterprise",
- "compliancePolicies": "Uyumluluk ilkeleri",
- "complianceScriptManagement": "Betikler",
- "complianceScriptManagementPreview": "Betikler (Önizleme)",
- "complianceSettings": "Uyumluluk ilkesi ayarları",
- "conditionStatements": "Koşul deyimleri",
- "conditions": "Konumlar",
- "configMgr": "Microsoft Endpoint Configuration Manager",
- "configurationProfiles": "Yapılandırma profilleri",
- "configurationProfilesPreview": "Yapılandırma profilleri (önizleme)",
- "connectorsAndTokens": "Bağlayıcılar ve belirteçler",
- "corporateDeviceIdentifiers": "Şirket cihazı tanımlayıcıları",
- "customAttributes": "Özel öznitelikler",
- "customNotifications": "Özel bildirimler",
- "deploymentSettings": "Dağıtım ayarları",
- "derivedCredentials": "Türetilmiş Kimlik Bilgileri",
- "deviceActions": "Cihaz eylemleri",
- "deviceCategories": "Cihaz kategorileri",
- "deviceCleanUp": "Cihaz temizleme kuralları",
- "deviceEnrollmentManagers": "Cihaz kayıt yöneticileri",
- "deviceExecutionStatus": "Cihaz durumu",
- "deviceLimitEnrollmentRestrictions": "Kayıt cihazı sınırı kısıtlamaları",
- "deviceTypeEnrollmentRestrictions": "Kayıt cihazı platform kısıtlamaları",
- "devices": "Cihazlar",
- "discoveredApps": "Bulunan uygulamalar",
- "embeddedSIM": "eSIM hücresel profilleri (Önizleme)",
- "enrollDevices": "Cihazları kaydet",
- "enrollmentFailures": "Kayıt hataları",
- "enrollmentNotifications": "Kayıt anlaşması bildirimleri (Önizleme)",
- "enrollmentRestrictions": "Kayıt kısıtlamaları",
- "exchangeActiveSync": "Exchange ActiveSync",
- "exchangeServiceConnectors": "Exchange hizmet bağlayıcıları",
- "failuresForFeatureUpdates": "Özellik güncelleştirme hataları (Önizleme)",
- "failuresForQualityUpdates": "Windows Hızlandırılmış güncelleştirme hataları (Önizleme)",
- "featureFlighting": "Özellik yayını",
- "featureUpdateDeployments": "Windows 10 ve sonraki sürümler için özellik güncelleştirmeleri (Önizleme)",
- "flighting": "Süreleme",
- "fotaUpdate": "Üretici yazılımı kablosuz güncelleştirmesi",
- "groupPolicy": "Yönetim Şablonları",
- "groupPolicyAnalytics": "Grup ilkesi analizi",
- "helpSupport": "Yardım ve destek",
- "helpSupportReplacement": "Yardım ve destek ({0})",
- "iOSAppProvisioning": "iOS uygulama sağlama profilleri",
- "incompleteUserEnrollments": "Eksik kullanıcı kayıtları",
- "intuneRemoteAssistance": "Uzaktan yardım (önizleme)",
- "iosUpdates": "iOS/iPadOS ilkelerini güncelleştir",
- "legacyPcManagement": "Eski bilgisayar yönetimi",
- "macOSSoftwareUpdate": "macOS için güncelleştirme ilkeleri",
- "macOSSoftwareUpdateAccountSummaries": "macOS cihazlar için yükleme durumu",
- "macOSSoftwareUpdateCategorySummaries": "Yazılım güncelleştirmeleri özeti",
- "macOSSoftwareUpdateStateSummaries": "güncelleştirmeler",
- "managedGooglePlay": "Yönetilen Google Play",
- "msfb": "İş İçin Microsoft Store",
- "myPermissions": "İzinlerim",
- "notifications": "Bildirimler",
- "officeApps": "Office uygulamaları",
- "officeProPlusPolicies": "Office uygulamaları için ilkeler",
- "onPremise": "Şirket İçi",
- "onPremisesConnector": "Exchange ActiveSync şirket içi bağlayıcısı",
- "onPremisesDeviceAccess": "Exchange ActiveSync cihazları",
- "onPremisesManageAccess": "Exchange şirket içi erişimi",
- "outOfDateIosDevices": "iOS cihazları için yükleme hataları",
- "overview": "Genel Bakış",
- "partnerDeviceManagement": "İş ortağı cihaz yönetimi",
- "perUpdateRingDeploymentState": "Güncelleştirme halkası dağıtım durumuna göre",
- "permissions": "İzinler",
- "platformApps": "{0} uygulama",
- "platformDevices": "{0} cihaz",
- "platformEnrollment": "{0} kaydı",
- "policies": "İlkeler",
- "previewMDMDevices": "Tüm yönetilen cihazlar (Önizleme)",
- "profiles": "Profiller",
- "properties": "Özellikler",
- "reports": "Raporlar",
- "retireNoncompliantDevices": "Uyumsuz Cihazları Kullanımdan Kaldır",
- "retireNoncompliantDevicesPreview": "Retire noncompliant devices (preview)",
- "role": "Rol",
- "scriptManagement": "Komut Dosyaları",
- "securityBaselines": "Güvenlik temelleri",
- "serviceToServiceConnector": "Exchange Online bağlayıcısı",
- "shellScripts": "Kabuk betikleri",
- "teamViewerConnector": "TeamViewer bağlayıcısı",
- "telecomeExpenseManagement": "Telekom gider yönetimi",
- "tenantAdmin": "Kiracı yöneticisi",
- "tenantAdministration": "Kiracı yönetimi",
- "termsAndConditions": "Hüküm ve koşullar",
- "titles": "Başlıklar",
- "troubleshootSupport": "Sorun Giderme ve destek",
- "user": "Kullanıcı",
- "userExecutionStatus": "Kullanıcı durumu",
- "warranty": "Garanti satıcıları",
- "wdacSupplementalPolicies": "S modu ek ilkeleri",
- "windows10DriverUpdate": "Windows 10 ve sonraki sürümleri için sürücü güncelleştirmeleri (Önizleme)",
- "windows10QualityUpdate": "Windows 10 ve sonrası için kalite güncelleştirmeleri (Önizleme)",
- "windows10UpdateRings": "Windows 10 ve sonraki sürümler için güncelleştirme kademeleri",
- "windows10XPolicyFailures": "Windows 10X ilke hataları",
- "windowsEnterpriseCertificate": "Windows Enterprise sertifikası",
- "windowsManagement": "PowerShell betikleri",
- "windowsSideLoadingKeys": "Windows dışarıdan yükleme anahtarları",
- "windowsSymantecCertificate": "Windows DigiCert sertifikası",
- "windowsThreatReport": "Tehdit aracı durumu"
- },
- "ScopeTypes": {
- "allDevices": "tüm aygıtlar",
- "allUsers": "Tüm Kullanıcılar",
- "allUsersAndDevices": "Tüm Kullanıcılar ve Tüm Cihazlar",
- "selectedGroups": "Seçili Gruplar"
- },
- "DetectionRules": {
- "ComparisonOperators": {
- "equals": "Eşittir",
- "greaterThan": "Büyüktür",
- "greaterThanOrEqualTo": "Büyük veya eşittir",
- "lessThan": "Küçüktür",
- "lessThanOrEqualTo": "Küçük veya eşittir",
- "notEqualTo": "Eşit değildir"
- },
- "CustomScript": {
- "enforceSignatureCheck": "Betik imza denetimini uygula ve betiği sessiz çalıştır",
- "enforceSignatureCheckTooltip": "Betiğin güvenilen bir yayıncı tarafından imzalandığını doğrulamak için 'Evet' seçeneğini belirleyin, bunu yapmak betiğin uyarı ya da komut istemi görüntülenmeden çalıştırılmasına olanak tanır. Betik engellenmeden çalışır. Betiği imza doğrulaması olmadan son kullanıcı onayıyla çalıştırmak için 'Hayır' (varsayılan) seçeneğini belirleyin.",
- "header": "Özel algılama betiği kullan",
- "runAs32Bit": "Betiği 64 bitlik istemcilerde 32 bitlik işlem olarak çalıştır",
- "runAs32BitTooltip": "Betiği 64 bit istemcilerde 32 bit işlem olarak çalıştırmak için 'Evet' seçeneğini belirleyin. Betiği 64 bit istemcilerde 64 bit işlem olarak çalıştırmak için 'Hayır' (varsayılan) seçeneğini belirleyin. 32 bit istemciler, betiği 32 bit işlemde çalıştırır.",
- "scriptFile": "Betik dosyası",
- "scriptFileNotSelectedValidation": "Bir betik dosyası seçilmedi.",
- "scriptFileTooltip": "Uygulamanın istemci üzerindeki varlığını algılayacak bir PowerShell betiğini seçin. Betik, 0 değerli bir çıkış kodu döndürdüğünde veya STDOUT'a bir dize değeri yazdığında uygulama algılanır."
- },
- "Manual": {
- "FileRule": {
- "DetectionMethodOptions": {
- "dateCreated": "Oluşturulma tarihi",
- "dateModified": "Değiştirilme tarihi",
- "doesNotExist": "Dosya veya klasör yok",
- "fileOrFolderExists": "Dosya veya klasör var",
- "sizeInMB": "Boyut (MB)",
- "version": "Dize (sürüm)"
- },
- "associatedWith32Bit": "64 bit istemciler üzerinde bir 32 bit uygulamayla ilişkilendirildi",
- "associatedWith32BitTooltip": "64 bit istemcilerde 32 bit bağlamındaki herhangi bir yol ortam değişkenini genişletmek için 'Evet' seçeneğini belirleyin. 64 bit istemcilerde 64 bit bağlamındaki herhangi bir yol değişkenini genişletmek için 'Hayır' (varsayılan) seçeneğini belirleyin. 32 bit istemciler her zaman 32 bit bağlamını kullanır.",
- "detectionMethod": "Algılama yöntemi",
- "detectionMethodTooltip": "Uygulamanın varlığını doğrulamak için kullanılan algılama yönteminin türünü seçin.",
- "fileOrFolder": "Dosya veya klasör",
- "fileOrFolderToolTip": "Algılanacak dosya veya klasör.",
- "operator": "İşleç",
- "operatorTooltip": "Karşılaştırmayı doğrulamak için kullanılan algılama yönteminin işlecini seçin.",
- "path": "Yol",
- "pathTooltip": "Algılanacak dosya veya klasörü içeren klasörün tam yolu.",
- "value": "Değer",
- "valueTooltip": "Seçili algılama yöntemiyle eşleşen bir değer seçin. Tarih algılama yöntemleri yerel biçimde girilmelidir."
- },
- "GridColumns": {
- "pathOrCode": "Yol/Kod",
- "type": "Tür"
- },
- "MsiRule": {
- "operator": "İşleç",
- "operatorTooltip": "MSI ürün sürümünü doğrulama karşılaştırması için işleci seçin.",
- "productCode": "MSI ürün kodu",
- "productCodeTooltip": "Uygulama için geçerli bir MSI ürün kodu.",
- "productVersion": "Değer",
- "productVersionCheck": "MSI ürün sürümü denetimi",
- "productVersionCheckTooltip": "MSI ürün kodunun yanı sıra MSI ürün sürümünü de doğrulamak için 'Evet' seçeneğini belirleyin.",
- "productVersionTooltip": "Uygulamanın MSI ürün sürümünü girin."
- },
- "RegistryRule": {
- "DetectionMethodOptions": {
- "integerComparison": "Tamsayı karşılaştırması",
- "keyDoesNotExist": "Anahtar yok",
- "keyExists": "Anahtar var",
- "stringComparison": "Dize karşılaştırması",
- "valueDoesNotExist": "Değer yok",
- "valueExists": "Değeri var",
- "versionComparison": "Sürüm karşılaştırması"
- },
- "associatedWith32Bit": "64 bit istemciler üzerinde bir 32 bit uygulamayla ilişkilendirildi",
- "associatedWith32BitTooltip": "64 bit istemcilerde 32 bit kayıt defterini aramak için 'Evet' seçeneğini belirleyin. 64 bit istemcilerde 64 bit kayıt defterini aramak için 'Hayır' (varsayılan) seçeneğini belirleyin. 32 bit istemciler, her zaman 32 bit kayıt defterini arar.",
- "detectionMethod": "Algılama yöntemi",
- "detectionMethodTooltip": "Uygulamanın varlığını doğrulamak için kullanılan algılama yönteminin türünü seçin.",
- "keyPath": "Anahtar yolu",
- "keyPathTooltip": "Algılanacak değeri içeren kayıt defteri girişinin tam yolu.",
- "operator": "İşleç",
- "operatorTooltip": "Karşılaştırmayı doğrulamak için kullanılan algılama yönteminin işlecini seçin.",
- "value": "Değer",
- "valueName": "Değer adı",
- "valueNameTooltip": "Algılanacak kayıt defteri değerinin adı.",
- "valueTooltip": "Seçili algılama yöntemi ile eşleşen bir değer seçin."
- },
- "RuleTypeOptions": {
- "file": "Dosya",
- "mSI": "MSI",
- "registry": "Kayıt Defteri"
- },
- "gridAriaLabel": "Algılama Kuralları",
- "header": "Uygulamanın var olduğunu gösteren bir kural oluşturun.",
- "noRulesSelectedPlaceholder": "Hiçbir kural belirtilmedi.",
- "ruleTableLimit": "25'e kadar algılama kuralı ekleyebilirsiniz",
- "ruleType": "Kural türü",
- "ruleTypeTooltip": "Eklenecek algılama kuralı türünü seçin."
- },
- "RuleConfigurationOptions": {
- "customScript": "Özel algılama betiği kullan",
- "manual": "Algılama kurallarını el ile yapılandırın"
- },
- "bladeTitle": "Algılama kuralları",
- "header": "Uygulamanın varlığını algılamak için kullanılacak uygulamaya özel kuralları yapılandırın.",
- "rulesFormat": "Kuralların biçimi",
- "rulesFormatTooltip": "Algılama kurallarını el ile yapılandırmayı veya uygulamanın var olduğunu algılamak için özel bir betik kullanmayı seçin.",
- "selectorLabel": "Algılama kuralları"
- },
- "AppType": {
- "androidEnterpriseSystemApp": "Android Enterprise sistem uygulaması",
- "androidForWorkApp": "Yönetilen Google Play Store uygulaması",
- "androidLobApp": "Android iş kolu uygulaması",
- "androidStoreApp": "Android mağaza uygulaması",
- "builtInAndroid": "Yerleşik Android uygulaması",
- "builtInApp": "Yerleşik uygulama",
- "builtInIos": "Yerleşik iOS uygulaması",
- "default": "",
- "iosLobApp": "iOS iş kolu uygulaması",
- "iosStoreApp": "iOS mağaza uygulaması",
- "iosVppApp": "iOS Volume Purchase Program uygulaması",
- "lineOfBusinessApp": "İş kolu uygulaması",
- "macOSDmgApp": "macOS uygulaması (DMG)",
- "macOSEdgeApp": "Microsoft Edge (macOS)",
- "macOSLobApp": "macOS iş kolu uygulaması",
- "macOSMdatpApp": "Microsoft Defender ATP (macOS)",
- "macOSOfficeSuiteApp": "Microsoft 365 Uygulamaları (macOS)",
- "macOsVppApp": "macOS Volume Purchase Program uygulaması",
- "managedAndroidLobApp": "Yönetilen Android iş kolu uygulaması",
- "managedAndroidStoreApp": "Yönetilen Android mağaza uygulaması",
- "managedGooglePlayApp": "Yönetilen Google Play Store uygulaması",
- "managedGooglePlayPrivateApp": "Yönetilen Google Play özel uygulaması",
- "managedGooglePlayWebApp": "Yönetilen Google Play web bağlantısı",
- "managedIosLobApp": "Yönetilen iOS iş kolu uygulaması",
- "managedIosStoreApp": "Yönetilen iOS mağaza uygulaması",
- "microsoftStoreForBusinessApp": "İş İçin Microsoft Store uygulaması",
- "microsoftStoreForBusinessReleaseManagedApp": "İş İçin Microsoft Store",
- "officeSuiteApp": "Microsoft 365 Uygulamaları (Windows 10 ve üzeri)",
- "webApp": "Web bağlantısı",
- "windowsAppXLobApp": "Windows AppX iş kolu uygulaması",
- "windowsClassicApp": "Windows uygulaması (Win32)",
- "windowsEdgeApp": "Microsoft Edge (Windows 10 ve üzeri)",
- "windowsMobileMsiLobApp": "Windows MSI iş kolu uygulaması",
- "windowsPhone81AppXBundleLobApp": "Windows Phone 8.1 AppX iş kolu uygulaması",
- "windowsPhone81AppXLobApp": "Windows Phone 8.1 AppX iş kolu uygulaması",
- "windowsPhone81StoreApp": "Windows Phone 8.1 mağaza uygulaması",
- "windowsPhoneXapLobApp": "Windows Phone XAP iş kolu uygulaması",
- "windowsStoreApp": "Microsoft Store uygulaması",
- "windowsUniversalAppXLobApp": "Windows Universal AppX iş kolu uygulaması",
- "windowsUniversalLobApp": "Windows Evrensel iş kolu uygulaması"
- },
- "PolicyType": {
- "AttackSurfaceReductionRules": {
- "configMgr": "Saldırı Yüzeyi Azaltma Kuralları (ConfigMgr)"
- },
- "EndpointDetectionandResponse": {
- "mDE": "Uç nokta algılama ve yanıt"
- },
- "EndpointSecurityTemplate": {
- "aSRAppBrowserSecurity": "Uygulama ve tarayıcı yalıtımı",
- "aSRApplicationControl": "Uygulama denetimi",
- "aSRAttackSurfaceReduction": "Saldırı yüzeyi azaltma kuralları",
- "aSRDeviceControl": "Cihaz denetimi",
- "aSRExploitProtection": "Exploit Protection",
- "aSRWebProtection": "Web koruması (Microsoft Edge'in eski sürümü)",
- "aVExclusions": "Microsoft Defender Virüsten Koruma dışlamaları",
- "antivirus": "Microsoft Defender Virüsten Koruma",
- "cloudPC": "Windows 365 Güvenlik Temeli",
- "default": "Uç Nokta Güvenliği",
- "defenderTest": "Uç Nokta için Microsoft Defender tanıtımı",
- "diskEncryption": "BitLocker",
- "eDR": "Uç nokta algılama ve yanıt",
- "edgeSecurityBaseline": "Microsoft Edge temeli",
- "edgeSecurityBaselinePreview": "Önizleme: Microsoft Edge taban çizgisi",
- "editionUpgradeConfiguration": "Sürüm yükseltme ve mod değiştirme",
- "firewall": "Microsoft Defender Güvenlik Duvarı",
- "firewallRules": "Microsoft Defender Güvenlik Duvarı kuralları",
- "identityProtection": "Hesap koruması",
- "identityProtectionPreview": "Hesap koruması (Önizleme)",
- "mDMSecurityBaseline1810": "Ekim 2018 için Windows 10 ve üzeri için MDM Güvenlik Temeli",
- "mDMSecurityBaseline1810Preview": "Önizleme: Ekim 2018 için Windows 10 ve üzeri için MDM Güvenlik Temeli",
- "mDMSecurityBaseline1810PreviewBeta": "Önizleme: Ekim 2018 için Windows 10 ve üzeri için MDM Güvenlik Temeli (beta)",
- "mDMSecurityBaseline1906": "Mayıs 2019 için Windows 10 ve üzeri için MDM Güvenlik Temeli",
- "mDMSecurityBaseline2004": "Ağustos 2020 için Windows 10 ve üzeri için MDM Güvenlik Temeli",
- "mDMSecurityBaseline2101": "Aralık 2020 Windows 10 ve sonrası için MDM Güvenlik Temeli",
- "macOSAntivirus": "Virüsten koruma",
- "macOSDiskEncryption": "FileVault",
- "macOSFirewall": "macOS güvenlik duvarı",
- "microsoftDefenderBaseline": "Uç Nokta için Microsoft Defender temeli",
- "office365Baseline": "Microsoft Office O365 temeli",
- "office365BaselinePreview": "Önizleme: Microsoft Office O365 temeli",
- "securityBaselines": "Güvenlik Temelleri",
- "test": "Test Şablonu",
- "testFirewallRulesSecurityTemplateName": "Microsoft Defender Güvenlik Duvarı kuralları (Test)",
- "testIdentityProtectionSecurityTemplateName": "Hesap koruması (Test)",
- "windowsSecurityExperience": "Windows Güvenliği deneyimi"
- },
- "Firewall": {
- "mDE": "Microsoft Defender Güvenlik Duvarı"
- },
- "FirewallRules": {
- "mDE": "Microsoft Defender Güvenlik Duvarı Kuralları"
- },
- "administrativeTemplates": "Yönetim Şablonları",
- "androidCompliancePolicy": "Android uyumluluk ilkesi",
- "aospDeviceOwnerCompliancePolicy": "Android (AOSP) uyumluluk ilkesi",
- "applicationControl": "Uygulama Denetimi",
- "custom": "Özel",
- "deliveryOptimization": "Teslim İyileştirme",
- "derivedPersonalIdentityVerificationCredential": "Türetilmiş kimlik bilgisi",
- "deviceFeatures": "Cihaz özellikleri",
- "deviceFirmwareConfigurationInterface": "Cihaz Üretici Yazılımı Yapılandırma Arabirimi",
- "deviceLock": "Cihaz Kilidi",
- "deviceOwner": "Tam olarak yönetilen, ayrılmış ve şirkete ait iş profili",
- "deviceRestrictions": "Cihaz kısıtlamaları",
- "deviceRestrictionsWindows10Team": "Cihaz kısıtlamaları (Windows 10 Ekibi)",
- "domainJoinPreview": "Etki Alanına Katılma",
- "editionUpgradeAndModeSwitch": "Sürüm yükseltme ve mod değiştirme",
- "education": "Eğitim",
- "email": "E-posta",
- "emailSamsungKnoxOnly": "E-posta (Yalnızca Samsung KNOX)",
- "endpointProtection": "Uç nokta koruması",
- "expeditedCheckin": "Mobil cihaz yönetimi yapılandırması",
- "exploitProtection": "Exploit Protection",
- "extensions": "Uzantılar",
- "hardwareConfigurations": "BIOS Yapılandırmaları",
- "identityProtection": "Kimlik koruması",
- "iosCompliancePolicy": "iOS uyumluluk ilkesi",
- "kiosk": "Kiosk",
- "macCompliancePolicy": "Mac uyumluluk ilkesi",
- "microsoftDefenderAntivirus": "Microsoft Defender Virüsten Koruma",
- "microsoftDefenderAntivirusexclusions": "Microsoft Defender Virüsten Koruma dışlamaları",
- "microsoftDefenderAtpWindows10Desktop": "Uç Nokta için Microsoft Defender (Windows 10 veya sonraki sürümleri çalıştıran masaüstü cihazları)",
- "microsoftDefenderFirewallRules": "Microsoft Defender Güvenlik Duvarı Kuralları",
- "microsoftEdgeBaseline": "Microsoft Edge Taban Çizgisi",
- "mxProfileZebraOnly": "MX profili (yalnızca Zebra)",
- "networkBoundary": "Ağ sınırı",
- "oemConfig": "OEMConfig",
- "overrideGroupPolicy": "Grup İlkesini Geçersiz Kılma",
- "pkcsCertificate": "PKCS sertifikası",
- "pkcsImportedCertificate": "PKCS içe aktarılan sertifikası",
- "preferenceFile": "Tercih dosyası",
- "presets": "Önayarlar",
- "scepCertificate": "SCEP sertifikası",
- "secureAssessmentEducation": "Güvenli değerlendirme (Eğitim)",
- "settingsCatalog": "Ayarlar Kataloğu",
- "sharedMultiUserDevice": "Paylaşılan çok kullanıcılı cihaz",
- "softwareUpdates": "Yazılım Güncelleştirmeleri",
- "trustedCertificate": "Güvenilen sertifika",
- "unknown": "Bilinmeyen",
- "unsupported": "Desteklenmiyor",
- "vpn": "VPN",
- "wiFi": "Wi-Fi",
- "wiFiImport": "Wi-Fi içeri aktarma",
- "windows10CompliancePolicy": "Windows 10/11 uyumluluk ilkesi",
- "windows10MobileCompliancePolicy": "Windows 10 Mobile uyumluluk ilkesi",
- "windows10XScep": "SCEP sertifikası - TEST",
- "windows10XTrustedCertificate": "Güvenilen sertifika - TEST",
- "windows10XVPN": "VPN - TEST",
- "windows10XWifi": "WIFI - TEST",
- "windows8CompliancePolicy": "Windows 8 uyumluluk ilkesi",
- "windowsHealthMonitoring": "Windows işlevsel durum izleme",
- "windowsInformationProtection": "Windows Bilgi Koruması",
- "windowsPhoneCompliancePolicy": "Windows Phone uyumluluk ilkesi",
- "windowsUpdateforBusiness": "İş İçin Windows Update",
- "wiredNetwork": "Kablolu Ağ",
- "workProfile": "Kişisel olarak sahip olunan iş profili"
- },
- "OfficeSuiteAppsTab": {
- "acceptLicenseOnBehalfOfUsersLabel": "Kullanıcılar adına Microsoft Yazılımı Lisans Koşulları'nı kabul edin",
- "appSuiteConfigurationLabel": "Uygulama paketi yapılandırması",
- "appSuiteInformationLabel": "Uygulama paketi bilgileri",
- "appsToBeInstalledLabel": "Paketin parçası olarak yüklenecek uygulamalar",
- "architectureLabel": "Mimari",
- "architectureTooltip": "Cihazlarda Microsoft 365 Uygulamalarının 32 bit veya 64 bit sürümlerinden hangisinin yüklü olduğunu tanımlar.",
- "configurationDesignerLabel": "Yapılandırma tasarımcısı",
- "configurationFileLabel": "Yapılandırma dosyası",
- "configurationSettingsFormatLabel": "Yapılandırma ayarları biçimi",
- "configureAppSuiteLabel": "Uygulama paketini yapılandır",
- "configuredLabel": "Yapılandırıldı",
- "currentVersionLabel": "Geçerli sürüm",
- "currentVersionTooltip": "Bu, Office'in bu pakette yapılandırılan geçerli sürümüdür. Daha yeni bir sürüm yapılandırılıp kaydedildiğinde bu değer güncelleştirilir.",
- "enableMicrosoftSearchAsDefaultTooltip": "Cihazda Google Chrome için Bing'de Microsoft Arama uzantısının yüklenip yüklenmediğini belirlemenize yardımcı olan bir arka plan hizmeti yükler.",
- "enterXmlDataLabel": "XML verilerini gir",
- "languagesLabel": "Diller",
- "languagesTooltip": "Intune varsayılan olarak, Office'i işletim sisteminin varsayılan diliyle yükleyecek. Yüklemek istediğiniz ek dilleri seçin.",
- "learnMoreText": "Daha fazla bilgi",
- "newUpdateChannelTooltip": "Uygulamanın yeni özelliklerle güncelleştirilme sıklığını tanımlar.",
- "noCurrentVersionText": "Geçerli sürüm yok",
- "noLanguagesSelectedLabel": "Seçili dil yok",
- "notConfiguredLabel": "Yapılandırılmadı",
- "propertiesLabel": "Özellikler",
- "removeOtherVersionsLabel": "Diğer sürümleri kaldır",
- "removeOtherVersionsTooltip": "Kullanıcı cihazlarından diğer Office (MSI) sürümlerini kaldırmak için Evet'i seçin.",
- "selectOfficeAppsLabel": "Office uygulamalarını seçin",
- "selectOfficeAppsTooltip": "Paketle birlikte yüklemek istediğiniz Office 365 uygulamalarını seçin.",
- "selectOtherOfficeAppsLabel": "Diğer Office uygulamalarını seçin (lisans gerekir)",
- "selectOtherOfficeAppsTooltip": "Lisanslarına sahipseniz, bu ek Office uygulamalarını da Intune ile atayabilirsiniz.",
- "specificVersionLabel": "Belirli bir sürüm",
- "updateChannelLabel": "Güncelleştirme kanalı",
- "updateChannelTooltip": "Uygulamanın yeni özelliklerle güncelleştirilme sıklığını tanımlar.
\r\nAylık: Office'in en yeni özellikleri kullanıma sunulur sunulmaz bunları kullanıcılara sağlar.
\r\nAylık Kurumsal Kanal: Ayda bir kez, her ayın ikinci salı günü Office'in en yeni özelliklerini kullanıcılara sağlar.
\r\nAylık (Hedeflenmiş): Yakında kullanıma sunulacak Aylık Kanal sürümünü önceden keşfetmenizi sağlar. Bu desteklenen bir güncelleştirme kanalıdır ve genellikle yeni özellikler içeren bir Aylık Kanal sürümü kullanıma sunulmadan en az bir hafta öncesine kadar kullanılabilir.
\r\nYarı Yıllık: Office'in yeni özelliklerini kullanıcılara yılda yalnızca birkaç kez sağlar.
\r\nYarı Yıllık (Hedeflenmiş): Pilot kullanıcılarına ve uygulama uyumluluğu test edicilerine bir sonraki Yarı Yıllık kanalı test etme olanağı sağlar.",
- "useMicrosoftSearchAsDefault": "Bing'de Microsoft Arama için arka plan hizmetini yükle",
- "useSharedComputerActivationLabel": "Paylaşımlı bilgisayar etkinleştirme kullanın",
- "useSharedComputerActivationTooltip": "Paylaşılan bilgisayar etkinleştirmesi, Microsoft 365 Uygulamalarını birden çok kullanıcı tarafından kullanılan bilgisayarlara dağıtmanıza olanak sağlar. Kullanıcılar, normalde Microsoft 365 Uygulamalarını yalnızca 5 bilgisayar gibi sınırlı sayıda cihaza yükleyip etkinleştirebilir. Paylaşılan bilgisayar etkinleştirmesine sahip Microsoft 365 Uygulamalarının kullanılması bu sınırlamaya dahil edilmez.",
- "versionToInstallLabel": "Yüklenecek sürüm",
- "versionToInstallTooltip": "Yüklenmesi gereken Office sürümünü seçin.",
- "xLanguagesSelectedLabel": "{0} dil seçildi",
- "xmlConfigurationLabel": "XML Yapılandırması"
- },
- "OfficeApplicationType": {
- "access": "Access",
- "bing": "Varsayılan olarak Microsoft Arama",
- "excel": "Excel",
- "groove": "OneDrive (Groove)",
- "lync": "Skype Kurumsal",
- "oneDrive": "OneDrive Masaüstü",
- "oneNote": "OneNote",
- "outlook": "Outlook",
- "powerPoint": "PowerPoint",
- "publisher": "Publisher",
- "teams": "Teams",
- "word": "Word"
- },
- "WindowsQualityUpdateProfile": {
- "Details": {
- "DaysUntilForcedReboot": {
- "label": "Yeniden başlatma zorlanmadan önce beklenecek gün sayısı"
- },
- "Description": {
- "label": "Açıklama"
- },
- "Name": {
- "label": "Ad"
- },
- "QualityUpdateRelease": {
- "label": "Cihaz işletim sistemi sürümü şundan düşükse kalite güncelleştirmeleri yüklemesini hızlandır:"
- },
- "bladeTitle": "Kalite güncelleştirmeleri Windows 10 ve sonrası (Önizleme)",
- "loadError": "Yüklenemedi!"
- },
- "TabName": {
- "qualityUpdateSettings": "Ayarlar"
- },
- "infoBoxText": "Windows 10 ve sonrası için mevcut güncelleştirme kademeleri ilkesi dışında şu anda kullanılabilir tek ayrılmış kalite güncelleştirmesi denetimi, belirtilen yama seviyesinin gerisinde kalan cihazlar için kalite güncelleştirmelerini hızlandırabilir. Gelecekte ek denetimler kullanıma sunulacaktır.",
- "warningBoxText": "Yazılım güncelleştirmelerinin hızlandırılması, gerektiğinde uyumluluğa ulaşma süresinin kısaltılmasına yardımcı olabilir ve son kullanıcı üretkenliği üzerinde daha büyük bir etkiye sahiptir. Mesai saatleri içinde yeniden başlatma deneyimi yaşama olasılıkları önemli ölçüde artar."
- },
- "Devices": {
- "General": {
- "android": "Android"
- },
- "aOSP": "Android açık kaynak projesi",
- "android": "Android cihaz yöneticisi",
- "androidWorkProfile": "Android Enterprise (iş profili)",
- "iOS": "iOS/iPadOS",
- "mac": "macOS",
- "windows": "Windows (MDM)",
- "windows10": "Windows 10 ve sonraki sürümler",
- "windowsHomeSku": "Windows Home SKU'su",
- "windowsMobile": "Windows Mobile"
- },
"SettingDetails": {
"CustomPolicyConfigurationProfile": {
"uploadControlPlaceHolderText": "Yapılandırma profili dosyası seçin"
@@ -3675,7 +1707,7 @@
"aESGCM128": "AES-128-GCM (16 sekizli ICV)",
"aESGCM256": "AES-256-GCM (16 sekizli ICV)",
"aadSharedDeviceDataClearAppsDescription": "Paylaşılan cihaz modu için iyileştirilmemiş olan uygulamaları listeye ekleyin. Kullanıcı, paylaşılan cihaz modu için iyileştirilmiş bir uygulamanın oturumunu her kapattığında uygulamanın yerel verileri temizlenir. Android 9 ve sonraki bir sürümü çalıştıran Paylaşılan moda kayıtlı ayrılmış cihazlar için kullanılabilir.",
- "aadSharedDeviceDataClearAppsName": "Paylaşılan cihaz modu için iyileştirilmemiş olan uygulamalardaki yerel verileri temizle (Genel Önizleme)",
+ "aadSharedDeviceDataClearAppsName": "Paylaşılan cihaz modu için iyileştirilmemiş olan uygulamalardaki yerel verileri temizle",
"accountsPageDescription": "Ayarlar uygulamasında Hesaplar bölümüne erişimi engelleyin.",
"accountsPageName": "Hesaplar",
"accountsSignInAssistantSettingsDescription": "Microsoft Sign-in Assistant hizmetini (wlidsvc) engelle. Bu ayar yapılandırılmadığında, wlidsvc NT hizmeti kullanıcı tarafından denetlenebilir (el ile başlatma)",
@@ -5503,7 +3535,7 @@
"enableEndUserAccessToDefenderName": "Defender'a son kullanıcı erişimi",
"enableEngagedRestartDescription": "Kullanıcıların kullanıcı denetimli yeniden başlatmaya geçmelerine izin veren ayarları etkinleştirir.",
"enableEngagedRestartName": "Kullanıcının yeniden başlatmasına izin ver (kullanıcı denetimli yeniden başlatma)",
- "enableIdentityPrivacyDescription": "Bu özellik, kullanıcı adlarını girdiğiniz metin ile maskeler. Örneğin, 'anonim' yazarsanız bu Wi-Fi bağlantısında gerçek adını kullanarak kimlik doğrulayan herkes 'anonim' olarak görüntülenir.",
+ "enableIdentityPrivacyDescription": "Bu özellik, kullanıcı adlarını girdiğiniz metinle maskeler. Örneğin, 'anonim' yazarsanız gerçek adlarını kullanarak bu Wi-Fi bağlantısıyla kimlik doğrulaması gerçekleştiren her kullanıcı 'anonim' olarak görüntülenir. Cihaz tabanlı sertifika kimlik doğrulaması kullanıyorsanız bu gerekli olabilir.",
"enableIdentityPrivacyName": "Kimlik gizliliği (dış kimlik)",
"enableNetworkInspectionSystemDescription": "Ağ İnceleme Sistemi'ndeki imzalar tarafından algılanan kötü amaçlı trafiği engelleyin (NIS)",
"enableNetworkInspectionSystemName": "Ağ İnceleme Sistemi (NIS)",
@@ -7252,6 +5284,8 @@
"presharedKeyEncodingDescription": "Önceden paylaşılan anahtarları UTF-8 kullanarak kodlayın.",
"presharedKeyEncodingName": "Önceden paylaşılan anahtar kodlaması",
"preventAny": "Sınırlar arasında paylaşımı engelle",
+ "primaryAuthenticationMethodName": "Birincil kimlik doğrulama yöntemi",
+ "primaryAuthenticationMethodTEAPDescription": "Kullanıcıların kimlik doğrulamak için kullanmasını istediğiniz birincil yöntemi seçin. Sertifikalar seçeneğini işaretlediğinizde, cihaza da dağıtılan sertifika profillerinden birini (SCEP veya PKCS) seçin. Bu, cihaz tarafından sunucuya sunulan kimlik sertifikasıdır.",
"primarySMTPAddressOption": "Birincil SMTP Adresi",
"printersColumns": "ör. yazıcı DNS adı",
"printersDescription": "Ağ konak adlarına göre yazıcıları otomatik olarak sağla. Bu ayar, paylaşılan yazıcıları desteklemez.",
@@ -7663,6 +5697,8 @@
"searchEnableRemoteQueriesName": "Uzak sorgular",
"secondActiveEthernet": "İkinci etkin Ethernet",
"secondEthernet": "İkinci Ethernet",
+ "secondaryAuthenticationMethodName": "İkincil kimlik doğrulama yöntemi",
+ "secondaryAuthenticationMethodTEAPDescription": "Kullanıcıların kimlik doğrulamak için kullanmasını istediğiniz ikincil yöntemi seçin. Sertifikalar seçeneğini işaretlediğinizde, cihaza da dağıtılan sertifika profillerinden birini (SCEP veya PKCS) seçin. Bu, cihaz tarafından sunucuya sunulan kimlik sertifikasıdır.",
"secretKey": "Gizli Anahtar:",
"secureBootEnabledDescription": "Cihazda Güvenli Önyüklemenin etkinleştirilmesini gerektir",
"secureBootEnabledName": "Cihazda Güvenli Önyüklemenin etkinleştirilmesini gerektir",
@@ -8074,6 +6110,7 @@
"systemUpdateWindow9": "4.30 ÖÖ",
"systemWindowsBlockedDescription": "Bildirimler, gelen çağrılar, giden çağrılar, sistem uyarıları ve sistem hataları gibi pencere bildirimlerini devre dışı bırakın.",
"systemWindowsBlockedName": "Bildirim pencereleri",
+ "tEAPName": "Tunnel EAP (TEAP)",
"tLSMinMax": "TLS en düşük sürümü, TLS en yüksek sürümüne eşit veya daha küçük olmalıdır.",
"tLSVersionRangeMaximum": "Maksimum TLS sürümü aralığı",
"tLSVersionRangeMaximumDescription": "1.0, 1.1 veya 1.2 olabilen en yüksek TLS sürümünü girin. Boş bırakılırsa varsayılan olarak 1.2 değeri kullanılır.",
@@ -8126,6 +6163,17 @@
"timeWindowSameStartEndDayTime": "Bitiş günü/saati başlangıç günü/saati ile aynı olamaz.",
"timeZoneDescription": "Hedeflenen cihazlar için saat dilimini seçin.",
"timeZoneName": "Saat dilimi",
+ "timeoutFifteenMinutes": "15 dakika",
+ "timeoutFiveMinutes": "5 dakika",
+ "timeoutFourHours": "4 saat",
+ "timeoutNever": "Zaman aşımı yok",
+ "timeoutOneHour": "1 saat",
+ "timeoutOneMinute": "1 dakika",
+ "timeoutTenMinutes": "10 dakika",
+ "timeoutThirtyMinutes": "30 dakika",
+ "timeoutThreeMinutes": "3 dakika",
+ "timeoutTwoHours": "2 saat",
+ "timeoutTwoMinutes": "2 dakika",
"toggleConfigurationPkgDescription": "Uç Nokta için Microsoft Defender istemcisini eklemek için kullanılacak imzalı bir yapılandırma paketini karşıya yükleyin",
"toggleConfigurationPkgName": "Uç Nokta için Microsoft Defender istemci yapılandırma paketi türü:",
"trafficRuleAppName": "Uygulama",
@@ -8824,6 +6872,33 @@
"win10WifiWirelessSecurityTypeName": "Kablosuz Güvenlik Türü",
"win10WifiWirelessSecurityTypeOpen": "Açık (kimlik doğrulamasız)",
"win10WifiWirelessSecurityTypeWPA": "WPA/WPA2-Kişisel",
+ "win10WiredAuthenticationModeDescription": "Kullanıcının, cihazın veya herhangi birinin kimliğini doğrulayacağınızı ya da konuk kimlik doğrulamasını (yok) kullanacağınızı seçin. Sertifika kimlik doğrulaması kullanıyorsanız sertifika türünün kimlik doğrulaması türüyle eşleştiğinden emin olun.",
+ "win10WiredAuthenticationModeName": "Kimlik Doğrulama Modu",
+ "win10WiredAuthenticationPeriodDescription": "Kimlik doğrulaması denemesi başarısız olduktan sonra istemcinin bekleyeceği saniye sayısı. 1 ile 3600 arasında bir değer seçin. Değer belirtilmezse 18 saniye kullanılır.",
+ "win10WiredAuthenticationPeriodName": "Kimlik doğrulama süresi",
+ "win10WiredAuthenticationRetryDelayPeriodDescription": "Başarısız kimlik doğrulaması ile sonraki kimlik doğrulaması denemesi arasındaki saniye sayısı. 1 ile 3600 arasında bir değer seçin. Değer belirtilmezse 1 saniye kullanılır.",
+ "win10WiredAuthenticationRetryDelayPeriodName": "Kimlik doğrulaması yeniden deneme gecikmesi süresi ",
+ "win10WiredFIPSComplianceDescription": "FIPS 140-2 standardına göre doğrulama, dijital olarak depolanan gizli ancak sınıflandırılmamış bilgileri korumak için şifreleme tabanlı güvenlik sistemleri kullanan tüm ABD federal hükümet kuruluşları için gereklidir.",
+ "win10WiredFIPSComplianceName": "Kablolu bağlantı profilini Federal Bilgi İşleme Standardı (FIPS) ile uyumlu olmaya zorla",
+ "win10WiredGuest": "Konuk",
+ "win10WiredMachine": "Makine",
+ "win10WiredMachineOrUser": "Kullanıcı veya makine",
+ "win10WiredMaximumAuthenticationFailuresDescription": "Bu kimlik bilgileri kümesi için maksimum kimlik doğrulama hatası sayısını girin. Değer belirtilmezse 1 deneme kullanılır.",
+ "win10WiredMaximumAuthenticationFailuresName": "Maksimum kimlik doğrulama hatası sayısı",
+ "win10WiredMaximumEAPOLStartMessagesDescription": "EAPOL-Start iletisi sayısını 1 ile 100 arasında olacak şekilde seçin. Değer belirtilmezse en fazla 3 ileti gönderilir.",
+ "win10WiredMaximumEAPOLStartMessagesName": "Maksimum EAPOL başlatma iletisi sayısı",
+ "win10WiredNetworkAuthenticationBlockPeriodDescription": "Dakika cinsinden kimlik doğrulaması engelleme süresi. Başarısız bir kimlik doğrulama denemesinden sonra otomatik kimlik doğrulama denemeleri yapılmasının engelleneceği süreyi belirtmek için kullanılır. 0 ile 1440 arasında bir değer seçin.",
+ "win10WiredNetworkAuthenticationBlockPeriodName": "Engelleme süresi (dakika)",
+ "win10WiredNetworkAuthenticationModeName": "Kimlik Doğrulama Modu",
+ "win10WiredNetworkDoNotEnforceName": "Zorlama",
+ "win10WiredNetworkEnforce8021XDescription": "Kablolu ağlara yönelik otomatik yapılandırma hizmetinin bağlantı noktası kimlik doğrulaması için 802.1X standardının kullanılmasını gerektirip gerektirmediğini belirtir.",
+ "win10WiredNetworkEnforce8021XName": "802.1x",
+ "win10WiredNetworkEnforceName": "Zorla",
+ "win10WiredRememberCredentialsDescription": "Kablolu ağa ilk bağlanıldığında kullanıcılar tarafından girilen kullanıcı kimlik bilgilerinin önbelleğe alınıp alınmayacağını seçin. Önbelleğe alınan kimlik bilgileri sonraki bağlantılar için kullanılır ve kullanıcıların bu kimlik bilgilerini yeniden girmesi gerekmez. Bu ayarın yapılandırılmaması, ayarın Evet olarak seçilmesiyle eşdeğerdir.",
+ "win10WiredRememberCredentialsName": "Her oturum açışta kimlik bilgilerini hatırlama",
+ "win10WiredStartPeriodDescription": "EAPOL-Start iletisi göndermeden önce beklenecek saniye sayısı. 1 ile 3600 arasında bir değer seçin. Değer belirtilmezse 5 saniye kullanılır.",
+ "win10WiredStartPeriodName": "Başlatma süresi",
+ "win10WiredUser": "Kullanıcı",
"win10appLockerApplicationControlAllowDescription": "Bu uygulamaların çalışmasına izin verilecek",
"win10appLockerApplicationControlAllowName": "Zorla",
"win10appLockerApplicationControlAuditComponentsAndStoreAppsDescription": "\"Yalnızca Denetim\" modu tüm olayları yerel istemci olay günlüklerine kaydeder, ancak herhangi bir uygulamanın çalışmasını engellemez. Windows bileşenleri ve Microsoft Mağazası uygulamaları, güvenlik gereksinimlerini karşılıyor olarak günlüğe kaydedilir.",
@@ -9165,7 +7240,6 @@
"deviceConditionsInfoParagraph2": "Kayıtlı cihazlar için benzer cihaz tabanlı ayarlar yapılandırılabilir.",
"deviceConditionsInfoParagraph2LinkText": "Kayıtlı cihazlar için cihaz uyumluluk ayarlarını yapılandırma hakkında daha fazla bilgi edinin.",
"deviceId": "Cihaz Kimliği",
- "deviceLockComplexityValidationFailureNotes": "Notlar:
\r\n\r\n - Cihaz kilidi şu seviyelerde parola karmaşıklığı gerektirebilir: Android 11+ için DÜŞÜK, ORTA veya YÜKSEK. Android 10 ve önceki sürümleri çalıştıran cihazlar için Düşük/Orta/Yüksek karmaşıklık değeri ayarlamak \"Düşük Karmaşıklık\" için beklenen davranışı varsayılan olarak belirler.
\r\n - Aşağıdaki parola tanımları değişiklik gösterebilir. Farklı parola karmaşıklığı seviyelerinin güncellenmiş tanımları için lütfen DevicePolicyManager|Android Developers’a başvurun.
\r\n
\r\n\r\nDüşük
\r\n\r\n - Parola tekrarlı (4444) ya da sıralı (1234, 4321, 2468) diziler içeren bir kalıp veya PIN olabilir.
\r\n
\r\n\r\nOrta
\r\n\r\n - Tekrarlı (4444) ya da sıralı (1234, 4321, 2468) diziler içermeyen en az 4 karakter uzunluğundaki PIN
\r\n - En az 4 karakter uzunluğundaki alfabetik parolalar
\r\n - En az 4 karakter uzunluğundaki alfanumerik parolalar
\r\n
\r\n\r\nYüksek
\r\n\r\n - Tekrarlı (4444) ya da sıralı (1234, 4321, 2468) diziler içermeyen en az 8 karakter uzunluğundaki PIN
\r\n - En az 6 karakter uzunluğundaki alfabetik parolalar
\r\n - En az 6 karakter uzunluğundaki alfanumerik parolalar
\r\n
\r\n",
"deviceLockedOpenFilesOptionsText": "Cihaz kilitlendiğinde ve açık dosyalar varken",
"deviceLockedOptionText": "Cihaz kilitliyken",
"deviceManufacturer": "Cihaz üreticisi",
@@ -9463,7 +7537,7 @@
"reporting": "Raporlanıyor",
"reports": "Raporlar",
"require": "Gerekli Kıl",
- "requireDeviceLockComplexityOnApps": "Cihaz kilidi karmaşıklığı gerektir",
+ "requireDeviceLockOnApps": "Require device lock",
"requireThreatScanOnApps": "Uygulamalarda tehdit taraması iste",
"requiredField": "Bu alan boş olamaz",
"requiredSafetyNetEvaluationType": "Gerekli SafetyNet değerlendirme türü",
@@ -9659,6 +7733,7 @@
"yourDataIsBeingDownloadedEllipsis": "Verileriniz indiriliyor, bu biraz zaman alabilir...",
"yourDataIsBeingDownloadedMinutes": "Verileriniz indiriliyor, bu işlem birkaç dakika sürebilir...",
"yourProtectionLevel": "Koruma düzeyiniz",
+ "rules": "Kurallar",
"basics": "Temel Ayarlar",
"modeTableHeader": "Grup modu",
"appAssignmentMsg": "Grup",
@@ -9695,221 +7770,2042 @@
"licenseTypeDevice": "Cihaz",
"licenseTypeUser": "Kullanıcı"
},
- "Languages": {
- "ar-aE": "Arapça (B.A.E.)",
- "ar-bH": "Arapça (Bahreyn)",
- "ar-dZ": "Arapça (Cezayir)",
- "ar-eG": "Arapça (Mısır)",
- "ar-iQ": "Arapça (Irak)",
- "ar-jO": "Arapça (Ürdün)",
- "ar-kW": "Arapça (Kuveyt)",
- "ar-lB": "Arapça (Lübnan)",
- "ar-lY": "Arapça (Libya)",
- "ar-mA": "Arapça (Fas)",
- "ar-oM": "Arapça (Umman)",
- "ar-qA": "Arapça (Katar)",
- "ar-sA": "Arapça (Suudi Arabistan)",
- "ar-sY": "Arapça (Suriye)",
- "ar-tN": "Arapça (Tunus)",
- "ar-yE": "Arapça (Yemen)",
- "az-cyrl": "Azerice (Kiril, Azerbaycan)",
- "az-latn": "Azerice (Latin, Azerbaycan)",
- "bn-bD": "Bengalce (Bangladeş)",
- "bn-iN": "Bengalce (Hindistan)",
- "bs-cyrl": "Boşnakça (Kiril)",
- "bs-latn": "Boşnakça (Latin)",
- "zh-cN": "Çince (ÇHC)",
- "zh-hK": "Çince (Hong Kong ÖİB)",
- "zh-mO": "Çince (Macao ÖİB)",
- "zh-sG": "Çince (Singapur)",
- "zh-tW": "Çince (Tayvan)",
- "hr-bA": "Hırvatça (Latin)",
- "hr-hR": "Hırvatça (Hırvatistan)",
- "nl-bE": "Felemenkçe (Belçika)",
- "nl-nL": "Felemenkçe (Hollanda)",
- "en-aU": "İngilizce (Avustralya)",
- "en-bZ": "İngilizce (Belize)",
- "en-cA": "İngilizce (Kanada)",
- "en-cabn": "İngilizce (Karayipler)",
- "en-iE": "İngilizce (İrlanda)",
- "en-iN": "İngilizce (Hindistan)",
- "en-jM": "İngilizce (Jamaika)",
- "en-mY": "İngilizce (Malezya)",
- "en-nZ": "İngilizce (Yeni Zelanda)",
- "en-pH": "İngilizce (Filipinler Cumhuriyeti)",
- "en-sG": "İngilizce (Singapur)",
- "en-tT": "İngilizce (Trinidad ve Tobago)",
- "en-uK": "İngilizce (Birleşik Krallık)",
- "en-uS": "İngilizce (Amerika Birleşik Devletleri)",
- "en-zA": "İngilizce (Güney Afrika)",
- "en-zW": "İngilizce (Zimbabve)",
- "fr-bE": "Fransızca (Belçika)",
- "fr-cA": "Fransızca (Kanada)",
- "fr-cH": "Fransızca (İsviçre)",
- "fr-fR": "Fransızca (Fransa)",
- "fr-lU": "Fransızca (Luksemburg)",
- "fr-mC": "Fransızca (Monako)",
- "de-aT": "Almanca (Avusturya)",
- "de-cH": "Almanca (İsviçre)",
- "de-dE": "Almanca (Almanya)",
- "de-lI": "Almanca (Liechtenstein)",
- "de-lU": "Almanca (Luksemburg)",
- "iu-cans": "İnuit dili (Hece yazısı, Kanada)",
- "iu-latn": "İnuit dili (Latin, Kanada)",
- "it-cH": "İtalyanca (İsviçre)",
- "it-iT": "İtalyanca (İtalya)",
- "ms-bN": "Malay dili (Brunei Sultanlığı)",
- "ms-mY": "Malay dili (Malezya)",
- "mn-cN": "Moğolca (Geleneksel Moğolca, ÇHC)",
- "mn-mN": "Moğolca (Kiril, Moğolistan)",
- "no-nB": "Norveççe, Bokmål (Norveç)",
- "no-nn": "Norveç dili (Nynorsk, (Norveç)",
- "pt-bR": "Portekizce (Brezilya)",
- "pt-pT": "Portekizce (Portekiz)",
- "quz-bO": "Keçuva dili (Bolivya)",
- "quz-eC": "Keçuva dili (Ekvador)",
- "quz-pE": "Keçuva dili (Peru)",
- "smj-nO": "Sami, Lule (Norveç)",
- "smj-sE": "Sami, Lule (İsveç)",
- "se-fI": "Sami, Kuzey (Finlandiya)",
- "se-nO": "Sami, Kuzey (Norveç)",
- "se-sE": "Sami, Kuzey (İsveç)",
- "sma-nO": "Sami, Güney (Norveç)",
- "sma-sE": "Sami, Güney (İsveç)",
- "smn": "Sami, Inari (Finlandiya)",
- "sms": "Sami, Skolt (Finlandiya)",
- "sr-Cyrl-bA": "Sırpça (Kiril)",
- "sr-Cyrl-rS": "Sırpça (Kiril, Sırbistan ve Karadağ)",
- "sr-Latn-bA": "Sırpça (Latin)",
- "sr-Latn-rS": "Sırpça (Latin, Sırbistan)",
- "dsb": "Aşağı Sorb dili (Almanya)",
- "hsb": "Yukarı Sorb dili (Almanya)",
- "es-es-tradnl": "İspanyolca (İspanya, Geleneksel Sıralama)",
- "es-aR": "İspanyolca (Arjantin)",
- "es-bO": "İspanyolca (Bolivya)",
- "es-cL": "İspanyolca (Şili)",
- "es-cO": "İspanyolca (Kolombiya)",
- "es-cR": "İspanyolca (Kosta Rika)",
- "es-dO": "İspanyolca (Dominik Cumhuriyeti)",
- "es-eC": "İspanyolca (Ekvator)",
- "es-eS": "İspanyolca (İspanya)",
- "es-gT": "İspanyolca (Guatemala)",
- "es-hN": "İspanyolca (Honduras)",
- "es-mX": "İspanyolca (Meksika)",
- "es-nI": "İspanyolca (Nikaragua)",
- "es-pA": "İspanyolca (Panama)",
- "es-pE": "İspanyolca (Peru)",
- "es-pR": "İspanyolca (Porto Riko)",
- "es-pY": "İspanyolca (Paraguay)",
- "es-sV": "İspanyolca (El Salvador)",
- "es-uS": "İspanyolca (Amerika Birleşik Devletleri)",
- "es-uY": "İspanyolca (Uruguay)",
- "es-vE": "İspanyolca (Venezuela)",
- "sv-fI": "İsveç dili (Finlandiya)",
- "uz-cyrl": "Özbekçe (Kiril, Özbekistan)",
- "uz-latn": "Özbekçe (Latin, Özbekistan)",
- "af": "Afrikaner dili (Güney Afrika)",
- "sq": "Arnavutça (Arnavutluk)",
- "am": "Amhara dili (Etiyopya)",
- "hy": "Ermenice (Ermenistan)",
- "as": "Assam dili (Hindistan)",
- "ba": "Başkırtça (Rusya)",
- "eu": "Baskça (Baskça)",
- "be": "Belarusça (Belarus)",
- "br": "Bretonca (Fransa)",
- "bg": "Bulgarca (Bulgaristan)",
- "ca": "Katalanca (Katalanca)",
- "co": "Korsika lehçesi (Fransa)",
- "cs": "Çekçe (Çek Cumhuriyeti)",
- "da": "Danca (Danimarka)",
- "prs": "Dari dili (Afganistan)",
- "dv": "Divehi (Maldivler)",
- "et": "Estonca (Estonya)",
- "fo": "Faroe dili (Faroe Adaları)",
- "fil": "Filipin dili (Filipinler)",
- "fi": "Fince (Finlandiya)",
- "gl": "Galiçya dili (Galiçya)",
- "ka": "Gürcüce (Gürcistan)",
- "el": "Yunanca (Yunanistan)",
- "gu": "Gucerat dili (Hindistan)",
- "ha": "Hausa dili (Latin, Nijerya)",
- "he": "İbranice (İsrail)",
- "hi": "Hintçe (Hindistan)",
- "hu": "Macarca (Macaristan)",
- "is": "İzlandaca (İzlanda)",
- "ig": "İgbo dili (Nijerya)",
- "id": "Endonezce (Endonezya)",
- "ga": "İrlandaca (Irlanda)",
- "xh": "Zosa dili (Güney Afrika)",
- "zu": "Zuluca (Güney Afrika)",
- "ja": "Japonca (Japonya)",
- "kn": "Kannada dili (Hindistan)",
- "kk": "Kazakça (Kazakistan)",
- "km": "Khmer (Kamboçya)",
- "rw": "Kinyarvanda dili (Ruanda)",
- "sw": "Svahili dili (Kenya)",
- "kok": "Konkani Dili (Hindistan)",
- "ko": "Korece (Güney Kore)",
- "ky": "Kırgızca (Kırgızistan)",
- "lo": "Lao dili (Lao ÖİB)",
- "lv": "Letonca (Letonya)",
- "lt": "Litvanca (Litvanya)",
- "lb": "Lüksemburg dili (Lüksemburg)",
- "mk": "Makedonca (Kuzey Makedonya)",
- "ml": "Malayalam dili (Hindistan)",
- "mt": "Malta dili (Malta)",
- "mi": "Maori dili (Yeni Zelanda)",
- "mr": "Marathi (Hindistan)",
- "moh": "Mohavk dili (Mohavk)",
- "ne": "Nepal dili (Nepal)",
- "oc": "Oksitan dili (Fransa)",
- "or": "Odia (Hindistan)",
- "ps": "Peştuca (Afganistan)",
- "fa": "Farsça",
- "pl": "Lehçe (Polonya)",
- "pa": "Pencap dili (Hindistan)",
- "ro": "Rumence (Romanya)",
- "rm": "Romanş dili (İsviçre)",
- "ru": "Rusça (Rusya)",
- "sa": "Sanskritçe (Hindistan)",
- "st": "Kuzey Sotho Dili (Güney Afrika)",
- "tn": "Setsvana dili (Güney Afrika)",
- "si": "Sinhali dili (Sri Lanka)",
- "sk": "Slovakça (Slovakya)",
- "sl": "Slovence (Slovenya)",
- "sv": "İsveççe (İsveç)",
- "syr": "Süryanice (Suriye)",
- "tg": "Tacikçe (Kiril, Tacikistan)",
- "ta": "Tamil dili (Hindistan)",
- "tt": "Tatarca (Rusça)",
- "te": "Telugu dili (Hindistan)",
- "th": "Tayca (Tayland)",
- "bo": "Tibetçe (ÇHC)",
- "tr": "Türkçe (Türkiye)",
- "tk": "Türkmence (Türkmenistan)",
- "uk": "Ukraynaca (Ukrayna)",
- "ur": "Urduca (Pakistan İslam Cumhuriyeti)",
- "vi": "Vietnamca (Vietnam)",
- "cy": "Galce (Birleşik Krallık)",
- "wo": "Volof dili (Senegal)",
- "ii": "Yi dili (ÇHC)",
- "yo": "Yorubaca (Nijerya)"
- },
- "AppProtection": {
- "allAppTypes": "Tüm uygulama türlerini hedefle",
- "androidPlatformLabel": "Android",
- "appsInAndroidWorkProfile": "Android İş Profilindeki Uygulamalar",
- "appsOnIntuneManagedDevices": "Intune yönetilen cihazlardaki uygulamalar",
- "appsOnUnmanagedDevices": "Yönetilmeyen cihazlardaki uygulamalar",
- "iOSPlatformLabel": "iOS/iPadOS",
- "iosAndroidMacPlatformLabel": "iOS, Android, Mac",
- "iosAndroidPlatformLabel": "iOS, Android",
- "macPlatformLabel": "Mac",
- "notAvailable": "Kullanılamaz",
- "windows10PlatformLabel": "Windows 10 ve sonraki sürümler",
- "withEnrollment": "Kayıt ile",
- "withoutEnrollment": "Kayıt olmadan"
- },
+ "ApplicabilityRules": {
+ "GridLabel": {
+ "property": "Özellik",
+ "rule": "Kural",
+ "ruleDetails": "Kural Ayrıntıları",
+ "value": "Değer"
+ },
+ "assignIf": "Şu geçerliyse profili ata:",
+ "deleteWarning": "Bu işlem seçili Uygulanabilirlik Kuralını silecek",
+ "dontAssignIf": "Şu geçerliyse profili atama:",
+ "editionDisplayText": "{0} {1}",
+ "editionDisplayTextMore": "ve diğer {0} etki alanı denetleyicisi",
+ "instructions": "Bu profilin atanmış bir grup içinde nasıl uygulanacağını belirtin. Intune, profili yalnızca bu kuralların birleşik ölçütlerine uyan cihazlara uygular.",
+ "maxText": "En Büyük",
+ "minText": "En Küçük",
+ "noActionRow": "Uygulanabilirlik Kuralı Belirtilmedi",
+ "oSVersion": "ör. 1.2.3.4",
+ "toText": "buraya",
+ "windows10Education": "Windows 10/11 Education",
+ "windows10EducationN": "Windows 10/11 Education N",
+ "windows10Enterprise": "Windows 10/11 Enterprise",
+ "windows10EnterpriseN": "Windows 10/11 Enterprise N",
+ "windows10HolographicEnterprise": "Windows 10 Holographic for Business",
+ "windows10Home": "Windows 10/11 Home",
+ "windows10HomeChina": "Windows 10 Home China",
+ "windows10HomeN": "Windows 10/11 Home N",
+ "windows10HomeSingleLanguage": "Windows 10/11 Home Single Language",
+ "windows10IoTCore": "Windows 10 IoT Core",
+ "windows10IoTCoreCommercial": "Windows 10 IoT Core Commercial",
+ "windows10Mobile": "Windows 10 Mobile",
+ "windows10MobileEnterprise": "Windows 10 Mobile Enterprise",
+ "windows10OsEdition": "İşletim sistemi sürümü",
+ "windows10OsVersion": "İşletim sistemi sürümü",
+ "windows10Professional": "Windows 10/11 Professional",
+ "windows10ProfessionalEducation": "Windows 10/11 Professional Education",
+ "windows10ProfessionalEducationN": "Windows 10/11 Professional Education N",
+ "windows10ProfessionalN": "Windows 10 Professional N",
+ "windows10ProfessionalWorkstation": "Windows 10/11 Professional Workstation",
+ "windows10ProfessionalWorkstationN": "Windows 10/11 Professional Workstation N"
+ },
+ "DetectionRules": {
+ "ComparisonOperators": {
+ "equals": "Eşittir",
+ "greaterThan": "Büyüktür",
+ "greaterThanOrEqualTo": "Büyük veya eşittir",
+ "lessThan": "Küçüktür",
+ "lessThanOrEqualTo": "Küçük veya eşittir",
+ "notEqualTo": "Eşit değildir"
+ },
+ "CustomScript": {
+ "enforceSignatureCheck": "Betik imza denetimini uygula ve betiği sessiz çalıştır",
+ "enforceSignatureCheckTooltip": "Betiğin güvenilen bir yayıncı tarafından imzalandığını doğrulamak için 'Evet' seçeneğini belirleyin, bunu yapmak betiğin uyarı ya da komut istemi görüntülenmeden çalıştırılmasına olanak tanır. Betik engellenmeden çalışır. Betiği imza doğrulaması olmadan son kullanıcı onayıyla çalıştırmak için 'Hayır' (varsayılan) seçeneğini belirleyin.",
+ "header": "Özel algılama betiği kullan",
+ "runAs32Bit": "Betiği 64 bitlik istemcilerde 32 bitlik işlem olarak çalıştır",
+ "runAs32BitTooltip": "Betiği 64 bit istemcilerde 32 bit işlem olarak çalıştırmak için 'Evet' seçeneğini belirleyin. Betiği 64 bit istemcilerde 64 bit işlem olarak çalıştırmak için 'Hayır' (varsayılan) seçeneğini belirleyin. 32 bit istemciler, betiği 32 bit işlemde çalıştırır.",
+ "scriptFile": "Betik dosyası",
+ "scriptFileNotSelectedValidation": "Bir betik dosyası seçilmedi.",
+ "scriptFileTooltip": "Uygulamanın istemci üzerindeki varlığını algılayacak bir PowerShell betiğini seçin. Betik, 0 değerli bir çıkış kodu döndürdüğünde veya STDOUT'a bir dize değeri yazdığında uygulama algılanır.",
+ "scriptSizeLimitValidation": "Algılama betiğiniz izin verilen maksimum boyutu aşıyor. Bunu algılama betiğinizin boyutunu küçülterek çözün."
+ },
+ "Manual": {
+ "FileRule": {
+ "DetectionMethodOptions": {
+ "dateCreated": "Oluşturulma tarihi",
+ "dateModified": "Değiştirilme tarihi",
+ "doesNotExist": "Dosya veya klasör yok",
+ "fileOrFolderExists": "Dosya veya klasör var",
+ "sizeInMB": "Boyut (MB)",
+ "version": "Dize (sürüm)"
+ },
+ "associatedWith32Bit": "64 bit istemciler üzerinde bir 32 bit uygulamayla ilişkilendirildi",
+ "associatedWith32BitTooltip": "64 bit istemcilerde 32 bit bağlamındaki herhangi bir yol ortam değişkenini genişletmek için 'Evet' seçeneğini belirleyin. 64 bit istemcilerde 64 bit bağlamındaki herhangi bir yol değişkenini genişletmek için 'Hayır' (varsayılan) seçeneğini belirleyin. 32 bit istemciler her zaman 32 bit bağlamını kullanır.",
+ "detectionMethod": "Algılama yöntemi",
+ "detectionMethodTooltip": "Uygulamanın varlığını doğrulamak için kullanılan algılama yönteminin türünü seçin.",
+ "fileOrFolder": "Dosya veya klasör",
+ "fileOrFolderToolTip": "Algılanacak dosya veya klasör.",
+ "operator": "İşleç",
+ "operatorTooltip": "Karşılaştırmayı doğrulamak için kullanılan algılama yönteminin işlecini seçin.",
+ "path": "Yol",
+ "pathTooltip": "Algılanacak dosya veya klasörü içeren klasörün tam yolu.",
+ "value": "Değer",
+ "valueTooltip": "Seçili algılama yöntemiyle eşleşen bir değer seçin. Tarih algılama yöntemleri yerel biçimde girilmelidir."
+ },
+ "GridColumns": {
+ "pathOrCode": "Yol/Kod",
+ "type": "Tür"
+ },
+ "MsiRule": {
+ "operator": "İşleç",
+ "operatorTooltip": "MSI ürün sürümünü doğrulama karşılaştırması için işleci seçin.",
+ "productCode": "MSI ürün kodu",
+ "productCodeTooltip": "Uygulama için geçerli bir MSI ürün kodu.",
+ "productVersion": "Değer",
+ "productVersionCheck": "MSI ürün sürümü denetimi",
+ "productVersionCheckTooltip": "MSI ürün kodunun yanı sıra MSI ürün sürümünü de doğrulamak için 'Evet' seçeneğini belirleyin.",
+ "productVersionTooltip": "Uygulamanın MSI ürün sürümünü girin."
+ },
+ "RegistryRule": {
+ "DetectionMethodOptions": {
+ "integerComparison": "Tamsayı karşılaştırması",
+ "keyDoesNotExist": "Anahtar yok",
+ "keyExists": "Anahtar var",
+ "stringComparison": "Dize karşılaştırması",
+ "valueDoesNotExist": "Değer yok",
+ "valueExists": "Değeri var",
+ "versionComparison": "Sürüm karşılaştırması"
+ },
+ "associatedWith32Bit": "64 bit istemciler üzerinde bir 32 bit uygulamayla ilişkilendirildi",
+ "associatedWith32BitTooltip": "64 bit istemcilerde 32 bit kayıt defterini aramak için 'Evet' seçeneğini belirleyin. 64 bit istemcilerde 64 bit kayıt defterini aramak için 'Hayır' (varsayılan) seçeneğini belirleyin. 32 bit istemciler, her zaman 32 bit kayıt defterini arar.",
+ "detectionMethod": "Algılama yöntemi",
+ "detectionMethodTooltip": "Uygulamanın varlığını doğrulamak için kullanılan algılama yönteminin türünü seçin.",
+ "keyPath": "Anahtar yolu",
+ "keyPathTooltip": "Algılanacak değeri içeren kayıt defteri girişinin tam yolu.",
+ "operator": "İşleç",
+ "operatorTooltip": "Karşılaştırmayı doğrulamak için kullanılan algılama yönteminin işlecini seçin.",
+ "value": "Değer",
+ "valueName": "Değer adı",
+ "valueNameTooltip": "Algılanacak kayıt defteri değerinin adı.",
+ "valueTooltip": "Seçili algılama yöntemi ile eşleşen bir değer seçin."
+ },
+ "RuleTypeOptions": {
+ "file": "Dosya",
+ "mSI": "MSI",
+ "registry": "Kayıt Defteri"
+ },
+ "gridAriaLabel": "Algılama Kuralları",
+ "header": "Uygulamanın var olduğunu gösteren bir kural oluşturun.",
+ "noRulesSelectedPlaceholder": "Hiçbir kural belirtilmedi.",
+ "ruleTableLimit": "25'e kadar algılama kuralı ekleyebilirsiniz",
+ "ruleType": "Kural türü",
+ "ruleTypeTooltip": "Eklenecek algılama kuralı türünü seçin."
+ },
+ "RuleConfigurationOptions": {
+ "customScript": "Özel algılama betiği kullan",
+ "manual": "Algılama kurallarını el ile yapılandırın"
+ },
+ "bladeTitle": "Algılama kuralları",
+ "header": "Uygulamanın varlığını algılamak için kullanılacak uygulamaya özel kuralları yapılandırın.",
+ "rulesFormat": "Kuralların biçimi",
+ "rulesFormatTooltip": "Algılama kurallarını el ile yapılandırmayı veya uygulamanın var olduğunu algılamak için özel bir betik kullanmayı seçin.",
+ "selectorLabel": "Algılama kuralları"
+ },
+ "PolicyType": {
+ "AttackSurfaceReductionRules": {
+ "configMgr": "Saldırı Yüzeyi Azaltma Kuralları (ConfigMgr)"
+ },
+ "EndpointDetectionandResponse": {
+ "mDE": "Uç nokta algılama ve yanıt"
+ },
+ "EndpointSecurityTemplate": {
+ "aSRAppBrowserSecurity": "Uygulama ve tarayıcı yalıtımı",
+ "aSRApplicationControl": "Uygulama denetimi",
+ "aSRAttackSurfaceReduction": "Saldırı yüzeyi azaltma kuralları",
+ "aSRDeviceControl": "Cihaz denetimi",
+ "aSRExploitProtection": "Exploit Protection",
+ "aSRWebProtection": "Web koruması (Microsoft Edge'in eski sürümü)",
+ "aVExclusions": "Microsoft Defender Virüsten Koruma dışlamaları",
+ "antivirus": "Microsoft Defender Virüsten Koruma",
+ "cloudPC": "Windows 365 Güvenlik Temeli",
+ "default": "Uç Nokta Güvenliği",
+ "defenderTest": "Uç Nokta için Microsoft Defender tanıtımı",
+ "diskEncryption": "BitLocker",
+ "eDR": "Uç nokta algılama ve yanıt",
+ "edgeSecurityBaseline": "Microsoft Edge temeli",
+ "edgeSecurityBaselinePreview": "Önizleme: Microsoft Edge taban çizgisi",
+ "editionUpgradeConfiguration": "Sürüm yükseltme ve mod değiştirme",
+ "firewall": "Microsoft Defender Güvenlik Duvarı",
+ "firewallRules": "Microsoft Defender Güvenlik Duvarı kuralları",
+ "identityProtection": "Hesap koruması",
+ "identityProtectionPreview": "Hesap koruması (Önizleme)",
+ "mDMSecurityBaseline1810": "Ekim 2018 için Windows 10 ve üzeri için MDM Güvenlik Temeli",
+ "mDMSecurityBaseline1810Preview": "Önizleme: Ekim 2018 için Windows 10 ve üzeri için MDM Güvenlik Temeli",
+ "mDMSecurityBaseline1810PreviewBeta": "Önizleme: Ekim 2018 için Windows 10 ve üzeri için MDM Güvenlik Temeli (beta)",
+ "mDMSecurityBaseline1906": "Mayıs 2019 için Windows 10 ve üzeri için MDM Güvenlik Temeli",
+ "mDMSecurityBaseline2004": "Ağustos 2020 için Windows 10 ve üzeri için MDM Güvenlik Temeli",
+ "mDMSecurityBaseline2101": "Aralık 2020 Windows 10 ve sonrası için MDM Güvenlik Temeli",
+ "macOSAntivirus": "Virüsten koruma",
+ "macOSDiskEncryption": "FileVault",
+ "macOSFirewall": "macOS güvenlik duvarı",
+ "microsoftDefenderBaseline": "Uç Nokta için Microsoft Defender temeli",
+ "office365Baseline": "Microsoft Office O365 temeli",
+ "office365BaselinePreview": "Önizleme: Microsoft Office O365 temeli",
+ "securityBaselines": "Güvenlik Temelleri",
+ "test": "Test Şablonu",
+ "testFirewallRulesSecurityTemplateName": "Microsoft Defender Güvenlik Duvarı kuralları (Test)",
+ "testIdentityProtectionSecurityTemplateName": "Hesap koruması (Test)",
+ "windowsSecurityExperience": "Windows Güvenliği deneyimi"
+ },
+ "Firewall": {
+ "mDE": "Microsoft Defender Güvenlik Duvarı"
+ },
+ "FirewallRules": {
+ "mDE": "Microsoft Defender Güvenlik Duvarı Kuralları"
+ },
+ "administrativeTemplates": "Yönetim Şablonları",
+ "androidCompliancePolicy": "Android uyumluluk ilkesi",
+ "aospDeviceOwnerCompliancePolicy": "Android (AOSP) uyumluluk ilkesi",
+ "applicationControl": "Uygulama Denetimi",
+ "custom": "Özel",
+ "deliveryOptimization": "Teslim İyileştirme",
+ "derivedPersonalIdentityVerificationCredential": "Türetilmiş kimlik bilgisi",
+ "deviceFeatures": "Cihaz özellikleri",
+ "deviceFirmwareConfigurationInterface": "Cihaz Üretici Yazılımı Yapılandırma Arabirimi",
+ "deviceLock": "Cihaz Kilidi",
+ "deviceOwner": "Tam olarak yönetilen, ayrılmış ve şirkete ait iş profili",
+ "deviceRestrictions": "Cihaz kısıtlamaları",
+ "deviceRestrictionsWindows10Team": "Cihaz kısıtlamaları (Windows 10 Ekibi)",
+ "domainJoinPreview": "Etki Alanına Katılma",
+ "editionUpgradeAndModeSwitch": "Sürüm yükseltme ve mod değiştirme",
+ "education": "Eğitim",
+ "email": "E-posta",
+ "emailSamsungKnoxOnly": "E-posta (Yalnızca Samsung KNOX)",
+ "endpointProtection": "Uç nokta koruması",
+ "expeditedCheckin": "Mobil cihaz yönetimi yapılandırması",
+ "exploitProtection": "Exploit Protection",
+ "extensions": "Uzantılar",
+ "hardwareConfigurations": "BIOS Yapılandırmaları",
+ "identityProtection": "Kimlik koruması",
+ "iosCompliancePolicy": "iOS uyumluluk ilkesi",
+ "kiosk": "Kiosk",
+ "macCompliancePolicy": "Mac uyumluluk ilkesi",
+ "microsoftDefenderAntivirus": "Microsoft Defender Virüsten Koruma",
+ "microsoftDefenderAntivirusexclusions": "Microsoft Defender Virüsten Koruma dışlamaları",
+ "microsoftDefenderAtpWindows10Desktop": "Uç Nokta için Microsoft Defender (Windows 10 veya sonraki sürümleri çalıştıran masaüstü cihazları)",
+ "microsoftDefenderFirewallRules": "Microsoft Defender Güvenlik Duvarı Kuralları",
+ "microsoftEdgeBaseline": "Microsoft Edge Taban Çizgisi",
+ "mxProfileZebraOnly": "MX profili (yalnızca Zebra)",
+ "networkBoundary": "Ağ sınırı",
+ "oemConfig": "OEMConfig",
+ "overrideGroupPolicy": "Grup İlkesini Geçersiz Kılma",
+ "pkcsCertificate": "PKCS sertifikası",
+ "pkcsImportedCertificate": "PKCS içe aktarılan sertifikası",
+ "preferenceFile": "Tercih dosyası",
+ "presets": "Önayarlar",
+ "scepCertificate": "SCEP sertifikası",
+ "secureAssessmentEducation": "Güvenli değerlendirme (Eğitim)",
+ "settingsCatalog": "Ayarlar Kataloğu",
+ "sharedMultiUserDevice": "Paylaşılan çok kullanıcılı cihaz",
+ "softwareUpdates": "Yazılım Güncelleştirmeleri",
+ "trustedCertificate": "Güvenilen sertifika",
+ "unknown": "Bilinmeyen",
+ "unsupported": "Desteklenmiyor",
+ "vpn": "VPN",
+ "wiFi": "Wi-Fi",
+ "wiFiImport": "Wi-Fi içeri aktarma",
+ "windows10CompliancePolicy": "Windows 10/11 uyumluluk ilkesi",
+ "windows10MobileCompliancePolicy": "Windows 10 Mobile uyumluluk ilkesi",
+ "windows10XScep": "SCEP sertifikası - TEST",
+ "windows10XTrustedCertificate": "Güvenilen sertifika - TEST",
+ "windows10XVPN": "VPN - TEST",
+ "windows10XWifi": "WIFI - TEST",
+ "windows8CompliancePolicy": "Windows 8 uyumluluk ilkesi",
+ "windowsHealthMonitoring": "Windows işlevsel durum izleme",
+ "windowsInformationProtection": "Windows Bilgi Koruması",
+ "windowsPhoneCompliancePolicy": "Windows Phone uyumluluk ilkesi",
+ "windowsUpdateforBusiness": "İş İçin Windows Update",
+ "wiredNetwork": "Kablolu ağ",
+ "workProfile": "Kişisel olarak sahip olunan iş profili"
+ },
+ "Win32Requirements": {
+ "AdditionalRequirements": {
+ "File": {
+ "fileOrFolderToolTip": "Seçili gereksinim olarak dosya veya klasör.",
+ "pathToolTip": "Algılanacak dosya veya klasörün tam yolu.",
+ "property": "Özellik",
+ "valueToolTip": "Seçili algılama yöntemiyle eşleşen bir gereksinim değeri seçin. Tarih ve saat gereksinimi yerel biçimde girilmelidir."
+ },
+ "GridColumns": {
+ "pathOrScript": "Yol/Betik",
+ "type": "Tür"
+ },
+ "Registry": {
+ "keyPath": "Anahtar yolu",
+ "keyPathTooltip": "Değeri bir gereksinim olarak içeren kayıt defteri girişinin tam yolu.",
+ "operator": "İşleç",
+ "operatorTooltip": "Karşılaştırma için işleci seçin.",
+ "registryRequirement": "Kayıt defteri anahtarı gereksinimi",
+ "registryRequirementTooltip": "Kayıt defteri anahtarı gereksinim karşılaştırmasını seçin.",
+ "valueName": "Değer adı",
+ "valueNameTooltip": "Gerekli kayıt defteri değerinin adı."
+ },
+ "RequirementTypeOptions": {
+ "fileType": "Dosya",
+ "registry": "Kayıt Defteri",
+ "script": "Betik"
+ },
+ "Script": {
+ "RequirementMethodOptions": {
+ "boolean": "Boolean",
+ "dateTime": "Tarih ve Saat",
+ "float": "Kayan Nokta",
+ "integer": "Tam sayı",
+ "string": "Dize",
+ "version": "Sürüm"
+ },
+ "ScriptContent": {
+ "emptyMessage": "Betik içeriği boş olmamalıdır."
+ },
+ "duplicateName": "{0} betik adı zaten kullanılıyor. Lütfen farklı bir ad girin.",
+ "enforceSignatureCheck": "Betik imzası denetimini zorla",
+ "enforceSignatureCheckTooltip": "Betiğin güvenilen bir yayıncı tarafından imzalandığını doğrulamak için \"Evet\" seçeneğini belirleyin. Bunun yapılması, betiğin uyarı ya da komut istemi görüntülenmeden çalıştırılmasına olanak tanır. Betik engellenmeden çalışır. Betiği imza doğrulaması olmadan, son kullanıcı onayıyla çalıştırmak için \"Hayır\" (varsayılan) seçeneğini belirleyin.",
+ "loggedOnCredentials": "Bu betiği oturum açmış olan kullanıcının kimlik bilgilerini kullanarak çalıştır",
+ "loggedOnCredentialsTooltip": "Betiği oturum açılan cihazın kimlik bilgilerini kullanarak çalıştır.",
+ "operatorTooltip": "Gereksinim karşılaştırması için işleci seçin.",
+ "requirementMethod": "Çıkış veri türünü seçin",
+ "requirementMethodTooltip": "Bir algılama eşleşme gereksinimi belirlenirken kullanılan veri türünü seçin.",
+ "scriptFile": "Betik dosyası",
+ "scriptFileTooltip": "İstemcide uygulamanın olup olmadığını algılayacak bir PowerShell betiği seçin. Uygulama algılanırsa gereksinim süreci tarafından 0 değerli bir çıkış kodu sağlanır ve STDOUT'a bir dize değeri yazılır.",
+ "scriptName": "Betik adı",
+ "value": "Değer",
+ "valueTooltip": "Seçili algılama yöntemiyle eşleşen bir gereksinim değeri seçin. Tarih ve saat gereksinimi yerel biçimde girilmelidir."
+ },
+ "bladeTitle": "Gereksinim kuralı ekle",
+ "createRequirementHeader": "Bir gereksinim oluşturun.",
+ "header": "Ek gereksinim kuralları yapılandırın",
+ "label": "Ek gereksinim kuralları",
+ "noRequirementsSelectedPlaceholder": "Gereksinim belirtilmedi.",
+ "requirementType": "Gereksinim türü",
+ "requirementTypeTooltip": "Bir gereksiniminin nasıl doğrulanacağının belirlenmesi için kullanılacak algılama yöntemini seçin."
+ },
+ "architectures": "İşletim sistemi mimarisi",
+ "architecturesTooltip": "Uygulamayı yüklemek için gereken mimarileri seçin.",
+ "bladeTitle": "Gereksinimler",
+ "diskSpace": "Gerekli disk alanı (MB)",
+ "diskSpaceTooltip": "Uygulamayı yüklemek için sistem sürücüsünde gereken boş disk alanı.",
+ "header": "Uygulamanın yüklenebilmesi için cihazların karşılaması gereken gereksinimleri belirtin:",
+ "maximumTextFieldValue": "Değer en fazla {0} olabilir.",
+ "minimumCpuSpeed": "Gereken en düşük CPU hızı (MHz)",
+ "minimumCpuSpeedTooltip": "Uygulamayı yüklemek için gereken en düşük CPU hızı.",
+ "minimumLogicalProcessors": "Gereken en düşük mantıksal işlemci sayısı",
+ "minimumLogicalProcessorsTooltip": "Uygulamayı yüklemek için gereken en düşük mantıksal işlemci sayısı.",
+ "minimumOperatingSystem": "Minimum işletim sistemi",
+ "minimumOperatingSystemTooltip": "Uygulamayı yüklemek için gereken en düşük işletim sistemi seçin.",
+ "minumumTextFieldValue": "Değer en az {0} olmalıdır.",
+ "physicalMemory": "Gerekli fiziksel bellek (MB)",
+ "physicalMemoryTooltip": "Uygulamayı yüklemek için gereken fiziksel bellek (RAM).",
+ "selectorLabel": "Gereksinimler",
+ "validNumber": "Lütfen geçerli bir sayı girin."
+ },
+ "AzureIAM": {
+ "AdrsUserActionSelectionWarning": {
+ "conditions": "Cihaz kaydını gerektiren koşullar “Cihaz kaydet veya ekle” kullanıcı eylemiyle kullanılamıyor.",
+ "message": "\"Cihazları kaydetme veya ekleme\" kullanıcı eylemi için oluşturulan ilkelerde yalnızca \"Çok faktörlü kimlik doğrulaması gerektir\" kullanılabilir.{0}"
+ },
+ "AuthContext": {
+ "Delete": {
+ "failure": "{0} silinemedi",
+ "failureCa": "Sertifika yetkilisi ilkeleri tarafından başvurulduğundan {0} silinemedi",
+ "modifying": "{0} siliniyor",
+ "success": "{0} başarıyla silindi"
+ },
+ "Included": {
+ "none": "Bulut uygulaması, eylem veya kimlik doğrulaması bağlamı seçilmedi",
+ "plural": "{0} kimlik doğrulaması bağlamı dahil edildi",
+ "singular": "1 kimlik doğrulaması bağlamı dahil edildi"
+ },
+ "InfoBlade": {
+ "createTitle": "Kimlik doğrulaması bağlamı ekleme",
+ "descPlaceholder": "Kimlik doğrulaması bağlamı için açıklama ekleyin",
+ "modifyTitle": "Kimlik doğrulaması bağlamını değiştirme",
+ "namePlaceholder": "Ör. Güvenilen konum, Güvenilen cihaz, Güçlü yetkilendirme",
+ "publishDesc": "Uygulamalarda yayımlama, kullanılacak uygulamalar için kimlik doğrulaması bağlamını kullanılabilir hale getirir. Etiket için Koşullu Erişim ilkesini yapılandırmayı tamamladıktan sonra yayımlayın. [Daha fazla bilgi][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150966",
+ "publishLabel": "Uygulamalara yayınla",
+ "titleDesc": "Uygulama verilerini ve eylemlerini korumak için kullanılacak bir kimlik doğrulaması bağlamı yapılandırın. Uygulama yöneticileri tarafından anlaşılabilecek adlar ve açıklamalar kullanın. [Daha fazla bilgi][1]\n[1]:https://go.microsoft.com/fwlink/?linkid=2150965"
+ },
+ "Notify": {
+ "failure": "{0} güncelleştirilemedi",
+ "modifying": "{0} değiştiriliyor",
+ "success": "{0} başarıyla güncelleştirildi"
+ },
+ "WhatIf": {
+ "selected": "Kimlik doğrulaması bağlamı dahil edildi"
+ },
+ "addNewStepUp": "Yeni kimlik doğrulaması bağlamı",
+ "checkBoxInfo": "Bu ilkenin uygulanacağı kimlik doğrulaması bağlamlarını seçin",
+ "configure": "Kimlik doğrulaması bağlamlarını yapılandır",
+ "createCA": "Kimlik doğrulama bağlamına Koşullu Erişim ilkeleri atayın",
+ "dataGrid": "Kimlik doğrulaması bağlamlarının listesi",
+ "deleteFailedByReference": "You cannot delete this authentication context because it is being referenced by CA policies.",
+ "description": "Açıklama",
+ "documentation": "Belgeler",
+ "getStarted": "Kullanmaya başlayın",
+ "label": "Kimlik doğrulaması bağlamı (önizleme)",
+ "menuLabel": "Kimlik doğrulaması bağlamı (Önizleme)",
+ "name": "Ad",
+ "noAuthContextConfigured": "Hiçbir kimlik doğrulaması bağlamı yapılandırılmadı.",
+ "noAuthContextSet": "Kimlik doğrulama bağlamı yok",
+ "noData": "Görüntülenecek kimlik doğrulaması bağlamı yok",
+ "selectionInfo": "Kimlik doğrulaması bağlamı, SharePoint ve Microsoft Cloud App Security gibi uygulamalardaki uygulama verilerinin ve eylemlerinin güvenliğini sağlamak için kullanılır.",
+ "step": "Adım",
+ "tabDescription": "Uygulamalarınızda verileri ve eylemleri korumak için kimlik doğrulaması bağlamını yönetin. [Daha fazla bilgi][1]\n[1]:https://go.microsoft.com/fwlink/?linkid=2150965",
+ "tagResources": "Kaynakları kimlik doğrulama bağlamıyla etiketleyin"
+ },
+ "AuthenticationStrength": {
+ "Mode": {
+ "deviceBasedPush": "Microsoft Authenticator (Telefonla Oturum Açma)",
+ "deviceBasedPushFido2X509Certificate": "Microsoft Authenticator (Telefonla Oturum Açma), Fido 2 ve Sertifika Tabanlı Kimlik Doğrulaması",
+ "deviceBasedPushX509CertificateSingleFactor": "Microsoft Authenticator (Telefonla Oturum Açma), Fido 2 ve Sertifika Tabanlı Kimlik Doğrulaması (Tek Faktörlü)",
+ "email": "Bir kerelik geçiş kodunu e-posta ile gönder",
+ "emailOtp": "Bir kerelik geçiş kodunu e-posta ile gönder",
+ "federatedMultiFactor": "Federasyon Çok Faktörlü",
+ "federatedSingleFactor": "Şirket dışı tek faktörlü",
+ "federatedSingleFactorFederatedMultiFactor": "Federasyon tek faktörlü + Federasyon Çok Faktörlü",
+ "fido2": "FIDO 2 güvenlik anahtarı",
+ "fido2X509CertificateSingleFactor": "FIDO 2 güvenlik anahtarı ve Sertifika Tabanlı Kimlik Doğrulaması (Tek Faktörlü)",
+ "hardwareOath": "Donanım OATH belirteçleri",
+ "hardwareOathEmail": "Donanım OATH belirteçleri + E-posta ile bir kerelik geçiş kodu",
+ "hardwareOathX509CertificateSingleFactor": "Donanım OATH belirteçleri + Sertifika Tabanlı Kimlik Doğrulaması (Tek Faktörlü)",
+ "microsoftAuthenticatorPSIX509CertificateSingleFactor": "Microsoft Authenticator (Telefonla Oturum Açma) ve Sertifika Tabanlı Kimlik Doğrulaması (Tek Faktörlü)",
+ "microsoftAuthenticatorPsi": "Microsoft Authenticator (Telefonla Oturum Açma)",
+ "microsoftAuthenticatorPush": "Microsoft Authenticator (Anında İletme Bildirimi)",
+ "microsoftAuthenticatorPushEmail": "Microsoft Authenticator (Anında İletme Bildirimi) + E-posta ile bir kerelik geçiş kodu",
+ "microsoftAuthenticatorPushX509CertificateSingleFactor": "Microsoft Authenticator (Anında İletme Bildirimi) ve Sertifika Tabanlı Kimlik Doğrulaması (Tek Faktörlü)",
+ "none": "Yok",
+ "password": "Parola",
+ "passwordDeviceBasedPush": "Parola ve Microsoft Authenticator (Telefonla Oturum Açma)",
+ "passwordFido2": "Parola + FIDO 2 güvenlik anahtarı",
+ "passwordHardwareOath": "Parola + Donanım OATH belirteçleri",
+ "passwordMicrosoftAuthenticatorPSI": "Parola ve Microsoft Authenticator (Telefonla Oturum Açma)",
+ "passwordMicrosoftAuthenticatorPush": "Parola ve Microsoft Authenticator (Anında İletme Bildirimi)",
+ "passwordSms": "Parola + SMS",
+ "passwordSoftwareOath": "Parola + Yazılım OATH belirteçleri",
+ "passwordTemporaryAccessPassMultiUse": "Parola + Geçici Erişim Kodu (Çok kullanımlık)",
+ "passwordTemporaryAccessPassOneTime": "Parola ve Geçici Erişim Kodu (Tek kullanımlık)",
+ "passwordVoice": "Parola + Ses",
+ "sms": "SMS",
+ "smsEmail": "SMS + E-posta ile bir kerelik geçiş kodu",
+ "smsSignIn": "SMS ile oturum açma",
+ "smsX509CertificateSingleFactor": "SMS ve Sertifika Tabanlı Kimlik Doğrulaması (Tek Faktörlü)",
+ "softwareOath": "Yazılım OATH belirteçleri",
+ "softwareOathEmail": "Yazılım OATH belirteçleri + E-posta ile bir kerelik geçiş kodu",
+ "softwareOathX509CertificateSingleFactor": "Yazılım OATH belirteçleri + Sertifika Tabanlı Kimlik Doğrulaması (Tek Faktörlü)",
+ "temporaryAccessPassMultiUse": "Geçici Erişim Kodu (Çok kullanımlık)",
+ "temporaryAccessPassMultiUseX509CertificateSingleFactor": "Geçici Erişim Kodu (Çok kullanımlık) ve Sertifika Tabanlı Kimlik Doğrulaması (Tek Faktörlü)",
+ "temporaryAccessPassOneTime": "Geçici Erişim Kodu (Tek kullanımlık)",
+ "temporaryAccessPassOneTimeX509CertificateSingleFactor": "Geçici Erişim Kodu (Tek kullanımlık) ve Sertifika Tabanlı Kimlik Doğrulaması (Tek Faktörlü)",
+ "voice": "Sesli",
+ "voiceEmail": "Ses + E-posta ile bir kerelik geçiş kodu",
+ "voiceX509CertificateSingleFactor": "Ses ve Sertifika Tabanlı Kimlik Doğrulaması (Tek Faktörlü)",
+ "windowsHelloForBusiness": "İş için Windows Hello",
+ "x509CertificateMultiFactor": "Sertifika Tabanlı Kimlik Doğrulaması (Çok Faktörlü)",
+ "x509CertificateSingleFactor": "Sertifika Tabanlı Kimlik Doğrulaması (Tek Faktörlü)"
+ }
+ },
+ "CAS": {
+ "BuiltinPolicy": {
+ "Option": {
+ "blockDownloads": "İndirmeleri engelleme (Önizleme)",
+ "monitorOnly": "Yalnızca izleme (Önizleme)",
+ "protectDownloads": "İndirmeleri koruma (Önizleme)",
+ "useCustomControls": "Özel ilke kullan..."
+ },
+ "ariaLabel": "Uygulanacak Koşullu Erişim Uygulama Denetimi tipini seçin"
+ }
+ },
+ "ChooseApplications": {
+ "Grid": {
+ "appIdAria": "Uygulama Kimliği: {0}"
+ },
+ "LowerGrid": {
+ "ariaLabel": "Seçili bulut uygulamalarının listesi"
+ },
+ "UpperGrid": {
+ "ariaLabel": "Arama terimiyle eşleşen bulut uygulamalarının listesi"
+ }
+ },
+ "ChooseLocations": {
+ "Validation": {
+ "failed": "\"Seçili konumlar\" ile en az bir konum seçmeniz gerekir.",
+ "selector": "En az bir konum seçin"
+ }
+ },
+ "ClientApp": {
+ "Clients": {
+ "Validation": {
+ "failed": "Aşağıdaki istemcilerden en az birini seçmelisiniz"
+ }
+ }
+ },
+ "ClientConditionsInfo": {
+ "browserAndModern": "Bu ilke, yalnızca tarayıcı ve modern kimlik doğrulaması uygulamaları için geçerlidir. İlkeyi tüm istemci uygulamalara uygulamak için, istemci uygulaması koşulunu etkinleştirin ve tüm istemci uygulamaları seçin.",
+ "classicExperience": "Bu ilke oluşturulduğundan bu yana varsayılan istemci uygulamalarının yapılandırması güncelleştirildi.",
+ "legacyAuth": "Yapılandırılmadığında, ilkeler artık tüm istemci uygulamalarına uygulanır (modern ve eski kimlik doğrulaması dahil)."
+ },
+ "CloudAppFilterBlade": {
+ "AssignmentFilter": {
+ "header": "Öznitelik",
+ "placeholder": "Öznitelik seçin"
+ },
+ "Configure": {
+ "infoBalloon": "İlkeyi uygulamak istediğiniz uygulama filtrelerini yapılandırın."
+ },
+ "NoPermissions": {
+ "learnMoreAria": "Özel güvenlik özniteliği izinleri hakkında daha fazla bilgi.",
+ "message": "Özel güvenlik özelliklerini kullanmak için gereken izinlere sahip değilsiniz."
+ },
+ "gridHeader": "Özel güvenlik özniteliklerini kullanarak filtre kuralı oluşturmak veya düzenlemek için kural oluşturucuyu veya kural söz dizimi metin kutusunu kullanabilirsiniz. Önizlemede yalnızca Dize türündeki öznitelikler desteklenir. Tamsayı veya Boole türündeki öznitelikler gösterilmez.",
+ "learnMoreAria": "Kural oluşturucuyu ve söz dizimi metin kutusunu kullanma hakkında daha fazla bilgi.",
+ "noAttributes": "Filtrelenecek kullanılabilir özel öznitelik yok. Bu filtreyi uygulamak için bazı öznitelikleri yapılandırmanız gerekir.",
+ "title": "Filtreyi düzenle (Önizleme)"
+ },
+ "CloudAppsUserActions": {
+ "any": "Herhangi bir bulut uygulaması veya eylemi",
+ "infoBalloon": "Test etmek istediğiniz bulut uygulaması veya kullanıcı eylemi. Örneğin, 'SharePoint Online'",
+ "learnMore": "Tüm veya belirli bulut uygulamalarını veya eylemlerini temel alarak erişimi denetleyin.",
+ "learnMoreB2C": "Tüm veya belirli bulut uygulamalarını temel alarak erişimi denetleyin.",
+ "title": "Bulut uygulamaları veya eylemleri"
+ },
+ "CloudappsSelectionBlade": {
+ "Excluded": {
+ "gridAria": "Dışlanan bulut uygulamalarının listesi"
+ },
+ "Filter": {
+ "configured": "Yapılandırıldı",
+ "label": "Filtreyi düzenle (Önizleme)",
+ "with": "{1} ile {0}"
+ },
+ "Included": {
+ "gridAria": "Eklenen bulut uygulamalarının listesi"
+ },
+ "Validation": {
+ "authContext": "\"Kimlik doğrulaması bağlamı\" seçeneği ile en az bir alt öğe yapılandırmanız gerekir.",
+ "selectApps": "\"{0}\" yapılandırılmalıdır",
+ "selector": "En az bir uygulama seçin.",
+ "userActions": "\"Kullanıcı eylemleri\" seçeneği ile en az bir alt öğe yapılandırmanız gerekir."
+ }
+ },
+ "DeviceState": {
+ "LearnMore": {
+ "message": "Kullanıcının oturum açmak için kullandığı cihaz \"Hibrit Azure AD ile katılan\" veya \"uyumlu olarak işaretli\" olmadığında kullanıcı erişimini denetleyin.\n Bu kullanımdan kaldırıldı. Bunun yerine '{1}' kullanın."
+ }
+ },
+ "Errors": {
+ "notFound": "İlke bulunamadı veya silinmiş.",
+ "notFoundDetailed": "\"{0}\" ilkesi artık yok. Silinmiş olabilir."
+ },
+ "GuestsOrExternalUsers": {
+ "allExternalTenantsLabel": "Tüm Azure AD kuruluşları",
+ "b2bCollaborationGuestLabel": "B2B işbirliği konuk kullanıcıları",
+ "b2bCollaborationMemberLabel": "B2B işbirliği üyesi kullanıcılar",
+ "b2bDirectConnectUserLabel": "B2B doğrudan bağlantı kullanıcıları",
+ "enumeratedExternalTenantsError": "Lütfen en az bir dış kiracı seçin",
+ "enumeratedExternalTenantsLabel": "Azure AD kuruluşlarını seçin",
+ "externalTenantsLabel": "Dış Azure AD kuruluşlarını belirtin",
+ "externalUserDropdownLabel": "Konuk veya dış kullanıcı türlerini seçin",
+ "externalUsersError": "En az bir dış konuk veya kullanıcı türü seçin",
+ "guestOrExternalUsersInfoContent": "B2B İşbirliği, B2B doğrudan bağlantı ve diğer dış kullanıcı türlerini içerir.",
+ "guestOrExternalUsersLabel": "Konuklar veya dış kullanıcılar",
+ "internalGuestLabel": "Yerel konuk kullanıcılar",
+ "otherExternalUserLabel": "Diğer dış kullanıcılar"
+ },
+ "NamedLocation": {
+ "Form": {
+ "CountryLookup": {
+ "ariaLabel": "Ülke arama yöntemi",
+ "gps": "GPS koordinatlarına göre konumu belirle",
+ "info": "Bir Koşullu Erişim ilkesinin konum koşulu yapılandırıldığında, Authenticator uygulaması tarafından kullanıcılardan GPS konumlarını paylaşması istenir. ",
+ "ip": "IP adresine göre konumu belirle (yalnızca IPv4)"
+ },
+ "Header": {
+ "new": "Yeni konum ({0})",
+ "update": "Konumu güncelleştirin ({0})"
+ },
+ "IP": {
+ "learn": "Adlandırılmış konum IPv4 ve IPv6 aralıklarını yapılandırın.\n[Daha fazla bilgi][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
+ },
+ "Include": {
+ "infoBalloon": "Bilinmeyen ülkeler/bölgeler, belirli bir ülke veya bölgeyle ilişkilendirilmemiş IP adresleridir. [Daha fazla bilgi][1]\n\nBu adreslere şunlar dahildir:\n* IPv6 adresleri\n* Doğrudan eşlemesi olmayan IPv4 adresleri\n[1]: https://aka.ms/canamedlocations\n",
+ "label": "Bilinmeyen ülkeleri/bölgeleri dahil et"
+ },
+ "Name": {
+ "empty": "Ad boş olamaz",
+ "placeholder": "Bu konumu adlandırın"
+ },
+ "PrivateLink": {
+ "learn": "Azure AD için Özel Bağlantılar içeren yeni bir adlandırılmış konum oluşturun.\n[Daha fazla bilgi][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
+ },
+ "Search": {
+ "countries": "Ülke ara",
+ "names": "Adları arayın",
+ "privateLinks": "Özel Bağlantı Ara"
+ },
+ "Trusted": {
+ "label": "Güvenilen konum olarak işaretle"
+ },
+ "enter": "Yeni bir IPv4 veya IPv6 aralığı girin",
+ "example": "örn: 40.77.182.32/27 veya 2a01:111::/32"
+ },
+ "Label": {
+ "addCountries": "Ülke konumu",
+ "addIpRange": "IP aralıkları konumu",
+ "addPrivateLink": "Azure Özel Bağlantıları"
+ },
+ "Notification": {
+ "Create": {
+ "Failed": {
+ "description": "Yeni konum oluşturma hatası ({0})",
+ "title": "Oluşturma başarısız oldu"
+ },
+ "InProgress": {
+ "description": "Yeni konum oluşturuluyor ({0})",
+ "title": "Oluşturma devam ediyor"
+ },
+ "Success": {
+ "description": "Yeni konum oluşturma işlemi başarılı ({0})",
+ "title": "Oluşturma başarılı oldu"
+ }
+ },
+ "Delete": {
+ "Failed": {
+ "description": "Konum silme hatası ({0})",
+ "title": "Silme işlemi başarısız oldu"
+ },
+ "InProgress": {
+ "description": "Konum siliniyor ({0})",
+ "title": "Silme sürüyor"
+ },
+ "Success": {
+ "description": "Konumu silme işlemi başarılı ({0})",
+ "title": "Silme işlemi başarılı oldu"
+ }
+ },
+ "Update": {
+ "Failed": {
+ "description": "Konum güncelleştirme hatası ({0})",
+ "title": "Güncelleştirme başarısız oldu"
+ },
+ "InProgress": {
+ "description": "Konum güncelleştiriliyor ({0})",
+ "title": "Güncelleştirme işlemi sürüyor"
+ },
+ "Success": {
+ "description": "Konumu güncelleştirme işlemi başarılı ({0})",
+ "title": "Güncelleştirme başarılı oldu"
+ }
+ }
+ },
+ "PrivateLinks": {
+ "grid": "Özel Bağlantı Listesi"
+ },
+ "Trusted": {
+ "title": "Güvenilen tür",
+ "trusted": "Güvenilir"
+ },
+ "Type": {
+ "all": "Tüm türler",
+ "countries": "Ülkeler",
+ "ipRanges": "IP aralıkları",
+ "privateLinks": "Özel Bağlantılar",
+ "title": "Konum türü"
+ },
+ "iPRangeInvalidError": "Değer geçerli bir IPv4 veya IPv6 aralığı olmalıdır.",
+ "iPRangeLinkOrSiteLocalError": "IP ağı, bağlantı yerel adresi veya site yerel adresi olarak algılandı.",
+ "iPRangeOctetError": "IP ağı 0 veya 255 ile başlamamalıdır.",
+ "iPRangePrefixError": "IP ağ ön eki /{0} ile /{1} arasında olmalıdır.",
+ "iPRangePrivateError": "IP ağı, özel adres olarak algılandı."
+ },
+ "NamedNetwork": {
+ "List": {
+ "gridAria": "Adlandırılmış konumların listesi"
+ }
+ },
+ "Policies": {
+ "Grid": {
+ "aria": "Koşullu Erişim ilkeleri listesi"
+ },
+ "countText": "{1} ilke içinden {0} ilke bulundu",
+ "countTextSingular": "1 ilke içinden {0} ilke bulundu",
+ "search": "İlkelerde ara"
+ },
+ "Policy": {
+ "Condition": {
+ "ServicePrincipalRisk": {
+ "description": "İlkenin zorlanması için gereken hizmet sorumlusu risk düzeylerini yapılandırın",
+ "infoBalloonContent": "İlkeyi seçili risk düzeylerinde uygulamak için hizmet sorumlusu riskini yapılandırın",
+ "title": "Hizmet sorumlusu riski (Önizleme)"
+ }
+ }
+ },
+ "PolicyControlAuthStrength": {
+ "MultiFactorAuthentication": {
+ "description": "Parola ve SMS gibi güçlü kimlik doğrulama gereksinimlerini karşılayan yöntemlerin bileşimleri",
+ "displayName": "Çok faktörlü kimlik doğrulaması (MFA)"
+ },
+ "Passwordless": {
+ "description": "Microsoft Authenticator gibi güçlü kimlik doğrulama gereksinimlerini karşılayan parolasız yöntemler ",
+ "displayName": "Parolasız MFA"
+ },
+ "PhishingResistant": {
+ "description": "FIDO2 Güvenlik Anahtarı gibi en güçlü kimlik doğrulaması için kimlik avına karşı korumalı Parolasız yöntemler",
+ "displayName": "Kimlik avına karşı korumalı MFA"
+ }
+ },
+ "PolicyControlFedAuthMethod": {
+ "ariaLabel": "Learn more about requiring authentication methods satisfied by federation providers.",
+ "certificate": "Sertifika kimlik doğrulaması",
+ "infoBubble": "ADFS gibi Federasyon sağlayıcısı tarafından karşılanması gereken, gerekli kimlik doğrulama yöntemini belirtin.",
+ "multifactor": "Çok faktörlü kimlik doğrulaması",
+ "require": "Federasyon kimlik doğrulama yöntemi gerektir (Önizleme)",
+ "whatIfFormat": "{0} - {1}"
+ },
+ "PolicyState": {
+ "off": "Kapalı",
+ "on": "Açık",
+ "reportOnly": "Yalnızca rapor"
+ },
+ "PolicyTemplates": {
+ "Devices": {
+ "description": "Ağa erişen cihazlara yönelik görünürlük elde etmek için Cihazlar ilke şablonu kategorisini seçin. Erişim vermeden önce uyumluluğu ve sistem durumunu denetleyin.",
+ "name": "Cihazlar"
+ },
+ "Identities": {
+ "description": "Tüm dijital varlığınızdaki her bir kimliği güçlü kimlik doğrulamasıyla doğrulayıp korumak için Kimlikler ilke şablonu kategorisini seçin.",
+ "name": "Kimlikler"
+ },
+ "Summary": {
+ "CloudApps": {
+ "allCloudApps": "Tüm uygulamalar",
+ "office365": "Office 365",
+ "registerSecurityInfo": "Güvenlik bilgilerini kaydet"
+ },
+ "Conditions": {
+ "androidAndIOS": "Cihaz Platformu: Android ve iOS",
+ "anyDevice": "Android, iOS, Windows ve Mac dışındaki tüm cihazlar",
+ "anyDeviceStateExceptHybrid": "Uyumlu ve hibrit Azure AD ile katılan dışındaki tüm cihaz durumları",
+ "anyLocation": "Güvenilen konumlar dışındaki tüm konumlar",
+ "browserMobileDesktop": "İstemci uygulamaları: Tarayıcı, Mobil uygulamalar ve masaüstü istemcileri",
+ "exchangeActiveSync": "İstemci Uygulamaları: Exchange Active Sync, Diğer İstemciler",
+ "windowsAndMac": "Cihaz Platformu: Windows ve Mac"
+ },
+ "Devices": {
+ "anyDevice": "Herhangi Bir Cihaz"
+ },
+ "Grant": {
+ "appProtectionPolicy": "Uygulama koruma ilkesi iste",
+ "approvedClientApp": "Onaylı istemci uygulaması gerektir",
+ "blockAccess": "Erişimi engelle",
+ "mfa": "Çok faktörlü kimlik doğrulaması gerektir",
+ "passwordChange": "Parola değişikliği gerektirme",
+ "requireCompliantDevice": "Cihazın uyumlu olarak işaretlenmesini zorunlu kıl",
+ "requireHybridAzureADDevice": "Hibrit Azure AD ile katılan cihazı zorunlu kıl"
+ },
+ "Session": {
+ "appEnforcedRestrictions": "Uygulama tarafından zorlanan kısıtlamaları kullan",
+ "signInFrequency": "Oturum Açma Sıklığı ve asla kalıcı olmayan tarayıcı oturumu"
+ },
+ "UsersAndGroups": {
+ "allUsers": "Tüm Kullanıcılar",
+ "directoryRoles": "Geçerli yönetici dışındaki dizin rolleri",
+ "globalAdmin": "Genel Yönetici",
+ "noGuestAndAdmins": "Konuk ve Dış, Genel Yöneticiler, Geçerli yönetici dışındaki tüm Kullanıcılar"
+ },
+ "azureManagement": "Azure Yönetimi",
+ "deviceFilters": "Cihazlar için filtreler",
+ "devicePlatforms": "Cihaz Platformları"
+ },
+ "TemplateId": {
+ "AppEnforcedRestrictions": {
+ "description": "Yönetilmeyen cihazlardan SharePoint, OneDrive ve Exchange içeriğine erişimi engelleyin veya sınırlayın.",
+ "name": "CA014: Yönetilmeyen cihazlar için uygulama tarafından zorlanan kısıtlamaları kullan",
+ "title": "Yönetilmeyen cihazlar için uygulama tarafından zorlanan kısıtlamaları kullanma"
+ },
+ "ApprovedClientApps": {
+ "description": "Kuruluşlar, veri kaybını önlemek için Intune uygulama koruması ile onaylanmış modern kimlik doğrulaması istemci uygulamalarına erişimi kısıtlayabilir.",
+ "name": "CA012: Onaylanan istemci uygulamaları ve uygulama koruması gerektir",
+ "title": "Onaylı istemci uygulamaları ve uygulama koruması gerektirme"
+ },
+ "BlockAccessOnUnknowns": {
+ "description": "Cihaz türü bilinmediğinde veya desteklenmediğinde kullanıcıların şirket kaynaklarına erişimi engellenir.",
+ "name": "CA010: Bilinmeyen veya desteklenmeyen cihaz platformuna erişimi engelle",
+ "title": "Bilinmeyen veya desteklenmeyen cihaz platformuna erişimi engelleme"
+ },
+ "BlockLegacyAuth": {
+ "description": "Çok faktörlü kimlik doğrulamasını atlamak için kullanılabilen eski kimlik doğrulaması uç noktalarını engelleyin. ",
+ "name": "CA003: Eski kimlik doğrulamasını engelleme",
+ "title": "Eski kimlik doğrulamasını engelleme"
+ },
+ "NoPersistentBrowserSession": {
+ "description": "Tarayıcı kapatıldıktan sonra tarayıcı oturumlarının açık kalmasını önleyerek ve oturum açma sıklığını 1 saat olarak ayarlayarak, yönetilmeyen cihazlarda kullanıcı erişimini koruyun.",
+ "name": "CA011: Kalıcı tarayıcı oturumu yok",
+ "title": "Kalıcı tarayıcı oturumu yok"
+ },
+ "RequireCompliantOrHybridADAdmins": {
+ "description": "Ayrıcalıklı yöneticilerin yalnızca uyumlu veya hibrit Azure AD ile katılan bir cihaz kullanırken kaynaklara erişmesini gerektirin.",
+ "name": "CA009: Yöneticiler için uyumlu veya hibrit Azure AD ile katılan cihaz gerektirme",
+ "title": "Yöneticiler için uyumlu veya hibrit Azure AD ile katılan cihaz gerektirme"
+ },
+ "RequireCompliantOrHybridADAllUsers": {
+ "description": "Kullanıcıların yönetilen bir cihaz kullanmasını veya çok faktörlü kimlik doğrulaması gerçekleştirmesini gerektirerek şirket kaynaklarına erişimi koruyun. (Yalnızca macOS veya Windows)",
+ "name": "CA013: Tüm kullanıcılar için uyumlu veya hibrit Azure AD ile katılan cihaz veya çok faktörlü kimlik doğrulaması gerektirme",
+ "title": "Tüm kullanıcılar için uyumlu veya hibrit Azure AD ile katılan cihaz veya çok faktörlü kimlik doğrulaması gerektirme"
+ },
+ "RequireMFAAllUsers": {
+ "description": "Güvenlik ihlali riskini azaltmak için tüm kullanıcı hesapları için çok faktörlü kimlik doğrulamasını gerektirin.",
+ "name": "CA004: Tüm kullanıcılar için çok faktörlü kimlik doğrulaması gerektir",
+ "title": "Tüm kullanıcılar için çok faktörlü kimlik doğrulaması gerektir"
+ },
+ "RequireMFAForAdmins": {
+ "description": "Güvenlik ihlali riskini azaltmak için ayrıcalıklı yönetici hesapları için çok faktörlü kimlik doğrulaması gerektirin. Bu ilke, Güvenlik Varsayılanı ile aynı rolleri hedefler.",
+ "name": "CA001: Yöneticiler için çok faktörlü kimlik doğrulaması gerektir",
+ "title": "Yöneticiler için çok faktörlü kimlik doğrulaması gerektirin"
+ },
+ "RequireMFAForAzureManagement": {
+ "description": "Azure kaynaklarına ayrıcalıklı erişimi korumak için çok faktörlü kimlik doğrulaması gerektirin.",
+ "name": "CA006: Azure yönetimi için çok faktörlü kimlik doğrulaması gerektir",
+ "title": "Azure yönetimi için çok faktörlü kimlik doğrulaması gerektir"
+ },
+ "RequireMFAForGuestAccess": {
+ "description": "Konuk kullanıcıların şirket kaynaklarınıza erişirken çok faktörlü kimlik doğrulaması yapmasını gerektirin.",
+ "name": "CA005: Konuk erişimi için çok faktörlü kimlik doğrulaması gerektir",
+ "title": "Konuk erişimi için çok faktörlü kimlik doğrulaması gerektir"
+ },
+ "RequireMFAForRiskySignIn": {
+ "description": "Oturum açma riskinin orta veya yüksek olduğu algılanırsa çok faktörlü kimlik doğrulaması gerektirin. (Azure AD Premium 2 Lisansı gerektirir)",
+ "name": "CA007: Riskli oturum açma işlemleri için çok faktörlü kimlik doğrulaması gerektirme",
+ "title": "Riskli oturum açma işlemleri için çok faktörlü kimlik doğrulaması gerektirme"
+ },
+ "RequirePasswordChangeForHighRiskUsers": {
+ "description": "Kullanıcı riskinin yüksek olduğu algılanırsa, kullanıcının şifresini değiştirmesini isteyin. (Azure AD Premium 2 Lisansı gerektirir)",
+ "name": "CA008: Yüksek riskli kullanıcılar için parola değişikliği gerektir",
+ "title": "Yüksek riskli kullanıcılar için parola değişikliği gerektir"
+ },
+ "RequireSecurityInfo": {
+ "description": "Kullanıcıların Azure AD çok faktörlü kimlik doğrulaması ve self servis parola için ne zaman ve nasıl kaydolduğunu güvenli hale getirin. ",
+ "name": "CA002: Güvenlik bilgileri kaydının güvenliğini sağlama",
+ "title": "Güvenlik bilgileri kaydının güvenliğini sağlama"
+ }
+ },
+ "TemplateState": {
+ "BlockAccessOnUnknowns": {
+ "title": "Bu ilkenin etkinleştirilmesi, bilinmeyen cihaz türünden tüm erişimleri engeller. Bunun kullanıcılarınızı etkilemeyeceğini onaylayana kadar, başlamak için yalnızca rapor modunu kullanmayı düşünün."
+ },
+ "BlockLegacyAuth": {
+ "description": "Bunun kullanıcılarınızı etkilemeyeceğini onaylayana kadar, başlamak için yalnızca rapor modunu kullanmayı düşünün.",
+ "title": "Bu ilkenin etkinleştirilmesi, tüm kullanıcılarınız için eski kimlik doğrulamasını engeller."
+ },
+ "RequireCompliantOrHybridADAdmins": {
+ "Description": {
+ "on": "Bunun ayrıcalıklı kullanıcılarınızı etkilemeyeceğini onaylayana kadar, başlamak için yalnızca rapor modunu kullanmayı düşünün.",
+ "reportOnly": "Uyumlu cihazlar gerektiren yalnızca rapor modundaki ilkeler, cihaz uyumluluğu zorunlu kılınmasa bile, Mac, iOS ve Android kullanıcılarından ilke değerlendirmesi sırasında bir cihaz sertifikası seçmesini isteyebilir. Bu istemler, cihaz uyumlu hale gelene kadar yinelenebilir."
+ },
+ "Title": {
+ "on": "Bu ilkenin etkinleştirilmesi, uyumlu veya hibrit Azure AD ile katılan gibi yönetilen bir cihaz kullanılmadığı sürece ayrıcalıklı kullanıcılar için tüm erişimleri engeller. Etkinleştirmeden önce uyumluluk ilkelerinizi yapılandırdığınızdan veya hibrit Azure AD yapılandırmasını etkinleştirdiğinizden emin olun.",
+ "reportOnly": "Etkinleştirmeden önce uyumluluk ilkelerinizi yapılandırdığınızdan veya hibrit Azure AD yapılandırmasını etkinleştirdiğinizden emin olun."
+ }
+ },
+ "RequireCompliantOrHybridADAllUsers": {
+ "Description": {
+ "on": "Bu ilke, şu anda oturum açmış olan Yönetici dışındaki tüm kullanıcıları etkiler. Bunun kullanıcılarınızı etkilemeyeceğini onaylayana kadar, başlamak için yalnızca rapor modunu kullanmayı düşünün."
+ },
+ "Title": {
+ "on": "Hesabınıza erişiminizi kaybetmeyin! Cihazınızın uyumlu veya Hibrit Azure AD ile Katılan bir cihaz olduğundan veya çok faktörlü kimlik doğrulamayı yapılandırdığınızdan emin olun.",
+ "reportOnly": "Uyumlu cihazlar gerektiren yalnızca rapor modundaki ilkeler, cihaz uyumluluğu zorunlu kılınmasa bile, Mac, iOS ve Android kullanıcılarından ilke değerlendirmesi sırasında bir cihaz sertifikası seçmesini isteyebilir. Bu istemler, cihaz uyumlu hale gelene kadar yinelenebilir."
+ }
+ },
+ "RequireMfa": {
+ "description": "Şirket içi nesnelerinizi eşitlemek için acil durum erişim hesaplarını veya Azure AD Connect'i kullanırsanız, oluşturulduktan sonra bu hesapları bu ilkenin dışında tutmanız gerekebilir."
+ },
+ "RequireMfaAdmins": {
+ "description": "İlke oluşturma sırasında geçerli yönetici hesabının otomatik olarak dışlanacağına ancak tüm diğerlerinin korunacağına dikkat edin. Başlamak için yalnızca rapor modunu kullanmayı düşünün.",
+ "title": "Hesabınıza erişiminizi kaybetmeyin! Bu ilke Azure portalı etkiler."
+ },
+ "RequireMfaAllUsers": {
+ "description": "Bu değişikliği planlayana ve tüm kullanıcılarınıza iletene kadar başlamak için yalnızca rapor modunu kullanmayı düşünün.",
+ "title": "Bu ilkenin etkinleştirilmesi, tüm kullanıcılarınız için çok faktörlü kimlik doğrulamasını zorunlu kılar."
+ },
+ "RequireSecurityInfo": {
+ "description": "Lütfen şirket gereksinimlerinize göre bu hesapları korumak için yapılandırmanızı gözden geçirdiğinizden emin olun.",
+ "title": "Şu kullanıcılar ve roller bu ilkeden dışlanır: Konuklar ve Dış Kullanıcılar, Genel Yöneticiler, Geçerli Yönetici"
+ }
+ },
+ "basics": "Temel bilgiler",
+ "clientApps": "İstemci uygulamaları",
+ "cloudApps": "Bulut uygulamaları",
+ "cloudAppsOrActions": "Bulut uygulamaları veya eylemleri ",
+ "conditions": "Koşullar ",
+ "createNewPolicy": "Şablonlardan yeni ilke oluştur (Önizleme)",
+ "createPolicy": "İlke Oluştur",
+ "currentUser": "Geçerli kullanıcı",
+ "customizeBuild": "Derlemenizi özelleştirin",
+ "customizeTemplate": "Şablon listeleri, oluşturmakta olduğunuz ilke türüne göre özelleştirilir",
+ "excludedDevicePlatform": "Dışlanan cihaz platformları",
+ "excludedDirectoryRoles": "Dışlanan dizin rolleri",
+ "excludedLocation": "Dışlanan dizin rolleri",
+ "excludedUsers": "Dışlanan kullanıcılar",
+ "grantControl": "İzin verme denetimi ",
+ "includeFilteredDevice": "Filtrelenen cihazları ilkeye dahil et",
+ "includedDevicePlatform": "Dahil edilen cihaz platformları",
+ "includedDirectoryRoles": "Dahil edilen dizin rolleri",
+ "includedLocation": "Dahil edilen konum",
+ "includedUsers": "Eklenen kullanıcılar",
+ "legacyAuthenticationClients": "Eski kimlik doğrulama istemcileri",
+ "namePolicy": "İlkenizi adlandırın",
+ "next": "Sonraki",
+ "policyName": "İlke Adı",
+ "policyState": "İlke durumu",
+ "policySummary": "İlke özeti",
+ "policyTemplate": "İlke şablonu",
+ "previous": "Önceki",
+ "reviewAndCreate": "Gözden geçir ve oluştur",
+ "riskLevels": "Risk düzeyleri",
+ "selectATemplate": "Şablon Seçin",
+ "selectTemplate": "Şablon seçin",
+ "selectTemplateCategory": "Şablon kategorisi seç",
+ "selectTemplateRecommendation": "Yanıtınıza göre aşağıdaki şablonları kullanmanızı öneririz",
+ "sessionControl": "Oturum denetimi ",
+ "signInFrequency": "Oturum açma sıklığı",
+ "signInRisk": "Oturum açma riski",
+ "template": "Şablon ",
+ "templateCategory": "Şablon kategorisi",
+ "userRisk": "Kullanıcı riski",
+ "usersAndGroups": "Kullanıcılar ve gruplar ",
+ "viewPolicySummary": "İlke özetini görüntüle "
+ },
+ "SSM": {
+ "MemberSelector": {
+ "description": "Kullanıcılar ve gruplar"
+ },
+ "Notification": {
+ "Migration": {
+ "error": "Sürekli erişim değerlendirmesi ayarları Koşullu erişim ilkelerine geçirilemedi",
+ "inProgress": "Sürekli erişim değerlendirmesi ayarları geçiriliyor",
+ "success": "Sürekli erişim değerlendirmesi ayarları Koşullu erişim ilkelerine başarıyla geçirildi",
+ "successDescription": "“CAE ayarlarından oluşturulan CA ilkesi” adlı yeni oluşturulan ilkedeki geçirilen ayarları görüntülemek için lütfen Koşullu erişim ilkelerine gidin."
+ },
+ "error": "Sürekli Erişim Değerlendirmesi ayarları güncelleştirilemedi",
+ "inProgress": "Sürekli Erişim Değerlendirmesi ayarları güncelleştiriliyor",
+ "success": "Sürekli Erişim Değerlendirmesi ayarları başarıyla güncelleştirildi"
+ },
+ "PreviewOptions": {
+ "disable": "Önizlemeyi devre dışı bırak",
+ "enable": "Önizlemeyi etkinleştir"
+ },
+ "StrictLocationEnforcement": {
+ "infoContent1": "Ağ bölümü veya IPv4/IPv6 uyumsuzluğu nedeniyle, farklı IP'ler Azure AD ve Kaynak Sağlayıcısı tarafından aynı istemci cihazından görülebilir. Katı Konum Zorlaması, Azure AD ve Kaynak Sağlayıcısı tarafından görülen her iki IP adresine göre Koşullu Erişim ilkesini uygular.",
+ "infoContent2": "En yüksek güvenliği sağlamak için, hem Azure AD hem de Kaynak Sağlayıcısı tarafından görülebilen tüm IP'leri Adlandırılmış Konum ilkenize dahil etmeniz ve \"Katı Konum Zorlaması\" modunu açmanız önerilir.",
+ "label": "Katı Konum Zorlaması",
+ "title": "Ek zorunlu kılma modları"
+ },
+ "bladeTitle": "Sürekli erişim değerlendirmesi",
+ "description": "Kullanıcının erişimi kaldırıldığında veya istemci IP adresi değiştirildiğinde, Sürekli Erişim Değerlendirmesi gerçek zamanlıya yakın olarak kaynaklara ve uygulamalara erişimi otomatik olarak engeller. ",
+ "migrateLabel": "Geçir",
+ "migrationError": "Şu hata nedeniyle geçiş yapılamadı: {0}",
+ "migrationInfo": "CAE ayarı Koşullu Erişim kullanıcı deneyimi altına taşındı. Lütfen yukarıdaki “Geçir” düğmesiyle geçirip Koşullu Erişim ilkesiyle birlikte doğru bir şekilde yapılandırın. Daha fazla bilgi için buraya tıklayın.",
+ "noLicenseMessage": "Azure AD Premium ile akıllı oturum yönetimi ayarlarını yönetin",
+ "optionsPickerTitle": "Sürekli Erişim Değerlendirmesini Etkinleştir/Devre Dışı Bırak",
+ "upsellInfo": "Artık bu sayfadaki ayarlarınızı değiştiremezsiniz ve buradaki tüm ayarların yoksayılması gerekir. Önceki ayarınız kabul edilir. Bundan sonra CAE ayarlarınızı Koşullu Erişim altından yapılandırabilirsiniz. Daha fazla bilgi edinmek için buraya tıklayın."
+ },
+ "SelectOrganizations": {
+ "Blade": {
+ "Lower": {
+ "gridAria": "Seçili kuruluşlar listesi"
+ },
+ "Upper": {
+ "gridAria": "Mevcut kuruluşlar listesi"
+ },
+ "description": "Etki alanı adlarından birini yazarak bir Microsoft Azure AD kuruluşu ekleyin.",
+ "notFoundResult": "Bulunamadı",
+ "searchBoxPlaceholder": "Kiracı kimliği veya etki alanı adı",
+ "subTitle": "Microsoft Azure AD kuruluşu"
+ },
+ "Selector": {
+ "AdditionalDetails": {
+ "aria": "Kuruluş Kimliği: {0}"
+ },
+ "DisplayText": {
+ "multiple": "{0} Microsoft Azure AD kuruluşu seçildi",
+ "single": "1 Microsoft Azure AD kuruluşu seçildi"
+ },
+ "gridAria": "Seçili kuruluşlar listesi"
+ }
+ },
+ "SessionLifetime": {
+ "PersistentBrowser": {
+ "Error": {
+ "notAllApps": "Kalıcı tarayıcı oturumu ilkesi yalnızca \"Tüm bulut uygulamaları\" seçildiğinde doğru şekilde çalışır. Lütfen bulut uygulamaları seçiminizi güncelleştirin."
+ },
+ "Option": {
+ "always": "Her zaman kalıcı",
+ "help": "Kalıcı tarayıcı oturumu, kullanıcılar tarayıcı pencerelerini kapatıp açtıklarında oturumlarının açık kalmasını sağlar.
\n\n- Bu ayar \"Tüm bulut uygulamaları\" seçildiğinde doğru çalışır
\n- Bu, belirteç ömürlerini veya oturum açma sıklığı ayarını etkilemez.
\n- Bu, Şirket Markasında \"Oturumun açık kalması seçeneğini göster\" ayarını geçersiz kılar.
\n- \"Asla kalıcı yapma\", şirket dışı kimlik doğrulaması hizmetlerinden geçirilen tüm kalıcı SSO taleplerini geçersiz kılar.
\n- \"Asla kalıcı yapma\", uygulamalarda ve uygulamalar ile kullanıcının mobil tarayıcısı arasında mobil cihazlardaki SSO'yu engeller.
\n",
+ "label": "Kalıcı tarayıcı oturumu",
+ "never": "Asla kalıcı yapma"
+ },
+ "Warning": {
+ "allApps": "Kalıcı tarayıcı oturumu yalnızca Tüm bulut uygulamaları seçildiğinde doğru şekilde çalışır. Lütfen bulut uygulamaları seçiminizi değiştirin. Daha fazla bilgi edinmek için buraya tıklayın."
+ }
+ },
+ "SignInFrequency": {
+ "Aria": {
+ "units": "Saatler veya günler",
+ "value": "Sıklık"
+ },
+ "Option": {
+ "Day": {
+ "plural": "{0} gün",
+ "singular": "1 gün"
+ },
+ "Hour": {
+ "plural": "{0} saat",
+ "singular": "1 saat"
+ },
+ "daysOption": "Gün",
+ "everytime": "Her seferinde",
+ "help": "Kullanıcının bir kaynağa erişmeye çalışırken tekrar oturum açmasının istenmesi için geçmesi gereken süre. Varsayılan ayar 90 günlük bir hareketli zaman aralığıdır, yani en az 90 gün boyunca makinelerinde etkin olmayan kullanıcılardan, bu süre sonunda bir kaynağa ilk kez erişmeyi denediklerinde kimliklerini yeniden doğrulamaları istenir.",
+ "hoursOption": "Saat",
+ "label": "Oturum açma sıklığı",
+ "placeholder": "Birim seçin"
+ }
+ },
+ "mainOption": "Oturum ömrünü değiştir",
+ "mainOptionHelp": "Kullanıcılara ne sıklıkta istemde bulunulacağını ve tarayıcı oturumlarının kalıcı olup olmayacağını yapılandırın. Modern kimlik doğrulaması protokollerini desteklemeyen uygulamalar bu ilkelere uymayabilir. Bu gibi durumlarda lütfen uygulama geliştiricisine başvurun."
+ },
+ "SigninRisk": {
+ "LearnMore": {
+ "message": "Kullanıcı erişimini, belirli oturum açma ve risk düzeylerine yanıt verecek şekilde denetleyin."
+ }
+ },
+ "SingleSelectorActive": {
+ "failed": "Bu veriler yüklenemiyor.",
+ "reattempt": "Veriler yükleniyor. Yeniden deneme {0} / {1}."
+ },
+ "TimeCondition": {
+ "Errors": {
+ "both": "\"Ekle\" veya \"Hariç Tut\" zaman aralığı geçersiz.",
+ "daysOfWeek": "{0} Haftanın en az bir gününü belirttiğinizden emin olun.",
+ "endBeforeStart": "{0} Başlangıç tarih/saatinin bitiş tarih/saatinden önce olduğundan emin olun.",
+ "exclude": "\"Hariç Tut\" zaman aralığı geçersiz.",
+ "generic": "{0} Hem haftanın günlerini hem de saat dilimini ayarladığınızdan emin olun. \"Tüm gün\" seçeneğini işaretlemezseniz, başlangıç ve bitiş saatlerini de ayarlamanız gerekir.",
+ "include": "\"Ekle\" zaman aralığı geçersiz.",
+ "timeMissing": "{0} Hem başlangıç hem de bitiş saati belirttiğinizden emin olun.",
+ "timeZone": "{0} Saat dilimini belirttiğinizden emin olun.",
+ "timesAndZone": "{0} Başlangıç saatini, bitiş saatini ve saat dilimini ayarladığınızdan emin olun."
+ }
+ },
+ "UserActions": {
+ "Included": {
+ "none": "Bulut uygulaması veya eylemi seçilmedi",
+ "plural": "{0} kullanıcı eylemleri dahil edildi",
+ "singular": "1 kullanıcı eylemi dahil edildi"
+ },
+ "accessRequirement1": "Düzey 1",
+ "accessRequirement2": "Düzey 2",
+ "accessRequirement3": "Düzey 3",
+ "accessRequirementsLabel": "Güvenli uygulama verilerine erişiliyor",
+ "appsActionsAuthTitle": "Bulut uygulamaları, eylemleri veya kimlik doğrulaması bağlamı",
+ "appsOrActionsSelectorInfoBallonText": "Erişilen uygulamalar veya kullanıcı eylemleri",
+ "appsOrActionsTitle": "Bulut uygulamaları veya eylemleri",
+ "label": "Kullanıcı eylemleri",
+ "mainOptionsLabel": "Bu ilkenin neye uygulanacağını seçin",
+ "registerOrJoinDevices": "Cihazları kaydet veya ekle",
+ "registerSecurityInfo": "Güvenlik bilgilerini kaydedin",
+ "selectionInfo": "Bu ilkenin uygulanacağı eylemi seçin",
+ "whatIf": "Kullanıcı eylemi dahil edildi"
+ },
+ "UserSelectionBlade": {
+ "DirectoryRoles": {
+ "ariaLabel": "Dizin rollerini seçin"
+ },
+ "Excluded": {
+ "gridAria": "Hariç tutulan kullanıcıların listesi"
+ },
+ "Included": {
+ "gridAria": "Dahil edilen kullanıcıların listesi"
+ },
+ "Validation": {
+ "customRoleIncluded": "\"Dizin Rolleri\" en az bir özel rol içerir",
+ "customRoleSelected": "En az bir özel rol seçildi",
+ "failed": "\"{0}\" yapılandırılmalıdır",
+ "roles": "En az bir rol seçin",
+ "usersGroups": "En az bir kullanıcı veya grup seçin"
+ },
+ "learnMore": "Kullanıcılar ve gruplar, iş yükü kimlikleri, dizin rolleri veya dış konuklar gibi ilkenin kime uygulanacağına bağlı olarak erişimi denetleyin."
+ },
+ "ValidationResult": {
+ "blockEveryonePolicy": "İlke yapılandırması desteklenmiyor. Seçilen atama ve denetimleri gözden geçirin.",
+ "invalidApplicationCondition": "Seçilen bulut uygulamaları geçersiz",
+ "invalidClientTypesCondition": "Seçilen istemci uygulamaları geçersiz",
+ "invalidConditions": "Atamalar seçilmedi",
+ "invalidControls": "Seçilen denetimler geçersiz",
+ "invalidDevicePlatformsCondition": "Seçilen cihaz platformları geçersiz",
+ "invalidDevicesCondition": "Cihaz yapılandırması geçersiz. \"{0}\" yapılandırması büyük olasılıkla geçersiz.",
+ "invalidGrantControlPolicy": "İzin verme denetimi geçersiz",
+ "invalidLocationsCondition": "Seçilen konumlar geçersiz",
+ "invalidPolicy": "Atamalar seçilmedi",
+ "invalidSessionControlPolicy": "Oturum denetimi geçersiz",
+ "invalidSignInRisksCondition": "Seçilen oturum açma riski geçersiz",
+ "invalidUserRisksCondition": "Seçilen kullanıcı riski geçersiz",
+ "invalidUsersCondition": "Seçilen kullanıcılar geçersiz",
+ "mamPolicyShouldOnlyTargetAndroidOrIosPlatforms": "MAM ilkesi, Android veya iOS istemci platformlarına uygulanabilir.",
+ "notSupportedCombination": "İlke yapılandırması desteklenmiyor. Desteklenen ilkeler hakkında daha fazla bilgi edinin.",
+ "pending": "İlke doğrulanıyor",
+ "requireComplianceEveryonePolicy": "İlke yapılandırması, tüm kullanıcılar için cihaz uyumluluğunu gerekli kılacak. Seçilen atamaları gözden geçirin.",
+ "success": "Geçerli ilke"
+ },
+ "VpnCert": {
+ "Grid": {
+ "aria": "VPN Sertifikalarının listesi"
+ }
+ },
+ "WarningsInfo": {
+ "Controls": {
+ "compliantDeviceEnabled": "Hesabınıza erişiminizi kaybetmeyin! Cihazınızın uyumlu olduğundan emin olun.",
+ "domainJoinedDeviceEnabled": "Hesabınıza erişiminizi kaybetmeyin! Cihazınızın Hibrit Azure AD ile katılan bir cihaz olduğundan emin olun.",
+ "exchangeDisabled": "Exchange ActiveSync yalnızca \"Uyumlu cihaz\" ve \"Onaylı istemci uygulaması\" denetimlerini destekler. Daha fazla bilgi edinmek için tıklayın.",
+ "exchangeDisabled2": "Exchange ActiveSync yalnızca \"Uyumlu cihaz\", \"Onaylı istemci uygulaması\" ve \"Uyumlu istemci uygulaması\" denetimlerini destekler. Daha fazla bilgi edinmek için tıklayın.",
+ "notAvailableForSP": "İlke atamasındaki '{0}' seçimi nedeniyle bazı denetimler kullanılamıyor",
+ "requireAuthOrMfa": "'{0}', '{1}' ile kullanılamaz",
+ "requireMfa": "Yeni \"{0}\" genel önizlemesini test etmeyi düşünün",
+ "requirePasswordChangeEnabled": "\"Parola değişikliği iste\" yalnızca ilke \"Tüm bulut uygulamaları\"na atandığında kullanılabilir"
+ },
+ "Policies": {
+ "Linux": {
+ "devicePlatformsReportOnlyPolicy": "Uyumlu cihazlar gerektiren Yalnızca rapor modundaki ilkeler, macOS, iOS, Android ve Linux kullanıcılarının bir cihaz sertifikası seçmesini isteyebilir.",
+ "excludeDevicePlatforms": "macOS, iOS, Android ve Linux cihaz platformlarını bu ilkenin dışında tutun.",
+ "proceedAnywayDevicePlatforms": "Seçili yapılandırma ile devam edin. macOS, iOS, Android ve Linux kullanıcıları, cihaz uyumluluk için denetlendiğinde komut istemleri alabilir."
+ },
+ "blockCurrentUserPolicy": "Hesabınıza erişiminizi kaybetmeyin! Bir ilkenin beklendiği şekilde çalıştığından emin olmak için öncelikle küçük bir kullanıcı grubuna uygulamanız önerilir. Ayrıca en az bir yöneticiyi bu ilkenin dışında tutmanız önerilir. Bu, bir değişiklik yapılması gerektiğinde hala erişim sağlanabilmesini ve ilkelerin güncelleştirilebilmesini sağlar. Lütfen etkilenen kullanıcıları ve uygulamaları gözden geçirin.",
+ "devicePlatformsReportOnlyPolicy": "Uyumlu cihazlar gerektiren Yalnızca rapor modundaki ilkeler, macOS, iOS ve Android kullanıcılarının bir cihaz sertifikası seçmesini isteyebilir.",
+ "excludeCurrentUserSelection": "Geçerli kullanıcıyı ({0}) bu ilkenin dışında tutun.",
+ "excludeDevicePlatforms": "Tüm macOS, iOS ve Android cihaz platformlarını bu ilkenin dışında tutun.",
+ "proceedAnywayDevicePlatforms": "Seçili yapılandırma ile devam edin. macOS, iOS ve Android kullanıcıları, cihaz uyumluluk için denetlendiğinde komut istemi alabilir.",
+ "proceedAnywaySelection": "Hesabımın bu ilkeden etkileneceğini anlıyorum. Yine de devam et."
+ },
+ "ServicePrincipals": {
+ "blockExchange": "Office 365 Exchange Online'ı seçmek OneDrive ve Teams gibi uygulamaları da etkileyecektir.",
+ "blockPortal": "Hesabınıza erişiminizi kaybetmeyin! Bu ilke Azure portalını etkiler. Devam etmeden önce sizin veya bir başkasının portala geri dönmesinin mümkün olduğundan emin olun.",
+ "blockPortalWithSession": "Kendinizi dışarıda bırakmayın! Bu ilke Azure portalını etkiler. Devam etmeden önce sizin veya bir başkasının portala dönebileceğinden emin olun.
Yalnızca \"Tüm bulut uygulamaları\" seçiliyken düzgün çalışan bir kalıcı tarayıcı oturumu ilkesi yapılandırıyorsanız bu uyarıyı dikkate almayın.",
+ "blockSharePoint": "SharePoint Online'ı seçmek Microsoft Teams, Planner, Delve, MyAnalytics ve Newsfeed gibi uygulamaları etkileyecektir.",
+ "blockSkype": "Skype Kurumsal Çevrimiçi Sürüm'ün seçilmesi Microsoft Teams'i de etkiler",
+ "includeOrExclude": "Uygulama Filtresini '{0}' veya '{1}' için yapılandırabilirsiniz ancak her ikisi için yapılandıramazsınız.",
+ "selectAppsNAForSP": "İlke atamasındaki '{0}' seçimi nedeniyle tek tek bulut uygulamaları seçilemiyor",
+ "teamsBlocked": "SharePoint Online ve Exchange Online gibi uygulamalar ilkeye dahil olduğunda Microsoft Teams de etkilenir."
+ },
+ "Users": {
+ "blockAllUsers": "Hesabınıza erişiminizi kaybetmeyin! Bu ilke tüm kullanıcılarınızı etkiler. İlkenin beklenen şekilde çalıştığını doğrulamak için önce ilkeyi küçük bir kullanıcı grubuna uygulamanızı öneririz."
+ }
+ },
+ "WhatIf": {
+ "Device": {
+ "AttributesGrid": {
+ "aria": "Cihazda oturum açma sırasında kullanıma alınan özniteliklerin listesi.",
+ "infoBalloon": "Cihazda oturum açma sırasında kullanıma alınan özniteliklerin listesi."
+ }
+ }
+ },
+ "advancedTabText": "Gelişmiş",
+ "allCloudAppsErrorBox": "\"Parola değişikliği iste\" izni seçildiğinde \"Tüm bulut uygulamaları\" seçilmelidir",
+ "allCloudAppsReauth": "\"Oturum açma sıklığı her seferinde\" oturum denetimi ve \"oturum açma riski\" koşulu seçildiğinde \"Tüm bulut uygulamaları\" seçilmelidir",
+ "allCloudOrSpecificApps": "\"Her seferinde oturum açma sıklığı\" oturum denetimi için \"tüm bulut uygulamaları\" veya özellikle desteklenen uygulamalar seçilmelidir",
+ "allDayCheckboxLabel": "Tüm gün",
+ "allDevicePlatforms": "Herhangi bir aygıt",
+ "allGuestUserInfoContent": "Azure AD B2B konuklarını içerir, SharePoint B2B konuklarını içermez",
+ "allGuestUserLabel": "Tüm konuk ve dış kullanıcılar",
+ "allRiskLevelsOption": "Tüm risk düzeyleri",
+ "allTrustedLocationLabel": "Tüm güvenilen konumlar",
+ "allUserGroupSetSelectorLabel": "Seçilen tüm kullanıcılar ve gruplar",
+ "allUsersReauth": "\"Her seferinde oturum açma sıklığı\" oturum denetimi için \"Tüm Kullanıcılar\" seçeneği belirlenmelidir",
+ "allUsersString": "Tüm kullanıcılar",
+ "and": "{0} VE {1} ",
+ "andWithGrouping": "({0}) VE {1} ",
+ "androidDisplayName": "Android",
+ "anyCloudAppSelection": "Herhangi bir bulut uygulaması",
+ "appContextOptionInfoContent": "İstenen kimlik doğrulaması etiketi",
+ "appContextOptionLabel": "İstenen kimlik doğrulama etiketi (Önizleme)",
+ "appContextUriPlaceholder": "Örnek: uri:contoso.com:level3",
+ "appEnforceInfoBubble": "Uygulama tarafından zorlanan kısıtlamalar, bulut uygulamaları içinde ek yönetim yapılandırmaları gerektirebilir. Kısıtlamalar yalnızca yeni oturumlar için geçerli olur.",
+ "appNotSetSeletorLabel": "0 bulut uygulaması seçili",
+ "applyConditionClientAppInfoBalloonContent": "Belirli istemci uygulamalarında ilkeyi uygulamak için istemci uygulamalarını yapılandırın",
+ "applyConditionDevicePlatformInfoBalloonContent": "Belirli platformlarda ilkeyi uygulamak için cihaz platformlarını yapılandırın",
+ "applyConditionDeviceStateInfoBalloonContent": "Belirli cihaz durumlarına ilkeyi uygulamak için cihaz durumlarını yapılandırın",
+ "applyConditionLocationInfoBalloonContent": "Güvenilen/güvenilmeyen konumlarda ilkeyi uygulamak için konumları yapılandırın",
+ "applyConditionSigninRiskInfoBalloonContent": "Seçili risk düzeylerinde ilkeyi uygulamak için, oturum açma riskini yapılandırın",
+ "applyConditionUserRiskInfoBalloonContent": "İlkeyi seçili risk düzeylerine uygulamak için kullanıcı riskini yapılandırın",
+ "applyConditonLabel": "Yapılandır",
+ "ariaLabelPolicyDisabled": "İlke devre dışı",
+ "ariaLabelPolicyEnabled": "İlke etkin",
+ "ariaLabelPolicyReportOnly": "İlke Yalnızca rapor modunda",
+ "blockAccess": "Erişimi engelle",
+ "builtInDirectoryRoleLabel": "Yerleşik dizin rolleri",
+ "casCustomControlInfo": "Özel ilkelerin Cloud App Security portalında yapılandırılması gerekir. Bu denetim öne çıkan uygulamalar için anında çalışır ve herhangi bir uygulama için kendi kendine eklenebilir. Her iki senaryo hakkında daha fazla bilgi edinmek için buraya tıklayın.",
+ "casInfoBubble": "Bu denetim çeşitli bulut uygulamaları için çalışır.",
+ "casPreconfiguredControlInfo": "Bu denetim öne çıkan uygulamalar için anında çalışır ve herhangi bir uygulama için kendi kendine eklenebilir. Her iki senaryo hakkında daha fazla bilgi edinmek için buraya tıklayın.",
+ "cert64DownloadCol": "Base64 sertifikasını indir",
+ "cert64Name": "VpnBase64Cert",
+ "certDownloadCol": "Sertifikayı indir",
+ "certDurationCol": "Süre Sonu",
+ "certDurationStartCol": "Şu tarihten itibaren geçerli",
+ "certName": "VpnCert",
+ "certainApps": "\"Çok faktörlü kimlik doğrulaması gerektir\" ve \"Parola değişikliği gerektir\" izinleri seçilmezse \"Her seferinde oturum açma sıklığı\" için yalnızca belirli uygulamalar desteklenir",
+ "chooseApplicationsBladeSubtitle": "",
+ "chooseApplicationsBladeTitle": "Uygulama Seçin",
+ "chooseApplicationsCartSubitle": "",
+ "chooseApplicationsCartTitle": "Seçilen Uygulamalar",
+ "chooseApplicationsEmpty": "Uygulama Yok",
+ "chooseApplicationsNone": "Yok",
+ "chooseApplicationsNoneFound": "\"{0}\" ifadesini bulamadık. Başka bir ad veya kimlik deneyin.",
+ "chooseApplicationsPlural": "{0} ve {1} uygulama daha",
+ "chooseApplicationsReAuthEverytimeInfo": "Uygulamanızı mı arıyorsunuz? Bazı uygulamalar “Yeniden kimlik doğrulaması gerektir - her seferinde” oturum denetimi ile kullanılamaz",
+ "chooseApplicationsRemove": "Kaldır",
+ "chooseApplicationsReturnedPlural": "{0} uygulama bulundu",
+ "chooseApplicationsReturnedSingular": "1 uygulama bulundu",
+ "chooseApplicationsSearchBalloon": "Adını veya kimliğini girerek bir Uygulama arayın.",
+ "chooseApplicationsSearchHint": "Uygulamalarda Ara...",
+ "chooseApplicationsSearchLabel": "Uygulamalar",
+ "chooseApplicationsSearching": "Aranıyor...",
+ "chooseApplicationsSelect": "Seç",
+ "chooseApplicationsSelected": "Seçili",
+ "chooseApplicationsSingular": "{0} ve 1 uygulama daha",
+ "chooseApplicationsTooMany": "Görüntülenen sonuçlardan daha fazlası bulundu. Lütfen arama kutusunu kullanarak filtreleyin.",
+ "chooseLocationCorpnetItem": "Şirket ağı",
+ "chooseLocationSelectedLocationsLabel": "Seçili konumlar",
+ "chooseLocationTrustedIpsItem": "MFA Güvenilen IP'ler",
+ "chooseLocationsBladeSubtitle": "",
+ "chooseLocationsBladeTitle": "Konum Seçin",
+ "chooseLocationsCartSubitle": "",
+ "chooseLocationsCartTitle": "Seçili Konumlar",
+ "chooseLocationsEmpty": "Konum Yok",
+ "chooseLocationsExcludedSelectorTitle": "Seçin",
+ "chooseLocationsIncludedSelectorTitle": "Seçin",
+ "chooseLocationsNone": "Yok",
+ "chooseLocationsNoneFound": "\"{0}\" ifadesini bulamadık. Başka bir ad veya kimlik deneyin.",
+ "chooseLocationsPlural": "{0} ve {1} uygulama daha",
+ "chooseLocationsRemove": "Kaldır",
+ "chooseLocationsReturnedPlural": "{0} konum bulundu",
+ "chooseLocationsReturnedSingular": "1 konum bulundu",
+ "chooseLocationsSearchBalloon": "Adını girerek bir Konum arayın.",
+ "chooseLocationsSearchHint": "Konum Arayın...",
+ "chooseLocationsSearchLabel": "Konumlar",
+ "chooseLocationsSearching": "Aranıyor...",
+ "chooseLocationsSelect": "Seçin",
+ "chooseLocationsSelected": "seçili",
+ "chooseLocationsSelectionBladeExcludedSelectorTitle": "Seçin",
+ "chooseLocationsSelectionBladeIncludedSelectorTitle": "Seçin",
+ "chooseLocationsSingular": "{0} ve 1 uygulama daha",
+ "chooseLocationsTooMany": "Görüntülenen sonuçlardan daha fazlası bulundu. Lütfen arama kutusunu kullanarak filtreleyin.",
+ "claimProviderAddCommandText": "Yeni özel denetim",
+ "claimProviderAddNewBladeTitle": "Yeni özel denetim",
+ "claimProviderDeleteCommand": "Sil",
+ "claimProviderDeleteDescription": "'{0}' adlı ağı silmek istediğinizden emin misiniz? Bu eylem geri alınamaz.",
+ "claimProviderDeleteTitle": "Emin misiniz?",
+ "claimProviderEditInfoText": "Talep sağlayıcılarınız tarafından verilen özelleştirilmiş denetimler için JSON girin.",
+ "claimProviderNotificationCreateDescription": "'{0}' adlı özel denetim oluşturuluyor",
+ "claimProviderNotificationCreateFailedDescription": "'{0}' özel denetimi oluşturulamadı. Lütfen daha sonra yeniden deneyin.",
+ "claimProviderNotificationCreateFailedTitle": "Özel denetim oluşturulamadı",
+ "claimProviderNotificationCreateSuccessDescription": "'{0}' adlı özel denetim oluşturuldu",
+ "claimProviderNotificationCreateSuccessTitle": "'{0}' oluşturuldu",
+ "claimProviderNotificationCreateTitle": "'{0}' oluşturuluyor",
+ "claimProviderNotificationDeleteDescription": "'{0}' adlı özel denetim siliniyor",
+ "claimProviderNotificationDeleteFailedDescription": "'{0}' özel denetimi silinemedi. Lütfen daha sonra yeniden deneyin.",
+ "claimProviderNotificationDeleteFailedTitle": "Özel denetim silinemedi",
+ "claimProviderNotificationDeleteSuccessDescription": "'{0}' adlı özel denetim silindi",
+ "claimProviderNotificationDeleteSuccessTitle": "'{0}' silindi",
+ "claimProviderNotificationDeleteTitle": "{0} siliniyor",
+ "claimProviderNotificationUpdateDescription": "'{0}' adlı özel denetim güncelleştiriliyor",
+ "claimProviderNotificationUpdateFailedDescription": "'{0}' özel denetimi güncelleştirilemedi. Lütfen daha sonra yeniden deneyin.",
+ "claimProviderNotificationUpdateFailedTitle": "Özel denetim güncelleştirilemedi",
+ "claimProviderNotificationUpdateSuccessDescription": "'{0}' adlı özel denetim güncelleştirildi",
+ "claimProviderNotificationUpdateSuccessTitle": "'{0}' güncelleştirildi",
+ "claimProviderNotificationUpdateTitle": "'{0}' güncelleştiriliyor",
+ "claimProviderValidationAppIdInvalid": "\"AppId\" değeri geçerli değil. Lütfen gözden geçirip yeniden deneyin.",
+ "claimProviderValidationClientIdMissing": "Veriler \"ClientId\" değerini içermiyor. Lütfen gözden geçirip yeniden deneyin.",
+ "claimProviderValidationControlClaimsRequestedMissing": "\"Control\" bir \"ClaimsRequested\" değerini içermiyor. Lütfen gözden geçirip yeniden deneyin.",
+ "claimProviderValidationControlClaimsRequestedTypeMissing": "\"ClaimsRequested\" öğesi bir \"Type\" değerini içermiyor. Lütfen gözden geçirip yeniden deneyin.",
+ "claimProviderValidationControlIdAlreadyExists": "\"Control\" \"Id\" değeri zaten var. Lütfen gözden geçirip yeniden deneyin.",
+ "claimProviderValidationControlIdMissing": "\"Control\" bir \"Id\" değerini içermiyor. Lütfen gözden geçirip yeniden deneyin.",
+ "claimProviderValidationControlIdReferencedInExistingPolicy": "\"Control\" \"Id\" değerine mevcut ilkede başvurulduğundan bu değer kaldırılamıyor. Lütfen öncelikle bu değeri ilkeden kaldırın.",
+ "claimProviderValidationControlIdTooManyControls": "\"Control\" özelliği çok fazla denetim içeriyor. Lütfen gözden geçirip tekrar deneyin.",
+ "claimProviderValidationControlIdValueReserved": "\"Control\" \"Id\" değeri, ayrılmış bir anahtar sözcük. Lütfen farklı bir kimlik kullanın.",
+ "claimProviderValidationControlNameAlreadyExists": "\"Control\" \"Name\" değeri zaten var. Lütfen gözden geçirip yeniden deneyin.",
+ "claimProviderValidationControlNameMissing": "\"Control\" bir \"Name\" değerini içermiyor. Lütfen gözden geçirip yeniden deneyin.",
+ "claimProviderValidationControlsMissing": "Veriler \"Controls\" değerini içermiyor. Lütfen gözden geçirip yeniden deneyin.",
+ "claimProviderValidationDiscoveryUrlMissing": "Veriler \"DiscoveryUrl\" değerini içermiyor. Lütfen gözden geçirip yeniden deneyin.",
+ "claimProviderValidationInvalid": "Sağlanan veriler geçerli değil. Lütfen gözden geçirip yeniden deneyin.",
+ "claimProviderValidationInvalidJsonDefinition": "Özel denetim kaydedilemiyor. JSON metnini gözden geçirip yeniden deneyin.",
+ "claimProviderValidationNameAlreadyExists": "\"Name\" değeri zaten var. Lütfen gözden geçirip yeniden deneyin.",
+ "claimProviderValidationNameMissing": "Veriler \"Name\" değerini içermiyor. Lütfen gözden geçirip yeniden deneyin.",
+ "claimProviderValidationUnknown": "Sağlanan veriler doğrulanırken bilinmeyen bir hata oluştu. Lütfen gözden geçirip yeniden deneyin.",
+ "claimProvidersNone": "Özel denetim yok",
+ "claimProvidersSearchPlaceholder": "Arama denetimleri.",
+ "classicPoilcyFilterTitle": "Göster",
+ "classicPolicyAllPlatforms": "Tüm Platformlar",
+ "classicPolicyClientAppBrowserAndNative": "Tarayıcı, mobil uygulamalar ve masaüstü istemcileri",
+ "classicPolicyCloudAppTitle": "Bulut uygulaması",
+ "classicPolicyControlAllow": "İzin Ver",
+ "classicPolicyControlBlock": "Engelle",
+ "classicPolicyControlBlockWhenNotAtWork": "Çalışmıyorken erişimi engelle",
+ "classicPolicyControlRequireCompliantDevice": "Uyumlu cihaz gerektir",
+ "classicPolicyControlRequireDomainJoinedDevice": "Etki alanına katılmış cihaz gerektir",
+ "classicPolicyControlRequireMfa": "Çok faktörlü kimlik doğrulaması gerektir",
+ "classicPolicyControlRequireMfaWhenNotAtWork": "Çalışmıyorken çok faktörlü kimlik doğrulaması gerektir",
+ "classicPolicyDeleteCommand": "Sil",
+ "classicPolicyDeleteFailTitle": "Klasik ilke silinemedi",
+ "classicPolicyDeleteInProgressTitle": "Klasik ilke siliniyor",
+ "classicPolicyDeleteSuccessTitle": "Klasik ilke silindi",
+ "classicPolicyDetailBladeTitle": "Ayrıntılar",
+ "classicPolicyDisableCommand": "Devre dışı bırak",
+ "classicPolicyDisableConfirmation": "'{0}' adlı ilkeyi devre dışı bırakmak istediğinizden emin misiniz? Bu eylem geri alınamaz.",
+ "classicPolicyDisableFailDescription": "'{0}' devre dışı bırakılamadı",
+ "classicPolicyDisableFailTitle": "Klasik ilke devre dışı bırakılamadı",
+ "classicPolicyDisableInProgressDescription": "'{0}' devre dışı bırakılıyor",
+ "classicPolicyDisableInProgressTitle": "Klasik ilke devre dışı bırakılıyor",
+ "classicPolicyDisableSuccessDescription": "'{0}' başarıyla devre dışı bırakıldı",
+ "classicPolicyDisableSuccessTitle": "Klasik ilke devre dışı bırakıldı",
+ "classicPolicyEasSupportedPlatforms": "Exchange ActiveSync tarafından desteklenen platformlar",
+ "classicPolicyEasUnsupportedPlatforms": "Exchange ActiveSync tarafından desteklenmeyen platformlar",
+ "classicPolicyExcludedPlatformsTitle": "Dışlanan cihaz platformları",
+ "classicPolicyFilterAll": "Tüm ilkeler",
+ "classicPolicyFilterDisabled": "Devre dışı ilkeler",
+ "classicPolicyFilterEnabled": "Etkin ilkeler",
+ "classicPolicyIncludeExcludeMembersDescription": "Grupları dışlayarak aşamalı ilke geçişi gerçekleştirebilirsiniz.",
+ "classicPolicyIncludeExcludeMembersTitle": "Grupları içerme/dışlama",
+ "classicPolicyIncludedPlatformsTitle": "Dahil edilen cihaz platformları",
+ "classicPolicyManualMigrationMessage": "Bu ilkenin el ile geçirilmesi gerekiyor.",
+ "classicPolicyMigrateCommand": "Geçir",
+ "classicPolicyMigrateConfirmation": "'{0}' adlı ilkeyi geçirmek istediğinizden emin misiniz? Bu ilke yalnızca bir kez geçirilebilir.",
+ "classicPolicyMigrateFailDescription": "'{0}' geçirilemedi",
+ "classicPolicyMigrateFailTitle": "Klasik ilke geçirilemedi",
+ "classicPolicyMigrateInProgressDescription": "'{0}' geçiriliyor",
+ "classicPolicyMigrateInProgressTitle": "Klasik ilke geçiriliyor",
+ "classicPolicyMigrateRecommendText": "Öneri: Yeni Azure portalı ilkelerine geçin.",
+ "classicPolicyMigrateSuccessTitle": "Klasik ilke başarıyla geçirildi",
+ "classicPolicyMigratedSuccessDescription": "Bu klasik ilke artık İlkeler bölümünden yönetilebilir.",
+ "classicPolicyMigratedSuccessDescriptionMultiple": "Bu klasik ilke, {0} yeni ilke olarak geçirildi. Yeni ilkeleri yönetmek için İlkeler bölümünü kullanabilirsiniz.",
+ "classicPolicyNoEditPermissionMsg": "Bu ilkeyi düzenleme izniniz yok. İlkeyi yalnızca genel yöneticiler ve güvenlik yöneticileri düzenleyebilir. Daha fazla bilgi edinmek için buraya tıklayın.",
+ "classicPolicySaveFailDescription": "'{0}' kaydedilemedi",
+ "classicPolicySaveFailTitle": "Klasik ilke kaydedilemedi",
+ "classicPolicySaveInProgressDescription": "'{0}' kaydediliyor",
+ "classicPolicySaveInProgressTitle": "Klasik ilke kaydediliyor",
+ "classicPolicySaveSuccessDescription": "'{0}' başarıyla kaydedildi",
+ "classicPolicySaveSuccessTitle": "Klasik ilke kaydedildi",
+ "clientAppBladeLegacyInfoBanner": "Eski kimlik doğrulaması şu anda desteklenmiyor",
+ "clientAppBladeLegacyUpsellBanner": "Desteklenmeyen istemci uygulamalarını engelle (Önizleme)",
+ "clientAppBladeTitle": "İstemci uygulamaları",
+ "clientAppDescription": "Bu ilkenin uygulanacağı istemci uygulamalarını seçin",
+ "clientAppExchangeActiveSync": "Exchange ActiveSync",
+ "clientAppExchangeDisabledInfo": "Exchange ActiveSync, seçili tek bulut uygulaması Exchange Online olduğunda kullanılabilir. Daha fazla bilgi edinmek için tıklayın",
+ "clientAppExchangeWarning": "Exchange ActiveSync, şu anda diğer koşulların hiçbirini desteklemiyor",
+ "clientAppLearnMore": "Kullanıcı erişimini, modern kimlik doğrulaması kullanmayan belirli istemci uygulamalarını hedeflemek için denetleyin.",
+ "clientAppLegacyHeader": "Eski kimlik doğrulama istemcileri",
+ "clientAppMobileDesktop": "Mobil uygulamalar ve masaüstü istemcileri",
+ "clientAppModernHeader": "Modern kimlik doğrulama istemcileri",
+ "clientAppOnlySupportedPlatforms": "İlkeyi yalnızca desteklenen platformlara uygula",
+ "clientAppSelectSpecificClientApps": "İstemci uygulamalarını seçin",
+ "clientAppV2BladeTitle": "İstemci uygulamaları (Önizleme)",
+ "clientAppWebBrowser": "Tarayıcı",
+ "clientAppsSelectedLabel": "{0} eklendi",
+ "clientTypeBrowser": "Tarayıcı",
+ "clientTypeEas": "Exchange ActiveSync istemcileri",
+ "clientTypeEasInfo": "Yalnızca eski kimlik doğrulaması kullanan Exchange ActiveSync istemcileri.",
+ "clientTypeModernAuth": "Modern kimlik doğrulama istemcileri",
+ "clientTypeOtherClients": "Diğer istemciler",
+ "clientTypeOtherClientsInfo": "Bu, eski Office istemcilerini ve diğer posta protokollerini (POP, IMAP, SMTP vb.) içerir. [Daha fazla bilgi][1]\n[1]: https://aka.ms/caclientapps\n",
+ "cloudAppCountDiffBannerText": "Bu ilkede yapılandırılan {0} bulut uygulaması dizinden silinmiş, ancak bu durum ilkedeki diğer uygulamaları etkilemiyor. İlkenin uygulama bölümünü sonraki ilk güncelleştirmenizde, silinen uygulamalar ilkeden otomatik olarak kaldırılır.",
+ "cloudAppsSelectionBladeAllMicrosoftApps": "Tüm Microsoft uygulamaları",
+ "cloudAppsSelectionExcludeAllMicrosoftClients": "Microsoft bulut, mobil ve masaüstü uygulamalarına izin ver (Önizleme)",
+ "cloudappsSelectionBladeAllCloudapps": "Tüm bulut uygulamaları",
+ "cloudappsSelectionBladeExcludeDescription": "İlkenin dışında tutulacak bulut uygulamalarını seçin",
+ "cloudappsSelectionBladeExcludedSelectorTitle": "Dışlanan bulut uygulamalarını seçin",
+ "cloudappsSelectionBladeIncludeDescription": "Bu ilkenin uygulanacağı bulut uygulamalarını seçin",
+ "cloudappsSelectionBladeIncludedSelectorTitle": "Seç",
+ "cloudappsSelectionBladeSelectedCloudapps": "Uygulama seç",
+ "cloudappsSelectorInfoBallonText": "Kullanıcının, işlerini yapmak için eriştiği hizmetler. Örneğin, 'Salesforce'",
+ "cloudappsSelectorPluralExcluded": "{0} uygulama dışlandı",
+ "cloudappsSelectorPluralIncluded": "{0} uygulama eklendi",
+ "cloudappsSelectorSingularExcluded": "1 uygulama dışlandı",
+ "cloudappsSelectorSingularIncluded": "1 uygulama eklendi",
+ "cloudappsSelectorUserPlural": "{0} uygulama",
+ "cloudappsSelectorUserSingular": "1 uygulama",
+ "conditionLabelMulti": "{0} koşul seçildi",
+ "conditionLabelOne": "1 koşul seçildi",
+ "conditionalAccessBladeTitle": "Koşullu Erişim",
+ "conditionsNotSelectedLabel": "Yapılandırılmadı",
+ "conditionsReqMfaReauthSet": "\"Çok faktörlü kimlik doğrulaması gerektir\" izni ve \"her seferinde oturum açma sıklığı\" oturum denetimi seçili olduğu için bazı seçenekler kullanılamıyor",
+ "conditionsReqPwSet": "Şu anda seçilmekte olan \"Parola değişikliği iste\" izni nedeniyle bazı seçenekler kullanılamıyor",
+ "configureCasText": "Cloud App Security'yi Yapılandırın",
+ "configureCustomControlsText": "Özel ilke yapılandır",
+ "controlLabelMulti": "{0} denetim seçildi",
+ "controlLabelOne": "1 denetim seçildi",
+ "controlValidatorText": "Lütfen en az bir denetim seçin",
+ "controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
+ "controlsDeviceComplianceAriaLabel": "Learn more about requiring compliant devices.",
+ "controlsDeviceComplianceInfoBubble": "Device must be Intune compliant. If the device is non-compliant, the user will be prompted to bring the device under compliance.",
+ "controlsDomainJoinedAriaLabel": "Learn more about requiring hybrid Azure AD joined devices.",
+ "controlsDomainJoinedInfoBubble": "Cihazlar Hibrit Azure AD ile katılan cihazlar olmalıdır.",
+ "controlsMamAriaLabel": "Learn more about requiring approved client applications.",
+ "controlsMamInfoBubble": "Cihaz bu onaylı istemci uygulamalarını kullanmalıdır.",
+ "controlsMfaInfoBubble": "Kullanıcının, telefon görüşmeleri ve kısa mesaj gibi ek güvenlik gereksinimleri tamamlaması gerekir",
+ "controlsOrAndInfoBubble": "ControlsOrAndInfoBubble",
+ "controlsRequireCompliantAppAriaLabel": "Learn more about requiring policy protected apps.",
+ "controlsRequireCompliantAppInfoBubble": "Cihazın ilke korumalı uygulamaları kullanması gerekir.",
+ "controlsRequirePasswordResetAriaLabel": "Learn more about requiring a password change.",
+ "controlsRequirePasswordResetInfoBubble": "Kullanıcı kaynaklı riski azaltmak için parola değişikliği isteyin. Bu seçenek ayrıca çok faktörlü kimlik doğrulaması da gerektirir. Diğer denetimler kullanılamaz.",
+ "countriesRadiobuttonInfoBalloonContent": "Oturum açma işleminin yapıldığı ülke/bölge, kullanıcının IP adresine göre belirlenir.",
+ "createNewVpnCert": "Yeni sertifika",
+ "createdTimeLabel": "Oluşturma zamanı",
+ "customRoleLabel": "Özel roller (desteklenmiyor)",
+ "dateRangeTypeLabel": "Tarih aralığı",
+ "daysOfWeekPlaceholderText": "Haftanın günlerini filtreleyin",
+ "daysOfWeekTypeLabel": "Haftanın günleri",
+ "deletePolicyNoLicenseText": "Bu ilkeyi artık silebilirsiniz. İlke silindikten sonra, gerekli lisanslara sahip olmadığınız sürece ilkeyi yeniden oluşturamazsınız.",
+ "descriptionContentForControlsAndOr": "Birden fazla denetim için",
+ "devicePlatform": "Cihaz platformu",
+ "devicePlatformConditionHelpDescription": "İlkeyi seçili cihaz platformlarına uygulayın.\n[Daha fazla bilgi][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2044750",
+ "devicePlatformInclude": "{0} eklendi",
+ "devicePlatformIncludeExclude": "{0} ve {1} dışlandı",
+ "devicePlatformNoSelectionError": "Cihaz platformlarını seçmek için bir alt öğenin seçilmesi gerekir.",
+ "devicePlatformsNone": "Yok",
+ "deviceSelectionBladeExcludeDescription": "İlkenin dışında tutulacak platformları seçin",
+ "deviceSelectionBladeIncludeDescription": "Bu ilkeye dahil edilecek cihaz platformlarını seçin",
+ "deviceStateAll": "Tüm cihaz durumları",
+ "deviceStateCompliant": "Cihaz uyumlu olarak işaretli",
+ "deviceStateCompliantInfoContent": "Intune ile uyumlu cihazlar bu ilkenin değerlendirilmesinden dışlanır; örneğin ilke erişimi engellerse, Intune ile uyumlu cihazlar dışındaki tüm cihazları engeller.",
+ "deviceStateConditionConfigureInfoContent": "Cihaz durumuna göre ilkeyi yapılandırma",
+ "deviceStateConditionSelectorInfoContent": "Kullanıcının oturum açmak için kullandığı cihazın 'Hibrit Azure AD ile katılan' veya 'uyumlu olarak işaretli' olup olmadığını belirtir.\n Bu kullanımdan kaldırıldı. Bunun yerine '{1}' kullanın.",
+ "deviceStateConditionSelectorLabel": "Cihaz durumu (kullanım dışı)",
+ "deviceStateDomainJoined": "Cihaz Hibrit Azure AD ile katıldı",
+ "deviceStateDomainJoinedInfoContent": "Hibrit Azure AD ile katılan cihazlar bu ilkenin değerlendirilmesinden dışlanır; örneğin ilke erişimi engellerse, Hibrit Azure AD'ye katılmış cihazlar dışındaki tüm cihazları engeller.",
+ "deviceStateDomainJoinedInfoLinkText": "Daha fazla bilgi edinin.",
+ "deviceStateExcludeDescription": "Cihazları ilkeden dışlamak için kullanılan cihaz durumu koşulunu seçin.",
+ "deviceStateIncludeAndExcludeOneLabel": "{0} ve şunu dışla: {1}",
+ "deviceStateIncludeAndExcludeTwoLabel": "{0} ve şunları dışla: {1} ve {2}",
+ "directoryRoleInfoContent": "Yerleşik dizin rollerine ilke atayın.",
+ "directoryRolesLabel": "Dizin rolleri",
+ "discardbutton": "At",
+ "downloadDefaultFileName": "IP Aralıkları",
+ "downloadExampleFileName": "Örnek",
+ "downloadExampleHeader": "Bu örnek dosyasında, kabul edilebilir veri türleri gösterilmektedir. # ile başlayan satırlar yoksayılır.",
+ "endDatePickerLabel": "Uçlar",
+ "endTimePickerLabel": "Bitiş saati",
+ "enterCountryText": "IP adresi ve Ülke bir çift olarak değerlendirilir. Ülke seçin.",
+ "enterIpText": "IP adresi ve Ülke bir çift olarak değerlendirilir. IP adresi girin.",
+ "enterUserText": "Hiçbir kullanıcı seçilmedi. Bir kullanıcı seçin.",
+ "evaluationResult": "Değerlendirme sonucu",
+ "exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
+ "exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Yalnızca desteklenen platformlarla Exchange ActiveSync",
+ "excludeAllTrustedLocationSelectorText": "tüm güvenilen konumları hariç tut",
+ "featureRequiresP2": "Bu özellik Azure AD Premium 2 lisansı gerektirir.",
+ "friday": "Cuma",
+ "grantControls": "İzin verme denetimleri",
+ "gridNetworkTrusted": "Güvenilir",
+ "gridPolicyCreatedDateTime": "Oluşturulma Tarihi",
+ "gridPolicyEnabled": "Etkin",
+ "gridPolicyModifiedDateTime": "Değişiklik Tarihi",
+ "gridPolicyName": "İlke Adı",
+ "gridPolicyState": "Durum",
+ "groupSelectionBladeExcludeDescription": "İlkenin dışında tutulacak grupları seçin",
+ "groupSelectionBladeExcludedSelectorTitle": "Dışlanan grupları seçin",
+ "groupSelectionBladeSelect": "Grupları seçin",
+ "groupSelectorInfoBallonText": "Dizinde ilkenin uygulandığı gruplar. Örneğin, 'Pilot grup'",
+ "groupsSelectionBladeTitle": "Gruplar",
+ "helpCommonScenariosText": "Sık karşılaşılan senaryolar ilginizi çekiyor mu?",
+ "helpCondition1": "Herhangi bir kullanıcı şirket ağının dışında olduğunda",
+ "helpCondition2": "‘Yöneticiler’ grubundaki kullanıcılar oturum açtığında",
+ "helpConditionsTitle": "Koşullar",
+ "helpControl1": "Çok faktörlü kimlik doğrulaması ile oturum açmaları gerekir",
+ "helpControl2": "Intune ile uyumlu veya etki alanına katılmış bir cihaz kullanıyor olmaları gerekir",
+ "helpControlsTitle": "Denetimler",
+ "helpIntroText": "Koşullu Erişim size belirli koşullar oluştuğunda erişim gereksinimleri uygulamaya koyma olanağı sunar. Birkaç örneğe bakalım",
+ "helpIntroTitle": "Koşullu Erişim nedir?",
+ "helpLearnMoreText": "Koşullu Erişim hakkında daha fazla bilgi edinmek ister misiniz?",
+ "helpStartStep1": "\"+ Yeni ilke\" seçeneğine tıklayarak ilk ilkenizi oluşturun",
+ "helpStartStep2": "İlke Koşullarını ve Denetimlerini belirtin",
+ "helpStartStep3": "İşiniz bittiğinde ilkeyi Etkinleştirmeyi ve Oluşturmayı unutmayın",
+ "helpStartTitle": "Kullanmaya başlayın",
+ "highRisk": "Yüksek",
+ "includeAndExcludeAppsTextFormat": "Dahil et: {0}. Hariç tut: {1}.",
+ "includeAppsTextFormat": "Dahil et: {0}.",
+ "includeUnknownAreasCheckboxInfoBalloonContent": "Bilinmeyen alanlar, bir ülke/bölge ile eşleştirilemeyen IP adresleridir.",
+ "includeUnknownAreasCheckboxLabel": "Bilinmeyen alanları dahil et",
+ "infoCommandLabel": "Bilgi",
+ "invalidCertDuration": "Sertifika süresi geçersiz",
+ "invalidIpAddress": "Değer, geçerli bir IP adresi olmalıdır",
+ "invalidUriErrorMsg": "Lütfen geçerli bir URI girin. Örneğin, 'uri:contoso.com:acr' ",
+ "iosDisplayName": "iOS",
+ "linuxDisplayName": "Linux",
+ "loadAll": "Tümünü yükle",
+ "loading": "Yükleniyor...",
+ "locationConfigureNamedLocationsText": "Güvenilen tüm konumları yapılandır",
+ "locationConfigureNamedLocationsUri": "{0}/usermanagement/mfasettings.aspx?tenantid={1}&culture={2}",
+ "locationNameTooLongError": "Konum adı çok uzun. En fazla 256 karakter uzunluğunda olabilir",
+ "locationSelectionBladeExcludeDescription": "İlkenin dışında tutulacak konumları seçin",
+ "locationSelectionBladeIncludeDescription": "Bu ilkeye dahil edilecek konumları seçin",
+ "locationsAllLocationsLabel": "Herhangi bir konum",
+ "locationsAllNamedLocationsLabel": "Güvenilen tüm IP'ler",
+ "locationsAllPrivateLinksLabel": "Kiracımdaki Tüm Özel Bağlantılar",
+ "locationsIncludeExcludeLabel": "{0} ve tüm güvenilen IP'leri dışla",
+ "locationsSelectedPrivateLinksLabel": "Seçili Özel Bağlantılar",
+ "lowRisk": "Düşük",
+ "macOsDisplayName": "macOS",
+ "managePoliciesLicenseText": "Kuruluşunuzun Koşullu Erişim ilkelerini yönetebilmesi için Azure AD Premium P1 veya P2 gerekiyor.",
+ "markAsTrustedCheckboxInfoBalloonContent": "Güvenilen bir konumdan oturum açmak, kullanıcının oturum açma riskini azaltır. Bu konumu yalnızca, girilen IP aralıkları şirketiniz tarafından tanınıyor ve bu IP aralıklarına güveniliyorsa güvenilen olarak işaretleyin.",
+ "markAsTrustedCheckboxLabel": "Güvenilen konum olarak işaretle",
+ "mediumRisk": "Orta",
+ "memberSelectionCommandRemove": "Kaldır",
+ "menuItemClaimProviderControls": "Özel denetimler (Önizleme)",
+ "menuItemClassicPolicies": "Klasik ilkeler",
+ "menuItemInsightsAndReporting": "İçgörüler ve raporlama",
+ "menuItemManage": "Yönet",
+ "menuItemNamedLocationsPreview": "Adlandırılmış konumlar (Önizleme)",
+ "menuItemNamedNetworks": "Adlandırılmış konumlar",
+ "menuItemPolicies": "İlkeler",
+ "menuItemTermsOfUse": "Kullanım koşulları",
+ "modifiedTimeLabel": "Değiştirme saati",
+ "monday": "Pazartesi",
+ "nameLabel": "Ad",
+ "namedLocationCountryInfoBanner": "Ülkelere/bölgelere yalnızca IPv4 adresleri eşlenir. IPv6 adresleri bilinmeyen ülkelerde/bölgelerde yer alır.",
+ "namedLocationTypeCountry": "Ülkeler/Bölgeler",
+ "namedLocationTypeLabel": "Konumu şunu kullanarak tanımla:",
+ "namedLocationUpsellBanner": "Bu görünüm kullanımdan kaldırıldı. Yeni ve iyileştirilmiş ‘Adlandırılmış konumlar’ görünümüne gidin.",
+ "namedLocationsHelpDescription": "Adlandırılmış konumlar, Azure AD güvenlik raporları tarafından hatalı pozitif sonuçları ve Azure AD Koşullu Erişim ilkelerini azaltmak için kullanılır.\n[Daha fazla bilgi][1]\n[1]: https://aka.ms/namedlocationupdate",
+ "namedNetworkAddIpRanges": "Yeni bir IP aralığı ekleyin (ör: 40.77.182.32/27)",
+ "namedNetworkCountryNeeded": "En az bir ülke seçmeniz gerekiyor",
+ "namedNetworkDeleteCommand": "Sil",
+ "namedNetworkDeleteDescription": "'{0}' adlı ağı silmek istediğinizden emin misiniz? Bu eylem geri alınamaz.",
+ "namedNetworkDeleteTitle": "Emin misiniz?",
+ "namedNetworkDownloadIpRange": "İndir",
+ "namedNetworkInvalidRange": "Değer, geçerli bir IP aralığı olmalıdır.",
+ "namedNetworkIpRangeNeeded": "En az bir geçerli IP aralığı gereklidir",
+ "namedNetworkIpRangesDescriptionContent": "Kuruluşunuzun IP aralıklarını yapılandırın",
+ "namedNetworkIpRangesTab": "IP aralıkları",
+ "namedNetworkListAdd": "Yeni konum",
+ "namedNetworkListConfigureTrustedIps": "MFA güvenilen IP'lerini yapılandır",
+ "namedNetworkNameDescription": "Örnek: 'Redmond ofisi'",
+ "namedNetworkNameInvalid": "Belirtilen ad geçersiz.",
+ "namedNetworkNameRequired": "Bu konum için bir ad belirtmelisiniz.",
+ "namedNetworkNoIpRanges": "IP aralığı yok",
+ "namedNetworkNotificationCreateDescription": "'{0}' adlı konum oluşturuluyor",
+ "namedNetworkNotificationCreateFailedDescription": "'{0}' adlı konum oluşturulamadı. Lütfen daha sonra yeniden deneyin.",
+ "namedNetworkNotificationCreateFailedTitle": "Konum oluşturulamadı",
+ "namedNetworkNotificationCreateSuccessDescription": "'{0}' adlı konum oluşturuldu",
+ "namedNetworkNotificationCreateSuccessTitle": "'{0}' oluşturuldu",
+ "namedNetworkNotificationCreateTitle": "'{0}' oluşturuluyor",
+ "namedNetworkNotificationDeleteDescription": "'{0}' adlı konum siliniyor",
+ "namedNetworkNotificationDeleteFailedDescription": "'{0}' adlı konum silinemedi. Lütfen daha sonra yeniden deneyin.",
+ "namedNetworkNotificationDeleteFailedTitle": "Konum Silinemedi",
+ "namedNetworkNotificationDeleteSuccessDescription": "'{0}' adlı konum silindi",
+ "namedNetworkNotificationDeleteSuccessTitle": "'{0}' silindi",
+ "namedNetworkNotificationDeleteTitle": "{0} siliniyor",
+ "namedNetworkNotificationUpdateDescription": "'{0}' adlı konum güncelleştiriliyor",
+ "namedNetworkNotificationUpdateFailedDescription": "'{0}' adlı konum güncelleştirilemedi. Lütfen daha sonra yeniden deneyin.",
+ "namedNetworkNotificationUpdateFailedTitle": "Konum Güncelleştirilemedi",
+ "namedNetworkNotificationUpdateSuccessDescription": "'{0}' adlı konum güncelleştirildi",
+ "namedNetworkNotificationUpdateSuccessTitle": "'{0}' güncelleştirildi",
+ "namedNetworkNotificationUpdateTitle": "'{0}' güncelleştiriliyor",
+ "namedNetworkSearchPlaceholder": "Konumlarda arama yapın.",
+ "namedNetworkUploadFailedDescription": "Sağlanan dosya ayrıştırılırken hata oluştu. Karşıya yüklediğiniz dosyanın, her satırı CIDR biçiminde olan bir düz metin dosyası olduğundan emin olun.",
+ "namedNetworkUploadFailedTitle": "'{0}' ayrıştırılamadı",
+ "namedNetworkUploadInProgressDescription": "'{0}' dosyasından geçerli CIDR değerleri ayrıştırılmaya çalışılıyor.",
+ "namedNetworkUploadInProgressTitle": "'{0}' ayrıştırılıyor",
+ "namedNetworkUploadInvalidDescription": "'{0}' dosyası çok büyük ya da biçimi geçersiz.",
+ "namedNetworkUploadInvalidTitle": "'{0}' Geçersiz",
+ "namedNetworkUploadIpRange": "Karşıya yükle",
+ "namedNetworkUploadSuccessDescription": "{0} satır analiz edildi. {1} tanesinin biçimi hatalı. {2} tanesi atlandı.",
+ "namedNetworkUploadSuccessTitle": "'{0}' dosyasını ayrıştırma işlemi tamamlandı",
+ "namedNetworksAdd": "Adlandırılmış yeni konum",
+ "namedNetworksConditionHelpDescription": "Kullanıcı erişimini kullanıcıların fiziksel konumlarına göre denetleyin.\n[Daha fazla bilgi][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
+ "namedNetworksExcludeLabel": "{0} ve {1} dışlandı",
+ "namedNetworksHelpDescription": "Adlandırılmış konumlar, Azure AD güvenlik raporları tarafından, hatalı pozitif sonuçları ve Azure AD Koşullu Erişim ilkelerini azaltmak için kullanılır.\n[Daha fazla bilgi][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
+ "namedNetworksIncludeLabel": "{0} eklendi",
+ "namedNetworksNone": "Adlandırılmış konum bulunamadı.",
+ "namedNetworksTitle": "Konumları yapılandırın",
+ "namednetworkExceedingSizeErrorBladeTitle": "Hata ayrıntıları",
+ "namednetworkExceedingSizeErrorDetailText": "Daha fazla ayrıntı için buraya tıklayın.",
+ "namednetworkExceedingSizeErrorMessage": "Adlandırılmış konumlar için izin verilen en fazla depolama boyutu aşıldı. Daha kısa bir listeyle tekrar deneyin. Daha fazla ayrıntı görüntülemek için buraya tıklayın.",
+ "needMfaSecondary": "\"Her seferinde oturum açma sıklığı\" \"Yalnızca ikincil kimlik doğrulama yöntemleri\" ile seçildiğinde \"Çok faktörlü kimlik doğrulaması gerektir\" seçeneği seçilmelidir",
+ "newCertName": "yeni sertifika",
+ "noAttributePermissionsError": "İlke oluşturmak veya güncelleştirmek için ayrıcalıklar yetersiz. Dinamik filtre eklemek/düzenlemek için öznitelik tanımı okuyucu rolü gereklidir.",
+ "noPolicyRowMessage": "İlke yok",
+ "noSPSelected": "Hiç bir hizmet sorumlusu seçilmedi",
+ "noUpdatePermissionMessage": "Bu ayarları güncelleştirme izniniz yok. Erişim elde etmek için genel yöneticinize başvurun.",
+ "noUserSelected": "Kullanıcı seçilmedi",
+ "noneRisk": "Risk yok",
+ "office365Description": "Bu uygulamalar Microsoft Flow, Microsoft Forms, Microsoft Teams, Office 365 Exchange Online, Office 365 SharePoint Online, Office 365 Yammer ve diğerleridir.",
+ "office365InfoBox": "Seçilen uygulamalardan en az biri Office 365'in parçası. Bunun yerine Office 365'te ilke ayarlamanızı öneririz.",
+ "oneUserSelected": "1 kullanıcı seçildi",
+ "onlyGlobalAdminsCanSaveThisPolicyConfig": "Bu ilkeyi yalnızca genel yöneticiler kaydedebilir.",
+ "or": "{0} VEYA {1} ",
+ "pickerDoneCommand": "Bitti",
+ "policiesBladeAdPremiumUpsellBannerText": "Azure AD Premium ile kendi ilkelerinize ek olarak Bulut uygulamaları, Oturum açma riski, Cihaz platformları gibi hedefe yönelik koşullar oluşturun",
+ "policiesBladeTitle": "İlkeler",
+ "policiesBladeTitleWithAppName": "İlkeler: {0}",
+ "policiesDisabledBannerText": "Bağlı oturum açma özniteliğine sahip uygulamalarda ilke oluşturma ve düzenleme özelliği yasaklanmış.",
+ "policiesHitMaxLimitStatusBarMessage": "Bu kiracı için en fazla ilke sayısına ulaştınız. Daha fazla oluşturmadan önce bazı ilkeleri silin.",
+ "policyAssignmentsSection": "Atamalar",
+ "policyBlockAllInfoBox": "Yapılandırılan ilke tüm kullanıcıları engelleyeceğinden desteklenmiyor. Atamaları ve denetimleri gözden geçirin. Bu ilkeyi kaydetmek istiyorsanız geçerli {0} kullanıcısını hariç tutun.",
+ "policyCloudAppsDisplayTextAllApp": "Tüm uygulamalar",
+ "policyCloudAppsLabel": "Bulut uygulamaları",
+ "policyConditionClientAppDescription": "Kullanıcının bulut uygulamasına erişmek için kullandığı yazılım. Örneğin, 'Tarayıcı'",
+ "policyConditionClientAppV2Description": "Kullanıcının bulut uygulamasına erişmek için kullandığı yazılım. Örneğin, 'Tarayıcı'",
+ "policyConditionDevicePlatform": "Cihaz platformları",
+ "policyConditionDevicePlatformDescription": "Kullanıcının oturum açtığı platform. Örneğin, 'iOS'",
+ "policyConditionLocation": "Konumlar",
+ "policyConditionLocationDescription": "Kullanıcının oturum açtığı konum (IP adresi aralığı kullanılarak belirlenir)",
+ "policyConditionSigninRisk": "Oturum açma riski",
+ "policyConditionSigninRiskDescription": "Oturum açma eyleminin, hesabın kullanıcısı dışındaki biri tarafından gerçekleştirilme olasılığı. Risk düzeyi yüksek, orta veya düşük olabilir. Azure AD Premium 2 lisansı gerektirir.",
+ "policyConditionUserRisk": "Kullanıcı riski",
+ "policyConditionUserRiskDescription": "İlkenin zorlanması için gereken kullanıcı risk düzeylerini yapılandırın",
+ "policyConditioniClientApp": "İstemci uygulamaları",
+ "policyConditioniClientAppV2": "İstemci uygulamaları (Önizleme)",
+ "policyControlAllowAccessDisplayedName": "Erişim izni ver",
+ "policyControlAuthenticationStrengthDisplayedName": "Kimlik doğrulaması gücü gerektir (Önizleme)",
+ "policyControlBladeTitle": "Erişim İzni Verme",
+ "policyControlBlockAccessDisplayedName": "Erişimi engelle",
+ "policyControlCompliantDeviceDisplayedName": "Cihazın uyumlu olarak işaretlenmesini gerektir",
+ "policyControlContentDescription": "Erişimi engellemek veya erişim izni vermek için erişim zorlamasını denetleyin.",
+ "policyControlInfoBallonText": "Erişimi engelleyin veya erişim izni vermek için karşılanması gereken ek gereksinimleri seçin",
+ "policyControlMfaChallengeDisplayedName": "Çok faktörlü kimlik doğrulaması gerektir",
+ "policyControlRequireCompliantAppDisplayedName": "Uygulama koruma ilkesi iste",
+ "policyControlRequireDomainJoinedDisplayedName": "Hibrit Azure AD ile katılmayı zorunlu kılın",
+ "policyControlRequireMamDisplayedName": "Onaylı istemci uygulaması gerektir",
+ "policyControlRequiredPasswordChangeDisplayedName": "Parola değişikliği iste",
+ "policyControlSelectAuthStrength": "Kimlik doğrulaması gücü gerektir",
+ "policyControlsNoControlsSelected": "0 denetim seçili",
+ "policyControlsSection": "Erişim denetimleri",
+ "policyCreatBladeTitle": "Yeni",
+ "policyCreateButton": "Oluştur",
+ "policyCreateFailedMessage": "Hata: {0}",
+ "policyCreateFailedTitle": "'{0}' oluşturulamadı",
+ "policyCreateInProgressTitle": "'{0}' oluşturuluyor",
+ "policyCreateSuccessMessage": "'{0}' başarıyla oluşturuldu. \"İlkeyi etkinleştir\" seçeneğini \"Açık\" olarak ayarladıysanız ilke birkaç dakika içinde etkinleştirilecektir.",
+ "policyCreateSuccessTitle": "'{0}' başarıyla oluşturuldu",
+ "policyDeleteConfirmation": "'{0}' adlı ağı silmek istediğinizden emin misiniz? Bu eylem geri alınamaz.",
+ "policyDeleteFailTitle": "'{0}' silinemedi",
+ "policyDeleteInProgressTitle": "{0} siliniyor",
+ "policyDeleteSuccessTitle": "'{0}' başarıyla silindi.",
+ "policyEnforceLabel": "İlkeyi etkinleştir",
+ "policyErrorCannotSetSigninRisk": "Oturum açma riski koşuluna sahip bir ilkeyi kaydetme izniniz yok.",
+ "policyErrorNoPermission": "İlkeyi kaydetmek için izniniz yok. Genel yöneticinizle iletişime geçin.",
+ "policyErrorUnknown": "Bir sorun oluştu, lütfen daha sonra yeniden deneyin.",
+ "policyFallbackWarningMessage": "MS Graph kullanarak '{0}' ilkesini oluşturma veya güncelleştirme işlemi başarısız oluyor ve AD Graph’e geri dönme sonucu veriyor. Büyük olasılıkla MS Graph için uyumsuz bir koşulla ilke uç noktası çağrılırken hata oluştuğundan, lütfen aşağıdaki senaryoyu araştırın.",
+ "policyFallbackWarningTitle": "'{0}' ilkesini oluşturma veya güncelleştirme işlemi kısmen başarılı oldu",
+ "policyNameCannotBeEmpty": "İlke adı boş olamaz",
+ "policyNameDevice": "Cihaz ilkesi",
+ "policyNameFormat": "[{0}] {1}",
+ "policyNameMam": "Mobil Uygulama Yönetimi ilkesi",
+ "policyNameMfaLocation": "MFA ve konum ilkesi",
+ "policyNamePlaceholderText": "Örnek: 'Cihaz uyumluluğu uygulama ilkesi'",
+ "policyNameTooLongError": "İlke adı çok uzun. En fazla 256 karakter uzunluğunda olabilir",
+ "policyOff": "Kapalı",
+ "policyOn": "Açık",
+ "policyReportOnly": "Yalnızca rapor",
+ "policyReviewSection": "Gözden Geçir",
+ "policySaveButton": "Kaydet",
+ "policyStatusIconDescription": "İlke Etkin",
+ "policyStatusIconEnabled": "Etkinleştirildi durum simgesi",
+ "policyTemplateName1": "{0} tarayıcı erişiminde uygulama tarafından zorlanan kısıtlamalar kullan",
+ "policyTemplateName2": "{0} erişimine yalnızca yönetilen cihazlarda izin ver",
+ "policyTemplateName3": "Sürekli Erişim Değerlendirmesi ayarlarından geçirilen ilke",
+ "policyTriggerRiskSpecific": "Özel risk düzeyi seçin",
+ "policyTriggersInfoBalloonText": "İlkenin geçerli olacağı zamanı tanımlayan koşullar. Örneğin, 'konum'",
+ "policyTriggersNoConditionsSelected": "0 koşul seçili",
+ "policyTriggersSelectorLabel": "Koşullar",
+ "policyUpdateFailedMessage": "Hata: {0}",
+ "policyUpdateFailedTitle": "{0} güncelleştirilemedi",
+ "policyUpdateInProgressTitle": "{0} güncelleştiriliyor",
+ "policyUpdateSuccessMessage": "{0} başarıyla güncelleştirildi. \"İlkeyi etkinleştir\" seçeneğini \"Açık\" olarak ayarladıysanız ilke birkaç dakika içinde etkinleştirilecektir.",
+ "policyUpdateSuccessTitle": "{0} başarıyla güncelleştirildi",
+ "primaryCol": "Birincil",
+ "privateLinkLabel": "Azure AD Özel Bağlantı",
+ "reportOnlyInfoBox": "Yalnızca rapor modu: İlkeler oturum açma sırasında değerlendirilir ve kaydedilir ancak kullanıcıları etkilemez.",
+ "requireAllControlsText": "Seçilen tüm denetimleri gerekli kıl",
+ "requireCompliantDevice": "Uyumlu cihaz gerektir",
+ "requireDomainJoined": "Etki alanına katılmış cihaz gerektir",
+ "requireGrantReauth": "\"Her seferinde oturum açma sıklığı\" oturum denetimi, \"Tüm bulut uygulamaları\" seçildiğinde \"çok faktörlü kimlik doğrulaması gerektir\" veya \"parola değişikliği gerektir\" denetim izni gerektirir",
+ "requireMFA": "Çok faktörlü kimlik doğrulamasını gerektir ",
+ "requireMfaReauth": "\"Her seferinde oturum açma sıklığı\" oturum denetimi, \"oturum açma riski\" için \"çok faktörlü kimlik doğrulaması gerektir\" izin denetimini gerektirir",
+ "requireOneControlText": "Seçilen denetimlerden birini gerekli kıl",
+ "requirePasswordChangeReauth": "\"Her seferinde oturum açma sıklığı\" oturum denetimi \"kullanıcı riski\" için \"parola değişikliği gerektir\" izin denetimini gerektirir",
+ "requireRiskReauth": "\"Tüm bulut uygulamaları\" seçildiğinde \"her seferinde oturum açma sıklığı\" oturum denetimi \"kullanıcı riski\" veya \"oturum açma riski\" oturum denetimini gerektirir.",
+ "resetFilters": "Filtreleri sıfırla",
+ "sPRequired": "Hizmet sorumlusu gerekiyor",
+ "sPSelectorInfoBalloon": "Sınamak istediğiniz Kullanıcı veya Hizmet Sorumlusu",
+ "saturday": "Cumartesi",
+ "searchTextTooLongError": "Arama metni çok uzun. En fazla 256 karakter",
+ "securityDefaultsPolicyName": "Güvenlik varsayılanları",
+ "securityDefaultsTextMessage": "Koşullu Erişim ilkesini etkinleştirmek için güvenlik varsayılanları devre dışı bırakılmalıdır.",
+ "securityDefaultsWarningMessage": "Kuruluşunuzun güvenlik yapılandırmalarını yönetmek üzeresiniz gibi görünüyor. Mükemmel! Bir Koşullu Erişim ilkesini etkinleştirmeden önce Güvenlik varsayılanlarını devre dışı bırakmanız gerekir.",
+ "selectDevicePlatforms": "Cihaz platformlarını seçin",
+ "selectNamedNetworksSubtitle": "",
+ "selectNamedNetworksTitle": "Konumları seç",
+ "selectedSP": "Seçili Hizmet sorumlusu",
+ "servicePrincipalDataGridAria": "Kullanılabilir hizmet sorumlularının listesi",
+ "servicePrincipalDropDownLabel": "Bu ilke nereye uygulanacak?",
+ "servicePrincipalInfoBox": "İlke atamasındaki '{0}' seçimi nedeniyle bazı koşullar kullanılamıyor",
+ "servicePrincipalRadioAll": "Sahip olunan tüm hizmet sorumluları",
+ "servicePrincipalRadioSelect": "Hizmet sorumlularını seçin",
+ "servicePrincipalSelectionsAria": "Seçili hizmet sorumluları kılavuzu",
+ "servicePrincipalSelectorAria": "Seçilen hizmet sorumlularının listesi",
+ "servicePrincipalSelectorMultiple": "{0} hizmet sorumlusu seçildi",
+ "servicePrincipalSelectorSingle": "1 hizmet sorumlusu seçildi",
+ "servicePrincipalSpecificInc": "Eklenen belirli hizmet sorumluları",
+ "servicePrincipals": "Hizmet sorumluları",
+ "sessionControlBladeTitle": "Oturum",
+ "sessionControlDescriptionContent": "Belirli bulut uygulamalarında sınırlı deneyimler sağlamak için erişimi oturum denetimlerini temel alarak denetleyin.",
+ "sessionControlDisableInfo": "Bu denetim yalnızca desteklenen uygulamalarda kullanılabilir. Şu anda uygulama tarafından zorlanan kısıtlamaları destekleyen bulut uygulamaları yalnızca Office 365, Exchange Online ve SharePoint Online'dır. Daha fazla bilgi edinmek için buraya tıklayın.",
+ "sessionControlInfoBallonText": "Oturum denetimleri, bulut uygulaması içinde sınırlı deneyim sağlar.",
+ "sessionControls": "Oturum denetimleri",
+ "sessionControlsAppEnforcedLabel": "Uygulama tarafından zorlanan kısıtlamaları kullan",
+ "sessionControlsCasLabel": "Koşullu Erişim Uygulama Denetimi kullanın",
+ "sessionControlsSecureSignInLabel": "Belirteç bağlaması gerektir",
+ "sharepointAppName": "SharePoint",
+ "signinRiskDescription": "Bu ilkenin uygulanacağı oturum açma risk düzeyini seçin",
+ "signinRiskInclude": "{0} eklendi",
+ "signinRiskReauth": "\"Çok faktörlü kimlik doğrulaması gerektir\" izni ve \"her seferinde oturum açma sıklığı\" oturum denetimi seçildiğinde \"Oturum açma riski\" koşulu seçilmelidir.",
+ "signinRiskTriggerDescriptionContent": "Oturum açma risk düzeyini seçin",
+ "singleTenantServicePrincipalInfoBallonText": "İlke yalnızca kuruluşunuza ait tek kiracılı hizmet sorumluları için geçerlidir. Daha fazla bilgi edinmek için buraya tıklayın ",
+ "specificSigninRiskLevelsOption": "Belirli oturum açma risk düzeyleri seçin",
+ "specificUsersExcluded": "belirli kullanıcılar hariç",
+ "specificUsersIncluded": "Belirli kullanıcılar dahil",
+ "specificUsersIncludedAndExcluded": "Dışarıda bırakılan ve dahil edilen belirli kullanıcılar",
+ "startDatePickerLabel": "Başlangıç",
+ "startFreeTrial": "Ücretsiz bir deneme başlatın",
+ "startTimePickerLabel": "Başlangıç zamanı",
+ "sunday": "Pazar",
+ "testButton": "What If",
+ "thumbprintCol": "Parmak İzi",
+ "thursday": "Perşembe",
+ "timeConditionAllTimesLabel": "Her zaman",
+ "timeConditionIntroText": "Bu ilkenin uygulanacağı zamanı yapılandırın",
+ "timeConditionSelectorInfoBallonContent": "Kullanıcı oturum açarken. Örneğin, \"Çarşamba 09:00-17:00 PST\"",
+ "timeConditionSelectorLabel": "Zaman (Önizleme)",
+ "timeConditionSpecificLabel": "Belirli saatler",
+ "timeSelectorAllTimesText": "Her zaman",
+ "timeSelectorSpecificTimesText": "Yapılandırılan belirli saatlerde",
+ "timeZoneDropdownInfoBalloonContent": "Zaman aralığını tanımlayan bir saat dilimi seçin. Bu ilke, tüm saat dilimlerindeki kullanıcılar için geçerlidir. Örneğin, bir kullanıcı için 'Çarşamba 09:00 - 17:00' zaman aralığı, farklı bir saat dilimindeki bir kullanıcı için 'Çarşamba 10:00 - 18:00' olur.",
+ "timeZoneDropdownLabel": "Saat dilimi",
+ "timeZoneDropdownPlaceholderText": "Saat dilimi seçin",
+ "tooManyPoliciesDescription": "Şu anda yalnızca ilk 50 ilke görüntüleniyor, tüm ilkeleri görüntülemek için buraya tıklayın",
+ "tooManyPoliciesTitle": "50'den fazla ilke bulundu",
+ "trustedLocationStatusIconDescription": "Konuma güveniliyor",
+ "trustedLocationStatusIconEnabled": "Güvenilen durum simgesi",
+ "tuesday": "Salı",
+ "uploadInBadState": "Belirtilen dosya karşıya yüklenemiyor.",
+ "upsellAppsDescription": "Hassas uygulamalar için, her zaman veya yalnızca şirket ağının dışından erişim sağlandığı durumlarda çok faktörlü kimlik doğrulaması gerektirin.",
+ "upsellAppsTitle": "Uygulamaları güvenli hale getirin",
+ "upsellBannerText": "Bu özelliği kullanmak için ücretsiz bir Premium deneme sürümü edinin",
+ "upsellDataDescription": "Şirket kaynaklarına erişim izni vermek için, cihazın uyumlu olarak işaretlenmesini veya Hibrit Azure AD ile katılmayı zorunlu kılın.",
+ "upsellDataTitle": "Verileri güvenli hale getirin",
+ "upsellDescription": "Koşullu Erişim sayesinde, kullanıcılarınıza tüm cihazlardan en iyi şekilde çalışma olanağı sağlarken aynı zamanda kurumsal verilerinizi güvende tutmanız için gereken denetim ve korumaya sahip olursunuz. Örneğin, şirket ağı dışından gerçekleştirilen ya da uyumluluk ilkelerini karşılayan cihazlara yönelik erişimi engelleyebilirsiniz.",
+ "upsellRiskDescription": "Microsoft’un makine öğrenmesi sistemi tarafından algılanan risk olayları için çok faktörlü kimlik doğrulaması isteyin.",
+ "upsellRiskTitle": "Riske karşı koruma sağlayın",
+ "upsellTitle": "Koşullu Erişim",
+ "upsellWhyTitle": "Koşullu Erişim neden kullanılmalıdır?",
+ "userAppNoneOption": "Yok",
+ "userNamePlaceholderText": "Kullanıcı Adını Girin",
+ "userNotSetSeletorLabel": "0 kullanıcı ve grup seçili",
+ "userOnlySelectionBladeExcludeDescription": "İlkenin dışında tutulacak kullanıcıları seçin",
+ "userOrGroupSelectionCountDiffBannerText": "Bu ilkede yapılandırılan {0} dizinden silinmiş ancak bu durum, ilkedeki diğer kullanıcıları ve grupları etkilemiyor. Bir sonraki ilke güncelleştirmenizde, silinen kullanıcılar ve/veya gruplar otomatik olarak kaldırılır.",
+ "userOrSPNotSetSelectorLabel": "0 kullanıcı veya iş yükü kimliği seçildi",
+ "userOrSPSelectionBladeTitle": "Kullanıcılar veya iş yükü kimlikleri",
+ "userOrSPSelectorInfoBallonText": "Kullanıcılar, gruplar ve hizmet sorumluları dahil olmak üzere, ilkenin uygulandığı dizindeki kimlikler",
+ "userRequired": "Kullanıcı Gerekli",
+ "userRiskErrorBox": "\"Parola değişikliği iste\" izni seçildiğinde \"Kullanıcı riski\" koşulu seçilmelidir",
+ "userRiskReauth": "\"Parola değişikliği gerektir\" izni ve \"Her seferinde oturum açma sıklığı\" oturum denetimi seçildiğinde \"Oturum açma riski\" yerine \"Kullanıcı riski\" koşulu seçilmelidir",
+ "userSPRequired": "Kullanıcı veya Hizmet sorumlusu gerekiyor",
+ "userSPSelectorTitle": "Kullanıcı veya İş yükü kimliği",
+ "userSelectionBladeAllUsersAndGroups": "Tüm kullanıcılar ve gruplar",
+ "userSelectionBladeExcludeDescription": "İlkenin dışında tutulacak kullanıcıları ve grupları seçin",
+ "userSelectionBladeExcludeTabTitle": "Dışla",
+ "userSelectionBladeExcludedSelectorTitle": "Dışlanacak kullanıcıları seçin",
+ "userSelectionBladeIncludeDescription": "Bu ilkenin uygulanacağı kullanıcıları seçin",
+ "userSelectionBladeIncludeTabTitle": "Ekle",
+ "userSelectionBladeIncludedSelectorTitle": "Seç",
+ "userSelectionBladeSelectUsers": "Kullanıcıları seçin",
+ "userSelectionBladeSelectedUsers": "Kullanıcı ve grupları seçin",
+ "userSelectionBladeTitle": "Kullanıcılar ve gruplar",
+ "userSelectorBladeTitle": "Kullanıcılar",
+ "userSelectorExcluded": "{0} dışarıda bırakıldı",
+ "userSelectorGroupPlural": "{0} grup",
+ "userSelectorGroupSingular": "1 grup",
+ "userSelectorIncluded": "{0} eklendi",
+ "userSelectorInfoBallonText": "İlkenin uygulandığı dizindeki kullanıcılar ve gruplar. Örneğin, 'Pilot grup'",
+ "userSelectorSelected": "{0} seçildi",
+ "userSelectorTitle": "Kullanıcı",
+ "userSelectorUserAndGroup": "{0}, {1}",
+ "userSelectorUserPlural": "{0} kullanıcı",
+ "userSelectorUserSingular": "1 kullanıcı",
+ "userSelectorWithExclusion": "{0} ve {1}",
+ "usersGroupsLabel": "Kullanıcılar ve gruplar",
+ "viewApprovedAppsText": "Onaylı istemci uygulamalarının listesini görün",
+ "viewCompliantAppsText": "İlke korumalı istemci uygulamalarının listesini görün",
+ "vpnBladeTitle": "VPN bağlantısı",
+ "vpnCertCreateFailedMessage": "Hata: {0}",
+ "vpnCertCreateFailedTitle": "{0} oluşturulamadı",
+ "vpnCertCreateInProgressTitle": "{0} oluşturuluyor",
+ "vpnCertCreateSuccessMessage": "{0} başarıyla oluşturuldu.",
+ "vpnCertCreateSuccessTitle": "{0} başarıyla oluşturuldu",
+ "vpnCertNoRowsMessage": "VPN sertifikası bulunamadı",
+ "vpnCertUpdateFailedMessage": "Hata: {0}",
+ "vpnCertUpdateFailedTitle": "{0} güncelleştirilemedi",
+ "vpnCertUpdateInProgressTitle": "{0} güncelleştiriliyor",
+ "vpnCertUpdateSuccessMessage": "{0} başarıyla güncelleştirildi.",
+ "vpnCertUpdateSuccessTitle": "{0} başarıyla güncelleştirildi",
+ "vpnFeatureInfo": "VPN bağlantısı ve Koşullu Erişim hakkında daha fazla bilgi için buraya tıklayın.",
+ "vpnFeatureWarning": "Azure portalında bir VPN sertifikası oluşturulduğunda Azure AD, VPN istemcisine kısa süreli sertifikalar vermek için bunu hemen kullanmaya başlar. VPN istemcisinin kimlik doğrulamasıyla ilgili sorunları önlemek için VPN sertifikasının VPN sunucusuna hızla dağıtılması önemlidir.",
+ "vpnMenuText": "VPN bağlantısı",
+ "vpncertDropdownDefaultOption": "Süre",
+ "vpncertDropdownInfoBalloonContent": "Oluşturmak istediğiniz sertifikanın süresini seçin",
+ "vpncertDropdownLabel": "Süre seçin",
+ "vpncertDropdownOneyearOption": "1 yıl",
+ "vpncertDropdownThreeyearOption": "3 yıl",
+ "vpncertDropdownTwoyearOption": "2 yıl",
+ "wednesday": "Çarşamba",
+ "whatIfAppEnforcedControl": "Uygulama tarafından zorlanan kısıtlamaları kullan",
+ "whatIfBladeDescription": "Belirli koşullarda oturum açılırken Koşullu Erişimin bir kullanıcı üzerindeki etkisini test edin.",
+ "whatIfBladeTitle": "What If",
+ "whatIfClassicPoliciesWarning": "Klasik ilkeler bu araç tarafından değerlendirilmez.",
+ "whatIfClientAppInfo": "Kullanıcının oturum açmak için kullandığı istemci uygulaması. Örneğin, 'Tarayıcı'.",
+ "whatIfCountry": "Ülke",
+ "whatIfCountryInfo": "Kullanıcının oturum açtığı ülke.",
+ "whatIfDevicePlatformInfo": "Kullanıcının oturum açmak için kullandığı cihaz platformu.",
+ "whatIfDeviceStateInfo": "Kullanıcının oturum açmak için kullandığı cihazın durumu",
+ "whatIfEnterIpAddress": "IP adresi girin (ör: 40.77.182.32)",
+ "whatIfErrorInvalidIpAddress": "Geçersiz IP adresi belirtildi.",
+ "whatIfEvaResultApplication": "Bulut uygulamaları",
+ "whatIfEvaResultClientApps": "İstemci uygulaması",
+ "whatIfEvaResultDevicePlatform": "Cihaz platformu",
+ "whatIfEvaResultEmptyPolicy": "Boş ilke",
+ "whatIfEvaResultInvalidCondition": "Geçersiz koşul",
+ "whatIfEvaResultInvalidPolicy": "Geçersiz ilke",
+ "whatIfEvaResultLocation": "Konum",
+ "whatIfEvaResultNotEnoughInformation": "Yeterli bilgi yok",
+ "whatIfEvaResultPolicyNotEnabled": "İlke etkin değil",
+ "whatIfEvaResultSignInRisk": "Oturum açma riski",
+ "whatIfEvaResultUsers": "Kullanıcılar ve gruplar",
+ "whatIfIpAddress": "IP adresi",
+ "whatIfIpAddressInfo": "Kullanıcının oturum açtığı konumun IP adresi.",
+ "whatIfIpCountryInfoBoxText": "IP adresi veya Ülke kullanıyorsanız, her iki alan gereklidir ve birlikte doğru eşlenmelidir.",
+ "whatIfPolicyAppliesTab": "Uygulanacak ilkeler",
+ "whatIfPolicyDoesNotApplyTab": "Uygulanmayacak ilkeler",
+ "whatIfReasons": "Bu ilkenin uygulanmama nedenleri",
+ "whatIfSelectClientApp": "Bir istemci uygulaması seçin...",
+ "whatIfSelectCountry": "Ülke seçin...",
+ "whatIfSelectDevicePlatform": "Cihaz platformunu seçin...",
+ "whatIfSelectPrivateLink": "Özel bağlantı seçin...",
+ "whatIfSelectServicePrincipalRisk": "Hizmet sorumlusu riskini seçin...",
+ "whatIfSelectSignInRisk": "Oturum açma riskini seçin...",
+ "whatIfSelectType": "Kimlik türünü seçin",
+ "whatIfSelectUserRisk": "Kullanıcı riskini seçin...",
+ "whatIfServicePrincipalRiskInfo": "Hizmet sorumlusuyla ilişkili risk düzeyi",
+ "whatIfSignInRisk": "Oturum açma riski",
+ "whatIfSignInRiskInfo": "Oturum açma ile ilişkili risk düzeyi",
+ "whatIfUnknownAreas": "Bilinmeyen Alanlar",
+ "whatIfUserPickerLabel": "Seçili kullanıcı",
+ "whatIfUserPickerNoRowsLabel": "Kullanıcı veya hizmet sorumlusu seçilmedi",
+ "whatIfUserRiskInfo": "Kullanıcı ile ilişkili risk düzeyi",
+ "whatIfUserSelectorInfo": "Dizinde bulunan ve test etmek istediğiniz kullanıcı",
+ "windows365InfoBox": "Windows 365’in seçilmesi Bulut PC’lere ve Azure Sanal Masaüstü oturumu ana bilgisayarlarına bağlantıları etkiler. Daha fazla bilgi edinmek için buraya tıklayın.",
+ "windowsDisplayName": "Windows",
+ "windowsPhoneDisplayName": "Windows Phone",
+ "workloadIdentities": "İş yükü kimlikleri (önizleme)",
+ "workloadIdentity": "İş yükü kimliği"
+ },
+ "AppResources": {
+ "AppSettingsUx": {
+ "assignmentFilterColumnHeader": "Filtre",
+ "assignmentFilterTypeColumnHeader": "Filtre modu",
+ "assignmentToast": "Son kullanıcı bildirimleri",
+ "assignmentTypeTableHeader": "ATAMA TÜRÜ",
+ "deadlineTimeColumnLabel": "Yükleme son tarihi",
+ "deliveryOptimizationPriorityHeader": "Teslim iyileştirme önceliği",
+ "groupTableHeader": "Grup",
+ "installContextLabel": "Bağlam Yükleme",
+ "isRemovable": "Çıkarılabilir olarak yükle",
+ "licenseTypeLabel": "Lisans türü",
+ "modeTableHeader": "Grup modu",
+ "policySet": "İlke Kümesi",
+ "restartGracePeriodHeader": "Yeniden başlatma mehil süresi",
+ "startTimeColumnLabel": "Kullanılabilirlik",
+ "tracks": "İzlemeler",
+ "uninstallOnRemoval": "Cihaz kaldırılırken yüklemeyi kaldır",
+ "updateMode": "Güncelleştirme Önceliği",
+ "vPN": "VPN"
+ },
+ "AppType": {
+ "aADWebApp": "AAD web uygulaması",
+ "androidEnterpriseSystemApp": "Android Enterprise sistem uygulaması",
+ "androidForWorkApp": "Yönetilen Google Play Store uygulaması",
+ "androidLobApp": "Android iş kolu uygulaması",
+ "androidStoreApp": "Android mağaza uygulaması",
+ "builtInAndroid": "Yerleşik Android uygulaması",
+ "builtInApp": "Yerleşik uygulama",
+ "builtInIos": "Yerleşik iOS uygulaması",
+ "iosLobApp": "iOS iş kolu uygulaması",
+ "iosStoreApp": "iOS mağaza uygulaması",
+ "iosVppApp": "iOS Volume Purchase Program uygulaması",
+ "lineOfBusinessApp": "İş kolu uygulaması",
+ "macOSDmgApp": "macOS uygulaması (DMG)",
+ "macOSEdgeApp": "Microsoft Edge (macOS)",
+ "macOSLobApp": "macOS iş kolu uygulaması",
+ "macOSMdatpApp": "Microsoft Defender ATP (macOS)",
+ "macOSOfficeSuiteApp": "macOS Office Suite",
+ "macOsVppApp": "macOS Volume Purchase Program uygulaması",
+ "managedAndroidLobApp": "Yönetilen Android iş kolu uygulaması",
+ "managedAndroidStoreApp": "Yönetilen Android mağaza uygulaması",
+ "managedGooglePlayApp": "Yönetilen Google Play Store uygulaması",
+ "managedGooglePlayPrivateApp": "Yönetilen Google Play özel uygulaması",
+ "managedGooglePlayWebApp": "Yönetilen Google Play web bağlantısı",
+ "managedIosLobApp": "Yönetilen iOS iş kolu uygulaması",
+ "managedIosStoreApp": "Yönetilen iOS mağaza uygulaması",
+ "microsoftStoreForBusinessApp": "İş İçin Microsoft Store uygulaması",
+ "microsoftStoreForBusinessReleaseManagedApp": "İş İçin Microsoft Store",
+ "officeAddIn": "Office eklentisi",
+ "officeSuiteApp": "Microsoft 365 Uygulamaları (Windows 10 ve üzeri)",
+ "sharePointApp": "SharePoint uygulaması",
+ "teamsApp": "Teams uygulaması",
+ "webApp": "Web bağlantısı",
+ "windowsAppXLobApp": "Windows AppX iş kolu uygulaması",
+ "windowsClassicApp": "Windows uygulaması (Win32)",
+ "windowsEdgeApp": "Microsoft Edge (Windows 10 ve üzeri)",
+ "windowsMobileMsiLobApp": "Windows MSI iş kolu uygulaması",
+ "windowsPhone81AppXBundleLobApp": "Windows Phone 8.1 AppX iş kolu uygulaması",
+ "windowsPhone81AppXLobApp": "Windows Phone 8.1 AppX iş kolu uygulaması",
+ "windowsPhone81StoreApp": "Windows Phone 8.1 mağaza uygulaması",
+ "windowsPhoneXapLobApp": "Windows Phone XAP iş kolu uygulaması",
+ "windowsStoreApp": "Microsoft Store uygulaması",
+ "windowsUniversalAppXLobApp": "Windows Universal AppX iş kolu uygulaması",
+ "windowsUniversalLobApp": "Windows Evrensel iş kolu uygulaması"
+ },
+ "AppTypePlatform": {
+ "android": "Android",
+ "ios": "iOS",
+ "macOs": "macOS",
+ "web": "Web",
+ "windows": "Windows"
+ },
+ "AssignmentAction": {
+ "exclude": "Hariç Tutulan",
+ "include": "Dahil edilen",
+ "includeAllDevicesVirtualGroup": "Dahil edilen",
+ "includeAllUsersVirtualGroup": "Dahil edilen"
+ },
+ "AssignmentToast": {
+ "hideAll": "Tüm bildirimleri gizle",
+ "showAll": "Tüm bildirimleri göster",
+ "showReboot": "Bilgisayar yeniden başlatma işlemleri için bildirim göster"
+ },
+ "DeliveryOptimizationPriority": {
+ "backgroundNormal": "Arka Plan",
+ "displayText": "{0} içinde içerik indirme",
+ "foreground": "Ön plan",
+ "header": "Teslim iyileştirme önceliği"
+ },
+ "DeviceRestartBehaviorOptions": {
+ "allow": "Uygulama yüklemesi, cihazın yeniden başlatılmasını zorlayabilir",
+ "basedOnReturnCode": "Dönüş kodlarına dayalı davranışı belirle",
+ "force": "Intune zorunlu bir cihaz yeniden başlatma işlemi gerçekleştirecek",
+ "suppress": "Belirli bir eylem yok"
+ },
+ "FilterType": {
+ "exclude": "Dışla",
+ "include": "Ekle",
+ "none": "Yok"
+ },
+ "InstallIntent": {
+ "available": "Kayıtlı cihazlar için bulunur",
+ "availableWithoutEnrollment": "Kayıtlı veya kayıtsız olarak kullanılabilir",
+ "notApplicable": "Geçerli değil",
+ "required": "Gerekli",
+ "uninstall": "Kaldır"
+ },
+ "SettingType": {
+ "assignmentType": "Atama türü",
+ "deviceLicensing": "Lisans türü",
+ "installContext": "Cihaz kaldırılırken yüklemeyi kaldır",
+ "toastSettings": "Son kullanıcı bildirimleri",
+ "vpnConfiguration": "VPN"
+ },
+ "UpdateMode": {
+ "default": "Varsayılan",
+ "postponed": "Ertelendi",
+ "priority": "Yüksek Öncelik"
+ }
+ },
+ "WindowsEnrollment": {
+ "coManagementAuthorityDesc": "Configuration Manager tümleştirmesi için ortak yönetim ayarlarını yapılandırın",
+ "coManagementAuthorityTitle": "Ortak yönetim ayarları ",
+ "deploymentProfiles": "Windows Autopilot dağıtım profilleri",
+ "description": "Bir Windows 10/11 bilgisayarının kullanıcılar veya yöneticiler tarafından Intune'a kaydedilmesinin yedi farklı yolu hakkında bilgi edinin.",
+ "descriptionLabel": "Windows kayıt yöntemleri",
+ "enrollmentStatusPage": "Kayıt Durumu Sayfası"
+ },
+ "Win32Program": {
+ "DeviceRestartBehaviorOptions": {
+ "allow": "Uygulama yüklemesi, cihazın yeniden başlatılmasını zorlayabilir",
+ "basedOnReturnCode": "Dönüş kodlarına dayalı davranışı belirle",
+ "force": "Intune zorunlu bir cihaz yeniden başlatma işlemi gerçekleştirecek",
+ "suppress": "Belirli bir eylem yok"
+ },
+ "RunAsAccountOptions": {
+ "system": "Sistem",
+ "user": "Kullanıcı"
+ },
+ "bladeTitle": "Program",
+ "deviceRestartBehavior": "Cihaz yeniden başlatma davranışı",
+ "deviceRestartBehaviorTooltip": "Uygulama başarıyla yüklendikten sonra cihaz yeniden başlatma davranışını seçin. Cihazı dönüş kodları yapılandırma ayarlarına bağlı olarak yeniden başlatmak için 'Davranışı dönüş kodlarına göre belirle' seçeneğini belirleyin. MSI tabanlı uygulamaların yüklenmesi sırasında cihaz yeniden başlatma işlemlerini ertelemek için 'Belirli bir eylem yok' seçeneğini belirleyin. Uygulama yüklemesinin yeniden başlatmayı ertelemeden tamamlanmasına izin vermek için 'Uygulama yüklemesi cihazın yeniden başlatılmasını zorlayabilir' seçeneğini belirleyin. Her başarılı uygulama yüklemesinden sonra cihazı yeniden başlatmak için 'Intune zorunlu bir cihaz yeniden başlatma zorlayacak' seçeneğini belirleyin.",
+ "header": "Bu uygulamayı yükleme ve kaldırma komutlarını belirtin:",
+ "installCommand": "Yükleme komutu",
+ "installCommandMaxLengthErrorMessage": "Yükleme komutu, izin verilen maksimum uzunluk olan 1024 karakteri aşamaz.",
+ "installCommandTooltip": "Bu uygulamayı yüklemek için kullanılan yükleme komut satırının tamamı.",
+ "runAs32Bit": "Yükleme ve kaldırma komutlarını 64 bit istemcilerde 32 bit işlemde çalıştır",
+ "runAs32BitTooltip": "Uygulamayı 64 bit istemcilerde 32 bit bir işlemde yüklemek ve kaldırmak için 'Evet' seçeneğini belirleyin. Uygulamayı 64 bit istemcilerde 64 bit bir işlemde yüklemek ve kaldırmak için 'Hayır' (varsayılan) seçeneğini belirleyin. 32 bit istemciler, her zaman 32 bit işlemi kullanır.",
+ "runAsAccount": "Yükleme davranışı",
+ "runAsAccountTooltip": "Destekleniyorsa, bu uygulamayı tüm kullanıcılara yüklemek için 'Sistem'i seçin. Uygulamayı cihazda oturum açmış kullanıcıya yüklemek için 'Kullanıcı'yı seçin. Çift amaçlı MSI uygulamalarında değişiklikler, uygulamanın asıl yüklemesinde uygulanan değer geri yüklenene kadar güncelleştirmelerin ve kaldırmaların tamamlanmasını önler.",
+ "selectorLabel": "Program",
+ "uninstallCommand": "Kaldırma komutu",
+ "uninstallCommandTooltip": "Bu uygulamayı kaldırmak için kullanılan kaldırma komut satırının tamamı."
+ },
+ "CategoryDescription": {
+ "androidGeneralApplicationRestrictions": "Şirketinizde kullanım için onaylanmamış uygulamalar yükleyen kullanıcılar hakkında bilgi sahibi olmak için bu ayarları kullanın. Kısıtlı uygulama listesi türünü seçin:
\r\n Yasaklı uygulamalar - Kullanıcılar tarafından yüklendiğinde bilgilendirilmek istediğiniz uygulamaların listesi.
\r\n Onaylı uygulamalar - Şirketinizde kullanım için onaylanmış uygulamaların listesi. Kullanıcılar bu listede olmayan bir uygulama yüklediğinde bilgilendirilirsiniz.
\r\n ",
+ "androidZebraMxZebraMx": "XML biçiminde bir MX profilini karşıya yükleyerek Zebra cihazları yapılandırın.",
+ "iosDeviceFeaturesAirprint": "iOS cihazlarını ağınızdaki AirPrint uyumlu yazıcılara otomatik olarak bağlanacak şekilde yapılandırmak için bu ayarları kullanın. Yazıcılarınızın IP adresine ve kaynak yoluna ihtiyacınız vardır.",
+ "iosDeviceFeaturesExtensibleSingleSignOn": "iOS 13.0 ve sonraki sürümleri çalıştıran cihazlar için çoklu oturum açma (SSO) sağlayan bir uygulama uzantısı yapılandırın.",
+ "iosDeviceFeaturesHomeScreenLayout": "iOS cihazlarında dock ve Giriş Ekranları için ekran düzenini yapılandırın. Bazı cihazlarda, görüntülenebilecek öğe sayısı sınırlandırılmış olabilir.",
+ "iosDeviceFeaturesIOSWallpaper": "iOS cihazlarının Giriş Ekranında ve/veya kilit ekranında gösterilecek görüntüyü seçin.\r\n Her iki konumda da benzersiz bir görüntü göstermek için kilit ekranı görüntüsüyle ve Giriş Ekranı görüntüsüyle iki ayrı profil oluşturun.\r\n Daha sonra her iki profili de kullanıcılarınıza atayın.\r\n
\r\n \r\n - Maksimum dosya boyutu: 750 KB
\r\n - Dosya türü: PNG, JPG veya JPEG
\r\n
\r\n ",
+ "iosDeviceFeaturesNotifications": "Uygulamalar için bildirim ayarlarını belirtin. iOS 9.3 ve sonraki sürümleri destekler.",
+ "iosDeviceFeaturesSharedDevice": "Kilit ekranında görüntülenecek isteğe bağlı bir metin belirtin. Bu, iOS 9.3 ve sonrası sürümlerde desteklenir. Daha Fazla Bilgi Edinin",
+ "iosGeneralApplicationRestrictions": "Şirketinizde kullanım için onaylanmamış uygulamalar yükleyen kullanıcılar hakkında bilgi sahibi olmak için bu ayarları kullanın. Kısıtlı uygulama listesi türünü seçin:
\r\n Yasaklı uygulamalar - Kullanıcılar tarafından yüklendiğinde bilgilendirilmek istediğiniz uygulamaların listesi.
\r\n Onaylı uygulamalar - Şirketinizde kullanım için onaylanmış uygulamaların listesi. Kullanıcılar bu listede olmayan bir uygulama yüklediğinde bilgilendirilirsiniz.
\r\n ",
+ "iosGeneralApplicationVisibility": "Kullanıcının görüntüleyebileceği veya başlatabileceği iOS uygulamalarını belirtmek için, gösterilen uygulamalar listesini kullanın. Kullanıcının görüntüleyemeyeceği veya başlatamayacağı iOS uygulamalarını belirtmek için, gizli uygulamalar listesini kullanın.",
+ "iosGeneralAutonomousSingleAppMode": "Bu listeye eklediğiniz ve bir cihaza atadığınız uygulamalar, başlatıldıktan sonra yalnızca kendisini çalıştırmak için cihazı kilitleyebilir veya belirli bir eylem çalışırken (örneğin bir test yapılırken) cihazı kilitleyebilir. Eylem tamamlandıktan veya siz kısıtlamayı kaldırdıktan sonra cihaz normal durumuna geri döner.",
+ "iosGeneralKiosk": "Kiosk modu, çeşitli ayarları cihaza kilitler veya cihazda çalıştırılabilecek tek bir uygulamayı belirtir. Bu özellik, cihazın yalnızca tek bir demo uygulamasını çalıştırmasını istediğiniz perakende mağaza gibi ortamlarda yararlı olabilir.",
+ "macDeviceFeaturesAirprint": "macOS cihazları, ağınızdaki AirPrint uyumlu yazıcılara otomatik olarak bağlanmak üzere yapılandırmak için bu ayarları kullanın. Yazıcılarınızın IP adresleri ve kaynak yoluna ihtiyacınız olacaktır.",
+ "macDeviceFeaturesAssociatedDomains": "Kuruluşunuzun uygulamaları ile web siteleri arasında veri ve oturum açma kimlik bilgilerini paylaşmak için ilişkili etki alanlarını yapılandırın. Bu profil, macOS 10.15 veya sonraki sürümleri çalıştıran cihazlara uygulanabilir.",
+ "macDeviceFeaturesExtensibleSingleSignOn": "macOS 10.15 veya sonraki sürümleri çalıştıran cihazlar için çoklu oturum açma (SSO) sağlayan bir uygulama uzantısı yapılandırın.",
+ "macDeviceFeaturesLoginItems": "Kullanıcılar cihazlarında oturum açtığında hangi uygulamaların, dosyaların ve klasörlerin açılacağını seçin. Kullanıcıların seçilen uygulamaların açılma şeklini değiştirmesini istemiyorsanız, uygulamaları kullanıcı yapılandırmasından gizleyebilirsiniz.",
+ "macDeviceFeaturesLoginWindow": "macOS oturum açma ekranının görünümünü ve kullanıcılara oturum açmadan önce ve açtıktan sonra sunulan işlevleri yapılandırın.",
+ "macExtensionsKernelExtensions": "10.13.2 veya üzeri bir sürüm çalıştıran macOS cihazlarda çekirdek uzantı ilkesini yapılandırmak için bu ayarları kullanın.",
+ "macGeneralDomains": "Son kullanıcı tarafından gönderilen veya alınan ve burada belirttiğiniz etki alanlarıyla eşleşmeyen e-postalar, güvenilmeyen olarak işaretlenir.",
+ "windows10EndpointProtectionApplicationGuard": "Microsoft Edge kullanırken Microsoft Defender Application Guard, ortamınızı kuruluşunuz tarafından güvenilir olarak tanımlanmayan sitelerden korur. Kullanıcılar, yalıtılmış ağ sınırınızda listelenmeyen siteleri ziyaret ettiğinde, siteler Hyper-V'de sanal bir göz atma oturumunda açılır. Güvenilir siteler, Cihaz Yapılandırmasında yapılandırılabilen bir ağ sınırı ile tanımlanır. Bu özelliğin yalnızca 64 bit Windows 10 veya sonraki bir sürümünü çalıştıran cihazlarda kullanılabildiğini unutmayın.",
+ "windows10EndpointProtectionCredentialGuard": "Credential Guard'ı etkinleştirmek şu gerekli ayarları etkinleştirir:\r\n
\r\n \r\n - Sanallaştırma Tabanlı Güvenliği Etkinleştir: Bir sonraki yeniden başlatmada sanallaştırma tabanlı güvenliği (VBS) açar. Sanallaştırma tabanlı güvenlik, güvenlik hizmetlerine destek sağlamak için Windows Hiper Yöneticisi'ni kullanır.
\r\n
\r\n - Doğrudan Bellek Erişimi ile Güvenli Önyükleme: VBS'yi Güvenli Önyükleme ve doğrudan bellek erişimi (DMA) ile açar.
\r\n
\r\n ",
+ "windows10EndpointProtectionDeviceGuard": "Microsoft Defender Uygulama Denetimi tarafından denetlenmesi gereken veya çalışması için güvenilebilecek ek uygulamaları seçin. Windows bileşenlerine ve Windows mağazasından alınan tüm uygulamalara çalışmaları için otomatik olarak güvenilir.
\r\n Uygulamalar \"Yalnızca denetim\" modunda çalışırken engellenmez. \"Yalnızca denetim\" modu tüm olayları yerel günlüklere kaydeder.\r\n ",
+ "windows10GeneralPrivacyPerApp": "\"Varsayılan gizlilik\"te tanımladığınızdan farklı bir gizlilik davranışı olması gereken uygulamaları ekleyin.",
+ "windows10NetworkBoundaryNetworkBoundary": "Ağ sınırı, bulut tarafından barındırılan etki alanı ve kuruluş ağı üzerindeki bilgisayarlar için IP adres aralıkları gibi kurumsal kaynakların listesidir. Bu konumlarda bulunan verileri korumaya yönelik ilkeler uygulamak için ağ sınırlarını tanımlayın.",
+ "windowsHealthMonitoring": "Windows işlevsel durum izleme ilkesini yapılandırın.",
+ "windowsPhoneGeneralApplicationRestrictions": "Windows Phone, kullanıcıların yasaklı uygulama listesinde belirtilen veya onaylı uygulamalar listesinde belirtilmeyen uygulamaları yüklemesini veya başlatmasını engelleyebilir. Tüm yönetilen uygulamalar onaylı listeye eklenmelidir."
+ },
"Inputs": {
"accountDomain": "Hesap etki alanı",
"accountDomainHint": "örneğin contosodomain",
@@ -9962,6 +9858,7 @@
"displayNameLabel": "Ad",
"displayVersionHint": "Uygulama sürümünü girin",
"displayVersionLabel": "Uygulama Sürümü",
+ "displayVersionLengthCheck": "Görüntü sürümünün uzunluğu en fazla 130 karakter olmalıdır",
"eBookCategoryNameLabel": "Varsayılan ad",
"emailAccount": "E-posta hesabı adı",
"emailAccountHint": "örn. Kurumsal E-posta",
@@ -10066,385 +9963,51 @@
"xmlFormatInvalid": "XML ilkesi biçimi geçersiz.",
"xmlTooLarge": "Giriş boyutu 1 MB'tan küçük olmalıdır."
},
- "Tooltips": {
- "PolicySettings": {
- "TouchId1": {
- "android": "Android'de PIN yerine parmak izi kimliği kullanılmasına izin verebilirsiniz. Kullanıcılardan, iş hesaplarıyla bu uygulamaya erişirken parmak izlerini sağlamaları istenir.",
- "iOS": "iOS/iPadOS cihazlarında, PIN numarası yerine parmak izi tanımlaması kullanımına izin verebilirsiniz. Kullanıcılar iş hesaplarını kullanarak bu uygulamaya eriştiklerinde, parmak izlerini sağlamaları istenir.",
- "mac": "Mac cihazlarda PIN numarası yerine parmak izi kullanımına izin verebilirsiniz. Kullanıcılar iş hesaplarını kullanarak bu uygulamaya eriştiklerinde, parmak izlerini sağlamaları istenir."
- },
- "appSharingFromLevel1": "Bu uygulamanın veri alabileceği uygulamaları belirtmek için aşağıdaki seçeneklerden birini belirtin:",
- "appSharingFromLevel2": "{0}: Kuruluş belgeleri veya hesaplarındaki verilerin yalnızca ilkeyle yönetilen diğer uygulamalardan alınmasına izin ver",
- "appSharingFromLevel3": "{0}: Kuruluş belgeleri veya hesaplarındaki verilerin tüm uygulamalardan alınmasına izin ver",
- "appSharingFromLevel4": "{0}: Kuruluş belgeleri veya hesaplarındaki verilerin tüm uygulamalardan alınmasına izin verme",
- "appSharingFromLevel5": "{0}: Tüm uygulamalardan veri aktarımına izin ver ve bir kullanıcı kimliği olmayan tüm gelen verileri kuruluş verileri olarak değerlendir.",
- "appSharingToLevel1": "Bu uygulamanın veri gönderebileceği uygulamaları belirtmek için aşağıdaki seçeneklerden birini belirtin:",
- "appSharingToLevel2": "{0}: Yalnızca ilkeyle yönetilen diğer uygulamalara kuruluş verileri gönderilmesine izin ver",
- "appSharingToLevel3": "{0}: Tüm uygulamalara kuruluş verileri gönderilmesine izin ver",
- "appSharingToLevel4": "{0}: Hiçbir uygulamaya kuruluş verileri gönderilmesine izin verme",
- "appSharingToLevel5": "{0}: Kayıtlı cihazlarda yalnızca ilke ile yönetilen uygulamalara aktarıma ve diğer MDM ile yönetilen uygulamara dosya aktarımına izin ver",
- "appSharingToLevel6": "{0}: Yalnızca ilke ile yönetilen uygulamalara aktarıma izin ver ve Birlikte Aç/Paylaş iletişim kutularını yalnızca ilke ile yönetilen uygulamaları görüntüleyecek şekilde filtrele",
- "conditionalEncryption1": "Kayıtlı bir cihazda cihaz şifrelemesi algılandığında dahili uygulama depolaması için uygulama şifrelemesini devre dışı bırakmak üzere {0} seçeneğini belirleyin.",
- "conditionalEncryption2": "Not: Intune yalnızca Intune MDM ile cihaz kaydını algılayabilir. Verilere yönetilmeyen uygulamalar tarafından erişilmediğinden emin olmak için harici uygulama depolaması yine de şifrelenir.",
- "contactSyncMac": "Devre dışı bırakılırsa uygulamalar yerel adres defterine kişi kaydedemez.",
- "contactsSync": "İlke tarafından yönetilen uygulamaların verileri cihazın yerel uygulamalarına (Kişiler, Takvim ve pencere öğeleri) kaydetmesini ve ilke tarafından yönetilen uygulamalardaki eklentilerin kullanılmasını önlemek için Engelle seçeneğini belirleyin. İzin ver seçeneğini belirlerseniz, bu özellikler ilke tarafından yönetilen uygulamada destekleniyorsa ve etkinse ilke tarafından yönetilen uygulama, verileri yerel uygulamalara kaydedebilir veya eklentileri kullanabilir.
Uygulamalar, uygulama yapılandırma ilkeleriyle ek yapılandırma özelliği sağlayabilir. Daha fazla bilgi için uygulamanın belgelerine bakın.",
- "encryptionAndroid1": "Intune mobil uygulama yönetim ilkesiyle ilişkilendirilen uygulamalar için, şifreleme Microsoft tarafından sağlanır. Veriler, mobil uygulama yönetimi ilkesindeki ayara göre dosya G/Ç işlemleri sırasında eş zamanlı olarak şifrelenir. Android üzerindeki yönetilen uygulamalar, platform şifreleme kitaplıklarından yararlanan CBC modunda AES-128 şifrelemesini kullanır. Şifreleme yöntemi FIPS 140-2 uyumlu değildir. SHA-256 şifrelemesi, SigAlg parametresini kullanan açık bir yönerge olarak desteklenir ve yalnızca 4.2 ve üzeri cihazlarda çalışır. Cihaz depolama alanındaki içerikler her zaman şifrelenir.",
- "encryptionAndroid2": "Uygulama ilkenizde şifreleme gerektirdiğinizde, cihazlarına erişmek için son kullanıcıların bir PIN ayarlaması ve kullanması gerekir. Cihaz erişimi için ayarlanmış bir PIN yoksa uygulamalar başlatılmaz ve son kullanıcıya “Şirketiniz, bu uygulamaya erişmek için öncelikle bir cihaz PIN'i etkinleştirmenizi gerektirdi.\" iletisi görüntülenir.",
- "encryptionMac1": "Intune mobil uygulama yönetim ilkesiyle ilişkilendirilen uygulamalar için şifreleme Microsoft tarafından sağlanır. Veriler, mobil uygulama yönetimi ilkesindeki ayara göre dosya G/Ç işlemleri sırasında eş zamanlı olarak şifrelenir. Mac üzerindeki yönetilen uygulamalar, platform şifreleme kitaplıklarından yararlanan CBC modunda AES-128 şifrelemesini kullanır. Şifreleme yöntemi FIPS 140-2 uyumlu değildir. SHA-256 şifrelemesi, SigAlg parametresini kullanan açık bir yönerge olarak desteklenir ve yalnızca 4.2 ve üzeri cihazlarda çalışır. Cihaz depolama alanındaki içerikler her zaman şifrelenir.",
- "faceId1": "Uygun olan yerlerde, PIN yerine yüz tanıma kullanımına izin verebilirsiniz. Kullanıcılar iş hesapları ile bu uygulamaya eriştiklerinde yüz kimliği sağlamaları istenir.",
- "faceId2": "Uygulama erişimi için PIN yerine yüz tanıma kullanmaya izin vermek için Evet seçeneğine tıklayın.",
- "managementLevelsAndroid1": "Bu ilkenin, Android cihaz yöneticisi cihazları, Android Enterprise cihazları veya yönetilmeyen cihazlar için geçerli olup olmayacağını belirtmek üzere bu seçeneği kullanın.",
- "managementLevelsAndroid2": "{0}: Yönetilmeyen cihazlar, Intune MDM yönetiminin algılanmadığı cihazlardır. Bu, 3. taraf MDM satıcılarını içerir.",
- "managementLevelsAndroid3": "{0}: Android Cihaz Yönetimi API'sini kullanan Intune tarafından yönetilen cihazlar.",
- "managementLevelsAndroid4": "{0}: Android Enterprise İş Profilleri veya Android Enterprise Tam Cihaz Yönetimi kullanan, Intune tarafından yönetilen cihazlar.",
- "managementLevelsIos1": "Bu ilkenin MDM yönetilen cihazlar veya yönetilmeyen cihazlara uygulanıp uygulanmayacağını belirtmek için bu seçeneği kullanın.",
- "managementLevelsIos2": "{0}: Yönetilmeyen cihazlar, Intune MDM yönetiminin algılanmadığı cihazlardır. Bu, 3. taraf MDM satıcılarını içerir.",
- "managementLevelsIos3": "{0}: Yönetilen cihazlar, Intune MDM tarafından yönetilir.",
- "minAppVersion": "Bir kullanıcının uygulamaya güvenli erişim sağlaması için sahip olması gereken en düşük Uygulama sürümünü belirtin.",
- "minAppVersionWarning": "Bir kullanıcının uygulamaya güvenli erişim sağlaması için sahip olması önerilen en düşük Uygulama sürümünü belirtin.",
- "minOsVersion": "Bir kullanıcının uygulamaya güvenli erişim sağlaması için sahip olması gereken en düşük işletim sistemi sürümünü belirtin.",
- "minOsVersionWarning": "Bir kullanıcının uygulamaya güvenli erişim sağlaması için sahip olması önerilen en düşük işletim sistemi sürümünü belirtin.",
- "minPatchVersion": "Kullanıcının uygulamaya güvenli erişmek için sahip olabileceği en eski gerekli Android güvenlik düzeltme eki düzeyini tanımlayın.",
- "minPatchVersionWarning": "Kullanıcının uygulamaya güvenli erişmek için sahip olabileceği en eski önerilen Android güvenlik düzeltme eki düzeyini tanımlayın.",
- "minSdkVersion": "Bir kullanıcının uygulamaya güvenli erişim sağlaması için sahip olması gereken en düşük Intune Uygulama Koruma İlkesi SKD'sı sürümünü belirtin.",
- "requireAppPinDefault": "Kayıtlı bir cihazda cihaz kilidi algılandığında uygulama PIN'ini devre dışı bırakmak için Evet'i seçin.
",
- "targetAllApps1": "İlkenizi herhangi bir yönetim durumunda olan cihazlardaki uygulamalara hedeflemek için bu seçeneği kullanın.",
- "targetAllApps2": "Kullanıcının ilkesi belirli bir yönetim durumu için hedeflendiyse ilke çatışması çözümleme sırasında bu ayarın yerine geçilir.",
- "touchId2": "Uygulama erişiminde PIN numarası yerine parmak izi kimliğini zorunlu kılmak için {0} seçeneğini belirtin."
- },
- "Tap": {
- "pinResetAfterNumberOfDays": "PIN numarasının kullanıcı tarafından sıfırlanması gerekmeden önce geçmesi gereken gün sayısını belirtin.",
- "previousPinBlockCount": "Bu ayar, Intune'un koruyacağı önceki PIN'lerin sayısını belirtir. Tüm yeni PIN'ler, Intune'un koruduğu PIN'lerden farklı olmalıdır."
+ "WindowsFeatureUpdate": {
+ "EndOFSupportStatus": {
+ "notSupported": "Desteklenmiyor",
+ "supportEnding": "Destek sonu",
+ "supported": "Destekleniyor"
+ }
},
- "WipPolicySettings": {
- "25": "",
- "allowWindowsSearch": "Bu Windows Search'ün şifrelenmiş verileri aramaya devam etmesine izin verir.",
- "authoritativeIpRanges": "Windows'un IP aralıklarını otomatik algılamasını geçersiz kılmak istiyorsanız bu ayarı etkinleştirin.",
- "authoritativeProxyServers": "Windows'un ara sunucuları otomatik algılamasını geçersiz kılmak istiyorsanız bu ayarı etkinleştirin.",
- "checkInput": "Girişin geçerliliğini denetleyin",
- "dataRecoveryCert": "Kurtarma sertifikası, şifreleme anahtarınız kaybolduğunda veya zarar gördüğünde şifreli dosyaları kurtarmak için kullanabileceğiniz özel bir Şifreleme Dosya Sistemi (EFS) sertifikasıdır. Kurtarma sertifikasını burada oluşturup belirtmeniz gerekir. Daha fazla bilgiyi burada bulabilirsiniz",
- "enterpriseCloudResources": "Kurumsal olarak değerlendirilecek ve Windows Bilgi Koruması ilkesiyle korunacak bulut kaynaklarını belirtin. Girişler '|' karakteriyle ayrılarak birden çok kaynak belirtilebilir.
Şirketinizde yapılandırılmış bir proxy varsa, belirttiğiniz bulut kaynaklarına giden trafiğin hangi proxy üzerinden yönlendirileceğini belirtebilirsiniz.
URL[,Proxy]|URL[,Proxy]
Proxy olmadan: contoso.sharepoint.com|contoso.visualstudio.com
Proxy ile: contoso.sharepoint.com,proxy.contoso.com|contoso.visualstudio.com,proxy.contoso.com
",
- "enterpriseIPv4Ranges": "Kurumsal ağınızı oluşturan IPv4 aralıklarını belirtin. Bunlar, kurumsal ağ sınırınızı tanımlamak için belirttiğiniz Kurumsal Ağ Etki Alanı Adları ile birlikte kullanılır.
Bu ayar, Windows Bilgi Koruması'nı etkinleştirmek için gereklidir.
Girişler virgülle ayrılarak birden çok aralık belirtilebilir.
Örneğin: 3.4.0.1-3.4.255.255,192.168.1.1-192.168.255.255
",
- "enterpriseIPv6Ranges": "Kurumsal ağınızı oluşturan IPv6 aralıklarını belirtin. Bunlar, kurumsal ağ sınırınızı tanımlamak için belirttiğiniz Kurumsal Ağ Etki Alanı Adları ile birlikte kullanılır.
Girişler virgülle ayrılarak birden çok aralık belirtilebilir.
Örneğin: 2001:4898:dc05::-2001:4898:dc05:ffff:ffff:ffff:ffff:ffff,2a01:110::-2a01:110:7fff:ffff:ffff:ffff:ffff:ffff
",
- "enterpriseInternalProxyServers": "Şirketinizde yapılandırılmış bir proxy varsa, Kurumsal Bulut Kaynakları ayarlarında belirtilen bulut kaynaklarına giden trafiğin hangi proxy üzerinden yönlendirileceğini belirtebilirsiniz.
Girişler noktalı virgülle ayrılarak birden fazla değer belirtilebilir.
Örneğin: contoso.internalproxy1.com;contoso.internalproxy2.com
",
- "enterpriseNetworkDomainNames": "Kurumsal ağınızı oluşturan DNS adlarını belirtin. Bunlar, kurumsal ağ sınırınızı tanımlamak için belirttiğiniz IP aralıklarıyla birlikte kullanılır. Girişler virgülle ayrılarak birden çok değer belirtilebilir.
Bu ayar, Windows Bilgi Koruması'nı etkinleştirmek için gereklidir.
Örneğin: corp.contoso.com,region.contoso.com
",
- "enterpriseProtectedDomainNames": "Şirket ağınızı oluşturan DNS adlarını belirtin. Bunlar, şirket ağı sınırlarınızı tanımlamak üzere belirttiğiniz IP aralıklarıyla birlikte kullanılır. Tek tek girişleri bir '|' ile ayırarak birden fazla değer belirtebilirsiniz.
Windows Bilgi Koruması'nı etkinleştirmek için bu ayar gereklidir.
Örneğin: sirket.contoso.com|bolge.contoso.com
",
- "enterpriseProxyServers": "Kurumsal ağınızda dışarı yönelik proxy'ler varsa, bunları burada belirtin. Proxy sunucusu adresi belirtirken, trafik akışı için izin verilecek ve Windows Bilgi Koruması ile korunacak bağlantı noktasını da belirtmeniz gerekir.
Not: Bu liste, Kurumsal İç Proxy Sunucu listenizdeki sunucuları içermemelidir. Girişler noktalı virgülle ayrılarak birden çok değer belirtilebilir.
Örneğin: proxy.contoso.com:80;proxy2.contoso.com:80
",
- "maxInactivityTime1": "Cihazın PIN'inin veya parolasının kilitlenmesine neden olan izin verilen en uzun boşta kalma süresini (dakika cinsinden) belirtir. Kullanıcılar Ayarlar uygulamasında belirtilen en uzun süreden daha kısa herhangi bir mevcut zaman aşımı değerini seçebilir. Bu ilke ile ayarlanana değer ne olursa olsun, Lumia 950 ve 950XL'nin en fazla 5 dakika zaman aşımı değeri olduğuna dikkat edin.",
- "maxInactivityTime2": "0 (varsayılan) - Bir zaman aşımı değeri tanımlanmaz. '0' varsayılan değeri 'Zaman aşımı tanımlanmadı' olarak yorumlanır.",
- "maxPasswordAttempts1": "Bu ilkenin, mobil cihazda ve masaüstünde farklı davranışları vardır.",
- "maxPasswordAttempts2": "Mobil cihazda, kullanıcı bu ilke ile ayarlanan değere ulaştığında cihaz silinir.",
- "maxPasswordAttempts3": "Masaüstünde, kullanıcı bu ilke ile ayarlanan değere ulaştığında bilgisayar silinmez. Onun yerine, masaüstü BitLocker kurtarma moduna geçirilerek veriler erişilemez ancak kurtarılabilir yapılır. BitLocker etkileştirilmemişse ilke zorlanamaz.",
- "maxPasswordAttempts4": "Başarısız deneme sınırına ulaşmadan önce, kullanıcı kilit ekranına gönderilir ve daha fazla başarısız denemenin bilgisayarı kilitleyeceği konusunda uyarılır. Kullanıcı sınıra ulaştığında cihaz otomatik olarak yeniden başlatılır ve BitLocker kurtarma sayfasını gösterir. Bu sayfa, kullanıcıya BitLocker kurtarma anahtarını sorar.",
- "maxPasswordAttempts5": "0 (varsayılan) - Hatalı PIN veya parola girildikten sonra cihaz asla silinmez.",
- "maxPasswordAttempts6": "Tüm ilke değerleri = 0 ise en güvenli değer 0'dır; aksi takdirde, En düşük ilke değeri en güvenli değerdir.",
- "mdmDiscoveryUrl": "MDM'ye kaydolan kullanıcıların kullanacağı MDM kayıt uç noktasının URL'sini belirtin. Varsayılan ayar olarak, bu Intune için belirtilmiştir.",
- "minimumPinLength1": "PIN için gerekli en az sayıda karakteri ayarlayan tamsayı değeri. Varsayılan değer 4'tür. Bu ilke ayarı için yapılandırabileceğiniz en küçük sayı 4'tür. Yapılandırabileceğiniz en büyük sayı, Maksimum PIN uzunluğu ilke ayarında yapılandırılan sayıdan veya 127 sayısından hangisi küçükse ondan küçük olmalıdır.",
- "minimumPinLength2": "Bu ilke ayarını yapılandırırsanız PIN uzunluğu bu sayıdan büyük veya bu sayıya eşit olmalıdır. Bu ilke ayarını devre dışı bırakır veya yapılandırmazsanız PIN uzunluğu 4'e eşit veya daha büyük olmalıdır.",
- "name": "Bu ağ sınırının adı",
- "neutralResources": "Şirketinizde kimlik doğrulama için yeniden yönlendirme uç noktaları varsa, bunları burada belirtin. Burada belirtilen konumlar, bağlantının yeniden yönlendirmeden önceki bağlamına bağlı olarak, kişisel ya da kurumsal olarak değerlendirilir.
Girişler virgülle ayrılarak birden çok değer belirtilebilir.
Örneğin: sts.contoso.com,sts.contoso2.com
",
- "passportForWork1": "Windows'ta oturum açma yöntemi olarak İş İçin Windows Hello'yu ayarlayan değer",
- "passportForWork2": "Varsayılan değer true'dur. Bu ilkeyi false olarak ayarlarsanız kullanıcı, sağlamanın gerekli olduğu Azure Active Directory'ye katılan cep telefonları dışında İş İçin Windows Hello'yu hiçbir yerde sağlayamaz.",
- "pinExpiration": "Bu ilke ayarı için yapılandırabileceğiniz en büyük sayı 730'dur. Bu ilke ayarı için yapılandırabileceğiniz en küçük sayı 0'dır. Bu ilke 0 olarak ayarlanırsa kullanıcının PIN'inin süresi asla sona ermez.",
- "pinHistory1": "Bu ilke ayarı için yapılandırabileceğiniz en büyük sayı 50'dir. Bu ilke ayarı için yapılandırabileceğiniz en küçük sayı 0'dır. Bu ilke 0 olarak ayarlanırsa önceki PIN'lerin depolanması gerekmez.",
- "pinHistory2": "Kullanıcının geçerli PIN'i kullanıcı hesabıyla ilişkilendirilmiş PIN'ler kümesine eklenir. PIN geçmişi PIN sıfırlama yoluyla korunmaz.",
- "protectUnderLock": "Cihaz kilitli durumdayken uygulama içeriği korunur.",
- "protectionModeBlock": "Engelle: Kurumsal verilerin korumalı uygulamalardan ayrılmasını engeller.
",
- "protectionModeOff": "Kapalı: Kullanıcı verileri korunan uygulamaların dışında yeniden konumlandırmakta özgürdür. Hiçbir eylem kaydedilmez.
",
- "protectionModeOverride": "Geçersiz kılmalara izin ver: Kullanıcı verileri korunan uygulamadan korunmayan uygulamaya yeniden konumlandırmayı denediğinde bu durum sorulur. Bu istemi geçersiz kılmayı seçerse eylem kaydedilir.
",
- "protectionModeSilent": "Sessiz: Kullanıcı verileri korunan uygulamaların dışında yeniden konumlandırmakta özgürdür. Bu eylemler kaydedilir.
",
- "required": "Gerekli",
- "revokeOnMdmHandoff": "Windows 10, sürüm 1703'te eklenmiştir. Bu ilke, bir cihaz MAM'den MDM'ye yükseltildiğinde WIP anahtarlarının iptal edilip edilmeyeceğini denetler. \"Kapalı\" olarak ayarlanırsa, anahtarlar iptal edilmez ve kullanıcı yükseltmeden sonra korumalı dosyalara erişmeye devam eder. MDM hizmeti MAM hizmeti ile aynı WIP EnterpriseID kullanılarak yapılandırıldıysa bu önerilir.",
- "revokeOnUnenroll": "Bir cihazın bu ilkeden kaydı kaldırıldığında şifreleme anahtarlarının iptal edilmesine neden olur.",
- "rmsTemplateForEdp": "RMS şifrelemesi için kullanılacak TemplateID GUID'si. Azure RMS şablonu, BT yöneticisinin RMS korumalı dosyaya kimlerin ne kadar süreyle erişebileceği ile ilgili ayrıntıları yapılandırmasını sağlar.",
- "showWipIcon": "Üzerine bir simge koyarak kurumsal bağlamda işlem yapan kullanıcının bunu bilmesini sağlar.",
- "useRmsForWip": "WIP için Azure RMS şifrelemesine izin verilip verilmeyeceğini belirtir."
+ "SecurityTemplate": {
+ "aSR": "Saldırı yüzeyini azaltma",
+ "accountProtection": "Hesap koruması",
+ "allDevices": "Tüm cihazlar",
+ "antivirus": "Virüsten Koruma",
+ "antivirusReporting": "Virüsten Koruma Raporlaması (Önizleme)",
+ "conditionalAccess": "Koşullu erişim",
+ "deviceCompliance": "Cihaz uyumluluğu",
+ "diskEncryption": "Disk şifrelemesi",
+ "eDR": "Uç nokta algılama ve yanıt",
+ "firewall": "Güvenlik duvarı",
+ "helpSupport": "Yardım ve destek",
+ "setup": "Kur",
+ "wdapt": "Uç Nokta için Microsoft Defender"
+ },
+ "Win32ReturnCodes": {
+ "CodeTypes": {
+ "failed": "Başarısız",
+ "hardReboot": "Donanımdan önyükleme",
+ "retry": "Yeniden Dene",
+ "softReboot": "Yazılımdan önyükleme",
+ "success": "Başarılı"
},
- "requireAppPin": "Kayıtlı bir cihazda cihaz kilidi algılandığında uygulama PIN'ini devre dışı bırakmak için Evet'i seçin.
Not: Intune, iOS/iPadOS'ta üçüncü taraf EMM çözümü ile yapılan cihaz kaydını algılayamaz.
"
- },
- "AppInfoBalloonText": {
- "Certificate": {
- "customSubjectName": "CN={{UserName}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US\r\nor\r\nCN={{AAD_Device_ID}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US",
- "keySize": "Anahtarda bulunan bit sayısını seçin.",
- "keyUsage": "Sertifikanın ortak anahtarını değiştirmek için gereken şifreleme eylemini belirtin.",
- "renewalThreshold": "Cihazın sertifika yenilemesi isteyebilmesi için izin verilen en yüksek kalan sertifika ömrü yüzdesini (yüzde 1 ila 99) girin. Intune'da tavsiye edilen miktar %20'dir (1-99).",
- "rootCert": "Önceden yapılandırılmış ve atanmış bir kök CA sertifikası profili seçin. CA sertifikası, bu profil (şu anda yapılandırdığınız) için sertifikayı veren CA'nın kök sertifikası ile eşleşmelidir.",
- "scepServerUrl": "SCEP aracılığıyla sertifika veren NDES Sunucusu için bir URL girin (HTTPS olmalıdır). Örneğin https://contoso.com/certsrv/mscep/mscep.dll",
- "scepServerUrls": "SCEP aracılığıyla sertifika veren NDES Sunucusu için bir veya daha fazla URL ekleyin (HTTPS olmalıdır). Örneğin https://contoso.com/certsrv/mscep/mscep.dll",
- "subjectAlternativeName": "Konu diğer adı",
- "subjectNameFormat": "Konu adı biçimi",
- "validityPeriod": "Sertifikanın süresinin dolmasına kalan süre miktarı. Sertifika şablonunda gösterilen geçerlilik süresine eşit veya bundan daha düşük bir değer girin. Varsayılan olarak bir yıl ayarlanır."
- },
- "appInstallContext": "Bu uygulamayla ilişkilendirilecek yükleme bağlamını belirtir. İkili mod uygulamaları için bu uygulama için istenen bağlamı seçin. Bu seçenek, diğer tüm uygulamalar için pakete göre önceden belirlenir ve değiştirilemez.",
- "autoUpdateMode": "Uygulamanın güncelleştirme önceliğini yapılandırın. Uygulamayı güncelleştirmeden önce cihazın WiFi'ya bağlı, şarj ediliyor ve etkin olarak kullanımda olmasını zorunlu kılmak için Varsayılan'ı seçin. Uygulamayı, geliştirici yayımladıktan hemen sonra; şarj durumuna, WiFi özelliğine veya cihazdaki son kullanıcı etkinliğine bakılmaksızın güncelleştirmek için Yüksek Öncelik'i seçin. Yüksek öncelik yalnızca DO cihazlarında devreye girer.",
- "configurationSettingsFormat": "Yapılandırma ayarları biçim metni",
- "ignoreVersionDetection": "Bunu, uygulama geliştiricisinin otomatik güncelleştirdiği uygulamalar (örneğin Google Chrome) için “Evet” olarak ayarlayın.",
- "ignoreVersionDetectionMacOSLobApp": "Uygulama geliştiricisi tarafından otomatik olarak güncelleştirilen uygulamalar veya yüklemeden önce yalnızca uygulama paketi kimliğini denetlemek için \"Evet\" seçeneğini belirleyin. Yüklemeden önce uygulama paketi kimliğini ve sürüm numarasını denetlemek için \"Hayır\" seçeneğini belirleyin.",
- "installAsManagedMacOSLobApp": "Bu ayar yalnızca macOS 11 ve üzeri için geçerlidir. Uygulama yüklenecek ancak macOS 10.15 ve önceki sürümlerde yönetilmeyecek.",
- "installContextDropdown": "Uygun yükleme bağlamını seçin. Cihaz bağlamı uygulamayı cihaza tüm kullanıcılar için yüklerken, kullanıcı bağlamı uygulamayı yalnızca hedeflenen kullanıcı için yükler.",
- "ldapUrl": "Bu, istemcilerin e-posta alıcıları için genel şifreleme anahtarlarını alabileceği LDAP ana bilgisayar adıdır. Anahtar kullanılabilir olduğunda e-postalar şifrelenir. Desteklenen biçimler: - ldap.example.com
\r\n- ldap.example.com:123
\r\n- ldap://ldap.example.com
- ldap://ldap.example.com:123
- ldaps://ldap.example.com
\r\n- ldaps://ldap.example.com:123
",
- "permissionsSettings": "İlişkili uygulama için çalışma zamanı izinlerini seçin.",
- "policyAssociatedApp": "Bu ilkenin ilişkilendirileceği uygulamayı seçin.",
- "policyConfigurationSettings": "Bu ilke için yapılandırma ayarlarını tanımlarken kullanmak istediğiniz yöntemi seçin.",
- "policyDescription": "İsteğe bağlı olarak, bu yapılandırma ilkesi için bir açıklama girebilirsiniz.",
- "policyEnrollmentType": "Bu ayarların cihaz yönetimi üzerinden mi yoksa Intune SDK'sı ile oluşturulan uygulamalar ile mi yönetileceğini seçin.",
- "policyName": "Bu yapılandırma ilkesi için bir ad girin.",
- "policyPlatform": "Bu uygulama yapılandırma ilkesinin geçerli olacağı platformu seçin.",
- "policyProfileType": "Bu uygulama yapılandırma profilinin uygulanacağı cihaz profili türlerini seçin",
- "policySMime": "Outlook S/MIME imzalama ve şifreleme ayarlarını yapılandırın.",
- "sMimeDeployCertsFromIntune": "Intune'dan Outlook ile kullanılmak üzere S/MIME sertifikaları dağıtılıp dağıtılmayacağını belirtin.\r\nIntune tüm imzalama ve şifreleme sertifikalarını Şirket Portalı aracılığıyla kullanıcılara dağıtır.",
- "sMimeEnable": "E-posta oluştururken S/MIME denetimlerinin etkin olup olmayacağını belirtin",
- "sMimeEnableAllowChange": "Kullanıcının, S/MIME etkinleştir ayarını değiştirmesine izin verilip verilmediğini belirtin.",
- "sMimeEncryptAllEmails": "Tüm e-postaların şifrelenip şifrelenmeyeceğini belirtin.\r\nŞifreleme, verileri şifre metnine dönüştürdüğünden metni yalnızca hedeflenen alıcı okuyabilir.",
- "sMimeEncryptAllEmailsAllowChange": "Kullanıcının, Tüm e-postaları şifrele ayarını değiştirmesine izin verilip verilmediğini belirtin.",
- "sMimeEncryptionCertProfile": "E-posta şifrelemesi için sertifika profilini belirtin.",
- "sMimeSignAllEmails": "Tüm e-postaların imzalanıp imzalanmayacağını belirtin.\r\nDijital imza, e-postanın gerçek olduğunu doğrular ve aktarım sırasında içerikle oynanmamasını sağlar.",
- "sMimeSignAllEmailsAllowChange": "Kullanıcının, Tüm e-postaları imzala ayarını değiştirmesine izin verilip verilmediğini belirtin.",
- "sMimeSigningCertProfile": "E-posta imzalaması için sertifika profilini belirtin.",
- "sMimeUserNotificationType": "Kullanıcıları Outlook için S/MIME sertifikalarını almak üzere Şirket Portalı'nı açmaları gerektiği konusunda bilgilendirme yöntemi."
- },
- "WindowsQualityUpdateDaysUntilForcedReboot": {
- "oneDay": "1 gün",
- "twoDays": "2 gün",
- "zeroDays": "0 gün"
- },
- "Autopilot": {
- "AssignResourceAccount": {
- "createNewCommandMenu": "Yeni oluştur",
- "createNewResourceAccountInfo": "\r\nKayıt sırasında yeni bir kaynak hesabı oluşturun. Kaynak hesabı, Kaynak hesabı tablosuna hemen eklenir, ancak cihaz kaydedilinceye ve Surface Hub aboneliği doğrulanıncaya kadar etkin olmaz. Kaynak Hesapları hakkında daha fazla bilgi edinin
\r\n ",
- "createNewResourceTitle": "Yeni kaynak hesabı oluştur",
- "deviceNameInvalid": "Cihaz adı geçersiz bir biçimde",
- "deviceNameRequired": "Cihaz adı gerekiyor",
- "editResourceAccountLabel": "Düzenle",
- "selectExistingCommandMenu": "Mevcut olanı seç"
- },
- "Device": {
- "ComputerName": {
- "validFormat": "Adlar 15 karakter veya daha kısa olmalıdır ve harf (a-z, A-Z), sayı (0-9) ve kısa çizgi içerebilir. Adlar yalnızca sayı içeremez. Adlar boşluk içeremez."
- },
- "Header": {
- "addressableUserName": "Kullanımı Kolay Ad",
- "azureADDevice": "İlişkili Azure AD cihazı",
- "batch": "Grup Etiketi",
- "dateAssigned": "Atama tarihi",
- "deviceDisplayName": "Cihaz Adı",
- "deviceName": "Cihaz adı",
- "deviceUseType": "Cihaz kullanım türü",
- "enrollmentState": "Kayıt durumu",
- "intuneDevice": "İlişkili Intune cihazı",
- "lastContacted": "Son iletişim",
- "make": "Üretici",
- "model": "Model",
- "profile": "Atanan profil",
- "profileStatus": "Profil durumu",
- "purchaseOrderId": "Satın alma siparişi",
- "resourceAccount": "Kaynak hesabı",
- "serialNumber": "Seri numarası",
- "userPrincipalName": "Kullanıcı"
- }
- },
- "DeviceUseType": {
- "meetingAndPresentation": "Toplantı ve sunum",
- "teamCollaboration": "Ekip işbirliği"
- },
- "Devices": {
- "featureDescription": "Windows Autopilot, kullanıcılarınız için ilk kez çalıştırma deneyimini (OOBE) özelleştirmenize olanak tanır.",
- "importErrorStatus": "Bazı cihazlar içeri aktarılamadı. Daha fazla bilgi için buraya tıklayın.",
- "importPendingStatus": "İçeri aktarma sürüyor. Geçen süre: {0} dk. Bu işlem {1} dakikaya kadar sürebilir."
- },
- "DirectoryService": {
- "activeDirectoryAD": "Hibrit Azure AD ile katılan",
- "activeDirectoryADLabel": "Autopilot ile Hibrit Azure AD",
- "azureAD": "Azure AD'ye katıldı",
- "unknownType": "Bilinmeyen Tür"
- },
- "Filter": {
- "enrollmentState": "Durum",
- "profile": "Profil durumu"
- },
- "OOBE": {
- "AddressableUserName": {
- "validateEmpty": "Kullanıcı kolay adı boş olamaz."
- },
- "ApplyComputerNameTemplate": {
- "infoBalloon": "Kayıt sırasında cihazlarınıza ad eklemek için bir adlandırma şablonu oluşturun.",
- "label": "Cihaz adı şablonu uygula"
- },
- "ApplyComputerNameTemplateDisabled": {
- "label": "Hibrit Azure AD ile katılan türdeki Autopilot dağıtım profillerinde cihazlar, Etki Alanı Katılımı yapılandırmasında belirtilen ayarlar kullanılarak yapılandırılır."
- },
- "ComputerNameTemplate": {
- "emptyValue": "MyCompany-%RAND:4%",
- "label": "Bir ad girin",
- "noDisallowedChars": "Ad yalnızca alfasayısal karakterler, kısa çizgi, %SERIAL% veya %RAND:x içermelidir",
- "serialLength": "%SERIAL% ile 7'den fazla karakter kullanılamaz",
- "validateLessThan15Chars": "Ad, 15 karakter veya daha kısa olmalıdır",
- "validateNoSpaces": "Bilgisayar adları boşluk içeremez",
- "validateNotAllNumbers": "Ad ayrıca harf ve/veya kısa çizgi içermelidir",
- "validateNotEmpty": "Ad boş olamaz",
- "validateOnlyOneMacro": "Ad, %SERIAL% veya %RAND:x% makrolarından yalnızca birini içermelidir"
- },
- "ConfigureComputerNameTemplate": {
- "description": "Cihazlarınız için benzersiz bir ad oluşturun. Ad en fazla 15 karakter olmalıdır ve harf (a-z, A-Z), sayı (0-9) ve kısa çizgi içerebilir. Ad yalnızca sayıdan oluşamaz ve boşluk içeremez. Donanıma özgü bir seri numarası eklemek için %SERIAL% makrosunu kullanın. Alternatif olarak rastgele bir sayı dizesi eklemek için x değişkeninin basamak sayısına eşit olduğu %RAND:x% makrosunu kullanın."
- },
- "EnableWhiteGlove": {
- "infoBalloon": "Cihazı kaydetmek ve sistem bağlamındaki tüm uygulama ve ayarları sağlamak amacıyla OOBE'yi kullanıcı kimlik doğrulaması olmadan çalıştırmak için Windows tuşuna 5 kere basmayı etkinleştirin. Kullanıcı bağlamı uygulama ve ayarlar, kullanıcı oturum açtığında teslim edilir.",
- "label": "Önceden sağlanan dağıtıma izin ver"
- },
- "HybridAzureADSkipConnectivityCheck": {
- "infoBalloon": "Autopilot Hibrit Azure AD'ye katılma akışı, OOBE sırasında etki alanı denetleyicisi bağlantısı oluşturmasa bile devam eder.",
- "label": "AD bağlantı denetimini atla (önizleme)"
- },
- "accountType": "Kullanıcı hesabı türü",
- "accountTypeInfo": "Cihazdaki kullanıcıların yönetici mi yoksa standart kullanıcı mı olduğunu belirtin. Bu ayarın Genel Yönetici veya Şirket Yöneticisi hesaplarına uygulanmadığını unutmayın. Bu hesaplar, Azure AD'deki tüm yönetici özelliklerine erişebileceği için standart kullanıcılar atanamaz.",
- "configOOBEInfo": "\r\nAutopilot cihazlarınızın ilk kez kullanım deneyimini yapılandırın\r\n
",
- "configureDevice": "Dağıtım modu",
- "configureDeviceHintForSurfaceHub2": "Autopilot, Surface Hub 2 için yalnızca kendi kendine dağıtım modunu destekler. Bu mod, kullanıcıyı kayıtlı cihazla ilişkilendirmediğinden kullanıcı kimlik bilgilerini gerektirmez.",
- "configureDeviceHintForWindowsPC": "\r\n Dağıtım modu, bir kullanıcının cihaz sağlamak için kimlik bilgilerini girmesi gerekip gerekmediğini belirler.\r\n
\r\n \r\n - \r\n Kullanıcı Temelli: Cihazlar, cihazı kaydeden kullanıcıyla ilişkilendirilir ve cihazın sağlanması için kullanıcı kimlik bilgileri gereklidir\r\n
\r\n - \r\n Otomatik dağıtım (önizleme): Cihazlar, cihazı kaydeden kullanıcıyla ilişkilendirilmez ve cihazın sağlanması için kullanıcı kimlik bilgileri gerekli değildir\r\n
\r\n
",
- "createSurfaceHub2Info": "Surface Hub 2 cihazlarınız için Autopilot kayıt ayarlarını yapılandırın. Autopilot'ta ilk kez çalıştırma deneyimi sırasında kullanıcı kimliğini doğrulamayı atlama varsayılan olarak etkindir. Surface Hub 2 için Windows Autopilot hakkında daha fazla bilgi edinin.",
- "createWindowsPCInfo": "\r\n\r\nKendi kendine dağıtım modunda Autopilot cihazları için şu seçenekler otomatik olarak etkinleştirilir:\r\n
\r\n\r\n - \r\n İş veya Ev kullanımı seçimini atla\r\n
\r\n - \r\n OEM kaydını ve OneDrive yapılandırmasını atla\r\n
\r\n - \r\n OOBE'de kullanıcı kimlik doğrulamasını atla\r\n
\r\n
",
- "endUserDevice": "Kullanıcı Temelli",
- "hideEscapeLink": "Hesabı değiştirme seçeneklerini gizle",
- "hideEscapeLinkInfo": "Hesabı değiştirme ve farklı bir hesapla yeniden başlama seçenekleri, sırasıyla şirket oturum açma sayfasında ve etki alanı hata sayfasında ilk cihaz kurulumu sırasında görüntülenir. Bu seçenekleri gizlemek için Azure Active Directory'de şirket markasını yapılandırmanız gerekir (Windows 10, 1809 ve üzeri bir sürüm veya Windows 11 gerektirir).",
- "info": "Autopilot profili ayarları, kullanıcıların Windows'u ilk kez başlattığında göreceği ilk çalıştırma deneyimini tanımlar.",
- "language": "Dil (Bölge)",
- "languageInfo": "Kullanılacak dili ve bölgeyi belirtin.",
- "licenseAgreement": "Microsoft Yazılım Lisans Koşulları",
- "licenseAgreementInfo": "EULA'nın kullanıcılara gösterilip gösterilmeyeceğini belirtin.",
- "plugAndForgetDevice": "Otomatik Dağıtım (önizleme)",
- "plugAndForgetGA": "Kendi Kendine Dağıtılıyor",
- "privacySettingWarning": "Windows 10, sürüm 1903 ve sonraki sürümleri veya Windows 11’i çalıştıran cihazlarda, tanılama verilerinin toplanmasına ilişkin varsayılan değer değişti. ",
- "privacySettings": "Gizlilik ayarları",
- "privacySettingsInfo": "Gizlilik ayarlarının kullanıcılara gösterilip gösterilmeyeceğini belirtin.",
- "showCortanaConfigurationPage": "Cortana yapılandırması",
- "showCortanaConfigurationPageInfo": "Göster seçeneği, başlangıçta Cortana yapılandırma girişini etkinleştirir.",
- "skipEULAWarning": "Lisans koşullarını gizleme hakkında önemli bilgiler",
- "skipKeyboardSelection": "Klavyeyi otomatik olarak yapılandırma",
- "skipKeyboardSelectionInfo": "True değerindeyse Dil ayarlı olduğunda klavye seçimi sayfasını atlayın.",
- "subtitle": "Autopilot profilleri",
- "title": "İlk çalıştırma deneyimi (OOBE)",
- "useOSDefaultLanguage": "İşletim sistemi varsayılanı",
- "userSelect": "Kullanıcı seçimi"
- },
- "Sync": {
- "lastRequestedLabel": "Son eşitleme isteği",
- "lastSuccessfulLabel": "Son başarılı eşitleme",
- "syncInProgress": "Eşitleme sürüyor. En kısa zamanda tekrar gelin.",
- "syncInitiated": "Autopilot ayarları eşitlemesi başlatıldı.",
- "syncSettingsTitle": "Autopilot ayarlarını eşitle"
- },
- "Title": {
- "devices": "Windows Autopilot cihazları"
- },
- "Tooltips": {
- "addressableUserName": "Cihaz kurulumu sırasında görüntülenen karşılama adı.",
- "azureADDevice": "İlişkili cihaz için cihaz ayrıntılarına gidin. Yok, ilişkili cihaz olmadığını gösterir.",
- "batch": "Bir cihaz grubunu tanımlamak için kullanılabilen bir dize özniteliği. Intune'un Grup Etiketi alanı, Azure AD cihazlarındaki OrderID özniteliğine eşlenir.",
- "dateAssigned": "Profilin cihaza atandığı tarihin zaman damgası.",
- "deviceDisplayName": "Bir cihaz için benzersiz bir ad yapılandırın. Bu ad, Hibrit Azure AD ile katılan dağıtımlarda yok sayılacak. Cihaz adı, Hibrit Azure AD cihazları için hala etki alanı katılım profilinden gelir.",
- "deviceName": "Kullanıcı, cihazı bulmaya ve bu cihaza bağlanmaya çalışırken görüntülenen ad.",
- "deviceUseType": " Cihaz, seçiminize bağlı olarak ayarlanır. Daha sonra her zaman Ayarlar'dan değişiklik yapabilirsiniz.\r\n \r\n - Toplantılar ve sunular için, Windows Hello açık değildir ve her oturumdan sonra veriler kaldırılır.\r\n
\r\n - Ekip işbirliği için, Windows Hello açıktır ve profiller hızlı oturum açma için kaydedilir
\r\n
",
- "enrollmentState": "Cihazın kaydolup kaydolmadığını belirtir.",
- "intuneDevice": "İlişkili cihaz için cihaz ayrıntılarına gidin. Yok, ilişkili cihaz olmadığını gösterir.",
- "lastContacted": "Cihazla son bağlantı kurulan tarihin zaman damgası.",
- "make": "Seçilen cihazın üreticisi.",
- "model": "Seçilen cihazın modeli",
- "profile": "Cihaza atanmış profilin adı.",
- "profileStatus": "Cihazın profile atanıp atanmadığını belirtir.",
- "purchaseOrderId": "Satın Alma Sipariş Kimliği",
- "resourceAccount": "Cihazın kimliği veya kullanıcı asıl adı (UPN).",
- "serialNumber": "Seçilen cihazın seri numarası.",
- "userPrincipalName": "Cihazın kurulumu sırasında kullanıcı, kimlik doğrulama bilgisini önceden dolduracaktır."
- },
- "allDevices": "Tüm cihazlar",
- "allDevicesAlreadyAssignedError": "Tüm Cihazlara zaten bir Autopilot profili atandı.",
- "assignFailedDescription": "{0} için atamalar güncelleştirilemedi.",
- "assignFailedTitle": "Autopilot profil atamaları güncelleştirilemedi.",
- "assignSuccessDescription": "{0} atamaları başarıyla güncelleştirildi.",
- "assignSuccessTitle": "Autopilot profil atamaları başarıyla güncelleştirildi.",
- "assignSufaceHub2ProfileNextStep": "Bu dağıtım için sonraki adımlar",
- "assignSurfaceHub2ProfileToDeviceGroup": "1. Bu profili en az bir cihaz grubuna atayın",
- "assignSurfaceHub2ProfileToResourceAccount": "2. Bu profili dağıttığınız her Surface Hub cihazına bir kaynak hesabı atayın",
- "assignedDevicesCount": "Atanan cihazlar",
- "assignedDevicesResourceAccountDescription": "Bu profilin bir cihaza dağıtılması için cihaza bir Kaynak hesabı atamanız gerekir. Mevcut bir Kaynak hesabını atamak veya yeni bir hesap oluşturmak için tek seferde bir cihaz seçin. Kaynak hesapları hakkında daha fazla bilgi edinin
",
- "assignedDevicesResourceAccountStatusBarMessage": "Bu tablo yalnızca bu profile atanmış olan Surface Hub 2 cihazlarını listeler.",
- "assigningDescription": "{0} atamaları güncelleştiriliyor.",
- "assigningTitle": "Autopilot profil atamaları güncelleştiriliyor.",
- "cannotDeleteMessage": "Bu profil gruplara atanmış. Silmek için önce bu profilden tüm grupların atamasını kaldırmanız gerekir.",
- "cannotDeleteTitle": "{0} silinemiyor",
- "createdDateTime": "Oluşturuldu",
- "deleteMessage": "Bu Autopilot profilini silerseniz bu profile atanmış tüm cihazlar Atanmamış olarak görüntülenir.",
- "deleteMessageWithPolicySet": "{0} bir veya daha fazla ilke kümesine eklenmiş. {0} öğesini silerseniz, bu öğeyi artık bu ilke kümeleri aracılığıyla atayamazsınız.",
- "deleteTitle": "Bu profili silmek istediğinizden emin misiniz?",
- "description": "Açıklama",
- "deviceType": "Cihaz türü",
- "deviceUse": "Cihaz kullanımı",
- "directoryServiceHintForSurfaceHub2": " \r\n Autopilot, Surface Hub 2 cihazları için yalnızca Azure AD'ye Katılmış olarak desteklenir. Cihazların kuruluşunuzda Active Directory'ye (AD) katılma yöntemini belirtin.\r\n
\r\n \r\n - \r\n Azure AD'ye katılmış: Şirket içi Windows Server Active Directory olmadan yalnızca bulut.\r\n
\r\n
\r\n ",
- "directoryServiceHintForWindowsPC": "\r\n \r\n Cihazların kuruluşunuzda Active Directory'ye (AD) nasıl katıldığını belirtin:\r\n
\r\n \r\n - \r\n Azure AD'ye katıldı: Şirket içi Windows Server Active Directory olmadan yalnızca bulutta\r\n
\r\n
\r\n ",
- "getAssignedDevicesCountError": "Atanan cihaz sayısı getirilirken bir hata oluştu.",
- "getAssignmentsError": "Autopilot profil atamaları getirilirken bir hata oluştu.",
- "harvestDeviceId": "Hedeflenen tüm cihazları Autopilot'a dönüştür",
- "harvestDeviceIdDescription": "Bu profil, varsayılan olarak yalnızca Autopilot hizmetinden eşitlenen Autopilot cihazlarına uygulanabilir.",
- "harvestDeviceIdInfo": "\r\n Zaten kayıtlı değillerse, hedeflenen tüm cihazları Autopilot'a kaydetmek için Evet'i seçin. Kayıtlı cihazlar, bir sonraki Windows İlk Kez Çalıştırma Deneyimi'nden (OOBE) geçişlerinde, atanan Autopilot senaryosunu tamamlar.\r\n
\r\n Bazı Autopilot senaryoları için belirli en düşük Windows derlemelerinin gerektiğini lütfen unutmayın. Lütfen cihazınızda senaryoyu tamamlamak için gereken minimum derlemenin bulunduğundan emin olun.\r\n
\r\n Bu profili kaldırdığınızda, etkilenen cihazlar Autopilot'tan kaldırılmaz. Bir cihazı Autopilot'tan kaldırmak için Windows Autopilot Cihazları görünümünü kullanın.\r\n ",
- "harvestDeviceIdWarning": "Dönüşümden sonra Autopilot cihazları yalnızca Autopilot cihazları listesinden silinerek geri döndürülebilir.",
- "holoLensCommandMenu": "HoloLens",
- "info": "Windows Autopilot dağıtım profilleri cihazlarınızın ilk çalıştırma deneyimini özelleştirmenize olanak sağlar.",
- "invalidProfileNameMessage": "\"{0}\" karakterine izin verilmiyor",
- "joinTypeLabel": "Azure AD'ye farklı katıl",
- "lastModifiedDateTime": "Son değiştirme:",
- "name": "Ad",
- "noAutopilotProfile": "Autopilot profili yok",
- "notEnoughPermissionAssignedError": "Bu profili seçili gruplarınızdan en az birine atamak için yeterli izniniz yok. Lütfen yöneticinize başvurun.",
- "profile": "profil",
- "resourceAccountStatusBarMessage": "Bu profilin dağıtıldığı her Surface Hub 2 cihazı için bir Kaynak Hesabı gerekir. Daha fazla bilgi için tıklayın.",
- "selectServices": "Cihazların katılacağı dizin hizmetini seçin",
- "surfaceHub2CommandMenu": "Surface Hub 2",
- "surfaceHub2SCommandMenu": "Surface Hub 2S",
- "userAffinityLabel": "Dağıtım modu",
- "windowsPCCommandMenu": "Windows Kişisel Bilgisayarı",
- "directoryServiceLabel": "Azure AD'ye katılma türü:"
- },
- "AppInformationTab": {
- "Error": {
- "multipleChildApps": "macOS LOB uygulaması, yalnızca karşıya yüklenen paket tek bir uygulama içerdiğinde yönetilen olarak yüklenebilir."
- },
- "Info": {
- "AppStoreUrl": {
- "android": "Google Play Store'daki uygulama açıklamasının bağlantısını girin. Örneğin:",
- "androidLink": "https://play.google.com/store/apps/details?id=com.microsoft.office.outlook",
- "windows": "Microsoft Store'daki uygulama açıklamasının bağlantısını girin. Örneğin:",
- "windowsLink": "https://www.microsoft.com/en-us/p/microsoft-to-do-lists-tasks-reminders/9nblggh5r558"
- },
- "appPackageFile": "Cihaza dışarıdan yüklenebilecek biçimdeki uygulamanızı içeren dosya. Geçerli paket türleri arasında şunlar bulunur: Android (.apk), iOS (.ipa), macOS (.intunemac), Windows (.msi, .appx, .appxbundle, .msix ve .msixbundle).",
- "applicableDeviceType": "Bu uygulamayı yükleyebilecek cihaz türlerini seçin.",
- "category": "Kullanıcıların Şirket Portalı'nda sıralama ve arama yapmasını kolaylaştırmak için uygulamayı kategorilere ayırın. Birden çok kategori seçebilirsiniz.",
- "categoryLink": "https://docs.microsoft.com/en-us/intune/apps/apps-add#create-and-edit-categories-for-apps",
- "description": "Kullanıcıların uygulamanın ne olduğunu ve/veya uygulamada neler yapabileceklerini anlamalarına yardımcı olun. Bu açıklama Şirket Portalı'nda kullanıcılar tarafından görülebilir.",
- "developer": "Uygulamayı geliştiren şirket veya kişinin adı. Bu bilgiler, yönetim merkezinde oturum açan kişiler tarafından görülebilir.",
- "displayVersion": "Uygulamanın sürümü. Bu bilgiler, Şirket Portalı'nda kullanıcılar tarafından görülebilir.",
- "infoUrl": "Kişileri uygulama hakkında daha fazla bilgi verilen bir web sitesi veya belge bağlantısına yönlendirin. Bilgi URL'si Şirket Portalı'nda kullanıcılar tarafından görülebilir.",
- "isFeatured": "Öne çıkan uygulamalar, kullanıcıların hızlıca erişebilmesi için Şirket Portalı'nda dikkat çekici bir şekilde sunulur.",
- "learnMore": "Daha fazla bilgi",
- "logo": "Uygulama ile ilişkili logoyu karşıya yükleyin. Bu logo, Şirket Portalı'nda uygulamanın yanında görüntülenir.",
- "macOSDmgAppPackageFile": "Uygulamanızın bir cihaza dışarıdan yüklenebilen bir formatta bulunduğu bir dosya. Geçerli paket türü: .dmg.",
- "minOperatingSystem": "Uygulamanın yüklenebileceği en eski işletim sistemi sürümünü seçin. Uygulamayı daha eski işletim sistemine sahip bir cihaza atarsanız, uygulama yüklenmez.",
- "name": "Uygulama için bir ad ekleyin. Bu ad, Intune uygulamaları listesinde ve Şirket Portalı'nda kullanıcılar tarafından görülebilir.",
- "notes": "Uygulama hakkında ek notlar ekleyin. Notlar, Yönetim Merkezi'nde oturum açan kişiler tarafından görülebilir.",
- "owner": "Kuruluşunuzda bu uygulama için lisanslamayı yöneten veya uygulamanın iletişim noktası olan kişinin adı. Bu ad, yönetim merkezinde oturum açan kişiler tarafından görülebilir.",
- "packageName": "Uygulamanın paket adını almak için cihazın üreticisine başvurun. Örnek paket adı: com.example.app",
- "privacyUrl": "Uygulamanın gizlilik ayarları ve koşulları hakkında daha fazla bilgi edinmek isteyen kişiler için bir bağlantı belirtin. Gizlilik URL'si Şirket Portalı'nda kullanıcılar tarafından görülebilir.",
- "publisher": "Uygulamayı dağıtan geliştiricinin veya şirketin adı. Bu bilgiler, Şirket Portalı'nda kullanıcılar tarafından görülebilir.",
- "selectApp": "Intune ile dağıtmak istediğiniz iOS için App Store mağaza uygulamalarını arayın.",
- "useManagedBrowser": "Gerekirse, kullanıcı web uygulamasını açtığında uygulama, Microsoft Edge veya Intune Managed Browser gibi Intune korumalı bir tarayıcıda açılır. Bu ayar hem iOS hem de Android cihazlar için geçerlidir.",
- "useManagedBrowserLink": "https://docs.microsoft.com/en-us/intune/apps/app-configuration-managed-browser",
- "win32AppPackageFile": "Cihaza dışarıdan yüklenebilecek biçimdeki uygulamanızı içeren dosya. Geçerli paket türü: .intunewin."
- },
- "descriptionPreview": "Önizleme",
- "descriptionRequired": "Açıklama gerekiyor.",
- "editDescription": "Açıklamayı Düzenle",
- "name": "Uygulama bilgileri",
- "nameForOfficeSuitApp": "Uygulama paketi bilgileri"
- },
+ "Columns": {
+ "codeType": "Kod türü",
+ "returnCode": "Dönüş kodu"
+ },
+ "bladeTitle": "Dönüş kodları",
+ "gridAriaLabel": "Dönüş kodları",
+ "header": "Yükleme sonrası davranışını göstermek için dönüş kodları belirtin:",
+ "onAddAnnounceMessage": "Dönüş kodu {1} öğeden {0} tanesini ekledi",
+ "onDeleteSuccess": "{0} dönüş kodu başarıyla silindi",
+ "returnCodeAlreadyUsedValidation": "Dönüş kodu zaten kullanılıyor.",
+ "returnCodeMustBeIntegerValidation": "Dönüş kodu tamsayı olmalıdır.",
+ "returnCodeShouldBeAtLeast": "Dönüş kodu en az {0} olmalıdır.",
+ "returnCodeShouldBeAtMost": "Dönüş kodu en çok {0} olmalıdır.",
+ "selectorLabel": "Dönüş kodları"
+ },
"NotificationMessage": {
"NotificationMessageTemplatesTab": {
"arabic": "Arapça",
@@ -10516,84 +10079,599 @@
"localeLabel": "Yerel ayar",
"isDefaultLocale": "Varsayılan Değer"
},
- "Win32Program": {
- "DeviceRestartBehaviorOptions": {
- "allow": "Uygulama yüklemesi, cihazın yeniden başlatılmasını zorlayabilir",
- "basedOnReturnCode": "Dönüş kodlarına dayalı davranışı belirle",
- "force": "Intune zorunlu bir cihaz yeniden başlatma işlemi gerçekleştirecek",
- "suppress": "Belirli bir eylem yok"
- },
- "RunAsAccountOptions": {
- "system": "Sistem",
- "user": "Kullanıcı"
- },
- "bladeTitle": "Program",
- "deviceRestartBehavior": "Cihaz yeniden başlatma davranışı",
- "deviceRestartBehaviorTooltip": "Uygulama başarıyla yüklendikten sonra cihaz yeniden başlatma davranışını seçin. Cihazı dönüş kodları yapılandırma ayarlarına bağlı olarak yeniden başlatmak için 'Davranışı dönüş kodlarına göre belirle' seçeneğini belirleyin. MSI tabanlı uygulamaların yüklenmesi sırasında cihaz yeniden başlatma işlemlerini ertelemek için 'Belirli bir eylem yok' seçeneğini belirleyin. Uygulama yüklemesinin yeniden başlatmayı ertelemeden tamamlanmasına izin vermek için 'Uygulama yüklemesi cihazın yeniden başlatılmasını zorlayabilir' seçeneğini belirleyin. Her başarılı uygulama yüklemesinden sonra cihazı yeniden başlatmak için 'Intune zorunlu bir cihaz yeniden başlatma zorlayacak' seçeneğini belirleyin.",
- "header": "Bu uygulamayı yükleme ve kaldırma komutlarını belirtin:",
- "installCommand": "Yükleme komutu",
- "installCommandMaxLengthErrorMessage": "Yükleme komutu, izin verilen maksimum uzunluk olan 1024 karakteri aşamaz.",
- "installCommandTooltip": "Bu uygulamayı yüklemek için kullanılan yükleme komut satırının tamamı.",
- "runAs32Bit": "Yükleme ve kaldırma komutlarını 64 bit istemcilerde 32 bit işlemde çalıştır",
- "runAs32BitTooltip": "Uygulamayı 64 bit istemcilerde 32 bit bir işlemde yüklemek ve kaldırmak için 'Evet' seçeneğini belirleyin. Uygulamayı 64 bit istemcilerde 64 bit bir işlemde yüklemek ve kaldırmak için 'Hayır' (varsayılan) seçeneğini belirleyin. 32 bit istemciler, her zaman 32 bit işlemi kullanır.",
- "runAsAccount": "Yükleme davranışı",
- "runAsAccountTooltip": "Destekleniyorsa, bu uygulamayı tüm kullanıcılara yüklemek için 'Sistem'i seçin. Uygulamayı cihazda oturum açmış kullanıcıya yüklemek için 'Kullanıcı'yı seçin. Çift amaçlı MSI uygulamalarında değişiklikler, uygulamanın asıl yüklemesinde uygulanan değer geri yüklenene kadar güncelleştirmelerin ve kaldırmaların tamamlanmasını önler.",
- "selectorLabel": "Program",
- "uninstallCommand": "Kaldırma komutu",
- "uninstallCommandTooltip": "Bu uygulamayı kaldırmak için kullanılan kaldırma komut satırının tamamı."
- },
- "OutlookAppConfigSettings": {
- "AllowUserToChangeSetting": {
- "title": "Kullanıcının ayar değiştirmesine izin ver",
- "tooltip": "Kullanıcının ayarı değiştirmesine izin verilip verilmediğini belirtin."
- },
- "AllowWorkAccounts": {
- "title": "Yalnızca iş veya okul hesaplarına izin ver",
- "tooltip": " Bu ayar etkinleştirildiğinde kullanıcılar Outlook'a kişisel e-posta ve depolama hesapları ekleyemez. Kullanıcı Outlook'a kişisel hesap eklemişse kişisel hesabı kaldırması istenir. Kullanıcı bu hesabı kaldırmazsa iş veya okul hesabı eklenemez."
- },
- "BlockExternalImages": {
- "title": "Harici görüntüleri engelle",
- "tooltip": "Harici görüntüleri engelleme özelliği etkinleştirildiğinde uygulama İnternet'te barındırılan ve ileti gövdesine ekli görüntülerin indirilmesini engeller. Yapılandırılmadı olarak ayarlandığında varsayılan uygulama ayarı Kapalı'dır"
- },
- "ConfigureEmail": {
- "title": "E-posta hesabı ayarlarını yapılandır"
- },
- "DefaultAppSignatureSetting": {
- "Tooltip": {
- "android": "Varsayılan uygulama imzası, uygulamanın ileti oluşturma sırasında varsayılan imza olarak \"Android için Outlook'u edinin\" imzasını kullanıp kullanmayacağını belirtir. Ayar Kapalı olarak yapılandırıldıysa varsayılan imza kullanılmaz, ancak kullanıcılar kendi imzalarını ekleyebilir.\r\n\r\nYapılandırılmadı olarak ayarlandığında, varsayılan uygulama ayarı Açık olarak ayarlanır.",
- "iOS": "Varsayılan uygulama imzası, uygulamanın ileti oluşturma sırasında varsayılan imza olarak \"iOS için Outlook'u edinin\" imzasını kullanıp kullanmayacağını belirtir. Ayar Kapalı olarak yapılandırıldıysa varsayılan imza kullanılmaz, ancak kullanıcılar kendi imzalarını ekleyebilir.\r\n\r\nYapılandırılmadı olarak ayarlandığında, varsayılan uygulama ayarı Açık olarak ayarlanır."
- },
- "title": "Varsayılan uygulama imzası"
- },
- "OfficeFeedReplies": {
- "title": "Keşif Akışı",
- "tooltip": "Keşif Akışı, en sık erişilen Office dosyalarınızı öne çıkarır. Kullanıcı için Delve etkinleştirildiğinde, bu akış da varsayılan olarak etkinleştirilir. Yapılandırılmadı olarak ayarlandığında, varsayılan uygulama ayarı Açık olarak belirlenir."
- },
- "OrganizeMailByThread": {
- "title": "Postaları yazışmaya göre düzenleme",
- "tooltip": "Outlook varsayılan olarak, posta konuşmalarını yazışmalardan oluşan bir görüşme görünümünde toplar. Bu ayar devre dışı bırakılırsa Outlook her bir postayı ayrı ayrı görüntüler ve bunları yazışmaya göre gruplandırmaz."
- },
- "PlayMyEmails": {
- "title": "E-postalarımı Oynat",
- "tooltip": "E-postalarımı Oynat özelliği uygulamada varsayılan olarak etkin değildir ancak uygun kullanıcıların gelen kutusunda bir başlık olarak öne çıkarılır. Kapalı olarak ayarlandığında, bu özellik uygulamada uygun kullanıcılar için öne çıkarılmaz. Bu özellik Kapalı olarak ayarlansa bile kullanıcılar, E-postalarımı Oynat özelliğini uygulamadan el ile etkinleştirmeyi seçebilir. Yapılandırılmadı olarak ayarlandığında varsayılan uygulama ayarı Açık olur ve özellik uygun kullanıcılar için öne çıkarılır."
- },
- "SuggestedReplies": {
- "title": "Önerilen yanıtlar",
- "tooltip": "Bir iletiyi açtığınızda Outlook, iletinin altında yanıtlar önerebilir. Önerilen bir yanıtı seçerseniz göndermeden önce bunu düzenleyebilirsiniz."
- },
- "SyncCalendars": {
- "title": "Takvimleri Eşitle",
- "tooltip": "Kullanıcıların Outlook takvimini yerel takvim uygulamasıyla ve veritabanıyla eşitleyip eşitleyemeyeceğini yapılandırın."
- },
- "TextPredictions": {
- "title": "Metin Tahminleri",
- "tooltip": "Outlook, siz ileti oluştururken sözcük ve tümceler önerebilir. Outlook öneri sunduğunda öneriyi kabul etmek için kaydırın. Yapılandırılmadı olarak ayarlandığında varsayılan uygulama ayarı Açık olarak ayarlanır."
+ "WindowsQualityUpdateProfile": {
+ "Details": {
+ "DaysUntilForcedReboot": {
+ "label": "Yeniden başlatma zorlanmadan önce beklenecek gün sayısı"
+ },
+ "Description": {
+ "label": "Açıklama"
+ },
+ "Name": {
+ "label": "Ad"
+ },
+ "QualityUpdateRelease": {
+ "label": "Cihaz işletim sistemi sürümü şundan düşükse kalite güncelleştirmeleri yüklemesini hızlandır:"
+ },
+ "bladeTitle": "Kalite güncelleştirmeleri Windows 10 ve sonrası (Önizleme)",
+ "loadError": "Yüklenemedi!"
+ },
+ "TabName": {
+ "qualityUpdateSettings": "Ayarlar"
+ },
+ "infoBoxText": "Windows 10 ve sonrası için mevcut güncelleştirme kademeleri ilkesi dışında şu anda kullanılabilir tek ayrılmış kalite güncelleştirmesi denetimi, belirtilen yama seviyesinin gerisinde kalan cihazlar için kalite güncelleştirmelerini hızlandırabilir. Gelecekte ek denetimler kullanıma sunulacaktır.",
+ "warningBoxText": "Yazılım güncelleştirmelerinin hızlandırılması, gerektiğinde uyumluluğa ulaşma süresinin kısaltılmasına yardımcı olabilir ve son kullanıcı üretkenliği üzerinde daha büyük bir etkiye sahiptir. Mesai saatleri içinde yeniden başlatma deneyimi yaşama olasılıkları önemli ölçüde artar."
+ },
+ "TermsOfUse": {
+ "Languages": {
+ "addLanguage": "Add language",
+ "af": "Afrikaans",
+ "am": "Amharic",
+ "arSA": "Arabic (Saudi Arabia)",
+ "as": "Assamese",
+ "az": "Azerbaijani",
+ "be": "Belarusian",
+ "bg": "Bulgarian",
+ "bn": "Bangla",
+ "bnIN": "Bangla (India)",
+ "bs": "Bosnian",
+ "ca": "Catalan",
+ "caESvalencia": "Valencian (Spain)",
+ "cs": "Czech",
+ "cy": "Welsh",
+ "da": "Danish",
+ "de": "German",
+ "default": "Default",
+ "defaultDetailsTag": "{0} (Default)",
+ "el": "Greek",
+ "en": "English",
+ "enGB": "English (United Kingdom)",
+ "es": "Spanish",
+ "esMX": "Spanish (Mexico)",
+ "et": "Estonian",
+ "eu": "Basque",
+ "fa": "Persian",
+ "fi": "Finnish",
+ "fil": "Filipino",
+ "fr": "French",
+ "frCA": "French (Canada)",
+ "ga": "Irish",
+ "gd": "Scottish Gaelic",
+ "gl": "Galician",
+ "gu": "Gujarati",
+ "ha": "Hausa",
+ "he": "Hebrew",
+ "hi": "Hindi",
+ "hr": "Croatian",
+ "hu": "Hungarian",
+ "hy": "Armenian",
+ "id": "Indonesian",
+ "ig": "Igbo",
+ "is": "Icelandic",
+ "it": "Italian",
+ "ja": "Japanese",
+ "ka": "Georgian",
+ "kk": "Kazakh",
+ "km": "Khmer",
+ "kn": "Kannada",
+ "ko": "Korean",
+ "kok": "Konkani",
+ "kuArab": "Central Kurdish (Arabic)",
+ "ky": "Kyrgyz",
+ "languageOptions": "Language Options",
+ "lb": "Luxembourgish",
+ "lo": "Lao",
+ "lt": "Lithuanian",
+ "lv": "Latvian",
+ "mi": "Maori",
+ "mk": "Macedonian",
+ "ml": "Malayalam",
+ "mn": "Mongolian",
+ "mr": "Marathi",
+ "ms": "Malay",
+ "mt": "Maltese",
+ "ne": "Nepali",
+ "nl": "Dutch",
+ "nnNO": "Norwegian, Nynorsk (Norway)",
+ "no": "Norwegian",
+ "notSpecified": "Language not specified",
+ "nso": "Sesotho sa Leboa",
+ "or": "Odia",
+ "paArabPK": "Punjabi (Islamic Republic of Pakistan)",
+ "paIN": "Punjabi (India)",
+ "pl": "Polish",
+ "prs": "Dari",
+ "ptBR": "Portuguese (Brazil)",
+ "ptPT": "Portuguese (Portugal)",
+ "quz": "Quechua",
+ "ro": "Romanian",
+ "ru": "Russian",
+ "rw": "Kinyarwanda",
+ "sd": "Sindhi",
+ "si": "Sinhala",
+ "sk": "Slovak",
+ "sl": "Slovenian",
+ "sq": "Albanian",
+ "srCyrlBA": "Serbian (Cyrillic, Bosnia and Herzegovina)",
+ "srCyrlRS": "Serbian (Cyrillic, Serbia)",
+ "srLatnRS": "Serbian (Latin, Serbia)",
+ "sv": "Swedish",
+ "sw": "Kiswahili",
+ "ta": "Tamil",
+ "te": "Telugu",
+ "tg": "Tajik",
+ "th": "Thai",
+ "ti": "Tigrinya",
+ "tk": "Turkmen",
+ "tn": "Setswana",
+ "tr": "Turkish",
+ "tt": "Tatar",
+ "ug": "Uyghur",
+ "uk": "Ukrainian",
+ "ur": "Urdu",
+ "uz": "Uzbek",
+ "vi": "Vietnamese",
+ "wo": "Wolof",
+ "xh": "isiXhosa",
+ "yo": "Yoruba",
+ "zhHans": "Chinese (Simplified)",
+ "zhHant": "Chinese (Traditional)",
+ "zu": "isiZulu"
+ },
+ "AcceptanceExpirationFrequency": {
+ "annually": "Annually",
+ "biannually": "Bi-annually",
+ "monthly": "Monthly",
+ "quarterly": "Quarterly"
},
- "ThemesEnabled": {
- "title": "Etkin temalar",
- "tooltip": "Kullanıcının özel görsel tema kullanmasına izin verilip verilmeyeceğini belirtin."
- }
- },
+ "Wizard": {
+ "AgreementTargetEntityScope": {
+ "NotSelected": {
+ "label": "None selected"
+ },
+ "selectEntityTitle": "Select group",
+ "title": "Select group"
+ },
+ "PolicyFile": {
+ "Languages": {
+ "Empty": {
+ "default": "Select default language",
+ "nonDefault": "Select a language"
+ }
+ },
+ "Validations": {
+ "duplicateLanguage": "Oops, {0} appears to be selected multiple times. Language selection must be unique."
+ }
+ },
+ "PolicyTemplate": {
+ "InfoBox": {
+ "allGuestsAllApps": "A conditional access policy will be created for all guests and all cloud apps. This policy impacts the Azure portal. Once this is created you might be required to sign-out and sign-in.",
+ "allUsersAllApps": "A conditional access policy will be created for all users and all cloud apps. This policy impacts the Azure portal. Once this is created you will be required to sign-out and sign-in.",
+ "custom": "Select the users, groups, and apps that this Terms of Use will be applied to.",
+ "noPolicy": "This terms of use will appear in the grant control list when creating a conditional access policy."
+ }
+ },
+ "Section": {
+ "conditionalAccessSubtitle": "Enforce with conditional access policy templates",
+ "conditionalAccessTitle": "Conditional access",
+ "termsOfUseSubtitle": "Create and upload documents",
+ "termsOfUseTitle": "Terms of use"
+ },
+ "acceptanceDurationInfo": "The terms of use will be enforced immediately and each user will have to re-consent every specified number of days.",
+ "acceptanceDurationLabel": "Duration before re-acceptance required (days)",
+ "acceptanceDurationPlaceholder": "Example: '90'",
+ "acceptanceExpirationFrequencyInfo": "Require users to consent on a recurring basis.",
+ "acceptanceExpirationFrequencyLabel": "Frequency",
+ "acceptanceExpirationStartDateTimeInfo": "The terms of use will be enforced immediately and users will be required to re-consent on this date.",
+ "acceptanceExpirationStartDateTimeLabel": "Expire starting on",
+ "agreementIsPerDeviceAcceptanceRequiredInfo": "The end users will be required to consent to the terms of use on every device.",
+ "agreementIsPerDeviceAcceptanceRequiredLabel": "Require users to consent on every device",
+ "agreementIsViewingBeforeAcceptanceRequiredInfo": "The end users will be required to view the terms of use prior to accepting.",
+ "agreementIsViewingBeforeAcceptanceRequiredLabel": "Require users to expand the terms of use",
+ "agreementNameInfo": "Name will be used to manage the terms of use within the Azure portal.",
+ "agreementNameLabel": "Name",
+ "agreementNamePlaceholderText": "Example: 'All users terms of use'",
+ "agreementRequirmentLabel": "Required Upon",
+ "agreementTargetEntityLabel": "Users targeted",
+ "agreementUploadPolicyLabel": "Terms of use",
+ "agreementUploadPolicyPlaceholderText": "Upload required PDF",
+ "createButtonLabel": "Create",
+ "createPolicyInfo": "In order to enforce the terms of use, a conditional access policy is required. You can create a conditional access policy targeted to specific users and applications later or use one of the predefined templates.",
+ "createPolicyLabel": "Create a policy",
+ "isAcceptanceExpirationEnabledInfo": "The terms of use will be enforced immediately and all users will be forced to re-consent on a schedule.",
+ "isAcceptanceExpirationEnabledLabel": "Expire consents",
+ "pdfValidationInvalidFileFormat": "The file must be in the .pdf format.",
+ "policyFilesInfo": "Upload a PDF file containing the terms of use that your end users must accept. Based on end user preferences they will be shown the appropriate language or if not match the default language will be shown.
For end users agreeing on mobile devices, we recommend the PDF font size to be at least 24 pt.
Display name will be the title of the terms of use that is presented to the end user.",
+ "policyFilesLabel": "Terms of use document",
+ "policyTemplateInfo": "These templates are pre configured conditional access policies that are targeted to specific users and applications.",
+ "policyTemplateLabel": "Policy templates",
+ "title": "New terms of use"
+ }
+ },
+ "TACSettings": {
+ "edgeSettings": "Edge yapılandırma ayarları",
+ "edgeWindowsDataProtectionSettings": "Edge (Windows) veri koruma ayarları - Önizleme",
+ "edgeWindowsSettings": "Edge (Windows) yapılandırma ayarları - Önizleme",
+ "generalAppConfig": "Genel uygulama yapılandırması",
+ "generalSettings": "Genel yapılandırma ayarları",
+ "outlookSMIMEConfig": "Outlook S/MIME ayarları",
+ "outlookSettings": "Outlook yapılandırma ayarları",
+ "sMIME": "S/MIME"
+ },
+ "MicrosoftEdgeChannel": {
+ "beta": "Beta",
+ "dev": "Dev",
+ "stable": "Stable"
+ },
+ "WipPolicySettings": {
+ "addNetworkBoundary": "Ağ sınırı ekle",
+ "addNetworkBoundaryButton": "Ağ sınırı ekle...",
+ "allowWindowsSearch": "Şifrelenen kurumsal verilerin ve Mağaza uygulamalarının Windows Search tarafından aranmasına izin ver",
+ "authoritativeIpRanges": "Kurumsal IP Aralıkları listesi yetkilendirildi (otomatik olarak algılama)",
+ "authoritativeProxyServers": "Kurumsal Proxy Sunucular listesi yetkilendirildi (otomatik olarak algılama)",
+ "boundaryType": "Sınır türü",
+ "cloudResources": "Bulut kaynakları",
+ "corporateIdentity": "Kurumsal kimlik",
+ "dataRecoveryCert": "Şifrelenmiş verilerin kurtarılmasını sağlamak için Veri Kurtarma Aracısı (DRA) sertifikasını karşıya yükle",
+ "editNetworkBoundary": "Ağ sınırını düzenle",
+ "enrollmentState": "Kayıt durumu",
+ "iPv4Ranges": "IPv4 aralıkları",
+ "iPv6Ranges": "IPv6 aralıkları",
+ "internalProxyServers": "İç proxy sunucular",
+ "maxInactivityTime": "Cihazın PIN'inin veya parolasının kilitlenmesine neden olan izin verilen en uzun boşta kalma süresi (dakika cinsinden)",
+ "maxPasswordAttempts": "Cihaz silinmeden önce izin verilen kimlik doğrulama hatası sayısı",
+ "mdmDiscoveryUrl": "MDM bulma URL'si",
+ "mdmRequiredSettingsInfo": "Bu ilke yalnızca Windows 10 Yıldönümü Sürümü ve üzeri için geçerlidir. Bu ilke, korumayı uygulamak için Windows Bilgi Koruması (WIP) kullanır.",
+ "minimumPinLength": "PIN için gerekli en az karakter sayısını ayarla",
+ "name": "Ad",
+ "networkBoundariesGridEmptyText": "Eklediğiniz ağ sınırları burada gösterilir",
+ "networkBoundary": "Ağ sınırı",
+ "networkDomainNames": "Ağ etki alanları",
+ "neutralResources": "Bağımsız kaynaklar",
+ "passportForWork": "Windows'ta oturum açma yöntemi olarak İş İçin Windows Hello kullan",
+ "pinExpiration": "Sistem kullanıcıdan değiştirmesini isteyene kadar PIN'in kullanılabileceği süreyi belirtin (gün olarak)",
+ "pinHistory": "Tekrar kullanılamayan bir kullanıcı hesabı ile ilişkili eski PIN'lerin sayısını belirtin",
+ "pinLowercaseLetters": "İş İçin Windows Hello PIN'inde küçük harf kullanımını yapılandır",
+ "pinSpecialCharacters": "İş İçin Windows Hello PIN'inde özel karakter kullanımını yapılandır",
+ "pinUppercaseLetters": "İş İçin Windows Hello PIN'inde büyük harf kullanımını yapılandır",
+ "protectUnderLock": "Cihaz kilitliyken uygulamaların kurumsal verilere erişmesini engelleyin. Yalnızca Windows 10 Mobile için geçerlidir",
+ "protectedDomainNames": "Korunan etki alanları",
+ "proxyServers": "Proxy sunucuları",
+ "requireAppPin": "Cihaz PIN'i yönetildiğinde uygulama PIN'ini devre dışı bırakma",
+ "requiredSettings": "Gerekli ayarlar",
+ "requiredSettingsInfo": "Kapsamı değiştirmek veya bu ilkeyi kaldırmak kurumsal verilerin şifresini çözer.",
+ "revokeOnMdmHandoff": "Cihaz MDM'ye kaydedildiğinde korumalı verilere erişimi iptal edin",
+ "revokeOnUnenroll": "Kayıt kaldırılırken şifreleme anahtarlarını iptal et",
+ "rmsTemplateForEdp": "Azure RMS için kullanılacak şablon kimliğini belirt",
+ "showWipIcon": "Kurumsal verileri koruma simgesini göster",
+ "type": "Tür",
+ "useRmsForWip": "WIP için Azure RMS kullan",
+ "value": "Değer",
+ "weRequiredSettingsInfo": "Bu ilke yalnızca Windows 10 Creators Update ve üzeri için geçerlidir. Bu ilke, korumayı uygulamak için Windows Bilgi Koruması (WIP) ve Windows MAM kullanır.",
+ "wipProtectionMode": "Windows Bilgi Koruması modu",
+ "withEnrollment": "Kayıt ile",
+ "withoutEnrollment": "Kayıt olmadan"
+ },
+ "OfficeApplicationAdditionalType": {
+ "projectProRetail": "Proje Çevrimiçi Masaüstü İstemcisi",
+ "visioProRetail": "Visio Çevrimiçi Plan 2"
+ },
+ "Countries": {
+ "ae": "Birleşik Arap Emirlikleri",
+ "ag": "Antigua ve Barbuda",
+ "ai": "Anguilla",
+ "al": "Arnavutluk",
+ "am": "Ermenistan",
+ "ao": "Angola",
+ "ar": "Arjantin",
+ "at": "Avusturya",
+ "au": "Avustralya",
+ "az": "Azerbaycan",
+ "bb": "Barbados",
+ "be": "Belçika",
+ "bf": "Burkina Faso",
+ "bg": "Bulgaristan",
+ "bh": "Bahreyn",
+ "bj": "Benin",
+ "bm": "Bermuda",
+ "bn": "Brunei",
+ "bo": "Bolivya",
+ "br": "Brezilya",
+ "bs": "Bahamalar",
+ "bt": "Bhutan",
+ "bw": "Botsvana",
+ "by": "Belarus",
+ "bz": "Belize",
+ "ca": "Kanada",
+ "cg": "Kongo Cumhuriyeti",
+ "ch": "İsviçre",
+ "cl": "Şili",
+ "cn": "Çin",
+ "co": "Kolombiya",
+ "cr": "Kosta Rika",
+ "cv": "Cabo Verde",
+ "cy": "Kıbrıs",
+ "cz": "Çek Cumhuriyeti",
+ "de": "Almanya",
+ "dk": "Danimarka",
+ "dm": "Dominika",
+ "do": "Dominik Cumhuriyeti",
+ "dz": "Cezayir",
+ "ec": "Ekvador",
+ "ee": "Estonya",
+ "eg": "Mısır",
+ "es": "İspanya",
+ "fi": "Finlandiya",
+ "fj": "Fiji",
+ "fm": "Mikronezya Federe Devletleri",
+ "fr": "Fransa",
+ "gb": "Birleşik Krallık",
+ "gd": "Grenada",
+ "gh": "Gana",
+ "gm": "Gambiya",
+ "gr": "Yunanistan",
+ "gt": "Guatemala",
+ "gw": "Gine-Bissau",
+ "gy": "Guyana",
+ "hk": "Hong Kong",
+ "hn": "Honduras",
+ "hr": "Hırvatistan",
+ "hu": "Macaristan",
+ "id": "Endonezya",
+ "ie": "İrlanda",
+ "il": "İsrail",
+ "in": "Hindistan",
+ "is": "İzlanda",
+ "it": "İtalya",
+ "jm": "Jamaika",
+ "jo": "Ürdün",
+ "jp": "Japonya",
+ "ke": "Kenya",
+ "kg": "Kırgızistan",
+ "kh": "Kamboçya",
+ "kn": "St. Kitts ve Nevis",
+ "kr": "Kore Cumhuriyeti",
+ "kw": "Kuveyt",
+ "ky": "Cayman Adaları",
+ "kz": "Kazakistan",
+ "la": "Laos Demokratik Halk Cumhuriyeti",
+ "lb": "Lübnan",
+ "lc": "St. Lucia",
+ "lk": "Sri Lanka",
+ "lr": "Liberya",
+ "lt": "Litvanya",
+ "lu": "Lüksemburg",
+ "lv": "Letonya",
+ "md": "Moldova Cumhuriyeti",
+ "mg": "Madagaskar",
+ "mk": "Kuzey Makedonya",
+ "ml": "Mali",
+ "mn": "Moğolistan",
+ "mo": "Makao",
+ "mr": "Moritanya",
+ "ms": "Montserrat",
+ "mt": "Malta",
+ "mu": "Mauritius",
+ "mw": "Malavi",
+ "mx": "Meksika",
+ "my": "Malezya",
+ "mz": "Mozambik",
+ "na": "Namibia",
+ "ne": "Nijer",
+ "ng": "Nijerya",
+ "ni": "Nikaragua",
+ "nl": "Hollanda",
+ "no": "Norveç",
+ "np": "Nepal",
+ "nz": "Yeni Zelanda",
+ "om": "Umman",
+ "pa": "Panama",
+ "pe": "Peru",
+ "pg": "Papua Yeni Gine",
+ "ph": "Filipinler",
+ "pk": "Pakistan",
+ "pl": "Polonya",
+ "pt": "Portekiz",
+ "pw": "Palau",
+ "py": "Paraguay",
+ "qa": "Katar",
+ "ro": "Romanya",
+ "ru": "Rusya",
+ "sa": "Suudi Arabistan",
+ "sb": "Solomon Adaları",
+ "sc": "Seyşeller",
+ "se": "İsveç",
+ "sg": "Singapur",
+ "si": "Slovenya",
+ "sk": "Slovakya",
+ "sl": "Sierra Leone",
+ "sn": "Senegal",
+ "sr": "Surinam",
+ "st": "Sao Tome ve Principe",
+ "sv": "El Salvador",
+ "sz": "Svaziland",
+ "tc": "Turks ve Caicos",
+ "td": "Çad",
+ "th": "Tayland",
+ "tj": "Tacikistan",
+ "tm": "Türkmenistan",
+ "tn": "Tunus",
+ "tr": "Türkiye",
+ "tt": "Trinidad ve Tobago",
+ "tw": "Tayvan",
+ "tz": "Tanzanya",
+ "ua": "Ukrayna",
+ "ug": "Uganda",
+ "us": "Amerika Birleşik Devletleri",
+ "uy": "Uruguay",
+ "uz": "Özbekistan",
+ "vc": "St. Vincent ve Grenadinler",
+ "ve": "Venezuela",
+ "vg": "İngiliz Virgin Adaları",
+ "vn": "Vietnam",
+ "ye": "Yemen",
+ "za": "Güney Afrika",
+ "zw": "Zimbabve"
+ },
+ "OfficeUpdateChannel": {
+ "current": "Geçerli Kanal",
+ "deferred": "Altı Aylık Kurumsal Kanal",
+ "firstReleaseCurrent": "Geçerli Kanal (Önizleme)",
+ "firstReleaseDeferred": "Yarı Yıllık Kurumsal Kanal (Önizleme)",
+ "monthlyEnterprise": "Aylık Kurumsal Kanal",
+ "placeHolder": "Birini seçin"
+ },
+ "AppProtection": {
+ "allAppTypes": "Tüm uygulama türlerini hedefle",
+ "androidPlatformLabel": "Android",
+ "appsInAndroidWorkProfile": "Android İş Profilindeki Uygulamalar",
+ "appsOnIntuneManagedDevices": "Intune yönetilen cihazlardaki uygulamalar",
+ "appsOnUnmanagedDevices": "Yönetilmeyen cihazlardaki uygulamalar",
+ "iOSPlatformLabel": "iOS/iPadOS",
+ "iosAndroidMacPlatformLabel": "iOS, Android, Mac",
+ "iosAndroidPlatformLabel": "iOS, Android",
+ "macPlatformLabel": "Mac",
+ "notAvailable": "Kullanılamaz",
+ "windows10PlatformLabel": "Windows 10 ve sonraki sürümler",
+ "withEnrollment": "Kayıt ile",
+ "withoutEnrollment": "Kayıt olmadan"
+ },
+ "InstallContextType": {
+ "device": "Cihaz",
+ "deviceContext": "Cihaz bağlamı",
+ "user": "Kullanıcı",
+ "userContext": "Kullanıcı bağlamı"
+ },
+ "ProactiveRemediations": {
+ "Create": {
+ "Basics": {
+ "DescriptionMultiLineTextBox": {
+ "label": "Açıklama",
+ "placeholder": "Açıklama girin"
+ },
+ "NameTextBox": {
+ "label": "Ad",
+ "placeholder": "Bir ad girin"
+ },
+ "PublisherTextBox": {
+ "label": "Yayımcı",
+ "placeholder": "Yayımcı girin"
+ },
+ "VersionTextBox": {
+ "label": "Sürüm"
+ },
+ "headerDescription": "Yazdığınız algılama ve düzeltme betiklerinden yeni bir özel betik paketi oluşturun."
+ },
+ "ScopeTags": {
+ "headerDescription": "Betik paketini atamak için en az bir grup seçin."
+ },
+ "Settings": {
+ "DetectionScriptMultiLineTextBox": {
+ "label": "Algılama betiği",
+ "placeholder": "Betik metni girin",
+ "requiredValidationMessage": "Lütfen algılama betiğini girin"
+ },
+ "EnforceScriptSignatureCheckOptionPicker": {
+ "label": "Betik imzası denetimini zorla"
+ },
+ "LoggedOnCredentialsOptionPicker": {
+ "label": "Bu betiği oturum açmış olan kullanıcının kimlik bilgilerini kullanarak çalıştır"
+ },
+ "RemediationScript": {
+ "infoBox": "Düzeltme betiği bulunmadığından bu betik yalnızca algılama modunda çalışacak."
+ },
+ "RemediationScriptMultiLineTextBox": {
+ "label": "Düzeltme komut dosyası",
+ "placeholder": "Betik metni girin"
+ },
+ "RunIn64BitPSOptionPicker": {
+ "label": "Betiği 64 bit PowerShell'de çalıştır"
+ },
+ "ScriptMultiLineTextBox": {
+ "base64EncodingValidationMessage": "Geçersiz betik. Betikte kullanılan bir veya daha fazla karakter geçerli değil."
+ },
+ "headerDescription": "Yazdığınız betiklerden özel bir betik paketi oluşturun. Varsayılan olarak betikler, atanmış cihazlarda her gün çalıştırılır.",
+ "infoBox": "Bu betik salt okunur. Bu betik için bazı ayarlar devre dışı bırakılmış olabilir."
+ },
+ "title": "Özel betik oluştur",
+ "ScriptProperties": {
+ "GridHeaders": {
+ "interval": "Aralık",
+ "time": "Tarih ve saat"
+ },
+ "Interval": {
+ "day": "Her gün yinelenir",
+ "days": "{0} günde bir yinelenir",
+ "hour": "Her saat yinelenir",
+ "hours": "{0} saatte bir yinelenir",
+ "month": "Her ay yinelenir",
+ "months": "{0} ayda bir yinelenir",
+ "week": "Her hafta yinelenir",
+ "weeks": "{0} haftada bir yinelenir"
+ },
+ "Time": {
+ "utc": "{0} (UTC)",
+ "utcWithDate": "{1} {0} (UTC)",
+ "withDate": "{1} {0}"
+ }
+ }
+ },
+ "Edit": {
+ "title": "Düzenle - {0}"
+ }
+ },
+ "EdgeAppConfig": {
+ "AllowedURLs": {
+ "title": "İzin verilen URL'ler",
+ "tooltip": "Kullanıcılarınızın iş bağlamında erişmelerine izin verilen siteleri belirtin. Diğer sitelere izin verilmez. Bir izin verilenler/engellenenler listesi yapılandırmayı seçebilirsiniz, ancak her ikisini birden belirtemezsiniz. "
+ },
+ "ApplicationProxyRedirection": {
+ "header": "Uygulama proxy'si",
+ "title": "Uygulama ara sunucusu yeniden yönlendirme",
+ "tooltip": "Kullanıcılara şirket bağlantılarına ve şirket içi Web uygulamalarına erişim vermek için Uygulama ara sunucusu yeniden yönlendirmesini etkinleştirin."
+ },
+ "BlockedURLs": {
+ "title": "Engellenen URL'ler",
+ "tooltip": "Kullanıcılarınız için, iş bağlamında engellenen siteleri belirtin. Diğer tüm sitelere izin verilecek. Bir izin verilenler/engellenenler listesi yapılandırmayı seçebilirsiniz, ancak her ikisini birden belirtemezsiniz. "
+ },
+ "Bookmarks": {
+ "header": "Yönetilen yer imleri",
+ "tooltip": "Kullanıcılarınızın iş bağlamında Microsoft Edge kullanırken kullanabileceği yer işaretli URL'ler listesini girin.",
+ "uRL": "URL"
+ },
+ "HomepageURL": {
+ "header": "Yönetilen giriş sayfası",
+ "title": "Giriş sayfası kısayol URL'si",
+ "tooltip": "Microsoft Edge'de yeni bir sekme açıldığında arama çubuğunun altındaki ilk simge olarak kullanıcılara gösterilecek bir giriş sayfası kısayolu yapılandırın."
+ },
+ "PersonalContext": {
+ "label": "Kısıtlı siteleri kişisel bağlama yönlendir",
+ "tooltip": "Kullanıcıların kısıtlanmış siteleri açmak için kişisel bağlamlarına geçiş yapmasına izin verilip verilmeyeceğini yapılandırın."
+ }
+ },
+ "BooleanActions": {
+ "allow": "Şirket Portalı",
+ "block": "Engelle",
+ "configured": "Yapılandırılan",
+ "disable": "Devre dışı bırak",
+ "dontRequire": "Gerekli Kılma",
+ "enable": "Etkinleştir",
+ "hide": "Gizle",
+ "limit": "Sınır",
+ "notConfigured": "Yapılandırılmadı",
+ "require": "Gerekli Kıl",
+ "show": "Göster",
+ "yes": "Evet"
+ },
+ "ArchitectureOptions": {
+ "sixtyFourBit": "64 bit",
+ "thirtyTwoBit": "32 bit"
+ },
+ "WindowsQualityUpdateDaysUntilForcedReboot": {
+ "oneDay": "1 gün",
+ "twoDays": "2 gün",
+ "zeroDays": "0 gün"
+ },
"SoftwareUpdates": {
"BladeTitles": {
"overview": "Genel Bakış"
@@ -10800,66 +10878,732 @@
"notScannedYet": "Henüz taranmadı",
"outOfDateIosDevices": "Eski iOS Cihazları"
},
- "ScheduledAction": {
- "Form": {
- "editBlockActionInfo": "Tüm uygunluk ilkeleri için bir engelleme eylemi gereklidir.",
- "graceperiod": "Zamanlama (uyumsuzluktan sonraki günler)",
- "graceperiodInfo": "Bu eylemin, kaç günlük uyumsuzluktan sonra kullanıcının cihazına yönelik olarak tetikleneceğini belirtin",
- "subtitle": "Eylem parametrelerini belirtin",
- "title": "Eylem parametreleri"
- },
- "List": {
- "gracePeriodDay": "Uyumsuzluktan sonra {0} gün",
- "gracePeriodDays": "Uyumsuzluktan sonra {0} gün",
- "gracePeriodHour": "Uyumsuzluktan {0} saat sonra",
- "gracePeriodHours": "Uyumsuzluktan {0} saat sonra",
- "gracePeriodMinute": "Uyumsuzluktan {0} dakika sonra",
- "gracePeriodMinutes": "Uyumsuzluktan {0} dakika sonra",
- "immediately": "Hemen",
- "schedule": "Zamanlama",
- "scheduleInfoBalloon": "Uyumsuzluktan sonra geçecek gün sayısı",
- "subtitle": "Uyumlu olmayan cihazlardaki eylem dizisini belirtin",
- "title": "Eylemler"
- },
- "Notification": {
- "additionalEmailLabel": "Diğerleri",
- "additionalRecipients": "Ek alıcılar (e-posta ile)",
- "additionalRecipientsBladeTitle": "Ek alıcı seç",
- "emailAddressPrompt": "E-posta adreslerini girin (virgül ile ayırarak)",
- "invalidEmail": "Geçersiz e-posta adresi",
- "messageTemplate": "İleti şablonu",
- "noneSelected": "Hiçbiri seçilmedi",
- "notSelected": "Seçili değil",
- "numSelected": "{0} seçildi",
- "selected": "Seçili"
+ "ConfigurationTypes": {
+ "Table": {
+ "androidDeviceOwnerGeneral": "Cihaz kısıtlamaları (cihaz sahibi)",
+ "androidForWorkGeneral": "Cihaz kısıtlamaları (iş profili)"
+ },
+ "androidCustom": "Özel",
+ "androidDeviceOwnerGeneral": "Cihaz kısıtlamaları",
+ "androidDeviceOwnerPkcs": "PKCS Sertifikası",
+ "androidDeviceOwnerScep": "SCEP Sertifikası",
+ "androidDeviceOwnerTrustedCertificate": "Güvenilen Sertifika",
+ "androidDeviceOwnerVpn": "VPN",
+ "androidDeviceOwnerWiFi": "Wi-Fi",
+ "androidEmailProfile": "E-posta (Yalnızca Samsung KNOX)",
+ "androidForWorkCustom": "Özel",
+ "androidForWorkEmailProfile": "E-posta",
+ "androidForWorkGeneral": "Cihaz kısıtlamaları",
+ "androidForWorkImportedPFX": "PKCS içe aktarılan sertifikası",
+ "androidForWorkOemConfig": "OEMConfig",
+ "androidForWorkPKCS": "PKCS sertifikası",
+ "androidForWorkSCEP": "SCEP sertifikası",
+ "androidForWorkTrustedCertificate": "Güvenilen sertifika",
+ "androidForWorkVpn": "VPN",
+ "androidForWorkWiFi": "Wi-Fi",
+ "androidGeneral": "Cihaz kısıtlamaları",
+ "androidImportedPFX": "PKCS içe aktarılan sertifikası",
+ "androidPKCS": "PKCS sertifikası",
+ "androidSCEP": "SCEP sertifikası",
+ "androidTrustedCertificate": "Güvenilen sertifika",
+ "androidVPN": "VPN",
+ "androidWiFi": "Wi-Fi",
+ "androidZebraMx": "MX profili (yalnızca Zebra)",
+ "complianceAndroid": "Android uyumluluk ilkesi",
+ "complianceAndroidDeviceOwner": "Tam olarak yönetilen, ayrılmış ve şirkete ait iş profili",
+ "complianceAndroidEnterprise": "Kişisel olarak sahip olunan iş profili",
+ "complianceAndroidForWork": "Android for Work uyumluluk ilkesi",
+ "complianceIos": "iOS uyumluluk ilkesi",
+ "complianceMac": "Mac uyumluluk ilkesi",
+ "complianceWindows10": "Windows 10 ve üzeri uyumluluk ilkesi",
+ "complianceWindows10Mobile": "Windows 10 Mobile uyumluluk ilkesi",
+ "complianceWindows8": "Windows 8 uyumluluk ilkesi",
+ "complianceWindowsPhone": "Windows Phone uyumluluk ilkesi",
+ "exchangeActiveSync": "Exchange Active Sync",
+ "iosCustom": "Özel",
+ "iosDerivedCredentialAuthenticationConfiguration": "Türetilmiş PIV kimlik bilgisi",
+ "iosDeviceFeatures": "Cihaz özellikleri",
+ "iosEDU": "Eğitim",
+ "iosEducation": "Eğitim",
+ "iosEmailProfile": "E-posta",
+ "iosGeneral": "Cihaz kısıtlamaları",
+ "iosImportedPFX": "PKCS içe aktarılan sertifikası",
+ "iosPKCS": "PKCS sertifikası",
+ "iosPresets": "Önayarlar",
+ "iosSCEP": "SCEP sertifikası",
+ "iosTrustedCertificate": "Güvenilen sertifika",
+ "iosVPN": "VPN",
+ "iosVPNZscaler": "VPN",
+ "iosWiFi": "Wi-Fi",
+ "macCustom": "Özel",
+ "macDeviceFeatures": "Cihaz özellikleri",
+ "macEndpointProtection": "Uç nokta koruması",
+ "macExtensions": "Uzantılar",
+ "macGeneral": "Cihaz kısıtlamaları",
+ "macImportedPFX": "PKCS içe aktarılan sertifikası",
+ "macSCEP": "SCEP sertifikası",
+ "macTrustedCertificate": "Güvenilen sertifika",
+ "macVPN": "VPN",
+ "macWiFi": "Wi-Fi",
+ "settingsCatalog": "Ayarlar kataloğu (önizleme)",
+ "unsupported": "Desteklenmiyor",
+ "windows10AdministrativeTemplate": "Yönetim Şablonları (Önizleme)",
+ "windows10Atp": "Uç Nokta için Microsoft Defender (Windows 10 veya sonraki sürümleri çalıştıran masaüstü cihazları)",
+ "windows10Custom": "Özel",
+ "windows10DesktopSoftwareUpdate": "Yazılım Güncelleştirmeleri",
+ "windows10DeviceFirmwareConfigurationInterface": "Cihaz Üretici Yazılımı Yapılandırma Arabirimi",
+ "windows10EmailProfile": "E-posta",
+ "windows10EndpointProtection": "Uç nokta koruması",
+ "windows10EnterpriseDataProtection": "Windows Bilgi Koruması",
+ "windows10General": "Cihaz kısıtlamaları",
+ "windows10ImportedPFX": "PKCS içe aktarılan sertifikası",
+ "windows10Kiosk": "Kiosk",
+ "windows10NetworkBoundary": "Ağ sınırı",
+ "windows10PKCS": "PKCS sertifikası",
+ "windows10PolicyOverride": "Grup İlkesini Geçersiz Kılma",
+ "windows10SCEP": "SCEP sertifikası",
+ "windows10SecureAssessmentProfile": "Eğitim profili",
+ "windows10SharedPC": "Paylaşılan çok kullanıcılı cihaz",
+ "windows10TeamGeneral": "Cihaz kısıtlamaları (Windows 10 Ekibi)",
+ "windows10TrustedCertificate": "Güvenilen sertifika",
+ "windows10VPN": "VPN",
+ "windows10WiFi": "Wi-Fi",
+ "windows10WiFiCustom": "Wi-Fi özel",
+ "windows8General": "Cihaz kısıtlamaları",
+ "windows8SCEP": "SCEP sertifikası",
+ "windows8TrustedCertificate": "Güvenilen sertifika",
+ "windows8VPN": "VPN",
+ "windows8WiFi": "Wi-Fi içeri aktarma",
+ "windowsDeliveryOptimization": "Teslim İyileştirme",
+ "windowsDomainJoin": "Etki Alanına Katılma",
+ "windowsEditionUpgrade": "Sürüm yükseltme ve mod değiştirme",
+ "windowsIdentityProtection": "Kimlik koruması",
+ "windowsPhoneCustom": "Özel",
+ "windowsPhoneEmailProfile": "E-posta",
+ "windowsPhoneGeneral": "Cihaz kısıtlamaları",
+ "windowsPhoneImportedPFX": "PKCS içe aktarılan sertifikası",
+ "windowsPhoneSCEP": "SCEP sertifikası",
+ "windowsPhoneTrustedCertificate": "Güvenilen sertifika",
+ "windowsPhoneVPN": "VPN",
+ "IosUpdate": "iOS Güncelleştirme ilkesi"
+ },
+ "OfficeSuiteAppsTab": {
+ "acceptLicenseOnBehalfOfUsersLabel": "Kullanıcılar adına Microsoft Yazılımı Lisans Koşulları'nı kabul edin",
+ "appSuiteConfigurationLabel": "Uygulama paketi yapılandırması",
+ "appSuiteInformationLabel": "Uygulama paketi bilgileri",
+ "appsToBeInstalledLabel": "Paketin parçası olarak yüklenecek uygulamalar",
+ "architectureLabel": "Mimari",
+ "architectureTooltip": "Cihazlarda Microsoft 365 Uygulamalarının 32 bit veya 64 bit sürümlerinden hangisinin yüklü olduğunu tanımlar.",
+ "configurationDesignerLabel": "Yapılandırma tasarımcısı",
+ "configurationFileLabel": "Yapılandırma dosyası",
+ "configurationSettingsFormatLabel": "Yapılandırma ayarları biçimi",
+ "configureAppSuiteLabel": "Uygulama paketini yapılandır",
+ "configuredLabel": "Yapılandırıldı",
+ "currentVersionLabel": "Geçerli sürüm",
+ "currentVersionTooltip": "Bu, Office'in bu pakette yapılandırılan geçerli sürümüdür. Daha yeni bir sürüm yapılandırılıp kaydedildiğinde bu değer güncelleştirilir.",
+ "enableMicrosoftSearchAsDefaultTooltip": "Cihazda Google Chrome için Bing'de Microsoft Arama uzantısının yüklenip yüklenmediğini belirlemenize yardımcı olan bir arka plan hizmeti yükler.",
+ "enterXmlDataLabel": "XML verilerini gir",
+ "languagesLabel": "Diller",
+ "languagesTooltip": "Intune varsayılan olarak, Office'i işletim sisteminin varsayılan diliyle yükleyecek. Yüklemek istediğiniz ek dilleri seçin.",
+ "learnMoreText": "Daha fazla bilgi",
+ "newUpdateChannelTooltip": "Uygulamanın yeni özelliklerle güncelleştirilme sıklığını tanımlar.",
+ "noCurrentVersionText": "Geçerli sürüm yok",
+ "noLanguagesSelectedLabel": "Seçili dil yok",
+ "notConfiguredLabel": "Yapılandırılmadı",
+ "propertiesLabel": "Özellikler",
+ "removeOtherVersionsLabel": "Diğer sürümleri kaldır",
+ "removeOtherVersionsTooltip": "Kullanıcı cihazlarından diğer Office (MSI) sürümlerini kaldırmak için Evet'i seçin.",
+ "selectOfficeAppsLabel": "Office uygulamalarını seçin",
+ "selectOfficeAppsTooltip": "Paketle birlikte yüklemek istediğiniz Office 365 uygulamalarını seçin.",
+ "selectOtherOfficeAppsLabel": "Diğer Office uygulamalarını seçin (lisans gerekir)",
+ "selectOtherOfficeAppsTooltip": "Lisanslarına sahipseniz, bu ek Office uygulamalarını da Intune ile atayabilirsiniz.",
+ "specificVersionLabel": "Belirli bir sürüm",
+ "updateChannelLabel": "Güncelleştirme kanalı",
+ "updateChannelTooltip": "Uygulamanın yeni özelliklerle güncelleştirilme sıklığını tanımlar.
\r\nAylık: Office'in en yeni özellikleri kullanıma sunulur sunulmaz bunları kullanıcılara sağlar.
\r\nAylık Kurumsal Kanal: Ayda bir kez, her ayın ikinci salı günü Office'in en yeni özelliklerini kullanıcılara sağlar.
\r\nAylık (Hedeflenmiş): Yakında kullanıma sunulacak Aylık Kanal sürümünü önceden keşfetmenizi sağlar. Bu desteklenen bir güncelleştirme kanalıdır ve genellikle yeni özellikler içeren bir Aylık Kanal sürümü kullanıma sunulmadan en az bir hafta öncesine kadar kullanılabilir.
\r\nYarı Yıllık: Office'in yeni özelliklerini kullanıcılara yılda yalnızca birkaç kez sağlar.
\r\nYarı Yıllık (Hedeflenmiş): Pilot kullanıcılarına ve uygulama uyumluluğu test edicilerine bir sonraki Yarı Yıllık kanalı test etme olanağı sağlar.",
+ "useMicrosoftSearchAsDefault": "Bing'de Microsoft Arama için arka plan hizmetini yükle",
+ "useSharedComputerActivationLabel": "Paylaşımlı bilgisayar etkinleştirme kullanın",
+ "useSharedComputerActivationTooltip": "Paylaşılan bilgisayar etkinleştirmesi, Microsoft 365 Uygulamalarını birden çok kullanıcı tarafından kullanılan bilgisayarlara dağıtmanıza olanak sağlar. Kullanıcılar, normalde Microsoft 365 Uygulamalarını yalnızca 5 bilgisayar gibi sınırlı sayıda cihaza yükleyip etkinleştirebilir. Paylaşılan bilgisayar etkinleştirmesine sahip Microsoft 365 Uygulamalarının kullanılması bu sınırlamaya dahil edilmez.",
+ "versionToInstallLabel": "Yüklenecek sürüm",
+ "versionToInstallTooltip": "Yüklenmesi gereken Office sürümünü seçin.",
+ "xLanguagesSelectedLabel": "{0} dil seçildi",
+ "xmlConfigurationLabel": "XML Yapılandırması"
+ },
+ "EnrollmentRestrictions": {
+ "DeletePayloadLink": {
+ "content": "{0} bir veya daha fazla ilke kümesine eklenmiş. {0} öğesini silerseniz, bu öğeyi artık bu ilke kümeleri aracılığıyla atayamazsınız. Yine de silinsin mi?",
+ "contentWithError": "{0} bir veya daha fazla ilke kümesine eklenmiş olabilir. {0} öğesini silerseniz, bu öğeyi artık bu ilke kümeleri aracılığıyla atayamazsınız. Yine de silinsin mi?",
+ "header": "Bu kısıtlamayı silmek istediğinizden emin misiniz?"
+ },
+ "DeviceLimit": {
+ "description": "Bir kullanıcının kaydedebileceği en fazla cihaz sayısını belirtin.",
+ "header": "Cihaz sınırı kısıtlamaları",
+ "info": "Her kullanıcının kaç cihaz kaydedebileceğini tanımlayın."
+ },
+ "DeviceType": {
+ "VersionValidation": {
+ "aOSP": "1.0 veya üzeri olmalıdır.",
+ "android": "Geçerli bir sürüm numarası girin. Örnekler: 5.0, 5.5.1, 6.0.0.1",
+ "androidForWork": "Geçerli bir sürüm numarası girin. Örnekler: 5.0, 5.1.1",
+ "iOS": "Geçerli bir sürüm numarası girin. Örnekler: 9.0, 10.0, 9.0.2",
+ "mac": "Geçerli bir sürüm numarası girin. Örnekler: 10, 10.10, 10.10.1",
+ "min": "En düşük değer {0} değerinden düşük olamaz",
+ "minMax": "En düşük sürüm, en yüksek sürümden büyük olamaz.",
+ "windows": "10.0 veya üzeri olmalıdır. 8.1 cihazlara izin vermek için boş bırakın",
+ "windowsMobile": "10.0 veya üzeri olmalıdır. 8.1 cihazlara izin vermek için boş bırakın"
+ },
+ "allPlatformsBlocked": "Tüm cihaz platformları engellendi. Platform yapılandırmasını etkinleştirmek için platform kaydına izin verin.",
+ "blockManufacturerPlaceHolder": "Üretici adı",
+ "blockManufacturersHeader": "Engellenen üreticiler",
+ "cannotRestrict": "Kısıtlama desteklenmiyor",
+ "configurationDescription": "Bir cihazın kaydedilmesi için karşılanması gereken platform yapılandırma kısıtlamalarını belirtin. Kayıt sonrasında cihazları kısıtlamak için uyumluluk ilkelerini kullanın. ana.ikincil.derleme gibi sürümler tanımlayın. Sürüm kısıtlamaları yalnızca Şirket Portalı ile kaydedilen cihazlara uygulanır. Intune, cihazları varsayılan olarak kişiye ait olarak sınıflandırır. Cihazların şirkete ait olarak sınıflandırılması için ek eylem gerekir.",
+ "configurationDescriptionLabel": "Kayıt kısıtlamalarını ayarlama hakkında daha fazla bilgi edinin",
+ "configurations": "Platformları yapılandırma",
+ "deviceManufacturer": "Cihaz üreticisi",
+ "header": "Cihaz türü kısıtlamaları",
+ "info": "Hangi platformların, sürümlerin ve yönetim türlerinin kayıt olabileceğini tanımlayın.",
+ "manufacturer": "Üretici",
+ "max": "En Fazla",
+ "maxVersion": "En yüksek sürüm",
+ "min": "En Küçük",
+ "minVersion": "En düşük sürüm",
+ "newPlatforms": "Yeni platformlara izin verdiniz. Platform Yapılandırmalarını güncelleştirmeniz önerilir.",
+ "personal": "Kişiye ait",
+ "platform": "Platform",
+ "platformDescription": "Aşağıdaki platformların kaydedilmesine izin verebilirsiniz. Yalnızca desteklemediğiniz platformları engelleyin. İzin verilen platformlar ek kayıt kısıtlamalarıyla yapılandırılabilir.",
+ "platformSettings": "Platform ayarları",
+ "platforms": "Platform seçin",
+ "platformsSelected": "{0} platform seçildi",
+ "type": "Tür",
+ "versions": "sürümler",
+ "versionsRange": "En düşük/en yüksek aralığına izin ver:",
+ "windowsTooltip": "Mobil Cihaz Yönetimi aracılığıyla kaydı kısıtlar. PC aracısının yüklenmesini kısıtlamaz. Yalnızca Windows 10 ve Windows 11 sürümleri desteklenir. Windows 8.1'e izin vermek için sürümleri boş bırakın."
+ },
+ "Priority": {
+ "saved": "Kısıtlama Öncelikleri başarıyla kaydedildi."
+ },
+ "Row": {
+ "announce": "Öncelik: {0}, Ad: {1}, Atanan: {2}"
+ },
+ "Table": {
+ "deployed": "Dağıtıldı",
+ "name": "Ad",
+ "priority": "Öncelik"
},
- "block": "Cihazı uyumsuz olarak işaretle",
- "lockDevice": "Cihazı kilitle (yerel eylem)",
- "lockDeviceWithPasscode": "Cihazı kilitle (yerel eylem)",
- "noAction": "Eylem yok",
- "noActionRow": "Eylem yok; bir eylem eklemek için 'Ekle'yi seçin",
- "pushNotification": "Son kullanıcıya anında iletme bildirimi gönder",
- "remoteLock": "Uyumsuz cihazı uzaktan kilitle",
- "removeSourceAccessProfile": "Kaynak erişim profilini kaldır",
- "retire": "Uyumsuz cihazı devre dışı bırak",
- "wipe": "Silme",
- "emailNotification": "Son kullanıcıya e-posta gönder"
- },
- "WIPPinRequirements": {
- "WipLowercaseCharacterPinRequirements": {
- "allow": "PIN'de küçük harf kullanımına izin ver",
- "notAllow": "PIN'de küçük harf kullanımına izin verme",
- "requireAtLeastOne": "PIN'de en az bir küçük harf kullanılmasını gerektir"
- },
- "WipSpecialCharacterPinRequirements": {
- "allow": "PIN'de özel karakter kullanımına izin ver",
- "notAllow": "PIN'de özel karakter kullanımına izin verme",
- "requireAtLeastOne": "PIN'de en az bir özel karakter kullanılmasını gerektir"
- },
- "WipUppercaseCharacterPinRequirements": {
- "allow": "PIN'de büyük harf kullanımına izin ver",
- "notAllow": "PIN'de büyük harf kullanımına izin verme",
- "requireAtLeastOne": "PIN'de en az bir büyük harf kullanılmasını gerektir"
- }
- }
+ "Type": {
+ "limit": "Cihaz sınırı kısıtlaması",
+ "type": "Cihaz türü kısıtlaması"
+ },
+ "allUsers": "Tüm Kullanıcılar",
+ "androidRestrictions": "Android kısıtlamaları",
+ "create": "Kısıtlama oluştur",
+ "defaultLimitDescription": "Bu, grup üyeliğinden bağımsız olarak tüm kullanıcılara en düşük öncelikte uygulanan varsayılan Cihaz Sınırı Kısıtlamasıdır.",
+ "defaultTypeDescription": "Bu, grup üyeliğinden bağımsız olarak tüm kullanıcılara en düşük öncelikte uygulanan varsayılan Cihaz Türü Kısıtlamasıdır.",
+ "defaultWhfbDescription": "Bu, grup üyeliğinden bağımsız olarak tüm kullanıcılara en düşük öncelikte uygulanan varsayılan İş İçin Windows Hello yapılandırmasıdır.",
+ "deleteMessage": "Etkilenen kullanıcılara, atanan bir sonraki en yüksek öncelik kısıtlaması veya başka bir kısıtlama atanmamışsa varsayılan kısıtlama uygulanacaktır.",
+ "deleteTitle": "{0} kısıtlamasını silmek istediğinizden emin misiniz?",
+ "descriptionHint": "Kısıtlama ayarları tarafından belirlenen iş kullanımını veya kısıtlama düzeyini açıklayan kısa bir paragraf.",
+ "edit": "Kısıtlamayı düzenle",
+ "info": "Bir cihaz, kullanıcısına atanan en yüksek öncelikli kayıt kısıtlamalarıyla uyumlu olmalıdır. Bir cihaz kısıtlamasını sürükleyerek önceliğini değiştirebilirsiniz. Varsayılan kısıtlamalar tüm kullanıcılar için en düşük önceliktedir ve kullanıcısız kayıtları yönetir. Varsayılan kısıtlamalar düzenlenebilir, ancak silinemez.",
+ "iosRestrictions": "iOS kısıtlamaları",
+ "mDM": "MDM",
+ "macRestrictions": "macOS kısıtlamaları",
+ "maxVersion": "En Yüksek Sürüm",
+ "minVersion": "En Düşük Sürüm",
+ "nameHint": "Bu, kısıtlama kümesini tanımlamak üzere görünür olan birincil öznitelik olacaktır.",
+ "noAssignmentsStatusBar": "Kısıtlamayı en az bir gruba atayın. Özellikler'e tıklayın.",
+ "notFound": "Kısıtlama bulunamadı. Silinmiş olabilir.",
+ "personallyOwned": "Kişilere ait cihazlar",
+ "restriction": "Kısıtlama",
+ "restrictionLowerCase": "kısıtlama",
+ "restrictionType": "Kısıtlama türü",
+ "selectType": "Kısıtlama türünü seçin",
+ "selectValidation": "Lütfen bir platform seçin",
+ "typeHint": "Cihaz özelliklerini kısıtlamak için Cihaz Türü Kısıtlamasını seçin. Kullanıcı başına cihaz sayısını kısıtlamak için Cihaz Sınırı Kısıtlamasını seçin.",
+ "typeRequired": "Kısıtlama türü gereklidir.",
+ "winPhoneRestrictions": "Windows Phone kısıtlamaları",
+ "windowsRestrictions": "Windows kısıtlamaları"
+ },
+ "Titles": {
+ "ChromeOs": {
+ "devices": "Chrome OS cihazları"
+ },
+ "ManagedDesktop": {
+ "adminContacts": "Yönetici kişileri",
+ "appPackaging": "Uygulama paketleme",
+ "devices": "Cihazlar",
+ "feedback": "Geri Bildirim",
+ "gettingStarted": "Başlarken",
+ "messages": "İletiler",
+ "onlineResources": "Çevrimiçi kaynaklar",
+ "serviceRequests": "Hizmet istekleri",
+ "settings": "Ayarlar",
+ "tenantEnrollment": "Kiracı kaydı"
+ },
+ "actions": "Uyumsuzluk Eylemleri",
+ "advancedExchangeSettings": "Exchange Online ayarları",
+ "advancedThreatProtection": "Uç Nokta için Microsoft Defender",
+ "allApps": "Tüm uygulamalar",
+ "allDevices": "Tüm cihazlar",
+ "androidFotaDeployments": "Android FOTA dağıtımları",
+ "appBundles": "Uygulama Paketi Grupları",
+ "appCategories": "Uygulama kategorileri",
+ "appConfigPolicies": "Uygulama yapılandırma ilkeleri",
+ "appInstallStatus": "Uygulama yükleme durumu",
+ "appLicences": "Uygulama lisansları",
+ "appProtectionPolicies": "Uygulama koruma ilkeleri",
+ "appProtectionStatus": "Uygulama koruma durumu",
+ "appSelectiveWipe": "Uygulama seçmeli silme",
+ "appleVppTokens": "Apple VPP Belirteçleri",
+ "apps": "Uygulamalar",
+ "assign": "Atamalar",
+ "assignedPermissions": "Atanan izinler",
+ "assignedRoles": "Atanan roller",
+ "autopilotDeploymentReport": "Autopilot dağıtımları (önizleme)",
+ "brandingAndCustomization": "Özelleştirme",
+ "cartProfiles": "Kart profilleri",
+ "certificateConnectors": "Sertifika bağlayıcıları",
+ "chromeEnterprise": "Chrome Enterprise",
+ "compliancePolicies": "Uyumluluk ilkeleri",
+ "complianceScriptManagement": "Betikler",
+ "complianceScriptManagementPreview": "Betikler (Önizleme)",
+ "complianceSettings": "Uyumluluk ilkesi ayarları",
+ "conditionStatements": "Koşul deyimleri",
+ "conditions": "Konumlar",
+ "configMgr": "Microsoft Endpoint Configuration Manager",
+ "configurationProfiles": "Yapılandırma profilleri",
+ "configurationProfilesPreview": "Yapılandırma profilleri (önizleme)",
+ "connectorsAndTokens": "Bağlayıcılar ve belirteçler",
+ "corporateDeviceIdentifiers": "Şirket cihazı tanımlayıcıları",
+ "customAttributes": "Özel öznitelikler",
+ "customNotifications": "Özel bildirimler",
+ "deploymentSettings": "Dağıtım ayarları",
+ "derivedCredentials": "Türetilmiş Kimlik Bilgileri",
+ "deviceActions": "Cihaz eylemleri",
+ "deviceCategories": "Cihaz kategorileri",
+ "deviceCleanUp": "Cihaz temizleme kuralları",
+ "deviceEnrollmentManagers": "Cihaz kayıt yöneticileri",
+ "deviceExecutionStatus": "Cihaz durumu",
+ "deviceLimitEnrollmentRestrictions": "Kayıt cihazı sınırı kısıtlamaları",
+ "deviceTypeEnrollmentRestrictions": "Kayıt cihazı platform kısıtlamaları",
+ "devices": "Cihazlar",
+ "discoveredApps": "Bulunan uygulamalar",
+ "embeddedSIM": "eSIM hücresel profilleri (Önizleme)",
+ "enrollDevices": "Cihazları kaydet",
+ "enrollmentFailures": "Kayıt hataları",
+ "enrollmentNotifications": "Kayıt anlaşması bildirimleri (Önizleme)",
+ "enrollmentRestrictions": "Kayıt kısıtlamaları",
+ "exchangeActiveSync": "Exchange ActiveSync",
+ "exchangeServiceConnectors": "Exchange hizmet bağlayıcıları",
+ "failuresForFeatureUpdates": "Özellik güncelleştirme hataları (Önizleme)",
+ "failuresForQualityUpdates": "Windows Hızlandırılmış güncelleştirme hataları (Önizleme)",
+ "featureFlighting": "Özellik yayını",
+ "featureUpdateDeployments": "Windows 10 ve sonraki sürümler için özellik güncelleştirmeleri (Önizleme)",
+ "flighting": "Süreleme",
+ "fotaUpdate": "Üretici yazılımı kablosuz güncelleştirmesi",
+ "groupPolicy": "Yönetim Şablonları",
+ "groupPolicyAnalytics": "Grup ilkesi analizi",
+ "helpSupport": "Yardım ve destek",
+ "helpSupportReplacement": "Yardım ve destek ({0})",
+ "iOSAppProvisioning": "iOS uygulama sağlama profilleri",
+ "incompleteUserEnrollments": "Eksik kullanıcı kayıtları",
+ "intuneRemoteAssistance": "Uzaktan yardım (önizleme)",
+ "iosUpdates": "iOS/iPadOS ilkelerini güncelleştir",
+ "legacyPcManagement": "Eski bilgisayar yönetimi",
+ "macOSSoftwareUpdate": "macOS için güncelleştirme ilkeleri",
+ "macOSSoftwareUpdateAccountSummaries": "macOS cihazlar için yükleme durumu",
+ "macOSSoftwareUpdateCategorySummaries": "Yazılım güncelleştirmeleri özeti",
+ "macOSSoftwareUpdateStateSummaries": "güncelleştirmeler",
+ "managedGooglePlay": "Yönetilen Google Play",
+ "msfb": "İş İçin Microsoft Store",
+ "myPermissions": "İzinlerim",
+ "notifications": "Bildirimler",
+ "officeApps": "Office uygulamaları",
+ "officeProPlusPolicies": "Office uygulamaları için ilkeler",
+ "onPremise": "Şirket İçi",
+ "onPremisesConnector": "Exchange ActiveSync şirket içi bağlayıcısı",
+ "onPremisesDeviceAccess": "Exchange ActiveSync cihazları",
+ "onPremisesManageAccess": "Exchange şirket içi erişimi",
+ "outOfDateIosDevices": "iOS cihazları için yükleme hataları",
+ "overview": "Genel Bakış",
+ "partnerDeviceManagement": "İş ortağı cihaz yönetimi",
+ "perUpdateRingDeploymentState": "Güncelleştirme halkası dağıtım durumuna göre",
+ "permissions": "İzinler",
+ "platformApps": "{0} uygulama",
+ "platformDevices": "{0} cihaz",
+ "platformEnrollment": "{0} kaydı",
+ "policies": "İlkeler",
+ "previewMDMDevices": "Tüm yönetilen cihazlar (Önizleme)",
+ "profiles": "Profiller",
+ "properties": "Özellikler",
+ "reports": "Raporlar",
+ "retireNoncompliantDevices": "Uyumsuz Cihazları Kullanımdan Kaldır",
+ "retireNoncompliantDevicesPreview": "Retire noncompliant devices (preview)",
+ "role": "Rol",
+ "scriptManagement": "Komut Dosyaları",
+ "securityBaselines": "Güvenlik temelleri",
+ "serviceToServiceConnector": "Exchange Online bağlayıcısı",
+ "shellScripts": "Kabuk betikleri",
+ "teamViewerConnector": "TeamViewer bağlayıcısı",
+ "telecomeExpenseManagement": "Telekom gider yönetimi",
+ "tenantAdmin": "Kiracı yöneticisi",
+ "tenantAdministration": "Kiracı yönetimi",
+ "termsAndConditions": "Hüküm ve koşullar",
+ "titles": "Başlıklar",
+ "troubleshootSupport": "Sorun Giderme ve destek",
+ "user": "Kullanıcı",
+ "userExecutionStatus": "Kullanıcı durumu",
+ "warranty": "Garanti satıcıları",
+ "wdacSupplementalPolicies": "S modu ek ilkeleri",
+ "windows10DriverUpdate": "Windows 10 ve sonraki sürümleri için sürücü güncelleştirmeleri (Önizleme)",
+ "windows10QualityUpdate": "Windows 10 ve sonrası için kalite güncelleştirmeleri (Önizleme)",
+ "windows10UpdateRings": "Windows 10 ve sonraki sürümler için güncelleştirme kademeleri",
+ "windows10XPolicyFailures": "Windows 10X ilke hataları",
+ "windowsEnterpriseCertificate": "Windows Enterprise sertifikası",
+ "windowsManagement": "PowerShell betikleri",
+ "windowsSideLoadingKeys": "Windows dışarıdan yükleme anahtarları",
+ "windowsSymantecCertificate": "Windows DigiCert sertifikası",
+ "windowsThreatReport": "Tehdit aracı durumu"
+ },
+ "ScopeTypes": {
+ "allDevices": "tüm aygıtlar",
+ "allUsers": "Tüm Kullanıcılar",
+ "allUsersAndDevices": "Tüm Kullanıcılar ve Tüm Cihazlar",
+ "selectedGroups": "Seçili Gruplar"
+ },
+ "OfficeApplicationType": {
+ "access": "Access",
+ "bing": "Varsayılan olarak Microsoft Arama",
+ "excel": "Excel",
+ "groove": "OneDrive (Groove)",
+ "lync": "Skype Kurumsal",
+ "oneDrive": "OneDrive Masaüstü",
+ "oneNote": "OneNote",
+ "outlook": "Outlook",
+ "powerPoint": "PowerPoint",
+ "publisher": "Publisher",
+ "teams": "Teams",
+ "word": "Word"
+ },
+ "ApplicableDeviceType": {
+ "iPad": "iPad",
+ "iPhoneAndIPod": "iPhone ve iPod"
+ },
+ "Assignment": {
+ "AutoUpdateMode": {
+ "default": "Varsayılan",
+ "header": "Güncelleştirme Önceliği",
+ "postponed": "Ertelendi",
+ "priority": "Yüksek Öncelik"
+ },
+ "DeliveryOptimizationPriority": {
+ "backgroundNormal": "Arka Plan",
+ "displayText": "{0} içinde içerik indirme",
+ "foreground": "Önalan",
+ "header": "Teslim iyileştirme önceliği"
+ },
+ "RestartGracePeriod": {
+ "allowSnooze": "Kullanıcının yeniden başlatma bildirimini ertelemesine izni ver",
+ "countdownDialog": "Yeniden başlatma gerçekleşmeden önce yeniden başlatma geri sayımı iletişim kutusunun ne zaman görüntüleneceği seçin (dakika)",
+ "durationInMinutes": "Cihaz yeniden başlatma mehil süresi (dakika)",
+ "snoozeDurationInMinutes": "Erteleme süresini seçin (dakika)"
+ },
+ "SoftwareInstallationTime": {
+ "TimeZone": {
+ "label": "Saat dilimi",
+ "local": "Cihaz saat dilimi",
+ "utc": "UTC"
+ },
+ "dateAndTimeLabel": "Tarih ve saat",
+ "deadlineTimeColumnLabel": "Yükleme son tarihi",
+ "deadlineTimeDatePickerErrorMessage": "Seçili tarih geçerli tarihten sonra olmalıdır",
+ "deadlineTimeLabel": "Uygulama yükleme son tarihi",
+ "defaultTime": "Hemen",
+ "infoText": "Bu uygulama, aşağıda bir kullanılabilirlik süresi belirtilmezse dağıtıldığı anda kullanılabilir. Bu gerekli bir uygulamaysa, yükleme son tarihini belirtebilirsiniz.",
+ "specificTime": "Belirli bir tarih ve saat",
+ "startTimeColumnLabel": "Kullanılabilirlik",
+ "startTimeDatePickerErrorMessage": "Seçilen tarih, son tarihten önce olmalıdır",
+ "startTimeLabel": "Uygulama kullanılabilirliği"
+ },
+ "restartGracePeriodHeader": "Yeniden başlatma mehil süresi",
+ "restartGracePeriodLabel": "Cihaz yeniden başlatma mehil süresi",
+ "summaryTitle": "Son kullanıcı deneyimi"
+ },
+ "EnrollmentType": {
+ "devicesWithEnrollment": "Yönetilen cihazlar",
+ "devicesWithoutEnrollment": "Yönetilen uygulamalar"
+ },
+ "PolicySet": {
+ "appManagement": "Uygulama yönetimi",
+ "assignments": "Atamalar",
+ "basics": "Temel Ayarlar",
+ "deviceEnrollment": "Cihaz kaydı",
+ "deviceManagement": "Cihaz yönetimi",
+ "scopeTags": "Kapsam etiketleri",
+ "appConfigurationTitle": "Uygulama yapılandırma ilkeleri",
+ "appProtectionTitle": "Uygulama koruma ilkeleri",
+ "appTitle": "Uygulamalar",
+ "iOSAppProvisioningTitle": "iOS uygulama sağlama profilleri",
+ "deviceLimitRestrictionTitle": "Cihaz sınırı kısıtlamaları",
+ "deviceTypeRestrictionTitle": "Cihaz türü kısıtlamaları",
+ "enrollmentStatusSettingTitle": "Kayıt durumu sayfaları",
+ "windowsAutopilotDeploymentProfileTitle": "Windows Autopilot Deployment profilleri",
+ "deviceComplianceTitle": "Cihaz uyumluluk ilkeleri",
+ "deviceConfigurationTitle": "Cihaz yapılandırma profilleri",
+ "powershellScriptTitle": "Powershell betikleri"
+ },
+ "AzureIAMCommon": {
+ "CountryNames": {
+ "countryNameNR": "Nauru",
+ "countryNameBH": "Bahreyn",
+ "countryNameZA": "Güney Afrika",
+ "countryNameJO": "Ürdün",
+ "countryNameSD": "Sudan",
+ "countryNameNU": "Niue",
+ "countryNameCZ": "Çek Cumhuriyeti",
+ "countryNameLT": "Litvanya",
+ "countryNameTK": "Tokelau",
+ "countryNameEC": "Ekvador",
+ "countryNameVU": "Vanuatu",
+ "countryNameUG": "Uganda",
+ "countryNameLI": "Liechtenstein",
+ "countryNameHK": "Hong Kong ÖİB",
+ "countryNameGH": "Gana",
+ "countryNameSA": "Suudi Arabistan",
+ "countryNamePG": "Papua Yeni Gine",
+ "countryNameBW": "Botsvana",
+ "countryNameDG": "Diego Garcia",
+ "countryNameIN": "Hindistan",
+ "countryNameHN": "Honduras",
+ "countryNameRO": "Romanya",
+ "countryNameKZ": "Kazakistan",
+ "countryNameLC": "Saint Lucia",
+ "countryNameGE": "Gürcistan",
+ "countryNameTT": "Trinidad ve Tobago",
+ "countryNameMP": "Kuzey Mariana Adaları",
+ "countryNameMV": "Maldivler",
+ "countryNameFI": "Finlandiya",
+ "countryNameNO": "Norveç",
+ "countryNameEE": "Estonya",
+ "countryNameVE": "Venezuela",
+ "countryNameUZ": "Özbekistan",
+ "countryNameME": "Karadağ",
+ "countryNameTJ": "Tacikistan",
+ "countryNameAW": "Aruba",
+ "countryNameFR": "Fransa",
+ "countryNameOM": "Umman",
+ "countryNameAO": "Angola",
+ "countryNameIT": "İtalya",
+ "countryNameAZ": "Azerbaycan",
+ "countryNameKG": "Kırgızistan",
+ "countryNameWF": "Wallis ve Futuna",
+ "countryNameTL": "Timor-Leste",
+ "countryNameFK": "Falkland Adaları (Islas Malvinas)",
+ "countryNameGY": "Guyana",
+ "countryNameSS": "Güney Sudan",
+ "countryNameMM": "Myanmar",
+ "countryNameHT": "Haiti",
+ "countryNameSY": "Suriye",
+ "countryNameMD": "Moldova",
+ "countryNameVC": "Saint Vincent ve Grenadinler",
+ "countryNameID": "Endonezya",
+ "countryNameRE": "Reunion",
+ "countryNameER": "Eritre",
+ "countryNameMK": "Kuzey Makedonya",
+ "countryNameTG": "Togo",
+ "countryNamePF": "Fransız Polinezyası",
+ "countryNameKY": "Cayman Adaları",
+ "countryNameIO": "İngiliz Hint Okyanusu Toprakları",
+ "countryNameRU": "Rusya",
+ "countryNameMA": "Fas",
+ "countryNameAU": "Avustralya",
+ "countryNameBO": "Bolivya",
+ "countryNameVA": "Holy See (Vatikan Kent Devleti)",
+ "countryNameVG": "İngiliz Virgin Adaları",
+ "countryNameFM": "Mikronezya",
+ "countryNameAQ": "Antarktika",
+ "countryNameZM": "Zambiya",
+ "countryNameBR": "Brezilya",
+ "countryNameIS": "İzlanda",
+ "countryNamePE": "Peru",
+ "countryNameBG": "Bulgaristan",
+ "countryNamePR": "Porto Riko",
+ "countryNameGI": "Cebelitarık",
+ "countryNameBS": "Bahamalar",
+ "countryNameJE": "Jersey",
+ "countryNameMO": "Macau ÖİB",
+ "countryNameRW": "Ruanda",
+ "countryNameAS": "Amerikan Samoası",
+ "countryNameBQ": "Bonaire, Sint Eustatius ve Saba",
+ "countryNameMF": "Saint Martin",
+ "countryNameTM": "Türkmenistan",
+ "countryNameML": "Mali",
+ "countryNameTO": "Tonga",
+ "countryNameNC": "Yeni Kaledonya",
+ "countryNameAC": "Ascension Adası",
+ "countryNameBN": "Brunei",
+ "countryNameBD": "Bangladeş",
+ "countryNameMW": "Malavi",
+ "countryNameGM": "Gambiya",
+ "countryNameGA": "Gabon",
+ "countryNameCA": "Kanada",
+ "countryNameSH": "Saint Helena",
+ "countryNameYT": "Mayotte",
+ "countryNameMN": "Moğolistan",
+ "countryNamePA": "Panama",
+ "countryNameCM": "Kamerun",
+ "countryNameNE": "Nijer",
+ "countryNameCW": "Curaçao",
+ "countryNameJP": "Japonya",
+ "countryNameCY": "Kıbrıs",
+ "countryNameCD": "Demokratik Kongo Cumhuriyeti",
+ "countryNameTN": "Tunus",
+ "countryNameTR": "Türkiye",
+ "countryNameWS": "Samoa",
+ "countryNameSE": "İsveç",
+ "countryNameXK": "Kosova",
+ "countryNameKH": "Kamboçya",
+ "countryNamePL": "Polonya",
+ "countryNameDZ": "Cezayir",
+ "countryNameLR": "Liberya",
+ "countryNameSO": "Somali",
+ "countryNameDM": "Dominika",
+ "countryNameEG": "Mısır",
+ "countryNameGF": "Fransız Guyanası",
+ "countryNameNZ": "Yeni Zelanda",
+ "countryNamePS": "Filistin Yönetimi",
+ "countryNameIL": "İsrail",
+ "countryNameSL": "Sierra Leone",
+ "countryNameGR": "Yunanistan",
+ "countryNameNG": "Nijerya",
+ "countryNameMR": "Moritanya",
+ "countryNameVI": "ABD Virgin Adaları",
+ "countryNameGQ": "Ekvator Ginesi",
+ "countryNameMX": "Meksika",
+ "countryNameDJ": "Cibuti",
+ "countryNameGN": "Gine",
+ "countryNameCN": "Çin",
+ "countryNameMZ": "Mozambik",
+ "countryNameBV": "Bouvet Adası",
+ "countryNameNF": "Norfolk Adası",
+ "countryNameTZ": "Tanzanya",
+ "countryNameAI": "Anguilla",
+ "countryNameGS": "Güney Georgia ve Güney Sandwich Adaları",
+ "countryNameRS": "Sırbistan",
+ "countryNameCC": "Cocos (Keeling) Adaları",
+ "countryNameNA": "Namibya",
+ "countryNameDE": "Almanya",
+ "countryNameCG": "Kongo Cumhuriyeti",
+ "countryNameKW": "Kuveyt",
+ "countryNameMH": "Marshall Adaları",
+ "countryNameVN": "Vietnam",
+ "countryNameBY": "Belarus",
+ "countryNameMY": "Malezya",
+ "countryNameST": "Sao Tome ve Principe",
+ "countryNameLS": "Lesotho",
+ "countryNameBI": "Burundi",
+ "countryNameTD": "Çad",
+ "countryNameCX": "Christmas Adası",
+ "countryNameIR": "İran",
+ "countryNameTV": "Tuvalu",
+ "countryNameGW": "Gine-Bissau",
+ "countryNameUA": "Ukrayna",
+ "countryNameCU": "Küba",
+ "countryNameCO": "Kolombiya",
+ "countryNameNI": "Nikaragua",
+ "countryNameHR": "Hırvatistan",
+ "countryNameSC": "Seyşeller",
+ "countryNameNL": "Hollanda",
+ "countryNameUM": "ABD Küçük Harici Adaları",
+ "countryNameIM": "Man Adası",
+ "countryNameFJ": "Fiji",
+ "countryNameSR": "Surinam",
+ "countryNameGT": "Guatemala",
+ "countryNameSM": "San Marino",
+ "countryNameLA": "Laos",
+ "countryNameGB": "Birleşik Krallık",
+ "countryNameBB": "Barbados",
+ "countryNameSI": "Slovenya",
+ "countryNameAM": "Ermenistan",
+ "countryNameAR": "Arjantin",
+ "countryNamePM": "Saint Pierre ve Miquelon",
+ "countryNameTF": "Fransız Güney ve Antarktika Bölgesi",
+ "countryNameDO": "Dominik Cumhuriyeti",
+ "countryNameZW": "Zimbabve",
+ "countryNameMQ": "Martinik",
+ "countryNamePT": "Portekiz",
+ "countryNameCF": "Orta Afrika Cumhuriyeti",
+ "countryNameBE": "Belçika",
+ "countryNameKM": "Komorolar",
+ "countryNameLY": "Libya",
+ "countryNameIE": "İrlanda",
+ "countryNameKP": "Kuzey Kore",
+ "countryNameGG": "Guernsey",
+ "countryNameSK": "Slovakya",
+ "countryNameTC": "Turks ve Caicos Adaları",
+ "countryNameNP": "Nepal",
+ "countryNameBF": "Burkina Faso",
+ "countryNameYE": "Yemen",
+ "countryNameBA": "Bosna-Hersek",
+ "countryNameGP": "Guadeloupe",
+ "countryNameMS": "Montserrat",
+ "countryNameCL": "Şili",
+ "countryNameIQ": "Irak",
+ "countryNameSJ": "Svalbard ve Jan Mayen Adaları",
+ "countryNameAX": "Aland Adaları",
+ "countryNameKE": "Kenya",
+ "countryNameGU": "Guam",
+ "countryNameBM": "Bermuda",
+ "countryNameFO": "Faroe Adaları",
+ "countryNameBL": "Saint Barthélemy",
+ "countryNameLB": "Lübnan",
+ "countryNameJM": "Jamaika",
+ "countryNameAF": "Afganistan",
+ "countryNameES": "İspanya",
+ "countryNameMC": "Monako",
+ "countryNameSG": "Singapur",
+ "countryNameAL": "Arnavutluk",
+ "countryNameSN": "Senegal",
+ "countryNameSZ": "Svaziland",
+ "countryNameBZ": "Belize",
+ "countryNameCI": "Fildişi Sahili (Côte d’Ivoire)",
+ "countryNameTW": "Tayvan",
+ "countryNameUY": "Uruguay",
+ "countryNameCK": "Cook Adaları",
+ "countryNameTH": "Tayland",
+ "countryNameHM": "Heard Adası ve McDonald Adaları",
+ "countryNameGD": "Grenada",
+ "countryNameUS": "Amerika Birleşik Devletleri",
+ "countryNameAT": "Avusturya",
+ "countryNameKR": "Kore Cumhuriyeti",
+ "countryNamePK": "Pakistan",
+ "countryNameDK": "Danimarka",
+ "countryNameSV": "El Salvador",
+ "countryNamePW": "Palau",
+ "countryNameET": "Etiyopya",
+ "countryNameMG": "Madagaskar",
+ "countryNameCR": "Kosta Rika",
+ "countryNameLU": "Lüksemburg",
+ "countryNameQA": "Katar",
+ "countryNameBT": "Bhutan",
+ "countryNameSB": "Solomon Adaları",
+ "countryNameAE": "Birleşik Arap Emirlikleri",
+ "countryNameAD": "Andorra",
+ "countryNameCV": "Cabo Verde",
+ "countryNameAG": "Antigua ve Barbuda",
+ "countryNameMU": "Mauritius",
+ "countryNameHU": "Macaristan",
+ "countryNameSX": "Sint Maarten",
+ "countryNameCH": "İsviçre",
+ "countryNamePN": "Pitcairn Adaları",
+ "countryNameGL": "Grönland",
+ "countryNamePH": "Filipinler",
+ "countryNameMT": "Malta",
+ "countryNameKN": "Saint Kitts ve Nevis",
+ "countryNameLK": "Sri Lanka",
+ "countryNameKI": "Kiribati",
+ "countryNameBJ": "Benin",
+ "countryNameLV": "Letonya",
+ "countryNamePY": "Paraguay"
+ }
+ }
}
diff --git a/Documentation/Strings-zh-chs.json b/Documentation/Strings-zh-chs.json
index 360f961..7341501 100644
--- a/Documentation/Strings-zh-chs.json
+++ b/Documentation/Strings-zh-chs.json
@@ -1,1842 +1,4 @@
{
- "InstallContextType": {
- "device": "Device",
- "deviceContext": "Device context",
- "user": "User",
- "userContext": "User context"
- },
- "WipPolicySettings": {
- "addNetworkBoundary": "Add network boundary",
- "addNetworkBoundaryButton": "Add network boundary...",
- "allowWindowsSearch": "Allow Windows Search to search encrypted corporate data and Store apps",
- "authoritativeIpRanges": "Enterprise IP Ranges list is authoritative (do not auto-detect)",
- "authoritativeProxyServers": "Enterprise Proxy Servers list is authoritative (do not auto-detect)",
- "boundaryType": "Boundary type",
- "cloudResources": "Cloud resources",
- "corporateIdentity": "Corporate identity",
- "dataRecoveryCert": "Upload a Data Recovery Agent (DRA) certificate to allow recovery of encrypted data",
- "editNetworkBoundary": "Edit network boundary",
- "enrollmentState": "Enrollment state",
- "iPv4Ranges": "IPv4 ranges",
- "iPv6Ranges": "IPv6 ranges",
- "internalProxyServers": "Internal proxy servers",
- "maxInactivityTime": "Maximum amount of time (in minutes) allowed after the device is idle that will cause the device to become PIN or password locked",
- "maxPasswordAttempts": "Number of authentication failures allowed before the device will be wiped",
- "mdmDiscoveryUrl": "MDM discovery URL",
- "mdmRequiredSettingsInfo": "This policy only applies to Windows 10 Anniversary Edition and higher. This policy uses Windows Information Protection (WIP) to apply protection.",
- "minimumPinLength": "Set the minimum number of characters required for the PIN",
- "name": "Name",
- "networkBoundariesGridEmptyText": "Any network boundaries you add will show up here",
- "networkBoundary": "Network boundary",
- "networkDomainNames": "Network domains",
- "neutralResources": "Neutral resources",
- "passportForWork": "Use Windows Hello for Business as a method for signing into Windows",
- "pinExpiration": "Specify the period of time (in days) that a PIN can be used before the system requires the user to change it",
- "pinHistory": "Specify the number of past PINs that can be associated to a user account that can’t be reused",
- "pinLowercaseLetters": "Configure the use of lowercase letters in the Windows Hello for Business PIN",
- "pinSpecialCharacters": "Configure the use of special characters in the Windows Hello for Business PIN",
- "pinUppercaseLetters": "Configure the use of uppercase letters in the Windows Hello for Business PIN",
- "protectUnderLock": "Prevent corporate data from being accessed by apps when the device is locked. Applies only to Windows 10 Mobile",
- "protectedDomainNames": "Protected domains",
- "proxyServers": "Proxy servers",
- "requireAppPin": "Disable app PIN when device PIN is managed",
- "requiredSettings": "Required settings",
- "requiredSettingsInfo": "Changing the scope or removing this policy will decrypt corporate data.",
- "revokeOnMdmHandoff": "Revoke access to protected data when the device enrolls to MDM",
- "revokeOnUnenroll": "Revoke encryption keys on unenroll",
- "rmsTemplateForEdp": "Specify the template ID to use for Azure RMS",
- "showWipIcon": "Show the enterprise data protection icon",
- "type": "Type",
- "useRmsForWip": "Use Azure RMS for WIP",
- "value": "Value",
- "weRequiredSettingsInfo": "This policy only applies to Windows 10 Creators Update and higher. This policy uses Windows Information Protection (WIP) and Windows MAM to apply protection.",
- "wipProtectionMode": "Windows Information Protection mode",
- "withEnrollment": "With enrollment",
- "withoutEnrollment": "Without enrollment"
- },
- "EdgeAppConfig": {
- "AllowedURLs": {
- "title": "Allowed URLs",
- "tooltip": "Specify the sites your users are allowed to access while in their work context. No other sites will be allowed. You may choose to configure either an allowed/blocked list, but not both. "
- },
- "ApplicationProxyRedirection": {
- "header": "Application proxy",
- "title": "Application proxy redirection",
- "tooltip": "Enable App proxy redirection to give users access to corporate links and on-premise web apps."
- },
- "BlockedURLs": {
- "title": "Blocked URLs",
- "tooltip": "Specify the sites that are blocked for your users while in their work context. All other sites will be allowed. You may choose to configure either an allowed/blocked list, but not both. "
- },
- "Bookmarks": {
- "header": "Managed bookmarks",
- "tooltip": "Enter a list of bookmarked URLs for your users to have available when using Microsoft Edge in their work context.",
- "uRL": "URL"
- },
- "HomepageURL": {
- "header": "Managed homepage",
- "title": "Homepage shortcut URL",
- "tooltip": "Configure a homepage shortcut that will appear to users as the first icon beneath the search bar when they open a new tab in Microsoft Edge."
- },
- "PersonalContext": {
- "label": "Redirect restricted sites to personal context",
- "tooltip": "Configure if users should be allowed to transition to their personal context to open restricted sites."
- }
- },
- "AzureIAM": {
- "AdrsUserActionSelectionWarning": {
- "conditions": "Conditions that require device registration are not available with \"Register or join devices\" user action.",
- "message": "Only \"Require multi-factor authentication\" can be used in policies created for the \"Register or join devices\" user action.{0}"
- },
- "AuthContext": {
- "Included": {
- "none": "No cloud apps, actions, or authentication contexts selected",
- "plural": "{0} authentication contexts included",
- "singular": "1 authentication context included"
- },
- "InfoBlade": {
- "createTitle": "Add authentication context",
- "descPlaceholder": "Add description for the authentication context",
- "modifyTitle": "Modify authentication context",
- "namePlaceholder": "Ex. Trusted location, Trusted device, Strong authorization",
- "publishDesc": "Publish to apps will make the authentication context available for apps to use. Publish once you finish configuring Conditional Access policy for the tag. [Learn more][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150966",
- "publishLabel": "Publish to apps",
- "titleDesc": "Configure an authentication context that will be used to protect application data and actions. Use names and descriptions that can be understood by application administrators. [Learn more][1]\n[1]:https://go.microsoft.com/fwlink/?linkid=2150965"
- },
- "Notify": {
- "failure": "Failed to update {0}",
- "modifying": "Modifying {0}",
- "success": "Successfully updated {0}"
- },
- "WhatIf": {
- "selected": "Authentication context included"
- },
- "addNewStepUp": "New authentication context",
- "checkBoxInfo": "Select the authentication contexts this policy will apply to",
- "configure": "Configure authentication contexts",
- "createCA": "Assign Conditional Access policies to the authentication context",
- "dataGrid": "List of authentication contexts",
- "description": "Description",
- "documentation": "Documentation",
- "getStarted": "Get started",
- "label": "Authentication context (preview)",
- "menuLabel": "Authentication context (Preview)",
- "name": "Name",
- "noAuthContextSet": "There are no authentication contexts",
- "noData": "No authentication contexts to display",
- "selectionInfo": "Authentication context is used to secure application data and actions in apps like SharePoint and Microsoft Cloud App Security.",
- "step": "Step",
- "tabDescription": "Manage authentication context to protect data and actions in your apps. [Learn more][1]\n[1]:https://go.microsoft.com/fwlink/?linkid=2150965",
- "tagResources": "Tag resources with an authentication context"
- },
- "AuthenticationStrength": {
- "Mode": {
- "deviceBasedPush": "Microsoft Authenticator (Phone Sign-in)",
- "deviceBasedPushFido2X509Certificate": "Microsoft Authenticator (Phone Sign-in) + Fido 2 + Certificate Based Authentication",
- "deviceBasedPushX509CertificateSingleFactor": "Microsoft Authenticator (Phone Sign-in) + Fido 2 + Certificate Based Authentication (Single Factor)",
- "email": "Email One Time Pass",
- "emailOtp": "Email OTP",
- "federatedMultiFactor": "Federated Multi-Factor",
- "federatedSingleFactor": "Federated single factor",
- "federatedSingleFactorFederatedMultiFactor": "Federated single factor + Federated Multi-Factor",
- "fido2": "FIDO 2 security key",
- "fido2X509CertificateSingleFactor": "FIDO 2 security key + Certificate Based Authentication (Single Factor)",
- "hardwareOath": "Hardware OTP",
- "hardwareOathX509CertificateSingleFactor": "Hardware OTP + Certificate Based Authentication (Single Factor)",
- "microsoftAuthenticatorPSIX509CertificateSingleFactor": "Microsoft Authenticator (Phone Sign-in) + Certificate Based Authentication (Single Factor)",
- "microsoftAuthenticatorPsi": "Microsoft Authenticator (Phone Sign-in)",
- "microsoftAuthenticatorPush": "Microsoft Authenticator (Push Notification)",
- "microsoftAuthenticatorPushX509CertificateSingleFactor": "Microsoft Authenticator (Push Notification) + Certificate Based Authentication (Single Factor)",
- "none": "None",
- "password": "Password",
- "passwordDeviceBasedPush": "Password + Microsoft Authenticator (Phone Sign-in)",
- "passwordFido2": "Password + FIDO 2 security key",
- "passwordHardwareOath": "Password + Hardware OTP",
- "passwordMicrosoftAuthenticatorPSI": "Password + Microsoft Authenticator (Phone Sign-in)",
- "passwordMicrosoftAuthenticatorPush": "Password + Microsoft Authenticator (Push Notification)",
- "passwordSms": "Password + SMS",
- "passwordSoftwareOath": "Password + Software OTP",
- "passwordTemporaryAccessPassMultiUse": "Password + Temporary Access Pass (Multi-use)",
- "passwordTemporaryAccessPassOneTime": "Password + Temporary Access Pass (One-time use)",
- "passwordVoice": "Password + Voice",
- "sms": "SMS",
- "smsSignIn": "SMS sign in",
- "smsX509CertificateSingleFactor": "SMS + Certificate Based Authentication (Single Factor)",
- "softwareOath": "Software OTP",
- "softwareOathX509CertificateSingleFactor": "Software OTP + Certificate Based Authentication (Single Factor)",
- "temporaryAccessPassMultiUse": "Temporary Access Pass (Multi-use)",
- "temporaryAccessPassMultiUseX509CertificateSingleFactor": "Temporary Access Pass (Multi-use) + Certificate Based Authentication (Single Factor)",
- "temporaryAccessPassOneTime": "Temporary Access Pass (One-time use)",
- "temporaryAccessPassOneTimeX509CertificateSingleFactor": "Temporary Access Pass (One-time use) + Certificate Based Authentication (Single Factor)",
- "voice": "Voice",
- "voiceX509CertificateSingleFactor": "Voice + Certificate Based Authentication (Single Factor)",
- "windowsHelloForBusiness": "Windows Hello For Business",
- "x509CertificateMultiFactor": "Certificate Based Authentication (Multi-Factor)",
- "x509CertificateSingleFactor": "Certificate Based Authentication (Single Factor)"
- }
- },
- "CAS": {
- "BuiltinPolicy": {
- "Option": {
- "blockDownloads": "Block downloads (Preview)",
- "monitorOnly": "Monitor only (Preview)",
- "protectDownloads": "Protect downloads (Preview)",
- "useCustomControls": "Use custom policy..."
- },
- "ariaLabel": "Choose the kind of Conditional Access App Control to apply"
- }
- },
- "ChooseApplications": {
- "Grid": {
- "appIdAria": "App ID: {0}"
- },
- "LowerGrid": {
- "ariaLabel": "List of selected cloud apps"
- },
- "UpperGrid": {
- "ariaLabel": "List of cloud apps which match the search term"
- }
- },
- "ChooseLocations": {
- "Validation": {
- "failed": "With \"Selected locations\" you must choose at least one location.",
- "selector": "Choose at least one location"
- }
- },
- "ClientApp": {
- "Clients": {
- "Validation": {
- "failed": "You must select at least one of the following clients"
- }
- }
- },
- "ClientConditionsInfo": {
- "browserAndModern": "This policy only applies to browser and modern authentication apps. To apply the policy to all client apps, enable the client app condition and select all the client apps.",
- "classicExperience": "Since this policy was created, the default client apps configuration has been updated.",
- "legacyAuth": "When not configured, policies now apply to all client apps, including modern and legacy auth."
- },
- "CloudAppFilterBlade": {
- "AssignmentFilter": {
- "header": "Attribute",
- "placeholder": "Choose an attribute"
- },
- "Configure": {
- "infoBalloon": "Configure app filters you want to policy to apply to."
- },
- "NoPermissions": {
- "learnMoreAria": "More about custom security attribute permissions.",
- "message": "You do not have the permissions needed to use custom security attributes."
- },
- "gridHeader": "Using custom security attributes you can use the rule builder or rule syntax text box to create or edit the filter rules. In the preview, only attributes of type String are supported. Attributes of type Integer or Boolean will not be shown.",
- "learnMoreAria": "More information about using the rule builder and syntax text box.",
- "noAttributes": "There are no custom attributes available to filter on. You will need to configure some attributes to employ this filter.",
- "title": "Edit filter (Preview)"
- },
- "CloudAppsUserActions": {
- "any": "Any cloud app or action",
- "infoBalloon": "Cloud app or user action you want to test. For example, 'SharePoint Online'",
- "learnMore": "Control access based on all or specific cloud apps or actions.",
- "learnMoreB2C": "Control access based on all or specific cloud apps.",
- "title": "Cloud apps or actions"
- },
- "CloudappsSelectionBlade": {
- "Excluded": {
- "gridAria": "List of excluded cloud apps"
- },
- "Filter": {
- "configured": "Configured",
- "label": "Edit filter (Preview)",
- "with": "{0} with {1}"
- },
- "Included": {
- "gridAria": "List of included cloud apps"
- },
- "Validation": {
- "authContext": "With \"authentication context\" you must configure at least one sub-item.",
- "selectApps": "\"{0}\" must be configured",
- "selector": "Select at least one app.",
- "userActions": "With \"User actions\" you must configure at least one sub-item."
- }
- },
- "DeviceState": {
- "LearnMore": {
- "message": "Control user access when the device the user is signing-in from is not \"Hybrid Azure AD joined\" or \"marked as compliant\".\n '{0}' has been deprecated. Use '{1}' instead."
- }
- },
- "Errors": {
- "notFound": "The policy was not found or has been deleted.",
- "notFoundDetailed": "The policy \"{0}\" no longer exists. It may have been deleted."
- },
- "NamedLocation": {
- "Form": {
- "CountryLookup": {
- "ariaLabel": "Country lookup method",
- "gps": "Determine location by GPS coordinates",
- "info": "When the location condition of a Conditional Access policy is configured, users will be prompted by the Authenticator app to share their GPS location. ",
- "ip": "Determine location by IP address (IPv4 only)"
- },
- "Header": {
- "new": "New location ({0})",
- "update": "Update location ({0})"
- },
- "IP": {
- "learn": "Configure named location IPv4 and IPv6 ranges.\n[Learn more][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
- },
- "Include": {
- "infoBalloon": "Unknown countries/regions are IP addresses that are not associated with a specific country or region. [Learn more][1]\n\nThis includes:\n* IPv6 addresses\n* IPv4 addresses without a direct mapping\n[1]: https://aka.ms/canamedlocations\n",
- "label": "Include unknown countries/regions"
- },
- "Name": {
- "empty": "Name cannot be empty",
- "placeholder": "Name this location"
- },
- "PrivateLink": {
- "learn": "Create a new named location containing Private Links for Azure AD.\n[Learn more][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
- },
- "Search": {
- "countries": "Search countries",
- "names": "Search names",
- "privateLinks": "Search Private Links"
- },
- "Trusted": {
- "label": "Mark as trusted location"
- },
- "enter": "Enter a new IPv4 or IPv6 range",
- "example": "ex: 40.77.182.32/27 or 2a01:111::/32"
- },
- "Label": {
- "addCountries": "Countries location",
- "addIpRange": "IP ranges location",
- "addPrivateLink": "Azure Private Links"
- },
- "Notification": {
- "Create": {
- "Failed": {
- "description": "Failure in creating new location ({0})",
- "title": "Creation has failed"
- },
- "InProgress": {
- "description": "Creating new location ({0})",
- "title": "Creation in progress"
- },
- "Success": {
- "description": "Success in creating new location ({0})",
- "title": "Creation has succeeded"
- }
- },
- "Delete": {
- "Failed": {
- "description": "Failure in deleting location ({0})",
- "title": "Deletion has failed"
- },
- "InProgress": {
- "description": "Deleting location ({0})",
- "title": "Deletion in progress"
- },
- "Success": {
- "description": "Success in deleting location ({0})",
- "title": "Deletion has succeeded"
- }
- },
- "Update": {
- "Failed": {
- "description": "Failure in updating location ({0})",
- "title": "Updating has failed"
- },
- "InProgress": {
- "description": "Updating location ({0})",
- "title": "Updating in progress"
- },
- "Success": {
- "description": "Success in updating location ({0})",
- "title": "Updating has succeeded"
- }
- }
- },
- "PrivateLinks": {
- "grid": "List of Private Links"
- },
- "Trusted": {
- "title": "Trusted type",
- "trusted": "Trusted"
- },
- "Type": {
- "all": "All types",
- "countries": "Countries",
- "ipRanges": "IP ranges",
- "privateLinks": "Private Links",
- "title": "Location type"
- },
- "iPRangeInvalidError": "Value must be a valid IPv4 or IPv6 range.",
- "iPRangeLinkOrSiteLocalError": "IP network detected as a link local or site local address.",
- "iPRangeOctetError": "IP network must not start with 0 or 255.",
- "iPRangePrefixError": "IP network prefix must be from /{0} to /{1}.",
- "iPRangePrivateError": "IP network detected as a private address."
- },
- "Policies": {
- "Grid": {
- "aria": "List of Conditional Access policies"
- },
- "countText": "{0} out of {1} policies found",
- "countTextSingular": "{0} out of 1 policy found",
- "search": "Search policies"
- },
- "Policy": {
- "Condition": {
- "ServicePrincipalRisk": {
- "description": "Configure service principal risk levels needed for policy to be enforced",
- "infoBalloonContent": "Configure service principal risk to apply the policy to selected risk level(s)",
- "title": "Service principal risk"
- }
- }
- },
- "PolicyControlAuthStrength": {
- "MultiFactorAuthentication": {
- "description": "Combinations of methods that satisfy strong authentication, such as Password + SMS",
- "displayName": "Multi-factor authentication (MFA)"
- },
- "Passwordless": {
- "description": "Passwordless methods that satisfy strong authentication, such as Microsoft Authenticator ",
- "displayName": "Passwordless MFA"
- },
- "PhishingResistant": {
- "description": "Phishing-resistant Passwordless methods for the strongest authentication, such as FIDO2 Security Key",
- "displayName": "Phishing resistant MFA"
- }
- },
- "PolicyControlFedAuthMethod": {
- "certificate": "Certificate authentication",
- "infoBubble": "Specify a required authentication method, that must be satisfied by federation provider, such as ADFS.",
- "multifactor": "Multi-factor authentication",
- "require": "Require federated authentication method (Preview)",
- "whatIfFormat": "{0} - {1}"
- },
- "PolicyState": {
- "off": "Off",
- "on": "On",
- "reportOnly": "Report-only"
- },
- "PolicyTemplates": {
- "Devices": {
- "description": "Select Devices policy template category to gain visibility into devices accessing the network. Ensure compliance and health status before granting access.",
- "name": "Devices"
- },
- "Identities": {
- "description": "Select Identities policy template category to verify and secure each identity with strong authentication across your entire digital estate.",
- "name": "Identities"
- },
- "Summary": {
- "CloudApps": {
- "allCloudApps": "All apps",
- "office365": "Office 365",
- "registerSecurityInfo": "Register security information"
- },
- "Conditions": {
- "androidAndIOS": "Device Platform: Android and IOS",
- "anyDevice": "Any device except Android, IOS, Windows and Mac",
- "anyDeviceStateExceptHybrid": "Any device state except compliant and hybrid Azure AD joined",
- "anyLocation": "Any location except trusted",
- "browserMobileDesktop": "Client apps: Browser, Mobile apps and desktop clients",
- "exchangeActiveSync": "Client Apps: Exchange Active Sync, Other Clients",
- "windowsAndMac": "Device Platform: Windows and Mac"
- },
- "Devices": {
- "anyDevice": "Any Device"
- },
- "Grant": {
- "appProtectionPolicy": "Require app protection policy",
- "approvedClientApp": "Require approved client app",
- "blockAccess": "Block access",
- "mfa": "Require multi-factor authentication",
- "passwordChange": "Require password change",
- "requireCompliantDevice": "Require device to be marked as compliant",
- "requireHybridAzureADDevice": "Require hybrid Azure AD joined device"
- },
- "Session": {
- "appEnforcedRestrictions": "Use app enforced restrictions",
- "signInFrequency": "Sign-in Frequency and never persistent browser session"
- },
- "UsersAndGroups": {
- "allUsers": "All Users",
- "directoryRoles": "Directory roles except current administrator",
- "globalAdmin": "Global Administrator",
- "noGuestAndAdmins": "All Users except Guest and External, Global administrators, Current administrator"
- },
- "azureManagement": "Azure Management",
- "deviceFilters": "Filters for devices",
- "devicePlatforms": "Device Platforms"
- },
- "TemplateId": {
- "AppEnforcedRestrictions": {
- "description": "Block or limit access to SharePoint, OneDrive, and Exchange content from unmanaged devices.",
- "name": "CA014: Use application enforced restrictions for unmanaged devices",
- "title": "Use application enforced restrictions for unmanaged devices"
- },
- "ApprovedClientApps": {
- "description": "To prevent data loss, organizations can restrict access to approved modern auth client apps with Intune app protection.",
- "name": "CA012: Require approved client apps and app protection",
- "title": "Require approved client apps and app protection"
- },
- "BlockAccessOnUnknowns": {
- "description": "Users will be blocked from accessing company resources when the device type is unknown or unsupported.",
- "name": "CA010: Block access for unknown or unsupported device platform",
- "title": "Block access for unknown or unsupported device platform"
- },
- "BlockLegacyAuth": {
- "description": "Block legacy authentication endpoints that can be used to bypass multi-factor authentication. ",
- "name": "CA003: Block legacy authentication",
- "title": "Block legacy authentication"
- },
- "NoPersistentBrowserSession": {
- "description": "Protect user access on unmanaged devices by preventing browser sessions from remaining signed in after the browser is closed and setting a sign-in frequency to 1 hour.",
- "name": "CA011: No persistent browser session",
- "title": "No persistent browser session"
- },
- "RequireCompliantOrHybridADAdmins": {
- "description": "Require privileged administrators to only access resources when using a compliant or hybrid Azure AD joined device.",
- "name": "CA009: Require compliant or hybrid Azure AD joined device for admins",
- "title": "Require compliant or hybrid Azure AD joined device for admins"
- },
- "RequireCompliantOrHybridADAllUsers": {
- "description": "Protect access to company resources by requiring users to use a managed device or perform multi-factor authentication. (macOS or Windows only)",
- "name": "CA013: Require compliant or hybrid Azure AD joined device or multi-factor authentication for all users",
- "title": "Require compliant or hybrid Azure AD joined device or multi-factor authentication for all users"
- },
- "RequireMFAAllUsers": {
- "description": "Require multi-factor authentication for all user accounts to reduce risk of compromise.",
- "name": "CA004: Require multi-factor authentication for all users",
- "title": "Require multi-factor authentication for all users"
- },
- "RequireMFAForAdmins": {
- "description": "Require multi-factor authentication for privileged administrative accounts to reduce risk of compromise. This policy will target the same roles as Security Default.",
- "name": "CA001: Require multi-factor authentication for admins",
- "title": "Require multi-factor authentication for admins"
- },
- "RequireMFAForAzureManagement": {
- "description": "Require multi-factor authentication to protect privileged access to Azure resources.",
- "name": "CA006: Require multi-factor authentication for Azure management",
- "title": "Require multi-factor authentication for Azure management"
- },
- "RequireMFAForGuestAccess": {
- "description": "Require guest users perform multi-factor authentication when accessing your company resources.",
- "name": "CA005: Require multi-factor authentication for guest access",
- "title": "Require multi-factor authentication for guest access"
- },
- "RequireMFAForRiskySignIn": {
- "description": "Require multi-factor authentication if the sign-in risk is detected to be medium or high. (Requires an Azure AD Premium 2 License)",
- "name": "CA007: Require multi-factor authentication for risky sign-ins",
- "title": "Require multi-factor authentication for risky sign-ins"
- },
- "RequirePasswordChangeForHighRiskUsers": {
- "description": "Require the user to change their password if the user risk is detected to be high. (Requires an Azure AD Premium 2 License)",
- "name": "CA008: Require password change for high-risk users",
- "title": "Require password change for high-risk users"
- },
- "RequireSecurityInfo": {
- "description": "Secure when and how users register for Azure AD multi-factor authentication and self-service password. ",
- "name": "CA002: Securing security info registration",
- "title": "Securing security info registration"
- }
- },
- "TemplateState": {
- "BlockAccessOnUnknowns": {
- "title": "Enabling this policy will prevent any access from unknown device type, consider using report only mode to begin with until you have confirmed this will not impact your users."
- },
- "BlockLegacyAuth": {
- "description": "Consider using report only mode to begin with until you have confirmed this will not impact your users.",
- "title": "Enabling this policy will block legacy authentication for all your users."
- },
- "RequireCompliantOrHybridADAdmins": {
- "Description": {
- "on": "Consider using report only mode to begin with until you have confirmed this will not impact your privileged users.",
- "reportOnly": "Policies in report-only mode that require compliant devices may prompt users on Mac, iOS, and Android to select a device certificate during policy evaluation, even though device compliance is not enforced. These prompts may repeat until the device is made compliant."
- },
- "Title": {
- "on": "Enabling this policy will prevent any access for privileged users unless using a managed device such as compliant or hybrid Azure AD joined. Ensure you have configured your compliance policies or enabled hybrid Azure AD configuration before enabling.",
- "reportOnly": "Ensure you have configured your compliance policies or enabled hybrid Azure AD configuration before enabling. "
- }
- },
- "RequireCompliantOrHybridADAllUsers": {
- "Description": {
- "on": "This policy will affect all users except the current logged in Administrator. Consider using report only mode to begin with until you have confirmed this will not impact your users."
- },
- "Title": {
- "on": "Don't lock yourself out! Make sure that your device is compliant, or hybrid Azure AD Joined or you have configured multi-factor authentication. ",
- "reportOnly": "Policies in report-only mode that require compliant devices may prompt users on Mac, iOS, and Android to select a device certificate during policy evaluation, even though device compliance is not enforced. These prompts may repeat untli the device is made compliant."
- }
- },
- "RequireMfa": {
- "description": "If you use emergency access accounts or Azure AD connect to synchronize your on-premises objects, you may need to exclude these accounts from this policy after creation."
- },
- "RequireMfaAdmins": {
- "description": "Please note the current administrator account will automatically be excluded but all others will be protected on policy creation. Consider using report only mode to begin with.",
- "title": "Don't lock yourself out! This policy impacts the Azure portal."
- },
- "RequireMfaAllUsers": {
- "description": "Consider using report only mode to begin with until you have planned and communicated this change to all your users.",
- "title": "Enabling this policy will enforce multi-factor authentication for all your users."
- },
- "RequireSecurityInfo": {
- "description": "Please ensure you review your configuration to protect these accounts based on your company needs.",
- "title": "The following users and roles are excluded from this policy, Guests and External Users, Global Administrators, Current Administrator"
- }
- },
- "basics": "Basics",
- "clientApps": "Client apps",
- "cloudApps": "Cloud apps",
- "cloudAppsOrActions": "Cloud apps or actions ",
- "conditions": "Conditions ",
- "createNewPolicy": "Create new policy from templates (Preview)",
- "createPolicy": "Create Policy",
- "currentUser": "Current user",
- "customizeBuild": "Customize your build",
- "customizeTemplate": "Template lists are customized based on the type of policy you're looking to create",
- "excludedDevicePlatform": "Excluded device platforms",
- "excludedDirectoryRoles": "Excluded directory roles",
- "excludedLocation": "Excluded directory roles",
- "excludedUsers": "Excluded users",
- "grantControl": "Grant control ",
- "includeFilteredDevice": "Include filtered devices in policy",
- "includedDevicePlatform": "Included device platforms",
- "includedDirectoryRoles": "Included directory roles",
- "includedLocation": "Included location",
- "includedUsers": "Included users",
- "legacyAuthenticationClients": "Legacy authentication clients",
- "namePolicy": "Name your policy",
- "next": "Next",
- "policyName": "Policy Name",
- "policyState": "Policy state",
- "policySummary": "Policy summary",
- "policyTemplate": "Policy template",
- "previous": "Previous",
- "reviewAndCreate": "Review + create",
- "riskLevels": "Risk levels",
- "selectATemplate": "Select a Template",
- "selectTemplate": "Select template",
- "selectTemplateCategory": "Select a template category",
- "selectTemplateRecommendation": "We recommend the following templates based on your response",
- "sessionControl": "Session control ",
- "signInFrequency": "Sign-in frequency",
- "signInRisk": "Sign-in risk",
- "template": "Template ",
- "templateCategory": "Template category",
- "userRisk": "User risk",
- "usersAndGroups": "Users and groups ",
- "viewPolicySummary": "View policy summary "
- },
- "SSM": {
- "MemberSelector": {
- "description": "Users and groups"
- },
- "Notification": {
- "Migration": {
- "error": "Failed to migrate Continuous access evaluation settings to Conditional access policies",
- "inProgress": "Migrating Continuous access evaluation settings",
- "success": "Successfully migrated Continuous access evaluation settings to Conditional access policies",
- "successDescription": "Please proceed to Conditional access policies to view the migrated settings in the newly created policy named \"CA policy created from CAE settings\"."
- },
- "error": "Failed to update Continuous access evaluation settings",
- "inProgress": "Updating Continuous access evaluation settings",
- "success": "Successfully updated Continuous access evaluation settings"
- },
- "PreviewOptions": {
- "disable": "Disable preview",
- "enable": "Enable preview"
- },
- "StrictLocationEnforcement": {
- "infoContent1": "Different IPs can be seen by Azure AD and Resource Provider from the same client device due to network partition or IPv4/IPv6 mismatch. Strict Location Enforcement will enforce the Conditional Access policy based on both IP addresses seen by Azure AD and Resource Provider.",
- "infoContent2": "To ensure maximum security, it is recommended to include all IPs that can be seen by both Azure AD and Resource Provider in your Named Location policy and turn on \"Strict Location Enforcement\" mode.",
- "label": "Strict Location Enforcement",
- "title": "Additional enforcement modes"
- },
- "bladeTitle": "Continuous access evaluation",
- "description": "When a user's access is removed or a client IP address changes, Continuous access evaluation automatically blocks access to resources and applications in near real time. ",
- "migrateLabel": "Migrate",
- "migrationError": "Migration failed due to the following error: {0}",
- "migrationInfo": "CAE setting has been moved under Conditional Access UX, please migrate with the “Migrate” button above and configure it with Conditional Access policy going forward. Click here to learn more.",
- "noLicenseMessage": "Manage smart session management settings with Azure AD Premium",
- "optionsPickerTitle": "Enable/Disable Continuous access evaluation",
- "upsellInfo": "You cannot change your settings on this page anymore and any settings here should be disregarded. Your previous setting will be honored. You can configure your CAE settings under Conditional Access going forward. Click here to learn more."
- },
- "SessionLifetime": {
- "PersistentBrowser": {
- "Error": {
- "notAllApps": "Persistent browser session policy only works correctly when \"All cloud apps\" is selected. Please update your cloud apps selection."
- },
- "Option": {
- "always": "Always persistent",
- "help": "A persistent browser session allows users to remain signed in after closing and reopening their browser window.
\n\n- This setting works correctly when \"All cloud apps\" are selected
\n- This does not affect token lifetimes or the sign-in frequency setting.
\n- This will override the \"Show option to stay signed in\" policy in Company Branding.
\n- \"Never persistent\" will override any persistent SSO claims passed in from federated authentication services.
\n- \"Never persistent\" will prevent SSO on mobile devices across applications and between applications and the user's mobile browser.
\n",
- "label": "Persistent browser session",
- "never": "Never persistent"
- },
- "Warning": {
- "allApps": "Persistent browser session only works correctly when All cloud apps is selected. Please change your cloud apps selection. Click here to learn more."
- }
- },
- "SignInFrequency": {
- "Aria": {
- "units": "Hours or days",
- "value": "Frequency"
- },
- "Option": {
- "Day": {
- "plural": "{0} days",
- "singular": "1 day"
- },
- "Hour": {
- "plural": "{0} hours",
- "singular": "1 hour"
- },
- "daysOption": "Days",
- "everytime": "Every time",
- "help": "Time period before a user is asked to sign-in again when attempting to access a resource. The default setting is a rolling window of 90 days, i.e. users will be asked to re-authenticate on the first attempt to access a resource after being inactive on their machine for 90 days or longer.",
- "hoursOption": "Hours",
- "label": "Sign-in frequency",
- "placeholder": "Select units"
- }
- },
- "mainOption": "Modify session lifetime",
- "mainOptionHelp": "Configure how often users will get prompted and whether browser sessions will be persisted. Applications that don't support modern authentication protocols might not honor these policies. In such cases please contact the application developer."
- },
- "SigninRisk": {
- "LearnMore": {
- "message": "Control user access to respond to specific sign-in risk levels."
- }
- },
- "SingleSelectorActive": {
- "failed": "Unable to load this data.",
- "reattempt": "Loading data. Reattempt {0} of {1}."
- },
- "TimeCondition": {
- "Errors": {
- "both": "Invalid \"Include\" or \"Exclude\" time range.",
- "daysOfWeek": "{0} Make sure to specify at least one day of the week.",
- "endBeforeStart": "{0} Make sure start date/time is earlier than end date/time.",
- "exclude": "Invalid \"Exclude\" time range.",
- "generic": "{0} Make sure both days of the week and time zone are set. If \"All day\" is not checked, start time and end time need to be set as well.",
- "include": "Invalid \"Include\" time range.",
- "timeMissing": "{0} Make sure to specify both a start and end time.",
- "timeZone": "{0} Make sure to specify a time zone.",
- "timesAndZone": "{0} Make sure you set start time, end time and time zone."
- }
- },
- "UserActions": {
- "Included": {
- "none": "No cloud apps or actions selected",
- "plural": "{0} user actions included",
- "singular": "1 user action included"
- },
- "accessRequirement1": "Level 1",
- "accessRequirement2": "Level 2",
- "accessRequirement3": "Level 3",
- "accessRequirementsLabel": "Accessing secured app data",
- "appsActionsAuthTitle": "Cloud apps, actions, or authentication context",
- "appsOrActionsSelectorInfoBallonText": "Applications accessed or user actions",
- "appsOrActionsTitle": "Cloud apps or actions",
- "label": "User actions",
- "mainOptionsLabel": "Select what this policy applies to",
- "registerOrJoinDevices": "Register or join devices",
- "registerSecurityInfo": "Register security information",
- "selectionInfo": "Select the action this policy will apply to"
- },
- "UserSelectionBlade": {
- "DirectoryRoles": {
- "ariaLabel": "Choose directory roles"
- },
- "Excluded": {
- "gridAria": "List of excluded users"
- },
- "Included": {
- "gridAria": "List of included users"
- },
- "Validation": {
- "customRoleIncluded": "\"Directory Roles\" includes at least one custom role",
- "customRoleSelected": "At least one custom role is selected",
- "failed": "\"{0}\" must be configured",
- "roles": "Select at least one role",
- "usersGroups": "Select at least one user or group"
- },
- "learnMore": "Control access based on who the policy will apply to, such as users and groups, workload identities, directory roles, or external guests."
- },
- "ValidationResult": {
- "blockEveryonePolicy": "Policy configuration not supported. Review the assignments and controls.",
- "invalidApplicationCondition": "Invalid cloud applications selected",
- "invalidClientTypesCondition": "Invalid client apps selected",
- "invalidConditions": "Assignments are not selected",
- "invalidControls": "Invalid controls selected",
- "invalidDevicePlatformsCondition": "Invalid device platforms selected",
- "invalidDevicesCondition": "Invalid device configuration. Likely an invalid \"{0}\" configuration.",
- "invalidGrantControlPolicy": "Invalid grant control",
- "invalidLocationsCondition": "Invalid locations selected",
- "invalidPolicy": "Assignments are not selected",
- "invalidSessionControlPolicy": "Invalid session control",
- "invalidSignInRisksCondition": "Invalid sign-in risk selected",
- "invalidUserRisksCondition": "Invalid user risk selected",
- "invalidUsersCondition": "Invalid users selected",
- "mamPolicyShouldOnlyTargetAndroidOrIosPlatforms": "MAM policy can only be applied to Android or iOS client platforms.",
- "notSupportedCombination": "Policy configuration is not supported. Learn more about supported policies.",
- "pending": "Validating policy",
- "requireComplianceEveryonePolicy": "Policy configuration will require device compliance for all users. Review the assignments selected.",
- "success": "Valid policy"
- },
- "VpnCert": {
- "Grid": {
- "aria": "List of VPN Certificates"
- }
- },
- "WarningsInfo": {
- "Controls": {
- "compliantDeviceEnabled": "Don't lock yourself out! Make sure that your device is compliant.",
- "domainJoinedDeviceEnabled": "Don't lock yourself out! Make sure that your device is Hybrid Azure AD Joined.",
- "exchangeDisabled": "Exchange ActiveSync only supports \"Compliant device\" and \"Approved client app\" controls. Click to learn more.",
- "exchangeDisabled2": "Exchange ActiveSync only supports \"Compliant device\", \"Approved client app\" and \"Compliant client app\" controls. Click to learn more.",
- "notAvailableForSP": "Some controls are not available due to '{0}' selection in policy assignment",
- "requireAuthOrMfa": "\"{0}\" cannot be used with \"{1}\"",
- "requireMfa": "Consider testing the new \"{0}\" public preview",
- "requirePasswordChangeEnabled": "\"Require password change\" can only be used when policy is assigned to \"All cloud apps\""
- },
- "Policies": {
- "Linux": {
- "devicePlatformsReportOnlyPolicy": "Policies in Report-only mode requiring compliant devices may prompt users on macOS, iOS, Android, and Linux to select a device certificate.",
- "excludeDevicePlatforms": "Exclude device platforms macOS, iOS, Android, and Linux from this policy.",
- "proceedAnywayDevicePlatforms": "Proceed with selected configuration. Users on macOS, iOS, Android, and Linux may receive prompts when the device is checked for compliance."
- },
- "blockCurrentUserPolicy": "Don't lock yourself out! We recommend applying a policy to a small set of users first to verify it behaves as expected. We also recommend excluding at least one administrator from this policy. This ensures that you still have access and can update a policy if a change is required. Please review the affected users and apps.",
- "devicePlatformsReportOnlyPolicy": "Policies in Report-only mode requiring compliant devices may prompt users on macOS, iOS, and Android to select a device certificate.",
- "excludeCurrentUserSelection": "Exclude current user, {0}, from this policy.",
- "excludeDevicePlatforms": "Exclude device platforms macOS, iOS, and Android from this policy.",
- "proceedAnywayDevicePlatforms": "Proceed with selected configuration. Users on macOS, iOS, and Android may receive prompts when the device is checked for compliance.",
- "proceedAnywaySelection": "I understand that my account will be impacted by this policy. Proceed anyway."
- },
- "ServicePrincipals": {
- "blockExchange": "Selecting Office 365 Exchange Online will also affect apps such as OneDrive and Teams.",
- "blockPortal": "Don't lock yourself out! This policy impacts the Azure portal. Before you continue, ensure that you or someone else will be able to get back into the portal.",
- "blockPortalWithSession": "Don't lock yourself out! This policy impacts the Azure portal. Before you continue, ensure that you or someone else will be able to get back into the portal.
Disregard this warning if you are configuring persistent browser session policy that works correctly only if \"All cloud apps\" are selected.",
- "blockSharePoint": "Selecting SharePoint Online will also affect apps such as Microsoft Teams, Planner, Delve, MyAnalytics, and Newsfeed.",
- "blockSkype": "Selecting Skype for Business Online will also affect Microsoft Teams.",
- "includeOrExclude": "You can configure the App Filter for '{0}' or '{1}', but not both.",
- "selectAppsNAForSP": "Individual cloud apps cannot be selected due to '{0}' selection in policy assignment",
- "teamsBlocked": "Microsoft Teams will also be affected when apps such as SharePoint Online and Exchange Online are included in policy."
- },
- "Users": {
- "blockAllUsers": "Don't lock yourself out! This policy will affect all of your users. We recommend applying a policy to a small set of users first to verify it behaves as expected."
- }
- },
- "WhatIf": {
- "Device": {
- "AttributesGrid": {
- "aria": "List of attributes on the device employed during sign-in.",
- "infoBalloon": "List of attributes on the device employed during sign-in."
- }
- }
- },
- "advancedTabText": "Advanced",
- "allCloudAppsErrorBox": "\"All cloud apps\" must be selected when \"Require password change\" grant is selected",
- "allDayCheckboxLabel": "All day",
- "allDevicePlatforms": "Any device",
- "allGuestUserInfoContent": "Includes Azure AD B2B guests, but not SharePoint B2B guests",
- "allGuestUserLabel": "All guest and external users",
- "allRiskLevelsOption": "All risk levels",
- "allTrustedLocationLabel": "All trusted locations",
- "allUserGroupSetSelectorLabel": "All users and groups selected",
- "allUsersString": "All users",
- "and": "{0} AND {1} ",
- "andWithGrouping": "({0}) AND {1} ",
- "androidDisplayName": "Android",
- "anyCloudAppSelection": "Any cloud app",
- "appContextOptionInfoContent": "Requested authentication tag",
- "appContextOptionLabel": "Requested authentication tag (Preview)",
- "appContextUriPlaceholder": "Example: uri:contoso.com:level3",
- "appEnforceInfoBubble": "App enforced restrictions might require additional admin configurations within the cloud apps. The restrictions will only take effect for new sessions.",
- "appNotSetSeletorLabel": "0 cloud apps selected",
- "applyConditionClientAppInfoBalloonContent": "Configure client apps to apply the policy to specific client apps",
- "applyConditionDevicePlatformInfoBalloonContent": "Configure device platforms to apply the policy to specific platforms",
- "applyConditionDeviceStateInfoBalloonContent": "Configure device state to apply the policy to specific device state(s)",
- "applyConditionLocationInfoBalloonContent": "Configure locations to apply the policy to trusted/untrusted locations",
- "applyConditionSigninRiskInfoBalloonContent": "Configure sign-in risk to apply the policy to selected risk level(s)",
- "applyConditionUserRiskInfoBalloonContent": "Configure user risk to apply the policy to selected risk level(s)",
- "applyConditonLabel": "Configure",
- "ariaLabelPolicyDisabled": "Policy is disabled",
- "ariaLabelPolicyEnabled": "Policy is enabled",
- "ariaLabelPolicyReportOnly": "Policy is in Report-only mode",
- "blockAccess": "Block access",
- "builtInDirectoryRoleLabel": "Built-in directory roles",
- "casCustomControlInfo": "Custom policies need to be configured in Cloud App Security portal. This control works instantly for featured apps and can be self onboarded for any app. Click here to learn more about both scenarios.",
- "casInfoBubble": "This control works for various cloud apps.",
- "casPreconfiguredControlInfo": "This control works instantly for featured apps and can be self onboarded for any app. Click here to learn more about both scenarios.",
- "cert64DownloadCol": "Download base64 certificate",
- "cert64Name": "VpnBase64Cert",
- "certDownloadCol": "Download certificate",
- "certDurationCol": "Expiry",
- "certDurationStartCol": "Valid from",
- "certName": "VpnCert",
- "chooseApplicationsBladeSubtitle": "",
- "chooseApplicationsBladeTitle": "Choose Applications",
- "chooseApplicationsCartSubitle": "",
- "chooseApplicationsCartTitle": "Chosen Applications",
- "chooseApplicationsEmpty": "No Applications",
- "chooseApplicationsNone": "None",
- "chooseApplicationsNoneFound": "We didn't find \"{0}\". Try another name or ID.",
- "chooseApplicationsPlural": "{0} and {1} more",
- "chooseApplicationsReAuthEverytimeInfo": "Looking for your app? Some applications cannot be used with \"Require reauthentication – every time\" session control",
- "chooseApplicationsRemove": "Remove",
- "chooseApplicationsReturnedPlural": "{0} applications found",
- "chooseApplicationsReturnedSingular": "1 application found",
- "chooseApplicationsSearchBalloon": "Search for an Application by entering its name or ID.",
- "chooseApplicationsSearchHint": "Search Applications...",
- "chooseApplicationsSearchLabel": "Applications",
- "chooseApplicationsSearching": "Searching...",
- "chooseApplicationsSelect": "Select",
- "chooseApplicationsSelected": "Selected",
- "chooseApplicationsSingular": "{0} and 1 more",
- "chooseApplicationsTooMany": "More results than can be shown. Please filter using the search box.",
- "chooseLocationCorpnetItem": "Corporate network",
- "chooseLocationSelectedLocationsLabel": "Selected locations",
- "chooseLocationTrustedIpsItem": "MFA Trusted IPs",
- "chooseLocationsBladeSubtitle": "",
- "chooseLocationsBladeTitle": "Choose Locations",
- "chooseLocationsCartSubitle": "",
- "chooseLocationsCartTitle": "Chosen Locations",
- "chooseLocationsEmpty": "No Locations",
- "chooseLocationsExcludedSelectorTitle": "Select",
- "chooseLocationsIncludedSelectorTitle": "Select",
- "chooseLocationsNone": "None",
- "chooseLocationsNoneFound": "We didn't find \"{0}\". Try another name or ID.",
- "chooseLocationsPlural": "{0} and {1} more",
- "chooseLocationsRemove": "Remove",
- "chooseLocationsReturnedPlural": "{0} locations found",
- "chooseLocationsReturnedSingular": "1 location found",
- "chooseLocationsSearchBalloon": "Search for a Location by entering its name.",
- "chooseLocationsSearchHint": "Search Locations...",
- "chooseLocationsSearchLabel": "Locations",
- "chooseLocationsSearching": "Searching...",
- "chooseLocationsSelect": "Select",
- "chooseLocationsSelected": "Selected",
- "chooseLocationsSelectionBladeExcludedSelectorTitle": "Select",
- "chooseLocationsSelectionBladeIncludedSelectorTitle": "Select",
- "chooseLocationsSingular": "{0} and 1 more",
- "chooseLocationsTooMany": "More results than can be shown. Please filter using the search box.",
- "claimProviderAddCommandText": "New custom control",
- "claimProviderAddNewBladeTitle": "New custom control",
- "claimProviderDeleteCommand": "Delete",
- "claimProviderDeleteDescription": "Are you sure you want to delete '{0}'? This action cannot be undone.",
- "claimProviderDeleteTitle": "Are you sure?",
- "claimProviderEditInfoText": "Enter the JSON for customized controls given by your claim providers.",
- "claimProviderNotificationCreateDescription": "Creating custom control named '{0}'",
- "claimProviderNotificationCreateFailedDescription": "Creating custom control '{0}' failed. Please try again later.",
- "claimProviderNotificationCreateFailedTitle": "Failed to create custom control",
- "claimProviderNotificationCreateSuccessDescription": "Created custom control named '{0}'",
- "claimProviderNotificationCreateSuccessTitle": "Created '{0}'",
- "claimProviderNotificationCreateTitle": "Creating '{0}'",
- "claimProviderNotificationDeleteDescription": "Deleting custom control named '{0}'",
- "claimProviderNotificationDeleteFailedDescription": "Deleting custom control '{0}' failed. Please try again later.",
- "claimProviderNotificationDeleteFailedTitle": "Failed to delete custom control",
- "claimProviderNotificationDeleteSuccessDescription": "Deleted custom control named '{0}'",
- "claimProviderNotificationDeleteSuccessTitle": "Deleted '{0}'",
- "claimProviderNotificationDeleteTitle": "Deleting '{0}'",
- "claimProviderNotificationUpdateDescription": "Updating custom control named '{0}'",
- "claimProviderNotificationUpdateFailedDescription": "Updating custom control '{0}' failed. Please try again later.",
- "claimProviderNotificationUpdateFailedTitle": "Failed to update custom control",
- "claimProviderNotificationUpdateSuccessDescription": "Updated custom control named '{0}'",
- "claimProviderNotificationUpdateSuccessTitle": "Updated '{0}'",
- "claimProviderNotificationUpdateTitle": "Updating '{0}'",
- "claimProviderValidationAppIdInvalid": "The \"AppId\" value is not valid. Please review and try again.",
- "claimProviderValidationClientIdMissing": "The data is missing a \"ClientId\" value. Please review and try again.",
- "claimProviderValidationControlClaimsRequestedMissing": "The \"Control\" is missing a \"ClaimsRequested\" value. Please review and try again.",
- "claimProviderValidationControlClaimsRequestedTypeMissing": "The \"ClaimsRequested\" item is missing a \"Type\" value. Please review and try again.",
- "claimProviderValidationControlIdAlreadyExists": "The \"Control\" \"Id\" value already exists. Please review and try again.",
- "claimProviderValidationControlIdMissing": "The \"Control\" is missing an \"Id\" value. Please review and try again.",
- "claimProviderValidationControlIdReferencedInExistingPolicy": "The \"Control\" \"Id\" value cannot be removed because it is referenced in an existing policy. Please remove it from the policy first.",
- "claimProviderValidationControlIdTooManyControls": "The \"Control\" property has too many controls. Please review and try again.",
- "claimProviderValidationControlIdValueReserved": "The \"Control\" \"Id\" value is a reserved keyword, please use a different id.",
- "claimProviderValidationControlNameAlreadyExists": "The \"Control\" \"Name\" value already exists. Please review and try again.",
- "claimProviderValidationControlNameMissing": "The \"Control\" is missing a \"Name\" value. Please review and try again.",
- "claimProviderValidationControlsMissing": "The data is missing a \"Controls\" value. Please review and try again.",
- "claimProviderValidationDiscoveryUrlMissing": "The data is missing a \"DiscoveryUrl\" value. Please review and try again.",
- "claimProviderValidationInvalid": "There data provided is not valid. Please review and try again.",
- "claimProviderValidationInvalidJsonDefinition": "Unable to save the custom control. Review the JSON text and try again.",
- "claimProviderValidationNameAlreadyExists": "The \"Name\" value already exists. Please review and try again.",
- "claimProviderValidationNameMissing": "The data is missing a \"Name\" value. Please review and try again.",
- "claimProviderValidationUnknown": "There was an unknown error while validating the data provided. Please review and try again.",
- "claimProvidersNone": "No custom controls",
- "claimProvidersSearchPlaceholder": "Search controls.",
- "classicPoilcyFilterTitle": "Show",
- "classicPolicyAllPlatforms": "All Platforms",
- "classicPolicyClientAppBrowserAndNative": "Browser, mobile apps and desktop clients",
- "classicPolicyCloudAppTitle": "Cloud application",
- "classicPolicyControlAllow": "Allow",
- "classicPolicyControlBlock": "Block",
- "classicPolicyControlBlockWhenNotAtWork": "Block access when not at work",
- "classicPolicyControlRequireCompliantDevice": "Require compliant device",
- "classicPolicyControlRequireDomainJoinedDevice": "Require domain joined device",
- "classicPolicyControlRequireMfa": "Require multi-factor authentication",
- "classicPolicyControlRequireMfaWhenNotAtWork": "Require multi-factor authentication when not at work",
- "classicPolicyDeleteCommand": "Delete",
- "classicPolicyDeleteFailTitle": "Failed to delete classic policy",
- "classicPolicyDeleteInProgressTitle": "Deleting classic policy",
- "classicPolicyDeleteSuccessTitle": "Classic policy deleted",
- "classicPolicyDetailBladeTitle": "Details",
- "classicPolicyDisableCommand": "Disable",
- "classicPolicyDisableConfirmation": "Are you sure you want to disable '{0}'? This action cannot be undone.",
- "classicPolicyDisableFailDescription": "Failed to disable '{0}'",
- "classicPolicyDisableFailTitle": "Failed to disable classic policy",
- "classicPolicyDisableInProgressDescription": "Disabling '{0}'",
- "classicPolicyDisableInProgressTitle": "Disabling classic policy",
- "classicPolicyDisableSuccessDescription": "Successfully disabled '{0}'",
- "classicPolicyDisableSuccessTitle": "Classic policy disabled",
- "classicPolicyEasSupportedPlatforms": "Exchange ActiveSync supported platforms",
- "classicPolicyEasUnsupportedPlatforms": "Exchange ActiveSync unsupported platforms",
- "classicPolicyExcludedPlatformsTitle": "Excluded device platforms",
- "classicPolicyFilterAll": "All policies",
- "classicPolicyFilterDisabled": "Disabled policies",
- "classicPolicyFilterEnabled": "Enabled policies",
- "classicPolicyIncludeExcludeMembersDescription": "By excluding groups, you can perform phased migration of policies.",
- "classicPolicyIncludeExcludeMembersTitle": "Include/exclude groups",
- "classicPolicyIncludedPlatformsTitle": "Included device platforms",
- "classicPolicyManualMigrationMessage": "This policy needs to be migrated manually.",
- "classicPolicyMigrateCommand": "Migrate",
- "classicPolicyMigrateConfirmation": "Are you sure you want to migrate '{0}'? This policy can only be migrated once.",
- "classicPolicyMigrateFailDescription": "Failed to migrate '{0}'",
- "classicPolicyMigrateFailTitle": "Failed to migrate classic policy",
- "classicPolicyMigrateInProgressDescription": "Migrating '{0}'",
- "classicPolicyMigrateInProgressTitle": "Migrating classic policy",
- "classicPolicyMigrateRecommendText": "Recommendation: Migrate to the new Azure portal policies.",
- "classicPolicyMigrateSuccessTitle": "Classic policy migrated successfully",
- "classicPolicyMigratedSuccessDescription": "This classic policy can now be managed under Polices.",
- "classicPolicyMigratedSuccessDescriptionMultiple": "This classic policy is migrated as {0} new policies. New policies can be managed under Policies.",
- "classicPolicyNoEditPermissionMsg": "You don't have permission to edit this policy. Only global administrators and security administrators can edit the policy. Click here for more information.",
- "classicPolicySaveFailDescription": "Failed to save '{0}'",
- "classicPolicySaveFailTitle": "Failed to save classic policy",
- "classicPolicySaveInProgressDescription": "Saving '{0}'",
- "classicPolicySaveInProgressTitle": "Saving classic policy",
- "classicPolicySaveSuccessDescription": "Successfully saved '{0}'",
- "classicPolicySaveSuccessTitle": "Classic policy saved",
- "clientAppBladeLegacyInfoBanner": "Legacy auth is currently not supported",
- "clientAppBladeLegacyUpsellBanner": "Block unsupported client apps (Preview)",
- "clientAppBladeTitle": "Client apps",
- "clientAppDescription": "Select the client apps this policy will apply to",
- "clientAppExchangeActiveSync": "Exchange ActiveSync",
- "clientAppExchangeDisabledInfo": "Exchange ActiveSync is available when Exchange Online is the only cloud app selected. Click to learn more",
- "clientAppExchangeWarning": "Exchange ActiveSync currently does not support all other conditions",
- "clientAppLearnMore": "Control user access to target specific client applications not using modern authentication.",
- "clientAppLegacyHeader": "Legacy authentication clients",
- "clientAppMobileDesktop": "Mobile apps and desktop clients",
- "clientAppModernHeader": "Modern authentication clients",
- "clientAppOnlySupportedPlatforms": "Apply policy only to supported platforms",
- "clientAppSelectSpecificClientApps": "Select client apps",
- "clientAppV2BladeTitle": "Client apps (Preview)",
- "clientAppWebBrowser": "Browser",
- "clientAppsSelectedLabel": "{0} included",
- "clientTypeBrowser": "Browser",
- "clientTypeEas": "Exchange ActiveSync clients",
- "clientTypeEasInfo": "Exchange ActiveSync clients that use legacy authentication only.",
- "clientTypeModernAuth": "Modern authentication clients",
- "clientTypeOtherClients": "Other clients",
- "clientTypeOtherClientsInfo": "This includes older office clients and other mail protocols(POP, IMAP, SMTP, etc). [Learn more][1]\n[1]: https://aka.ms/caclientapps\n",
- "cloudAppCountDiffBannerText": "{0} cloud apps configured in this policy have been deleted from the directory, but this doesn't affect the other apps in the policy. The next time you update the application section of the policy, the deleted apps will be automatically removed from it.",
- "cloudAppsSelectionBladeAllMicrosoftApps": "All Microsoft apps",
- "cloudAppsSelectionExcludeAllMicrosoftClients": "Allow Microsoft cloud, desktop and mobile apps (Preview)",
- "cloudappsSelectionBladeAllCloudapps": "All cloud apps",
- "cloudappsSelectionBladeExcludeDescription": "Select the cloud apps to exempt from the policy",
- "cloudappsSelectionBladeExcludedSelectorTitle": "Select excluded cloud apps",
- "cloudappsSelectionBladeIncludeDescription": "Select the cloud apps this policy will apply to",
- "cloudappsSelectionBladeIncludedSelectorTitle": "Select",
- "cloudappsSelectionBladeSelectedCloudapps": "Select apps",
- "cloudappsSelectorInfoBallonText": "Services which the user accesses to do work. For example, 'Salesforce'",
- "cloudappsSelectorUserPlural": "{0} apps",
- "cloudappsSelectorUserSingular": "1 app",
- "conditionLabelMulti": "{0} conditions selected",
- "conditionLabelOne": "1 condition selected",
- "conditionalAccessBladeTitle": "Conditional Access",
- "conditionsNotSelectedLabel": "Not configured",
- "conditionsReqPwSet": "Some options are not available due to the \"Require password change\" grant currently being selected",
- "configureCasText": "Configure Cloud App Security",
- "configureCustomControlsText": "Configure custom policy",
- "controlLabelMulti": "{0} controls selected",
- "controlLabelOne": "1 control selected",
- "controlValidatorText": "Please select at least one control",
- "controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
- "controlsDeviceComplianceInfoBubble": "Device must be Intune compliant. If the device is non-compliant, the user will be prompted to bring the device under compliance",
- "controlsDomainJoinedInfoBubble": "Devices must be Hybrid Azure AD joined.",
- "controlsMamInfoBubble": "Device must use these approved client applications.",
- "controlsMfaInfoBubble": "User must complete additional security requirements like phone call, text",
- "controlsOrAndInfoBubble": "ControlsOrAndInfoBubble",
- "controlsRequireCompliantAppInfoBubble": "Device must use policy protected apps.",
- "controlsRequirePasswordResetInfoBubble": "Require password change to lower user risk. This option also requires multi-factor authentication. Other controls can't be used.",
- "countriesRadiobuttonInfoBalloonContent": "The country/region a sign-in is coming from is determined by the user's IP address.",
- "createNewVpnCert": "New certificate",
- "createdTimeLabel": "Creation time",
- "customRoleLabel": "Custom roles (not supported)",
- "dateRangeTypeLabel": "Date range",
- "daysOfWeekPlaceholderText": "Filter days of the week",
- "daysOfWeekTypeLabel": "Days of the week",
- "deletePolicyNoLicenseText": "You can delete this policy now. Once deleted you will not be able to recreate it until you have the required licenses.",
- "descriptionContentForControlsAndOr": "For multiple controls",
- "devicePlatform": "Device platform",
- "devicePlatformConditionHelpDescription": "Apply policy to selected device platforms.\n[Learn more][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2044750",
- "devicePlatformInclude": "{0} included",
- "devicePlatformIncludeExclude": "{0} and {1} excluded",
- "devicePlatformNoSelectionError": "Select device platforms requires one sub-item to be selected.",
- "devicePlatformsNone": "None",
- "deviceSelectionBladeExcludeDescription": "Select the platforms to exempt from the policy",
- "deviceSelectionBladeIncludeDescription": "Select the device platforms to include in this policy",
- "deviceStateAll": "All device state",
- "deviceStateCompliant": "Device marked as compliant",
- "deviceStateCompliantInfoContent": "Devices that are Intune compliant will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Intune compliant.",
- "deviceStateConditionConfigureInfoContent": "Configure policy based on device state",
- "deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Hybrid Azure AD joined' or 'marked as compliant'.\n '{0}' has been deprecated. Use '{1}' instead.",
- "deviceStateConditionSelectorLabel": "Device state (Preview)",
- "deviceStateDomainJoined": "Device Hybrid Azure AD joined",
- "deviceStateDomainJoinedInfoContent": "Devices that are Hybrid Azure AD joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Hybrid Azure AD joined.",
- "deviceStateDomainJoinedInfoLinkText": "Learn more.",
- "deviceStateExcludeDescription": "Select the device state condition used to exclude devices from policy.",
- "deviceStateIncludeAndExcludeOneLabel": "{0} and exclude {1}",
- "deviceStateIncludeAndExcludeTwoLabel": "{0} and exclude {1}, {2}",
- "directoryRoleInfoContent": "Assign policy to built-in directory roles.",
- "directoryRolesLabel": "Directory roles",
- "discardbutton": "Discard",
- "downloadDefaultFileName": "IP Ranges",
- "downloadExampleFileName": "Example",
- "downloadExampleHeader": "This is an example file with demonstrations of the kinds of data which can be accepted. Lines starting with # will be ignored.",
- "endDatePickerLabel": "Ends",
- "endTimePickerLabel": "End time",
- "enterCountryText": "IP address and Country are evaluated in a pair. Select the Country.",
- "enterIpText": "IP address and Country are evaluated in a pair. Input the IP address.",
- "enterUserText": "No user is selected. Select a user.",
- "evaluationResult": "Evaluation result",
- "exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
- "exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync with supported platforms only",
- "excludeAllTrustedLocationSelectorText": "all trusted locations",
- "featureRequiresP2": "This feature requires Azure AD Premium 2 license.",
- "friday": "Friday",
- "grantControls": "Grant controls",
- "gridNetworkTrusted": "Trusted",
- "gridPolicyCreatedDateTime": "Creation Date",
- "gridPolicyEnabled": "Enabled",
- "gridPolicyModifiedDateTime": "Modified Date",
- "gridPolicyName": "Policy Name",
- "gridPolicyState": "State",
- "groupSelectionBladeExcludeDescription": "Select the groups to exempt from the policy",
- "groupSelectionBladeExcludedSelectorTitle": "Select excluded groups",
- "groupSelectionBladeSelect": "Select groups",
- "groupSelectorInfoBallonText": "Groups in the directory that the policy applies to. For example, 'Pilot group'",
- "groupsSelectionBladeTitle": "Groups",
- "helpCommonScenariosText": "Interested in common scenarios?",
- "helpCondition1": "When any user is outside the company network",
- "helpCondition2": "When users in the 'Managers' group sign-in",
- "helpConditionsTitle": "Conditions",
- "helpControl1": "They're required to sign in with multi-factor authentication",
- "helpControl2": "They are required be on an Intune compliant or domain-joined device",
- "helpControlsTitle": "Controls",
- "helpIntroText": "Conditional Access gives you the ability to enforce access requirements when specific conditions occur. Let's take a few examples",
- "helpIntroTitle": "What is Conditional Access?",
- "helpLearnMoreText": "Want to learn more about Conditional Access?",
- "helpStartStep1": "Create your first policy by clicking \"+ New policy\"",
- "helpStartStep2": "Specify policy Conditions and Controls",
- "helpStartStep3": "When you are done, don't forget to Enable policy and Create",
- "helpStartTitle": "Get started",
- "highRisk": "High",
- "includeAndExcludeAppsTextFormat": "Include: {0}. Exclude: {1}.",
- "includeAppsTextFormat": "Include: {0}.",
- "includeUnknownAreasCheckboxInfoBalloonContent": "Unknown areas are IP addresses that can't be mapped to a country/region.",
- "includeUnknownAreasCheckboxLabel": "Include unknown areas",
- "infoCommandLabel": "Info",
- "invalidCertDuration": "Invalid cert duration",
- "invalidIpAddress": "Value must be a valid IP address",
- "invalidUriErrorMsg": "Please enter a valid Uri. For example,'uri:contoso.com:acr' ",
- "iosDisplayName": "iOS",
- "linuxDisplayName": "Linux",
- "linuxDisplayNamePreview": "Linux (Preview)",
- "loadAll": "Load all",
- "loading": "Loading...",
- "locationConfigureNamedLocationsText": "Configure all trusted locations",
- "locationConfigureNamedLocationsUri": "{0}/usermanagement/mfasettings.aspx?tenantid={1}&culture={2}",
- "locationNameTooLongError": "Location name is too long. Maximum is 256 characters",
- "locationSelectionBladeExcludeDescription": "Select the locations to exempt from the policy",
- "locationSelectionBladeIncludeDescription": "Select the locations to include in this policy",
- "locationsAllLocationsLabel": "Any location",
- "locationsAllNamedLocationsLabel": "All trusted IPs",
- "locationsAllPrivateLinksLabel": "All Private Links in my tenant",
- "locationsIncludeExcludeLabel": "{0} and exclude all trusted IPs",
- "locationsSelectedPrivateLinksLabel": "Selected Private Links",
- "lowRisk": "Low",
- "macOsDisplayName": "macOS",
- "managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Azure AD Premium P1 or P2.",
- "markAsTrustedCheckboxInfoBalloonContent": "Signing in from a trusted location lowers a user's sign-in risk. Only mark this location as trusted if you know the IP ranges entered are established and credible in your organization.",
- "markAsTrustedCheckboxLabel": "Mark as trusted location",
- "mediumRisk": "Medium",
- "memberSelectionCommandRemove": "Remove",
- "menuItemClaimProviderControls": "Custom controls (Preview)",
- "menuItemClassicPolicies": "Classic policies",
- "menuItemInsightsAndReporting": "Insights and reporting",
- "menuItemManage": "Manage",
- "menuItemNamedLocationsPreview": "Named locations (Preview)",
- "menuItemNamedNetworks": "Named locations",
- "menuItemPolicies": "Policies",
- "menuItemTermsOfUse": "Terms of use",
- "modifiedTimeLabel": "Modified time",
- "monday": "Monday",
- "nameLabel": "Name",
- "namedLocationCountryInfoBanner": "Only IPv4 addresses are mapped to countries/regions. IPv6 addresses are included in unknown countries/regions.",
- "namedLocationTypeCountry": "Countries/Regions",
- "namedLocationTypeLabel": "Define the location using:",
- "namedLocationUpsellBanner": "This view has been deprecated. Go to the new and improved 'Named locations' view.",
- "namedLocationsHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/namedlocationupdate",
- "namedNetworkAddIpRanges": "Add a new IP range (ex: 40.77.182.32/27)",
- "namedNetworkCountryNeeded": "You need to select at least one country",
- "namedNetworkDeleteCommand": "Delete",
- "namedNetworkDeleteDescription": "Are you sure you want to delete '{0}'? This action cannot be undone.",
- "namedNetworkDeleteTitle": "Are you sure?",
- "namedNetworkDownloadIpRange": "Download",
- "namedNetworkInvalidRange": "Value must be a valid IP range.",
- "namedNetworkIpRangeNeeded": "You need at least one valid IP range",
- "namedNetworkIpRangesDescriptionContent": "Configure your organization's IP ranges",
- "namedNetworkIpRangesTab": "IP ranges",
- "namedNetworkListAdd": "New location",
- "namedNetworkListConfigureTrustedIps": "Configure MFA trusted IPs",
- "namedNetworkNameDescription": "Example: 'Redmond office'",
- "namedNetworkNameInvalid": "The supplied name is invalid.",
- "namedNetworkNameRequired": "You must supply a name for this location.",
- "namedNetworkNoIpRanges": "No IP ranges",
- "namedNetworkNotificationCreateDescription": "Creating location named '{0}'",
- "namedNetworkNotificationCreateFailedDescription": "Creating location '{0}' failed. Please try again later.",
- "namedNetworkNotificationCreateFailedTitle": "Failed to create location",
- "namedNetworkNotificationCreateSuccessDescription": "Created location named '{0}'",
- "namedNetworkNotificationCreateSuccessTitle": "Created '{0}'",
- "namedNetworkNotificationCreateTitle": "Creating '{0}'",
- "namedNetworkNotificationDeleteDescription": "Deleting location named '{0}'",
- "namedNetworkNotificationDeleteFailedDescription": "Deleting location '{0}' failed. Please try again later.",
- "namedNetworkNotificationDeleteFailedTitle": "Failed to Delete location",
- "namedNetworkNotificationDeleteSuccessDescription": "Deleted location named '{0}'",
- "namedNetworkNotificationDeleteSuccessTitle": "Deleted '{0}'",
- "namedNetworkNotificationDeleteTitle": "Deleting '{0}'",
- "namedNetworkNotificationUpdateDescription": "Updating location named '{0}'",
- "namedNetworkNotificationUpdateFailedDescription": "Updating location '{0}' failed. Please try again later.",
- "namedNetworkNotificationUpdateFailedTitle": "Failed to Update location",
- "namedNetworkNotificationUpdateSuccessDescription": "Updated location named '{0}'",
- "namedNetworkNotificationUpdateSuccessTitle": "Updated '{0}'",
- "namedNetworkNotificationUpdateTitle": "Updating '{0}'",
- "namedNetworkSearchPlaceholder": "Search locations.",
- "namedNetworkUploadFailedDescription": "There was an error parsing the supplied file. Please make sure to upload a plain-text file with each line in the CIDR format.",
- "namedNetworkUploadFailedTitle": "Failed to parse '{0}'",
- "namedNetworkUploadInProgressDescription": "Attempting to parse valid CIDR values from '{0}'.",
- "namedNetworkUploadInProgressTitle": "Parsing '{0}'",
- "namedNetworkUploadInvalidDescription": "'{0}' is either too large or in an invalid format.",
- "namedNetworkUploadInvalidTitle": "'{0}' Invalid",
- "namedNetworkUploadIpRange": "Upload",
- "namedNetworkUploadSuccessDescription": "{0} lines analyzed. {1} in a bad format. {2} skipped.",
- "namedNetworkUploadSuccessTitle": "Finished parsing '{0}'",
- "namedNetworksAdd": "New named location",
- "namedNetworksConditionHelpDescription": "Control user access based on their physical location.\n[Learn more][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
- "namedNetworksExcludeLabel": "{0} and {1} excluded",
- "namedNetworksHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
- "namedNetworksIncludeLabel": "{0} included",
- "namedNetworksNone": "No named locations found.",
- "namedNetworksTitle": "Configure locations",
- "namednetworkExceedingSizeErrorBladeTitle": "Error details",
- "namednetworkExceedingSizeErrorDetailText": "Click here for more details.",
- "namednetworkExceedingSizeErrorMessage": "You have exceeded the maximum allowed storage for named locations. Try again with a shorter list. Click here to view more details.",
- "newCertName": "new cert",
- "noPolicyRowMessage": "No policies",
- "noSPSelected": "No service principal selected",
- "noUpdatePermissionMessage": "You don't have permissions to update these settings. Please contact your global administrator to get access.",
- "noUserSelected": "No user selected",
- "noneRisk": "No risk",
- "office365Description": "These apps include Microsoft Flow, Microsoft Forms, Microsoft Teams, Office 365 Exchange Online, Office 365 SharePoint Online, Office 365 Yammer, and others.",
- "office365InfoBox": "At least one of the apps selected is part of Office 365. We recommend setting the policy on the Office 365 app instead.",
- "oneUserSelected": "1 user selected",
- "onlyGlobalAdminsCanSaveThisPolicyConfig": "Only global administrators can save this policy.",
- "or": "{0} OR {1} ",
- "pickerDoneCommand": "Done",
- "policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like Cloud apps, Sign-in risk, and Device platforms with Azure AD Premium",
- "policiesBladeTitle": "Policies",
- "policiesBladeTitleWithAppName": "Policies: {0}",
- "policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked sign-on attribute.",
- "policiesHitMaxLimitStatusBarMessage": "You've reached the maximum number of policies for this tenant. Delete some policies before creating more.",
- "policyAssignmentsSection": "Assignments",
- "policyBlockAllInfoBox": "The configured policy will block all users, so it is not supported. Review the assignments and controls. Exclude the current user {0}, if you would like to save this policy.",
- "policyCloudAppsDisplayTextAllApp": "All apps",
- "policyCloudAppsLabel": "Cloud apps",
- "policyConditionClientAppDescription": "Software the user is employing to access the cloud app. For example, 'Browser'",
- "policyConditionClientAppV2Description": "Software the user is employing to access the cloud app. For example, 'Browser'",
- "policyConditionDevicePlatform": "Device platforms",
- "policyConditionDevicePlatformDescription": "Platform the user is signing in from. For example, 'iOS'",
- "policyConditionLocation": "Locations",
- "policyConditionLocationDescription": "Location (determined using IP address range) the user is signing in from",
- "policyConditionSigninRisk": "Sign-in risk",
- "policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Azure AD Premium 2 license.",
- "policyConditionUserRisk": "User risk",
- "policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
- "policyConditioniClientApp": "Client apps",
- "policyConditioniClientAppV2": "Client apps (Preview)",
- "policyControlAllowAccessDisplayedName": "Grant access",
- "policyControlAuthenticationStrengthDisplayedName": "Require authentication strength (Preview)",
- "policyControlBladeTitle": "Grant",
- "policyControlBlockAccessDisplayedName": "Block access",
- "policyControlCompliantDeviceDisplayedName": "Require device to be marked as compliant",
- "policyControlContentDescription": "Control access enforcement to block or grant access.",
- "policyControlInfoBallonText": "Block access or select additional requirements which need to be satisfied to allow access",
- "policyControlMfaChallengeDisplayedName": "Require multi-factor authentication",
- "policyControlRequireCompliantAppDisplayedName": "Require app protection policy",
- "policyControlRequireDomainJoinedDisplayedName": "Require Hybrid Azure AD joined device",
- "policyControlRequireMamDisplayedName": "Require approved client app",
- "policyControlRequiredPasswordChangeDisplayedName": "Require password change",
- "policyControlSelectAuthStrength": "Require authentication strength",
- "policyControlsNoControlsSelected": "0 controls selected",
- "policyControlsSection": "Access controls",
- "policyCreatBladeTitle": "New",
- "policyCreateButton": "Create",
- "policyCreateFailedMessage": "Error: {0}",
- "policyCreateFailedTitle": "Failed to create '{0}'",
- "policyCreateInProgressTitle": "Creating '{0}'",
- "policyCreateSuccessMessage": "Successfully created '{0}'. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
- "policyCreateSuccessTitle": "Successfully created '{0}'",
- "policyDeleteConfirmation": "Are you sure you want to delete '{0}'? This action cannot be undone.",
- "policyDeleteFailTitle": "Failed to delete '{0}'",
- "policyDeleteInProgressTitle": "Deleting '{0}'",
- "policyDeleteSuccessTitle": "Successfully deleted '{0}'",
- "policyEnforceLabel": "Enable policy",
- "policyErrorCannotSetSigninRisk": "You don't have permission to save a policy with a sign-in risk condition.",
- "policyErrorNoPermission": "You don't have permission to save policy. Contact your global admin.",
- "policyErrorUnknown": "Something went wrong, please try again later.",
- "policyFallbackWarningMessage": "Failure to create or update '{0}' using MS Graph resulting in a fallback to AD Graph. Please investigate the following scenario as there is most likely a bug when calling the policy endpoint for MS Graph with an incompatible condition.",
- "policyFallbackWarningTitle": "Creating or updating '{0}' partially successful",
- "policyNameCannotBeEmpty": "Policy name can't be empty",
- "policyNameDevice": "Device policy",
- "policyNameFormat": "[{0}] {1}",
- "policyNameMam": "Mobile App Management policy",
- "policyNameMfaLocation": "MFA and location policy",
- "policyNamePlaceholderText": "Example: 'Device compliance app policy'",
- "policyNameTooLongError": "Policy name is too long. Maximum 256 characters",
- "policyOff": "Off",
- "policyOn": "On",
- "policyReportOnly": "Report-only",
- "policyReviewSection": "Review",
- "policySaveButton": "Save",
- "policyStatusIconDescription": "Policy is Enabled",
- "policyStatusIconEnabled": "Enabled status icon",
- "policyTemplateName1": "Use app enforced restrictions for {0} browser access",
- "policyTemplateName2": "Allow {0} access only on managed devices",
- "policyTemplateName3": "Policy migrated from Continuous Access Evaluation settings",
- "policyTriggerRiskSpecific": "Select specific risk level",
- "policyTriggersInfoBalloonText": "Conditions which define when the policy will apply. For example, 'location'",
- "policyTriggersNoConditionsSelected": "0 conditions selected",
- "policyTriggersSelectorLabel": "Conditions",
- "policyUpdateFailedMessage": "Error: {0}",
- "policyUpdateFailedTitle": "Failed to update {0}",
- "policyUpdateInProgressTitle": "Updating {0}",
- "policyUpdateSuccessMessage": "Successfully updated {0}. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
- "policyUpdateSuccessTitle": "Successfully updated {0}",
- "primaryCol": "Primary",
- "privateLinkLabel": "Azure AD Private Link",
- "reportOnlyInfoBox": "Report-only mode: Policies are evaluated and logged at sign-in but do not impact users.",
- "requireAllControlsText": "Require all the selected controls",
- "requireCompliantDevice": "Require compliant device",
- "requireDomainJoined": "Require domain-joined device",
- "requireMFA": "Require multi-factor authentication ",
- "requireOneControlText": "Require one of the selected controls",
- "resetFilters": "Reset filters",
- "sPRequired": "Service principal required",
- "sPSelectorInfoBalloon": "User or Service Principal you want to test",
- "saturday": "Saturday",
- "searchTextTooLongError": "The search text is too long. Maximum 256 characters",
- "securityDefaultsPolicyName": "Security defaults",
- "securityDefaultsTextMessage": "Security defaults must be disabled to enable Conditional Access policy.",
- "securityDefaultsWarningMessage": "It looks like you're about to manage your organization's security configurations. That's great! You must first disable Security defaults before enabling a Conditional Access policy.",
- "selectDevicePlatforms": "Select device platforms",
- "selectNamedNetworksSubtitle": "",
- "selectNamedNetworksTitle": "Select locations",
- "selectedSP": "Selected Service Principal",
- "servicePrincipalDataGridAria": "List of available service principals",
- "servicePrincipalDropDownLabel": "What does this policy apply to?",
- "servicePrincipalInfoBox": "Some conditions are not available due to '{0}' selection in policy assignment",
- "servicePrincipalRadioAll": "All owned service principals",
- "servicePrincipalRadioSelect": "Select service principals",
- "servicePrincipalSelectionsAria": "Selected service principals grid",
- "servicePrincipalSelectorAria": "List of chosen service principals",
- "servicePrincipalSelectorMultiple": "{0} service principals selected",
- "servicePrincipalSelectorSingle": "1 service principal selected",
- "servicePrincipalSpecificInc": "Specific service principals included",
- "servicePrincipals": "Service principals",
- "sessionControlBladeTitle": "Session",
- "sessionControlDescriptionContent": "Control access based on session controls to enable limited experiences within specific cloud applications.",
- "sessionControlDisableInfo": "This control only works with supported apps. Currently, Office 365, Exchange Online, and SharePoint Online are the only cloud apps that support app enforced restrictions. Click here to learn more.",
- "sessionControlInfoBallonText": "Session controls enable limited experience within a cloud app.",
- "sessionControls": "Session controls",
- "sessionControlsAppEnforcedLabel": "Use app enforced restrictions",
- "sessionControlsCasLabel": "Use Conditional Access App Control",
- "sessionControlsSecureSignInLabel": "Require token binding",
- "sharepointAppName": "SharePoint",
- "signinRiskDescription": "Select the sign-in risk level this policy will apply to",
- "signinRiskInclude": "{0} included",
- "signinRiskTriggerDescriptionContent": "Select the sign-in risk level",
- "singleTenantServicePrincipalInfoBallonText": "Policy only applies to single tenant service principals owned by your organization. Click here to learn more ",
- "specificSigninRiskLevelsOption": "Select specific sign-in risk levels",
- "specificUsersExcluded": "specific users excluded",
- "specificUsersIncluded": "Specific users included",
- "specificUsersIncludedAndExcluded": "Specific users excluded and included",
- "startDatePickerLabel": "Starts",
- "startFreeTrial": "Start a free trial",
- "startTimePickerLabel": "Start time",
- "sunday": "Sunday",
- "testButton": "What If",
- "thumbprintCol": "Thumbprint",
- "thursday": "Thursday",
- "timeConditionAllTimesLabel": "Any time",
- "timeConditionIntroText": "Configure the time this policy will apply to",
- "timeConditionSelectorInfoBallonContent": "When the user is signing in. For example, \"Wednesday 9am-5pm PST\"",
- "timeConditionSelectorLabel": "Time (Preview)",
- "timeConditionSpecificLabel": "Specific times",
- "timeSelectorAllTimesText": "Any time",
- "timeSelectorSpecificTimesText": "Specific times configured",
- "timeZoneDropdownInfoBalloonContent": "Select a time zone that defines the time range. This policy applies to users in all time zones. For example, 'Wednesday 9am - 5pm' for one user would be 'Wednesday 10am - 6pm' for a user in a different time zone.",
- "timeZoneDropdownLabel": "Time zone",
- "timeZoneDropdownPlaceholderText": "Select a time zone",
- "tooManyPoliciesDescription": "Only first 50 policies are being displayed now, click here to view all policies",
- "tooManyPoliciesTitle": "More than 50 policies found",
- "trustedLocationStatusIconDescription": "Location is trusted",
- "trustedLocationStatusIconEnabled": "Trusted status icon",
- "tuesday": "Tuesday",
- "uploadInBadState": "Unable to upload the specified file.",
- "upsellAppsDescription": "Require multi-factor authentication for sensitive applications all the time or only from outside the company network.",
- "upsellAppsTitle": "Secure applications",
- "upsellBannerText": "Get a free Premium trial to use this feature",
- "upsellDataDescription": "Require device to be marked as compliant or Hybrid Azure AD joined to allow access to company resources.",
- "upsellDataTitle": "Secure data",
- "upsellDescription": "Conditional Access provides the control and protection you need to keep your corporate data secure, while giving your people an experience that allows them to do their best work from any device. For instance, you can restrict access from outside the company network or restrict access to devices which meet the compliance policies.",
- "upsellRiskDescription": "Require multi-factor authentication for risk events detected by Microsoft's machine learning system.",
- "upsellRiskTitle": "Protect against risk",
- "upsellTitle": "Conditional Access",
- "upsellWhyTitle": "Why use Conditional Access?",
- "userAppNoneOption": "None",
- "userNamePlaceholderText": "Enter User Name",
- "userNotSetSeletorLabel": "0 users and groups selected",
- "userOnlySelectionBladeExcludeDescription": "Select the users to exempt from the policy",
- "userOrGroupSelectionCountDiffBannerText": "{0} configured in this policy have been deleted from the directory, but this doesn't affect the other users and groups in the policy. The next time you update the policy, the deleted users and/or groups will be automatically removed.",
- "userOrSPNotSetSelectorLabel": "0 users or workload identities selected",
- "userOrSPSelectionBladeTitle": "Users or workload identities",
- "userOrSPSelectorInfoBallonText": "Identities in the directory that the policy applies to, including users, groups, and service principals",
- "userRequired": "User Required",
- "userRiskErrorBox": "\"User risk\" condition must be selected when \"Require password change\" grant is selected",
- "userSPRequired": "User or Service principal required",
- "userSPSelectorTitle": "User or Workload identity",
- "userSelectionBladeAllUsersAndGroups": "All users and groups",
- "userSelectionBladeExcludeDescription": "Select the users and groups to exempt from the policy",
- "userSelectionBladeExcludeTabTitle": "Exclude",
- "userSelectionBladeExcludedSelectorTitle": "Select excluded users",
- "userSelectionBladeIncludeDescription": "Select the users this policy will apply to",
- "userSelectionBladeIncludeTabTitle": "Include",
- "userSelectionBladeIncludedSelectorTitle": "Select",
- "userSelectionBladeSelectUsers": "Select users",
- "userSelectionBladeSelectedUsers": "Select users and groups",
- "userSelectionBladeTitle": "Users and groups",
- "userSelectorBladeTitle": "Users",
- "userSelectorExcluded": "{0} excluded",
- "userSelectorGroupPlural": "{0} groups",
- "userSelectorGroupSingular": "1 group",
- "userSelectorIncluded": "{0} included",
- "userSelectorInfoBallonText": "Users and groups in the directory that the policy applies to. For example, 'Pilot group'",
- "userSelectorSelected": "{0} selected",
- "userSelectorTitle": "User",
- "userSelectorUserAndGroup": "{0}, {1}",
- "userSelectorUserPlural": "{0} users",
- "userSelectorUserSingular": "1 user",
- "userSelectorWithExclusion": "{0} and {1}",
- "usersGroupsLabel": "Users and groups",
- "viewApprovedAppsText": "See list of approved client apps",
- "viewCompliantAppsText": "See list of policy protected client apps",
- "vpnBladeTitle": "VPN connectivity",
- "vpnCertCreateFailedMessage": "Error: {0}",
- "vpnCertCreateFailedTitle": "Failed to create {0}",
- "vpnCertCreateInProgressTitle": "Creating {0}",
- "vpnCertCreateSuccessMessage": "Successfully created {0}.",
- "vpnCertCreateSuccessTitle": "Successfully created {0}",
- "vpnCertNoRowsMessage": "No VPN certificates found",
- "vpnCertUpdateFailedMessage": "Error: {0}",
- "vpnCertUpdateFailedTitle": "Failed to update {0}",
- "vpnCertUpdateInProgressTitle": "Updating {0}",
- "vpnCertUpdateSuccessMessage": "Successfully updated {0}.",
- "vpnCertUpdateSuccessTitle": "Successfully updated {0}",
- "vpnFeatureInfo": "For more information on VPN connectivity and Conditional Access, click here.",
- "vpnFeatureWarning": "Once a VPN certificate is created in the Azure portal, Azure AD will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
- "vpnMenuText": "VPN connectivity",
- "vpncertDropdownDefaultOption": "Duration",
- "vpncertDropdownInfoBalloonContent": "Select the duration for the cert you want to create",
- "vpncertDropdownLabel": "Select duration",
- "vpncertDropdownOneyearOption": "1 year",
- "vpncertDropdownThreeyearOption": "3 years",
- "vpncertDropdownTwoyearOption": "2 years",
- "wednesday": "Wednesday",
- "whatIfAppEnforcedControl": "Use app enforced restrictions",
- "whatIfBladeDescription": "Test the impact of Conditional Access on a user when signing in under certain conditions.",
- "whatIfBladeTitle": "What If",
- "whatIfClassicPoliciesWarning": "Classic policies are not evaluated by this tool.",
- "whatIfClientAppInfo": "The client app the user is signing in from. For example, 'Browser'.",
- "whatIfCountry": "Country",
- "whatIfCountryInfo": "The country the user is signing in from.",
- "whatIfDevicePlatformInfo": "The device platform the user is signing in from.",
- "whatIfDeviceStateInfo": "The device state the user is signing in from",
- "whatIfEnterIpAddress": "Enter IP address (ex: 40.77.182.32)",
- "whatIfErrorInvalidIpAddress": "An invalid IP address was specified.",
- "whatIfEvaResultApplication": "Cloud apps",
- "whatIfEvaResultClientApps": "Client app",
- "whatIfEvaResultDevicePlatform": "Device platform",
- "whatIfEvaResultEmptyPolicy": "Empty policy",
- "whatIfEvaResultInvalidCondition": "Invalid condition",
- "whatIfEvaResultInvalidPolicy": "Invalid policy",
- "whatIfEvaResultLocation": "Location",
- "whatIfEvaResultNotEnoughInformation": "Not enough information",
- "whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
- "whatIfEvaResultSignInRisk": "Sign-in risk",
- "whatIfEvaResultUsers": "Users and groups",
- "whatIfIpAddress": "IP address",
- "whatIfIpAddressInfo": "IP address the user is signing in from.",
- "whatIfIpCountryInfoBoxText": "If using an IP address or Country, both fields will be required and should correctly map together.",
- "whatIfPolicyAppliesTab": "Policies that will apply",
- "whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
- "whatIfReasons": "Reasons why this policy will not apply",
- "whatIfSelectClientApp": "Select a client app...",
- "whatIfSelectCountry": "Select country...",
- "whatIfSelectDevicePlatform": "Select device platform...",
- "whatIfSelectPrivateLink": "Select private link...",
- "whatIfSelectServicePrincipalRisk": "Select service principal risk...",
- "whatIfSelectSignInRisk": "Select sign-in risk...",
- "whatIfSelectType": "Select identity type",
- "whatIfSelectUserRisk": "Select user risk...",
- "whatIfServicePrincipalRiskInfo": "The risk level associated with the service principal",
- "whatIfSignInRisk": "Sign-in risk",
- "whatIfSignInRiskInfo": "The risk level associated with the sign-in",
- "whatIfUnknownAreas": "Unknown Areas",
- "whatIfUserPickerLabel": "Selected user",
- "whatIfUserPickerNoRowsLabel": "No user or service principal selected",
- "whatIfUserRiskInfo": "The risk level associated with the user",
- "whatIfUserSelectorInfo": "User in the directory that you want to test",
- "windows365InfoBox": "Selecting Windows 365 will affect connections to Cloud PCs and Azure Virtual Desktop session hosts. Click here to learn more.",
- "windowsDisplayName": "Windows",
- "windowsPhoneDisplayName": "Windows Phone",
- "workloadIdentities": "Workload identities (Preview)",
- "workloadIdentity": "Workload identity"
- },
- "ApplicableDeviceType": {
- "iPad": "iPad",
- "iPhoneAndIPod": "iPhone and iPod"
- },
- "TAPSettings": {
- "AllowedDataIngestionLocations": {
- "label": "Allow users to open data from selected services",
- "tooltip": "Select the application storage services users can open data from. All other services are blocked. Selecting no services will prevent users from opening data."
- },
- "AndroidBackup": {
- "label": "Backup org data to Android backup services",
- "tooltip": "Select {0} to prevent backup of org data to Android backup services. \nSelect {1} to permit backup of org data to Android backup services. \nPersonal or unmanaged data is not affected."
- },
- "AndroidBiometricAuthentication": {
- "label": "Biometrics instead of PIN for access",
- "tooltip": "Choose which android authentication methods people can use, if any, in place of an app PIN."
- },
- "AndroidFingerprint": {
- "label": "Fingerprint instead of PIN for access (Android 6.0+)",
- "tooltip": "Android OS uses fingerprint scans to authenticate Android-device users. This feature supports the native biometric controls on Android devices. OEM-specific biometric settings, like Samsung Pass, are not supported. If allowed, native biometric controls must be used to access the app on a capable device."
- },
- "AndroidOverrideFingerprint": {
- "label": "Override fingerprint with PIN after timeout"
- },
- "AppPIN": {
- "label": "App PIN when device PIN is set",
- "tooltip": "If not required, an app PIN does not need to be used to access the app if the device PIN is set on an MDM enrolled device.
\n\nNote: Intune cannot detect device enrollment with a third-party EMM solution on Android."
- },
- "BlockDataIngestionIntoOrganizationDocuments": {
- "label": "Open data into Org documents",
- "tooltip1": "Select Block to disable the use of the Open option or other options to share data between accounts in this app. Select Allow if you want to allow the use of Open and other options to share data between accounts in this app.",
- "tooltip2": "When set to Block, you can configure the following setting, Allow user to open data from selected services, to specify which services are allowed for Org data locations.",
- "tooltip3": "Note: This setting is only enforced if the setting \"Receive data from other apps\" is set to \"Policy managed apps\".
\nNote: This setting does not apply to all applications. For more information see {0}.",
- "tooltip4": "Note: This setting is only enforced if the setting \"Receive data from other apps\" is set to \"Policy managed apps\".
\nNote: This setting does not apply to all applications. For more information see {0} or {0}."
- },
- "ConnectToVpnOnLaunch": {
- "label": "Start Microsoft Tunnel connection on app-launch",
- "tooltip": "Allow connection to VPN when app is launch"
- },
- "CredentialsForAccess": {
- "label": "Work or school account credentials for access",
- "tooltip": "If required, work or school credentials must be used to access the policy-managed app. If PIN or biometric methods also required for access to the app, the work or school account credentials will be required on top of those prompts."
- },
- "CustomBrowserDisplayName": {
- "label": "Unmanaged Browser Name",
- "tooltip": "Enter the application name for browser associated with the \"Unmanaged Browser ID\". This name will be displayed to users if the specified browser is not installed."
- },
- "CustomBrowserPackageId": {
- "label": "Unmanaged Browser ID",
- "tooltip": "Enter the application ID for a single browser. Web content (http/s) from policy managed applications will open in the specified browser."
- },
- "CustomBrowserProtocol": {
- "label": "Unmanaged browser protocol",
- "tooltip": "Enter the protocol for a single unmanaged browser. Web content (http/s) from policy managed applications will open in any app that supports this protocol.
\n \nNote: Include only the protocol prefix. If your browser requires links of the form \"mybrowser://www.microsoft.com\", enter \"mybrowser\".
"
- },
- "CustomDialerAppDisplayName": {
- "label": "Dialer App Name"
- },
- "CustomDialerAppPackageId": {
- "label": "Dialer App Package ID"
- },
- "CustomDialerAppProtocol": {
- "label": "Dialer App URL Scheme"
- },
- "Cutcopypaste": {
- "label": "Restrict cut, copy, and paste between other apps",
- "tooltip": "Cut, copy, and paste data between your app and other approved apps installed on the device. Choose to block these actions completely between apps, allow these actions for use with any app, or restrict use to apps that your organization manages.
\n\nPolicy-managed apps with paste in gives you the option to accept incoming content pasted from another app. However, it blocks users from sharing content outwardly, unless sharing with a managed app.
"
- },
- "DialerRestrictionLevel": {
- "iosTooltip": "Typically, when a user selects a hyperlinked phone number in an app, a dialer app will open with the phone number prepopulated and ready to call. For this setting, choose how to handle this type of content transfer when it's initiated from a policy-managed app. Additional steps may be necessary in order for this setting to take effect. First, verify that tel and telprompt have been removed from the Select apps to exempt list. Then, ensure the application is using a newer version of Intune SDK (Version 12.7.0+).",
- "label": "Transfer telecommunication data to",
- "tooltip": "Typically, when a user selects a hyperlinked phone number in an app, a dialer app will open with the phone number prepopulated and ready to call. For this setting, choose how to handle this type of content transfer when it's initiated from a policy-managed app."
- },
- "EncryptData": {
- "label": "Encrypt org data",
- "link": "https://docs.microsoft.com/en-us/intune/app-protection-policy-settings-android#data-relocation-settings",
- "tooltip": "Select {0} to enforce encrypting org data with Intune app layer encryption.\n
\nSelect {1} to not enforce encrypting org data with Intune app layer encryption.\n\n
\nNote: For more information on Intune app layer encryption, see {2}."
- },
- "EncryptDataAndroid": {
- "tooltip": "Choose Require to enable encryption of work or school data in this app. Intune uses an OpenSSL, 256-bit AES encryption scheme along with the Android Keystore system to securely encrypt app data. Data is encrypted synchronously during file I/O tasks. Content on the device storage is always encrypted. The SDK will continue to provide support of 128-bit keys for compatibility with content and apps that use older SDK versions.
\n\nThe encryption method is FIPS 140-2 compliant.
"
- },
- "EncryptDataIos": {
- "tooltip1": "Choose Require to enable encryption of work or school data in this app. Intune enforces iOS/iPadOS device encryption to protect app data while the device is locked. Applications may optionally encrypt app data using Intune APP SDK encryption. Intune APP SDK uses iOS/iPadOS cryptography methods to apply 128-bit AES encryption to app data.",
- "tooltip2": "When you enable this setting, the user may be required to set up and use a PIN to access their device. If there's no device PIN and encryption is required, the user is prompted to set a PIN with the message \"Your organization has required you to first enable a device PIN to access this app.\"",
- "tooltip3": "Go to the official Apple documentation to see which iOS encryption modules are FIPS 140-2 compliant or pending FIPS 140-2 compliance."
- },
- "EncryptDataOnEnrolledDevices": {
- "label": "Encrypt org data on enrolled devices",
- "tooltip": "Select {0} to enforce encrypting org data with Intune app layer encryption on all devices.
\n\nSelect {1} to not enforce encrypting org data with Intune app layer encryption on enrolled devices."
- },
- "IOSBackup": {
- "label": "Backup org data to iTunes and iCloud backups",
- "tooltip": "Select {0} to prevent backup of org data to iTunes or iCloud. \nSelect {1} to permit backup of org data to iTunes or iCloud. \nPersonal or unmanaged data is not affected."
- },
- "IOSFaceID": {
- "label": "Face ID instead of PIN for access (iOS 11+/iPadOS)",
- "tooltip": "Face ID uses facial recognition technology to authenticate users on iOS/iPadOS devices. Intune calls the LocalAuthentication API to authenticate users using Face ID. If allowed, Face ID must be used to access the app on a Face ID capable device."
- },
- "IOSOverrideTouchId": {
- "label": "Override biometrics with PIN after timeout"
- },
- "IOSTouchId": {
- "label": "Touch ID instead of PIN for access (iOS 8+/iPadOS)",
- "tooltip": "Touch ID uses fingerprint recognition technology to authenticate users on iOS devices. Intune calls the LocalAuthentication API to authenticate users using Touch ID. If allowed, Touch ID must be used to access the app on a Touch ID capable device."
- },
- "NotificationRestriction": {
- "label": "Org data notifications",
- "tooltip": "Select one of the following options to specify how notifications for org accounts are shown for this app and any connected devices such as wearables:
\n{0}: Do not share notifications.
\n{1}: Do not share org data in notifications. If not supported by the application, notifications are blocked.
\n{2}: Share all notifications.
\n Android only:\n Note: This setting does not apply to all applications. For more information see {3}
\n \n iOS only:\nNote: This setting does not apply to all applications. For more information see {4}
"
- },
- "OpenLinksManagedBrowser": {
- "label": "Restrict web content transfer with other apps",
- "tooltip": "Select one of the following options to specify the apps that this app can open web content in:
\nEdge: Allow web content to open only in Edge
\nUnmanaged browser: Allow web content to open only in the unmanaged browser defined by \"Unmanaged browser protocol\" setting
\nAny app: Allow web links in any app
"
- },
- "OverrideBiometric": {
- "tooltip": "If required, depending on the timeout (minutes of inactivity), a PIN prompt will override biometric prompts. If this timeout value is not met, the biometric prompt will continue to show. This timeout value should be greater than the value specified under 'Recheck the access requirements after (minutes of inactivity)'. "
- },
- "PinAccess": {
- "label": "PIN for access",
- "tooltip": "If required, a PIN must be used to access the policy-managed app. Users must create an access PIN the first time that they open the app from a work or school account."
- },
- "PinLength": {
- "label": "Select minimum PIN length",
- "tooltip": "This setting specifies the minimum number of digits of a PIN."
- },
- "PinType": {
- "label": "PIN type",
- "tooltip": "Numeric PINs are made up of all numbers. Passcodes are made up of alphanumeric characters and special characters. "
- },
- "Printing": {
- "label": "Printing org data",
- "tooltip": "If blocked, the app cannot print protected data."
- },
- "ReceiveData": {
- "label": "Receive data from other apps",
- "tooltip": "Select one of the following options to specify the apps that this app can receive data from:
\n\nNone: Do not allow receiving data in org documents or accounts from any app
\n\nPolicy managed apps: Only allow receiving data in org documents or accounts from other policy managed apps\n
\nAny app with incoming org data: Allow receiving data in org documents or accounts from from any app and treat all incoming data without an user account as org data
\n\nAll apps: Allow receiving data in org documents or accounts from any app"
- },
- "RecheckAccessAfter": {
- "label": "Recheck the access requirements after (minutes of inactivity)\n\n",
- "tooltip": "If the policy-managed app is inactive for longer than the number of minutes of inactivity specified, the app will prompt the access requirements (i.e PIN, conditional launch settings) to be rechecked after the app is launched."
- },
- "RestrictKeyboards": {
- "duplicatePackageError": "The package ID must be unique.",
- "invalidPackageError": "Invalid package ID",
- "label": "Approved keyboards",
- "select": "Select keyboards to approve",
- "subtitle": "Add all keyboards and input methods that users are allowed to use with targeted apps. Enter the keyboard name as you would like it to appear to the end user.",
- "title": "Add approved keyboards",
- "toolTip": "Select Require and then specify a list of approved keyboards for this policy. Learn more."
- },
- "SaveData": {
- "label": "Save copies of org data",
- "tooltip": "Select {0} to prevent saving a copy of org data to a new location, other than the selected storage services, using \"Save As\".\n Select {1} to permit saving a copy of org data to a new location using \"Save As\".
\n\n\nNote: This setting does not apply to all applications. For more information see {2}.\n"
- },
- "SaveDataToSelected": {
- "label": "Allow user to save copies to selected services",
- "tooltip": "Select the storage services users can save copies of org data to. All other services are blocked. Selecting no services will prevent users from saving a copy of org data."
- },
- "ScreenCaptureAndAndroidAssistant": {
- "label": "Screen capture and Google Assistant\n",
- "tooltip": "If blocked, both screen capture and Google Assistant app scanning capabilities will be disabled when using the policy-managed app. This feature supports the usual Google Assistant app. Third party assistants using Google's Assist API are not supported. Choosing Block will also blur the App-Switcher preview image when using the app with a work or school account."
- },
- "SendData": {
- "label": "Send org data to other apps",
- "tooltip": "Select one of the following options to specify the apps that this app can send org data to:
\n\n\nNone: Do not allow sending org data to any app
\n\n\nPolicy managed apps: Only allow sending org data to other policy managed apps
\n\n\nPolicy managed apps with OS sharing: Only allow sending org data to other policy managed apps and sending org documents to other MDM managed apps on enrolled devices
\n\n\nPolicy managed apps with Open-In/Share filtering: Only allow sending org data to other policy managed apps and filter OS Open-in/Share dialogs to only display policy managed apps\n
\n\nAll apps: Allow sending org data to any app"
- },
- "SimplePin": {
- "label": "Simple PIN",
- "tooltip": "If blocked, users may not create a simple PIN. A simple PIN is a string of consecutive or repetitive digits, such as 1234, ABCD, or 1111. Please note that blocking simple PIN of type 'Passcode' requires the passcode to have at least one number, one letter, and one special character."
- },
- "SyncContacts": {
- "label": "Sync policy managed app data with native apps or add-ins"
- },
- "ThirdPartyKeyboards": {
- "infoBox": "Keyboard restrictions will apply to all areas of an app. Personal accounts for apps that support multiple identities will be affected by this restriction. Learn more.",
- "label": "Third party keyboards"
- },
- "Timeout": {
- "label": "Timeout (minutes of inactivity)"
- },
- "Tap": {
- "numberOfDays": "Number of days",
- "pinResetAfterNumberOfDays": "PIN reset after number of days",
- "previousPinBlockCount": "Select number of previous PIN values to maintain"
- }
- },
- "WindowsFeatureUpdateProfile": {
- "Details": {
- "Description": {
- "label": "Description"
- },
- "FeatureDeploymentSettings": {
- "header": "Feature deployment settings"
- },
- "FeatureUpdateVersion": {
- "infoballoon": "This feature cannot downgrade a device.",
- "label": "Feature update to deploy"
- },
- "GradualRolloutEndDate": {
- "label": "Final group availability"
- },
- "GradualRolloutInterval": {
- "label": "Days between groups"
- },
- "GradualRolloutStartDate": {
- "label": "First group availability"
- },
- "Name": {
- "label": "Name"
- },
- "RolloutOptions": {
- "label": "Rollout options"
- },
- "RolloutSettings": {
- "header": "When would you like to make the update available in Windows Update?"
- },
- "ScopeSettings": {
- "header": "Configure scope tags for this policy."
- },
- "StartDateOnlyStartDate": {
- "label": "First available date"
- },
- "bladeTitle": "Feature update deployments",
- "deploymentSettingsTitle": "Deployment settings",
- "loadError": "Loading failed!",
- "windows11EULA": "By selecting this Feature update to deploy you are agreeing that when applying this operating system to a device either (1) the applicable Windows license was purchased though volume licensing, or (2) that you are authorized to bind your organization and are accepting on its behalf the relevant Microsoft Software License Terms to be found here {0}."
- },
- "Notifications": {
- "deploymentSaved": "\"{0}\" has been saved.",
- "newFeatureUpdateDeploymentCreated": "New feature update deployment created."
- },
- "TabName": {
- "deploymentSettings": "Deployment settings",
- "groupAssignmentSettings": "Assignments",
- "scopeSettings": "Scope tags"
- }
- },
- "OfficeUpdateChannel": {
- "current": "Current Channel",
- "deferred": "Semi-Annual Enterprise Channel",
- "firstReleaseCurrent": "Current Channel (Preview)",
- "firstReleaseDeferred": "Semi-Annual Enterprise Channel (Preview)",
- "monthlyEnterprise": "Monthly Enterprise Channel",
- "placeHolder": "Select one"
- },
- "Win32ReturnCodes": {
- "CodeTypes": {
- "failed": "Failed",
- "hardReboot": "Hard reboot",
- "retry": "Retry",
- "softReboot": "Soft reboot",
- "success": "Success"
- },
- "Columns": {
- "codeType": "Code type",
- "returnCode": "Return code"
- },
- "bladeTitle": "Return codes",
- "gridAriaLabel": "Return codes",
- "header": "Specify return codes to indicate post-installation behavior:",
- "onAddAnnounceMessage": "Return code added item {0} of {1}",
- "onDeleteSuccess": "Return code {0} deleted successfully",
- "returnCodeAlreadyUsedValidation": "Return code is already used.",
- "returnCodeMustBeIntegerValidation": "Return code should be an integer.",
- "returnCodeShouldBeAtLeast": "Return code should be at least {0}.",
- "returnCodeShouldBeAtMost": "Return code should be at most {0}.",
- "selectorLabel": "Return codes"
- },
- "SecurityTemplate": {
- "aSR": "Attack surface reduction",
- "accountProtection": "Account protection",
- "allDevices": "All devices",
- "antivirus": "Antivirus",
- "antivirusReporting": "Antivirus Reporting (Preview)",
- "conditionalAccess": "Conditional access",
- "deviceCompliance": "Device compliance",
- "diskEncryption": "Disk encryption",
- "eDR": "Endpoint detection and response",
- "firewall": "Firewall",
- "helpSupport": "Help and support",
- "setup": "Setup",
- "wdapt": "Microsoft Defender for Endpoint"
- },
- "PolicySet": {
- "appManagement": "Application management",
- "assignments": "Assignments",
- "basics": "Basics",
- "deviceEnrollment": "Device enrollment",
- "deviceManagement": "Device management",
- "scopeTags": "Scope tags",
- "appConfigurationTitle": "App configuration policies",
- "appProtectionTitle": "App protection policies",
- "appTitle": "Apps",
- "iOSAppProvisioningTitle": "iOS app provisioning profiles",
- "deviceLimitRestrictionTitle": "Device limit restrictions",
- "deviceTypeRestrictionTitle": "Device type restrictions",
- "enrollmentStatusSettingTitle": "Enrollment status pages",
- "windowsAutopilotDeploymentProfileTitle": "Windows autopilot deployment profiles",
- "deviceComplianceTitle": "Device compliance policies",
- "deviceConfigurationTitle": "Device configuration profiles",
- "powershellScriptTitle": "Powershell scripts"
- },
- "AssignmentAction": {
- "exclude": "Excluded",
- "include": "Included",
- "includeAllDevicesVirtualGroup": "Included",
- "includeAllUsersVirtualGroup": "Included"
- },
- "WindowsFeatureUpdate": {
- "EndOFSupportStatus": {
- "notSupported": "Not supported",
- "supportEnding": "Support ending",
- "supported": "Supported"
- }
- },
- "InstallIntent": {
- "available": "Available for enrolled devices",
- "availableWithoutEnrollment": "Available with or without enrollment",
- "required": "Required",
- "uninstall": "Uninstall"
- },
"OutlookAppConfig": {
"DataProtectionConfiguration": {
"header": "Data Protection configuration"
@@ -1938,307 +100,864 @@
"themesEnabledTitle": "Themes Enabled",
"themesEnabledTooltip": "Specify if the user is allowed to use a custom visual theme."
},
- "TAP": {
- "AccessRequirements": {
- "infoText": "Configure the PIN and credential requirements that users must meet to access apps in a work context."
- },
- "DataProtection": {
- "infoText": "This group includes the data loss prevention (DLP) controls, like cut, copy, paste, and save-as restrictions. These settings determine how users interact with data in the apps."
- },
- "DeviceTypes": {
- "selectOne": "Select at least one device type."
- },
- "TargetedApps": {
- "TargetToAll": {
- "label": "Target to apps on all device types"
- },
- "infoText": "Choose how you want to apply this policy to apps on different devices. Then add at least one app.",
- "selectOne": "Select at least one app to create a policy."
- }
- },
- "TACSettings": {
- "edgeSettings": "Edge configuration settings",
- "edgeWindowsDataProtectionSettings": "Edge (Windows) data protection settings - Preview",
- "edgeWindowsSettings": "Edge (Windows) configuration settings - Preview",
- "generalAppConfig": "General app configuration",
- "generalSettings": "General configuration settings",
- "outlookSMIMEConfig": "Outlook S/MIME settings",
- "outlookSettings": "Outlook configuration settings",
- "sMIME": "S/MIME"
- },
- "OfficeApplicationAdditionalType": {
- "projectProRetail": "Project Online Desktop Client",
- "visioProRetail": "Visio Online Plan 2"
- },
- "Win32Requirements": {
- "AdditionalRequirements": {
- "File": {
- "fileOrFolderToolTip": "The file or folder as the selected requirement.",
- "pathToolTip": "The complete path of the file or folder to detect.",
- "property": "Property",
- "valueToolTip": "Select a requirement value that matches the selected detection method. Date and time requirement should be entered in your local format."
- },
- "GridColumns": {
- "pathOrScript": "Path/Script",
- "type": "Type"
- },
- "Registry": {
- "keyPath": "Key path",
- "keyPathTooltip": "The full path of the registry entry containing the value as a requirement.",
- "operator": "Operator",
- "operatorTooltip": "Select the operator for the comparison.",
- "registryRequirement": "Registry key requirement",
- "registryRequirementTooltip": "Select the registry key requirement comparison.",
- "valueName": "Value name",
- "valueNameTooltip": "The name of the required registry value."
- },
- "RequirementTypeOptions": {
- "fileType": "File",
- "registry": "Registry",
- "script": "Script"
- },
- "Script": {
- "RequirementMethodOptions": {
- "boolean": "Boolean",
- "dateTime": "Date and Time",
- "float": "Floating Point",
- "integer": "Integer",
- "string": "String",
- "version": "Version"
- },
- "ScriptContent": {
- "emptyMessage": "Script content should not be empty."
- },
- "duplicateName": "Script name {0} has already been used. Please enter a different name.",
- "enforceSignatureCheck": "Enforce script signature check",
- "enforceSignatureCheckTooltip": "Select ‘Yes’ to verify that the script is signed by a trusted publisher, which will allow the script to run without warnings or prompts. The script will run unblocked. Select ‘No’ (default) to run the script with end-user confirmation, but without signature verification.",
- "loggedOnCredentials": "Run this script using the logged on credentials",
- "loggedOnCredentialsTooltip": "Run script using the signed in device credentials.",
- "operatorTooltip": "Select the operator for the requirement comparison.",
- "requirementMethod": "Select output data type",
- "requirementMethodTooltip": "Select the data type used when determining a detection match requirement.",
- "scriptFile": "Script file",
- "scriptFileTooltip": "Select a PowerShell script that will detect the presence of the app on the client. If the app is detected, the requirement process will provide a 0 value exit code and will write a string value to STDOUT.",
- "scriptName": "Script name",
- "value": "Value",
- "valueTooltip": "Select a requirement value that matches the selected detection method. Date and time requirement should be entered in your local format."
- },
- "bladeTitle": "Add a Requirement rule",
- "createRequirementHeader": "Create a requirement.",
- "header": "Configure additional requirement rules",
- "label": "Additional requirement rules",
- "noRequirementsSelectedPlaceholder": "No requirements are specified.",
- "requirementType": "Requirement type",
- "requirementTypeTooltip": "Choose the type of detection method used to determine how a requirement is validated."
- },
- "architectures": "Operating system architecture",
- "architecturesTooltip": "Choose the architectures needed to install the app.",
- "bladeTitle": "Requirements",
- "diskSpace": "Disk space required (MB)",
- "diskSpaceTooltip": "Free disk space needed on the system drive to install the app.",
- "header": "Specify the requirements that devices must meet before the app is installed:",
- "maximumTextFieldValue": "The value must be at most {0}.",
- "minimumCpuSpeed": "Minimum CPU speed required (MHz)",
- "minimumCpuSpeedTooltip": "The minimum CPU speed required to install the app.",
- "minimumLogicalProcessors": "Minimum number of logical processors required",
- "minimumLogicalProcessorsTooltip": "The minimum number of logical processors required to install the app.",
- "minimumOperatingSystem": "Minimum operating system",
- "minimumOperatingSystemTooltip": "Select the minimum operating system needed to install the app.",
- "minumumTextFieldValue": "The value must be at least {0}.",
- "physicalMemory": "Physical memory required (MB)",
- "physicalMemoryTooltip": "Physical memory (RAM) required to install the app.",
- "selectorLabel": "Requirements",
- "validNumber": "Please enter a valid number."
- },
- "ArchitectureOptions": {
- "sixtyFourBit": "64-bit",
- "thirtyTwoBit": "32-bit"
- },
- "Countries": {
- "ae": "United Arab Emirates",
- "ag": "Antigua and Barbuda",
- "ai": "Anguilla",
- "al": "Albania",
- "am": "Armenia",
- "ao": "Angola",
- "ar": "Argentina",
- "at": "Austria",
- "au": "Australia",
- "az": "Azerbaijan",
- "bb": "Barbados",
- "be": "Belgium",
- "bf": "Burkina Faso",
- "bg": "Bulgaria",
- "bh": "Bahrain",
- "bj": "Benin",
- "bm": "Bermuda",
- "bn": "Brunei",
- "bo": "Bolivia",
- "br": "Brazil",
- "bs": "Bahamas",
- "bt": "Bhutan",
- "bw": "Botswana",
- "by": "Belarus",
- "bz": "Belize",
- "ca": "Canada",
- "cg": "Republic Of Congo",
- "ch": "Switzerland",
- "cl": "Chile",
- "cn": "China",
- "co": "Colombia",
- "cr": "Costa Rica",
- "cv": "Cape Verde",
- "cy": "Cyprus",
- "cz": "Czech Republic",
- "de": "Germany",
- "dk": "Denmark",
- "dm": "Dominica",
- "do": "Dominican Republic",
- "dz": "Algeria",
- "ec": "Ecuador",
- "ee": "Estonia",
- "eg": "Egypt",
- "es": "Spain",
- "fi": "Finland",
- "fj": "Fiji",
- "fm": "Federated States Of Micronesia",
- "fr": "France",
- "gb": "United Kingdom",
- "gd": "Grenada",
- "gh": "Ghana",
- "gm": "Gambia",
- "gr": "Greece",
- "gt": "Guatemala",
- "gw": "Guinea-Bissau",
- "gy": "Guyana",
- "hk": "Hong Kong",
- "hn": "Honduras",
- "hr": "Croatia",
- "hu": "Hungary",
- "id": "Indonesia",
- "ie": "Ireland",
- "il": "Israel",
- "in": "India",
- "is": "Iceland",
- "it": "Italy",
- "jm": "Jamaica",
- "jo": "Jordan",
- "jp": "Japan",
- "ke": "Kenya",
- "kg": "Kyrgyzstan",
- "kh": "Cambodia",
- "kn": "St. Kitts and Nevis",
- "kr": "Republic Of Korea",
- "kw": "Kuwait",
- "ky": "Cayman Islands",
- "kz": "Kazakstan",
- "la": "Lao People’s Democratic Republic",
- "lb": "Lebanon",
- "lc": "St. Lucia",
- "lk": "Sri Lanka",
- "lr": "Liberia",
- "lt": "Lithuania",
- "lu": "Luxembourg",
- "lv": "Latvia",
- "md": "Republic Of Moldova",
- "mg": "Madagascar",
- "mk": "North Macedonia",
- "ml": "Mali",
- "mn": "Mongolia",
- "mo": "Macau",
- "mr": "Mauritania",
- "ms": "Montserrat",
- "mt": "Malta",
- "mu": "Mauritius",
- "mw": "Malawi",
- "mx": "Mexico",
- "my": "Malaysia",
- "mz": "Mozambique",
- "na": "Namibia",
- "ne": "Niger",
- "ng": "Nigeria",
- "ni": "Nicaragua",
- "nl": "Netherlands",
- "no": "Norway",
- "np": "Nepal",
- "nz": "New Zealand",
- "om": "Oman",
- "pa": "Panama",
- "pe": "Peru",
- "pg": "Papua New Guinea",
- "ph": "Philippines",
- "pk": "Pakistan",
- "pl": "Poland",
- "pt": "Portugal",
- "pw": "Palau",
- "py": "Paraguay",
- "qa": "Qatar",
- "ro": "Romania",
- "ru": "Russia",
- "sa": "Saudi Arabia",
- "sb": "Solomon Islands",
- "sc": "Seychelles",
- "se": "Sweden",
- "sg": "Singapore",
- "si": "Slovenia",
- "sk": "Slovakia",
- "sl": "Sierra Leone",
- "sn": "Senegal",
- "sr": "Suriname",
- "st": "Sao Tome and Principe",
- "sv": "El Salvador",
- "sz": "Swaziland",
- "tc": "Turks and Caicos",
- "td": "Chad",
- "th": "Thailand",
- "tj": "Tajikistan",
- "tm": "Turkmenistan",
- "tn": "Tunisia",
- "tr": "Turkey",
- "tt": "Trinidad and Tobago",
- "tw": "Taiwan",
- "tz": "Tanzania",
- "ua": "Ukraine",
- "ug": "Uganda",
- "us": "United States",
- "uy": "Uruguay",
- "uz": "Uzbekistan",
- "vc": "St. Vincent and The Grenadines",
- "ve": "Venezuela",
- "vg": "British Virgin Islands",
- "vn": "Vietnam",
- "ye": "Yemen",
- "za": "South Africa",
- "zw": "Zimbabwe"
+ "Languages": {
+ "ar-aE": "Arabic (U.A.E.)",
+ "ar-bH": "Arabic (Bahrain)",
+ "ar-dZ": "Arabic (Algeria)",
+ "ar-eG": "Arabic (Egypt)",
+ "ar-iQ": "Arabic (Iraq)",
+ "ar-jO": "Arabic (Jordan)",
+ "ar-kW": "Arabic (Kuwait)",
+ "ar-lB": "Arabic (Lebanon)",
+ "ar-lY": "Arabic (Libya)",
+ "ar-mA": "Arabic (Morocco)",
+ "ar-oM": "Arabic (Oman)",
+ "ar-qA": "Arabic (Qatar)",
+ "ar-sA": "Arabic (Saudi Arabia)",
+ "ar-sY": "Arabic (Syria)",
+ "ar-tN": "Arabic (Tunisia)",
+ "ar-yE": "Arabic (Yemen)",
+ "az-cyrl": "Azerbaijani (Cyrillic, Azerbaijan)",
+ "az-latn": "Azerbaijani (Latin, Azerbaijan)",
+ "bn-bD": "Bangla (Bangladesh)",
+ "bn-iN": "Bangla (India)",
+ "bs-cyrl": "Bosnian (Cyrillic)",
+ "bs-latn": "Bosnian (Latin)",
+ "zh-cN": "Chinese (PRC)",
+ "zh-hK": "Chinese (Hong Kong S.A.R.)",
+ "zh-mO": "Chinese (Macao S.A.R.)",
+ "zh-sG": "Chinese (Singapore)",
+ "zh-tW": "Chinese (Taiwan)",
+ "hr-bA": "Croatian (Latin)",
+ "hr-hR": "Croatian (Croatia)",
+ "nl-bE": "Dutch (Belgium)",
+ "nl-nL": "Dutch (Netherlands)",
+ "en-aU": "English (Australia)",
+ "en-bZ": "English (Belize)",
+ "en-cA": "English (Canada)",
+ "en-cabn": "English (Caribbean)",
+ "en-iE": "English (Ireland)",
+ "en-iN": "English (India)",
+ "en-jM": "English (Jamaica)",
+ "en-mY": "English (Malaysia)",
+ "en-nZ": "English (New Zealand)",
+ "en-pH": "English (Republic of the Philippines)",
+ "en-sG": "English (Singapore)",
+ "en-tT": "English (Trinidad and Tobago)",
+ "en-uK": "English (United Kingdom)",
+ "en-uS": "English (United States)",
+ "en-zA": "English (South Africa)",
+ "en-zW": "English (Zimbabwe)",
+ "fr-bE": "French (Belgium)",
+ "fr-cA": "French (Canada)",
+ "fr-cH": "French (Switzerland)",
+ "fr-fR": "French (France)",
+ "fr-lU": "French (Luxembourg)",
+ "fr-mC": "French (Monaco)",
+ "de-aT": "German (Austria)",
+ "de-cH": "German (Switzerland)",
+ "de-dE": "German (Germany)",
+ "de-lI": "German (Liechtenstein)",
+ "de-lU": "German (Luxembourg)",
+ "iu-cans": "Inuktitut (Syllabics, Canada)",
+ "iu-latn": "Inuktitut (Latin, Canada)",
+ "it-cH": "Italian (Switzerland)",
+ "it-iT": "Italian (Italy)",
+ "ms-bN": "Malay (Brunei Darussalam)",
+ "ms-mY": "Malay (Malaysia)",
+ "mn-cN": "Mongolian (Traditional Mongolian, PRC)",
+ "mn-mN": "Mongolian (Cyrillic, Mongolia)",
+ "no-nB": "Norwegian, Bokmål (Norway)",
+ "no-nn": "Norwegian, Nynorsk (Norway)",
+ "pt-bR": "Portuguese (Brazil)",
+ "pt-pT": "Portuguese (Portugal)",
+ "quz-bO": "Quechua (Bolivia)",
+ "quz-eC": "Quechua (Ecuador)",
+ "quz-pE": "Quechua (Peru)",
+ "smj-nO": "Sami, Lule (Norway)",
+ "smj-sE": "Sami, Lule (Sweden)",
+ "se-fI": "Sami, Northern (Finland)",
+ "se-nO": "Sami, Northern (Norway)",
+ "se-sE": "Sami, Northern (Sweden)",
+ "sma-nO": "Sami, Southern (Norway)",
+ "sma-sE": "Sami, Southern (Sweden)",
+ "smn": "Sami, Inari (Finland)",
+ "sms": "Sami, Skolt (Finland)",
+ "sr-Cyrl-bA": "Serbian (Cyrillic)",
+ "sr-Cyrl-rS": "Serbian (Cyrillic, Serbia and Montenegro)",
+ "sr-Latn-bA": "Serbian (Latin)",
+ "sr-Latn-rS": "Serbian (Latin, Serbia)",
+ "dsb": "Lower Sorbian (Germany)",
+ "hsb": "Upper Sorbian (Germany)",
+ "es-es-tradnl": "Spanish (Spain, Traditional Sort)",
+ "es-aR": "Spanish (Argentina)",
+ "es-bO": "Spanish (Bolivia)",
+ "es-cL": "Spanish (Chile)",
+ "es-cO": "Spanish (Colombia)",
+ "es-cR": "Spanish (Costa Rica)",
+ "es-dO": "Spanish (Dominican Republic)",
+ "es-eC": "Spanish (Ecuador)",
+ "es-eS": "Spanish (Spain)",
+ "es-gT": "Spanish (Guatemala)",
+ "es-hN": "Spanish (Honduras)",
+ "es-mX": "Spanish (Mexico)",
+ "es-nI": "Spanish (Nicaragua)",
+ "es-pA": "Spanish (Panama)",
+ "es-pE": "Spanish (Peru)",
+ "es-pR": "Spanish (Puerto Rico)",
+ "es-pY": "Spanish (Paraguay)",
+ "es-sV": "Spanish (El Salvador)",
+ "es-uS": "Spanish (United States)",
+ "es-uY": "Spanish (Uruguay)",
+ "es-vE": "Spanish (Venezuela)",
+ "sv-fI": "Swedish (Finland)",
+ "uz-cyrl": "Uzbek (Cyrillic, Uzbekistan)",
+ "uz-latn": "Uzbek (Latin, Uzbekistan)",
+ "af": "Afrikaans (South Africa)",
+ "sq": "Albanian (Albania)",
+ "am": "Amharic (Ethiopia)",
+ "hy": "Armenian (Armenia)",
+ "as": "Assamese (India)",
+ "ba": "Bashkir (Russia)",
+ "eu": "Basque (Basque)",
+ "be": "Belarusian (Belarus)",
+ "br": "Breton (France)",
+ "bg": "Bulgarian (Bulgaria)",
+ "ca": "Catalan (Catalan)",
+ "co": "Corsican (France)",
+ "cs": "Czech (Czech Republic)",
+ "da": "Danish (Denmark)",
+ "prs": "Dari (Afghanistan)",
+ "dv": "Divehi (Maldives)",
+ "et": "Estonian (Estonia)",
+ "fo": "Faroese (Faroe Islands)",
+ "fil": "Filipino (Philippines)",
+ "fi": "Finnish (Finland)",
+ "gl": "Galician (Galician)",
+ "ka": "Georgian (Georgia)",
+ "el": "Greek (Greece)",
+ "gu": "Gujarati (India)",
+ "ha": "Hausa (Latin, Nigeria)",
+ "he": "Hebrew (Israel)",
+ "hi": "Hindi (India)",
+ "hu": "Hungarian (Hungary)",
+ "is": "Icelandic (Iceland)",
+ "ig": "Igbo (Nigeria)",
+ "id": "Indonesian (Indonesia)",
+ "ga": "Irish (Ireland)",
+ "xh": "isiXhosa (South Africa)",
+ "zu": "isiZulu (South Africa)",
+ "ja": "Japanese (Japan)",
+ "kn": "Kannada (India)",
+ "kk": "Kazakh (Kazakhstan)",
+ "km": "Khmer (Cambodia)",
+ "rw": "Kinyarwanda (Rwanda)",
+ "sw": "Kiswahili (Kenya)",
+ "kok": "Konkani (India)",
+ "ko": "Korean (Korea)",
+ "ky": "Kyrgyz (Kyrgyzstan)",
+ "lo": "Lao (Lao P.D.R.)",
+ "lv": "Latvian (Latvia)",
+ "lt": "Lithuanian (Lithuania)",
+ "lb": "Luxembourgish (Luxembourg)",
+ "mk": "Macedonian (North Macedonia)",
+ "ml": "Malayalam (India)",
+ "mt": "Maltese (Malta)",
+ "mi": "Maori (New Zealand)",
+ "mr": "Marathi (India)",
+ "moh": "Mohawk (Mohawk)",
+ "ne": "Nepali (Nepal)",
+ "oc": "Occitan (France)",
+ "or": "Odia (India)",
+ "ps": "Pashto (Afghanistan)",
+ "fa": "Persian",
+ "pl": "Polish (Poland)",
+ "pa": "Punjabi (India)",
+ "ro": "Romanian (Romania)",
+ "rm": "Romansh (Switzerland)",
+ "ru": "Russian (Russia)",
+ "sa": "Sanskrit (India)",
+ "st": "Sesotho sa Leboa (South Africa)",
+ "tn": "Setswana (South Africa)",
+ "si": "Sinhala (Sri Lanka)",
+ "sk": "Slovak (Slovakia)",
+ "sl": "Slovenian (Slovenia)",
+ "sv": "Swedish (Sweden)",
+ "syr": "Syriac (Syria)",
+ "tg": "Tajik (Cyrillic, Tajikistan)",
+ "ta": "Tamil (India)",
+ "tt": "Tatar (Russia)",
+ "te": "Telugu (India)",
+ "th": "Thai (Thailand)",
+ "bo": "Tibetan (PRC)",
+ "tr": "Turkish (Turkey)",
+ "tk": "Turkmen (Turkmenistan)",
+ "uk": "Ukrainian (Ukraine)",
+ "ur": "Urdu (Islamic Republic of Pakistan)",
+ "vi": "Vietnamese (Vietnam)",
+ "cy": "Welsh (United Kingdom)",
+ "wo": "Wolof (Senegal)",
+ "ii": "Yi (PRC)",
+ "yo": "Yoruba (Nigeria)"
+ },
+ "Category": {
+ "airPlay": "AirPlay",
+ "airPrint": "AirPrint",
+ "androidDefenderAtp": "Microsoft Defender for Endpoint",
+ "androidDeviceOwnerApplications": "Applications",
+ "androidForWorkPassword": "Device password",
+ "appManagement": "Allow or Block apps",
+ "applicationGuard": "Microsoft Defender Application Guard",
+ "applicationRestrictions": "Restricted Apps",
+ "applicationVisibility": "Show or Hide Apps",
+ "applications": "App Store",
+ "applicationsAndGames": "App Store, Doc Viewing, Gaming",
+ "applicationsAndGoogle": "Google Play Store",
+ "appsAndExperience": "Apps and experience",
+ "associatedDomains": "Associated domains",
+ "autonomousSingleAppMode": "Autonomous Single App Mode",
+ "azureOperationalInsights": "Azure operational insights",
+ "bitLocker": "Windows Encryption",
+ "browser": "Browser",
+ "builtinApps": "Built-in Apps",
+ "cellular": "Cellular",
+ "cloudAndStorage": "Cloud and Storage",
+ "cloudPrint": "Cloud Printer",
+ "complianceEmailProfile": "Email",
+ "connectedDevices": "Connected Devices",
+ "connectivity": "Cellular and connectivity",
+ "contentCaching": "Content caching",
+ "controlPanelAndSettings": "Control Panel and Settings",
+ "credentialGuard": "Microsoft Defender Credential Guard",
+ "customCompliance": "Custom Compliance",
+ "customCompliancePreview": "Custom Compliance (Preview)",
+ "customConfiguration": "Custom Configuration Profile",
+ "customOMASettings": "Custom OMA-URI Settings",
+ "customPreferences": "Preference file",
+ "defender": "Microsoft Defender Antivirus",
+ "defenderAntivirus": "Microsoft Defender Antivirus",
+ "defenderExploitGuard": "Microsoft Defender Exploit Guard",
+ "defenderFirewall": "Microsoft Defender Firewall",
+ "defenderLocalSecurityOptions": "Local device security options",
+ "defenderSecurityCenter": "Microsoft Defender Security Center",
+ "deliveryOptimization": "Delivery Optimization",
+ "derivedCredentialAuthenticationConfiguration": "Derived credential",
+ "deviceExperience": "Device experience",
+ "deviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
+ "deviceGuard": "Microsoft Defender Application Control",
+ "deviceHealth": "Device Health",
+ "devicePassword": "Device password",
+ "deviceProperties": "Device Properties",
+ "deviceRestrictions": "General",
+ "deviceSecurity": "System security",
+ "display": "Display",
+ "domainJoin": "Domain Join",
+ "domains": "Domains",
+ "edgeBrowser": "Microsoft Edge Legacy (Version 45 and earlier)",
+ "edgeBrowserSmartScreen": "Microsoft Defender SmartScreen",
+ "edgeKiosk": "Microsoft Edge kiosk mode",
+ "editionUpgrade": "Edition Upgrade",
+ "education": "Education",
+ "educationDeviceCerts": "Device certificates",
+ "educationStudentCerts": "Student certificates",
+ "educationTakeATest": "Take a Test",
+ "educationTeacherCerts": "Teacher certificates",
+ "emailProfile": "Email",
+ "enterpriseDataProtection": "Windows Information Protection",
+ "expeditedCheckin": "Mobile device management configuration",
+ "extensibleSingleSignOn": "Single sign-on app extension",
+ "filevault": "FileVault",
+ "firewall": "Firewall",
+ "games": "Games",
+ "gatekeeper": "Gatekeeper",
+ "healthMonitoring": "Health monitoring",
+ "homeScreenLayout": "Home Screen Layout",
+ "iOSWallpaper": "Wallpaper",
+ "importedPFX": "PKCS Imported Certificate",
+ "iosDefenderAtp": "Microsoft Defender for Endpoint",
+ "iosKiosk": "Kiosk",
+ "kernelExtensions": "Kernel extensions",
+ "keyboardAndDictionary": "Keyboard and Dictionary",
+ "kiosk": "Kiosk",
+ "kioskAndroidEnterprise": "Dedicated devices",
+ "kioskConfiguration": "Kiosk",
+ "kioskConfigurationV2": "Kiosk",
+ "kioskWebBrowser": "Kiosk web browser",
+ "lockScreenMessage": "Lock Screen Message",
+ "lockedScreenExperience": "Locked Screen Experience",
+ "logging": "Reporting and Telemetry",
+ "loginItems": "Login items",
+ "loginWindow": "Login window",
+ "macDefenderAtp": "Microsoft Defender for Endpoint",
+ "maintenance": "Maintenance",
+ "malware": "Malware",
+ "messaging": "Messaging",
+ "networkBoundary": "Network boundary",
+ "networkProxy": "Network proxy",
+ "notifications": "App Notifications",
+ "pKCS": "PKCS Certificate",
+ "password": "Password",
+ "personalProfile": "Personal profile",
+ "personalization": "Personalization",
+ "policyOverride": "Override Group Policy",
+ "powerSettings": "Power Settings",
+ "printer": "Printer",
+ "privacy": "Privacy",
+ "privacyPerApp": "Per-app privacy exceptions",
+ "privacyPreferences": "Privacy preferences",
+ "projection": "Projection",
+ "sCCMCompliance": "Configuration Manager Compliance",
+ "sCEP": "SCEP Certificate",
+ "sCEPProperties": "SCEP Certificate",
+ "sMode": "Mode switch (Windows Insider only)",
+ "safari": "Safari",
+ "search": "Search",
+ "session": "Session",
+ "sharedDevice": "Shared iPad",
+ "sharedPCAccountManager": "Shared multi-user device",
+ "singleSignOn": "Single sign-on",
+ "smartScreen": "Microsoft Defender SmartScreen",
+ "softwareUpdates": "Settings",
+ "start": "Start",
+ "systemExtensions": "System extensions",
+ "systemSecurity": "System Security",
+ "trustedCert": "Trusted Certificate",
+ "updates": "Updates",
+ "userRights": "User Rights",
+ "usersAndAccounts": "Users and Accounts",
+ "vPN": "Base VPN",
+ "vPNApps": "Automatic VPN",
+ "vPNAppsAndTrafficRules": "Apps and Traffic Rules",
+ "vPNConditionalAccess": "Conditional Access",
+ "vPNConnectivity": "Connectivity",
+ "vPNDNSTriggers": "DNS Settings",
+ "vPNIKEv2": "IKEv2 settings",
+ "vPNProxy": "Proxy",
+ "vPNSplitTunneling": "Split Tunneling",
+ "vPNTrustedNetwork": "Trusted Network Detection",
+ "webContentFilter": "Web Content Filter",
+ "wiFi": "Wi-Fi",
+ "win10Wifi": "Wi-Fi",
+ "windowsAtp": "Microsoft Defender for Endpoint",
+ "windowsDefenderATP": "Microsoft Defender for Endpoint",
+ "windowsHelloForBusiness": "Windows Hello for Business",
+ "windowsSpotlight": "Windows Spotlight",
+ "wiredNetwork": "Wired network",
+ "wireless": "Wireless",
+ "wirelessProjection": "Wireless projection",
+ "workProfile": "Work profile settings",
+ "workProfilePassword": "Work profile password",
+ "xboxServices": "Xbox services",
+ "zebraMx": "MX profile (Zebra only)",
+ "complianceActionsLabel": "Actions for noncompliance"
+ },
+ "WindowsFeatureUpdateProfile": {
+ "Details": {
+ "Description": {
+ "label": "Description"
+ },
+ "FeatureDeploymentSettings": {
+ "header": "Feature deployment settings"
+ },
+ "FeatureUpdateVersion": {
+ "infoballoon": "This feature cannot downgrade a device.",
+ "label": "Feature update to deploy"
+ },
+ "GradualRolloutEndDate": {
+ "label": "Final group availability"
+ },
+ "GradualRolloutInterval": {
+ "label": "Days between groups"
+ },
+ "GradualRolloutStartDate": {
+ "label": "First group availability"
+ },
+ "Name": {
+ "label": "Name"
+ },
+ "RolloutOptions": {
+ "label": "Rollout options"
+ },
+ "RolloutSettings": {
+ "header": "When would you like to make the update available in Windows Update?"
+ },
+ "ScopeSettings": {
+ "header": "Configure scope tags for this policy."
+ },
+ "StartDateOnlyStartDate": {
+ "label": "First available date"
+ },
+ "bladeTitle": "Feature update deployments",
+ "deploymentSettingsTitle": "Deployment settings",
+ "loadError": "Loading failed!",
+ "windows11EULA": "By selecting this Feature update to deploy you are agreeing that when applying this operating system to a device either (1) the applicable Windows license was purchased though volume licensing, or (2) that you are authorized to bind your organization and are accepting on its behalf the relevant Microsoft Software License Terms to be found here {0}."
+ },
+ "Notifications": {
+ "deploymentSaved": "\"{0}\" has been saved.",
+ "newFeatureUpdateDeploymentCreated": "New feature update deployment created."
+ },
+ "TabName": {
+ "deploymentSettings": "Deployment settings",
+ "groupAssignmentSettings": "Assignments",
+ "scopeSettings": "Scope tags"
+ }
+ },
+ "WIPPinRequirements": {
+ "WipLowercaseCharacterPinRequirements": {
+ "allow": "Allow the use of lowercase letters in PIN",
+ "notAllow": "Do not allow the use of lowercase letters in PIN",
+ "requireAtLeastOne": "Require the use of at least one lowercase letter in PIN"
+ },
+ "WipSpecialCharacterPinRequirements": {
+ "allow": "Allow the use of special characters in PIN",
+ "notAllow": "Do not allow the use of special characters in PIN",
+ "requireAtLeastOne": "Require the use of at least one special character in PIN"
+ },
+ "WipUppercaseCharacterPinRequirements": {
+ "allow": "Allow the use of uppercase letters in PIN",
+ "notAllow": "Do not allow the use of uppercase letters in PIN",
+ "requireAtLeastOne": "Require the use of at least one uppercase letter in PIN"
+ }
+ },
+ "OutlookAppConfigSettings": {
+ "AllowUserToChangeSetting": {
+ "title": "Allow user to change setting",
+ "tooltip": "Specify if the user is allowed to change the setting."
+ },
+ "AllowWorkAccounts": {
+ "title": "Allow only work or school accounts",
+ "tooltip": " By enabling this setting, users will be unable to add personal email and storage accounts within Outlook. If the user has a personal account added to Outlook, the user is prompted to remove the personal account. If the user does not remove the personal account, the work or school account cannot be added."
+ },
+ "BlockExternalImages": {
+ "title": "Block external images",
+ "tooltip": "When block external images is enabled, the app will prevent the download of images hosted on the Internet that are embedded in the message body. When set as not configured, the default app setting is set to Off"
+ },
+ "ConfigureEmail": {
+ "title": "Configure email account settings"
+ },
+ "DefaultAppSignatureSetting": {
+ "Tooltip": {
+ "android": "Default app signature indicates whether the app will use “Get Outlook for Android” as the default signature during message composition. If the setting is configured as Off, the default signature will not be used; however, users can add their own signature.\n\nWhen set as Not Configured, the default app setting is set to On.",
+ "iOS": "Default app signature indicates whether the app will use “Get Outlook for iOS” as the default signature during message composition. If the setting is configured as Off, the default signature will not be used; however, users can add their own signature.\n\nWhen set as Not Configured, the default app setting is set to On."
+ },
+ "title": "Default app signature"
+ },
+ "OfficeFeedReplies": {
+ "title": "Discover Feed",
+ "tooltip": "Discover Feed surfaces your most frequently accessed Office files. By default, this feed is enabled when Delve is enabled for the user. When set as not configured, the default app setting is set to On."
+ },
+ "OrganizeMailByThread": {
+ "title": "Organize mail by thread",
+ "tooltip": "The default behavior in Outlook is to bundle mail conversations into a threaded conversation view. If this setting is disabled Outlook will display each mail individually and will not group them by thread."
+ },
+ "PlayMyEmails": {
+ "title": "Play My Emails",
+ "tooltip": "The Play My Emails feature is not enabled by default in the app, but it is promoted to eligible users via a banner in the inbox. When set to Off, this feature will not be promoted to eligible users in the app. Users can choose to manually enable Play My Emails from within the app, even when this feature is set to Off. When set as Not configured, the default app setting is On and the feature will be promoted to eligible users."
+ },
+ "SuggestedReplies": {
+ "title": "Suggested replies",
+ "tooltip": "When you open a message, Outlook might suggest replies below the message. If you select a suggested reply, you can edit the reply before sending it."
+ },
+ "SyncCalendars": {
+ "title": "Sync Calendars",
+ "tooltip": "Configure whether users can sync their Outlook calendar to the native calendar app and database."
+ },
+ "TextPredictions": {
+ "title": "Text Predictions",
+ "tooltip": "Outlook can suggest words and phrases as you compose messages. When Outlook offers a suggestion, swipe to accept it. When set as not configured, the default app setting is set to On."
+ },
+ "ThemesEnabled": {
+ "title": "Themes enabled",
+ "tooltip": "Specify if the user is allowed to use a custom visual theme."
+ }
+ },
+ "AssignmentFilters": {
+ "assignmentFilterColumnHeader": "Filter",
+ "noFilters": "None"
+ },
+ "Platform": {
+ "all": "All",
+ "android": "Android device administrator",
+ "androidAOSP": "Android (AOSP)",
+ "androidEnterprise": "Android Enterprise",
+ "androidForWork": "Android Enterprise",
+ "androidWorkProfile": "Android enterprise",
+ "common": "Common",
+ "iOS": "iOS/iPadOS",
+ "iosAndAndroidPlatformLabel": "iOS and Android",
+ "iosCommaAndroidPlatformLabel": "iOS, Android",
+ "linux": "Linux",
+ "macOS": "macOS",
+ "unknown": "Unknown",
+ "unsupported": "Unsupported",
+ "windows": "Windows",
+ "windows10": "Windows 10 and later",
+ "windows10CM": "Windows 10 and later (ConfigMgr)",
+ "windows10Holo": "Windows 10 Holographic",
+ "windows10Mobile": "Windows 10 Mobile",
+ "windows10Team": "Windows 10 Team",
+ "windows10X": "Windows 10X",
+ "windows8": "Windows 8.1 and later",
+ "windows8And10": "Windows 8 and 10",
+ "windowsPhone": "Windows Phone 8.1",
+ "windows10AndLater": "Windows 10 and later",
+ "windows10AndWindowsServer": "Windows 10, Windows 11, and Windows Server (ConfigMgr)",
+ "windows10andLaterCM": "Windows 10 and later (ConfigMgr)",
+ "holoLens": "HoloLens",
+ "surfaceHub2": "Surface Hub 2",
+ "surfaceHub2S": "Surface Hub 2S",
+ "windowsPC": "Windows PC"
+ },
+ "AppInformationTab": {
+ "Error": {
+ "multipleChildApps": "A macOS LOB app can only be installed as managed when the uploaded package contains a single app."
+ },
+ "Info": {
+ "AppStoreUrl": {
+ "android": "Enter the link to the app listing in Google Play store. For example:",
+ "androidLink": "https://play.google.com/store/apps/details?id=com.microsoft.office.outlook",
+ "windows": "Enter the link to the app listing in the Microsoft Store. For example:",
+ "windowsLink": "https://www.microsoft.com/en-us/p/microsoft-to-do-lists-tasks-reminders/9nblggh5r558"
+ },
+ "appPackageFile": "A file that contains your app in a format that can be sideloaded on a device. Valid package types include: Android (.apk), iOS (.ipa), macOS (.pkg, .intunemac), Windows (.msi, .appx, .appxbundle, .msix, and .msixbundle).",
+ "applicableDeviceType": "Select the device types that can install this app.",
+ "category": "Categorize the app to make it easier for users to sort and find in Company Portal. You can choose multiple categories.",
+ "categoryLink": "https://docs.microsoft.com/en-us/intune/apps/apps-add#create-and-edit-categories-for-apps",
+ "description": "Help your device users understand what the app is and/or what they can do in the app. This description will be visible to them in Company Portal.",
+ "developer": "The name of the company or Individual that developed the app. This information will be visible to people signed into the admin center.",
+ "displayVersion": "The version of the app. This information will be visible to users in the Company Portal.",
+ "infoUrl": "Link people to a website or documentation that has more information about the app. The information URL will be visible to users in Company Portal.",
+ "isFeatured": "Featured apps are prominently placed in Company Portal so that users can quickly get to them.",
+ "learnMore": "Learn more",
+ "logo": "Upload a logo that's associated with the app. This logo will appear next to the app throughout Company Portal.",
+ "macOSDmgAppPackageFile": "A file that contains your app in a format that can be sideloaded on a device. Valid package type: .dmg.",
+ "minOperatingSystem": "Select the earliest operating system version on which the app can be installed. If you assign the app to a device with an earlier operating system, it will not be installed.",
+ "name": "Add a name for the app. This name will be visible in the Intune apps list and to users in the Company Portal.",
+ "notes": "Add additional notes about the app. Notes will be visible to people signed in to the admin center.",
+ "owner": "The name of the person in your organization who manages licensing or is the point-of-contact for this app. This name will be visible to people signed in to the admin center.",
+ "packageName": "Contact the device manufacturer to get the app's package name. Example package name: com.example.app",
+ "privacyUrl": "Provide a link for people who want to learn more about the app's privacy settings and terms. The privacy URL will be visible to users in Company Portal.",
+ "publisher": "The name of the developer or company that distributes the app. This information will be visible to users in Company Portal.",
+ "selectApp": "Search the App Store for iOS store apps that you want to deploy with Intune.",
+ "useManagedBrowser": "If required, when a user opens the web app, it will open in an Intune-protected browser such as Microsoft Edge or Intune Managed Browser. This setting applies to both iOS and Android devices.",
+ "useManagedBrowserLink": "https://docs.microsoft.com/en-us/intune/apps/app-configuration-managed-browser",
+ "win32AppPackageFile": "A file that contains your app in a format that can be sideloaded on a device. Valid package type: .intunewin."
+ },
+ "descriptionPreview": "Preview",
+ "descriptionRequired": "Description is required.",
+ "editDescription": "Edit Description",
+ "macOSMinOperatingSystemAdditionalInfo": "The minimum operating system for uploading a .pkg file is macOS 10.14. Upload a .intunemac file to select an older minimum operating system.",
+ "name": "App information",
+ "nameForOfficeSuitApp": "App suite information"
+ },
+ "Tooltips": {
+ "PolicySettings": {
+ "TouchId1": {
+ "android": "On Android, you can allow using fingerprint identification instead of a PIN. Users are prompted to provide their fingerprints when they access this app with their work accounts.",
+ "iOS": "On iOS/iPadOS devices, you can allow using fingerprint identification instead of a PIN. Users are prompted to provide their fingerprints when they access this app with their work accounts.",
+ "mac": "On Mac devices, you can allow using fingerprint identification instead of a PIN. Users are prompted to provide their fingerprints when they access this app with their work accounts."
+ },
+ "appSharingFromLevel1": "Select one of the following options to specify the apps that this app can receive data from:",
+ "appSharingFromLevel2": "{0}: Only allow receiving data in org documents or accounts from other policy managed apps",
+ "appSharingFromLevel3": "{0}: Allow receiving data in org documents or accounts from any app",
+ "appSharingFromLevel4": "{0}: Do not allow receiving data in org documents or accounts from any app",
+ "appSharingFromLevel5": "{0}: Allow data transfer from any app and treat all incoming data without an user identity as Org data.",
+ "appSharingToLevel1": "Select one of the following options to specify the apps that this app can send data to:",
+ "appSharingToLevel2": "{0}: Only allow sending org data to other policy managed apps",
+ "appSharingToLevel3": "{0}: Allow sending org data to any app",
+ "appSharingToLevel4": "{0}: Do not allow sending org data to any app",
+ "appSharingToLevel5": "{0}: Only allow transfer only to other policy managed apps and file transfer to other MDM managed apps on enrolled devices",
+ "appSharingToLevel6": "{0}: Allow transfer only to other policy managed apps and filter OS Open-in/Share dialogs to only display policy managed apps",
+ "conditionalEncryption1": "Select {0} to disable app encryption for internal app storage when device encryption is detected on an enrolled device.",
+ "conditionalEncryption2": "Note: Intune can only detect device enrollment with Intune MDM. External app storage will still be encrypted to ensure data cannot be accessed by unmanaged applications.",
+ "contactSyncMac": "If disabled, apps cannot save contacts to the native address book.",
+ "contactsSync": "Choose Block to prevent policy managed apps from saving data to the device's native apps (like Contacts, Calendar and widgets), or to prevent the use of add-ins within the policy managed apps. If you choose Allow, the policy managed app can save data to the native apps or use add-ins, if those features are supported and enabled within the policy managed app.
Apps may provide additional configuration capability with app configuration policies. For more information, see the app's documentation.",
+ "encryptionAndroid1": "For apps that are associated with an Intune mobile application management policy, encryption is provided by Microsoft. Data is encrypted synchronously during file I/O operations according to the setting in the mobile application management policy. Managed apps on Android use AES-128 encryption in CBC mode utilizing the platform cryptography libraries. The encryption method is not FIPS 140-2 compliant. SHA-256 encryption is supported as an explicit instruction using the SigAlg parameter and will only work on devices 4.2 and above. Content on the device storage is always be encrypted.",
+ "encryptionAndroid2": "When you require encryption in your app policy, the end-user is required to setup and use a PIN to access their device. If there is not a PIN set up for device access, the apps will not launch and the end-user will instead see a message, which says, “Your company has required that you must first enable a device PIN to access this application.\"",
+ "encryptionMac1": "For apps that are associated with an Intune mobile application management policy, encryption is provided by Microsoft. Data is encrypted synchronously during file I/O operations according to the setting in the mobile application management policy. Managed apps on Mac use AES-128 encryption in CBC mode utilizing the platform cryptography libraries. The encryption method is not FIPS 140-2 compliant. SHA-256 encryption is supported as an explicit instruction using the SigAlg parameter and will only work on devices 4.2 and above. Content on the device storage is always be encrypted.",
+ "faceId1": "Where applicable, you can allow the use of face identification instead of PIN. Users are prompted to provide face identification when they access this app with their work accounts.",
+ "faceId2": "Select Yes to allow face identification instead of a PIN for app access.",
+ "managementLevelsAndroid1": "Use this option to specify whether this policy applies to Android device administrator devices, Android Enterprise devices, or unmanaged devices.",
+ "managementLevelsAndroid2": "{0}: Unmanaged devices are devices where Intune MDM management has not been detected. This includes 3rd party MDM vendors.",
+ "managementLevelsAndroid3": "{0}: Intune-managed devices using the Android Device Administration API.",
+ "managementLevelsAndroid4": "{0}: Intune-managed devices using Android Enterprise Work Profiles or Android Enterprise Full Device Management.",
+ "managementLevelsIos1": "Use this option to specify whether this policy applies to MDM managed devices or unmanaged devices.",
+ "managementLevelsIos2": "{0}: Unmanaged devices are devices where Intune MDM management has not been detected. This includes 3rd party MDM vendors.",
+ "managementLevelsIos3": "{0}: Managed devices are managed by Intune MDM.",
+ "minAppVersion": "Define the required minimum App version number that a user should have to gain secure access to the app.",
+ "minAppVersionWarning": "Define the recommended minimum App version number that a user should have for secure access to the app.",
+ "minOsVersion": "Define the required minimum OS version number that a user should have to gain secure access to the app.",
+ "minOsVersionWarning": "Define the recommended minimum OS version number that a user should have to gain secure access to the app.",
+ "minPatchVersion": "Define the oldest required Android security patch level a user can have to gain secure access to the app.",
+ "minPatchVersionWarning": "Define the oldest recommended Android security patch level a user can have for secure access to the app.",
+ "minSdkVersion": "Define the required minimum Intune Application Protection Policy SDK version that a user should have to gain secure access to the app.",
+ "requireAppPinDefault": "Select Yes to disable the app PIN when a device lock is detected on an enrolled device.
",
+ "targetAllApps1": "Use this option to target your policy to apps on devices of any management state.",
+ "targetAllApps2": "During policy conflict resolution this setting will be superseded if a user has policy targeted for a specific management state.",
+ "touchId2": "Select {0} to require fingerprint identity instead of a PIN for app access."
+ },
+ "Tap": {
+ "pinResetAfterNumberOfDays": "Specify the number of days that must pass before the user must reset the PIN.",
+ "previousPinBlockCount": "This setting specifies the number of previous PINs that Intune will maintain. Any new PINs must be different from those that Intune is maintaining."
+ },
+ "WipPolicySettings": {
+ "25": "",
+ "allowWindowsSearch": "This will allow Windows Search to continue to search through encrypted data.",
+ "authoritativeIpRanges": "Enable this setting if you want to override Windows auto-detection of IP ranges.",
+ "authoritativeProxyServers": "Enable this setting if you want to override Windows auto-detection of proxy servers.",
+ "checkInput": "Check input for validity",
+ "dataRecoveryCert": "A recovery certificate is a special Encrypting File System (EFS) certificate you can use to recover encrypted files if your encryption key is lost or damaged. You need to create the recovery certificate, and specify it here. More information is here",
+ "enterpriseCloudResources": "Specify cloud resources to be treated as corporate and be protected with Windows Information Protection policy. Multiple resources can be specified by separating individual entries with the '|' character.
If you have a proxy configured in your company, then you can specify the proxy through which traffic to cloud resources you specified will be routed.
URL[,Proxy]|URL[,Proxy]
Without proxy: contoso.sharepoint.com|contoso.visualstudio.com
With proxy: contoso.sharepoint.com,proxy.contoso.com|contoso.visualstudio.com,proxy.contoso.com
",
+ "enterpriseIPv4Ranges": "Specify the IPv4 ranges that form your corporate network. These are used in conjunction with the Enterprise Network Domain Names that you specify to define your corporate network boundary.
This setting is required to have Windows Information Protection enabled.
Multiple ranges can be specified by separating individual entries with a comma.
For example: 3.4.0.1-3.4.255.255,192.168.1.1-192.168.255.255
",
+ "enterpriseIPv6Ranges": "Specify the IPv6 ranges that form your corporate network. These are used in conjunction with the Enterprise Network Domain Names that you specify to define your corporate network boundary.
Multiple ranges can be specified by separating individual entries with a comma.
For example: 2001:4898:dc05::-2001:4898:dc05:ffff:ffff:ffff:ffff:ffff,2a01:110::-2a01:110:7fff:ffff:ffff:ffff:ffff:ffff
",
+ "enterpriseInternalProxyServers": "If you have a proxy configured in your company, then you can specify the proxy through which traffic to cloud resources specified in the Enterprise Cloud Resources settings are to be routed.
Multiple values can be specified by separating individual entries with a semi-colon.
For example: contoso.internalproxy1.com;contoso.internalproxy2.com
",
+ "enterpriseNetworkDomainNames": "Specify the DNS names that form your corporate network. These are used in conjunction with the IP ranges that you specify to define your corporate network boundary. Multiple values can be specified by separating individual entries with a comma.
This setting is required to have Windows Information Protection enabled.
For example: corp.contoso.com,region.contoso.com
",
+ "enterpriseProtectedDomainNames": "Specify the DNS names that form your corporate network. These are used in conjunction with the IP ranges that you specify to define your corporate network boundary. Multiple values can be specified by separating individual entries with a '|'.
This setting is required to have Windows Information Protection enabled.
For example: corp.contoso.com|region.contoso.com
",
+ "enterpriseProxyServers": "If you have external facing proxies in your corporate network, specify them here. When specifying a proxy server address, you should also specify the port through which traffic should be allowed and protected through Windows Information Protection.
Note: This list must not include servers in your Enterprise Internal Proxy Server list. Multiple values can be specified by separating individual entries with a semi-colon.
For example: proxy.contoso.com:80;proxy2.contoso.com:80
",
+ "maxInactivityTime1": "Specifies the maximum amount of time (in minutes) allowed after the device is idle that will cause the device to become PIN or password locked. Users can select any existing timeout value less than the specified maximum time in the Settings app. Note the Lumia 950 and 950XL have a maximum timeout value of 5 minutes, regardless of the value set by this policy.",
+ "maxInactivityTime2": "0 (default) - No timeout is defined. The default of '0' is interpreted as 'No timeout is defined.'",
+ "maxPasswordAttempts1": "This policy has different behaviors on the mobile device and desktop.",
+ "maxPasswordAttempts2": "On a mobile device, when the user reaches the value set by this policy, then the device is wiped.",
+ "maxPasswordAttempts3": "On a desktop, when the user reaches the value set by this policy, it is not wiped.Instead, the desktop is put on BitLocker recovery mode, which makes the data inaccessible but recoverable.If BitLocker is not enabled, then the policy cannot be enforced.",
+ "maxPasswordAttempts4": "Prior to reaching the failed attempts limit, the user is sent to the lock screen and warned that more failed attempts will lock their computer.When the user reaches the limit, the device automatically reboots and shows the BitLocker recovery page.This page prompts the user for the BitLocker recovery key.",
+ "maxPasswordAttempts5": "0 (default) - The device is never wiped after an incorrect PIN or password is entered.",
+ "maxPasswordAttempts6": "Most secure value is 0 if all policy values = 0; otherwise, Min policy value is the most secure value.",
+ "mdmDiscoveryUrl": "Specify the URL for the MDM enrollment endpoint that users who enroll to MDM will use. By default, this is specified for Intune.",
+ "minimumPinLength1": "Integer value that sets the minimum number of characters required for the PIN. Default value is 4. The lowest number you can configure for this policy setting is 4. The largest number you can configure must be less than the number configured in the Maximum PIN length policy setting or the number 127, whichever is the lowest.",
+ "minimumPinLength2": "If you configure this policy setting, the PIN length must be greater than or equal to this number. If you disable or do not configure this policy setting, the PIN length must be greater than or equal to 4.",
+ "name": "The name of this network boundary",
+ "neutralResources": "If you have authentication redirection endpoints in your company, specify those here. The locations specified here are considered to be either personal or corporate depending on the context of the connection prior to the redirection.
Multiple values can be specified by separating individual entries with a comma.
For example: sts.contoso.com,sts.contoso2.com
",
+ "passportForWork1": "Value that sets Windows Hello for Business as a method for signing into Windows.",
+ "passportForWork2": "Default value is true.If you set this policy to false, the user cannot provision Windows Hello for Business except on Azure Active Directory joined mobile phones where provisioning is required.",
+ "pinExpiration": "The largest number you can configure for this policy setting is 730. The lowest number you can configure for this policy setting is 0. If this policy is set to 0, then the user’s PIN will never expire.",
+ "pinHistory1": "The largest number you can configure for this policy setting is 50. The lowest number you can configure for this policy setting is 0. If this policy is set to 0, then storage of previous PINs is not required.",
+ "pinHistory2": "The current PIN of the user is included in the set of PINs associated with the user account. PIN history is not preserved through a PIN reset.",
+ "protectUnderLock": "Protects app content while the device is in a locked state.",
+ "protectionModeBlock": "Block: Blocks enterprise data from leaving protected apps.
",
+ "protectionModeOff": "Off: User is free to relocate data off of protected apps. No actions are logged.
",
+ "protectionModeOverride": "Allow overrides: User is prompted when attempting to relocate data from a protected to a non-protected app. If they choose to override this prompt, the action will be logged.
",
+ "protectionModeSilent": "Silent: User is free to relocate data off of protected apps. These actions are logged.
",
+ "required": "Required",
+ "revokeOnMdmHandoff": "Added in Windows 10, version 1703. This policy controls whether to revoke the WIP keys when a device upgrades from MAM to MDM. If set to “Off”, the keys will not be revoked and the user will continue to have access to protected files after upgrade. This is recommended if the MDM service is configured with the same WIP EnterpriseID as the MAM service.",
+ "revokeOnUnenroll": "This will cause encryption keys to be revoked when a device un-enrolls from this policy.",
+ "rmsTemplateForEdp": "TemplateID GUID to use for RMS encryption. The Azure RMS template allows the IT admin to configure the details about who has access to RMS-protected file and how long they have access.",
+ "showWipIcon": "This will let the user know when they are acting in a corporate context, by overlaying an icon.",
+ "useRmsForWip": "Specifies whether to allow Azure RMS encryption for WIP."
+ },
+ "requireAppPin": "Select Yes to disable the app PIN when a device lock is detected on an enrolled device.
Note: Intune cannot detect device enrollment with a third-party EMM solution on iOS/iPadOS.
"
+ },
+ "Autopilot": {
+ "AssignResourceAccount": {
+ "createNewCommandMenu": "Create new",
+ "createNewResourceAccountInfo": "\nCreate a new resource account during enrollment. The Resource account will be added to the Resource account table right away, but won't be active until the device is enrolled, and the Surface Hub subscription is verified. Learn more about Resource Accounts
\n ",
+ "createNewResourceTitle": "Create new resource account",
+ "deviceNameInvalid": "Device name is in an invalid format",
+ "deviceNameRequired": "A device name is required",
+ "editResourceAccountLabel": "Edit",
+ "selectExistingCommandMenu": "Select existing"
+ },
+ "Device": {
+ "ComputerName": {
+ "validFormat": "Names must be 15 characters or less, and can contain letters (a-z, A-Z), numbers (0-9), and hyphens. Names must not contain only numbers. Names cannot include a blank space."
+ },
+ "Header": {
+ "addressableUserName": "User friendly name",
+ "azureADDevice": "Associated Azure AD device",
+ "batch": "Group tag",
+ "dateAssigned": "Date assigned",
+ "deviceAccountFriendlyName": "Device account friendly name",
+ "deviceAccountPwd": "Device account password",
+ "deviceAccountUpn": "Device account",
+ "deviceDisplayName": "Device name",
+ "deviceName": "Device name",
+ "deviceUseType": "Device-use type",
+ "enrollmentState": "Enrollment state",
+ "intuneDevice": "Associated Intune device",
+ "lastContacted": "Last contacted",
+ "make": "Manufacturer",
+ "model": "Model",
+ "profile": "Assigned profile",
+ "profileStatus": "Profile status",
+ "purchaseOrderId": "Purchase order",
+ "resourceAccount": "Resource account",
+ "serialNumber": "Serial number",
+ "userPrincipalName": "User"
+ },
+ "SurfaceHub": {
+ "friendlyNameRequired": "A friendly name is required",
+ "pwdRequired": "A password is required",
+ "upnRequired": "A device account is required",
+ "upnValidFormat": "Values can contain letters (a-z, A-Z), numbers (0-9), and hyphens. Values cannot include a blank space."
+ }
+ },
+ "DeviceUseType": {
+ "meetingAndPresentation": "Meeting and presentation",
+ "teamCollaboration": "Team collaboration"
+ },
+ "Devices": {
+ "featureDescription": "Windows Autopilot lets you customize the out-of-box experience (OOBE) for your users.",
+ "importErrorStatus": "Some devices were not imported. Click here for more information.",
+ "importPendingStatus": "Import in progress. Elapsed time: {0} min. This process can take up to {1} min."
+ },
+ "DirectoryService": {
+ "activeDirectoryAD": "Hybrid Azure AD joined",
+ "activeDirectoryADLabel": "Hybrid Azure AD width Autopilot",
+ "azureAD": "Azure AD joined",
+ "unknownType": "Unknown Type"
+ },
+ "Filter": {
+ "enrollmentState": "State",
+ "profile": "Profile status"
+ },
+ "OOBE": {
+ "AddressableUserName": {
+ "validateEmpty": "User friendly name cannot be empty."
+ },
+ "ApplyComputerNameTemplate": {
+ "infoBalloon": "Create a naming template to add names to your devices during enrollment.",
+ "label": "Apply device name template"
+ },
+ "ApplyComputerNameTemplateDisabled": {
+ "label": "For Hybrid Azure AD joined type of Autopilot deployment profiles, devices are named using settings specified in Domain Join configuration."
+ },
+ "ComputerNameTemplate": {
+ "emptyValue": "MyCompany-%RAND:4%",
+ "label": "Enter a name",
+ "noDisallowedChars": "Name must only contain alphanumeric characters, hyphens, %SERIAL%, or %RAND:x%",
+ "serialLength": "Cannot use more than 7 characters with %SERIAL%",
+ "validateLessThan15Chars": "Name must be 15 characters or less",
+ "validateNoSpaces": "Computer names cannot contain spaces",
+ "validateNotAllNumbers": "Name must also contain letters and/or hyphens",
+ "validateNotEmpty": "Name cannot be empty",
+ "validateOnlyOneMacro": "Name must only contain one of %SERIAL% or %RAND:x%"
+ },
+ "ConfigureComputerNameTemplate": {
+ "description": "Create a unique name for your devices. Names must be 15 characters or less, and can contain letters (a-z, A-Z), numbers (0-9), and hyphens. Names must not contain only numbers. Names cannot include a blank space. Use the %SERIAL% macro to add a hardware-specific serial number. Alternatively, use the %RAND:x% macro to add a random string of numbers, where x equals the number of digits to add."
+ },
+ "EnableWhiteGlove": {
+ "infoBalloon": "Enable pressing Windows key 5 times to run OOBE without user authentication to enroll device and provision all system-context apps and settings. User-context apps and settings will be delivered when the user signs in.",
+ "label": "Allow pre-provisioned deployment"
+ },
+ "HybridAzureADSkipConnectivityCheck": {
+ "infoBalloon": "The Autopilot Hybrid Azure AD join flow will continue even if it does not establish domain controller connectivity during OOBE.",
+ "label": "Skip AD connectivity check (preview)"
+ },
+ "accountType": "User account type",
+ "accountTypeInfo": "Specify whether users are administrators or standard users on the device. Note that this setting does not apply to Global Administrator or Company Administrator accounts. These accounts cannot be standard users because they have access to all administrative features in Azure AD.",
+ "configOOBEInfo": "\nConfigure the out-of-box experience for your Autopilot devices\n
",
+ "configureDevice": "Deployment mode",
+ "configureDeviceHintForSurfaceHub2": "Autopilot only supports self-deploying mode for Surface Hub 2. This mode doesn't associate the user with the enrolled device, so it doesn't require user credentials.",
+ "configureDeviceHintForWindowsPC": "\n Deployment mode controls if a user needs to provide credentials in order to provision the device.\n
\n \n - \n User-Driven: Devices are associated with the user enrolling the device and user credentials are required to provision the device\n
\n - \n Self-Deploying (preview): Devices are not associated with the user enrolling the device and user credentials are not required to provision the device\n
\n
",
+ "createSurfaceHub2Info": "Configure the Autopilot enrollment settings for your Surface Hub 2 devices. By default Autopilot enables skipping user authentication during OOBE. Learn more about Windows Autopilot for Surface Hub 2.",
+ "createWindowsPCInfo": "\n\nThe following options are automatically enabled for Autopilot devices in self-deploying mode:\n
\n\n - \n Skip Work or Home usage selection\n
\n - \n Skip OEM registration and OneDrive configuration\n
\n - \n Skip user authentication in OOBE\n
\n
",
+ "endUserDevice": "User-Driven",
+ "hideEscapeLink": "Hide change account options",
+ "hideEscapeLinkInfo": "Options to change account and start over with a different account appear, respectively, during initial device setup on the company sign-in page, and on the domain error page. To hide these options, you must configure company branding in Azure Active Directory (requires Windows 10, 1809 or later, or Windows 11).",
+ "info": "Autopilot profile settings define the out-of-box experience users see when starting Windows for the first time. ",
+ "language": "Language (Region)",
+ "languageInfo": "Specify the language and region that will be used.",
+ "licenseAgreement": "Microsoft Software License Terms",
+ "licenseAgreementInfo": "Specify whether to show the EULA to users.",
+ "plugAndForgetDevice": "Self-Deploying (preview)",
+ "plugAndForgetGA": "Self-Deploying",
+ "privacySettingWarning": "The default value for diagnostic data collection has changed for devices running Windows 10, version 1903 and later, or Windows 11. ",
+ "privacySettings": "Privacy settings",
+ "privacySettingsInfo": "Specify whether to show privacy settings to users.",
+ "showCortanaConfigurationPage": "Cortana configuration",
+ "showCortanaConfigurationPageInfo": "Show will enable the Cortana configuration introduction during startup.",
+ "skipEULAWarning": "Important information about hiding license terms",
+ "skipKeyboardSelection": "Automatically configure keyboard",
+ "skipKeyboardSelectionInfo": "If true, skip the keyboard selection page if Language is set.",
+ "subtitle": "Autopilot profiles",
+ "title": "Out-of-box experience (OOBE)",
+ "useOSDefaultLanguage": "Operating system default",
+ "userSelect": "User select"
+ },
+ "Sync": {
+ "lastRequestedLabel": "Last sync request",
+ "lastSuccessfulLabel": "Last successful sync",
+ "syncInProgress": "Sync is in progress. Check back again soon.",
+ "syncInitiated": "Autopilot settings sync initiated.",
+ "syncSettingsTitle": "Sync Autopilot settings"
+ },
+ "Title": {
+ "devices": "Windows Autopilot devices"
+ },
+ "Tooltips": {
+ "addressableUserName": "Greeting name displayed during device setup.",
+ "azureADDevice": "Go to device details for associated device. N/A means that there's no associated device.",
+ "batch": "A string attribute that can be used to identify a group of devices. Intune's group tag field maps to the OrderID attribute on Azure AD devices.",
+ "dateAssigned": "Timestamp of when the profile was assigned to the device.",
+ "deviceAccountFriendlyName": "Device account friendly name for Surface Hub devices",
+ "deviceAccountPwd": "Device account password for Surface Hub devices",
+ "deviceAccountUpn": "Device account email for Surface Hub devices",
+ "deviceDisplayName": "Configure a unique name for a device. This name will be ignored in Hybrid Azure AD joined deployments. Device name still comes from the domain join profile for Hybrid Azure AD devices.",
+ "deviceName": "The name shown when someone tried to discover and connect to the device.",
+ "deviceUseType": " Device would setup based on your choice. You can always change later in settings.\n \n - For meetings and presentations, Windows Hello isn't turned on and data is removed after each session.\n
\n - For team collaboration, Windows Hello is turned on and profiles are saved for quick sign-in
\n
",
+ "enrollmentState": "Specifies if the device has enrolled.",
+ "intuneDevice": "Go to device details for associated device. N/A means that there's no associated device.",
+ "lastContacted": "Timestamp of when the device was last contacted.",
+ "make": "Manufacturer of the selected device.",
+ "model": "Model of the selected device",
+ "profile": "Name of the profile assigned to the device.",
+ "profileStatus": "Specifies if a profile is assigned to the device.",
+ "purchaseOrderId": "Purchase order ID",
+ "resourceAccount": "The device's identity, or user principal name (UPN).",
+ "serialNumber": "Serial number of the selected device.",
+ "userPrincipalName": "User to pre-fill authentication during device setup."
+ },
+ "allDevices": "All devices",
+ "allDevicesAlreadyAssignedError": "An Autopilot profile is already assigned to All Devices.",
+ "assignFailedDescription": "Failed to update assignments for {0}.",
+ "assignFailedTitle": "Failed to update Autopilot profile assignments.",
+ "assignSuccessDescription": "Successfully updated assignments for {0}.",
+ "assignSuccessTitle": "Successfully updated Autopilot profile assignments.",
+ "assignSufaceHub2ProfileNextStep": "Next steps for this deployment",
+ "assignSurfaceHub2ProfileToDeviceGroup": "1. Assign this profile to at least one device group",
+ "assignSurfaceHub2ProfileToResourceAccount": "2. Assign a resource account to each Surface Hub device to which you deploy this profile",
+ "assignedDevicesCount": "Assigned devices",
+ "assignedDevicesResourceAccountDescription": "To deploy this profile to a device, you must assign the device a Resource account. Select one device at a time to assign an existing Resource account or to create a new one. Learn more about Resource Accounts
",
+ "assignedDevicesResourceAccountStatusBarMessage": "This table only lists the Surface Hub 2 devices that have been assigned this profile.",
+ "assigningDescription": "Updating assignments for {0}.",
+ "assigningTitle": "Updating Autopilot profile assignments.",
+ "autoremediationContext": "We've detected a hardware change on this device. We're trying to automatically register the new hardware. You don't need to do anything now; the status will be updated at the next check in with the result. Learn more about resetting the profile.",
+ "autoremediationTitle": "Device {0} has a fix pending",
+ "cannotDeleteMessage": "This profile is assigned to groups. You must unassign all groups from this profile before you can delete it.",
+ "cannotDeleteTitle": "Cannot delete {0}",
+ "createdDateTime": "Created",
+ "deleteMessage": "If you delete this Autopilot profile, any devices assigned to this profile will display Unassigned.",
+ "deleteMessageWithPolicySet": "{0} is included in one more more policy sets. If you delete {0}, you'll no longer be able to assign it via these policy sets.",
+ "deleteTitle": "Are you sure you want to delete this profile?",
+ "description": "Description",
+ "deviceType": "Device type",
+ "deviceUse": "Device use",
+ "directoryServiceHintForSurfaceHub2": " \n Autopilot only supports Azure AD Joined for Surface Hub 2 devices. Specify how devices join Active Directory (AD) in your organization.\n
\n \n - \n Azure AD joined: Cloud-only without an on-premises Windows Server Active Directory.\n
\n
\n ",
+ "directoryServiceHintForWindowsPC": "\n \n Specify how devices join Active Directory (AD) in your organization:\n
\n \n - \n Azure AD joined: Cloud-only without an on-premises Windows Server Active Directory\n
\n
\n ",
+ "getAssignedDevicesCountError": "An error occurred while fetching the assigned devices count.",
+ "getAssignmentsError": "An error occurred while fetching Autopilot profile assignments.",
+ "harvestDeviceId": "Convert all targeted devices to Autopilot",
+ "harvestDeviceIdDescription": "By default, this profile can only be applied to Autopilot devices synced from the Autopilot service.",
+ "harvestDeviceIdInfo": "\n Select Yes to register all targeted devices to Autopilot if they are not already registered. The next time registered devices go through the Windows Out of Box Experience (OOBE), they will go through the assigned Autopilot scenario.\n
\n Please note that certain Autopilot scenarios require specific minimum builds of Windows. Please make sure your device has the required minimum build to go through the scenario.\n
\n Removing this profile won’t remove affected devices from Autopilot. To remove a device from Autopilot, use the Windows Autopilot Devices view.\n ",
+ "harvestDeviceIdWarning": "After conversion, Autopilot devices can only be reverted by deleting them from the Autopilot devices list.",
+ "holoLensCommandMenu": "HoloLens",
+ "info": "Windows Autopilot deployment profiles lets you customize the out-of-box experience for your devices.",
+ "invalidProfileNameMessage": "Character \"{0}\" is not allowed",
+ "joinTypeLabel": "Join Azure AD as",
+ "lastModifiedDateTime": "Last modified:",
+ "manualRemediationContext": "We've detected a hardware change on this device. It won't automatically receive an Autopilot profile when it's reset unless you register the device again. Learn more about resetting the profile.",
+ "manualRemediationTitle": "Device {0} needs your attention",
+ "name": "Name",
+ "noAutopilotProfile": "No Autopilot profiles",
+ "notEnoughPermissionAssignedError": "You don't have enough permissions to assign this profile to one or more of your selected groups. Please contact your administrator.",
+ "profile": "profile",
+ "resourceAccountStatusBarMessage": "A Resource Account is required for each Surface Hub 2 device to which this profile is deployed. Click to learn more.",
+ "selectServices": "Select directory service devices will join",
+ "surfaceHub2CommandMenu": "Surface Hub 2",
+ "surfaceHub2SCommandMenu": "Surface Hub 2S",
+ "userAffinityLabel": "Deployment mode",
+ "windowsPCCommandMenu": "Windows PC",
+ "directoryServiceLabel": "Join to Azure AD as"
},
- "CategoryDescription": {
- "androidGeneralApplicationRestrictions": "Use these settings to stay informed about which users install apps that are not approved for use in your company. Select the type of restricted app list:
\n Prohibited apps - A list of apps that you want to be informed about when users install them.
\n Approved apps - A list of apps that are approved for use in your company. When users install an app that is not in this list, you will be informed.
\n ",
- "androidZebraMxZebraMx": "Configure Zebra devices by uploading a MX profile in XML format.",
- "iosDeviceFeaturesAirprint": "Use these settings to configure iOS devices to automatically connect to AirPrint compatible printers on your network. You'll need the IP address and resource path of your printers.",
- "iosDeviceFeaturesExtensibleSingleSignOn": "Configure an app extension that enables single sign-on (SSO) for devices running iOS 13.0 or later.",
- "iosDeviceFeaturesHomeScreenLayout": "Configure the layout for the dock and Home Screens on iOS devices. Certain devices may have limits to how many items can be displayed.",
- "iosDeviceFeaturesIOSWallpaper": "Display an image that will appear on the Home Screen and/or the lock screen of iOS devices.\n To display a unique image in each location, create one profile with the lock screen image, and one with the Home Screen image.\n Then assign both profiles to your users.\n
\n \n - Max file size: 750 KB
\n - File type: PNG, JPG or JPEG
\n
\n ",
- "iosDeviceFeaturesNotifications": "Specify notification settings for apps. Supports iOS 9.3 and later.",
- "iosDeviceFeaturesSharedDevice": "Specify optional text displayed on the locked screen. It is supported on iOS 9.3 and later. Learn More",
- "iosGeneralApplicationRestrictions": "Use these settings to stay informed about which users install apps that are not approved for use in your company. Select the type of restricted app list:
\n Prohibited apps - A list of apps that you want to be informed about when users install them.
\n Approved apps - A list of apps that are approved for use in your company. When users install an app that is not in this list, you will be informed.
\n ",
- "iosGeneralApplicationVisibility": "Use the show apps list to specify the iOS apps that user can view or launch. Use the hidden apps list to specify the iOS apps that user cannot view or launch.",
- "iosGeneralAutonomousSingleAppMode": "Apps you add to this list and assign to a device can lock the device to run only that app once launched, or lock the device while a certain action is running (for example taking a test). Once the action is complete, or you remove the restriction, the device returns to its normal state.",
- "iosGeneralKiosk": "Kiosk mode locks various settings into a device, or specifies a single app that can be run on a device. This can be useful in environments like a retail store where you want a device to run only a single demo app.",
- "macDeviceFeaturesAirprint": "Use these settings to configure macOS devices to automatically connect to AirPrint compatible printers on your network. You'll need the IP address and resource path of your printers.",
- "macDeviceFeaturesAssociatedDomains": "Configure associated domains to share data and sign-in credentials between your org’s apps and websites. This profile can be applied to devices running macOS 10.15 or later.",
- "macDeviceFeaturesExtensibleSingleSignOn": "Configure an app extension that enables single sign-on (SSO) for devices running macOS 10.15 or later.",
- "macDeviceFeaturesLoginItems": "Choose which apps, files, and folders open when users log in to their devices. If you don't want users to change how the selected apps open, you can hide the app from the user configuration.",
- "macDeviceFeaturesLoginWindow": "Configure the appearance of the macOS login screen and the functions that are available to users before and after they log in.",
- "macExtensionsKernelExtensions": "Use these settings to configure kernel extension policy on macOS devices running 10.13.2 or later.",
- "macGeneralDomains": "Emails that the user sends or receives which don't match the domains you specify here will be marked as untrusted.",
- "windows10EndpointProtectionApplicationGuard": "While using Microsoft Edge, Microsoft Defender Application Guard protects your environment from sites that haven’t been defined as trusted by your organization. When users visit sites that aren’t listed in your isolated network boundary, the sites will be opened in a virtual browsing session in Hyper-V. Trusted sites are defined by a network boundary, which can be configured in Device Configuration. Note this feature is only available for devices running 64-bit Windows 10 or later.",
- "windows10EndpointProtectionCredentialGuard": "Enabling Credential Guard will enable the following required settings:\n
\n \n - Enable Virtualization-based Security: Turns on virtualization-based security (VBS) at next reboot. Virtualization-based security uses the Windows Hypervisor to provide support for security services.
\n
\n - Secure Boot with Direct Memory Access: Turns on VBS with Secure Boot and direct memory access (DMA).
\n
\n ",
- "windows10EndpointProtectionDeviceGuard": "Choose additional apps that either need to be audited by, or can be trusted to run by Microsoft Defender Application Control. Windows components and all apps from Windows store are automatically trusted to run.
\n Applications will not be blocked when running in “audit only” mode. “Audit only” mode logs all events in local client logs.\n ",
- "windows10GeneralPrivacyPerApp": "Add apps that should have a different privacy behavior from what you defined in “Default privacy”.",
- "windows10NetworkBoundaryNetworkBoundary": "The network boundary is the list of enterprise resources, such as cloud-hosted domain and IP address ranges for computers that are on the enterprise network. Define network boundaries to apply policies to protect data that resides in these locations.",
- "windowsHealthMonitoring": "Configure the Windows health monitoring policy.",
- "windowsPhoneGeneralApplicationRestrictions": "Windows Phone can block users from installing or launching apps specified in the prohibited apps list, or apps not specified in the approved apps list. All managed apps must be added to the approved list."
- },
"MinimumOperatingSystem": {
"Android": {
"v10": "Android 10.0",
@@ -2435,6 +1154,304 @@
"excludedGroups": "Excluded Groups",
"licenseType": "License type"
},
+ "TAP": {
+ "AccessRequirements": {
+ "infoText": "Configure the PIN and credential requirements that users must meet to access apps in a work context."
+ },
+ "DataProtection": {
+ "infoText": "This group includes the data loss prevention (DLP) controls, like cut, copy, paste, and save-as restrictions. These settings determine how users interact with data in the apps."
+ },
+ "DeviceTypes": {
+ "selectOne": "Select at least one device type."
+ },
+ "TargetedApps": {
+ "TargetToAll": {
+ "label": "Target to apps on all device types"
+ },
+ "infoText": "Choose how you want to apply this policy to apps on different devices. Then add at least one app.",
+ "selectOne": "Select at least one app to create a policy."
+ }
+ },
+ "AssignmentAction": {
+ "exclude": "Excluded",
+ "include": "Included",
+ "includeAllDevicesVirtualGroup": "Included",
+ "includeAllUsersVirtualGroup": "Included"
+ },
+ "AppType": {
+ "androidEnterpriseSystemApp": "Android Enterprise system app",
+ "androidForWorkApp": "Managed Google Play store app",
+ "androidLobApp": "Android line-of-business app",
+ "androidStoreApp": "Android store app",
+ "builtInAndroid": "Built-In Android app",
+ "builtInApp": "Built-In app",
+ "builtInIos": "Built-In iOS app",
+ "default": "",
+ "iosLobApp": "iOS line-of-business app",
+ "iosStoreApp": "iOS store app",
+ "iosVppApp": "iOS volume purchase program app",
+ "lineOfBusinessApp": "Line-of-business app",
+ "macOSDmgApp": "macOS app (DMG)",
+ "macOSEdgeApp": "Microsoft Edge (macOS)",
+ "macOSLobApp": "macOS line-of-business app",
+ "macOSMdatpApp": "Microsoft Defender ATP (macOS)",
+ "macOSOfficeSuiteApp": "Microsoft 365 Apps (macOS)",
+ "macOsVppApp": "macOS volume purchase program app",
+ "managedAndroidLobApp": "Managed Android line-of-business app",
+ "managedAndroidStoreApp": "Managed Android store app",
+ "managedGooglePlayApp": "Managed Google Play store app",
+ "managedGooglePlayPrivateApp": "Managed Google Play private app",
+ "managedGooglePlayWebApp": "Managed Google Play web link",
+ "managedIosLobApp": "Managed iOS line-of-business app",
+ "managedIosStoreApp": "Managed iOS store app",
+ "microsoftStoreForBusinessApp": "Microsoft Store for Business app",
+ "microsoftStoreForBusinessReleaseManagedApp": "Microsoft Store for Business",
+ "officeSuiteApp": "Microsoft 365 Apps (Windows 10 and later)",
+ "webApp": "Web link",
+ "windowsAppXLobApp": "Windows AppX line-of-business app",
+ "windowsClassicApp": "Windows app (Win32)",
+ "windowsEdgeApp": "Microsoft Edge (Windows 10 and later)",
+ "windowsMobileMsiLobApp": "Windows MSI line-of-business app",
+ "windowsPhone81AppXBundleLobApp": "Windows Phone 8.1 AppX line-of-business app",
+ "windowsPhone81AppXLobApp": "Windows Phone 8.1 AppX line-of-business app",
+ "windowsPhone81StoreApp": "Windows Phone 8.1 store app",
+ "windowsPhoneXapLobApp": "Windows Phone XAP line-of-business app",
+ "windowsStoreApp": "Microsoft Store app",
+ "windowsUniversalAppXLobApp": "Windows Universal AppX line-of-business app",
+ "windowsUniversalLobApp": "Windows Universal line-of-business app"
+ },
+ "TAPSettings": {
+ "AllowedDataIngestionLocations": {
+ "label": "Allow users to open data from selected services",
+ "tooltip": "Select the application storage services users can open data from. All other services are blocked. Selecting no services will prevent users from opening data."
+ },
+ "AndroidBackup": {
+ "label": "Backup org data to Android backup services",
+ "tooltip": "Select {0} to prevent backup of org data to Android backup services. \nSelect {1} to permit backup of org data to Android backup services. \nPersonal or unmanaged data is not affected."
+ },
+ "AndroidBiometricAuthentication": {
+ "label": "Biometrics instead of PIN for access",
+ "tooltip": "Choose which android authentication methods people can use, if any, in place of an app PIN."
+ },
+ "AndroidFingerprint": {
+ "label": "Fingerprint instead of PIN for access (Android 6.0+)",
+ "tooltip": "Android OS uses fingerprint scans to authenticate Android-device users. This feature supports the native biometric controls on Android devices. OEM-specific biometric settings, like Samsung Pass, are not supported. If allowed, native biometric controls must be used to access the app on a capable device."
+ },
+ "AndroidOverrideFingerprint": {
+ "label": "Override fingerprint with PIN after timeout"
+ },
+ "AppPIN": {
+ "label": "App PIN when device PIN is set",
+ "tooltip": "If not required, an app PIN does not need to be used to access the app if the device PIN is set on an MDM enrolled device.
\n\nNote: Intune cannot detect device enrollment with a third-party EMM solution on Android."
+ },
+ "BlockDataIngestionIntoOrganizationDocuments": {
+ "label": "Open data into Org documents",
+ "tooltip1": "Select Block to disable the use of the Open option or other options to share data between accounts in this app. Select Allow if you want to allow the use of Open and other options to share data between accounts in this app.",
+ "tooltip2": "When set to Block, you can configure the following setting, Allow user to open data from selected services, to specify which services are allowed for Org data locations.",
+ "tooltip3": "Note: This setting is only enforced if the setting \"Receive data from other apps\" is set to \"Policy managed apps\".
\nNote: This setting does not apply to all applications. For more information see {0}.",
+ "tooltip4": "Note: This setting is only enforced if the setting \"Receive data from other apps\" is set to \"Policy managed apps\".
\nNote: This setting does not apply to all applications. For more information see {0} or {0}."
+ },
+ "ConnectToVpnOnLaunch": {
+ "label": "Start Microsoft Tunnel connection on app-launch",
+ "tooltip": "Allow connection to VPN when app is launch"
+ },
+ "CredentialsForAccess": {
+ "label": "Work or school account credentials for access",
+ "tooltip": "If required, work or school credentials must be used to access the policy-managed app. If PIN or biometric methods also required for access to the app, the work or school account credentials will be required on top of those prompts."
+ },
+ "CustomBrowserDisplayName": {
+ "label": "Unmanaged Browser Name",
+ "tooltip": "Enter the application name for browser associated with the \"Unmanaged Browser ID\". This name will be displayed to users if the specified browser is not installed."
+ },
+ "CustomBrowserPackageId": {
+ "label": "Unmanaged Browser ID",
+ "tooltip": "Enter the application ID for a single browser. Web content (http/s) from policy managed applications will open in the specified browser."
+ },
+ "CustomBrowserProtocol": {
+ "label": "Unmanaged browser protocol",
+ "tooltip": "Enter the protocol for a single unmanaged browser. Web content (http/s) from policy managed applications will open in any app that supports this protocol.
\n \nNote: Include only the protocol prefix. If your browser requires links of the form \"mybrowser://www.microsoft.com\", enter \"mybrowser\".
"
+ },
+ "CustomDialerAppDisplayName": {
+ "label": "Dialer App Name"
+ },
+ "CustomDialerAppPackageId": {
+ "label": "Dialer App Package ID"
+ },
+ "CustomDialerAppProtocol": {
+ "label": "Dialer App URL Scheme"
+ },
+ "Cutcopypaste": {
+ "label": "Restrict cut, copy, and paste between other apps",
+ "tooltip": "Cut, copy, and paste data between your app and other approved apps installed on the device. Choose to block these actions completely between apps, allow these actions for use with any app, or restrict use to apps that your organization manages.
\n\nPolicy-managed apps with paste in gives you the option to accept incoming content pasted from another app. However, it blocks users from sharing content outwardly, unless sharing with a managed app.
"
+ },
+ "DialerRestrictionLevel": {
+ "iosTooltip": "Typically, when a user selects a hyperlinked phone number in an app, a dialer app will open with the phone number prepopulated and ready to call. For this setting, choose how to handle this type of content transfer when it's initiated from a policy-managed app. Additional steps may be necessary in order for this setting to take effect. First, verify that tel and telprompt have been removed from the Select apps to exempt list. Then, ensure the application is using a newer version of Intune SDK (Version 12.7.0+).",
+ "label": "Transfer telecommunication data to",
+ "tooltip": "Typically, when a user selects a hyperlinked phone number in an app, a dialer app will open with the phone number prepopulated and ready to call. For this setting, choose how to handle this type of content transfer when it's initiated from a policy-managed app."
+ },
+ "EncryptData": {
+ "label": "Encrypt org data",
+ "link": "https://docs.microsoft.com/en-us/intune/app-protection-policy-settings-android#data-relocation-settings",
+ "tooltip": "Select {0} to enforce encrypting org data with Intune app layer encryption.\n
\nSelect {1} to not enforce encrypting org data with Intune app layer encryption.\n\n
\nNote: For more information on Intune app layer encryption, see {2}."
+ },
+ "EncryptDataAndroid": {
+ "tooltip": "Choose Require to enable encryption of work or school data in this app. Intune uses an OpenSSL, 256-bit AES encryption scheme along with the Android Keystore system to securely encrypt app data. Data is encrypted synchronously during file I/O tasks. Content on the device storage is always encrypted. The SDK will continue to provide support of 128-bit keys for compatibility with content and apps that use older SDK versions.
\n\nThe encryption method is FIPS 140-2 compliant.
"
+ },
+ "EncryptDataIos": {
+ "tooltip1": "Choose Require to enable encryption of work or school data in this app. Intune enforces iOS/iPadOS device encryption to protect app data while the device is locked. Applications may optionally encrypt app data using Intune APP SDK encryption. Intune APP SDK uses iOS/iPadOS cryptography methods to apply 128-bit AES encryption to app data.",
+ "tooltip2": "When you enable this setting, the user may be required to set up and use a PIN to access their device. If there's no device PIN and encryption is required, the user is prompted to set a PIN with the message \"Your organization has required you to first enable a device PIN to access this app.\"",
+ "tooltip3": "Go to the official Apple documentation to see which iOS encryption modules are FIPS 140-2 compliant or pending FIPS 140-2 compliance."
+ },
+ "EncryptDataOnEnrolledDevices": {
+ "label": "Encrypt org data on enrolled devices",
+ "tooltip": "Select {0} to enforce encrypting org data with Intune app layer encryption on all devices.
\n\nSelect {1} to not enforce encrypting org data with Intune app layer encryption on enrolled devices."
+ },
+ "IOSBackup": {
+ "label": "Backup org data to iTunes and iCloud backups",
+ "tooltip": "Select {0} to prevent backup of org data to iTunes or iCloud. \nSelect {1} to permit backup of org data to iTunes or iCloud. \nPersonal or unmanaged data is not affected."
+ },
+ "IOSFaceID": {
+ "label": "Face ID instead of PIN for access (iOS 11+/iPadOS)",
+ "tooltip": "Face ID uses facial recognition technology to authenticate users on iOS/iPadOS devices. Intune calls the LocalAuthentication API to authenticate users using Face ID. If allowed, Face ID must be used to access the app on a Face ID capable device."
+ },
+ "IOSOverrideTouchId": {
+ "label": "Override biometrics with PIN after timeout"
+ },
+ "IOSTouchId": {
+ "label": "Touch ID instead of PIN for access (iOS 8+/iPadOS)",
+ "tooltip": "Touch ID uses fingerprint recognition technology to authenticate users on iOS devices. Intune calls the LocalAuthentication API to authenticate users using Touch ID. If allowed, Touch ID must be used to access the app on a Touch ID capable device."
+ },
+ "NotificationRestriction": {
+ "label": "Org data notifications",
+ "tooltip": "Select one of the following options to specify how notifications for org accounts are shown for this app and any connected devices such as wearables:
\n{0}: Do not share notifications.
\n{1}: Do not share org data in notifications. If not supported by the application, notifications are blocked.
\n{2}: Share all notifications.
\n Android only:\n Note: This setting does not apply to all applications. For more information see {3}
\n \n iOS only:\nNote: This setting does not apply to all applications. For more information see {4}
"
+ },
+ "OpenLinksManagedBrowser": {
+ "label": "Restrict web content transfer with other apps",
+ "tooltip": "Select one of the following options to specify the apps that this app can open web content in:
\nEdge: Allow web content to open only in Edge
\nUnmanaged browser: Allow web content to open only in the unmanaged browser defined by \"Unmanaged browser protocol\" setting
\nAny app: Allow web links in any app
"
+ },
+ "OverrideBiometric": {
+ "tooltip": "If required, depending on the timeout (minutes of inactivity), a PIN prompt will override biometric prompts. If this timeout value is not met, the biometric prompt will continue to show. This timeout value should be greater than the value specified under 'Recheck the access requirements after (minutes of inactivity)'. "
+ },
+ "PinAccess": {
+ "label": "PIN for access",
+ "tooltip": "If required, a PIN must be used to access the policy-managed app. Users must create an access PIN the first time that they open the app from a work or school account."
+ },
+ "PinLength": {
+ "label": "Select minimum PIN length",
+ "tooltip": "This setting specifies the minimum number of digits of a PIN."
+ },
+ "PinType": {
+ "label": "PIN type",
+ "tooltip": "Numeric PINs are made up of all numbers. Passcodes are made up of alphanumeric characters and special characters. "
+ },
+ "Printing": {
+ "label": "Printing org data",
+ "tooltip": "If blocked, the app cannot print protected data."
+ },
+ "ReceiveData": {
+ "label": "Receive data from other apps",
+ "tooltip": "Select one of the following options to specify the apps that this app can receive data from:
\n\nNone: Do not allow receiving data in org documents or accounts from any app
\n\nPolicy managed apps: Only allow receiving data in org documents or accounts from other policy managed apps\n
\nAny app with incoming org data: Allow receiving data in org documents or accounts from from any app and treat all incoming data without an user account as org data
\n\nAll apps: Allow receiving data in org documents or accounts from any app"
+ },
+ "RecheckAccessAfter": {
+ "label": "Recheck the access requirements after (minutes of inactivity)\n\n",
+ "tooltip": "If the policy-managed app is inactive for longer than the number of minutes of inactivity specified, the app will prompt the access requirements (i.e PIN, conditional launch settings) to be rechecked after the app is launched."
+ },
+ "RestrictKeyboards": {
+ "duplicatePackageError": "The package ID must be unique.",
+ "invalidPackageError": "Invalid package ID",
+ "label": "Approved keyboards",
+ "select": "Select keyboards to approve",
+ "subtitle": "Add all keyboards and input methods that users are allowed to use with targeted apps. Enter the keyboard name as you would like it to appear to the end user.",
+ "title": "Add approved keyboards",
+ "toolTip": "Select Require and then specify a list of approved keyboards for this policy. Learn more."
+ },
+ "SaveData": {
+ "label": "Save copies of org data",
+ "tooltip": "Select {0} to prevent saving a copy of org data to a new location, other than the selected storage services, using \"Save As\".\n Select {1} to permit saving a copy of org data to a new location using \"Save As\".
\n\n\nNote: This setting does not apply to all applications. For more information see {2}.\n"
+ },
+ "SaveDataToSelected": {
+ "label": "Allow user to save copies to selected services",
+ "tooltip": "Select the storage services users can save copies of org data to. All other services are blocked. Selecting no services will prevent users from saving a copy of org data."
+ },
+ "ScreenCaptureAndAndroidAssistant": {
+ "label": "Screen capture and Google Assistant\n",
+ "tooltip": "If blocked, both screen capture and Google Assistant app scanning capabilities will be disabled when using the policy-managed app. This feature supports the usual Google Assistant app. Third party assistants using Google's Assist API are not supported. Choosing Block will also blur the App-Switcher preview image when using the app with a work or school account."
+ },
+ "SendData": {
+ "label": "Send org data to other apps",
+ "tooltip": "Select one of the following options to specify the apps that this app can send org data to:
\n\n\nNone: Do not allow sending org data to any app
\n\n\nPolicy managed apps: Only allow sending org data to other policy managed apps
\n\n\nPolicy managed apps with OS sharing: Only allow sending org data to other policy managed apps and sending org documents to other MDM managed apps on enrolled devices
\n\n\nPolicy managed apps with Open-In/Share filtering: Only allow sending org data to other policy managed apps and filter OS Open-in/Share dialogs to only display policy managed apps\n
\n\nAll apps: Allow sending org data to any app"
+ },
+ "SimplePin": {
+ "label": "Simple PIN",
+ "tooltip": "If blocked, users may not create a simple PIN. A simple PIN is a string of consecutive or repetitive digits, such as 1234, ABCD, or 1111. Please note that blocking simple PIN of type 'Passcode' requires the passcode to have at least one number, one letter, and one special character."
+ },
+ "SyncContacts": {
+ "label": "Sync policy managed app data with native apps or add-ins"
+ },
+ "ThirdPartyKeyboards": {
+ "infoBox": "Keyboard restrictions will apply to all areas of an app. Personal accounts for apps that support multiple identities will be affected by this restriction. Learn more.",
+ "label": "Third party keyboards"
+ },
+ "Timeout": {
+ "label": "Timeout (minutes of inactivity)"
+ },
+ "Tap": {
+ "numberOfDays": "Number of days",
+ "pinResetAfterNumberOfDays": "PIN reset after number of days",
+ "previousPinBlockCount": "Select number of previous PIN values to maintain"
+ }
+ },
+ "ScheduledAction": {
+ "Form": {
+ "editBlockActionInfo": "One block action is required for all compliance policies.",
+ "graceperiod": "Schedule (days after noncompliance)",
+ "graceperiodInfo": "Specify the number of days after noncompliance after which this action should be triggered for the user's device",
+ "subtitle": "Specify action parameters",
+ "title": "Action parameters"
+ },
+ "List": {
+ "gracePeriodDay": "{0} day after noncompliance",
+ "gracePeriodDays": "{0} days after noncompliance",
+ "gracePeriodHour": "{0} hour after noncompliance",
+ "gracePeriodHours": "{0} hours after noncompliance",
+ "gracePeriodMinute": "{0} minute after noncompliance",
+ "gracePeriodMinutes": "{0} minutes after noncompliance",
+ "immediately": "Immediately",
+ "schedule": "Schedule",
+ "scheduleInfoBalloon": "Days after noncompliance",
+ "subtitle": "Specify the sequence of actions on noncompliant devices",
+ "title": "Actions"
+ },
+ "Notification": {
+ "additionalEmailLabel": "Others",
+ "additionalRecipients": "Additional recipients (via email)",
+ "additionalRecipientsBladeTitle": "Select additional recipients",
+ "emailAddressPrompt": "Enter email addresses (separated by commas)",
+ "invalidEmail": "Invalid email address",
+ "messageTemplate": "Message template",
+ "noneSelected": "None selected",
+ "notSelected": "Not selected",
+ "numSelected": "{0} selected",
+ "selected": "Selected"
+ },
+ "block": "Mark device noncompliant",
+ "lockDevice": "Lock device (local action)",
+ "lockDeviceWithPasscode": "Lock device (local action)",
+ "noAction": "No action",
+ "noActionRow": "No actions, select 'Add' to add an action",
+ "pushNotification": "Send push notification to end user",
+ "remoteLock": "Remotely lock the noncompliant device",
+ "removeSourceAccessProfile": "Remove source access profile",
+ "retire": "Retire the noncompliant device",
+ "wipe": "Wipe",
+ "emailNotification": "Send email to end user"
+ },
+ "InstallIntent": {
+ "available": "Available for enrolled devices",
+ "availableWithoutEnrollment": "Available with or without enrollment",
+ "required": "Required",
+ "uninstall": "Uninstall"
+ },
"EnrollmentStatusScreen": {
"Apps": {
"managedApps": "Managed apps",
@@ -2466,142 +1483,61 @@
"resetToggle": "Allow users to reset device if installation error occurs",
"timeout": "Show an error when installation takes longer than specified number of minutes"
},
- "EnrollmentType": {
- "devicesWithEnrollment": "Managed devices",
- "devicesWithoutEnrollment": "Managed apps"
- },
- "ApplicabilityRules": {
- "GridLabel": {
- "property": "Property",
- "rule": "Rule",
- "ruleDetails": "Rule Details",
- "value": "Value"
- },
- "assignIf": "Assign profile if",
- "deleteWarning": "This will delete the selected Applicability Rule",
- "dontAssignIf": "Don't assign profile if",
- "editionDisplayText": "{0} {1}",
- "editionDisplayTextMore": "and {0} more",
- "instructions": "Specify how to apply this profile within an assigned group. Intune will only apply the profile to devices that meet the combined criteria of these rules.",
- "maxText": "Max",
- "minText": "Min",
- "noActionRow": "No Applicability Rules Specified",
- "oSVersion": "e.g. 1.2.3.4",
- "toText": "to",
- "windows10Education": "Windows 10/11 Education",
- "windows10EducationN": "Windows 10/11 Education N",
- "windows10Enterprise": "Windows 10/11 Enterprise",
- "windows10EnterpriseN": "Windows 10/11 Enterprise N",
- "windows10HolographicEnterprise": "Windows 10 Holographic for Business",
- "windows10Home": "Windows 10/11 Home",
- "windows10HomeChina": "Windows 10 Home China",
- "windows10HomeN": "Windows 10/11 Home N",
- "windows10HomeSingleLanguage": "Windows 10/11 Home Single Language",
- "windows10IoTCore": "Windows 10 IoT Core",
- "windows10IoTCoreCommercial": "Windows 10 IoT Core Commercial",
- "windows10Mobile": "Windows 10 Mobile",
- "windows10MobileEnterprise": "Windows 10 Mobile Enterprise",
- "windows10OsEdition": "OS edition",
- "windows10OsVersion": "OS version",
- "windows10Professional": "Windows 10/11 Professional",
- "windows10ProfessionalEducation": "Windows 10/11 Professional Education",
- "windows10ProfessionalEducationN": "Windows 10/11 Professional Education N",
- "windows10ProfessionalN": "Windows 10 Professional N",
- "windows10ProfessionalWorkstation": "Windows 10/11 Professional Workstation",
- "windows10ProfessionalWorkstationN": "Windows 10/11 Professional Workstation N"
+ "Devices": {
+ "General": {
+ "android": "Android"
+ },
+ "aOSP": "Android open source project",
+ "android": "Android device administrator",
+ "androidWorkProfile": "Android Enterprise (work profile)",
+ "iOS": "iOS/iPadOS",
+ "mac": "macOS",
+ "windows": "Windows (MDM)",
+ "windows10": "Windows 10 and later",
+ "windowsHomeSku": "Windows Home Sku",
+ "windowsMobile": "Windows Mobile"
+ },
+ "AppInfoBalloonText": {
+ "Certificate": {
+ "customSubjectName": "CN={{UserName}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US\nor\nCN={{AAD_Device_ID}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US",
+ "keySize": "Select the number of bits contained in the key.",
+ "keyUsage": "Specify the cryptographic action that is required to exchange the certificate’s public key.",
+ "renewalThreshold": "Enter the percentage (between 1 and 99 percent) of remaining certificate lifetime that is allowed before a device can request renewal of the certificate. The recommended amount in Intune is 20%. (1-99)",
+ "rootCert": "Choose a previously configured and assigned root CA certificate profile. The CA certificate must match the root certificate of the CA that is issuing the certificate for this profile (the one you are currently configuring).",
+ "scepServerUrl": "Enter a URL for the NDES Server that issues certificates through SCEP (Must be HTTPS). e.g. https://contoso.com/certsrv/mscep/mscep.dll",
+ "scepServerUrls": "Add one or more URLs for the NDES Server that issues certificates through SCEP (Must be HTTPS). e.g. https://contoso.com/certsrv/mscep/mscep.dll",
+ "subjectAlternativeName": "Subject alternative name",
+ "subjectNameFormat": "Subject name format",
+ "validityPeriod": "The amount of time remaining before the certificate expires. Enter a value that is equal to or lower than the validity period shown in the certificate template. Default is set at one year."
+ },
+ "appInstallContext": "This specifies the install context to be associated with this app. For dual mode apps, select the desired context for this app. For all other apps, this is pre-selected based on the package and cannot be modified.",
+ "autoUpdateMode": "Configure the update priority for the app. Select Default to require the device to be connected to WiFi, to be charging, and not to be actively in use before updating the app. Select High Priority to update the app as soon as the developer has published the app, regardless of charge status, WiFi capability, or end user activity on the device. Select Postponed to forgo app updates for up to 90 days. High priority and postponed will only take effect on DO devices.",
+ "configurationSettingsFormat": "Configuration settings format text",
+ "ignoreVersionDetection": "Set this to “Yes” for apps that are automatically updated by the app developer (such as Google Chrome).",
+ "ignoreVersionDetectionMacOSLobApp": "Select \"Yes\" for apps that are automatically updated by app developer or to only check for app bundleID before installation. Select \"No\" to check for app bundleID and version number before installation.",
+ "installAsManagedMacOSLobApp": "This setting only applies to macOS 11 and higher. The app will be installed but not managed on macOS 10.15 and lower.",
+ "installContextDropdown": "Select the appropriate install context. User context will install the app only for the targeted user while device context will install the app for all users on the device.",
+ "ldapUrl": "This is the LDAP hostname where clients can get the public encryption keys for email recipients. Emails will be encrypted when a key is available. Supported formats: - ldap.example.com
\n- ldap.example.com:123
\n- ldap://ldap.example.com
- ldap://ldap.example.com:123
- ldaps://ldap.example.com
\n- ldaps://ldap.example.com:123
",
+ "permissionsSettings": "Select runtime permissions for the associated app.",
+ "policyAssociatedApp": "Select the app that this policy will be associated with.",
+ "policyConfigurationSettings": "Select the method you want to use to define configuration settings for this policy.",
+ "policyDescription": "Optionally, enter a description for this configuration policy.",
+ "policyEnrollmentType": "Choose whether these settings are managed through device management or apps made with Intune SDK.",
+ "policyName": "Enter a name for this configuration policy.",
+ "policyPlatform": "Select the platform this app configuration policy will apply to.",
+ "policyProfileType": "Select the device profile types that this app configuration profile will apply to",
+ "policySMime": "Configure S/MIME signing and encryption settings for Outlook.",
+ "sMimeDeployCertsFromIntune": "Specify whether or not S/MIME certificates will be delivered from Intune for use with Outlook.\nIntune can automatically deploy signing and encryption certificates to users through the Company Portal.",
+ "sMimeEnable": "Specify whether or not S/MIME controls are enabled when composing an email",
+ "sMimeEnableAllowChange": "Specify if the user is allowed to change the Enable S/MIME setting.",
+ "sMimeEncryptAllEmails": "Specify whether or not all emails must be encrypted.\nEncrypting converts data to cipher text so that only the intended recipient can read it.",
+ "sMimeEncryptAllEmailsAllowChange": "Specify if the user is allowed to change the Encrypt all emails setting.",
+ "sMimeEncryptionCertProfile": "Specify certificate profile for email encryption.",
+ "sMimeSignAllEmails": "Specify whether or not all emails must be signed.\nA digital signature verifies the authenticity of the email and ensures that the contents are not tampered with in transit.",
+ "sMimeSignAllEmailsAllowChange": "Specify if the user is allowed to change the Sign all emails setting.",
+ "sMimeSigningCertProfile": "Specify certificate profile for email signing.",
+ "sMimeUserNotificationType": "Method to notify users that they must open Company Portal to retrieve S/MIME certificates for Outlook."
},
- "BooleanActions": {
- "allow": "Allow",
- "block": "Block",
- "configured": "Configured",
- "disable": "Disable",
- "dontRequire": "Don't Require",
- "enable": "Enable",
- "hide": "Hide",
- "limit": "Limit",
- "notConfigured": "Not configured",
- "require": "Require",
- "show": "Show",
- "yes": "Yes"
- },
- "ProactiveRemediations": {
- "Create": {
- "Basics": {
- "DescriptionMultiLineTextBox": {
- "label": "Description",
- "placeholder": "Enter a description"
- },
- "NameTextBox": {
- "label": "Name",
- "placeholder": "Enter a name"
- },
- "PublisherTextBox": {
- "label": "Publisher",
- "placeholder": "Enter a publisher"
- },
- "VersionTextBox": {
- "label": "Version"
- },
- "headerDescription": "Create a new custom script package from detection and remediation scripts that you’ve written."
- },
- "ScopeTags": {
- "headerDescription": "Select one or more groups to assign the script package."
- },
- "Settings": {
- "DetectionScriptMultiLineTextBox": {
- "label": "Detection script",
- "placeholder": "Input script text",
- "requiredValidationMessage": "Please enter the detection script"
- },
- "EnforceScriptSignatureCheckOptionPicker": {
- "label": "Enforce script signature check"
- },
- "LoggedOnCredentialsOptionPicker": {
- "label": "Run this script using the logged-on credentials"
- },
- "RemediationScript": {
- "infoBox": "This script will run in detect-only mode because there is no remediation script."
- },
- "RemediationScriptMultiLineTextBox": {
- "label": "Remediation script",
- "placeholder": "Input script text"
- },
- "RunIn64BitPSOptionPicker": {
- "label": "Run script in 64-bit PowerShell"
- },
- "ScriptMultiLineTextBox": {
- "base64EncodingValidationMessage": "Invalid script. One or more characters used in the script is not valid."
- },
- "headerDescription": "Create a custom script package from scripts you've written. By default, scripts will run on assigned devices every day.",
- "infoBox": "This script is read-only. Some of the settings for this script might be disabled."
- },
- "title": "Create custom script",
- "ScriptProperties": {
- "GridHeaders": {
- "interval": "Interval",
- "time": "Date and time"
- },
- "Interval": {
- "day": "Repeats every day",
- "days": "Repeats every {0} days",
- "hour": "Repeats every hour",
- "hours": "Repeats every {0} hours",
- "month": "Repeats every month",
- "months": "Repeats every {0} months",
- "week": "Repeats every week",
- "weeks": "Repeats every {0} weeks"
- },
- "Time": {
- "utc": "{0} (UTC)",
- "utcWithDate": "{0} (UTC) on {1}",
- "withDate": "{0} on {1}"
- }
- }
- },
- "Edit": {
- "title": "Edit - {0}"
- }
- },
"WindowsManagement": {
"Assignment": {
"noAssignmentCustomAttributeDisplayText": "Assign custom attribute to at least one group. Go to Properties to edit assignments.",
@@ -2708,910 +1644,6 @@
"shellScriptObjectName": "Shell script",
"successfullySavedPolicy": "Saved {0}"
},
- "AssignmentFilters": {
- "assignmentFilterColumnHeader": "Filter",
- "noFilters": "None"
- },
- "Category": {
- "airPlay": "AirPlay",
- "airPrint": "AirPrint",
- "androidDefenderAtp": "Microsoft Defender for Endpoint",
- "androidDeviceOwnerApplications": "Applications",
- "androidForWorkPassword": "Device password",
- "appManagement": "Allow or Block apps",
- "applicationGuard": "Microsoft Defender Application Guard",
- "applicationRestrictions": "Restricted Apps",
- "applicationVisibility": "Show or Hide Apps",
- "applications": "App Store",
- "applicationsAndGames": "App Store, Doc Viewing, Gaming",
- "applicationsAndGoogle": "Google Play Store",
- "appsAndExperience": "Apps and experience",
- "associatedDomains": "Associated domains",
- "autonomousSingleAppMode": "Autonomous Single App Mode",
- "azureOperationalInsights": "Azure operational insights",
- "bitLocker": "Windows Encryption",
- "browser": "Browser",
- "builtinApps": "Built-in Apps",
- "cellular": "Cellular",
- "cloudAndStorage": "Cloud and Storage",
- "cloudPrint": "Cloud Printer",
- "complianceEmailProfile": "Email",
- "connectedDevices": "Connected Devices",
- "connectivity": "Cellular and connectivity",
- "contentCaching": "Content caching",
- "controlPanelAndSettings": "Control Panel and Settings",
- "credentialGuard": "Microsoft Defender Credential Guard",
- "customCompliance": "Custom Compliance",
- "customCompliancePreview": "Custom Compliance (Preview)",
- "customConfiguration": "Custom Configuration Profile",
- "customOMASettings": "Custom OMA-URI Settings",
- "customPreferences": "Preference file",
- "defender": "Microsoft Defender Antivirus",
- "defenderAntivirus": "Microsoft Defender Antivirus",
- "defenderExploitGuard": "Microsoft Defender Exploit Guard",
- "defenderFirewall": "Microsoft Defender Firewall",
- "defenderLocalSecurityOptions": "Local device security options",
- "defenderSecurityCenter": "Microsoft Defender Security Center",
- "deliveryOptimization": "Delivery Optimization",
- "derivedCredentialAuthenticationConfiguration": "Derived credential",
- "deviceExperience": "Device experience",
- "deviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
- "deviceGuard": "Microsoft Defender Application Control",
- "deviceHealth": "Device Health",
- "devicePassword": "Device password",
- "deviceProperties": "Device Properties",
- "deviceRestrictions": "General",
- "deviceSecurity": "System security",
- "display": "Display",
- "domainJoin": "Domain Join",
- "domains": "Domains",
- "edgeBrowser": "Microsoft Edge Legacy (Version 45 and earlier)",
- "edgeBrowserSmartScreen": "Microsoft Defender SmartScreen",
- "edgeKiosk": "Microsoft Edge kiosk mode",
- "editionUpgrade": "Edition Upgrade",
- "education": "Education",
- "educationDeviceCerts": "Device certificates",
- "educationStudentCerts": "Student certificates",
- "educationTakeATest": "Take a Test",
- "educationTeacherCerts": "Teacher certificates",
- "emailProfile": "Email",
- "enterpriseDataProtection": "Windows Information Protection",
- "expeditedCheckin": "Mobile device management configuration",
- "extensibleSingleSignOn": "Single sign-on app extension",
- "filevault": "FileVault",
- "firewall": "Firewall",
- "games": "Games",
- "gatekeeper": "Gatekeeper",
- "healthMonitoring": "Health monitoring",
- "homeScreenLayout": "Home Screen Layout",
- "iOSWallpaper": "Wallpaper",
- "importedPFX": "PKCS Imported Certificate",
- "iosDefenderAtp": "Microsoft Defender for Endpoint",
- "iosKiosk": "Kiosk",
- "kernelExtensions": "Kernel extensions",
- "keyboardAndDictionary": "Keyboard and Dictionary",
- "kiosk": "Kiosk",
- "kioskAndroidEnterprise": "Dedicated devices",
- "kioskConfiguration": "Kiosk",
- "kioskConfigurationV2": "Kiosk",
- "kioskWebBrowser": "Kiosk web browser",
- "lockScreenMessage": "Lock Screen Message",
- "lockedScreenExperience": "Locked Screen Experience",
- "logging": "Reporting and Telemetry",
- "loginItems": "Login items",
- "loginWindow": "Login window",
- "macDefenderAtp": "Microsoft Defender for Endpoint",
- "maintenance": "Maintenance",
- "malware": "Malware",
- "messaging": "Messaging",
- "networkBoundary": "Network boundary",
- "networkProxy": "Network proxy",
- "notifications": "App Notifications",
- "pKCS": "PKCS Certificate",
- "password": "Password",
- "personalProfile": "Personal profile",
- "personalization": "Personalization",
- "policyOverride": "Override Group Policy",
- "powerSettings": "Power Settings",
- "printer": "Printer",
- "privacy": "Privacy",
- "privacyPerApp": "Per-app privacy exceptions",
- "privacyPreferences": "Privacy preferences",
- "projection": "Projection",
- "sCCMCompliance": "Configuration Manager Compliance",
- "sCEP": "SCEP Certificate",
- "sCEPProperties": "SCEP Certificate",
- "sMode": "Mode switch (Windows Insider only)",
- "safari": "Safari",
- "search": "Search",
- "session": "Session",
- "sharedDevice": "Shared iPad",
- "sharedPCAccountManager": "Shared multi-user device",
- "singleSignOn": "Single sign-on",
- "smartScreen": "Microsoft Defender SmartScreen",
- "softwareUpdates": "Settings",
- "start": "Start",
- "systemExtensions": "System extensions",
- "systemSecurity": "System Security",
- "trustedCert": "Trusted Certificate",
- "updates": "Updates",
- "userRights": "User Rights",
- "usersAndAccounts": "Users and Accounts",
- "vPN": "Base VPN",
- "vPNApps": "Automatic VPN",
- "vPNAppsAndTrafficRules": "Apps and Traffic Rules",
- "vPNConditionalAccess": "Conditional Access",
- "vPNConnectivity": "Connectivity",
- "vPNDNSTriggers": "DNS Settings",
- "vPNIKEv2": "IKEv2 settings",
- "vPNProxy": "Proxy",
- "vPNSplitTunneling": "Split Tunneling",
- "vPNTrustedNetwork": "Trusted Network Detection",
- "webContentFilter": "Web Content Filter",
- "wiFi": "Wi-Fi",
- "win10Wifi": "Wi-Fi",
- "windowsAtp": "Microsoft Defender for Endpoint",
- "windowsDefenderATP": "Microsoft Defender for Endpoint",
- "windowsHelloForBusiness": "Windows Hello for Business",
- "windowsSpotlight": "Windows Spotlight",
- "wiredNetwork": "Wired network",
- "wireless": "Wireless",
- "wirelessProjection": "Wireless projection",
- "workProfile": "Work profile settings",
- "workProfilePassword": "Work profile password",
- "xboxServices": "Xbox services",
- "zebraMx": "MX profile (Zebra only)",
- "complianceActionsLabel": "Actions for noncompliance"
- },
- "MicrosoftEdgeChannel": {
- "beta": "Beta",
- "dev": "Dev",
- "stable": "Stable"
- },
- "ConfigurationTypes": {
- "Table": {
- "androidDeviceOwnerGeneral": "Device restrictions (device owner)",
- "androidForWorkGeneral": "Device restrictions (work profile)"
- },
- "androidCustom": "Custom",
- "androidDeviceOwnerGeneral": "Device restrictions",
- "androidDeviceOwnerPkcs": "PKCS Certificate",
- "androidDeviceOwnerScep": "SCEP Certificate",
- "androidDeviceOwnerTrustedCertificate": "Trusted Certificate",
- "androidDeviceOwnerVpn": "VPN",
- "androidDeviceOwnerWiFi": "Wi-Fi",
- "androidEmailProfile": "Email (Samsung KNOX only)",
- "androidForWorkCustom": "Custom",
- "androidForWorkEmailProfile": "Email",
- "androidForWorkGeneral": "Device restrictions",
- "androidForWorkImportedPFX": "PKCS imported certificate",
- "androidForWorkOemConfig": "OEMConfig",
- "androidForWorkPKCS": "PKCS certificate",
- "androidForWorkSCEP": "SCEP certificate",
- "androidForWorkTrustedCertificate": "Trusted certificate",
- "androidForWorkVpn": "VPN",
- "androidForWorkWiFi": "Wi-Fi",
- "androidGeneral": "Device restrictions",
- "androidImportedPFX": "PKCS imported certificate",
- "androidPKCS": "PKCS certificate",
- "androidSCEP": "SCEP certificate",
- "androidTrustedCertificate": "Trusted certificate",
- "androidVPN": "VPN",
- "androidWiFi": "Wi-Fi",
- "androidZebraMx": "MX profile (Zebra only)",
- "complianceAndroid": "Android compliance policy",
- "complianceAndroidDeviceOwner": "Fully managed, dedicated, and corporate-owned work profile",
- "complianceAndroidEnterprise": "Personally-owned work profile",
- "complianceAndroidForWork": "Android for Work compliance policy",
- "complianceIos": "iOS compliance policy",
- "complianceMac": "Mac compliance policy",
- "complianceWindows10": "Windows 10 and later compliance policy",
- "complianceWindows10Mobile": "Windows 10 mobile compliance policy",
- "complianceWindows8": "Windows 8 compliance policy",
- "complianceWindowsPhone": "Windows Phone compliance policy",
- "exchangeActiveSync": "Exchange Active Sync",
- "iosCustom": "Custom",
- "iosDerivedCredentialAuthenticationConfiguration": "Derived PIV credential",
- "iosDeviceFeatures": "Device features",
- "iosEDU": "Education",
- "iosEducation": "Education",
- "iosEmailProfile": "Email",
- "iosGeneral": "Device restrictions",
- "iosImportedPFX": "PKCS imported certificate",
- "iosPKCS": "PKCS certificate",
- "iosPresets": "Presets",
- "iosSCEP": "SCEP certificate",
- "iosTrustedCertificate": "Trusted certificate",
- "iosVPN": "VPN",
- "iosVPNZscaler": "VPN",
- "iosWiFi": "Wi-Fi",
- "macCustom": "Custom",
- "macDeviceFeatures": "Device features",
- "macEndpointProtection": "Endpoint protection",
- "macExtensions": "Extensions",
- "macGeneral": "Device restrictions",
- "macImportedPFX": "PKCS imported certificate",
- "macSCEP": "SCEP certificate",
- "macTrustedCertificate": "Trusted certificate",
- "macVPN": "VPN",
- "macWiFi": "Wi-Fi",
- "settingsCatalog": "Settings catalog (preview)",
- "unsupported": "Unsupported",
- "windows10AdministrativeTemplate": "Administrative Templates (Preview)",
- "windows10Atp": "Microsoft Defender for Endpoint (desktop devices running Windows 10 or later)",
- "windows10Custom": "Custom",
- "windows10DesktopSoftwareUpdate": "Software Updates",
- "windows10DeviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
- "windows10EmailProfile": "Email",
- "windows10EndpointProtection": "Endpoint protection",
- "windows10EnterpriseDataProtection": "Windows Information Protection",
- "windows10General": "Device restrictions",
- "windows10ImportedPFX": "PKCS imported certificate",
- "windows10Kiosk": "Kiosk",
- "windows10NetworkBoundary": "Network boundary",
- "windows10PKCS": "PKCS certificate",
- "windows10PolicyOverride": "Override Group Policy",
- "windows10SCEP": "SCEP certificate",
- "windows10SecureAssessmentProfile": "Education profile",
- "windows10SharedPC": "Shared multi-user device",
- "windows10TeamGeneral": "Device restrictions (Windows 10 Team)",
- "windows10TrustedCertificate": "Trusted certificate",
- "windows10VPN": "VPN",
- "windows10WiFi": "Wi-Fi",
- "windows10WiFiCustom": "Wi-Fi custom",
- "windows8General": "Device restrictions",
- "windows8SCEP": "SCEP certificate",
- "windows8TrustedCertificate": "Trusted certificate",
- "windows8VPN": "VPN",
- "windows8WiFi": "Wi-Fi import",
- "windowsDeliveryOptimization": "Delivery Optimization",
- "windowsDomainJoin": "Domain Join",
- "windowsEditionUpgrade": "Edition upgrade and mode switch",
- "windowsIdentityProtection": "Identity protection",
- "windowsPhoneCustom": "Custom",
- "windowsPhoneEmailProfile": "Email",
- "windowsPhoneGeneral": "Device restrictions",
- "windowsPhoneImportedPFX": "PKCS imported certificate",
- "windowsPhoneSCEP": "SCEP certificate",
- "windowsPhoneTrustedCertificate": "Trusted certificate",
- "windowsPhoneVPN": "VPN",
- "IosUpdate": "iOS Update policy"
- },
- "WindowsEnrollment": {
- "coManagementAuthorityDesc": "Configure co-management settings for Configuration Manager integration",
- "coManagementAuthorityTitle": "Co-management Settings ",
- "deploymentProfiles": "Windows Autopilot deployment profiles",
- "description": "Learn about the seven different ways a Windows 10/11 PC can be enrolled into Intune by users or admins.",
- "descriptionLabel": "Windows enrollment methods",
- "enrollmentStatusPage": "Enrollment Status Page"
- },
- "Platform": {
- "all": "All",
- "android": "Android device administrator",
- "androidAOSP": "Android (AOSP)",
- "androidEnterprise": "Android Enterprise",
- "androidForWork": "Android Enterprise",
- "androidWorkProfile": "Android enterprise",
- "common": "Common",
- "iOS": "iOS/iPadOS",
- "iosAndAndroidPlatformLabel": "iOS and Android",
- "iosCommaAndroidPlatformLabel": "iOS, Android",
- "linux": "Linux",
- "macOS": "macOS",
- "unknown": "Unknown",
- "unsupported": "Unsupported",
- "windows": "Windows",
- "windows10": "Windows 10 and later",
- "windows10CM": "Windows 10 and later (ConfigMgr)",
- "windows10Holo": "Windows 10 Holographic",
- "windows10Mobile": "Windows 10 Mobile",
- "windows10Team": "Windows 10 Team",
- "windows10X": "Windows 10X",
- "windows8": "Windows 8.1 and later",
- "windows8And10": "Windows 8 and 10",
- "windowsPhone": "Windows Phone 8.1",
- "windows10AndLater": "Windows 10 and later",
- "windows10AndWindowsServer": "Windows 10, Windows 11, and Windows Server (ConfigMgr)",
- "windows10andLaterCM": "Windows 10 and later (ConfigMgr)",
- "holoLens": "HoloLens",
- "surfaceHub2": "Surface Hub 2",
- "surfaceHub2S": "Surface Hub 2S",
- "windowsPC": "Windows PC"
- },
- "EnrollmentRestrictions": {
- "DeletePayloadLink": {
- "content": "{0} is included in one or more policy sets. If you delete {0}, you'll no longer be able to assign it via these policy sets. Delete anyway?",
- "contentWithError": "{0} might be included in one or more policy sets. If you delete {0}, you'll no longer be able to assign it via these policy sets. Delete anyway?",
- "header": "Are you sure you want to delete this restriction?"
- },
- "DeviceLimit": {
- "description": "Specify the maximum number of devices a user can enroll.",
- "header": "Device limit restrictions",
- "info": "Define how many devices each user can enroll."
- },
- "DeviceType": {
- "VersionValidation": {
- "aOSP": "Must be 1.0 or greater.",
- "android": "Enter a valid version number. Examples: 5.0, 5.5.1, 6.0.0.1",
- "androidForWork": "Enter a valid version number. Examples: 5.0, 5.1.1",
- "iOS": "Enter a valid version number. Examples: 9.0, 10.0, 9.0.2",
- "mac": "Enter a valid version number. Examples: 10, 10.10, 10.10.1",
- "min": "Minimum cannot be lower than {0}",
- "minMax": "Minimum version cannot be greater than maximum version.",
- "windows": "Must be 10.0 or greater. Leave blank to allow 8.1 devices",
- "windowsMobile": "Must be 10.0 or greater. Leave blank to allow 8.1 devices"
- },
- "allPlatformsBlocked": "All device platforms are blocked. Allow platform enrollment to enable platform configuration.",
- "blockManufacturerPlaceHolder": "Manufacturer name",
- "blockManufacturersHeader": "Blocked manufacturers",
- "cannotRestrict": "Restriction not supported",
- "configurationDescription": "Specify the platform configuration restrictions that must be met for a device to enroll. Use compliance policies to restrict devices after enrollment. Define versions as major.minor.build. Version restrictions only apply to devices enrolled with the Company Portal. Intune classifies devices as personally-owned by default. Additional action is required to classify devices as corporate-owned.",
- "configurationDescriptionLabel": "Learn more about setting enrollment restrictions",
- "configurations": "Configure platforms",
- "deviceManufacturer": "Device manufacturer",
- "header": "Device type restrictions",
- "info": "Define which platforms, versions, and management types can enroll.",
- "manufacturer": "Manufacturer",
- "max": "Max",
- "maxVersion": "Maximum version",
- "min": "Min",
- "minVersion": "Minimum version",
- "newPlatforms": "You have allowed new platforms. Consider updating Platform Configurations.",
- "personal": "Personally owned",
- "platform": "Platform",
- "platformDescription": "You can allow enrollment of the following platforms. Only block platforms you will not support. Allowed platforms can be configured with additional enrollment restrictions.",
- "platformSettings": "Platform settings",
- "platforms": "Select platforms",
- "platformsSelected": "{0} platforms selected",
- "type": "Type",
- "versions": "versions",
- "versionsRange": "Allow min/max range:",
- "windowsTooltip": "Restricts enrollment through Mobile Device Management. Does not restrict PC agent installation. Only Windows 10 and Windows 11 versions are supported. Leave versions blank to allow Windows 8.1."
- },
- "Priority": {
- "saved": "Restriction Priorities were successfully saved."
- },
- "Row": {
- "announce": "Priority: {0}, Name: {1}, Assigned: {2}"
- },
- "Table": {
- "deployed": "Deployed",
- "name": "Name",
- "priority": "Priority"
- },
- "Type": {
- "limit": "Device limit restriction",
- "type": "Device type restriction"
- },
- "allUsers": "All Users",
- "androidRestrictions": "Android restrictions",
- "create": "Create restriction",
- "defaultLimitDescription": "This is the default Device Limit Restriction applied with lowest priority to all users regardless of group membership.",
- "defaultTypeDescription": "This is the default Device Type Restriction applied with lowest priority to all users regardless of group membership.",
- "defaultWhfbDescription": "This is the default Windows Hello for Business configuration applied with the lowest priority to all users regardless of group membership.",
- "deleteMessage": "Affected users will be restricted by the next highest priority restriction assigned or the default restriction if no other restriction is assigned.",
- "deleteTitle": "Are you sure you want to delete {0} restriction?",
- "descriptionHint": "Short paragraph describing the business use or restriction level characterized by the restriction's settings.",
- "edit": "Edit restriction",
- "info": "A device must comply with the highest priority enrollment restrictions assigned to its user. You can drag a device restriction to change its priority. Default restrictions are lowest priority for all users and govern userless enrollments. Default restrictions may be edited, but not deleted.",
- "iosRestrictions": "iOS restrictions",
- "mDM": "MDM",
- "macRestrictions": "MacOS restrictions",
- "maxVersion": "Max Version",
- "minVersion": "Min Version",
- "nameHint": "This will be the primary attribute visible for identifying the restriction set.",
- "noAssignmentsStatusBar": "Assign restriction to at least one group. Click Properties.",
- "notFound": "Restriction not found. It may have already been deleted.",
- "personallyOwned": "Personally owned devices",
- "restriction": "Restriction",
- "restrictionLowerCase": "restriction",
- "restrictionType": "Restriction type",
- "selectType": "Select restriction type",
- "selectValidation": "Please select a platform",
- "typeHint": "Choose Device Type Restriction to restrict device properties. Choose Device Limit Restriction to restrict number of devices per-user.",
- "typeRequired": "Restriction type is required.",
- "winPhoneRestrictions": "Windows Phone restrictions",
- "windowsRestrictions": "Windows restrictions"
- },
- "Titles": {
- "ChromeOs": {
- "devices": "Chrome OS devices"
- },
- "ManagedDesktop": {
- "adminContacts": "Admin contacts",
- "appPackaging": "App packaging",
- "devices": "Devices",
- "feedback": "Feedback",
- "gettingStarted": "Getting started",
- "messages": "Messages",
- "onlineResources": "Online resources",
- "serviceRequests": "Service requests",
- "settings": "Settings",
- "tenantEnrollment": "Tenant enrollment"
- },
- "actions": "Actions for Non-Compliance",
- "advancedExchangeSettings": "Exchange online settings",
- "advancedThreatProtection": "Microsoft Defender for Endpoint",
- "allApps": "All apps",
- "allDevices": "All devices",
- "androidFotaDeployments": "Android FOTA deployments",
- "appBundles": "App Bundles",
- "appCategories": "App categories",
- "appConfigPolicies": "App configuration policies",
- "appInstallStatus": "App install status",
- "appLicences": "App licenses",
- "appProtectionPolicies": "App protection policies",
- "appProtectionStatus": "App protection status",
- "appSelectiveWipe": "App selective wipe",
- "appleVppTokens": "Apple VPP Tokens",
- "apps": "Apps",
- "assign": "Assignments",
- "assignedPermissions": "Assigned permissions",
- "assignedRoles": "Assigned roles",
- "autopilotDeploymentReport": "Autopilot deployments (preview)",
- "brandingAndCustomization": "Customization",
- "cartProfiles": "Cart profiles",
- "certificateConnectors": "Certificate connectors",
- "chromeEnterprise": "Chrome Enterprise",
- "compliancePolicies": "Compliance policies",
- "complianceScriptManagement": "Scripts",
- "complianceScriptManagementPreview": "Scripts (Preview)",
- "complianceSettings": "Compliance policy settings",
- "conditionStatements": "Condition statements",
- "conditions": "Locations",
- "configMgr": "Microsoft Endpoint Configuration Manager",
- "configurationProfiles": "Configuration profiles",
- "configurationProfilesPreview": "Configuration profiles (preview)",
- "connectorsAndTokens": "Connectors and tokens",
- "corporateDeviceIdentifiers": "Corporate device identifiers",
- "customAttributes": "Custom attributes",
- "customNotifications": "Custom notifications",
- "deploymentSettings": "Deployment settings",
- "derivedCredentials": "Derived Credentials",
- "deviceActions": "Device actions",
- "deviceCategories": "Device categories",
- "deviceCleanUp": "Device clean-up rules",
- "deviceEnrollmentManagers": "Device enrollment managers",
- "deviceExecutionStatus": "Device status",
- "deviceLimitEnrollmentRestrictions": "Enrollment device limit restrictions",
- "deviceTypeEnrollmentRestrictions": "Enrollment device platform restrictions",
- "devices": "Devices",
- "discoveredApps": "Discovered apps",
- "embeddedSIM": "eSIM cellular profiles (Preview)",
- "enrollDevices": "Enroll devices",
- "enrollmentFailures": "Enrollment failures",
- "enrollmentNotifications": "Enrollment notifications (Preview)",
- "enrollmentRestrictions": "Enrollment restrictions",
- "exchangeActiveSync": "Exchange ActiveSync",
- "exchangeServiceConnectors": "Exchange service connectors",
- "failuresForFeatureUpdates": "Feature update failures (Preview)",
- "failuresForQualityUpdates": "Windows Expedited update failures (Preview)",
- "featureFlighting": "Feature flighting",
- "featureUpdateDeployments": "Feature updates for Windows 10 and later (Preview)",
- "flighting": "Flighting",
- "fotaUpdate": "Firmware over-the-air update",
- "groupPolicy": "Administrative Templates",
- "groupPolicyAnalytics": "Group policy analytics",
- "helpSupport": "Help and support",
- "helpSupportReplacement": "Help and support ({0})",
- "iOSAppProvisioning": "iOS app provisioning profiles",
- "incompleteUserEnrollments": "Incomplete user enrollments",
- "intuneRemoteAssistance": "Remote help (preview)",
- "iosUpdates": "Update policies for iOS/iPadOS",
- "legacyPcManagement": "Legacy PC management",
- "macOSSoftwareUpdate": "Update policies for macOS",
- "macOSSoftwareUpdateAccountSummaries": "Installation status for macOS devices",
- "macOSSoftwareUpdateCategorySummaries": "Software updates summary",
- "macOSSoftwareUpdateStateSummaries": "updates",
- "managedGooglePlay": "Managed Google Play",
- "msfb": "Microsoft Store for Business",
- "myPermissions": "My permissions",
- "notifications": "Notifications",
- "officeApps": "Office apps",
- "officeProPlusPolicies": "Policies for Office apps",
- "onPremise": "On Premise",
- "onPremisesConnector": "Exchange ActiveSync on-premises connector",
- "onPremisesDeviceAccess": "Exchange ActiveSync devices",
- "onPremisesManageAccess": "Exchange on-premises access",
- "outOfDateIosDevices": "Installation failures for iOS devices",
- "overview": "Overview",
- "partnerDeviceManagement": "Partner device management",
- "perUpdateRingDeploymentState": "Per update ring deployment state",
- "permissions": "Permissions",
- "platformApps": "{0} apps",
- "platformDevices": "{0} devices",
- "platformEnrollment": "{0} enrollment",
- "policies": "Policies",
- "previewMDMDevices": "All managed devices (Preview)",
- "profiles": "Profiles",
- "properties": "Properties",
- "reports": "Reports",
- "retireNoncompliantDevices": "Retire noncompliant devices",
- "retireNoncompliantDevicesPreview": "Retire noncompliant devices (preview)",
- "role": "Role",
- "scriptManagement": "Scripts",
- "securityBaselines": "Security baselines",
- "serviceToServiceConnector": "Exchange online connector",
- "shellScripts": "Shell scripts",
- "teamViewerConnector": "TeamViewer connector",
- "telecomeExpenseManagement": "Telecom expense management",
- "tenantAdmin": "Tenant admin",
- "tenantAdministration": "Tenant administration",
- "termsAndConditions": "Terms and conditions",
- "titles": "Titles",
- "troubleshootSupport": "Troubleshooting + support",
- "user": "User",
- "userExecutionStatus": "User status",
- "warranty": "Warranty vendors",
- "wdacSupplementalPolicies": "S mode supplemental policies",
- "windows10DriverUpdate": "Driver updates for Windows 10 and later (Preview)",
- "windows10QualityUpdate": "Quality updates for Windows 10 and later (Preview)",
- "windows10UpdateRings": "Update rings for Windows 10 and later",
- "windows10XPolicyFailures": "Windows 10X policy failures",
- "windowsEnterpriseCertificate": "Windows enterprise certificate",
- "windowsManagement": "PowerShell scripts",
- "windowsSideLoadingKeys": "Windows side loading keys",
- "windowsSymantecCertificate": "Windows DigiCert certificate",
- "windowsThreatReport": "Threat agent status"
- },
- "ScopeTypes": {
- "allDevices": "All Devices",
- "allUsers": "All Users",
- "allUsersAndDevices": "All Users & All Devices",
- "selectedGroups": "Selected Groups"
- },
- "DetectionRules": {
- "ComparisonOperators": {
- "equals": "Equals",
- "greaterThan": "Greater than",
- "greaterThanOrEqualTo": "Greater than or equal to",
- "lessThan": "Less than",
- "lessThanOrEqualTo": "Less than or equal to",
- "notEqualTo": "Not equal to"
- },
- "CustomScript": {
- "enforceSignatureCheck": "Enforce script signature check and run script silently",
- "enforceSignatureCheckTooltip": "Select 'Yes' to verify that the script is signed by a trusted publisher, which will allow the script to run with no warnings or prompts displayed. The script will run unblocked. Select 'No' (default) to run the script with end-user confirmation without signature verification.",
- "header": "Use a custom detection script",
- "runAs32Bit": "Run script as 32-bit process on 64-bit clients",
- "runAs32BitTooltip": "Select 'Yes' to run the script in a 32-bit process on 64-bit clients. Select 'No' (default) to run the script in a 64-bit process on 64-bit clients. 32-bit clients run the script in a 32-bit process.",
- "scriptFile": "Script file",
- "scriptFileNotSelectedValidation": "No script file is selected.",
- "scriptFileTooltip": "Select a PowerShell script that will detect the presence of the app on the client. The app will be detected when the script both returns a 0 value exit code and writes a string value to STDOUT."
- },
- "Manual": {
- "FileRule": {
- "DetectionMethodOptions": {
- "dateCreated": "Date created",
- "dateModified": "Date modified",
- "doesNotExist": "File or folder does not exist",
- "fileOrFolderExists": "File or folder exists",
- "sizeInMB": "Size in MB",
- "version": "String (version)"
- },
- "associatedWith32Bit": "Associated with a 32-bit app on 64-bit clients",
- "associatedWith32BitTooltip": "Select 'Yes' to expand any path environment variables in the 32-bit context on 64-bit clients. Select 'No' (default) to expand any path variables in the 64-bit context on 64-bit clients. 32-bit clients will always use the 32-bit context.",
- "detectionMethod": "Detection method",
- "detectionMethodTooltip": "Select the type of detection method used to validate the presence of the app.",
- "fileOrFolder": "File or folder",
- "fileOrFolderToolTip": "The file or folder to detect.",
- "operator": "Operator",
- "operatorTooltip": "Select the operator for the detection method used to validate the comparison.",
- "path": "Path",
- "pathTooltip": "The full path of the folder containing the file or folder to detect.",
- "value": "Value",
- "valueTooltip": "Select a value that matches the selected detection method. Date detection methods should be entered in local time."
- },
- "GridColumns": {
- "pathOrCode": "Path/Code",
- "type": "Type"
- },
- "MsiRule": {
- "operator": "Operator",
- "operatorTooltip": "Select the operator for the MSI product version validation comparison.",
- "productCode": "MSI product code",
- "productCodeTooltip": "A valid MSI product code for the app.",
- "productVersion": "Value",
- "productVersionCheck": "MSI product version check",
- "productVersionCheckTooltip": "Select 'Yes' to verify the MSI product version in addition to the MSI product code.",
- "productVersionTooltip": "Enter the MSI product version for the app."
- },
- "RegistryRule": {
- "DetectionMethodOptions": {
- "integerComparison": "Integer comparison",
- "keyDoesNotExist": "Key does not exist",
- "keyExists": "Key exists",
- "stringComparison": "String comparison",
- "valueDoesNotExist": "Value does not exist",
- "valueExists": "Value exists",
- "versionComparison": "Version comparison"
- },
- "associatedWith32Bit": "Associated with a 32-bit app on 64-bit clients",
- "associatedWith32BitTooltip": "Select 'Yes' to search the 32-bit registry on 64-bit clients. Select 'No' (default) search the 64-bit registry on 64-bit clients. 32-bit clients will always search the 32-bit registry.",
- "detectionMethod": "Detection method",
- "detectionMethodTooltip": "Select the type of detection method used to validate the presence of the app.",
- "keyPath": "Key path",
- "keyPathTooltip": "The full path of the registry entry containing the value to detect.",
- "operator": "Operator",
- "operatorTooltip": "Select the operator for the detection method used to validate the comparison.",
- "value": "Value",
- "valueName": "Value name",
- "valueNameTooltip": "The name of the registry value to detect.",
- "valueTooltip": "Select a value that matches the selected detection method."
- },
- "RuleTypeOptions": {
- "file": "File",
- "mSI": "MSI",
- "registry": "Registry"
- },
- "gridAriaLabel": "Detection Rules",
- "header": "Create a rule that indicates the presence of the app.",
- "noRulesSelectedPlaceholder": "No rules are specified.",
- "ruleTableLimit": "You can add up to 25 detection rules",
- "ruleType": "Rule type",
- "ruleTypeTooltip": "Choose the type of detection rule to add."
- },
- "RuleConfigurationOptions": {
- "customScript": "Use a custom detection script",
- "manual": "Manually configure detection rules"
- },
- "bladeTitle": "Detection rules",
- "header": "Configure app specific rules used to detect the presence of the app.",
- "rulesFormat": "Rules format",
- "rulesFormatTooltip": "Choose to either manually configure the detection rules or use a custom script to detect the presence of the app.",
- "selectorLabel": "Detection rules"
- },
- "AppType": {
- "androidEnterpriseSystemApp": "Android Enterprise system app",
- "androidForWorkApp": "Managed Google Play store app",
- "androidLobApp": "Android line-of-business app",
- "androidStoreApp": "Android store app",
- "builtInAndroid": "Built-In Android app",
- "builtInApp": "Built-In app",
- "builtInIos": "Built-In iOS app",
- "default": "",
- "iosLobApp": "iOS line-of-business app",
- "iosStoreApp": "iOS store app",
- "iosVppApp": "iOS volume purchase program app",
- "lineOfBusinessApp": "Line-of-business app",
- "macOSDmgApp": "macOS app (DMG)",
- "macOSEdgeApp": "Microsoft Edge (macOS)",
- "macOSLobApp": "macOS line-of-business app",
- "macOSMdatpApp": "Microsoft Defender ATP (macOS)",
- "macOSOfficeSuiteApp": "Microsoft 365 Apps (macOS)",
- "macOsVppApp": "macOS volume purchase program app",
- "managedAndroidLobApp": "Managed Android line-of-business app",
- "managedAndroidStoreApp": "Managed Android store app",
- "managedGooglePlayApp": "Managed Google Play store app",
- "managedGooglePlayPrivateApp": "Managed Google Play private app",
- "managedGooglePlayWebApp": "Managed Google Play web link",
- "managedIosLobApp": "Managed iOS line-of-business app",
- "managedIosStoreApp": "Managed iOS store app",
- "microsoftStoreForBusinessApp": "Microsoft Store for Business app",
- "microsoftStoreForBusinessReleaseManagedApp": "Microsoft Store for Business",
- "officeSuiteApp": "Microsoft 365 Apps (Windows 10 and later)",
- "webApp": "Web link",
- "windowsAppXLobApp": "Windows AppX line-of-business app",
- "windowsClassicApp": "Windows app (Win32)",
- "windowsEdgeApp": "Microsoft Edge (Windows 10 and later)",
- "windowsMobileMsiLobApp": "Windows MSI line-of-business app",
- "windowsPhone81AppXBundleLobApp": "Windows Phone 8.1 AppX line-of-business app",
- "windowsPhone81AppXLobApp": "Windows Phone 8.1 AppX line-of-business app",
- "windowsPhone81StoreApp": "Windows Phone 8.1 store app",
- "windowsPhoneXapLobApp": "Windows Phone XAP line-of-business app",
- "windowsStoreApp": "Microsoft Store app",
- "windowsUniversalAppXLobApp": "Windows Universal AppX line-of-business app",
- "windowsUniversalLobApp": "Windows Universal line-of-business app"
- },
- "PolicyType": {
- "AttackSurfaceReductionRules": {
- "configMgr": "Attack Surface Reduction Rules (ConfigMgr)"
- },
- "EndpointDetectionandResponse": {
- "mDE": "Endpoint detection and response"
- },
- "EndpointSecurityTemplate": {
- "aSRAppBrowserSecurity": "App and browser isolation",
- "aSRApplicationControl": "Application control",
- "aSRAttackSurfaceReduction": "Attack surface reduction rules",
- "aSRDeviceControl": "Device control",
- "aSRExploitProtection": "Exploit protection",
- "aSRWebProtection": "Web protection (Microsoft Edge Legacy)",
- "aVExclusions": "Microsoft Defender Antivirus exclusions",
- "antivirus": "Microsoft Defender Antivirus",
- "cloudPC": "Windows 365 Security Baseline",
- "default": "Endpoint Security",
- "defenderTest": "Microsoft Defender for Endpoint demo",
- "diskEncryption": "BitLocker",
- "eDR": "Endpoint detection and response",
- "edgeSecurityBaseline": "Microsoft Edge baseline",
- "edgeSecurityBaselinePreview": "Preview: Microsoft Edge baseline",
- "editionUpgradeConfiguration": "Edition upgrade and mode switch",
- "firewall": "Microsoft Defender Firewall",
- "firewallRules": "Microsoft Defender Firewall rules",
- "identityProtection": "Account protection",
- "identityProtectionPreview": "Account protection (Preview)",
- "mDMSecurityBaseline1810": "MDM Security Baseline for Windows 10 and later for October 2018",
- "mDMSecurityBaseline1810Preview": "Preview: MDM Security Baseline for Windows 10 and later for October 2018",
- "mDMSecurityBaseline1810PreviewBeta": "Preview: MDM Security Baseline for Windows 10 for October 2018 (beta)",
- "mDMSecurityBaseline1906": "MDM Security Baseline for Windows 10 and later for May 2019",
- "mDMSecurityBaseline2004": "MDM Security Baseline for Windows 10 and later for August 2020",
- "mDMSecurityBaseline2101": "MDM Security Baseline for Windows 10 and later Decemeber 2020",
- "macOSAntivirus": "Antivirus",
- "macOSDiskEncryption": "FileVault",
- "macOSFirewall": "macOS firewall",
- "microsoftDefenderBaseline": "Microsoft Defender for Endpoint baseline",
- "office365Baseline": "Microsoft Office O365 baseline",
- "office365BaselinePreview": "Preview: Microsoft Office O365 baseline",
- "securityBaselines": "Security Baselines",
- "test": "Test Template",
- "testFirewallRulesSecurityTemplateName": "Microsoft Defender Firewall rules (Test)",
- "testIdentityProtectionSecurityTemplateName": "Account protection (Test)",
- "windowsSecurityExperience": "Windows Security experience"
- },
- "Firewall": {
- "mDE": "Microsoft Defender Firewall"
- },
- "FirewallRules": {
- "mDE": "Microsoft Defender Firewall Rules"
- },
- "administrativeTemplates": "Administrative Templates",
- "androidCompliancePolicy": "Android compliance policy",
- "aospDeviceOwnerCompliancePolicy": "Android (AOSP) compliance policy",
- "applicationControl": "Application Control",
- "custom": "Custom",
- "deliveryOptimization": "Delivery Optimization",
- "derivedPersonalIdentityVerificationCredential": "Derived credential",
- "deviceFeatures": "Device features",
- "deviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
- "deviceLock": "Device Lock",
- "deviceOwner": "Fully managed, dedicated, and corporate-owned work profile",
- "deviceRestrictions": "Device restrictions",
- "deviceRestrictionsWindows10Team": "Device restrictions (Windows 10 Team)",
- "domainJoinPreview": "Domain Join",
- "editionUpgradeAndModeSwitch": "Edition upgrade and mode switch",
- "education": "Education",
- "email": "Email",
- "emailSamsungKnoxOnly": "Email (Samsung KNOX only)",
- "endpointProtection": "Endpoint protection",
- "expeditedCheckin": "Mobile device management configuration",
- "exploitProtection": "Exploit Protection",
- "extensions": "Extensions",
- "hardwareConfigurations": "BIOS Configurations",
- "identityProtection": "Identity protection",
- "iosCompliancePolicy": "iOS compliance policy",
- "kiosk": "Kiosk",
- "macCompliancePolicy": "Mac compliance policy",
- "microsoftDefenderAntivirus": "Microsoft Defender Antivirus",
- "microsoftDefenderAntivirusexclusions": "Microsoft Defender Antivirus exclusions",
- "microsoftDefenderAtpWindows10Desktop": "Microsoft Defender for Endpoint (desktop devices running Windows 10 or later)",
- "microsoftDefenderFirewallRules": "Microsoft Defender Firewall Rules",
- "microsoftEdgeBaseline": "Microsoft Edge Baseline",
- "mxProfileZebraOnly": "MX profile (Zebra only)",
- "networkBoundary": "Network boundary",
- "oemConfig": "OEMConfig",
- "overrideGroupPolicy": "Override Group Policy",
- "pkcsCertificate": "PKCS certificate",
- "pkcsImportedCertificate": "PKCS imported certificate",
- "preferenceFile": "Preference file",
- "presets": "Presets",
- "scepCertificate": "SCEP certificate",
- "secureAssessmentEducation": "Secure assessment (Education)",
- "settingsCatalog": "Settings Catalog",
- "sharedMultiUserDevice": "Shared multi-user device",
- "softwareUpdates": "Software Updates",
- "trustedCertificate": "Trusted certificate",
- "unknown": "Unknown",
- "unsupported": "Unsupported",
- "vpn": "VPN",
- "wiFi": "Wi-Fi",
- "wiFiImport": "Wi-Fi import",
- "windows10CompliancePolicy": "Windows 10/11 compliance policy",
- "windows10MobileCompliancePolicy": "Windows 10 mobile compliance policy",
- "windows10XScep": "SCEP certificate - TEST",
- "windows10XTrustedCertificate": "Trusted certificate - TEST",
- "windows10XVPN": "VPN - TEST",
- "windows10XWifi": "WIFI - TEST",
- "windows8CompliancePolicy": "Windows 8 compliance policy",
- "windowsHealthMonitoring": "Windows health monitoring",
- "windowsInformationProtection": "Windows Information Protection",
- "windowsPhoneCompliancePolicy": "Windows Phone compliance policy",
- "windowsUpdateforBusiness": "Windows Update for Business",
- "wiredNetwork": "Wired Network",
- "workProfile": "Personally-owned work profile"
- },
- "OfficeSuiteAppsTab": {
- "acceptLicenseOnBehalfOfUsersLabel": "Accept the Microsoft Software License Terms on behalf of users",
- "appSuiteConfigurationLabel": "App suite configuration",
- "appSuiteInformationLabel": "App suite information",
- "appsToBeInstalledLabel": "Apps to be installed as part of the suite",
- "architectureLabel": "Architecture",
- "architectureTooltip": "Defines whether the 32-bit or 64-bit edition of Microsoft 365 Apps is installed on devices.",
- "configurationDesignerLabel": "Configuration designer",
- "configurationFileLabel": "Configuration file",
- "configurationSettingsFormatLabel": "Configuration settings format",
- "configureAppSuiteLabel": "Configure app suite",
- "configuredLabel": "Configured",
- "currentVersionLabel": "Current version",
- "currentVersionTooltip": "This is the current version of Office that’s configured in this suite. This value will be updated when a newer version is configured and saved.",
- "enableMicrosoftSearchAsDefaultTooltip": "Installs a background service that helps determine whether a Microsoft Search in Bing extension for Google Chrome is installed on the device.",
- "enterXmlDataLabel": "Enter XML data",
- "languagesLabel": "Languages",
- "languagesTooltip": "By default, Intune will install Office with the default language of the operating system. Choose any additional languages that you want to install.",
- "learnMoreText": "Learn more",
- "newUpdateChannelTooltip": "Defines how often the app is updated with new features.",
- "noCurrentVersionText": "No current version",
- "noLanguagesSelectedLabel": "No languages selected",
- "notConfiguredLabel": "Not configured",
- "propertiesLabel": "Properties",
- "removeOtherVersionsLabel": "Remove other versions",
- "removeOtherVersionsTooltip": "Select Yes to remove other versions of Office (MSI) from user devices.",
- "selectOfficeAppsLabel": "Select Office apps",
- "selectOfficeAppsTooltip": "Select the Office 365 apps that you want to install as part of the suite.",
- "selectOtherOfficeAppsLabel": "Select other Office apps (license required)",
- "selectOtherOfficeAppsTooltip": "If you own licenses for these additional Office apps you can also assign them with Intune.",
- "specificVersionLabel": "Specific version",
- "updateChannelLabel": "Update channel",
- "updateChannelTooltip": "Defines how often the app is updated with new features.
\nMonthly - Provide users with the newest features of Office as soon as they're available.
\nMonthly Enterprise Channel - Provide users with the newest features of Office once a month, on the second Tuesday of the month.
\nMonthly (Targeted) – Provide an early look at the upcoming Monthly Channel release. It is a supported update channel, and usually is available at least one week ahead of time when it's a Monthly Channel release that contains new features.
\nSemi-Annual - Provide users with new features of Office only a few times a year.
\nSemi-Annual (Targeted) - Provide pilot users and application compatibility testers the opportunity to test the next Semi-Annual.",
- "useMicrosoftSearchAsDefault": "Install background service for Microsoft Search in Bing",
- "useSharedComputerActivationLabel": "Use shared computer activation",
- "useSharedComputerActivationTooltip": "Shared computer activation lets you deploy Microsoft 365 Apps to computers that are used by multiple users. Normally, users can only install and activate Microsoft 365 Apps on a limited number of devices, such as 5 PCs. Using Microsoft 365 Apps with shared computer activation doesn't count against that limit.",
- "versionToInstallLabel": "Version to install",
- "versionToInstallTooltip": "Select the version of Office that should be installed.",
- "xLanguagesSelectedLabel": "{0} language(s) selected",
- "xmlConfigurationLabel": "XML Configuration"
- },
- "OfficeApplicationType": {
- "access": "Access",
- "bing": "Microsoft Search as default",
- "excel": "Excel",
- "groove": "OneDrive (Groove)",
- "lync": "Skype for Business",
- "oneDrive": "OneDrive Desktop",
- "oneNote": "OneNote",
- "outlook": "Outlook",
- "powerPoint": "PowerPoint",
- "publisher": "Publisher",
- "teams": "Teams",
- "word": "Word"
- },
- "WindowsQualityUpdateProfile": {
- "Details": {
- "DaysUntilForcedReboot": {
- "label": "Number of days to wait before restart is enforced"
- },
- "Description": {
- "label": "Description"
- },
- "Name": {
- "label": "Name"
- },
- "QualityUpdateRelease": {
- "label": "Expedite installation of quality updates if device OS version less than:"
- },
- "bladeTitle": "Quality updates Windows 10 and later (Preview)",
- "loadError": "Loading failed!"
- },
- "TabName": {
- "qualityUpdateSettings": "Settings"
- },
- "infoBoxText": "The only dedicated quality update control currently available other than the existing update rings policy for Windows 10 and later is the ability to expedite quality updates for devices that fall behind a specified patch level. Additional controls will be available in the future.",
- "warningBoxText": "While expediting software updates can help decrease the time to get to compliance when necessary, it has a larger impact on end-user productivity. The chances that they will experience a restart during business hours is significantly increased."
- },
- "Devices": {
- "General": {
- "android": "Android"
- },
- "aOSP": "Android open source project",
- "android": "Android device administrator",
- "androidWorkProfile": "Android Enterprise (work profile)",
- "iOS": "iOS/iPadOS",
- "mac": "macOS",
- "windows": "Windows (MDM)",
- "windows10": "Windows 10 and later",
- "windowsHomeSku": "Windows Home Sku",
- "windowsMobile": "Windows Mobile"
- },
"SettingDetails": {
"CustomPolicyConfigurationProfile": {
"uploadControlPlaceHolderText": "Select a configuration profile file"
@@ -3675,7 +1707,7 @@
"aESGCM128": "AES-128-GCM (16-octet ICV)",
"aESGCM256": "AES-256-GCM (16-octet ICV)",
"aadSharedDeviceDataClearAppsDescription": "Add any app not optimized for shared device mode to the list. The app's local data will be cleared whenever a user signs out of an app that's optimized for shared device mode. Available for dedicated devices enrolled with Shared mode running Android 9 and later.",
- "aadSharedDeviceDataClearAppsName": "Clear local data in apps not optimized for Shared device mode (Public Preview)",
+ "aadSharedDeviceDataClearAppsName": "Clear local data in apps not optimized for Shared device mode",
"accountsPageDescription": "Block access to Accounts in Settings app.",
"accountsPageName": "Accounts",
"accountsSignInAssistantSettingsDescription": "Block the Microsoft Sign-in Assistant service (wlidsvc). When this setting is not cofigured, the wlidsvc NT service is controllable by the user (manual start)",
@@ -5503,7 +3535,7 @@
"enableEndUserAccessToDefenderName": "End-user access to Defender",
"enableEngagedRestartDescription": "Enables settings to allow user switch to engaged restart.",
"enableEngagedRestartName": "Allow user to restart (engaged restart)",
- "enableIdentityPrivacyDescription": "This property masks user names with the text you enter. For example, if you type 'anonymous', each user that authenticates with this Wi-Fi connection using their real user name is displayed as 'anonymous'.",
+ "enableIdentityPrivacyDescription": "This property masks user names with the text you enter. For example, if you type 'anonymous', each user that authenticates with this Wi-Fi connection using their real user name is displayed as 'anonymous'. This may be required if using device-based certificate authentication.",
"enableIdentityPrivacyName": "Identity privacy (outer identity)",
"enableNetworkInspectionSystemDescription": "Block malicious traffic detected by signatures in the Network Inspection System (NIS)",
"enableNetworkInspectionSystemName": "Network Inspection System (NIS)",
@@ -7252,6 +5284,8 @@
"presharedKeyEncodingDescription": "Encode preshared keys using UTF-8.",
"presharedKeyEncodingName": "Pre-shared key encoding",
"preventAny": "Prevent any sharing across boundaries",
+ "primaryAuthenticationMethodName": "Primary authentication method",
+ "primaryAuthenticationMethodTEAPDescription": "Choose the primary way you want users to authenticate. When you select Certificates, select one of the certificate profiles (SCEP or PKCS) that is also deployed to the device. This is the identity certificate that is presented by the device to the server.",
"primarySMTPAddressOption": "Primary SMTP Address",
"printersColumns": "e.g. printer DNS name",
"printersDescription": "Automatically provision printers based on their network host names. This setting does not support shared printers.",
@@ -7663,6 +5697,8 @@
"searchEnableRemoteQueriesName": "Remote queries",
"secondActiveEthernet": "Second active Ethernet",
"secondEthernet": "Second Ethernet",
+ "secondaryAuthenticationMethodName": "Secondary authentication method",
+ "secondaryAuthenticationMethodTEAPDescription": "Choose the secondary way you want users to authenticate. When you select Certificates, select one of the certificate profiles (SCEP or PKCS) that is also deployed to the device. This is the identity certificate that is presented by the device to the server.",
"secretKey": "Secret Key:",
"secureBootEnabledDescription": "Require Secure Boot to be enabled on the device",
"secureBootEnabledName": "Require Secure Boot to be enabled on the device",
@@ -8074,6 +6110,7 @@
"systemUpdateWindow9": "4:30 AM",
"systemWindowsBlockedDescription": "Disable window notifications such as toasts, incoming calls, outgoing calls, system alerts, and system errors.",
"systemWindowsBlockedName": "Notification windows",
+ "tEAPName": "Tunnel EAP (TEAP)",
"tLSMinMax": "TLS minimum version must be less than or equal to TLS maximum version.",
"tLSVersionRangeMaximum": "TLS version range maximum",
"tLSVersionRangeMaximumDescription": "Enter a maximum TLS version of 1.0, 1.1, or 1.2. If left blank, a default value of 1.2 will be used.",
@@ -8126,6 +6163,17 @@
"timeWindowSameStartEndDayTime": "End day/time cannot be the same as the start day/time.",
"timeZoneDescription": "Select the time zone for the targeted devices.",
"timeZoneName": "Time zone",
+ "timeoutFifteenMinutes": "15 minutes",
+ "timeoutFiveMinutes": "5 minutes",
+ "timeoutFourHours": "4 hours",
+ "timeoutNever": "Never timeout",
+ "timeoutOneHour": "1 hour",
+ "timeoutOneMinute": "1 minute",
+ "timeoutTenMinutes": "10 minutes",
+ "timeoutThirtyMinutes": "30 minutes",
+ "timeoutThreeMinutes": "3 minutes",
+ "timeoutTwoHours": "2 hours",
+ "timeoutTwoMinutes": "2 minutes",
"toggleConfigurationPkgDescription": "Upload a signed configuration package that will be used to onboard the Microsoft Defender for Endpoint client",
"toggleConfigurationPkgName": "Microsoft Defender for Endpoint client configuration package type:",
"trafficRuleAppName": "App",
@@ -8824,6 +6872,33 @@
"win10WifiWirelessSecurityTypeName": "Wireless Security Type",
"win10WifiWirelessSecurityTypeOpen": "Open (no authentication)",
"win10WifiWirelessSecurityTypeWPA": "WPA/WPA2-Personal",
+ "win10WiredAuthenticationModeDescription": "Choose whether to authenticate the user, the device, either, or to use guest authentication (none). If you’re using certificate authentication, make sure the certificate type matches the authentication type.",
+ "win10WiredAuthenticationModeName": "Authentication Mode",
+ "win10WiredAuthenticationPeriodDescription": "Number of seconds for the client to wait after an authentication attempt before failing. Choose a number between 1 and 3600. Not specifying a value results in 18 seconds being used.",
+ "win10WiredAuthenticationPeriodName": "Authentication period",
+ "win10WiredAuthenticationRetryDelayPeriodDescription": "Number of seconds between a failed authentication and the next authentication attempt. Choose a value between 1 and 3600. Not specifying a value results in 1 second being used.",
+ "win10WiredAuthenticationRetryDelayPeriodName": "Authentication retry delay period ",
+ "win10WiredFIPSComplianceDescription": "Validation against the FIPS 140-2 standard is required for all US federal government agencies that use cryptography-based security systems to protect sensitive but unclassified information stored digitally.",
+ "win10WiredFIPSComplianceName": "Force wired profile to be compliant with the Federal Information Processing Standard (FIPS)",
+ "win10WiredGuest": "Guest",
+ "win10WiredMachine": "Machine",
+ "win10WiredMachineOrUser": "User or machine",
+ "win10WiredMaximumAuthenticationFailuresDescription": "Enter the maximum number of authentication failures for this set of credentials. Not specifying a value results in 1 attempt being used.",
+ "win10WiredMaximumAuthenticationFailuresName": "Maximum authentication failures",
+ "win10WiredMaximumEAPOLStartMessagesDescription": "Choose a number of EAPOL-Start messages between 1 and 100. Not specifying a value results in a maximum of 3 messages being sent.",
+ "win10WiredMaximumEAPOLStartMessagesName": "Maximum EAPOL-start",
+ "win10WiredNetworkAuthenticationBlockPeriodDescription": "Authentication block period in minutes. Used to specify the duration for which automatic authentication attempts will be blocked from occurring after a failed authentication attempt. Choose a value between 0 and 1440.",
+ "win10WiredNetworkAuthenticationBlockPeriodName": "Block period (minutes)",
+ "win10WiredNetworkAuthenticationModeName": "Authentication Mode",
+ "win10WiredNetworkDoNotEnforceName": "Do not enforce",
+ "win10WiredNetworkEnforce8021XDescription": "Specifies whether the automatic configuration service for wired networks requires the use of 802.1X for port authentication.",
+ "win10WiredNetworkEnforce8021XName": "802.1x",
+ "win10WiredNetworkEnforceName": "Enforce",
+ "win10WiredRememberCredentialsDescription": "Choose whether to cache users' credentials when they enter them the first time they connect to the wired network. Cached credentials are used for subsequent connections and the users don't need to re-enter them. Not configuring this setting is equivalent to setting it to yes.",
+ "win10WiredRememberCredentialsName": "Remember credentials at each logon",
+ "win10WiredStartPeriodDescription": "Number of seconds to wait before sending an EAPOL-Start message. Choose a value between 1 and 3600. Not specifying a value results in 5 seconds being used.",
+ "win10WiredStartPeriodName": "Start period",
+ "win10WiredUser": "User",
"win10appLockerApplicationControlAllowDescription": "These apps will be allowed to run",
"win10appLockerApplicationControlAllowName": "Enforce",
"win10appLockerApplicationControlAuditComponentsAndStoreAppsDescription": "\"Audit Only\" mode logs all events in local client event logs, but does not block any apps from running. Windows components and Microsoft Store apps will be logged as passing security requirements.",
@@ -9165,7 +7240,6 @@
"deviceConditionsInfoParagraph2": "Similar device based settings can be configured for enrolled devices.",
"deviceConditionsInfoParagraph2LinkText": "Learn more about configuring device compliance settings for enrolled devices.",
"deviceId": "Device ID",
- "deviceLockComplexityValidationFailureNotes": "Notes:
\n\n - The device lock can require a password complexity of: LOW, MEDIUM, or HIGH targeted to Android 11+. For devices operating on Android 10 and earlier, setting a complexity value of Low/Medium/High will default to the expected behavior for \"Low Complexity\".
\n - The password definitions below are subject to change. Please refer to DevicePolicyManager|Android Developers for the most updated definitions of the different password complexity levels.
\n
\n\nLow
\n\n - Password can be a pattern or PIN with repeating (4444) or ordered (1234, 4321, 2468) sequences.
\n
\n\nMedium
\n\n - PIN with no repeating (4444) or ordered (1234, 4321, 2468) sequences with a minimum length of at least 4 characters
\n - Alphabetic passwords with a minimum length of at least 4 characters
\n - Alphanumeric passwords with a minimum length of at least 4 characters
\n
\n\nHigh
\n\n - PIN with no repeating (4444) or ordered (1234, 4321, 2468) sequences with a minimum length of at least 8 characters
\n - Alphabetic passwords with a minimum length of at least 6 characters
\n - Alphanumeric passwords with a minimum length of at least 6 characters
\n
\n",
"deviceLockedOpenFilesOptionsText": "When device is locked and there are open files",
"deviceLockedOptionText": "When device is locked",
"deviceManufacturer": "Device manufacturer",
@@ -9463,7 +7537,7 @@
"reporting": "Reporting",
"reports": "Reports",
"require": "Require",
- "requireDeviceLockComplexityOnApps": "Require device lock complexity",
+ "requireDeviceLockOnApps": "Require device lock",
"requireThreatScanOnApps": "Require threat scan on apps",
"requiredField": "This field can't be empty",
"requiredSafetyNetEvaluationType": "Required SafetyNet evaluation type",
@@ -9659,6 +7733,7 @@
"yourDataIsBeingDownloadedEllipsis": "Your data is being downloaded, this can take a while...",
"yourDataIsBeingDownloadedMinutes": "Your data is being downloaded, this can take a few minutes...",
"yourProtectionLevel": "Your protection level",
+ "rules": "Rules",
"basics": "Basics",
"modeTableHeader": "Group mode",
"appAssignmentMsg": "Group",
@@ -9695,221 +7770,2042 @@
"licenseTypeDevice": "Device",
"licenseTypeUser": "User"
},
- "Languages": {
- "ar-aE": "Arabic (U.A.E.)",
- "ar-bH": "Arabic (Bahrain)",
- "ar-dZ": "Arabic (Algeria)",
- "ar-eG": "Arabic (Egypt)",
- "ar-iQ": "Arabic (Iraq)",
- "ar-jO": "Arabic (Jordan)",
- "ar-kW": "Arabic (Kuwait)",
- "ar-lB": "Arabic (Lebanon)",
- "ar-lY": "Arabic (Libya)",
- "ar-mA": "Arabic (Morocco)",
- "ar-oM": "Arabic (Oman)",
- "ar-qA": "Arabic (Qatar)",
- "ar-sA": "Arabic (Saudi Arabia)",
- "ar-sY": "Arabic (Syria)",
- "ar-tN": "Arabic (Tunisia)",
- "ar-yE": "Arabic (Yemen)",
- "az-cyrl": "Azerbaijani (Cyrillic, Azerbaijan)",
- "az-latn": "Azerbaijani (Latin, Azerbaijan)",
- "bn-bD": "Bangla (Bangladesh)",
- "bn-iN": "Bangla (India)",
- "bs-cyrl": "Bosnian (Cyrillic)",
- "bs-latn": "Bosnian (Latin)",
- "zh-cN": "Chinese (PRC)",
- "zh-hK": "Chinese (Hong Kong S.A.R.)",
- "zh-mO": "Chinese (Macao S.A.R.)",
- "zh-sG": "Chinese (Singapore)",
- "zh-tW": "Chinese (Taiwan)",
- "hr-bA": "Croatian (Latin)",
- "hr-hR": "Croatian (Croatia)",
- "nl-bE": "Dutch (Belgium)",
- "nl-nL": "Dutch (Netherlands)",
- "en-aU": "English (Australia)",
- "en-bZ": "English (Belize)",
- "en-cA": "English (Canada)",
- "en-cabn": "English (Caribbean)",
- "en-iE": "English (Ireland)",
- "en-iN": "English (India)",
- "en-jM": "English (Jamaica)",
- "en-mY": "English (Malaysia)",
- "en-nZ": "English (New Zealand)",
- "en-pH": "English (Republic of the Philippines)",
- "en-sG": "English (Singapore)",
- "en-tT": "English (Trinidad and Tobago)",
- "en-uK": "English (United Kingdom)",
- "en-uS": "English (United States)",
- "en-zA": "English (South Africa)",
- "en-zW": "English (Zimbabwe)",
- "fr-bE": "French (Belgium)",
- "fr-cA": "French (Canada)",
- "fr-cH": "French (Switzerland)",
- "fr-fR": "French (France)",
- "fr-lU": "French (Luxembourg)",
- "fr-mC": "French (Monaco)",
- "de-aT": "German (Austria)",
- "de-cH": "German (Switzerland)",
- "de-dE": "German (Germany)",
- "de-lI": "German (Liechtenstein)",
- "de-lU": "German (Luxembourg)",
- "iu-cans": "Inuktitut (Syllabics, Canada)",
- "iu-latn": "Inuktitut (Latin, Canada)",
- "it-cH": "Italian (Switzerland)",
- "it-iT": "Italian (Italy)",
- "ms-bN": "Malay (Brunei Darussalam)",
- "ms-mY": "Malay (Malaysia)",
- "mn-cN": "Mongolian (Traditional Mongolian, PRC)",
- "mn-mN": "Mongolian (Cyrillic, Mongolia)",
- "no-nB": "Norwegian, Bokmål (Norway)",
- "no-nn": "Norwegian, Nynorsk (Norway)",
- "pt-bR": "Portuguese (Brazil)",
- "pt-pT": "Portuguese (Portugal)",
- "quz-bO": "Quechua (Bolivia)",
- "quz-eC": "Quechua (Ecuador)",
- "quz-pE": "Quechua (Peru)",
- "smj-nO": "Sami, Lule (Norway)",
- "smj-sE": "Sami, Lule (Sweden)",
- "se-fI": "Sami, Northern (Finland)",
- "se-nO": "Sami, Northern (Norway)",
- "se-sE": "Sami, Northern (Sweden)",
- "sma-nO": "Sami, Southern (Norway)",
- "sma-sE": "Sami, Southern (Sweden)",
- "smn": "Sami, Inari (Finland)",
- "sms": "Sami, Skolt (Finland)",
- "sr-Cyrl-bA": "Serbian (Cyrillic)",
- "sr-Cyrl-rS": "Serbian (Cyrillic, Serbia and Montenegro)",
- "sr-Latn-bA": "Serbian (Latin)",
- "sr-Latn-rS": "Serbian (Latin, Serbia)",
- "dsb": "Lower Sorbian (Germany)",
- "hsb": "Upper Sorbian (Germany)",
- "es-es-tradnl": "Spanish (Spain, Traditional Sort)",
- "es-aR": "Spanish (Argentina)",
- "es-bO": "Spanish (Bolivia)",
- "es-cL": "Spanish (Chile)",
- "es-cO": "Spanish (Colombia)",
- "es-cR": "Spanish (Costa Rica)",
- "es-dO": "Spanish (Dominican Republic)",
- "es-eC": "Spanish (Ecuador)",
- "es-eS": "Spanish (Spain)",
- "es-gT": "Spanish (Guatemala)",
- "es-hN": "Spanish (Honduras)",
- "es-mX": "Spanish (Mexico)",
- "es-nI": "Spanish (Nicaragua)",
- "es-pA": "Spanish (Panama)",
- "es-pE": "Spanish (Peru)",
- "es-pR": "Spanish (Puerto Rico)",
- "es-pY": "Spanish (Paraguay)",
- "es-sV": "Spanish (El Salvador)",
- "es-uS": "Spanish (United States)",
- "es-uY": "Spanish (Uruguay)",
- "es-vE": "Spanish (Venezuela)",
- "sv-fI": "Swedish (Finland)",
- "uz-cyrl": "Uzbek (Cyrillic, Uzbekistan)",
- "uz-latn": "Uzbek (Latin, Uzbekistan)",
- "af": "Afrikaans (South Africa)",
- "sq": "Albanian (Albania)",
- "am": "Amharic (Ethiopia)",
- "hy": "Armenian (Armenia)",
- "as": "Assamese (India)",
- "ba": "Bashkir (Russia)",
- "eu": "Basque (Basque)",
- "be": "Belarusian (Belarus)",
- "br": "Breton (France)",
- "bg": "Bulgarian (Bulgaria)",
- "ca": "Catalan (Catalan)",
- "co": "Corsican (France)",
- "cs": "Czech (Czech Republic)",
- "da": "Danish (Denmark)",
- "prs": "Dari (Afghanistan)",
- "dv": "Divehi (Maldives)",
- "et": "Estonian (Estonia)",
- "fo": "Faroese (Faroe Islands)",
- "fil": "Filipino (Philippines)",
- "fi": "Finnish (Finland)",
- "gl": "Galician (Galician)",
- "ka": "Georgian (Georgia)",
- "el": "Greek (Greece)",
- "gu": "Gujarati (India)",
- "ha": "Hausa (Latin, Nigeria)",
- "he": "Hebrew (Israel)",
- "hi": "Hindi (India)",
- "hu": "Hungarian (Hungary)",
- "is": "Icelandic (Iceland)",
- "ig": "Igbo (Nigeria)",
- "id": "Indonesian (Indonesia)",
- "ga": "Irish (Ireland)",
- "xh": "isiXhosa (South Africa)",
- "zu": "isiZulu (South Africa)",
- "ja": "Japanese (Japan)",
- "kn": "Kannada (India)",
- "kk": "Kazakh (Kazakhstan)",
- "km": "Khmer (Cambodia)",
- "rw": "Kinyarwanda (Rwanda)",
- "sw": "Kiswahili (Kenya)",
- "kok": "Konkani (India)",
- "ko": "Korean (Korea)",
- "ky": "Kyrgyz (Kyrgyzstan)",
- "lo": "Lao (Lao P.D.R.)",
- "lv": "Latvian (Latvia)",
- "lt": "Lithuanian (Lithuania)",
- "lb": "Luxembourgish (Luxembourg)",
- "mk": "Macedonian (North Macedonia)",
- "ml": "Malayalam (India)",
- "mt": "Maltese (Malta)",
- "mi": "Maori (New Zealand)",
- "mr": "Marathi (India)",
- "moh": "Mohawk (Mohawk)",
- "ne": "Nepali (Nepal)",
- "oc": "Occitan (France)",
- "or": "Odia (India)",
- "ps": "Pashto (Afghanistan)",
- "fa": "Persian",
- "pl": "Polish (Poland)",
- "pa": "Punjabi (India)",
- "ro": "Romanian (Romania)",
- "rm": "Romansh (Switzerland)",
- "ru": "Russian (Russia)",
- "sa": "Sanskrit (India)",
- "st": "Sesotho sa Leboa (South Africa)",
- "tn": "Setswana (South Africa)",
- "si": "Sinhala (Sri Lanka)",
- "sk": "Slovak (Slovakia)",
- "sl": "Slovenian (Slovenia)",
- "sv": "Swedish (Sweden)",
- "syr": "Syriac (Syria)",
- "tg": "Tajik (Cyrillic, Tajikistan)",
- "ta": "Tamil (India)",
- "tt": "Tatar (Russia)",
- "te": "Telugu (India)",
- "th": "Thai (Thailand)",
- "bo": "Tibetan (PRC)",
- "tr": "Turkish (Turkey)",
- "tk": "Turkmen (Turkmenistan)",
- "uk": "Ukrainian (Ukraine)",
- "ur": "Urdu (Islamic Republic of Pakistan)",
- "vi": "Vietnamese (Vietnam)",
- "cy": "Welsh (United Kingdom)",
- "wo": "Wolof (Senegal)",
- "ii": "Yi (PRC)",
- "yo": "Yoruba (Nigeria)"
- },
- "AppProtection": {
- "allAppTypes": "Target to all app types",
- "androidPlatformLabel": "Android",
- "appsInAndroidWorkProfile": "Apps in Android Work Profile",
- "appsOnIntuneManagedDevices": "Apps on Intune managed devices",
- "appsOnUnmanagedDevices": "Apps on unmanaged devices",
- "iOSPlatformLabel": "iOS/iPadOS",
- "iosAndroidMacPlatformLabel": "iOS, Android, Mac",
- "iosAndroidPlatformLabel": "iOS, Android",
- "macPlatformLabel": "Mac",
- "notAvailable": "Not Available",
- "windows10PlatformLabel": "Windows 10 and later",
- "withEnrollment": "With enrollment",
- "withoutEnrollment": "Without enrollment"
- },
+ "ApplicabilityRules": {
+ "GridLabel": {
+ "property": "Property",
+ "rule": "Rule",
+ "ruleDetails": "Rule Details",
+ "value": "Value"
+ },
+ "assignIf": "Assign profile if",
+ "deleteWarning": "This will delete the selected Applicability Rule",
+ "dontAssignIf": "Don't assign profile if",
+ "editionDisplayText": "{0} {1}",
+ "editionDisplayTextMore": "and {0} more",
+ "instructions": "Specify how to apply this profile within an assigned group. Intune will only apply the profile to devices that meet the combined criteria of these rules.",
+ "maxText": "Max",
+ "minText": "Min",
+ "noActionRow": "No Applicability Rules Specified",
+ "oSVersion": "e.g. 1.2.3.4",
+ "toText": "to",
+ "windows10Education": "Windows 10/11 Education",
+ "windows10EducationN": "Windows 10/11 Education N",
+ "windows10Enterprise": "Windows 10/11 Enterprise",
+ "windows10EnterpriseN": "Windows 10/11 Enterprise N",
+ "windows10HolographicEnterprise": "Windows 10 Holographic for Business",
+ "windows10Home": "Windows 10/11 Home",
+ "windows10HomeChina": "Windows 10 Home China",
+ "windows10HomeN": "Windows 10/11 Home N",
+ "windows10HomeSingleLanguage": "Windows 10/11 Home Single Language",
+ "windows10IoTCore": "Windows 10 IoT Core",
+ "windows10IoTCoreCommercial": "Windows 10 IoT Core Commercial",
+ "windows10Mobile": "Windows 10 Mobile",
+ "windows10MobileEnterprise": "Windows 10 Mobile Enterprise",
+ "windows10OsEdition": "OS edition",
+ "windows10OsVersion": "OS version",
+ "windows10Professional": "Windows 10/11 Professional",
+ "windows10ProfessionalEducation": "Windows 10/11 Professional Education",
+ "windows10ProfessionalEducationN": "Windows 10/11 Professional Education N",
+ "windows10ProfessionalN": "Windows 10 Professional N",
+ "windows10ProfessionalWorkstation": "Windows 10/11 Professional Workstation",
+ "windows10ProfessionalWorkstationN": "Windows 10/11 Professional Workstation N"
+ },
+ "DetectionRules": {
+ "ComparisonOperators": {
+ "equals": "Equals",
+ "greaterThan": "Greater than",
+ "greaterThanOrEqualTo": "Greater than or equal to",
+ "lessThan": "Less than",
+ "lessThanOrEqualTo": "Less than or equal to",
+ "notEqualTo": "Not equal to"
+ },
+ "CustomScript": {
+ "enforceSignatureCheck": "Enforce script signature check and run script silently",
+ "enforceSignatureCheckTooltip": "Select 'Yes' to verify that the script is signed by a trusted publisher, which will allow the script to run with no warnings or prompts displayed. The script will run unblocked. Select 'No' (default) to run the script with end-user confirmation without signature verification.",
+ "header": "Use a custom detection script",
+ "runAs32Bit": "Run script as 32-bit process on 64-bit clients",
+ "runAs32BitTooltip": "Select 'Yes' to run the script in a 32-bit process on 64-bit clients. Select 'No' (default) to run the script in a 64-bit process on 64-bit clients. 32-bit clients run the script in a 32-bit process.",
+ "scriptFile": "Script file",
+ "scriptFileNotSelectedValidation": "No script file is selected.",
+ "scriptFileTooltip": "Select a PowerShell script that will detect the presence of the app on the client. The app will be detected when the script both returns a 0 value exit code and writes a string value to STDOUT.",
+ "scriptSizeLimitValidation": "Your detection script exceeds the maximum size allowed. Resolve this by reducing the size of your detection script."
+ },
+ "Manual": {
+ "FileRule": {
+ "DetectionMethodOptions": {
+ "dateCreated": "Date created",
+ "dateModified": "Date modified",
+ "doesNotExist": "File or folder does not exist",
+ "fileOrFolderExists": "File or folder exists",
+ "sizeInMB": "Size in MB",
+ "version": "String (version)"
+ },
+ "associatedWith32Bit": "Associated with a 32-bit app on 64-bit clients",
+ "associatedWith32BitTooltip": "Select 'Yes' to expand any path environment variables in the 32-bit context on 64-bit clients. Select 'No' (default) to expand any path variables in the 64-bit context on 64-bit clients. 32-bit clients will always use the 32-bit context.",
+ "detectionMethod": "Detection method",
+ "detectionMethodTooltip": "Select the type of detection method used to validate the presence of the app.",
+ "fileOrFolder": "File or folder",
+ "fileOrFolderToolTip": "The file or folder to detect.",
+ "operator": "Operator",
+ "operatorTooltip": "Select the operator for the detection method used to validate the comparison.",
+ "path": "Path",
+ "pathTooltip": "The full path of the folder containing the file or folder to detect.",
+ "value": "Value",
+ "valueTooltip": "Select a value that matches the selected detection method. Date detection methods should be entered in local time."
+ },
+ "GridColumns": {
+ "pathOrCode": "Path/Code",
+ "type": "Type"
+ },
+ "MsiRule": {
+ "operator": "Operator",
+ "operatorTooltip": "Select the operator for the MSI product version validation comparison.",
+ "productCode": "MSI product code",
+ "productCodeTooltip": "A valid MSI product code for the app.",
+ "productVersion": "Value",
+ "productVersionCheck": "MSI product version check",
+ "productVersionCheckTooltip": "Select 'Yes' to verify the MSI product version in addition to the MSI product code.",
+ "productVersionTooltip": "Enter the MSI product version for the app."
+ },
+ "RegistryRule": {
+ "DetectionMethodOptions": {
+ "integerComparison": "Integer comparison",
+ "keyDoesNotExist": "Key does not exist",
+ "keyExists": "Key exists",
+ "stringComparison": "String comparison",
+ "valueDoesNotExist": "Value does not exist",
+ "valueExists": "Value exists",
+ "versionComparison": "Version comparison"
+ },
+ "associatedWith32Bit": "Associated with a 32-bit app on 64-bit clients",
+ "associatedWith32BitTooltip": "Select 'Yes' to search the 32-bit registry on 64-bit clients. Select 'No' (default) search the 64-bit registry on 64-bit clients. 32-bit clients will always search the 32-bit registry.",
+ "detectionMethod": "Detection method",
+ "detectionMethodTooltip": "Select the type of detection method used to validate the presence of the app.",
+ "keyPath": "Key path",
+ "keyPathTooltip": "The full path of the registry entry containing the value to detect.",
+ "operator": "Operator",
+ "operatorTooltip": "Select the operator for the detection method used to validate the comparison.",
+ "value": "Value",
+ "valueName": "Value name",
+ "valueNameTooltip": "The name of the registry value to detect.",
+ "valueTooltip": "Select a value that matches the selected detection method."
+ },
+ "RuleTypeOptions": {
+ "file": "File",
+ "mSI": "MSI",
+ "registry": "Registry"
+ },
+ "gridAriaLabel": "Detection Rules",
+ "header": "Create a rule that indicates the presence of the app.",
+ "noRulesSelectedPlaceholder": "No rules are specified.",
+ "ruleTableLimit": "You can add up to 25 detection rules",
+ "ruleType": "Rule type",
+ "ruleTypeTooltip": "Choose the type of detection rule to add."
+ },
+ "RuleConfigurationOptions": {
+ "customScript": "Use a custom detection script",
+ "manual": "Manually configure detection rules"
+ },
+ "bladeTitle": "Detection rules",
+ "header": "Configure app specific rules used to detect the presence of the app.",
+ "rulesFormat": "Rules format",
+ "rulesFormatTooltip": "Choose to either manually configure the detection rules or use a custom script to detect the presence of the app.",
+ "selectorLabel": "Detection rules"
+ },
+ "PolicyType": {
+ "AttackSurfaceReductionRules": {
+ "configMgr": "Attack Surface Reduction Rules (ConfigMgr)"
+ },
+ "EndpointDetectionandResponse": {
+ "mDE": "Endpoint detection and response"
+ },
+ "EndpointSecurityTemplate": {
+ "aSRAppBrowserSecurity": "App and browser isolation",
+ "aSRApplicationControl": "Application control",
+ "aSRAttackSurfaceReduction": "Attack surface reduction rules",
+ "aSRDeviceControl": "Device control",
+ "aSRExploitProtection": "Exploit protection",
+ "aSRWebProtection": "Web protection (Microsoft Edge Legacy)",
+ "aVExclusions": "Microsoft Defender Antivirus exclusions",
+ "antivirus": "Microsoft Defender Antivirus",
+ "cloudPC": "Windows 365 Security Baseline",
+ "default": "Endpoint Security",
+ "defenderTest": "Microsoft Defender for Endpoint demo",
+ "diskEncryption": "BitLocker",
+ "eDR": "Endpoint detection and response",
+ "edgeSecurityBaseline": "Microsoft Edge baseline",
+ "edgeSecurityBaselinePreview": "Preview: Microsoft Edge baseline",
+ "editionUpgradeConfiguration": "Edition upgrade and mode switch",
+ "firewall": "Microsoft Defender Firewall",
+ "firewallRules": "Microsoft Defender Firewall rules",
+ "identityProtection": "Account protection",
+ "identityProtectionPreview": "Account protection (Preview)",
+ "mDMSecurityBaseline1810": "MDM Security Baseline for Windows 10 and later for October 2018",
+ "mDMSecurityBaseline1810Preview": "Preview: MDM Security Baseline for Windows 10 and later for October 2018",
+ "mDMSecurityBaseline1810PreviewBeta": "Preview: MDM Security Baseline for Windows 10 for October 2018 (beta)",
+ "mDMSecurityBaseline1906": "MDM Security Baseline for Windows 10 and later for May 2019",
+ "mDMSecurityBaseline2004": "MDM Security Baseline for Windows 10 and later for August 2020",
+ "mDMSecurityBaseline2101": "MDM Security Baseline for Windows 10 and later Decemeber 2020",
+ "macOSAntivirus": "Antivirus",
+ "macOSDiskEncryption": "FileVault",
+ "macOSFirewall": "macOS firewall",
+ "microsoftDefenderBaseline": "Microsoft Defender for Endpoint baseline",
+ "office365Baseline": "Microsoft Office O365 baseline",
+ "office365BaselinePreview": "Preview: Microsoft Office O365 baseline",
+ "securityBaselines": "Security Baselines",
+ "test": "Test Template",
+ "testFirewallRulesSecurityTemplateName": "Microsoft Defender Firewall rules (Test)",
+ "testIdentityProtectionSecurityTemplateName": "Account protection (Test)",
+ "windowsSecurityExperience": "Windows Security experience"
+ },
+ "Firewall": {
+ "mDE": "Microsoft Defender Firewall"
+ },
+ "FirewallRules": {
+ "mDE": "Microsoft Defender Firewall Rules"
+ },
+ "administrativeTemplates": "Administrative Templates",
+ "androidCompliancePolicy": "Android compliance policy",
+ "aospDeviceOwnerCompliancePolicy": "Android (AOSP) compliance policy",
+ "applicationControl": "Application Control",
+ "custom": "Custom",
+ "deliveryOptimization": "Delivery Optimization",
+ "derivedPersonalIdentityVerificationCredential": "Derived credential",
+ "deviceFeatures": "Device features",
+ "deviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
+ "deviceLock": "Device Lock",
+ "deviceOwner": "Fully managed, dedicated, and corporate-owned work profile",
+ "deviceRestrictions": "Device restrictions",
+ "deviceRestrictionsWindows10Team": "Device restrictions (Windows 10 Team)",
+ "domainJoinPreview": "Domain Join",
+ "editionUpgradeAndModeSwitch": "Edition upgrade and mode switch",
+ "education": "Education",
+ "email": "Email",
+ "emailSamsungKnoxOnly": "Email (Samsung KNOX only)",
+ "endpointProtection": "Endpoint protection",
+ "expeditedCheckin": "Mobile device management configuration",
+ "exploitProtection": "Exploit Protection",
+ "extensions": "Extensions",
+ "hardwareConfigurations": "BIOS Configurations",
+ "identityProtection": "Identity protection",
+ "iosCompliancePolicy": "iOS compliance policy",
+ "kiosk": "Kiosk",
+ "macCompliancePolicy": "Mac compliance policy",
+ "microsoftDefenderAntivirus": "Microsoft Defender Antivirus",
+ "microsoftDefenderAntivirusexclusions": "Microsoft Defender Antivirus exclusions",
+ "microsoftDefenderAtpWindows10Desktop": "Microsoft Defender for Endpoint (desktop devices running Windows 10 or later)",
+ "microsoftDefenderFirewallRules": "Microsoft Defender Firewall Rules",
+ "microsoftEdgeBaseline": "Microsoft Edge Baseline",
+ "mxProfileZebraOnly": "MX profile (Zebra only)",
+ "networkBoundary": "Network boundary",
+ "oemConfig": "OEMConfig",
+ "overrideGroupPolicy": "Override Group Policy",
+ "pkcsCertificate": "PKCS certificate",
+ "pkcsImportedCertificate": "PKCS imported certificate",
+ "preferenceFile": "Preference file",
+ "presets": "Presets",
+ "scepCertificate": "SCEP certificate",
+ "secureAssessmentEducation": "Secure assessment (Education)",
+ "settingsCatalog": "Settings Catalog",
+ "sharedMultiUserDevice": "Shared multi-user device",
+ "softwareUpdates": "Software Updates",
+ "trustedCertificate": "Trusted certificate",
+ "unknown": "Unknown",
+ "unsupported": "Unsupported",
+ "vpn": "VPN",
+ "wiFi": "Wi-Fi",
+ "wiFiImport": "Wi-Fi import",
+ "windows10CompliancePolicy": "Windows 10/11 compliance policy",
+ "windows10MobileCompliancePolicy": "Windows 10 mobile compliance policy",
+ "windows10XScep": "SCEP certificate - TEST",
+ "windows10XTrustedCertificate": "Trusted certificate - TEST",
+ "windows10XVPN": "VPN - TEST",
+ "windows10XWifi": "WIFI - TEST",
+ "windows8CompliancePolicy": "Windows 8 compliance policy",
+ "windowsHealthMonitoring": "Windows health monitoring",
+ "windowsInformationProtection": "Windows Information Protection",
+ "windowsPhoneCompliancePolicy": "Windows Phone compliance policy",
+ "windowsUpdateforBusiness": "Windows Update for Business",
+ "wiredNetwork": "Wired network",
+ "workProfile": "Personally-owned work profile"
+ },
+ "Win32Requirements": {
+ "AdditionalRequirements": {
+ "File": {
+ "fileOrFolderToolTip": "The file or folder as the selected requirement.",
+ "pathToolTip": "The complete path of the file or folder to detect.",
+ "property": "Property",
+ "valueToolTip": "Select a requirement value that matches the selected detection method. Date and time requirement should be entered in your local format."
+ },
+ "GridColumns": {
+ "pathOrScript": "Path/Script",
+ "type": "Type"
+ },
+ "Registry": {
+ "keyPath": "Key path",
+ "keyPathTooltip": "The full path of the registry entry containing the value as a requirement.",
+ "operator": "Operator",
+ "operatorTooltip": "Select the operator for the comparison.",
+ "registryRequirement": "Registry key requirement",
+ "registryRequirementTooltip": "Select the registry key requirement comparison.",
+ "valueName": "Value name",
+ "valueNameTooltip": "The name of the required registry value."
+ },
+ "RequirementTypeOptions": {
+ "fileType": "File",
+ "registry": "Registry",
+ "script": "Script"
+ },
+ "Script": {
+ "RequirementMethodOptions": {
+ "boolean": "Boolean",
+ "dateTime": "Date and Time",
+ "float": "Floating Point",
+ "integer": "Integer",
+ "string": "String",
+ "version": "Version"
+ },
+ "ScriptContent": {
+ "emptyMessage": "Script content should not be empty."
+ },
+ "duplicateName": "Script name {0} has already been used. Please enter a different name.",
+ "enforceSignatureCheck": "Enforce script signature check",
+ "enforceSignatureCheckTooltip": "Select ‘Yes’ to verify that the script is signed by a trusted publisher, which will allow the script to run without warnings or prompts. The script will run unblocked. Select ‘No’ (default) to run the script with end-user confirmation, but without signature verification.",
+ "loggedOnCredentials": "Run this script using the logged on credentials",
+ "loggedOnCredentialsTooltip": "Run script using the signed in device credentials.",
+ "operatorTooltip": "Select the operator for the requirement comparison.",
+ "requirementMethod": "Select output data type",
+ "requirementMethodTooltip": "Select the data type used when determining a detection match requirement.",
+ "scriptFile": "Script file",
+ "scriptFileTooltip": "Select a PowerShell script that will detect the presence of the app on the client. If the app is detected, the requirement process will provide a 0 value exit code and will write a string value to STDOUT.",
+ "scriptName": "Script name",
+ "value": "Value",
+ "valueTooltip": "Select a requirement value that matches the selected detection method. Date and time requirement should be entered in your local format."
+ },
+ "bladeTitle": "Add a Requirement rule",
+ "createRequirementHeader": "Create a requirement.",
+ "header": "Configure additional requirement rules",
+ "label": "Additional requirement rules",
+ "noRequirementsSelectedPlaceholder": "No requirements are specified.",
+ "requirementType": "Requirement type",
+ "requirementTypeTooltip": "Choose the type of detection method used to determine how a requirement is validated."
+ },
+ "architectures": "Operating system architecture",
+ "architecturesTooltip": "Choose the architectures needed to install the app.",
+ "bladeTitle": "Requirements",
+ "diskSpace": "Disk space required (MB)",
+ "diskSpaceTooltip": "Free disk space needed on the system drive to install the app.",
+ "header": "Specify the requirements that devices must meet before the app is installed:",
+ "maximumTextFieldValue": "The value must be at most {0}.",
+ "minimumCpuSpeed": "Minimum CPU speed required (MHz)",
+ "minimumCpuSpeedTooltip": "The minimum CPU speed required to install the app.",
+ "minimumLogicalProcessors": "Minimum number of logical processors required",
+ "minimumLogicalProcessorsTooltip": "The minimum number of logical processors required to install the app.",
+ "minimumOperatingSystem": "Minimum operating system",
+ "minimumOperatingSystemTooltip": "Select the minimum operating system needed to install the app.",
+ "minumumTextFieldValue": "The value must be at least {0}.",
+ "physicalMemory": "Physical memory required (MB)",
+ "physicalMemoryTooltip": "Physical memory (RAM) required to install the app.",
+ "selectorLabel": "Requirements",
+ "validNumber": "Please enter a valid number."
+ },
+ "AzureIAM": {
+ "AdrsUserActionSelectionWarning": {
+ "conditions": "Conditions that require device registration are not available with \"Register or join devices\" user action.",
+ "message": "Only \"Require multi-factor authentication\" can be used in policies created for the \"Register or join devices\" user action.{0}"
+ },
+ "AuthContext": {
+ "Delete": {
+ "failure": "Failed to delete {0}",
+ "failureCa": "Failed to delete {0} because it is referenced by CA policies",
+ "modifying": "Deleting {0}",
+ "success": "Successfully deleted {0}"
+ },
+ "Included": {
+ "none": "No cloud apps, actions, or authentication contexts selected",
+ "plural": "{0} authentication contexts included",
+ "singular": "1 authentication context included"
+ },
+ "InfoBlade": {
+ "createTitle": "Add authentication context",
+ "descPlaceholder": "Add description for the authentication context",
+ "modifyTitle": "Modify authentication context",
+ "namePlaceholder": "Ex. Trusted location, Trusted device, Strong authorization",
+ "publishDesc": "Publish to apps will make the authentication context available for apps to use. Publish once you finish configuring Conditional Access policy for the tag. [Learn more][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150966",
+ "publishLabel": "Publish to apps",
+ "titleDesc": "Configure an authentication context that will be used to protect application data and actions. Use names and descriptions that can be understood by application administrators. [Learn more][1]\n[1]:https://go.microsoft.com/fwlink/?linkid=2150965"
+ },
+ "Notify": {
+ "failure": "Failed to update {0}",
+ "modifying": "Modifying {0}",
+ "success": "Successfully updated {0}"
+ },
+ "WhatIf": {
+ "selected": "Authentication context included"
+ },
+ "addNewStepUp": "New authentication context",
+ "checkBoxInfo": "Select the authentication contexts this policy will apply to",
+ "configure": "Configure authentication contexts",
+ "createCA": "Assign Conditional Access policies to the authentication context",
+ "dataGrid": "List of authentication contexts",
+ "deleteFailedByReference": "You cannot delete this authentication context because it is being referenced by CA policies.",
+ "description": "Description",
+ "documentation": "Documentation",
+ "getStarted": "Get started",
+ "label": "Authentication context (preview)",
+ "menuLabel": "Authentication context (Preview)",
+ "name": "Name",
+ "noAuthContextConfigured": "No authentication contexts have been configured.",
+ "noAuthContextSet": "There are no authentication contexts",
+ "noData": "No authentication contexts to display",
+ "selectionInfo": "Authentication context is used to secure application data and actions in apps like SharePoint and Microsoft Cloud App Security.",
+ "step": "Step",
+ "tabDescription": "Manage authentication context to protect data and actions in your apps. [Learn more][1]\n[1]:https://go.microsoft.com/fwlink/?linkid=2150965",
+ "tagResources": "Tag resources with an authentication context"
+ },
+ "AuthenticationStrength": {
+ "Mode": {
+ "deviceBasedPush": "Microsoft Authenticator (Phone Sign-in)",
+ "deviceBasedPushFido2X509Certificate": "Microsoft Authenticator (Phone Sign-in) + Fido 2 + Certificate Based Authentication",
+ "deviceBasedPushX509CertificateSingleFactor": "Microsoft Authenticator (Phone Sign-in) + Fido 2 + Certificate Based Authentication (Single Factor)",
+ "email": "Email one-time passcode",
+ "emailOtp": "Email one-time passcode",
+ "federatedMultiFactor": "Federated Multi-Factor",
+ "federatedSingleFactor": "Federated single factor",
+ "federatedSingleFactorFederatedMultiFactor": "Federated single factor + Federated Multi-Factor",
+ "fido2": "FIDO 2 security key",
+ "fido2X509CertificateSingleFactor": "FIDO 2 security key + Certificate Based Authentication (Single Factor)",
+ "hardwareOath": "Hardware OATH tokens",
+ "hardwareOathEmail": "Hardware OATH tokens + Email one-time passcode",
+ "hardwareOathX509CertificateSingleFactor": "Hardware OATH tokens + Certificate Based Authentication (Single Factor)",
+ "microsoftAuthenticatorPSIX509CertificateSingleFactor": "Microsoft Authenticator (Phone Sign-in) + Certificate Based Authentication (Single Factor)",
+ "microsoftAuthenticatorPsi": "Microsoft Authenticator (Phone Sign-in)",
+ "microsoftAuthenticatorPush": "Microsoft Authenticator (Push Notification)",
+ "microsoftAuthenticatorPushEmail": "Microsoft Authenticator (Push Notification) + Email one-time passcode",
+ "microsoftAuthenticatorPushX509CertificateSingleFactor": "Microsoft Authenticator (Push Notification) + Certificate Based Authentication (Single Factor)",
+ "none": "None",
+ "password": "Password",
+ "passwordDeviceBasedPush": "Password + Microsoft Authenticator (Phone Sign-in)",
+ "passwordFido2": "Password + FIDO 2 security key",
+ "passwordHardwareOath": "Password + Hardware OATH tokens",
+ "passwordMicrosoftAuthenticatorPSI": "Password + Microsoft Authenticator (Phone Sign-in)",
+ "passwordMicrosoftAuthenticatorPush": "Password + Microsoft Authenticator (Push Notification)",
+ "passwordSms": "Password + SMS",
+ "passwordSoftwareOath": "Password + Software OATH tokens",
+ "passwordTemporaryAccessPassMultiUse": "Password + Temporary Access Pass (Multi-use)",
+ "passwordTemporaryAccessPassOneTime": "Password + Temporary Access Pass (One-time use)",
+ "passwordVoice": "Password + Voice",
+ "sms": "SMS",
+ "smsEmail": "SMS + Email one-time passcode",
+ "smsSignIn": "SMS sign in",
+ "smsX509CertificateSingleFactor": "SMS + Certificate Based Authentication (Single Factor)",
+ "softwareOath": "Software OATH tokens",
+ "softwareOathEmail": "Software OATH tokens + Email one-time passcode",
+ "softwareOathX509CertificateSingleFactor": "Software OATH tokens + Certificate Based Authentication (Single Factor)",
+ "temporaryAccessPassMultiUse": "Temporary Access Pass (Multi-use)",
+ "temporaryAccessPassMultiUseX509CertificateSingleFactor": "Temporary Access Pass (Multi-use) + Certificate Based Authentication (Single Factor)",
+ "temporaryAccessPassOneTime": "Temporary Access Pass (One-time use)",
+ "temporaryAccessPassOneTimeX509CertificateSingleFactor": "Temporary Access Pass (One-time use) + Certificate Based Authentication (Single Factor)",
+ "voice": "Voice",
+ "voiceEmail": "Voice + Email one-time passcode",
+ "voiceX509CertificateSingleFactor": "Voice + Certificate Based Authentication (Single Factor)",
+ "windowsHelloForBusiness": "Windows Hello For Business",
+ "x509CertificateMultiFactor": "Certificate Based Authentication (Multi-Factor)",
+ "x509CertificateSingleFactor": "Certificate Based Authentication (Single Factor)"
+ }
+ },
+ "CAS": {
+ "BuiltinPolicy": {
+ "Option": {
+ "blockDownloads": "Block downloads (Preview)",
+ "monitorOnly": "Monitor only (Preview)",
+ "protectDownloads": "Protect downloads (Preview)",
+ "useCustomControls": "Use custom policy..."
+ },
+ "ariaLabel": "Choose the kind of Conditional Access App Control to apply"
+ }
+ },
+ "ChooseApplications": {
+ "Grid": {
+ "appIdAria": "App ID: {0}"
+ },
+ "LowerGrid": {
+ "ariaLabel": "List of selected cloud apps"
+ },
+ "UpperGrid": {
+ "ariaLabel": "List of cloud apps which match the search term"
+ }
+ },
+ "ChooseLocations": {
+ "Validation": {
+ "failed": "With \"Selected locations\" you must choose at least one location.",
+ "selector": "Choose at least one location"
+ }
+ },
+ "ClientApp": {
+ "Clients": {
+ "Validation": {
+ "failed": "You must select at least one of the following clients"
+ }
+ }
+ },
+ "ClientConditionsInfo": {
+ "browserAndModern": "This policy only applies to browser and modern authentication apps. To apply the policy to all client apps, enable the client app condition and select all the client apps.",
+ "classicExperience": "Since this policy was created, the default client apps configuration has been updated.",
+ "legacyAuth": "When not configured, policies now apply to all client apps, including modern and legacy auth."
+ },
+ "CloudAppFilterBlade": {
+ "AssignmentFilter": {
+ "header": "Attribute",
+ "placeholder": "Choose an attribute"
+ },
+ "Configure": {
+ "infoBalloon": "Configure app filters you want to policy to apply to."
+ },
+ "NoPermissions": {
+ "learnMoreAria": "More about custom security attribute permissions.",
+ "message": "You do not have the permissions needed to use custom security attributes."
+ },
+ "gridHeader": "Using custom security attributes you can use the rule builder or rule syntax text box to create or edit the filter rules. In the preview, only attributes of type String are supported. Attributes of type Integer or Boolean will not be shown.",
+ "learnMoreAria": "More information about using the rule builder and syntax text box.",
+ "noAttributes": "There are no custom attributes available to filter on. You will need to configure some attributes to employ this filter.",
+ "title": "Edit filter (Preview)"
+ },
+ "CloudAppsUserActions": {
+ "any": "Any cloud app or action",
+ "infoBalloon": "Cloud app or user action you want to test. For example, 'SharePoint Online'",
+ "learnMore": "Control access based on all or specific cloud apps or actions.",
+ "learnMoreB2C": "Control access based on all or specific cloud apps.",
+ "title": "Cloud apps or actions"
+ },
+ "CloudappsSelectionBlade": {
+ "Excluded": {
+ "gridAria": "List of excluded cloud apps"
+ },
+ "Filter": {
+ "configured": "Configured",
+ "label": "Edit filter (Preview)",
+ "with": "{0} with {1}"
+ },
+ "Included": {
+ "gridAria": "List of included cloud apps"
+ },
+ "Validation": {
+ "authContext": "With \"authentication context\" you must configure at least one sub-item.",
+ "selectApps": "\"{0}\" must be configured",
+ "selector": "Select at least one app.",
+ "userActions": "With \"User actions\" you must configure at least one sub-item."
+ }
+ },
+ "DeviceState": {
+ "LearnMore": {
+ "message": "Control user access when the device the user is signing-in from is not \"Hybrid Azure AD joined\" or \"marked as compliant\".\n This has been deprecated. Use '{1}' instead."
+ }
+ },
+ "Errors": {
+ "notFound": "The policy was not found or has been deleted.",
+ "notFoundDetailed": "The policy \"{0}\" no longer exists. It may have been deleted."
+ },
+ "GuestsOrExternalUsers": {
+ "allExternalTenantsLabel": "All Azure AD organizations",
+ "b2bCollaborationGuestLabel": "B2B collaboration guest users",
+ "b2bCollaborationMemberLabel": "B2B collaboration member users",
+ "b2bDirectConnectUserLabel": "B2B direct connect users",
+ "enumeratedExternalTenantsError": "Please select at least one external tenant",
+ "enumeratedExternalTenantsLabel": "Select Azure AD organizations",
+ "externalTenantsLabel": "Specify external Azure AD organizations",
+ "externalUserDropdownLabel": "Choose guest or external user types",
+ "externalUsersError": "Select at least one external guest or user type",
+ "guestOrExternalUsersInfoContent": "Includes B2B Collaboration, B2B direct connect and other types of external users.",
+ "guestOrExternalUsersLabel": "Guest or external users",
+ "internalGuestLabel": "Local guest users",
+ "otherExternalUserLabel": "Other external users"
+ },
+ "NamedLocation": {
+ "Form": {
+ "CountryLookup": {
+ "ariaLabel": "Country lookup method",
+ "gps": "Determine location by GPS coordinates",
+ "info": "When the location condition of a Conditional Access policy is configured, users will be prompted by the Authenticator app to share their GPS location. ",
+ "ip": "Determine location by IP address (IPv4 only)"
+ },
+ "Header": {
+ "new": "New location ({0})",
+ "update": "Update location ({0})"
+ },
+ "IP": {
+ "learn": "Configure named location IPv4 and IPv6 ranges.\n[Learn more][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
+ },
+ "Include": {
+ "infoBalloon": "Unknown countries/regions are IP addresses that are not associated with a specific country or region. [Learn more][1]\n\nThis includes:\n* IPv6 addresses\n* IPv4 addresses without a direct mapping\n[1]: https://aka.ms/canamedlocations\n",
+ "label": "Include unknown countries/regions"
+ },
+ "Name": {
+ "empty": "Name cannot be empty",
+ "placeholder": "Name this location"
+ },
+ "PrivateLink": {
+ "learn": "Create a new named location containing Private Links for Azure AD.\n[Learn more][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
+ },
+ "Search": {
+ "countries": "Search countries",
+ "names": "Search names",
+ "privateLinks": "Search Private Links"
+ },
+ "Trusted": {
+ "label": "Mark as trusted location"
+ },
+ "enter": "Enter a new IPv4 or IPv6 range",
+ "example": "ex: 40.77.182.32/27 or 2a01:111::/32"
+ },
+ "Label": {
+ "addCountries": "Countries location",
+ "addIpRange": "IP ranges location",
+ "addPrivateLink": "Azure Private Links"
+ },
+ "Notification": {
+ "Create": {
+ "Failed": {
+ "description": "Failure in creating new location ({0})",
+ "title": "Creation has failed"
+ },
+ "InProgress": {
+ "description": "Creating new location ({0})",
+ "title": "Creation in progress"
+ },
+ "Success": {
+ "description": "Success in creating new location ({0})",
+ "title": "Creation has succeeded"
+ }
+ },
+ "Delete": {
+ "Failed": {
+ "description": "Failure in deleting location ({0})",
+ "title": "Deletion has failed"
+ },
+ "InProgress": {
+ "description": "Deleting location ({0})",
+ "title": "Deletion in progress"
+ },
+ "Success": {
+ "description": "Success in deleting location ({0})",
+ "title": "Deletion has succeeded"
+ }
+ },
+ "Update": {
+ "Failed": {
+ "description": "Failure in updating location ({0})",
+ "title": "Updating has failed"
+ },
+ "InProgress": {
+ "description": "Updating location ({0})",
+ "title": "Updating in progress"
+ },
+ "Success": {
+ "description": "Success in updating location ({0})",
+ "title": "Updating has succeeded"
+ }
+ }
+ },
+ "PrivateLinks": {
+ "grid": "List of Private Links"
+ },
+ "Trusted": {
+ "title": "Trusted type",
+ "trusted": "Trusted"
+ },
+ "Type": {
+ "all": "All types",
+ "countries": "Countries",
+ "ipRanges": "IP ranges",
+ "privateLinks": "Private Links",
+ "title": "Location type"
+ },
+ "iPRangeInvalidError": "Value must be a valid IPv4 or IPv6 range.",
+ "iPRangeLinkOrSiteLocalError": "IP network detected as a link local or site local address.",
+ "iPRangeOctetError": "IP network must not start with 0 or 255.",
+ "iPRangePrefixError": "IP network prefix must be from /{0} to /{1}.",
+ "iPRangePrivateError": "IP network detected as a private address."
+ },
+ "NamedNetwork": {
+ "List": {
+ "gridAria": "List of named locations"
+ }
+ },
+ "Policies": {
+ "Grid": {
+ "aria": "List of Conditional Access policies"
+ },
+ "countText": "{0} out of {1} policies found",
+ "countTextSingular": "{0} out of 1 policy found",
+ "search": "Search policies"
+ },
+ "Policy": {
+ "Condition": {
+ "ServicePrincipalRisk": {
+ "description": "Configure service principal risk levels needed for policy to be enforced",
+ "infoBalloonContent": "Configure service principal risk to apply the policy to selected risk level(s)",
+ "title": "Service principal risk (Preview)"
+ }
+ }
+ },
+ "PolicyControlAuthStrength": {
+ "MultiFactorAuthentication": {
+ "description": "Combinations of methods that satisfy strong authentication, such as Password + SMS",
+ "displayName": "Multi-factor authentication (MFA)"
+ },
+ "Passwordless": {
+ "description": "Passwordless methods that satisfy strong authentication, such as Microsoft Authenticator ",
+ "displayName": "Passwordless MFA"
+ },
+ "PhishingResistant": {
+ "description": "Phishing-resistant Passwordless methods for the strongest authentication, such as FIDO2 Security Key",
+ "displayName": "Phishing resistant MFA"
+ }
+ },
+ "PolicyControlFedAuthMethod": {
+ "ariaLabel": "Learn more about requiring authentication methods satisfied by federation providers.",
+ "certificate": "Certificate authentication",
+ "infoBubble": "Specify a required authentication method, that must be satisfied by federation provider, such as ADFS.",
+ "multifactor": "Multi-factor authentication",
+ "require": "Require federated authentication method (Preview)",
+ "whatIfFormat": "{0} - {1}"
+ },
+ "PolicyState": {
+ "off": "Off",
+ "on": "On",
+ "reportOnly": "Report-only"
+ },
+ "PolicyTemplates": {
+ "Devices": {
+ "description": "Select Devices policy template category to gain visibility into devices accessing the network. Ensure compliance and health status before granting access.",
+ "name": "Devices"
+ },
+ "Identities": {
+ "description": "Select Identities policy template category to verify and secure each identity with strong authentication across your entire digital estate.",
+ "name": "Identities"
+ },
+ "Summary": {
+ "CloudApps": {
+ "allCloudApps": "All apps",
+ "office365": "Office 365",
+ "registerSecurityInfo": "Register security information"
+ },
+ "Conditions": {
+ "androidAndIOS": "Device Platform: Android and IOS",
+ "anyDevice": "Any device except Android, IOS, Windows and Mac",
+ "anyDeviceStateExceptHybrid": "Any device state except compliant and hybrid Azure AD joined",
+ "anyLocation": "Any location except trusted",
+ "browserMobileDesktop": "Client apps: Browser, Mobile apps and desktop clients",
+ "exchangeActiveSync": "Client Apps: Exchange Active Sync, Other Clients",
+ "windowsAndMac": "Device Platform: Windows and Mac"
+ },
+ "Devices": {
+ "anyDevice": "Any Device"
+ },
+ "Grant": {
+ "appProtectionPolicy": "Require app protection policy",
+ "approvedClientApp": "Require approved client app",
+ "blockAccess": "Block access",
+ "mfa": "Require multi-factor authentication",
+ "passwordChange": "Require password change",
+ "requireCompliantDevice": "Require device to be marked as compliant",
+ "requireHybridAzureADDevice": "Require hybrid Azure AD joined device"
+ },
+ "Session": {
+ "appEnforcedRestrictions": "Use app enforced restrictions",
+ "signInFrequency": "Sign-in Frequency and never persistent browser session"
+ },
+ "UsersAndGroups": {
+ "allUsers": "All Users",
+ "directoryRoles": "Directory roles except current administrator",
+ "globalAdmin": "Global Administrator",
+ "noGuestAndAdmins": "All Users except Guest and External, Global administrators, Current administrator"
+ },
+ "azureManagement": "Azure Management",
+ "deviceFilters": "Filters for devices",
+ "devicePlatforms": "Device Platforms"
+ },
+ "TemplateId": {
+ "AppEnforcedRestrictions": {
+ "description": "Block or limit access to SharePoint, OneDrive, and Exchange content from unmanaged devices.",
+ "name": "CA014: Use application enforced restrictions for unmanaged devices",
+ "title": "Use application enforced restrictions for unmanaged devices"
+ },
+ "ApprovedClientApps": {
+ "description": "To prevent data loss, organizations can restrict access to approved modern auth client apps with Intune app protection.",
+ "name": "CA012: Require approved client apps and app protection",
+ "title": "Require approved client apps and app protection"
+ },
+ "BlockAccessOnUnknowns": {
+ "description": "Users will be blocked from accessing company resources when the device type is unknown or unsupported.",
+ "name": "CA010: Block access for unknown or unsupported device platform",
+ "title": "Block access for unknown or unsupported device platform"
+ },
+ "BlockLegacyAuth": {
+ "description": "Block legacy authentication endpoints that can be used to bypass multi-factor authentication. ",
+ "name": "CA003: Block legacy authentication",
+ "title": "Block legacy authentication"
+ },
+ "NoPersistentBrowserSession": {
+ "description": "Protect user access on unmanaged devices by preventing browser sessions from remaining signed in after the browser is closed and setting a sign-in frequency to 1 hour.",
+ "name": "CA011: No persistent browser session",
+ "title": "No persistent browser session"
+ },
+ "RequireCompliantOrHybridADAdmins": {
+ "description": "Require privileged administrators to only access resources when using a compliant or hybrid Azure AD joined device.",
+ "name": "CA009: Require compliant or hybrid Azure AD joined device for admins",
+ "title": "Require compliant or hybrid Azure AD joined device for admins"
+ },
+ "RequireCompliantOrHybridADAllUsers": {
+ "description": "Protect access to company resources by requiring users to use a managed device or perform multi-factor authentication. (macOS or Windows only)",
+ "name": "CA013: Require compliant or hybrid Azure AD joined device or multi-factor authentication for all users",
+ "title": "Require compliant or hybrid Azure AD joined device or multi-factor authentication for all users"
+ },
+ "RequireMFAAllUsers": {
+ "description": "Require multi-factor authentication for all user accounts to reduce risk of compromise.",
+ "name": "CA004: Require multi-factor authentication for all users",
+ "title": "Require multi-factor authentication for all users"
+ },
+ "RequireMFAForAdmins": {
+ "description": "Require multi-factor authentication for privileged administrative accounts to reduce risk of compromise. This policy will target the same roles as Security Default.",
+ "name": "CA001: Require multi-factor authentication for admins",
+ "title": "Require multi-factor authentication for admins"
+ },
+ "RequireMFAForAzureManagement": {
+ "description": "Require multi-factor authentication to protect privileged access to Azure resources.",
+ "name": "CA006: Require multi-factor authentication for Azure management",
+ "title": "Require multi-factor authentication for Azure management"
+ },
+ "RequireMFAForGuestAccess": {
+ "description": "Require guest users perform multi-factor authentication when accessing your company resources.",
+ "name": "CA005: Require multi-factor authentication for guest access",
+ "title": "Require multi-factor authentication for guest access"
+ },
+ "RequireMFAForRiskySignIn": {
+ "description": "Require multi-factor authentication if the sign-in risk is detected to be medium or high. (Requires an Azure AD Premium 2 License)",
+ "name": "CA007: Require multi-factor authentication for risky sign-ins",
+ "title": "Require multi-factor authentication for risky sign-ins"
+ },
+ "RequirePasswordChangeForHighRiskUsers": {
+ "description": "Require the user to change their password if the user risk is detected to be high. (Requires an Azure AD Premium 2 License)",
+ "name": "CA008: Require password change for high-risk users",
+ "title": "Require password change for high-risk users"
+ },
+ "RequireSecurityInfo": {
+ "description": "Secure when and how users register for Azure AD multi-factor authentication and self-service password. ",
+ "name": "CA002: Securing security info registration",
+ "title": "Securing security info registration"
+ }
+ },
+ "TemplateState": {
+ "BlockAccessOnUnknowns": {
+ "title": "Enabling this policy will prevent any access from unknown device type, consider using report only mode to begin with until you have confirmed this will not impact your users."
+ },
+ "BlockLegacyAuth": {
+ "description": "Consider using report only mode to begin with until you have confirmed this will not impact your users.",
+ "title": "Enabling this policy will block legacy authentication for all your users."
+ },
+ "RequireCompliantOrHybridADAdmins": {
+ "Description": {
+ "on": "Consider using report only mode to begin with until you have confirmed this will not impact your privileged users.",
+ "reportOnly": "Policies in report-only mode that require compliant devices may prompt users on Mac, iOS, and Android to select a device certificate during policy evaluation, even though device compliance is not enforced. These prompts may repeat until the device is made compliant."
+ },
+ "Title": {
+ "on": "Enabling this policy will prevent any access for privileged users unless using a managed device such as compliant or hybrid Azure AD joined. Ensure you have configured your compliance policies or enabled hybrid Azure AD configuration before enabling.",
+ "reportOnly": "Ensure you have configured your compliance policies or enabled hybrid Azure AD configuration before enabling. "
+ }
+ },
+ "RequireCompliantOrHybridADAllUsers": {
+ "Description": {
+ "on": "This policy will affect all users except the current logged in Administrator. Consider using report only mode to begin with until you have confirmed this will not impact your users."
+ },
+ "Title": {
+ "on": "Don't lock yourself out! Make sure that your device is compliant, or hybrid Azure AD Joined or you have configured multi-factor authentication. ",
+ "reportOnly": "Policies in report-only mode that require compliant devices may prompt users on Mac, iOS, and Android to select a device certificate during policy evaluation, even though device compliance is not enforced. These prompts may repeat untli the device is made compliant."
+ }
+ },
+ "RequireMfa": {
+ "description": "If you use emergency access accounts or Azure AD connect to synchronize your on-premises objects, you may need to exclude these accounts from this policy after creation."
+ },
+ "RequireMfaAdmins": {
+ "description": "Please note the current administrator account will automatically be excluded but all others will be protected on policy creation. Consider using report only mode to begin with.",
+ "title": "Don't lock yourself out! This policy impacts the Azure portal."
+ },
+ "RequireMfaAllUsers": {
+ "description": "Consider using report only mode to begin with until you have planned and communicated this change to all your users.",
+ "title": "Enabling this policy will enforce multi-factor authentication for all your users."
+ },
+ "RequireSecurityInfo": {
+ "description": "Please ensure you review your configuration to protect these accounts based on your company needs.",
+ "title": "The following users and roles are excluded from this policy, Guests and External Users, Global Administrators, Current Administrator"
+ }
+ },
+ "basics": "Basics",
+ "clientApps": "Client apps",
+ "cloudApps": "Cloud apps",
+ "cloudAppsOrActions": "Cloud apps or actions ",
+ "conditions": "Conditions ",
+ "createNewPolicy": "Create new policy from templates (Preview)",
+ "createPolicy": "Create Policy",
+ "currentUser": "Current user",
+ "customizeBuild": "Customize your build",
+ "customizeTemplate": "Template lists are customized based on the type of policy you're looking to create",
+ "excludedDevicePlatform": "Excluded device platforms",
+ "excludedDirectoryRoles": "Excluded directory roles",
+ "excludedLocation": "Excluded directory roles",
+ "excludedUsers": "Excluded users",
+ "grantControl": "Grant control ",
+ "includeFilteredDevice": "Include filtered devices in policy",
+ "includedDevicePlatform": "Included device platforms",
+ "includedDirectoryRoles": "Included directory roles",
+ "includedLocation": "Included location",
+ "includedUsers": "Included users",
+ "legacyAuthenticationClients": "Legacy authentication clients",
+ "namePolicy": "Name your policy",
+ "next": "Next",
+ "policyName": "Policy Name",
+ "policyState": "Policy state",
+ "policySummary": "Policy summary",
+ "policyTemplate": "Policy template",
+ "previous": "Previous",
+ "reviewAndCreate": "Review + create",
+ "riskLevels": "Risk levels",
+ "selectATemplate": "Select a Template",
+ "selectTemplate": "Select template",
+ "selectTemplateCategory": "Select a template category",
+ "selectTemplateRecommendation": "We recommend the following templates based on your response",
+ "sessionControl": "Session control ",
+ "signInFrequency": "Sign-in frequency",
+ "signInRisk": "Sign-in risk",
+ "template": "Template ",
+ "templateCategory": "Template category",
+ "userRisk": "User risk",
+ "usersAndGroups": "Users and groups ",
+ "viewPolicySummary": "View policy summary "
+ },
+ "SSM": {
+ "MemberSelector": {
+ "description": "Users and groups"
+ },
+ "Notification": {
+ "Migration": {
+ "error": "Failed to migrate Continuous access evaluation settings to Conditional access policies",
+ "inProgress": "Migrating Continuous access evaluation settings",
+ "success": "Successfully migrated Continuous access evaluation settings to Conditional access policies",
+ "successDescription": "Please proceed to Conditional access policies to view the migrated settings in the newly created policy named \"CA policy created from CAE settings\"."
+ },
+ "error": "Failed to update Continuous access evaluation settings",
+ "inProgress": "Updating Continuous access evaluation settings",
+ "success": "Successfully updated Continuous access evaluation settings"
+ },
+ "PreviewOptions": {
+ "disable": "Disable preview",
+ "enable": "Enable preview"
+ },
+ "StrictLocationEnforcement": {
+ "infoContent1": "Different IPs can be seen by Azure AD and Resource Provider from the same client device due to network partition or IPv4/IPv6 mismatch. Strict Location Enforcement will enforce the Conditional Access policy based on both IP addresses seen by Azure AD and Resource Provider.",
+ "infoContent2": "To ensure maximum security, it is recommended to include all IPs that can be seen by both Azure AD and Resource Provider in your Named Location policy and turn on \"Strict Location Enforcement\" mode.",
+ "label": "Strict Location Enforcement",
+ "title": "Additional enforcement modes"
+ },
+ "bladeTitle": "Continuous access evaluation",
+ "description": "When a user's access is removed or a client IP address changes, Continuous access evaluation automatically blocks access to resources and applications in near real time. ",
+ "migrateLabel": "Migrate",
+ "migrationError": "Migration failed due to the following error: {0}",
+ "migrationInfo": "CAE setting has been moved under Conditional Access UX, please migrate with the “Migrate” button above and configure it with Conditional Access policy going forward. Click here to learn more.",
+ "noLicenseMessage": "Manage smart session management settings with Azure AD Premium",
+ "optionsPickerTitle": "Enable/Disable Continuous access evaluation",
+ "upsellInfo": "You cannot change your settings on this page anymore and any settings here should be disregarded. Your previous setting will be honored. You can configure your CAE settings under Conditional Access going forward. Click here to learn more."
+ },
+ "SelectOrganizations": {
+ "Blade": {
+ "Lower": {
+ "gridAria": "List of selected organizations"
+ },
+ "Upper": {
+ "gridAria": "List of available organizations"
+ },
+ "description": "Add an Azure AD organization by typing one of its domain names.",
+ "notFoundResult": "Not found",
+ "searchBoxPlaceholder": "Tenant ID or domain name",
+ "subTitle": "Azure AD organization"
+ },
+ "Selector": {
+ "AdditionalDetails": {
+ "aria": "Organization ID: {0}"
+ },
+ "DisplayText": {
+ "multiple": "{0} Azure AD organizations selected",
+ "single": "1 Azure AD organization selected"
+ },
+ "gridAria": "List of selected organizations"
+ }
+ },
+ "SessionLifetime": {
+ "PersistentBrowser": {
+ "Error": {
+ "notAllApps": "Persistent browser session policy only works correctly when \"All cloud apps\" is selected. Please update your cloud apps selection."
+ },
+ "Option": {
+ "always": "Always persistent",
+ "help": "A persistent browser session allows users to remain signed in after closing and reopening their browser window.
\n\n- This setting works correctly when \"All cloud apps\" are selected
\n- This does not affect token lifetimes or the sign-in frequency setting.
\n- This will override the \"Show option to stay signed in\" policy in Company Branding.
\n- \"Never persistent\" will override any persistent SSO claims passed in from federated authentication services.
\n- \"Never persistent\" will prevent SSO on mobile devices across applications and between applications and the user's mobile browser.
\n",
+ "label": "Persistent browser session",
+ "never": "Never persistent"
+ },
+ "Warning": {
+ "allApps": "Persistent browser session only works correctly when All cloud apps is selected. Please change your cloud apps selection. Click here to learn more."
+ }
+ },
+ "SignInFrequency": {
+ "Aria": {
+ "units": "Hours or days",
+ "value": "Frequency"
+ },
+ "Option": {
+ "Day": {
+ "plural": "{0} days",
+ "singular": "1 day"
+ },
+ "Hour": {
+ "plural": "{0} hours",
+ "singular": "1 hour"
+ },
+ "daysOption": "Days",
+ "everytime": "Every time",
+ "help": "Time period before a user is asked to sign-in again when attempting to access a resource. The default setting is a rolling window of 90 days, i.e. users will be asked to re-authenticate on the first attempt to access a resource after being inactive on their machine for 90 days or longer.",
+ "hoursOption": "Hours",
+ "label": "Sign-in frequency",
+ "placeholder": "Select units"
+ }
+ },
+ "mainOption": "Modify session lifetime",
+ "mainOptionHelp": "Configure how often users will get prompted and whether browser sessions will be persisted. Applications that don't support modern authentication protocols might not honor these policies. In such cases please contact the application developer."
+ },
+ "SigninRisk": {
+ "LearnMore": {
+ "message": "Control user access to respond to specific sign-in risk levels."
+ }
+ },
+ "SingleSelectorActive": {
+ "failed": "Unable to load this data.",
+ "reattempt": "Loading data. Reattempt {0} of {1}."
+ },
+ "TimeCondition": {
+ "Errors": {
+ "both": "Invalid \"Include\" or \"Exclude\" time range.",
+ "daysOfWeek": "{0} Make sure to specify at least one day of the week.",
+ "endBeforeStart": "{0} Make sure start date/time is earlier than end date/time.",
+ "exclude": "Invalid \"Exclude\" time range.",
+ "generic": "{0} Make sure both days of the week and time zone are set. If \"All day\" is not checked, start time and end time need to be set as well.",
+ "include": "Invalid \"Include\" time range.",
+ "timeMissing": "{0} Make sure to specify both a start and end time.",
+ "timeZone": "{0} Make sure to specify a time zone.",
+ "timesAndZone": "{0} Make sure you set start time, end time and time zone."
+ }
+ },
+ "UserActions": {
+ "Included": {
+ "none": "No cloud apps or actions selected",
+ "plural": "{0} user actions included",
+ "singular": "1 user action included"
+ },
+ "accessRequirement1": "Level 1",
+ "accessRequirement2": "Level 2",
+ "accessRequirement3": "Level 3",
+ "accessRequirementsLabel": "Accessing secured app data",
+ "appsActionsAuthTitle": "Cloud apps, actions, or authentication context",
+ "appsOrActionsSelectorInfoBallonText": "Applications accessed or user actions",
+ "appsOrActionsTitle": "Cloud apps or actions",
+ "label": "User actions",
+ "mainOptionsLabel": "Select what this policy applies to",
+ "registerOrJoinDevices": "Register or join devices",
+ "registerSecurityInfo": "Register security information",
+ "selectionInfo": "Select the action this policy will apply to",
+ "whatIf": "User action included"
+ },
+ "UserSelectionBlade": {
+ "DirectoryRoles": {
+ "ariaLabel": "Choose directory roles"
+ },
+ "Excluded": {
+ "gridAria": "List of excluded users"
+ },
+ "Included": {
+ "gridAria": "List of included users"
+ },
+ "Validation": {
+ "customRoleIncluded": "\"Directory Roles\" includes at least one custom role",
+ "customRoleSelected": "At least one custom role is selected",
+ "failed": "\"{0}\" must be configured",
+ "roles": "Select at least one role",
+ "usersGroups": "Select at least one user or group"
+ },
+ "learnMore": "Control access based on who the policy will apply to, such as users and groups, workload identities, directory roles, or external guests."
+ },
+ "ValidationResult": {
+ "blockEveryonePolicy": "Policy configuration not supported. Review the assignments and controls.",
+ "invalidApplicationCondition": "Invalid cloud applications selected",
+ "invalidClientTypesCondition": "Invalid client apps selected",
+ "invalidConditions": "Assignments are not selected",
+ "invalidControls": "Invalid controls selected",
+ "invalidDevicePlatformsCondition": "Invalid device platforms selected",
+ "invalidDevicesCondition": "Invalid device configuration. Likely an invalid \"{0}\" configuration.",
+ "invalidGrantControlPolicy": "Invalid grant control",
+ "invalidLocationsCondition": "Invalid locations selected",
+ "invalidPolicy": "Assignments are not selected",
+ "invalidSessionControlPolicy": "Invalid session control",
+ "invalidSignInRisksCondition": "Invalid sign-in risk selected",
+ "invalidUserRisksCondition": "Invalid user risk selected",
+ "invalidUsersCondition": "Invalid users selected",
+ "mamPolicyShouldOnlyTargetAndroidOrIosPlatforms": "MAM policy can only be applied to Android or iOS client platforms.",
+ "notSupportedCombination": "Policy configuration is not supported. Learn more about supported policies.",
+ "pending": "Validating policy",
+ "requireComplianceEveryonePolicy": "Policy configuration will require device compliance for all users. Review the assignments selected.",
+ "success": "Valid policy"
+ },
+ "VpnCert": {
+ "Grid": {
+ "aria": "List of VPN Certificates"
+ }
+ },
+ "WarningsInfo": {
+ "Controls": {
+ "compliantDeviceEnabled": "Don't lock yourself out! Make sure that your device is compliant.",
+ "domainJoinedDeviceEnabled": "Don't lock yourself out! Make sure that your device is Hybrid Azure AD Joined.",
+ "exchangeDisabled": "Exchange ActiveSync only supports \"Compliant device\" and \"Approved client app\" controls. Click to learn more.",
+ "exchangeDisabled2": "Exchange ActiveSync only supports \"Compliant device\", \"Approved client app\" and \"Compliant client app\" controls. Click to learn more.",
+ "notAvailableForSP": "Some controls are not available due to '{0}' selection in policy assignment",
+ "requireAuthOrMfa": "\"{0}\" cannot be used with \"{1}\"",
+ "requireMfa": "Consider testing the new \"{0}\" public preview",
+ "requirePasswordChangeEnabled": "\"Require password change\" can only be used when policy is assigned to \"All cloud apps\""
+ },
+ "Policies": {
+ "Linux": {
+ "devicePlatformsReportOnlyPolicy": "Policies in Report-only mode requiring compliant devices may prompt users on macOS, iOS, Android, and Linux to select a device certificate.",
+ "excludeDevicePlatforms": "Exclude device platforms macOS, iOS, Android, and Linux from this policy.",
+ "proceedAnywayDevicePlatforms": "Proceed with selected configuration. Users on macOS, iOS, Android, and Linux may receive prompts when the device is checked for compliance."
+ },
+ "blockCurrentUserPolicy": "Don't lock yourself out! We recommend applying a policy to a small set of users first to verify it behaves as expected. We also recommend excluding at least one administrator from this policy. This ensures that you still have access and can update a policy if a change is required. Please review the affected users and apps.",
+ "devicePlatformsReportOnlyPolicy": "Policies in Report-only mode requiring compliant devices may prompt users on macOS, iOS, and Android to select a device certificate.",
+ "excludeCurrentUserSelection": "Exclude current user, {0}, from this policy.",
+ "excludeDevicePlatforms": "Exclude device platforms macOS, iOS, and Android from this policy.",
+ "proceedAnywayDevicePlatforms": "Proceed with selected configuration. Users on macOS, iOS, and Android may receive prompts when the device is checked for compliance.",
+ "proceedAnywaySelection": "I understand that my account will be impacted by this policy. Proceed anyway."
+ },
+ "ServicePrincipals": {
+ "blockExchange": "Selecting Office 365 Exchange Online will also affect apps such as OneDrive and Teams.",
+ "blockPortal": "Don't lock yourself out! This policy impacts the Azure portal. Before you continue, ensure that you or someone else will be able to get back into the portal.",
+ "blockPortalWithSession": "Don't lock yourself out! This policy impacts the Azure portal. Before you continue, ensure that you or someone else will be able to get back into the portal.
Disregard this warning if you are configuring persistent browser session policy that works correctly only if \"All cloud apps\" are selected.",
+ "blockSharePoint": "Selecting SharePoint Online will also affect apps such as Microsoft Teams, Planner, Delve, MyAnalytics, and Newsfeed.",
+ "blockSkype": "Selecting Skype for Business Online will also affect Microsoft Teams.",
+ "includeOrExclude": "You can configure the App Filter for '{0}' or '{1}', but not both.",
+ "selectAppsNAForSP": "Individual cloud apps cannot be selected due to '{0}' selection in policy assignment",
+ "teamsBlocked": "Microsoft Teams will also be affected when apps such as SharePoint Online and Exchange Online are included in policy."
+ },
+ "Users": {
+ "blockAllUsers": "Don't lock yourself out! This policy will affect all of your users. We recommend applying a policy to a small set of users first to verify it behaves as expected."
+ }
+ },
+ "WhatIf": {
+ "Device": {
+ "AttributesGrid": {
+ "aria": "List of attributes on the device employed during sign-in.",
+ "infoBalloon": "List of attributes on the device employed during sign-in."
+ }
+ }
+ },
+ "advancedTabText": "Advanced",
+ "allCloudAppsErrorBox": "\"All cloud apps\" must be selected when \"Require password change\" grant is selected",
+ "allCloudAppsReauth": "\"All cloud apps\" must be selected when \"Sign-in frequency every time\" session control and \"sign-in risk\" condition are selected",
+ "allCloudOrSpecificApps": "The \"sign-in frequency every time\" session control requires \"all cloud apps\" or specifically-supported apps to be selected",
+ "allDayCheckboxLabel": "All day",
+ "allDevicePlatforms": "Any device",
+ "allGuestUserInfoContent": "Includes Azure AD B2B guests, but not SharePoint B2B guests",
+ "allGuestUserLabel": "All guest and external users",
+ "allRiskLevelsOption": "All risk levels",
+ "allTrustedLocationLabel": "All trusted locations",
+ "allUserGroupSetSelectorLabel": "All users and groups selected",
+ "allUsersReauth": "The \"sign-in frequency every time\" session control requires \"All Users\" to be selected",
+ "allUsersString": "All users",
+ "and": "{0} AND {1} ",
+ "andWithGrouping": "({0}) AND {1} ",
+ "androidDisplayName": "Android",
+ "anyCloudAppSelection": "Any cloud app",
+ "appContextOptionInfoContent": "Requested authentication tag",
+ "appContextOptionLabel": "Requested authentication tag (Preview)",
+ "appContextUriPlaceholder": "Example: uri:contoso.com:level3",
+ "appEnforceInfoBubble": "App enforced restrictions might require additional admin configurations within the cloud apps. The restrictions will only take effect for new sessions.",
+ "appNotSetSeletorLabel": "0 cloud apps selected",
+ "applyConditionClientAppInfoBalloonContent": "Configure client apps to apply the policy to specific client apps",
+ "applyConditionDevicePlatformInfoBalloonContent": "Configure device platforms to apply the policy to specific platforms",
+ "applyConditionDeviceStateInfoBalloonContent": "Configure device state to apply the policy to specific device state(s)",
+ "applyConditionLocationInfoBalloonContent": "Configure locations to apply the policy to trusted/untrusted locations",
+ "applyConditionSigninRiskInfoBalloonContent": "Configure sign-in risk to apply the policy to selected risk level(s)",
+ "applyConditionUserRiskInfoBalloonContent": "Configure user risk to apply the policy to selected risk level(s)",
+ "applyConditonLabel": "Configure",
+ "ariaLabelPolicyDisabled": "Policy is disabled",
+ "ariaLabelPolicyEnabled": "Policy is enabled",
+ "ariaLabelPolicyReportOnly": "Policy is in Report-only mode",
+ "blockAccess": "Block access",
+ "builtInDirectoryRoleLabel": "Built-in directory roles",
+ "casCustomControlInfo": "Custom policies need to be configured in Cloud App Security portal. This control works instantly for featured apps and can be self onboarded for any app. Click here to learn more about both scenarios.",
+ "casInfoBubble": "This control works for various cloud apps.",
+ "casPreconfiguredControlInfo": "This control works instantly for featured apps and can be self onboarded for any app. Click here to learn more about both scenarios.",
+ "cert64DownloadCol": "Download base64 certificate",
+ "cert64Name": "VpnBase64Cert",
+ "certDownloadCol": "Download certificate",
+ "certDurationCol": "Expiry",
+ "certDurationStartCol": "Valid from",
+ "certName": "VpnCert",
+ "certainApps": "Only specifically-supported apps are enabled for \"Sign-in frequency every time\" if \"Require multi-factor authentication\" and \"Require password change\" grants are not selected",
+ "chooseApplicationsBladeSubtitle": "",
+ "chooseApplicationsBladeTitle": "Choose Applications",
+ "chooseApplicationsCartSubitle": "",
+ "chooseApplicationsCartTitle": "Chosen Applications",
+ "chooseApplicationsEmpty": "No Applications",
+ "chooseApplicationsNone": "None",
+ "chooseApplicationsNoneFound": "We didn't find \"{0}\". Try another name or ID.",
+ "chooseApplicationsPlural": "{0} and {1} more",
+ "chooseApplicationsReAuthEverytimeInfo": "Looking for your app? Some applications cannot be used with \"Require reauthentication – every time\" session control",
+ "chooseApplicationsRemove": "Remove",
+ "chooseApplicationsReturnedPlural": "{0} applications found",
+ "chooseApplicationsReturnedSingular": "1 application found",
+ "chooseApplicationsSearchBalloon": "Search for an Application by entering its name or ID.",
+ "chooseApplicationsSearchHint": "Search Applications...",
+ "chooseApplicationsSearchLabel": "Applications",
+ "chooseApplicationsSearching": "Searching...",
+ "chooseApplicationsSelect": "Select",
+ "chooseApplicationsSelected": "Selected",
+ "chooseApplicationsSingular": "{0} and 1 more",
+ "chooseApplicationsTooMany": "More results than can be shown. Please filter using the search box.",
+ "chooseLocationCorpnetItem": "Corporate network",
+ "chooseLocationSelectedLocationsLabel": "Selected locations",
+ "chooseLocationTrustedIpsItem": "MFA Trusted IPs",
+ "chooseLocationsBladeSubtitle": "",
+ "chooseLocationsBladeTitle": "Choose Locations",
+ "chooseLocationsCartSubitle": "",
+ "chooseLocationsCartTitle": "Chosen Locations",
+ "chooseLocationsEmpty": "No Locations",
+ "chooseLocationsExcludedSelectorTitle": "Select",
+ "chooseLocationsIncludedSelectorTitle": "Select",
+ "chooseLocationsNone": "None",
+ "chooseLocationsNoneFound": "We didn't find \"{0}\". Try another name or ID.",
+ "chooseLocationsPlural": "{0} and {1} more",
+ "chooseLocationsRemove": "Remove",
+ "chooseLocationsReturnedPlural": "{0} locations found",
+ "chooseLocationsReturnedSingular": "1 location found",
+ "chooseLocationsSearchBalloon": "Search for a Location by entering its name.",
+ "chooseLocationsSearchHint": "Search Locations...",
+ "chooseLocationsSearchLabel": "Locations",
+ "chooseLocationsSearching": "Searching...",
+ "chooseLocationsSelect": "Select",
+ "chooseLocationsSelected": "Selected",
+ "chooseLocationsSelectionBladeExcludedSelectorTitle": "Select",
+ "chooseLocationsSelectionBladeIncludedSelectorTitle": "Select",
+ "chooseLocationsSingular": "{0} and 1 more",
+ "chooseLocationsTooMany": "More results than can be shown. Please filter using the search box.",
+ "claimProviderAddCommandText": "New custom control",
+ "claimProviderAddNewBladeTitle": "New custom control",
+ "claimProviderDeleteCommand": "Delete",
+ "claimProviderDeleteDescription": "Are you sure you want to delete '{0}'? This action cannot be undone.",
+ "claimProviderDeleteTitle": "Are you sure?",
+ "claimProviderEditInfoText": "Enter the JSON for customized controls given by your claim providers.",
+ "claimProviderNotificationCreateDescription": "Creating custom control named '{0}'",
+ "claimProviderNotificationCreateFailedDescription": "Creating custom control '{0}' failed. Please try again later.",
+ "claimProviderNotificationCreateFailedTitle": "Failed to create custom control",
+ "claimProviderNotificationCreateSuccessDescription": "Created custom control named '{0}'",
+ "claimProviderNotificationCreateSuccessTitle": "Created '{0}'",
+ "claimProviderNotificationCreateTitle": "Creating '{0}'",
+ "claimProviderNotificationDeleteDescription": "Deleting custom control named '{0}'",
+ "claimProviderNotificationDeleteFailedDescription": "Deleting custom control '{0}' failed. Please try again later.",
+ "claimProviderNotificationDeleteFailedTitle": "Failed to delete custom control",
+ "claimProviderNotificationDeleteSuccessDescription": "Deleted custom control named '{0}'",
+ "claimProviderNotificationDeleteSuccessTitle": "Deleted '{0}'",
+ "claimProviderNotificationDeleteTitle": "Deleting '{0}'",
+ "claimProviderNotificationUpdateDescription": "Updating custom control named '{0}'",
+ "claimProviderNotificationUpdateFailedDescription": "Updating custom control '{0}' failed. Please try again later.",
+ "claimProviderNotificationUpdateFailedTitle": "Failed to update custom control",
+ "claimProviderNotificationUpdateSuccessDescription": "Updated custom control named '{0}'",
+ "claimProviderNotificationUpdateSuccessTitle": "Updated '{0}'",
+ "claimProviderNotificationUpdateTitle": "Updating '{0}'",
+ "claimProviderValidationAppIdInvalid": "The \"AppId\" value is not valid. Please review and try again.",
+ "claimProviderValidationClientIdMissing": "The data is missing a \"ClientId\" value. Please review and try again.",
+ "claimProviderValidationControlClaimsRequestedMissing": "The \"Control\" is missing a \"ClaimsRequested\" value. Please review and try again.",
+ "claimProviderValidationControlClaimsRequestedTypeMissing": "The \"ClaimsRequested\" item is missing a \"Type\" value. Please review and try again.",
+ "claimProviderValidationControlIdAlreadyExists": "The \"Control\" \"Id\" value already exists. Please review and try again.",
+ "claimProviderValidationControlIdMissing": "The \"Control\" is missing an \"Id\" value. Please review and try again.",
+ "claimProviderValidationControlIdReferencedInExistingPolicy": "The \"Control\" \"Id\" value cannot be removed because it is referenced in an existing policy. Please remove it from the policy first.",
+ "claimProviderValidationControlIdTooManyControls": "The \"Control\" property has too many controls. Please review and try again.",
+ "claimProviderValidationControlIdValueReserved": "The \"Control\" \"Id\" value is a reserved keyword, please use a different id.",
+ "claimProviderValidationControlNameAlreadyExists": "The \"Control\" \"Name\" value already exists. Please review and try again.",
+ "claimProviderValidationControlNameMissing": "The \"Control\" is missing a \"Name\" value. Please review and try again.",
+ "claimProviderValidationControlsMissing": "The data is missing a \"Controls\" value. Please review and try again.",
+ "claimProviderValidationDiscoveryUrlMissing": "The data is missing a \"DiscoveryUrl\" value. Please review and try again.",
+ "claimProviderValidationInvalid": "There data provided is not valid. Please review and try again.",
+ "claimProviderValidationInvalidJsonDefinition": "Unable to save the custom control. Review the JSON text and try again.",
+ "claimProviderValidationNameAlreadyExists": "The \"Name\" value already exists. Please review and try again.",
+ "claimProviderValidationNameMissing": "The data is missing a \"Name\" value. Please review and try again.",
+ "claimProviderValidationUnknown": "There was an unknown error while validating the data provided. Please review and try again.",
+ "claimProvidersNone": "No custom controls",
+ "claimProvidersSearchPlaceholder": "Search controls.",
+ "classicPoilcyFilterTitle": "Show",
+ "classicPolicyAllPlatforms": "All Platforms",
+ "classicPolicyClientAppBrowserAndNative": "Browser, mobile apps and desktop clients",
+ "classicPolicyCloudAppTitle": "Cloud application",
+ "classicPolicyControlAllow": "Allow",
+ "classicPolicyControlBlock": "Block",
+ "classicPolicyControlBlockWhenNotAtWork": "Block access when not at work",
+ "classicPolicyControlRequireCompliantDevice": "Require compliant device",
+ "classicPolicyControlRequireDomainJoinedDevice": "Require domain joined device",
+ "classicPolicyControlRequireMfa": "Require multi-factor authentication",
+ "classicPolicyControlRequireMfaWhenNotAtWork": "Require multi-factor authentication when not at work",
+ "classicPolicyDeleteCommand": "Delete",
+ "classicPolicyDeleteFailTitle": "Failed to delete classic policy",
+ "classicPolicyDeleteInProgressTitle": "Deleting classic policy",
+ "classicPolicyDeleteSuccessTitle": "Classic policy deleted",
+ "classicPolicyDetailBladeTitle": "Details",
+ "classicPolicyDisableCommand": "Disable",
+ "classicPolicyDisableConfirmation": "Are you sure you want to disable '{0}'? This action cannot be undone.",
+ "classicPolicyDisableFailDescription": "Failed to disable '{0}'",
+ "classicPolicyDisableFailTitle": "Failed to disable classic policy",
+ "classicPolicyDisableInProgressDescription": "Disabling '{0}'",
+ "classicPolicyDisableInProgressTitle": "Disabling classic policy",
+ "classicPolicyDisableSuccessDescription": "Successfully disabled '{0}'",
+ "classicPolicyDisableSuccessTitle": "Classic policy disabled",
+ "classicPolicyEasSupportedPlatforms": "Exchange ActiveSync supported platforms",
+ "classicPolicyEasUnsupportedPlatforms": "Exchange ActiveSync unsupported platforms",
+ "classicPolicyExcludedPlatformsTitle": "Excluded device platforms",
+ "classicPolicyFilterAll": "All policies",
+ "classicPolicyFilterDisabled": "Disabled policies",
+ "classicPolicyFilterEnabled": "Enabled policies",
+ "classicPolicyIncludeExcludeMembersDescription": "By excluding groups, you can perform phased migration of policies.",
+ "classicPolicyIncludeExcludeMembersTitle": "Include/exclude groups",
+ "classicPolicyIncludedPlatformsTitle": "Included device platforms",
+ "classicPolicyManualMigrationMessage": "This policy needs to be migrated manually.",
+ "classicPolicyMigrateCommand": "Migrate",
+ "classicPolicyMigrateConfirmation": "Are you sure you want to migrate '{0}'? This policy can only be migrated once.",
+ "classicPolicyMigrateFailDescription": "Failed to migrate '{0}'",
+ "classicPolicyMigrateFailTitle": "Failed to migrate classic policy",
+ "classicPolicyMigrateInProgressDescription": "Migrating '{0}'",
+ "classicPolicyMigrateInProgressTitle": "Migrating classic policy",
+ "classicPolicyMigrateRecommendText": "Recommendation: Migrate to the new Azure portal policies.",
+ "classicPolicyMigrateSuccessTitle": "Classic policy migrated successfully",
+ "classicPolicyMigratedSuccessDescription": "This classic policy can now be managed under Polices.",
+ "classicPolicyMigratedSuccessDescriptionMultiple": "This classic policy is migrated as {0} new policies. New policies can be managed under Policies.",
+ "classicPolicyNoEditPermissionMsg": "You don't have permission to edit this policy. Only global administrators and security administrators can edit the policy. Click here for more information.",
+ "classicPolicySaveFailDescription": "Failed to save '{0}'",
+ "classicPolicySaveFailTitle": "Failed to save classic policy",
+ "classicPolicySaveInProgressDescription": "Saving '{0}'",
+ "classicPolicySaveInProgressTitle": "Saving classic policy",
+ "classicPolicySaveSuccessDescription": "Successfully saved '{0}'",
+ "classicPolicySaveSuccessTitle": "Classic policy saved",
+ "clientAppBladeLegacyInfoBanner": "Legacy auth is currently not supported",
+ "clientAppBladeLegacyUpsellBanner": "Block unsupported client apps (Preview)",
+ "clientAppBladeTitle": "Client apps",
+ "clientAppDescription": "Select the client apps this policy will apply to",
+ "clientAppExchangeActiveSync": "Exchange ActiveSync",
+ "clientAppExchangeDisabledInfo": "Exchange ActiveSync is available when Exchange Online is the only cloud app selected. Click to learn more",
+ "clientAppExchangeWarning": "Exchange ActiveSync currently does not support all other conditions",
+ "clientAppLearnMore": "Control user access to target specific client applications not using modern authentication.",
+ "clientAppLegacyHeader": "Legacy authentication clients",
+ "clientAppMobileDesktop": "Mobile apps and desktop clients",
+ "clientAppModernHeader": "Modern authentication clients",
+ "clientAppOnlySupportedPlatforms": "Apply policy only to supported platforms",
+ "clientAppSelectSpecificClientApps": "Select client apps",
+ "clientAppV2BladeTitle": "Client apps (Preview)",
+ "clientAppWebBrowser": "Browser",
+ "clientAppsSelectedLabel": "{0} included",
+ "clientTypeBrowser": "Browser",
+ "clientTypeEas": "Exchange ActiveSync clients",
+ "clientTypeEasInfo": "Exchange ActiveSync clients that use legacy authentication only.",
+ "clientTypeModernAuth": "Modern authentication clients",
+ "clientTypeOtherClients": "Other clients",
+ "clientTypeOtherClientsInfo": "This includes older office clients and other mail protocols(POP, IMAP, SMTP, etc). [Learn more][1]\n[1]: https://aka.ms/caclientapps\n",
+ "cloudAppCountDiffBannerText": "{0} cloud apps configured in this policy have been deleted from the directory, but this doesn't affect the other apps in the policy. The next time you update the application section of the policy, the deleted apps will be automatically removed from it.",
+ "cloudAppsSelectionBladeAllMicrosoftApps": "All Microsoft apps",
+ "cloudAppsSelectionExcludeAllMicrosoftClients": "Allow Microsoft cloud, desktop and mobile apps (Preview)",
+ "cloudappsSelectionBladeAllCloudapps": "All cloud apps",
+ "cloudappsSelectionBladeExcludeDescription": "Select the cloud apps to exempt from the policy",
+ "cloudappsSelectionBladeExcludedSelectorTitle": "Select excluded cloud apps",
+ "cloudappsSelectionBladeIncludeDescription": "Select the cloud apps this policy will apply to",
+ "cloudappsSelectionBladeIncludedSelectorTitle": "Select",
+ "cloudappsSelectionBladeSelectedCloudapps": "Select apps",
+ "cloudappsSelectorInfoBallonText": "Services which the user accesses to do work. For example, 'Salesforce'",
+ "cloudappsSelectorPluralExcluded": "{0} apps excluded",
+ "cloudappsSelectorPluralIncluded": "{0} apps included",
+ "cloudappsSelectorSingularExcluded": "1 app excluded",
+ "cloudappsSelectorSingularIncluded": "1 app included",
+ "cloudappsSelectorUserPlural": "{0} apps",
+ "cloudappsSelectorUserSingular": "1 app",
+ "conditionLabelMulti": "{0} conditions selected",
+ "conditionLabelOne": "1 condition selected",
+ "conditionalAccessBladeTitle": "Conditional Access",
+ "conditionsNotSelectedLabel": "Not configured",
+ "conditionsReqMfaReauthSet": "Some options are not available due to the \"Require multi-factor authentication\" grant and \"sign-in frequency every time\" session control currently being selected",
+ "conditionsReqPwSet": "Some options are not available due to the \"Require password change\" grant currently being selected",
+ "configureCasText": "Configure Cloud App Security",
+ "configureCustomControlsText": "Configure custom policy",
+ "controlLabelMulti": "{0} controls selected",
+ "controlLabelOne": "1 control selected",
+ "controlValidatorText": "Please select at least one control",
+ "controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
+ "controlsDeviceComplianceAriaLabel": "Learn more about requiring compliant devices.",
+ "controlsDeviceComplianceInfoBubble": "Device must be Intune compliant. If the device is non-compliant, the user will be prompted to bring the device under compliance.",
+ "controlsDomainJoinedAriaLabel": "Learn more about requiring hybrid Azure AD joined devices.",
+ "controlsDomainJoinedInfoBubble": "Devices must be Hybrid Azure AD joined.",
+ "controlsMamAriaLabel": "Learn more about requiring approved client applications.",
+ "controlsMamInfoBubble": "Device must use these approved client applications.",
+ "controlsMfaInfoBubble": "User must complete additional security requirements like phone call, text",
+ "controlsOrAndInfoBubble": "ControlsOrAndInfoBubble",
+ "controlsRequireCompliantAppAriaLabel": "Learn more about requiring policy protected apps.",
+ "controlsRequireCompliantAppInfoBubble": "Device must use policy protected apps.",
+ "controlsRequirePasswordResetAriaLabel": "Learn more about requiring a password change.",
+ "controlsRequirePasswordResetInfoBubble": "Require password change to lower user risk. This option also requires multi-factor authentication. Other controls can't be used.",
+ "countriesRadiobuttonInfoBalloonContent": "The country/region a sign-in is coming from is determined by the user's IP address.",
+ "createNewVpnCert": "New certificate",
+ "createdTimeLabel": "Creation time",
+ "customRoleLabel": "Custom roles (not supported)",
+ "dateRangeTypeLabel": "Date range",
+ "daysOfWeekPlaceholderText": "Filter days of the week",
+ "daysOfWeekTypeLabel": "Days of the week",
+ "deletePolicyNoLicenseText": "You can delete this policy now. Once deleted you will not be able to recreate it until you have the required licenses.",
+ "descriptionContentForControlsAndOr": "For multiple controls",
+ "devicePlatform": "Device platform",
+ "devicePlatformConditionHelpDescription": "Apply policy to selected device platforms.\n[Learn more][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2044750",
+ "devicePlatformInclude": "{0} included",
+ "devicePlatformIncludeExclude": "{0} and {1} excluded",
+ "devicePlatformNoSelectionError": "Select device platforms requires one sub-item to be selected.",
+ "devicePlatformsNone": "None",
+ "deviceSelectionBladeExcludeDescription": "Select the platforms to exempt from the policy",
+ "deviceSelectionBladeIncludeDescription": "Select the device platforms to include in this policy",
+ "deviceStateAll": "All device state",
+ "deviceStateCompliant": "Device marked as compliant",
+ "deviceStateCompliantInfoContent": "Devices that are Intune compliant will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Intune compliant.",
+ "deviceStateConditionConfigureInfoContent": "Configure policy based on device state",
+ "deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Hybrid Azure AD joined' or 'marked as compliant'.\n This has been deprecated. Use '{1}' instead.",
+ "deviceStateConditionSelectorLabel": "Device state (deprecated)",
+ "deviceStateDomainJoined": "Device Hybrid Azure AD joined",
+ "deviceStateDomainJoinedInfoContent": "Devices that are Hybrid Azure AD joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Hybrid Azure AD joined.",
+ "deviceStateDomainJoinedInfoLinkText": "Learn more.",
+ "deviceStateExcludeDescription": "Select the device state condition used to exclude devices from policy.",
+ "deviceStateIncludeAndExcludeOneLabel": "{0} and exclude {1}",
+ "deviceStateIncludeAndExcludeTwoLabel": "{0} and exclude {1}, {2}",
+ "directoryRoleInfoContent": "Assign policy to built-in directory roles.",
+ "directoryRolesLabel": "Directory roles",
+ "discardbutton": "Discard",
+ "downloadDefaultFileName": "IP Ranges",
+ "downloadExampleFileName": "Example",
+ "downloadExampleHeader": "This is an example file with demonstrations of the kinds of data which can be accepted. Lines starting with # will be ignored.",
+ "endDatePickerLabel": "Ends",
+ "endTimePickerLabel": "End time",
+ "enterCountryText": "IP address and Country are evaluated in a pair. Select the Country.",
+ "enterIpText": "IP address and Country are evaluated in a pair. Input the IP address.",
+ "enterUserText": "No user is selected. Select a user.",
+ "evaluationResult": "Evaluation result",
+ "exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
+ "exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync with supported platforms only",
+ "excludeAllTrustedLocationSelectorText": "all trusted locations",
+ "featureRequiresP2": "This feature requires Azure AD Premium 2 license.",
+ "friday": "Friday",
+ "grantControls": "Grant controls",
+ "gridNetworkTrusted": "Trusted",
+ "gridPolicyCreatedDateTime": "Creation Date",
+ "gridPolicyEnabled": "Enabled",
+ "gridPolicyModifiedDateTime": "Modified Date",
+ "gridPolicyName": "Policy Name",
+ "gridPolicyState": "State",
+ "groupSelectionBladeExcludeDescription": "Select the groups to exempt from the policy",
+ "groupSelectionBladeExcludedSelectorTitle": "Select excluded groups",
+ "groupSelectionBladeSelect": "Select groups",
+ "groupSelectorInfoBallonText": "Groups in the directory that the policy applies to. For example, 'Pilot group'",
+ "groupsSelectionBladeTitle": "Groups",
+ "helpCommonScenariosText": "Interested in common scenarios?",
+ "helpCondition1": "When any user is outside the company network",
+ "helpCondition2": "When users in the 'Managers' group sign-in",
+ "helpConditionsTitle": "Conditions",
+ "helpControl1": "They're required to sign in with multi-factor authentication",
+ "helpControl2": "They are required be on an Intune compliant or domain-joined device",
+ "helpControlsTitle": "Controls",
+ "helpIntroText": "Conditional Access gives you the ability to enforce access requirements when specific conditions occur. Let's take a few examples",
+ "helpIntroTitle": "What is Conditional Access?",
+ "helpLearnMoreText": "Want to learn more about Conditional Access?",
+ "helpStartStep1": "Create your first policy by clicking \"+ New policy\"",
+ "helpStartStep2": "Specify policy Conditions and Controls",
+ "helpStartStep3": "When you are done, don't forget to Enable policy and Create",
+ "helpStartTitle": "Get started",
+ "highRisk": "High",
+ "includeAndExcludeAppsTextFormat": "Include: {0}. Exclude: {1}.",
+ "includeAppsTextFormat": "Include: {0}.",
+ "includeUnknownAreasCheckboxInfoBalloonContent": "Unknown areas are IP addresses that can't be mapped to a country/region.",
+ "includeUnknownAreasCheckboxLabel": "Include unknown areas",
+ "infoCommandLabel": "Info",
+ "invalidCertDuration": "Invalid cert duration",
+ "invalidIpAddress": "Value must be a valid IP address",
+ "invalidUriErrorMsg": "Please enter a valid Uri. For example,'uri:contoso.com:acr' ",
+ "iosDisplayName": "iOS",
+ "linuxDisplayName": "Linux",
+ "loadAll": "Load all",
+ "loading": "Loading...",
+ "locationConfigureNamedLocationsText": "Configure all trusted locations",
+ "locationConfigureNamedLocationsUri": "{0}/usermanagement/mfasettings.aspx?tenantid={1}&culture={2}",
+ "locationNameTooLongError": "Location name is too long. Maximum is 256 characters",
+ "locationSelectionBladeExcludeDescription": "Select the locations to exempt from the policy",
+ "locationSelectionBladeIncludeDescription": "Select the locations to include in this policy",
+ "locationsAllLocationsLabel": "Any location",
+ "locationsAllNamedLocationsLabel": "All trusted IPs",
+ "locationsAllPrivateLinksLabel": "All Private Links in my tenant",
+ "locationsIncludeExcludeLabel": "{0} and exclude all trusted IPs",
+ "locationsSelectedPrivateLinksLabel": "Selected Private Links",
+ "lowRisk": "Low",
+ "macOsDisplayName": "macOS",
+ "managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Azure AD Premium P1 or P2.",
+ "markAsTrustedCheckboxInfoBalloonContent": "Signing in from a trusted location lowers a user's sign-in risk. Only mark this location as trusted if you know the IP ranges entered are established and credible in your organization.",
+ "markAsTrustedCheckboxLabel": "Mark as trusted location",
+ "mediumRisk": "Medium",
+ "memberSelectionCommandRemove": "Remove",
+ "menuItemClaimProviderControls": "Custom controls (Preview)",
+ "menuItemClassicPolicies": "Classic policies",
+ "menuItemInsightsAndReporting": "Insights and reporting",
+ "menuItemManage": "Manage",
+ "menuItemNamedLocationsPreview": "Named locations (Preview)",
+ "menuItemNamedNetworks": "Named locations",
+ "menuItemPolicies": "Policies",
+ "menuItemTermsOfUse": "Terms of use",
+ "modifiedTimeLabel": "Modified time",
+ "monday": "Monday",
+ "nameLabel": "Name",
+ "namedLocationCountryInfoBanner": "Only IPv4 addresses are mapped to countries/regions. IPv6 addresses are included in unknown countries/regions.",
+ "namedLocationTypeCountry": "Countries/Regions",
+ "namedLocationTypeLabel": "Define the location using:",
+ "namedLocationUpsellBanner": "This view has been deprecated. Go to the new and improved 'Named locations' view.",
+ "namedLocationsHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/namedlocationupdate",
+ "namedNetworkAddIpRanges": "Add a new IP range (ex: 40.77.182.32/27)",
+ "namedNetworkCountryNeeded": "You need to select at least one country",
+ "namedNetworkDeleteCommand": "Delete",
+ "namedNetworkDeleteDescription": "Are you sure you want to delete '{0}'? This action cannot be undone.",
+ "namedNetworkDeleteTitle": "Are you sure?",
+ "namedNetworkDownloadIpRange": "Download",
+ "namedNetworkInvalidRange": "Value must be a valid IP range.",
+ "namedNetworkIpRangeNeeded": "You need at least one valid IP range",
+ "namedNetworkIpRangesDescriptionContent": "Configure your organization's IP ranges",
+ "namedNetworkIpRangesTab": "IP ranges",
+ "namedNetworkListAdd": "New location",
+ "namedNetworkListConfigureTrustedIps": "Configure MFA trusted IPs",
+ "namedNetworkNameDescription": "Example: 'Redmond office'",
+ "namedNetworkNameInvalid": "The supplied name is invalid.",
+ "namedNetworkNameRequired": "You must supply a name for this location.",
+ "namedNetworkNoIpRanges": "No IP ranges",
+ "namedNetworkNotificationCreateDescription": "Creating location named '{0}'",
+ "namedNetworkNotificationCreateFailedDescription": "Creating location '{0}' failed. Please try again later.",
+ "namedNetworkNotificationCreateFailedTitle": "Failed to create location",
+ "namedNetworkNotificationCreateSuccessDescription": "Created location named '{0}'",
+ "namedNetworkNotificationCreateSuccessTitle": "Created '{0}'",
+ "namedNetworkNotificationCreateTitle": "Creating '{0}'",
+ "namedNetworkNotificationDeleteDescription": "Deleting location named '{0}'",
+ "namedNetworkNotificationDeleteFailedDescription": "Deleting location '{0}' failed. Please try again later.",
+ "namedNetworkNotificationDeleteFailedTitle": "Failed to Delete location",
+ "namedNetworkNotificationDeleteSuccessDescription": "Deleted location named '{0}'",
+ "namedNetworkNotificationDeleteSuccessTitle": "Deleted '{0}'",
+ "namedNetworkNotificationDeleteTitle": "Deleting '{0}'",
+ "namedNetworkNotificationUpdateDescription": "Updating location named '{0}'",
+ "namedNetworkNotificationUpdateFailedDescription": "Updating location '{0}' failed. Please try again later.",
+ "namedNetworkNotificationUpdateFailedTitle": "Failed to Update location",
+ "namedNetworkNotificationUpdateSuccessDescription": "Updated location named '{0}'",
+ "namedNetworkNotificationUpdateSuccessTitle": "Updated '{0}'",
+ "namedNetworkNotificationUpdateTitle": "Updating '{0}'",
+ "namedNetworkSearchPlaceholder": "Search locations.",
+ "namedNetworkUploadFailedDescription": "There was an error parsing the supplied file. Please make sure to upload a plain-text file with each line in the CIDR format.",
+ "namedNetworkUploadFailedTitle": "Failed to parse '{0}'",
+ "namedNetworkUploadInProgressDescription": "Attempting to parse valid CIDR values from '{0}'.",
+ "namedNetworkUploadInProgressTitle": "Parsing '{0}'",
+ "namedNetworkUploadInvalidDescription": "'{0}' is either too large or in an invalid format.",
+ "namedNetworkUploadInvalidTitle": "'{0}' Invalid",
+ "namedNetworkUploadIpRange": "Upload",
+ "namedNetworkUploadSuccessDescription": "{0} lines analyzed. {1} in a bad format. {2} skipped.",
+ "namedNetworkUploadSuccessTitle": "Finished parsing '{0}'",
+ "namedNetworksAdd": "New named location",
+ "namedNetworksConditionHelpDescription": "Control user access based on their physical location.\n[Learn more][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
+ "namedNetworksExcludeLabel": "{0} and {1} excluded",
+ "namedNetworksHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
+ "namedNetworksIncludeLabel": "{0} included",
+ "namedNetworksNone": "No named locations found.",
+ "namedNetworksTitle": "Configure locations",
+ "namednetworkExceedingSizeErrorBladeTitle": "Error details",
+ "namednetworkExceedingSizeErrorDetailText": "Click here for more details.",
+ "namednetworkExceedingSizeErrorMessage": "You have exceeded the maximum allowed storage for named locations. Try again with a shorter list. Click here to view more details.",
+ "needMfaSecondary": "\"Require multi-factor authentication\" must be selected when \"Sign-in frequency every time\" is selected with \"Secondary authentication methods only\"",
+ "newCertName": "new cert",
+ "noAttributePermissionsError": "Insufficient privileges to create or update policy. Attribute definition reader role is required to add/edit dynamic filters.",
+ "noPolicyRowMessage": "No policies",
+ "noSPSelected": "No service principal selected",
+ "noUpdatePermissionMessage": "You don't have permissions to update these settings. Please contact your global administrator to get access.",
+ "noUserSelected": "No user selected",
+ "noneRisk": "No risk",
+ "office365Description": "These apps include Microsoft Flow, Microsoft Forms, Microsoft Teams, Office 365 Exchange Online, Office 365 SharePoint Online, Office 365 Yammer, and others.",
+ "office365InfoBox": "At least one of the apps selected is part of Office 365. We recommend setting the policy on the Office 365 app instead.",
+ "oneUserSelected": "1 user selected",
+ "onlyGlobalAdminsCanSaveThisPolicyConfig": "Only global administrators can save this policy.",
+ "or": "{0} OR {1} ",
+ "pickerDoneCommand": "Done",
+ "policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like Cloud apps, Sign-in risk, and Device platforms with Azure AD Premium",
+ "policiesBladeTitle": "Policies",
+ "policiesBladeTitleWithAppName": "Policies: {0}",
+ "policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked sign-on attribute.",
+ "policiesHitMaxLimitStatusBarMessage": "You've reached the maximum number of policies for this tenant. Delete some policies before creating more.",
+ "policyAssignmentsSection": "Assignments",
+ "policyBlockAllInfoBox": "The configured policy will block all users, so it is not supported. Review the assignments and controls. Exclude the current user {0}, if you would like to save this policy.",
+ "policyCloudAppsDisplayTextAllApp": "All apps",
+ "policyCloudAppsLabel": "Cloud apps",
+ "policyConditionClientAppDescription": "Software the user is employing to access the cloud app. For example, 'Browser'",
+ "policyConditionClientAppV2Description": "Software the user is employing to access the cloud app. For example, 'Browser'",
+ "policyConditionDevicePlatform": "Device platforms",
+ "policyConditionDevicePlatformDescription": "Platform the user is signing in from. For example, 'iOS'",
+ "policyConditionLocation": "Locations",
+ "policyConditionLocationDescription": "Location (determined using IP address range) the user is signing in from",
+ "policyConditionSigninRisk": "Sign-in risk",
+ "policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Azure AD Premium 2 license.",
+ "policyConditionUserRisk": "User risk",
+ "policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
+ "policyConditioniClientApp": "Client apps",
+ "policyConditioniClientAppV2": "Client apps (Preview)",
+ "policyControlAllowAccessDisplayedName": "Grant access",
+ "policyControlAuthenticationStrengthDisplayedName": "Require authentication strength (Preview)",
+ "policyControlBladeTitle": "Grant",
+ "policyControlBlockAccessDisplayedName": "Block access",
+ "policyControlCompliantDeviceDisplayedName": "Require device to be marked as compliant",
+ "policyControlContentDescription": "Control access enforcement to block or grant access.",
+ "policyControlInfoBallonText": "Block access or select additional requirements which need to be satisfied to allow access",
+ "policyControlMfaChallengeDisplayedName": "Require multi-factor authentication",
+ "policyControlRequireCompliantAppDisplayedName": "Require app protection policy",
+ "policyControlRequireDomainJoinedDisplayedName": "Require Hybrid Azure AD joined device",
+ "policyControlRequireMamDisplayedName": "Require approved client app",
+ "policyControlRequiredPasswordChangeDisplayedName": "Require password change",
+ "policyControlSelectAuthStrength": "Require authentication strength",
+ "policyControlsNoControlsSelected": "0 controls selected",
+ "policyControlsSection": "Access controls",
+ "policyCreatBladeTitle": "New",
+ "policyCreateButton": "Create",
+ "policyCreateFailedMessage": "Error: {0}",
+ "policyCreateFailedTitle": "Failed to create '{0}'",
+ "policyCreateInProgressTitle": "Creating '{0}'",
+ "policyCreateSuccessMessage": "Successfully created '{0}'. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
+ "policyCreateSuccessTitle": "Successfully created '{0}'",
+ "policyDeleteConfirmation": "Are you sure you want to delete '{0}'? This action cannot be undone.",
+ "policyDeleteFailTitle": "Failed to delete '{0}'",
+ "policyDeleteInProgressTitle": "Deleting '{0}'",
+ "policyDeleteSuccessTitle": "Successfully deleted '{0}'",
+ "policyEnforceLabel": "Enable policy",
+ "policyErrorCannotSetSigninRisk": "You don't have permission to save a policy with a sign-in risk condition.",
+ "policyErrorNoPermission": "You don't have permission to save policy. Contact your global admin.",
+ "policyErrorUnknown": "Something went wrong, please try again later.",
+ "policyFallbackWarningMessage": "Failure to create or update '{0}' using MS Graph resulting in a fallback to AD Graph. Please investigate the following scenario as there is most likely a bug when calling the policy endpoint for MS Graph with an incompatible condition.",
+ "policyFallbackWarningTitle": "Creating or updating '{0}' partially successful",
+ "policyNameCannotBeEmpty": "Policy name can't be empty",
+ "policyNameDevice": "Device policy",
+ "policyNameFormat": "[{0}] {1}",
+ "policyNameMam": "Mobile App Management policy",
+ "policyNameMfaLocation": "MFA and location policy",
+ "policyNamePlaceholderText": "Example: 'Device compliance app policy'",
+ "policyNameTooLongError": "Policy name is too long. Maximum 256 characters",
+ "policyOff": "Off",
+ "policyOn": "On",
+ "policyReportOnly": "Report-only",
+ "policyReviewSection": "Review",
+ "policySaveButton": "Save",
+ "policyStatusIconDescription": "Policy is Enabled",
+ "policyStatusIconEnabled": "Enabled status icon",
+ "policyTemplateName1": "Use app enforced restrictions for {0} browser access",
+ "policyTemplateName2": "Allow {0} access only on managed devices",
+ "policyTemplateName3": "Policy migrated from Continuous Access Evaluation settings",
+ "policyTriggerRiskSpecific": "Select specific risk level",
+ "policyTriggersInfoBalloonText": "Conditions which define when the policy will apply. For example, 'location'",
+ "policyTriggersNoConditionsSelected": "0 conditions selected",
+ "policyTriggersSelectorLabel": "Conditions",
+ "policyUpdateFailedMessage": "Error: {0}",
+ "policyUpdateFailedTitle": "Failed to update {0}",
+ "policyUpdateInProgressTitle": "Updating {0}",
+ "policyUpdateSuccessMessage": "Successfully updated {0}. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
+ "policyUpdateSuccessTitle": "Successfully updated {0}",
+ "primaryCol": "Primary",
+ "privateLinkLabel": "Azure AD Private Link",
+ "reportOnlyInfoBox": "Report-only mode: Policies are evaluated and logged at sign-in but do not impact users.",
+ "requireAllControlsText": "Require all the selected controls",
+ "requireCompliantDevice": "Require compliant device",
+ "requireDomainJoined": "Require domain-joined device",
+ "requireGrantReauth": "The \"sign-in frequency every time\" session control requires a \"require multi-factor authentication\" or \"require password change\" grant control when \"All cloud apps\" is selected",
+ "requireMFA": "Require multi-factor authentication ",
+ "requireMfaReauth": "The \"sign-in frequency every time\" session control requires the \"require multi-factor authentication\" grant control for \"sign-in risk\"",
+ "requireOneControlText": "Require one of the selected controls",
+ "requirePasswordChangeReauth": "The \"sign-in frequency every time\" session control requires the \"require password change\" grant control for \"user risk\"",
+ "requireRiskReauth": "The \"sign-in frequency every time\" session control requires the \"user risk\" or \"sign-in risk\" session control when \"all cloud apps\" is selected.",
+ "resetFilters": "Reset filters",
+ "sPRequired": "Service principal required",
+ "sPSelectorInfoBalloon": "User or Service Principal you want to test",
+ "saturday": "Saturday",
+ "searchTextTooLongError": "The search text is too long. Maximum 256 characters",
+ "securityDefaultsPolicyName": "Security defaults",
+ "securityDefaultsTextMessage": "Security defaults must be disabled to enable Conditional Access policy.",
+ "securityDefaultsWarningMessage": "It looks like you're about to manage your organization's security configurations. That's great! You must first disable Security defaults before enabling a Conditional Access policy.",
+ "selectDevicePlatforms": "Select device platforms",
+ "selectNamedNetworksSubtitle": "",
+ "selectNamedNetworksTitle": "Select locations",
+ "selectedSP": "Selected Service Principal",
+ "servicePrincipalDataGridAria": "List of available service principals",
+ "servicePrincipalDropDownLabel": "What does this policy apply to?",
+ "servicePrincipalInfoBox": "Some conditions are not available due to '{0}' selection in policy assignment",
+ "servicePrincipalRadioAll": "All owned service principals",
+ "servicePrincipalRadioSelect": "Select service principals",
+ "servicePrincipalSelectionsAria": "Selected service principals grid",
+ "servicePrincipalSelectorAria": "List of chosen service principals",
+ "servicePrincipalSelectorMultiple": "{0} service principals selected",
+ "servicePrincipalSelectorSingle": "1 service principal selected",
+ "servicePrincipalSpecificInc": "Specific service principals included",
+ "servicePrincipals": "Service principals",
+ "sessionControlBladeTitle": "Session",
+ "sessionControlDescriptionContent": "Control access based on session controls to enable limited experiences within specific cloud applications.",
+ "sessionControlDisableInfo": "This control only works with supported apps. Currently, Office 365, Exchange Online, and SharePoint Online are the only cloud apps that support app enforced restrictions. Click here to learn more.",
+ "sessionControlInfoBallonText": "Session controls enable limited experience within a cloud app.",
+ "sessionControls": "Session controls",
+ "sessionControlsAppEnforcedLabel": "Use app enforced restrictions",
+ "sessionControlsCasLabel": "Use Conditional Access App Control",
+ "sessionControlsSecureSignInLabel": "Require token binding",
+ "sharepointAppName": "SharePoint",
+ "signinRiskDescription": "Select the sign-in risk level this policy will apply to",
+ "signinRiskInclude": "{0} included",
+ "signinRiskReauth": "\"Sign-in risk\" condition must be selected when \"Require multi-factor authentication\" grant and \"sign-in frequency every time\" session control are selected",
+ "signinRiskTriggerDescriptionContent": "Select the sign-in risk level",
+ "singleTenantServicePrincipalInfoBallonText": "Policy only applies to single tenant service principals owned by your organization. Click here to learn more ",
+ "specificSigninRiskLevelsOption": "Select specific sign-in risk levels",
+ "specificUsersExcluded": "specific users excluded",
+ "specificUsersIncluded": "Specific users included",
+ "specificUsersIncludedAndExcluded": "Specific users excluded and included",
+ "startDatePickerLabel": "Starts",
+ "startFreeTrial": "Start a free trial",
+ "startTimePickerLabel": "Start time",
+ "sunday": "Sunday",
+ "testButton": "What If",
+ "thumbprintCol": "Thumbprint",
+ "thursday": "Thursday",
+ "timeConditionAllTimesLabel": "Any time",
+ "timeConditionIntroText": "Configure the time this policy will apply to",
+ "timeConditionSelectorInfoBallonContent": "When the user is signing in. For example, \"Wednesday 9am-5pm PST\"",
+ "timeConditionSelectorLabel": "Time (Preview)",
+ "timeConditionSpecificLabel": "Specific times",
+ "timeSelectorAllTimesText": "Any time",
+ "timeSelectorSpecificTimesText": "Specific times configured",
+ "timeZoneDropdownInfoBalloonContent": "Select a time zone that defines the time range. This policy applies to users in all time zones. For example, 'Wednesday 9am - 5pm' for one user would be 'Wednesday 10am - 6pm' for a user in a different time zone.",
+ "timeZoneDropdownLabel": "Time zone",
+ "timeZoneDropdownPlaceholderText": "Select a time zone",
+ "tooManyPoliciesDescription": "Only first 50 policies are being displayed now, click here to view all policies",
+ "tooManyPoliciesTitle": "More than 50 policies found",
+ "trustedLocationStatusIconDescription": "Location is trusted",
+ "trustedLocationStatusIconEnabled": "Trusted status icon",
+ "tuesday": "Tuesday",
+ "uploadInBadState": "Unable to upload the specified file.",
+ "upsellAppsDescription": "Require multi-factor authentication for sensitive applications all the time or only from outside the company network.",
+ "upsellAppsTitle": "Secure applications",
+ "upsellBannerText": "Get a free Premium trial to use this feature",
+ "upsellDataDescription": "Require device to be marked as compliant or Hybrid Azure AD joined to allow access to company resources.",
+ "upsellDataTitle": "Secure data",
+ "upsellDescription": "Conditional Access provides the control and protection you need to keep your corporate data secure, while giving your people an experience that allows them to do their best work from any device. For instance, you can restrict access from outside the company network or restrict access to devices which meet the compliance policies.",
+ "upsellRiskDescription": "Require multi-factor authentication for risk events detected by Microsoft's machine learning system.",
+ "upsellRiskTitle": "Protect against risk",
+ "upsellTitle": "Conditional Access",
+ "upsellWhyTitle": "Why use Conditional Access?",
+ "userAppNoneOption": "None",
+ "userNamePlaceholderText": "Enter User Name",
+ "userNotSetSeletorLabel": "0 users and groups selected",
+ "userOnlySelectionBladeExcludeDescription": "Select the users to exempt from the policy",
+ "userOrGroupSelectionCountDiffBannerText": "{0} configured in this policy have been deleted from the directory, but this doesn't affect the other users and groups in the policy. The next time you update the policy, the deleted users and/or groups will be automatically removed.",
+ "userOrSPNotSetSelectorLabel": "0 users or workload identities selected",
+ "userOrSPSelectionBladeTitle": "Users or workload identities",
+ "userOrSPSelectorInfoBallonText": "Identities in the directory that the policy applies to, including users, groups, and service principals",
+ "userRequired": "User Required",
+ "userRiskErrorBox": "\"User risk\" condition must be selected when \"Require password change\" grant is selected",
+ "userRiskReauth": "\"User risk\" condition and not \"Sign-in risk\" must be selected when \"Require password change\" grant and \"Sign-in frequency every time\" session control are selected",
+ "userSPRequired": "User or Service principal required",
+ "userSPSelectorTitle": "User or Workload identity",
+ "userSelectionBladeAllUsersAndGroups": "All users and groups",
+ "userSelectionBladeExcludeDescription": "Select the users and groups to exempt from the policy",
+ "userSelectionBladeExcludeTabTitle": "Exclude",
+ "userSelectionBladeExcludedSelectorTitle": "Select excluded users",
+ "userSelectionBladeIncludeDescription": "Select the users this policy will apply to",
+ "userSelectionBladeIncludeTabTitle": "Include",
+ "userSelectionBladeIncludedSelectorTitle": "Select",
+ "userSelectionBladeSelectUsers": "Select users",
+ "userSelectionBladeSelectedUsers": "Select users and groups",
+ "userSelectionBladeTitle": "Users and groups",
+ "userSelectorBladeTitle": "Users",
+ "userSelectorExcluded": "{0} excluded",
+ "userSelectorGroupPlural": "{0} groups",
+ "userSelectorGroupSingular": "1 group",
+ "userSelectorIncluded": "{0} included",
+ "userSelectorInfoBallonText": "Users and groups in the directory that the policy applies to. For example, 'Pilot group'",
+ "userSelectorSelected": "{0} selected",
+ "userSelectorTitle": "User",
+ "userSelectorUserAndGroup": "{0}, {1}",
+ "userSelectorUserPlural": "{0} users",
+ "userSelectorUserSingular": "1 user",
+ "userSelectorWithExclusion": "{0} and {1}",
+ "usersGroupsLabel": "Users and groups",
+ "viewApprovedAppsText": "See list of approved client apps",
+ "viewCompliantAppsText": "See list of policy protected client apps",
+ "vpnBladeTitle": "VPN connectivity",
+ "vpnCertCreateFailedMessage": "Error: {0}",
+ "vpnCertCreateFailedTitle": "Failed to create {0}",
+ "vpnCertCreateInProgressTitle": "Creating {0}",
+ "vpnCertCreateSuccessMessage": "Successfully created {0}.",
+ "vpnCertCreateSuccessTitle": "Successfully created {0}",
+ "vpnCertNoRowsMessage": "No VPN certificates found",
+ "vpnCertUpdateFailedMessage": "Error: {0}",
+ "vpnCertUpdateFailedTitle": "Failed to update {0}",
+ "vpnCertUpdateInProgressTitle": "Updating {0}",
+ "vpnCertUpdateSuccessMessage": "Successfully updated {0}.",
+ "vpnCertUpdateSuccessTitle": "Successfully updated {0}",
+ "vpnFeatureInfo": "For more information on VPN connectivity and Conditional Access, click here.",
+ "vpnFeatureWarning": "Once a VPN certificate is created in the Azure portal, Azure AD will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
+ "vpnMenuText": "VPN connectivity",
+ "vpncertDropdownDefaultOption": "Duration",
+ "vpncertDropdownInfoBalloonContent": "Select the duration for the cert you want to create",
+ "vpncertDropdownLabel": "Select duration",
+ "vpncertDropdownOneyearOption": "1 year",
+ "vpncertDropdownThreeyearOption": "3 years",
+ "vpncertDropdownTwoyearOption": "2 years",
+ "wednesday": "Wednesday",
+ "whatIfAppEnforcedControl": "Use app enforced restrictions",
+ "whatIfBladeDescription": "Test the impact of Conditional Access on a user when signing in under certain conditions.",
+ "whatIfBladeTitle": "What If",
+ "whatIfClassicPoliciesWarning": "Classic policies are not evaluated by this tool.",
+ "whatIfClientAppInfo": "The client app the user is signing in from. For example, 'Browser'.",
+ "whatIfCountry": "Country",
+ "whatIfCountryInfo": "The country the user is signing in from.",
+ "whatIfDevicePlatformInfo": "The device platform the user is signing in from.",
+ "whatIfDeviceStateInfo": "The device state the user is signing in from",
+ "whatIfEnterIpAddress": "Enter IP address (ex: 40.77.182.32)",
+ "whatIfErrorInvalidIpAddress": "An invalid IP address was specified.",
+ "whatIfEvaResultApplication": "Cloud apps",
+ "whatIfEvaResultClientApps": "Client app",
+ "whatIfEvaResultDevicePlatform": "Device platform",
+ "whatIfEvaResultEmptyPolicy": "Empty policy",
+ "whatIfEvaResultInvalidCondition": "Invalid condition",
+ "whatIfEvaResultInvalidPolicy": "Invalid policy",
+ "whatIfEvaResultLocation": "Location",
+ "whatIfEvaResultNotEnoughInformation": "Not enough information",
+ "whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
+ "whatIfEvaResultSignInRisk": "Sign-in risk",
+ "whatIfEvaResultUsers": "Users and groups",
+ "whatIfIpAddress": "IP address",
+ "whatIfIpAddressInfo": "IP address the user is signing in from.",
+ "whatIfIpCountryInfoBoxText": "If using an IP address or Country, both fields will be required and should correctly map together.",
+ "whatIfPolicyAppliesTab": "Policies that will apply",
+ "whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
+ "whatIfReasons": "Reasons why this policy will not apply",
+ "whatIfSelectClientApp": "Select a client app...",
+ "whatIfSelectCountry": "Select country...",
+ "whatIfSelectDevicePlatform": "Select device platform...",
+ "whatIfSelectPrivateLink": "Select private link...",
+ "whatIfSelectServicePrincipalRisk": "Select service principal risk...",
+ "whatIfSelectSignInRisk": "Select sign-in risk...",
+ "whatIfSelectType": "Select identity type",
+ "whatIfSelectUserRisk": "Select user risk...",
+ "whatIfServicePrincipalRiskInfo": "The risk level associated with the service principal",
+ "whatIfSignInRisk": "Sign-in risk",
+ "whatIfSignInRiskInfo": "The risk level associated with the sign-in",
+ "whatIfUnknownAreas": "Unknown Areas",
+ "whatIfUserPickerLabel": "Selected user",
+ "whatIfUserPickerNoRowsLabel": "No user or service principal selected",
+ "whatIfUserRiskInfo": "The risk level associated with the user",
+ "whatIfUserSelectorInfo": "User in the directory that you want to test",
+ "windows365InfoBox": "Selecting Windows 365 will affect connections to Cloud PCs and Azure Virtual Desktop session hosts. Click here to learn more.",
+ "windowsDisplayName": "Windows",
+ "windowsPhoneDisplayName": "Windows Phone",
+ "workloadIdentities": "Workload identities (preview)",
+ "workloadIdentity": "Workload identity"
+ },
+ "AppResources": {
+ "AppSettingsUx": {
+ "assignmentFilterColumnHeader": "Filter",
+ "assignmentFilterTypeColumnHeader": "Filter mode",
+ "assignmentToast": "End user notifications",
+ "assignmentTypeTableHeader": "ASSIGNMENT TYPE",
+ "deadlineTimeColumnLabel": "Installation deadline",
+ "deliveryOptimizationPriorityHeader": "Delivery optimization priority",
+ "groupTableHeader": "Group",
+ "installContextLabel": "Install Context",
+ "isRemovable": "Install as removable",
+ "licenseTypeLabel": "License type",
+ "modeTableHeader": "Group mode",
+ "policySet": "Policy Set",
+ "restartGracePeriodHeader": "Restart grace period",
+ "startTimeColumnLabel": "Availability",
+ "tracks": "Tracks",
+ "uninstallOnRemoval": "Uninstall on device removal",
+ "updateMode": "Update Priority",
+ "vPN": "VPN"
+ },
+ "AppType": {
+ "aADWebApp": "AAD web app",
+ "androidEnterpriseSystemApp": "Android Enterprise system app",
+ "androidForWorkApp": "Managed Google Play store app",
+ "androidLobApp": "Android line-of-business app",
+ "androidStoreApp": "Android store app",
+ "builtInAndroid": "Built-In Android app",
+ "builtInApp": "Built-In app",
+ "builtInIos": "Built-In iOS app",
+ "iosLobApp": "iOS line-of-business app",
+ "iosStoreApp": "iOS store app",
+ "iosVppApp": "iOS volume purchase program app",
+ "lineOfBusinessApp": "Line-of-business app",
+ "macOSDmgApp": "macOS app (DMG)",
+ "macOSEdgeApp": "Microsoft Edge (macOS)",
+ "macOSLobApp": "macOS line-of-business app",
+ "macOSMdatpApp": "Microsoft Defender ATP (macOS)",
+ "macOSOfficeSuiteApp": "macOS Office Suite",
+ "macOsVppApp": "macOS volume purchase program app",
+ "managedAndroidLobApp": "Managed Android line-of-business app",
+ "managedAndroidStoreApp": "Managed Android store app",
+ "managedGooglePlayApp": "Managed Google Play store app",
+ "managedGooglePlayPrivateApp": "Managed Google Play private app",
+ "managedGooglePlayWebApp": "Managed Google Play web link",
+ "managedIosLobApp": "Managed iOS line-of-business app",
+ "managedIosStoreApp": "Managed iOS store app",
+ "microsoftStoreForBusinessApp": "Microsoft Store for Business app",
+ "microsoftStoreForBusinessReleaseManagedApp": "Microsoft Store for Business",
+ "officeAddIn": "Office add-in",
+ "officeSuiteApp": "Microsoft 365 Apps (Windows 10 and later)",
+ "sharePointApp": "SharePoint app",
+ "teamsApp": "Teams app",
+ "webApp": "Web link",
+ "windowsAppXLobApp": "Windows AppX line-of-business app",
+ "windowsClassicApp": "Windows app (Win32)",
+ "windowsEdgeApp": "Microsoft Edge (Windows 10 and later)",
+ "windowsMobileMsiLobApp": "Windows MSI line-of-business app",
+ "windowsPhone81AppXBundleLobApp": "Windows Phone 8.1 AppX line-of-business app",
+ "windowsPhone81AppXLobApp": "Windows Phone 8.1 AppX line-of-business app",
+ "windowsPhone81StoreApp": "Windows Phone 8.1 store app",
+ "windowsPhoneXapLobApp": "Windows Phone XAP line-of-business app",
+ "windowsStoreApp": "Microsoft Store app",
+ "windowsUniversalAppXLobApp": "Windows Universal AppX line-of-business app",
+ "windowsUniversalLobApp": "Windows Universal line-of-business app"
+ },
+ "AppTypePlatform": {
+ "android": "Android",
+ "ios": "iOS",
+ "macOs": "macOS",
+ "web": "Web",
+ "windows": "Windows"
+ },
+ "AssignmentAction": {
+ "exclude": "Excluded",
+ "include": "Included",
+ "includeAllDevicesVirtualGroup": "Included",
+ "includeAllUsersVirtualGroup": "Included"
+ },
+ "AssignmentToast": {
+ "hideAll": "Hide all toast notifications",
+ "showAll": "Show all toast notifications",
+ "showReboot": "Show toast notifications for computer restarts"
+ },
+ "DeliveryOptimizationPriority": {
+ "backgroundNormal": "Background",
+ "displayText": "Content download in {0}",
+ "foreground": "Foreground",
+ "header": "Delivery optimization priority"
+ },
+ "DeviceRestartBehaviorOptions": {
+ "allow": "App install may force a device restart",
+ "basedOnReturnCode": "Determine behavior based on return codes",
+ "force": "Intune will force a mandatory device restart",
+ "suppress": "No specific action"
+ },
+ "FilterType": {
+ "exclude": "Exclude",
+ "include": "Include",
+ "none": "None"
+ },
+ "InstallIntent": {
+ "available": "Available for enrolled devices",
+ "availableWithoutEnrollment": "Available with or without enrollment",
+ "notApplicable": "Not applicable",
+ "required": "Required",
+ "uninstall": "Uninstall"
+ },
+ "SettingType": {
+ "assignmentType": "Assignment type",
+ "deviceLicensing": "License type",
+ "installContext": "Uninstall on device removal",
+ "toastSettings": "End user notifications",
+ "vpnConfiguration": "VPN"
+ },
+ "UpdateMode": {
+ "default": "Default",
+ "postponed": "Postponed",
+ "priority": "High Priority"
+ }
+ },
+ "WindowsEnrollment": {
+ "coManagementAuthorityDesc": "Configure co-management settings for Configuration Manager integration",
+ "coManagementAuthorityTitle": "Co-management Settings ",
+ "deploymentProfiles": "Windows Autopilot deployment profiles",
+ "description": "Learn about the seven different ways a Windows 10/11 PC can be enrolled into Intune by users or admins.",
+ "descriptionLabel": "Windows enrollment methods",
+ "enrollmentStatusPage": "Enrollment Status Page"
+ },
+ "Win32Program": {
+ "DeviceRestartBehaviorOptions": {
+ "allow": "App install may force a device restart",
+ "basedOnReturnCode": "Determine behavior based on return codes",
+ "force": "Intune will force a mandatory device restart",
+ "suppress": "No specific action"
+ },
+ "RunAsAccountOptions": {
+ "system": "System",
+ "user": "User"
+ },
+ "bladeTitle": "Program",
+ "deviceRestartBehavior": "Device restart behavior",
+ "deviceRestartBehaviorTooltip": "Select the device restart behavior after the app has successfully installed. Select 'Determine behavior based on return codes' to restart the device based on the return codes configuration settings. Select 'No specific action' to suppress device restarts during the app install for MSI-based apps. Select 'App install may force a device restart' to allow the app install to complete without suppressing restarts. Select 'Intune will force a mandatory device restart' to always restart the device after successful app installation.",
+ "header": "Specify the commands to install and uninstall this app:",
+ "installCommand": "Install command",
+ "installCommandMaxLengthErrorMessage": "Install command cannot exceed the maximum allowed length of 1024 characters.",
+ "installCommandTooltip": "The complete installation command line used to install this app.",
+ "runAs32Bit": "Run install and uninstall commands in a 32-bit process on 64-bit clients",
+ "runAs32BitTooltip": "Select 'Yes' to install and uninstall the app in a 32-bit process on 64-bit clients. Select 'No' (default) to install and uninstall the app in a 64-bit process on 64-bit clients. 32-bit clients will always use a 32-bit process.",
+ "runAsAccount": "Install behavior",
+ "runAsAccountTooltip": "Select 'System' to install this app for all users if supported. Select 'User' to install this app for the logged-in user on the device. For dual-purpose MSI apps, changes will prevent updates and uninstalls from successfully completing until the value applied to the device at the time of the original install is restored.",
+ "selectorLabel": "Program",
+ "uninstallCommand": "Uninstall command",
+ "uninstallCommandTooltip": "The complete uninstallation command line used to uninstall this app."
+ },
+ "CategoryDescription": {
+ "androidGeneralApplicationRestrictions": "Use these settings to stay informed about which users install apps that are not approved for use in your company. Select the type of restricted app list:
\n Prohibited apps - A list of apps that you want to be informed about when users install them.
\n Approved apps - A list of apps that are approved for use in your company. When users install an app that is not in this list, you will be informed.
\n ",
+ "androidZebraMxZebraMx": "Configure Zebra devices by uploading a MX profile in XML format.",
+ "iosDeviceFeaturesAirprint": "Use these settings to configure iOS devices to automatically connect to AirPrint compatible printers on your network. You'll need the IP address and resource path of your printers.",
+ "iosDeviceFeaturesExtensibleSingleSignOn": "Configure an app extension that enables single sign-on (SSO) for devices running iOS 13.0 or later.",
+ "iosDeviceFeaturesHomeScreenLayout": "Configure the layout for the dock and Home Screens on iOS devices. Certain devices may have limits to how many items can be displayed.",
+ "iosDeviceFeaturesIOSWallpaper": "Display an image that will appear on the Home Screen and/or the lock screen of iOS devices.\n To display a unique image in each location, create one profile with the lock screen image, and one with the Home Screen image.\n Then assign both profiles to your users.\n
\n \n - Max file size: 750 KB
\n - File type: PNG, JPG or JPEG
\n
\n ",
+ "iosDeviceFeaturesNotifications": "Specify notification settings for apps. Supports iOS 9.3 and later.",
+ "iosDeviceFeaturesSharedDevice": "Specify optional text displayed on the locked screen. It is supported on iOS 9.3 and later. Learn More",
+ "iosGeneralApplicationRestrictions": "Use these settings to stay informed about which users install apps that are not approved for use in your company. Select the type of restricted app list:
\n Prohibited apps - A list of apps that you want to be informed about when users install them.
\n Approved apps - A list of apps that are approved for use in your company. When users install an app that is not in this list, you will be informed.
\n ",
+ "iosGeneralApplicationVisibility": "Use the show apps list to specify the iOS apps that user can view or launch. Use the hidden apps list to specify the iOS apps that user cannot view or launch.",
+ "iosGeneralAutonomousSingleAppMode": "Apps you add to this list and assign to a device can lock the device to run only that app once launched, or lock the device while a certain action is running (for example taking a test). Once the action is complete, or you remove the restriction, the device returns to its normal state.",
+ "iosGeneralKiosk": "Kiosk mode locks various settings into a device, or specifies a single app that can be run on a device. This can be useful in environments like a retail store where you want a device to run only a single demo app.",
+ "macDeviceFeaturesAirprint": "Use these settings to configure macOS devices to automatically connect to AirPrint compatible printers on your network. You'll need the IP address and resource path of your printers.",
+ "macDeviceFeaturesAssociatedDomains": "Configure associated domains to share data and sign-in credentials between your org’s apps and websites. This profile can be applied to devices running macOS 10.15 or later.",
+ "macDeviceFeaturesExtensibleSingleSignOn": "Configure an app extension that enables single sign-on (SSO) for devices running macOS 10.15 or later.",
+ "macDeviceFeaturesLoginItems": "Choose which apps, files, and folders open when users log in to their devices. If you don't want users to change how the selected apps open, you can hide the app from the user configuration.",
+ "macDeviceFeaturesLoginWindow": "Configure the appearance of the macOS login screen and the functions that are available to users before and after they log in.",
+ "macExtensionsKernelExtensions": "Use these settings to configure kernel extension policy on macOS devices running 10.13.2 or later.",
+ "macGeneralDomains": "Emails that the user sends or receives which don't match the domains you specify here will be marked as untrusted.",
+ "windows10EndpointProtectionApplicationGuard": "While using Microsoft Edge, Microsoft Defender Application Guard protects your environment from sites that haven’t been defined as trusted by your organization. When users visit sites that aren’t listed in your isolated network boundary, the sites will be opened in a virtual browsing session in Hyper-V. Trusted sites are defined by a network boundary, which can be configured in Device Configuration. Note this feature is only available for devices running 64-bit Windows 10 or later.",
+ "windows10EndpointProtectionCredentialGuard": "Enabling Credential Guard will enable the following required settings:\n
\n \n - Enable Virtualization-based Security: Turns on virtualization-based security (VBS) at next reboot. Virtualization-based security uses the Windows Hypervisor to provide support for security services.
\n
\n - Secure Boot with Direct Memory Access: Turns on VBS with Secure Boot and direct memory access (DMA).
\n
\n ",
+ "windows10EndpointProtectionDeviceGuard": "Choose additional apps that either need to be audited by, or can be trusted to run by Microsoft Defender Application Control. Windows components and all apps from Windows store are automatically trusted to run.
\n Applications will not be blocked when running in “audit only” mode. “Audit only” mode logs all events in local client logs.\n ",
+ "windows10GeneralPrivacyPerApp": "Add apps that should have a different privacy behavior from what you defined in “Default privacy”.",
+ "windows10NetworkBoundaryNetworkBoundary": "The network boundary is the list of enterprise resources, such as cloud-hosted domain and IP address ranges for computers that are on the enterprise network. Define network boundaries to apply policies to protect data that resides in these locations.",
+ "windowsHealthMonitoring": "Configure the Windows health monitoring policy.",
+ "windowsPhoneGeneralApplicationRestrictions": "Windows Phone can block users from installing or launching apps specified in the prohibited apps list, or apps not specified in the approved apps list. All managed apps must be added to the approved list."
+ },
"Inputs": {
"accountDomain": "Account domain",
"accountDomainHint": "e.g. contosodomain",
@@ -9962,6 +9858,7 @@
"displayNameLabel": "Name",
"displayVersionHint": "Enter the app version",
"displayVersionLabel": "App Version",
+ "displayVersionLengthCheck": "The length of the display version should be a maximum of 130 characters",
"eBookCategoryNameLabel": "Default name",
"emailAccount": "Email account name",
"emailAccountHint": "e.g. Corporate Email",
@@ -10066,385 +9963,51 @@
"xmlFormatInvalid": "XML policy format is invalid.",
"xmlTooLarge": "Input size must be less than 1 MB."
},
- "Tooltips": {
- "PolicySettings": {
- "TouchId1": {
- "android": "On Android, you can allow using fingerprint identification instead of a PIN. Users are prompted to provide their fingerprints when they access this app with their work accounts.",
- "iOS": "On iOS/iPadOS devices, you can allow using fingerprint identification instead of a PIN. Users are prompted to provide their fingerprints when they access this app with their work accounts.",
- "mac": "On Mac devices, you can allow using fingerprint identification instead of a PIN. Users are prompted to provide their fingerprints when they access this app with their work accounts."
- },
- "appSharingFromLevel1": "Select one of the following options to specify the apps that this app can receive data from:",
- "appSharingFromLevel2": "{0}: Only allow receiving data in org documents or accounts from other policy managed apps",
- "appSharingFromLevel3": "{0}: Allow receiving data in org documents or accounts from any app",
- "appSharingFromLevel4": "{0}: Do not allow receiving data in org documents or accounts from any app",
- "appSharingFromLevel5": "{0}: Allow data transfer from any app and treat all incoming data without an user identity as Org data.",
- "appSharingToLevel1": "Select one of the following options to specify the apps that this app can send data to:",
- "appSharingToLevel2": "{0}: Only allow sending org data to other policy managed apps",
- "appSharingToLevel3": "{0}: Allow sending org data to any app",
- "appSharingToLevel4": "{0}: Do not allow sending org data to any app",
- "appSharingToLevel5": "{0}: Only allow transfer only to other policy managed apps and file transfer to other MDM managed apps on enrolled devices",
- "appSharingToLevel6": "{0}: Allow transfer only to other policy managed apps and filter OS Open-in/Share dialogs to only display policy managed apps",
- "conditionalEncryption1": "Select {0} to disable app encryption for internal app storage when device encryption is detected on an enrolled device.",
- "conditionalEncryption2": "Note: Intune can only detect device enrollment with Intune MDM. External app storage will still be encrypted to ensure data cannot be accessed by unmanaged applications.",
- "contactSyncMac": "If disabled, apps cannot save contacts to the native address book.",
- "contactsSync": "Choose Block to prevent policy managed apps from saving data to the device's native apps (like Contacts, Calendar and widgets), or to prevent the use of add-ins within the policy managed apps. If you choose Allow, the policy managed app can save data to the native apps or use add-ins, if those features are supported and enabled within the policy managed app.
Apps may provide additional configuration capability with app configuration policies. For more information, see the app's documentation.",
- "encryptionAndroid1": "For apps that are associated with an Intune mobile application management policy, encryption is provided by Microsoft. Data is encrypted synchronously during file I/O operations according to the setting in the mobile application management policy. Managed apps on Android use AES-128 encryption in CBC mode utilizing the platform cryptography libraries. The encryption method is not FIPS 140-2 compliant. SHA-256 encryption is supported as an explicit instruction using the SigAlg parameter and will only work on devices 4.2 and above. Content on the device storage is always be encrypted.",
- "encryptionAndroid2": "When you require encryption in your app policy, the end-user is required to setup and use a PIN to access their device. If there is not a PIN set up for device access, the apps will not launch and the end-user will instead see a message, which says, “Your company has required that you must first enable a device PIN to access this application.\"",
- "encryptionMac1": "For apps that are associated with an Intune mobile application management policy, encryption is provided by Microsoft. Data is encrypted synchronously during file I/O operations according to the setting in the mobile application management policy. Managed apps on Mac use AES-128 encryption in CBC mode utilizing the platform cryptography libraries. The encryption method is not FIPS 140-2 compliant. SHA-256 encryption is supported as an explicit instruction using the SigAlg parameter and will only work on devices 4.2 and above. Content on the device storage is always be encrypted.",
- "faceId1": "Where applicable, you can allow the use of face identification instead of PIN. Users are prompted to provide face identification when they access this app with their work accounts.",
- "faceId2": "Select Yes to allow face identification instead of a PIN for app access.",
- "managementLevelsAndroid1": "Use this option to specify whether this policy applies to Android device administrator devices, Android Enterprise devices, or unmanaged devices.",
- "managementLevelsAndroid2": "{0}: Unmanaged devices are devices where Intune MDM management has not been detected. This includes 3rd party MDM vendors.",
- "managementLevelsAndroid3": "{0}: Intune-managed devices using the Android Device Administration API.",
- "managementLevelsAndroid4": "{0}: Intune-managed devices using Android Enterprise Work Profiles or Android Enterprise Full Device Management.",
- "managementLevelsIos1": "Use this option to specify whether this policy applies to MDM managed devices or unmanaged devices.",
- "managementLevelsIos2": "{0}: Unmanaged devices are devices where Intune MDM management has not been detected. This includes 3rd party MDM vendors.",
- "managementLevelsIos3": "{0}: Managed devices are managed by Intune MDM.",
- "minAppVersion": "Define the required minimum App version number that a user should have to gain secure access to the app.",
- "minAppVersionWarning": "Define the recommended minimum App version number that a user should have for secure access to the app.",
- "minOsVersion": "Define the required minimum OS version number that a user should have to gain secure access to the app.",
- "minOsVersionWarning": "Define the recommended minimum OS version number that a user should have to gain secure access to the app.",
- "minPatchVersion": "Define the oldest required Android security patch level a user can have to gain secure access to the app.",
- "minPatchVersionWarning": "Define the oldest recommended Android security patch level a user can have for secure access to the app.",
- "minSdkVersion": "Define the required minimum Intune Application Protection Policy SDK version that a user should have to gain secure access to the app.",
- "requireAppPinDefault": "Select Yes to disable the app PIN when a device lock is detected on an enrolled device.
",
- "targetAllApps1": "Use this option to target your policy to apps on devices of any management state.",
- "targetAllApps2": "During policy conflict resolution this setting will be superseded if a user has policy targeted for a specific management state.",
- "touchId2": "Select {0} to require fingerprint identity instead of a PIN for app access."
- },
- "Tap": {
- "pinResetAfterNumberOfDays": "Specify the number of days that must pass before the user must reset the PIN.",
- "previousPinBlockCount": "This setting specifies the number of previous PINs that Intune will maintain. Any new PINs must be different from those that Intune is maintaining."
+ "WindowsFeatureUpdate": {
+ "EndOFSupportStatus": {
+ "notSupported": "Not supported",
+ "supportEnding": "Support ending",
+ "supported": "Supported"
+ }
},
- "WipPolicySettings": {
- "25": "",
- "allowWindowsSearch": "This will allow Windows Search to continue to search through encrypted data.",
- "authoritativeIpRanges": "Enable this setting if you want to override Windows auto-detection of IP ranges.",
- "authoritativeProxyServers": "Enable this setting if you want to override Windows auto-detection of proxy servers.",
- "checkInput": "Check input for validity",
- "dataRecoveryCert": "A recovery certificate is a special Encrypting File System (EFS) certificate you can use to recover encrypted files if your encryption key is lost or damaged. You need to create the recovery certificate, and specify it here. More information is here",
- "enterpriseCloudResources": "Specify cloud resources to be treated as corporate and be protected with Windows Information Protection policy. Multiple resources can be specified by separating individual entries with the '|' character.
If you have a proxy configured in your company, then you can specify the proxy through which traffic to cloud resources you specified will be routed.
URL[,Proxy]|URL[,Proxy]
Without proxy: contoso.sharepoint.com|contoso.visualstudio.com
With proxy: contoso.sharepoint.com,proxy.contoso.com|contoso.visualstudio.com,proxy.contoso.com
",
- "enterpriseIPv4Ranges": "Specify the IPv4 ranges that form your corporate network. These are used in conjunction with the Enterprise Network Domain Names that you specify to define your corporate network boundary.
This setting is required to have Windows Information Protection enabled.
Multiple ranges can be specified by separating individual entries with a comma.
For example: 3.4.0.1-3.4.255.255,192.168.1.1-192.168.255.255
",
- "enterpriseIPv6Ranges": "Specify the IPv6 ranges that form your corporate network. These are used in conjunction with the Enterprise Network Domain Names that you specify to define your corporate network boundary.
Multiple ranges can be specified by separating individual entries with a comma.
For example: 2001:4898:dc05::-2001:4898:dc05:ffff:ffff:ffff:ffff:ffff,2a01:110::-2a01:110:7fff:ffff:ffff:ffff:ffff:ffff
",
- "enterpriseInternalProxyServers": "If you have a proxy configured in your company, then you can specify the proxy through which traffic to cloud resources specified in the Enterprise Cloud Resources settings are to be routed.
Multiple values can be specified by separating individual entries with a semi-colon.
For example: contoso.internalproxy1.com;contoso.internalproxy2.com
",
- "enterpriseNetworkDomainNames": "Specify the DNS names that form your corporate network. These are used in conjunction with the IP ranges that you specify to define your corporate network boundary. Multiple values can be specified by separating individual entries with a comma.
This setting is required to have Windows Information Protection enabled.
For example: corp.contoso.com,region.contoso.com
",
- "enterpriseProtectedDomainNames": "Specify the DNS names that form your corporate network. These are used in conjunction with the IP ranges that you specify to define your corporate network boundary. Multiple values can be specified by separating individual entries with a '|'.
This setting is required to have Windows Information Protection enabled.
For example: corp.contoso.com|region.contoso.com
",
- "enterpriseProxyServers": "If you have external facing proxies in your corporate network, specify them here. When specifying a proxy server address, you should also specify the port through which traffic should be allowed and protected through Windows Information Protection.
Note: This list must not include servers in your Enterprise Internal Proxy Server list. Multiple values can be specified by separating individual entries with a semi-colon.
For example: proxy.contoso.com:80;proxy2.contoso.com:80
",
- "maxInactivityTime1": "Specifies the maximum amount of time (in minutes) allowed after the device is idle that will cause the device to become PIN or password locked. Users can select any existing timeout value less than the specified maximum time in the Settings app. Note the Lumia 950 and 950XL have a maximum timeout value of 5 minutes, regardless of the value set by this policy.",
- "maxInactivityTime2": "0 (default) - No timeout is defined. The default of '0' is interpreted as 'No timeout is defined.'",
- "maxPasswordAttempts1": "This policy has different behaviors on the mobile device and desktop.",
- "maxPasswordAttempts2": "On a mobile device, when the user reaches the value set by this policy, then the device is wiped.",
- "maxPasswordAttempts3": "On a desktop, when the user reaches the value set by this policy, it is not wiped.Instead, the desktop is put on BitLocker recovery mode, which makes the data inaccessible but recoverable.If BitLocker is not enabled, then the policy cannot be enforced.",
- "maxPasswordAttempts4": "Prior to reaching the failed attempts limit, the user is sent to the lock screen and warned that more failed attempts will lock their computer.When the user reaches the limit, the device automatically reboots and shows the BitLocker recovery page.This page prompts the user for the BitLocker recovery key.",
- "maxPasswordAttempts5": "0 (default) - The device is never wiped after an incorrect PIN or password is entered.",
- "maxPasswordAttempts6": "Most secure value is 0 if all policy values = 0; otherwise, Min policy value is the most secure value.",
- "mdmDiscoveryUrl": "Specify the URL for the MDM enrollment endpoint that users who enroll to MDM will use. By default, this is specified for Intune.",
- "minimumPinLength1": "Integer value that sets the minimum number of characters required for the PIN. Default value is 4. The lowest number you can configure for this policy setting is 4. The largest number you can configure must be less than the number configured in the Maximum PIN length policy setting or the number 127, whichever is the lowest.",
- "minimumPinLength2": "If you configure this policy setting, the PIN length must be greater than or equal to this number. If you disable or do not configure this policy setting, the PIN length must be greater than or equal to 4.",
- "name": "The name of this network boundary",
- "neutralResources": "If you have authentication redirection endpoints in your company, specify those here. The locations specified here are considered to be either personal or corporate depending on the context of the connection prior to the redirection.
Multiple values can be specified by separating individual entries with a comma.
For example: sts.contoso.com,sts.contoso2.com
",
- "passportForWork1": "Value that sets Windows Hello for Business as a method for signing into Windows.",
- "passportForWork2": "Default value is true.If you set this policy to false, the user cannot provision Windows Hello for Business except on Azure Active Directory joined mobile phones where provisioning is required.",
- "pinExpiration": "The largest number you can configure for this policy setting is 730. The lowest number you can configure for this policy setting is 0. If this policy is set to 0, then the user’s PIN will never expire.",
- "pinHistory1": "The largest number you can configure for this policy setting is 50. The lowest number you can configure for this policy setting is 0. If this policy is set to 0, then storage of previous PINs is not required.",
- "pinHistory2": "The current PIN of the user is included in the set of PINs associated with the user account. PIN history is not preserved through a PIN reset.",
- "protectUnderLock": "Protects app content while the device is in a locked state.",
- "protectionModeBlock": "Block: Blocks enterprise data from leaving protected apps.
",
- "protectionModeOff": "Off: User is free to relocate data off of protected apps. No actions are logged.
",
- "protectionModeOverride": "Allow overrides: User is prompted when attempting to relocate data from a protected to a non-protected app. If they choose to override this prompt, the action will be logged.
",
- "protectionModeSilent": "Silent: User is free to relocate data off of protected apps. These actions are logged.
",
- "required": "Required",
- "revokeOnMdmHandoff": "Added in Windows 10, version 1703. This policy controls whether to revoke the WIP keys when a device upgrades from MAM to MDM. If set to “Off”, the keys will not be revoked and the user will continue to have access to protected files after upgrade. This is recommended if the MDM service is configured with the same WIP EnterpriseID as the MAM service.",
- "revokeOnUnenroll": "This will cause encryption keys to be revoked when a device un-enrolls from this policy.",
- "rmsTemplateForEdp": "TemplateID GUID to use for RMS encryption. The Azure RMS template allows the IT admin to configure the details about who has access to RMS-protected file and how long they have access.",
- "showWipIcon": "This will let the user know when they are acting in a corporate context, by overlaying an icon.",
- "useRmsForWip": "Specifies whether to allow Azure RMS encryption for WIP."
+ "SecurityTemplate": {
+ "aSR": "Attack surface reduction",
+ "accountProtection": "Account protection",
+ "allDevices": "All devices",
+ "antivirus": "Antivirus",
+ "antivirusReporting": "Antivirus Reporting (Preview)",
+ "conditionalAccess": "Conditional access",
+ "deviceCompliance": "Device compliance",
+ "diskEncryption": "Disk encryption",
+ "eDR": "Endpoint detection and response",
+ "firewall": "Firewall",
+ "helpSupport": "Help and support",
+ "setup": "Setup",
+ "wdapt": "Microsoft Defender for Endpoint"
+ },
+ "Win32ReturnCodes": {
+ "CodeTypes": {
+ "failed": "Failed",
+ "hardReboot": "Hard reboot",
+ "retry": "Retry",
+ "softReboot": "Soft reboot",
+ "success": "Success"
},
- "requireAppPin": "Select Yes to disable the app PIN when a device lock is detected on an enrolled device.
Note: Intune cannot detect device enrollment with a third-party EMM solution on iOS/iPadOS.
"
- },
- "AppInfoBalloonText": {
- "Certificate": {
- "customSubjectName": "CN={{UserName}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US\nor\nCN={{AAD_Device_ID}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US",
- "keySize": "Select the number of bits contained in the key.",
- "keyUsage": "Specify the cryptographic action that is required to exchange the certificate’s public key.",
- "renewalThreshold": "Enter the percentage (between 1 and 99 percent) of remaining certificate lifetime that is allowed before a device can request renewal of the certificate. The recommended amount in Intune is 20%. (1-99)",
- "rootCert": "Choose a previously configured and assigned root CA certificate profile. The CA certificate must match the root certificate of the CA that is issuing the certificate for this profile (the one you are currently configuring).",
- "scepServerUrl": "Enter a URL for the NDES Server that issues certificates through SCEP (Must be HTTPS). e.g. https://contoso.com/certsrv/mscep/mscep.dll",
- "scepServerUrls": "Add one or more URLs for the NDES Server that issues certificates through SCEP (Must be HTTPS). e.g. https://contoso.com/certsrv/mscep/mscep.dll",
- "subjectAlternativeName": "Subject alternative name",
- "subjectNameFormat": "Subject name format",
- "validityPeriod": "The amount of time remaining before the certificate expires. Enter a value that is equal to or lower than the validity period shown in the certificate template. Default is set at one year."
- },
- "appInstallContext": "This specifies the install context to be associated with this app. For dual mode apps, select the desired context for this app. For all other apps, this is pre-selected based on the package and cannot be modified.",
- "autoUpdateMode": "Configure the update priority for the app. Select Default to require the device to be connected to WiFi, to be charging, and not to be actively in use before updating the app. Select High Priority to update the app as soon as the developer has published the app, regardless of charge status, WiFi capability, or end user activity on the device. High priority will only take effect on DO devices.",
- "configurationSettingsFormat": "Configuration settings format text",
- "ignoreVersionDetection": "Set this to “Yes” for apps that are automatically updated by the app developer (such as Google Chrome).",
- "ignoreVersionDetectionMacOSLobApp": "Select \"Yes\" for apps that are automatically updated by app developer or to only check for app bundleID before installation. Select \"No\" to check for app bundleID and version number before installation.",
- "installAsManagedMacOSLobApp": "This setting only applies to macOS 11 and higher. The app will be installed but not managed on macOS 10.15 and lower.",
- "installContextDropdown": "Select the appropriate install context. User context will install the app only for the targeted user while device context will install the app for all users on the device.",
- "ldapUrl": "This is the LDAP hostname where clients can get the public encryption keys for email recipients. Emails will be encrypted when a key is available. Supported formats: - ldap.example.com
\n- ldap.example.com:123
\n- ldap://ldap.example.com
- ldap://ldap.example.com:123
- ldaps://ldap.example.com
\n- ldaps://ldap.example.com:123
",
- "permissionsSettings": "Select runtime permissions for the associated app.",
- "policyAssociatedApp": "Select the app that this policy will be associated with.",
- "policyConfigurationSettings": "Select the method you want to use to define configuration settings for this policy.",
- "policyDescription": "Optionally, enter a description for this configuration policy.",
- "policyEnrollmentType": "Choose whether these settings are managed through device management or apps made with Intune SDK.",
- "policyName": "Enter a name for this configuration policy.",
- "policyPlatform": "Select the platform this app configuration policy will apply to.",
- "policyProfileType": "Select the device profile types that this app configuration profile will apply to",
- "policySMime": "Configure S/MIME signing and encryption settings for Outlook.",
- "sMimeDeployCertsFromIntune": "Specify whether or not S/MIME certificates will be delivered from Intune for use with Outlook.\nIntune can automatically deploy signing and encryption certificates to users through the Company Portal.",
- "sMimeEnable": "Specify whether or not S/MIME controls are enabled when composing an email",
- "sMimeEnableAllowChange": "Specify if the user is allowed to change the Enable S/MIME setting.",
- "sMimeEncryptAllEmails": "Specify whether or not all emails must be encrypted.\nEncrypting converts data to cipher text so that only the intended recipient can read it.",
- "sMimeEncryptAllEmailsAllowChange": "Specify if the user is allowed to change the Encrypt all emails setting.",
- "sMimeEncryptionCertProfile": "Specify certificate profile for email encryption.",
- "sMimeSignAllEmails": "Specify whether or not all emails must be signed.\nA digital signature verifies the authenticity of the email and ensures that the contents are not tampered with in transit.",
- "sMimeSignAllEmailsAllowChange": "Specify if the user is allowed to change the Sign all emails setting.",
- "sMimeSigningCertProfile": "Specify certificate profile for email signing.",
- "sMimeUserNotificationType": "Method to notify users that they must open Company Portal to retrieve S/MIME certificates for Outlook."
- },
- "WindowsQualityUpdateDaysUntilForcedReboot": {
- "oneDay": "1 day",
- "twoDays": "2 days",
- "zeroDays": "0 days"
- },
- "Autopilot": {
- "AssignResourceAccount": {
- "createNewCommandMenu": "Create new",
- "createNewResourceAccountInfo": "\nCreate a new resource account during enrollment. The Resource account will be added to the Resource account table right away, but won't be active until the device is enrolled, and the Surface Hub subscription is verified. Learn more about Resource Accounts
\n ",
- "createNewResourceTitle": "Create new resource account",
- "deviceNameInvalid": "Device name is in an invalid format",
- "deviceNameRequired": "A device name is required",
- "editResourceAccountLabel": "Edit",
- "selectExistingCommandMenu": "Select existing"
- },
- "Device": {
- "ComputerName": {
- "validFormat": "Names must be 15 characters or less, and can contain letters (a-z, A-Z), numbers (0-9), and hyphens. Names must not contain only numbers. Names cannot include a blank space."
- },
- "Header": {
- "addressableUserName": "User Friendly Name",
- "azureADDevice": "Associated Azure AD device",
- "batch": "Group Tag",
- "dateAssigned": "Date assigned",
- "deviceDisplayName": "Device Name",
- "deviceName": "Device name",
- "deviceUseType": "Device-use type",
- "enrollmentState": "Enrollment state",
- "intuneDevice": "Associated Intune device",
- "lastContacted": "Last contacted",
- "make": "Manufacturer",
- "model": "Model",
- "profile": "Assigned profile",
- "profileStatus": "Profile status",
- "purchaseOrderId": "Purchase order",
- "resourceAccount": "Resource account",
- "serialNumber": "Serial number",
- "userPrincipalName": "User"
- }
- },
- "DeviceUseType": {
- "meetingAndPresentation": "Meeting and presentation",
- "teamCollaboration": "Team collaboration"
- },
- "Devices": {
- "featureDescription": "Windows Autopilot lets you customize the out-of-box experience (OOBE) for your users.",
- "importErrorStatus": "Some devices were not imported. Click here for more information.",
- "importPendingStatus": "Import in progress. Elapsed time: {0} min. This process can take up to {1} min."
- },
- "DirectoryService": {
- "activeDirectoryAD": "Hybrid Azure AD joined",
- "activeDirectoryADLabel": "Hybrid Azure AD width Autopilot",
- "azureAD": "Azure AD joined",
- "unknownType": "Unknown Type"
- },
- "Filter": {
- "enrollmentState": "State",
- "profile": "Profile status"
- },
- "OOBE": {
- "AddressableUserName": {
- "validateEmpty": "User friendly name cannot be empty."
- },
- "ApplyComputerNameTemplate": {
- "infoBalloon": "Create a naming template to add names to your devices during enrollment.",
- "label": "Apply device name template"
- },
- "ApplyComputerNameTemplateDisabled": {
- "label": "For Hybrid Azure AD joined type of Autopilot deployment profiles, devices are named using settings specified in Domain Join configuration."
- },
- "ComputerNameTemplate": {
- "emptyValue": "MyCompany-%RAND:4%",
- "label": "Enter a name",
- "noDisallowedChars": "Name must only contain alphanumeric characters, hyphens, %SERIAL%, or %RAND:x%",
- "serialLength": "Cannot use more than 7 characters with %SERIAL%",
- "validateLessThan15Chars": "Name must be 15 characters or less",
- "validateNoSpaces": "Computer names cannot contain spaces",
- "validateNotAllNumbers": "Name must also contain letters and/or hyphens",
- "validateNotEmpty": "Name cannot be empty",
- "validateOnlyOneMacro": "Name must only contain one of %SERIAL% or %RAND:x%"
- },
- "ConfigureComputerNameTemplate": {
- "description": "Create a unique name for your devices. Names must be 15 characters or less, and can contain letters (a-z, A-Z), numbers (0-9), and hyphens. Names must not contain only numbers. Names cannot include a blank space. Use the %SERIAL% macro to add a hardware-specific serial number. Alternatively, use the %RAND:x% macro to add a random string of numbers, where x equals the number of digits to add."
- },
- "EnableWhiteGlove": {
- "infoBalloon": "Enable pressing Windows key 5 times to run OOBE without user authentication to enroll device and provision all system-context apps and settings. User-context apps and settings will be delivered when the user signs in.",
- "label": "Allow pre-provisioned deployment"
- },
- "HybridAzureADSkipConnectivityCheck": {
- "infoBalloon": "The Autopilot Hybrid Azure AD join flow will continue even if it does not establish domain controller connectivity during OOBE.",
- "label": "Skip AD connectivity check (preview)"
- },
- "accountType": "User account type",
- "accountTypeInfo": "Specify whether users are administrators or standard users on the device. Note that this setting does not apply to Global Administrator or Company Administrator accounts. These accounts cannot be standard users because they have access to all administrative features in Azure AD.",
- "configOOBEInfo": "\nConfigure the out-of-box experience for your Autopilot devices\n
",
- "configureDevice": "Deployment mode",
- "configureDeviceHintForSurfaceHub2": "Autopilot only supports self-deploying mode for Surface Hub 2. This mode doesn't associate the user with the enrolled device, so it doesn't require user credentials.",
- "configureDeviceHintForWindowsPC": "\n Deployment mode controls if a user needs to provide credentials in order to provision the device.\n
\n \n - \n User-Driven: Devices are associated with the user enrolling the device and user credentials are required to provision the device\n
\n - \n Self-Deploying (preview): Devices are not associated with the user enrolling the device and user credentials are not required to provision the device\n
\n
",
- "createSurfaceHub2Info": "Configure the Autopilot enrollment settings for your Surface Hub 2 devices. By default Autopilot enables skipping user authentication during OOBE. Learn more about Windows Autopilot for Surface Hub 2.",
- "createWindowsPCInfo": "\n\nThe following options are automatically enabled for Autopilot devices in self-deploying mode:\n
\n\n - \n Skip Work or Home usage selection\n
\n - \n Skip OEM registration and OneDrive configuration\n
\n - \n Skip user authentication in OOBE\n
\n
",
- "endUserDevice": "User-Driven",
- "hideEscapeLink": "Hide change account options",
- "hideEscapeLinkInfo": "Options to change account and start over with a different account appear, respectively, during initial device setup on the company sign-in page, and on the domain error page. To hide these options, you must configure company branding in Azure Active Directory (requires Windows 10, 1809 or later, or Windows 11).",
- "info": "Autopilot profile settings define the out-of-box experience users see when starting Windows for the first time. ",
- "language": "Language (Region)",
- "languageInfo": "Specify the language and region that will be used.",
- "licenseAgreement": "Microsoft Software License Terms",
- "licenseAgreementInfo": "Specify whether to show the EULA to users.",
- "plugAndForgetDevice": "Self-Deploying (preview)",
- "plugAndForgetGA": "Self-Deploying",
- "privacySettingWarning": "The default value for diagnostic data collection has changed for devices running Windows 10, version 1903 and later, or Windows 11. ",
- "privacySettings": "Privacy settings",
- "privacySettingsInfo": "Specify whether to show privacy settings to users.",
- "showCortanaConfigurationPage": "Cortana configuration",
- "showCortanaConfigurationPageInfo": "Show will enable the Cortana configuration introduction during startup.",
- "skipEULAWarning": "Important information about hiding license terms",
- "skipKeyboardSelection": "Automatically configure keyboard",
- "skipKeyboardSelectionInfo": "If true, skip the keyboard selection page if Language is set.",
- "subtitle": "Autopilot profiles",
- "title": "Out-of-box experience (OOBE)",
- "useOSDefaultLanguage": "Operating system default",
- "userSelect": "User select"
- },
- "Sync": {
- "lastRequestedLabel": "Last sync request",
- "lastSuccessfulLabel": "Last successful sync",
- "syncInProgress": "Sync is in progress. Check back again soon.",
- "syncInitiated": "Autopilot settings sync initiated.",
- "syncSettingsTitle": "Sync Autopilot settings"
- },
- "Title": {
- "devices": "Windows Autopilot devices"
- },
- "Tooltips": {
- "addressableUserName": "Greeting name displayed during device setup.",
- "azureADDevice": "Go to device details for associated device. N/A means that there's no associated device.",
- "batch": "A string attribute that can be used to identify a group of devices. Intune's Group Tag field maps to the OrderID attribute on Azure AD devices.",
- "dateAssigned": "Timestamp of when the profile was assigned to the device.",
- "deviceDisplayName": "Configure a unique name for a device. This name will be ignored in Hybrid Azure AD joined deployments. Device name still comes from the domain join profile for Hybrid Azure AD devices.",
- "deviceName": "The name shown when someone tried to discover and connect to the device.",
- "deviceUseType": " Device would setup based on your choice. You can always change later in settings.\n \n - For meetings and presentations, Windows Hello isn't turned on and data is removed after each session.\n
\n - For team collaboration, Windows Hello is turned on and profiles are saved for quick sign-in
\n
",
- "enrollmentState": "Specifies if the device has enrolled.",
- "intuneDevice": "Go to device details for associated device. N/A means that there's no associated device.",
- "lastContacted": "Timestamp of when the device was last contacted.",
- "make": "Manufacturer of the selected device.",
- "model": "Model of the selected device",
- "profile": "Name of the profile assigned to the device.",
- "profileStatus": "Specifies if a profile is assigned to the device.",
- "purchaseOrderId": "Purchase Order ID",
- "resourceAccount": "The device's identity, or user principal name (UPN).",
- "serialNumber": "Serial number of the selected device.",
- "userPrincipalName": "User to pre-fill authentication during device setup."
- },
- "allDevices": "All devices",
- "allDevicesAlreadyAssignedError": "An Autopilot profile is already assigned to All Devices.",
- "assignFailedDescription": "Failed to update assignments for {0}.",
- "assignFailedTitle": "Failed to update Autopilot profile assignments.",
- "assignSuccessDescription": "Successfully updated assignments for {0}.",
- "assignSuccessTitle": "Successfully updated Autopilot profile assignments.",
- "assignSufaceHub2ProfileNextStep": "Next steps for this deployment",
- "assignSurfaceHub2ProfileToDeviceGroup": "1. Assign this profile to at least one device group",
- "assignSurfaceHub2ProfileToResourceAccount": "2. Assign a resource account to each Surface Hub device to which you deploy this profile",
- "assignedDevicesCount": "Assigned devices",
- "assignedDevicesResourceAccountDescription": "To deploy this profile to a device, you must assign the device a Resource account. Select one device at a time to assign an existing Resource account or to create a new one. Learn more about Resource Accounts
",
- "assignedDevicesResourceAccountStatusBarMessage": "This table only lists the Surface Hub 2 devices that have been assigned this profile.",
- "assigningDescription": "Updating assignments for {0}.",
- "assigningTitle": "Updating Autopilot profile assignments.",
- "cannotDeleteMessage": "This profile is assigned to groups. You must unassign all groups from this profile before you can delete it.",
- "cannotDeleteTitle": "Cannot delete {0}",
- "createdDateTime": "Created",
- "deleteMessage": "If you delete this Autopilot profile, any devices assigned to this profile will display Unassigned.",
- "deleteMessageWithPolicySet": "{0} is included in one more more policy sets. If you delete {0}, you'll no longer be able to assign it via these policy sets.",
- "deleteTitle": "Are you sure you want to delete this profile?",
- "description": "Description",
- "deviceType": "Device type",
- "deviceUse": "Device use",
- "directoryServiceHintForSurfaceHub2": " \n Autopilot only supports Azure AD Joined for Surface Hub 2 devices. Specify how devices join Active Directory (AD) in your organization.\n
\n \n - \n Azure AD joined: Cloud-only without an on-premises Windows Server Active Directory.\n
\n
\n ",
- "directoryServiceHintForWindowsPC": "\n \n Specify how devices join Active Directory (AD) in your organization:\n
\n \n - \n Azure AD joined: Cloud-only without an on-premises Windows Server Active Directory\n
\n
\n ",
- "getAssignedDevicesCountError": "An error occurred while fetching the assigned devices count.",
- "getAssignmentsError": "An error occurred while fetching Autopilot profile assignments.",
- "harvestDeviceId": "Convert all targeted devices to Autopilot",
- "harvestDeviceIdDescription": "By default, this profile can only be applied to Autopilot devices synced from the Autopilot service.",
- "harvestDeviceIdInfo": "\n Select Yes to register all targeted devices to Autopilot if they are not already registered. The next time registered devices go through the Windows Out of Box Experience (OOBE), they will go through the assigned Autopilot scenario.\n
\n Please note that certain Autopilot scenarios require specific minimum builds of Windows. Please make sure your device has the required minimum build to go through the scenario.\n
\n Removing this profile won’t remove affected devices from Autopilot. To remove a device from Autopilot, use the Windows Autopilot Devices view.\n ",
- "harvestDeviceIdWarning": "After conversion, Autopilot devices can only be reverted by deleting them from the Autopilot devices list.",
- "holoLensCommandMenu": "HoloLens",
- "info": "Windows Autopilot deployment profiles lets you customize the out-of-box experience for your devices.",
- "invalidProfileNameMessage": "Character \"{0}\" is not allowed",
- "joinTypeLabel": "Join Azure AD as",
- "lastModifiedDateTime": "Last modified:",
- "name": "Name",
- "noAutopilotProfile": "No Autopilot profiles",
- "notEnoughPermissionAssignedError": "You don't have enough permissions to assign this profile to one or more of your selected groups. Please contact your administrator.",
- "profile": "profile",
- "resourceAccountStatusBarMessage": "A Resource Account is required for each Surface Hub 2 device to which this profile is deployed. Click to learn more.",
- "selectServices": "Select directory service devices will join",
- "surfaceHub2CommandMenu": "Surface Hub 2",
- "surfaceHub2SCommandMenu": "Surface Hub 2S",
- "userAffinityLabel": "Deployment mode",
- "windowsPCCommandMenu": "Windows PC",
- "directoryServiceLabel": "Join to Azure AD as"
- },
- "AppInformationTab": {
- "Error": {
- "multipleChildApps": "A macOS LOB app can only be installed as managed when the uploaded package contains a single app."
- },
- "Info": {
- "AppStoreUrl": {
- "android": "Enter the link to the app listing in Google Play store. For example:",
- "androidLink": "https://play.google.com/store/apps/details?id=com.microsoft.office.outlook",
- "windows": "Enter the link to the app listing in the Microsoft Store. For example:",
- "windowsLink": "https://www.microsoft.com/en-us/p/microsoft-to-do-lists-tasks-reminders/9nblggh5r558"
- },
- "appPackageFile": "A file that contains your app in a format that can be sideloaded on a device. Valid package types include: Android (.apk), iOS (.ipa), macOS (.intunemac), Windows (.msi, .appx, .appxbundle, .msix, and .msixbundle).",
- "applicableDeviceType": "Select the device types that can install this app.",
- "category": "Categorize the app to make it easier for users to sort and find in Company Portal. You can choose multiple categories.",
- "categoryLink": "https://docs.microsoft.com/en-us/intune/apps/apps-add#create-and-edit-categories-for-apps",
- "description": "Help your device users understand what the app is and/or what they can do in the app. This description will be visible to them in Company Portal.",
- "developer": "The name of the company or Individual that developed the app. This information will be visible to people signed into the admin center.",
- "displayVersion": "The version of the app. This information will be visible to users in the Company Portal.",
- "infoUrl": "Link people to a website or documentation that has more information about the app. The information URL will be visible to users in Company Portal.",
- "isFeatured": "Featured apps are prominently placed in Company Portal so that users can quickly get to them.",
- "learnMore": "Learn more",
- "logo": "Upload a logo that's associated with the app. This logo will appear next to the app throughout Company Portal.",
- "macOSDmgAppPackageFile": "A file that contains your app in a format that can be sideloaded on a device. Valid package type: .dmg.",
- "minOperatingSystem": "Select the earliest operating system version on which the app can be installed. If you assign the app to a device with an earlier operating system, it will not be installed.",
- "name": "Add a name for the app. This name will be visible in the Intune apps list and to users in the Company Portal.",
- "notes": "Add additional notes about the app. Notes will be visible to people signed in to the admin center.",
- "owner": "The name of the person in your organization who manages licensing or is the point-of-contact for this app. This name will be visible to people signed in to the admin center.",
- "packageName": "Contact the device manufacturer to get the app's package name. Example package name: com.example.app",
- "privacyUrl": "Provide a link for people who want to learn more about the app's privacy settings and terms. The privacy URL will be visible to users in Company Portal.",
- "publisher": "The name of the developer or company that distributes the app. This information will be visible to users in Company Portal.",
- "selectApp": "Search the App Store for iOS store apps that you want to deploy with Intune.",
- "useManagedBrowser": "If required, when a user opens the web app, it will open in an Intune-protected browser such as Microsoft Edge or Intune Managed Browser. This setting applies to both iOS and Android devices.",
- "useManagedBrowserLink": "https://docs.microsoft.com/en-us/intune/apps/app-configuration-managed-browser",
- "win32AppPackageFile": "A file that contains your app in a format that can be sideloaded on a device. Valid package type: .intunewin."
- },
- "descriptionPreview": "Preview",
- "descriptionRequired": "Description is required.",
- "editDescription": "Edit Description",
- "name": "App information",
- "nameForOfficeSuitApp": "App suite information"
- },
+ "Columns": {
+ "codeType": "Code type",
+ "returnCode": "Return code"
+ },
+ "bladeTitle": "Return codes",
+ "gridAriaLabel": "Return codes",
+ "header": "Specify return codes to indicate post-installation behavior:",
+ "onAddAnnounceMessage": "Return code added item {0} of {1}",
+ "onDeleteSuccess": "Return code {0} deleted successfully",
+ "returnCodeAlreadyUsedValidation": "Return code is already used.",
+ "returnCodeMustBeIntegerValidation": "Return code should be an integer.",
+ "returnCodeShouldBeAtLeast": "Return code should be at least {0}.",
+ "returnCodeShouldBeAtMost": "Return code should be at most {0}.",
+ "selectorLabel": "Return codes"
+ },
"NotificationMessage": {
"NotificationMessageTemplatesTab": {
"arabic": "Arabic",
@@ -10516,84 +10079,599 @@
"localeLabel": "Locale",
"isDefaultLocale": "Is Default"
},
- "Win32Program": {
- "DeviceRestartBehaviorOptions": {
- "allow": "App install may force a device restart",
- "basedOnReturnCode": "Determine behavior based on return codes",
- "force": "Intune will force a mandatory device restart",
- "suppress": "No specific action"
- },
- "RunAsAccountOptions": {
- "system": "System",
- "user": "User"
- },
- "bladeTitle": "Program",
- "deviceRestartBehavior": "Device restart behavior",
- "deviceRestartBehaviorTooltip": "Select the device restart behavior after the app has successfully installed. Select 'Determine behavior based on return codes' to restart the device based on the return codes configuration settings. Select 'No specific action' to suppress device restarts during the app install for MSI-based apps. Select 'App install may force a device restart' to allow the app install to complete without suppressing restarts. Select 'Intune will force a mandatory device restart' to always restart the device after successful app installation.",
- "header": "Specify the commands to install and uninstall this app:",
- "installCommand": "Install command",
- "installCommandMaxLengthErrorMessage": "Install command cannot exceed the maximum allowed length of 1024 characters.",
- "installCommandTooltip": "The complete installation command line used to install this app.",
- "runAs32Bit": "Run install and uninstall commands in a 32-bit process on 64-bit clients",
- "runAs32BitTooltip": "Select 'Yes' to install and uninstall the app in a 32-bit process on 64-bit clients. Select 'No' (default) to install and uninstall the app in a 64-bit process on 64-bit clients. 32-bit clients will always use a 32-bit process.",
- "runAsAccount": "Install behavior",
- "runAsAccountTooltip": "Select 'System' to install this app for all users if supported. Select 'User' to install this app for the logged-in user on the device. For dual-purpose MSI apps, changes will prevent updates and uninstalls from successfully completing until the value applied to the device at the time of the original install is restored.",
- "selectorLabel": "Program",
- "uninstallCommand": "Uninstall command",
- "uninstallCommandTooltip": "The complete uninstallation command line used to uninstall this app."
- },
- "OutlookAppConfigSettings": {
- "AllowUserToChangeSetting": {
- "title": "Allow user to change setting",
- "tooltip": "Specify if the user is allowed to change the setting."
- },
- "AllowWorkAccounts": {
- "title": "Allow only work or school accounts",
- "tooltip": " By enabling this setting, users will be unable to add personal email and storage accounts within Outlook. If the user has a personal account added to Outlook, the user is prompted to remove the personal account. If the user does not remove the personal account, the work or school account cannot be added."
- },
- "BlockExternalImages": {
- "title": "Block external images",
- "tooltip": "When block external images is enabled, the app will prevent the download of images hosted on the Internet that are embedded in the message body. When set as not configured, the default app setting is set to Off"
- },
- "ConfigureEmail": {
- "title": "Configure email account settings"
- },
- "DefaultAppSignatureSetting": {
- "Tooltip": {
- "android": "Default app signature indicates whether the app will use “Get Outlook for Android” as the default signature during message composition. If the setting is configured as Off, the default signature will not be used; however, users can add their own signature.\n\nWhen set as Not Configured, the default app setting is set to On.",
- "iOS": "Default app signature indicates whether the app will use “Get Outlook for iOS” as the default signature during message composition. If the setting is configured as Off, the default signature will not be used; however, users can add their own signature.\n\nWhen set as Not Configured, the default app setting is set to On."
- },
- "title": "Default app signature"
- },
- "OfficeFeedReplies": {
- "title": "Discover Feed",
- "tooltip": "Discover Feed surfaces your most frequently accessed Office files. By default, this feed is enabled when Delve is enabled for the user. When set as not configured, the default app setting is set to On."
- },
- "OrganizeMailByThread": {
- "title": "Organize mail by thread",
- "tooltip": "The default behavior in Outlook is to bundle mail conversations into a threaded conversation view. If this setting is disabled Outlook will display each mail individually and will not group them by thread."
- },
- "PlayMyEmails": {
- "title": "Play My Emails",
- "tooltip": "The Play My Emails feature is not enabled by default in the app, but it is promoted to eligible users via a banner in the inbox. When set to Off, this feature will not be promoted to eligible users in the app. Users can choose to manually enable Play My Emails from within the app, even when this feature is set to Off. When set as Not configured, the default app setting is On and the feature will be promoted to eligible users."
- },
- "SuggestedReplies": {
- "title": "Suggested replies",
- "tooltip": "When you open a message, Outlook might suggest replies below the message. If you select a suggested reply, you can edit the reply before sending it."
- },
- "SyncCalendars": {
- "title": "Sync Calendars",
- "tooltip": "Configure whether users can sync their Outlook calendar to the native calendar app and database."
- },
- "TextPredictions": {
- "title": "Text Predictions",
- "tooltip": "Outlook can suggest words and phrases as you compose messages. When Outlook offers a suggestion, swipe to accept it. When set as not configured, the default app setting is set to On."
+ "WindowsQualityUpdateProfile": {
+ "Details": {
+ "DaysUntilForcedReboot": {
+ "label": "Number of days to wait before restart is enforced"
+ },
+ "Description": {
+ "label": "Description"
+ },
+ "Name": {
+ "label": "Name"
+ },
+ "QualityUpdateRelease": {
+ "label": "Expedite installation of quality updates if device OS version less than:"
+ },
+ "bladeTitle": "Quality updates Windows 10 and later (Preview)",
+ "loadError": "Loading failed!"
+ },
+ "TabName": {
+ "qualityUpdateSettings": "Settings"
+ },
+ "infoBoxText": "The only dedicated quality update control currently available other than the existing update rings policy for Windows 10 and later is the ability to expedite quality updates for devices that fall behind a specified patch level. Additional controls will be available in the future.",
+ "warningBoxText": "While expediting software updates can help decrease the time to get to compliance when necessary, it has a larger impact on end-user productivity. The chances that they will experience a restart during business hours is significantly increased."
+ },
+ "TermsOfUse": {
+ "Languages": {
+ "addLanguage": "Add language",
+ "af": "Afrikaans",
+ "am": "Amharic",
+ "arSA": "Arabic (Saudi Arabia)",
+ "as": "Assamese",
+ "az": "Azerbaijani",
+ "be": "Belarusian",
+ "bg": "Bulgarian",
+ "bn": "Bangla",
+ "bnIN": "Bangla (India)",
+ "bs": "Bosnian",
+ "ca": "Catalan",
+ "caESvalencia": "Valencian (Spain)",
+ "cs": "Czech",
+ "cy": "Welsh",
+ "da": "Danish",
+ "de": "German",
+ "default": "Default",
+ "defaultDetailsTag": "{0} (Default)",
+ "el": "Greek",
+ "en": "English",
+ "enGB": "English (United Kingdom)",
+ "es": "Spanish",
+ "esMX": "Spanish (Mexico)",
+ "et": "Estonian",
+ "eu": "Basque",
+ "fa": "Persian",
+ "fi": "Finnish",
+ "fil": "Filipino",
+ "fr": "French",
+ "frCA": "French (Canada)",
+ "ga": "Irish",
+ "gd": "Scottish Gaelic",
+ "gl": "Galician",
+ "gu": "Gujarati",
+ "ha": "Hausa",
+ "he": "Hebrew",
+ "hi": "Hindi",
+ "hr": "Croatian",
+ "hu": "Hungarian",
+ "hy": "Armenian",
+ "id": "Indonesian",
+ "ig": "Igbo",
+ "is": "Icelandic",
+ "it": "Italian",
+ "ja": "Japanese",
+ "ka": "Georgian",
+ "kk": "Kazakh",
+ "km": "Khmer",
+ "kn": "Kannada",
+ "ko": "Korean",
+ "kok": "Konkani",
+ "kuArab": "Central Kurdish (Arabic)",
+ "ky": "Kyrgyz",
+ "languageOptions": "Language Options",
+ "lb": "Luxembourgish",
+ "lo": "Lao",
+ "lt": "Lithuanian",
+ "lv": "Latvian",
+ "mi": "Maori",
+ "mk": "Macedonian",
+ "ml": "Malayalam",
+ "mn": "Mongolian",
+ "mr": "Marathi",
+ "ms": "Malay",
+ "mt": "Maltese",
+ "ne": "Nepali",
+ "nl": "Dutch",
+ "nnNO": "Norwegian, Nynorsk (Norway)",
+ "no": "Norwegian",
+ "notSpecified": "Language not specified",
+ "nso": "Sesotho sa Leboa",
+ "or": "Odia",
+ "paArabPK": "Punjabi (Islamic Republic of Pakistan)",
+ "paIN": "Punjabi (India)",
+ "pl": "Polish",
+ "prs": "Dari",
+ "ptBR": "Portuguese (Brazil)",
+ "ptPT": "Portuguese (Portugal)",
+ "quz": "Quechua",
+ "ro": "Romanian",
+ "ru": "Russian",
+ "rw": "Kinyarwanda",
+ "sd": "Sindhi",
+ "si": "Sinhala",
+ "sk": "Slovak",
+ "sl": "Slovenian",
+ "sq": "Albanian",
+ "srCyrlBA": "Serbian (Cyrillic, Bosnia and Herzegovina)",
+ "srCyrlRS": "Serbian (Cyrillic, Serbia)",
+ "srLatnRS": "Serbian (Latin, Serbia)",
+ "sv": "Swedish",
+ "sw": "Kiswahili",
+ "ta": "Tamil",
+ "te": "Telugu",
+ "tg": "Tajik",
+ "th": "Thai",
+ "ti": "Tigrinya",
+ "tk": "Turkmen",
+ "tn": "Setswana",
+ "tr": "Turkish",
+ "tt": "Tatar",
+ "ug": "Uyghur",
+ "uk": "Ukrainian",
+ "ur": "Urdu",
+ "uz": "Uzbek",
+ "vi": "Vietnamese",
+ "wo": "Wolof",
+ "xh": "isiXhosa",
+ "yo": "Yoruba",
+ "zhHans": "Chinese (Simplified)",
+ "zhHant": "Chinese (Traditional)",
+ "zu": "isiZulu"
+ },
+ "AcceptanceExpirationFrequency": {
+ "annually": "Annually",
+ "biannually": "Bi-annually",
+ "monthly": "Monthly",
+ "quarterly": "Quarterly"
},
- "ThemesEnabled": {
- "title": "Themes enabled",
- "tooltip": "Specify if the user is allowed to use a custom visual theme."
- }
- },
+ "Wizard": {
+ "AgreementTargetEntityScope": {
+ "NotSelected": {
+ "label": "None selected"
+ },
+ "selectEntityTitle": "Select group",
+ "title": "Select group"
+ },
+ "PolicyFile": {
+ "Languages": {
+ "Empty": {
+ "default": "Select default language",
+ "nonDefault": "Select a language"
+ }
+ },
+ "Validations": {
+ "duplicateLanguage": "Oops, {0} appears to be selected multiple times. Language selection must be unique."
+ }
+ },
+ "PolicyTemplate": {
+ "InfoBox": {
+ "allGuestsAllApps": "A conditional access policy will be created for all guests and all cloud apps. This policy impacts the Azure portal. Once this is created you might be required to sign-out and sign-in.",
+ "allUsersAllApps": "A conditional access policy will be created for all users and all cloud apps. This policy impacts the Azure portal. Once this is created you will be required to sign-out and sign-in.",
+ "custom": "Select the users, groups, and apps that this Terms of Use will be applied to.",
+ "noPolicy": "This terms of use will appear in the grant control list when creating a conditional access policy."
+ }
+ },
+ "Section": {
+ "conditionalAccessSubtitle": "Enforce with conditional access policy templates",
+ "conditionalAccessTitle": "Conditional access",
+ "termsOfUseSubtitle": "Create and upload documents",
+ "termsOfUseTitle": "Terms of use"
+ },
+ "acceptanceDurationInfo": "The terms of use will be enforced immediately and each user will have to re-consent every specified number of days.",
+ "acceptanceDurationLabel": "Duration before re-acceptance required (days)",
+ "acceptanceDurationPlaceholder": "Example: '90'",
+ "acceptanceExpirationFrequencyInfo": "Require users to consent on a recurring basis.",
+ "acceptanceExpirationFrequencyLabel": "Frequency",
+ "acceptanceExpirationStartDateTimeInfo": "The terms of use will be enforced immediately and users will be required to re-consent on this date.",
+ "acceptanceExpirationStartDateTimeLabel": "Expire starting on",
+ "agreementIsPerDeviceAcceptanceRequiredInfo": "The end users will be required to consent to the terms of use on every device.",
+ "agreementIsPerDeviceAcceptanceRequiredLabel": "Require users to consent on every device",
+ "agreementIsViewingBeforeAcceptanceRequiredInfo": "The end users will be required to view the terms of use prior to accepting.",
+ "agreementIsViewingBeforeAcceptanceRequiredLabel": "Require users to expand the terms of use",
+ "agreementNameInfo": "Name will be used to manage the terms of use within the Azure portal.",
+ "agreementNameLabel": "Name",
+ "agreementNamePlaceholderText": "Example: 'All users terms of use'",
+ "agreementRequirmentLabel": "Required Upon",
+ "agreementTargetEntityLabel": "Users targeted",
+ "agreementUploadPolicyLabel": "Terms of use",
+ "agreementUploadPolicyPlaceholderText": "Upload required PDF",
+ "createButtonLabel": "Create",
+ "createPolicyInfo": "In order to enforce the terms of use, a conditional access policy is required. You can create a conditional access policy targeted to specific users and applications later or use one of the predefined templates.",
+ "createPolicyLabel": "Create a policy",
+ "isAcceptanceExpirationEnabledInfo": "The terms of use will be enforced immediately and all users will be forced to re-consent on a schedule.",
+ "isAcceptanceExpirationEnabledLabel": "Expire consents",
+ "pdfValidationInvalidFileFormat": "The file must be in the .pdf format.",
+ "policyFilesInfo": "Upload a PDF file containing the terms of use that your end users must accept. Based on end user preferences they will be shown the appropriate language or if not match the default language will be shown.
For end users agreeing on mobile devices, we recommend the PDF font size to be at least 24 pt.
Display name will be the title of the terms of use that is presented to the end user.",
+ "policyFilesLabel": "Terms of use document",
+ "policyTemplateInfo": "These templates are pre configured conditional access policies that are targeted to specific users and applications.",
+ "policyTemplateLabel": "Policy templates",
+ "title": "New terms of use"
+ }
+ },
+ "TACSettings": {
+ "edgeSettings": "Edge configuration settings",
+ "edgeWindowsDataProtectionSettings": "Edge (Windows) data protection settings - Preview",
+ "edgeWindowsSettings": "Edge (Windows) configuration settings - Preview",
+ "generalAppConfig": "General app configuration",
+ "generalSettings": "General configuration settings",
+ "outlookSMIMEConfig": "Outlook S/MIME settings",
+ "outlookSettings": "Outlook configuration settings",
+ "sMIME": "S/MIME"
+ },
+ "MicrosoftEdgeChannel": {
+ "beta": "Beta",
+ "dev": "Dev",
+ "stable": "Stable"
+ },
+ "WipPolicySettings": {
+ "addNetworkBoundary": "Add network boundary",
+ "addNetworkBoundaryButton": "Add network boundary...",
+ "allowWindowsSearch": "Allow Windows Search to search encrypted corporate data and Store apps",
+ "authoritativeIpRanges": "Enterprise IP Ranges list is authoritative (do not auto-detect)",
+ "authoritativeProxyServers": "Enterprise Proxy Servers list is authoritative (do not auto-detect)",
+ "boundaryType": "Boundary type",
+ "cloudResources": "Cloud resources",
+ "corporateIdentity": "Corporate identity",
+ "dataRecoveryCert": "Upload a Data Recovery Agent (DRA) certificate to allow recovery of encrypted data",
+ "editNetworkBoundary": "Edit network boundary",
+ "enrollmentState": "Enrollment state",
+ "iPv4Ranges": "IPv4 ranges",
+ "iPv6Ranges": "IPv6 ranges",
+ "internalProxyServers": "Internal proxy servers",
+ "maxInactivityTime": "Maximum amount of time (in minutes) allowed after the device is idle that will cause the device to become PIN or password locked",
+ "maxPasswordAttempts": "Number of authentication failures allowed before the device will be wiped",
+ "mdmDiscoveryUrl": "MDM discovery URL",
+ "mdmRequiredSettingsInfo": "This policy only applies to Windows 10 Anniversary Edition and higher. This policy uses Windows Information Protection (WIP) to apply protection.",
+ "minimumPinLength": "Set the minimum number of characters required for the PIN",
+ "name": "Name",
+ "networkBoundariesGridEmptyText": "Any network boundaries you add will show up here",
+ "networkBoundary": "Network boundary",
+ "networkDomainNames": "Network domains",
+ "neutralResources": "Neutral resources",
+ "passportForWork": "Use Windows Hello for Business as a method for signing into Windows",
+ "pinExpiration": "Specify the period of time (in days) that a PIN can be used before the system requires the user to change it",
+ "pinHistory": "Specify the number of past PINs that can be associated to a user account that can’t be reused",
+ "pinLowercaseLetters": "Configure the use of lowercase letters in the Windows Hello for Business PIN",
+ "pinSpecialCharacters": "Configure the use of special characters in the Windows Hello for Business PIN",
+ "pinUppercaseLetters": "Configure the use of uppercase letters in the Windows Hello for Business PIN",
+ "protectUnderLock": "Prevent corporate data from being accessed by apps when the device is locked. Applies only to Windows 10 Mobile",
+ "protectedDomainNames": "Protected domains",
+ "proxyServers": "Proxy servers",
+ "requireAppPin": "Disable app PIN when device PIN is managed",
+ "requiredSettings": "Required settings",
+ "requiredSettingsInfo": "Changing the scope or removing this policy will decrypt corporate data.",
+ "revokeOnMdmHandoff": "Revoke access to protected data when the device enrolls to MDM",
+ "revokeOnUnenroll": "Revoke encryption keys on unenroll",
+ "rmsTemplateForEdp": "Specify the template ID to use for Azure RMS",
+ "showWipIcon": "Show the enterprise data protection icon",
+ "type": "Type",
+ "useRmsForWip": "Use Azure RMS for WIP",
+ "value": "Value",
+ "weRequiredSettingsInfo": "This policy only applies to Windows 10 Creators Update and higher. This policy uses Windows Information Protection (WIP) and Windows MAM to apply protection.",
+ "wipProtectionMode": "Windows Information Protection mode",
+ "withEnrollment": "With enrollment",
+ "withoutEnrollment": "Without enrollment"
+ },
+ "OfficeApplicationAdditionalType": {
+ "projectProRetail": "Project Online Desktop Client",
+ "visioProRetail": "Visio Online Plan 2"
+ },
+ "Countries": {
+ "ae": "United Arab Emirates",
+ "ag": "Antigua and Barbuda",
+ "ai": "Anguilla",
+ "al": "Albania",
+ "am": "Armenia",
+ "ao": "Angola",
+ "ar": "Argentina",
+ "at": "Austria",
+ "au": "Australia",
+ "az": "Azerbaijan",
+ "bb": "Barbados",
+ "be": "Belgium",
+ "bf": "Burkina Faso",
+ "bg": "Bulgaria",
+ "bh": "Bahrain",
+ "bj": "Benin",
+ "bm": "Bermuda",
+ "bn": "Brunei",
+ "bo": "Bolivia",
+ "br": "Brazil",
+ "bs": "Bahamas",
+ "bt": "Bhutan",
+ "bw": "Botswana",
+ "by": "Belarus",
+ "bz": "Belize",
+ "ca": "Canada",
+ "cg": "Republic Of Congo",
+ "ch": "Switzerland",
+ "cl": "Chile",
+ "cn": "China",
+ "co": "Colombia",
+ "cr": "Costa Rica",
+ "cv": "Cape Verde",
+ "cy": "Cyprus",
+ "cz": "Czech Republic",
+ "de": "Germany",
+ "dk": "Denmark",
+ "dm": "Dominica",
+ "do": "Dominican Republic",
+ "dz": "Algeria",
+ "ec": "Ecuador",
+ "ee": "Estonia",
+ "eg": "Egypt",
+ "es": "Spain",
+ "fi": "Finland",
+ "fj": "Fiji",
+ "fm": "Federated States Of Micronesia",
+ "fr": "France",
+ "gb": "United Kingdom",
+ "gd": "Grenada",
+ "gh": "Ghana",
+ "gm": "Gambia",
+ "gr": "Greece",
+ "gt": "Guatemala",
+ "gw": "Guinea-Bissau",
+ "gy": "Guyana",
+ "hk": "Hong Kong",
+ "hn": "Honduras",
+ "hr": "Croatia",
+ "hu": "Hungary",
+ "id": "Indonesia",
+ "ie": "Ireland",
+ "il": "Israel",
+ "in": "India",
+ "is": "Iceland",
+ "it": "Italy",
+ "jm": "Jamaica",
+ "jo": "Jordan",
+ "jp": "Japan",
+ "ke": "Kenya",
+ "kg": "Kyrgyzstan",
+ "kh": "Cambodia",
+ "kn": "St. Kitts and Nevis",
+ "kr": "Republic Of Korea",
+ "kw": "Kuwait",
+ "ky": "Cayman Islands",
+ "kz": "Kazakstan",
+ "la": "Lao People’s Democratic Republic",
+ "lb": "Lebanon",
+ "lc": "St. Lucia",
+ "lk": "Sri Lanka",
+ "lr": "Liberia",
+ "lt": "Lithuania",
+ "lu": "Luxembourg",
+ "lv": "Latvia",
+ "md": "Republic Of Moldova",
+ "mg": "Madagascar",
+ "mk": "North Macedonia",
+ "ml": "Mali",
+ "mn": "Mongolia",
+ "mo": "Macau",
+ "mr": "Mauritania",
+ "ms": "Montserrat",
+ "mt": "Malta",
+ "mu": "Mauritius",
+ "mw": "Malawi",
+ "mx": "Mexico",
+ "my": "Malaysia",
+ "mz": "Mozambique",
+ "na": "Namibia",
+ "ne": "Niger",
+ "ng": "Nigeria",
+ "ni": "Nicaragua",
+ "nl": "Netherlands",
+ "no": "Norway",
+ "np": "Nepal",
+ "nz": "New Zealand",
+ "om": "Oman",
+ "pa": "Panama",
+ "pe": "Peru",
+ "pg": "Papua New Guinea",
+ "ph": "Philippines",
+ "pk": "Pakistan",
+ "pl": "Poland",
+ "pt": "Portugal",
+ "pw": "Palau",
+ "py": "Paraguay",
+ "qa": "Qatar",
+ "ro": "Romania",
+ "ru": "Russia",
+ "sa": "Saudi Arabia",
+ "sb": "Solomon Islands",
+ "sc": "Seychelles",
+ "se": "Sweden",
+ "sg": "Singapore",
+ "si": "Slovenia",
+ "sk": "Slovakia",
+ "sl": "Sierra Leone",
+ "sn": "Senegal",
+ "sr": "Suriname",
+ "st": "Sao Tome and Principe",
+ "sv": "El Salvador",
+ "sz": "Swaziland",
+ "tc": "Turks and Caicos",
+ "td": "Chad",
+ "th": "Thailand",
+ "tj": "Tajikistan",
+ "tm": "Turkmenistan",
+ "tn": "Tunisia",
+ "tr": "Turkey",
+ "tt": "Trinidad and Tobago",
+ "tw": "Taiwan",
+ "tz": "Tanzania",
+ "ua": "Ukraine",
+ "ug": "Uganda",
+ "us": "United States",
+ "uy": "Uruguay",
+ "uz": "Uzbekistan",
+ "vc": "St. Vincent and The Grenadines",
+ "ve": "Venezuela",
+ "vg": "British Virgin Islands",
+ "vn": "Vietnam",
+ "ye": "Yemen",
+ "za": "South Africa",
+ "zw": "Zimbabwe"
+ },
+ "OfficeUpdateChannel": {
+ "current": "Current Channel",
+ "deferred": "Semi-Annual Enterprise Channel",
+ "firstReleaseCurrent": "Current Channel (Preview)",
+ "firstReleaseDeferred": "Semi-Annual Enterprise Channel (Preview)",
+ "monthlyEnterprise": "Monthly Enterprise Channel",
+ "placeHolder": "Select one"
+ },
+ "AppProtection": {
+ "allAppTypes": "Target to all app types",
+ "androidPlatformLabel": "Android",
+ "appsInAndroidWorkProfile": "Apps in Android Work Profile",
+ "appsOnIntuneManagedDevices": "Apps on Intune managed devices",
+ "appsOnUnmanagedDevices": "Apps on unmanaged devices",
+ "iOSPlatformLabel": "iOS/iPadOS",
+ "iosAndroidMacPlatformLabel": "iOS, Android, Mac",
+ "iosAndroidPlatformLabel": "iOS, Android",
+ "macPlatformLabel": "Mac",
+ "notAvailable": "Not Available",
+ "windows10PlatformLabel": "Windows 10 and later",
+ "withEnrollment": "With enrollment",
+ "withoutEnrollment": "Without enrollment"
+ },
+ "InstallContextType": {
+ "device": "Device",
+ "deviceContext": "Device context",
+ "user": "User",
+ "userContext": "User context"
+ },
+ "ProactiveRemediations": {
+ "Create": {
+ "Basics": {
+ "DescriptionMultiLineTextBox": {
+ "label": "Description",
+ "placeholder": "Enter a description"
+ },
+ "NameTextBox": {
+ "label": "Name",
+ "placeholder": "Enter a name"
+ },
+ "PublisherTextBox": {
+ "label": "Publisher",
+ "placeholder": "Enter a publisher"
+ },
+ "VersionTextBox": {
+ "label": "Version"
+ },
+ "headerDescription": "Create a new custom script package from detection and remediation scripts that you’ve written."
+ },
+ "ScopeTags": {
+ "headerDescription": "Select one or more groups to assign the script package."
+ },
+ "Settings": {
+ "DetectionScriptMultiLineTextBox": {
+ "label": "Detection script",
+ "placeholder": "Input script text",
+ "requiredValidationMessage": "Please enter the detection script"
+ },
+ "EnforceScriptSignatureCheckOptionPicker": {
+ "label": "Enforce script signature check"
+ },
+ "LoggedOnCredentialsOptionPicker": {
+ "label": "Run this script using the logged-on credentials"
+ },
+ "RemediationScript": {
+ "infoBox": "This script will run in detect-only mode because there is no remediation script."
+ },
+ "RemediationScriptMultiLineTextBox": {
+ "label": "Remediation script",
+ "placeholder": "Input script text"
+ },
+ "RunIn64BitPSOptionPicker": {
+ "label": "Run script in 64-bit PowerShell"
+ },
+ "ScriptMultiLineTextBox": {
+ "base64EncodingValidationMessage": "Invalid script. One or more characters used in the script is not valid."
+ },
+ "headerDescription": "Create a custom script package from scripts you've written. By default, scripts will run on assigned devices every day.",
+ "infoBox": "This script is read-only. Some of the settings for this script might be disabled."
+ },
+ "title": "Create custom script",
+ "ScriptProperties": {
+ "GridHeaders": {
+ "interval": "Interval",
+ "time": "Date and time"
+ },
+ "Interval": {
+ "day": "Repeats every day",
+ "days": "Repeats every {0} days",
+ "hour": "Repeats every hour",
+ "hours": "Repeats every {0} hours",
+ "month": "Repeats every month",
+ "months": "Repeats every {0} months",
+ "week": "Repeats every week",
+ "weeks": "Repeats every {0} weeks"
+ },
+ "Time": {
+ "utc": "{0} (UTC)",
+ "utcWithDate": "{0} (UTC) on {1}",
+ "withDate": "{0} on {1}"
+ }
+ }
+ },
+ "Edit": {
+ "title": "Edit - {0}"
+ }
+ },
+ "EdgeAppConfig": {
+ "AllowedURLs": {
+ "title": "Allowed URLs",
+ "tooltip": "Specify the sites your users are allowed to access while in their work context. No other sites will be allowed. You may choose to configure either an allowed/blocked list, but not both. "
+ },
+ "ApplicationProxyRedirection": {
+ "header": "Application proxy",
+ "title": "Application proxy redirection",
+ "tooltip": "Enable App proxy redirection to give users access to corporate links and on-premise web apps."
+ },
+ "BlockedURLs": {
+ "title": "Blocked URLs",
+ "tooltip": "Specify the sites that are blocked for your users while in their work context. All other sites will be allowed. You may choose to configure either an allowed/blocked list, but not both. "
+ },
+ "Bookmarks": {
+ "header": "Managed bookmarks",
+ "tooltip": "Enter a list of bookmarked URLs for your users to have available when using Microsoft Edge in their work context.",
+ "uRL": "URL"
+ },
+ "HomepageURL": {
+ "header": "Managed homepage",
+ "title": "Homepage shortcut URL",
+ "tooltip": "Configure a homepage shortcut that will appear to users as the first icon beneath the search bar when they open a new tab in Microsoft Edge."
+ },
+ "PersonalContext": {
+ "label": "Redirect restricted sites to personal context",
+ "tooltip": "Configure if users should be allowed to transition to their personal context to open restricted sites."
+ }
+ },
+ "BooleanActions": {
+ "allow": "Allow",
+ "block": "Block",
+ "configured": "Configured",
+ "disable": "Disable",
+ "dontRequire": "Don't Require",
+ "enable": "Enable",
+ "hide": "Hide",
+ "limit": "Limit",
+ "notConfigured": "Not configured",
+ "require": "Require",
+ "show": "Show",
+ "yes": "Yes"
+ },
+ "ArchitectureOptions": {
+ "sixtyFourBit": "64-bit",
+ "thirtyTwoBit": "32-bit"
+ },
+ "WindowsQualityUpdateDaysUntilForcedReboot": {
+ "oneDay": "1 day",
+ "twoDays": "2 days",
+ "zeroDays": "0 days"
+ },
"SoftwareUpdates": {
"BladeTitles": {
"overview": "Overview"
@@ -10800,66 +10878,732 @@
"notScannedYet": "Not scanned yet",
"outOfDateIosDevices": "Out of Date iOS Devices"
},
- "ScheduledAction": {
- "Form": {
- "editBlockActionInfo": "One block action is required for all compliance policies.",
- "graceperiod": "Schedule (days after noncompliance)",
- "graceperiodInfo": "Specify the number of days after noncompliance after which this action should be triggered for the user's device",
- "subtitle": "Specify action parameters",
- "title": "Action parameters"
- },
- "List": {
- "gracePeriodDay": "{0} day after noncompliance",
- "gracePeriodDays": "{0} days after noncompliance",
- "gracePeriodHour": "{0} hour after noncompliance",
- "gracePeriodHours": "{0} hours after noncompliance",
- "gracePeriodMinute": "{0} minute after noncompliance",
- "gracePeriodMinutes": "{0} minutes after noncompliance",
- "immediately": "Immediately",
- "schedule": "Schedule",
- "scheduleInfoBalloon": "Days after noncompliance",
- "subtitle": "Specify the sequence of actions on noncompliant devices",
- "title": "Actions"
- },
- "Notification": {
- "additionalEmailLabel": "Others",
- "additionalRecipients": "Additional recipients (via email)",
- "additionalRecipientsBladeTitle": "Select additional recipients",
- "emailAddressPrompt": "Enter email addresses (separated by commas)",
- "invalidEmail": "Invalid email address",
- "messageTemplate": "Message template",
- "noneSelected": "None selected",
- "notSelected": "Not selected",
- "numSelected": "{0} selected",
- "selected": "Selected"
+ "ConfigurationTypes": {
+ "Table": {
+ "androidDeviceOwnerGeneral": "Device restrictions (device owner)",
+ "androidForWorkGeneral": "Device restrictions (work profile)"
+ },
+ "androidCustom": "Custom",
+ "androidDeviceOwnerGeneral": "Device restrictions",
+ "androidDeviceOwnerPkcs": "PKCS Certificate",
+ "androidDeviceOwnerScep": "SCEP Certificate",
+ "androidDeviceOwnerTrustedCertificate": "Trusted Certificate",
+ "androidDeviceOwnerVpn": "VPN",
+ "androidDeviceOwnerWiFi": "Wi-Fi",
+ "androidEmailProfile": "Email (Samsung KNOX only)",
+ "androidForWorkCustom": "Custom",
+ "androidForWorkEmailProfile": "Email",
+ "androidForWorkGeneral": "Device restrictions",
+ "androidForWorkImportedPFX": "PKCS imported certificate",
+ "androidForWorkOemConfig": "OEMConfig",
+ "androidForWorkPKCS": "PKCS certificate",
+ "androidForWorkSCEP": "SCEP certificate",
+ "androidForWorkTrustedCertificate": "Trusted certificate",
+ "androidForWorkVpn": "VPN",
+ "androidForWorkWiFi": "Wi-Fi",
+ "androidGeneral": "Device restrictions",
+ "androidImportedPFX": "PKCS imported certificate",
+ "androidPKCS": "PKCS certificate",
+ "androidSCEP": "SCEP certificate",
+ "androidTrustedCertificate": "Trusted certificate",
+ "androidVPN": "VPN",
+ "androidWiFi": "Wi-Fi",
+ "androidZebraMx": "MX profile (Zebra only)",
+ "complianceAndroid": "Android compliance policy",
+ "complianceAndroidDeviceOwner": "Fully managed, dedicated, and corporate-owned work profile",
+ "complianceAndroidEnterprise": "Personally-owned work profile",
+ "complianceAndroidForWork": "Android for Work compliance policy",
+ "complianceIos": "iOS compliance policy",
+ "complianceMac": "Mac compliance policy",
+ "complianceWindows10": "Windows 10 and later compliance policy",
+ "complianceWindows10Mobile": "Windows 10 mobile compliance policy",
+ "complianceWindows8": "Windows 8 compliance policy",
+ "complianceWindowsPhone": "Windows Phone compliance policy",
+ "exchangeActiveSync": "Exchange Active Sync",
+ "iosCustom": "Custom",
+ "iosDerivedCredentialAuthenticationConfiguration": "Derived PIV credential",
+ "iosDeviceFeatures": "Device features",
+ "iosEDU": "Education",
+ "iosEducation": "Education",
+ "iosEmailProfile": "Email",
+ "iosGeneral": "Device restrictions",
+ "iosImportedPFX": "PKCS imported certificate",
+ "iosPKCS": "PKCS certificate",
+ "iosPresets": "Presets",
+ "iosSCEP": "SCEP certificate",
+ "iosTrustedCertificate": "Trusted certificate",
+ "iosVPN": "VPN",
+ "iosVPNZscaler": "VPN",
+ "iosWiFi": "Wi-Fi",
+ "macCustom": "Custom",
+ "macDeviceFeatures": "Device features",
+ "macEndpointProtection": "Endpoint protection",
+ "macExtensions": "Extensions",
+ "macGeneral": "Device restrictions",
+ "macImportedPFX": "PKCS imported certificate",
+ "macSCEP": "SCEP certificate",
+ "macTrustedCertificate": "Trusted certificate",
+ "macVPN": "VPN",
+ "macWiFi": "Wi-Fi",
+ "settingsCatalog": "Settings catalog (preview)",
+ "unsupported": "Unsupported",
+ "windows10AdministrativeTemplate": "Administrative Templates (Preview)",
+ "windows10Atp": "Microsoft Defender for Endpoint (desktop devices running Windows 10 or later)",
+ "windows10Custom": "Custom",
+ "windows10DesktopSoftwareUpdate": "Software Updates",
+ "windows10DeviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
+ "windows10EmailProfile": "Email",
+ "windows10EndpointProtection": "Endpoint protection",
+ "windows10EnterpriseDataProtection": "Windows Information Protection",
+ "windows10General": "Device restrictions",
+ "windows10ImportedPFX": "PKCS imported certificate",
+ "windows10Kiosk": "Kiosk",
+ "windows10NetworkBoundary": "Network boundary",
+ "windows10PKCS": "PKCS certificate",
+ "windows10PolicyOverride": "Override Group Policy",
+ "windows10SCEP": "SCEP certificate",
+ "windows10SecureAssessmentProfile": "Education profile",
+ "windows10SharedPC": "Shared multi-user device",
+ "windows10TeamGeneral": "Device restrictions (Windows 10 Team)",
+ "windows10TrustedCertificate": "Trusted certificate",
+ "windows10VPN": "VPN",
+ "windows10WiFi": "Wi-Fi",
+ "windows10WiFiCustom": "Wi-Fi custom",
+ "windows8General": "Device restrictions",
+ "windows8SCEP": "SCEP certificate",
+ "windows8TrustedCertificate": "Trusted certificate",
+ "windows8VPN": "VPN",
+ "windows8WiFi": "Wi-Fi import",
+ "windowsDeliveryOptimization": "Delivery Optimization",
+ "windowsDomainJoin": "Domain Join",
+ "windowsEditionUpgrade": "Edition upgrade and mode switch",
+ "windowsIdentityProtection": "Identity protection",
+ "windowsPhoneCustom": "Custom",
+ "windowsPhoneEmailProfile": "Email",
+ "windowsPhoneGeneral": "Device restrictions",
+ "windowsPhoneImportedPFX": "PKCS imported certificate",
+ "windowsPhoneSCEP": "SCEP certificate",
+ "windowsPhoneTrustedCertificate": "Trusted certificate",
+ "windowsPhoneVPN": "VPN",
+ "IosUpdate": "iOS Update policy"
+ },
+ "OfficeSuiteAppsTab": {
+ "acceptLicenseOnBehalfOfUsersLabel": "Accept the Microsoft Software License Terms on behalf of users",
+ "appSuiteConfigurationLabel": "App suite configuration",
+ "appSuiteInformationLabel": "App suite information",
+ "appsToBeInstalledLabel": "Apps to be installed as part of the suite",
+ "architectureLabel": "Architecture",
+ "architectureTooltip": "Defines whether the 32-bit or 64-bit edition of Microsoft 365 Apps is installed on devices.",
+ "configurationDesignerLabel": "Configuration designer",
+ "configurationFileLabel": "Configuration file",
+ "configurationSettingsFormatLabel": "Configuration settings format",
+ "configureAppSuiteLabel": "Configure app suite",
+ "configuredLabel": "Configured",
+ "currentVersionLabel": "Current version",
+ "currentVersionTooltip": "This is the current version of Office that’s configured in this suite. This value will be updated when a newer version is configured and saved.",
+ "enableMicrosoftSearchAsDefaultTooltip": "Installs a background service that helps determine whether a Microsoft Search in Bing extension for Google Chrome is installed on the device.",
+ "enterXmlDataLabel": "Enter XML data",
+ "languagesLabel": "Languages",
+ "languagesTooltip": "By default, Intune will install Office with the default language of the operating system. Choose any additional languages that you want to install.",
+ "learnMoreText": "Learn more",
+ "newUpdateChannelTooltip": "Defines how often the app is updated with new features.",
+ "noCurrentVersionText": "No current version",
+ "noLanguagesSelectedLabel": "No languages selected",
+ "notConfiguredLabel": "Not configured",
+ "propertiesLabel": "Properties",
+ "removeOtherVersionsLabel": "Remove other versions",
+ "removeOtherVersionsTooltip": "Select Yes to remove other versions of Office (MSI) from user devices.",
+ "selectOfficeAppsLabel": "Select Office apps",
+ "selectOfficeAppsTooltip": "Select the Office 365 apps that you want to install as part of the suite.",
+ "selectOtherOfficeAppsLabel": "Select other Office apps (license required)",
+ "selectOtherOfficeAppsTooltip": "If you own licenses for these additional Office apps you can also assign them with Intune.",
+ "specificVersionLabel": "Specific version",
+ "updateChannelLabel": "Update channel",
+ "updateChannelTooltip": "Defines how often the app is updated with new features.
\nMonthly - Provide users with the newest features of Office as soon as they're available.
\nMonthly Enterprise Channel - Provide users with the newest features of Office once a month, on the second Tuesday of the month.
\nMonthly (Targeted) – Provide an early look at the upcoming Monthly Channel release. It is a supported update channel, and usually is available at least one week ahead of time when it's a Monthly Channel release that contains new features.
\nSemi-Annual - Provide users with new features of Office only a few times a year.
\nSemi-Annual (Targeted) - Provide pilot users and application compatibility testers the opportunity to test the next Semi-Annual.",
+ "useMicrosoftSearchAsDefault": "Install background service for Microsoft Search in Bing",
+ "useSharedComputerActivationLabel": "Use shared computer activation",
+ "useSharedComputerActivationTooltip": "Shared computer activation lets you deploy Microsoft 365 Apps to computers that are used by multiple users. Normally, users can only install and activate Microsoft 365 Apps on a limited number of devices, such as 5 PCs. Using Microsoft 365 Apps with shared computer activation doesn't count against that limit.",
+ "versionToInstallLabel": "Version to install",
+ "versionToInstallTooltip": "Select the version of Office that should be installed.",
+ "xLanguagesSelectedLabel": "{0} language(s) selected",
+ "xmlConfigurationLabel": "XML Configuration"
+ },
+ "EnrollmentRestrictions": {
+ "DeletePayloadLink": {
+ "content": "{0} is included in one or more policy sets. If you delete {0}, you'll no longer be able to assign it via these policy sets. Delete anyway?",
+ "contentWithError": "{0} might be included in one or more policy sets. If you delete {0}, you'll no longer be able to assign it via these policy sets. Delete anyway?",
+ "header": "Are you sure you want to delete this restriction?"
+ },
+ "DeviceLimit": {
+ "description": "Specify the maximum number of devices a user can enroll.",
+ "header": "Device limit restrictions",
+ "info": "Define how many devices each user can enroll."
+ },
+ "DeviceType": {
+ "VersionValidation": {
+ "aOSP": "Must be 1.0 or greater.",
+ "android": "Enter a valid version number. Examples: 5.0, 5.5.1, 6.0.0.1",
+ "androidForWork": "Enter a valid version number. Examples: 5.0, 5.1.1",
+ "iOS": "Enter a valid version number. Examples: 9.0, 10.0, 9.0.2",
+ "mac": "Enter a valid version number. Examples: 10, 10.10, 10.10.1",
+ "min": "Minimum cannot be lower than {0}",
+ "minMax": "Minimum version cannot be greater than maximum version.",
+ "windows": "Must be 10.0 or greater. Leave blank to allow 8.1 devices",
+ "windowsMobile": "Must be 10.0 or greater. Leave blank to allow 8.1 devices"
+ },
+ "allPlatformsBlocked": "All device platforms are blocked. Allow platform enrollment to enable platform configuration.",
+ "blockManufacturerPlaceHolder": "Manufacturer name",
+ "blockManufacturersHeader": "Blocked manufacturers",
+ "cannotRestrict": "Restriction not supported",
+ "configurationDescription": "Specify the platform configuration restrictions that must be met for a device to enroll. Use compliance policies to restrict devices after enrollment. Define versions as major.minor.build. Version restrictions only apply to devices enrolled with the Company Portal. Intune classifies devices as personally-owned by default. Additional action is required to classify devices as corporate-owned.",
+ "configurationDescriptionLabel": "Learn more about setting enrollment restrictions",
+ "configurations": "Configure platforms",
+ "deviceManufacturer": "Device manufacturer",
+ "header": "Device type restrictions",
+ "info": "Define which platforms, versions, and management types can enroll.",
+ "manufacturer": "Manufacturer",
+ "max": "Max",
+ "maxVersion": "Maximum version",
+ "min": "Min",
+ "minVersion": "Minimum version",
+ "newPlatforms": "You have allowed new platforms. Consider updating Platform Configurations.",
+ "personal": "Personally owned",
+ "platform": "Platform",
+ "platformDescription": "You can allow enrollment of the following platforms. Only block platforms you will not support. Allowed platforms can be configured with additional enrollment restrictions.",
+ "platformSettings": "Platform settings",
+ "platforms": "Select platforms",
+ "platformsSelected": "{0} platforms selected",
+ "type": "Type",
+ "versions": "versions",
+ "versionsRange": "Allow min/max range:",
+ "windowsTooltip": "Restricts enrollment through Mobile Device Management. Does not restrict PC agent installation. Only Windows 10 and Windows 11 versions are supported. Leave versions blank to allow Windows 8.1."
+ },
+ "Priority": {
+ "saved": "Restriction Priorities were successfully saved."
+ },
+ "Row": {
+ "announce": "Priority: {0}, Name: {1}, Assigned: {2}"
+ },
+ "Table": {
+ "deployed": "Deployed",
+ "name": "Name",
+ "priority": "Priority"
},
- "block": "Mark device noncompliant",
- "lockDevice": "Lock device (local action)",
- "lockDeviceWithPasscode": "Lock device (local action)",
- "noAction": "No action",
- "noActionRow": "No actions, select 'Add' to add an action",
- "pushNotification": "Send push notification to end user",
- "remoteLock": "Remotely lock the noncompliant device",
- "removeSourceAccessProfile": "Remove source access profile",
- "retire": "Retire the noncompliant device",
- "wipe": "Wipe",
- "emailNotification": "Send email to end user"
- },
- "WIPPinRequirements": {
- "WipLowercaseCharacterPinRequirements": {
- "allow": "Allow the use of lowercase letters in PIN",
- "notAllow": "Do not allow the use of lowercase letters in PIN",
- "requireAtLeastOne": "Require the use of at least one lowercase letter in PIN"
- },
- "WipSpecialCharacterPinRequirements": {
- "allow": "Allow the use of special characters in PIN",
- "notAllow": "Do not allow the use of special characters in PIN",
- "requireAtLeastOne": "Require the use of at least one special character in PIN"
- },
- "WipUppercaseCharacterPinRequirements": {
- "allow": "Allow the use of uppercase letters in PIN",
- "notAllow": "Do not allow the use of uppercase letters in PIN",
- "requireAtLeastOne": "Require the use of at least one uppercase letter in PIN"
- }
- }
+ "Type": {
+ "limit": "Device limit restriction",
+ "type": "Device type restriction"
+ },
+ "allUsers": "All Users",
+ "androidRestrictions": "Android restrictions",
+ "create": "Create restriction",
+ "defaultLimitDescription": "This is the default Device Limit Restriction applied with lowest priority to all users regardless of group membership.",
+ "defaultTypeDescription": "This is the default Device Type Restriction applied with lowest priority to all users regardless of group membership.",
+ "defaultWhfbDescription": "This is the default Windows Hello for Business configuration applied with the lowest priority to all users regardless of group membership.",
+ "deleteMessage": "Affected users will be restricted by the next highest priority restriction assigned or the default restriction if no other restriction is assigned.",
+ "deleteTitle": "Are you sure you want to delete {0} restriction?",
+ "descriptionHint": "Short paragraph describing the business use or restriction level characterized by the restriction's settings.",
+ "edit": "Edit restriction",
+ "info": "A device must comply with the highest priority enrollment restrictions assigned to its user. You can drag a device restriction to change its priority. Default restrictions are lowest priority for all users and govern userless enrollments. Default restrictions may be edited, but not deleted.",
+ "iosRestrictions": "iOS restrictions",
+ "mDM": "MDM",
+ "macRestrictions": "MacOS restrictions",
+ "maxVersion": "Max Version",
+ "minVersion": "Min Version",
+ "nameHint": "This will be the primary attribute visible for identifying the restriction set.",
+ "noAssignmentsStatusBar": "Assign restriction to at least one group. Click Properties.",
+ "notFound": "Restriction not found. It may have already been deleted.",
+ "personallyOwned": "Personally owned devices",
+ "restriction": "Restriction",
+ "restrictionLowerCase": "restriction",
+ "restrictionType": "Restriction type",
+ "selectType": "Select restriction type",
+ "selectValidation": "Please select a platform",
+ "typeHint": "Choose Device Type Restriction to restrict device properties. Choose Device Limit Restriction to restrict number of devices per-user.",
+ "typeRequired": "Restriction type is required.",
+ "winPhoneRestrictions": "Windows Phone restrictions",
+ "windowsRestrictions": "Windows restrictions"
+ },
+ "Titles": {
+ "ChromeOs": {
+ "devices": "Chrome OS devices"
+ },
+ "ManagedDesktop": {
+ "adminContacts": "Admin contacts",
+ "appPackaging": "App packaging",
+ "devices": "Devices",
+ "feedback": "Feedback",
+ "gettingStarted": "Getting started",
+ "messages": "Messages",
+ "onlineResources": "Online resources",
+ "serviceRequests": "Service requests",
+ "settings": "Settings",
+ "tenantEnrollment": "Tenant enrollment"
+ },
+ "actions": "Actions for Non-Compliance",
+ "advancedExchangeSettings": "Exchange online settings",
+ "advancedThreatProtection": "Microsoft Defender for Endpoint",
+ "allApps": "All apps",
+ "allDevices": "All devices",
+ "androidFotaDeployments": "Android FOTA deployments",
+ "appBundles": "App Bundles",
+ "appCategories": "App categories",
+ "appConfigPolicies": "App configuration policies",
+ "appInstallStatus": "App install status",
+ "appLicences": "App licenses",
+ "appProtectionPolicies": "App protection policies",
+ "appProtectionStatus": "App protection status",
+ "appSelectiveWipe": "App selective wipe",
+ "appleVppTokens": "Apple VPP Tokens",
+ "apps": "Apps",
+ "assign": "Assignments",
+ "assignedPermissions": "Assigned permissions",
+ "assignedRoles": "Assigned roles",
+ "autopilotDeploymentReport": "Autopilot deployments (preview)",
+ "brandingAndCustomization": "Customization",
+ "cartProfiles": "Cart profiles",
+ "certificateConnectors": "Certificate connectors",
+ "chromeEnterprise": "Chrome Enterprise",
+ "compliancePolicies": "Compliance policies",
+ "complianceScriptManagement": "Scripts",
+ "complianceScriptManagementPreview": "Scripts (Preview)",
+ "complianceSettings": "Compliance policy settings",
+ "conditionStatements": "Condition statements",
+ "conditions": "Locations",
+ "configMgr": "Microsoft Endpoint Configuration Manager",
+ "configurationProfiles": "Configuration profiles",
+ "configurationProfilesPreview": "Configuration profiles (preview)",
+ "connectorsAndTokens": "Connectors and tokens",
+ "corporateDeviceIdentifiers": "Corporate device identifiers",
+ "customAttributes": "Custom attributes",
+ "customNotifications": "Custom notifications",
+ "deploymentSettings": "Deployment settings",
+ "derivedCredentials": "Derived Credentials",
+ "deviceActions": "Device actions",
+ "deviceCategories": "Device categories",
+ "deviceCleanUp": "Device clean-up rules",
+ "deviceEnrollmentManagers": "Device enrollment managers",
+ "deviceExecutionStatus": "Device status",
+ "deviceLimitEnrollmentRestrictions": "Enrollment device limit restrictions",
+ "deviceTypeEnrollmentRestrictions": "Enrollment device platform restrictions",
+ "devices": "Devices",
+ "discoveredApps": "Discovered apps",
+ "embeddedSIM": "eSIM cellular profiles (Preview)",
+ "enrollDevices": "Enroll devices",
+ "enrollmentFailures": "Enrollment failures",
+ "enrollmentNotifications": "Enrollment notifications (Preview)",
+ "enrollmentRestrictions": "Enrollment restrictions",
+ "exchangeActiveSync": "Exchange ActiveSync",
+ "exchangeServiceConnectors": "Exchange service connectors",
+ "failuresForFeatureUpdates": "Feature update failures (Preview)",
+ "failuresForQualityUpdates": "Windows Expedited update failures (Preview)",
+ "featureFlighting": "Feature flighting",
+ "featureUpdateDeployments": "Feature updates for Windows 10 and later (Preview)",
+ "flighting": "Flighting",
+ "fotaUpdate": "Firmware over-the-air update",
+ "groupPolicy": "Administrative Templates",
+ "groupPolicyAnalytics": "Group policy analytics",
+ "helpSupport": "Help and support",
+ "helpSupportReplacement": "Help and support ({0})",
+ "iOSAppProvisioning": "iOS app provisioning profiles",
+ "incompleteUserEnrollments": "Incomplete user enrollments",
+ "intuneRemoteAssistance": "Remote help (preview)",
+ "iosUpdates": "Update policies for iOS/iPadOS",
+ "legacyPcManagement": "Legacy PC management",
+ "macOSSoftwareUpdate": "Update policies for macOS",
+ "macOSSoftwareUpdateAccountSummaries": "Installation status for macOS devices",
+ "macOSSoftwareUpdateCategorySummaries": "Software updates summary",
+ "macOSSoftwareUpdateStateSummaries": "updates",
+ "managedGooglePlay": "Managed Google Play",
+ "msfb": "Microsoft Store for Business",
+ "myPermissions": "My permissions",
+ "notifications": "Notifications",
+ "officeApps": "Office apps",
+ "officeProPlusPolicies": "Policies for Office apps",
+ "onPremise": "On Premise",
+ "onPremisesConnector": "Exchange ActiveSync on-premises connector",
+ "onPremisesDeviceAccess": "Exchange ActiveSync devices",
+ "onPremisesManageAccess": "Exchange on-premises access",
+ "outOfDateIosDevices": "Installation failures for iOS devices",
+ "overview": "Overview",
+ "partnerDeviceManagement": "Partner device management",
+ "perUpdateRingDeploymentState": "Per update ring deployment state",
+ "permissions": "Permissions",
+ "platformApps": "{0} apps",
+ "platformDevices": "{0} devices",
+ "platformEnrollment": "{0} enrollment",
+ "policies": "Policies",
+ "previewMDMDevices": "All managed devices (Preview)",
+ "profiles": "Profiles",
+ "properties": "Properties",
+ "reports": "Reports",
+ "retireNoncompliantDevices": "Retire noncompliant devices",
+ "retireNoncompliantDevicesPreview": "Retire noncompliant devices (preview)",
+ "role": "Role",
+ "scriptManagement": "Scripts",
+ "securityBaselines": "Security baselines",
+ "serviceToServiceConnector": "Exchange online connector",
+ "shellScripts": "Shell scripts",
+ "teamViewerConnector": "TeamViewer connector",
+ "telecomeExpenseManagement": "Telecom expense management",
+ "tenantAdmin": "Tenant admin",
+ "tenantAdministration": "Tenant administration",
+ "termsAndConditions": "Terms and conditions",
+ "titles": "Titles",
+ "troubleshootSupport": "Troubleshooting + support",
+ "user": "User",
+ "userExecutionStatus": "User status",
+ "warranty": "Warranty vendors",
+ "wdacSupplementalPolicies": "S mode supplemental policies",
+ "windows10DriverUpdate": "Driver updates for Windows 10 and later (Preview)",
+ "windows10QualityUpdate": "Quality updates for Windows 10 and later (Preview)",
+ "windows10UpdateRings": "Update rings for Windows 10 and later",
+ "windows10XPolicyFailures": "Windows 10X policy failures",
+ "windowsEnterpriseCertificate": "Windows enterprise certificate",
+ "windowsManagement": "PowerShell scripts",
+ "windowsSideLoadingKeys": "Windows side loading keys",
+ "windowsSymantecCertificate": "Windows DigiCert certificate",
+ "windowsThreatReport": "Threat agent status"
+ },
+ "ScopeTypes": {
+ "allDevices": "All Devices",
+ "allUsers": "All Users",
+ "allUsersAndDevices": "All Users & All Devices",
+ "selectedGroups": "Selected Groups"
+ },
+ "OfficeApplicationType": {
+ "access": "Access",
+ "bing": "Microsoft Search as default",
+ "excel": "Excel",
+ "groove": "OneDrive (Groove)",
+ "lync": "Skype for Business",
+ "oneDrive": "OneDrive Desktop",
+ "oneNote": "OneNote",
+ "outlook": "Outlook",
+ "powerPoint": "PowerPoint",
+ "publisher": "Publisher",
+ "teams": "Teams",
+ "word": "Word"
+ },
+ "ApplicableDeviceType": {
+ "iPad": "iPad",
+ "iPhoneAndIPod": "iPhone and iPod"
+ },
+ "Assignment": {
+ "AutoUpdateMode": {
+ "default": "Default",
+ "header": "Update Priority",
+ "postponed": "Postponed",
+ "priority": "High Priority"
+ },
+ "DeliveryOptimizationPriority": {
+ "backgroundNormal": "Background",
+ "displayText": "Content download in {0}",
+ "foreground": "Foreground",
+ "header": "Delivery optimization priority"
+ },
+ "RestartGracePeriod": {
+ "allowSnooze": "Allow user to snooze the restart notification",
+ "countdownDialog": "Select when to display the restart countdown dialog box before the restart occurs (minutes)",
+ "durationInMinutes": "Device restart grace period (minutes)",
+ "snoozeDurationInMinutes": "Select the snooze duration (minutes)"
+ },
+ "SoftwareInstallationTime": {
+ "TimeZone": {
+ "label": "Time zone",
+ "local": "Device time zone",
+ "utc": "UTC"
+ },
+ "dateAndTimeLabel": "Date and time",
+ "deadlineTimeColumnLabel": "Installation deadline",
+ "deadlineTimeDatePickerErrorMessage": "Selected date must be after the available date",
+ "deadlineTimeLabel": "App installation deadline",
+ "defaultTime": "As soon as possible",
+ "infoText": "This application will be available as soon as it has been deployed, unless you specify an availability time below. If this is a required application, you may specify the installation deadline.",
+ "specificTime": "A specific date and time",
+ "startTimeColumnLabel": "Availability",
+ "startTimeDatePickerErrorMessage": "Selected date must be before the deadline date",
+ "startTimeLabel": "App availability"
+ },
+ "restartGracePeriodHeader": "Restart grace period",
+ "restartGracePeriodLabel": "Device restart grace period",
+ "summaryTitle": "End user experience"
+ },
+ "EnrollmentType": {
+ "devicesWithEnrollment": "Managed devices",
+ "devicesWithoutEnrollment": "Managed apps"
+ },
+ "PolicySet": {
+ "appManagement": "Application management",
+ "assignments": "Assignments",
+ "basics": "Basics",
+ "deviceEnrollment": "Device enrollment",
+ "deviceManagement": "Device management",
+ "scopeTags": "Scope tags",
+ "appConfigurationTitle": "App configuration policies",
+ "appProtectionTitle": "App protection policies",
+ "appTitle": "Apps",
+ "iOSAppProvisioningTitle": "iOS app provisioning profiles",
+ "deviceLimitRestrictionTitle": "Device limit restrictions",
+ "deviceTypeRestrictionTitle": "Device type restrictions",
+ "enrollmentStatusSettingTitle": "Enrollment status pages",
+ "windowsAutopilotDeploymentProfileTitle": "Windows autopilot deployment profiles",
+ "deviceComplianceTitle": "Device compliance policies",
+ "deviceConfigurationTitle": "Device configuration profiles",
+ "powershellScriptTitle": "Powershell scripts"
+ },
+ "AzureIAMCommon": {
+ "CountryNames": {
+ "countryNameNR": "Nauru",
+ "countryNameBH": "Bahrain",
+ "countryNameZA": "South Africa",
+ "countryNameJO": "Jordan",
+ "countryNameSD": "Sudan",
+ "countryNameNU": "Niue",
+ "countryNameCZ": "Czech Republic",
+ "countryNameLT": "Lithuania",
+ "countryNameTK": "Tokelau",
+ "countryNameEC": "Ecuador",
+ "countryNameVU": "Vanuatu",
+ "countryNameUG": "Uganda",
+ "countryNameLI": "Liechtenstein",
+ "countryNameHK": "Hong Kong SAR",
+ "countryNameGH": "Ghana",
+ "countryNameSA": "Saudi Arabia",
+ "countryNamePG": "Papua New Guinea",
+ "countryNameBW": "Botswana",
+ "countryNameDG": "Diego Garcia",
+ "countryNameIN": "India",
+ "countryNameHN": "Honduras",
+ "countryNameRO": "Romania",
+ "countryNameKZ": "Kazakhstan",
+ "countryNameLC": "Saint Lucia",
+ "countryNameGE": "Georgia",
+ "countryNameTT": "Trinidad and Tobago",
+ "countryNameMP": "Northern Mariana Islands",
+ "countryNameMV": "Maldives",
+ "countryNameFI": "Finland",
+ "countryNameNO": "Norway",
+ "countryNameEE": "Estonia",
+ "countryNameVE": "Venezuela",
+ "countryNameUZ": "Uzbekistan",
+ "countryNameME": "Montenegro",
+ "countryNameTJ": "Tajikistan",
+ "countryNameAW": "Aruba",
+ "countryNameFR": "France",
+ "countryNameOM": "Oman",
+ "countryNameAO": "Angola",
+ "countryNameIT": "Italy",
+ "countryNameAZ": "Azerbaijan",
+ "countryNameKG": "Kyrgyzstan",
+ "countryNameWF": "Wallis and Futuna",
+ "countryNameTL": "Timor-Leste",
+ "countryNameFK": "Falkland Islands (Islas Malvinas)",
+ "countryNameGY": "Guyana",
+ "countryNameSS": "South Sudan",
+ "countryNameMM": "Myanmar",
+ "countryNameHT": "Haiti",
+ "countryNameSY": "Syria",
+ "countryNameMD": "Moldova",
+ "countryNameVC": "Saint Vincent and the Grenadines",
+ "countryNameID": "Indonesia",
+ "countryNameRE": "Reunion",
+ "countryNameER": "Eritrea",
+ "countryNameMK": "North Macedonia",
+ "countryNameTG": "Togo",
+ "countryNamePF": "French Polynesia",
+ "countryNameKY": "Cayman Islands",
+ "countryNameIO": "British Indian Ocean Territory",
+ "countryNameRU": "Russia",
+ "countryNameMA": "Morocco",
+ "countryNameAU": "Australia",
+ "countryNameBO": "Bolivia",
+ "countryNameVA": "Holy See (Vatican City State)",
+ "countryNameVG": "Virgin Islands, British",
+ "countryNameFM": "Micronesia",
+ "countryNameAQ": "Antarctica",
+ "countryNameZM": "Zambia",
+ "countryNameBR": "Brazil",
+ "countryNameIS": "Iceland",
+ "countryNamePE": "Peru",
+ "countryNameBG": "Bulgaria",
+ "countryNamePR": "Puerto Rico",
+ "countryNameGI": "Gibraltar",
+ "countryNameBS": "Bahamas, The",
+ "countryNameJE": "Jersey",
+ "countryNameMO": "Macao SAR",
+ "countryNameRW": "Rwanda",
+ "countryNameAS": "American Samoa",
+ "countryNameBQ": "Bonaire, Sint Eustatius, and Saba",
+ "countryNameMF": "Saint Martin",
+ "countryNameTM": "Turkmenistan",
+ "countryNameML": "Mali",
+ "countryNameTO": "Tonga",
+ "countryNameNC": "New Caledonia",
+ "countryNameAC": "Ascension Island",
+ "countryNameBN": "Brunei",
+ "countryNameBD": "Bangladesh",
+ "countryNameMW": "Malawi",
+ "countryNameGM": "Gambia, The",
+ "countryNameGA": "Gabon",
+ "countryNameCA": "Canada",
+ "countryNameSH": "Saint Helena",
+ "countryNameYT": "Mayotte",
+ "countryNameMN": "Mongolia",
+ "countryNamePA": "Panama",
+ "countryNameCM": "Cameroon",
+ "countryNameNE": "Niger",
+ "countryNameCW": "Curaçao",
+ "countryNameJP": "Japan",
+ "countryNameCY": "Cyprus",
+ "countryNameCD": "Democratic Republic of Congo",
+ "countryNameTN": "Tunisia",
+ "countryNameTR": "Turkey",
+ "countryNameWS": "Samoa",
+ "countryNameSE": "Sweden",
+ "countryNameXK": "Kosovo",
+ "countryNameKH": "Cambodia",
+ "countryNamePL": "Poland",
+ "countryNameDZ": "Algeria",
+ "countryNameLR": "Liberia",
+ "countryNameSO": "Somalia",
+ "countryNameDM": "Dominica",
+ "countryNameEG": "Egypt",
+ "countryNameGF": "French Guiana",
+ "countryNameNZ": "New Zealand",
+ "countryNamePS": "Palestinian Authority",
+ "countryNameIL": "Israel",
+ "countryNameSL": "Sierra Leone",
+ "countryNameGR": "Greece",
+ "countryNameNG": "Nigeria",
+ "countryNameMR": "Mauritania",
+ "countryNameVI": "Virgin Islands, U.S.",
+ "countryNameGQ": "Equatorial Guinea",
+ "countryNameMX": "Mexico",
+ "countryNameDJ": "Djibouti",
+ "countryNameGN": "Guinea",
+ "countryNameCN": "China",
+ "countryNameMZ": "Mozambique",
+ "countryNameBV": "Bouvet Island",
+ "countryNameNF": "Norfolk Island",
+ "countryNameTZ": "Tanzania",
+ "countryNameAI": "Anguilla",
+ "countryNameGS": "South Georgia and the South Sandwich Islands",
+ "countryNameRS": "Serbia",
+ "countryNameCC": "Cocos (Keeling) Islands",
+ "countryNameNA": "Namibia",
+ "countryNameDE": "Germany",
+ "countryNameCG": "Republic of Congo",
+ "countryNameKW": "Kuwait",
+ "countryNameMH": "Marshall Islands",
+ "countryNameVN": "Vietnam",
+ "countryNameBY": "Belarus",
+ "countryNameMY": "Malaysia",
+ "countryNameST": "São Tomé and Príncipe",
+ "countryNameLS": "Lesotho",
+ "countryNameBI": "Burundi",
+ "countryNameTD": "Chad",
+ "countryNameCX": "Christmas Island",
+ "countryNameIR": "Iran",
+ "countryNameTV": "Tuvalu",
+ "countryNameGW": "Guinea-Bissau",
+ "countryNameUA": "Ukraine",
+ "countryNameCU": "Cuba",
+ "countryNameCO": "Colombia",
+ "countryNameNI": "Nicaragua",
+ "countryNameHR": "Croatia",
+ "countryNameSC": "Seychelles",
+ "countryNameNL": "Netherlands",
+ "countryNameUM": "US Minor Outlying Islands",
+ "countryNameIM": "Isle of Man",
+ "countryNameFJ": "Fiji",
+ "countryNameSR": "Suriname",
+ "countryNameGT": "Guatemala",
+ "countryNameSM": "San Marino",
+ "countryNameLA": "Laos",
+ "countryNameGB": "United Kingdom",
+ "countryNameBB": "Barbados",
+ "countryNameSI": "Slovenia",
+ "countryNameAM": "Armenia",
+ "countryNameAR": "Argentina",
+ "countryNamePM": "Saint Pierre and Miquelon",
+ "countryNameTF": "French Southern and Antarctic Lands",
+ "countryNameDO": "Dominican Republic",
+ "countryNameZW": "Zimbabwe",
+ "countryNameMQ": "Martinique",
+ "countryNamePT": "Portugal",
+ "countryNameCF": "Central African Republic",
+ "countryNameBE": "Belgium",
+ "countryNameKM": "Comoros",
+ "countryNameLY": "Libya",
+ "countryNameIE": "Ireland",
+ "countryNameKP": "North Korea",
+ "countryNameGG": "Guernsey",
+ "countryNameSK": "Slovakia",
+ "countryNameTC": "Turks and Caicos Islands",
+ "countryNameNP": "Nepal",
+ "countryNameBF": "Burkina Faso",
+ "countryNameYE": "Yemen",
+ "countryNameBA": "Bosnia and Herzegovina",
+ "countryNameGP": "Guadeloupe",
+ "countryNameMS": "Montserrat",
+ "countryNameCL": "Chile",
+ "countryNameIQ": "Iraq",
+ "countryNameSJ": "Svalbard and Jan Mayen Island",
+ "countryNameAX": "Åland Islands",
+ "countryNameKE": "Kenya",
+ "countryNameGU": "Guam",
+ "countryNameBM": "Bermuda",
+ "countryNameFO": "Faroe Islands",
+ "countryNameBL": "Saint Barthélemy",
+ "countryNameLB": "Lebanon",
+ "countryNameJM": "Jamaica",
+ "countryNameAF": "Afghanistan",
+ "countryNameES": "Spain",
+ "countryNameMC": "Monaco",
+ "countryNameSG": "Singapore",
+ "countryNameAL": "Albania",
+ "countryNameSN": "Senegal",
+ "countryNameSZ": "Swaziland",
+ "countryNameBZ": "Belize",
+ "countryNameCI": "Côte d’Ivoire",
+ "countryNameTW": "Taiwan",
+ "countryNameUY": "Uruguay",
+ "countryNameCK": "Cook Islands",
+ "countryNameTH": "Thailand",
+ "countryNameHM": "Heard Island and McDonald Islands",
+ "countryNameGD": "Grenada",
+ "countryNameUS": "United States",
+ "countryNameAT": "Austria",
+ "countryNameKR": "Korea, Republic of",
+ "countryNamePK": "Pakistan",
+ "countryNameDK": "Denmark",
+ "countryNameSV": "El Salvador",
+ "countryNamePW": "Palau",
+ "countryNameET": "Ethiopia",
+ "countryNameMG": "Madagascar",
+ "countryNameCR": "Costa Rica",
+ "countryNameLU": "Luxembourg",
+ "countryNameQA": "Qatar",
+ "countryNameBT": "Bhutan",
+ "countryNameSB": "Solomon Islands",
+ "countryNameAE": "United Arab Emirates",
+ "countryNameAD": "Andorra",
+ "countryNameCV": "Cabo Verde",
+ "countryNameAG": "Antigua and Barbuda",
+ "countryNameMU": "Mauritius",
+ "countryNameHU": "Hungary",
+ "countryNameSX": "Sint Maarten",
+ "countryNameCH": "Switzerland",
+ "countryNamePN": "Pitcairn Islands",
+ "countryNameGL": "Greenland",
+ "countryNamePH": "Philippines",
+ "countryNameMT": "Malta",
+ "countryNameKN": "Saint Kitts and Nevis",
+ "countryNameLK": "Sri Lanka",
+ "countryNameKI": "Kiribati",
+ "countryNameBJ": "Benin",
+ "countryNameLV": "Latvia",
+ "countryNamePY": "Paraguay"
+ }
+ }
}
diff --git a/Documentation/Strings-zh-cht.json b/Documentation/Strings-zh-cht.json
index 360f961..7341501 100644
--- a/Documentation/Strings-zh-cht.json
+++ b/Documentation/Strings-zh-cht.json
@@ -1,1842 +1,4 @@
{
- "InstallContextType": {
- "device": "Device",
- "deviceContext": "Device context",
- "user": "User",
- "userContext": "User context"
- },
- "WipPolicySettings": {
- "addNetworkBoundary": "Add network boundary",
- "addNetworkBoundaryButton": "Add network boundary...",
- "allowWindowsSearch": "Allow Windows Search to search encrypted corporate data and Store apps",
- "authoritativeIpRanges": "Enterprise IP Ranges list is authoritative (do not auto-detect)",
- "authoritativeProxyServers": "Enterprise Proxy Servers list is authoritative (do not auto-detect)",
- "boundaryType": "Boundary type",
- "cloudResources": "Cloud resources",
- "corporateIdentity": "Corporate identity",
- "dataRecoveryCert": "Upload a Data Recovery Agent (DRA) certificate to allow recovery of encrypted data",
- "editNetworkBoundary": "Edit network boundary",
- "enrollmentState": "Enrollment state",
- "iPv4Ranges": "IPv4 ranges",
- "iPv6Ranges": "IPv6 ranges",
- "internalProxyServers": "Internal proxy servers",
- "maxInactivityTime": "Maximum amount of time (in minutes) allowed after the device is idle that will cause the device to become PIN or password locked",
- "maxPasswordAttempts": "Number of authentication failures allowed before the device will be wiped",
- "mdmDiscoveryUrl": "MDM discovery URL",
- "mdmRequiredSettingsInfo": "This policy only applies to Windows 10 Anniversary Edition and higher. This policy uses Windows Information Protection (WIP) to apply protection.",
- "minimumPinLength": "Set the minimum number of characters required for the PIN",
- "name": "Name",
- "networkBoundariesGridEmptyText": "Any network boundaries you add will show up here",
- "networkBoundary": "Network boundary",
- "networkDomainNames": "Network domains",
- "neutralResources": "Neutral resources",
- "passportForWork": "Use Windows Hello for Business as a method for signing into Windows",
- "pinExpiration": "Specify the period of time (in days) that a PIN can be used before the system requires the user to change it",
- "pinHistory": "Specify the number of past PINs that can be associated to a user account that can’t be reused",
- "pinLowercaseLetters": "Configure the use of lowercase letters in the Windows Hello for Business PIN",
- "pinSpecialCharacters": "Configure the use of special characters in the Windows Hello for Business PIN",
- "pinUppercaseLetters": "Configure the use of uppercase letters in the Windows Hello for Business PIN",
- "protectUnderLock": "Prevent corporate data from being accessed by apps when the device is locked. Applies only to Windows 10 Mobile",
- "protectedDomainNames": "Protected domains",
- "proxyServers": "Proxy servers",
- "requireAppPin": "Disable app PIN when device PIN is managed",
- "requiredSettings": "Required settings",
- "requiredSettingsInfo": "Changing the scope or removing this policy will decrypt corporate data.",
- "revokeOnMdmHandoff": "Revoke access to protected data when the device enrolls to MDM",
- "revokeOnUnenroll": "Revoke encryption keys on unenroll",
- "rmsTemplateForEdp": "Specify the template ID to use for Azure RMS",
- "showWipIcon": "Show the enterprise data protection icon",
- "type": "Type",
- "useRmsForWip": "Use Azure RMS for WIP",
- "value": "Value",
- "weRequiredSettingsInfo": "This policy only applies to Windows 10 Creators Update and higher. This policy uses Windows Information Protection (WIP) and Windows MAM to apply protection.",
- "wipProtectionMode": "Windows Information Protection mode",
- "withEnrollment": "With enrollment",
- "withoutEnrollment": "Without enrollment"
- },
- "EdgeAppConfig": {
- "AllowedURLs": {
- "title": "Allowed URLs",
- "tooltip": "Specify the sites your users are allowed to access while in their work context. No other sites will be allowed. You may choose to configure either an allowed/blocked list, but not both. "
- },
- "ApplicationProxyRedirection": {
- "header": "Application proxy",
- "title": "Application proxy redirection",
- "tooltip": "Enable App proxy redirection to give users access to corporate links and on-premise web apps."
- },
- "BlockedURLs": {
- "title": "Blocked URLs",
- "tooltip": "Specify the sites that are blocked for your users while in their work context. All other sites will be allowed. You may choose to configure either an allowed/blocked list, but not both. "
- },
- "Bookmarks": {
- "header": "Managed bookmarks",
- "tooltip": "Enter a list of bookmarked URLs for your users to have available when using Microsoft Edge in their work context.",
- "uRL": "URL"
- },
- "HomepageURL": {
- "header": "Managed homepage",
- "title": "Homepage shortcut URL",
- "tooltip": "Configure a homepage shortcut that will appear to users as the first icon beneath the search bar when they open a new tab in Microsoft Edge."
- },
- "PersonalContext": {
- "label": "Redirect restricted sites to personal context",
- "tooltip": "Configure if users should be allowed to transition to their personal context to open restricted sites."
- }
- },
- "AzureIAM": {
- "AdrsUserActionSelectionWarning": {
- "conditions": "Conditions that require device registration are not available with \"Register or join devices\" user action.",
- "message": "Only \"Require multi-factor authentication\" can be used in policies created for the \"Register or join devices\" user action.{0}"
- },
- "AuthContext": {
- "Included": {
- "none": "No cloud apps, actions, or authentication contexts selected",
- "plural": "{0} authentication contexts included",
- "singular": "1 authentication context included"
- },
- "InfoBlade": {
- "createTitle": "Add authentication context",
- "descPlaceholder": "Add description for the authentication context",
- "modifyTitle": "Modify authentication context",
- "namePlaceholder": "Ex. Trusted location, Trusted device, Strong authorization",
- "publishDesc": "Publish to apps will make the authentication context available for apps to use. Publish once you finish configuring Conditional Access policy for the tag. [Learn more][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150966",
- "publishLabel": "Publish to apps",
- "titleDesc": "Configure an authentication context that will be used to protect application data and actions. Use names and descriptions that can be understood by application administrators. [Learn more][1]\n[1]:https://go.microsoft.com/fwlink/?linkid=2150965"
- },
- "Notify": {
- "failure": "Failed to update {0}",
- "modifying": "Modifying {0}",
- "success": "Successfully updated {0}"
- },
- "WhatIf": {
- "selected": "Authentication context included"
- },
- "addNewStepUp": "New authentication context",
- "checkBoxInfo": "Select the authentication contexts this policy will apply to",
- "configure": "Configure authentication contexts",
- "createCA": "Assign Conditional Access policies to the authentication context",
- "dataGrid": "List of authentication contexts",
- "description": "Description",
- "documentation": "Documentation",
- "getStarted": "Get started",
- "label": "Authentication context (preview)",
- "menuLabel": "Authentication context (Preview)",
- "name": "Name",
- "noAuthContextSet": "There are no authentication contexts",
- "noData": "No authentication contexts to display",
- "selectionInfo": "Authentication context is used to secure application data and actions in apps like SharePoint and Microsoft Cloud App Security.",
- "step": "Step",
- "tabDescription": "Manage authentication context to protect data and actions in your apps. [Learn more][1]\n[1]:https://go.microsoft.com/fwlink/?linkid=2150965",
- "tagResources": "Tag resources with an authentication context"
- },
- "AuthenticationStrength": {
- "Mode": {
- "deviceBasedPush": "Microsoft Authenticator (Phone Sign-in)",
- "deviceBasedPushFido2X509Certificate": "Microsoft Authenticator (Phone Sign-in) + Fido 2 + Certificate Based Authentication",
- "deviceBasedPushX509CertificateSingleFactor": "Microsoft Authenticator (Phone Sign-in) + Fido 2 + Certificate Based Authentication (Single Factor)",
- "email": "Email One Time Pass",
- "emailOtp": "Email OTP",
- "federatedMultiFactor": "Federated Multi-Factor",
- "federatedSingleFactor": "Federated single factor",
- "federatedSingleFactorFederatedMultiFactor": "Federated single factor + Federated Multi-Factor",
- "fido2": "FIDO 2 security key",
- "fido2X509CertificateSingleFactor": "FIDO 2 security key + Certificate Based Authentication (Single Factor)",
- "hardwareOath": "Hardware OTP",
- "hardwareOathX509CertificateSingleFactor": "Hardware OTP + Certificate Based Authentication (Single Factor)",
- "microsoftAuthenticatorPSIX509CertificateSingleFactor": "Microsoft Authenticator (Phone Sign-in) + Certificate Based Authentication (Single Factor)",
- "microsoftAuthenticatorPsi": "Microsoft Authenticator (Phone Sign-in)",
- "microsoftAuthenticatorPush": "Microsoft Authenticator (Push Notification)",
- "microsoftAuthenticatorPushX509CertificateSingleFactor": "Microsoft Authenticator (Push Notification) + Certificate Based Authentication (Single Factor)",
- "none": "None",
- "password": "Password",
- "passwordDeviceBasedPush": "Password + Microsoft Authenticator (Phone Sign-in)",
- "passwordFido2": "Password + FIDO 2 security key",
- "passwordHardwareOath": "Password + Hardware OTP",
- "passwordMicrosoftAuthenticatorPSI": "Password + Microsoft Authenticator (Phone Sign-in)",
- "passwordMicrosoftAuthenticatorPush": "Password + Microsoft Authenticator (Push Notification)",
- "passwordSms": "Password + SMS",
- "passwordSoftwareOath": "Password + Software OTP",
- "passwordTemporaryAccessPassMultiUse": "Password + Temporary Access Pass (Multi-use)",
- "passwordTemporaryAccessPassOneTime": "Password + Temporary Access Pass (One-time use)",
- "passwordVoice": "Password + Voice",
- "sms": "SMS",
- "smsSignIn": "SMS sign in",
- "smsX509CertificateSingleFactor": "SMS + Certificate Based Authentication (Single Factor)",
- "softwareOath": "Software OTP",
- "softwareOathX509CertificateSingleFactor": "Software OTP + Certificate Based Authentication (Single Factor)",
- "temporaryAccessPassMultiUse": "Temporary Access Pass (Multi-use)",
- "temporaryAccessPassMultiUseX509CertificateSingleFactor": "Temporary Access Pass (Multi-use) + Certificate Based Authentication (Single Factor)",
- "temporaryAccessPassOneTime": "Temporary Access Pass (One-time use)",
- "temporaryAccessPassOneTimeX509CertificateSingleFactor": "Temporary Access Pass (One-time use) + Certificate Based Authentication (Single Factor)",
- "voice": "Voice",
- "voiceX509CertificateSingleFactor": "Voice + Certificate Based Authentication (Single Factor)",
- "windowsHelloForBusiness": "Windows Hello For Business",
- "x509CertificateMultiFactor": "Certificate Based Authentication (Multi-Factor)",
- "x509CertificateSingleFactor": "Certificate Based Authentication (Single Factor)"
- }
- },
- "CAS": {
- "BuiltinPolicy": {
- "Option": {
- "blockDownloads": "Block downloads (Preview)",
- "monitorOnly": "Monitor only (Preview)",
- "protectDownloads": "Protect downloads (Preview)",
- "useCustomControls": "Use custom policy..."
- },
- "ariaLabel": "Choose the kind of Conditional Access App Control to apply"
- }
- },
- "ChooseApplications": {
- "Grid": {
- "appIdAria": "App ID: {0}"
- },
- "LowerGrid": {
- "ariaLabel": "List of selected cloud apps"
- },
- "UpperGrid": {
- "ariaLabel": "List of cloud apps which match the search term"
- }
- },
- "ChooseLocations": {
- "Validation": {
- "failed": "With \"Selected locations\" you must choose at least one location.",
- "selector": "Choose at least one location"
- }
- },
- "ClientApp": {
- "Clients": {
- "Validation": {
- "failed": "You must select at least one of the following clients"
- }
- }
- },
- "ClientConditionsInfo": {
- "browserAndModern": "This policy only applies to browser and modern authentication apps. To apply the policy to all client apps, enable the client app condition and select all the client apps.",
- "classicExperience": "Since this policy was created, the default client apps configuration has been updated.",
- "legacyAuth": "When not configured, policies now apply to all client apps, including modern and legacy auth."
- },
- "CloudAppFilterBlade": {
- "AssignmentFilter": {
- "header": "Attribute",
- "placeholder": "Choose an attribute"
- },
- "Configure": {
- "infoBalloon": "Configure app filters you want to policy to apply to."
- },
- "NoPermissions": {
- "learnMoreAria": "More about custom security attribute permissions.",
- "message": "You do not have the permissions needed to use custom security attributes."
- },
- "gridHeader": "Using custom security attributes you can use the rule builder or rule syntax text box to create or edit the filter rules. In the preview, only attributes of type String are supported. Attributes of type Integer or Boolean will not be shown.",
- "learnMoreAria": "More information about using the rule builder and syntax text box.",
- "noAttributes": "There are no custom attributes available to filter on. You will need to configure some attributes to employ this filter.",
- "title": "Edit filter (Preview)"
- },
- "CloudAppsUserActions": {
- "any": "Any cloud app or action",
- "infoBalloon": "Cloud app or user action you want to test. For example, 'SharePoint Online'",
- "learnMore": "Control access based on all or specific cloud apps or actions.",
- "learnMoreB2C": "Control access based on all or specific cloud apps.",
- "title": "Cloud apps or actions"
- },
- "CloudappsSelectionBlade": {
- "Excluded": {
- "gridAria": "List of excluded cloud apps"
- },
- "Filter": {
- "configured": "Configured",
- "label": "Edit filter (Preview)",
- "with": "{0} with {1}"
- },
- "Included": {
- "gridAria": "List of included cloud apps"
- },
- "Validation": {
- "authContext": "With \"authentication context\" you must configure at least one sub-item.",
- "selectApps": "\"{0}\" must be configured",
- "selector": "Select at least one app.",
- "userActions": "With \"User actions\" you must configure at least one sub-item."
- }
- },
- "DeviceState": {
- "LearnMore": {
- "message": "Control user access when the device the user is signing-in from is not \"Hybrid Azure AD joined\" or \"marked as compliant\".\n '{0}' has been deprecated. Use '{1}' instead."
- }
- },
- "Errors": {
- "notFound": "The policy was not found or has been deleted.",
- "notFoundDetailed": "The policy \"{0}\" no longer exists. It may have been deleted."
- },
- "NamedLocation": {
- "Form": {
- "CountryLookup": {
- "ariaLabel": "Country lookup method",
- "gps": "Determine location by GPS coordinates",
- "info": "When the location condition of a Conditional Access policy is configured, users will be prompted by the Authenticator app to share their GPS location. ",
- "ip": "Determine location by IP address (IPv4 only)"
- },
- "Header": {
- "new": "New location ({0})",
- "update": "Update location ({0})"
- },
- "IP": {
- "learn": "Configure named location IPv4 and IPv6 ranges.\n[Learn more][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
- },
- "Include": {
- "infoBalloon": "Unknown countries/regions are IP addresses that are not associated with a specific country or region. [Learn more][1]\n\nThis includes:\n* IPv6 addresses\n* IPv4 addresses without a direct mapping\n[1]: https://aka.ms/canamedlocations\n",
- "label": "Include unknown countries/regions"
- },
- "Name": {
- "empty": "Name cannot be empty",
- "placeholder": "Name this location"
- },
- "PrivateLink": {
- "learn": "Create a new named location containing Private Links for Azure AD.\n[Learn more][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
- },
- "Search": {
- "countries": "Search countries",
- "names": "Search names",
- "privateLinks": "Search Private Links"
- },
- "Trusted": {
- "label": "Mark as trusted location"
- },
- "enter": "Enter a new IPv4 or IPv6 range",
- "example": "ex: 40.77.182.32/27 or 2a01:111::/32"
- },
- "Label": {
- "addCountries": "Countries location",
- "addIpRange": "IP ranges location",
- "addPrivateLink": "Azure Private Links"
- },
- "Notification": {
- "Create": {
- "Failed": {
- "description": "Failure in creating new location ({0})",
- "title": "Creation has failed"
- },
- "InProgress": {
- "description": "Creating new location ({0})",
- "title": "Creation in progress"
- },
- "Success": {
- "description": "Success in creating new location ({0})",
- "title": "Creation has succeeded"
- }
- },
- "Delete": {
- "Failed": {
- "description": "Failure in deleting location ({0})",
- "title": "Deletion has failed"
- },
- "InProgress": {
- "description": "Deleting location ({0})",
- "title": "Deletion in progress"
- },
- "Success": {
- "description": "Success in deleting location ({0})",
- "title": "Deletion has succeeded"
- }
- },
- "Update": {
- "Failed": {
- "description": "Failure in updating location ({0})",
- "title": "Updating has failed"
- },
- "InProgress": {
- "description": "Updating location ({0})",
- "title": "Updating in progress"
- },
- "Success": {
- "description": "Success in updating location ({0})",
- "title": "Updating has succeeded"
- }
- }
- },
- "PrivateLinks": {
- "grid": "List of Private Links"
- },
- "Trusted": {
- "title": "Trusted type",
- "trusted": "Trusted"
- },
- "Type": {
- "all": "All types",
- "countries": "Countries",
- "ipRanges": "IP ranges",
- "privateLinks": "Private Links",
- "title": "Location type"
- },
- "iPRangeInvalidError": "Value must be a valid IPv4 or IPv6 range.",
- "iPRangeLinkOrSiteLocalError": "IP network detected as a link local or site local address.",
- "iPRangeOctetError": "IP network must not start with 0 or 255.",
- "iPRangePrefixError": "IP network prefix must be from /{0} to /{1}.",
- "iPRangePrivateError": "IP network detected as a private address."
- },
- "Policies": {
- "Grid": {
- "aria": "List of Conditional Access policies"
- },
- "countText": "{0} out of {1} policies found",
- "countTextSingular": "{0} out of 1 policy found",
- "search": "Search policies"
- },
- "Policy": {
- "Condition": {
- "ServicePrincipalRisk": {
- "description": "Configure service principal risk levels needed for policy to be enforced",
- "infoBalloonContent": "Configure service principal risk to apply the policy to selected risk level(s)",
- "title": "Service principal risk"
- }
- }
- },
- "PolicyControlAuthStrength": {
- "MultiFactorAuthentication": {
- "description": "Combinations of methods that satisfy strong authentication, such as Password + SMS",
- "displayName": "Multi-factor authentication (MFA)"
- },
- "Passwordless": {
- "description": "Passwordless methods that satisfy strong authentication, such as Microsoft Authenticator ",
- "displayName": "Passwordless MFA"
- },
- "PhishingResistant": {
- "description": "Phishing-resistant Passwordless methods for the strongest authentication, such as FIDO2 Security Key",
- "displayName": "Phishing resistant MFA"
- }
- },
- "PolicyControlFedAuthMethod": {
- "certificate": "Certificate authentication",
- "infoBubble": "Specify a required authentication method, that must be satisfied by federation provider, such as ADFS.",
- "multifactor": "Multi-factor authentication",
- "require": "Require federated authentication method (Preview)",
- "whatIfFormat": "{0} - {1}"
- },
- "PolicyState": {
- "off": "Off",
- "on": "On",
- "reportOnly": "Report-only"
- },
- "PolicyTemplates": {
- "Devices": {
- "description": "Select Devices policy template category to gain visibility into devices accessing the network. Ensure compliance and health status before granting access.",
- "name": "Devices"
- },
- "Identities": {
- "description": "Select Identities policy template category to verify and secure each identity with strong authentication across your entire digital estate.",
- "name": "Identities"
- },
- "Summary": {
- "CloudApps": {
- "allCloudApps": "All apps",
- "office365": "Office 365",
- "registerSecurityInfo": "Register security information"
- },
- "Conditions": {
- "androidAndIOS": "Device Platform: Android and IOS",
- "anyDevice": "Any device except Android, IOS, Windows and Mac",
- "anyDeviceStateExceptHybrid": "Any device state except compliant and hybrid Azure AD joined",
- "anyLocation": "Any location except trusted",
- "browserMobileDesktop": "Client apps: Browser, Mobile apps and desktop clients",
- "exchangeActiveSync": "Client Apps: Exchange Active Sync, Other Clients",
- "windowsAndMac": "Device Platform: Windows and Mac"
- },
- "Devices": {
- "anyDevice": "Any Device"
- },
- "Grant": {
- "appProtectionPolicy": "Require app protection policy",
- "approvedClientApp": "Require approved client app",
- "blockAccess": "Block access",
- "mfa": "Require multi-factor authentication",
- "passwordChange": "Require password change",
- "requireCompliantDevice": "Require device to be marked as compliant",
- "requireHybridAzureADDevice": "Require hybrid Azure AD joined device"
- },
- "Session": {
- "appEnforcedRestrictions": "Use app enforced restrictions",
- "signInFrequency": "Sign-in Frequency and never persistent browser session"
- },
- "UsersAndGroups": {
- "allUsers": "All Users",
- "directoryRoles": "Directory roles except current administrator",
- "globalAdmin": "Global Administrator",
- "noGuestAndAdmins": "All Users except Guest and External, Global administrators, Current administrator"
- },
- "azureManagement": "Azure Management",
- "deviceFilters": "Filters for devices",
- "devicePlatforms": "Device Platforms"
- },
- "TemplateId": {
- "AppEnforcedRestrictions": {
- "description": "Block or limit access to SharePoint, OneDrive, and Exchange content from unmanaged devices.",
- "name": "CA014: Use application enforced restrictions for unmanaged devices",
- "title": "Use application enforced restrictions for unmanaged devices"
- },
- "ApprovedClientApps": {
- "description": "To prevent data loss, organizations can restrict access to approved modern auth client apps with Intune app protection.",
- "name": "CA012: Require approved client apps and app protection",
- "title": "Require approved client apps and app protection"
- },
- "BlockAccessOnUnknowns": {
- "description": "Users will be blocked from accessing company resources when the device type is unknown or unsupported.",
- "name": "CA010: Block access for unknown or unsupported device platform",
- "title": "Block access for unknown or unsupported device platform"
- },
- "BlockLegacyAuth": {
- "description": "Block legacy authentication endpoints that can be used to bypass multi-factor authentication. ",
- "name": "CA003: Block legacy authentication",
- "title": "Block legacy authentication"
- },
- "NoPersistentBrowserSession": {
- "description": "Protect user access on unmanaged devices by preventing browser sessions from remaining signed in after the browser is closed and setting a sign-in frequency to 1 hour.",
- "name": "CA011: No persistent browser session",
- "title": "No persistent browser session"
- },
- "RequireCompliantOrHybridADAdmins": {
- "description": "Require privileged administrators to only access resources when using a compliant or hybrid Azure AD joined device.",
- "name": "CA009: Require compliant or hybrid Azure AD joined device for admins",
- "title": "Require compliant or hybrid Azure AD joined device for admins"
- },
- "RequireCompliantOrHybridADAllUsers": {
- "description": "Protect access to company resources by requiring users to use a managed device or perform multi-factor authentication. (macOS or Windows only)",
- "name": "CA013: Require compliant or hybrid Azure AD joined device or multi-factor authentication for all users",
- "title": "Require compliant or hybrid Azure AD joined device or multi-factor authentication for all users"
- },
- "RequireMFAAllUsers": {
- "description": "Require multi-factor authentication for all user accounts to reduce risk of compromise.",
- "name": "CA004: Require multi-factor authentication for all users",
- "title": "Require multi-factor authentication for all users"
- },
- "RequireMFAForAdmins": {
- "description": "Require multi-factor authentication for privileged administrative accounts to reduce risk of compromise. This policy will target the same roles as Security Default.",
- "name": "CA001: Require multi-factor authentication for admins",
- "title": "Require multi-factor authentication for admins"
- },
- "RequireMFAForAzureManagement": {
- "description": "Require multi-factor authentication to protect privileged access to Azure resources.",
- "name": "CA006: Require multi-factor authentication for Azure management",
- "title": "Require multi-factor authentication for Azure management"
- },
- "RequireMFAForGuestAccess": {
- "description": "Require guest users perform multi-factor authentication when accessing your company resources.",
- "name": "CA005: Require multi-factor authentication for guest access",
- "title": "Require multi-factor authentication for guest access"
- },
- "RequireMFAForRiskySignIn": {
- "description": "Require multi-factor authentication if the sign-in risk is detected to be medium or high. (Requires an Azure AD Premium 2 License)",
- "name": "CA007: Require multi-factor authentication for risky sign-ins",
- "title": "Require multi-factor authentication for risky sign-ins"
- },
- "RequirePasswordChangeForHighRiskUsers": {
- "description": "Require the user to change their password if the user risk is detected to be high. (Requires an Azure AD Premium 2 License)",
- "name": "CA008: Require password change for high-risk users",
- "title": "Require password change for high-risk users"
- },
- "RequireSecurityInfo": {
- "description": "Secure when and how users register for Azure AD multi-factor authentication and self-service password. ",
- "name": "CA002: Securing security info registration",
- "title": "Securing security info registration"
- }
- },
- "TemplateState": {
- "BlockAccessOnUnknowns": {
- "title": "Enabling this policy will prevent any access from unknown device type, consider using report only mode to begin with until you have confirmed this will not impact your users."
- },
- "BlockLegacyAuth": {
- "description": "Consider using report only mode to begin with until you have confirmed this will not impact your users.",
- "title": "Enabling this policy will block legacy authentication for all your users."
- },
- "RequireCompliantOrHybridADAdmins": {
- "Description": {
- "on": "Consider using report only mode to begin with until you have confirmed this will not impact your privileged users.",
- "reportOnly": "Policies in report-only mode that require compliant devices may prompt users on Mac, iOS, and Android to select a device certificate during policy evaluation, even though device compliance is not enforced. These prompts may repeat until the device is made compliant."
- },
- "Title": {
- "on": "Enabling this policy will prevent any access for privileged users unless using a managed device such as compliant or hybrid Azure AD joined. Ensure you have configured your compliance policies or enabled hybrid Azure AD configuration before enabling.",
- "reportOnly": "Ensure you have configured your compliance policies or enabled hybrid Azure AD configuration before enabling. "
- }
- },
- "RequireCompliantOrHybridADAllUsers": {
- "Description": {
- "on": "This policy will affect all users except the current logged in Administrator. Consider using report only mode to begin with until you have confirmed this will not impact your users."
- },
- "Title": {
- "on": "Don't lock yourself out! Make sure that your device is compliant, or hybrid Azure AD Joined or you have configured multi-factor authentication. ",
- "reportOnly": "Policies in report-only mode that require compliant devices may prompt users on Mac, iOS, and Android to select a device certificate during policy evaluation, even though device compliance is not enforced. These prompts may repeat untli the device is made compliant."
- }
- },
- "RequireMfa": {
- "description": "If you use emergency access accounts or Azure AD connect to synchronize your on-premises objects, you may need to exclude these accounts from this policy after creation."
- },
- "RequireMfaAdmins": {
- "description": "Please note the current administrator account will automatically be excluded but all others will be protected on policy creation. Consider using report only mode to begin with.",
- "title": "Don't lock yourself out! This policy impacts the Azure portal."
- },
- "RequireMfaAllUsers": {
- "description": "Consider using report only mode to begin with until you have planned and communicated this change to all your users.",
- "title": "Enabling this policy will enforce multi-factor authentication for all your users."
- },
- "RequireSecurityInfo": {
- "description": "Please ensure you review your configuration to protect these accounts based on your company needs.",
- "title": "The following users and roles are excluded from this policy, Guests and External Users, Global Administrators, Current Administrator"
- }
- },
- "basics": "Basics",
- "clientApps": "Client apps",
- "cloudApps": "Cloud apps",
- "cloudAppsOrActions": "Cloud apps or actions ",
- "conditions": "Conditions ",
- "createNewPolicy": "Create new policy from templates (Preview)",
- "createPolicy": "Create Policy",
- "currentUser": "Current user",
- "customizeBuild": "Customize your build",
- "customizeTemplate": "Template lists are customized based on the type of policy you're looking to create",
- "excludedDevicePlatform": "Excluded device platforms",
- "excludedDirectoryRoles": "Excluded directory roles",
- "excludedLocation": "Excluded directory roles",
- "excludedUsers": "Excluded users",
- "grantControl": "Grant control ",
- "includeFilteredDevice": "Include filtered devices in policy",
- "includedDevicePlatform": "Included device platforms",
- "includedDirectoryRoles": "Included directory roles",
- "includedLocation": "Included location",
- "includedUsers": "Included users",
- "legacyAuthenticationClients": "Legacy authentication clients",
- "namePolicy": "Name your policy",
- "next": "Next",
- "policyName": "Policy Name",
- "policyState": "Policy state",
- "policySummary": "Policy summary",
- "policyTemplate": "Policy template",
- "previous": "Previous",
- "reviewAndCreate": "Review + create",
- "riskLevels": "Risk levels",
- "selectATemplate": "Select a Template",
- "selectTemplate": "Select template",
- "selectTemplateCategory": "Select a template category",
- "selectTemplateRecommendation": "We recommend the following templates based on your response",
- "sessionControl": "Session control ",
- "signInFrequency": "Sign-in frequency",
- "signInRisk": "Sign-in risk",
- "template": "Template ",
- "templateCategory": "Template category",
- "userRisk": "User risk",
- "usersAndGroups": "Users and groups ",
- "viewPolicySummary": "View policy summary "
- },
- "SSM": {
- "MemberSelector": {
- "description": "Users and groups"
- },
- "Notification": {
- "Migration": {
- "error": "Failed to migrate Continuous access evaluation settings to Conditional access policies",
- "inProgress": "Migrating Continuous access evaluation settings",
- "success": "Successfully migrated Continuous access evaluation settings to Conditional access policies",
- "successDescription": "Please proceed to Conditional access policies to view the migrated settings in the newly created policy named \"CA policy created from CAE settings\"."
- },
- "error": "Failed to update Continuous access evaluation settings",
- "inProgress": "Updating Continuous access evaluation settings",
- "success": "Successfully updated Continuous access evaluation settings"
- },
- "PreviewOptions": {
- "disable": "Disable preview",
- "enable": "Enable preview"
- },
- "StrictLocationEnforcement": {
- "infoContent1": "Different IPs can be seen by Azure AD and Resource Provider from the same client device due to network partition or IPv4/IPv6 mismatch. Strict Location Enforcement will enforce the Conditional Access policy based on both IP addresses seen by Azure AD and Resource Provider.",
- "infoContent2": "To ensure maximum security, it is recommended to include all IPs that can be seen by both Azure AD and Resource Provider in your Named Location policy and turn on \"Strict Location Enforcement\" mode.",
- "label": "Strict Location Enforcement",
- "title": "Additional enforcement modes"
- },
- "bladeTitle": "Continuous access evaluation",
- "description": "When a user's access is removed or a client IP address changes, Continuous access evaluation automatically blocks access to resources and applications in near real time. ",
- "migrateLabel": "Migrate",
- "migrationError": "Migration failed due to the following error: {0}",
- "migrationInfo": "CAE setting has been moved under Conditional Access UX, please migrate with the “Migrate” button above and configure it with Conditional Access policy going forward. Click here to learn more.",
- "noLicenseMessage": "Manage smart session management settings with Azure AD Premium",
- "optionsPickerTitle": "Enable/Disable Continuous access evaluation",
- "upsellInfo": "You cannot change your settings on this page anymore and any settings here should be disregarded. Your previous setting will be honored. You can configure your CAE settings under Conditional Access going forward. Click here to learn more."
- },
- "SessionLifetime": {
- "PersistentBrowser": {
- "Error": {
- "notAllApps": "Persistent browser session policy only works correctly when \"All cloud apps\" is selected. Please update your cloud apps selection."
- },
- "Option": {
- "always": "Always persistent",
- "help": "A persistent browser session allows users to remain signed in after closing and reopening their browser window.
\n\n- This setting works correctly when \"All cloud apps\" are selected
\n- This does not affect token lifetimes or the sign-in frequency setting.
\n- This will override the \"Show option to stay signed in\" policy in Company Branding.
\n- \"Never persistent\" will override any persistent SSO claims passed in from federated authentication services.
\n- \"Never persistent\" will prevent SSO on mobile devices across applications and between applications and the user's mobile browser.
\n",
- "label": "Persistent browser session",
- "never": "Never persistent"
- },
- "Warning": {
- "allApps": "Persistent browser session only works correctly when All cloud apps is selected. Please change your cloud apps selection. Click here to learn more."
- }
- },
- "SignInFrequency": {
- "Aria": {
- "units": "Hours or days",
- "value": "Frequency"
- },
- "Option": {
- "Day": {
- "plural": "{0} days",
- "singular": "1 day"
- },
- "Hour": {
- "plural": "{0} hours",
- "singular": "1 hour"
- },
- "daysOption": "Days",
- "everytime": "Every time",
- "help": "Time period before a user is asked to sign-in again when attempting to access a resource. The default setting is a rolling window of 90 days, i.e. users will be asked to re-authenticate on the first attempt to access a resource after being inactive on their machine for 90 days or longer.",
- "hoursOption": "Hours",
- "label": "Sign-in frequency",
- "placeholder": "Select units"
- }
- },
- "mainOption": "Modify session lifetime",
- "mainOptionHelp": "Configure how often users will get prompted and whether browser sessions will be persisted. Applications that don't support modern authentication protocols might not honor these policies. In such cases please contact the application developer."
- },
- "SigninRisk": {
- "LearnMore": {
- "message": "Control user access to respond to specific sign-in risk levels."
- }
- },
- "SingleSelectorActive": {
- "failed": "Unable to load this data.",
- "reattempt": "Loading data. Reattempt {0} of {1}."
- },
- "TimeCondition": {
- "Errors": {
- "both": "Invalid \"Include\" or \"Exclude\" time range.",
- "daysOfWeek": "{0} Make sure to specify at least one day of the week.",
- "endBeforeStart": "{0} Make sure start date/time is earlier than end date/time.",
- "exclude": "Invalid \"Exclude\" time range.",
- "generic": "{0} Make sure both days of the week and time zone are set. If \"All day\" is not checked, start time and end time need to be set as well.",
- "include": "Invalid \"Include\" time range.",
- "timeMissing": "{0} Make sure to specify both a start and end time.",
- "timeZone": "{0} Make sure to specify a time zone.",
- "timesAndZone": "{0} Make sure you set start time, end time and time zone."
- }
- },
- "UserActions": {
- "Included": {
- "none": "No cloud apps or actions selected",
- "plural": "{0} user actions included",
- "singular": "1 user action included"
- },
- "accessRequirement1": "Level 1",
- "accessRequirement2": "Level 2",
- "accessRequirement3": "Level 3",
- "accessRequirementsLabel": "Accessing secured app data",
- "appsActionsAuthTitle": "Cloud apps, actions, or authentication context",
- "appsOrActionsSelectorInfoBallonText": "Applications accessed or user actions",
- "appsOrActionsTitle": "Cloud apps or actions",
- "label": "User actions",
- "mainOptionsLabel": "Select what this policy applies to",
- "registerOrJoinDevices": "Register or join devices",
- "registerSecurityInfo": "Register security information",
- "selectionInfo": "Select the action this policy will apply to"
- },
- "UserSelectionBlade": {
- "DirectoryRoles": {
- "ariaLabel": "Choose directory roles"
- },
- "Excluded": {
- "gridAria": "List of excluded users"
- },
- "Included": {
- "gridAria": "List of included users"
- },
- "Validation": {
- "customRoleIncluded": "\"Directory Roles\" includes at least one custom role",
- "customRoleSelected": "At least one custom role is selected",
- "failed": "\"{0}\" must be configured",
- "roles": "Select at least one role",
- "usersGroups": "Select at least one user or group"
- },
- "learnMore": "Control access based on who the policy will apply to, such as users and groups, workload identities, directory roles, or external guests."
- },
- "ValidationResult": {
- "blockEveryonePolicy": "Policy configuration not supported. Review the assignments and controls.",
- "invalidApplicationCondition": "Invalid cloud applications selected",
- "invalidClientTypesCondition": "Invalid client apps selected",
- "invalidConditions": "Assignments are not selected",
- "invalidControls": "Invalid controls selected",
- "invalidDevicePlatformsCondition": "Invalid device platforms selected",
- "invalidDevicesCondition": "Invalid device configuration. Likely an invalid \"{0}\" configuration.",
- "invalidGrantControlPolicy": "Invalid grant control",
- "invalidLocationsCondition": "Invalid locations selected",
- "invalidPolicy": "Assignments are not selected",
- "invalidSessionControlPolicy": "Invalid session control",
- "invalidSignInRisksCondition": "Invalid sign-in risk selected",
- "invalidUserRisksCondition": "Invalid user risk selected",
- "invalidUsersCondition": "Invalid users selected",
- "mamPolicyShouldOnlyTargetAndroidOrIosPlatforms": "MAM policy can only be applied to Android or iOS client platforms.",
- "notSupportedCombination": "Policy configuration is not supported. Learn more about supported policies.",
- "pending": "Validating policy",
- "requireComplianceEveryonePolicy": "Policy configuration will require device compliance for all users. Review the assignments selected.",
- "success": "Valid policy"
- },
- "VpnCert": {
- "Grid": {
- "aria": "List of VPN Certificates"
- }
- },
- "WarningsInfo": {
- "Controls": {
- "compliantDeviceEnabled": "Don't lock yourself out! Make sure that your device is compliant.",
- "domainJoinedDeviceEnabled": "Don't lock yourself out! Make sure that your device is Hybrid Azure AD Joined.",
- "exchangeDisabled": "Exchange ActiveSync only supports \"Compliant device\" and \"Approved client app\" controls. Click to learn more.",
- "exchangeDisabled2": "Exchange ActiveSync only supports \"Compliant device\", \"Approved client app\" and \"Compliant client app\" controls. Click to learn more.",
- "notAvailableForSP": "Some controls are not available due to '{0}' selection in policy assignment",
- "requireAuthOrMfa": "\"{0}\" cannot be used with \"{1}\"",
- "requireMfa": "Consider testing the new \"{0}\" public preview",
- "requirePasswordChangeEnabled": "\"Require password change\" can only be used when policy is assigned to \"All cloud apps\""
- },
- "Policies": {
- "Linux": {
- "devicePlatformsReportOnlyPolicy": "Policies in Report-only mode requiring compliant devices may prompt users on macOS, iOS, Android, and Linux to select a device certificate.",
- "excludeDevicePlatforms": "Exclude device platforms macOS, iOS, Android, and Linux from this policy.",
- "proceedAnywayDevicePlatforms": "Proceed with selected configuration. Users on macOS, iOS, Android, and Linux may receive prompts when the device is checked for compliance."
- },
- "blockCurrentUserPolicy": "Don't lock yourself out! We recommend applying a policy to a small set of users first to verify it behaves as expected. We also recommend excluding at least one administrator from this policy. This ensures that you still have access and can update a policy if a change is required. Please review the affected users and apps.",
- "devicePlatformsReportOnlyPolicy": "Policies in Report-only mode requiring compliant devices may prompt users on macOS, iOS, and Android to select a device certificate.",
- "excludeCurrentUserSelection": "Exclude current user, {0}, from this policy.",
- "excludeDevicePlatforms": "Exclude device platforms macOS, iOS, and Android from this policy.",
- "proceedAnywayDevicePlatforms": "Proceed with selected configuration. Users on macOS, iOS, and Android may receive prompts when the device is checked for compliance.",
- "proceedAnywaySelection": "I understand that my account will be impacted by this policy. Proceed anyway."
- },
- "ServicePrincipals": {
- "blockExchange": "Selecting Office 365 Exchange Online will also affect apps such as OneDrive and Teams.",
- "blockPortal": "Don't lock yourself out! This policy impacts the Azure portal. Before you continue, ensure that you or someone else will be able to get back into the portal.",
- "blockPortalWithSession": "Don't lock yourself out! This policy impacts the Azure portal. Before you continue, ensure that you or someone else will be able to get back into the portal.
Disregard this warning if you are configuring persistent browser session policy that works correctly only if \"All cloud apps\" are selected.",
- "blockSharePoint": "Selecting SharePoint Online will also affect apps such as Microsoft Teams, Planner, Delve, MyAnalytics, and Newsfeed.",
- "blockSkype": "Selecting Skype for Business Online will also affect Microsoft Teams.",
- "includeOrExclude": "You can configure the App Filter for '{0}' or '{1}', but not both.",
- "selectAppsNAForSP": "Individual cloud apps cannot be selected due to '{0}' selection in policy assignment",
- "teamsBlocked": "Microsoft Teams will also be affected when apps such as SharePoint Online and Exchange Online are included in policy."
- },
- "Users": {
- "blockAllUsers": "Don't lock yourself out! This policy will affect all of your users. We recommend applying a policy to a small set of users first to verify it behaves as expected."
- }
- },
- "WhatIf": {
- "Device": {
- "AttributesGrid": {
- "aria": "List of attributes on the device employed during sign-in.",
- "infoBalloon": "List of attributes on the device employed during sign-in."
- }
- }
- },
- "advancedTabText": "Advanced",
- "allCloudAppsErrorBox": "\"All cloud apps\" must be selected when \"Require password change\" grant is selected",
- "allDayCheckboxLabel": "All day",
- "allDevicePlatforms": "Any device",
- "allGuestUserInfoContent": "Includes Azure AD B2B guests, but not SharePoint B2B guests",
- "allGuestUserLabel": "All guest and external users",
- "allRiskLevelsOption": "All risk levels",
- "allTrustedLocationLabel": "All trusted locations",
- "allUserGroupSetSelectorLabel": "All users and groups selected",
- "allUsersString": "All users",
- "and": "{0} AND {1} ",
- "andWithGrouping": "({0}) AND {1} ",
- "androidDisplayName": "Android",
- "anyCloudAppSelection": "Any cloud app",
- "appContextOptionInfoContent": "Requested authentication tag",
- "appContextOptionLabel": "Requested authentication tag (Preview)",
- "appContextUriPlaceholder": "Example: uri:contoso.com:level3",
- "appEnforceInfoBubble": "App enforced restrictions might require additional admin configurations within the cloud apps. The restrictions will only take effect for new sessions.",
- "appNotSetSeletorLabel": "0 cloud apps selected",
- "applyConditionClientAppInfoBalloonContent": "Configure client apps to apply the policy to specific client apps",
- "applyConditionDevicePlatformInfoBalloonContent": "Configure device platforms to apply the policy to specific platforms",
- "applyConditionDeviceStateInfoBalloonContent": "Configure device state to apply the policy to specific device state(s)",
- "applyConditionLocationInfoBalloonContent": "Configure locations to apply the policy to trusted/untrusted locations",
- "applyConditionSigninRiskInfoBalloonContent": "Configure sign-in risk to apply the policy to selected risk level(s)",
- "applyConditionUserRiskInfoBalloonContent": "Configure user risk to apply the policy to selected risk level(s)",
- "applyConditonLabel": "Configure",
- "ariaLabelPolicyDisabled": "Policy is disabled",
- "ariaLabelPolicyEnabled": "Policy is enabled",
- "ariaLabelPolicyReportOnly": "Policy is in Report-only mode",
- "blockAccess": "Block access",
- "builtInDirectoryRoleLabel": "Built-in directory roles",
- "casCustomControlInfo": "Custom policies need to be configured in Cloud App Security portal. This control works instantly for featured apps and can be self onboarded for any app. Click here to learn more about both scenarios.",
- "casInfoBubble": "This control works for various cloud apps.",
- "casPreconfiguredControlInfo": "This control works instantly for featured apps and can be self onboarded for any app. Click here to learn more about both scenarios.",
- "cert64DownloadCol": "Download base64 certificate",
- "cert64Name": "VpnBase64Cert",
- "certDownloadCol": "Download certificate",
- "certDurationCol": "Expiry",
- "certDurationStartCol": "Valid from",
- "certName": "VpnCert",
- "chooseApplicationsBladeSubtitle": "",
- "chooseApplicationsBladeTitle": "Choose Applications",
- "chooseApplicationsCartSubitle": "",
- "chooseApplicationsCartTitle": "Chosen Applications",
- "chooseApplicationsEmpty": "No Applications",
- "chooseApplicationsNone": "None",
- "chooseApplicationsNoneFound": "We didn't find \"{0}\". Try another name or ID.",
- "chooseApplicationsPlural": "{0} and {1} more",
- "chooseApplicationsReAuthEverytimeInfo": "Looking for your app? Some applications cannot be used with \"Require reauthentication – every time\" session control",
- "chooseApplicationsRemove": "Remove",
- "chooseApplicationsReturnedPlural": "{0} applications found",
- "chooseApplicationsReturnedSingular": "1 application found",
- "chooseApplicationsSearchBalloon": "Search for an Application by entering its name or ID.",
- "chooseApplicationsSearchHint": "Search Applications...",
- "chooseApplicationsSearchLabel": "Applications",
- "chooseApplicationsSearching": "Searching...",
- "chooseApplicationsSelect": "Select",
- "chooseApplicationsSelected": "Selected",
- "chooseApplicationsSingular": "{0} and 1 more",
- "chooseApplicationsTooMany": "More results than can be shown. Please filter using the search box.",
- "chooseLocationCorpnetItem": "Corporate network",
- "chooseLocationSelectedLocationsLabel": "Selected locations",
- "chooseLocationTrustedIpsItem": "MFA Trusted IPs",
- "chooseLocationsBladeSubtitle": "",
- "chooseLocationsBladeTitle": "Choose Locations",
- "chooseLocationsCartSubitle": "",
- "chooseLocationsCartTitle": "Chosen Locations",
- "chooseLocationsEmpty": "No Locations",
- "chooseLocationsExcludedSelectorTitle": "Select",
- "chooseLocationsIncludedSelectorTitle": "Select",
- "chooseLocationsNone": "None",
- "chooseLocationsNoneFound": "We didn't find \"{0}\". Try another name or ID.",
- "chooseLocationsPlural": "{0} and {1} more",
- "chooseLocationsRemove": "Remove",
- "chooseLocationsReturnedPlural": "{0} locations found",
- "chooseLocationsReturnedSingular": "1 location found",
- "chooseLocationsSearchBalloon": "Search for a Location by entering its name.",
- "chooseLocationsSearchHint": "Search Locations...",
- "chooseLocationsSearchLabel": "Locations",
- "chooseLocationsSearching": "Searching...",
- "chooseLocationsSelect": "Select",
- "chooseLocationsSelected": "Selected",
- "chooseLocationsSelectionBladeExcludedSelectorTitle": "Select",
- "chooseLocationsSelectionBladeIncludedSelectorTitle": "Select",
- "chooseLocationsSingular": "{0} and 1 more",
- "chooseLocationsTooMany": "More results than can be shown. Please filter using the search box.",
- "claimProviderAddCommandText": "New custom control",
- "claimProviderAddNewBladeTitle": "New custom control",
- "claimProviderDeleteCommand": "Delete",
- "claimProviderDeleteDescription": "Are you sure you want to delete '{0}'? This action cannot be undone.",
- "claimProviderDeleteTitle": "Are you sure?",
- "claimProviderEditInfoText": "Enter the JSON for customized controls given by your claim providers.",
- "claimProviderNotificationCreateDescription": "Creating custom control named '{0}'",
- "claimProviderNotificationCreateFailedDescription": "Creating custom control '{0}' failed. Please try again later.",
- "claimProviderNotificationCreateFailedTitle": "Failed to create custom control",
- "claimProviderNotificationCreateSuccessDescription": "Created custom control named '{0}'",
- "claimProviderNotificationCreateSuccessTitle": "Created '{0}'",
- "claimProviderNotificationCreateTitle": "Creating '{0}'",
- "claimProviderNotificationDeleteDescription": "Deleting custom control named '{0}'",
- "claimProviderNotificationDeleteFailedDescription": "Deleting custom control '{0}' failed. Please try again later.",
- "claimProviderNotificationDeleteFailedTitle": "Failed to delete custom control",
- "claimProviderNotificationDeleteSuccessDescription": "Deleted custom control named '{0}'",
- "claimProviderNotificationDeleteSuccessTitle": "Deleted '{0}'",
- "claimProviderNotificationDeleteTitle": "Deleting '{0}'",
- "claimProviderNotificationUpdateDescription": "Updating custom control named '{0}'",
- "claimProviderNotificationUpdateFailedDescription": "Updating custom control '{0}' failed. Please try again later.",
- "claimProviderNotificationUpdateFailedTitle": "Failed to update custom control",
- "claimProviderNotificationUpdateSuccessDescription": "Updated custom control named '{0}'",
- "claimProviderNotificationUpdateSuccessTitle": "Updated '{0}'",
- "claimProviderNotificationUpdateTitle": "Updating '{0}'",
- "claimProviderValidationAppIdInvalid": "The \"AppId\" value is not valid. Please review and try again.",
- "claimProviderValidationClientIdMissing": "The data is missing a \"ClientId\" value. Please review and try again.",
- "claimProviderValidationControlClaimsRequestedMissing": "The \"Control\" is missing a \"ClaimsRequested\" value. Please review and try again.",
- "claimProviderValidationControlClaimsRequestedTypeMissing": "The \"ClaimsRequested\" item is missing a \"Type\" value. Please review and try again.",
- "claimProviderValidationControlIdAlreadyExists": "The \"Control\" \"Id\" value already exists. Please review and try again.",
- "claimProviderValidationControlIdMissing": "The \"Control\" is missing an \"Id\" value. Please review and try again.",
- "claimProviderValidationControlIdReferencedInExistingPolicy": "The \"Control\" \"Id\" value cannot be removed because it is referenced in an existing policy. Please remove it from the policy first.",
- "claimProviderValidationControlIdTooManyControls": "The \"Control\" property has too many controls. Please review and try again.",
- "claimProviderValidationControlIdValueReserved": "The \"Control\" \"Id\" value is a reserved keyword, please use a different id.",
- "claimProviderValidationControlNameAlreadyExists": "The \"Control\" \"Name\" value already exists. Please review and try again.",
- "claimProviderValidationControlNameMissing": "The \"Control\" is missing a \"Name\" value. Please review and try again.",
- "claimProviderValidationControlsMissing": "The data is missing a \"Controls\" value. Please review and try again.",
- "claimProviderValidationDiscoveryUrlMissing": "The data is missing a \"DiscoveryUrl\" value. Please review and try again.",
- "claimProviderValidationInvalid": "There data provided is not valid. Please review and try again.",
- "claimProviderValidationInvalidJsonDefinition": "Unable to save the custom control. Review the JSON text and try again.",
- "claimProviderValidationNameAlreadyExists": "The \"Name\" value already exists. Please review and try again.",
- "claimProviderValidationNameMissing": "The data is missing a \"Name\" value. Please review and try again.",
- "claimProviderValidationUnknown": "There was an unknown error while validating the data provided. Please review and try again.",
- "claimProvidersNone": "No custom controls",
- "claimProvidersSearchPlaceholder": "Search controls.",
- "classicPoilcyFilterTitle": "Show",
- "classicPolicyAllPlatforms": "All Platforms",
- "classicPolicyClientAppBrowserAndNative": "Browser, mobile apps and desktop clients",
- "classicPolicyCloudAppTitle": "Cloud application",
- "classicPolicyControlAllow": "Allow",
- "classicPolicyControlBlock": "Block",
- "classicPolicyControlBlockWhenNotAtWork": "Block access when not at work",
- "classicPolicyControlRequireCompliantDevice": "Require compliant device",
- "classicPolicyControlRequireDomainJoinedDevice": "Require domain joined device",
- "classicPolicyControlRequireMfa": "Require multi-factor authentication",
- "classicPolicyControlRequireMfaWhenNotAtWork": "Require multi-factor authentication when not at work",
- "classicPolicyDeleteCommand": "Delete",
- "classicPolicyDeleteFailTitle": "Failed to delete classic policy",
- "classicPolicyDeleteInProgressTitle": "Deleting classic policy",
- "classicPolicyDeleteSuccessTitle": "Classic policy deleted",
- "classicPolicyDetailBladeTitle": "Details",
- "classicPolicyDisableCommand": "Disable",
- "classicPolicyDisableConfirmation": "Are you sure you want to disable '{0}'? This action cannot be undone.",
- "classicPolicyDisableFailDescription": "Failed to disable '{0}'",
- "classicPolicyDisableFailTitle": "Failed to disable classic policy",
- "classicPolicyDisableInProgressDescription": "Disabling '{0}'",
- "classicPolicyDisableInProgressTitle": "Disabling classic policy",
- "classicPolicyDisableSuccessDescription": "Successfully disabled '{0}'",
- "classicPolicyDisableSuccessTitle": "Classic policy disabled",
- "classicPolicyEasSupportedPlatforms": "Exchange ActiveSync supported platforms",
- "classicPolicyEasUnsupportedPlatforms": "Exchange ActiveSync unsupported platforms",
- "classicPolicyExcludedPlatformsTitle": "Excluded device platforms",
- "classicPolicyFilterAll": "All policies",
- "classicPolicyFilterDisabled": "Disabled policies",
- "classicPolicyFilterEnabled": "Enabled policies",
- "classicPolicyIncludeExcludeMembersDescription": "By excluding groups, you can perform phased migration of policies.",
- "classicPolicyIncludeExcludeMembersTitle": "Include/exclude groups",
- "classicPolicyIncludedPlatformsTitle": "Included device platforms",
- "classicPolicyManualMigrationMessage": "This policy needs to be migrated manually.",
- "classicPolicyMigrateCommand": "Migrate",
- "classicPolicyMigrateConfirmation": "Are you sure you want to migrate '{0}'? This policy can only be migrated once.",
- "classicPolicyMigrateFailDescription": "Failed to migrate '{0}'",
- "classicPolicyMigrateFailTitle": "Failed to migrate classic policy",
- "classicPolicyMigrateInProgressDescription": "Migrating '{0}'",
- "classicPolicyMigrateInProgressTitle": "Migrating classic policy",
- "classicPolicyMigrateRecommendText": "Recommendation: Migrate to the new Azure portal policies.",
- "classicPolicyMigrateSuccessTitle": "Classic policy migrated successfully",
- "classicPolicyMigratedSuccessDescription": "This classic policy can now be managed under Polices.",
- "classicPolicyMigratedSuccessDescriptionMultiple": "This classic policy is migrated as {0} new policies. New policies can be managed under Policies.",
- "classicPolicyNoEditPermissionMsg": "You don't have permission to edit this policy. Only global administrators and security administrators can edit the policy. Click here for more information.",
- "classicPolicySaveFailDescription": "Failed to save '{0}'",
- "classicPolicySaveFailTitle": "Failed to save classic policy",
- "classicPolicySaveInProgressDescription": "Saving '{0}'",
- "classicPolicySaveInProgressTitle": "Saving classic policy",
- "classicPolicySaveSuccessDescription": "Successfully saved '{0}'",
- "classicPolicySaveSuccessTitle": "Classic policy saved",
- "clientAppBladeLegacyInfoBanner": "Legacy auth is currently not supported",
- "clientAppBladeLegacyUpsellBanner": "Block unsupported client apps (Preview)",
- "clientAppBladeTitle": "Client apps",
- "clientAppDescription": "Select the client apps this policy will apply to",
- "clientAppExchangeActiveSync": "Exchange ActiveSync",
- "clientAppExchangeDisabledInfo": "Exchange ActiveSync is available when Exchange Online is the only cloud app selected. Click to learn more",
- "clientAppExchangeWarning": "Exchange ActiveSync currently does not support all other conditions",
- "clientAppLearnMore": "Control user access to target specific client applications not using modern authentication.",
- "clientAppLegacyHeader": "Legacy authentication clients",
- "clientAppMobileDesktop": "Mobile apps and desktop clients",
- "clientAppModernHeader": "Modern authentication clients",
- "clientAppOnlySupportedPlatforms": "Apply policy only to supported platforms",
- "clientAppSelectSpecificClientApps": "Select client apps",
- "clientAppV2BladeTitle": "Client apps (Preview)",
- "clientAppWebBrowser": "Browser",
- "clientAppsSelectedLabel": "{0} included",
- "clientTypeBrowser": "Browser",
- "clientTypeEas": "Exchange ActiveSync clients",
- "clientTypeEasInfo": "Exchange ActiveSync clients that use legacy authentication only.",
- "clientTypeModernAuth": "Modern authentication clients",
- "clientTypeOtherClients": "Other clients",
- "clientTypeOtherClientsInfo": "This includes older office clients and other mail protocols(POP, IMAP, SMTP, etc). [Learn more][1]\n[1]: https://aka.ms/caclientapps\n",
- "cloudAppCountDiffBannerText": "{0} cloud apps configured in this policy have been deleted from the directory, but this doesn't affect the other apps in the policy. The next time you update the application section of the policy, the deleted apps will be automatically removed from it.",
- "cloudAppsSelectionBladeAllMicrosoftApps": "All Microsoft apps",
- "cloudAppsSelectionExcludeAllMicrosoftClients": "Allow Microsoft cloud, desktop and mobile apps (Preview)",
- "cloudappsSelectionBladeAllCloudapps": "All cloud apps",
- "cloudappsSelectionBladeExcludeDescription": "Select the cloud apps to exempt from the policy",
- "cloudappsSelectionBladeExcludedSelectorTitle": "Select excluded cloud apps",
- "cloudappsSelectionBladeIncludeDescription": "Select the cloud apps this policy will apply to",
- "cloudappsSelectionBladeIncludedSelectorTitle": "Select",
- "cloudappsSelectionBladeSelectedCloudapps": "Select apps",
- "cloudappsSelectorInfoBallonText": "Services which the user accesses to do work. For example, 'Salesforce'",
- "cloudappsSelectorUserPlural": "{0} apps",
- "cloudappsSelectorUserSingular": "1 app",
- "conditionLabelMulti": "{0} conditions selected",
- "conditionLabelOne": "1 condition selected",
- "conditionalAccessBladeTitle": "Conditional Access",
- "conditionsNotSelectedLabel": "Not configured",
- "conditionsReqPwSet": "Some options are not available due to the \"Require password change\" grant currently being selected",
- "configureCasText": "Configure Cloud App Security",
- "configureCustomControlsText": "Configure custom policy",
- "controlLabelMulti": "{0} controls selected",
- "controlLabelOne": "1 control selected",
- "controlValidatorText": "Please select at least one control",
- "controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
- "controlsDeviceComplianceInfoBubble": "Device must be Intune compliant. If the device is non-compliant, the user will be prompted to bring the device under compliance",
- "controlsDomainJoinedInfoBubble": "Devices must be Hybrid Azure AD joined.",
- "controlsMamInfoBubble": "Device must use these approved client applications.",
- "controlsMfaInfoBubble": "User must complete additional security requirements like phone call, text",
- "controlsOrAndInfoBubble": "ControlsOrAndInfoBubble",
- "controlsRequireCompliantAppInfoBubble": "Device must use policy protected apps.",
- "controlsRequirePasswordResetInfoBubble": "Require password change to lower user risk. This option also requires multi-factor authentication. Other controls can't be used.",
- "countriesRadiobuttonInfoBalloonContent": "The country/region a sign-in is coming from is determined by the user's IP address.",
- "createNewVpnCert": "New certificate",
- "createdTimeLabel": "Creation time",
- "customRoleLabel": "Custom roles (not supported)",
- "dateRangeTypeLabel": "Date range",
- "daysOfWeekPlaceholderText": "Filter days of the week",
- "daysOfWeekTypeLabel": "Days of the week",
- "deletePolicyNoLicenseText": "You can delete this policy now. Once deleted you will not be able to recreate it until you have the required licenses.",
- "descriptionContentForControlsAndOr": "For multiple controls",
- "devicePlatform": "Device platform",
- "devicePlatformConditionHelpDescription": "Apply policy to selected device platforms.\n[Learn more][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2044750",
- "devicePlatformInclude": "{0} included",
- "devicePlatformIncludeExclude": "{0} and {1} excluded",
- "devicePlatformNoSelectionError": "Select device platforms requires one sub-item to be selected.",
- "devicePlatformsNone": "None",
- "deviceSelectionBladeExcludeDescription": "Select the platforms to exempt from the policy",
- "deviceSelectionBladeIncludeDescription": "Select the device platforms to include in this policy",
- "deviceStateAll": "All device state",
- "deviceStateCompliant": "Device marked as compliant",
- "deviceStateCompliantInfoContent": "Devices that are Intune compliant will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Intune compliant.",
- "deviceStateConditionConfigureInfoContent": "Configure policy based on device state",
- "deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Hybrid Azure AD joined' or 'marked as compliant'.\n '{0}' has been deprecated. Use '{1}' instead.",
- "deviceStateConditionSelectorLabel": "Device state (Preview)",
- "deviceStateDomainJoined": "Device Hybrid Azure AD joined",
- "deviceStateDomainJoinedInfoContent": "Devices that are Hybrid Azure AD joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Hybrid Azure AD joined.",
- "deviceStateDomainJoinedInfoLinkText": "Learn more.",
- "deviceStateExcludeDescription": "Select the device state condition used to exclude devices from policy.",
- "deviceStateIncludeAndExcludeOneLabel": "{0} and exclude {1}",
- "deviceStateIncludeAndExcludeTwoLabel": "{0} and exclude {1}, {2}",
- "directoryRoleInfoContent": "Assign policy to built-in directory roles.",
- "directoryRolesLabel": "Directory roles",
- "discardbutton": "Discard",
- "downloadDefaultFileName": "IP Ranges",
- "downloadExampleFileName": "Example",
- "downloadExampleHeader": "This is an example file with demonstrations of the kinds of data which can be accepted. Lines starting with # will be ignored.",
- "endDatePickerLabel": "Ends",
- "endTimePickerLabel": "End time",
- "enterCountryText": "IP address and Country are evaluated in a pair. Select the Country.",
- "enterIpText": "IP address and Country are evaluated in a pair. Input the IP address.",
- "enterUserText": "No user is selected. Select a user.",
- "evaluationResult": "Evaluation result",
- "exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
- "exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync with supported platforms only",
- "excludeAllTrustedLocationSelectorText": "all trusted locations",
- "featureRequiresP2": "This feature requires Azure AD Premium 2 license.",
- "friday": "Friday",
- "grantControls": "Grant controls",
- "gridNetworkTrusted": "Trusted",
- "gridPolicyCreatedDateTime": "Creation Date",
- "gridPolicyEnabled": "Enabled",
- "gridPolicyModifiedDateTime": "Modified Date",
- "gridPolicyName": "Policy Name",
- "gridPolicyState": "State",
- "groupSelectionBladeExcludeDescription": "Select the groups to exempt from the policy",
- "groupSelectionBladeExcludedSelectorTitle": "Select excluded groups",
- "groupSelectionBladeSelect": "Select groups",
- "groupSelectorInfoBallonText": "Groups in the directory that the policy applies to. For example, 'Pilot group'",
- "groupsSelectionBladeTitle": "Groups",
- "helpCommonScenariosText": "Interested in common scenarios?",
- "helpCondition1": "When any user is outside the company network",
- "helpCondition2": "When users in the 'Managers' group sign-in",
- "helpConditionsTitle": "Conditions",
- "helpControl1": "They're required to sign in with multi-factor authentication",
- "helpControl2": "They are required be on an Intune compliant or domain-joined device",
- "helpControlsTitle": "Controls",
- "helpIntroText": "Conditional Access gives you the ability to enforce access requirements when specific conditions occur. Let's take a few examples",
- "helpIntroTitle": "What is Conditional Access?",
- "helpLearnMoreText": "Want to learn more about Conditional Access?",
- "helpStartStep1": "Create your first policy by clicking \"+ New policy\"",
- "helpStartStep2": "Specify policy Conditions and Controls",
- "helpStartStep3": "When you are done, don't forget to Enable policy and Create",
- "helpStartTitle": "Get started",
- "highRisk": "High",
- "includeAndExcludeAppsTextFormat": "Include: {0}. Exclude: {1}.",
- "includeAppsTextFormat": "Include: {0}.",
- "includeUnknownAreasCheckboxInfoBalloonContent": "Unknown areas are IP addresses that can't be mapped to a country/region.",
- "includeUnknownAreasCheckboxLabel": "Include unknown areas",
- "infoCommandLabel": "Info",
- "invalidCertDuration": "Invalid cert duration",
- "invalidIpAddress": "Value must be a valid IP address",
- "invalidUriErrorMsg": "Please enter a valid Uri. For example,'uri:contoso.com:acr' ",
- "iosDisplayName": "iOS",
- "linuxDisplayName": "Linux",
- "linuxDisplayNamePreview": "Linux (Preview)",
- "loadAll": "Load all",
- "loading": "Loading...",
- "locationConfigureNamedLocationsText": "Configure all trusted locations",
- "locationConfigureNamedLocationsUri": "{0}/usermanagement/mfasettings.aspx?tenantid={1}&culture={2}",
- "locationNameTooLongError": "Location name is too long. Maximum is 256 characters",
- "locationSelectionBladeExcludeDescription": "Select the locations to exempt from the policy",
- "locationSelectionBladeIncludeDescription": "Select the locations to include in this policy",
- "locationsAllLocationsLabel": "Any location",
- "locationsAllNamedLocationsLabel": "All trusted IPs",
- "locationsAllPrivateLinksLabel": "All Private Links in my tenant",
- "locationsIncludeExcludeLabel": "{0} and exclude all trusted IPs",
- "locationsSelectedPrivateLinksLabel": "Selected Private Links",
- "lowRisk": "Low",
- "macOsDisplayName": "macOS",
- "managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Azure AD Premium P1 or P2.",
- "markAsTrustedCheckboxInfoBalloonContent": "Signing in from a trusted location lowers a user's sign-in risk. Only mark this location as trusted if you know the IP ranges entered are established and credible in your organization.",
- "markAsTrustedCheckboxLabel": "Mark as trusted location",
- "mediumRisk": "Medium",
- "memberSelectionCommandRemove": "Remove",
- "menuItemClaimProviderControls": "Custom controls (Preview)",
- "menuItemClassicPolicies": "Classic policies",
- "menuItemInsightsAndReporting": "Insights and reporting",
- "menuItemManage": "Manage",
- "menuItemNamedLocationsPreview": "Named locations (Preview)",
- "menuItemNamedNetworks": "Named locations",
- "menuItemPolicies": "Policies",
- "menuItemTermsOfUse": "Terms of use",
- "modifiedTimeLabel": "Modified time",
- "monday": "Monday",
- "nameLabel": "Name",
- "namedLocationCountryInfoBanner": "Only IPv4 addresses are mapped to countries/regions. IPv6 addresses are included in unknown countries/regions.",
- "namedLocationTypeCountry": "Countries/Regions",
- "namedLocationTypeLabel": "Define the location using:",
- "namedLocationUpsellBanner": "This view has been deprecated. Go to the new and improved 'Named locations' view.",
- "namedLocationsHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/namedlocationupdate",
- "namedNetworkAddIpRanges": "Add a new IP range (ex: 40.77.182.32/27)",
- "namedNetworkCountryNeeded": "You need to select at least one country",
- "namedNetworkDeleteCommand": "Delete",
- "namedNetworkDeleteDescription": "Are you sure you want to delete '{0}'? This action cannot be undone.",
- "namedNetworkDeleteTitle": "Are you sure?",
- "namedNetworkDownloadIpRange": "Download",
- "namedNetworkInvalidRange": "Value must be a valid IP range.",
- "namedNetworkIpRangeNeeded": "You need at least one valid IP range",
- "namedNetworkIpRangesDescriptionContent": "Configure your organization's IP ranges",
- "namedNetworkIpRangesTab": "IP ranges",
- "namedNetworkListAdd": "New location",
- "namedNetworkListConfigureTrustedIps": "Configure MFA trusted IPs",
- "namedNetworkNameDescription": "Example: 'Redmond office'",
- "namedNetworkNameInvalid": "The supplied name is invalid.",
- "namedNetworkNameRequired": "You must supply a name for this location.",
- "namedNetworkNoIpRanges": "No IP ranges",
- "namedNetworkNotificationCreateDescription": "Creating location named '{0}'",
- "namedNetworkNotificationCreateFailedDescription": "Creating location '{0}' failed. Please try again later.",
- "namedNetworkNotificationCreateFailedTitle": "Failed to create location",
- "namedNetworkNotificationCreateSuccessDescription": "Created location named '{0}'",
- "namedNetworkNotificationCreateSuccessTitle": "Created '{0}'",
- "namedNetworkNotificationCreateTitle": "Creating '{0}'",
- "namedNetworkNotificationDeleteDescription": "Deleting location named '{0}'",
- "namedNetworkNotificationDeleteFailedDescription": "Deleting location '{0}' failed. Please try again later.",
- "namedNetworkNotificationDeleteFailedTitle": "Failed to Delete location",
- "namedNetworkNotificationDeleteSuccessDescription": "Deleted location named '{0}'",
- "namedNetworkNotificationDeleteSuccessTitle": "Deleted '{0}'",
- "namedNetworkNotificationDeleteTitle": "Deleting '{0}'",
- "namedNetworkNotificationUpdateDescription": "Updating location named '{0}'",
- "namedNetworkNotificationUpdateFailedDescription": "Updating location '{0}' failed. Please try again later.",
- "namedNetworkNotificationUpdateFailedTitle": "Failed to Update location",
- "namedNetworkNotificationUpdateSuccessDescription": "Updated location named '{0}'",
- "namedNetworkNotificationUpdateSuccessTitle": "Updated '{0}'",
- "namedNetworkNotificationUpdateTitle": "Updating '{0}'",
- "namedNetworkSearchPlaceholder": "Search locations.",
- "namedNetworkUploadFailedDescription": "There was an error parsing the supplied file. Please make sure to upload a plain-text file with each line in the CIDR format.",
- "namedNetworkUploadFailedTitle": "Failed to parse '{0}'",
- "namedNetworkUploadInProgressDescription": "Attempting to parse valid CIDR values from '{0}'.",
- "namedNetworkUploadInProgressTitle": "Parsing '{0}'",
- "namedNetworkUploadInvalidDescription": "'{0}' is either too large or in an invalid format.",
- "namedNetworkUploadInvalidTitle": "'{0}' Invalid",
- "namedNetworkUploadIpRange": "Upload",
- "namedNetworkUploadSuccessDescription": "{0} lines analyzed. {1} in a bad format. {2} skipped.",
- "namedNetworkUploadSuccessTitle": "Finished parsing '{0}'",
- "namedNetworksAdd": "New named location",
- "namedNetworksConditionHelpDescription": "Control user access based on their physical location.\n[Learn more][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
- "namedNetworksExcludeLabel": "{0} and {1} excluded",
- "namedNetworksHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
- "namedNetworksIncludeLabel": "{0} included",
- "namedNetworksNone": "No named locations found.",
- "namedNetworksTitle": "Configure locations",
- "namednetworkExceedingSizeErrorBladeTitle": "Error details",
- "namednetworkExceedingSizeErrorDetailText": "Click here for more details.",
- "namednetworkExceedingSizeErrorMessage": "You have exceeded the maximum allowed storage for named locations. Try again with a shorter list. Click here to view more details.",
- "newCertName": "new cert",
- "noPolicyRowMessage": "No policies",
- "noSPSelected": "No service principal selected",
- "noUpdatePermissionMessage": "You don't have permissions to update these settings. Please contact your global administrator to get access.",
- "noUserSelected": "No user selected",
- "noneRisk": "No risk",
- "office365Description": "These apps include Microsoft Flow, Microsoft Forms, Microsoft Teams, Office 365 Exchange Online, Office 365 SharePoint Online, Office 365 Yammer, and others.",
- "office365InfoBox": "At least one of the apps selected is part of Office 365. We recommend setting the policy on the Office 365 app instead.",
- "oneUserSelected": "1 user selected",
- "onlyGlobalAdminsCanSaveThisPolicyConfig": "Only global administrators can save this policy.",
- "or": "{0} OR {1} ",
- "pickerDoneCommand": "Done",
- "policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like Cloud apps, Sign-in risk, and Device platforms with Azure AD Premium",
- "policiesBladeTitle": "Policies",
- "policiesBladeTitleWithAppName": "Policies: {0}",
- "policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked sign-on attribute.",
- "policiesHitMaxLimitStatusBarMessage": "You've reached the maximum number of policies for this tenant. Delete some policies before creating more.",
- "policyAssignmentsSection": "Assignments",
- "policyBlockAllInfoBox": "The configured policy will block all users, so it is not supported. Review the assignments and controls. Exclude the current user {0}, if you would like to save this policy.",
- "policyCloudAppsDisplayTextAllApp": "All apps",
- "policyCloudAppsLabel": "Cloud apps",
- "policyConditionClientAppDescription": "Software the user is employing to access the cloud app. For example, 'Browser'",
- "policyConditionClientAppV2Description": "Software the user is employing to access the cloud app. For example, 'Browser'",
- "policyConditionDevicePlatform": "Device platforms",
- "policyConditionDevicePlatformDescription": "Platform the user is signing in from. For example, 'iOS'",
- "policyConditionLocation": "Locations",
- "policyConditionLocationDescription": "Location (determined using IP address range) the user is signing in from",
- "policyConditionSigninRisk": "Sign-in risk",
- "policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Azure AD Premium 2 license.",
- "policyConditionUserRisk": "User risk",
- "policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
- "policyConditioniClientApp": "Client apps",
- "policyConditioniClientAppV2": "Client apps (Preview)",
- "policyControlAllowAccessDisplayedName": "Grant access",
- "policyControlAuthenticationStrengthDisplayedName": "Require authentication strength (Preview)",
- "policyControlBladeTitle": "Grant",
- "policyControlBlockAccessDisplayedName": "Block access",
- "policyControlCompliantDeviceDisplayedName": "Require device to be marked as compliant",
- "policyControlContentDescription": "Control access enforcement to block or grant access.",
- "policyControlInfoBallonText": "Block access or select additional requirements which need to be satisfied to allow access",
- "policyControlMfaChallengeDisplayedName": "Require multi-factor authentication",
- "policyControlRequireCompliantAppDisplayedName": "Require app protection policy",
- "policyControlRequireDomainJoinedDisplayedName": "Require Hybrid Azure AD joined device",
- "policyControlRequireMamDisplayedName": "Require approved client app",
- "policyControlRequiredPasswordChangeDisplayedName": "Require password change",
- "policyControlSelectAuthStrength": "Require authentication strength",
- "policyControlsNoControlsSelected": "0 controls selected",
- "policyControlsSection": "Access controls",
- "policyCreatBladeTitle": "New",
- "policyCreateButton": "Create",
- "policyCreateFailedMessage": "Error: {0}",
- "policyCreateFailedTitle": "Failed to create '{0}'",
- "policyCreateInProgressTitle": "Creating '{0}'",
- "policyCreateSuccessMessage": "Successfully created '{0}'. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
- "policyCreateSuccessTitle": "Successfully created '{0}'",
- "policyDeleteConfirmation": "Are you sure you want to delete '{0}'? This action cannot be undone.",
- "policyDeleteFailTitle": "Failed to delete '{0}'",
- "policyDeleteInProgressTitle": "Deleting '{0}'",
- "policyDeleteSuccessTitle": "Successfully deleted '{0}'",
- "policyEnforceLabel": "Enable policy",
- "policyErrorCannotSetSigninRisk": "You don't have permission to save a policy with a sign-in risk condition.",
- "policyErrorNoPermission": "You don't have permission to save policy. Contact your global admin.",
- "policyErrorUnknown": "Something went wrong, please try again later.",
- "policyFallbackWarningMessage": "Failure to create or update '{0}' using MS Graph resulting in a fallback to AD Graph. Please investigate the following scenario as there is most likely a bug when calling the policy endpoint for MS Graph with an incompatible condition.",
- "policyFallbackWarningTitle": "Creating or updating '{0}' partially successful",
- "policyNameCannotBeEmpty": "Policy name can't be empty",
- "policyNameDevice": "Device policy",
- "policyNameFormat": "[{0}] {1}",
- "policyNameMam": "Mobile App Management policy",
- "policyNameMfaLocation": "MFA and location policy",
- "policyNamePlaceholderText": "Example: 'Device compliance app policy'",
- "policyNameTooLongError": "Policy name is too long. Maximum 256 characters",
- "policyOff": "Off",
- "policyOn": "On",
- "policyReportOnly": "Report-only",
- "policyReviewSection": "Review",
- "policySaveButton": "Save",
- "policyStatusIconDescription": "Policy is Enabled",
- "policyStatusIconEnabled": "Enabled status icon",
- "policyTemplateName1": "Use app enforced restrictions for {0} browser access",
- "policyTemplateName2": "Allow {0} access only on managed devices",
- "policyTemplateName3": "Policy migrated from Continuous Access Evaluation settings",
- "policyTriggerRiskSpecific": "Select specific risk level",
- "policyTriggersInfoBalloonText": "Conditions which define when the policy will apply. For example, 'location'",
- "policyTriggersNoConditionsSelected": "0 conditions selected",
- "policyTriggersSelectorLabel": "Conditions",
- "policyUpdateFailedMessage": "Error: {0}",
- "policyUpdateFailedTitle": "Failed to update {0}",
- "policyUpdateInProgressTitle": "Updating {0}",
- "policyUpdateSuccessMessage": "Successfully updated {0}. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
- "policyUpdateSuccessTitle": "Successfully updated {0}",
- "primaryCol": "Primary",
- "privateLinkLabel": "Azure AD Private Link",
- "reportOnlyInfoBox": "Report-only mode: Policies are evaluated and logged at sign-in but do not impact users.",
- "requireAllControlsText": "Require all the selected controls",
- "requireCompliantDevice": "Require compliant device",
- "requireDomainJoined": "Require domain-joined device",
- "requireMFA": "Require multi-factor authentication ",
- "requireOneControlText": "Require one of the selected controls",
- "resetFilters": "Reset filters",
- "sPRequired": "Service principal required",
- "sPSelectorInfoBalloon": "User or Service Principal you want to test",
- "saturday": "Saturday",
- "searchTextTooLongError": "The search text is too long. Maximum 256 characters",
- "securityDefaultsPolicyName": "Security defaults",
- "securityDefaultsTextMessage": "Security defaults must be disabled to enable Conditional Access policy.",
- "securityDefaultsWarningMessage": "It looks like you're about to manage your organization's security configurations. That's great! You must first disable Security defaults before enabling a Conditional Access policy.",
- "selectDevicePlatforms": "Select device platforms",
- "selectNamedNetworksSubtitle": "",
- "selectNamedNetworksTitle": "Select locations",
- "selectedSP": "Selected Service Principal",
- "servicePrincipalDataGridAria": "List of available service principals",
- "servicePrincipalDropDownLabel": "What does this policy apply to?",
- "servicePrincipalInfoBox": "Some conditions are not available due to '{0}' selection in policy assignment",
- "servicePrincipalRadioAll": "All owned service principals",
- "servicePrincipalRadioSelect": "Select service principals",
- "servicePrincipalSelectionsAria": "Selected service principals grid",
- "servicePrincipalSelectorAria": "List of chosen service principals",
- "servicePrincipalSelectorMultiple": "{0} service principals selected",
- "servicePrincipalSelectorSingle": "1 service principal selected",
- "servicePrincipalSpecificInc": "Specific service principals included",
- "servicePrincipals": "Service principals",
- "sessionControlBladeTitle": "Session",
- "sessionControlDescriptionContent": "Control access based on session controls to enable limited experiences within specific cloud applications.",
- "sessionControlDisableInfo": "This control only works with supported apps. Currently, Office 365, Exchange Online, and SharePoint Online are the only cloud apps that support app enforced restrictions. Click here to learn more.",
- "sessionControlInfoBallonText": "Session controls enable limited experience within a cloud app.",
- "sessionControls": "Session controls",
- "sessionControlsAppEnforcedLabel": "Use app enforced restrictions",
- "sessionControlsCasLabel": "Use Conditional Access App Control",
- "sessionControlsSecureSignInLabel": "Require token binding",
- "sharepointAppName": "SharePoint",
- "signinRiskDescription": "Select the sign-in risk level this policy will apply to",
- "signinRiskInclude": "{0} included",
- "signinRiskTriggerDescriptionContent": "Select the sign-in risk level",
- "singleTenantServicePrincipalInfoBallonText": "Policy only applies to single tenant service principals owned by your organization. Click here to learn more ",
- "specificSigninRiskLevelsOption": "Select specific sign-in risk levels",
- "specificUsersExcluded": "specific users excluded",
- "specificUsersIncluded": "Specific users included",
- "specificUsersIncludedAndExcluded": "Specific users excluded and included",
- "startDatePickerLabel": "Starts",
- "startFreeTrial": "Start a free trial",
- "startTimePickerLabel": "Start time",
- "sunday": "Sunday",
- "testButton": "What If",
- "thumbprintCol": "Thumbprint",
- "thursday": "Thursday",
- "timeConditionAllTimesLabel": "Any time",
- "timeConditionIntroText": "Configure the time this policy will apply to",
- "timeConditionSelectorInfoBallonContent": "When the user is signing in. For example, \"Wednesday 9am-5pm PST\"",
- "timeConditionSelectorLabel": "Time (Preview)",
- "timeConditionSpecificLabel": "Specific times",
- "timeSelectorAllTimesText": "Any time",
- "timeSelectorSpecificTimesText": "Specific times configured",
- "timeZoneDropdownInfoBalloonContent": "Select a time zone that defines the time range. This policy applies to users in all time zones. For example, 'Wednesday 9am - 5pm' for one user would be 'Wednesday 10am - 6pm' for a user in a different time zone.",
- "timeZoneDropdownLabel": "Time zone",
- "timeZoneDropdownPlaceholderText": "Select a time zone",
- "tooManyPoliciesDescription": "Only first 50 policies are being displayed now, click here to view all policies",
- "tooManyPoliciesTitle": "More than 50 policies found",
- "trustedLocationStatusIconDescription": "Location is trusted",
- "trustedLocationStatusIconEnabled": "Trusted status icon",
- "tuesday": "Tuesday",
- "uploadInBadState": "Unable to upload the specified file.",
- "upsellAppsDescription": "Require multi-factor authentication for sensitive applications all the time or only from outside the company network.",
- "upsellAppsTitle": "Secure applications",
- "upsellBannerText": "Get a free Premium trial to use this feature",
- "upsellDataDescription": "Require device to be marked as compliant or Hybrid Azure AD joined to allow access to company resources.",
- "upsellDataTitle": "Secure data",
- "upsellDescription": "Conditional Access provides the control and protection you need to keep your corporate data secure, while giving your people an experience that allows them to do their best work from any device. For instance, you can restrict access from outside the company network or restrict access to devices which meet the compliance policies.",
- "upsellRiskDescription": "Require multi-factor authentication for risk events detected by Microsoft's machine learning system.",
- "upsellRiskTitle": "Protect against risk",
- "upsellTitle": "Conditional Access",
- "upsellWhyTitle": "Why use Conditional Access?",
- "userAppNoneOption": "None",
- "userNamePlaceholderText": "Enter User Name",
- "userNotSetSeletorLabel": "0 users and groups selected",
- "userOnlySelectionBladeExcludeDescription": "Select the users to exempt from the policy",
- "userOrGroupSelectionCountDiffBannerText": "{0} configured in this policy have been deleted from the directory, but this doesn't affect the other users and groups in the policy. The next time you update the policy, the deleted users and/or groups will be automatically removed.",
- "userOrSPNotSetSelectorLabel": "0 users or workload identities selected",
- "userOrSPSelectionBladeTitle": "Users or workload identities",
- "userOrSPSelectorInfoBallonText": "Identities in the directory that the policy applies to, including users, groups, and service principals",
- "userRequired": "User Required",
- "userRiskErrorBox": "\"User risk\" condition must be selected when \"Require password change\" grant is selected",
- "userSPRequired": "User or Service principal required",
- "userSPSelectorTitle": "User or Workload identity",
- "userSelectionBladeAllUsersAndGroups": "All users and groups",
- "userSelectionBladeExcludeDescription": "Select the users and groups to exempt from the policy",
- "userSelectionBladeExcludeTabTitle": "Exclude",
- "userSelectionBladeExcludedSelectorTitle": "Select excluded users",
- "userSelectionBladeIncludeDescription": "Select the users this policy will apply to",
- "userSelectionBladeIncludeTabTitle": "Include",
- "userSelectionBladeIncludedSelectorTitle": "Select",
- "userSelectionBladeSelectUsers": "Select users",
- "userSelectionBladeSelectedUsers": "Select users and groups",
- "userSelectionBladeTitle": "Users and groups",
- "userSelectorBladeTitle": "Users",
- "userSelectorExcluded": "{0} excluded",
- "userSelectorGroupPlural": "{0} groups",
- "userSelectorGroupSingular": "1 group",
- "userSelectorIncluded": "{0} included",
- "userSelectorInfoBallonText": "Users and groups in the directory that the policy applies to. For example, 'Pilot group'",
- "userSelectorSelected": "{0} selected",
- "userSelectorTitle": "User",
- "userSelectorUserAndGroup": "{0}, {1}",
- "userSelectorUserPlural": "{0} users",
- "userSelectorUserSingular": "1 user",
- "userSelectorWithExclusion": "{0} and {1}",
- "usersGroupsLabel": "Users and groups",
- "viewApprovedAppsText": "See list of approved client apps",
- "viewCompliantAppsText": "See list of policy protected client apps",
- "vpnBladeTitle": "VPN connectivity",
- "vpnCertCreateFailedMessage": "Error: {0}",
- "vpnCertCreateFailedTitle": "Failed to create {0}",
- "vpnCertCreateInProgressTitle": "Creating {0}",
- "vpnCertCreateSuccessMessage": "Successfully created {0}.",
- "vpnCertCreateSuccessTitle": "Successfully created {0}",
- "vpnCertNoRowsMessage": "No VPN certificates found",
- "vpnCertUpdateFailedMessage": "Error: {0}",
- "vpnCertUpdateFailedTitle": "Failed to update {0}",
- "vpnCertUpdateInProgressTitle": "Updating {0}",
- "vpnCertUpdateSuccessMessage": "Successfully updated {0}.",
- "vpnCertUpdateSuccessTitle": "Successfully updated {0}",
- "vpnFeatureInfo": "For more information on VPN connectivity and Conditional Access, click here.",
- "vpnFeatureWarning": "Once a VPN certificate is created in the Azure portal, Azure AD will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
- "vpnMenuText": "VPN connectivity",
- "vpncertDropdownDefaultOption": "Duration",
- "vpncertDropdownInfoBalloonContent": "Select the duration for the cert you want to create",
- "vpncertDropdownLabel": "Select duration",
- "vpncertDropdownOneyearOption": "1 year",
- "vpncertDropdownThreeyearOption": "3 years",
- "vpncertDropdownTwoyearOption": "2 years",
- "wednesday": "Wednesday",
- "whatIfAppEnforcedControl": "Use app enforced restrictions",
- "whatIfBladeDescription": "Test the impact of Conditional Access on a user when signing in under certain conditions.",
- "whatIfBladeTitle": "What If",
- "whatIfClassicPoliciesWarning": "Classic policies are not evaluated by this tool.",
- "whatIfClientAppInfo": "The client app the user is signing in from. For example, 'Browser'.",
- "whatIfCountry": "Country",
- "whatIfCountryInfo": "The country the user is signing in from.",
- "whatIfDevicePlatformInfo": "The device platform the user is signing in from.",
- "whatIfDeviceStateInfo": "The device state the user is signing in from",
- "whatIfEnterIpAddress": "Enter IP address (ex: 40.77.182.32)",
- "whatIfErrorInvalidIpAddress": "An invalid IP address was specified.",
- "whatIfEvaResultApplication": "Cloud apps",
- "whatIfEvaResultClientApps": "Client app",
- "whatIfEvaResultDevicePlatform": "Device platform",
- "whatIfEvaResultEmptyPolicy": "Empty policy",
- "whatIfEvaResultInvalidCondition": "Invalid condition",
- "whatIfEvaResultInvalidPolicy": "Invalid policy",
- "whatIfEvaResultLocation": "Location",
- "whatIfEvaResultNotEnoughInformation": "Not enough information",
- "whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
- "whatIfEvaResultSignInRisk": "Sign-in risk",
- "whatIfEvaResultUsers": "Users and groups",
- "whatIfIpAddress": "IP address",
- "whatIfIpAddressInfo": "IP address the user is signing in from.",
- "whatIfIpCountryInfoBoxText": "If using an IP address or Country, both fields will be required and should correctly map together.",
- "whatIfPolicyAppliesTab": "Policies that will apply",
- "whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
- "whatIfReasons": "Reasons why this policy will not apply",
- "whatIfSelectClientApp": "Select a client app...",
- "whatIfSelectCountry": "Select country...",
- "whatIfSelectDevicePlatform": "Select device platform...",
- "whatIfSelectPrivateLink": "Select private link...",
- "whatIfSelectServicePrincipalRisk": "Select service principal risk...",
- "whatIfSelectSignInRisk": "Select sign-in risk...",
- "whatIfSelectType": "Select identity type",
- "whatIfSelectUserRisk": "Select user risk...",
- "whatIfServicePrincipalRiskInfo": "The risk level associated with the service principal",
- "whatIfSignInRisk": "Sign-in risk",
- "whatIfSignInRiskInfo": "The risk level associated with the sign-in",
- "whatIfUnknownAreas": "Unknown Areas",
- "whatIfUserPickerLabel": "Selected user",
- "whatIfUserPickerNoRowsLabel": "No user or service principal selected",
- "whatIfUserRiskInfo": "The risk level associated with the user",
- "whatIfUserSelectorInfo": "User in the directory that you want to test",
- "windows365InfoBox": "Selecting Windows 365 will affect connections to Cloud PCs and Azure Virtual Desktop session hosts. Click here to learn more.",
- "windowsDisplayName": "Windows",
- "windowsPhoneDisplayName": "Windows Phone",
- "workloadIdentities": "Workload identities (Preview)",
- "workloadIdentity": "Workload identity"
- },
- "ApplicableDeviceType": {
- "iPad": "iPad",
- "iPhoneAndIPod": "iPhone and iPod"
- },
- "TAPSettings": {
- "AllowedDataIngestionLocations": {
- "label": "Allow users to open data from selected services",
- "tooltip": "Select the application storage services users can open data from. All other services are blocked. Selecting no services will prevent users from opening data."
- },
- "AndroidBackup": {
- "label": "Backup org data to Android backup services",
- "tooltip": "Select {0} to prevent backup of org data to Android backup services. \nSelect {1} to permit backup of org data to Android backup services. \nPersonal or unmanaged data is not affected."
- },
- "AndroidBiometricAuthentication": {
- "label": "Biometrics instead of PIN for access",
- "tooltip": "Choose which android authentication methods people can use, if any, in place of an app PIN."
- },
- "AndroidFingerprint": {
- "label": "Fingerprint instead of PIN for access (Android 6.0+)",
- "tooltip": "Android OS uses fingerprint scans to authenticate Android-device users. This feature supports the native biometric controls on Android devices. OEM-specific biometric settings, like Samsung Pass, are not supported. If allowed, native biometric controls must be used to access the app on a capable device."
- },
- "AndroidOverrideFingerprint": {
- "label": "Override fingerprint with PIN after timeout"
- },
- "AppPIN": {
- "label": "App PIN when device PIN is set",
- "tooltip": "If not required, an app PIN does not need to be used to access the app if the device PIN is set on an MDM enrolled device.
\n\nNote: Intune cannot detect device enrollment with a third-party EMM solution on Android."
- },
- "BlockDataIngestionIntoOrganizationDocuments": {
- "label": "Open data into Org documents",
- "tooltip1": "Select Block to disable the use of the Open option or other options to share data between accounts in this app. Select Allow if you want to allow the use of Open and other options to share data between accounts in this app.",
- "tooltip2": "When set to Block, you can configure the following setting, Allow user to open data from selected services, to specify which services are allowed for Org data locations.",
- "tooltip3": "Note: This setting is only enforced if the setting \"Receive data from other apps\" is set to \"Policy managed apps\".
\nNote: This setting does not apply to all applications. For more information see {0}.",
- "tooltip4": "Note: This setting is only enforced if the setting \"Receive data from other apps\" is set to \"Policy managed apps\".
\nNote: This setting does not apply to all applications. For more information see {0} or {0}."
- },
- "ConnectToVpnOnLaunch": {
- "label": "Start Microsoft Tunnel connection on app-launch",
- "tooltip": "Allow connection to VPN when app is launch"
- },
- "CredentialsForAccess": {
- "label": "Work or school account credentials for access",
- "tooltip": "If required, work or school credentials must be used to access the policy-managed app. If PIN or biometric methods also required for access to the app, the work or school account credentials will be required on top of those prompts."
- },
- "CustomBrowserDisplayName": {
- "label": "Unmanaged Browser Name",
- "tooltip": "Enter the application name for browser associated with the \"Unmanaged Browser ID\". This name will be displayed to users if the specified browser is not installed."
- },
- "CustomBrowserPackageId": {
- "label": "Unmanaged Browser ID",
- "tooltip": "Enter the application ID for a single browser. Web content (http/s) from policy managed applications will open in the specified browser."
- },
- "CustomBrowserProtocol": {
- "label": "Unmanaged browser protocol",
- "tooltip": "Enter the protocol for a single unmanaged browser. Web content (http/s) from policy managed applications will open in any app that supports this protocol.
\n \nNote: Include only the protocol prefix. If your browser requires links of the form \"mybrowser://www.microsoft.com\", enter \"mybrowser\".
"
- },
- "CustomDialerAppDisplayName": {
- "label": "Dialer App Name"
- },
- "CustomDialerAppPackageId": {
- "label": "Dialer App Package ID"
- },
- "CustomDialerAppProtocol": {
- "label": "Dialer App URL Scheme"
- },
- "Cutcopypaste": {
- "label": "Restrict cut, copy, and paste between other apps",
- "tooltip": "Cut, copy, and paste data between your app and other approved apps installed on the device. Choose to block these actions completely between apps, allow these actions for use with any app, or restrict use to apps that your organization manages.
\n\nPolicy-managed apps with paste in gives you the option to accept incoming content pasted from another app. However, it blocks users from sharing content outwardly, unless sharing with a managed app.
"
- },
- "DialerRestrictionLevel": {
- "iosTooltip": "Typically, when a user selects a hyperlinked phone number in an app, a dialer app will open with the phone number prepopulated and ready to call. For this setting, choose how to handle this type of content transfer when it's initiated from a policy-managed app. Additional steps may be necessary in order for this setting to take effect. First, verify that tel and telprompt have been removed from the Select apps to exempt list. Then, ensure the application is using a newer version of Intune SDK (Version 12.7.0+).",
- "label": "Transfer telecommunication data to",
- "tooltip": "Typically, when a user selects a hyperlinked phone number in an app, a dialer app will open with the phone number prepopulated and ready to call. For this setting, choose how to handle this type of content transfer when it's initiated from a policy-managed app."
- },
- "EncryptData": {
- "label": "Encrypt org data",
- "link": "https://docs.microsoft.com/en-us/intune/app-protection-policy-settings-android#data-relocation-settings",
- "tooltip": "Select {0} to enforce encrypting org data with Intune app layer encryption.\n
\nSelect {1} to not enforce encrypting org data with Intune app layer encryption.\n\n
\nNote: For more information on Intune app layer encryption, see {2}."
- },
- "EncryptDataAndroid": {
- "tooltip": "Choose Require to enable encryption of work or school data in this app. Intune uses an OpenSSL, 256-bit AES encryption scheme along with the Android Keystore system to securely encrypt app data. Data is encrypted synchronously during file I/O tasks. Content on the device storage is always encrypted. The SDK will continue to provide support of 128-bit keys for compatibility with content and apps that use older SDK versions.
\n\nThe encryption method is FIPS 140-2 compliant.
"
- },
- "EncryptDataIos": {
- "tooltip1": "Choose Require to enable encryption of work or school data in this app. Intune enforces iOS/iPadOS device encryption to protect app data while the device is locked. Applications may optionally encrypt app data using Intune APP SDK encryption. Intune APP SDK uses iOS/iPadOS cryptography methods to apply 128-bit AES encryption to app data.",
- "tooltip2": "When you enable this setting, the user may be required to set up and use a PIN to access their device. If there's no device PIN and encryption is required, the user is prompted to set a PIN with the message \"Your organization has required you to first enable a device PIN to access this app.\"",
- "tooltip3": "Go to the official Apple documentation to see which iOS encryption modules are FIPS 140-2 compliant or pending FIPS 140-2 compliance."
- },
- "EncryptDataOnEnrolledDevices": {
- "label": "Encrypt org data on enrolled devices",
- "tooltip": "Select {0} to enforce encrypting org data with Intune app layer encryption on all devices.
\n\nSelect {1} to not enforce encrypting org data with Intune app layer encryption on enrolled devices."
- },
- "IOSBackup": {
- "label": "Backup org data to iTunes and iCloud backups",
- "tooltip": "Select {0} to prevent backup of org data to iTunes or iCloud. \nSelect {1} to permit backup of org data to iTunes or iCloud. \nPersonal or unmanaged data is not affected."
- },
- "IOSFaceID": {
- "label": "Face ID instead of PIN for access (iOS 11+/iPadOS)",
- "tooltip": "Face ID uses facial recognition technology to authenticate users on iOS/iPadOS devices. Intune calls the LocalAuthentication API to authenticate users using Face ID. If allowed, Face ID must be used to access the app on a Face ID capable device."
- },
- "IOSOverrideTouchId": {
- "label": "Override biometrics with PIN after timeout"
- },
- "IOSTouchId": {
- "label": "Touch ID instead of PIN for access (iOS 8+/iPadOS)",
- "tooltip": "Touch ID uses fingerprint recognition technology to authenticate users on iOS devices. Intune calls the LocalAuthentication API to authenticate users using Touch ID. If allowed, Touch ID must be used to access the app on a Touch ID capable device."
- },
- "NotificationRestriction": {
- "label": "Org data notifications",
- "tooltip": "Select one of the following options to specify how notifications for org accounts are shown for this app and any connected devices such as wearables:
\n{0}: Do not share notifications.
\n{1}: Do not share org data in notifications. If not supported by the application, notifications are blocked.
\n{2}: Share all notifications.
\n Android only:\n Note: This setting does not apply to all applications. For more information see {3}
\n \n iOS only:\nNote: This setting does not apply to all applications. For more information see {4}
"
- },
- "OpenLinksManagedBrowser": {
- "label": "Restrict web content transfer with other apps",
- "tooltip": "Select one of the following options to specify the apps that this app can open web content in:
\nEdge: Allow web content to open only in Edge
\nUnmanaged browser: Allow web content to open only in the unmanaged browser defined by \"Unmanaged browser protocol\" setting
\nAny app: Allow web links in any app
"
- },
- "OverrideBiometric": {
- "tooltip": "If required, depending on the timeout (minutes of inactivity), a PIN prompt will override biometric prompts. If this timeout value is not met, the biometric prompt will continue to show. This timeout value should be greater than the value specified under 'Recheck the access requirements after (minutes of inactivity)'. "
- },
- "PinAccess": {
- "label": "PIN for access",
- "tooltip": "If required, a PIN must be used to access the policy-managed app. Users must create an access PIN the first time that they open the app from a work or school account."
- },
- "PinLength": {
- "label": "Select minimum PIN length",
- "tooltip": "This setting specifies the minimum number of digits of a PIN."
- },
- "PinType": {
- "label": "PIN type",
- "tooltip": "Numeric PINs are made up of all numbers. Passcodes are made up of alphanumeric characters and special characters. "
- },
- "Printing": {
- "label": "Printing org data",
- "tooltip": "If blocked, the app cannot print protected data."
- },
- "ReceiveData": {
- "label": "Receive data from other apps",
- "tooltip": "Select one of the following options to specify the apps that this app can receive data from:
\n\nNone: Do not allow receiving data in org documents or accounts from any app
\n\nPolicy managed apps: Only allow receiving data in org documents or accounts from other policy managed apps\n
\nAny app with incoming org data: Allow receiving data in org documents or accounts from from any app and treat all incoming data without an user account as org data
\n\nAll apps: Allow receiving data in org documents or accounts from any app"
- },
- "RecheckAccessAfter": {
- "label": "Recheck the access requirements after (minutes of inactivity)\n\n",
- "tooltip": "If the policy-managed app is inactive for longer than the number of minutes of inactivity specified, the app will prompt the access requirements (i.e PIN, conditional launch settings) to be rechecked after the app is launched."
- },
- "RestrictKeyboards": {
- "duplicatePackageError": "The package ID must be unique.",
- "invalidPackageError": "Invalid package ID",
- "label": "Approved keyboards",
- "select": "Select keyboards to approve",
- "subtitle": "Add all keyboards and input methods that users are allowed to use with targeted apps. Enter the keyboard name as you would like it to appear to the end user.",
- "title": "Add approved keyboards",
- "toolTip": "Select Require and then specify a list of approved keyboards for this policy. Learn more."
- },
- "SaveData": {
- "label": "Save copies of org data",
- "tooltip": "Select {0} to prevent saving a copy of org data to a new location, other than the selected storage services, using \"Save As\".\n Select {1} to permit saving a copy of org data to a new location using \"Save As\".
\n\n\nNote: This setting does not apply to all applications. For more information see {2}.\n"
- },
- "SaveDataToSelected": {
- "label": "Allow user to save copies to selected services",
- "tooltip": "Select the storage services users can save copies of org data to. All other services are blocked. Selecting no services will prevent users from saving a copy of org data."
- },
- "ScreenCaptureAndAndroidAssistant": {
- "label": "Screen capture and Google Assistant\n",
- "tooltip": "If blocked, both screen capture and Google Assistant app scanning capabilities will be disabled when using the policy-managed app. This feature supports the usual Google Assistant app. Third party assistants using Google's Assist API are not supported. Choosing Block will also blur the App-Switcher preview image when using the app with a work or school account."
- },
- "SendData": {
- "label": "Send org data to other apps",
- "tooltip": "Select one of the following options to specify the apps that this app can send org data to:
\n\n\nNone: Do not allow sending org data to any app
\n\n\nPolicy managed apps: Only allow sending org data to other policy managed apps
\n\n\nPolicy managed apps with OS sharing: Only allow sending org data to other policy managed apps and sending org documents to other MDM managed apps on enrolled devices
\n\n\nPolicy managed apps with Open-In/Share filtering: Only allow sending org data to other policy managed apps and filter OS Open-in/Share dialogs to only display policy managed apps\n
\n\nAll apps: Allow sending org data to any app"
- },
- "SimplePin": {
- "label": "Simple PIN",
- "tooltip": "If blocked, users may not create a simple PIN. A simple PIN is a string of consecutive or repetitive digits, such as 1234, ABCD, or 1111. Please note that blocking simple PIN of type 'Passcode' requires the passcode to have at least one number, one letter, and one special character."
- },
- "SyncContacts": {
- "label": "Sync policy managed app data with native apps or add-ins"
- },
- "ThirdPartyKeyboards": {
- "infoBox": "Keyboard restrictions will apply to all areas of an app. Personal accounts for apps that support multiple identities will be affected by this restriction. Learn more.",
- "label": "Third party keyboards"
- },
- "Timeout": {
- "label": "Timeout (minutes of inactivity)"
- },
- "Tap": {
- "numberOfDays": "Number of days",
- "pinResetAfterNumberOfDays": "PIN reset after number of days",
- "previousPinBlockCount": "Select number of previous PIN values to maintain"
- }
- },
- "WindowsFeatureUpdateProfile": {
- "Details": {
- "Description": {
- "label": "Description"
- },
- "FeatureDeploymentSettings": {
- "header": "Feature deployment settings"
- },
- "FeatureUpdateVersion": {
- "infoballoon": "This feature cannot downgrade a device.",
- "label": "Feature update to deploy"
- },
- "GradualRolloutEndDate": {
- "label": "Final group availability"
- },
- "GradualRolloutInterval": {
- "label": "Days between groups"
- },
- "GradualRolloutStartDate": {
- "label": "First group availability"
- },
- "Name": {
- "label": "Name"
- },
- "RolloutOptions": {
- "label": "Rollout options"
- },
- "RolloutSettings": {
- "header": "When would you like to make the update available in Windows Update?"
- },
- "ScopeSettings": {
- "header": "Configure scope tags for this policy."
- },
- "StartDateOnlyStartDate": {
- "label": "First available date"
- },
- "bladeTitle": "Feature update deployments",
- "deploymentSettingsTitle": "Deployment settings",
- "loadError": "Loading failed!",
- "windows11EULA": "By selecting this Feature update to deploy you are agreeing that when applying this operating system to a device either (1) the applicable Windows license was purchased though volume licensing, or (2) that you are authorized to bind your organization and are accepting on its behalf the relevant Microsoft Software License Terms to be found here {0}."
- },
- "Notifications": {
- "deploymentSaved": "\"{0}\" has been saved.",
- "newFeatureUpdateDeploymentCreated": "New feature update deployment created."
- },
- "TabName": {
- "deploymentSettings": "Deployment settings",
- "groupAssignmentSettings": "Assignments",
- "scopeSettings": "Scope tags"
- }
- },
- "OfficeUpdateChannel": {
- "current": "Current Channel",
- "deferred": "Semi-Annual Enterprise Channel",
- "firstReleaseCurrent": "Current Channel (Preview)",
- "firstReleaseDeferred": "Semi-Annual Enterprise Channel (Preview)",
- "monthlyEnterprise": "Monthly Enterprise Channel",
- "placeHolder": "Select one"
- },
- "Win32ReturnCodes": {
- "CodeTypes": {
- "failed": "Failed",
- "hardReboot": "Hard reboot",
- "retry": "Retry",
- "softReboot": "Soft reboot",
- "success": "Success"
- },
- "Columns": {
- "codeType": "Code type",
- "returnCode": "Return code"
- },
- "bladeTitle": "Return codes",
- "gridAriaLabel": "Return codes",
- "header": "Specify return codes to indicate post-installation behavior:",
- "onAddAnnounceMessage": "Return code added item {0} of {1}",
- "onDeleteSuccess": "Return code {0} deleted successfully",
- "returnCodeAlreadyUsedValidation": "Return code is already used.",
- "returnCodeMustBeIntegerValidation": "Return code should be an integer.",
- "returnCodeShouldBeAtLeast": "Return code should be at least {0}.",
- "returnCodeShouldBeAtMost": "Return code should be at most {0}.",
- "selectorLabel": "Return codes"
- },
- "SecurityTemplate": {
- "aSR": "Attack surface reduction",
- "accountProtection": "Account protection",
- "allDevices": "All devices",
- "antivirus": "Antivirus",
- "antivirusReporting": "Antivirus Reporting (Preview)",
- "conditionalAccess": "Conditional access",
- "deviceCompliance": "Device compliance",
- "diskEncryption": "Disk encryption",
- "eDR": "Endpoint detection and response",
- "firewall": "Firewall",
- "helpSupport": "Help and support",
- "setup": "Setup",
- "wdapt": "Microsoft Defender for Endpoint"
- },
- "PolicySet": {
- "appManagement": "Application management",
- "assignments": "Assignments",
- "basics": "Basics",
- "deviceEnrollment": "Device enrollment",
- "deviceManagement": "Device management",
- "scopeTags": "Scope tags",
- "appConfigurationTitle": "App configuration policies",
- "appProtectionTitle": "App protection policies",
- "appTitle": "Apps",
- "iOSAppProvisioningTitle": "iOS app provisioning profiles",
- "deviceLimitRestrictionTitle": "Device limit restrictions",
- "deviceTypeRestrictionTitle": "Device type restrictions",
- "enrollmentStatusSettingTitle": "Enrollment status pages",
- "windowsAutopilotDeploymentProfileTitle": "Windows autopilot deployment profiles",
- "deviceComplianceTitle": "Device compliance policies",
- "deviceConfigurationTitle": "Device configuration profiles",
- "powershellScriptTitle": "Powershell scripts"
- },
- "AssignmentAction": {
- "exclude": "Excluded",
- "include": "Included",
- "includeAllDevicesVirtualGroup": "Included",
- "includeAllUsersVirtualGroup": "Included"
- },
- "WindowsFeatureUpdate": {
- "EndOFSupportStatus": {
- "notSupported": "Not supported",
- "supportEnding": "Support ending",
- "supported": "Supported"
- }
- },
- "InstallIntent": {
- "available": "Available for enrolled devices",
- "availableWithoutEnrollment": "Available with or without enrollment",
- "required": "Required",
- "uninstall": "Uninstall"
- },
"OutlookAppConfig": {
"DataProtectionConfiguration": {
"header": "Data Protection configuration"
@@ -1938,307 +100,864 @@
"themesEnabledTitle": "Themes Enabled",
"themesEnabledTooltip": "Specify if the user is allowed to use a custom visual theme."
},
- "TAP": {
- "AccessRequirements": {
- "infoText": "Configure the PIN and credential requirements that users must meet to access apps in a work context."
- },
- "DataProtection": {
- "infoText": "This group includes the data loss prevention (DLP) controls, like cut, copy, paste, and save-as restrictions. These settings determine how users interact with data in the apps."
- },
- "DeviceTypes": {
- "selectOne": "Select at least one device type."
- },
- "TargetedApps": {
- "TargetToAll": {
- "label": "Target to apps on all device types"
- },
- "infoText": "Choose how you want to apply this policy to apps on different devices. Then add at least one app.",
- "selectOne": "Select at least one app to create a policy."
- }
- },
- "TACSettings": {
- "edgeSettings": "Edge configuration settings",
- "edgeWindowsDataProtectionSettings": "Edge (Windows) data protection settings - Preview",
- "edgeWindowsSettings": "Edge (Windows) configuration settings - Preview",
- "generalAppConfig": "General app configuration",
- "generalSettings": "General configuration settings",
- "outlookSMIMEConfig": "Outlook S/MIME settings",
- "outlookSettings": "Outlook configuration settings",
- "sMIME": "S/MIME"
- },
- "OfficeApplicationAdditionalType": {
- "projectProRetail": "Project Online Desktop Client",
- "visioProRetail": "Visio Online Plan 2"
- },
- "Win32Requirements": {
- "AdditionalRequirements": {
- "File": {
- "fileOrFolderToolTip": "The file or folder as the selected requirement.",
- "pathToolTip": "The complete path of the file or folder to detect.",
- "property": "Property",
- "valueToolTip": "Select a requirement value that matches the selected detection method. Date and time requirement should be entered in your local format."
- },
- "GridColumns": {
- "pathOrScript": "Path/Script",
- "type": "Type"
- },
- "Registry": {
- "keyPath": "Key path",
- "keyPathTooltip": "The full path of the registry entry containing the value as a requirement.",
- "operator": "Operator",
- "operatorTooltip": "Select the operator for the comparison.",
- "registryRequirement": "Registry key requirement",
- "registryRequirementTooltip": "Select the registry key requirement comparison.",
- "valueName": "Value name",
- "valueNameTooltip": "The name of the required registry value."
- },
- "RequirementTypeOptions": {
- "fileType": "File",
- "registry": "Registry",
- "script": "Script"
- },
- "Script": {
- "RequirementMethodOptions": {
- "boolean": "Boolean",
- "dateTime": "Date and Time",
- "float": "Floating Point",
- "integer": "Integer",
- "string": "String",
- "version": "Version"
- },
- "ScriptContent": {
- "emptyMessage": "Script content should not be empty."
- },
- "duplicateName": "Script name {0} has already been used. Please enter a different name.",
- "enforceSignatureCheck": "Enforce script signature check",
- "enforceSignatureCheckTooltip": "Select ‘Yes’ to verify that the script is signed by a trusted publisher, which will allow the script to run without warnings or prompts. The script will run unblocked. Select ‘No’ (default) to run the script with end-user confirmation, but without signature verification.",
- "loggedOnCredentials": "Run this script using the logged on credentials",
- "loggedOnCredentialsTooltip": "Run script using the signed in device credentials.",
- "operatorTooltip": "Select the operator for the requirement comparison.",
- "requirementMethod": "Select output data type",
- "requirementMethodTooltip": "Select the data type used when determining a detection match requirement.",
- "scriptFile": "Script file",
- "scriptFileTooltip": "Select a PowerShell script that will detect the presence of the app on the client. If the app is detected, the requirement process will provide a 0 value exit code and will write a string value to STDOUT.",
- "scriptName": "Script name",
- "value": "Value",
- "valueTooltip": "Select a requirement value that matches the selected detection method. Date and time requirement should be entered in your local format."
- },
- "bladeTitle": "Add a Requirement rule",
- "createRequirementHeader": "Create a requirement.",
- "header": "Configure additional requirement rules",
- "label": "Additional requirement rules",
- "noRequirementsSelectedPlaceholder": "No requirements are specified.",
- "requirementType": "Requirement type",
- "requirementTypeTooltip": "Choose the type of detection method used to determine how a requirement is validated."
- },
- "architectures": "Operating system architecture",
- "architecturesTooltip": "Choose the architectures needed to install the app.",
- "bladeTitle": "Requirements",
- "diskSpace": "Disk space required (MB)",
- "diskSpaceTooltip": "Free disk space needed on the system drive to install the app.",
- "header": "Specify the requirements that devices must meet before the app is installed:",
- "maximumTextFieldValue": "The value must be at most {0}.",
- "minimumCpuSpeed": "Minimum CPU speed required (MHz)",
- "minimumCpuSpeedTooltip": "The minimum CPU speed required to install the app.",
- "minimumLogicalProcessors": "Minimum number of logical processors required",
- "minimumLogicalProcessorsTooltip": "The minimum number of logical processors required to install the app.",
- "minimumOperatingSystem": "Minimum operating system",
- "minimumOperatingSystemTooltip": "Select the minimum operating system needed to install the app.",
- "minumumTextFieldValue": "The value must be at least {0}.",
- "physicalMemory": "Physical memory required (MB)",
- "physicalMemoryTooltip": "Physical memory (RAM) required to install the app.",
- "selectorLabel": "Requirements",
- "validNumber": "Please enter a valid number."
- },
- "ArchitectureOptions": {
- "sixtyFourBit": "64-bit",
- "thirtyTwoBit": "32-bit"
- },
- "Countries": {
- "ae": "United Arab Emirates",
- "ag": "Antigua and Barbuda",
- "ai": "Anguilla",
- "al": "Albania",
- "am": "Armenia",
- "ao": "Angola",
- "ar": "Argentina",
- "at": "Austria",
- "au": "Australia",
- "az": "Azerbaijan",
- "bb": "Barbados",
- "be": "Belgium",
- "bf": "Burkina Faso",
- "bg": "Bulgaria",
- "bh": "Bahrain",
- "bj": "Benin",
- "bm": "Bermuda",
- "bn": "Brunei",
- "bo": "Bolivia",
- "br": "Brazil",
- "bs": "Bahamas",
- "bt": "Bhutan",
- "bw": "Botswana",
- "by": "Belarus",
- "bz": "Belize",
- "ca": "Canada",
- "cg": "Republic Of Congo",
- "ch": "Switzerland",
- "cl": "Chile",
- "cn": "China",
- "co": "Colombia",
- "cr": "Costa Rica",
- "cv": "Cape Verde",
- "cy": "Cyprus",
- "cz": "Czech Republic",
- "de": "Germany",
- "dk": "Denmark",
- "dm": "Dominica",
- "do": "Dominican Republic",
- "dz": "Algeria",
- "ec": "Ecuador",
- "ee": "Estonia",
- "eg": "Egypt",
- "es": "Spain",
- "fi": "Finland",
- "fj": "Fiji",
- "fm": "Federated States Of Micronesia",
- "fr": "France",
- "gb": "United Kingdom",
- "gd": "Grenada",
- "gh": "Ghana",
- "gm": "Gambia",
- "gr": "Greece",
- "gt": "Guatemala",
- "gw": "Guinea-Bissau",
- "gy": "Guyana",
- "hk": "Hong Kong",
- "hn": "Honduras",
- "hr": "Croatia",
- "hu": "Hungary",
- "id": "Indonesia",
- "ie": "Ireland",
- "il": "Israel",
- "in": "India",
- "is": "Iceland",
- "it": "Italy",
- "jm": "Jamaica",
- "jo": "Jordan",
- "jp": "Japan",
- "ke": "Kenya",
- "kg": "Kyrgyzstan",
- "kh": "Cambodia",
- "kn": "St. Kitts and Nevis",
- "kr": "Republic Of Korea",
- "kw": "Kuwait",
- "ky": "Cayman Islands",
- "kz": "Kazakstan",
- "la": "Lao People’s Democratic Republic",
- "lb": "Lebanon",
- "lc": "St. Lucia",
- "lk": "Sri Lanka",
- "lr": "Liberia",
- "lt": "Lithuania",
- "lu": "Luxembourg",
- "lv": "Latvia",
- "md": "Republic Of Moldova",
- "mg": "Madagascar",
- "mk": "North Macedonia",
- "ml": "Mali",
- "mn": "Mongolia",
- "mo": "Macau",
- "mr": "Mauritania",
- "ms": "Montserrat",
- "mt": "Malta",
- "mu": "Mauritius",
- "mw": "Malawi",
- "mx": "Mexico",
- "my": "Malaysia",
- "mz": "Mozambique",
- "na": "Namibia",
- "ne": "Niger",
- "ng": "Nigeria",
- "ni": "Nicaragua",
- "nl": "Netherlands",
- "no": "Norway",
- "np": "Nepal",
- "nz": "New Zealand",
- "om": "Oman",
- "pa": "Panama",
- "pe": "Peru",
- "pg": "Papua New Guinea",
- "ph": "Philippines",
- "pk": "Pakistan",
- "pl": "Poland",
- "pt": "Portugal",
- "pw": "Palau",
- "py": "Paraguay",
- "qa": "Qatar",
- "ro": "Romania",
- "ru": "Russia",
- "sa": "Saudi Arabia",
- "sb": "Solomon Islands",
- "sc": "Seychelles",
- "se": "Sweden",
- "sg": "Singapore",
- "si": "Slovenia",
- "sk": "Slovakia",
- "sl": "Sierra Leone",
- "sn": "Senegal",
- "sr": "Suriname",
- "st": "Sao Tome and Principe",
- "sv": "El Salvador",
- "sz": "Swaziland",
- "tc": "Turks and Caicos",
- "td": "Chad",
- "th": "Thailand",
- "tj": "Tajikistan",
- "tm": "Turkmenistan",
- "tn": "Tunisia",
- "tr": "Turkey",
- "tt": "Trinidad and Tobago",
- "tw": "Taiwan",
- "tz": "Tanzania",
- "ua": "Ukraine",
- "ug": "Uganda",
- "us": "United States",
- "uy": "Uruguay",
- "uz": "Uzbekistan",
- "vc": "St. Vincent and The Grenadines",
- "ve": "Venezuela",
- "vg": "British Virgin Islands",
- "vn": "Vietnam",
- "ye": "Yemen",
- "za": "South Africa",
- "zw": "Zimbabwe"
+ "Languages": {
+ "ar-aE": "Arabic (U.A.E.)",
+ "ar-bH": "Arabic (Bahrain)",
+ "ar-dZ": "Arabic (Algeria)",
+ "ar-eG": "Arabic (Egypt)",
+ "ar-iQ": "Arabic (Iraq)",
+ "ar-jO": "Arabic (Jordan)",
+ "ar-kW": "Arabic (Kuwait)",
+ "ar-lB": "Arabic (Lebanon)",
+ "ar-lY": "Arabic (Libya)",
+ "ar-mA": "Arabic (Morocco)",
+ "ar-oM": "Arabic (Oman)",
+ "ar-qA": "Arabic (Qatar)",
+ "ar-sA": "Arabic (Saudi Arabia)",
+ "ar-sY": "Arabic (Syria)",
+ "ar-tN": "Arabic (Tunisia)",
+ "ar-yE": "Arabic (Yemen)",
+ "az-cyrl": "Azerbaijani (Cyrillic, Azerbaijan)",
+ "az-latn": "Azerbaijani (Latin, Azerbaijan)",
+ "bn-bD": "Bangla (Bangladesh)",
+ "bn-iN": "Bangla (India)",
+ "bs-cyrl": "Bosnian (Cyrillic)",
+ "bs-latn": "Bosnian (Latin)",
+ "zh-cN": "Chinese (PRC)",
+ "zh-hK": "Chinese (Hong Kong S.A.R.)",
+ "zh-mO": "Chinese (Macao S.A.R.)",
+ "zh-sG": "Chinese (Singapore)",
+ "zh-tW": "Chinese (Taiwan)",
+ "hr-bA": "Croatian (Latin)",
+ "hr-hR": "Croatian (Croatia)",
+ "nl-bE": "Dutch (Belgium)",
+ "nl-nL": "Dutch (Netherlands)",
+ "en-aU": "English (Australia)",
+ "en-bZ": "English (Belize)",
+ "en-cA": "English (Canada)",
+ "en-cabn": "English (Caribbean)",
+ "en-iE": "English (Ireland)",
+ "en-iN": "English (India)",
+ "en-jM": "English (Jamaica)",
+ "en-mY": "English (Malaysia)",
+ "en-nZ": "English (New Zealand)",
+ "en-pH": "English (Republic of the Philippines)",
+ "en-sG": "English (Singapore)",
+ "en-tT": "English (Trinidad and Tobago)",
+ "en-uK": "English (United Kingdom)",
+ "en-uS": "English (United States)",
+ "en-zA": "English (South Africa)",
+ "en-zW": "English (Zimbabwe)",
+ "fr-bE": "French (Belgium)",
+ "fr-cA": "French (Canada)",
+ "fr-cH": "French (Switzerland)",
+ "fr-fR": "French (France)",
+ "fr-lU": "French (Luxembourg)",
+ "fr-mC": "French (Monaco)",
+ "de-aT": "German (Austria)",
+ "de-cH": "German (Switzerland)",
+ "de-dE": "German (Germany)",
+ "de-lI": "German (Liechtenstein)",
+ "de-lU": "German (Luxembourg)",
+ "iu-cans": "Inuktitut (Syllabics, Canada)",
+ "iu-latn": "Inuktitut (Latin, Canada)",
+ "it-cH": "Italian (Switzerland)",
+ "it-iT": "Italian (Italy)",
+ "ms-bN": "Malay (Brunei Darussalam)",
+ "ms-mY": "Malay (Malaysia)",
+ "mn-cN": "Mongolian (Traditional Mongolian, PRC)",
+ "mn-mN": "Mongolian (Cyrillic, Mongolia)",
+ "no-nB": "Norwegian, Bokmål (Norway)",
+ "no-nn": "Norwegian, Nynorsk (Norway)",
+ "pt-bR": "Portuguese (Brazil)",
+ "pt-pT": "Portuguese (Portugal)",
+ "quz-bO": "Quechua (Bolivia)",
+ "quz-eC": "Quechua (Ecuador)",
+ "quz-pE": "Quechua (Peru)",
+ "smj-nO": "Sami, Lule (Norway)",
+ "smj-sE": "Sami, Lule (Sweden)",
+ "se-fI": "Sami, Northern (Finland)",
+ "se-nO": "Sami, Northern (Norway)",
+ "se-sE": "Sami, Northern (Sweden)",
+ "sma-nO": "Sami, Southern (Norway)",
+ "sma-sE": "Sami, Southern (Sweden)",
+ "smn": "Sami, Inari (Finland)",
+ "sms": "Sami, Skolt (Finland)",
+ "sr-Cyrl-bA": "Serbian (Cyrillic)",
+ "sr-Cyrl-rS": "Serbian (Cyrillic, Serbia and Montenegro)",
+ "sr-Latn-bA": "Serbian (Latin)",
+ "sr-Latn-rS": "Serbian (Latin, Serbia)",
+ "dsb": "Lower Sorbian (Germany)",
+ "hsb": "Upper Sorbian (Germany)",
+ "es-es-tradnl": "Spanish (Spain, Traditional Sort)",
+ "es-aR": "Spanish (Argentina)",
+ "es-bO": "Spanish (Bolivia)",
+ "es-cL": "Spanish (Chile)",
+ "es-cO": "Spanish (Colombia)",
+ "es-cR": "Spanish (Costa Rica)",
+ "es-dO": "Spanish (Dominican Republic)",
+ "es-eC": "Spanish (Ecuador)",
+ "es-eS": "Spanish (Spain)",
+ "es-gT": "Spanish (Guatemala)",
+ "es-hN": "Spanish (Honduras)",
+ "es-mX": "Spanish (Mexico)",
+ "es-nI": "Spanish (Nicaragua)",
+ "es-pA": "Spanish (Panama)",
+ "es-pE": "Spanish (Peru)",
+ "es-pR": "Spanish (Puerto Rico)",
+ "es-pY": "Spanish (Paraguay)",
+ "es-sV": "Spanish (El Salvador)",
+ "es-uS": "Spanish (United States)",
+ "es-uY": "Spanish (Uruguay)",
+ "es-vE": "Spanish (Venezuela)",
+ "sv-fI": "Swedish (Finland)",
+ "uz-cyrl": "Uzbek (Cyrillic, Uzbekistan)",
+ "uz-latn": "Uzbek (Latin, Uzbekistan)",
+ "af": "Afrikaans (South Africa)",
+ "sq": "Albanian (Albania)",
+ "am": "Amharic (Ethiopia)",
+ "hy": "Armenian (Armenia)",
+ "as": "Assamese (India)",
+ "ba": "Bashkir (Russia)",
+ "eu": "Basque (Basque)",
+ "be": "Belarusian (Belarus)",
+ "br": "Breton (France)",
+ "bg": "Bulgarian (Bulgaria)",
+ "ca": "Catalan (Catalan)",
+ "co": "Corsican (France)",
+ "cs": "Czech (Czech Republic)",
+ "da": "Danish (Denmark)",
+ "prs": "Dari (Afghanistan)",
+ "dv": "Divehi (Maldives)",
+ "et": "Estonian (Estonia)",
+ "fo": "Faroese (Faroe Islands)",
+ "fil": "Filipino (Philippines)",
+ "fi": "Finnish (Finland)",
+ "gl": "Galician (Galician)",
+ "ka": "Georgian (Georgia)",
+ "el": "Greek (Greece)",
+ "gu": "Gujarati (India)",
+ "ha": "Hausa (Latin, Nigeria)",
+ "he": "Hebrew (Israel)",
+ "hi": "Hindi (India)",
+ "hu": "Hungarian (Hungary)",
+ "is": "Icelandic (Iceland)",
+ "ig": "Igbo (Nigeria)",
+ "id": "Indonesian (Indonesia)",
+ "ga": "Irish (Ireland)",
+ "xh": "isiXhosa (South Africa)",
+ "zu": "isiZulu (South Africa)",
+ "ja": "Japanese (Japan)",
+ "kn": "Kannada (India)",
+ "kk": "Kazakh (Kazakhstan)",
+ "km": "Khmer (Cambodia)",
+ "rw": "Kinyarwanda (Rwanda)",
+ "sw": "Kiswahili (Kenya)",
+ "kok": "Konkani (India)",
+ "ko": "Korean (Korea)",
+ "ky": "Kyrgyz (Kyrgyzstan)",
+ "lo": "Lao (Lao P.D.R.)",
+ "lv": "Latvian (Latvia)",
+ "lt": "Lithuanian (Lithuania)",
+ "lb": "Luxembourgish (Luxembourg)",
+ "mk": "Macedonian (North Macedonia)",
+ "ml": "Malayalam (India)",
+ "mt": "Maltese (Malta)",
+ "mi": "Maori (New Zealand)",
+ "mr": "Marathi (India)",
+ "moh": "Mohawk (Mohawk)",
+ "ne": "Nepali (Nepal)",
+ "oc": "Occitan (France)",
+ "or": "Odia (India)",
+ "ps": "Pashto (Afghanistan)",
+ "fa": "Persian",
+ "pl": "Polish (Poland)",
+ "pa": "Punjabi (India)",
+ "ro": "Romanian (Romania)",
+ "rm": "Romansh (Switzerland)",
+ "ru": "Russian (Russia)",
+ "sa": "Sanskrit (India)",
+ "st": "Sesotho sa Leboa (South Africa)",
+ "tn": "Setswana (South Africa)",
+ "si": "Sinhala (Sri Lanka)",
+ "sk": "Slovak (Slovakia)",
+ "sl": "Slovenian (Slovenia)",
+ "sv": "Swedish (Sweden)",
+ "syr": "Syriac (Syria)",
+ "tg": "Tajik (Cyrillic, Tajikistan)",
+ "ta": "Tamil (India)",
+ "tt": "Tatar (Russia)",
+ "te": "Telugu (India)",
+ "th": "Thai (Thailand)",
+ "bo": "Tibetan (PRC)",
+ "tr": "Turkish (Turkey)",
+ "tk": "Turkmen (Turkmenistan)",
+ "uk": "Ukrainian (Ukraine)",
+ "ur": "Urdu (Islamic Republic of Pakistan)",
+ "vi": "Vietnamese (Vietnam)",
+ "cy": "Welsh (United Kingdom)",
+ "wo": "Wolof (Senegal)",
+ "ii": "Yi (PRC)",
+ "yo": "Yoruba (Nigeria)"
+ },
+ "Category": {
+ "airPlay": "AirPlay",
+ "airPrint": "AirPrint",
+ "androidDefenderAtp": "Microsoft Defender for Endpoint",
+ "androidDeviceOwnerApplications": "Applications",
+ "androidForWorkPassword": "Device password",
+ "appManagement": "Allow or Block apps",
+ "applicationGuard": "Microsoft Defender Application Guard",
+ "applicationRestrictions": "Restricted Apps",
+ "applicationVisibility": "Show or Hide Apps",
+ "applications": "App Store",
+ "applicationsAndGames": "App Store, Doc Viewing, Gaming",
+ "applicationsAndGoogle": "Google Play Store",
+ "appsAndExperience": "Apps and experience",
+ "associatedDomains": "Associated domains",
+ "autonomousSingleAppMode": "Autonomous Single App Mode",
+ "azureOperationalInsights": "Azure operational insights",
+ "bitLocker": "Windows Encryption",
+ "browser": "Browser",
+ "builtinApps": "Built-in Apps",
+ "cellular": "Cellular",
+ "cloudAndStorage": "Cloud and Storage",
+ "cloudPrint": "Cloud Printer",
+ "complianceEmailProfile": "Email",
+ "connectedDevices": "Connected Devices",
+ "connectivity": "Cellular and connectivity",
+ "contentCaching": "Content caching",
+ "controlPanelAndSettings": "Control Panel and Settings",
+ "credentialGuard": "Microsoft Defender Credential Guard",
+ "customCompliance": "Custom Compliance",
+ "customCompliancePreview": "Custom Compliance (Preview)",
+ "customConfiguration": "Custom Configuration Profile",
+ "customOMASettings": "Custom OMA-URI Settings",
+ "customPreferences": "Preference file",
+ "defender": "Microsoft Defender Antivirus",
+ "defenderAntivirus": "Microsoft Defender Antivirus",
+ "defenderExploitGuard": "Microsoft Defender Exploit Guard",
+ "defenderFirewall": "Microsoft Defender Firewall",
+ "defenderLocalSecurityOptions": "Local device security options",
+ "defenderSecurityCenter": "Microsoft Defender Security Center",
+ "deliveryOptimization": "Delivery Optimization",
+ "derivedCredentialAuthenticationConfiguration": "Derived credential",
+ "deviceExperience": "Device experience",
+ "deviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
+ "deviceGuard": "Microsoft Defender Application Control",
+ "deviceHealth": "Device Health",
+ "devicePassword": "Device password",
+ "deviceProperties": "Device Properties",
+ "deviceRestrictions": "General",
+ "deviceSecurity": "System security",
+ "display": "Display",
+ "domainJoin": "Domain Join",
+ "domains": "Domains",
+ "edgeBrowser": "Microsoft Edge Legacy (Version 45 and earlier)",
+ "edgeBrowserSmartScreen": "Microsoft Defender SmartScreen",
+ "edgeKiosk": "Microsoft Edge kiosk mode",
+ "editionUpgrade": "Edition Upgrade",
+ "education": "Education",
+ "educationDeviceCerts": "Device certificates",
+ "educationStudentCerts": "Student certificates",
+ "educationTakeATest": "Take a Test",
+ "educationTeacherCerts": "Teacher certificates",
+ "emailProfile": "Email",
+ "enterpriseDataProtection": "Windows Information Protection",
+ "expeditedCheckin": "Mobile device management configuration",
+ "extensibleSingleSignOn": "Single sign-on app extension",
+ "filevault": "FileVault",
+ "firewall": "Firewall",
+ "games": "Games",
+ "gatekeeper": "Gatekeeper",
+ "healthMonitoring": "Health monitoring",
+ "homeScreenLayout": "Home Screen Layout",
+ "iOSWallpaper": "Wallpaper",
+ "importedPFX": "PKCS Imported Certificate",
+ "iosDefenderAtp": "Microsoft Defender for Endpoint",
+ "iosKiosk": "Kiosk",
+ "kernelExtensions": "Kernel extensions",
+ "keyboardAndDictionary": "Keyboard and Dictionary",
+ "kiosk": "Kiosk",
+ "kioskAndroidEnterprise": "Dedicated devices",
+ "kioskConfiguration": "Kiosk",
+ "kioskConfigurationV2": "Kiosk",
+ "kioskWebBrowser": "Kiosk web browser",
+ "lockScreenMessage": "Lock Screen Message",
+ "lockedScreenExperience": "Locked Screen Experience",
+ "logging": "Reporting and Telemetry",
+ "loginItems": "Login items",
+ "loginWindow": "Login window",
+ "macDefenderAtp": "Microsoft Defender for Endpoint",
+ "maintenance": "Maintenance",
+ "malware": "Malware",
+ "messaging": "Messaging",
+ "networkBoundary": "Network boundary",
+ "networkProxy": "Network proxy",
+ "notifications": "App Notifications",
+ "pKCS": "PKCS Certificate",
+ "password": "Password",
+ "personalProfile": "Personal profile",
+ "personalization": "Personalization",
+ "policyOverride": "Override Group Policy",
+ "powerSettings": "Power Settings",
+ "printer": "Printer",
+ "privacy": "Privacy",
+ "privacyPerApp": "Per-app privacy exceptions",
+ "privacyPreferences": "Privacy preferences",
+ "projection": "Projection",
+ "sCCMCompliance": "Configuration Manager Compliance",
+ "sCEP": "SCEP Certificate",
+ "sCEPProperties": "SCEP Certificate",
+ "sMode": "Mode switch (Windows Insider only)",
+ "safari": "Safari",
+ "search": "Search",
+ "session": "Session",
+ "sharedDevice": "Shared iPad",
+ "sharedPCAccountManager": "Shared multi-user device",
+ "singleSignOn": "Single sign-on",
+ "smartScreen": "Microsoft Defender SmartScreen",
+ "softwareUpdates": "Settings",
+ "start": "Start",
+ "systemExtensions": "System extensions",
+ "systemSecurity": "System Security",
+ "trustedCert": "Trusted Certificate",
+ "updates": "Updates",
+ "userRights": "User Rights",
+ "usersAndAccounts": "Users and Accounts",
+ "vPN": "Base VPN",
+ "vPNApps": "Automatic VPN",
+ "vPNAppsAndTrafficRules": "Apps and Traffic Rules",
+ "vPNConditionalAccess": "Conditional Access",
+ "vPNConnectivity": "Connectivity",
+ "vPNDNSTriggers": "DNS Settings",
+ "vPNIKEv2": "IKEv2 settings",
+ "vPNProxy": "Proxy",
+ "vPNSplitTunneling": "Split Tunneling",
+ "vPNTrustedNetwork": "Trusted Network Detection",
+ "webContentFilter": "Web Content Filter",
+ "wiFi": "Wi-Fi",
+ "win10Wifi": "Wi-Fi",
+ "windowsAtp": "Microsoft Defender for Endpoint",
+ "windowsDefenderATP": "Microsoft Defender for Endpoint",
+ "windowsHelloForBusiness": "Windows Hello for Business",
+ "windowsSpotlight": "Windows Spotlight",
+ "wiredNetwork": "Wired network",
+ "wireless": "Wireless",
+ "wirelessProjection": "Wireless projection",
+ "workProfile": "Work profile settings",
+ "workProfilePassword": "Work profile password",
+ "xboxServices": "Xbox services",
+ "zebraMx": "MX profile (Zebra only)",
+ "complianceActionsLabel": "Actions for noncompliance"
+ },
+ "WindowsFeatureUpdateProfile": {
+ "Details": {
+ "Description": {
+ "label": "Description"
+ },
+ "FeatureDeploymentSettings": {
+ "header": "Feature deployment settings"
+ },
+ "FeatureUpdateVersion": {
+ "infoballoon": "This feature cannot downgrade a device.",
+ "label": "Feature update to deploy"
+ },
+ "GradualRolloutEndDate": {
+ "label": "Final group availability"
+ },
+ "GradualRolloutInterval": {
+ "label": "Days between groups"
+ },
+ "GradualRolloutStartDate": {
+ "label": "First group availability"
+ },
+ "Name": {
+ "label": "Name"
+ },
+ "RolloutOptions": {
+ "label": "Rollout options"
+ },
+ "RolloutSettings": {
+ "header": "When would you like to make the update available in Windows Update?"
+ },
+ "ScopeSettings": {
+ "header": "Configure scope tags for this policy."
+ },
+ "StartDateOnlyStartDate": {
+ "label": "First available date"
+ },
+ "bladeTitle": "Feature update deployments",
+ "deploymentSettingsTitle": "Deployment settings",
+ "loadError": "Loading failed!",
+ "windows11EULA": "By selecting this Feature update to deploy you are agreeing that when applying this operating system to a device either (1) the applicable Windows license was purchased though volume licensing, or (2) that you are authorized to bind your organization and are accepting on its behalf the relevant Microsoft Software License Terms to be found here {0}."
+ },
+ "Notifications": {
+ "deploymentSaved": "\"{0}\" has been saved.",
+ "newFeatureUpdateDeploymentCreated": "New feature update deployment created."
+ },
+ "TabName": {
+ "deploymentSettings": "Deployment settings",
+ "groupAssignmentSettings": "Assignments",
+ "scopeSettings": "Scope tags"
+ }
+ },
+ "WIPPinRequirements": {
+ "WipLowercaseCharacterPinRequirements": {
+ "allow": "Allow the use of lowercase letters in PIN",
+ "notAllow": "Do not allow the use of lowercase letters in PIN",
+ "requireAtLeastOne": "Require the use of at least one lowercase letter in PIN"
+ },
+ "WipSpecialCharacterPinRequirements": {
+ "allow": "Allow the use of special characters in PIN",
+ "notAllow": "Do not allow the use of special characters in PIN",
+ "requireAtLeastOne": "Require the use of at least one special character in PIN"
+ },
+ "WipUppercaseCharacterPinRequirements": {
+ "allow": "Allow the use of uppercase letters in PIN",
+ "notAllow": "Do not allow the use of uppercase letters in PIN",
+ "requireAtLeastOne": "Require the use of at least one uppercase letter in PIN"
+ }
+ },
+ "OutlookAppConfigSettings": {
+ "AllowUserToChangeSetting": {
+ "title": "Allow user to change setting",
+ "tooltip": "Specify if the user is allowed to change the setting."
+ },
+ "AllowWorkAccounts": {
+ "title": "Allow only work or school accounts",
+ "tooltip": " By enabling this setting, users will be unable to add personal email and storage accounts within Outlook. If the user has a personal account added to Outlook, the user is prompted to remove the personal account. If the user does not remove the personal account, the work or school account cannot be added."
+ },
+ "BlockExternalImages": {
+ "title": "Block external images",
+ "tooltip": "When block external images is enabled, the app will prevent the download of images hosted on the Internet that are embedded in the message body. When set as not configured, the default app setting is set to Off"
+ },
+ "ConfigureEmail": {
+ "title": "Configure email account settings"
+ },
+ "DefaultAppSignatureSetting": {
+ "Tooltip": {
+ "android": "Default app signature indicates whether the app will use “Get Outlook for Android” as the default signature during message composition. If the setting is configured as Off, the default signature will not be used; however, users can add their own signature.\n\nWhen set as Not Configured, the default app setting is set to On.",
+ "iOS": "Default app signature indicates whether the app will use “Get Outlook for iOS” as the default signature during message composition. If the setting is configured as Off, the default signature will not be used; however, users can add their own signature.\n\nWhen set as Not Configured, the default app setting is set to On."
+ },
+ "title": "Default app signature"
+ },
+ "OfficeFeedReplies": {
+ "title": "Discover Feed",
+ "tooltip": "Discover Feed surfaces your most frequently accessed Office files. By default, this feed is enabled when Delve is enabled for the user. When set as not configured, the default app setting is set to On."
+ },
+ "OrganizeMailByThread": {
+ "title": "Organize mail by thread",
+ "tooltip": "The default behavior in Outlook is to bundle mail conversations into a threaded conversation view. If this setting is disabled Outlook will display each mail individually and will not group them by thread."
+ },
+ "PlayMyEmails": {
+ "title": "Play My Emails",
+ "tooltip": "The Play My Emails feature is not enabled by default in the app, but it is promoted to eligible users via a banner in the inbox. When set to Off, this feature will not be promoted to eligible users in the app. Users can choose to manually enable Play My Emails from within the app, even when this feature is set to Off. When set as Not configured, the default app setting is On and the feature will be promoted to eligible users."
+ },
+ "SuggestedReplies": {
+ "title": "Suggested replies",
+ "tooltip": "When you open a message, Outlook might suggest replies below the message. If you select a suggested reply, you can edit the reply before sending it."
+ },
+ "SyncCalendars": {
+ "title": "Sync Calendars",
+ "tooltip": "Configure whether users can sync their Outlook calendar to the native calendar app and database."
+ },
+ "TextPredictions": {
+ "title": "Text Predictions",
+ "tooltip": "Outlook can suggest words and phrases as you compose messages. When Outlook offers a suggestion, swipe to accept it. When set as not configured, the default app setting is set to On."
+ },
+ "ThemesEnabled": {
+ "title": "Themes enabled",
+ "tooltip": "Specify if the user is allowed to use a custom visual theme."
+ }
+ },
+ "AssignmentFilters": {
+ "assignmentFilterColumnHeader": "Filter",
+ "noFilters": "None"
+ },
+ "Platform": {
+ "all": "All",
+ "android": "Android device administrator",
+ "androidAOSP": "Android (AOSP)",
+ "androidEnterprise": "Android Enterprise",
+ "androidForWork": "Android Enterprise",
+ "androidWorkProfile": "Android enterprise",
+ "common": "Common",
+ "iOS": "iOS/iPadOS",
+ "iosAndAndroidPlatformLabel": "iOS and Android",
+ "iosCommaAndroidPlatformLabel": "iOS, Android",
+ "linux": "Linux",
+ "macOS": "macOS",
+ "unknown": "Unknown",
+ "unsupported": "Unsupported",
+ "windows": "Windows",
+ "windows10": "Windows 10 and later",
+ "windows10CM": "Windows 10 and later (ConfigMgr)",
+ "windows10Holo": "Windows 10 Holographic",
+ "windows10Mobile": "Windows 10 Mobile",
+ "windows10Team": "Windows 10 Team",
+ "windows10X": "Windows 10X",
+ "windows8": "Windows 8.1 and later",
+ "windows8And10": "Windows 8 and 10",
+ "windowsPhone": "Windows Phone 8.1",
+ "windows10AndLater": "Windows 10 and later",
+ "windows10AndWindowsServer": "Windows 10, Windows 11, and Windows Server (ConfigMgr)",
+ "windows10andLaterCM": "Windows 10 and later (ConfigMgr)",
+ "holoLens": "HoloLens",
+ "surfaceHub2": "Surface Hub 2",
+ "surfaceHub2S": "Surface Hub 2S",
+ "windowsPC": "Windows PC"
+ },
+ "AppInformationTab": {
+ "Error": {
+ "multipleChildApps": "A macOS LOB app can only be installed as managed when the uploaded package contains a single app."
+ },
+ "Info": {
+ "AppStoreUrl": {
+ "android": "Enter the link to the app listing in Google Play store. For example:",
+ "androidLink": "https://play.google.com/store/apps/details?id=com.microsoft.office.outlook",
+ "windows": "Enter the link to the app listing in the Microsoft Store. For example:",
+ "windowsLink": "https://www.microsoft.com/en-us/p/microsoft-to-do-lists-tasks-reminders/9nblggh5r558"
+ },
+ "appPackageFile": "A file that contains your app in a format that can be sideloaded on a device. Valid package types include: Android (.apk), iOS (.ipa), macOS (.pkg, .intunemac), Windows (.msi, .appx, .appxbundle, .msix, and .msixbundle).",
+ "applicableDeviceType": "Select the device types that can install this app.",
+ "category": "Categorize the app to make it easier for users to sort and find in Company Portal. You can choose multiple categories.",
+ "categoryLink": "https://docs.microsoft.com/en-us/intune/apps/apps-add#create-and-edit-categories-for-apps",
+ "description": "Help your device users understand what the app is and/or what they can do in the app. This description will be visible to them in Company Portal.",
+ "developer": "The name of the company or Individual that developed the app. This information will be visible to people signed into the admin center.",
+ "displayVersion": "The version of the app. This information will be visible to users in the Company Portal.",
+ "infoUrl": "Link people to a website or documentation that has more information about the app. The information URL will be visible to users in Company Portal.",
+ "isFeatured": "Featured apps are prominently placed in Company Portal so that users can quickly get to them.",
+ "learnMore": "Learn more",
+ "logo": "Upload a logo that's associated with the app. This logo will appear next to the app throughout Company Portal.",
+ "macOSDmgAppPackageFile": "A file that contains your app in a format that can be sideloaded on a device. Valid package type: .dmg.",
+ "minOperatingSystem": "Select the earliest operating system version on which the app can be installed. If you assign the app to a device with an earlier operating system, it will not be installed.",
+ "name": "Add a name for the app. This name will be visible in the Intune apps list and to users in the Company Portal.",
+ "notes": "Add additional notes about the app. Notes will be visible to people signed in to the admin center.",
+ "owner": "The name of the person in your organization who manages licensing or is the point-of-contact for this app. This name will be visible to people signed in to the admin center.",
+ "packageName": "Contact the device manufacturer to get the app's package name. Example package name: com.example.app",
+ "privacyUrl": "Provide a link for people who want to learn more about the app's privacy settings and terms. The privacy URL will be visible to users in Company Portal.",
+ "publisher": "The name of the developer or company that distributes the app. This information will be visible to users in Company Portal.",
+ "selectApp": "Search the App Store for iOS store apps that you want to deploy with Intune.",
+ "useManagedBrowser": "If required, when a user opens the web app, it will open in an Intune-protected browser such as Microsoft Edge or Intune Managed Browser. This setting applies to both iOS and Android devices.",
+ "useManagedBrowserLink": "https://docs.microsoft.com/en-us/intune/apps/app-configuration-managed-browser",
+ "win32AppPackageFile": "A file that contains your app in a format that can be sideloaded on a device. Valid package type: .intunewin."
+ },
+ "descriptionPreview": "Preview",
+ "descriptionRequired": "Description is required.",
+ "editDescription": "Edit Description",
+ "macOSMinOperatingSystemAdditionalInfo": "The minimum operating system for uploading a .pkg file is macOS 10.14. Upload a .intunemac file to select an older minimum operating system.",
+ "name": "App information",
+ "nameForOfficeSuitApp": "App suite information"
+ },
+ "Tooltips": {
+ "PolicySettings": {
+ "TouchId1": {
+ "android": "On Android, you can allow using fingerprint identification instead of a PIN. Users are prompted to provide their fingerprints when they access this app with their work accounts.",
+ "iOS": "On iOS/iPadOS devices, you can allow using fingerprint identification instead of a PIN. Users are prompted to provide their fingerprints when they access this app with their work accounts.",
+ "mac": "On Mac devices, you can allow using fingerprint identification instead of a PIN. Users are prompted to provide their fingerprints when they access this app with their work accounts."
+ },
+ "appSharingFromLevel1": "Select one of the following options to specify the apps that this app can receive data from:",
+ "appSharingFromLevel2": "{0}: Only allow receiving data in org documents or accounts from other policy managed apps",
+ "appSharingFromLevel3": "{0}: Allow receiving data in org documents or accounts from any app",
+ "appSharingFromLevel4": "{0}: Do not allow receiving data in org documents or accounts from any app",
+ "appSharingFromLevel5": "{0}: Allow data transfer from any app and treat all incoming data without an user identity as Org data.",
+ "appSharingToLevel1": "Select one of the following options to specify the apps that this app can send data to:",
+ "appSharingToLevel2": "{0}: Only allow sending org data to other policy managed apps",
+ "appSharingToLevel3": "{0}: Allow sending org data to any app",
+ "appSharingToLevel4": "{0}: Do not allow sending org data to any app",
+ "appSharingToLevel5": "{0}: Only allow transfer only to other policy managed apps and file transfer to other MDM managed apps on enrolled devices",
+ "appSharingToLevel6": "{0}: Allow transfer only to other policy managed apps and filter OS Open-in/Share dialogs to only display policy managed apps",
+ "conditionalEncryption1": "Select {0} to disable app encryption for internal app storage when device encryption is detected on an enrolled device.",
+ "conditionalEncryption2": "Note: Intune can only detect device enrollment with Intune MDM. External app storage will still be encrypted to ensure data cannot be accessed by unmanaged applications.",
+ "contactSyncMac": "If disabled, apps cannot save contacts to the native address book.",
+ "contactsSync": "Choose Block to prevent policy managed apps from saving data to the device's native apps (like Contacts, Calendar and widgets), or to prevent the use of add-ins within the policy managed apps. If you choose Allow, the policy managed app can save data to the native apps or use add-ins, if those features are supported and enabled within the policy managed app.
Apps may provide additional configuration capability with app configuration policies. For more information, see the app's documentation.",
+ "encryptionAndroid1": "For apps that are associated with an Intune mobile application management policy, encryption is provided by Microsoft. Data is encrypted synchronously during file I/O operations according to the setting in the mobile application management policy. Managed apps on Android use AES-128 encryption in CBC mode utilizing the platform cryptography libraries. The encryption method is not FIPS 140-2 compliant. SHA-256 encryption is supported as an explicit instruction using the SigAlg parameter and will only work on devices 4.2 and above. Content on the device storage is always be encrypted.",
+ "encryptionAndroid2": "When you require encryption in your app policy, the end-user is required to setup and use a PIN to access their device. If there is not a PIN set up for device access, the apps will not launch and the end-user will instead see a message, which says, “Your company has required that you must first enable a device PIN to access this application.\"",
+ "encryptionMac1": "For apps that are associated with an Intune mobile application management policy, encryption is provided by Microsoft. Data is encrypted synchronously during file I/O operations according to the setting in the mobile application management policy. Managed apps on Mac use AES-128 encryption in CBC mode utilizing the platform cryptography libraries. The encryption method is not FIPS 140-2 compliant. SHA-256 encryption is supported as an explicit instruction using the SigAlg parameter and will only work on devices 4.2 and above. Content on the device storage is always be encrypted.",
+ "faceId1": "Where applicable, you can allow the use of face identification instead of PIN. Users are prompted to provide face identification when they access this app with their work accounts.",
+ "faceId2": "Select Yes to allow face identification instead of a PIN for app access.",
+ "managementLevelsAndroid1": "Use this option to specify whether this policy applies to Android device administrator devices, Android Enterprise devices, or unmanaged devices.",
+ "managementLevelsAndroid2": "{0}: Unmanaged devices are devices where Intune MDM management has not been detected. This includes 3rd party MDM vendors.",
+ "managementLevelsAndroid3": "{0}: Intune-managed devices using the Android Device Administration API.",
+ "managementLevelsAndroid4": "{0}: Intune-managed devices using Android Enterprise Work Profiles or Android Enterprise Full Device Management.",
+ "managementLevelsIos1": "Use this option to specify whether this policy applies to MDM managed devices or unmanaged devices.",
+ "managementLevelsIos2": "{0}: Unmanaged devices are devices where Intune MDM management has not been detected. This includes 3rd party MDM vendors.",
+ "managementLevelsIos3": "{0}: Managed devices are managed by Intune MDM.",
+ "minAppVersion": "Define the required minimum App version number that a user should have to gain secure access to the app.",
+ "minAppVersionWarning": "Define the recommended minimum App version number that a user should have for secure access to the app.",
+ "minOsVersion": "Define the required minimum OS version number that a user should have to gain secure access to the app.",
+ "minOsVersionWarning": "Define the recommended minimum OS version number that a user should have to gain secure access to the app.",
+ "minPatchVersion": "Define the oldest required Android security patch level a user can have to gain secure access to the app.",
+ "minPatchVersionWarning": "Define the oldest recommended Android security patch level a user can have for secure access to the app.",
+ "minSdkVersion": "Define the required minimum Intune Application Protection Policy SDK version that a user should have to gain secure access to the app.",
+ "requireAppPinDefault": "Select Yes to disable the app PIN when a device lock is detected on an enrolled device.
",
+ "targetAllApps1": "Use this option to target your policy to apps on devices of any management state.",
+ "targetAllApps2": "During policy conflict resolution this setting will be superseded if a user has policy targeted for a specific management state.",
+ "touchId2": "Select {0} to require fingerprint identity instead of a PIN for app access."
+ },
+ "Tap": {
+ "pinResetAfterNumberOfDays": "Specify the number of days that must pass before the user must reset the PIN.",
+ "previousPinBlockCount": "This setting specifies the number of previous PINs that Intune will maintain. Any new PINs must be different from those that Intune is maintaining."
+ },
+ "WipPolicySettings": {
+ "25": "",
+ "allowWindowsSearch": "This will allow Windows Search to continue to search through encrypted data.",
+ "authoritativeIpRanges": "Enable this setting if you want to override Windows auto-detection of IP ranges.",
+ "authoritativeProxyServers": "Enable this setting if you want to override Windows auto-detection of proxy servers.",
+ "checkInput": "Check input for validity",
+ "dataRecoveryCert": "A recovery certificate is a special Encrypting File System (EFS) certificate you can use to recover encrypted files if your encryption key is lost or damaged. You need to create the recovery certificate, and specify it here. More information is here",
+ "enterpriseCloudResources": "Specify cloud resources to be treated as corporate and be protected with Windows Information Protection policy. Multiple resources can be specified by separating individual entries with the '|' character.
If you have a proxy configured in your company, then you can specify the proxy through which traffic to cloud resources you specified will be routed.
URL[,Proxy]|URL[,Proxy]
Without proxy: contoso.sharepoint.com|contoso.visualstudio.com
With proxy: contoso.sharepoint.com,proxy.contoso.com|contoso.visualstudio.com,proxy.contoso.com
",
+ "enterpriseIPv4Ranges": "Specify the IPv4 ranges that form your corporate network. These are used in conjunction with the Enterprise Network Domain Names that you specify to define your corporate network boundary.
This setting is required to have Windows Information Protection enabled.
Multiple ranges can be specified by separating individual entries with a comma.
For example: 3.4.0.1-3.4.255.255,192.168.1.1-192.168.255.255
",
+ "enterpriseIPv6Ranges": "Specify the IPv6 ranges that form your corporate network. These are used in conjunction with the Enterprise Network Domain Names that you specify to define your corporate network boundary.
Multiple ranges can be specified by separating individual entries with a comma.
For example: 2001:4898:dc05::-2001:4898:dc05:ffff:ffff:ffff:ffff:ffff,2a01:110::-2a01:110:7fff:ffff:ffff:ffff:ffff:ffff
",
+ "enterpriseInternalProxyServers": "If you have a proxy configured in your company, then you can specify the proxy through which traffic to cloud resources specified in the Enterprise Cloud Resources settings are to be routed.
Multiple values can be specified by separating individual entries with a semi-colon.
For example: contoso.internalproxy1.com;contoso.internalproxy2.com
",
+ "enterpriseNetworkDomainNames": "Specify the DNS names that form your corporate network. These are used in conjunction with the IP ranges that you specify to define your corporate network boundary. Multiple values can be specified by separating individual entries with a comma.
This setting is required to have Windows Information Protection enabled.
For example: corp.contoso.com,region.contoso.com
",
+ "enterpriseProtectedDomainNames": "Specify the DNS names that form your corporate network. These are used in conjunction with the IP ranges that you specify to define your corporate network boundary. Multiple values can be specified by separating individual entries with a '|'.
This setting is required to have Windows Information Protection enabled.
For example: corp.contoso.com|region.contoso.com
",
+ "enterpriseProxyServers": "If you have external facing proxies in your corporate network, specify them here. When specifying a proxy server address, you should also specify the port through which traffic should be allowed and protected through Windows Information Protection.
Note: This list must not include servers in your Enterprise Internal Proxy Server list. Multiple values can be specified by separating individual entries with a semi-colon.
For example: proxy.contoso.com:80;proxy2.contoso.com:80
",
+ "maxInactivityTime1": "Specifies the maximum amount of time (in minutes) allowed after the device is idle that will cause the device to become PIN or password locked. Users can select any existing timeout value less than the specified maximum time in the Settings app. Note the Lumia 950 and 950XL have a maximum timeout value of 5 minutes, regardless of the value set by this policy.",
+ "maxInactivityTime2": "0 (default) - No timeout is defined. The default of '0' is interpreted as 'No timeout is defined.'",
+ "maxPasswordAttempts1": "This policy has different behaviors on the mobile device and desktop.",
+ "maxPasswordAttempts2": "On a mobile device, when the user reaches the value set by this policy, then the device is wiped.",
+ "maxPasswordAttempts3": "On a desktop, when the user reaches the value set by this policy, it is not wiped.Instead, the desktop is put on BitLocker recovery mode, which makes the data inaccessible but recoverable.If BitLocker is not enabled, then the policy cannot be enforced.",
+ "maxPasswordAttempts4": "Prior to reaching the failed attempts limit, the user is sent to the lock screen and warned that more failed attempts will lock their computer.When the user reaches the limit, the device automatically reboots and shows the BitLocker recovery page.This page prompts the user for the BitLocker recovery key.",
+ "maxPasswordAttempts5": "0 (default) - The device is never wiped after an incorrect PIN or password is entered.",
+ "maxPasswordAttempts6": "Most secure value is 0 if all policy values = 0; otherwise, Min policy value is the most secure value.",
+ "mdmDiscoveryUrl": "Specify the URL for the MDM enrollment endpoint that users who enroll to MDM will use. By default, this is specified for Intune.",
+ "minimumPinLength1": "Integer value that sets the minimum number of characters required for the PIN. Default value is 4. The lowest number you can configure for this policy setting is 4. The largest number you can configure must be less than the number configured in the Maximum PIN length policy setting or the number 127, whichever is the lowest.",
+ "minimumPinLength2": "If you configure this policy setting, the PIN length must be greater than or equal to this number. If you disable or do not configure this policy setting, the PIN length must be greater than or equal to 4.",
+ "name": "The name of this network boundary",
+ "neutralResources": "If you have authentication redirection endpoints in your company, specify those here. The locations specified here are considered to be either personal or corporate depending on the context of the connection prior to the redirection.
Multiple values can be specified by separating individual entries with a comma.
For example: sts.contoso.com,sts.contoso2.com
",
+ "passportForWork1": "Value that sets Windows Hello for Business as a method for signing into Windows.",
+ "passportForWork2": "Default value is true.If you set this policy to false, the user cannot provision Windows Hello for Business except on Azure Active Directory joined mobile phones where provisioning is required.",
+ "pinExpiration": "The largest number you can configure for this policy setting is 730. The lowest number you can configure for this policy setting is 0. If this policy is set to 0, then the user’s PIN will never expire.",
+ "pinHistory1": "The largest number you can configure for this policy setting is 50. The lowest number you can configure for this policy setting is 0. If this policy is set to 0, then storage of previous PINs is not required.",
+ "pinHistory2": "The current PIN of the user is included in the set of PINs associated with the user account. PIN history is not preserved through a PIN reset.",
+ "protectUnderLock": "Protects app content while the device is in a locked state.",
+ "protectionModeBlock": "Block: Blocks enterprise data from leaving protected apps.
",
+ "protectionModeOff": "Off: User is free to relocate data off of protected apps. No actions are logged.
",
+ "protectionModeOverride": "Allow overrides: User is prompted when attempting to relocate data from a protected to a non-protected app. If they choose to override this prompt, the action will be logged.
",
+ "protectionModeSilent": "Silent: User is free to relocate data off of protected apps. These actions are logged.
",
+ "required": "Required",
+ "revokeOnMdmHandoff": "Added in Windows 10, version 1703. This policy controls whether to revoke the WIP keys when a device upgrades from MAM to MDM. If set to “Off”, the keys will not be revoked and the user will continue to have access to protected files after upgrade. This is recommended if the MDM service is configured with the same WIP EnterpriseID as the MAM service.",
+ "revokeOnUnenroll": "This will cause encryption keys to be revoked when a device un-enrolls from this policy.",
+ "rmsTemplateForEdp": "TemplateID GUID to use for RMS encryption. The Azure RMS template allows the IT admin to configure the details about who has access to RMS-protected file and how long they have access.",
+ "showWipIcon": "This will let the user know when they are acting in a corporate context, by overlaying an icon.",
+ "useRmsForWip": "Specifies whether to allow Azure RMS encryption for WIP."
+ },
+ "requireAppPin": "Select Yes to disable the app PIN when a device lock is detected on an enrolled device.
Note: Intune cannot detect device enrollment with a third-party EMM solution on iOS/iPadOS.
"
+ },
+ "Autopilot": {
+ "AssignResourceAccount": {
+ "createNewCommandMenu": "Create new",
+ "createNewResourceAccountInfo": "\nCreate a new resource account during enrollment. The Resource account will be added to the Resource account table right away, but won't be active until the device is enrolled, and the Surface Hub subscription is verified. Learn more about Resource Accounts
\n ",
+ "createNewResourceTitle": "Create new resource account",
+ "deviceNameInvalid": "Device name is in an invalid format",
+ "deviceNameRequired": "A device name is required",
+ "editResourceAccountLabel": "Edit",
+ "selectExistingCommandMenu": "Select existing"
+ },
+ "Device": {
+ "ComputerName": {
+ "validFormat": "Names must be 15 characters or less, and can contain letters (a-z, A-Z), numbers (0-9), and hyphens. Names must not contain only numbers. Names cannot include a blank space."
+ },
+ "Header": {
+ "addressableUserName": "User friendly name",
+ "azureADDevice": "Associated Azure AD device",
+ "batch": "Group tag",
+ "dateAssigned": "Date assigned",
+ "deviceAccountFriendlyName": "Device account friendly name",
+ "deviceAccountPwd": "Device account password",
+ "deviceAccountUpn": "Device account",
+ "deviceDisplayName": "Device name",
+ "deviceName": "Device name",
+ "deviceUseType": "Device-use type",
+ "enrollmentState": "Enrollment state",
+ "intuneDevice": "Associated Intune device",
+ "lastContacted": "Last contacted",
+ "make": "Manufacturer",
+ "model": "Model",
+ "profile": "Assigned profile",
+ "profileStatus": "Profile status",
+ "purchaseOrderId": "Purchase order",
+ "resourceAccount": "Resource account",
+ "serialNumber": "Serial number",
+ "userPrincipalName": "User"
+ },
+ "SurfaceHub": {
+ "friendlyNameRequired": "A friendly name is required",
+ "pwdRequired": "A password is required",
+ "upnRequired": "A device account is required",
+ "upnValidFormat": "Values can contain letters (a-z, A-Z), numbers (0-9), and hyphens. Values cannot include a blank space."
+ }
+ },
+ "DeviceUseType": {
+ "meetingAndPresentation": "Meeting and presentation",
+ "teamCollaboration": "Team collaboration"
+ },
+ "Devices": {
+ "featureDescription": "Windows Autopilot lets you customize the out-of-box experience (OOBE) for your users.",
+ "importErrorStatus": "Some devices were not imported. Click here for more information.",
+ "importPendingStatus": "Import in progress. Elapsed time: {0} min. This process can take up to {1} min."
+ },
+ "DirectoryService": {
+ "activeDirectoryAD": "Hybrid Azure AD joined",
+ "activeDirectoryADLabel": "Hybrid Azure AD width Autopilot",
+ "azureAD": "Azure AD joined",
+ "unknownType": "Unknown Type"
+ },
+ "Filter": {
+ "enrollmentState": "State",
+ "profile": "Profile status"
+ },
+ "OOBE": {
+ "AddressableUserName": {
+ "validateEmpty": "User friendly name cannot be empty."
+ },
+ "ApplyComputerNameTemplate": {
+ "infoBalloon": "Create a naming template to add names to your devices during enrollment.",
+ "label": "Apply device name template"
+ },
+ "ApplyComputerNameTemplateDisabled": {
+ "label": "For Hybrid Azure AD joined type of Autopilot deployment profiles, devices are named using settings specified in Domain Join configuration."
+ },
+ "ComputerNameTemplate": {
+ "emptyValue": "MyCompany-%RAND:4%",
+ "label": "Enter a name",
+ "noDisallowedChars": "Name must only contain alphanumeric characters, hyphens, %SERIAL%, or %RAND:x%",
+ "serialLength": "Cannot use more than 7 characters with %SERIAL%",
+ "validateLessThan15Chars": "Name must be 15 characters or less",
+ "validateNoSpaces": "Computer names cannot contain spaces",
+ "validateNotAllNumbers": "Name must also contain letters and/or hyphens",
+ "validateNotEmpty": "Name cannot be empty",
+ "validateOnlyOneMacro": "Name must only contain one of %SERIAL% or %RAND:x%"
+ },
+ "ConfigureComputerNameTemplate": {
+ "description": "Create a unique name for your devices. Names must be 15 characters or less, and can contain letters (a-z, A-Z), numbers (0-9), and hyphens. Names must not contain only numbers. Names cannot include a blank space. Use the %SERIAL% macro to add a hardware-specific serial number. Alternatively, use the %RAND:x% macro to add a random string of numbers, where x equals the number of digits to add."
+ },
+ "EnableWhiteGlove": {
+ "infoBalloon": "Enable pressing Windows key 5 times to run OOBE without user authentication to enroll device and provision all system-context apps and settings. User-context apps and settings will be delivered when the user signs in.",
+ "label": "Allow pre-provisioned deployment"
+ },
+ "HybridAzureADSkipConnectivityCheck": {
+ "infoBalloon": "The Autopilot Hybrid Azure AD join flow will continue even if it does not establish domain controller connectivity during OOBE.",
+ "label": "Skip AD connectivity check (preview)"
+ },
+ "accountType": "User account type",
+ "accountTypeInfo": "Specify whether users are administrators or standard users on the device. Note that this setting does not apply to Global Administrator or Company Administrator accounts. These accounts cannot be standard users because they have access to all administrative features in Azure AD.",
+ "configOOBEInfo": "\nConfigure the out-of-box experience for your Autopilot devices\n
",
+ "configureDevice": "Deployment mode",
+ "configureDeviceHintForSurfaceHub2": "Autopilot only supports self-deploying mode for Surface Hub 2. This mode doesn't associate the user with the enrolled device, so it doesn't require user credentials.",
+ "configureDeviceHintForWindowsPC": "\n Deployment mode controls if a user needs to provide credentials in order to provision the device.\n
\n \n - \n User-Driven: Devices are associated with the user enrolling the device and user credentials are required to provision the device\n
\n - \n Self-Deploying (preview): Devices are not associated with the user enrolling the device and user credentials are not required to provision the device\n
\n
",
+ "createSurfaceHub2Info": "Configure the Autopilot enrollment settings for your Surface Hub 2 devices. By default Autopilot enables skipping user authentication during OOBE. Learn more about Windows Autopilot for Surface Hub 2.",
+ "createWindowsPCInfo": "\n\nThe following options are automatically enabled for Autopilot devices in self-deploying mode:\n
\n\n - \n Skip Work or Home usage selection\n
\n - \n Skip OEM registration and OneDrive configuration\n
\n - \n Skip user authentication in OOBE\n
\n
",
+ "endUserDevice": "User-Driven",
+ "hideEscapeLink": "Hide change account options",
+ "hideEscapeLinkInfo": "Options to change account and start over with a different account appear, respectively, during initial device setup on the company sign-in page, and on the domain error page. To hide these options, you must configure company branding in Azure Active Directory (requires Windows 10, 1809 or later, or Windows 11).",
+ "info": "Autopilot profile settings define the out-of-box experience users see when starting Windows for the first time. ",
+ "language": "Language (Region)",
+ "languageInfo": "Specify the language and region that will be used.",
+ "licenseAgreement": "Microsoft Software License Terms",
+ "licenseAgreementInfo": "Specify whether to show the EULA to users.",
+ "plugAndForgetDevice": "Self-Deploying (preview)",
+ "plugAndForgetGA": "Self-Deploying",
+ "privacySettingWarning": "The default value for diagnostic data collection has changed for devices running Windows 10, version 1903 and later, or Windows 11. ",
+ "privacySettings": "Privacy settings",
+ "privacySettingsInfo": "Specify whether to show privacy settings to users.",
+ "showCortanaConfigurationPage": "Cortana configuration",
+ "showCortanaConfigurationPageInfo": "Show will enable the Cortana configuration introduction during startup.",
+ "skipEULAWarning": "Important information about hiding license terms",
+ "skipKeyboardSelection": "Automatically configure keyboard",
+ "skipKeyboardSelectionInfo": "If true, skip the keyboard selection page if Language is set.",
+ "subtitle": "Autopilot profiles",
+ "title": "Out-of-box experience (OOBE)",
+ "useOSDefaultLanguage": "Operating system default",
+ "userSelect": "User select"
+ },
+ "Sync": {
+ "lastRequestedLabel": "Last sync request",
+ "lastSuccessfulLabel": "Last successful sync",
+ "syncInProgress": "Sync is in progress. Check back again soon.",
+ "syncInitiated": "Autopilot settings sync initiated.",
+ "syncSettingsTitle": "Sync Autopilot settings"
+ },
+ "Title": {
+ "devices": "Windows Autopilot devices"
+ },
+ "Tooltips": {
+ "addressableUserName": "Greeting name displayed during device setup.",
+ "azureADDevice": "Go to device details for associated device. N/A means that there's no associated device.",
+ "batch": "A string attribute that can be used to identify a group of devices. Intune's group tag field maps to the OrderID attribute on Azure AD devices.",
+ "dateAssigned": "Timestamp of when the profile was assigned to the device.",
+ "deviceAccountFriendlyName": "Device account friendly name for Surface Hub devices",
+ "deviceAccountPwd": "Device account password for Surface Hub devices",
+ "deviceAccountUpn": "Device account email for Surface Hub devices",
+ "deviceDisplayName": "Configure a unique name for a device. This name will be ignored in Hybrid Azure AD joined deployments. Device name still comes from the domain join profile for Hybrid Azure AD devices.",
+ "deviceName": "The name shown when someone tried to discover and connect to the device.",
+ "deviceUseType": " Device would setup based on your choice. You can always change later in settings.\n \n - For meetings and presentations, Windows Hello isn't turned on and data is removed after each session.\n
\n - For team collaboration, Windows Hello is turned on and profiles are saved for quick sign-in
\n
",
+ "enrollmentState": "Specifies if the device has enrolled.",
+ "intuneDevice": "Go to device details for associated device. N/A means that there's no associated device.",
+ "lastContacted": "Timestamp of when the device was last contacted.",
+ "make": "Manufacturer of the selected device.",
+ "model": "Model of the selected device",
+ "profile": "Name of the profile assigned to the device.",
+ "profileStatus": "Specifies if a profile is assigned to the device.",
+ "purchaseOrderId": "Purchase order ID",
+ "resourceAccount": "The device's identity, or user principal name (UPN).",
+ "serialNumber": "Serial number of the selected device.",
+ "userPrincipalName": "User to pre-fill authentication during device setup."
+ },
+ "allDevices": "All devices",
+ "allDevicesAlreadyAssignedError": "An Autopilot profile is already assigned to All Devices.",
+ "assignFailedDescription": "Failed to update assignments for {0}.",
+ "assignFailedTitle": "Failed to update Autopilot profile assignments.",
+ "assignSuccessDescription": "Successfully updated assignments for {0}.",
+ "assignSuccessTitle": "Successfully updated Autopilot profile assignments.",
+ "assignSufaceHub2ProfileNextStep": "Next steps for this deployment",
+ "assignSurfaceHub2ProfileToDeviceGroup": "1. Assign this profile to at least one device group",
+ "assignSurfaceHub2ProfileToResourceAccount": "2. Assign a resource account to each Surface Hub device to which you deploy this profile",
+ "assignedDevicesCount": "Assigned devices",
+ "assignedDevicesResourceAccountDescription": "To deploy this profile to a device, you must assign the device a Resource account. Select one device at a time to assign an existing Resource account or to create a new one. Learn more about Resource Accounts
",
+ "assignedDevicesResourceAccountStatusBarMessage": "This table only lists the Surface Hub 2 devices that have been assigned this profile.",
+ "assigningDescription": "Updating assignments for {0}.",
+ "assigningTitle": "Updating Autopilot profile assignments.",
+ "autoremediationContext": "We've detected a hardware change on this device. We're trying to automatically register the new hardware. You don't need to do anything now; the status will be updated at the next check in with the result. Learn more about resetting the profile.",
+ "autoremediationTitle": "Device {0} has a fix pending",
+ "cannotDeleteMessage": "This profile is assigned to groups. You must unassign all groups from this profile before you can delete it.",
+ "cannotDeleteTitle": "Cannot delete {0}",
+ "createdDateTime": "Created",
+ "deleteMessage": "If you delete this Autopilot profile, any devices assigned to this profile will display Unassigned.",
+ "deleteMessageWithPolicySet": "{0} is included in one more more policy sets. If you delete {0}, you'll no longer be able to assign it via these policy sets.",
+ "deleteTitle": "Are you sure you want to delete this profile?",
+ "description": "Description",
+ "deviceType": "Device type",
+ "deviceUse": "Device use",
+ "directoryServiceHintForSurfaceHub2": " \n Autopilot only supports Azure AD Joined for Surface Hub 2 devices. Specify how devices join Active Directory (AD) in your organization.\n
\n \n - \n Azure AD joined: Cloud-only without an on-premises Windows Server Active Directory.\n
\n
\n ",
+ "directoryServiceHintForWindowsPC": "\n \n Specify how devices join Active Directory (AD) in your organization:\n
\n \n - \n Azure AD joined: Cloud-only without an on-premises Windows Server Active Directory\n
\n
\n ",
+ "getAssignedDevicesCountError": "An error occurred while fetching the assigned devices count.",
+ "getAssignmentsError": "An error occurred while fetching Autopilot profile assignments.",
+ "harvestDeviceId": "Convert all targeted devices to Autopilot",
+ "harvestDeviceIdDescription": "By default, this profile can only be applied to Autopilot devices synced from the Autopilot service.",
+ "harvestDeviceIdInfo": "\n Select Yes to register all targeted devices to Autopilot if they are not already registered. The next time registered devices go through the Windows Out of Box Experience (OOBE), they will go through the assigned Autopilot scenario.\n
\n Please note that certain Autopilot scenarios require specific minimum builds of Windows. Please make sure your device has the required minimum build to go through the scenario.\n
\n Removing this profile won’t remove affected devices from Autopilot. To remove a device from Autopilot, use the Windows Autopilot Devices view.\n ",
+ "harvestDeviceIdWarning": "After conversion, Autopilot devices can only be reverted by deleting them from the Autopilot devices list.",
+ "holoLensCommandMenu": "HoloLens",
+ "info": "Windows Autopilot deployment profiles lets you customize the out-of-box experience for your devices.",
+ "invalidProfileNameMessage": "Character \"{0}\" is not allowed",
+ "joinTypeLabel": "Join Azure AD as",
+ "lastModifiedDateTime": "Last modified:",
+ "manualRemediationContext": "We've detected a hardware change on this device. It won't automatically receive an Autopilot profile when it's reset unless you register the device again. Learn more about resetting the profile.",
+ "manualRemediationTitle": "Device {0} needs your attention",
+ "name": "Name",
+ "noAutopilotProfile": "No Autopilot profiles",
+ "notEnoughPermissionAssignedError": "You don't have enough permissions to assign this profile to one or more of your selected groups. Please contact your administrator.",
+ "profile": "profile",
+ "resourceAccountStatusBarMessage": "A Resource Account is required for each Surface Hub 2 device to which this profile is deployed. Click to learn more.",
+ "selectServices": "Select directory service devices will join",
+ "surfaceHub2CommandMenu": "Surface Hub 2",
+ "surfaceHub2SCommandMenu": "Surface Hub 2S",
+ "userAffinityLabel": "Deployment mode",
+ "windowsPCCommandMenu": "Windows PC",
+ "directoryServiceLabel": "Join to Azure AD as"
},
- "CategoryDescription": {
- "androidGeneralApplicationRestrictions": "Use these settings to stay informed about which users install apps that are not approved for use in your company. Select the type of restricted app list:
\n Prohibited apps - A list of apps that you want to be informed about when users install them.
\n Approved apps - A list of apps that are approved for use in your company. When users install an app that is not in this list, you will be informed.
\n ",
- "androidZebraMxZebraMx": "Configure Zebra devices by uploading a MX profile in XML format.",
- "iosDeviceFeaturesAirprint": "Use these settings to configure iOS devices to automatically connect to AirPrint compatible printers on your network. You'll need the IP address and resource path of your printers.",
- "iosDeviceFeaturesExtensibleSingleSignOn": "Configure an app extension that enables single sign-on (SSO) for devices running iOS 13.0 or later.",
- "iosDeviceFeaturesHomeScreenLayout": "Configure the layout for the dock and Home Screens on iOS devices. Certain devices may have limits to how many items can be displayed.",
- "iosDeviceFeaturesIOSWallpaper": "Display an image that will appear on the Home Screen and/or the lock screen of iOS devices.\n To display a unique image in each location, create one profile with the lock screen image, and one with the Home Screen image.\n Then assign both profiles to your users.\n
\n \n - Max file size: 750 KB
\n - File type: PNG, JPG or JPEG
\n
\n ",
- "iosDeviceFeaturesNotifications": "Specify notification settings for apps. Supports iOS 9.3 and later.",
- "iosDeviceFeaturesSharedDevice": "Specify optional text displayed on the locked screen. It is supported on iOS 9.3 and later. Learn More",
- "iosGeneralApplicationRestrictions": "Use these settings to stay informed about which users install apps that are not approved for use in your company. Select the type of restricted app list:
\n Prohibited apps - A list of apps that you want to be informed about when users install them.
\n Approved apps - A list of apps that are approved for use in your company. When users install an app that is not in this list, you will be informed.
\n ",
- "iosGeneralApplicationVisibility": "Use the show apps list to specify the iOS apps that user can view or launch. Use the hidden apps list to specify the iOS apps that user cannot view or launch.",
- "iosGeneralAutonomousSingleAppMode": "Apps you add to this list and assign to a device can lock the device to run only that app once launched, or lock the device while a certain action is running (for example taking a test). Once the action is complete, or you remove the restriction, the device returns to its normal state.",
- "iosGeneralKiosk": "Kiosk mode locks various settings into a device, or specifies a single app that can be run on a device. This can be useful in environments like a retail store where you want a device to run only a single demo app.",
- "macDeviceFeaturesAirprint": "Use these settings to configure macOS devices to automatically connect to AirPrint compatible printers on your network. You'll need the IP address and resource path of your printers.",
- "macDeviceFeaturesAssociatedDomains": "Configure associated domains to share data and sign-in credentials between your org’s apps and websites. This profile can be applied to devices running macOS 10.15 or later.",
- "macDeviceFeaturesExtensibleSingleSignOn": "Configure an app extension that enables single sign-on (SSO) for devices running macOS 10.15 or later.",
- "macDeviceFeaturesLoginItems": "Choose which apps, files, and folders open when users log in to their devices. If you don't want users to change how the selected apps open, you can hide the app from the user configuration.",
- "macDeviceFeaturesLoginWindow": "Configure the appearance of the macOS login screen and the functions that are available to users before and after they log in.",
- "macExtensionsKernelExtensions": "Use these settings to configure kernel extension policy on macOS devices running 10.13.2 or later.",
- "macGeneralDomains": "Emails that the user sends or receives which don't match the domains you specify here will be marked as untrusted.",
- "windows10EndpointProtectionApplicationGuard": "While using Microsoft Edge, Microsoft Defender Application Guard protects your environment from sites that haven’t been defined as trusted by your organization. When users visit sites that aren’t listed in your isolated network boundary, the sites will be opened in a virtual browsing session in Hyper-V. Trusted sites are defined by a network boundary, which can be configured in Device Configuration. Note this feature is only available for devices running 64-bit Windows 10 or later.",
- "windows10EndpointProtectionCredentialGuard": "Enabling Credential Guard will enable the following required settings:\n
\n \n - Enable Virtualization-based Security: Turns on virtualization-based security (VBS) at next reboot. Virtualization-based security uses the Windows Hypervisor to provide support for security services.
\n
\n - Secure Boot with Direct Memory Access: Turns on VBS with Secure Boot and direct memory access (DMA).
\n
\n ",
- "windows10EndpointProtectionDeviceGuard": "Choose additional apps that either need to be audited by, or can be trusted to run by Microsoft Defender Application Control. Windows components and all apps from Windows store are automatically trusted to run.
\n Applications will not be blocked when running in “audit only” mode. “Audit only” mode logs all events in local client logs.\n ",
- "windows10GeneralPrivacyPerApp": "Add apps that should have a different privacy behavior from what you defined in “Default privacy”.",
- "windows10NetworkBoundaryNetworkBoundary": "The network boundary is the list of enterprise resources, such as cloud-hosted domain and IP address ranges for computers that are on the enterprise network. Define network boundaries to apply policies to protect data that resides in these locations.",
- "windowsHealthMonitoring": "Configure the Windows health monitoring policy.",
- "windowsPhoneGeneralApplicationRestrictions": "Windows Phone can block users from installing or launching apps specified in the prohibited apps list, or apps not specified in the approved apps list. All managed apps must be added to the approved list."
- },
"MinimumOperatingSystem": {
"Android": {
"v10": "Android 10.0",
@@ -2435,6 +1154,304 @@
"excludedGroups": "Excluded Groups",
"licenseType": "License type"
},
+ "TAP": {
+ "AccessRequirements": {
+ "infoText": "Configure the PIN and credential requirements that users must meet to access apps in a work context."
+ },
+ "DataProtection": {
+ "infoText": "This group includes the data loss prevention (DLP) controls, like cut, copy, paste, and save-as restrictions. These settings determine how users interact with data in the apps."
+ },
+ "DeviceTypes": {
+ "selectOne": "Select at least one device type."
+ },
+ "TargetedApps": {
+ "TargetToAll": {
+ "label": "Target to apps on all device types"
+ },
+ "infoText": "Choose how you want to apply this policy to apps on different devices. Then add at least one app.",
+ "selectOne": "Select at least one app to create a policy."
+ }
+ },
+ "AssignmentAction": {
+ "exclude": "Excluded",
+ "include": "Included",
+ "includeAllDevicesVirtualGroup": "Included",
+ "includeAllUsersVirtualGroup": "Included"
+ },
+ "AppType": {
+ "androidEnterpriseSystemApp": "Android Enterprise system app",
+ "androidForWorkApp": "Managed Google Play store app",
+ "androidLobApp": "Android line-of-business app",
+ "androidStoreApp": "Android store app",
+ "builtInAndroid": "Built-In Android app",
+ "builtInApp": "Built-In app",
+ "builtInIos": "Built-In iOS app",
+ "default": "",
+ "iosLobApp": "iOS line-of-business app",
+ "iosStoreApp": "iOS store app",
+ "iosVppApp": "iOS volume purchase program app",
+ "lineOfBusinessApp": "Line-of-business app",
+ "macOSDmgApp": "macOS app (DMG)",
+ "macOSEdgeApp": "Microsoft Edge (macOS)",
+ "macOSLobApp": "macOS line-of-business app",
+ "macOSMdatpApp": "Microsoft Defender ATP (macOS)",
+ "macOSOfficeSuiteApp": "Microsoft 365 Apps (macOS)",
+ "macOsVppApp": "macOS volume purchase program app",
+ "managedAndroidLobApp": "Managed Android line-of-business app",
+ "managedAndroidStoreApp": "Managed Android store app",
+ "managedGooglePlayApp": "Managed Google Play store app",
+ "managedGooglePlayPrivateApp": "Managed Google Play private app",
+ "managedGooglePlayWebApp": "Managed Google Play web link",
+ "managedIosLobApp": "Managed iOS line-of-business app",
+ "managedIosStoreApp": "Managed iOS store app",
+ "microsoftStoreForBusinessApp": "Microsoft Store for Business app",
+ "microsoftStoreForBusinessReleaseManagedApp": "Microsoft Store for Business",
+ "officeSuiteApp": "Microsoft 365 Apps (Windows 10 and later)",
+ "webApp": "Web link",
+ "windowsAppXLobApp": "Windows AppX line-of-business app",
+ "windowsClassicApp": "Windows app (Win32)",
+ "windowsEdgeApp": "Microsoft Edge (Windows 10 and later)",
+ "windowsMobileMsiLobApp": "Windows MSI line-of-business app",
+ "windowsPhone81AppXBundleLobApp": "Windows Phone 8.1 AppX line-of-business app",
+ "windowsPhone81AppXLobApp": "Windows Phone 8.1 AppX line-of-business app",
+ "windowsPhone81StoreApp": "Windows Phone 8.1 store app",
+ "windowsPhoneXapLobApp": "Windows Phone XAP line-of-business app",
+ "windowsStoreApp": "Microsoft Store app",
+ "windowsUniversalAppXLobApp": "Windows Universal AppX line-of-business app",
+ "windowsUniversalLobApp": "Windows Universal line-of-business app"
+ },
+ "TAPSettings": {
+ "AllowedDataIngestionLocations": {
+ "label": "Allow users to open data from selected services",
+ "tooltip": "Select the application storage services users can open data from. All other services are blocked. Selecting no services will prevent users from opening data."
+ },
+ "AndroidBackup": {
+ "label": "Backup org data to Android backup services",
+ "tooltip": "Select {0} to prevent backup of org data to Android backup services. \nSelect {1} to permit backup of org data to Android backup services. \nPersonal or unmanaged data is not affected."
+ },
+ "AndroidBiometricAuthentication": {
+ "label": "Biometrics instead of PIN for access",
+ "tooltip": "Choose which android authentication methods people can use, if any, in place of an app PIN."
+ },
+ "AndroidFingerprint": {
+ "label": "Fingerprint instead of PIN for access (Android 6.0+)",
+ "tooltip": "Android OS uses fingerprint scans to authenticate Android-device users. This feature supports the native biometric controls on Android devices. OEM-specific biometric settings, like Samsung Pass, are not supported. If allowed, native biometric controls must be used to access the app on a capable device."
+ },
+ "AndroidOverrideFingerprint": {
+ "label": "Override fingerprint with PIN after timeout"
+ },
+ "AppPIN": {
+ "label": "App PIN when device PIN is set",
+ "tooltip": "If not required, an app PIN does not need to be used to access the app if the device PIN is set on an MDM enrolled device.
\n\nNote: Intune cannot detect device enrollment with a third-party EMM solution on Android."
+ },
+ "BlockDataIngestionIntoOrganizationDocuments": {
+ "label": "Open data into Org documents",
+ "tooltip1": "Select Block to disable the use of the Open option or other options to share data between accounts in this app. Select Allow if you want to allow the use of Open and other options to share data between accounts in this app.",
+ "tooltip2": "When set to Block, you can configure the following setting, Allow user to open data from selected services, to specify which services are allowed for Org data locations.",
+ "tooltip3": "Note: This setting is only enforced if the setting \"Receive data from other apps\" is set to \"Policy managed apps\".
\nNote: This setting does not apply to all applications. For more information see {0}.",
+ "tooltip4": "Note: This setting is only enforced if the setting \"Receive data from other apps\" is set to \"Policy managed apps\".
\nNote: This setting does not apply to all applications. For more information see {0} or {0}."
+ },
+ "ConnectToVpnOnLaunch": {
+ "label": "Start Microsoft Tunnel connection on app-launch",
+ "tooltip": "Allow connection to VPN when app is launch"
+ },
+ "CredentialsForAccess": {
+ "label": "Work or school account credentials for access",
+ "tooltip": "If required, work or school credentials must be used to access the policy-managed app. If PIN or biometric methods also required for access to the app, the work or school account credentials will be required on top of those prompts."
+ },
+ "CustomBrowserDisplayName": {
+ "label": "Unmanaged Browser Name",
+ "tooltip": "Enter the application name for browser associated with the \"Unmanaged Browser ID\". This name will be displayed to users if the specified browser is not installed."
+ },
+ "CustomBrowserPackageId": {
+ "label": "Unmanaged Browser ID",
+ "tooltip": "Enter the application ID for a single browser. Web content (http/s) from policy managed applications will open in the specified browser."
+ },
+ "CustomBrowserProtocol": {
+ "label": "Unmanaged browser protocol",
+ "tooltip": "Enter the protocol for a single unmanaged browser. Web content (http/s) from policy managed applications will open in any app that supports this protocol.
\n \nNote: Include only the protocol prefix. If your browser requires links of the form \"mybrowser://www.microsoft.com\", enter \"mybrowser\".
"
+ },
+ "CustomDialerAppDisplayName": {
+ "label": "Dialer App Name"
+ },
+ "CustomDialerAppPackageId": {
+ "label": "Dialer App Package ID"
+ },
+ "CustomDialerAppProtocol": {
+ "label": "Dialer App URL Scheme"
+ },
+ "Cutcopypaste": {
+ "label": "Restrict cut, copy, and paste between other apps",
+ "tooltip": "Cut, copy, and paste data between your app and other approved apps installed on the device. Choose to block these actions completely between apps, allow these actions for use with any app, or restrict use to apps that your organization manages.
\n\nPolicy-managed apps with paste in gives you the option to accept incoming content pasted from another app. However, it blocks users from sharing content outwardly, unless sharing with a managed app.
"
+ },
+ "DialerRestrictionLevel": {
+ "iosTooltip": "Typically, when a user selects a hyperlinked phone number in an app, a dialer app will open with the phone number prepopulated and ready to call. For this setting, choose how to handle this type of content transfer when it's initiated from a policy-managed app. Additional steps may be necessary in order for this setting to take effect. First, verify that tel and telprompt have been removed from the Select apps to exempt list. Then, ensure the application is using a newer version of Intune SDK (Version 12.7.0+).",
+ "label": "Transfer telecommunication data to",
+ "tooltip": "Typically, when a user selects a hyperlinked phone number in an app, a dialer app will open with the phone number prepopulated and ready to call. For this setting, choose how to handle this type of content transfer when it's initiated from a policy-managed app."
+ },
+ "EncryptData": {
+ "label": "Encrypt org data",
+ "link": "https://docs.microsoft.com/en-us/intune/app-protection-policy-settings-android#data-relocation-settings",
+ "tooltip": "Select {0} to enforce encrypting org data with Intune app layer encryption.\n
\nSelect {1} to not enforce encrypting org data with Intune app layer encryption.\n\n
\nNote: For more information on Intune app layer encryption, see {2}."
+ },
+ "EncryptDataAndroid": {
+ "tooltip": "Choose Require to enable encryption of work or school data in this app. Intune uses an OpenSSL, 256-bit AES encryption scheme along with the Android Keystore system to securely encrypt app data. Data is encrypted synchronously during file I/O tasks. Content on the device storage is always encrypted. The SDK will continue to provide support of 128-bit keys for compatibility with content and apps that use older SDK versions.
\n\nThe encryption method is FIPS 140-2 compliant.
"
+ },
+ "EncryptDataIos": {
+ "tooltip1": "Choose Require to enable encryption of work or school data in this app. Intune enforces iOS/iPadOS device encryption to protect app data while the device is locked. Applications may optionally encrypt app data using Intune APP SDK encryption. Intune APP SDK uses iOS/iPadOS cryptography methods to apply 128-bit AES encryption to app data.",
+ "tooltip2": "When you enable this setting, the user may be required to set up and use a PIN to access their device. If there's no device PIN and encryption is required, the user is prompted to set a PIN with the message \"Your organization has required you to first enable a device PIN to access this app.\"",
+ "tooltip3": "Go to the official Apple documentation to see which iOS encryption modules are FIPS 140-2 compliant or pending FIPS 140-2 compliance."
+ },
+ "EncryptDataOnEnrolledDevices": {
+ "label": "Encrypt org data on enrolled devices",
+ "tooltip": "Select {0} to enforce encrypting org data with Intune app layer encryption on all devices.
\n\nSelect {1} to not enforce encrypting org data with Intune app layer encryption on enrolled devices."
+ },
+ "IOSBackup": {
+ "label": "Backup org data to iTunes and iCloud backups",
+ "tooltip": "Select {0} to prevent backup of org data to iTunes or iCloud. \nSelect {1} to permit backup of org data to iTunes or iCloud. \nPersonal or unmanaged data is not affected."
+ },
+ "IOSFaceID": {
+ "label": "Face ID instead of PIN for access (iOS 11+/iPadOS)",
+ "tooltip": "Face ID uses facial recognition technology to authenticate users on iOS/iPadOS devices. Intune calls the LocalAuthentication API to authenticate users using Face ID. If allowed, Face ID must be used to access the app on a Face ID capable device."
+ },
+ "IOSOverrideTouchId": {
+ "label": "Override biometrics with PIN after timeout"
+ },
+ "IOSTouchId": {
+ "label": "Touch ID instead of PIN for access (iOS 8+/iPadOS)",
+ "tooltip": "Touch ID uses fingerprint recognition technology to authenticate users on iOS devices. Intune calls the LocalAuthentication API to authenticate users using Touch ID. If allowed, Touch ID must be used to access the app on a Touch ID capable device."
+ },
+ "NotificationRestriction": {
+ "label": "Org data notifications",
+ "tooltip": "Select one of the following options to specify how notifications for org accounts are shown for this app and any connected devices such as wearables:
\n{0}: Do not share notifications.
\n{1}: Do not share org data in notifications. If not supported by the application, notifications are blocked.
\n{2}: Share all notifications.
\n Android only:\n Note: This setting does not apply to all applications. For more information see {3}
\n \n iOS only:\nNote: This setting does not apply to all applications. For more information see {4}
"
+ },
+ "OpenLinksManagedBrowser": {
+ "label": "Restrict web content transfer with other apps",
+ "tooltip": "Select one of the following options to specify the apps that this app can open web content in:
\nEdge: Allow web content to open only in Edge
\nUnmanaged browser: Allow web content to open only in the unmanaged browser defined by \"Unmanaged browser protocol\" setting
\nAny app: Allow web links in any app
"
+ },
+ "OverrideBiometric": {
+ "tooltip": "If required, depending on the timeout (minutes of inactivity), a PIN prompt will override biometric prompts. If this timeout value is not met, the biometric prompt will continue to show. This timeout value should be greater than the value specified under 'Recheck the access requirements after (minutes of inactivity)'. "
+ },
+ "PinAccess": {
+ "label": "PIN for access",
+ "tooltip": "If required, a PIN must be used to access the policy-managed app. Users must create an access PIN the first time that they open the app from a work or school account."
+ },
+ "PinLength": {
+ "label": "Select minimum PIN length",
+ "tooltip": "This setting specifies the minimum number of digits of a PIN."
+ },
+ "PinType": {
+ "label": "PIN type",
+ "tooltip": "Numeric PINs are made up of all numbers. Passcodes are made up of alphanumeric characters and special characters. "
+ },
+ "Printing": {
+ "label": "Printing org data",
+ "tooltip": "If blocked, the app cannot print protected data."
+ },
+ "ReceiveData": {
+ "label": "Receive data from other apps",
+ "tooltip": "Select one of the following options to specify the apps that this app can receive data from:
\n\nNone: Do not allow receiving data in org documents or accounts from any app
\n\nPolicy managed apps: Only allow receiving data in org documents or accounts from other policy managed apps\n
\nAny app with incoming org data: Allow receiving data in org documents or accounts from from any app and treat all incoming data without an user account as org data
\n\nAll apps: Allow receiving data in org documents or accounts from any app"
+ },
+ "RecheckAccessAfter": {
+ "label": "Recheck the access requirements after (minutes of inactivity)\n\n",
+ "tooltip": "If the policy-managed app is inactive for longer than the number of minutes of inactivity specified, the app will prompt the access requirements (i.e PIN, conditional launch settings) to be rechecked after the app is launched."
+ },
+ "RestrictKeyboards": {
+ "duplicatePackageError": "The package ID must be unique.",
+ "invalidPackageError": "Invalid package ID",
+ "label": "Approved keyboards",
+ "select": "Select keyboards to approve",
+ "subtitle": "Add all keyboards and input methods that users are allowed to use with targeted apps. Enter the keyboard name as you would like it to appear to the end user.",
+ "title": "Add approved keyboards",
+ "toolTip": "Select Require and then specify a list of approved keyboards for this policy. Learn more."
+ },
+ "SaveData": {
+ "label": "Save copies of org data",
+ "tooltip": "Select {0} to prevent saving a copy of org data to a new location, other than the selected storage services, using \"Save As\".\n Select {1} to permit saving a copy of org data to a new location using \"Save As\".
\n\n\nNote: This setting does not apply to all applications. For more information see {2}.\n"
+ },
+ "SaveDataToSelected": {
+ "label": "Allow user to save copies to selected services",
+ "tooltip": "Select the storage services users can save copies of org data to. All other services are blocked. Selecting no services will prevent users from saving a copy of org data."
+ },
+ "ScreenCaptureAndAndroidAssistant": {
+ "label": "Screen capture and Google Assistant\n",
+ "tooltip": "If blocked, both screen capture and Google Assistant app scanning capabilities will be disabled when using the policy-managed app. This feature supports the usual Google Assistant app. Third party assistants using Google's Assist API are not supported. Choosing Block will also blur the App-Switcher preview image when using the app with a work or school account."
+ },
+ "SendData": {
+ "label": "Send org data to other apps",
+ "tooltip": "Select one of the following options to specify the apps that this app can send org data to:
\n\n\nNone: Do not allow sending org data to any app
\n\n\nPolicy managed apps: Only allow sending org data to other policy managed apps
\n\n\nPolicy managed apps with OS sharing: Only allow sending org data to other policy managed apps and sending org documents to other MDM managed apps on enrolled devices
\n\n\nPolicy managed apps with Open-In/Share filtering: Only allow sending org data to other policy managed apps and filter OS Open-in/Share dialogs to only display policy managed apps\n
\n\nAll apps: Allow sending org data to any app"
+ },
+ "SimplePin": {
+ "label": "Simple PIN",
+ "tooltip": "If blocked, users may not create a simple PIN. A simple PIN is a string of consecutive or repetitive digits, such as 1234, ABCD, or 1111. Please note that blocking simple PIN of type 'Passcode' requires the passcode to have at least one number, one letter, and one special character."
+ },
+ "SyncContacts": {
+ "label": "Sync policy managed app data with native apps or add-ins"
+ },
+ "ThirdPartyKeyboards": {
+ "infoBox": "Keyboard restrictions will apply to all areas of an app. Personal accounts for apps that support multiple identities will be affected by this restriction. Learn more.",
+ "label": "Third party keyboards"
+ },
+ "Timeout": {
+ "label": "Timeout (minutes of inactivity)"
+ },
+ "Tap": {
+ "numberOfDays": "Number of days",
+ "pinResetAfterNumberOfDays": "PIN reset after number of days",
+ "previousPinBlockCount": "Select number of previous PIN values to maintain"
+ }
+ },
+ "ScheduledAction": {
+ "Form": {
+ "editBlockActionInfo": "One block action is required for all compliance policies.",
+ "graceperiod": "Schedule (days after noncompliance)",
+ "graceperiodInfo": "Specify the number of days after noncompliance after which this action should be triggered for the user's device",
+ "subtitle": "Specify action parameters",
+ "title": "Action parameters"
+ },
+ "List": {
+ "gracePeriodDay": "{0} day after noncompliance",
+ "gracePeriodDays": "{0} days after noncompliance",
+ "gracePeriodHour": "{0} hour after noncompliance",
+ "gracePeriodHours": "{0} hours after noncompliance",
+ "gracePeriodMinute": "{0} minute after noncompliance",
+ "gracePeriodMinutes": "{0} minutes after noncompliance",
+ "immediately": "Immediately",
+ "schedule": "Schedule",
+ "scheduleInfoBalloon": "Days after noncompliance",
+ "subtitle": "Specify the sequence of actions on noncompliant devices",
+ "title": "Actions"
+ },
+ "Notification": {
+ "additionalEmailLabel": "Others",
+ "additionalRecipients": "Additional recipients (via email)",
+ "additionalRecipientsBladeTitle": "Select additional recipients",
+ "emailAddressPrompt": "Enter email addresses (separated by commas)",
+ "invalidEmail": "Invalid email address",
+ "messageTemplate": "Message template",
+ "noneSelected": "None selected",
+ "notSelected": "Not selected",
+ "numSelected": "{0} selected",
+ "selected": "Selected"
+ },
+ "block": "Mark device noncompliant",
+ "lockDevice": "Lock device (local action)",
+ "lockDeviceWithPasscode": "Lock device (local action)",
+ "noAction": "No action",
+ "noActionRow": "No actions, select 'Add' to add an action",
+ "pushNotification": "Send push notification to end user",
+ "remoteLock": "Remotely lock the noncompliant device",
+ "removeSourceAccessProfile": "Remove source access profile",
+ "retire": "Retire the noncompliant device",
+ "wipe": "Wipe",
+ "emailNotification": "Send email to end user"
+ },
+ "InstallIntent": {
+ "available": "Available for enrolled devices",
+ "availableWithoutEnrollment": "Available with or without enrollment",
+ "required": "Required",
+ "uninstall": "Uninstall"
+ },
"EnrollmentStatusScreen": {
"Apps": {
"managedApps": "Managed apps",
@@ -2466,142 +1483,61 @@
"resetToggle": "Allow users to reset device if installation error occurs",
"timeout": "Show an error when installation takes longer than specified number of minutes"
},
- "EnrollmentType": {
- "devicesWithEnrollment": "Managed devices",
- "devicesWithoutEnrollment": "Managed apps"
- },
- "ApplicabilityRules": {
- "GridLabel": {
- "property": "Property",
- "rule": "Rule",
- "ruleDetails": "Rule Details",
- "value": "Value"
- },
- "assignIf": "Assign profile if",
- "deleteWarning": "This will delete the selected Applicability Rule",
- "dontAssignIf": "Don't assign profile if",
- "editionDisplayText": "{0} {1}",
- "editionDisplayTextMore": "and {0} more",
- "instructions": "Specify how to apply this profile within an assigned group. Intune will only apply the profile to devices that meet the combined criteria of these rules.",
- "maxText": "Max",
- "minText": "Min",
- "noActionRow": "No Applicability Rules Specified",
- "oSVersion": "e.g. 1.2.3.4",
- "toText": "to",
- "windows10Education": "Windows 10/11 Education",
- "windows10EducationN": "Windows 10/11 Education N",
- "windows10Enterprise": "Windows 10/11 Enterprise",
- "windows10EnterpriseN": "Windows 10/11 Enterprise N",
- "windows10HolographicEnterprise": "Windows 10 Holographic for Business",
- "windows10Home": "Windows 10/11 Home",
- "windows10HomeChina": "Windows 10 Home China",
- "windows10HomeN": "Windows 10/11 Home N",
- "windows10HomeSingleLanguage": "Windows 10/11 Home Single Language",
- "windows10IoTCore": "Windows 10 IoT Core",
- "windows10IoTCoreCommercial": "Windows 10 IoT Core Commercial",
- "windows10Mobile": "Windows 10 Mobile",
- "windows10MobileEnterprise": "Windows 10 Mobile Enterprise",
- "windows10OsEdition": "OS edition",
- "windows10OsVersion": "OS version",
- "windows10Professional": "Windows 10/11 Professional",
- "windows10ProfessionalEducation": "Windows 10/11 Professional Education",
- "windows10ProfessionalEducationN": "Windows 10/11 Professional Education N",
- "windows10ProfessionalN": "Windows 10 Professional N",
- "windows10ProfessionalWorkstation": "Windows 10/11 Professional Workstation",
- "windows10ProfessionalWorkstationN": "Windows 10/11 Professional Workstation N"
+ "Devices": {
+ "General": {
+ "android": "Android"
+ },
+ "aOSP": "Android open source project",
+ "android": "Android device administrator",
+ "androidWorkProfile": "Android Enterprise (work profile)",
+ "iOS": "iOS/iPadOS",
+ "mac": "macOS",
+ "windows": "Windows (MDM)",
+ "windows10": "Windows 10 and later",
+ "windowsHomeSku": "Windows Home Sku",
+ "windowsMobile": "Windows Mobile"
+ },
+ "AppInfoBalloonText": {
+ "Certificate": {
+ "customSubjectName": "CN={{UserName}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US\nor\nCN={{AAD_Device_ID}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US",
+ "keySize": "Select the number of bits contained in the key.",
+ "keyUsage": "Specify the cryptographic action that is required to exchange the certificate’s public key.",
+ "renewalThreshold": "Enter the percentage (between 1 and 99 percent) of remaining certificate lifetime that is allowed before a device can request renewal of the certificate. The recommended amount in Intune is 20%. (1-99)",
+ "rootCert": "Choose a previously configured and assigned root CA certificate profile. The CA certificate must match the root certificate of the CA that is issuing the certificate for this profile (the one you are currently configuring).",
+ "scepServerUrl": "Enter a URL for the NDES Server that issues certificates through SCEP (Must be HTTPS). e.g. https://contoso.com/certsrv/mscep/mscep.dll",
+ "scepServerUrls": "Add one or more URLs for the NDES Server that issues certificates through SCEP (Must be HTTPS). e.g. https://contoso.com/certsrv/mscep/mscep.dll",
+ "subjectAlternativeName": "Subject alternative name",
+ "subjectNameFormat": "Subject name format",
+ "validityPeriod": "The amount of time remaining before the certificate expires. Enter a value that is equal to or lower than the validity period shown in the certificate template. Default is set at one year."
+ },
+ "appInstallContext": "This specifies the install context to be associated with this app. For dual mode apps, select the desired context for this app. For all other apps, this is pre-selected based on the package and cannot be modified.",
+ "autoUpdateMode": "Configure the update priority for the app. Select Default to require the device to be connected to WiFi, to be charging, and not to be actively in use before updating the app. Select High Priority to update the app as soon as the developer has published the app, regardless of charge status, WiFi capability, or end user activity on the device. Select Postponed to forgo app updates for up to 90 days. High priority and postponed will only take effect on DO devices.",
+ "configurationSettingsFormat": "Configuration settings format text",
+ "ignoreVersionDetection": "Set this to “Yes” for apps that are automatically updated by the app developer (such as Google Chrome).",
+ "ignoreVersionDetectionMacOSLobApp": "Select \"Yes\" for apps that are automatically updated by app developer or to only check for app bundleID before installation. Select \"No\" to check for app bundleID and version number before installation.",
+ "installAsManagedMacOSLobApp": "This setting only applies to macOS 11 and higher. The app will be installed but not managed on macOS 10.15 and lower.",
+ "installContextDropdown": "Select the appropriate install context. User context will install the app only for the targeted user while device context will install the app for all users on the device.",
+ "ldapUrl": "This is the LDAP hostname where clients can get the public encryption keys for email recipients. Emails will be encrypted when a key is available. Supported formats: - ldap.example.com
\n- ldap.example.com:123
\n- ldap://ldap.example.com
- ldap://ldap.example.com:123
- ldaps://ldap.example.com
\n- ldaps://ldap.example.com:123
",
+ "permissionsSettings": "Select runtime permissions for the associated app.",
+ "policyAssociatedApp": "Select the app that this policy will be associated with.",
+ "policyConfigurationSettings": "Select the method you want to use to define configuration settings for this policy.",
+ "policyDescription": "Optionally, enter a description for this configuration policy.",
+ "policyEnrollmentType": "Choose whether these settings are managed through device management or apps made with Intune SDK.",
+ "policyName": "Enter a name for this configuration policy.",
+ "policyPlatform": "Select the platform this app configuration policy will apply to.",
+ "policyProfileType": "Select the device profile types that this app configuration profile will apply to",
+ "policySMime": "Configure S/MIME signing and encryption settings for Outlook.",
+ "sMimeDeployCertsFromIntune": "Specify whether or not S/MIME certificates will be delivered from Intune for use with Outlook.\nIntune can automatically deploy signing and encryption certificates to users through the Company Portal.",
+ "sMimeEnable": "Specify whether or not S/MIME controls are enabled when composing an email",
+ "sMimeEnableAllowChange": "Specify if the user is allowed to change the Enable S/MIME setting.",
+ "sMimeEncryptAllEmails": "Specify whether or not all emails must be encrypted.\nEncrypting converts data to cipher text so that only the intended recipient can read it.",
+ "sMimeEncryptAllEmailsAllowChange": "Specify if the user is allowed to change the Encrypt all emails setting.",
+ "sMimeEncryptionCertProfile": "Specify certificate profile for email encryption.",
+ "sMimeSignAllEmails": "Specify whether or not all emails must be signed.\nA digital signature verifies the authenticity of the email and ensures that the contents are not tampered with in transit.",
+ "sMimeSignAllEmailsAllowChange": "Specify if the user is allowed to change the Sign all emails setting.",
+ "sMimeSigningCertProfile": "Specify certificate profile for email signing.",
+ "sMimeUserNotificationType": "Method to notify users that they must open Company Portal to retrieve S/MIME certificates for Outlook."
},
- "BooleanActions": {
- "allow": "Allow",
- "block": "Block",
- "configured": "Configured",
- "disable": "Disable",
- "dontRequire": "Don't Require",
- "enable": "Enable",
- "hide": "Hide",
- "limit": "Limit",
- "notConfigured": "Not configured",
- "require": "Require",
- "show": "Show",
- "yes": "Yes"
- },
- "ProactiveRemediations": {
- "Create": {
- "Basics": {
- "DescriptionMultiLineTextBox": {
- "label": "Description",
- "placeholder": "Enter a description"
- },
- "NameTextBox": {
- "label": "Name",
- "placeholder": "Enter a name"
- },
- "PublisherTextBox": {
- "label": "Publisher",
- "placeholder": "Enter a publisher"
- },
- "VersionTextBox": {
- "label": "Version"
- },
- "headerDescription": "Create a new custom script package from detection and remediation scripts that you’ve written."
- },
- "ScopeTags": {
- "headerDescription": "Select one or more groups to assign the script package."
- },
- "Settings": {
- "DetectionScriptMultiLineTextBox": {
- "label": "Detection script",
- "placeholder": "Input script text",
- "requiredValidationMessage": "Please enter the detection script"
- },
- "EnforceScriptSignatureCheckOptionPicker": {
- "label": "Enforce script signature check"
- },
- "LoggedOnCredentialsOptionPicker": {
- "label": "Run this script using the logged-on credentials"
- },
- "RemediationScript": {
- "infoBox": "This script will run in detect-only mode because there is no remediation script."
- },
- "RemediationScriptMultiLineTextBox": {
- "label": "Remediation script",
- "placeholder": "Input script text"
- },
- "RunIn64BitPSOptionPicker": {
- "label": "Run script in 64-bit PowerShell"
- },
- "ScriptMultiLineTextBox": {
- "base64EncodingValidationMessage": "Invalid script. One or more characters used in the script is not valid."
- },
- "headerDescription": "Create a custom script package from scripts you've written. By default, scripts will run on assigned devices every day.",
- "infoBox": "This script is read-only. Some of the settings for this script might be disabled."
- },
- "title": "Create custom script",
- "ScriptProperties": {
- "GridHeaders": {
- "interval": "Interval",
- "time": "Date and time"
- },
- "Interval": {
- "day": "Repeats every day",
- "days": "Repeats every {0} days",
- "hour": "Repeats every hour",
- "hours": "Repeats every {0} hours",
- "month": "Repeats every month",
- "months": "Repeats every {0} months",
- "week": "Repeats every week",
- "weeks": "Repeats every {0} weeks"
- },
- "Time": {
- "utc": "{0} (UTC)",
- "utcWithDate": "{0} (UTC) on {1}",
- "withDate": "{0} on {1}"
- }
- }
- },
- "Edit": {
- "title": "Edit - {0}"
- }
- },
"WindowsManagement": {
"Assignment": {
"noAssignmentCustomAttributeDisplayText": "Assign custom attribute to at least one group. Go to Properties to edit assignments.",
@@ -2708,910 +1644,6 @@
"shellScriptObjectName": "Shell script",
"successfullySavedPolicy": "Saved {0}"
},
- "AssignmentFilters": {
- "assignmentFilterColumnHeader": "Filter",
- "noFilters": "None"
- },
- "Category": {
- "airPlay": "AirPlay",
- "airPrint": "AirPrint",
- "androidDefenderAtp": "Microsoft Defender for Endpoint",
- "androidDeviceOwnerApplications": "Applications",
- "androidForWorkPassword": "Device password",
- "appManagement": "Allow or Block apps",
- "applicationGuard": "Microsoft Defender Application Guard",
- "applicationRestrictions": "Restricted Apps",
- "applicationVisibility": "Show or Hide Apps",
- "applications": "App Store",
- "applicationsAndGames": "App Store, Doc Viewing, Gaming",
- "applicationsAndGoogle": "Google Play Store",
- "appsAndExperience": "Apps and experience",
- "associatedDomains": "Associated domains",
- "autonomousSingleAppMode": "Autonomous Single App Mode",
- "azureOperationalInsights": "Azure operational insights",
- "bitLocker": "Windows Encryption",
- "browser": "Browser",
- "builtinApps": "Built-in Apps",
- "cellular": "Cellular",
- "cloudAndStorage": "Cloud and Storage",
- "cloudPrint": "Cloud Printer",
- "complianceEmailProfile": "Email",
- "connectedDevices": "Connected Devices",
- "connectivity": "Cellular and connectivity",
- "contentCaching": "Content caching",
- "controlPanelAndSettings": "Control Panel and Settings",
- "credentialGuard": "Microsoft Defender Credential Guard",
- "customCompliance": "Custom Compliance",
- "customCompliancePreview": "Custom Compliance (Preview)",
- "customConfiguration": "Custom Configuration Profile",
- "customOMASettings": "Custom OMA-URI Settings",
- "customPreferences": "Preference file",
- "defender": "Microsoft Defender Antivirus",
- "defenderAntivirus": "Microsoft Defender Antivirus",
- "defenderExploitGuard": "Microsoft Defender Exploit Guard",
- "defenderFirewall": "Microsoft Defender Firewall",
- "defenderLocalSecurityOptions": "Local device security options",
- "defenderSecurityCenter": "Microsoft Defender Security Center",
- "deliveryOptimization": "Delivery Optimization",
- "derivedCredentialAuthenticationConfiguration": "Derived credential",
- "deviceExperience": "Device experience",
- "deviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
- "deviceGuard": "Microsoft Defender Application Control",
- "deviceHealth": "Device Health",
- "devicePassword": "Device password",
- "deviceProperties": "Device Properties",
- "deviceRestrictions": "General",
- "deviceSecurity": "System security",
- "display": "Display",
- "domainJoin": "Domain Join",
- "domains": "Domains",
- "edgeBrowser": "Microsoft Edge Legacy (Version 45 and earlier)",
- "edgeBrowserSmartScreen": "Microsoft Defender SmartScreen",
- "edgeKiosk": "Microsoft Edge kiosk mode",
- "editionUpgrade": "Edition Upgrade",
- "education": "Education",
- "educationDeviceCerts": "Device certificates",
- "educationStudentCerts": "Student certificates",
- "educationTakeATest": "Take a Test",
- "educationTeacherCerts": "Teacher certificates",
- "emailProfile": "Email",
- "enterpriseDataProtection": "Windows Information Protection",
- "expeditedCheckin": "Mobile device management configuration",
- "extensibleSingleSignOn": "Single sign-on app extension",
- "filevault": "FileVault",
- "firewall": "Firewall",
- "games": "Games",
- "gatekeeper": "Gatekeeper",
- "healthMonitoring": "Health monitoring",
- "homeScreenLayout": "Home Screen Layout",
- "iOSWallpaper": "Wallpaper",
- "importedPFX": "PKCS Imported Certificate",
- "iosDefenderAtp": "Microsoft Defender for Endpoint",
- "iosKiosk": "Kiosk",
- "kernelExtensions": "Kernel extensions",
- "keyboardAndDictionary": "Keyboard and Dictionary",
- "kiosk": "Kiosk",
- "kioskAndroidEnterprise": "Dedicated devices",
- "kioskConfiguration": "Kiosk",
- "kioskConfigurationV2": "Kiosk",
- "kioskWebBrowser": "Kiosk web browser",
- "lockScreenMessage": "Lock Screen Message",
- "lockedScreenExperience": "Locked Screen Experience",
- "logging": "Reporting and Telemetry",
- "loginItems": "Login items",
- "loginWindow": "Login window",
- "macDefenderAtp": "Microsoft Defender for Endpoint",
- "maintenance": "Maintenance",
- "malware": "Malware",
- "messaging": "Messaging",
- "networkBoundary": "Network boundary",
- "networkProxy": "Network proxy",
- "notifications": "App Notifications",
- "pKCS": "PKCS Certificate",
- "password": "Password",
- "personalProfile": "Personal profile",
- "personalization": "Personalization",
- "policyOverride": "Override Group Policy",
- "powerSettings": "Power Settings",
- "printer": "Printer",
- "privacy": "Privacy",
- "privacyPerApp": "Per-app privacy exceptions",
- "privacyPreferences": "Privacy preferences",
- "projection": "Projection",
- "sCCMCompliance": "Configuration Manager Compliance",
- "sCEP": "SCEP Certificate",
- "sCEPProperties": "SCEP Certificate",
- "sMode": "Mode switch (Windows Insider only)",
- "safari": "Safari",
- "search": "Search",
- "session": "Session",
- "sharedDevice": "Shared iPad",
- "sharedPCAccountManager": "Shared multi-user device",
- "singleSignOn": "Single sign-on",
- "smartScreen": "Microsoft Defender SmartScreen",
- "softwareUpdates": "Settings",
- "start": "Start",
- "systemExtensions": "System extensions",
- "systemSecurity": "System Security",
- "trustedCert": "Trusted Certificate",
- "updates": "Updates",
- "userRights": "User Rights",
- "usersAndAccounts": "Users and Accounts",
- "vPN": "Base VPN",
- "vPNApps": "Automatic VPN",
- "vPNAppsAndTrafficRules": "Apps and Traffic Rules",
- "vPNConditionalAccess": "Conditional Access",
- "vPNConnectivity": "Connectivity",
- "vPNDNSTriggers": "DNS Settings",
- "vPNIKEv2": "IKEv2 settings",
- "vPNProxy": "Proxy",
- "vPNSplitTunneling": "Split Tunneling",
- "vPNTrustedNetwork": "Trusted Network Detection",
- "webContentFilter": "Web Content Filter",
- "wiFi": "Wi-Fi",
- "win10Wifi": "Wi-Fi",
- "windowsAtp": "Microsoft Defender for Endpoint",
- "windowsDefenderATP": "Microsoft Defender for Endpoint",
- "windowsHelloForBusiness": "Windows Hello for Business",
- "windowsSpotlight": "Windows Spotlight",
- "wiredNetwork": "Wired network",
- "wireless": "Wireless",
- "wirelessProjection": "Wireless projection",
- "workProfile": "Work profile settings",
- "workProfilePassword": "Work profile password",
- "xboxServices": "Xbox services",
- "zebraMx": "MX profile (Zebra only)",
- "complianceActionsLabel": "Actions for noncompliance"
- },
- "MicrosoftEdgeChannel": {
- "beta": "Beta",
- "dev": "Dev",
- "stable": "Stable"
- },
- "ConfigurationTypes": {
- "Table": {
- "androidDeviceOwnerGeneral": "Device restrictions (device owner)",
- "androidForWorkGeneral": "Device restrictions (work profile)"
- },
- "androidCustom": "Custom",
- "androidDeviceOwnerGeneral": "Device restrictions",
- "androidDeviceOwnerPkcs": "PKCS Certificate",
- "androidDeviceOwnerScep": "SCEP Certificate",
- "androidDeviceOwnerTrustedCertificate": "Trusted Certificate",
- "androidDeviceOwnerVpn": "VPN",
- "androidDeviceOwnerWiFi": "Wi-Fi",
- "androidEmailProfile": "Email (Samsung KNOX only)",
- "androidForWorkCustom": "Custom",
- "androidForWorkEmailProfile": "Email",
- "androidForWorkGeneral": "Device restrictions",
- "androidForWorkImportedPFX": "PKCS imported certificate",
- "androidForWorkOemConfig": "OEMConfig",
- "androidForWorkPKCS": "PKCS certificate",
- "androidForWorkSCEP": "SCEP certificate",
- "androidForWorkTrustedCertificate": "Trusted certificate",
- "androidForWorkVpn": "VPN",
- "androidForWorkWiFi": "Wi-Fi",
- "androidGeneral": "Device restrictions",
- "androidImportedPFX": "PKCS imported certificate",
- "androidPKCS": "PKCS certificate",
- "androidSCEP": "SCEP certificate",
- "androidTrustedCertificate": "Trusted certificate",
- "androidVPN": "VPN",
- "androidWiFi": "Wi-Fi",
- "androidZebraMx": "MX profile (Zebra only)",
- "complianceAndroid": "Android compliance policy",
- "complianceAndroidDeviceOwner": "Fully managed, dedicated, and corporate-owned work profile",
- "complianceAndroidEnterprise": "Personally-owned work profile",
- "complianceAndroidForWork": "Android for Work compliance policy",
- "complianceIos": "iOS compliance policy",
- "complianceMac": "Mac compliance policy",
- "complianceWindows10": "Windows 10 and later compliance policy",
- "complianceWindows10Mobile": "Windows 10 mobile compliance policy",
- "complianceWindows8": "Windows 8 compliance policy",
- "complianceWindowsPhone": "Windows Phone compliance policy",
- "exchangeActiveSync": "Exchange Active Sync",
- "iosCustom": "Custom",
- "iosDerivedCredentialAuthenticationConfiguration": "Derived PIV credential",
- "iosDeviceFeatures": "Device features",
- "iosEDU": "Education",
- "iosEducation": "Education",
- "iosEmailProfile": "Email",
- "iosGeneral": "Device restrictions",
- "iosImportedPFX": "PKCS imported certificate",
- "iosPKCS": "PKCS certificate",
- "iosPresets": "Presets",
- "iosSCEP": "SCEP certificate",
- "iosTrustedCertificate": "Trusted certificate",
- "iosVPN": "VPN",
- "iosVPNZscaler": "VPN",
- "iosWiFi": "Wi-Fi",
- "macCustom": "Custom",
- "macDeviceFeatures": "Device features",
- "macEndpointProtection": "Endpoint protection",
- "macExtensions": "Extensions",
- "macGeneral": "Device restrictions",
- "macImportedPFX": "PKCS imported certificate",
- "macSCEP": "SCEP certificate",
- "macTrustedCertificate": "Trusted certificate",
- "macVPN": "VPN",
- "macWiFi": "Wi-Fi",
- "settingsCatalog": "Settings catalog (preview)",
- "unsupported": "Unsupported",
- "windows10AdministrativeTemplate": "Administrative Templates (Preview)",
- "windows10Atp": "Microsoft Defender for Endpoint (desktop devices running Windows 10 or later)",
- "windows10Custom": "Custom",
- "windows10DesktopSoftwareUpdate": "Software Updates",
- "windows10DeviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
- "windows10EmailProfile": "Email",
- "windows10EndpointProtection": "Endpoint protection",
- "windows10EnterpriseDataProtection": "Windows Information Protection",
- "windows10General": "Device restrictions",
- "windows10ImportedPFX": "PKCS imported certificate",
- "windows10Kiosk": "Kiosk",
- "windows10NetworkBoundary": "Network boundary",
- "windows10PKCS": "PKCS certificate",
- "windows10PolicyOverride": "Override Group Policy",
- "windows10SCEP": "SCEP certificate",
- "windows10SecureAssessmentProfile": "Education profile",
- "windows10SharedPC": "Shared multi-user device",
- "windows10TeamGeneral": "Device restrictions (Windows 10 Team)",
- "windows10TrustedCertificate": "Trusted certificate",
- "windows10VPN": "VPN",
- "windows10WiFi": "Wi-Fi",
- "windows10WiFiCustom": "Wi-Fi custom",
- "windows8General": "Device restrictions",
- "windows8SCEP": "SCEP certificate",
- "windows8TrustedCertificate": "Trusted certificate",
- "windows8VPN": "VPN",
- "windows8WiFi": "Wi-Fi import",
- "windowsDeliveryOptimization": "Delivery Optimization",
- "windowsDomainJoin": "Domain Join",
- "windowsEditionUpgrade": "Edition upgrade and mode switch",
- "windowsIdentityProtection": "Identity protection",
- "windowsPhoneCustom": "Custom",
- "windowsPhoneEmailProfile": "Email",
- "windowsPhoneGeneral": "Device restrictions",
- "windowsPhoneImportedPFX": "PKCS imported certificate",
- "windowsPhoneSCEP": "SCEP certificate",
- "windowsPhoneTrustedCertificate": "Trusted certificate",
- "windowsPhoneVPN": "VPN",
- "IosUpdate": "iOS Update policy"
- },
- "WindowsEnrollment": {
- "coManagementAuthorityDesc": "Configure co-management settings for Configuration Manager integration",
- "coManagementAuthorityTitle": "Co-management Settings ",
- "deploymentProfiles": "Windows Autopilot deployment profiles",
- "description": "Learn about the seven different ways a Windows 10/11 PC can be enrolled into Intune by users or admins.",
- "descriptionLabel": "Windows enrollment methods",
- "enrollmentStatusPage": "Enrollment Status Page"
- },
- "Platform": {
- "all": "All",
- "android": "Android device administrator",
- "androidAOSP": "Android (AOSP)",
- "androidEnterprise": "Android Enterprise",
- "androidForWork": "Android Enterprise",
- "androidWorkProfile": "Android enterprise",
- "common": "Common",
- "iOS": "iOS/iPadOS",
- "iosAndAndroidPlatformLabel": "iOS and Android",
- "iosCommaAndroidPlatformLabel": "iOS, Android",
- "linux": "Linux",
- "macOS": "macOS",
- "unknown": "Unknown",
- "unsupported": "Unsupported",
- "windows": "Windows",
- "windows10": "Windows 10 and later",
- "windows10CM": "Windows 10 and later (ConfigMgr)",
- "windows10Holo": "Windows 10 Holographic",
- "windows10Mobile": "Windows 10 Mobile",
- "windows10Team": "Windows 10 Team",
- "windows10X": "Windows 10X",
- "windows8": "Windows 8.1 and later",
- "windows8And10": "Windows 8 and 10",
- "windowsPhone": "Windows Phone 8.1",
- "windows10AndLater": "Windows 10 and later",
- "windows10AndWindowsServer": "Windows 10, Windows 11, and Windows Server (ConfigMgr)",
- "windows10andLaterCM": "Windows 10 and later (ConfigMgr)",
- "holoLens": "HoloLens",
- "surfaceHub2": "Surface Hub 2",
- "surfaceHub2S": "Surface Hub 2S",
- "windowsPC": "Windows PC"
- },
- "EnrollmentRestrictions": {
- "DeletePayloadLink": {
- "content": "{0} is included in one or more policy sets. If you delete {0}, you'll no longer be able to assign it via these policy sets. Delete anyway?",
- "contentWithError": "{0} might be included in one or more policy sets. If you delete {0}, you'll no longer be able to assign it via these policy sets. Delete anyway?",
- "header": "Are you sure you want to delete this restriction?"
- },
- "DeviceLimit": {
- "description": "Specify the maximum number of devices a user can enroll.",
- "header": "Device limit restrictions",
- "info": "Define how many devices each user can enroll."
- },
- "DeviceType": {
- "VersionValidation": {
- "aOSP": "Must be 1.0 or greater.",
- "android": "Enter a valid version number. Examples: 5.0, 5.5.1, 6.0.0.1",
- "androidForWork": "Enter a valid version number. Examples: 5.0, 5.1.1",
- "iOS": "Enter a valid version number. Examples: 9.0, 10.0, 9.0.2",
- "mac": "Enter a valid version number. Examples: 10, 10.10, 10.10.1",
- "min": "Minimum cannot be lower than {0}",
- "minMax": "Minimum version cannot be greater than maximum version.",
- "windows": "Must be 10.0 or greater. Leave blank to allow 8.1 devices",
- "windowsMobile": "Must be 10.0 or greater. Leave blank to allow 8.1 devices"
- },
- "allPlatformsBlocked": "All device platforms are blocked. Allow platform enrollment to enable platform configuration.",
- "blockManufacturerPlaceHolder": "Manufacturer name",
- "blockManufacturersHeader": "Blocked manufacturers",
- "cannotRestrict": "Restriction not supported",
- "configurationDescription": "Specify the platform configuration restrictions that must be met for a device to enroll. Use compliance policies to restrict devices after enrollment. Define versions as major.minor.build. Version restrictions only apply to devices enrolled with the Company Portal. Intune classifies devices as personally-owned by default. Additional action is required to classify devices as corporate-owned.",
- "configurationDescriptionLabel": "Learn more about setting enrollment restrictions",
- "configurations": "Configure platforms",
- "deviceManufacturer": "Device manufacturer",
- "header": "Device type restrictions",
- "info": "Define which platforms, versions, and management types can enroll.",
- "manufacturer": "Manufacturer",
- "max": "Max",
- "maxVersion": "Maximum version",
- "min": "Min",
- "minVersion": "Minimum version",
- "newPlatforms": "You have allowed new platforms. Consider updating Platform Configurations.",
- "personal": "Personally owned",
- "platform": "Platform",
- "platformDescription": "You can allow enrollment of the following platforms. Only block platforms you will not support. Allowed platforms can be configured with additional enrollment restrictions.",
- "platformSettings": "Platform settings",
- "platforms": "Select platforms",
- "platformsSelected": "{0} platforms selected",
- "type": "Type",
- "versions": "versions",
- "versionsRange": "Allow min/max range:",
- "windowsTooltip": "Restricts enrollment through Mobile Device Management. Does not restrict PC agent installation. Only Windows 10 and Windows 11 versions are supported. Leave versions blank to allow Windows 8.1."
- },
- "Priority": {
- "saved": "Restriction Priorities were successfully saved."
- },
- "Row": {
- "announce": "Priority: {0}, Name: {1}, Assigned: {2}"
- },
- "Table": {
- "deployed": "Deployed",
- "name": "Name",
- "priority": "Priority"
- },
- "Type": {
- "limit": "Device limit restriction",
- "type": "Device type restriction"
- },
- "allUsers": "All Users",
- "androidRestrictions": "Android restrictions",
- "create": "Create restriction",
- "defaultLimitDescription": "This is the default Device Limit Restriction applied with lowest priority to all users regardless of group membership.",
- "defaultTypeDescription": "This is the default Device Type Restriction applied with lowest priority to all users regardless of group membership.",
- "defaultWhfbDescription": "This is the default Windows Hello for Business configuration applied with the lowest priority to all users regardless of group membership.",
- "deleteMessage": "Affected users will be restricted by the next highest priority restriction assigned or the default restriction if no other restriction is assigned.",
- "deleteTitle": "Are you sure you want to delete {0} restriction?",
- "descriptionHint": "Short paragraph describing the business use or restriction level characterized by the restriction's settings.",
- "edit": "Edit restriction",
- "info": "A device must comply with the highest priority enrollment restrictions assigned to its user. You can drag a device restriction to change its priority. Default restrictions are lowest priority for all users and govern userless enrollments. Default restrictions may be edited, but not deleted.",
- "iosRestrictions": "iOS restrictions",
- "mDM": "MDM",
- "macRestrictions": "MacOS restrictions",
- "maxVersion": "Max Version",
- "minVersion": "Min Version",
- "nameHint": "This will be the primary attribute visible for identifying the restriction set.",
- "noAssignmentsStatusBar": "Assign restriction to at least one group. Click Properties.",
- "notFound": "Restriction not found. It may have already been deleted.",
- "personallyOwned": "Personally owned devices",
- "restriction": "Restriction",
- "restrictionLowerCase": "restriction",
- "restrictionType": "Restriction type",
- "selectType": "Select restriction type",
- "selectValidation": "Please select a platform",
- "typeHint": "Choose Device Type Restriction to restrict device properties. Choose Device Limit Restriction to restrict number of devices per-user.",
- "typeRequired": "Restriction type is required.",
- "winPhoneRestrictions": "Windows Phone restrictions",
- "windowsRestrictions": "Windows restrictions"
- },
- "Titles": {
- "ChromeOs": {
- "devices": "Chrome OS devices"
- },
- "ManagedDesktop": {
- "adminContacts": "Admin contacts",
- "appPackaging": "App packaging",
- "devices": "Devices",
- "feedback": "Feedback",
- "gettingStarted": "Getting started",
- "messages": "Messages",
- "onlineResources": "Online resources",
- "serviceRequests": "Service requests",
- "settings": "Settings",
- "tenantEnrollment": "Tenant enrollment"
- },
- "actions": "Actions for Non-Compliance",
- "advancedExchangeSettings": "Exchange online settings",
- "advancedThreatProtection": "Microsoft Defender for Endpoint",
- "allApps": "All apps",
- "allDevices": "All devices",
- "androidFotaDeployments": "Android FOTA deployments",
- "appBundles": "App Bundles",
- "appCategories": "App categories",
- "appConfigPolicies": "App configuration policies",
- "appInstallStatus": "App install status",
- "appLicences": "App licenses",
- "appProtectionPolicies": "App protection policies",
- "appProtectionStatus": "App protection status",
- "appSelectiveWipe": "App selective wipe",
- "appleVppTokens": "Apple VPP Tokens",
- "apps": "Apps",
- "assign": "Assignments",
- "assignedPermissions": "Assigned permissions",
- "assignedRoles": "Assigned roles",
- "autopilotDeploymentReport": "Autopilot deployments (preview)",
- "brandingAndCustomization": "Customization",
- "cartProfiles": "Cart profiles",
- "certificateConnectors": "Certificate connectors",
- "chromeEnterprise": "Chrome Enterprise",
- "compliancePolicies": "Compliance policies",
- "complianceScriptManagement": "Scripts",
- "complianceScriptManagementPreview": "Scripts (Preview)",
- "complianceSettings": "Compliance policy settings",
- "conditionStatements": "Condition statements",
- "conditions": "Locations",
- "configMgr": "Microsoft Endpoint Configuration Manager",
- "configurationProfiles": "Configuration profiles",
- "configurationProfilesPreview": "Configuration profiles (preview)",
- "connectorsAndTokens": "Connectors and tokens",
- "corporateDeviceIdentifiers": "Corporate device identifiers",
- "customAttributes": "Custom attributes",
- "customNotifications": "Custom notifications",
- "deploymentSettings": "Deployment settings",
- "derivedCredentials": "Derived Credentials",
- "deviceActions": "Device actions",
- "deviceCategories": "Device categories",
- "deviceCleanUp": "Device clean-up rules",
- "deviceEnrollmentManagers": "Device enrollment managers",
- "deviceExecutionStatus": "Device status",
- "deviceLimitEnrollmentRestrictions": "Enrollment device limit restrictions",
- "deviceTypeEnrollmentRestrictions": "Enrollment device platform restrictions",
- "devices": "Devices",
- "discoveredApps": "Discovered apps",
- "embeddedSIM": "eSIM cellular profiles (Preview)",
- "enrollDevices": "Enroll devices",
- "enrollmentFailures": "Enrollment failures",
- "enrollmentNotifications": "Enrollment notifications (Preview)",
- "enrollmentRestrictions": "Enrollment restrictions",
- "exchangeActiveSync": "Exchange ActiveSync",
- "exchangeServiceConnectors": "Exchange service connectors",
- "failuresForFeatureUpdates": "Feature update failures (Preview)",
- "failuresForQualityUpdates": "Windows Expedited update failures (Preview)",
- "featureFlighting": "Feature flighting",
- "featureUpdateDeployments": "Feature updates for Windows 10 and later (Preview)",
- "flighting": "Flighting",
- "fotaUpdate": "Firmware over-the-air update",
- "groupPolicy": "Administrative Templates",
- "groupPolicyAnalytics": "Group policy analytics",
- "helpSupport": "Help and support",
- "helpSupportReplacement": "Help and support ({0})",
- "iOSAppProvisioning": "iOS app provisioning profiles",
- "incompleteUserEnrollments": "Incomplete user enrollments",
- "intuneRemoteAssistance": "Remote help (preview)",
- "iosUpdates": "Update policies for iOS/iPadOS",
- "legacyPcManagement": "Legacy PC management",
- "macOSSoftwareUpdate": "Update policies for macOS",
- "macOSSoftwareUpdateAccountSummaries": "Installation status for macOS devices",
- "macOSSoftwareUpdateCategorySummaries": "Software updates summary",
- "macOSSoftwareUpdateStateSummaries": "updates",
- "managedGooglePlay": "Managed Google Play",
- "msfb": "Microsoft Store for Business",
- "myPermissions": "My permissions",
- "notifications": "Notifications",
- "officeApps": "Office apps",
- "officeProPlusPolicies": "Policies for Office apps",
- "onPremise": "On Premise",
- "onPremisesConnector": "Exchange ActiveSync on-premises connector",
- "onPremisesDeviceAccess": "Exchange ActiveSync devices",
- "onPremisesManageAccess": "Exchange on-premises access",
- "outOfDateIosDevices": "Installation failures for iOS devices",
- "overview": "Overview",
- "partnerDeviceManagement": "Partner device management",
- "perUpdateRingDeploymentState": "Per update ring deployment state",
- "permissions": "Permissions",
- "platformApps": "{0} apps",
- "platformDevices": "{0} devices",
- "platformEnrollment": "{0} enrollment",
- "policies": "Policies",
- "previewMDMDevices": "All managed devices (Preview)",
- "profiles": "Profiles",
- "properties": "Properties",
- "reports": "Reports",
- "retireNoncompliantDevices": "Retire noncompliant devices",
- "retireNoncompliantDevicesPreview": "Retire noncompliant devices (preview)",
- "role": "Role",
- "scriptManagement": "Scripts",
- "securityBaselines": "Security baselines",
- "serviceToServiceConnector": "Exchange online connector",
- "shellScripts": "Shell scripts",
- "teamViewerConnector": "TeamViewer connector",
- "telecomeExpenseManagement": "Telecom expense management",
- "tenantAdmin": "Tenant admin",
- "tenantAdministration": "Tenant administration",
- "termsAndConditions": "Terms and conditions",
- "titles": "Titles",
- "troubleshootSupport": "Troubleshooting + support",
- "user": "User",
- "userExecutionStatus": "User status",
- "warranty": "Warranty vendors",
- "wdacSupplementalPolicies": "S mode supplemental policies",
- "windows10DriverUpdate": "Driver updates for Windows 10 and later (Preview)",
- "windows10QualityUpdate": "Quality updates for Windows 10 and later (Preview)",
- "windows10UpdateRings": "Update rings for Windows 10 and later",
- "windows10XPolicyFailures": "Windows 10X policy failures",
- "windowsEnterpriseCertificate": "Windows enterprise certificate",
- "windowsManagement": "PowerShell scripts",
- "windowsSideLoadingKeys": "Windows side loading keys",
- "windowsSymantecCertificate": "Windows DigiCert certificate",
- "windowsThreatReport": "Threat agent status"
- },
- "ScopeTypes": {
- "allDevices": "All Devices",
- "allUsers": "All Users",
- "allUsersAndDevices": "All Users & All Devices",
- "selectedGroups": "Selected Groups"
- },
- "DetectionRules": {
- "ComparisonOperators": {
- "equals": "Equals",
- "greaterThan": "Greater than",
- "greaterThanOrEqualTo": "Greater than or equal to",
- "lessThan": "Less than",
- "lessThanOrEqualTo": "Less than or equal to",
- "notEqualTo": "Not equal to"
- },
- "CustomScript": {
- "enforceSignatureCheck": "Enforce script signature check and run script silently",
- "enforceSignatureCheckTooltip": "Select 'Yes' to verify that the script is signed by a trusted publisher, which will allow the script to run with no warnings or prompts displayed. The script will run unblocked. Select 'No' (default) to run the script with end-user confirmation without signature verification.",
- "header": "Use a custom detection script",
- "runAs32Bit": "Run script as 32-bit process on 64-bit clients",
- "runAs32BitTooltip": "Select 'Yes' to run the script in a 32-bit process on 64-bit clients. Select 'No' (default) to run the script in a 64-bit process on 64-bit clients. 32-bit clients run the script in a 32-bit process.",
- "scriptFile": "Script file",
- "scriptFileNotSelectedValidation": "No script file is selected.",
- "scriptFileTooltip": "Select a PowerShell script that will detect the presence of the app on the client. The app will be detected when the script both returns a 0 value exit code and writes a string value to STDOUT."
- },
- "Manual": {
- "FileRule": {
- "DetectionMethodOptions": {
- "dateCreated": "Date created",
- "dateModified": "Date modified",
- "doesNotExist": "File or folder does not exist",
- "fileOrFolderExists": "File or folder exists",
- "sizeInMB": "Size in MB",
- "version": "String (version)"
- },
- "associatedWith32Bit": "Associated with a 32-bit app on 64-bit clients",
- "associatedWith32BitTooltip": "Select 'Yes' to expand any path environment variables in the 32-bit context on 64-bit clients. Select 'No' (default) to expand any path variables in the 64-bit context on 64-bit clients. 32-bit clients will always use the 32-bit context.",
- "detectionMethod": "Detection method",
- "detectionMethodTooltip": "Select the type of detection method used to validate the presence of the app.",
- "fileOrFolder": "File or folder",
- "fileOrFolderToolTip": "The file or folder to detect.",
- "operator": "Operator",
- "operatorTooltip": "Select the operator for the detection method used to validate the comparison.",
- "path": "Path",
- "pathTooltip": "The full path of the folder containing the file or folder to detect.",
- "value": "Value",
- "valueTooltip": "Select a value that matches the selected detection method. Date detection methods should be entered in local time."
- },
- "GridColumns": {
- "pathOrCode": "Path/Code",
- "type": "Type"
- },
- "MsiRule": {
- "operator": "Operator",
- "operatorTooltip": "Select the operator for the MSI product version validation comparison.",
- "productCode": "MSI product code",
- "productCodeTooltip": "A valid MSI product code for the app.",
- "productVersion": "Value",
- "productVersionCheck": "MSI product version check",
- "productVersionCheckTooltip": "Select 'Yes' to verify the MSI product version in addition to the MSI product code.",
- "productVersionTooltip": "Enter the MSI product version for the app."
- },
- "RegistryRule": {
- "DetectionMethodOptions": {
- "integerComparison": "Integer comparison",
- "keyDoesNotExist": "Key does not exist",
- "keyExists": "Key exists",
- "stringComparison": "String comparison",
- "valueDoesNotExist": "Value does not exist",
- "valueExists": "Value exists",
- "versionComparison": "Version comparison"
- },
- "associatedWith32Bit": "Associated with a 32-bit app on 64-bit clients",
- "associatedWith32BitTooltip": "Select 'Yes' to search the 32-bit registry on 64-bit clients. Select 'No' (default) search the 64-bit registry on 64-bit clients. 32-bit clients will always search the 32-bit registry.",
- "detectionMethod": "Detection method",
- "detectionMethodTooltip": "Select the type of detection method used to validate the presence of the app.",
- "keyPath": "Key path",
- "keyPathTooltip": "The full path of the registry entry containing the value to detect.",
- "operator": "Operator",
- "operatorTooltip": "Select the operator for the detection method used to validate the comparison.",
- "value": "Value",
- "valueName": "Value name",
- "valueNameTooltip": "The name of the registry value to detect.",
- "valueTooltip": "Select a value that matches the selected detection method."
- },
- "RuleTypeOptions": {
- "file": "File",
- "mSI": "MSI",
- "registry": "Registry"
- },
- "gridAriaLabel": "Detection Rules",
- "header": "Create a rule that indicates the presence of the app.",
- "noRulesSelectedPlaceholder": "No rules are specified.",
- "ruleTableLimit": "You can add up to 25 detection rules",
- "ruleType": "Rule type",
- "ruleTypeTooltip": "Choose the type of detection rule to add."
- },
- "RuleConfigurationOptions": {
- "customScript": "Use a custom detection script",
- "manual": "Manually configure detection rules"
- },
- "bladeTitle": "Detection rules",
- "header": "Configure app specific rules used to detect the presence of the app.",
- "rulesFormat": "Rules format",
- "rulesFormatTooltip": "Choose to either manually configure the detection rules or use a custom script to detect the presence of the app.",
- "selectorLabel": "Detection rules"
- },
- "AppType": {
- "androidEnterpriseSystemApp": "Android Enterprise system app",
- "androidForWorkApp": "Managed Google Play store app",
- "androidLobApp": "Android line-of-business app",
- "androidStoreApp": "Android store app",
- "builtInAndroid": "Built-In Android app",
- "builtInApp": "Built-In app",
- "builtInIos": "Built-In iOS app",
- "default": "",
- "iosLobApp": "iOS line-of-business app",
- "iosStoreApp": "iOS store app",
- "iosVppApp": "iOS volume purchase program app",
- "lineOfBusinessApp": "Line-of-business app",
- "macOSDmgApp": "macOS app (DMG)",
- "macOSEdgeApp": "Microsoft Edge (macOS)",
- "macOSLobApp": "macOS line-of-business app",
- "macOSMdatpApp": "Microsoft Defender ATP (macOS)",
- "macOSOfficeSuiteApp": "Microsoft 365 Apps (macOS)",
- "macOsVppApp": "macOS volume purchase program app",
- "managedAndroidLobApp": "Managed Android line-of-business app",
- "managedAndroidStoreApp": "Managed Android store app",
- "managedGooglePlayApp": "Managed Google Play store app",
- "managedGooglePlayPrivateApp": "Managed Google Play private app",
- "managedGooglePlayWebApp": "Managed Google Play web link",
- "managedIosLobApp": "Managed iOS line-of-business app",
- "managedIosStoreApp": "Managed iOS store app",
- "microsoftStoreForBusinessApp": "Microsoft Store for Business app",
- "microsoftStoreForBusinessReleaseManagedApp": "Microsoft Store for Business",
- "officeSuiteApp": "Microsoft 365 Apps (Windows 10 and later)",
- "webApp": "Web link",
- "windowsAppXLobApp": "Windows AppX line-of-business app",
- "windowsClassicApp": "Windows app (Win32)",
- "windowsEdgeApp": "Microsoft Edge (Windows 10 and later)",
- "windowsMobileMsiLobApp": "Windows MSI line-of-business app",
- "windowsPhone81AppXBundleLobApp": "Windows Phone 8.1 AppX line-of-business app",
- "windowsPhone81AppXLobApp": "Windows Phone 8.1 AppX line-of-business app",
- "windowsPhone81StoreApp": "Windows Phone 8.1 store app",
- "windowsPhoneXapLobApp": "Windows Phone XAP line-of-business app",
- "windowsStoreApp": "Microsoft Store app",
- "windowsUniversalAppXLobApp": "Windows Universal AppX line-of-business app",
- "windowsUniversalLobApp": "Windows Universal line-of-business app"
- },
- "PolicyType": {
- "AttackSurfaceReductionRules": {
- "configMgr": "Attack Surface Reduction Rules (ConfigMgr)"
- },
- "EndpointDetectionandResponse": {
- "mDE": "Endpoint detection and response"
- },
- "EndpointSecurityTemplate": {
- "aSRAppBrowserSecurity": "App and browser isolation",
- "aSRApplicationControl": "Application control",
- "aSRAttackSurfaceReduction": "Attack surface reduction rules",
- "aSRDeviceControl": "Device control",
- "aSRExploitProtection": "Exploit protection",
- "aSRWebProtection": "Web protection (Microsoft Edge Legacy)",
- "aVExclusions": "Microsoft Defender Antivirus exclusions",
- "antivirus": "Microsoft Defender Antivirus",
- "cloudPC": "Windows 365 Security Baseline",
- "default": "Endpoint Security",
- "defenderTest": "Microsoft Defender for Endpoint demo",
- "diskEncryption": "BitLocker",
- "eDR": "Endpoint detection and response",
- "edgeSecurityBaseline": "Microsoft Edge baseline",
- "edgeSecurityBaselinePreview": "Preview: Microsoft Edge baseline",
- "editionUpgradeConfiguration": "Edition upgrade and mode switch",
- "firewall": "Microsoft Defender Firewall",
- "firewallRules": "Microsoft Defender Firewall rules",
- "identityProtection": "Account protection",
- "identityProtectionPreview": "Account protection (Preview)",
- "mDMSecurityBaseline1810": "MDM Security Baseline for Windows 10 and later for October 2018",
- "mDMSecurityBaseline1810Preview": "Preview: MDM Security Baseline for Windows 10 and later for October 2018",
- "mDMSecurityBaseline1810PreviewBeta": "Preview: MDM Security Baseline for Windows 10 for October 2018 (beta)",
- "mDMSecurityBaseline1906": "MDM Security Baseline for Windows 10 and later for May 2019",
- "mDMSecurityBaseline2004": "MDM Security Baseline for Windows 10 and later for August 2020",
- "mDMSecurityBaseline2101": "MDM Security Baseline for Windows 10 and later Decemeber 2020",
- "macOSAntivirus": "Antivirus",
- "macOSDiskEncryption": "FileVault",
- "macOSFirewall": "macOS firewall",
- "microsoftDefenderBaseline": "Microsoft Defender for Endpoint baseline",
- "office365Baseline": "Microsoft Office O365 baseline",
- "office365BaselinePreview": "Preview: Microsoft Office O365 baseline",
- "securityBaselines": "Security Baselines",
- "test": "Test Template",
- "testFirewallRulesSecurityTemplateName": "Microsoft Defender Firewall rules (Test)",
- "testIdentityProtectionSecurityTemplateName": "Account protection (Test)",
- "windowsSecurityExperience": "Windows Security experience"
- },
- "Firewall": {
- "mDE": "Microsoft Defender Firewall"
- },
- "FirewallRules": {
- "mDE": "Microsoft Defender Firewall Rules"
- },
- "administrativeTemplates": "Administrative Templates",
- "androidCompliancePolicy": "Android compliance policy",
- "aospDeviceOwnerCompliancePolicy": "Android (AOSP) compliance policy",
- "applicationControl": "Application Control",
- "custom": "Custom",
- "deliveryOptimization": "Delivery Optimization",
- "derivedPersonalIdentityVerificationCredential": "Derived credential",
- "deviceFeatures": "Device features",
- "deviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
- "deviceLock": "Device Lock",
- "deviceOwner": "Fully managed, dedicated, and corporate-owned work profile",
- "deviceRestrictions": "Device restrictions",
- "deviceRestrictionsWindows10Team": "Device restrictions (Windows 10 Team)",
- "domainJoinPreview": "Domain Join",
- "editionUpgradeAndModeSwitch": "Edition upgrade and mode switch",
- "education": "Education",
- "email": "Email",
- "emailSamsungKnoxOnly": "Email (Samsung KNOX only)",
- "endpointProtection": "Endpoint protection",
- "expeditedCheckin": "Mobile device management configuration",
- "exploitProtection": "Exploit Protection",
- "extensions": "Extensions",
- "hardwareConfigurations": "BIOS Configurations",
- "identityProtection": "Identity protection",
- "iosCompliancePolicy": "iOS compliance policy",
- "kiosk": "Kiosk",
- "macCompliancePolicy": "Mac compliance policy",
- "microsoftDefenderAntivirus": "Microsoft Defender Antivirus",
- "microsoftDefenderAntivirusexclusions": "Microsoft Defender Antivirus exclusions",
- "microsoftDefenderAtpWindows10Desktop": "Microsoft Defender for Endpoint (desktop devices running Windows 10 or later)",
- "microsoftDefenderFirewallRules": "Microsoft Defender Firewall Rules",
- "microsoftEdgeBaseline": "Microsoft Edge Baseline",
- "mxProfileZebraOnly": "MX profile (Zebra only)",
- "networkBoundary": "Network boundary",
- "oemConfig": "OEMConfig",
- "overrideGroupPolicy": "Override Group Policy",
- "pkcsCertificate": "PKCS certificate",
- "pkcsImportedCertificate": "PKCS imported certificate",
- "preferenceFile": "Preference file",
- "presets": "Presets",
- "scepCertificate": "SCEP certificate",
- "secureAssessmentEducation": "Secure assessment (Education)",
- "settingsCatalog": "Settings Catalog",
- "sharedMultiUserDevice": "Shared multi-user device",
- "softwareUpdates": "Software Updates",
- "trustedCertificate": "Trusted certificate",
- "unknown": "Unknown",
- "unsupported": "Unsupported",
- "vpn": "VPN",
- "wiFi": "Wi-Fi",
- "wiFiImport": "Wi-Fi import",
- "windows10CompliancePolicy": "Windows 10/11 compliance policy",
- "windows10MobileCompliancePolicy": "Windows 10 mobile compliance policy",
- "windows10XScep": "SCEP certificate - TEST",
- "windows10XTrustedCertificate": "Trusted certificate - TEST",
- "windows10XVPN": "VPN - TEST",
- "windows10XWifi": "WIFI - TEST",
- "windows8CompliancePolicy": "Windows 8 compliance policy",
- "windowsHealthMonitoring": "Windows health monitoring",
- "windowsInformationProtection": "Windows Information Protection",
- "windowsPhoneCompliancePolicy": "Windows Phone compliance policy",
- "windowsUpdateforBusiness": "Windows Update for Business",
- "wiredNetwork": "Wired Network",
- "workProfile": "Personally-owned work profile"
- },
- "OfficeSuiteAppsTab": {
- "acceptLicenseOnBehalfOfUsersLabel": "Accept the Microsoft Software License Terms on behalf of users",
- "appSuiteConfigurationLabel": "App suite configuration",
- "appSuiteInformationLabel": "App suite information",
- "appsToBeInstalledLabel": "Apps to be installed as part of the suite",
- "architectureLabel": "Architecture",
- "architectureTooltip": "Defines whether the 32-bit or 64-bit edition of Microsoft 365 Apps is installed on devices.",
- "configurationDesignerLabel": "Configuration designer",
- "configurationFileLabel": "Configuration file",
- "configurationSettingsFormatLabel": "Configuration settings format",
- "configureAppSuiteLabel": "Configure app suite",
- "configuredLabel": "Configured",
- "currentVersionLabel": "Current version",
- "currentVersionTooltip": "This is the current version of Office that’s configured in this suite. This value will be updated when a newer version is configured and saved.",
- "enableMicrosoftSearchAsDefaultTooltip": "Installs a background service that helps determine whether a Microsoft Search in Bing extension for Google Chrome is installed on the device.",
- "enterXmlDataLabel": "Enter XML data",
- "languagesLabel": "Languages",
- "languagesTooltip": "By default, Intune will install Office with the default language of the operating system. Choose any additional languages that you want to install.",
- "learnMoreText": "Learn more",
- "newUpdateChannelTooltip": "Defines how often the app is updated with new features.",
- "noCurrentVersionText": "No current version",
- "noLanguagesSelectedLabel": "No languages selected",
- "notConfiguredLabel": "Not configured",
- "propertiesLabel": "Properties",
- "removeOtherVersionsLabel": "Remove other versions",
- "removeOtherVersionsTooltip": "Select Yes to remove other versions of Office (MSI) from user devices.",
- "selectOfficeAppsLabel": "Select Office apps",
- "selectOfficeAppsTooltip": "Select the Office 365 apps that you want to install as part of the suite.",
- "selectOtherOfficeAppsLabel": "Select other Office apps (license required)",
- "selectOtherOfficeAppsTooltip": "If you own licenses for these additional Office apps you can also assign them with Intune.",
- "specificVersionLabel": "Specific version",
- "updateChannelLabel": "Update channel",
- "updateChannelTooltip": "Defines how often the app is updated with new features.
\nMonthly - Provide users with the newest features of Office as soon as they're available.
\nMonthly Enterprise Channel - Provide users with the newest features of Office once a month, on the second Tuesday of the month.
\nMonthly (Targeted) – Provide an early look at the upcoming Monthly Channel release. It is a supported update channel, and usually is available at least one week ahead of time when it's a Monthly Channel release that contains new features.
\nSemi-Annual - Provide users with new features of Office only a few times a year.
\nSemi-Annual (Targeted) - Provide pilot users and application compatibility testers the opportunity to test the next Semi-Annual.",
- "useMicrosoftSearchAsDefault": "Install background service for Microsoft Search in Bing",
- "useSharedComputerActivationLabel": "Use shared computer activation",
- "useSharedComputerActivationTooltip": "Shared computer activation lets you deploy Microsoft 365 Apps to computers that are used by multiple users. Normally, users can only install and activate Microsoft 365 Apps on a limited number of devices, such as 5 PCs. Using Microsoft 365 Apps with shared computer activation doesn't count against that limit.",
- "versionToInstallLabel": "Version to install",
- "versionToInstallTooltip": "Select the version of Office that should be installed.",
- "xLanguagesSelectedLabel": "{0} language(s) selected",
- "xmlConfigurationLabel": "XML Configuration"
- },
- "OfficeApplicationType": {
- "access": "Access",
- "bing": "Microsoft Search as default",
- "excel": "Excel",
- "groove": "OneDrive (Groove)",
- "lync": "Skype for Business",
- "oneDrive": "OneDrive Desktop",
- "oneNote": "OneNote",
- "outlook": "Outlook",
- "powerPoint": "PowerPoint",
- "publisher": "Publisher",
- "teams": "Teams",
- "word": "Word"
- },
- "WindowsQualityUpdateProfile": {
- "Details": {
- "DaysUntilForcedReboot": {
- "label": "Number of days to wait before restart is enforced"
- },
- "Description": {
- "label": "Description"
- },
- "Name": {
- "label": "Name"
- },
- "QualityUpdateRelease": {
- "label": "Expedite installation of quality updates if device OS version less than:"
- },
- "bladeTitle": "Quality updates Windows 10 and later (Preview)",
- "loadError": "Loading failed!"
- },
- "TabName": {
- "qualityUpdateSettings": "Settings"
- },
- "infoBoxText": "The only dedicated quality update control currently available other than the existing update rings policy for Windows 10 and later is the ability to expedite quality updates for devices that fall behind a specified patch level. Additional controls will be available in the future.",
- "warningBoxText": "While expediting software updates can help decrease the time to get to compliance when necessary, it has a larger impact on end-user productivity. The chances that they will experience a restart during business hours is significantly increased."
- },
- "Devices": {
- "General": {
- "android": "Android"
- },
- "aOSP": "Android open source project",
- "android": "Android device administrator",
- "androidWorkProfile": "Android Enterprise (work profile)",
- "iOS": "iOS/iPadOS",
- "mac": "macOS",
- "windows": "Windows (MDM)",
- "windows10": "Windows 10 and later",
- "windowsHomeSku": "Windows Home Sku",
- "windowsMobile": "Windows Mobile"
- },
"SettingDetails": {
"CustomPolicyConfigurationProfile": {
"uploadControlPlaceHolderText": "Select a configuration profile file"
@@ -3675,7 +1707,7 @@
"aESGCM128": "AES-128-GCM (16-octet ICV)",
"aESGCM256": "AES-256-GCM (16-octet ICV)",
"aadSharedDeviceDataClearAppsDescription": "Add any app not optimized for shared device mode to the list. The app's local data will be cleared whenever a user signs out of an app that's optimized for shared device mode. Available for dedicated devices enrolled with Shared mode running Android 9 and later.",
- "aadSharedDeviceDataClearAppsName": "Clear local data in apps not optimized for Shared device mode (Public Preview)",
+ "aadSharedDeviceDataClearAppsName": "Clear local data in apps not optimized for Shared device mode",
"accountsPageDescription": "Block access to Accounts in Settings app.",
"accountsPageName": "Accounts",
"accountsSignInAssistantSettingsDescription": "Block the Microsoft Sign-in Assistant service (wlidsvc). When this setting is not cofigured, the wlidsvc NT service is controllable by the user (manual start)",
@@ -5503,7 +3535,7 @@
"enableEndUserAccessToDefenderName": "End-user access to Defender",
"enableEngagedRestartDescription": "Enables settings to allow user switch to engaged restart.",
"enableEngagedRestartName": "Allow user to restart (engaged restart)",
- "enableIdentityPrivacyDescription": "This property masks user names with the text you enter. For example, if you type 'anonymous', each user that authenticates with this Wi-Fi connection using their real user name is displayed as 'anonymous'.",
+ "enableIdentityPrivacyDescription": "This property masks user names with the text you enter. For example, if you type 'anonymous', each user that authenticates with this Wi-Fi connection using their real user name is displayed as 'anonymous'. This may be required if using device-based certificate authentication.",
"enableIdentityPrivacyName": "Identity privacy (outer identity)",
"enableNetworkInspectionSystemDescription": "Block malicious traffic detected by signatures in the Network Inspection System (NIS)",
"enableNetworkInspectionSystemName": "Network Inspection System (NIS)",
@@ -7252,6 +5284,8 @@
"presharedKeyEncodingDescription": "Encode preshared keys using UTF-8.",
"presharedKeyEncodingName": "Pre-shared key encoding",
"preventAny": "Prevent any sharing across boundaries",
+ "primaryAuthenticationMethodName": "Primary authentication method",
+ "primaryAuthenticationMethodTEAPDescription": "Choose the primary way you want users to authenticate. When you select Certificates, select one of the certificate profiles (SCEP or PKCS) that is also deployed to the device. This is the identity certificate that is presented by the device to the server.",
"primarySMTPAddressOption": "Primary SMTP Address",
"printersColumns": "e.g. printer DNS name",
"printersDescription": "Automatically provision printers based on their network host names. This setting does not support shared printers.",
@@ -7663,6 +5697,8 @@
"searchEnableRemoteQueriesName": "Remote queries",
"secondActiveEthernet": "Second active Ethernet",
"secondEthernet": "Second Ethernet",
+ "secondaryAuthenticationMethodName": "Secondary authentication method",
+ "secondaryAuthenticationMethodTEAPDescription": "Choose the secondary way you want users to authenticate. When you select Certificates, select one of the certificate profiles (SCEP or PKCS) that is also deployed to the device. This is the identity certificate that is presented by the device to the server.",
"secretKey": "Secret Key:",
"secureBootEnabledDescription": "Require Secure Boot to be enabled on the device",
"secureBootEnabledName": "Require Secure Boot to be enabled on the device",
@@ -8074,6 +6110,7 @@
"systemUpdateWindow9": "4:30 AM",
"systemWindowsBlockedDescription": "Disable window notifications such as toasts, incoming calls, outgoing calls, system alerts, and system errors.",
"systemWindowsBlockedName": "Notification windows",
+ "tEAPName": "Tunnel EAP (TEAP)",
"tLSMinMax": "TLS minimum version must be less than or equal to TLS maximum version.",
"tLSVersionRangeMaximum": "TLS version range maximum",
"tLSVersionRangeMaximumDescription": "Enter a maximum TLS version of 1.0, 1.1, or 1.2. If left blank, a default value of 1.2 will be used.",
@@ -8126,6 +6163,17 @@
"timeWindowSameStartEndDayTime": "End day/time cannot be the same as the start day/time.",
"timeZoneDescription": "Select the time zone for the targeted devices.",
"timeZoneName": "Time zone",
+ "timeoutFifteenMinutes": "15 minutes",
+ "timeoutFiveMinutes": "5 minutes",
+ "timeoutFourHours": "4 hours",
+ "timeoutNever": "Never timeout",
+ "timeoutOneHour": "1 hour",
+ "timeoutOneMinute": "1 minute",
+ "timeoutTenMinutes": "10 minutes",
+ "timeoutThirtyMinutes": "30 minutes",
+ "timeoutThreeMinutes": "3 minutes",
+ "timeoutTwoHours": "2 hours",
+ "timeoutTwoMinutes": "2 minutes",
"toggleConfigurationPkgDescription": "Upload a signed configuration package that will be used to onboard the Microsoft Defender for Endpoint client",
"toggleConfigurationPkgName": "Microsoft Defender for Endpoint client configuration package type:",
"trafficRuleAppName": "App",
@@ -8824,6 +6872,33 @@
"win10WifiWirelessSecurityTypeName": "Wireless Security Type",
"win10WifiWirelessSecurityTypeOpen": "Open (no authentication)",
"win10WifiWirelessSecurityTypeWPA": "WPA/WPA2-Personal",
+ "win10WiredAuthenticationModeDescription": "Choose whether to authenticate the user, the device, either, or to use guest authentication (none). If you’re using certificate authentication, make sure the certificate type matches the authentication type.",
+ "win10WiredAuthenticationModeName": "Authentication Mode",
+ "win10WiredAuthenticationPeriodDescription": "Number of seconds for the client to wait after an authentication attempt before failing. Choose a number between 1 and 3600. Not specifying a value results in 18 seconds being used.",
+ "win10WiredAuthenticationPeriodName": "Authentication period",
+ "win10WiredAuthenticationRetryDelayPeriodDescription": "Number of seconds between a failed authentication and the next authentication attempt. Choose a value between 1 and 3600. Not specifying a value results in 1 second being used.",
+ "win10WiredAuthenticationRetryDelayPeriodName": "Authentication retry delay period ",
+ "win10WiredFIPSComplianceDescription": "Validation against the FIPS 140-2 standard is required for all US federal government agencies that use cryptography-based security systems to protect sensitive but unclassified information stored digitally.",
+ "win10WiredFIPSComplianceName": "Force wired profile to be compliant with the Federal Information Processing Standard (FIPS)",
+ "win10WiredGuest": "Guest",
+ "win10WiredMachine": "Machine",
+ "win10WiredMachineOrUser": "User or machine",
+ "win10WiredMaximumAuthenticationFailuresDescription": "Enter the maximum number of authentication failures for this set of credentials. Not specifying a value results in 1 attempt being used.",
+ "win10WiredMaximumAuthenticationFailuresName": "Maximum authentication failures",
+ "win10WiredMaximumEAPOLStartMessagesDescription": "Choose a number of EAPOL-Start messages between 1 and 100. Not specifying a value results in a maximum of 3 messages being sent.",
+ "win10WiredMaximumEAPOLStartMessagesName": "Maximum EAPOL-start",
+ "win10WiredNetworkAuthenticationBlockPeriodDescription": "Authentication block period in minutes. Used to specify the duration for which automatic authentication attempts will be blocked from occurring after a failed authentication attempt. Choose a value between 0 and 1440.",
+ "win10WiredNetworkAuthenticationBlockPeriodName": "Block period (minutes)",
+ "win10WiredNetworkAuthenticationModeName": "Authentication Mode",
+ "win10WiredNetworkDoNotEnforceName": "Do not enforce",
+ "win10WiredNetworkEnforce8021XDescription": "Specifies whether the automatic configuration service for wired networks requires the use of 802.1X for port authentication.",
+ "win10WiredNetworkEnforce8021XName": "802.1x",
+ "win10WiredNetworkEnforceName": "Enforce",
+ "win10WiredRememberCredentialsDescription": "Choose whether to cache users' credentials when they enter them the first time they connect to the wired network. Cached credentials are used for subsequent connections and the users don't need to re-enter them. Not configuring this setting is equivalent to setting it to yes.",
+ "win10WiredRememberCredentialsName": "Remember credentials at each logon",
+ "win10WiredStartPeriodDescription": "Number of seconds to wait before sending an EAPOL-Start message. Choose a value between 1 and 3600. Not specifying a value results in 5 seconds being used.",
+ "win10WiredStartPeriodName": "Start period",
+ "win10WiredUser": "User",
"win10appLockerApplicationControlAllowDescription": "These apps will be allowed to run",
"win10appLockerApplicationControlAllowName": "Enforce",
"win10appLockerApplicationControlAuditComponentsAndStoreAppsDescription": "\"Audit Only\" mode logs all events in local client event logs, but does not block any apps from running. Windows components and Microsoft Store apps will be logged as passing security requirements.",
@@ -9165,7 +7240,6 @@
"deviceConditionsInfoParagraph2": "Similar device based settings can be configured for enrolled devices.",
"deviceConditionsInfoParagraph2LinkText": "Learn more about configuring device compliance settings for enrolled devices.",
"deviceId": "Device ID",
- "deviceLockComplexityValidationFailureNotes": "Notes:
\n\n - The device lock can require a password complexity of: LOW, MEDIUM, or HIGH targeted to Android 11+. For devices operating on Android 10 and earlier, setting a complexity value of Low/Medium/High will default to the expected behavior for \"Low Complexity\".
\n - The password definitions below are subject to change. Please refer to DevicePolicyManager|Android Developers for the most updated definitions of the different password complexity levels.
\n
\n\nLow
\n\n - Password can be a pattern or PIN with repeating (4444) or ordered (1234, 4321, 2468) sequences.
\n
\n\nMedium
\n\n - PIN with no repeating (4444) or ordered (1234, 4321, 2468) sequences with a minimum length of at least 4 characters
\n - Alphabetic passwords with a minimum length of at least 4 characters
\n - Alphanumeric passwords with a minimum length of at least 4 characters
\n
\n\nHigh
\n\n - PIN with no repeating (4444) or ordered (1234, 4321, 2468) sequences with a minimum length of at least 8 characters
\n - Alphabetic passwords with a minimum length of at least 6 characters
\n - Alphanumeric passwords with a minimum length of at least 6 characters
\n
\n",
"deviceLockedOpenFilesOptionsText": "When device is locked and there are open files",
"deviceLockedOptionText": "When device is locked",
"deviceManufacturer": "Device manufacturer",
@@ -9463,7 +7537,7 @@
"reporting": "Reporting",
"reports": "Reports",
"require": "Require",
- "requireDeviceLockComplexityOnApps": "Require device lock complexity",
+ "requireDeviceLockOnApps": "Require device lock",
"requireThreatScanOnApps": "Require threat scan on apps",
"requiredField": "This field can't be empty",
"requiredSafetyNetEvaluationType": "Required SafetyNet evaluation type",
@@ -9659,6 +7733,7 @@
"yourDataIsBeingDownloadedEllipsis": "Your data is being downloaded, this can take a while...",
"yourDataIsBeingDownloadedMinutes": "Your data is being downloaded, this can take a few minutes...",
"yourProtectionLevel": "Your protection level",
+ "rules": "Rules",
"basics": "Basics",
"modeTableHeader": "Group mode",
"appAssignmentMsg": "Group",
@@ -9695,221 +7770,2042 @@
"licenseTypeDevice": "Device",
"licenseTypeUser": "User"
},
- "Languages": {
- "ar-aE": "Arabic (U.A.E.)",
- "ar-bH": "Arabic (Bahrain)",
- "ar-dZ": "Arabic (Algeria)",
- "ar-eG": "Arabic (Egypt)",
- "ar-iQ": "Arabic (Iraq)",
- "ar-jO": "Arabic (Jordan)",
- "ar-kW": "Arabic (Kuwait)",
- "ar-lB": "Arabic (Lebanon)",
- "ar-lY": "Arabic (Libya)",
- "ar-mA": "Arabic (Morocco)",
- "ar-oM": "Arabic (Oman)",
- "ar-qA": "Arabic (Qatar)",
- "ar-sA": "Arabic (Saudi Arabia)",
- "ar-sY": "Arabic (Syria)",
- "ar-tN": "Arabic (Tunisia)",
- "ar-yE": "Arabic (Yemen)",
- "az-cyrl": "Azerbaijani (Cyrillic, Azerbaijan)",
- "az-latn": "Azerbaijani (Latin, Azerbaijan)",
- "bn-bD": "Bangla (Bangladesh)",
- "bn-iN": "Bangla (India)",
- "bs-cyrl": "Bosnian (Cyrillic)",
- "bs-latn": "Bosnian (Latin)",
- "zh-cN": "Chinese (PRC)",
- "zh-hK": "Chinese (Hong Kong S.A.R.)",
- "zh-mO": "Chinese (Macao S.A.R.)",
- "zh-sG": "Chinese (Singapore)",
- "zh-tW": "Chinese (Taiwan)",
- "hr-bA": "Croatian (Latin)",
- "hr-hR": "Croatian (Croatia)",
- "nl-bE": "Dutch (Belgium)",
- "nl-nL": "Dutch (Netherlands)",
- "en-aU": "English (Australia)",
- "en-bZ": "English (Belize)",
- "en-cA": "English (Canada)",
- "en-cabn": "English (Caribbean)",
- "en-iE": "English (Ireland)",
- "en-iN": "English (India)",
- "en-jM": "English (Jamaica)",
- "en-mY": "English (Malaysia)",
- "en-nZ": "English (New Zealand)",
- "en-pH": "English (Republic of the Philippines)",
- "en-sG": "English (Singapore)",
- "en-tT": "English (Trinidad and Tobago)",
- "en-uK": "English (United Kingdom)",
- "en-uS": "English (United States)",
- "en-zA": "English (South Africa)",
- "en-zW": "English (Zimbabwe)",
- "fr-bE": "French (Belgium)",
- "fr-cA": "French (Canada)",
- "fr-cH": "French (Switzerland)",
- "fr-fR": "French (France)",
- "fr-lU": "French (Luxembourg)",
- "fr-mC": "French (Monaco)",
- "de-aT": "German (Austria)",
- "de-cH": "German (Switzerland)",
- "de-dE": "German (Germany)",
- "de-lI": "German (Liechtenstein)",
- "de-lU": "German (Luxembourg)",
- "iu-cans": "Inuktitut (Syllabics, Canada)",
- "iu-latn": "Inuktitut (Latin, Canada)",
- "it-cH": "Italian (Switzerland)",
- "it-iT": "Italian (Italy)",
- "ms-bN": "Malay (Brunei Darussalam)",
- "ms-mY": "Malay (Malaysia)",
- "mn-cN": "Mongolian (Traditional Mongolian, PRC)",
- "mn-mN": "Mongolian (Cyrillic, Mongolia)",
- "no-nB": "Norwegian, Bokmål (Norway)",
- "no-nn": "Norwegian, Nynorsk (Norway)",
- "pt-bR": "Portuguese (Brazil)",
- "pt-pT": "Portuguese (Portugal)",
- "quz-bO": "Quechua (Bolivia)",
- "quz-eC": "Quechua (Ecuador)",
- "quz-pE": "Quechua (Peru)",
- "smj-nO": "Sami, Lule (Norway)",
- "smj-sE": "Sami, Lule (Sweden)",
- "se-fI": "Sami, Northern (Finland)",
- "se-nO": "Sami, Northern (Norway)",
- "se-sE": "Sami, Northern (Sweden)",
- "sma-nO": "Sami, Southern (Norway)",
- "sma-sE": "Sami, Southern (Sweden)",
- "smn": "Sami, Inari (Finland)",
- "sms": "Sami, Skolt (Finland)",
- "sr-Cyrl-bA": "Serbian (Cyrillic)",
- "sr-Cyrl-rS": "Serbian (Cyrillic, Serbia and Montenegro)",
- "sr-Latn-bA": "Serbian (Latin)",
- "sr-Latn-rS": "Serbian (Latin, Serbia)",
- "dsb": "Lower Sorbian (Germany)",
- "hsb": "Upper Sorbian (Germany)",
- "es-es-tradnl": "Spanish (Spain, Traditional Sort)",
- "es-aR": "Spanish (Argentina)",
- "es-bO": "Spanish (Bolivia)",
- "es-cL": "Spanish (Chile)",
- "es-cO": "Spanish (Colombia)",
- "es-cR": "Spanish (Costa Rica)",
- "es-dO": "Spanish (Dominican Republic)",
- "es-eC": "Spanish (Ecuador)",
- "es-eS": "Spanish (Spain)",
- "es-gT": "Spanish (Guatemala)",
- "es-hN": "Spanish (Honduras)",
- "es-mX": "Spanish (Mexico)",
- "es-nI": "Spanish (Nicaragua)",
- "es-pA": "Spanish (Panama)",
- "es-pE": "Spanish (Peru)",
- "es-pR": "Spanish (Puerto Rico)",
- "es-pY": "Spanish (Paraguay)",
- "es-sV": "Spanish (El Salvador)",
- "es-uS": "Spanish (United States)",
- "es-uY": "Spanish (Uruguay)",
- "es-vE": "Spanish (Venezuela)",
- "sv-fI": "Swedish (Finland)",
- "uz-cyrl": "Uzbek (Cyrillic, Uzbekistan)",
- "uz-latn": "Uzbek (Latin, Uzbekistan)",
- "af": "Afrikaans (South Africa)",
- "sq": "Albanian (Albania)",
- "am": "Amharic (Ethiopia)",
- "hy": "Armenian (Armenia)",
- "as": "Assamese (India)",
- "ba": "Bashkir (Russia)",
- "eu": "Basque (Basque)",
- "be": "Belarusian (Belarus)",
- "br": "Breton (France)",
- "bg": "Bulgarian (Bulgaria)",
- "ca": "Catalan (Catalan)",
- "co": "Corsican (France)",
- "cs": "Czech (Czech Republic)",
- "da": "Danish (Denmark)",
- "prs": "Dari (Afghanistan)",
- "dv": "Divehi (Maldives)",
- "et": "Estonian (Estonia)",
- "fo": "Faroese (Faroe Islands)",
- "fil": "Filipino (Philippines)",
- "fi": "Finnish (Finland)",
- "gl": "Galician (Galician)",
- "ka": "Georgian (Georgia)",
- "el": "Greek (Greece)",
- "gu": "Gujarati (India)",
- "ha": "Hausa (Latin, Nigeria)",
- "he": "Hebrew (Israel)",
- "hi": "Hindi (India)",
- "hu": "Hungarian (Hungary)",
- "is": "Icelandic (Iceland)",
- "ig": "Igbo (Nigeria)",
- "id": "Indonesian (Indonesia)",
- "ga": "Irish (Ireland)",
- "xh": "isiXhosa (South Africa)",
- "zu": "isiZulu (South Africa)",
- "ja": "Japanese (Japan)",
- "kn": "Kannada (India)",
- "kk": "Kazakh (Kazakhstan)",
- "km": "Khmer (Cambodia)",
- "rw": "Kinyarwanda (Rwanda)",
- "sw": "Kiswahili (Kenya)",
- "kok": "Konkani (India)",
- "ko": "Korean (Korea)",
- "ky": "Kyrgyz (Kyrgyzstan)",
- "lo": "Lao (Lao P.D.R.)",
- "lv": "Latvian (Latvia)",
- "lt": "Lithuanian (Lithuania)",
- "lb": "Luxembourgish (Luxembourg)",
- "mk": "Macedonian (North Macedonia)",
- "ml": "Malayalam (India)",
- "mt": "Maltese (Malta)",
- "mi": "Maori (New Zealand)",
- "mr": "Marathi (India)",
- "moh": "Mohawk (Mohawk)",
- "ne": "Nepali (Nepal)",
- "oc": "Occitan (France)",
- "or": "Odia (India)",
- "ps": "Pashto (Afghanistan)",
- "fa": "Persian",
- "pl": "Polish (Poland)",
- "pa": "Punjabi (India)",
- "ro": "Romanian (Romania)",
- "rm": "Romansh (Switzerland)",
- "ru": "Russian (Russia)",
- "sa": "Sanskrit (India)",
- "st": "Sesotho sa Leboa (South Africa)",
- "tn": "Setswana (South Africa)",
- "si": "Sinhala (Sri Lanka)",
- "sk": "Slovak (Slovakia)",
- "sl": "Slovenian (Slovenia)",
- "sv": "Swedish (Sweden)",
- "syr": "Syriac (Syria)",
- "tg": "Tajik (Cyrillic, Tajikistan)",
- "ta": "Tamil (India)",
- "tt": "Tatar (Russia)",
- "te": "Telugu (India)",
- "th": "Thai (Thailand)",
- "bo": "Tibetan (PRC)",
- "tr": "Turkish (Turkey)",
- "tk": "Turkmen (Turkmenistan)",
- "uk": "Ukrainian (Ukraine)",
- "ur": "Urdu (Islamic Republic of Pakistan)",
- "vi": "Vietnamese (Vietnam)",
- "cy": "Welsh (United Kingdom)",
- "wo": "Wolof (Senegal)",
- "ii": "Yi (PRC)",
- "yo": "Yoruba (Nigeria)"
- },
- "AppProtection": {
- "allAppTypes": "Target to all app types",
- "androidPlatformLabel": "Android",
- "appsInAndroidWorkProfile": "Apps in Android Work Profile",
- "appsOnIntuneManagedDevices": "Apps on Intune managed devices",
- "appsOnUnmanagedDevices": "Apps on unmanaged devices",
- "iOSPlatformLabel": "iOS/iPadOS",
- "iosAndroidMacPlatformLabel": "iOS, Android, Mac",
- "iosAndroidPlatformLabel": "iOS, Android",
- "macPlatformLabel": "Mac",
- "notAvailable": "Not Available",
- "windows10PlatformLabel": "Windows 10 and later",
- "withEnrollment": "With enrollment",
- "withoutEnrollment": "Without enrollment"
- },
+ "ApplicabilityRules": {
+ "GridLabel": {
+ "property": "Property",
+ "rule": "Rule",
+ "ruleDetails": "Rule Details",
+ "value": "Value"
+ },
+ "assignIf": "Assign profile if",
+ "deleteWarning": "This will delete the selected Applicability Rule",
+ "dontAssignIf": "Don't assign profile if",
+ "editionDisplayText": "{0} {1}",
+ "editionDisplayTextMore": "and {0} more",
+ "instructions": "Specify how to apply this profile within an assigned group. Intune will only apply the profile to devices that meet the combined criteria of these rules.",
+ "maxText": "Max",
+ "minText": "Min",
+ "noActionRow": "No Applicability Rules Specified",
+ "oSVersion": "e.g. 1.2.3.4",
+ "toText": "to",
+ "windows10Education": "Windows 10/11 Education",
+ "windows10EducationN": "Windows 10/11 Education N",
+ "windows10Enterprise": "Windows 10/11 Enterprise",
+ "windows10EnterpriseN": "Windows 10/11 Enterprise N",
+ "windows10HolographicEnterprise": "Windows 10 Holographic for Business",
+ "windows10Home": "Windows 10/11 Home",
+ "windows10HomeChina": "Windows 10 Home China",
+ "windows10HomeN": "Windows 10/11 Home N",
+ "windows10HomeSingleLanguage": "Windows 10/11 Home Single Language",
+ "windows10IoTCore": "Windows 10 IoT Core",
+ "windows10IoTCoreCommercial": "Windows 10 IoT Core Commercial",
+ "windows10Mobile": "Windows 10 Mobile",
+ "windows10MobileEnterprise": "Windows 10 Mobile Enterprise",
+ "windows10OsEdition": "OS edition",
+ "windows10OsVersion": "OS version",
+ "windows10Professional": "Windows 10/11 Professional",
+ "windows10ProfessionalEducation": "Windows 10/11 Professional Education",
+ "windows10ProfessionalEducationN": "Windows 10/11 Professional Education N",
+ "windows10ProfessionalN": "Windows 10 Professional N",
+ "windows10ProfessionalWorkstation": "Windows 10/11 Professional Workstation",
+ "windows10ProfessionalWorkstationN": "Windows 10/11 Professional Workstation N"
+ },
+ "DetectionRules": {
+ "ComparisonOperators": {
+ "equals": "Equals",
+ "greaterThan": "Greater than",
+ "greaterThanOrEqualTo": "Greater than or equal to",
+ "lessThan": "Less than",
+ "lessThanOrEqualTo": "Less than or equal to",
+ "notEqualTo": "Not equal to"
+ },
+ "CustomScript": {
+ "enforceSignatureCheck": "Enforce script signature check and run script silently",
+ "enforceSignatureCheckTooltip": "Select 'Yes' to verify that the script is signed by a trusted publisher, which will allow the script to run with no warnings or prompts displayed. The script will run unblocked. Select 'No' (default) to run the script with end-user confirmation without signature verification.",
+ "header": "Use a custom detection script",
+ "runAs32Bit": "Run script as 32-bit process on 64-bit clients",
+ "runAs32BitTooltip": "Select 'Yes' to run the script in a 32-bit process on 64-bit clients. Select 'No' (default) to run the script in a 64-bit process on 64-bit clients. 32-bit clients run the script in a 32-bit process.",
+ "scriptFile": "Script file",
+ "scriptFileNotSelectedValidation": "No script file is selected.",
+ "scriptFileTooltip": "Select a PowerShell script that will detect the presence of the app on the client. The app will be detected when the script both returns a 0 value exit code and writes a string value to STDOUT.",
+ "scriptSizeLimitValidation": "Your detection script exceeds the maximum size allowed. Resolve this by reducing the size of your detection script."
+ },
+ "Manual": {
+ "FileRule": {
+ "DetectionMethodOptions": {
+ "dateCreated": "Date created",
+ "dateModified": "Date modified",
+ "doesNotExist": "File or folder does not exist",
+ "fileOrFolderExists": "File or folder exists",
+ "sizeInMB": "Size in MB",
+ "version": "String (version)"
+ },
+ "associatedWith32Bit": "Associated with a 32-bit app on 64-bit clients",
+ "associatedWith32BitTooltip": "Select 'Yes' to expand any path environment variables in the 32-bit context on 64-bit clients. Select 'No' (default) to expand any path variables in the 64-bit context on 64-bit clients. 32-bit clients will always use the 32-bit context.",
+ "detectionMethod": "Detection method",
+ "detectionMethodTooltip": "Select the type of detection method used to validate the presence of the app.",
+ "fileOrFolder": "File or folder",
+ "fileOrFolderToolTip": "The file or folder to detect.",
+ "operator": "Operator",
+ "operatorTooltip": "Select the operator for the detection method used to validate the comparison.",
+ "path": "Path",
+ "pathTooltip": "The full path of the folder containing the file or folder to detect.",
+ "value": "Value",
+ "valueTooltip": "Select a value that matches the selected detection method. Date detection methods should be entered in local time."
+ },
+ "GridColumns": {
+ "pathOrCode": "Path/Code",
+ "type": "Type"
+ },
+ "MsiRule": {
+ "operator": "Operator",
+ "operatorTooltip": "Select the operator for the MSI product version validation comparison.",
+ "productCode": "MSI product code",
+ "productCodeTooltip": "A valid MSI product code for the app.",
+ "productVersion": "Value",
+ "productVersionCheck": "MSI product version check",
+ "productVersionCheckTooltip": "Select 'Yes' to verify the MSI product version in addition to the MSI product code.",
+ "productVersionTooltip": "Enter the MSI product version for the app."
+ },
+ "RegistryRule": {
+ "DetectionMethodOptions": {
+ "integerComparison": "Integer comparison",
+ "keyDoesNotExist": "Key does not exist",
+ "keyExists": "Key exists",
+ "stringComparison": "String comparison",
+ "valueDoesNotExist": "Value does not exist",
+ "valueExists": "Value exists",
+ "versionComparison": "Version comparison"
+ },
+ "associatedWith32Bit": "Associated with a 32-bit app on 64-bit clients",
+ "associatedWith32BitTooltip": "Select 'Yes' to search the 32-bit registry on 64-bit clients. Select 'No' (default) search the 64-bit registry on 64-bit clients. 32-bit clients will always search the 32-bit registry.",
+ "detectionMethod": "Detection method",
+ "detectionMethodTooltip": "Select the type of detection method used to validate the presence of the app.",
+ "keyPath": "Key path",
+ "keyPathTooltip": "The full path of the registry entry containing the value to detect.",
+ "operator": "Operator",
+ "operatorTooltip": "Select the operator for the detection method used to validate the comparison.",
+ "value": "Value",
+ "valueName": "Value name",
+ "valueNameTooltip": "The name of the registry value to detect.",
+ "valueTooltip": "Select a value that matches the selected detection method."
+ },
+ "RuleTypeOptions": {
+ "file": "File",
+ "mSI": "MSI",
+ "registry": "Registry"
+ },
+ "gridAriaLabel": "Detection Rules",
+ "header": "Create a rule that indicates the presence of the app.",
+ "noRulesSelectedPlaceholder": "No rules are specified.",
+ "ruleTableLimit": "You can add up to 25 detection rules",
+ "ruleType": "Rule type",
+ "ruleTypeTooltip": "Choose the type of detection rule to add."
+ },
+ "RuleConfigurationOptions": {
+ "customScript": "Use a custom detection script",
+ "manual": "Manually configure detection rules"
+ },
+ "bladeTitle": "Detection rules",
+ "header": "Configure app specific rules used to detect the presence of the app.",
+ "rulesFormat": "Rules format",
+ "rulesFormatTooltip": "Choose to either manually configure the detection rules or use a custom script to detect the presence of the app.",
+ "selectorLabel": "Detection rules"
+ },
+ "PolicyType": {
+ "AttackSurfaceReductionRules": {
+ "configMgr": "Attack Surface Reduction Rules (ConfigMgr)"
+ },
+ "EndpointDetectionandResponse": {
+ "mDE": "Endpoint detection and response"
+ },
+ "EndpointSecurityTemplate": {
+ "aSRAppBrowserSecurity": "App and browser isolation",
+ "aSRApplicationControl": "Application control",
+ "aSRAttackSurfaceReduction": "Attack surface reduction rules",
+ "aSRDeviceControl": "Device control",
+ "aSRExploitProtection": "Exploit protection",
+ "aSRWebProtection": "Web protection (Microsoft Edge Legacy)",
+ "aVExclusions": "Microsoft Defender Antivirus exclusions",
+ "antivirus": "Microsoft Defender Antivirus",
+ "cloudPC": "Windows 365 Security Baseline",
+ "default": "Endpoint Security",
+ "defenderTest": "Microsoft Defender for Endpoint demo",
+ "diskEncryption": "BitLocker",
+ "eDR": "Endpoint detection and response",
+ "edgeSecurityBaseline": "Microsoft Edge baseline",
+ "edgeSecurityBaselinePreview": "Preview: Microsoft Edge baseline",
+ "editionUpgradeConfiguration": "Edition upgrade and mode switch",
+ "firewall": "Microsoft Defender Firewall",
+ "firewallRules": "Microsoft Defender Firewall rules",
+ "identityProtection": "Account protection",
+ "identityProtectionPreview": "Account protection (Preview)",
+ "mDMSecurityBaseline1810": "MDM Security Baseline for Windows 10 and later for October 2018",
+ "mDMSecurityBaseline1810Preview": "Preview: MDM Security Baseline for Windows 10 and later for October 2018",
+ "mDMSecurityBaseline1810PreviewBeta": "Preview: MDM Security Baseline for Windows 10 for October 2018 (beta)",
+ "mDMSecurityBaseline1906": "MDM Security Baseline for Windows 10 and later for May 2019",
+ "mDMSecurityBaseline2004": "MDM Security Baseline for Windows 10 and later for August 2020",
+ "mDMSecurityBaseline2101": "MDM Security Baseline for Windows 10 and later Decemeber 2020",
+ "macOSAntivirus": "Antivirus",
+ "macOSDiskEncryption": "FileVault",
+ "macOSFirewall": "macOS firewall",
+ "microsoftDefenderBaseline": "Microsoft Defender for Endpoint baseline",
+ "office365Baseline": "Microsoft Office O365 baseline",
+ "office365BaselinePreview": "Preview: Microsoft Office O365 baseline",
+ "securityBaselines": "Security Baselines",
+ "test": "Test Template",
+ "testFirewallRulesSecurityTemplateName": "Microsoft Defender Firewall rules (Test)",
+ "testIdentityProtectionSecurityTemplateName": "Account protection (Test)",
+ "windowsSecurityExperience": "Windows Security experience"
+ },
+ "Firewall": {
+ "mDE": "Microsoft Defender Firewall"
+ },
+ "FirewallRules": {
+ "mDE": "Microsoft Defender Firewall Rules"
+ },
+ "administrativeTemplates": "Administrative Templates",
+ "androidCompliancePolicy": "Android compliance policy",
+ "aospDeviceOwnerCompliancePolicy": "Android (AOSP) compliance policy",
+ "applicationControl": "Application Control",
+ "custom": "Custom",
+ "deliveryOptimization": "Delivery Optimization",
+ "derivedPersonalIdentityVerificationCredential": "Derived credential",
+ "deviceFeatures": "Device features",
+ "deviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
+ "deviceLock": "Device Lock",
+ "deviceOwner": "Fully managed, dedicated, and corporate-owned work profile",
+ "deviceRestrictions": "Device restrictions",
+ "deviceRestrictionsWindows10Team": "Device restrictions (Windows 10 Team)",
+ "domainJoinPreview": "Domain Join",
+ "editionUpgradeAndModeSwitch": "Edition upgrade and mode switch",
+ "education": "Education",
+ "email": "Email",
+ "emailSamsungKnoxOnly": "Email (Samsung KNOX only)",
+ "endpointProtection": "Endpoint protection",
+ "expeditedCheckin": "Mobile device management configuration",
+ "exploitProtection": "Exploit Protection",
+ "extensions": "Extensions",
+ "hardwareConfigurations": "BIOS Configurations",
+ "identityProtection": "Identity protection",
+ "iosCompliancePolicy": "iOS compliance policy",
+ "kiosk": "Kiosk",
+ "macCompliancePolicy": "Mac compliance policy",
+ "microsoftDefenderAntivirus": "Microsoft Defender Antivirus",
+ "microsoftDefenderAntivirusexclusions": "Microsoft Defender Antivirus exclusions",
+ "microsoftDefenderAtpWindows10Desktop": "Microsoft Defender for Endpoint (desktop devices running Windows 10 or later)",
+ "microsoftDefenderFirewallRules": "Microsoft Defender Firewall Rules",
+ "microsoftEdgeBaseline": "Microsoft Edge Baseline",
+ "mxProfileZebraOnly": "MX profile (Zebra only)",
+ "networkBoundary": "Network boundary",
+ "oemConfig": "OEMConfig",
+ "overrideGroupPolicy": "Override Group Policy",
+ "pkcsCertificate": "PKCS certificate",
+ "pkcsImportedCertificate": "PKCS imported certificate",
+ "preferenceFile": "Preference file",
+ "presets": "Presets",
+ "scepCertificate": "SCEP certificate",
+ "secureAssessmentEducation": "Secure assessment (Education)",
+ "settingsCatalog": "Settings Catalog",
+ "sharedMultiUserDevice": "Shared multi-user device",
+ "softwareUpdates": "Software Updates",
+ "trustedCertificate": "Trusted certificate",
+ "unknown": "Unknown",
+ "unsupported": "Unsupported",
+ "vpn": "VPN",
+ "wiFi": "Wi-Fi",
+ "wiFiImport": "Wi-Fi import",
+ "windows10CompliancePolicy": "Windows 10/11 compliance policy",
+ "windows10MobileCompliancePolicy": "Windows 10 mobile compliance policy",
+ "windows10XScep": "SCEP certificate - TEST",
+ "windows10XTrustedCertificate": "Trusted certificate - TEST",
+ "windows10XVPN": "VPN - TEST",
+ "windows10XWifi": "WIFI - TEST",
+ "windows8CompliancePolicy": "Windows 8 compliance policy",
+ "windowsHealthMonitoring": "Windows health monitoring",
+ "windowsInformationProtection": "Windows Information Protection",
+ "windowsPhoneCompliancePolicy": "Windows Phone compliance policy",
+ "windowsUpdateforBusiness": "Windows Update for Business",
+ "wiredNetwork": "Wired network",
+ "workProfile": "Personally-owned work profile"
+ },
+ "Win32Requirements": {
+ "AdditionalRequirements": {
+ "File": {
+ "fileOrFolderToolTip": "The file or folder as the selected requirement.",
+ "pathToolTip": "The complete path of the file or folder to detect.",
+ "property": "Property",
+ "valueToolTip": "Select a requirement value that matches the selected detection method. Date and time requirement should be entered in your local format."
+ },
+ "GridColumns": {
+ "pathOrScript": "Path/Script",
+ "type": "Type"
+ },
+ "Registry": {
+ "keyPath": "Key path",
+ "keyPathTooltip": "The full path of the registry entry containing the value as a requirement.",
+ "operator": "Operator",
+ "operatorTooltip": "Select the operator for the comparison.",
+ "registryRequirement": "Registry key requirement",
+ "registryRequirementTooltip": "Select the registry key requirement comparison.",
+ "valueName": "Value name",
+ "valueNameTooltip": "The name of the required registry value."
+ },
+ "RequirementTypeOptions": {
+ "fileType": "File",
+ "registry": "Registry",
+ "script": "Script"
+ },
+ "Script": {
+ "RequirementMethodOptions": {
+ "boolean": "Boolean",
+ "dateTime": "Date and Time",
+ "float": "Floating Point",
+ "integer": "Integer",
+ "string": "String",
+ "version": "Version"
+ },
+ "ScriptContent": {
+ "emptyMessage": "Script content should not be empty."
+ },
+ "duplicateName": "Script name {0} has already been used. Please enter a different name.",
+ "enforceSignatureCheck": "Enforce script signature check",
+ "enforceSignatureCheckTooltip": "Select ‘Yes’ to verify that the script is signed by a trusted publisher, which will allow the script to run without warnings or prompts. The script will run unblocked. Select ‘No’ (default) to run the script with end-user confirmation, but without signature verification.",
+ "loggedOnCredentials": "Run this script using the logged on credentials",
+ "loggedOnCredentialsTooltip": "Run script using the signed in device credentials.",
+ "operatorTooltip": "Select the operator for the requirement comparison.",
+ "requirementMethod": "Select output data type",
+ "requirementMethodTooltip": "Select the data type used when determining a detection match requirement.",
+ "scriptFile": "Script file",
+ "scriptFileTooltip": "Select a PowerShell script that will detect the presence of the app on the client. If the app is detected, the requirement process will provide a 0 value exit code and will write a string value to STDOUT.",
+ "scriptName": "Script name",
+ "value": "Value",
+ "valueTooltip": "Select a requirement value that matches the selected detection method. Date and time requirement should be entered in your local format."
+ },
+ "bladeTitle": "Add a Requirement rule",
+ "createRequirementHeader": "Create a requirement.",
+ "header": "Configure additional requirement rules",
+ "label": "Additional requirement rules",
+ "noRequirementsSelectedPlaceholder": "No requirements are specified.",
+ "requirementType": "Requirement type",
+ "requirementTypeTooltip": "Choose the type of detection method used to determine how a requirement is validated."
+ },
+ "architectures": "Operating system architecture",
+ "architecturesTooltip": "Choose the architectures needed to install the app.",
+ "bladeTitle": "Requirements",
+ "diskSpace": "Disk space required (MB)",
+ "diskSpaceTooltip": "Free disk space needed on the system drive to install the app.",
+ "header": "Specify the requirements that devices must meet before the app is installed:",
+ "maximumTextFieldValue": "The value must be at most {0}.",
+ "minimumCpuSpeed": "Minimum CPU speed required (MHz)",
+ "minimumCpuSpeedTooltip": "The minimum CPU speed required to install the app.",
+ "minimumLogicalProcessors": "Minimum number of logical processors required",
+ "minimumLogicalProcessorsTooltip": "The minimum number of logical processors required to install the app.",
+ "minimumOperatingSystem": "Minimum operating system",
+ "minimumOperatingSystemTooltip": "Select the minimum operating system needed to install the app.",
+ "minumumTextFieldValue": "The value must be at least {0}.",
+ "physicalMemory": "Physical memory required (MB)",
+ "physicalMemoryTooltip": "Physical memory (RAM) required to install the app.",
+ "selectorLabel": "Requirements",
+ "validNumber": "Please enter a valid number."
+ },
+ "AzureIAM": {
+ "AdrsUserActionSelectionWarning": {
+ "conditions": "Conditions that require device registration are not available with \"Register or join devices\" user action.",
+ "message": "Only \"Require multi-factor authentication\" can be used in policies created for the \"Register or join devices\" user action.{0}"
+ },
+ "AuthContext": {
+ "Delete": {
+ "failure": "Failed to delete {0}",
+ "failureCa": "Failed to delete {0} because it is referenced by CA policies",
+ "modifying": "Deleting {0}",
+ "success": "Successfully deleted {0}"
+ },
+ "Included": {
+ "none": "No cloud apps, actions, or authentication contexts selected",
+ "plural": "{0} authentication contexts included",
+ "singular": "1 authentication context included"
+ },
+ "InfoBlade": {
+ "createTitle": "Add authentication context",
+ "descPlaceholder": "Add description for the authentication context",
+ "modifyTitle": "Modify authentication context",
+ "namePlaceholder": "Ex. Trusted location, Trusted device, Strong authorization",
+ "publishDesc": "Publish to apps will make the authentication context available for apps to use. Publish once you finish configuring Conditional Access policy for the tag. [Learn more][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150966",
+ "publishLabel": "Publish to apps",
+ "titleDesc": "Configure an authentication context that will be used to protect application data and actions. Use names and descriptions that can be understood by application administrators. [Learn more][1]\n[1]:https://go.microsoft.com/fwlink/?linkid=2150965"
+ },
+ "Notify": {
+ "failure": "Failed to update {0}",
+ "modifying": "Modifying {0}",
+ "success": "Successfully updated {0}"
+ },
+ "WhatIf": {
+ "selected": "Authentication context included"
+ },
+ "addNewStepUp": "New authentication context",
+ "checkBoxInfo": "Select the authentication contexts this policy will apply to",
+ "configure": "Configure authentication contexts",
+ "createCA": "Assign Conditional Access policies to the authentication context",
+ "dataGrid": "List of authentication contexts",
+ "deleteFailedByReference": "You cannot delete this authentication context because it is being referenced by CA policies.",
+ "description": "Description",
+ "documentation": "Documentation",
+ "getStarted": "Get started",
+ "label": "Authentication context (preview)",
+ "menuLabel": "Authentication context (Preview)",
+ "name": "Name",
+ "noAuthContextConfigured": "No authentication contexts have been configured.",
+ "noAuthContextSet": "There are no authentication contexts",
+ "noData": "No authentication contexts to display",
+ "selectionInfo": "Authentication context is used to secure application data and actions in apps like SharePoint and Microsoft Cloud App Security.",
+ "step": "Step",
+ "tabDescription": "Manage authentication context to protect data and actions in your apps. [Learn more][1]\n[1]:https://go.microsoft.com/fwlink/?linkid=2150965",
+ "tagResources": "Tag resources with an authentication context"
+ },
+ "AuthenticationStrength": {
+ "Mode": {
+ "deviceBasedPush": "Microsoft Authenticator (Phone Sign-in)",
+ "deviceBasedPushFido2X509Certificate": "Microsoft Authenticator (Phone Sign-in) + Fido 2 + Certificate Based Authentication",
+ "deviceBasedPushX509CertificateSingleFactor": "Microsoft Authenticator (Phone Sign-in) + Fido 2 + Certificate Based Authentication (Single Factor)",
+ "email": "Email one-time passcode",
+ "emailOtp": "Email one-time passcode",
+ "federatedMultiFactor": "Federated Multi-Factor",
+ "federatedSingleFactor": "Federated single factor",
+ "federatedSingleFactorFederatedMultiFactor": "Federated single factor + Federated Multi-Factor",
+ "fido2": "FIDO 2 security key",
+ "fido2X509CertificateSingleFactor": "FIDO 2 security key + Certificate Based Authentication (Single Factor)",
+ "hardwareOath": "Hardware OATH tokens",
+ "hardwareOathEmail": "Hardware OATH tokens + Email one-time passcode",
+ "hardwareOathX509CertificateSingleFactor": "Hardware OATH tokens + Certificate Based Authentication (Single Factor)",
+ "microsoftAuthenticatorPSIX509CertificateSingleFactor": "Microsoft Authenticator (Phone Sign-in) + Certificate Based Authentication (Single Factor)",
+ "microsoftAuthenticatorPsi": "Microsoft Authenticator (Phone Sign-in)",
+ "microsoftAuthenticatorPush": "Microsoft Authenticator (Push Notification)",
+ "microsoftAuthenticatorPushEmail": "Microsoft Authenticator (Push Notification) + Email one-time passcode",
+ "microsoftAuthenticatorPushX509CertificateSingleFactor": "Microsoft Authenticator (Push Notification) + Certificate Based Authentication (Single Factor)",
+ "none": "None",
+ "password": "Password",
+ "passwordDeviceBasedPush": "Password + Microsoft Authenticator (Phone Sign-in)",
+ "passwordFido2": "Password + FIDO 2 security key",
+ "passwordHardwareOath": "Password + Hardware OATH tokens",
+ "passwordMicrosoftAuthenticatorPSI": "Password + Microsoft Authenticator (Phone Sign-in)",
+ "passwordMicrosoftAuthenticatorPush": "Password + Microsoft Authenticator (Push Notification)",
+ "passwordSms": "Password + SMS",
+ "passwordSoftwareOath": "Password + Software OATH tokens",
+ "passwordTemporaryAccessPassMultiUse": "Password + Temporary Access Pass (Multi-use)",
+ "passwordTemporaryAccessPassOneTime": "Password + Temporary Access Pass (One-time use)",
+ "passwordVoice": "Password + Voice",
+ "sms": "SMS",
+ "smsEmail": "SMS + Email one-time passcode",
+ "smsSignIn": "SMS sign in",
+ "smsX509CertificateSingleFactor": "SMS + Certificate Based Authentication (Single Factor)",
+ "softwareOath": "Software OATH tokens",
+ "softwareOathEmail": "Software OATH tokens + Email one-time passcode",
+ "softwareOathX509CertificateSingleFactor": "Software OATH tokens + Certificate Based Authentication (Single Factor)",
+ "temporaryAccessPassMultiUse": "Temporary Access Pass (Multi-use)",
+ "temporaryAccessPassMultiUseX509CertificateSingleFactor": "Temporary Access Pass (Multi-use) + Certificate Based Authentication (Single Factor)",
+ "temporaryAccessPassOneTime": "Temporary Access Pass (One-time use)",
+ "temporaryAccessPassOneTimeX509CertificateSingleFactor": "Temporary Access Pass (One-time use) + Certificate Based Authentication (Single Factor)",
+ "voice": "Voice",
+ "voiceEmail": "Voice + Email one-time passcode",
+ "voiceX509CertificateSingleFactor": "Voice + Certificate Based Authentication (Single Factor)",
+ "windowsHelloForBusiness": "Windows Hello For Business",
+ "x509CertificateMultiFactor": "Certificate Based Authentication (Multi-Factor)",
+ "x509CertificateSingleFactor": "Certificate Based Authentication (Single Factor)"
+ }
+ },
+ "CAS": {
+ "BuiltinPolicy": {
+ "Option": {
+ "blockDownloads": "Block downloads (Preview)",
+ "monitorOnly": "Monitor only (Preview)",
+ "protectDownloads": "Protect downloads (Preview)",
+ "useCustomControls": "Use custom policy..."
+ },
+ "ariaLabel": "Choose the kind of Conditional Access App Control to apply"
+ }
+ },
+ "ChooseApplications": {
+ "Grid": {
+ "appIdAria": "App ID: {0}"
+ },
+ "LowerGrid": {
+ "ariaLabel": "List of selected cloud apps"
+ },
+ "UpperGrid": {
+ "ariaLabel": "List of cloud apps which match the search term"
+ }
+ },
+ "ChooseLocations": {
+ "Validation": {
+ "failed": "With \"Selected locations\" you must choose at least one location.",
+ "selector": "Choose at least one location"
+ }
+ },
+ "ClientApp": {
+ "Clients": {
+ "Validation": {
+ "failed": "You must select at least one of the following clients"
+ }
+ }
+ },
+ "ClientConditionsInfo": {
+ "browserAndModern": "This policy only applies to browser and modern authentication apps. To apply the policy to all client apps, enable the client app condition and select all the client apps.",
+ "classicExperience": "Since this policy was created, the default client apps configuration has been updated.",
+ "legacyAuth": "When not configured, policies now apply to all client apps, including modern and legacy auth."
+ },
+ "CloudAppFilterBlade": {
+ "AssignmentFilter": {
+ "header": "Attribute",
+ "placeholder": "Choose an attribute"
+ },
+ "Configure": {
+ "infoBalloon": "Configure app filters you want to policy to apply to."
+ },
+ "NoPermissions": {
+ "learnMoreAria": "More about custom security attribute permissions.",
+ "message": "You do not have the permissions needed to use custom security attributes."
+ },
+ "gridHeader": "Using custom security attributes you can use the rule builder or rule syntax text box to create or edit the filter rules. In the preview, only attributes of type String are supported. Attributes of type Integer or Boolean will not be shown.",
+ "learnMoreAria": "More information about using the rule builder and syntax text box.",
+ "noAttributes": "There are no custom attributes available to filter on. You will need to configure some attributes to employ this filter.",
+ "title": "Edit filter (Preview)"
+ },
+ "CloudAppsUserActions": {
+ "any": "Any cloud app or action",
+ "infoBalloon": "Cloud app or user action you want to test. For example, 'SharePoint Online'",
+ "learnMore": "Control access based on all or specific cloud apps or actions.",
+ "learnMoreB2C": "Control access based on all or specific cloud apps.",
+ "title": "Cloud apps or actions"
+ },
+ "CloudappsSelectionBlade": {
+ "Excluded": {
+ "gridAria": "List of excluded cloud apps"
+ },
+ "Filter": {
+ "configured": "Configured",
+ "label": "Edit filter (Preview)",
+ "with": "{0} with {1}"
+ },
+ "Included": {
+ "gridAria": "List of included cloud apps"
+ },
+ "Validation": {
+ "authContext": "With \"authentication context\" you must configure at least one sub-item.",
+ "selectApps": "\"{0}\" must be configured",
+ "selector": "Select at least one app.",
+ "userActions": "With \"User actions\" you must configure at least one sub-item."
+ }
+ },
+ "DeviceState": {
+ "LearnMore": {
+ "message": "Control user access when the device the user is signing-in from is not \"Hybrid Azure AD joined\" or \"marked as compliant\".\n This has been deprecated. Use '{1}' instead."
+ }
+ },
+ "Errors": {
+ "notFound": "The policy was not found or has been deleted.",
+ "notFoundDetailed": "The policy \"{0}\" no longer exists. It may have been deleted."
+ },
+ "GuestsOrExternalUsers": {
+ "allExternalTenantsLabel": "All Azure AD organizations",
+ "b2bCollaborationGuestLabel": "B2B collaboration guest users",
+ "b2bCollaborationMemberLabel": "B2B collaboration member users",
+ "b2bDirectConnectUserLabel": "B2B direct connect users",
+ "enumeratedExternalTenantsError": "Please select at least one external tenant",
+ "enumeratedExternalTenantsLabel": "Select Azure AD organizations",
+ "externalTenantsLabel": "Specify external Azure AD organizations",
+ "externalUserDropdownLabel": "Choose guest or external user types",
+ "externalUsersError": "Select at least one external guest or user type",
+ "guestOrExternalUsersInfoContent": "Includes B2B Collaboration, B2B direct connect and other types of external users.",
+ "guestOrExternalUsersLabel": "Guest or external users",
+ "internalGuestLabel": "Local guest users",
+ "otherExternalUserLabel": "Other external users"
+ },
+ "NamedLocation": {
+ "Form": {
+ "CountryLookup": {
+ "ariaLabel": "Country lookup method",
+ "gps": "Determine location by GPS coordinates",
+ "info": "When the location condition of a Conditional Access policy is configured, users will be prompted by the Authenticator app to share their GPS location. ",
+ "ip": "Determine location by IP address (IPv4 only)"
+ },
+ "Header": {
+ "new": "New location ({0})",
+ "update": "Update location ({0})"
+ },
+ "IP": {
+ "learn": "Configure named location IPv4 and IPv6 ranges.\n[Learn more][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
+ },
+ "Include": {
+ "infoBalloon": "Unknown countries/regions are IP addresses that are not associated with a specific country or region. [Learn more][1]\n\nThis includes:\n* IPv6 addresses\n* IPv4 addresses without a direct mapping\n[1]: https://aka.ms/canamedlocations\n",
+ "label": "Include unknown countries/regions"
+ },
+ "Name": {
+ "empty": "Name cannot be empty",
+ "placeholder": "Name this location"
+ },
+ "PrivateLink": {
+ "learn": "Create a new named location containing Private Links for Azure AD.\n[Learn more][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
+ },
+ "Search": {
+ "countries": "Search countries",
+ "names": "Search names",
+ "privateLinks": "Search Private Links"
+ },
+ "Trusted": {
+ "label": "Mark as trusted location"
+ },
+ "enter": "Enter a new IPv4 or IPv6 range",
+ "example": "ex: 40.77.182.32/27 or 2a01:111::/32"
+ },
+ "Label": {
+ "addCountries": "Countries location",
+ "addIpRange": "IP ranges location",
+ "addPrivateLink": "Azure Private Links"
+ },
+ "Notification": {
+ "Create": {
+ "Failed": {
+ "description": "Failure in creating new location ({0})",
+ "title": "Creation has failed"
+ },
+ "InProgress": {
+ "description": "Creating new location ({0})",
+ "title": "Creation in progress"
+ },
+ "Success": {
+ "description": "Success in creating new location ({0})",
+ "title": "Creation has succeeded"
+ }
+ },
+ "Delete": {
+ "Failed": {
+ "description": "Failure in deleting location ({0})",
+ "title": "Deletion has failed"
+ },
+ "InProgress": {
+ "description": "Deleting location ({0})",
+ "title": "Deletion in progress"
+ },
+ "Success": {
+ "description": "Success in deleting location ({0})",
+ "title": "Deletion has succeeded"
+ }
+ },
+ "Update": {
+ "Failed": {
+ "description": "Failure in updating location ({0})",
+ "title": "Updating has failed"
+ },
+ "InProgress": {
+ "description": "Updating location ({0})",
+ "title": "Updating in progress"
+ },
+ "Success": {
+ "description": "Success in updating location ({0})",
+ "title": "Updating has succeeded"
+ }
+ }
+ },
+ "PrivateLinks": {
+ "grid": "List of Private Links"
+ },
+ "Trusted": {
+ "title": "Trusted type",
+ "trusted": "Trusted"
+ },
+ "Type": {
+ "all": "All types",
+ "countries": "Countries",
+ "ipRanges": "IP ranges",
+ "privateLinks": "Private Links",
+ "title": "Location type"
+ },
+ "iPRangeInvalidError": "Value must be a valid IPv4 or IPv6 range.",
+ "iPRangeLinkOrSiteLocalError": "IP network detected as a link local or site local address.",
+ "iPRangeOctetError": "IP network must not start with 0 or 255.",
+ "iPRangePrefixError": "IP network prefix must be from /{0} to /{1}.",
+ "iPRangePrivateError": "IP network detected as a private address."
+ },
+ "NamedNetwork": {
+ "List": {
+ "gridAria": "List of named locations"
+ }
+ },
+ "Policies": {
+ "Grid": {
+ "aria": "List of Conditional Access policies"
+ },
+ "countText": "{0} out of {1} policies found",
+ "countTextSingular": "{0} out of 1 policy found",
+ "search": "Search policies"
+ },
+ "Policy": {
+ "Condition": {
+ "ServicePrincipalRisk": {
+ "description": "Configure service principal risk levels needed for policy to be enforced",
+ "infoBalloonContent": "Configure service principal risk to apply the policy to selected risk level(s)",
+ "title": "Service principal risk (Preview)"
+ }
+ }
+ },
+ "PolicyControlAuthStrength": {
+ "MultiFactorAuthentication": {
+ "description": "Combinations of methods that satisfy strong authentication, such as Password + SMS",
+ "displayName": "Multi-factor authentication (MFA)"
+ },
+ "Passwordless": {
+ "description": "Passwordless methods that satisfy strong authentication, such as Microsoft Authenticator ",
+ "displayName": "Passwordless MFA"
+ },
+ "PhishingResistant": {
+ "description": "Phishing-resistant Passwordless methods for the strongest authentication, such as FIDO2 Security Key",
+ "displayName": "Phishing resistant MFA"
+ }
+ },
+ "PolicyControlFedAuthMethod": {
+ "ariaLabel": "Learn more about requiring authentication methods satisfied by federation providers.",
+ "certificate": "Certificate authentication",
+ "infoBubble": "Specify a required authentication method, that must be satisfied by federation provider, such as ADFS.",
+ "multifactor": "Multi-factor authentication",
+ "require": "Require federated authentication method (Preview)",
+ "whatIfFormat": "{0} - {1}"
+ },
+ "PolicyState": {
+ "off": "Off",
+ "on": "On",
+ "reportOnly": "Report-only"
+ },
+ "PolicyTemplates": {
+ "Devices": {
+ "description": "Select Devices policy template category to gain visibility into devices accessing the network. Ensure compliance and health status before granting access.",
+ "name": "Devices"
+ },
+ "Identities": {
+ "description": "Select Identities policy template category to verify and secure each identity with strong authentication across your entire digital estate.",
+ "name": "Identities"
+ },
+ "Summary": {
+ "CloudApps": {
+ "allCloudApps": "All apps",
+ "office365": "Office 365",
+ "registerSecurityInfo": "Register security information"
+ },
+ "Conditions": {
+ "androidAndIOS": "Device Platform: Android and IOS",
+ "anyDevice": "Any device except Android, IOS, Windows and Mac",
+ "anyDeviceStateExceptHybrid": "Any device state except compliant and hybrid Azure AD joined",
+ "anyLocation": "Any location except trusted",
+ "browserMobileDesktop": "Client apps: Browser, Mobile apps and desktop clients",
+ "exchangeActiveSync": "Client Apps: Exchange Active Sync, Other Clients",
+ "windowsAndMac": "Device Platform: Windows and Mac"
+ },
+ "Devices": {
+ "anyDevice": "Any Device"
+ },
+ "Grant": {
+ "appProtectionPolicy": "Require app protection policy",
+ "approvedClientApp": "Require approved client app",
+ "blockAccess": "Block access",
+ "mfa": "Require multi-factor authentication",
+ "passwordChange": "Require password change",
+ "requireCompliantDevice": "Require device to be marked as compliant",
+ "requireHybridAzureADDevice": "Require hybrid Azure AD joined device"
+ },
+ "Session": {
+ "appEnforcedRestrictions": "Use app enforced restrictions",
+ "signInFrequency": "Sign-in Frequency and never persistent browser session"
+ },
+ "UsersAndGroups": {
+ "allUsers": "All Users",
+ "directoryRoles": "Directory roles except current administrator",
+ "globalAdmin": "Global Administrator",
+ "noGuestAndAdmins": "All Users except Guest and External, Global administrators, Current administrator"
+ },
+ "azureManagement": "Azure Management",
+ "deviceFilters": "Filters for devices",
+ "devicePlatforms": "Device Platforms"
+ },
+ "TemplateId": {
+ "AppEnforcedRestrictions": {
+ "description": "Block or limit access to SharePoint, OneDrive, and Exchange content from unmanaged devices.",
+ "name": "CA014: Use application enforced restrictions for unmanaged devices",
+ "title": "Use application enforced restrictions for unmanaged devices"
+ },
+ "ApprovedClientApps": {
+ "description": "To prevent data loss, organizations can restrict access to approved modern auth client apps with Intune app protection.",
+ "name": "CA012: Require approved client apps and app protection",
+ "title": "Require approved client apps and app protection"
+ },
+ "BlockAccessOnUnknowns": {
+ "description": "Users will be blocked from accessing company resources when the device type is unknown or unsupported.",
+ "name": "CA010: Block access for unknown or unsupported device platform",
+ "title": "Block access for unknown or unsupported device platform"
+ },
+ "BlockLegacyAuth": {
+ "description": "Block legacy authentication endpoints that can be used to bypass multi-factor authentication. ",
+ "name": "CA003: Block legacy authentication",
+ "title": "Block legacy authentication"
+ },
+ "NoPersistentBrowserSession": {
+ "description": "Protect user access on unmanaged devices by preventing browser sessions from remaining signed in after the browser is closed and setting a sign-in frequency to 1 hour.",
+ "name": "CA011: No persistent browser session",
+ "title": "No persistent browser session"
+ },
+ "RequireCompliantOrHybridADAdmins": {
+ "description": "Require privileged administrators to only access resources when using a compliant or hybrid Azure AD joined device.",
+ "name": "CA009: Require compliant or hybrid Azure AD joined device for admins",
+ "title": "Require compliant or hybrid Azure AD joined device for admins"
+ },
+ "RequireCompliantOrHybridADAllUsers": {
+ "description": "Protect access to company resources by requiring users to use a managed device or perform multi-factor authentication. (macOS or Windows only)",
+ "name": "CA013: Require compliant or hybrid Azure AD joined device or multi-factor authentication for all users",
+ "title": "Require compliant or hybrid Azure AD joined device or multi-factor authentication for all users"
+ },
+ "RequireMFAAllUsers": {
+ "description": "Require multi-factor authentication for all user accounts to reduce risk of compromise.",
+ "name": "CA004: Require multi-factor authentication for all users",
+ "title": "Require multi-factor authentication for all users"
+ },
+ "RequireMFAForAdmins": {
+ "description": "Require multi-factor authentication for privileged administrative accounts to reduce risk of compromise. This policy will target the same roles as Security Default.",
+ "name": "CA001: Require multi-factor authentication for admins",
+ "title": "Require multi-factor authentication for admins"
+ },
+ "RequireMFAForAzureManagement": {
+ "description": "Require multi-factor authentication to protect privileged access to Azure resources.",
+ "name": "CA006: Require multi-factor authentication for Azure management",
+ "title": "Require multi-factor authentication for Azure management"
+ },
+ "RequireMFAForGuestAccess": {
+ "description": "Require guest users perform multi-factor authentication when accessing your company resources.",
+ "name": "CA005: Require multi-factor authentication for guest access",
+ "title": "Require multi-factor authentication for guest access"
+ },
+ "RequireMFAForRiskySignIn": {
+ "description": "Require multi-factor authentication if the sign-in risk is detected to be medium or high. (Requires an Azure AD Premium 2 License)",
+ "name": "CA007: Require multi-factor authentication for risky sign-ins",
+ "title": "Require multi-factor authentication for risky sign-ins"
+ },
+ "RequirePasswordChangeForHighRiskUsers": {
+ "description": "Require the user to change their password if the user risk is detected to be high. (Requires an Azure AD Premium 2 License)",
+ "name": "CA008: Require password change for high-risk users",
+ "title": "Require password change for high-risk users"
+ },
+ "RequireSecurityInfo": {
+ "description": "Secure when and how users register for Azure AD multi-factor authentication and self-service password. ",
+ "name": "CA002: Securing security info registration",
+ "title": "Securing security info registration"
+ }
+ },
+ "TemplateState": {
+ "BlockAccessOnUnknowns": {
+ "title": "Enabling this policy will prevent any access from unknown device type, consider using report only mode to begin with until you have confirmed this will not impact your users."
+ },
+ "BlockLegacyAuth": {
+ "description": "Consider using report only mode to begin with until you have confirmed this will not impact your users.",
+ "title": "Enabling this policy will block legacy authentication for all your users."
+ },
+ "RequireCompliantOrHybridADAdmins": {
+ "Description": {
+ "on": "Consider using report only mode to begin with until you have confirmed this will not impact your privileged users.",
+ "reportOnly": "Policies in report-only mode that require compliant devices may prompt users on Mac, iOS, and Android to select a device certificate during policy evaluation, even though device compliance is not enforced. These prompts may repeat until the device is made compliant."
+ },
+ "Title": {
+ "on": "Enabling this policy will prevent any access for privileged users unless using a managed device such as compliant or hybrid Azure AD joined. Ensure you have configured your compliance policies or enabled hybrid Azure AD configuration before enabling.",
+ "reportOnly": "Ensure you have configured your compliance policies or enabled hybrid Azure AD configuration before enabling. "
+ }
+ },
+ "RequireCompliantOrHybridADAllUsers": {
+ "Description": {
+ "on": "This policy will affect all users except the current logged in Administrator. Consider using report only mode to begin with until you have confirmed this will not impact your users."
+ },
+ "Title": {
+ "on": "Don't lock yourself out! Make sure that your device is compliant, or hybrid Azure AD Joined or you have configured multi-factor authentication. ",
+ "reportOnly": "Policies in report-only mode that require compliant devices may prompt users on Mac, iOS, and Android to select a device certificate during policy evaluation, even though device compliance is not enforced. These prompts may repeat untli the device is made compliant."
+ }
+ },
+ "RequireMfa": {
+ "description": "If you use emergency access accounts or Azure AD connect to synchronize your on-premises objects, you may need to exclude these accounts from this policy after creation."
+ },
+ "RequireMfaAdmins": {
+ "description": "Please note the current administrator account will automatically be excluded but all others will be protected on policy creation. Consider using report only mode to begin with.",
+ "title": "Don't lock yourself out! This policy impacts the Azure portal."
+ },
+ "RequireMfaAllUsers": {
+ "description": "Consider using report only mode to begin with until you have planned and communicated this change to all your users.",
+ "title": "Enabling this policy will enforce multi-factor authentication for all your users."
+ },
+ "RequireSecurityInfo": {
+ "description": "Please ensure you review your configuration to protect these accounts based on your company needs.",
+ "title": "The following users and roles are excluded from this policy, Guests and External Users, Global Administrators, Current Administrator"
+ }
+ },
+ "basics": "Basics",
+ "clientApps": "Client apps",
+ "cloudApps": "Cloud apps",
+ "cloudAppsOrActions": "Cloud apps or actions ",
+ "conditions": "Conditions ",
+ "createNewPolicy": "Create new policy from templates (Preview)",
+ "createPolicy": "Create Policy",
+ "currentUser": "Current user",
+ "customizeBuild": "Customize your build",
+ "customizeTemplate": "Template lists are customized based on the type of policy you're looking to create",
+ "excludedDevicePlatform": "Excluded device platforms",
+ "excludedDirectoryRoles": "Excluded directory roles",
+ "excludedLocation": "Excluded directory roles",
+ "excludedUsers": "Excluded users",
+ "grantControl": "Grant control ",
+ "includeFilteredDevice": "Include filtered devices in policy",
+ "includedDevicePlatform": "Included device platforms",
+ "includedDirectoryRoles": "Included directory roles",
+ "includedLocation": "Included location",
+ "includedUsers": "Included users",
+ "legacyAuthenticationClients": "Legacy authentication clients",
+ "namePolicy": "Name your policy",
+ "next": "Next",
+ "policyName": "Policy Name",
+ "policyState": "Policy state",
+ "policySummary": "Policy summary",
+ "policyTemplate": "Policy template",
+ "previous": "Previous",
+ "reviewAndCreate": "Review + create",
+ "riskLevels": "Risk levels",
+ "selectATemplate": "Select a Template",
+ "selectTemplate": "Select template",
+ "selectTemplateCategory": "Select a template category",
+ "selectTemplateRecommendation": "We recommend the following templates based on your response",
+ "sessionControl": "Session control ",
+ "signInFrequency": "Sign-in frequency",
+ "signInRisk": "Sign-in risk",
+ "template": "Template ",
+ "templateCategory": "Template category",
+ "userRisk": "User risk",
+ "usersAndGroups": "Users and groups ",
+ "viewPolicySummary": "View policy summary "
+ },
+ "SSM": {
+ "MemberSelector": {
+ "description": "Users and groups"
+ },
+ "Notification": {
+ "Migration": {
+ "error": "Failed to migrate Continuous access evaluation settings to Conditional access policies",
+ "inProgress": "Migrating Continuous access evaluation settings",
+ "success": "Successfully migrated Continuous access evaluation settings to Conditional access policies",
+ "successDescription": "Please proceed to Conditional access policies to view the migrated settings in the newly created policy named \"CA policy created from CAE settings\"."
+ },
+ "error": "Failed to update Continuous access evaluation settings",
+ "inProgress": "Updating Continuous access evaluation settings",
+ "success": "Successfully updated Continuous access evaluation settings"
+ },
+ "PreviewOptions": {
+ "disable": "Disable preview",
+ "enable": "Enable preview"
+ },
+ "StrictLocationEnforcement": {
+ "infoContent1": "Different IPs can be seen by Azure AD and Resource Provider from the same client device due to network partition or IPv4/IPv6 mismatch. Strict Location Enforcement will enforce the Conditional Access policy based on both IP addresses seen by Azure AD and Resource Provider.",
+ "infoContent2": "To ensure maximum security, it is recommended to include all IPs that can be seen by both Azure AD and Resource Provider in your Named Location policy and turn on \"Strict Location Enforcement\" mode.",
+ "label": "Strict Location Enforcement",
+ "title": "Additional enforcement modes"
+ },
+ "bladeTitle": "Continuous access evaluation",
+ "description": "When a user's access is removed or a client IP address changes, Continuous access evaluation automatically blocks access to resources and applications in near real time. ",
+ "migrateLabel": "Migrate",
+ "migrationError": "Migration failed due to the following error: {0}",
+ "migrationInfo": "CAE setting has been moved under Conditional Access UX, please migrate with the “Migrate” button above and configure it with Conditional Access policy going forward. Click here to learn more.",
+ "noLicenseMessage": "Manage smart session management settings with Azure AD Premium",
+ "optionsPickerTitle": "Enable/Disable Continuous access evaluation",
+ "upsellInfo": "You cannot change your settings on this page anymore and any settings here should be disregarded. Your previous setting will be honored. You can configure your CAE settings under Conditional Access going forward. Click here to learn more."
+ },
+ "SelectOrganizations": {
+ "Blade": {
+ "Lower": {
+ "gridAria": "List of selected organizations"
+ },
+ "Upper": {
+ "gridAria": "List of available organizations"
+ },
+ "description": "Add an Azure AD organization by typing one of its domain names.",
+ "notFoundResult": "Not found",
+ "searchBoxPlaceholder": "Tenant ID or domain name",
+ "subTitle": "Azure AD organization"
+ },
+ "Selector": {
+ "AdditionalDetails": {
+ "aria": "Organization ID: {0}"
+ },
+ "DisplayText": {
+ "multiple": "{0} Azure AD organizations selected",
+ "single": "1 Azure AD organization selected"
+ },
+ "gridAria": "List of selected organizations"
+ }
+ },
+ "SessionLifetime": {
+ "PersistentBrowser": {
+ "Error": {
+ "notAllApps": "Persistent browser session policy only works correctly when \"All cloud apps\" is selected. Please update your cloud apps selection."
+ },
+ "Option": {
+ "always": "Always persistent",
+ "help": "A persistent browser session allows users to remain signed in after closing and reopening their browser window.
\n\n- This setting works correctly when \"All cloud apps\" are selected
\n- This does not affect token lifetimes or the sign-in frequency setting.
\n- This will override the \"Show option to stay signed in\" policy in Company Branding.
\n- \"Never persistent\" will override any persistent SSO claims passed in from federated authentication services.
\n- \"Never persistent\" will prevent SSO on mobile devices across applications and between applications and the user's mobile browser.
\n",
+ "label": "Persistent browser session",
+ "never": "Never persistent"
+ },
+ "Warning": {
+ "allApps": "Persistent browser session only works correctly when All cloud apps is selected. Please change your cloud apps selection. Click here to learn more."
+ }
+ },
+ "SignInFrequency": {
+ "Aria": {
+ "units": "Hours or days",
+ "value": "Frequency"
+ },
+ "Option": {
+ "Day": {
+ "plural": "{0} days",
+ "singular": "1 day"
+ },
+ "Hour": {
+ "plural": "{0} hours",
+ "singular": "1 hour"
+ },
+ "daysOption": "Days",
+ "everytime": "Every time",
+ "help": "Time period before a user is asked to sign-in again when attempting to access a resource. The default setting is a rolling window of 90 days, i.e. users will be asked to re-authenticate on the first attempt to access a resource after being inactive on their machine for 90 days or longer.",
+ "hoursOption": "Hours",
+ "label": "Sign-in frequency",
+ "placeholder": "Select units"
+ }
+ },
+ "mainOption": "Modify session lifetime",
+ "mainOptionHelp": "Configure how often users will get prompted and whether browser sessions will be persisted. Applications that don't support modern authentication protocols might not honor these policies. In such cases please contact the application developer."
+ },
+ "SigninRisk": {
+ "LearnMore": {
+ "message": "Control user access to respond to specific sign-in risk levels."
+ }
+ },
+ "SingleSelectorActive": {
+ "failed": "Unable to load this data.",
+ "reattempt": "Loading data. Reattempt {0} of {1}."
+ },
+ "TimeCondition": {
+ "Errors": {
+ "both": "Invalid \"Include\" or \"Exclude\" time range.",
+ "daysOfWeek": "{0} Make sure to specify at least one day of the week.",
+ "endBeforeStart": "{0} Make sure start date/time is earlier than end date/time.",
+ "exclude": "Invalid \"Exclude\" time range.",
+ "generic": "{0} Make sure both days of the week and time zone are set. If \"All day\" is not checked, start time and end time need to be set as well.",
+ "include": "Invalid \"Include\" time range.",
+ "timeMissing": "{0} Make sure to specify both a start and end time.",
+ "timeZone": "{0} Make sure to specify a time zone.",
+ "timesAndZone": "{0} Make sure you set start time, end time and time zone."
+ }
+ },
+ "UserActions": {
+ "Included": {
+ "none": "No cloud apps or actions selected",
+ "plural": "{0} user actions included",
+ "singular": "1 user action included"
+ },
+ "accessRequirement1": "Level 1",
+ "accessRequirement2": "Level 2",
+ "accessRequirement3": "Level 3",
+ "accessRequirementsLabel": "Accessing secured app data",
+ "appsActionsAuthTitle": "Cloud apps, actions, or authentication context",
+ "appsOrActionsSelectorInfoBallonText": "Applications accessed or user actions",
+ "appsOrActionsTitle": "Cloud apps or actions",
+ "label": "User actions",
+ "mainOptionsLabel": "Select what this policy applies to",
+ "registerOrJoinDevices": "Register or join devices",
+ "registerSecurityInfo": "Register security information",
+ "selectionInfo": "Select the action this policy will apply to",
+ "whatIf": "User action included"
+ },
+ "UserSelectionBlade": {
+ "DirectoryRoles": {
+ "ariaLabel": "Choose directory roles"
+ },
+ "Excluded": {
+ "gridAria": "List of excluded users"
+ },
+ "Included": {
+ "gridAria": "List of included users"
+ },
+ "Validation": {
+ "customRoleIncluded": "\"Directory Roles\" includes at least one custom role",
+ "customRoleSelected": "At least one custom role is selected",
+ "failed": "\"{0}\" must be configured",
+ "roles": "Select at least one role",
+ "usersGroups": "Select at least one user or group"
+ },
+ "learnMore": "Control access based on who the policy will apply to, such as users and groups, workload identities, directory roles, or external guests."
+ },
+ "ValidationResult": {
+ "blockEveryonePolicy": "Policy configuration not supported. Review the assignments and controls.",
+ "invalidApplicationCondition": "Invalid cloud applications selected",
+ "invalidClientTypesCondition": "Invalid client apps selected",
+ "invalidConditions": "Assignments are not selected",
+ "invalidControls": "Invalid controls selected",
+ "invalidDevicePlatformsCondition": "Invalid device platforms selected",
+ "invalidDevicesCondition": "Invalid device configuration. Likely an invalid \"{0}\" configuration.",
+ "invalidGrantControlPolicy": "Invalid grant control",
+ "invalidLocationsCondition": "Invalid locations selected",
+ "invalidPolicy": "Assignments are not selected",
+ "invalidSessionControlPolicy": "Invalid session control",
+ "invalidSignInRisksCondition": "Invalid sign-in risk selected",
+ "invalidUserRisksCondition": "Invalid user risk selected",
+ "invalidUsersCondition": "Invalid users selected",
+ "mamPolicyShouldOnlyTargetAndroidOrIosPlatforms": "MAM policy can only be applied to Android or iOS client platforms.",
+ "notSupportedCombination": "Policy configuration is not supported. Learn more about supported policies.",
+ "pending": "Validating policy",
+ "requireComplianceEveryonePolicy": "Policy configuration will require device compliance for all users. Review the assignments selected.",
+ "success": "Valid policy"
+ },
+ "VpnCert": {
+ "Grid": {
+ "aria": "List of VPN Certificates"
+ }
+ },
+ "WarningsInfo": {
+ "Controls": {
+ "compliantDeviceEnabled": "Don't lock yourself out! Make sure that your device is compliant.",
+ "domainJoinedDeviceEnabled": "Don't lock yourself out! Make sure that your device is Hybrid Azure AD Joined.",
+ "exchangeDisabled": "Exchange ActiveSync only supports \"Compliant device\" and \"Approved client app\" controls. Click to learn more.",
+ "exchangeDisabled2": "Exchange ActiveSync only supports \"Compliant device\", \"Approved client app\" and \"Compliant client app\" controls. Click to learn more.",
+ "notAvailableForSP": "Some controls are not available due to '{0}' selection in policy assignment",
+ "requireAuthOrMfa": "\"{0}\" cannot be used with \"{1}\"",
+ "requireMfa": "Consider testing the new \"{0}\" public preview",
+ "requirePasswordChangeEnabled": "\"Require password change\" can only be used when policy is assigned to \"All cloud apps\""
+ },
+ "Policies": {
+ "Linux": {
+ "devicePlatformsReportOnlyPolicy": "Policies in Report-only mode requiring compliant devices may prompt users on macOS, iOS, Android, and Linux to select a device certificate.",
+ "excludeDevicePlatforms": "Exclude device platforms macOS, iOS, Android, and Linux from this policy.",
+ "proceedAnywayDevicePlatforms": "Proceed with selected configuration. Users on macOS, iOS, Android, and Linux may receive prompts when the device is checked for compliance."
+ },
+ "blockCurrentUserPolicy": "Don't lock yourself out! We recommend applying a policy to a small set of users first to verify it behaves as expected. We also recommend excluding at least one administrator from this policy. This ensures that you still have access and can update a policy if a change is required. Please review the affected users and apps.",
+ "devicePlatformsReportOnlyPolicy": "Policies in Report-only mode requiring compliant devices may prompt users on macOS, iOS, and Android to select a device certificate.",
+ "excludeCurrentUserSelection": "Exclude current user, {0}, from this policy.",
+ "excludeDevicePlatforms": "Exclude device platforms macOS, iOS, and Android from this policy.",
+ "proceedAnywayDevicePlatforms": "Proceed with selected configuration. Users on macOS, iOS, and Android may receive prompts when the device is checked for compliance.",
+ "proceedAnywaySelection": "I understand that my account will be impacted by this policy. Proceed anyway."
+ },
+ "ServicePrincipals": {
+ "blockExchange": "Selecting Office 365 Exchange Online will also affect apps such as OneDrive and Teams.",
+ "blockPortal": "Don't lock yourself out! This policy impacts the Azure portal. Before you continue, ensure that you or someone else will be able to get back into the portal.",
+ "blockPortalWithSession": "Don't lock yourself out! This policy impacts the Azure portal. Before you continue, ensure that you or someone else will be able to get back into the portal.
Disregard this warning if you are configuring persistent browser session policy that works correctly only if \"All cloud apps\" are selected.",
+ "blockSharePoint": "Selecting SharePoint Online will also affect apps such as Microsoft Teams, Planner, Delve, MyAnalytics, and Newsfeed.",
+ "blockSkype": "Selecting Skype for Business Online will also affect Microsoft Teams.",
+ "includeOrExclude": "You can configure the App Filter for '{0}' or '{1}', but not both.",
+ "selectAppsNAForSP": "Individual cloud apps cannot be selected due to '{0}' selection in policy assignment",
+ "teamsBlocked": "Microsoft Teams will also be affected when apps such as SharePoint Online and Exchange Online are included in policy."
+ },
+ "Users": {
+ "blockAllUsers": "Don't lock yourself out! This policy will affect all of your users. We recommend applying a policy to a small set of users first to verify it behaves as expected."
+ }
+ },
+ "WhatIf": {
+ "Device": {
+ "AttributesGrid": {
+ "aria": "List of attributes on the device employed during sign-in.",
+ "infoBalloon": "List of attributes on the device employed during sign-in."
+ }
+ }
+ },
+ "advancedTabText": "Advanced",
+ "allCloudAppsErrorBox": "\"All cloud apps\" must be selected when \"Require password change\" grant is selected",
+ "allCloudAppsReauth": "\"All cloud apps\" must be selected when \"Sign-in frequency every time\" session control and \"sign-in risk\" condition are selected",
+ "allCloudOrSpecificApps": "The \"sign-in frequency every time\" session control requires \"all cloud apps\" or specifically-supported apps to be selected",
+ "allDayCheckboxLabel": "All day",
+ "allDevicePlatforms": "Any device",
+ "allGuestUserInfoContent": "Includes Azure AD B2B guests, but not SharePoint B2B guests",
+ "allGuestUserLabel": "All guest and external users",
+ "allRiskLevelsOption": "All risk levels",
+ "allTrustedLocationLabel": "All trusted locations",
+ "allUserGroupSetSelectorLabel": "All users and groups selected",
+ "allUsersReauth": "The \"sign-in frequency every time\" session control requires \"All Users\" to be selected",
+ "allUsersString": "All users",
+ "and": "{0} AND {1} ",
+ "andWithGrouping": "({0}) AND {1} ",
+ "androidDisplayName": "Android",
+ "anyCloudAppSelection": "Any cloud app",
+ "appContextOptionInfoContent": "Requested authentication tag",
+ "appContextOptionLabel": "Requested authentication tag (Preview)",
+ "appContextUriPlaceholder": "Example: uri:contoso.com:level3",
+ "appEnforceInfoBubble": "App enforced restrictions might require additional admin configurations within the cloud apps. The restrictions will only take effect for new sessions.",
+ "appNotSetSeletorLabel": "0 cloud apps selected",
+ "applyConditionClientAppInfoBalloonContent": "Configure client apps to apply the policy to specific client apps",
+ "applyConditionDevicePlatformInfoBalloonContent": "Configure device platforms to apply the policy to specific platforms",
+ "applyConditionDeviceStateInfoBalloonContent": "Configure device state to apply the policy to specific device state(s)",
+ "applyConditionLocationInfoBalloonContent": "Configure locations to apply the policy to trusted/untrusted locations",
+ "applyConditionSigninRiskInfoBalloonContent": "Configure sign-in risk to apply the policy to selected risk level(s)",
+ "applyConditionUserRiskInfoBalloonContent": "Configure user risk to apply the policy to selected risk level(s)",
+ "applyConditonLabel": "Configure",
+ "ariaLabelPolicyDisabled": "Policy is disabled",
+ "ariaLabelPolicyEnabled": "Policy is enabled",
+ "ariaLabelPolicyReportOnly": "Policy is in Report-only mode",
+ "blockAccess": "Block access",
+ "builtInDirectoryRoleLabel": "Built-in directory roles",
+ "casCustomControlInfo": "Custom policies need to be configured in Cloud App Security portal. This control works instantly for featured apps and can be self onboarded for any app. Click here to learn more about both scenarios.",
+ "casInfoBubble": "This control works for various cloud apps.",
+ "casPreconfiguredControlInfo": "This control works instantly for featured apps and can be self onboarded for any app. Click here to learn more about both scenarios.",
+ "cert64DownloadCol": "Download base64 certificate",
+ "cert64Name": "VpnBase64Cert",
+ "certDownloadCol": "Download certificate",
+ "certDurationCol": "Expiry",
+ "certDurationStartCol": "Valid from",
+ "certName": "VpnCert",
+ "certainApps": "Only specifically-supported apps are enabled for \"Sign-in frequency every time\" if \"Require multi-factor authentication\" and \"Require password change\" grants are not selected",
+ "chooseApplicationsBladeSubtitle": "",
+ "chooseApplicationsBladeTitle": "Choose Applications",
+ "chooseApplicationsCartSubitle": "",
+ "chooseApplicationsCartTitle": "Chosen Applications",
+ "chooseApplicationsEmpty": "No Applications",
+ "chooseApplicationsNone": "None",
+ "chooseApplicationsNoneFound": "We didn't find \"{0}\". Try another name or ID.",
+ "chooseApplicationsPlural": "{0} and {1} more",
+ "chooseApplicationsReAuthEverytimeInfo": "Looking for your app? Some applications cannot be used with \"Require reauthentication – every time\" session control",
+ "chooseApplicationsRemove": "Remove",
+ "chooseApplicationsReturnedPlural": "{0} applications found",
+ "chooseApplicationsReturnedSingular": "1 application found",
+ "chooseApplicationsSearchBalloon": "Search for an Application by entering its name or ID.",
+ "chooseApplicationsSearchHint": "Search Applications...",
+ "chooseApplicationsSearchLabel": "Applications",
+ "chooseApplicationsSearching": "Searching...",
+ "chooseApplicationsSelect": "Select",
+ "chooseApplicationsSelected": "Selected",
+ "chooseApplicationsSingular": "{0} and 1 more",
+ "chooseApplicationsTooMany": "More results than can be shown. Please filter using the search box.",
+ "chooseLocationCorpnetItem": "Corporate network",
+ "chooseLocationSelectedLocationsLabel": "Selected locations",
+ "chooseLocationTrustedIpsItem": "MFA Trusted IPs",
+ "chooseLocationsBladeSubtitle": "",
+ "chooseLocationsBladeTitle": "Choose Locations",
+ "chooseLocationsCartSubitle": "",
+ "chooseLocationsCartTitle": "Chosen Locations",
+ "chooseLocationsEmpty": "No Locations",
+ "chooseLocationsExcludedSelectorTitle": "Select",
+ "chooseLocationsIncludedSelectorTitle": "Select",
+ "chooseLocationsNone": "None",
+ "chooseLocationsNoneFound": "We didn't find \"{0}\". Try another name or ID.",
+ "chooseLocationsPlural": "{0} and {1} more",
+ "chooseLocationsRemove": "Remove",
+ "chooseLocationsReturnedPlural": "{0} locations found",
+ "chooseLocationsReturnedSingular": "1 location found",
+ "chooseLocationsSearchBalloon": "Search for a Location by entering its name.",
+ "chooseLocationsSearchHint": "Search Locations...",
+ "chooseLocationsSearchLabel": "Locations",
+ "chooseLocationsSearching": "Searching...",
+ "chooseLocationsSelect": "Select",
+ "chooseLocationsSelected": "Selected",
+ "chooseLocationsSelectionBladeExcludedSelectorTitle": "Select",
+ "chooseLocationsSelectionBladeIncludedSelectorTitle": "Select",
+ "chooseLocationsSingular": "{0} and 1 more",
+ "chooseLocationsTooMany": "More results than can be shown. Please filter using the search box.",
+ "claimProviderAddCommandText": "New custom control",
+ "claimProviderAddNewBladeTitle": "New custom control",
+ "claimProviderDeleteCommand": "Delete",
+ "claimProviderDeleteDescription": "Are you sure you want to delete '{0}'? This action cannot be undone.",
+ "claimProviderDeleteTitle": "Are you sure?",
+ "claimProviderEditInfoText": "Enter the JSON for customized controls given by your claim providers.",
+ "claimProviderNotificationCreateDescription": "Creating custom control named '{0}'",
+ "claimProviderNotificationCreateFailedDescription": "Creating custom control '{0}' failed. Please try again later.",
+ "claimProviderNotificationCreateFailedTitle": "Failed to create custom control",
+ "claimProviderNotificationCreateSuccessDescription": "Created custom control named '{0}'",
+ "claimProviderNotificationCreateSuccessTitle": "Created '{0}'",
+ "claimProviderNotificationCreateTitle": "Creating '{0}'",
+ "claimProviderNotificationDeleteDescription": "Deleting custom control named '{0}'",
+ "claimProviderNotificationDeleteFailedDescription": "Deleting custom control '{0}' failed. Please try again later.",
+ "claimProviderNotificationDeleteFailedTitle": "Failed to delete custom control",
+ "claimProviderNotificationDeleteSuccessDescription": "Deleted custom control named '{0}'",
+ "claimProviderNotificationDeleteSuccessTitle": "Deleted '{0}'",
+ "claimProviderNotificationDeleteTitle": "Deleting '{0}'",
+ "claimProviderNotificationUpdateDescription": "Updating custom control named '{0}'",
+ "claimProviderNotificationUpdateFailedDescription": "Updating custom control '{0}' failed. Please try again later.",
+ "claimProviderNotificationUpdateFailedTitle": "Failed to update custom control",
+ "claimProviderNotificationUpdateSuccessDescription": "Updated custom control named '{0}'",
+ "claimProviderNotificationUpdateSuccessTitle": "Updated '{0}'",
+ "claimProviderNotificationUpdateTitle": "Updating '{0}'",
+ "claimProviderValidationAppIdInvalid": "The \"AppId\" value is not valid. Please review and try again.",
+ "claimProviderValidationClientIdMissing": "The data is missing a \"ClientId\" value. Please review and try again.",
+ "claimProviderValidationControlClaimsRequestedMissing": "The \"Control\" is missing a \"ClaimsRequested\" value. Please review and try again.",
+ "claimProviderValidationControlClaimsRequestedTypeMissing": "The \"ClaimsRequested\" item is missing a \"Type\" value. Please review and try again.",
+ "claimProviderValidationControlIdAlreadyExists": "The \"Control\" \"Id\" value already exists. Please review and try again.",
+ "claimProviderValidationControlIdMissing": "The \"Control\" is missing an \"Id\" value. Please review and try again.",
+ "claimProviderValidationControlIdReferencedInExistingPolicy": "The \"Control\" \"Id\" value cannot be removed because it is referenced in an existing policy. Please remove it from the policy first.",
+ "claimProviderValidationControlIdTooManyControls": "The \"Control\" property has too many controls. Please review and try again.",
+ "claimProviderValidationControlIdValueReserved": "The \"Control\" \"Id\" value is a reserved keyword, please use a different id.",
+ "claimProviderValidationControlNameAlreadyExists": "The \"Control\" \"Name\" value already exists. Please review and try again.",
+ "claimProviderValidationControlNameMissing": "The \"Control\" is missing a \"Name\" value. Please review and try again.",
+ "claimProviderValidationControlsMissing": "The data is missing a \"Controls\" value. Please review and try again.",
+ "claimProviderValidationDiscoveryUrlMissing": "The data is missing a \"DiscoveryUrl\" value. Please review and try again.",
+ "claimProviderValidationInvalid": "There data provided is not valid. Please review and try again.",
+ "claimProviderValidationInvalidJsonDefinition": "Unable to save the custom control. Review the JSON text and try again.",
+ "claimProviderValidationNameAlreadyExists": "The \"Name\" value already exists. Please review and try again.",
+ "claimProviderValidationNameMissing": "The data is missing a \"Name\" value. Please review and try again.",
+ "claimProviderValidationUnknown": "There was an unknown error while validating the data provided. Please review and try again.",
+ "claimProvidersNone": "No custom controls",
+ "claimProvidersSearchPlaceholder": "Search controls.",
+ "classicPoilcyFilterTitle": "Show",
+ "classicPolicyAllPlatforms": "All Platforms",
+ "classicPolicyClientAppBrowserAndNative": "Browser, mobile apps and desktop clients",
+ "classicPolicyCloudAppTitle": "Cloud application",
+ "classicPolicyControlAllow": "Allow",
+ "classicPolicyControlBlock": "Block",
+ "classicPolicyControlBlockWhenNotAtWork": "Block access when not at work",
+ "classicPolicyControlRequireCompliantDevice": "Require compliant device",
+ "classicPolicyControlRequireDomainJoinedDevice": "Require domain joined device",
+ "classicPolicyControlRequireMfa": "Require multi-factor authentication",
+ "classicPolicyControlRequireMfaWhenNotAtWork": "Require multi-factor authentication when not at work",
+ "classicPolicyDeleteCommand": "Delete",
+ "classicPolicyDeleteFailTitle": "Failed to delete classic policy",
+ "classicPolicyDeleteInProgressTitle": "Deleting classic policy",
+ "classicPolicyDeleteSuccessTitle": "Classic policy deleted",
+ "classicPolicyDetailBladeTitle": "Details",
+ "classicPolicyDisableCommand": "Disable",
+ "classicPolicyDisableConfirmation": "Are you sure you want to disable '{0}'? This action cannot be undone.",
+ "classicPolicyDisableFailDescription": "Failed to disable '{0}'",
+ "classicPolicyDisableFailTitle": "Failed to disable classic policy",
+ "classicPolicyDisableInProgressDescription": "Disabling '{0}'",
+ "classicPolicyDisableInProgressTitle": "Disabling classic policy",
+ "classicPolicyDisableSuccessDescription": "Successfully disabled '{0}'",
+ "classicPolicyDisableSuccessTitle": "Classic policy disabled",
+ "classicPolicyEasSupportedPlatforms": "Exchange ActiveSync supported platforms",
+ "classicPolicyEasUnsupportedPlatforms": "Exchange ActiveSync unsupported platforms",
+ "classicPolicyExcludedPlatformsTitle": "Excluded device platforms",
+ "classicPolicyFilterAll": "All policies",
+ "classicPolicyFilterDisabled": "Disabled policies",
+ "classicPolicyFilterEnabled": "Enabled policies",
+ "classicPolicyIncludeExcludeMembersDescription": "By excluding groups, you can perform phased migration of policies.",
+ "classicPolicyIncludeExcludeMembersTitle": "Include/exclude groups",
+ "classicPolicyIncludedPlatformsTitle": "Included device platforms",
+ "classicPolicyManualMigrationMessage": "This policy needs to be migrated manually.",
+ "classicPolicyMigrateCommand": "Migrate",
+ "classicPolicyMigrateConfirmation": "Are you sure you want to migrate '{0}'? This policy can only be migrated once.",
+ "classicPolicyMigrateFailDescription": "Failed to migrate '{0}'",
+ "classicPolicyMigrateFailTitle": "Failed to migrate classic policy",
+ "classicPolicyMigrateInProgressDescription": "Migrating '{0}'",
+ "classicPolicyMigrateInProgressTitle": "Migrating classic policy",
+ "classicPolicyMigrateRecommendText": "Recommendation: Migrate to the new Azure portal policies.",
+ "classicPolicyMigrateSuccessTitle": "Classic policy migrated successfully",
+ "classicPolicyMigratedSuccessDescription": "This classic policy can now be managed under Polices.",
+ "classicPolicyMigratedSuccessDescriptionMultiple": "This classic policy is migrated as {0} new policies. New policies can be managed under Policies.",
+ "classicPolicyNoEditPermissionMsg": "You don't have permission to edit this policy. Only global administrators and security administrators can edit the policy. Click here for more information.",
+ "classicPolicySaveFailDescription": "Failed to save '{0}'",
+ "classicPolicySaveFailTitle": "Failed to save classic policy",
+ "classicPolicySaveInProgressDescription": "Saving '{0}'",
+ "classicPolicySaveInProgressTitle": "Saving classic policy",
+ "classicPolicySaveSuccessDescription": "Successfully saved '{0}'",
+ "classicPolicySaveSuccessTitle": "Classic policy saved",
+ "clientAppBladeLegacyInfoBanner": "Legacy auth is currently not supported",
+ "clientAppBladeLegacyUpsellBanner": "Block unsupported client apps (Preview)",
+ "clientAppBladeTitle": "Client apps",
+ "clientAppDescription": "Select the client apps this policy will apply to",
+ "clientAppExchangeActiveSync": "Exchange ActiveSync",
+ "clientAppExchangeDisabledInfo": "Exchange ActiveSync is available when Exchange Online is the only cloud app selected. Click to learn more",
+ "clientAppExchangeWarning": "Exchange ActiveSync currently does not support all other conditions",
+ "clientAppLearnMore": "Control user access to target specific client applications not using modern authentication.",
+ "clientAppLegacyHeader": "Legacy authentication clients",
+ "clientAppMobileDesktop": "Mobile apps and desktop clients",
+ "clientAppModernHeader": "Modern authentication clients",
+ "clientAppOnlySupportedPlatforms": "Apply policy only to supported platforms",
+ "clientAppSelectSpecificClientApps": "Select client apps",
+ "clientAppV2BladeTitle": "Client apps (Preview)",
+ "clientAppWebBrowser": "Browser",
+ "clientAppsSelectedLabel": "{0} included",
+ "clientTypeBrowser": "Browser",
+ "clientTypeEas": "Exchange ActiveSync clients",
+ "clientTypeEasInfo": "Exchange ActiveSync clients that use legacy authentication only.",
+ "clientTypeModernAuth": "Modern authentication clients",
+ "clientTypeOtherClients": "Other clients",
+ "clientTypeOtherClientsInfo": "This includes older office clients and other mail protocols(POP, IMAP, SMTP, etc). [Learn more][1]\n[1]: https://aka.ms/caclientapps\n",
+ "cloudAppCountDiffBannerText": "{0} cloud apps configured in this policy have been deleted from the directory, but this doesn't affect the other apps in the policy. The next time you update the application section of the policy, the deleted apps will be automatically removed from it.",
+ "cloudAppsSelectionBladeAllMicrosoftApps": "All Microsoft apps",
+ "cloudAppsSelectionExcludeAllMicrosoftClients": "Allow Microsoft cloud, desktop and mobile apps (Preview)",
+ "cloudappsSelectionBladeAllCloudapps": "All cloud apps",
+ "cloudappsSelectionBladeExcludeDescription": "Select the cloud apps to exempt from the policy",
+ "cloudappsSelectionBladeExcludedSelectorTitle": "Select excluded cloud apps",
+ "cloudappsSelectionBladeIncludeDescription": "Select the cloud apps this policy will apply to",
+ "cloudappsSelectionBladeIncludedSelectorTitle": "Select",
+ "cloudappsSelectionBladeSelectedCloudapps": "Select apps",
+ "cloudappsSelectorInfoBallonText": "Services which the user accesses to do work. For example, 'Salesforce'",
+ "cloudappsSelectorPluralExcluded": "{0} apps excluded",
+ "cloudappsSelectorPluralIncluded": "{0} apps included",
+ "cloudappsSelectorSingularExcluded": "1 app excluded",
+ "cloudappsSelectorSingularIncluded": "1 app included",
+ "cloudappsSelectorUserPlural": "{0} apps",
+ "cloudappsSelectorUserSingular": "1 app",
+ "conditionLabelMulti": "{0} conditions selected",
+ "conditionLabelOne": "1 condition selected",
+ "conditionalAccessBladeTitle": "Conditional Access",
+ "conditionsNotSelectedLabel": "Not configured",
+ "conditionsReqMfaReauthSet": "Some options are not available due to the \"Require multi-factor authentication\" grant and \"sign-in frequency every time\" session control currently being selected",
+ "conditionsReqPwSet": "Some options are not available due to the \"Require password change\" grant currently being selected",
+ "configureCasText": "Configure Cloud App Security",
+ "configureCustomControlsText": "Configure custom policy",
+ "controlLabelMulti": "{0} controls selected",
+ "controlLabelOne": "1 control selected",
+ "controlValidatorText": "Please select at least one control",
+ "controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
+ "controlsDeviceComplianceAriaLabel": "Learn more about requiring compliant devices.",
+ "controlsDeviceComplianceInfoBubble": "Device must be Intune compliant. If the device is non-compliant, the user will be prompted to bring the device under compliance.",
+ "controlsDomainJoinedAriaLabel": "Learn more about requiring hybrid Azure AD joined devices.",
+ "controlsDomainJoinedInfoBubble": "Devices must be Hybrid Azure AD joined.",
+ "controlsMamAriaLabel": "Learn more about requiring approved client applications.",
+ "controlsMamInfoBubble": "Device must use these approved client applications.",
+ "controlsMfaInfoBubble": "User must complete additional security requirements like phone call, text",
+ "controlsOrAndInfoBubble": "ControlsOrAndInfoBubble",
+ "controlsRequireCompliantAppAriaLabel": "Learn more about requiring policy protected apps.",
+ "controlsRequireCompliantAppInfoBubble": "Device must use policy protected apps.",
+ "controlsRequirePasswordResetAriaLabel": "Learn more about requiring a password change.",
+ "controlsRequirePasswordResetInfoBubble": "Require password change to lower user risk. This option also requires multi-factor authentication. Other controls can't be used.",
+ "countriesRadiobuttonInfoBalloonContent": "The country/region a sign-in is coming from is determined by the user's IP address.",
+ "createNewVpnCert": "New certificate",
+ "createdTimeLabel": "Creation time",
+ "customRoleLabel": "Custom roles (not supported)",
+ "dateRangeTypeLabel": "Date range",
+ "daysOfWeekPlaceholderText": "Filter days of the week",
+ "daysOfWeekTypeLabel": "Days of the week",
+ "deletePolicyNoLicenseText": "You can delete this policy now. Once deleted you will not be able to recreate it until you have the required licenses.",
+ "descriptionContentForControlsAndOr": "For multiple controls",
+ "devicePlatform": "Device platform",
+ "devicePlatformConditionHelpDescription": "Apply policy to selected device platforms.\n[Learn more][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2044750",
+ "devicePlatformInclude": "{0} included",
+ "devicePlatformIncludeExclude": "{0} and {1} excluded",
+ "devicePlatformNoSelectionError": "Select device platforms requires one sub-item to be selected.",
+ "devicePlatformsNone": "None",
+ "deviceSelectionBladeExcludeDescription": "Select the platforms to exempt from the policy",
+ "deviceSelectionBladeIncludeDescription": "Select the device platforms to include in this policy",
+ "deviceStateAll": "All device state",
+ "deviceStateCompliant": "Device marked as compliant",
+ "deviceStateCompliantInfoContent": "Devices that are Intune compliant will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Intune compliant.",
+ "deviceStateConditionConfigureInfoContent": "Configure policy based on device state",
+ "deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Hybrid Azure AD joined' or 'marked as compliant'.\n This has been deprecated. Use '{1}' instead.",
+ "deviceStateConditionSelectorLabel": "Device state (deprecated)",
+ "deviceStateDomainJoined": "Device Hybrid Azure AD joined",
+ "deviceStateDomainJoinedInfoContent": "Devices that are Hybrid Azure AD joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Hybrid Azure AD joined.",
+ "deviceStateDomainJoinedInfoLinkText": "Learn more.",
+ "deviceStateExcludeDescription": "Select the device state condition used to exclude devices from policy.",
+ "deviceStateIncludeAndExcludeOneLabel": "{0} and exclude {1}",
+ "deviceStateIncludeAndExcludeTwoLabel": "{0} and exclude {1}, {2}",
+ "directoryRoleInfoContent": "Assign policy to built-in directory roles.",
+ "directoryRolesLabel": "Directory roles",
+ "discardbutton": "Discard",
+ "downloadDefaultFileName": "IP Ranges",
+ "downloadExampleFileName": "Example",
+ "downloadExampleHeader": "This is an example file with demonstrations of the kinds of data which can be accepted. Lines starting with # will be ignored.",
+ "endDatePickerLabel": "Ends",
+ "endTimePickerLabel": "End time",
+ "enterCountryText": "IP address and Country are evaluated in a pair. Select the Country.",
+ "enterIpText": "IP address and Country are evaluated in a pair. Input the IP address.",
+ "enterUserText": "No user is selected. Select a user.",
+ "evaluationResult": "Evaluation result",
+ "exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
+ "exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync with supported platforms only",
+ "excludeAllTrustedLocationSelectorText": "all trusted locations",
+ "featureRequiresP2": "This feature requires Azure AD Premium 2 license.",
+ "friday": "Friday",
+ "grantControls": "Grant controls",
+ "gridNetworkTrusted": "Trusted",
+ "gridPolicyCreatedDateTime": "Creation Date",
+ "gridPolicyEnabled": "Enabled",
+ "gridPolicyModifiedDateTime": "Modified Date",
+ "gridPolicyName": "Policy Name",
+ "gridPolicyState": "State",
+ "groupSelectionBladeExcludeDescription": "Select the groups to exempt from the policy",
+ "groupSelectionBladeExcludedSelectorTitle": "Select excluded groups",
+ "groupSelectionBladeSelect": "Select groups",
+ "groupSelectorInfoBallonText": "Groups in the directory that the policy applies to. For example, 'Pilot group'",
+ "groupsSelectionBladeTitle": "Groups",
+ "helpCommonScenariosText": "Interested in common scenarios?",
+ "helpCondition1": "When any user is outside the company network",
+ "helpCondition2": "When users in the 'Managers' group sign-in",
+ "helpConditionsTitle": "Conditions",
+ "helpControl1": "They're required to sign in with multi-factor authentication",
+ "helpControl2": "They are required be on an Intune compliant or domain-joined device",
+ "helpControlsTitle": "Controls",
+ "helpIntroText": "Conditional Access gives you the ability to enforce access requirements when specific conditions occur. Let's take a few examples",
+ "helpIntroTitle": "What is Conditional Access?",
+ "helpLearnMoreText": "Want to learn more about Conditional Access?",
+ "helpStartStep1": "Create your first policy by clicking \"+ New policy\"",
+ "helpStartStep2": "Specify policy Conditions and Controls",
+ "helpStartStep3": "When you are done, don't forget to Enable policy and Create",
+ "helpStartTitle": "Get started",
+ "highRisk": "High",
+ "includeAndExcludeAppsTextFormat": "Include: {0}. Exclude: {1}.",
+ "includeAppsTextFormat": "Include: {0}.",
+ "includeUnknownAreasCheckboxInfoBalloonContent": "Unknown areas are IP addresses that can't be mapped to a country/region.",
+ "includeUnknownAreasCheckboxLabel": "Include unknown areas",
+ "infoCommandLabel": "Info",
+ "invalidCertDuration": "Invalid cert duration",
+ "invalidIpAddress": "Value must be a valid IP address",
+ "invalidUriErrorMsg": "Please enter a valid Uri. For example,'uri:contoso.com:acr' ",
+ "iosDisplayName": "iOS",
+ "linuxDisplayName": "Linux",
+ "loadAll": "Load all",
+ "loading": "Loading...",
+ "locationConfigureNamedLocationsText": "Configure all trusted locations",
+ "locationConfigureNamedLocationsUri": "{0}/usermanagement/mfasettings.aspx?tenantid={1}&culture={2}",
+ "locationNameTooLongError": "Location name is too long. Maximum is 256 characters",
+ "locationSelectionBladeExcludeDescription": "Select the locations to exempt from the policy",
+ "locationSelectionBladeIncludeDescription": "Select the locations to include in this policy",
+ "locationsAllLocationsLabel": "Any location",
+ "locationsAllNamedLocationsLabel": "All trusted IPs",
+ "locationsAllPrivateLinksLabel": "All Private Links in my tenant",
+ "locationsIncludeExcludeLabel": "{0} and exclude all trusted IPs",
+ "locationsSelectedPrivateLinksLabel": "Selected Private Links",
+ "lowRisk": "Low",
+ "macOsDisplayName": "macOS",
+ "managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Azure AD Premium P1 or P2.",
+ "markAsTrustedCheckboxInfoBalloonContent": "Signing in from a trusted location lowers a user's sign-in risk. Only mark this location as trusted if you know the IP ranges entered are established and credible in your organization.",
+ "markAsTrustedCheckboxLabel": "Mark as trusted location",
+ "mediumRisk": "Medium",
+ "memberSelectionCommandRemove": "Remove",
+ "menuItemClaimProviderControls": "Custom controls (Preview)",
+ "menuItemClassicPolicies": "Classic policies",
+ "menuItemInsightsAndReporting": "Insights and reporting",
+ "menuItemManage": "Manage",
+ "menuItemNamedLocationsPreview": "Named locations (Preview)",
+ "menuItemNamedNetworks": "Named locations",
+ "menuItemPolicies": "Policies",
+ "menuItemTermsOfUse": "Terms of use",
+ "modifiedTimeLabel": "Modified time",
+ "monday": "Monday",
+ "nameLabel": "Name",
+ "namedLocationCountryInfoBanner": "Only IPv4 addresses are mapped to countries/regions. IPv6 addresses are included in unknown countries/regions.",
+ "namedLocationTypeCountry": "Countries/Regions",
+ "namedLocationTypeLabel": "Define the location using:",
+ "namedLocationUpsellBanner": "This view has been deprecated. Go to the new and improved 'Named locations' view.",
+ "namedLocationsHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/namedlocationupdate",
+ "namedNetworkAddIpRanges": "Add a new IP range (ex: 40.77.182.32/27)",
+ "namedNetworkCountryNeeded": "You need to select at least one country",
+ "namedNetworkDeleteCommand": "Delete",
+ "namedNetworkDeleteDescription": "Are you sure you want to delete '{0}'? This action cannot be undone.",
+ "namedNetworkDeleteTitle": "Are you sure?",
+ "namedNetworkDownloadIpRange": "Download",
+ "namedNetworkInvalidRange": "Value must be a valid IP range.",
+ "namedNetworkIpRangeNeeded": "You need at least one valid IP range",
+ "namedNetworkIpRangesDescriptionContent": "Configure your organization's IP ranges",
+ "namedNetworkIpRangesTab": "IP ranges",
+ "namedNetworkListAdd": "New location",
+ "namedNetworkListConfigureTrustedIps": "Configure MFA trusted IPs",
+ "namedNetworkNameDescription": "Example: 'Redmond office'",
+ "namedNetworkNameInvalid": "The supplied name is invalid.",
+ "namedNetworkNameRequired": "You must supply a name for this location.",
+ "namedNetworkNoIpRanges": "No IP ranges",
+ "namedNetworkNotificationCreateDescription": "Creating location named '{0}'",
+ "namedNetworkNotificationCreateFailedDescription": "Creating location '{0}' failed. Please try again later.",
+ "namedNetworkNotificationCreateFailedTitle": "Failed to create location",
+ "namedNetworkNotificationCreateSuccessDescription": "Created location named '{0}'",
+ "namedNetworkNotificationCreateSuccessTitle": "Created '{0}'",
+ "namedNetworkNotificationCreateTitle": "Creating '{0}'",
+ "namedNetworkNotificationDeleteDescription": "Deleting location named '{0}'",
+ "namedNetworkNotificationDeleteFailedDescription": "Deleting location '{0}' failed. Please try again later.",
+ "namedNetworkNotificationDeleteFailedTitle": "Failed to Delete location",
+ "namedNetworkNotificationDeleteSuccessDescription": "Deleted location named '{0}'",
+ "namedNetworkNotificationDeleteSuccessTitle": "Deleted '{0}'",
+ "namedNetworkNotificationDeleteTitle": "Deleting '{0}'",
+ "namedNetworkNotificationUpdateDescription": "Updating location named '{0}'",
+ "namedNetworkNotificationUpdateFailedDescription": "Updating location '{0}' failed. Please try again later.",
+ "namedNetworkNotificationUpdateFailedTitle": "Failed to Update location",
+ "namedNetworkNotificationUpdateSuccessDescription": "Updated location named '{0}'",
+ "namedNetworkNotificationUpdateSuccessTitle": "Updated '{0}'",
+ "namedNetworkNotificationUpdateTitle": "Updating '{0}'",
+ "namedNetworkSearchPlaceholder": "Search locations.",
+ "namedNetworkUploadFailedDescription": "There was an error parsing the supplied file. Please make sure to upload a plain-text file with each line in the CIDR format.",
+ "namedNetworkUploadFailedTitle": "Failed to parse '{0}'",
+ "namedNetworkUploadInProgressDescription": "Attempting to parse valid CIDR values from '{0}'.",
+ "namedNetworkUploadInProgressTitle": "Parsing '{0}'",
+ "namedNetworkUploadInvalidDescription": "'{0}' is either too large or in an invalid format.",
+ "namedNetworkUploadInvalidTitle": "'{0}' Invalid",
+ "namedNetworkUploadIpRange": "Upload",
+ "namedNetworkUploadSuccessDescription": "{0} lines analyzed. {1} in a bad format. {2} skipped.",
+ "namedNetworkUploadSuccessTitle": "Finished parsing '{0}'",
+ "namedNetworksAdd": "New named location",
+ "namedNetworksConditionHelpDescription": "Control user access based on their physical location.\n[Learn more][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
+ "namedNetworksExcludeLabel": "{0} and {1} excluded",
+ "namedNetworksHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
+ "namedNetworksIncludeLabel": "{0} included",
+ "namedNetworksNone": "No named locations found.",
+ "namedNetworksTitle": "Configure locations",
+ "namednetworkExceedingSizeErrorBladeTitle": "Error details",
+ "namednetworkExceedingSizeErrorDetailText": "Click here for more details.",
+ "namednetworkExceedingSizeErrorMessage": "You have exceeded the maximum allowed storage for named locations. Try again with a shorter list. Click here to view more details.",
+ "needMfaSecondary": "\"Require multi-factor authentication\" must be selected when \"Sign-in frequency every time\" is selected with \"Secondary authentication methods only\"",
+ "newCertName": "new cert",
+ "noAttributePermissionsError": "Insufficient privileges to create or update policy. Attribute definition reader role is required to add/edit dynamic filters.",
+ "noPolicyRowMessage": "No policies",
+ "noSPSelected": "No service principal selected",
+ "noUpdatePermissionMessage": "You don't have permissions to update these settings. Please contact your global administrator to get access.",
+ "noUserSelected": "No user selected",
+ "noneRisk": "No risk",
+ "office365Description": "These apps include Microsoft Flow, Microsoft Forms, Microsoft Teams, Office 365 Exchange Online, Office 365 SharePoint Online, Office 365 Yammer, and others.",
+ "office365InfoBox": "At least one of the apps selected is part of Office 365. We recommend setting the policy on the Office 365 app instead.",
+ "oneUserSelected": "1 user selected",
+ "onlyGlobalAdminsCanSaveThisPolicyConfig": "Only global administrators can save this policy.",
+ "or": "{0} OR {1} ",
+ "pickerDoneCommand": "Done",
+ "policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like Cloud apps, Sign-in risk, and Device platforms with Azure AD Premium",
+ "policiesBladeTitle": "Policies",
+ "policiesBladeTitleWithAppName": "Policies: {0}",
+ "policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked sign-on attribute.",
+ "policiesHitMaxLimitStatusBarMessage": "You've reached the maximum number of policies for this tenant. Delete some policies before creating more.",
+ "policyAssignmentsSection": "Assignments",
+ "policyBlockAllInfoBox": "The configured policy will block all users, so it is not supported. Review the assignments and controls. Exclude the current user {0}, if you would like to save this policy.",
+ "policyCloudAppsDisplayTextAllApp": "All apps",
+ "policyCloudAppsLabel": "Cloud apps",
+ "policyConditionClientAppDescription": "Software the user is employing to access the cloud app. For example, 'Browser'",
+ "policyConditionClientAppV2Description": "Software the user is employing to access the cloud app. For example, 'Browser'",
+ "policyConditionDevicePlatform": "Device platforms",
+ "policyConditionDevicePlatformDescription": "Platform the user is signing in from. For example, 'iOS'",
+ "policyConditionLocation": "Locations",
+ "policyConditionLocationDescription": "Location (determined using IP address range) the user is signing in from",
+ "policyConditionSigninRisk": "Sign-in risk",
+ "policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Azure AD Premium 2 license.",
+ "policyConditionUserRisk": "User risk",
+ "policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
+ "policyConditioniClientApp": "Client apps",
+ "policyConditioniClientAppV2": "Client apps (Preview)",
+ "policyControlAllowAccessDisplayedName": "Grant access",
+ "policyControlAuthenticationStrengthDisplayedName": "Require authentication strength (Preview)",
+ "policyControlBladeTitle": "Grant",
+ "policyControlBlockAccessDisplayedName": "Block access",
+ "policyControlCompliantDeviceDisplayedName": "Require device to be marked as compliant",
+ "policyControlContentDescription": "Control access enforcement to block or grant access.",
+ "policyControlInfoBallonText": "Block access or select additional requirements which need to be satisfied to allow access",
+ "policyControlMfaChallengeDisplayedName": "Require multi-factor authentication",
+ "policyControlRequireCompliantAppDisplayedName": "Require app protection policy",
+ "policyControlRequireDomainJoinedDisplayedName": "Require Hybrid Azure AD joined device",
+ "policyControlRequireMamDisplayedName": "Require approved client app",
+ "policyControlRequiredPasswordChangeDisplayedName": "Require password change",
+ "policyControlSelectAuthStrength": "Require authentication strength",
+ "policyControlsNoControlsSelected": "0 controls selected",
+ "policyControlsSection": "Access controls",
+ "policyCreatBladeTitle": "New",
+ "policyCreateButton": "Create",
+ "policyCreateFailedMessage": "Error: {0}",
+ "policyCreateFailedTitle": "Failed to create '{0}'",
+ "policyCreateInProgressTitle": "Creating '{0}'",
+ "policyCreateSuccessMessage": "Successfully created '{0}'. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
+ "policyCreateSuccessTitle": "Successfully created '{0}'",
+ "policyDeleteConfirmation": "Are you sure you want to delete '{0}'? This action cannot be undone.",
+ "policyDeleteFailTitle": "Failed to delete '{0}'",
+ "policyDeleteInProgressTitle": "Deleting '{0}'",
+ "policyDeleteSuccessTitle": "Successfully deleted '{0}'",
+ "policyEnforceLabel": "Enable policy",
+ "policyErrorCannotSetSigninRisk": "You don't have permission to save a policy with a sign-in risk condition.",
+ "policyErrorNoPermission": "You don't have permission to save policy. Contact your global admin.",
+ "policyErrorUnknown": "Something went wrong, please try again later.",
+ "policyFallbackWarningMessage": "Failure to create or update '{0}' using MS Graph resulting in a fallback to AD Graph. Please investigate the following scenario as there is most likely a bug when calling the policy endpoint for MS Graph with an incompatible condition.",
+ "policyFallbackWarningTitle": "Creating or updating '{0}' partially successful",
+ "policyNameCannotBeEmpty": "Policy name can't be empty",
+ "policyNameDevice": "Device policy",
+ "policyNameFormat": "[{0}] {1}",
+ "policyNameMam": "Mobile App Management policy",
+ "policyNameMfaLocation": "MFA and location policy",
+ "policyNamePlaceholderText": "Example: 'Device compliance app policy'",
+ "policyNameTooLongError": "Policy name is too long. Maximum 256 characters",
+ "policyOff": "Off",
+ "policyOn": "On",
+ "policyReportOnly": "Report-only",
+ "policyReviewSection": "Review",
+ "policySaveButton": "Save",
+ "policyStatusIconDescription": "Policy is Enabled",
+ "policyStatusIconEnabled": "Enabled status icon",
+ "policyTemplateName1": "Use app enforced restrictions for {0} browser access",
+ "policyTemplateName2": "Allow {0} access only on managed devices",
+ "policyTemplateName3": "Policy migrated from Continuous Access Evaluation settings",
+ "policyTriggerRiskSpecific": "Select specific risk level",
+ "policyTriggersInfoBalloonText": "Conditions which define when the policy will apply. For example, 'location'",
+ "policyTriggersNoConditionsSelected": "0 conditions selected",
+ "policyTriggersSelectorLabel": "Conditions",
+ "policyUpdateFailedMessage": "Error: {0}",
+ "policyUpdateFailedTitle": "Failed to update {0}",
+ "policyUpdateInProgressTitle": "Updating {0}",
+ "policyUpdateSuccessMessage": "Successfully updated {0}. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
+ "policyUpdateSuccessTitle": "Successfully updated {0}",
+ "primaryCol": "Primary",
+ "privateLinkLabel": "Azure AD Private Link",
+ "reportOnlyInfoBox": "Report-only mode: Policies are evaluated and logged at sign-in but do not impact users.",
+ "requireAllControlsText": "Require all the selected controls",
+ "requireCompliantDevice": "Require compliant device",
+ "requireDomainJoined": "Require domain-joined device",
+ "requireGrantReauth": "The \"sign-in frequency every time\" session control requires a \"require multi-factor authentication\" or \"require password change\" grant control when \"All cloud apps\" is selected",
+ "requireMFA": "Require multi-factor authentication ",
+ "requireMfaReauth": "The \"sign-in frequency every time\" session control requires the \"require multi-factor authentication\" grant control for \"sign-in risk\"",
+ "requireOneControlText": "Require one of the selected controls",
+ "requirePasswordChangeReauth": "The \"sign-in frequency every time\" session control requires the \"require password change\" grant control for \"user risk\"",
+ "requireRiskReauth": "The \"sign-in frequency every time\" session control requires the \"user risk\" or \"sign-in risk\" session control when \"all cloud apps\" is selected.",
+ "resetFilters": "Reset filters",
+ "sPRequired": "Service principal required",
+ "sPSelectorInfoBalloon": "User or Service Principal you want to test",
+ "saturday": "Saturday",
+ "searchTextTooLongError": "The search text is too long. Maximum 256 characters",
+ "securityDefaultsPolicyName": "Security defaults",
+ "securityDefaultsTextMessage": "Security defaults must be disabled to enable Conditional Access policy.",
+ "securityDefaultsWarningMessage": "It looks like you're about to manage your organization's security configurations. That's great! You must first disable Security defaults before enabling a Conditional Access policy.",
+ "selectDevicePlatforms": "Select device platforms",
+ "selectNamedNetworksSubtitle": "",
+ "selectNamedNetworksTitle": "Select locations",
+ "selectedSP": "Selected Service Principal",
+ "servicePrincipalDataGridAria": "List of available service principals",
+ "servicePrincipalDropDownLabel": "What does this policy apply to?",
+ "servicePrincipalInfoBox": "Some conditions are not available due to '{0}' selection in policy assignment",
+ "servicePrincipalRadioAll": "All owned service principals",
+ "servicePrincipalRadioSelect": "Select service principals",
+ "servicePrincipalSelectionsAria": "Selected service principals grid",
+ "servicePrincipalSelectorAria": "List of chosen service principals",
+ "servicePrincipalSelectorMultiple": "{0} service principals selected",
+ "servicePrincipalSelectorSingle": "1 service principal selected",
+ "servicePrincipalSpecificInc": "Specific service principals included",
+ "servicePrincipals": "Service principals",
+ "sessionControlBladeTitle": "Session",
+ "sessionControlDescriptionContent": "Control access based on session controls to enable limited experiences within specific cloud applications.",
+ "sessionControlDisableInfo": "This control only works with supported apps. Currently, Office 365, Exchange Online, and SharePoint Online are the only cloud apps that support app enforced restrictions. Click here to learn more.",
+ "sessionControlInfoBallonText": "Session controls enable limited experience within a cloud app.",
+ "sessionControls": "Session controls",
+ "sessionControlsAppEnforcedLabel": "Use app enforced restrictions",
+ "sessionControlsCasLabel": "Use Conditional Access App Control",
+ "sessionControlsSecureSignInLabel": "Require token binding",
+ "sharepointAppName": "SharePoint",
+ "signinRiskDescription": "Select the sign-in risk level this policy will apply to",
+ "signinRiskInclude": "{0} included",
+ "signinRiskReauth": "\"Sign-in risk\" condition must be selected when \"Require multi-factor authentication\" grant and \"sign-in frequency every time\" session control are selected",
+ "signinRiskTriggerDescriptionContent": "Select the sign-in risk level",
+ "singleTenantServicePrincipalInfoBallonText": "Policy only applies to single tenant service principals owned by your organization. Click here to learn more ",
+ "specificSigninRiskLevelsOption": "Select specific sign-in risk levels",
+ "specificUsersExcluded": "specific users excluded",
+ "specificUsersIncluded": "Specific users included",
+ "specificUsersIncludedAndExcluded": "Specific users excluded and included",
+ "startDatePickerLabel": "Starts",
+ "startFreeTrial": "Start a free trial",
+ "startTimePickerLabel": "Start time",
+ "sunday": "Sunday",
+ "testButton": "What If",
+ "thumbprintCol": "Thumbprint",
+ "thursday": "Thursday",
+ "timeConditionAllTimesLabel": "Any time",
+ "timeConditionIntroText": "Configure the time this policy will apply to",
+ "timeConditionSelectorInfoBallonContent": "When the user is signing in. For example, \"Wednesday 9am-5pm PST\"",
+ "timeConditionSelectorLabel": "Time (Preview)",
+ "timeConditionSpecificLabel": "Specific times",
+ "timeSelectorAllTimesText": "Any time",
+ "timeSelectorSpecificTimesText": "Specific times configured",
+ "timeZoneDropdownInfoBalloonContent": "Select a time zone that defines the time range. This policy applies to users in all time zones. For example, 'Wednesday 9am - 5pm' for one user would be 'Wednesday 10am - 6pm' for a user in a different time zone.",
+ "timeZoneDropdownLabel": "Time zone",
+ "timeZoneDropdownPlaceholderText": "Select a time zone",
+ "tooManyPoliciesDescription": "Only first 50 policies are being displayed now, click here to view all policies",
+ "tooManyPoliciesTitle": "More than 50 policies found",
+ "trustedLocationStatusIconDescription": "Location is trusted",
+ "trustedLocationStatusIconEnabled": "Trusted status icon",
+ "tuesday": "Tuesday",
+ "uploadInBadState": "Unable to upload the specified file.",
+ "upsellAppsDescription": "Require multi-factor authentication for sensitive applications all the time or only from outside the company network.",
+ "upsellAppsTitle": "Secure applications",
+ "upsellBannerText": "Get a free Premium trial to use this feature",
+ "upsellDataDescription": "Require device to be marked as compliant or Hybrid Azure AD joined to allow access to company resources.",
+ "upsellDataTitle": "Secure data",
+ "upsellDescription": "Conditional Access provides the control and protection you need to keep your corporate data secure, while giving your people an experience that allows them to do their best work from any device. For instance, you can restrict access from outside the company network or restrict access to devices which meet the compliance policies.",
+ "upsellRiskDescription": "Require multi-factor authentication for risk events detected by Microsoft's machine learning system.",
+ "upsellRiskTitle": "Protect against risk",
+ "upsellTitle": "Conditional Access",
+ "upsellWhyTitle": "Why use Conditional Access?",
+ "userAppNoneOption": "None",
+ "userNamePlaceholderText": "Enter User Name",
+ "userNotSetSeletorLabel": "0 users and groups selected",
+ "userOnlySelectionBladeExcludeDescription": "Select the users to exempt from the policy",
+ "userOrGroupSelectionCountDiffBannerText": "{0} configured in this policy have been deleted from the directory, but this doesn't affect the other users and groups in the policy. The next time you update the policy, the deleted users and/or groups will be automatically removed.",
+ "userOrSPNotSetSelectorLabel": "0 users or workload identities selected",
+ "userOrSPSelectionBladeTitle": "Users or workload identities",
+ "userOrSPSelectorInfoBallonText": "Identities in the directory that the policy applies to, including users, groups, and service principals",
+ "userRequired": "User Required",
+ "userRiskErrorBox": "\"User risk\" condition must be selected when \"Require password change\" grant is selected",
+ "userRiskReauth": "\"User risk\" condition and not \"Sign-in risk\" must be selected when \"Require password change\" grant and \"Sign-in frequency every time\" session control are selected",
+ "userSPRequired": "User or Service principal required",
+ "userSPSelectorTitle": "User or Workload identity",
+ "userSelectionBladeAllUsersAndGroups": "All users and groups",
+ "userSelectionBladeExcludeDescription": "Select the users and groups to exempt from the policy",
+ "userSelectionBladeExcludeTabTitle": "Exclude",
+ "userSelectionBladeExcludedSelectorTitle": "Select excluded users",
+ "userSelectionBladeIncludeDescription": "Select the users this policy will apply to",
+ "userSelectionBladeIncludeTabTitle": "Include",
+ "userSelectionBladeIncludedSelectorTitle": "Select",
+ "userSelectionBladeSelectUsers": "Select users",
+ "userSelectionBladeSelectedUsers": "Select users and groups",
+ "userSelectionBladeTitle": "Users and groups",
+ "userSelectorBladeTitle": "Users",
+ "userSelectorExcluded": "{0} excluded",
+ "userSelectorGroupPlural": "{0} groups",
+ "userSelectorGroupSingular": "1 group",
+ "userSelectorIncluded": "{0} included",
+ "userSelectorInfoBallonText": "Users and groups in the directory that the policy applies to. For example, 'Pilot group'",
+ "userSelectorSelected": "{0} selected",
+ "userSelectorTitle": "User",
+ "userSelectorUserAndGroup": "{0}, {1}",
+ "userSelectorUserPlural": "{0} users",
+ "userSelectorUserSingular": "1 user",
+ "userSelectorWithExclusion": "{0} and {1}",
+ "usersGroupsLabel": "Users and groups",
+ "viewApprovedAppsText": "See list of approved client apps",
+ "viewCompliantAppsText": "See list of policy protected client apps",
+ "vpnBladeTitle": "VPN connectivity",
+ "vpnCertCreateFailedMessage": "Error: {0}",
+ "vpnCertCreateFailedTitle": "Failed to create {0}",
+ "vpnCertCreateInProgressTitle": "Creating {0}",
+ "vpnCertCreateSuccessMessage": "Successfully created {0}.",
+ "vpnCertCreateSuccessTitle": "Successfully created {0}",
+ "vpnCertNoRowsMessage": "No VPN certificates found",
+ "vpnCertUpdateFailedMessage": "Error: {0}",
+ "vpnCertUpdateFailedTitle": "Failed to update {0}",
+ "vpnCertUpdateInProgressTitle": "Updating {0}",
+ "vpnCertUpdateSuccessMessage": "Successfully updated {0}.",
+ "vpnCertUpdateSuccessTitle": "Successfully updated {0}",
+ "vpnFeatureInfo": "For more information on VPN connectivity and Conditional Access, click here.",
+ "vpnFeatureWarning": "Once a VPN certificate is created in the Azure portal, Azure AD will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
+ "vpnMenuText": "VPN connectivity",
+ "vpncertDropdownDefaultOption": "Duration",
+ "vpncertDropdownInfoBalloonContent": "Select the duration for the cert you want to create",
+ "vpncertDropdownLabel": "Select duration",
+ "vpncertDropdownOneyearOption": "1 year",
+ "vpncertDropdownThreeyearOption": "3 years",
+ "vpncertDropdownTwoyearOption": "2 years",
+ "wednesday": "Wednesday",
+ "whatIfAppEnforcedControl": "Use app enforced restrictions",
+ "whatIfBladeDescription": "Test the impact of Conditional Access on a user when signing in under certain conditions.",
+ "whatIfBladeTitle": "What If",
+ "whatIfClassicPoliciesWarning": "Classic policies are not evaluated by this tool.",
+ "whatIfClientAppInfo": "The client app the user is signing in from. For example, 'Browser'.",
+ "whatIfCountry": "Country",
+ "whatIfCountryInfo": "The country the user is signing in from.",
+ "whatIfDevicePlatformInfo": "The device platform the user is signing in from.",
+ "whatIfDeviceStateInfo": "The device state the user is signing in from",
+ "whatIfEnterIpAddress": "Enter IP address (ex: 40.77.182.32)",
+ "whatIfErrorInvalidIpAddress": "An invalid IP address was specified.",
+ "whatIfEvaResultApplication": "Cloud apps",
+ "whatIfEvaResultClientApps": "Client app",
+ "whatIfEvaResultDevicePlatform": "Device platform",
+ "whatIfEvaResultEmptyPolicy": "Empty policy",
+ "whatIfEvaResultInvalidCondition": "Invalid condition",
+ "whatIfEvaResultInvalidPolicy": "Invalid policy",
+ "whatIfEvaResultLocation": "Location",
+ "whatIfEvaResultNotEnoughInformation": "Not enough information",
+ "whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
+ "whatIfEvaResultSignInRisk": "Sign-in risk",
+ "whatIfEvaResultUsers": "Users and groups",
+ "whatIfIpAddress": "IP address",
+ "whatIfIpAddressInfo": "IP address the user is signing in from.",
+ "whatIfIpCountryInfoBoxText": "If using an IP address or Country, both fields will be required and should correctly map together.",
+ "whatIfPolicyAppliesTab": "Policies that will apply",
+ "whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
+ "whatIfReasons": "Reasons why this policy will not apply",
+ "whatIfSelectClientApp": "Select a client app...",
+ "whatIfSelectCountry": "Select country...",
+ "whatIfSelectDevicePlatform": "Select device platform...",
+ "whatIfSelectPrivateLink": "Select private link...",
+ "whatIfSelectServicePrincipalRisk": "Select service principal risk...",
+ "whatIfSelectSignInRisk": "Select sign-in risk...",
+ "whatIfSelectType": "Select identity type",
+ "whatIfSelectUserRisk": "Select user risk...",
+ "whatIfServicePrincipalRiskInfo": "The risk level associated with the service principal",
+ "whatIfSignInRisk": "Sign-in risk",
+ "whatIfSignInRiskInfo": "The risk level associated with the sign-in",
+ "whatIfUnknownAreas": "Unknown Areas",
+ "whatIfUserPickerLabel": "Selected user",
+ "whatIfUserPickerNoRowsLabel": "No user or service principal selected",
+ "whatIfUserRiskInfo": "The risk level associated with the user",
+ "whatIfUserSelectorInfo": "User in the directory that you want to test",
+ "windows365InfoBox": "Selecting Windows 365 will affect connections to Cloud PCs and Azure Virtual Desktop session hosts. Click here to learn more.",
+ "windowsDisplayName": "Windows",
+ "windowsPhoneDisplayName": "Windows Phone",
+ "workloadIdentities": "Workload identities (preview)",
+ "workloadIdentity": "Workload identity"
+ },
+ "AppResources": {
+ "AppSettingsUx": {
+ "assignmentFilterColumnHeader": "Filter",
+ "assignmentFilterTypeColumnHeader": "Filter mode",
+ "assignmentToast": "End user notifications",
+ "assignmentTypeTableHeader": "ASSIGNMENT TYPE",
+ "deadlineTimeColumnLabel": "Installation deadline",
+ "deliveryOptimizationPriorityHeader": "Delivery optimization priority",
+ "groupTableHeader": "Group",
+ "installContextLabel": "Install Context",
+ "isRemovable": "Install as removable",
+ "licenseTypeLabel": "License type",
+ "modeTableHeader": "Group mode",
+ "policySet": "Policy Set",
+ "restartGracePeriodHeader": "Restart grace period",
+ "startTimeColumnLabel": "Availability",
+ "tracks": "Tracks",
+ "uninstallOnRemoval": "Uninstall on device removal",
+ "updateMode": "Update Priority",
+ "vPN": "VPN"
+ },
+ "AppType": {
+ "aADWebApp": "AAD web app",
+ "androidEnterpriseSystemApp": "Android Enterprise system app",
+ "androidForWorkApp": "Managed Google Play store app",
+ "androidLobApp": "Android line-of-business app",
+ "androidStoreApp": "Android store app",
+ "builtInAndroid": "Built-In Android app",
+ "builtInApp": "Built-In app",
+ "builtInIos": "Built-In iOS app",
+ "iosLobApp": "iOS line-of-business app",
+ "iosStoreApp": "iOS store app",
+ "iosVppApp": "iOS volume purchase program app",
+ "lineOfBusinessApp": "Line-of-business app",
+ "macOSDmgApp": "macOS app (DMG)",
+ "macOSEdgeApp": "Microsoft Edge (macOS)",
+ "macOSLobApp": "macOS line-of-business app",
+ "macOSMdatpApp": "Microsoft Defender ATP (macOS)",
+ "macOSOfficeSuiteApp": "macOS Office Suite",
+ "macOsVppApp": "macOS volume purchase program app",
+ "managedAndroidLobApp": "Managed Android line-of-business app",
+ "managedAndroidStoreApp": "Managed Android store app",
+ "managedGooglePlayApp": "Managed Google Play store app",
+ "managedGooglePlayPrivateApp": "Managed Google Play private app",
+ "managedGooglePlayWebApp": "Managed Google Play web link",
+ "managedIosLobApp": "Managed iOS line-of-business app",
+ "managedIosStoreApp": "Managed iOS store app",
+ "microsoftStoreForBusinessApp": "Microsoft Store for Business app",
+ "microsoftStoreForBusinessReleaseManagedApp": "Microsoft Store for Business",
+ "officeAddIn": "Office add-in",
+ "officeSuiteApp": "Microsoft 365 Apps (Windows 10 and later)",
+ "sharePointApp": "SharePoint app",
+ "teamsApp": "Teams app",
+ "webApp": "Web link",
+ "windowsAppXLobApp": "Windows AppX line-of-business app",
+ "windowsClassicApp": "Windows app (Win32)",
+ "windowsEdgeApp": "Microsoft Edge (Windows 10 and later)",
+ "windowsMobileMsiLobApp": "Windows MSI line-of-business app",
+ "windowsPhone81AppXBundleLobApp": "Windows Phone 8.1 AppX line-of-business app",
+ "windowsPhone81AppXLobApp": "Windows Phone 8.1 AppX line-of-business app",
+ "windowsPhone81StoreApp": "Windows Phone 8.1 store app",
+ "windowsPhoneXapLobApp": "Windows Phone XAP line-of-business app",
+ "windowsStoreApp": "Microsoft Store app",
+ "windowsUniversalAppXLobApp": "Windows Universal AppX line-of-business app",
+ "windowsUniversalLobApp": "Windows Universal line-of-business app"
+ },
+ "AppTypePlatform": {
+ "android": "Android",
+ "ios": "iOS",
+ "macOs": "macOS",
+ "web": "Web",
+ "windows": "Windows"
+ },
+ "AssignmentAction": {
+ "exclude": "Excluded",
+ "include": "Included",
+ "includeAllDevicesVirtualGroup": "Included",
+ "includeAllUsersVirtualGroup": "Included"
+ },
+ "AssignmentToast": {
+ "hideAll": "Hide all toast notifications",
+ "showAll": "Show all toast notifications",
+ "showReboot": "Show toast notifications for computer restarts"
+ },
+ "DeliveryOptimizationPriority": {
+ "backgroundNormal": "Background",
+ "displayText": "Content download in {0}",
+ "foreground": "Foreground",
+ "header": "Delivery optimization priority"
+ },
+ "DeviceRestartBehaviorOptions": {
+ "allow": "App install may force a device restart",
+ "basedOnReturnCode": "Determine behavior based on return codes",
+ "force": "Intune will force a mandatory device restart",
+ "suppress": "No specific action"
+ },
+ "FilterType": {
+ "exclude": "Exclude",
+ "include": "Include",
+ "none": "None"
+ },
+ "InstallIntent": {
+ "available": "Available for enrolled devices",
+ "availableWithoutEnrollment": "Available with or without enrollment",
+ "notApplicable": "Not applicable",
+ "required": "Required",
+ "uninstall": "Uninstall"
+ },
+ "SettingType": {
+ "assignmentType": "Assignment type",
+ "deviceLicensing": "License type",
+ "installContext": "Uninstall on device removal",
+ "toastSettings": "End user notifications",
+ "vpnConfiguration": "VPN"
+ },
+ "UpdateMode": {
+ "default": "Default",
+ "postponed": "Postponed",
+ "priority": "High Priority"
+ }
+ },
+ "WindowsEnrollment": {
+ "coManagementAuthorityDesc": "Configure co-management settings for Configuration Manager integration",
+ "coManagementAuthorityTitle": "Co-management Settings ",
+ "deploymentProfiles": "Windows Autopilot deployment profiles",
+ "description": "Learn about the seven different ways a Windows 10/11 PC can be enrolled into Intune by users or admins.",
+ "descriptionLabel": "Windows enrollment methods",
+ "enrollmentStatusPage": "Enrollment Status Page"
+ },
+ "Win32Program": {
+ "DeviceRestartBehaviorOptions": {
+ "allow": "App install may force a device restart",
+ "basedOnReturnCode": "Determine behavior based on return codes",
+ "force": "Intune will force a mandatory device restart",
+ "suppress": "No specific action"
+ },
+ "RunAsAccountOptions": {
+ "system": "System",
+ "user": "User"
+ },
+ "bladeTitle": "Program",
+ "deviceRestartBehavior": "Device restart behavior",
+ "deviceRestartBehaviorTooltip": "Select the device restart behavior after the app has successfully installed. Select 'Determine behavior based on return codes' to restart the device based on the return codes configuration settings. Select 'No specific action' to suppress device restarts during the app install for MSI-based apps. Select 'App install may force a device restart' to allow the app install to complete without suppressing restarts. Select 'Intune will force a mandatory device restart' to always restart the device after successful app installation.",
+ "header": "Specify the commands to install and uninstall this app:",
+ "installCommand": "Install command",
+ "installCommandMaxLengthErrorMessage": "Install command cannot exceed the maximum allowed length of 1024 characters.",
+ "installCommandTooltip": "The complete installation command line used to install this app.",
+ "runAs32Bit": "Run install and uninstall commands in a 32-bit process on 64-bit clients",
+ "runAs32BitTooltip": "Select 'Yes' to install and uninstall the app in a 32-bit process on 64-bit clients. Select 'No' (default) to install and uninstall the app in a 64-bit process on 64-bit clients. 32-bit clients will always use a 32-bit process.",
+ "runAsAccount": "Install behavior",
+ "runAsAccountTooltip": "Select 'System' to install this app for all users if supported. Select 'User' to install this app for the logged-in user on the device. For dual-purpose MSI apps, changes will prevent updates and uninstalls from successfully completing until the value applied to the device at the time of the original install is restored.",
+ "selectorLabel": "Program",
+ "uninstallCommand": "Uninstall command",
+ "uninstallCommandTooltip": "The complete uninstallation command line used to uninstall this app."
+ },
+ "CategoryDescription": {
+ "androidGeneralApplicationRestrictions": "Use these settings to stay informed about which users install apps that are not approved for use in your company. Select the type of restricted app list:
\n Prohibited apps - A list of apps that you want to be informed about when users install them.
\n Approved apps - A list of apps that are approved for use in your company. When users install an app that is not in this list, you will be informed.
\n ",
+ "androidZebraMxZebraMx": "Configure Zebra devices by uploading a MX profile in XML format.",
+ "iosDeviceFeaturesAirprint": "Use these settings to configure iOS devices to automatically connect to AirPrint compatible printers on your network. You'll need the IP address and resource path of your printers.",
+ "iosDeviceFeaturesExtensibleSingleSignOn": "Configure an app extension that enables single sign-on (SSO) for devices running iOS 13.0 or later.",
+ "iosDeviceFeaturesHomeScreenLayout": "Configure the layout for the dock and Home Screens on iOS devices. Certain devices may have limits to how many items can be displayed.",
+ "iosDeviceFeaturesIOSWallpaper": "Display an image that will appear on the Home Screen and/or the lock screen of iOS devices.\n To display a unique image in each location, create one profile with the lock screen image, and one with the Home Screen image.\n Then assign both profiles to your users.\n
\n \n - Max file size: 750 KB
\n - File type: PNG, JPG or JPEG
\n
\n ",
+ "iosDeviceFeaturesNotifications": "Specify notification settings for apps. Supports iOS 9.3 and later.",
+ "iosDeviceFeaturesSharedDevice": "Specify optional text displayed on the locked screen. It is supported on iOS 9.3 and later. Learn More",
+ "iosGeneralApplicationRestrictions": "Use these settings to stay informed about which users install apps that are not approved for use in your company. Select the type of restricted app list:
\n Prohibited apps - A list of apps that you want to be informed about when users install them.
\n Approved apps - A list of apps that are approved for use in your company. When users install an app that is not in this list, you will be informed.
\n ",
+ "iosGeneralApplicationVisibility": "Use the show apps list to specify the iOS apps that user can view or launch. Use the hidden apps list to specify the iOS apps that user cannot view or launch.",
+ "iosGeneralAutonomousSingleAppMode": "Apps you add to this list and assign to a device can lock the device to run only that app once launched, or lock the device while a certain action is running (for example taking a test). Once the action is complete, or you remove the restriction, the device returns to its normal state.",
+ "iosGeneralKiosk": "Kiosk mode locks various settings into a device, or specifies a single app that can be run on a device. This can be useful in environments like a retail store where you want a device to run only a single demo app.",
+ "macDeviceFeaturesAirprint": "Use these settings to configure macOS devices to automatically connect to AirPrint compatible printers on your network. You'll need the IP address and resource path of your printers.",
+ "macDeviceFeaturesAssociatedDomains": "Configure associated domains to share data and sign-in credentials between your org’s apps and websites. This profile can be applied to devices running macOS 10.15 or later.",
+ "macDeviceFeaturesExtensibleSingleSignOn": "Configure an app extension that enables single sign-on (SSO) for devices running macOS 10.15 or later.",
+ "macDeviceFeaturesLoginItems": "Choose which apps, files, and folders open when users log in to their devices. If you don't want users to change how the selected apps open, you can hide the app from the user configuration.",
+ "macDeviceFeaturesLoginWindow": "Configure the appearance of the macOS login screen and the functions that are available to users before and after they log in.",
+ "macExtensionsKernelExtensions": "Use these settings to configure kernel extension policy on macOS devices running 10.13.2 or later.",
+ "macGeneralDomains": "Emails that the user sends or receives which don't match the domains you specify here will be marked as untrusted.",
+ "windows10EndpointProtectionApplicationGuard": "While using Microsoft Edge, Microsoft Defender Application Guard protects your environment from sites that haven’t been defined as trusted by your organization. When users visit sites that aren’t listed in your isolated network boundary, the sites will be opened in a virtual browsing session in Hyper-V. Trusted sites are defined by a network boundary, which can be configured in Device Configuration. Note this feature is only available for devices running 64-bit Windows 10 or later.",
+ "windows10EndpointProtectionCredentialGuard": "Enabling Credential Guard will enable the following required settings:\n
\n \n - Enable Virtualization-based Security: Turns on virtualization-based security (VBS) at next reboot. Virtualization-based security uses the Windows Hypervisor to provide support for security services.
\n
\n - Secure Boot with Direct Memory Access: Turns on VBS with Secure Boot and direct memory access (DMA).
\n
\n ",
+ "windows10EndpointProtectionDeviceGuard": "Choose additional apps that either need to be audited by, or can be trusted to run by Microsoft Defender Application Control. Windows components and all apps from Windows store are automatically trusted to run.
\n Applications will not be blocked when running in “audit only” mode. “Audit only” mode logs all events in local client logs.\n ",
+ "windows10GeneralPrivacyPerApp": "Add apps that should have a different privacy behavior from what you defined in “Default privacy”.",
+ "windows10NetworkBoundaryNetworkBoundary": "The network boundary is the list of enterprise resources, such as cloud-hosted domain and IP address ranges for computers that are on the enterprise network. Define network boundaries to apply policies to protect data that resides in these locations.",
+ "windowsHealthMonitoring": "Configure the Windows health monitoring policy.",
+ "windowsPhoneGeneralApplicationRestrictions": "Windows Phone can block users from installing or launching apps specified in the prohibited apps list, or apps not specified in the approved apps list. All managed apps must be added to the approved list."
+ },
"Inputs": {
"accountDomain": "Account domain",
"accountDomainHint": "e.g. contosodomain",
@@ -9962,6 +9858,7 @@
"displayNameLabel": "Name",
"displayVersionHint": "Enter the app version",
"displayVersionLabel": "App Version",
+ "displayVersionLengthCheck": "The length of the display version should be a maximum of 130 characters",
"eBookCategoryNameLabel": "Default name",
"emailAccount": "Email account name",
"emailAccountHint": "e.g. Corporate Email",
@@ -10066,385 +9963,51 @@
"xmlFormatInvalid": "XML policy format is invalid.",
"xmlTooLarge": "Input size must be less than 1 MB."
},
- "Tooltips": {
- "PolicySettings": {
- "TouchId1": {
- "android": "On Android, you can allow using fingerprint identification instead of a PIN. Users are prompted to provide their fingerprints when they access this app with their work accounts.",
- "iOS": "On iOS/iPadOS devices, you can allow using fingerprint identification instead of a PIN. Users are prompted to provide their fingerprints when they access this app with their work accounts.",
- "mac": "On Mac devices, you can allow using fingerprint identification instead of a PIN. Users are prompted to provide their fingerprints when they access this app with their work accounts."
- },
- "appSharingFromLevel1": "Select one of the following options to specify the apps that this app can receive data from:",
- "appSharingFromLevel2": "{0}: Only allow receiving data in org documents or accounts from other policy managed apps",
- "appSharingFromLevel3": "{0}: Allow receiving data in org documents or accounts from any app",
- "appSharingFromLevel4": "{0}: Do not allow receiving data in org documents or accounts from any app",
- "appSharingFromLevel5": "{0}: Allow data transfer from any app and treat all incoming data without an user identity as Org data.",
- "appSharingToLevel1": "Select one of the following options to specify the apps that this app can send data to:",
- "appSharingToLevel2": "{0}: Only allow sending org data to other policy managed apps",
- "appSharingToLevel3": "{0}: Allow sending org data to any app",
- "appSharingToLevel4": "{0}: Do not allow sending org data to any app",
- "appSharingToLevel5": "{0}: Only allow transfer only to other policy managed apps and file transfer to other MDM managed apps on enrolled devices",
- "appSharingToLevel6": "{0}: Allow transfer only to other policy managed apps and filter OS Open-in/Share dialogs to only display policy managed apps",
- "conditionalEncryption1": "Select {0} to disable app encryption for internal app storage when device encryption is detected on an enrolled device.",
- "conditionalEncryption2": "Note: Intune can only detect device enrollment with Intune MDM. External app storage will still be encrypted to ensure data cannot be accessed by unmanaged applications.",
- "contactSyncMac": "If disabled, apps cannot save contacts to the native address book.",
- "contactsSync": "Choose Block to prevent policy managed apps from saving data to the device's native apps (like Contacts, Calendar and widgets), or to prevent the use of add-ins within the policy managed apps. If you choose Allow, the policy managed app can save data to the native apps or use add-ins, if those features are supported and enabled within the policy managed app.
Apps may provide additional configuration capability with app configuration policies. For more information, see the app's documentation.",
- "encryptionAndroid1": "For apps that are associated with an Intune mobile application management policy, encryption is provided by Microsoft. Data is encrypted synchronously during file I/O operations according to the setting in the mobile application management policy. Managed apps on Android use AES-128 encryption in CBC mode utilizing the platform cryptography libraries. The encryption method is not FIPS 140-2 compliant. SHA-256 encryption is supported as an explicit instruction using the SigAlg parameter and will only work on devices 4.2 and above. Content on the device storage is always be encrypted.",
- "encryptionAndroid2": "When you require encryption in your app policy, the end-user is required to setup and use a PIN to access their device. If there is not a PIN set up for device access, the apps will not launch and the end-user will instead see a message, which says, “Your company has required that you must first enable a device PIN to access this application.\"",
- "encryptionMac1": "For apps that are associated with an Intune mobile application management policy, encryption is provided by Microsoft. Data is encrypted synchronously during file I/O operations according to the setting in the mobile application management policy. Managed apps on Mac use AES-128 encryption in CBC mode utilizing the platform cryptography libraries. The encryption method is not FIPS 140-2 compliant. SHA-256 encryption is supported as an explicit instruction using the SigAlg parameter and will only work on devices 4.2 and above. Content on the device storage is always be encrypted.",
- "faceId1": "Where applicable, you can allow the use of face identification instead of PIN. Users are prompted to provide face identification when they access this app with their work accounts.",
- "faceId2": "Select Yes to allow face identification instead of a PIN for app access.",
- "managementLevelsAndroid1": "Use this option to specify whether this policy applies to Android device administrator devices, Android Enterprise devices, or unmanaged devices.",
- "managementLevelsAndroid2": "{0}: Unmanaged devices are devices where Intune MDM management has not been detected. This includes 3rd party MDM vendors.",
- "managementLevelsAndroid3": "{0}: Intune-managed devices using the Android Device Administration API.",
- "managementLevelsAndroid4": "{0}: Intune-managed devices using Android Enterprise Work Profiles or Android Enterprise Full Device Management.",
- "managementLevelsIos1": "Use this option to specify whether this policy applies to MDM managed devices or unmanaged devices.",
- "managementLevelsIos2": "{0}: Unmanaged devices are devices where Intune MDM management has not been detected. This includes 3rd party MDM vendors.",
- "managementLevelsIos3": "{0}: Managed devices are managed by Intune MDM.",
- "minAppVersion": "Define the required minimum App version number that a user should have to gain secure access to the app.",
- "minAppVersionWarning": "Define the recommended minimum App version number that a user should have for secure access to the app.",
- "minOsVersion": "Define the required minimum OS version number that a user should have to gain secure access to the app.",
- "minOsVersionWarning": "Define the recommended minimum OS version number that a user should have to gain secure access to the app.",
- "minPatchVersion": "Define the oldest required Android security patch level a user can have to gain secure access to the app.",
- "minPatchVersionWarning": "Define the oldest recommended Android security patch level a user can have for secure access to the app.",
- "minSdkVersion": "Define the required minimum Intune Application Protection Policy SDK version that a user should have to gain secure access to the app.",
- "requireAppPinDefault": "Select Yes to disable the app PIN when a device lock is detected on an enrolled device.
",
- "targetAllApps1": "Use this option to target your policy to apps on devices of any management state.",
- "targetAllApps2": "During policy conflict resolution this setting will be superseded if a user has policy targeted for a specific management state.",
- "touchId2": "Select {0} to require fingerprint identity instead of a PIN for app access."
- },
- "Tap": {
- "pinResetAfterNumberOfDays": "Specify the number of days that must pass before the user must reset the PIN.",
- "previousPinBlockCount": "This setting specifies the number of previous PINs that Intune will maintain. Any new PINs must be different from those that Intune is maintaining."
+ "WindowsFeatureUpdate": {
+ "EndOFSupportStatus": {
+ "notSupported": "Not supported",
+ "supportEnding": "Support ending",
+ "supported": "Supported"
+ }
},
- "WipPolicySettings": {
- "25": "",
- "allowWindowsSearch": "This will allow Windows Search to continue to search through encrypted data.",
- "authoritativeIpRanges": "Enable this setting if you want to override Windows auto-detection of IP ranges.",
- "authoritativeProxyServers": "Enable this setting if you want to override Windows auto-detection of proxy servers.",
- "checkInput": "Check input for validity",
- "dataRecoveryCert": "A recovery certificate is a special Encrypting File System (EFS) certificate you can use to recover encrypted files if your encryption key is lost or damaged. You need to create the recovery certificate, and specify it here. More information is here",
- "enterpriseCloudResources": "Specify cloud resources to be treated as corporate and be protected with Windows Information Protection policy. Multiple resources can be specified by separating individual entries with the '|' character.
If you have a proxy configured in your company, then you can specify the proxy through which traffic to cloud resources you specified will be routed.
URL[,Proxy]|URL[,Proxy]
Without proxy: contoso.sharepoint.com|contoso.visualstudio.com
With proxy: contoso.sharepoint.com,proxy.contoso.com|contoso.visualstudio.com,proxy.contoso.com
",
- "enterpriseIPv4Ranges": "Specify the IPv4 ranges that form your corporate network. These are used in conjunction with the Enterprise Network Domain Names that you specify to define your corporate network boundary.
This setting is required to have Windows Information Protection enabled.
Multiple ranges can be specified by separating individual entries with a comma.
For example: 3.4.0.1-3.4.255.255,192.168.1.1-192.168.255.255
",
- "enterpriseIPv6Ranges": "Specify the IPv6 ranges that form your corporate network. These are used in conjunction with the Enterprise Network Domain Names that you specify to define your corporate network boundary.
Multiple ranges can be specified by separating individual entries with a comma.
For example: 2001:4898:dc05::-2001:4898:dc05:ffff:ffff:ffff:ffff:ffff,2a01:110::-2a01:110:7fff:ffff:ffff:ffff:ffff:ffff
",
- "enterpriseInternalProxyServers": "If you have a proxy configured in your company, then you can specify the proxy through which traffic to cloud resources specified in the Enterprise Cloud Resources settings are to be routed.
Multiple values can be specified by separating individual entries with a semi-colon.
For example: contoso.internalproxy1.com;contoso.internalproxy2.com
",
- "enterpriseNetworkDomainNames": "Specify the DNS names that form your corporate network. These are used in conjunction with the IP ranges that you specify to define your corporate network boundary. Multiple values can be specified by separating individual entries with a comma.
This setting is required to have Windows Information Protection enabled.
For example: corp.contoso.com,region.contoso.com
",
- "enterpriseProtectedDomainNames": "Specify the DNS names that form your corporate network. These are used in conjunction with the IP ranges that you specify to define your corporate network boundary. Multiple values can be specified by separating individual entries with a '|'.
This setting is required to have Windows Information Protection enabled.
For example: corp.contoso.com|region.contoso.com
",
- "enterpriseProxyServers": "If you have external facing proxies in your corporate network, specify them here. When specifying a proxy server address, you should also specify the port through which traffic should be allowed and protected through Windows Information Protection.
Note: This list must not include servers in your Enterprise Internal Proxy Server list. Multiple values can be specified by separating individual entries with a semi-colon.
For example: proxy.contoso.com:80;proxy2.contoso.com:80
",
- "maxInactivityTime1": "Specifies the maximum amount of time (in minutes) allowed after the device is idle that will cause the device to become PIN or password locked. Users can select any existing timeout value less than the specified maximum time in the Settings app. Note the Lumia 950 and 950XL have a maximum timeout value of 5 minutes, regardless of the value set by this policy.",
- "maxInactivityTime2": "0 (default) - No timeout is defined. The default of '0' is interpreted as 'No timeout is defined.'",
- "maxPasswordAttempts1": "This policy has different behaviors on the mobile device and desktop.",
- "maxPasswordAttempts2": "On a mobile device, when the user reaches the value set by this policy, then the device is wiped.",
- "maxPasswordAttempts3": "On a desktop, when the user reaches the value set by this policy, it is not wiped.Instead, the desktop is put on BitLocker recovery mode, which makes the data inaccessible but recoverable.If BitLocker is not enabled, then the policy cannot be enforced.",
- "maxPasswordAttempts4": "Prior to reaching the failed attempts limit, the user is sent to the lock screen and warned that more failed attempts will lock their computer.When the user reaches the limit, the device automatically reboots and shows the BitLocker recovery page.This page prompts the user for the BitLocker recovery key.",
- "maxPasswordAttempts5": "0 (default) - The device is never wiped after an incorrect PIN or password is entered.",
- "maxPasswordAttempts6": "Most secure value is 0 if all policy values = 0; otherwise, Min policy value is the most secure value.",
- "mdmDiscoveryUrl": "Specify the URL for the MDM enrollment endpoint that users who enroll to MDM will use. By default, this is specified for Intune.",
- "minimumPinLength1": "Integer value that sets the minimum number of characters required for the PIN. Default value is 4. The lowest number you can configure for this policy setting is 4. The largest number you can configure must be less than the number configured in the Maximum PIN length policy setting or the number 127, whichever is the lowest.",
- "minimumPinLength2": "If you configure this policy setting, the PIN length must be greater than or equal to this number. If you disable or do not configure this policy setting, the PIN length must be greater than or equal to 4.",
- "name": "The name of this network boundary",
- "neutralResources": "If you have authentication redirection endpoints in your company, specify those here. The locations specified here are considered to be either personal or corporate depending on the context of the connection prior to the redirection.
Multiple values can be specified by separating individual entries with a comma.
For example: sts.contoso.com,sts.contoso2.com
",
- "passportForWork1": "Value that sets Windows Hello for Business as a method for signing into Windows.",
- "passportForWork2": "Default value is true.If you set this policy to false, the user cannot provision Windows Hello for Business except on Azure Active Directory joined mobile phones where provisioning is required.",
- "pinExpiration": "The largest number you can configure for this policy setting is 730. The lowest number you can configure for this policy setting is 0. If this policy is set to 0, then the user’s PIN will never expire.",
- "pinHistory1": "The largest number you can configure for this policy setting is 50. The lowest number you can configure for this policy setting is 0. If this policy is set to 0, then storage of previous PINs is not required.",
- "pinHistory2": "The current PIN of the user is included in the set of PINs associated with the user account. PIN history is not preserved through a PIN reset.",
- "protectUnderLock": "Protects app content while the device is in a locked state.",
- "protectionModeBlock": "Block: Blocks enterprise data from leaving protected apps.
",
- "protectionModeOff": "Off: User is free to relocate data off of protected apps. No actions are logged.
",
- "protectionModeOverride": "Allow overrides: User is prompted when attempting to relocate data from a protected to a non-protected app. If they choose to override this prompt, the action will be logged.
",
- "protectionModeSilent": "Silent: User is free to relocate data off of protected apps. These actions are logged.
",
- "required": "Required",
- "revokeOnMdmHandoff": "Added in Windows 10, version 1703. This policy controls whether to revoke the WIP keys when a device upgrades from MAM to MDM. If set to “Off”, the keys will not be revoked and the user will continue to have access to protected files after upgrade. This is recommended if the MDM service is configured with the same WIP EnterpriseID as the MAM service.",
- "revokeOnUnenroll": "This will cause encryption keys to be revoked when a device un-enrolls from this policy.",
- "rmsTemplateForEdp": "TemplateID GUID to use for RMS encryption. The Azure RMS template allows the IT admin to configure the details about who has access to RMS-protected file and how long they have access.",
- "showWipIcon": "This will let the user know when they are acting in a corporate context, by overlaying an icon.",
- "useRmsForWip": "Specifies whether to allow Azure RMS encryption for WIP."
+ "SecurityTemplate": {
+ "aSR": "Attack surface reduction",
+ "accountProtection": "Account protection",
+ "allDevices": "All devices",
+ "antivirus": "Antivirus",
+ "antivirusReporting": "Antivirus Reporting (Preview)",
+ "conditionalAccess": "Conditional access",
+ "deviceCompliance": "Device compliance",
+ "diskEncryption": "Disk encryption",
+ "eDR": "Endpoint detection and response",
+ "firewall": "Firewall",
+ "helpSupport": "Help and support",
+ "setup": "Setup",
+ "wdapt": "Microsoft Defender for Endpoint"
+ },
+ "Win32ReturnCodes": {
+ "CodeTypes": {
+ "failed": "Failed",
+ "hardReboot": "Hard reboot",
+ "retry": "Retry",
+ "softReboot": "Soft reboot",
+ "success": "Success"
},
- "requireAppPin": "Select Yes to disable the app PIN when a device lock is detected on an enrolled device.
Note: Intune cannot detect device enrollment with a third-party EMM solution on iOS/iPadOS.
"
- },
- "AppInfoBalloonText": {
- "Certificate": {
- "customSubjectName": "CN={{UserName}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US\nor\nCN={{AAD_Device_ID}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US",
- "keySize": "Select the number of bits contained in the key.",
- "keyUsage": "Specify the cryptographic action that is required to exchange the certificate’s public key.",
- "renewalThreshold": "Enter the percentage (between 1 and 99 percent) of remaining certificate lifetime that is allowed before a device can request renewal of the certificate. The recommended amount in Intune is 20%. (1-99)",
- "rootCert": "Choose a previously configured and assigned root CA certificate profile. The CA certificate must match the root certificate of the CA that is issuing the certificate for this profile (the one you are currently configuring).",
- "scepServerUrl": "Enter a URL for the NDES Server that issues certificates through SCEP (Must be HTTPS). e.g. https://contoso.com/certsrv/mscep/mscep.dll",
- "scepServerUrls": "Add one or more URLs for the NDES Server that issues certificates through SCEP (Must be HTTPS). e.g. https://contoso.com/certsrv/mscep/mscep.dll",
- "subjectAlternativeName": "Subject alternative name",
- "subjectNameFormat": "Subject name format",
- "validityPeriod": "The amount of time remaining before the certificate expires. Enter a value that is equal to or lower than the validity period shown in the certificate template. Default is set at one year."
- },
- "appInstallContext": "This specifies the install context to be associated with this app. For dual mode apps, select the desired context for this app. For all other apps, this is pre-selected based on the package and cannot be modified.",
- "autoUpdateMode": "Configure the update priority for the app. Select Default to require the device to be connected to WiFi, to be charging, and not to be actively in use before updating the app. Select High Priority to update the app as soon as the developer has published the app, regardless of charge status, WiFi capability, or end user activity on the device. High priority will only take effect on DO devices.",
- "configurationSettingsFormat": "Configuration settings format text",
- "ignoreVersionDetection": "Set this to “Yes” for apps that are automatically updated by the app developer (such as Google Chrome).",
- "ignoreVersionDetectionMacOSLobApp": "Select \"Yes\" for apps that are automatically updated by app developer or to only check for app bundleID before installation. Select \"No\" to check for app bundleID and version number before installation.",
- "installAsManagedMacOSLobApp": "This setting only applies to macOS 11 and higher. The app will be installed but not managed on macOS 10.15 and lower.",
- "installContextDropdown": "Select the appropriate install context. User context will install the app only for the targeted user while device context will install the app for all users on the device.",
- "ldapUrl": "This is the LDAP hostname where clients can get the public encryption keys for email recipients. Emails will be encrypted when a key is available. Supported formats: - ldap.example.com
\n- ldap.example.com:123
\n- ldap://ldap.example.com
- ldap://ldap.example.com:123
- ldaps://ldap.example.com
\n- ldaps://ldap.example.com:123
",
- "permissionsSettings": "Select runtime permissions for the associated app.",
- "policyAssociatedApp": "Select the app that this policy will be associated with.",
- "policyConfigurationSettings": "Select the method you want to use to define configuration settings for this policy.",
- "policyDescription": "Optionally, enter a description for this configuration policy.",
- "policyEnrollmentType": "Choose whether these settings are managed through device management or apps made with Intune SDK.",
- "policyName": "Enter a name for this configuration policy.",
- "policyPlatform": "Select the platform this app configuration policy will apply to.",
- "policyProfileType": "Select the device profile types that this app configuration profile will apply to",
- "policySMime": "Configure S/MIME signing and encryption settings for Outlook.",
- "sMimeDeployCertsFromIntune": "Specify whether or not S/MIME certificates will be delivered from Intune for use with Outlook.\nIntune can automatically deploy signing and encryption certificates to users through the Company Portal.",
- "sMimeEnable": "Specify whether or not S/MIME controls are enabled when composing an email",
- "sMimeEnableAllowChange": "Specify if the user is allowed to change the Enable S/MIME setting.",
- "sMimeEncryptAllEmails": "Specify whether or not all emails must be encrypted.\nEncrypting converts data to cipher text so that only the intended recipient can read it.",
- "sMimeEncryptAllEmailsAllowChange": "Specify if the user is allowed to change the Encrypt all emails setting.",
- "sMimeEncryptionCertProfile": "Specify certificate profile for email encryption.",
- "sMimeSignAllEmails": "Specify whether or not all emails must be signed.\nA digital signature verifies the authenticity of the email and ensures that the contents are not tampered with in transit.",
- "sMimeSignAllEmailsAllowChange": "Specify if the user is allowed to change the Sign all emails setting.",
- "sMimeSigningCertProfile": "Specify certificate profile for email signing.",
- "sMimeUserNotificationType": "Method to notify users that they must open Company Portal to retrieve S/MIME certificates for Outlook."
- },
- "WindowsQualityUpdateDaysUntilForcedReboot": {
- "oneDay": "1 day",
- "twoDays": "2 days",
- "zeroDays": "0 days"
- },
- "Autopilot": {
- "AssignResourceAccount": {
- "createNewCommandMenu": "Create new",
- "createNewResourceAccountInfo": "\nCreate a new resource account during enrollment. The Resource account will be added to the Resource account table right away, but won't be active until the device is enrolled, and the Surface Hub subscription is verified. Learn more about Resource Accounts
\n ",
- "createNewResourceTitle": "Create new resource account",
- "deviceNameInvalid": "Device name is in an invalid format",
- "deviceNameRequired": "A device name is required",
- "editResourceAccountLabel": "Edit",
- "selectExistingCommandMenu": "Select existing"
- },
- "Device": {
- "ComputerName": {
- "validFormat": "Names must be 15 characters or less, and can contain letters (a-z, A-Z), numbers (0-9), and hyphens. Names must not contain only numbers. Names cannot include a blank space."
- },
- "Header": {
- "addressableUserName": "User Friendly Name",
- "azureADDevice": "Associated Azure AD device",
- "batch": "Group Tag",
- "dateAssigned": "Date assigned",
- "deviceDisplayName": "Device Name",
- "deviceName": "Device name",
- "deviceUseType": "Device-use type",
- "enrollmentState": "Enrollment state",
- "intuneDevice": "Associated Intune device",
- "lastContacted": "Last contacted",
- "make": "Manufacturer",
- "model": "Model",
- "profile": "Assigned profile",
- "profileStatus": "Profile status",
- "purchaseOrderId": "Purchase order",
- "resourceAccount": "Resource account",
- "serialNumber": "Serial number",
- "userPrincipalName": "User"
- }
- },
- "DeviceUseType": {
- "meetingAndPresentation": "Meeting and presentation",
- "teamCollaboration": "Team collaboration"
- },
- "Devices": {
- "featureDescription": "Windows Autopilot lets you customize the out-of-box experience (OOBE) for your users.",
- "importErrorStatus": "Some devices were not imported. Click here for more information.",
- "importPendingStatus": "Import in progress. Elapsed time: {0} min. This process can take up to {1} min."
- },
- "DirectoryService": {
- "activeDirectoryAD": "Hybrid Azure AD joined",
- "activeDirectoryADLabel": "Hybrid Azure AD width Autopilot",
- "azureAD": "Azure AD joined",
- "unknownType": "Unknown Type"
- },
- "Filter": {
- "enrollmentState": "State",
- "profile": "Profile status"
- },
- "OOBE": {
- "AddressableUserName": {
- "validateEmpty": "User friendly name cannot be empty."
- },
- "ApplyComputerNameTemplate": {
- "infoBalloon": "Create a naming template to add names to your devices during enrollment.",
- "label": "Apply device name template"
- },
- "ApplyComputerNameTemplateDisabled": {
- "label": "For Hybrid Azure AD joined type of Autopilot deployment profiles, devices are named using settings specified in Domain Join configuration."
- },
- "ComputerNameTemplate": {
- "emptyValue": "MyCompany-%RAND:4%",
- "label": "Enter a name",
- "noDisallowedChars": "Name must only contain alphanumeric characters, hyphens, %SERIAL%, or %RAND:x%",
- "serialLength": "Cannot use more than 7 characters with %SERIAL%",
- "validateLessThan15Chars": "Name must be 15 characters or less",
- "validateNoSpaces": "Computer names cannot contain spaces",
- "validateNotAllNumbers": "Name must also contain letters and/or hyphens",
- "validateNotEmpty": "Name cannot be empty",
- "validateOnlyOneMacro": "Name must only contain one of %SERIAL% or %RAND:x%"
- },
- "ConfigureComputerNameTemplate": {
- "description": "Create a unique name for your devices. Names must be 15 characters or less, and can contain letters (a-z, A-Z), numbers (0-9), and hyphens. Names must not contain only numbers. Names cannot include a blank space. Use the %SERIAL% macro to add a hardware-specific serial number. Alternatively, use the %RAND:x% macro to add a random string of numbers, where x equals the number of digits to add."
- },
- "EnableWhiteGlove": {
- "infoBalloon": "Enable pressing Windows key 5 times to run OOBE without user authentication to enroll device and provision all system-context apps and settings. User-context apps and settings will be delivered when the user signs in.",
- "label": "Allow pre-provisioned deployment"
- },
- "HybridAzureADSkipConnectivityCheck": {
- "infoBalloon": "The Autopilot Hybrid Azure AD join flow will continue even if it does not establish domain controller connectivity during OOBE.",
- "label": "Skip AD connectivity check (preview)"
- },
- "accountType": "User account type",
- "accountTypeInfo": "Specify whether users are administrators or standard users on the device. Note that this setting does not apply to Global Administrator or Company Administrator accounts. These accounts cannot be standard users because they have access to all administrative features in Azure AD.",
- "configOOBEInfo": "\nConfigure the out-of-box experience for your Autopilot devices\n
",
- "configureDevice": "Deployment mode",
- "configureDeviceHintForSurfaceHub2": "Autopilot only supports self-deploying mode for Surface Hub 2. This mode doesn't associate the user with the enrolled device, so it doesn't require user credentials.",
- "configureDeviceHintForWindowsPC": "\n Deployment mode controls if a user needs to provide credentials in order to provision the device.\n
\n \n - \n User-Driven: Devices are associated with the user enrolling the device and user credentials are required to provision the device\n
\n - \n Self-Deploying (preview): Devices are not associated with the user enrolling the device and user credentials are not required to provision the device\n
\n
",
- "createSurfaceHub2Info": "Configure the Autopilot enrollment settings for your Surface Hub 2 devices. By default Autopilot enables skipping user authentication during OOBE. Learn more about Windows Autopilot for Surface Hub 2.",
- "createWindowsPCInfo": "\n\nThe following options are automatically enabled for Autopilot devices in self-deploying mode:\n
\n\n - \n Skip Work or Home usage selection\n
\n - \n Skip OEM registration and OneDrive configuration\n
\n - \n Skip user authentication in OOBE\n
\n
",
- "endUserDevice": "User-Driven",
- "hideEscapeLink": "Hide change account options",
- "hideEscapeLinkInfo": "Options to change account and start over with a different account appear, respectively, during initial device setup on the company sign-in page, and on the domain error page. To hide these options, you must configure company branding in Azure Active Directory (requires Windows 10, 1809 or later, or Windows 11).",
- "info": "Autopilot profile settings define the out-of-box experience users see when starting Windows for the first time. ",
- "language": "Language (Region)",
- "languageInfo": "Specify the language and region that will be used.",
- "licenseAgreement": "Microsoft Software License Terms",
- "licenseAgreementInfo": "Specify whether to show the EULA to users.",
- "plugAndForgetDevice": "Self-Deploying (preview)",
- "plugAndForgetGA": "Self-Deploying",
- "privacySettingWarning": "The default value for diagnostic data collection has changed for devices running Windows 10, version 1903 and later, or Windows 11. ",
- "privacySettings": "Privacy settings",
- "privacySettingsInfo": "Specify whether to show privacy settings to users.",
- "showCortanaConfigurationPage": "Cortana configuration",
- "showCortanaConfigurationPageInfo": "Show will enable the Cortana configuration introduction during startup.",
- "skipEULAWarning": "Important information about hiding license terms",
- "skipKeyboardSelection": "Automatically configure keyboard",
- "skipKeyboardSelectionInfo": "If true, skip the keyboard selection page if Language is set.",
- "subtitle": "Autopilot profiles",
- "title": "Out-of-box experience (OOBE)",
- "useOSDefaultLanguage": "Operating system default",
- "userSelect": "User select"
- },
- "Sync": {
- "lastRequestedLabel": "Last sync request",
- "lastSuccessfulLabel": "Last successful sync",
- "syncInProgress": "Sync is in progress. Check back again soon.",
- "syncInitiated": "Autopilot settings sync initiated.",
- "syncSettingsTitle": "Sync Autopilot settings"
- },
- "Title": {
- "devices": "Windows Autopilot devices"
- },
- "Tooltips": {
- "addressableUserName": "Greeting name displayed during device setup.",
- "azureADDevice": "Go to device details for associated device. N/A means that there's no associated device.",
- "batch": "A string attribute that can be used to identify a group of devices. Intune's Group Tag field maps to the OrderID attribute on Azure AD devices.",
- "dateAssigned": "Timestamp of when the profile was assigned to the device.",
- "deviceDisplayName": "Configure a unique name for a device. This name will be ignored in Hybrid Azure AD joined deployments. Device name still comes from the domain join profile for Hybrid Azure AD devices.",
- "deviceName": "The name shown when someone tried to discover and connect to the device.",
- "deviceUseType": " Device would setup based on your choice. You can always change later in settings.\n \n - For meetings and presentations, Windows Hello isn't turned on and data is removed after each session.\n
\n - For team collaboration, Windows Hello is turned on and profiles are saved for quick sign-in
\n
",
- "enrollmentState": "Specifies if the device has enrolled.",
- "intuneDevice": "Go to device details for associated device. N/A means that there's no associated device.",
- "lastContacted": "Timestamp of when the device was last contacted.",
- "make": "Manufacturer of the selected device.",
- "model": "Model of the selected device",
- "profile": "Name of the profile assigned to the device.",
- "profileStatus": "Specifies if a profile is assigned to the device.",
- "purchaseOrderId": "Purchase Order ID",
- "resourceAccount": "The device's identity, or user principal name (UPN).",
- "serialNumber": "Serial number of the selected device.",
- "userPrincipalName": "User to pre-fill authentication during device setup."
- },
- "allDevices": "All devices",
- "allDevicesAlreadyAssignedError": "An Autopilot profile is already assigned to All Devices.",
- "assignFailedDescription": "Failed to update assignments for {0}.",
- "assignFailedTitle": "Failed to update Autopilot profile assignments.",
- "assignSuccessDescription": "Successfully updated assignments for {0}.",
- "assignSuccessTitle": "Successfully updated Autopilot profile assignments.",
- "assignSufaceHub2ProfileNextStep": "Next steps for this deployment",
- "assignSurfaceHub2ProfileToDeviceGroup": "1. Assign this profile to at least one device group",
- "assignSurfaceHub2ProfileToResourceAccount": "2. Assign a resource account to each Surface Hub device to which you deploy this profile",
- "assignedDevicesCount": "Assigned devices",
- "assignedDevicesResourceAccountDescription": "To deploy this profile to a device, you must assign the device a Resource account. Select one device at a time to assign an existing Resource account or to create a new one. Learn more about Resource Accounts
",
- "assignedDevicesResourceAccountStatusBarMessage": "This table only lists the Surface Hub 2 devices that have been assigned this profile.",
- "assigningDescription": "Updating assignments for {0}.",
- "assigningTitle": "Updating Autopilot profile assignments.",
- "cannotDeleteMessage": "This profile is assigned to groups. You must unassign all groups from this profile before you can delete it.",
- "cannotDeleteTitle": "Cannot delete {0}",
- "createdDateTime": "Created",
- "deleteMessage": "If you delete this Autopilot profile, any devices assigned to this profile will display Unassigned.",
- "deleteMessageWithPolicySet": "{0} is included in one more more policy sets. If you delete {0}, you'll no longer be able to assign it via these policy sets.",
- "deleteTitle": "Are you sure you want to delete this profile?",
- "description": "Description",
- "deviceType": "Device type",
- "deviceUse": "Device use",
- "directoryServiceHintForSurfaceHub2": " \n Autopilot only supports Azure AD Joined for Surface Hub 2 devices. Specify how devices join Active Directory (AD) in your organization.\n
\n \n - \n Azure AD joined: Cloud-only without an on-premises Windows Server Active Directory.\n
\n
\n ",
- "directoryServiceHintForWindowsPC": "\n \n Specify how devices join Active Directory (AD) in your organization:\n
\n \n - \n Azure AD joined: Cloud-only without an on-premises Windows Server Active Directory\n
\n
\n ",
- "getAssignedDevicesCountError": "An error occurred while fetching the assigned devices count.",
- "getAssignmentsError": "An error occurred while fetching Autopilot profile assignments.",
- "harvestDeviceId": "Convert all targeted devices to Autopilot",
- "harvestDeviceIdDescription": "By default, this profile can only be applied to Autopilot devices synced from the Autopilot service.",
- "harvestDeviceIdInfo": "\n Select Yes to register all targeted devices to Autopilot if they are not already registered. The next time registered devices go through the Windows Out of Box Experience (OOBE), they will go through the assigned Autopilot scenario.\n
\n Please note that certain Autopilot scenarios require specific minimum builds of Windows. Please make sure your device has the required minimum build to go through the scenario.\n
\n Removing this profile won’t remove affected devices from Autopilot. To remove a device from Autopilot, use the Windows Autopilot Devices view.\n ",
- "harvestDeviceIdWarning": "After conversion, Autopilot devices can only be reverted by deleting them from the Autopilot devices list.",
- "holoLensCommandMenu": "HoloLens",
- "info": "Windows Autopilot deployment profiles lets you customize the out-of-box experience for your devices.",
- "invalidProfileNameMessage": "Character \"{0}\" is not allowed",
- "joinTypeLabel": "Join Azure AD as",
- "lastModifiedDateTime": "Last modified:",
- "name": "Name",
- "noAutopilotProfile": "No Autopilot profiles",
- "notEnoughPermissionAssignedError": "You don't have enough permissions to assign this profile to one or more of your selected groups. Please contact your administrator.",
- "profile": "profile",
- "resourceAccountStatusBarMessage": "A Resource Account is required for each Surface Hub 2 device to which this profile is deployed. Click to learn more.",
- "selectServices": "Select directory service devices will join",
- "surfaceHub2CommandMenu": "Surface Hub 2",
- "surfaceHub2SCommandMenu": "Surface Hub 2S",
- "userAffinityLabel": "Deployment mode",
- "windowsPCCommandMenu": "Windows PC",
- "directoryServiceLabel": "Join to Azure AD as"
- },
- "AppInformationTab": {
- "Error": {
- "multipleChildApps": "A macOS LOB app can only be installed as managed when the uploaded package contains a single app."
- },
- "Info": {
- "AppStoreUrl": {
- "android": "Enter the link to the app listing in Google Play store. For example:",
- "androidLink": "https://play.google.com/store/apps/details?id=com.microsoft.office.outlook",
- "windows": "Enter the link to the app listing in the Microsoft Store. For example:",
- "windowsLink": "https://www.microsoft.com/en-us/p/microsoft-to-do-lists-tasks-reminders/9nblggh5r558"
- },
- "appPackageFile": "A file that contains your app in a format that can be sideloaded on a device. Valid package types include: Android (.apk), iOS (.ipa), macOS (.intunemac), Windows (.msi, .appx, .appxbundle, .msix, and .msixbundle).",
- "applicableDeviceType": "Select the device types that can install this app.",
- "category": "Categorize the app to make it easier for users to sort and find in Company Portal. You can choose multiple categories.",
- "categoryLink": "https://docs.microsoft.com/en-us/intune/apps/apps-add#create-and-edit-categories-for-apps",
- "description": "Help your device users understand what the app is and/or what they can do in the app. This description will be visible to them in Company Portal.",
- "developer": "The name of the company or Individual that developed the app. This information will be visible to people signed into the admin center.",
- "displayVersion": "The version of the app. This information will be visible to users in the Company Portal.",
- "infoUrl": "Link people to a website or documentation that has more information about the app. The information URL will be visible to users in Company Portal.",
- "isFeatured": "Featured apps are prominently placed in Company Portal so that users can quickly get to them.",
- "learnMore": "Learn more",
- "logo": "Upload a logo that's associated with the app. This logo will appear next to the app throughout Company Portal.",
- "macOSDmgAppPackageFile": "A file that contains your app in a format that can be sideloaded on a device. Valid package type: .dmg.",
- "minOperatingSystem": "Select the earliest operating system version on which the app can be installed. If you assign the app to a device with an earlier operating system, it will not be installed.",
- "name": "Add a name for the app. This name will be visible in the Intune apps list and to users in the Company Portal.",
- "notes": "Add additional notes about the app. Notes will be visible to people signed in to the admin center.",
- "owner": "The name of the person in your organization who manages licensing or is the point-of-contact for this app. This name will be visible to people signed in to the admin center.",
- "packageName": "Contact the device manufacturer to get the app's package name. Example package name: com.example.app",
- "privacyUrl": "Provide a link for people who want to learn more about the app's privacy settings and terms. The privacy URL will be visible to users in Company Portal.",
- "publisher": "The name of the developer or company that distributes the app. This information will be visible to users in Company Portal.",
- "selectApp": "Search the App Store for iOS store apps that you want to deploy with Intune.",
- "useManagedBrowser": "If required, when a user opens the web app, it will open in an Intune-protected browser such as Microsoft Edge or Intune Managed Browser. This setting applies to both iOS and Android devices.",
- "useManagedBrowserLink": "https://docs.microsoft.com/en-us/intune/apps/app-configuration-managed-browser",
- "win32AppPackageFile": "A file that contains your app in a format that can be sideloaded on a device. Valid package type: .intunewin."
- },
- "descriptionPreview": "Preview",
- "descriptionRequired": "Description is required.",
- "editDescription": "Edit Description",
- "name": "App information",
- "nameForOfficeSuitApp": "App suite information"
- },
+ "Columns": {
+ "codeType": "Code type",
+ "returnCode": "Return code"
+ },
+ "bladeTitle": "Return codes",
+ "gridAriaLabel": "Return codes",
+ "header": "Specify return codes to indicate post-installation behavior:",
+ "onAddAnnounceMessage": "Return code added item {0} of {1}",
+ "onDeleteSuccess": "Return code {0} deleted successfully",
+ "returnCodeAlreadyUsedValidation": "Return code is already used.",
+ "returnCodeMustBeIntegerValidation": "Return code should be an integer.",
+ "returnCodeShouldBeAtLeast": "Return code should be at least {0}.",
+ "returnCodeShouldBeAtMost": "Return code should be at most {0}.",
+ "selectorLabel": "Return codes"
+ },
"NotificationMessage": {
"NotificationMessageTemplatesTab": {
"arabic": "Arabic",
@@ -10516,84 +10079,599 @@
"localeLabel": "Locale",
"isDefaultLocale": "Is Default"
},
- "Win32Program": {
- "DeviceRestartBehaviorOptions": {
- "allow": "App install may force a device restart",
- "basedOnReturnCode": "Determine behavior based on return codes",
- "force": "Intune will force a mandatory device restart",
- "suppress": "No specific action"
- },
- "RunAsAccountOptions": {
- "system": "System",
- "user": "User"
- },
- "bladeTitle": "Program",
- "deviceRestartBehavior": "Device restart behavior",
- "deviceRestartBehaviorTooltip": "Select the device restart behavior after the app has successfully installed. Select 'Determine behavior based on return codes' to restart the device based on the return codes configuration settings. Select 'No specific action' to suppress device restarts during the app install for MSI-based apps. Select 'App install may force a device restart' to allow the app install to complete without suppressing restarts. Select 'Intune will force a mandatory device restart' to always restart the device after successful app installation.",
- "header": "Specify the commands to install and uninstall this app:",
- "installCommand": "Install command",
- "installCommandMaxLengthErrorMessage": "Install command cannot exceed the maximum allowed length of 1024 characters.",
- "installCommandTooltip": "The complete installation command line used to install this app.",
- "runAs32Bit": "Run install and uninstall commands in a 32-bit process on 64-bit clients",
- "runAs32BitTooltip": "Select 'Yes' to install and uninstall the app in a 32-bit process on 64-bit clients. Select 'No' (default) to install and uninstall the app in a 64-bit process on 64-bit clients. 32-bit clients will always use a 32-bit process.",
- "runAsAccount": "Install behavior",
- "runAsAccountTooltip": "Select 'System' to install this app for all users if supported. Select 'User' to install this app for the logged-in user on the device. For dual-purpose MSI apps, changes will prevent updates and uninstalls from successfully completing until the value applied to the device at the time of the original install is restored.",
- "selectorLabel": "Program",
- "uninstallCommand": "Uninstall command",
- "uninstallCommandTooltip": "The complete uninstallation command line used to uninstall this app."
- },
- "OutlookAppConfigSettings": {
- "AllowUserToChangeSetting": {
- "title": "Allow user to change setting",
- "tooltip": "Specify if the user is allowed to change the setting."
- },
- "AllowWorkAccounts": {
- "title": "Allow only work or school accounts",
- "tooltip": " By enabling this setting, users will be unable to add personal email and storage accounts within Outlook. If the user has a personal account added to Outlook, the user is prompted to remove the personal account. If the user does not remove the personal account, the work or school account cannot be added."
- },
- "BlockExternalImages": {
- "title": "Block external images",
- "tooltip": "When block external images is enabled, the app will prevent the download of images hosted on the Internet that are embedded in the message body. When set as not configured, the default app setting is set to Off"
- },
- "ConfigureEmail": {
- "title": "Configure email account settings"
- },
- "DefaultAppSignatureSetting": {
- "Tooltip": {
- "android": "Default app signature indicates whether the app will use “Get Outlook for Android” as the default signature during message composition. If the setting is configured as Off, the default signature will not be used; however, users can add their own signature.\n\nWhen set as Not Configured, the default app setting is set to On.",
- "iOS": "Default app signature indicates whether the app will use “Get Outlook for iOS” as the default signature during message composition. If the setting is configured as Off, the default signature will not be used; however, users can add their own signature.\n\nWhen set as Not Configured, the default app setting is set to On."
- },
- "title": "Default app signature"
- },
- "OfficeFeedReplies": {
- "title": "Discover Feed",
- "tooltip": "Discover Feed surfaces your most frequently accessed Office files. By default, this feed is enabled when Delve is enabled for the user. When set as not configured, the default app setting is set to On."
- },
- "OrganizeMailByThread": {
- "title": "Organize mail by thread",
- "tooltip": "The default behavior in Outlook is to bundle mail conversations into a threaded conversation view. If this setting is disabled Outlook will display each mail individually and will not group them by thread."
- },
- "PlayMyEmails": {
- "title": "Play My Emails",
- "tooltip": "The Play My Emails feature is not enabled by default in the app, but it is promoted to eligible users via a banner in the inbox. When set to Off, this feature will not be promoted to eligible users in the app. Users can choose to manually enable Play My Emails from within the app, even when this feature is set to Off. When set as Not configured, the default app setting is On and the feature will be promoted to eligible users."
- },
- "SuggestedReplies": {
- "title": "Suggested replies",
- "tooltip": "When you open a message, Outlook might suggest replies below the message. If you select a suggested reply, you can edit the reply before sending it."
- },
- "SyncCalendars": {
- "title": "Sync Calendars",
- "tooltip": "Configure whether users can sync their Outlook calendar to the native calendar app and database."
- },
- "TextPredictions": {
- "title": "Text Predictions",
- "tooltip": "Outlook can suggest words and phrases as you compose messages. When Outlook offers a suggestion, swipe to accept it. When set as not configured, the default app setting is set to On."
+ "WindowsQualityUpdateProfile": {
+ "Details": {
+ "DaysUntilForcedReboot": {
+ "label": "Number of days to wait before restart is enforced"
+ },
+ "Description": {
+ "label": "Description"
+ },
+ "Name": {
+ "label": "Name"
+ },
+ "QualityUpdateRelease": {
+ "label": "Expedite installation of quality updates if device OS version less than:"
+ },
+ "bladeTitle": "Quality updates Windows 10 and later (Preview)",
+ "loadError": "Loading failed!"
+ },
+ "TabName": {
+ "qualityUpdateSettings": "Settings"
+ },
+ "infoBoxText": "The only dedicated quality update control currently available other than the existing update rings policy for Windows 10 and later is the ability to expedite quality updates for devices that fall behind a specified patch level. Additional controls will be available in the future.",
+ "warningBoxText": "While expediting software updates can help decrease the time to get to compliance when necessary, it has a larger impact on end-user productivity. The chances that they will experience a restart during business hours is significantly increased."
+ },
+ "TermsOfUse": {
+ "Languages": {
+ "addLanguage": "Add language",
+ "af": "Afrikaans",
+ "am": "Amharic",
+ "arSA": "Arabic (Saudi Arabia)",
+ "as": "Assamese",
+ "az": "Azerbaijani",
+ "be": "Belarusian",
+ "bg": "Bulgarian",
+ "bn": "Bangla",
+ "bnIN": "Bangla (India)",
+ "bs": "Bosnian",
+ "ca": "Catalan",
+ "caESvalencia": "Valencian (Spain)",
+ "cs": "Czech",
+ "cy": "Welsh",
+ "da": "Danish",
+ "de": "German",
+ "default": "Default",
+ "defaultDetailsTag": "{0} (Default)",
+ "el": "Greek",
+ "en": "English",
+ "enGB": "English (United Kingdom)",
+ "es": "Spanish",
+ "esMX": "Spanish (Mexico)",
+ "et": "Estonian",
+ "eu": "Basque",
+ "fa": "Persian",
+ "fi": "Finnish",
+ "fil": "Filipino",
+ "fr": "French",
+ "frCA": "French (Canada)",
+ "ga": "Irish",
+ "gd": "Scottish Gaelic",
+ "gl": "Galician",
+ "gu": "Gujarati",
+ "ha": "Hausa",
+ "he": "Hebrew",
+ "hi": "Hindi",
+ "hr": "Croatian",
+ "hu": "Hungarian",
+ "hy": "Armenian",
+ "id": "Indonesian",
+ "ig": "Igbo",
+ "is": "Icelandic",
+ "it": "Italian",
+ "ja": "Japanese",
+ "ka": "Georgian",
+ "kk": "Kazakh",
+ "km": "Khmer",
+ "kn": "Kannada",
+ "ko": "Korean",
+ "kok": "Konkani",
+ "kuArab": "Central Kurdish (Arabic)",
+ "ky": "Kyrgyz",
+ "languageOptions": "Language Options",
+ "lb": "Luxembourgish",
+ "lo": "Lao",
+ "lt": "Lithuanian",
+ "lv": "Latvian",
+ "mi": "Maori",
+ "mk": "Macedonian",
+ "ml": "Malayalam",
+ "mn": "Mongolian",
+ "mr": "Marathi",
+ "ms": "Malay",
+ "mt": "Maltese",
+ "ne": "Nepali",
+ "nl": "Dutch",
+ "nnNO": "Norwegian, Nynorsk (Norway)",
+ "no": "Norwegian",
+ "notSpecified": "Language not specified",
+ "nso": "Sesotho sa Leboa",
+ "or": "Odia",
+ "paArabPK": "Punjabi (Islamic Republic of Pakistan)",
+ "paIN": "Punjabi (India)",
+ "pl": "Polish",
+ "prs": "Dari",
+ "ptBR": "Portuguese (Brazil)",
+ "ptPT": "Portuguese (Portugal)",
+ "quz": "Quechua",
+ "ro": "Romanian",
+ "ru": "Russian",
+ "rw": "Kinyarwanda",
+ "sd": "Sindhi",
+ "si": "Sinhala",
+ "sk": "Slovak",
+ "sl": "Slovenian",
+ "sq": "Albanian",
+ "srCyrlBA": "Serbian (Cyrillic, Bosnia and Herzegovina)",
+ "srCyrlRS": "Serbian (Cyrillic, Serbia)",
+ "srLatnRS": "Serbian (Latin, Serbia)",
+ "sv": "Swedish",
+ "sw": "Kiswahili",
+ "ta": "Tamil",
+ "te": "Telugu",
+ "tg": "Tajik",
+ "th": "Thai",
+ "ti": "Tigrinya",
+ "tk": "Turkmen",
+ "tn": "Setswana",
+ "tr": "Turkish",
+ "tt": "Tatar",
+ "ug": "Uyghur",
+ "uk": "Ukrainian",
+ "ur": "Urdu",
+ "uz": "Uzbek",
+ "vi": "Vietnamese",
+ "wo": "Wolof",
+ "xh": "isiXhosa",
+ "yo": "Yoruba",
+ "zhHans": "Chinese (Simplified)",
+ "zhHant": "Chinese (Traditional)",
+ "zu": "isiZulu"
+ },
+ "AcceptanceExpirationFrequency": {
+ "annually": "Annually",
+ "biannually": "Bi-annually",
+ "monthly": "Monthly",
+ "quarterly": "Quarterly"
},
- "ThemesEnabled": {
- "title": "Themes enabled",
- "tooltip": "Specify if the user is allowed to use a custom visual theme."
- }
- },
+ "Wizard": {
+ "AgreementTargetEntityScope": {
+ "NotSelected": {
+ "label": "None selected"
+ },
+ "selectEntityTitle": "Select group",
+ "title": "Select group"
+ },
+ "PolicyFile": {
+ "Languages": {
+ "Empty": {
+ "default": "Select default language",
+ "nonDefault": "Select a language"
+ }
+ },
+ "Validations": {
+ "duplicateLanguage": "Oops, {0} appears to be selected multiple times. Language selection must be unique."
+ }
+ },
+ "PolicyTemplate": {
+ "InfoBox": {
+ "allGuestsAllApps": "A conditional access policy will be created for all guests and all cloud apps. This policy impacts the Azure portal. Once this is created you might be required to sign-out and sign-in.",
+ "allUsersAllApps": "A conditional access policy will be created for all users and all cloud apps. This policy impacts the Azure portal. Once this is created you will be required to sign-out and sign-in.",
+ "custom": "Select the users, groups, and apps that this Terms of Use will be applied to.",
+ "noPolicy": "This terms of use will appear in the grant control list when creating a conditional access policy."
+ }
+ },
+ "Section": {
+ "conditionalAccessSubtitle": "Enforce with conditional access policy templates",
+ "conditionalAccessTitle": "Conditional access",
+ "termsOfUseSubtitle": "Create and upload documents",
+ "termsOfUseTitle": "Terms of use"
+ },
+ "acceptanceDurationInfo": "The terms of use will be enforced immediately and each user will have to re-consent every specified number of days.",
+ "acceptanceDurationLabel": "Duration before re-acceptance required (days)",
+ "acceptanceDurationPlaceholder": "Example: '90'",
+ "acceptanceExpirationFrequencyInfo": "Require users to consent on a recurring basis.",
+ "acceptanceExpirationFrequencyLabel": "Frequency",
+ "acceptanceExpirationStartDateTimeInfo": "The terms of use will be enforced immediately and users will be required to re-consent on this date.",
+ "acceptanceExpirationStartDateTimeLabel": "Expire starting on",
+ "agreementIsPerDeviceAcceptanceRequiredInfo": "The end users will be required to consent to the terms of use on every device.",
+ "agreementIsPerDeviceAcceptanceRequiredLabel": "Require users to consent on every device",
+ "agreementIsViewingBeforeAcceptanceRequiredInfo": "The end users will be required to view the terms of use prior to accepting.",
+ "agreementIsViewingBeforeAcceptanceRequiredLabel": "Require users to expand the terms of use",
+ "agreementNameInfo": "Name will be used to manage the terms of use within the Azure portal.",
+ "agreementNameLabel": "Name",
+ "agreementNamePlaceholderText": "Example: 'All users terms of use'",
+ "agreementRequirmentLabel": "Required Upon",
+ "agreementTargetEntityLabel": "Users targeted",
+ "agreementUploadPolicyLabel": "Terms of use",
+ "agreementUploadPolicyPlaceholderText": "Upload required PDF",
+ "createButtonLabel": "Create",
+ "createPolicyInfo": "In order to enforce the terms of use, a conditional access policy is required. You can create a conditional access policy targeted to specific users and applications later or use one of the predefined templates.",
+ "createPolicyLabel": "Create a policy",
+ "isAcceptanceExpirationEnabledInfo": "The terms of use will be enforced immediately and all users will be forced to re-consent on a schedule.",
+ "isAcceptanceExpirationEnabledLabel": "Expire consents",
+ "pdfValidationInvalidFileFormat": "The file must be in the .pdf format.",
+ "policyFilesInfo": "Upload a PDF file containing the terms of use that your end users must accept. Based on end user preferences they will be shown the appropriate language or if not match the default language will be shown.
For end users agreeing on mobile devices, we recommend the PDF font size to be at least 24 pt.
Display name will be the title of the terms of use that is presented to the end user.",
+ "policyFilesLabel": "Terms of use document",
+ "policyTemplateInfo": "These templates are pre configured conditional access policies that are targeted to specific users and applications.",
+ "policyTemplateLabel": "Policy templates",
+ "title": "New terms of use"
+ }
+ },
+ "TACSettings": {
+ "edgeSettings": "Edge configuration settings",
+ "edgeWindowsDataProtectionSettings": "Edge (Windows) data protection settings - Preview",
+ "edgeWindowsSettings": "Edge (Windows) configuration settings - Preview",
+ "generalAppConfig": "General app configuration",
+ "generalSettings": "General configuration settings",
+ "outlookSMIMEConfig": "Outlook S/MIME settings",
+ "outlookSettings": "Outlook configuration settings",
+ "sMIME": "S/MIME"
+ },
+ "MicrosoftEdgeChannel": {
+ "beta": "Beta",
+ "dev": "Dev",
+ "stable": "Stable"
+ },
+ "WipPolicySettings": {
+ "addNetworkBoundary": "Add network boundary",
+ "addNetworkBoundaryButton": "Add network boundary...",
+ "allowWindowsSearch": "Allow Windows Search to search encrypted corporate data and Store apps",
+ "authoritativeIpRanges": "Enterprise IP Ranges list is authoritative (do not auto-detect)",
+ "authoritativeProxyServers": "Enterprise Proxy Servers list is authoritative (do not auto-detect)",
+ "boundaryType": "Boundary type",
+ "cloudResources": "Cloud resources",
+ "corporateIdentity": "Corporate identity",
+ "dataRecoveryCert": "Upload a Data Recovery Agent (DRA) certificate to allow recovery of encrypted data",
+ "editNetworkBoundary": "Edit network boundary",
+ "enrollmentState": "Enrollment state",
+ "iPv4Ranges": "IPv4 ranges",
+ "iPv6Ranges": "IPv6 ranges",
+ "internalProxyServers": "Internal proxy servers",
+ "maxInactivityTime": "Maximum amount of time (in minutes) allowed after the device is idle that will cause the device to become PIN or password locked",
+ "maxPasswordAttempts": "Number of authentication failures allowed before the device will be wiped",
+ "mdmDiscoveryUrl": "MDM discovery URL",
+ "mdmRequiredSettingsInfo": "This policy only applies to Windows 10 Anniversary Edition and higher. This policy uses Windows Information Protection (WIP) to apply protection.",
+ "minimumPinLength": "Set the minimum number of characters required for the PIN",
+ "name": "Name",
+ "networkBoundariesGridEmptyText": "Any network boundaries you add will show up here",
+ "networkBoundary": "Network boundary",
+ "networkDomainNames": "Network domains",
+ "neutralResources": "Neutral resources",
+ "passportForWork": "Use Windows Hello for Business as a method for signing into Windows",
+ "pinExpiration": "Specify the period of time (in days) that a PIN can be used before the system requires the user to change it",
+ "pinHistory": "Specify the number of past PINs that can be associated to a user account that can’t be reused",
+ "pinLowercaseLetters": "Configure the use of lowercase letters in the Windows Hello for Business PIN",
+ "pinSpecialCharacters": "Configure the use of special characters in the Windows Hello for Business PIN",
+ "pinUppercaseLetters": "Configure the use of uppercase letters in the Windows Hello for Business PIN",
+ "protectUnderLock": "Prevent corporate data from being accessed by apps when the device is locked. Applies only to Windows 10 Mobile",
+ "protectedDomainNames": "Protected domains",
+ "proxyServers": "Proxy servers",
+ "requireAppPin": "Disable app PIN when device PIN is managed",
+ "requiredSettings": "Required settings",
+ "requiredSettingsInfo": "Changing the scope or removing this policy will decrypt corporate data.",
+ "revokeOnMdmHandoff": "Revoke access to protected data when the device enrolls to MDM",
+ "revokeOnUnenroll": "Revoke encryption keys on unenroll",
+ "rmsTemplateForEdp": "Specify the template ID to use for Azure RMS",
+ "showWipIcon": "Show the enterprise data protection icon",
+ "type": "Type",
+ "useRmsForWip": "Use Azure RMS for WIP",
+ "value": "Value",
+ "weRequiredSettingsInfo": "This policy only applies to Windows 10 Creators Update and higher. This policy uses Windows Information Protection (WIP) and Windows MAM to apply protection.",
+ "wipProtectionMode": "Windows Information Protection mode",
+ "withEnrollment": "With enrollment",
+ "withoutEnrollment": "Without enrollment"
+ },
+ "OfficeApplicationAdditionalType": {
+ "projectProRetail": "Project Online Desktop Client",
+ "visioProRetail": "Visio Online Plan 2"
+ },
+ "Countries": {
+ "ae": "United Arab Emirates",
+ "ag": "Antigua and Barbuda",
+ "ai": "Anguilla",
+ "al": "Albania",
+ "am": "Armenia",
+ "ao": "Angola",
+ "ar": "Argentina",
+ "at": "Austria",
+ "au": "Australia",
+ "az": "Azerbaijan",
+ "bb": "Barbados",
+ "be": "Belgium",
+ "bf": "Burkina Faso",
+ "bg": "Bulgaria",
+ "bh": "Bahrain",
+ "bj": "Benin",
+ "bm": "Bermuda",
+ "bn": "Brunei",
+ "bo": "Bolivia",
+ "br": "Brazil",
+ "bs": "Bahamas",
+ "bt": "Bhutan",
+ "bw": "Botswana",
+ "by": "Belarus",
+ "bz": "Belize",
+ "ca": "Canada",
+ "cg": "Republic Of Congo",
+ "ch": "Switzerland",
+ "cl": "Chile",
+ "cn": "China",
+ "co": "Colombia",
+ "cr": "Costa Rica",
+ "cv": "Cape Verde",
+ "cy": "Cyprus",
+ "cz": "Czech Republic",
+ "de": "Germany",
+ "dk": "Denmark",
+ "dm": "Dominica",
+ "do": "Dominican Republic",
+ "dz": "Algeria",
+ "ec": "Ecuador",
+ "ee": "Estonia",
+ "eg": "Egypt",
+ "es": "Spain",
+ "fi": "Finland",
+ "fj": "Fiji",
+ "fm": "Federated States Of Micronesia",
+ "fr": "France",
+ "gb": "United Kingdom",
+ "gd": "Grenada",
+ "gh": "Ghana",
+ "gm": "Gambia",
+ "gr": "Greece",
+ "gt": "Guatemala",
+ "gw": "Guinea-Bissau",
+ "gy": "Guyana",
+ "hk": "Hong Kong",
+ "hn": "Honduras",
+ "hr": "Croatia",
+ "hu": "Hungary",
+ "id": "Indonesia",
+ "ie": "Ireland",
+ "il": "Israel",
+ "in": "India",
+ "is": "Iceland",
+ "it": "Italy",
+ "jm": "Jamaica",
+ "jo": "Jordan",
+ "jp": "Japan",
+ "ke": "Kenya",
+ "kg": "Kyrgyzstan",
+ "kh": "Cambodia",
+ "kn": "St. Kitts and Nevis",
+ "kr": "Republic Of Korea",
+ "kw": "Kuwait",
+ "ky": "Cayman Islands",
+ "kz": "Kazakstan",
+ "la": "Lao People’s Democratic Republic",
+ "lb": "Lebanon",
+ "lc": "St. Lucia",
+ "lk": "Sri Lanka",
+ "lr": "Liberia",
+ "lt": "Lithuania",
+ "lu": "Luxembourg",
+ "lv": "Latvia",
+ "md": "Republic Of Moldova",
+ "mg": "Madagascar",
+ "mk": "North Macedonia",
+ "ml": "Mali",
+ "mn": "Mongolia",
+ "mo": "Macau",
+ "mr": "Mauritania",
+ "ms": "Montserrat",
+ "mt": "Malta",
+ "mu": "Mauritius",
+ "mw": "Malawi",
+ "mx": "Mexico",
+ "my": "Malaysia",
+ "mz": "Mozambique",
+ "na": "Namibia",
+ "ne": "Niger",
+ "ng": "Nigeria",
+ "ni": "Nicaragua",
+ "nl": "Netherlands",
+ "no": "Norway",
+ "np": "Nepal",
+ "nz": "New Zealand",
+ "om": "Oman",
+ "pa": "Panama",
+ "pe": "Peru",
+ "pg": "Papua New Guinea",
+ "ph": "Philippines",
+ "pk": "Pakistan",
+ "pl": "Poland",
+ "pt": "Portugal",
+ "pw": "Palau",
+ "py": "Paraguay",
+ "qa": "Qatar",
+ "ro": "Romania",
+ "ru": "Russia",
+ "sa": "Saudi Arabia",
+ "sb": "Solomon Islands",
+ "sc": "Seychelles",
+ "se": "Sweden",
+ "sg": "Singapore",
+ "si": "Slovenia",
+ "sk": "Slovakia",
+ "sl": "Sierra Leone",
+ "sn": "Senegal",
+ "sr": "Suriname",
+ "st": "Sao Tome and Principe",
+ "sv": "El Salvador",
+ "sz": "Swaziland",
+ "tc": "Turks and Caicos",
+ "td": "Chad",
+ "th": "Thailand",
+ "tj": "Tajikistan",
+ "tm": "Turkmenistan",
+ "tn": "Tunisia",
+ "tr": "Turkey",
+ "tt": "Trinidad and Tobago",
+ "tw": "Taiwan",
+ "tz": "Tanzania",
+ "ua": "Ukraine",
+ "ug": "Uganda",
+ "us": "United States",
+ "uy": "Uruguay",
+ "uz": "Uzbekistan",
+ "vc": "St. Vincent and The Grenadines",
+ "ve": "Venezuela",
+ "vg": "British Virgin Islands",
+ "vn": "Vietnam",
+ "ye": "Yemen",
+ "za": "South Africa",
+ "zw": "Zimbabwe"
+ },
+ "OfficeUpdateChannel": {
+ "current": "Current Channel",
+ "deferred": "Semi-Annual Enterprise Channel",
+ "firstReleaseCurrent": "Current Channel (Preview)",
+ "firstReleaseDeferred": "Semi-Annual Enterprise Channel (Preview)",
+ "monthlyEnterprise": "Monthly Enterprise Channel",
+ "placeHolder": "Select one"
+ },
+ "AppProtection": {
+ "allAppTypes": "Target to all app types",
+ "androidPlatformLabel": "Android",
+ "appsInAndroidWorkProfile": "Apps in Android Work Profile",
+ "appsOnIntuneManagedDevices": "Apps on Intune managed devices",
+ "appsOnUnmanagedDevices": "Apps on unmanaged devices",
+ "iOSPlatformLabel": "iOS/iPadOS",
+ "iosAndroidMacPlatformLabel": "iOS, Android, Mac",
+ "iosAndroidPlatformLabel": "iOS, Android",
+ "macPlatformLabel": "Mac",
+ "notAvailable": "Not Available",
+ "windows10PlatformLabel": "Windows 10 and later",
+ "withEnrollment": "With enrollment",
+ "withoutEnrollment": "Without enrollment"
+ },
+ "InstallContextType": {
+ "device": "Device",
+ "deviceContext": "Device context",
+ "user": "User",
+ "userContext": "User context"
+ },
+ "ProactiveRemediations": {
+ "Create": {
+ "Basics": {
+ "DescriptionMultiLineTextBox": {
+ "label": "Description",
+ "placeholder": "Enter a description"
+ },
+ "NameTextBox": {
+ "label": "Name",
+ "placeholder": "Enter a name"
+ },
+ "PublisherTextBox": {
+ "label": "Publisher",
+ "placeholder": "Enter a publisher"
+ },
+ "VersionTextBox": {
+ "label": "Version"
+ },
+ "headerDescription": "Create a new custom script package from detection and remediation scripts that you’ve written."
+ },
+ "ScopeTags": {
+ "headerDescription": "Select one or more groups to assign the script package."
+ },
+ "Settings": {
+ "DetectionScriptMultiLineTextBox": {
+ "label": "Detection script",
+ "placeholder": "Input script text",
+ "requiredValidationMessage": "Please enter the detection script"
+ },
+ "EnforceScriptSignatureCheckOptionPicker": {
+ "label": "Enforce script signature check"
+ },
+ "LoggedOnCredentialsOptionPicker": {
+ "label": "Run this script using the logged-on credentials"
+ },
+ "RemediationScript": {
+ "infoBox": "This script will run in detect-only mode because there is no remediation script."
+ },
+ "RemediationScriptMultiLineTextBox": {
+ "label": "Remediation script",
+ "placeholder": "Input script text"
+ },
+ "RunIn64BitPSOptionPicker": {
+ "label": "Run script in 64-bit PowerShell"
+ },
+ "ScriptMultiLineTextBox": {
+ "base64EncodingValidationMessage": "Invalid script. One or more characters used in the script is not valid."
+ },
+ "headerDescription": "Create a custom script package from scripts you've written. By default, scripts will run on assigned devices every day.",
+ "infoBox": "This script is read-only. Some of the settings for this script might be disabled."
+ },
+ "title": "Create custom script",
+ "ScriptProperties": {
+ "GridHeaders": {
+ "interval": "Interval",
+ "time": "Date and time"
+ },
+ "Interval": {
+ "day": "Repeats every day",
+ "days": "Repeats every {0} days",
+ "hour": "Repeats every hour",
+ "hours": "Repeats every {0} hours",
+ "month": "Repeats every month",
+ "months": "Repeats every {0} months",
+ "week": "Repeats every week",
+ "weeks": "Repeats every {0} weeks"
+ },
+ "Time": {
+ "utc": "{0} (UTC)",
+ "utcWithDate": "{0} (UTC) on {1}",
+ "withDate": "{0} on {1}"
+ }
+ }
+ },
+ "Edit": {
+ "title": "Edit - {0}"
+ }
+ },
+ "EdgeAppConfig": {
+ "AllowedURLs": {
+ "title": "Allowed URLs",
+ "tooltip": "Specify the sites your users are allowed to access while in their work context. No other sites will be allowed. You may choose to configure either an allowed/blocked list, but not both. "
+ },
+ "ApplicationProxyRedirection": {
+ "header": "Application proxy",
+ "title": "Application proxy redirection",
+ "tooltip": "Enable App proxy redirection to give users access to corporate links and on-premise web apps."
+ },
+ "BlockedURLs": {
+ "title": "Blocked URLs",
+ "tooltip": "Specify the sites that are blocked for your users while in their work context. All other sites will be allowed. You may choose to configure either an allowed/blocked list, but not both. "
+ },
+ "Bookmarks": {
+ "header": "Managed bookmarks",
+ "tooltip": "Enter a list of bookmarked URLs for your users to have available when using Microsoft Edge in their work context.",
+ "uRL": "URL"
+ },
+ "HomepageURL": {
+ "header": "Managed homepage",
+ "title": "Homepage shortcut URL",
+ "tooltip": "Configure a homepage shortcut that will appear to users as the first icon beneath the search bar when they open a new tab in Microsoft Edge."
+ },
+ "PersonalContext": {
+ "label": "Redirect restricted sites to personal context",
+ "tooltip": "Configure if users should be allowed to transition to their personal context to open restricted sites."
+ }
+ },
+ "BooleanActions": {
+ "allow": "Allow",
+ "block": "Block",
+ "configured": "Configured",
+ "disable": "Disable",
+ "dontRequire": "Don't Require",
+ "enable": "Enable",
+ "hide": "Hide",
+ "limit": "Limit",
+ "notConfigured": "Not configured",
+ "require": "Require",
+ "show": "Show",
+ "yes": "Yes"
+ },
+ "ArchitectureOptions": {
+ "sixtyFourBit": "64-bit",
+ "thirtyTwoBit": "32-bit"
+ },
+ "WindowsQualityUpdateDaysUntilForcedReboot": {
+ "oneDay": "1 day",
+ "twoDays": "2 days",
+ "zeroDays": "0 days"
+ },
"SoftwareUpdates": {
"BladeTitles": {
"overview": "Overview"
@@ -10800,66 +10878,732 @@
"notScannedYet": "Not scanned yet",
"outOfDateIosDevices": "Out of Date iOS Devices"
},
- "ScheduledAction": {
- "Form": {
- "editBlockActionInfo": "One block action is required for all compliance policies.",
- "graceperiod": "Schedule (days after noncompliance)",
- "graceperiodInfo": "Specify the number of days after noncompliance after which this action should be triggered for the user's device",
- "subtitle": "Specify action parameters",
- "title": "Action parameters"
- },
- "List": {
- "gracePeriodDay": "{0} day after noncompliance",
- "gracePeriodDays": "{0} days after noncompliance",
- "gracePeriodHour": "{0} hour after noncompliance",
- "gracePeriodHours": "{0} hours after noncompliance",
- "gracePeriodMinute": "{0} minute after noncompliance",
- "gracePeriodMinutes": "{0} minutes after noncompliance",
- "immediately": "Immediately",
- "schedule": "Schedule",
- "scheduleInfoBalloon": "Days after noncompliance",
- "subtitle": "Specify the sequence of actions on noncompliant devices",
- "title": "Actions"
- },
- "Notification": {
- "additionalEmailLabel": "Others",
- "additionalRecipients": "Additional recipients (via email)",
- "additionalRecipientsBladeTitle": "Select additional recipients",
- "emailAddressPrompt": "Enter email addresses (separated by commas)",
- "invalidEmail": "Invalid email address",
- "messageTemplate": "Message template",
- "noneSelected": "None selected",
- "notSelected": "Not selected",
- "numSelected": "{0} selected",
- "selected": "Selected"
+ "ConfigurationTypes": {
+ "Table": {
+ "androidDeviceOwnerGeneral": "Device restrictions (device owner)",
+ "androidForWorkGeneral": "Device restrictions (work profile)"
+ },
+ "androidCustom": "Custom",
+ "androidDeviceOwnerGeneral": "Device restrictions",
+ "androidDeviceOwnerPkcs": "PKCS Certificate",
+ "androidDeviceOwnerScep": "SCEP Certificate",
+ "androidDeviceOwnerTrustedCertificate": "Trusted Certificate",
+ "androidDeviceOwnerVpn": "VPN",
+ "androidDeviceOwnerWiFi": "Wi-Fi",
+ "androidEmailProfile": "Email (Samsung KNOX only)",
+ "androidForWorkCustom": "Custom",
+ "androidForWorkEmailProfile": "Email",
+ "androidForWorkGeneral": "Device restrictions",
+ "androidForWorkImportedPFX": "PKCS imported certificate",
+ "androidForWorkOemConfig": "OEMConfig",
+ "androidForWorkPKCS": "PKCS certificate",
+ "androidForWorkSCEP": "SCEP certificate",
+ "androidForWorkTrustedCertificate": "Trusted certificate",
+ "androidForWorkVpn": "VPN",
+ "androidForWorkWiFi": "Wi-Fi",
+ "androidGeneral": "Device restrictions",
+ "androidImportedPFX": "PKCS imported certificate",
+ "androidPKCS": "PKCS certificate",
+ "androidSCEP": "SCEP certificate",
+ "androidTrustedCertificate": "Trusted certificate",
+ "androidVPN": "VPN",
+ "androidWiFi": "Wi-Fi",
+ "androidZebraMx": "MX profile (Zebra only)",
+ "complianceAndroid": "Android compliance policy",
+ "complianceAndroidDeviceOwner": "Fully managed, dedicated, and corporate-owned work profile",
+ "complianceAndroidEnterprise": "Personally-owned work profile",
+ "complianceAndroidForWork": "Android for Work compliance policy",
+ "complianceIos": "iOS compliance policy",
+ "complianceMac": "Mac compliance policy",
+ "complianceWindows10": "Windows 10 and later compliance policy",
+ "complianceWindows10Mobile": "Windows 10 mobile compliance policy",
+ "complianceWindows8": "Windows 8 compliance policy",
+ "complianceWindowsPhone": "Windows Phone compliance policy",
+ "exchangeActiveSync": "Exchange Active Sync",
+ "iosCustom": "Custom",
+ "iosDerivedCredentialAuthenticationConfiguration": "Derived PIV credential",
+ "iosDeviceFeatures": "Device features",
+ "iosEDU": "Education",
+ "iosEducation": "Education",
+ "iosEmailProfile": "Email",
+ "iosGeneral": "Device restrictions",
+ "iosImportedPFX": "PKCS imported certificate",
+ "iosPKCS": "PKCS certificate",
+ "iosPresets": "Presets",
+ "iosSCEP": "SCEP certificate",
+ "iosTrustedCertificate": "Trusted certificate",
+ "iosVPN": "VPN",
+ "iosVPNZscaler": "VPN",
+ "iosWiFi": "Wi-Fi",
+ "macCustom": "Custom",
+ "macDeviceFeatures": "Device features",
+ "macEndpointProtection": "Endpoint protection",
+ "macExtensions": "Extensions",
+ "macGeneral": "Device restrictions",
+ "macImportedPFX": "PKCS imported certificate",
+ "macSCEP": "SCEP certificate",
+ "macTrustedCertificate": "Trusted certificate",
+ "macVPN": "VPN",
+ "macWiFi": "Wi-Fi",
+ "settingsCatalog": "Settings catalog (preview)",
+ "unsupported": "Unsupported",
+ "windows10AdministrativeTemplate": "Administrative Templates (Preview)",
+ "windows10Atp": "Microsoft Defender for Endpoint (desktop devices running Windows 10 or later)",
+ "windows10Custom": "Custom",
+ "windows10DesktopSoftwareUpdate": "Software Updates",
+ "windows10DeviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
+ "windows10EmailProfile": "Email",
+ "windows10EndpointProtection": "Endpoint protection",
+ "windows10EnterpriseDataProtection": "Windows Information Protection",
+ "windows10General": "Device restrictions",
+ "windows10ImportedPFX": "PKCS imported certificate",
+ "windows10Kiosk": "Kiosk",
+ "windows10NetworkBoundary": "Network boundary",
+ "windows10PKCS": "PKCS certificate",
+ "windows10PolicyOverride": "Override Group Policy",
+ "windows10SCEP": "SCEP certificate",
+ "windows10SecureAssessmentProfile": "Education profile",
+ "windows10SharedPC": "Shared multi-user device",
+ "windows10TeamGeneral": "Device restrictions (Windows 10 Team)",
+ "windows10TrustedCertificate": "Trusted certificate",
+ "windows10VPN": "VPN",
+ "windows10WiFi": "Wi-Fi",
+ "windows10WiFiCustom": "Wi-Fi custom",
+ "windows8General": "Device restrictions",
+ "windows8SCEP": "SCEP certificate",
+ "windows8TrustedCertificate": "Trusted certificate",
+ "windows8VPN": "VPN",
+ "windows8WiFi": "Wi-Fi import",
+ "windowsDeliveryOptimization": "Delivery Optimization",
+ "windowsDomainJoin": "Domain Join",
+ "windowsEditionUpgrade": "Edition upgrade and mode switch",
+ "windowsIdentityProtection": "Identity protection",
+ "windowsPhoneCustom": "Custom",
+ "windowsPhoneEmailProfile": "Email",
+ "windowsPhoneGeneral": "Device restrictions",
+ "windowsPhoneImportedPFX": "PKCS imported certificate",
+ "windowsPhoneSCEP": "SCEP certificate",
+ "windowsPhoneTrustedCertificate": "Trusted certificate",
+ "windowsPhoneVPN": "VPN",
+ "IosUpdate": "iOS Update policy"
+ },
+ "OfficeSuiteAppsTab": {
+ "acceptLicenseOnBehalfOfUsersLabel": "Accept the Microsoft Software License Terms on behalf of users",
+ "appSuiteConfigurationLabel": "App suite configuration",
+ "appSuiteInformationLabel": "App suite information",
+ "appsToBeInstalledLabel": "Apps to be installed as part of the suite",
+ "architectureLabel": "Architecture",
+ "architectureTooltip": "Defines whether the 32-bit or 64-bit edition of Microsoft 365 Apps is installed on devices.",
+ "configurationDesignerLabel": "Configuration designer",
+ "configurationFileLabel": "Configuration file",
+ "configurationSettingsFormatLabel": "Configuration settings format",
+ "configureAppSuiteLabel": "Configure app suite",
+ "configuredLabel": "Configured",
+ "currentVersionLabel": "Current version",
+ "currentVersionTooltip": "This is the current version of Office that’s configured in this suite. This value will be updated when a newer version is configured and saved.",
+ "enableMicrosoftSearchAsDefaultTooltip": "Installs a background service that helps determine whether a Microsoft Search in Bing extension for Google Chrome is installed on the device.",
+ "enterXmlDataLabel": "Enter XML data",
+ "languagesLabel": "Languages",
+ "languagesTooltip": "By default, Intune will install Office with the default language of the operating system. Choose any additional languages that you want to install.",
+ "learnMoreText": "Learn more",
+ "newUpdateChannelTooltip": "Defines how often the app is updated with new features.",
+ "noCurrentVersionText": "No current version",
+ "noLanguagesSelectedLabel": "No languages selected",
+ "notConfiguredLabel": "Not configured",
+ "propertiesLabel": "Properties",
+ "removeOtherVersionsLabel": "Remove other versions",
+ "removeOtherVersionsTooltip": "Select Yes to remove other versions of Office (MSI) from user devices.",
+ "selectOfficeAppsLabel": "Select Office apps",
+ "selectOfficeAppsTooltip": "Select the Office 365 apps that you want to install as part of the suite.",
+ "selectOtherOfficeAppsLabel": "Select other Office apps (license required)",
+ "selectOtherOfficeAppsTooltip": "If you own licenses for these additional Office apps you can also assign them with Intune.",
+ "specificVersionLabel": "Specific version",
+ "updateChannelLabel": "Update channel",
+ "updateChannelTooltip": "Defines how often the app is updated with new features.
\nMonthly - Provide users with the newest features of Office as soon as they're available.
\nMonthly Enterprise Channel - Provide users with the newest features of Office once a month, on the second Tuesday of the month.
\nMonthly (Targeted) – Provide an early look at the upcoming Monthly Channel release. It is a supported update channel, and usually is available at least one week ahead of time when it's a Monthly Channel release that contains new features.
\nSemi-Annual - Provide users with new features of Office only a few times a year.
\nSemi-Annual (Targeted) - Provide pilot users and application compatibility testers the opportunity to test the next Semi-Annual.",
+ "useMicrosoftSearchAsDefault": "Install background service for Microsoft Search in Bing",
+ "useSharedComputerActivationLabel": "Use shared computer activation",
+ "useSharedComputerActivationTooltip": "Shared computer activation lets you deploy Microsoft 365 Apps to computers that are used by multiple users. Normally, users can only install and activate Microsoft 365 Apps on a limited number of devices, such as 5 PCs. Using Microsoft 365 Apps with shared computer activation doesn't count against that limit.",
+ "versionToInstallLabel": "Version to install",
+ "versionToInstallTooltip": "Select the version of Office that should be installed.",
+ "xLanguagesSelectedLabel": "{0} language(s) selected",
+ "xmlConfigurationLabel": "XML Configuration"
+ },
+ "EnrollmentRestrictions": {
+ "DeletePayloadLink": {
+ "content": "{0} is included in one or more policy sets. If you delete {0}, you'll no longer be able to assign it via these policy sets. Delete anyway?",
+ "contentWithError": "{0} might be included in one or more policy sets. If you delete {0}, you'll no longer be able to assign it via these policy sets. Delete anyway?",
+ "header": "Are you sure you want to delete this restriction?"
+ },
+ "DeviceLimit": {
+ "description": "Specify the maximum number of devices a user can enroll.",
+ "header": "Device limit restrictions",
+ "info": "Define how many devices each user can enroll."
+ },
+ "DeviceType": {
+ "VersionValidation": {
+ "aOSP": "Must be 1.0 or greater.",
+ "android": "Enter a valid version number. Examples: 5.0, 5.5.1, 6.0.0.1",
+ "androidForWork": "Enter a valid version number. Examples: 5.0, 5.1.1",
+ "iOS": "Enter a valid version number. Examples: 9.0, 10.0, 9.0.2",
+ "mac": "Enter a valid version number. Examples: 10, 10.10, 10.10.1",
+ "min": "Minimum cannot be lower than {0}",
+ "minMax": "Minimum version cannot be greater than maximum version.",
+ "windows": "Must be 10.0 or greater. Leave blank to allow 8.1 devices",
+ "windowsMobile": "Must be 10.0 or greater. Leave blank to allow 8.1 devices"
+ },
+ "allPlatformsBlocked": "All device platforms are blocked. Allow platform enrollment to enable platform configuration.",
+ "blockManufacturerPlaceHolder": "Manufacturer name",
+ "blockManufacturersHeader": "Blocked manufacturers",
+ "cannotRestrict": "Restriction not supported",
+ "configurationDescription": "Specify the platform configuration restrictions that must be met for a device to enroll. Use compliance policies to restrict devices after enrollment. Define versions as major.minor.build. Version restrictions only apply to devices enrolled with the Company Portal. Intune classifies devices as personally-owned by default. Additional action is required to classify devices as corporate-owned.",
+ "configurationDescriptionLabel": "Learn more about setting enrollment restrictions",
+ "configurations": "Configure platforms",
+ "deviceManufacturer": "Device manufacturer",
+ "header": "Device type restrictions",
+ "info": "Define which platforms, versions, and management types can enroll.",
+ "manufacturer": "Manufacturer",
+ "max": "Max",
+ "maxVersion": "Maximum version",
+ "min": "Min",
+ "minVersion": "Minimum version",
+ "newPlatforms": "You have allowed new platforms. Consider updating Platform Configurations.",
+ "personal": "Personally owned",
+ "platform": "Platform",
+ "platformDescription": "You can allow enrollment of the following platforms. Only block platforms you will not support. Allowed platforms can be configured with additional enrollment restrictions.",
+ "platformSettings": "Platform settings",
+ "platforms": "Select platforms",
+ "platformsSelected": "{0} platforms selected",
+ "type": "Type",
+ "versions": "versions",
+ "versionsRange": "Allow min/max range:",
+ "windowsTooltip": "Restricts enrollment through Mobile Device Management. Does not restrict PC agent installation. Only Windows 10 and Windows 11 versions are supported. Leave versions blank to allow Windows 8.1."
+ },
+ "Priority": {
+ "saved": "Restriction Priorities were successfully saved."
+ },
+ "Row": {
+ "announce": "Priority: {0}, Name: {1}, Assigned: {2}"
+ },
+ "Table": {
+ "deployed": "Deployed",
+ "name": "Name",
+ "priority": "Priority"
},
- "block": "Mark device noncompliant",
- "lockDevice": "Lock device (local action)",
- "lockDeviceWithPasscode": "Lock device (local action)",
- "noAction": "No action",
- "noActionRow": "No actions, select 'Add' to add an action",
- "pushNotification": "Send push notification to end user",
- "remoteLock": "Remotely lock the noncompliant device",
- "removeSourceAccessProfile": "Remove source access profile",
- "retire": "Retire the noncompliant device",
- "wipe": "Wipe",
- "emailNotification": "Send email to end user"
- },
- "WIPPinRequirements": {
- "WipLowercaseCharacterPinRequirements": {
- "allow": "Allow the use of lowercase letters in PIN",
- "notAllow": "Do not allow the use of lowercase letters in PIN",
- "requireAtLeastOne": "Require the use of at least one lowercase letter in PIN"
- },
- "WipSpecialCharacterPinRequirements": {
- "allow": "Allow the use of special characters in PIN",
- "notAllow": "Do not allow the use of special characters in PIN",
- "requireAtLeastOne": "Require the use of at least one special character in PIN"
- },
- "WipUppercaseCharacterPinRequirements": {
- "allow": "Allow the use of uppercase letters in PIN",
- "notAllow": "Do not allow the use of uppercase letters in PIN",
- "requireAtLeastOne": "Require the use of at least one uppercase letter in PIN"
- }
- }
+ "Type": {
+ "limit": "Device limit restriction",
+ "type": "Device type restriction"
+ },
+ "allUsers": "All Users",
+ "androidRestrictions": "Android restrictions",
+ "create": "Create restriction",
+ "defaultLimitDescription": "This is the default Device Limit Restriction applied with lowest priority to all users regardless of group membership.",
+ "defaultTypeDescription": "This is the default Device Type Restriction applied with lowest priority to all users regardless of group membership.",
+ "defaultWhfbDescription": "This is the default Windows Hello for Business configuration applied with the lowest priority to all users regardless of group membership.",
+ "deleteMessage": "Affected users will be restricted by the next highest priority restriction assigned or the default restriction if no other restriction is assigned.",
+ "deleteTitle": "Are you sure you want to delete {0} restriction?",
+ "descriptionHint": "Short paragraph describing the business use or restriction level characterized by the restriction's settings.",
+ "edit": "Edit restriction",
+ "info": "A device must comply with the highest priority enrollment restrictions assigned to its user. You can drag a device restriction to change its priority. Default restrictions are lowest priority for all users and govern userless enrollments. Default restrictions may be edited, but not deleted.",
+ "iosRestrictions": "iOS restrictions",
+ "mDM": "MDM",
+ "macRestrictions": "MacOS restrictions",
+ "maxVersion": "Max Version",
+ "minVersion": "Min Version",
+ "nameHint": "This will be the primary attribute visible for identifying the restriction set.",
+ "noAssignmentsStatusBar": "Assign restriction to at least one group. Click Properties.",
+ "notFound": "Restriction not found. It may have already been deleted.",
+ "personallyOwned": "Personally owned devices",
+ "restriction": "Restriction",
+ "restrictionLowerCase": "restriction",
+ "restrictionType": "Restriction type",
+ "selectType": "Select restriction type",
+ "selectValidation": "Please select a platform",
+ "typeHint": "Choose Device Type Restriction to restrict device properties. Choose Device Limit Restriction to restrict number of devices per-user.",
+ "typeRequired": "Restriction type is required.",
+ "winPhoneRestrictions": "Windows Phone restrictions",
+ "windowsRestrictions": "Windows restrictions"
+ },
+ "Titles": {
+ "ChromeOs": {
+ "devices": "Chrome OS devices"
+ },
+ "ManagedDesktop": {
+ "adminContacts": "Admin contacts",
+ "appPackaging": "App packaging",
+ "devices": "Devices",
+ "feedback": "Feedback",
+ "gettingStarted": "Getting started",
+ "messages": "Messages",
+ "onlineResources": "Online resources",
+ "serviceRequests": "Service requests",
+ "settings": "Settings",
+ "tenantEnrollment": "Tenant enrollment"
+ },
+ "actions": "Actions for Non-Compliance",
+ "advancedExchangeSettings": "Exchange online settings",
+ "advancedThreatProtection": "Microsoft Defender for Endpoint",
+ "allApps": "All apps",
+ "allDevices": "All devices",
+ "androidFotaDeployments": "Android FOTA deployments",
+ "appBundles": "App Bundles",
+ "appCategories": "App categories",
+ "appConfigPolicies": "App configuration policies",
+ "appInstallStatus": "App install status",
+ "appLicences": "App licenses",
+ "appProtectionPolicies": "App protection policies",
+ "appProtectionStatus": "App protection status",
+ "appSelectiveWipe": "App selective wipe",
+ "appleVppTokens": "Apple VPP Tokens",
+ "apps": "Apps",
+ "assign": "Assignments",
+ "assignedPermissions": "Assigned permissions",
+ "assignedRoles": "Assigned roles",
+ "autopilotDeploymentReport": "Autopilot deployments (preview)",
+ "brandingAndCustomization": "Customization",
+ "cartProfiles": "Cart profiles",
+ "certificateConnectors": "Certificate connectors",
+ "chromeEnterprise": "Chrome Enterprise",
+ "compliancePolicies": "Compliance policies",
+ "complianceScriptManagement": "Scripts",
+ "complianceScriptManagementPreview": "Scripts (Preview)",
+ "complianceSettings": "Compliance policy settings",
+ "conditionStatements": "Condition statements",
+ "conditions": "Locations",
+ "configMgr": "Microsoft Endpoint Configuration Manager",
+ "configurationProfiles": "Configuration profiles",
+ "configurationProfilesPreview": "Configuration profiles (preview)",
+ "connectorsAndTokens": "Connectors and tokens",
+ "corporateDeviceIdentifiers": "Corporate device identifiers",
+ "customAttributes": "Custom attributes",
+ "customNotifications": "Custom notifications",
+ "deploymentSettings": "Deployment settings",
+ "derivedCredentials": "Derived Credentials",
+ "deviceActions": "Device actions",
+ "deviceCategories": "Device categories",
+ "deviceCleanUp": "Device clean-up rules",
+ "deviceEnrollmentManagers": "Device enrollment managers",
+ "deviceExecutionStatus": "Device status",
+ "deviceLimitEnrollmentRestrictions": "Enrollment device limit restrictions",
+ "deviceTypeEnrollmentRestrictions": "Enrollment device platform restrictions",
+ "devices": "Devices",
+ "discoveredApps": "Discovered apps",
+ "embeddedSIM": "eSIM cellular profiles (Preview)",
+ "enrollDevices": "Enroll devices",
+ "enrollmentFailures": "Enrollment failures",
+ "enrollmentNotifications": "Enrollment notifications (Preview)",
+ "enrollmentRestrictions": "Enrollment restrictions",
+ "exchangeActiveSync": "Exchange ActiveSync",
+ "exchangeServiceConnectors": "Exchange service connectors",
+ "failuresForFeatureUpdates": "Feature update failures (Preview)",
+ "failuresForQualityUpdates": "Windows Expedited update failures (Preview)",
+ "featureFlighting": "Feature flighting",
+ "featureUpdateDeployments": "Feature updates for Windows 10 and later (Preview)",
+ "flighting": "Flighting",
+ "fotaUpdate": "Firmware over-the-air update",
+ "groupPolicy": "Administrative Templates",
+ "groupPolicyAnalytics": "Group policy analytics",
+ "helpSupport": "Help and support",
+ "helpSupportReplacement": "Help and support ({0})",
+ "iOSAppProvisioning": "iOS app provisioning profiles",
+ "incompleteUserEnrollments": "Incomplete user enrollments",
+ "intuneRemoteAssistance": "Remote help (preview)",
+ "iosUpdates": "Update policies for iOS/iPadOS",
+ "legacyPcManagement": "Legacy PC management",
+ "macOSSoftwareUpdate": "Update policies for macOS",
+ "macOSSoftwareUpdateAccountSummaries": "Installation status for macOS devices",
+ "macOSSoftwareUpdateCategorySummaries": "Software updates summary",
+ "macOSSoftwareUpdateStateSummaries": "updates",
+ "managedGooglePlay": "Managed Google Play",
+ "msfb": "Microsoft Store for Business",
+ "myPermissions": "My permissions",
+ "notifications": "Notifications",
+ "officeApps": "Office apps",
+ "officeProPlusPolicies": "Policies for Office apps",
+ "onPremise": "On Premise",
+ "onPremisesConnector": "Exchange ActiveSync on-premises connector",
+ "onPremisesDeviceAccess": "Exchange ActiveSync devices",
+ "onPremisesManageAccess": "Exchange on-premises access",
+ "outOfDateIosDevices": "Installation failures for iOS devices",
+ "overview": "Overview",
+ "partnerDeviceManagement": "Partner device management",
+ "perUpdateRingDeploymentState": "Per update ring deployment state",
+ "permissions": "Permissions",
+ "platformApps": "{0} apps",
+ "platformDevices": "{0} devices",
+ "platformEnrollment": "{0} enrollment",
+ "policies": "Policies",
+ "previewMDMDevices": "All managed devices (Preview)",
+ "profiles": "Profiles",
+ "properties": "Properties",
+ "reports": "Reports",
+ "retireNoncompliantDevices": "Retire noncompliant devices",
+ "retireNoncompliantDevicesPreview": "Retire noncompliant devices (preview)",
+ "role": "Role",
+ "scriptManagement": "Scripts",
+ "securityBaselines": "Security baselines",
+ "serviceToServiceConnector": "Exchange online connector",
+ "shellScripts": "Shell scripts",
+ "teamViewerConnector": "TeamViewer connector",
+ "telecomeExpenseManagement": "Telecom expense management",
+ "tenantAdmin": "Tenant admin",
+ "tenantAdministration": "Tenant administration",
+ "termsAndConditions": "Terms and conditions",
+ "titles": "Titles",
+ "troubleshootSupport": "Troubleshooting + support",
+ "user": "User",
+ "userExecutionStatus": "User status",
+ "warranty": "Warranty vendors",
+ "wdacSupplementalPolicies": "S mode supplemental policies",
+ "windows10DriverUpdate": "Driver updates for Windows 10 and later (Preview)",
+ "windows10QualityUpdate": "Quality updates for Windows 10 and later (Preview)",
+ "windows10UpdateRings": "Update rings for Windows 10 and later",
+ "windows10XPolicyFailures": "Windows 10X policy failures",
+ "windowsEnterpriseCertificate": "Windows enterprise certificate",
+ "windowsManagement": "PowerShell scripts",
+ "windowsSideLoadingKeys": "Windows side loading keys",
+ "windowsSymantecCertificate": "Windows DigiCert certificate",
+ "windowsThreatReport": "Threat agent status"
+ },
+ "ScopeTypes": {
+ "allDevices": "All Devices",
+ "allUsers": "All Users",
+ "allUsersAndDevices": "All Users & All Devices",
+ "selectedGroups": "Selected Groups"
+ },
+ "OfficeApplicationType": {
+ "access": "Access",
+ "bing": "Microsoft Search as default",
+ "excel": "Excel",
+ "groove": "OneDrive (Groove)",
+ "lync": "Skype for Business",
+ "oneDrive": "OneDrive Desktop",
+ "oneNote": "OneNote",
+ "outlook": "Outlook",
+ "powerPoint": "PowerPoint",
+ "publisher": "Publisher",
+ "teams": "Teams",
+ "word": "Word"
+ },
+ "ApplicableDeviceType": {
+ "iPad": "iPad",
+ "iPhoneAndIPod": "iPhone and iPod"
+ },
+ "Assignment": {
+ "AutoUpdateMode": {
+ "default": "Default",
+ "header": "Update Priority",
+ "postponed": "Postponed",
+ "priority": "High Priority"
+ },
+ "DeliveryOptimizationPriority": {
+ "backgroundNormal": "Background",
+ "displayText": "Content download in {0}",
+ "foreground": "Foreground",
+ "header": "Delivery optimization priority"
+ },
+ "RestartGracePeriod": {
+ "allowSnooze": "Allow user to snooze the restart notification",
+ "countdownDialog": "Select when to display the restart countdown dialog box before the restart occurs (minutes)",
+ "durationInMinutes": "Device restart grace period (minutes)",
+ "snoozeDurationInMinutes": "Select the snooze duration (minutes)"
+ },
+ "SoftwareInstallationTime": {
+ "TimeZone": {
+ "label": "Time zone",
+ "local": "Device time zone",
+ "utc": "UTC"
+ },
+ "dateAndTimeLabel": "Date and time",
+ "deadlineTimeColumnLabel": "Installation deadline",
+ "deadlineTimeDatePickerErrorMessage": "Selected date must be after the available date",
+ "deadlineTimeLabel": "App installation deadline",
+ "defaultTime": "As soon as possible",
+ "infoText": "This application will be available as soon as it has been deployed, unless you specify an availability time below. If this is a required application, you may specify the installation deadline.",
+ "specificTime": "A specific date and time",
+ "startTimeColumnLabel": "Availability",
+ "startTimeDatePickerErrorMessage": "Selected date must be before the deadline date",
+ "startTimeLabel": "App availability"
+ },
+ "restartGracePeriodHeader": "Restart grace period",
+ "restartGracePeriodLabel": "Device restart grace period",
+ "summaryTitle": "End user experience"
+ },
+ "EnrollmentType": {
+ "devicesWithEnrollment": "Managed devices",
+ "devicesWithoutEnrollment": "Managed apps"
+ },
+ "PolicySet": {
+ "appManagement": "Application management",
+ "assignments": "Assignments",
+ "basics": "Basics",
+ "deviceEnrollment": "Device enrollment",
+ "deviceManagement": "Device management",
+ "scopeTags": "Scope tags",
+ "appConfigurationTitle": "App configuration policies",
+ "appProtectionTitle": "App protection policies",
+ "appTitle": "Apps",
+ "iOSAppProvisioningTitle": "iOS app provisioning profiles",
+ "deviceLimitRestrictionTitle": "Device limit restrictions",
+ "deviceTypeRestrictionTitle": "Device type restrictions",
+ "enrollmentStatusSettingTitle": "Enrollment status pages",
+ "windowsAutopilotDeploymentProfileTitle": "Windows autopilot deployment profiles",
+ "deviceComplianceTitle": "Device compliance policies",
+ "deviceConfigurationTitle": "Device configuration profiles",
+ "powershellScriptTitle": "Powershell scripts"
+ },
+ "AzureIAMCommon": {
+ "CountryNames": {
+ "countryNameNR": "Nauru",
+ "countryNameBH": "Bahrain",
+ "countryNameZA": "South Africa",
+ "countryNameJO": "Jordan",
+ "countryNameSD": "Sudan",
+ "countryNameNU": "Niue",
+ "countryNameCZ": "Czech Republic",
+ "countryNameLT": "Lithuania",
+ "countryNameTK": "Tokelau",
+ "countryNameEC": "Ecuador",
+ "countryNameVU": "Vanuatu",
+ "countryNameUG": "Uganda",
+ "countryNameLI": "Liechtenstein",
+ "countryNameHK": "Hong Kong SAR",
+ "countryNameGH": "Ghana",
+ "countryNameSA": "Saudi Arabia",
+ "countryNamePG": "Papua New Guinea",
+ "countryNameBW": "Botswana",
+ "countryNameDG": "Diego Garcia",
+ "countryNameIN": "India",
+ "countryNameHN": "Honduras",
+ "countryNameRO": "Romania",
+ "countryNameKZ": "Kazakhstan",
+ "countryNameLC": "Saint Lucia",
+ "countryNameGE": "Georgia",
+ "countryNameTT": "Trinidad and Tobago",
+ "countryNameMP": "Northern Mariana Islands",
+ "countryNameMV": "Maldives",
+ "countryNameFI": "Finland",
+ "countryNameNO": "Norway",
+ "countryNameEE": "Estonia",
+ "countryNameVE": "Venezuela",
+ "countryNameUZ": "Uzbekistan",
+ "countryNameME": "Montenegro",
+ "countryNameTJ": "Tajikistan",
+ "countryNameAW": "Aruba",
+ "countryNameFR": "France",
+ "countryNameOM": "Oman",
+ "countryNameAO": "Angola",
+ "countryNameIT": "Italy",
+ "countryNameAZ": "Azerbaijan",
+ "countryNameKG": "Kyrgyzstan",
+ "countryNameWF": "Wallis and Futuna",
+ "countryNameTL": "Timor-Leste",
+ "countryNameFK": "Falkland Islands (Islas Malvinas)",
+ "countryNameGY": "Guyana",
+ "countryNameSS": "South Sudan",
+ "countryNameMM": "Myanmar",
+ "countryNameHT": "Haiti",
+ "countryNameSY": "Syria",
+ "countryNameMD": "Moldova",
+ "countryNameVC": "Saint Vincent and the Grenadines",
+ "countryNameID": "Indonesia",
+ "countryNameRE": "Reunion",
+ "countryNameER": "Eritrea",
+ "countryNameMK": "North Macedonia",
+ "countryNameTG": "Togo",
+ "countryNamePF": "French Polynesia",
+ "countryNameKY": "Cayman Islands",
+ "countryNameIO": "British Indian Ocean Territory",
+ "countryNameRU": "Russia",
+ "countryNameMA": "Morocco",
+ "countryNameAU": "Australia",
+ "countryNameBO": "Bolivia",
+ "countryNameVA": "Holy See (Vatican City State)",
+ "countryNameVG": "Virgin Islands, British",
+ "countryNameFM": "Micronesia",
+ "countryNameAQ": "Antarctica",
+ "countryNameZM": "Zambia",
+ "countryNameBR": "Brazil",
+ "countryNameIS": "Iceland",
+ "countryNamePE": "Peru",
+ "countryNameBG": "Bulgaria",
+ "countryNamePR": "Puerto Rico",
+ "countryNameGI": "Gibraltar",
+ "countryNameBS": "Bahamas, The",
+ "countryNameJE": "Jersey",
+ "countryNameMO": "Macao SAR",
+ "countryNameRW": "Rwanda",
+ "countryNameAS": "American Samoa",
+ "countryNameBQ": "Bonaire, Sint Eustatius, and Saba",
+ "countryNameMF": "Saint Martin",
+ "countryNameTM": "Turkmenistan",
+ "countryNameML": "Mali",
+ "countryNameTO": "Tonga",
+ "countryNameNC": "New Caledonia",
+ "countryNameAC": "Ascension Island",
+ "countryNameBN": "Brunei",
+ "countryNameBD": "Bangladesh",
+ "countryNameMW": "Malawi",
+ "countryNameGM": "Gambia, The",
+ "countryNameGA": "Gabon",
+ "countryNameCA": "Canada",
+ "countryNameSH": "Saint Helena",
+ "countryNameYT": "Mayotte",
+ "countryNameMN": "Mongolia",
+ "countryNamePA": "Panama",
+ "countryNameCM": "Cameroon",
+ "countryNameNE": "Niger",
+ "countryNameCW": "Curaçao",
+ "countryNameJP": "Japan",
+ "countryNameCY": "Cyprus",
+ "countryNameCD": "Democratic Republic of Congo",
+ "countryNameTN": "Tunisia",
+ "countryNameTR": "Turkey",
+ "countryNameWS": "Samoa",
+ "countryNameSE": "Sweden",
+ "countryNameXK": "Kosovo",
+ "countryNameKH": "Cambodia",
+ "countryNamePL": "Poland",
+ "countryNameDZ": "Algeria",
+ "countryNameLR": "Liberia",
+ "countryNameSO": "Somalia",
+ "countryNameDM": "Dominica",
+ "countryNameEG": "Egypt",
+ "countryNameGF": "French Guiana",
+ "countryNameNZ": "New Zealand",
+ "countryNamePS": "Palestinian Authority",
+ "countryNameIL": "Israel",
+ "countryNameSL": "Sierra Leone",
+ "countryNameGR": "Greece",
+ "countryNameNG": "Nigeria",
+ "countryNameMR": "Mauritania",
+ "countryNameVI": "Virgin Islands, U.S.",
+ "countryNameGQ": "Equatorial Guinea",
+ "countryNameMX": "Mexico",
+ "countryNameDJ": "Djibouti",
+ "countryNameGN": "Guinea",
+ "countryNameCN": "China",
+ "countryNameMZ": "Mozambique",
+ "countryNameBV": "Bouvet Island",
+ "countryNameNF": "Norfolk Island",
+ "countryNameTZ": "Tanzania",
+ "countryNameAI": "Anguilla",
+ "countryNameGS": "South Georgia and the South Sandwich Islands",
+ "countryNameRS": "Serbia",
+ "countryNameCC": "Cocos (Keeling) Islands",
+ "countryNameNA": "Namibia",
+ "countryNameDE": "Germany",
+ "countryNameCG": "Republic of Congo",
+ "countryNameKW": "Kuwait",
+ "countryNameMH": "Marshall Islands",
+ "countryNameVN": "Vietnam",
+ "countryNameBY": "Belarus",
+ "countryNameMY": "Malaysia",
+ "countryNameST": "São Tomé and Príncipe",
+ "countryNameLS": "Lesotho",
+ "countryNameBI": "Burundi",
+ "countryNameTD": "Chad",
+ "countryNameCX": "Christmas Island",
+ "countryNameIR": "Iran",
+ "countryNameTV": "Tuvalu",
+ "countryNameGW": "Guinea-Bissau",
+ "countryNameUA": "Ukraine",
+ "countryNameCU": "Cuba",
+ "countryNameCO": "Colombia",
+ "countryNameNI": "Nicaragua",
+ "countryNameHR": "Croatia",
+ "countryNameSC": "Seychelles",
+ "countryNameNL": "Netherlands",
+ "countryNameUM": "US Minor Outlying Islands",
+ "countryNameIM": "Isle of Man",
+ "countryNameFJ": "Fiji",
+ "countryNameSR": "Suriname",
+ "countryNameGT": "Guatemala",
+ "countryNameSM": "San Marino",
+ "countryNameLA": "Laos",
+ "countryNameGB": "United Kingdom",
+ "countryNameBB": "Barbados",
+ "countryNameSI": "Slovenia",
+ "countryNameAM": "Armenia",
+ "countryNameAR": "Argentina",
+ "countryNamePM": "Saint Pierre and Miquelon",
+ "countryNameTF": "French Southern and Antarctic Lands",
+ "countryNameDO": "Dominican Republic",
+ "countryNameZW": "Zimbabwe",
+ "countryNameMQ": "Martinique",
+ "countryNamePT": "Portugal",
+ "countryNameCF": "Central African Republic",
+ "countryNameBE": "Belgium",
+ "countryNameKM": "Comoros",
+ "countryNameLY": "Libya",
+ "countryNameIE": "Ireland",
+ "countryNameKP": "North Korea",
+ "countryNameGG": "Guernsey",
+ "countryNameSK": "Slovakia",
+ "countryNameTC": "Turks and Caicos Islands",
+ "countryNameNP": "Nepal",
+ "countryNameBF": "Burkina Faso",
+ "countryNameYE": "Yemen",
+ "countryNameBA": "Bosnia and Herzegovina",
+ "countryNameGP": "Guadeloupe",
+ "countryNameMS": "Montserrat",
+ "countryNameCL": "Chile",
+ "countryNameIQ": "Iraq",
+ "countryNameSJ": "Svalbard and Jan Mayen Island",
+ "countryNameAX": "Åland Islands",
+ "countryNameKE": "Kenya",
+ "countryNameGU": "Guam",
+ "countryNameBM": "Bermuda",
+ "countryNameFO": "Faroe Islands",
+ "countryNameBL": "Saint Barthélemy",
+ "countryNameLB": "Lebanon",
+ "countryNameJM": "Jamaica",
+ "countryNameAF": "Afghanistan",
+ "countryNameES": "Spain",
+ "countryNameMC": "Monaco",
+ "countryNameSG": "Singapore",
+ "countryNameAL": "Albania",
+ "countryNameSN": "Senegal",
+ "countryNameSZ": "Swaziland",
+ "countryNameBZ": "Belize",
+ "countryNameCI": "Côte d’Ivoire",
+ "countryNameTW": "Taiwan",
+ "countryNameUY": "Uruguay",
+ "countryNameCK": "Cook Islands",
+ "countryNameTH": "Thailand",
+ "countryNameHM": "Heard Island and McDonald Islands",
+ "countryNameGD": "Grenada",
+ "countryNameUS": "United States",
+ "countryNameAT": "Austria",
+ "countryNameKR": "Korea, Republic of",
+ "countryNamePK": "Pakistan",
+ "countryNameDK": "Denmark",
+ "countryNameSV": "El Salvador",
+ "countryNamePW": "Palau",
+ "countryNameET": "Ethiopia",
+ "countryNameMG": "Madagascar",
+ "countryNameCR": "Costa Rica",
+ "countryNameLU": "Luxembourg",
+ "countryNameQA": "Qatar",
+ "countryNameBT": "Bhutan",
+ "countryNameSB": "Solomon Islands",
+ "countryNameAE": "United Arab Emirates",
+ "countryNameAD": "Andorra",
+ "countryNameCV": "Cabo Verde",
+ "countryNameAG": "Antigua and Barbuda",
+ "countryNameMU": "Mauritius",
+ "countryNameHU": "Hungary",
+ "countryNameSX": "Sint Maarten",
+ "countryNameCH": "Switzerland",
+ "countryNamePN": "Pitcairn Islands",
+ "countryNameGL": "Greenland",
+ "countryNamePH": "Philippines",
+ "countryNameMT": "Malta",
+ "countryNameKN": "Saint Kitts and Nevis",
+ "countryNameLK": "Sri Lanka",
+ "countryNameKI": "Kiribati",
+ "countryNameBJ": "Benin",
+ "countryNameLV": "Latvia",
+ "countryNamePY": "Paraguay"
+ }
+ }
}
diff --git a/Documentation/Strings-zh-hans.json b/Documentation/Strings-zh-hans.json
index 940b254..ff5d56d 100644
--- a/Documentation/Strings-zh-hans.json
+++ b/Documentation/Strings-zh-hans.json
@@ -1,1842 +1,4 @@
{
- "InstallContextType": {
- "device": "设备",
- "deviceContext": "设备上下文",
- "user": "用户",
- "userContext": "用户上下文"
- },
- "WipPolicySettings": {
- "addNetworkBoundary": "添加网络边界",
- "addNetworkBoundaryButton": "添加网络边界...",
- "allowWindowsSearch": "允许 Windows Search 搜索加密的公司数据和应用商店应用",
- "authoritativeIpRanges": "企业 IP 范围列表具有权威性(不进行自动检测)",
- "authoritativeProxyServers": "企业代理服务器列表具有权威性(不进行自动检测)",
- "boundaryType": "边界类型",
- "cloudResources": "云资源",
- "corporateIdentity": "公司标识",
- "dataRecoveryCert": "上传数据恢复代理(DRA)证书以允许恢复加密数据",
- "editNetworkBoundary": "编辑网络边界",
- "enrollmentState": "注册状态",
- "iPv4Ranges": "IPv4 范围",
- "iPv6Ranges": "IPv6 范围",
- "internalProxyServers": "内部代理服务器",
- "maxInactivityTime": "设备空闲后,导致设备锁定 PIN 或密码前允许的最长时间(以分钟为单位)",
- "maxPasswordAttempts": "擦除设备之前允许的身份验证失败的次数",
- "mdmDiscoveryUrl": "MDM 发现 URL",
- "mdmRequiredSettingsInfo": "此策略仅适用于 Windows 10 周年纪念版及更高版本。此策略使用 Windows 信息保护(WIP)来应用保护。",
- "minimumPinLength": "设置 PIN 所需的最小字符数",
- "name": "名称",
- "networkBoundariesGridEmptyText": "所添加的任何网络边界都将显示在此处",
- "networkBoundary": "网络边界",
- "networkDomainNames": "网络域",
- "neutralResources": "中性资源",
- "passportForWork": "使用 Windows Hello 企业版作为登录 Windows 的方法",
- "pinExpiration": "指定在系统要求用户更改 PIN 之前可以使用 PIN 的时间段(以天为单位)",
- "pinHistory": "指定可以与无法重复使用的用户帐户相关联的之前的 PIN 数",
- "pinLowercaseLetters": "配置 Windows Hello 企业版 PIN 中小写字母的使用",
- "pinSpecialCharacters": "配置 Windows Hello 企业版 PIN 中特殊字符的使用",
- "pinUppercaseLetters": "配置 Windows Hello 企业版 PIN 中大写字母的使用",
- "protectUnderLock": "锁定设备后防止应用访问公司数据。仅适用于 Windows 10 移动版",
- "protectedDomainNames": "受保护域",
- "proxyServers": "代理服务器",
- "requireAppPin": "管理设备 PIN 时禁用应用 PIN",
- "requiredSettings": "所需设置",
- "requiredSettingsInfo": "更改范围或删除此策略将解密公司数据。",
- "revokeOnMdmHandoff": "当设备注册 MDM 时,撤销对受保护数据的访问权限",
- "revokeOnUnenroll": "取消注册时撤销加密密钥",
- "rmsTemplateForEdp": "指定要用于 Azure RMS 的模板 ID",
- "showWipIcon": "显示企业数据保护图标",
- "type": "类型",
- "useRmsForWip": "将 Azure RMS 用于 WIP",
- "value": "值",
- "weRequiredSettingsInfo": "此策略仅适用于 Windows 10 创意者更新及更高版本。此策略使用 Windows 信息保护(WIP)和 Windows MAM 来应用保护。",
- "wipProtectionMode": "Windows 信息保护模式",
- "withEnrollment": "已注册",
- "withoutEnrollment": "未注册"
- },
- "EdgeAppConfig": {
- "AllowedURLs": {
- "title": "允许的 URL",
- "tooltip": "指定用户可在处于工作上下文中时访问的网站。不允许其他所有网站。可选择配置允许/阻止列表,但不可同时设置这两者。"
- },
- "ApplicationProxyRedirection": {
- "header": "应用程序代理",
- "title": "应用程序代理重定向",
- "tooltip": "启用应用代理重定向,为用户提供访问企业链接和本地 web 应用的权限。"
- },
- "BlockedURLs": {
- "title": "阻止的 URL",
- "tooltip": "指定阻止用户在其处于工作上下文中时访问的网站。允许所有其他网站。可选择配置允许/阻止列表,但不可同时选择这两者。"
- },
- "Bookmarks": {
- "header": "托管的书签",
- "tooltip": "请输入用户在其工作上下文中使用 Microsoft Edge 时可使用的带标签的 URL 的列表。",
- "uRL": "URL"
- },
- "HomepageURL": {
- "header": "托管的主页",
- "title": "主页快捷方式 URL",
- "tooltip": "配置一个主页快捷方式;当用户在 Microsoft Edge 中打开新的标签页时,该快捷方式将作为第一个图标显示在搜索栏下面供用户查看。"
- },
- "PersonalContext": {
- "label": "将受限站点重定向到个人上下文",
- "tooltip": "配置是否应允许用户切换到其个人上下文来打开受限网站。"
- }
- },
- "AzureIAM": {
- "AdrsUserActionSelectionWarning": {
- "conditions": "要求设备注册的条件不可用于“注册或联接设备”用户操作。",
- "message": "只有“需要多重身份验证”可用于为“注册或联接设备”用户操作创建的策略{0}"
- },
- "AuthContext": {
- "Included": {
- "none": "没有选择云应用、操作或身份验证上下文",
- "plural": "包含 {0} 个身份验证上下文",
- "singular": "包含 1 个身份验证上下文"
- },
- "InfoBlade": {
- "createTitle": "添加身份验证上下文",
- "descPlaceholder": "为身份验证上下文添加说明",
- "modifyTitle": "修改身份验证上下文",
- "namePlaceholder": "例如,“可信位置”、“受信任设备”、“强授权”",
- "publishDesc": "“发布到应用”将使身份验证上下文可供应用使用。在完成为标记配置条件访问策略后发布。[了解更多][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150966",
- "publishLabel": "发布到应用",
- "titleDesc": "配置将用于保护应用程序数据和操作的身份验证上下文。使用应用程序管理员可以理解的名称和说明。[了解更多][1]\n[1]:https://go.microsoft.com/fwlink/?linkid=2150965"
- },
- "Notify": {
- "failure": "未能更新 {0}",
- "modifying": "正在修改 {0}",
- "success": "已成功更新 {0}"
- },
- "WhatIf": {
- "selected": "包含身份验证上下文"
- },
- "addNewStepUp": "新建身份验证上下文",
- "checkBoxInfo": "选择此策略将应用到的身份验证上下文",
- "configure": "配置身份验证上下文",
- "createCA": "向身份验证上下文分配条件访问策略",
- "dataGrid": "身份验证上下文列表",
- "description": "说明",
- "documentation": "文档",
- "getStarted": "入门",
- "label": "身份验证上下文(预览)",
- "menuLabel": "身份验证上下文(预览)",
- "name": "名称",
- "noAuthContextSet": "没有身份验证上下文。",
- "noData": "没有身份验证上下文可显示",
- "selectionInfo": "身份验证上下文用于保护 SharePoint 和 Microsoft Cloud App Security 等应用中的应用程序数据和操作。",
- "step": "步骤",
- "tabDescription": "管理身份验证上下文,以保护应用中的数据和操作。[了解更多][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150965",
- "tagResources": "使用身份验证上下文来标记资源"
- },
- "AuthenticationStrength": {
- "Mode": {
- "deviceBasedPush": "Microsoft Authenticator (手机登录)",
- "deviceBasedPushFido2X509Certificate": "Microsoft Authenticator (手机登录) + Fido 2 + 基于证书的身份验证",
- "deviceBasedPushX509CertificateSingleFactor": "Microsoft Authenticator (手机登录) + Fido 2 + 基于证书的身份验证 (单重)",
- "email": "通过电子邮件发送一次性密码",
- "emailOtp": "电子邮件 OTP",
- "federatedMultiFactor": "联合多重因素",
- "federatedSingleFactor": "联合单一因素",
- "federatedSingleFactorFederatedMultiFactor": "联合单因素 + 联合多因素",
- "fido2": "FIDO 2 安全密钥",
- "fido2X509CertificateSingleFactor": "FIDO 2 安全密钥 + 基于证书的身份验证 (单重)",
- "hardwareOath": "硬件 OTP",
- "hardwareOathX509CertificateSingleFactor": "硬件 OTP + 基于证书的身份验证 (单重)",
- "microsoftAuthenticatorPSIX509CertificateSingleFactor": "Microsoft Authenticator (手机登录) + 基于证书的身份验证 (单重)",
- "microsoftAuthenticatorPsi": "Microsoft Authenticator (手机登录)",
- "microsoftAuthenticatorPush": "Microsoft Authenticator (推送通知)",
- "microsoftAuthenticatorPushX509CertificateSingleFactor": "Microsoft Authenticator (推送通知) + 基于证书的身份验证 (单重)",
- "none": "无",
- "password": "密码",
- "passwordDeviceBasedPush": "密码 + Microsoft Authenticator (手机登录)",
- "passwordFido2": "密码 + FIDO 2 安全密钥",
- "passwordHardwareOath": "密码 + 硬件 OTP",
- "passwordMicrosoftAuthenticatorPSI": "密码 + Microsoft Authenticator (手机登录)",
- "passwordMicrosoftAuthenticatorPush": "密码 + Microsoft Authenticator (推送通知)",
- "passwordSms": "密码 + 短信",
- "passwordSoftwareOath": "密码 + 软件 OTP",
- "passwordTemporaryAccessPassMultiUse": "密码 + 临时访问密码 (多次)",
- "passwordTemporaryAccessPassOneTime": "密码 + 临时访问密码 (一次性使用)",
- "passwordVoice": "密码 + 语音",
- "sms": "短信",
- "smsSignIn": "短信登录",
- "smsX509CertificateSingleFactor": "SMS + 基于证书的身份验证 (单重)",
- "softwareOath": "软件 OTP",
- "softwareOathX509CertificateSingleFactor": "软件 OTP + 基于证书的身份验证 (单重)",
- "temporaryAccessPassMultiUse": "临时访问密码 (多次使用)",
- "temporaryAccessPassMultiUseX509CertificateSingleFactor": "临时访问密码 (多次使用) + 基于证书的身份验证 (单重)",
- "temporaryAccessPassOneTime": "临时访问密码 (一次性使用)",
- "temporaryAccessPassOneTimeX509CertificateSingleFactor": "临时访问密码 (一次性使用) + 基于证书的身份验证 (单重)",
- "voice": "语音",
- "voiceX509CertificateSingleFactor": "语音 + 基于证书的身份验证 (单重)",
- "windowsHelloForBusiness": "Windows Hello 企业版",
- "x509CertificateMultiFactor": "基于证书的身份验证 (多重)",
- "x509CertificateSingleFactor": "基于证书的身份验证 (单重)"
- }
- },
- "CAS": {
- "BuiltinPolicy": {
- "Option": {
- "blockDownloads": "阻止下载内容(预览版)",
- "monitorOnly": "仅监视(预览版)",
- "protectDownloads": "保护下载内容(预览版)",
- "useCustomControls": "使用自定义策略..."
- },
- "ariaLabel": "选择要应用的条件访问应用控制类型"
- }
- },
- "ChooseApplications": {
- "Grid": {
- "appIdAria": "应用 ID: {0}"
- },
- "LowerGrid": {
- "ariaLabel": "选定云应用的列表"
- },
- "UpperGrid": {
- "ariaLabel": "与搜索词匹配的云应用的列表"
- }
- },
- "ChooseLocations": {
- "Validation": {
- "failed": "对于“选定位置”,至少必须选择一个位置。",
- "selector": "请至少选择一个位置"
- }
- },
- "ClientApp": {
- "Clients": {
- "Validation": {
- "failed": "必须选择以下至少一个客户端"
- }
- }
- },
- "ClientConditionsInfo": {
- "browserAndModern": "此策略仅适用于浏览器和新式身份验证应用。要将策略应用于所有客户端应用,请启用客户端应用条件并选择所有客户端应用。",
- "classicExperience": "自此策略创建以来,默认客户端应用配置已更新。",
- "legacyAuth": "如果没有配置,策略现在应用于所有客户端应用,包括新式身份验证和旧身份验证。"
- },
- "CloudAppFilterBlade": {
- "AssignmentFilter": {
- "header": "属性",
- "placeholder": "选择属性"
- },
- "Configure": {
- "infoBalloon": "配置要应用策略的应用筛选器。"
- },
- "NoPermissions": {
- "learnMoreAria": "有关自定义安全属性权限的详细信息。",
- "message": "你没有使用自定义安全属性所需的权限。"
- },
- "gridHeader": "使用自定义安全属性,可以使用规则生成器或规则语法文本框创建或编辑筛选规则。在预览版中,仅支持字符串类型的属性。将不显示整型或布尔类型的属性。",
- "learnMoreAria": "有关使用规则生成器和语法文本框的详细信息。",
- "noAttributes": "没有可供筛选的自定义属性。需要配置一些属性才能使用此筛选器。",
- "title": "Edit filter (Preview)"
- },
- "CloudAppsUserActions": {
- "any": "任何云应用或操作",
- "infoBalloon": "要测试的云应用或用户操作。例如,\"SharePoint Online\"",
- "learnMore": "根据所有或特定的云应用或操作来控制访问。",
- "learnMoreB2C": "根据所有或特定的云应用来控制访问。",
- "title": "云应用或操作"
- },
- "CloudappsSelectionBlade": {
- "Excluded": {
- "gridAria": "排除的云应用的列表"
- },
- "Filter": {
- "configured": "已配置",
- "label": "Edit filter (Preview)",
- "with": "{0},含 {1}"
- },
- "Included": {
- "gridAria": "包含的云应用的列表"
- },
- "Validation": {
- "authContext": "使用“身份验证上下文”时,必须配置至少一个子项。",
- "selectApps": "必须配置 \"{0}\"",
- "selector": "请至少选择一个应用。",
- "userActions": "对于“用户操作”,至少必须配置一个子项。"
- }
- },
- "DeviceState": {
- "LearnMore": {
- "message": "Control user access when the device the user is signing-in from is not \"Hybrid Azure AD joined\" or \"marked as compliant\".\n '{0}' has been deprecated. Use '{1}' instead."
- }
- },
- "Errors": {
- "notFound": "策略未找到或已被删除。",
- "notFoundDetailed": "策略“{0}”已不存在。它可能已遭删除。"
- },
- "NamedLocation": {
- "Form": {
- "CountryLookup": {
- "ariaLabel": "国家/地区查找方法",
- "gps": "按 GPS 坐标确定位置",
- "info": "如果配置了条件访问策略的位置条件,Authenticator 应用会提示用户共享其 GPS 位置。",
- "ip": "按 IP 地址确定位置(仅限 IPv4) "
- },
- "Header": {
- "new": "新位置({0})",
- "update": "更新位置({0})"
- },
- "IP": {
- "learn": "配置命名位置 IPv4 和 IPv6 范围。\n[了解更多][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
- },
- "Include": {
- "infoBalloon": "未知国家/地区是指没有与特定国家/地区关联的 IP 地址。[了解更多信息][1]\n\n这包括:\n* IPv6 地址\n* 没有直接映射的 IPv4 地址\n[1]: https://aka.ms/canamedlocations\n",
- "label": "包括未知国家/地区"
- },
- "Name": {
- "empty": "名称不得为空。",
- "placeholder": "命名此位置"
- },
- "PrivateLink": {
- "learn": "创建包含 Azure AD 的专用链接的新命名位置。\n[了解详细信息][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
- },
- "Search": {
- "countries": "搜索国家/地区",
- "names": "搜索名称",
- "privateLinks": "搜索专用链接"
- },
- "Trusted": {
- "label": "标记为可信位置"
- },
- "enter": "输入新 IPv4 或 IPv6 范围",
- "example": "例如: 40.77.182.32/27 或 2a01:111::/32"
- },
- "Label": {
- "addCountries": "国家/地区位置",
- "addIpRange": "IP 范围位置",
- "addPrivateLink": "Azure 专用链接"
- },
- "Notification": {
- "Create": {
- "Failed": {
- "description": "无法新建位置({0})",
- "title": "无法创建"
- },
- "InProgress": {
- "description": "正在新建位置({0})",
- "title": "正在进行创建"
- },
- "Success": {
- "description": "已成功新建位置({0})",
- "title": "已成功创建"
- }
- },
- "Delete": {
- "Failed": {
- "description": "无法删除位置({0})",
- "title": "无法删除"
- },
- "InProgress": {
- "description": "正在删除位置({0})",
- "title": "正在删除"
- },
- "Success": {
- "description": "已成功删除位置({0})",
- "title": "已成功删除"
- }
- },
- "Update": {
- "Failed": {
- "description": "无法更新位置({0})",
- "title": "无法更新"
- },
- "InProgress": {
- "description": "正在更新位置({0})",
- "title": "正在更新"
- },
- "Success": {
- "description": "已成功更新位置({0})",
- "title": "已成功更新"
- }
- }
- },
- "PrivateLinks": {
- "grid": "专用链接列表"
- },
- "Trusted": {
- "title": "受信任类型",
- "trusted": "受信任"
- },
- "Type": {
- "all": "所有类型",
- "countries": "国家/地区",
- "ipRanges": "IP 范围",
- "privateLinks": "专用链接",
- "title": "位置类型"
- },
- "iPRangeInvalidError": "值必须是有效的 IPv4 或 IPv6 范围。",
- "iPRangeLinkOrSiteLocalError": "检测到 IP 网络为链路本地地址或站点本地地址。",
- "iPRangeOctetError": "IP 网络不得以 0 或 255 开头。",
- "iPRangePrefixError": "IP 网络前缀必须介于 /{0} 和 /{1} 之间。",
- "iPRangePrivateError": "检测到 IP 网络为专用地址。"
- },
- "Policies": {
- "Grid": {
- "aria": "条件访问策略的列表"
- },
- "countText": "找到了 {0} 个策略(共 {1} 个)",
- "countTextSingular": "找到了 {0} 个策略(共 1 个)",
- "search": "搜索策略"
- },
- "Policy": {
- "Condition": {
- "ServicePrincipalRisk": {
- "description": "配置强制实施策略所需的服务主体风险级别",
- "infoBalloonContent": "配置服务主体风险,以将策略应用于所选风险级别",
- "title": "服务主体风险"
- }
- }
- },
- "PolicyControlAuthStrength": {
- "MultiFactorAuthentication": {
- "description": "满足强身份验证的方法组合,如密码 + 短信",
- "displayName": "多重身份认证(MFA)"
- },
- "Passwordless": {
- "description": "满足强身份验证要求的无密码方法,例如 Microsoft Authenticator ",
- "displayName": "无密码 MFA"
- },
- "PhishingResistant": {
- "description": "用于最强身份验证的防网络钓鱼无密码方法,如 FIDO2 安全密钥",
- "displayName": "防网络钓鱼 MFA"
- }
- },
- "PolicyControlFedAuthMethod": {
- "certificate": "证书身份验证",
- "infoBubble": "指定所需的身份验证方法,该方法必须满足 ADFS 等联合身份验证提供程序的要求。",
- "multifactor": "多重身份验证",
- "require": "需要联合身份验证方法(预览版)",
- "whatIfFormat": "{0} - {1}"
- },
- "PolicyState": {
- "off": "关闭",
- "on": "打开",
- "reportOnly": "仅报告"
- },
- "PolicyTemplates": {
- "Devices": {
- "description": "选择“设备”策略模板类别以查看访问网络的设备。在授予访问权限之前先确保合规性和运行状况状态。",
- "name": "设备"
- },
- "Identities": {
- "description": "选择“标识”策略模板类别,从而使用强身份验证在整个数字财产中验证并保护每个标识。",
- "name": "标识"
- },
- "Summary": {
- "CloudApps": {
- "allCloudApps": "所有应用",
- "office365": "Office 365",
- "registerSecurityInfo": "注册安全信息"
- },
- "Conditions": {
- "androidAndIOS": "设备平台: Android 和 IOS",
- "anyDevice": "除 Android、IOS、Windows 和 Mac 之外的任何设备",
- "anyDeviceStateExceptHybrid": "除合规和已建立混合 Azure AD 联接之外的任何设备状态",
- "anyLocation": "除受信任之外的任何位置",
- "browserMobileDesktop": "客户端应用: 浏览器、移动应用以及桌面客户端",
- "exchangeActiveSync": "客户端应用: Exchange Active Sync、其他客户端",
- "windowsAndMac": "设备平台: Windows 和 Mac"
- },
- "Devices": {
- "anyDevice": "任何设备"
- },
- "Grant": {
- "appProtectionPolicy": "需要应用保护策略",
- "approvedClientApp": "需要核准的客户端应用",
- "blockAccess": "阻止访问",
- "mfa": "要求多重身份验证",
- "passwordChange": "需要更改密码",
- "requireCompliantDevice": "需要标记为兼容的设备",
- "requireHybridAzureADDevice": "需要已建立混合 Azure AD 联接的设备"
- },
- "Session": {
- "appEnforcedRestrictions": "使用应用强制实施的限制",
- "signInFrequency": "登录频率和永不持续的浏览器会话"
- },
- "UsersAndGroups": {
- "allUsers": "所有用户",
- "directoryRoles": "除当前管理员之外的目录角色",
- "globalAdmin": "全局管理员",
- "noGuestAndAdmins": "除来宾和外部用户、全局管理员、当前管理员之外的所有用户"
- },
- "azureManagement": "Azure 管理",
- "deviceFilters": "设备筛选器",
- "devicePlatforms": "设备平台"
- },
- "TemplateId": {
- "AppEnforcedRestrictions": {
- "description": "阻止或限制从非托管设备访问 SharePoint、OneDrive 和 Exchange 内容。",
- "name": "CA014: 对非管理的设备使用应用程序强制限制",
- "title": "对非管理的设备使用应用程序强制限制"
- },
- "ApprovedClientApps": {
- "description": "要防止数据丢失,组织可以使用 Intune 应用保护限制对已批准的新式身份验证客户端应用的访问权限。",
- "name": "CA012: 需要已批准的客户端应用和应用保护",
- "title": "需要已批准的客户端应用和应用保护"
- },
- "BlockAccessOnUnknowns": {
- "description": "当设备类型未知或不受支持时,将阻止用户访问公司资源。",
- "name": "CA010: 阻止未知或不支持设备平台的访问",
- "title": "阻止未知或不支持设备平台的访问"
- },
- "BlockLegacyAuth": {
- "description": "阻止可用于绕过多重身份验证的旧式身份验证终结点。 ",
- "name": "CA003: 阻止旧版身份验证",
- "title": "阻止旧身份验证"
- },
- "NoPersistentBrowserSession": {
- "description": "阻止浏览器会话在浏览器关闭后保持登录状态并将登录频率设置为 1 小时,从而保护非托管设备上的用户访问。",
- "name": "CA011: 浏览器会话不持久",
- "title": "没有持久性浏览器会话"
- },
- "RequireCompliantOrHybridADAdmins": {
- "description": "需要特权管理员仅在使用合规或已建立混合 Azure AD 联接的设备时才访问资源。",
- "name": "CA009: 要求管理员的设备合规或已建立混合 Azure AD 联接",
- "title": "要求管理员的设备合规或已建立混合 Azure AD 联接"
- },
- "RequireCompliantOrHybridADAllUsers": {
- "description": "需要用户使用托管设备或执行多重身份验证,从而保护对公司资源的访问权限。(仅限 macOS 或 Windows)",
- "name": "CA013: 要求所有用户都使用合规或已建立混合 Azure AD 联接的设备或多重身份验证",
- "title": "要求所有用户都使用合规或已建立混合 Azure AD 联接的设备或多重身份验证"
- },
- "RequireMFAAllUsers": {
- "description": "需要对所有用户帐户进行多重身份验证,以降低入侵风险。",
- "name": "CA004: 要求对所有用户进行多重身份验证",
- "title": "要求对所有用户进行多重身份验证"
- },
- "RequireMFAForAdmins": {
- "description": "需要对特权管理帐户进行多重身份验证,以降低入侵风险。此策略将针对与“安全默认”相同的角色。",
- "name": "CA001: 要求对所有管理员进行多重身份验证",
- "title": "需要为管理员进行多重身份验证"
- },
- "RequireMFAForAzureManagement": {
- "description": "需要多重身份验证来保护对 Azure 资源的特权访问。",
- "name": "CA006: Azure 管理需要多重身份验证",
- "title": "Azure 管理需要多重身份验证"
- },
- "RequireMFAForGuestAccess": {
- "description": "当访问公司资源时,需要来宾用户执行多重身份验证。",
- "name": "CA005: 要求对来宾访问进行多重身份验证",
- "title": "要求对所有来宾访问进行多重身份验证"
- },
- "RequireMFAForRiskySignIn": {
- "description": "如果检测到中或高登录风险,则需要进行多重身份验证。(需要 Azure AD Premium 2 许可证)",
- "name": "CA007: 风险登录需要多重身份验证",
- "title": "风险登录需要多重身份验证"
- },
- "RequirePasswordChangeForHighRiskUsers": {
- "description": "如果检测到高用户风险,则需要用户更改其密码。(需要 Azure AD Premium 2 许可证)",
- "name": "CA008: 需要为高风险用户更改密码",
- "title": "需要为高风险用户更改密码"
- },
- "RequireSecurityInfo": {
- "description": "保护用户注册 Azure AD 多重身份验证和自助服务密码的时间和方式。 ",
- "name": "CA002: 保护安全信息注册",
- "title": "保护安全信息注册"
- }
- },
- "TemplateState": {
- "BlockAccessOnUnknowns": {
- "title": "启用此策略将阻止任何对未知设备类型的访问,在确认这不会影响用户前,请考虑使用仅限报告模式。"
- },
- "BlockLegacyAuth": {
- "description": "在确认这不会影响用户前,请考虑使用仅限报告模式。",
- "title": "启用此策略将阻止所有用户的旧身份验证。"
- },
- "RequireCompliantOrHybridADAdmins": {
- "Description": {
- "on": "在确认这不会影响特权用户之前,请考虑先使用仅报告模式。",
- "reportOnly": "处于仅限报告模式且需要兼容设备的策略可能会提示 Mac、iOS 和 Android 上的用户在策略评估期间选择设备证书,即使没有强制执行设备合规性。在设备合规之前,可能会重复这些提示。"
- },
- "Title": {
- "on": "启用此策略将为特权用户阻止访问,除非使用托管设备(例如合规或已建立混合 Azure AD 联接的设备)。在启用之前,请确保已配置合规性策略或已启用混合 Azure AD 配置。",
- "reportOnly": "在启用之前,请确保已配置合规性策略或已启用混合Azure AD 配置。 "
- }
- },
- "RequireCompliantOrHybridADAllUsers": {
- "Description": {
- "on": "此策略将影响除当前登录“管理员”之外的所有用户。在确认这不会影响用户之前,请考虑先使用仅报告模式。"
- },
- "Title": {
- "on": "不要将自己锁定! 请确保设备合规或已建立混合 Azure AD 联接,或已配置多重身份验证。 ",
- "reportOnly": "处于仅限报告模式且需要兼容设备的策略可能会提示 Mac、iOS 和 Android 上的用户在策略评估期间选择设备证书,即使没有强制执行设备合规性。在设备合规之前,可能会重复这些提示。"
- }
- },
- "RequireMfa": {
- "description": "如果使用紧急访问帐户或 Azure AD Connect 同步本地对象,则在创建后可能需要将这些帐户从该策略中排除。"
- },
- "RequireMfaAdmins": {
- "description": "请注意,将自动排除当前管理员帐户,但所有其他帐户将在策略创建时受到保护。请首先考虑使用仅限报告模式。",
- "title": "请勿置身事外! 此策略影响 Azure 门户。"
- },
- "RequireMfaAllUsers": {
- "description": "在计划并通知所有用户此更改前,请考虑仅限报告模式。",
- "title": "启用此策略将对所有用户强制执行多重身份验证。"
- },
- "RequireSecurityInfo": {
- "description": "请确保根据公司需要检查配置以保护这些帐户。",
- "title": "此策略不包括以下用户和角色: 来宾和外部用户、全局管理员、当前管理员"
- }
- },
- "basics": "基本信息",
- "clientApps": "客户端应用",
- "cloudApps": "云应用",
- "cloudAppsOrActions": "云应用或操作 ",
- "conditions": "条件 ",
- "createNewPolicy": "根据模板创建新策略(预览版)",
- "createPolicy": "创建策略",
- "currentUser": "当前用户",
- "customizeBuild": "自定义版本",
- "customizeTemplate": "基于你要创建的策略的类型自定义模板列表",
- "excludedDevicePlatform": "排除的设备平台",
- "excludedDirectoryRoles": "排除的目录角色",
- "excludedLocation": "排除的目录角色",
- "excludedUsers": "已排除用户",
- "grantControl": "授权控制 ",
- "includeFilteredDevice": "在策略中包括筛选后的设备",
- "includedDevicePlatform": "包含的设备平台",
- "includedDirectoryRoles": "包含的目录角色",
- "includedLocation": "包含的位置",
- "includedUsers": "包含的用户",
- "legacyAuthenticationClients": "旧身份验证客户端",
- "namePolicy": "命名策略",
- "next": "下一步",
- "policyName": "策略名称",
- "policyState": "策略状态",
- "policySummary": "策略摘要",
- "policyTemplate": "策略模板",
- "previous": "上一步",
- "reviewAndCreate": "审阅 + 创建",
- "riskLevels": "风险级别",
- "selectATemplate": "选择模板",
- "selectTemplate": "选择模板",
- "selectTemplateCategory": "选择模板类别",
- "selectTemplateRecommendation": "基于你的响应,我们建议使用以下模板",
- "sessionControl": "会话控制 ",
- "signInFrequency": "登录频率",
- "signInRisk": "登录风险",
- "template": "模板 ",
- "templateCategory": "模板类别",
- "userRisk": "用户风险",
- "usersAndGroups": "用户和组 ",
- "viewPolicySummary": "查看策略摘要 "
- },
- "SSM": {
- "MemberSelector": {
- "description": "用户和组"
- },
- "Notification": {
- "Migration": {
- "error": "无法将连续访问评估设置迁移到条件访问策略",
- "inProgress": "迁移连续访问评估设置",
- "success": "已成功将连续访问评估设置迁移到条件访问策略",
- "successDescription": "请转至条件访问策略,以查看新创建的名为“从 CAE 设置创建的 CA 策略”的策略中迁移的设置。"
- },
- "error": "无法更新连续访问评估设置",
- "inProgress": "正在更新连续访问评估设置",
- "success": "已成功更新连续访问评估设置"
- },
- "PreviewOptions": {
- "disable": "禁用预览",
- "enable": "启用预览"
- },
- "StrictLocationEnforcement": {
- "infoContent1": "由于网络分区或 IPv4/IPv6 不匹配,向同一客户端设备中的 Azure AD 和资源提供程序显示的 IP 可能不同。“严格位置强制”将强制执行基于向 Azure AD 和资源提供程序显示的 IP 地址的条件访问策略。",
- "infoContent2": "为了最大程度地确保安全性,建议在“命名位置”策略中添加可能会向 Azure AD 和资源提供程序显示的所有 IP,并启用“严格位置强制”模式。",
- "label": "严格位置强制",
- "title": "其他强制模式"
- },
- "bladeTitle": "连续访问评估",
- "description": "在用户的访问权限被撤消或客户端 IP 地址发生变化时,连续访问评估会准实时地自动阻止对资源和应用程序的访问。",
- "migrateLabel": "迁移",
- "migrationError": "由于以下错误,迁移失败: {0}",
- "migrationInfo": "CAE 设置已在条件访问 UX 下移动,请使用上面的“迁移”按钮进行迁移,并在以后使用条件访问策略对其进行配置。单击此处了解详细信息。",
- "noLicenseMessage": "使用 Azure AD Premium 管理智能会话管理设置",
- "optionsPickerTitle": "启用/禁用连续访问评估",
- "upsellInfo": "无法再更改此页上的设置,并应忽略此处的任何设置。将遵守你以前的设置。你可以在将来的条件访问下配置 CAE 设置。单击此处以了解详细信息。"
- },
- "SessionLifetime": {
- "PersistentBrowser": {
- "Error": {
- "notAllApps": "仅当选中“所有云应用”时,持久性浏览器会话策略才正确发挥作用。请更新云应用选择。"
- },
- "Option": {
- "always": "始终持久性",
- "help": "通过永久性浏览器会话,用户可以在关闭并重新打开浏览器窗口后保持登录状态。
\n\n- 当选中“所有云应用”时,此设置可以正常运行。
\n- 这不影响令牌生存期或登录频率设置。
\n- 这会替代“公司品牌”中的“显示保持登录选项”策略。
\n- “绝不是永久性”将替代从联合身份验证服务传入的任何永久性 SSO 声明。
\n- “绝不是永久性”将跨应用程序以及在应用程序和用户移动浏览器之间阻止移动设备 SSO。
\n",
- "label": "持久性浏览器会话",
- "never": "从不持续"
- },
- "Warning": {
- "allApps": "仅当选中“所有云应用”时,持久性浏览器会话才正确发挥作用。请更改云应用选择。单击此处可了解详细信息。"
- }
- },
- "SignInFrequency": {
- "Aria": {
- "units": "小时或天",
- "value": "频率"
- },
- "Option": {
- "Day": {
- "plural": "{0} 天",
- "singular": "1 天"
- },
- "Hour": {
- "plural": "{0} 小时",
- "singular": "1 小时"
- },
- "daysOption": "天",
- "everytime": "每次",
- "help": "用户访问资源时收到登录提示的时间周期。默认设置是 90 天的滚动时间段,即用户在计算机上的非活跃天数为 90 天或更长时,首次访问资源将收到重新进行身份验证的提示。",
- "hoursOption": "小时",
- "label": "登录频率",
- "placeholder": "选择单位"
- }
- },
- "mainOption": "修改会话生存期",
- "mainOptionHelp": "配置对用户进行提示的频率,以及是否保留浏览器会话。不支持新式身份验证协议的应用程序可能不遵守这些策略。在此情况下,请联系应用程序开发人员。"
- },
- "SigninRisk": {
- "LearnMore": {
- "message": "控制用户访问,以响应特定的登录风险级别。"
- }
- },
- "SingleSelectorActive": {
- "failed": "无法加载这些数据。",
- "reattempt": "正在加载数据。重试 {1} 的 {0}。"
- },
- "TimeCondition": {
- "Errors": {
- "both": "“包括”或“排除”时间范围无效。",
- "daysOfWeek": "{0} 请务必指定至少一个星期几。",
- "endBeforeStart": "{0} 请确保开始日期/时间早于结束日期/时间。",
- "exclude": "“排除”时间范围无效。",
- "generic": "{0} 请确保星期几和时区都已设置。如果没有选中“全天”,则还需要设置开始时间和结束时间。",
- "include": "“包括”时间范围无效。",
- "timeMissing": "{0} 请务必同时指定开始时间和结束时间。",
- "timeZone": "{0} 请务必指定时区。",
- "timesAndZone": "{0} 请务必设置开始时间、结束时间和时区。"
- }
- },
- "UserActions": {
- "Included": {
- "none": "未选择云应用或操作",
- "plural": "包含 {0} 个用户操作",
- "singular": "包含 1 个用户操作"
- },
- "accessRequirement1": "级别 1",
- "accessRequirement2": "级别 2",
- "accessRequirement3": "级别 3",
- "accessRequirementsLabel": "访问受保护的应用数据",
- "appsActionsAuthTitle": "云应用、操作或身份验证上下文",
- "appsOrActionsSelectorInfoBallonText": "已访问应用程序或用户操作",
- "appsOrActionsTitle": "云应用或操作",
- "label": "用户操作",
- "mainOptionsLabel": "选择此策略的适用对象",
- "registerOrJoinDevices": "注册或加入设备",
- "registerSecurityInfo": "注册安全信息",
- "selectionInfo": "选择将应用此策略的操作"
- },
- "UserSelectionBlade": {
- "DirectoryRoles": {
- "ariaLabel": "请选择目录角色"
- },
- "Excluded": {
- "gridAria": "已排除用户的列表"
- },
- "Included": {
- "gridAria": "已添加用户的列表"
- },
- "Validation": {
- "customRoleIncluded": "“目录角色”至少包含一个自定义角色",
- "customRoleSelected": "至少选择一个自定义角色",
- "failed": "必须配置“{0}”",
- "roles": "请至少选择一个角色",
- "usersGroups": "请至少选择一个用户或组"
- },
- "learnMore": "根据策略将适用的人员(例如用户和组、工作负载标识、目录角色或外部来宾)控制访问权限。"
- },
- "ValidationResult": {
- "blockEveryonePolicy": "不支持策略配置。请查看分配和控制。",
- "invalidApplicationCondition": "所选云应用程序无效",
- "invalidClientTypesCondition": "所选客户端应用无效",
- "invalidConditions": "分配未选定",
- "invalidControls": "所选控件无效",
- "invalidDevicePlatformsCondition": "所选设备平台无效",
- "invalidDevicesCondition": "设备配置无效。可能是“{0}”配置无效。",
- "invalidGrantControlPolicy": "无效的授权控件",
- "invalidLocationsCondition": "所选位置无效",
- "invalidPolicy": "分配未选定",
- "invalidSessionControlPolicy": "无效的会话控件",
- "invalidSignInRisksCondition": "所选登录风险无效",
- "invalidUserRisksCondition": "所选用户风险无效",
- "invalidUsersCondition": "所选用户无效",
- "mamPolicyShouldOnlyTargetAndroidOrIosPlatforms": "MAM 策略只能应用于 Android 或 IOS 客户端平台。",
- "notSupportedCombination": "策略配置不受支持。了解有关受支持策略的详细信息。",
- "pending": "正在验证策略",
- "requireComplianceEveryonePolicy": "策略配置要求所有用户的设备均合规。查看选定的作业。",
- "success": "有效策略"
- },
- "VpnCert": {
- "Grid": {
- "aria": "VPN 证书列表"
- }
- },
- "WarningsInfo": {
- "Controls": {
- "compliantDeviceEnabled": "不要置身事外! 请确保设备的合规性。",
- "domainJoinedDeviceEnabled": "不要置身事外! 请确保设备已建立混合 Azure AD 联接。",
- "exchangeDisabled": "Exchange ActiveSync 仅支持“兼容设备”和“核准的客户端应用”控件。点击此处了解详细信息。",
- "exchangeDisabled2": "Exchange ActiveSync 仅支持“兼容设备”、“核准的客户端应用”和“兼容客户的应用”控件。点击此处了解详细信息。",
- "notAvailableForSP": "由于策略分配中选择了 '{0}',因此一些控件不可用",
- "requireAuthOrMfa": "“{0}”不能和“{1}”一起使用",
- "requireMfa": "请考虑测试新“{0}”公共预览版",
- "requirePasswordChangeEnabled": "仅当策略被分配到“所有云应用”时,才能使用“需要更改密码”"
- },
- "Policies": {
- "Linux": {
- "devicePlatformsReportOnlyPolicy": "仅报告模式下需要合规设备的策略可能会提示 macOS、iOS、Android 和 Linux 用户选择设备证书。",
- "excludeDevicePlatforms": "从此策略中排除设备平台 macOS、iOS 和 Android。",
- "proceedAnywayDevicePlatforms": "继续使用所选配置。在检查设备是否符合要求时,macOS、iOS、Android 和 Linux 用户可能会收到提示。"
- },
- "blockCurrentUserPolicy": "不要置身事外! 建议先将策略应用于一小部分用户,以验证它是否按预期运行。还建议至少将一名管理员从此策略中排除。这可确保你仍具有访问权限并可在需要更改时更新策略。请查看受影响的用户和应用。",
- "devicePlatformsReportOnlyPolicy": "仅报告模式下需要合规设备的策略可能会提示 macOS、iOS 和 Android 用户选择设备证书。",
- "excludeCurrentUserSelection": "从此策略中排除当前用户 {0}。",
- "excludeDevicePlatforms": "从此策略中排除设备平台 macOS、iOS 和 Android。",
- "proceedAnywayDevicePlatforms": "继续使用选定的配置。在检查设备是否符合要求时,macOS、iOS 和 Android 用户可能会收到提示。",
- "proceedAnywaySelection": "我了解我的帐户将受此策略的影响。仍要继续。"
- },
- "ServicePrincipals": {
- "blockExchange": "选择 Office 365 Exchange Online 还将影响 OneDrive 和 Teams 等应用。",
- "blockPortal": "不要置身事外! 此策略将影响 Azure 门户。在继续前,请确保你或其他人能够返回门户。",
- "blockPortalWithSession": "不要把自己锁在外面!此策略会影响 Azure 门户。请确保你或其他人员能够再次返回门户,然后继续。
如果正在配置仅当选中“所有云应用”时才能正确发挥作用的持续性浏览器会话策略,请忽略此警告。",
- "blockSharePoint": "选择 SharePoint Online 还会影响 Microsoft Teams、Planner、Delve、MyAnalytics 和 Newsfeed 等应用。",
- "blockSkype": "选择 Skype for Business Online 也会对 Microsoft Teams 产生影响。 ",
- "includeOrExclude": "可以为 \"{0}\" 或 \"{1}\" 配置应用筛选器,但不能同时配置两者。",
- "selectAppsNAForSP": "由于策略分配中的“{0}”选择,无法选择单个云应用",
- "teamsBlocked": "策略中包含 SharePoint Online 和 Exchange Online 等应用时,Microsoft Teams 也会受到影响。"
- },
- "Users": {
- "blockAllUsers": "不要将自己拒之门外! 此策略将影响所有用户。建议先将策略应用于一小部分用户,以验证它的行为是否符合预期。"
- }
- },
- "WhatIf": {
- "Device": {
- "AttributesGrid": {
- "aria": "登录时使用的设备上的属性列表。",
- "infoBalloon": "登录时使用的设备上的属性列表。"
- }
- }
- },
- "advancedTabText": "高级",
- "allCloudAppsErrorBox": "选择“需要更改密码”授权时,必须选择“所有云应用”",
- "allDayCheckboxLabel": "全天",
- "allDevicePlatforms": "任何设备",
- "allGuestUserInfoContent": "包括 Azure AD B2B 来宾,但不包括 SharePoint B2B 来宾",
- "allGuestUserLabel": "所有来宾和外部用户",
- "allRiskLevelsOption": "所有风险级别",
- "allTrustedLocationLabel": "所有受信任位置",
- "allUserGroupSetSelectorLabel": "已选择所有用户和组",
- "allUsersString": "所有用户",
- "and": "{0} 和 {1}",
- "andWithGrouping": "({0})和 {1} ",
- "androidDisplayName": "Android",
- "anyCloudAppSelection": "任何云应用",
- "appContextOptionInfoContent": "请求的身份验证标记",
- "appContextOptionLabel": "请求的身份验证标记(预览版)",
- "appContextUriPlaceholder": "示例: uri:contoso.com:level3",
- "appEnforceInfoBubble": "应用强制实施的限制可能要求在云应用中进行额外的管理配置。这些限制将仅对新会话生效。",
- "appNotSetSeletorLabel": "已选择 0 个云应用",
- "applyConditionClientAppInfoBalloonContent": "配置客户端应用以将策略应用到特定客户端应用",
- "applyConditionDevicePlatformInfoBalloonContent": "配置设备平台以将策略应用到特定平台",
- "applyConditionDeviceStateInfoBalloonContent": "配置设备状态以将策略应用到特定设备状态",
- "applyConditionLocationInfoBalloonContent": "配置位置以将策略应用到受信任/不受信任的位置",
- "applyConditionSigninRiskInfoBalloonContent": "配置登录风险以将策略应用到所选风险级别",
- "applyConditionUserRiskInfoBalloonContent": "配置用户风险以将策略应用于选定的一个或多个风险级别",
- "applyConditonLabel": "配置",
- "ariaLabelPolicyDisabled": "策略被禁用",
- "ariaLabelPolicyEnabled": "已启用策略",
- "ariaLabelPolicyReportOnly": "策略处于仅报告模式",
- "blockAccess": "阻止访问",
- "builtInDirectoryRoleLabel": "内置目录角色",
- "casCustomControlInfo": "需要在 Cloud App Security 门户中配置自定义策略。此控件可立即用于特别推荐的应用,并且可对任何应用进行自载入。单击此处详细了解这两种情况。",
- "casInfoBubble": "此控件适用于各种云应用。",
- "casPreconfiguredControlInfo": "此控件可立即用于特别推荐的应用,并且可对任何应用进行自载入。单击此处详细了解这两种情况。",
- "cert64DownloadCol": "下载 base64 证书",
- "cert64Name": "VpnBase64Cert",
- "certDownloadCol": "下载证书",
- "certDurationCol": "到期",
- "certDurationStartCol": "有效起始日期",
- "certName": "VpnCert",
- "chooseApplicationsBladeSubtitle": "",
- "chooseApplicationsBladeTitle": "选择应用程序",
- "chooseApplicationsCartSubitle": "",
- "chooseApplicationsCartTitle": "所选应用程序",
- "chooseApplicationsEmpty": "没有应用程序",
- "chooseApplicationsNone": "无",
- "chooseApplicationsNoneFound": "找不到“{0}”。请尝试另一个名称或 ID。",
- "chooseApplicationsPlural": "{0} 和另外 {1} 个",
- "chooseApplicationsReAuthEverytimeInfo": "正在查找你的应用? 某些应用程序不能与“每次需要重新进行身份验证”会话控制一起使用",
- "chooseApplicationsRemove": "删除",
- "chooseApplicationsReturnedPlural": "找到 {0} 个应用程序 ",
- "chooseApplicationsReturnedSingular": "找到 1 个应用程序",
- "chooseApplicationsSearchBalloon": "搜索应用程序名称或 ID 以选择应用程序。",
- "chooseApplicationsSearchHint": "搜索应用程序...",
- "chooseApplicationsSearchLabel": "应用程序",
- "chooseApplicationsSearching": "正在搜索...",
- "chooseApplicationsSelect": "选择",
- "chooseApplicationsSelected": "选定",
- "chooseApplicationsSingular": "{0} 和另外 1 个",
- "chooseApplicationsTooMany": "比可以显示的结果更多。 请使用搜索框进行筛选。",
- "chooseLocationCorpnetItem": "公司网络",
- "chooseLocationSelectedLocationsLabel": "选定位置",
- "chooseLocationTrustedIpsItem": "MFA 受信任的 IP",
- "chooseLocationsBladeSubtitle": "",
- "chooseLocationsBladeTitle": "已选位置",
- "chooseLocationsCartSubitle": "",
- "chooseLocationsCartTitle": "已选位置",
- "chooseLocationsEmpty": "没有位置",
- "chooseLocationsExcludedSelectorTitle": "选择",
- "chooseLocationsIncludedSelectorTitle": "选择",
- "chooseLocationsNone": "无",
- "chooseLocationsNoneFound": "找不到“{0}”。请尝试另一个名称或 ID。",
- "chooseLocationsPlural": "{0} 和另外 {1} 个",
- "chooseLocationsRemove": "删除",
- "chooseLocationsReturnedPlural": "找到 {0} 个位置",
- "chooseLocationsReturnedSingular": "找到 1 个位置",
- "chooseLocationsSearchBalloon": "输入位置名称以搜索位置。",
- "chooseLocationsSearchHint": "搜索位置...",
- "chooseLocationsSearchLabel": "位置",
- "chooseLocationsSearching": "正在搜索...",
- "chooseLocationsSelect": "选择",
- "chooseLocationsSelected": "已选择",
- "chooseLocationsSelectionBladeExcludedSelectorTitle": "选择",
- "chooseLocationsSelectionBladeIncludedSelectorTitle": "选择",
- "chooseLocationsSingular": "{0} 和另外 1 个",
- "chooseLocationsTooMany": "比可以显示的结果更多。 请使用搜索框进行筛选。",
- "claimProviderAddCommandText": "新建自定义控件",
- "claimProviderAddNewBladeTitle": "新建自定义控件",
- "claimProviderDeleteCommand": "删除",
- "claimProviderDeleteDescription": "是否确实要删除“{0}”? 此操作无法撤消。",
- "claimProviderDeleteTitle": "是否确定?",
- "claimProviderEditInfoText": "输入声明提供程序提供的自定义控件的 JSON。",
- "claimProviderNotificationCreateDescription": "正在创建名为“{0}”的自定义控件",
- "claimProviderNotificationCreateFailedDescription": "创建自定义控件“{0}”失败。请稍后重试。",
- "claimProviderNotificationCreateFailedTitle": "未能创建自定义控件",
- "claimProviderNotificationCreateSuccessDescription": "已创建名为“{0}”的自定义控件",
- "claimProviderNotificationCreateSuccessTitle": "已创建“{0}”",
- "claimProviderNotificationCreateTitle": "正在创建“{0}”",
- "claimProviderNotificationDeleteDescription": "正在删除名为“{0}”的自定义控件",
- "claimProviderNotificationDeleteFailedDescription": "删除自定义控件“{0}”失败。请稍后重试。",
- "claimProviderNotificationDeleteFailedTitle": "未能删除自定义控件",
- "claimProviderNotificationDeleteSuccessDescription": "已删除名为“{0}”的自定义控件",
- "claimProviderNotificationDeleteSuccessTitle": "已删除“{0}”",
- "claimProviderNotificationDeleteTitle": "正在删除“{0}”",
- "claimProviderNotificationUpdateDescription": "正在更新名为“{0}”的自定义控件",
- "claimProviderNotificationUpdateFailedDescription": "更新自定义控件“{0}”失败。请稍后重试。",
- "claimProviderNotificationUpdateFailedTitle": "未能更新自定义控件",
- "claimProviderNotificationUpdateSuccessDescription": "已更新名为“{0}”的自定义控件",
- "claimProviderNotificationUpdateSuccessTitle": "已更新“{0}”",
- "claimProviderNotificationUpdateTitle": "正在更新“{0}”",
- "claimProviderValidationAppIdInvalid": "\"AppId\" 值无效。请检查并重试。",
- "claimProviderValidationClientIdMissing": "数据缺少 \"ClientId\" 值。请检查并重试。",
- "claimProviderValidationControlClaimsRequestedMissing": "\"Control\" 缺少 \"ClaimsRequested\" 值。请检查并重试。",
- "claimProviderValidationControlClaimsRequestedTypeMissing": "\"ClaimsRequested\" 项缺少 \"Type\" 值。请检查并重试。",
- "claimProviderValidationControlIdAlreadyExists": "\"Control\" \"Id\" 值已存在。请检查并重试。",
- "claimProviderValidationControlIdMissing": "\"Control\" 缺少 \"Id\" 值。请检查并重试。",
- "claimProviderValidationControlIdReferencedInExistingPolicy": "无法删除 \"Control\" \"Id\" 值,因为现有策略中引用了该值。请首先将其从策略中删除。",
- "claimProviderValidationControlIdTooManyControls": "\"Control\" 属性包含过多控件。请检查并重试。",
- "claimProviderValidationControlIdValueReserved": "\"Control\" \"Id\" 值是保留关键字,请使用其他 ID。",
- "claimProviderValidationControlNameAlreadyExists": "\"Control\" \"Name\" 值已存在。请检查并重试。",
- "claimProviderValidationControlNameMissing": "\"Control\" 缺少 \"Name\" 值。请检查并重试。",
- "claimProviderValidationControlsMissing": "数据缺少 \"Controls\" 值。请检查并重试。",
- "claimProviderValidationDiscoveryUrlMissing": "数据缺少 \"DiscoveryUrl\" 值。请检查并重试。",
- "claimProviderValidationInvalid": "提供的数据无效。请检查并重试。",
- "claimProviderValidationInvalidJsonDefinition": "无法保存自定义控件。请检查 JSON 文本并重试。",
- "claimProviderValidationNameAlreadyExists": "\"Name\" 值已存在。请检查并重试。",
- "claimProviderValidationNameMissing": "数据缺少 \"Name\" 值。请检查并重试。",
- "claimProviderValidationUnknown": "验证提供的数据时出现未知错误。请检查并重试。",
- "claimProvidersNone": "没有自定义控件",
- "claimProvidersSearchPlaceholder": "搜索控件。",
- "classicPoilcyFilterTitle": "显示",
- "classicPolicyAllPlatforms": "所有平台",
- "classicPolicyClientAppBrowserAndNative": "浏览器、移动应用和桌面客户端",
- "classicPolicyCloudAppTitle": "云应用程序",
- "classicPolicyControlAllow": "允许",
- "classicPolicyControlBlock": "阻止",
- "classicPolicyControlBlockWhenNotAtWork": "不工作时阻止访问",
- "classicPolicyControlRequireCompliantDevice": "需要兼容设备",
- "classicPolicyControlRequireDomainJoinedDevice": "需要已加入域的设备",
- "classicPolicyControlRequireMfa": "要求多重身份验证",
- "classicPolicyControlRequireMfaWhenNotAtWork": "不工作时要求多重身份验证",
- "classicPolicyDeleteCommand": "删除",
- "classicPolicyDeleteFailTitle": "未能删除经典策略",
- "classicPolicyDeleteInProgressTitle": "正在删除经典策略",
- "classicPolicyDeleteSuccessTitle": "已删除经典策略",
- "classicPolicyDetailBladeTitle": "详细信息",
- "classicPolicyDisableCommand": "禁用",
- "classicPolicyDisableConfirmation": "确定要禁用“{0}”吗? 此操作无法被撤消。",
- "classicPolicyDisableFailDescription": "未能禁用“{0}”",
- "classicPolicyDisableFailTitle": "未能禁用经典策略",
- "classicPolicyDisableInProgressDescription": "正在禁用“{0}”",
- "classicPolicyDisableInProgressTitle": "正在禁用经典策略",
- "classicPolicyDisableSuccessDescription": "已成功禁用“{0}”",
- "classicPolicyDisableSuccessTitle": "已禁用经典策略",
- "classicPolicyEasSupportedPlatforms": "Exchange ActiveSync 支持的平台",
- "classicPolicyEasUnsupportedPlatforms": "Exchange ActiveSync 不支持的平台",
- "classicPolicyExcludedPlatformsTitle": "排除的设备平台",
- "classicPolicyFilterAll": "所有策略",
- "classicPolicyFilterDisabled": "禁用的策略",
- "classicPolicyFilterEnabled": "启用的策略",
- "classicPolicyIncludeExcludeMembersDescription": "通过排除组,可以分阶段迁移策略。",
- "classicPolicyIncludeExcludeMembersTitle": "包括/排除组",
- "classicPolicyIncludedPlatformsTitle": "包含的设备平台",
- "classicPolicyManualMigrationMessage": "此策略需要手动进行迁移。",
- "classicPolicyMigrateCommand": "迁移",
- "classicPolicyMigrateConfirmation": "确定要迁移“{0}”吗? 此策略仅可迁移一次。",
- "classicPolicyMigrateFailDescription": "未能迁移“{0}”",
- "classicPolicyMigrateFailTitle": "未能迁移经典策略",
- "classicPolicyMigrateInProgressDescription": "正在迁移“{0}”",
- "classicPolicyMigrateInProgressTitle": "正在迁移经典策略",
- "classicPolicyMigrateRecommendText": "建议: 迁移到新的 Azure 门户策略。",
- "classicPolicyMigrateSuccessTitle": "已成功迁移经典策略",
- "classicPolicyMigratedSuccessDescription": "现在可在“策略”下管理此经典策略。",
- "classicPolicyMigratedSuccessDescriptionMultiple": "此经典策略已迁移为 {0} 个新策略。可以在“策略”下管理这些新策略。",
- "classicPolicyNoEditPermissionMsg": "你没有权限编辑此策略。只有全局管理员和安全管理员可以编辑此策略。请单击此处了解详细信息。",
- "classicPolicySaveFailDescription": "未能保存“{0}”",
- "classicPolicySaveFailTitle": "未能保存经典策略",
- "classicPolicySaveInProgressDescription": "正在保存“{0}”",
- "classicPolicySaveInProgressTitle": "正在保存经典策略",
- "classicPolicySaveSuccessDescription": "已成功保存“{0}”",
- "classicPolicySaveSuccessTitle": "已保存经典策略",
- "clientAppBladeLegacyInfoBanner": "目前不支持旧身份验证",
- "clientAppBladeLegacyUpsellBanner": "阻止不受支持的客户端应用(预览版)",
- "clientAppBladeTitle": "客户端应用",
- "clientAppDescription": "选择适用于该策略的客户端应用",
- "clientAppExchangeActiveSync": "Exchange ActiveSync",
- "clientAppExchangeDisabledInfo": "仅选中 Exchange Online 云应用时 Exchange ActiveSync 才可用。单击此处了解详细信息",
- "clientAppExchangeWarning": "Exchange ActiveSync 目前不支持所有其他条件",
- "clientAppLearnMore": "控制用户对不使用新式身份验证的特定客户端应用程序的访问。",
- "clientAppLegacyHeader": "旧身份验证客户端",
- "clientAppMobileDesktop": "移动应用和桌面客户端",
- "clientAppModernHeader": "新式验证客户端",
- "clientAppOnlySupportedPlatforms": "将策略仅应用到受支持的平台",
- "clientAppSelectSpecificClientApps": "选择客户端应用",
- "clientAppV2BladeTitle": "客户端应用(预览版)",
- "clientAppWebBrowser": "浏览器",
- "clientAppsSelectedLabel": "{0} 已包含",
- "clientTypeBrowser": "浏览器",
- "clientTypeEas": "Exchange ActiveSync 客户端",
- "clientTypeEasInfo": "只使用旧身份验证的 Exchange ActiveSync 客户端。",
- "clientTypeModernAuth": "新式身份验证客户端",
- "clientTypeOtherClients": "其他客户端",
- "clientTypeOtherClientsInfo": "这包括旧版 Office 客户端和其他邮件协议(POP、IMAP、SMTP 等)。[了解更多信息][1]\n[1]: https://aka.ms/caclientapps\n",
- "cloudAppCountDiffBannerText": "已从目录中删除此策略中配置的 {0} 个云应用,但这不会影响此策略中的其他应用。下次更新策略的应用程序部分时,将从中自动移除已删除的应用。",
- "cloudAppsSelectionBladeAllMicrosoftApps": "所有 Microsoft 应用",
- "cloudAppsSelectionExcludeAllMicrosoftClients": "允许 Microsoft 云、桌面和移动应用(预览版)",
- "cloudappsSelectionBladeAllCloudapps": "所有云应用",
- "cloudappsSelectionBladeExcludeDescription": "选择要从策略中排除的云应用",
- "cloudappsSelectionBladeExcludedSelectorTitle": "选择已排除的云应用",
- "cloudappsSelectionBladeIncludeDescription": "选择此策略将应用到的云应用",
- "cloudappsSelectionBladeIncludedSelectorTitle": "选择",
- "cloudappsSelectionBladeSelectedCloudapps": "选择应用",
- "cloudappsSelectorInfoBallonText": "用户为完成工作而访问的服务。例如,\"Salesforce\"",
- "cloudappsSelectorUserPlural": "{0} 个应用",
- "cloudappsSelectorUserSingular": "1 个应用",
- "conditionLabelMulti": "已选择 {0} 个条件",
- "conditionLabelOne": "已选择 1 个条件",
- "conditionalAccessBladeTitle": "条件访问",
- "conditionsNotSelectedLabel": "未配置",
- "conditionsReqPwSet": "一些选项不可用,因为当前选择的是“需要更改密码”授权",
- "configureCasText": "配置 Cloud App Security",
- "configureCustomControlsText": "配置自定义策略",
- "controlLabelMulti": "已选择 {0} 个控件",
- "controlLabelOne": "已选择 1 个控件",
- "controlValidatorText": "请至少选择一个控件",
- "controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
- "controlsDeviceComplianceInfoBubble": "设备必须符合 Intune。如果设备不合规,系统将提示用户使设备合规",
- "controlsDomainJoinedInfoBubble": "设备必须已建立混合 Azure AD 联接。",
- "controlsMamInfoBubble": "设备必须使用这些核准的客户端应用程序。",
- "controlsMfaInfoBubble": "用户必须完成其他安全性要求,如电话联络和短信",
- "controlsOrAndInfoBubble": "ControlsOrAndInfoBubble",
- "controlsRequireCompliantAppInfoBubble": "设备必须使用受策略保护的应用。",
- "controlsRequirePasswordResetInfoBubble": "需要更改密码以降低用户风险。此选项还要求进行多重身份验证。无法使用其他控制。",
- "countriesRadiobuttonInfoBalloonContent": "发起登录所在的国家/地区取决于用户的 IP 地址。",
- "createNewVpnCert": "新建证书",
- "createdTimeLabel": "创建时间",
- "customRoleLabel": "自定义角色(不支持)",
- "dateRangeTypeLabel": "日期范围",
- "daysOfWeekPlaceholderText": "筛选星期几",
- "daysOfWeekTypeLabel": "星期几",
- "deletePolicyNoLicenseText": "现在可以删除此策略。删除后,将无法重新创建它,直到拥有所需的许可证。",
- "descriptionContentForControlsAndOr": "对于多个控件",
- "devicePlatform": "设备平台",
- "devicePlatformConditionHelpDescription": "将策略应用于所选的设备平台。\n[了解更多][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2044750",
- "devicePlatformInclude": "{0} 已包含",
- "devicePlatformIncludeExclude": "已排除 {0} 和 {1}",
- "devicePlatformNoSelectionError": "选择的设备平台要求必须选择一个子项目。",
- "devicePlatformsNone": "无",
- "deviceSelectionBladeExcludeDescription": "选择要从策略中排除的平台",
- "deviceSelectionBladeIncludeDescription": "选择要包括在此策略中的设备平台",
- "deviceStateAll": "所有设备状态",
- "deviceStateCompliant": "标记为“符合”的设备",
- "deviceStateCompliantInfoContent": "将从此策略的评估中排除符合 Intune 的设备;例如,如果策略阻止访问,它将阻止所有设备(符合 Intune 的设备除外)。",
- "deviceStateConditionConfigureInfoContent": "基于设备状态配置策略",
- "deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Hybrid Azure AD joined' or 'marked as compliant'.\n '{0}' has been deprecated. Use '{1}' instead.",
- "deviceStateConditionSelectorLabel": "设备状态(预览版)",
- "deviceStateDomainJoined": "设备已建立混合 Azure AD 联接",
- "deviceStateDomainJoinedInfoContent": "将从此策略的评估中排除已建立混合 Azure AD 联接的设备;例如,如果策略阻止访问,它将阻止所有设备(已建立混合 Azure AD 联接的设备除外)。",
- "deviceStateDomainJoinedInfoLinkText": "了解详细信息。",
- "deviceStateExcludeDescription": "选择用于从策略中排除设备的设备状态条件。",
- "deviceStateIncludeAndExcludeOneLabel": "{0} 并排除 {1}",
- "deviceStateIncludeAndExcludeTwoLabel": "{0} 并排除 {1} 和 {2}",
- "directoryRoleInfoContent": "将策略分配给内置目录角色。",
- "directoryRolesLabel": "目录角色",
- "discardbutton": "放弃",
- "downloadDefaultFileName": "IP 范围",
- "downloadExampleFileName": "示例",
- "downloadExampleHeader": "此示例文件含可接受的数据种类的展示。以 # 开头的行将被忽视。",
- "endDatePickerLabel": "端",
- "endTimePickerLabel": "结束时间",
- "enterCountryText": "IP 地址和国家/地区是捆绑计算的。选择国家/地区。",
- "enterIpText": "IP 地址和国家/地区是捆绑计算的。输入 IP 地址。",
- "enterUserText": "未选择用户。选择一个用户。",
- "evaluationResult": "计算结果",
- "exchangeActiveSyncSelectedLabel": "Exchange ActiveSync ",
- "exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "仅 Exchange ActiveSync 和受支持的平台",
- "excludeAllTrustedLocationSelectorText": "所有可信位置",
- "featureRequiresP2": "此功能需要 Azure AD Premium 2 许可证。",
- "friday": "星期五",
- "grantControls": "授权控件",
- "gridNetworkTrusted": "受信任",
- "gridPolicyCreatedDateTime": "创建日期",
- "gridPolicyEnabled": "已启用",
- "gridPolicyModifiedDateTime": "修改日期",
- "gridPolicyName": "策略名称",
- "gridPolicyState": "状态",
- "groupSelectionBladeExcludeDescription": "选择要从策略中排除的组",
- "groupSelectionBladeExcludedSelectorTitle": "选择排除的组",
- "groupSelectionBladeSelect": "选择组",
- "groupSelectorInfoBallonText": "应用策略的目录中的组。例如,“试点组”",
- "groupsSelectionBladeTitle": "组",
- "helpCommonScenariosText": "是否有兴趣了解常见方案?",
- "helpCondition1": "当某用户位于公司网络之外时",
- "helpCondition2": "当“经理”组中的用户登录时",
- "helpConditionsTitle": "条件",
- "helpControl1": "他们被要求使用多重身份验证进行登录",
- "helpControl2": "他们需要使用 Intune 兼容或加入域的设备",
- "helpControlsTitle": "控制",
- "helpIntroText": "通过条件访问,可以在特定条件发生时强制执行访问要求。让我们举几个例子",
- "helpIntroTitle": "什么是条件访问?",
- "helpLearnMoreText": "想要深入了解条件访问吗?",
- "helpStartStep1": "单击“+新建策略”创建首个策略",
- "helpStartStep2": "指定策略条件和控制",
- "helpStartStep3": "完成后,别忘了“启用策略并创建”步骤",
- "helpStartTitle": "开始",
- "highRisk": "高",
- "includeAndExcludeAppsTextFormat": "包括: {0}。排除: {1}。",
- "includeAppsTextFormat": "包括: {0}。",
- "includeUnknownAreasCheckboxInfoBalloonContent": "未知区域是指无法映射到某国家/地区的 IP 地址。",
- "includeUnknownAreasCheckboxLabel": "包含未知区域",
- "infoCommandLabel": "信息",
- "invalidCertDuration": "无效的证书持续时间",
- "invalidIpAddress": "值必须是有效的 IP 地址",
- "invalidUriErrorMsg": "请输入有效的 URI。例如 uri:contoso.com:acr",
- "iosDisplayName": "iOS",
- "linuxDisplayName": "Linux",
- "linuxDisplayNamePreview": "Linux (预览)",
- "loadAll": "加载全部",
- "loading": "正在加载...",
- "locationConfigureNamedLocationsText": "配置所有受信任位置",
- "locationConfigureNamedLocationsUri": "{0}/usermanagement/mfasettings.aspx?tenantid={1}&culture={2}",
- "locationNameTooLongError": "位置名称过长。不得超过 256 个字符",
- "locationSelectionBladeExcludeDescription": "选择要从策略中排除的位置",
- "locationSelectionBladeIncludeDescription": "选择要包括在此策略中的位置",
- "locationsAllLocationsLabel": "任何位置",
- "locationsAllNamedLocationsLabel": "所有受信任 IP",
- "locationsAllPrivateLinksLabel": "我的租户中的所有专用链接",
- "locationsIncludeExcludeLabel": "{0} 并排除所有受信任 IP",
- "locationsSelectedPrivateLinksLabel": "所选专用链接",
- "lowRisk": "低",
- "macOsDisplayName": "macOS",
- "managePoliciesLicenseText": "要管理条件访问策略,组织需要 Azure AD Premium P1 或 P2。",
- "markAsTrustedCheckboxInfoBalloonContent": "从可信位置登录可降低用户的登录风险。如果知道输入的 IP 范围已建立且在组织中可信,则仅将此位置标记为可信位置。",
- "markAsTrustedCheckboxLabel": "标记为可信位置",
- "mediumRisk": "中",
- "memberSelectionCommandRemove": "删除",
- "menuItemClaimProviderControls": "自定义控件(预览版)",
- "menuItemClassicPolicies": "经典策略",
- "menuItemInsightsAndReporting": "见解和报告",
- "menuItemManage": "管理",
- "menuItemNamedLocationsPreview": "命名位置(预览)",
- "menuItemNamedNetworks": "命名位置",
- "menuItemPolicies": "策略",
- "menuItemTermsOfUse": "使用条款",
- "modifiedTimeLabel": "修改时间",
- "monday": "星期一",
- "nameLabel": "名称",
- "namedLocationCountryInfoBanner": "只有 IPv4 地址映射到国家/地区。IPv6 地址包含在未知的国家/地区中。",
- "namedLocationTypeCountry": "国家/地区",
- "namedLocationTypeLabel": "使用以下内容定义位置:",
- "namedLocationUpsellBanner": "此视图已弃用。转到新的和改进的“已命名位置”视图。",
- "namedLocationsHelpDescription": "Azure AD 安全报告使用命名位置来减少误报和 Azure AD 条件访问策略。\n[了解更多][1]\n[1]: https://aka.ms/namedlocationupdate",
- "namedNetworkAddIpRanges": "添加新的 IP 范围(示例: 40.77.182.32/27)",
- "namedNetworkCountryNeeded": "需至少选择一个国家/地区",
- "namedNetworkDeleteCommand": "删除",
- "namedNetworkDeleteDescription": "是否确实要删除“{0}”? 此操作无法撤消。",
- "namedNetworkDeleteTitle": "是否确定?",
- "namedNetworkDownloadIpRange": "下载",
- "namedNetworkInvalidRange": "值必须是有效的 IP 范围。",
- "namedNetworkIpRangeNeeded": "至少需要一个有效的 IP 范围",
- "namedNetworkIpRangesDescriptionContent": "配置你组织的 IP 范围",
- "namedNetworkIpRangesTab": "IP 范围",
- "namedNetworkListAdd": "新建位置",
- "namedNetworkListConfigureTrustedIps": "配置 MFA 受信任的 IP",
- "namedNetworkNameDescription": "例如:“Redmond 办公室”",
- "namedNetworkNameInvalid": "所提供的名称无效。",
- "namedNetworkNameRequired": "必须为此位置提供名称。",
- "namedNetworkNoIpRanges": "无 IP 范围",
- "namedNetworkNotificationCreateDescription": "正在创建名为“{0}”的位置",
- "namedNetworkNotificationCreateFailedDescription": "创建位置“{0}”失败。请稍后重试。",
- "namedNetworkNotificationCreateFailedTitle": "未能创建位置",
- "namedNetworkNotificationCreateSuccessDescription": "已创建的名为“{0}”的位置",
- "namedNetworkNotificationCreateSuccessTitle": "已创建“{0}”",
- "namedNetworkNotificationCreateTitle": "正在创建“{0}”",
- "namedNetworkNotificationDeleteDescription": "正在删除名为“{0}”的位置",
- "namedNetworkNotificationDeleteFailedDescription": "删除位置“{0}”失败。请稍后重试。",
- "namedNetworkNotificationDeleteFailedTitle": "未能删除位置",
- "namedNetworkNotificationDeleteSuccessDescription": "已删除的名为“{0}”的位置",
- "namedNetworkNotificationDeleteSuccessTitle": "已删除“{0}”",
- "namedNetworkNotificationDeleteTitle": "正在删除“{0}”",
- "namedNetworkNotificationUpdateDescription": "正在更新名为“{0}”的位置",
- "namedNetworkNotificationUpdateFailedDescription": "更新位置“{0}”失败。请稍后重试。",
- "namedNetworkNotificationUpdateFailedTitle": "未能更新位置",
- "namedNetworkNotificationUpdateSuccessDescription": "已更新的名为“{0}”的位置",
- "namedNetworkNotificationUpdateSuccessTitle": "已更新“{0}”",
- "namedNetworkNotificationUpdateTitle": "正在更新“{0}”",
- "namedNetworkSearchPlaceholder": "搜索位置。",
- "namedNetworkUploadFailedDescription": "分析提供的文件时出现错误。请确保上传纯文本文件且每行都为 CIDR 格式。",
- "namedNetworkUploadFailedTitle": "未能分析“{0}”",
- "namedNetworkUploadInProgressDescription": "尝试分析“{0}”中的有效 CIDR 值。",
- "namedNetworkUploadInProgressTitle": "正在分析“{0}”",
- "namedNetworkUploadInvalidDescription": "“{0}”过大或采用的格式无效。",
- "namedNetworkUploadInvalidTitle": "“{0}”无效",
- "namedNetworkUploadIpRange": "上载",
- "namedNetworkUploadSuccessDescription": "已分析 {0} 行。{1} 行格式错误。跳过 {2} 行。",
- "namedNetworkUploadSuccessTitle": "已完成分析“{0}”",
- "namedNetworksAdd": "新命名位置",
- "namedNetworksConditionHelpDescription": "根据用户的实际位置控制用户访问。\n[了解更多][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
- "namedNetworksExcludeLabel": "{0},排除 {1} 项",
- "namedNetworksHelpDescription": "Azure AD 安全报告使用命名位置来减少误报和 Azure AD 条件访问策略。\n[了解更多][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
- "namedNetworksIncludeLabel": "{0} 已包含",
- "namedNetworksNone": "找不到命名位置。",
- "namedNetworksTitle": "配置位置",
- "namednetworkExceedingSizeErrorBladeTitle": "错误详细信息",
- "namednetworkExceedingSizeErrorDetailText": "单击此处获取更多详细信息。",
- "namednetworkExceedingSizeErrorMessage": "已超出命名位置所允许的最大存储空间。请使用更短的列表重试。单击此处以查看详细信息。",
- "newCertName": "新证书",
- "noPolicyRowMessage": "无策略",
- "noSPSelected": "未选择任何服务主体",
- "noUpdatePermissionMessage": "你无权更新这些设置。请联系你的全局管理员以获取访问权限。",
- "noUserSelected": "未选择用户",
- "noneRisk": "无风险",
- "office365Description": "这些应用包括 Microsoft Flow、Microsoft Forms、Microsoft Teams、Office 365 Exchange Online、Office 365 SharePoint Online、Office 365 Yammer 和其他应用。",
- "office365InfoBox": "所选应用中至少有一个应用是 Office 365 的一部分。建议改为在 Office 365 应用上设置策略。",
- "oneUserSelected": "已选择 1 个用户",
- "onlyGlobalAdminsCanSaveThisPolicyConfig": "仅全局管理员可保存此策略。",
- "or": "{0} 或 {1}",
- "pickerDoneCommand": "完成",
- "policiesBladeAdPremiumUpsellBannerText": "借助 Azure AD Premium 创建自己的策略,并面向云应用、登录风险和设备平台等特定条件",
- "policiesBladeTitle": "策略",
- "policiesBladeTitleWithAppName": "策略: {0}",
- "policiesDisabledBannerText": "禁止对具有链接登录属性的应用程序创建和编辑策略。",
- "policiesHitMaxLimitStatusBarMessage": "你已达到此租户的策略数上限。请先删除一些策略,再创建其他策略。",
- "policyAssignmentsSection": "分配",
- "policyBlockAllInfoBox": "配置的策略将阻止所有用户,因此不受支持。查看分配和控件。如果要保存此策略,请排除当前用户 {0}。",
- "policyCloudAppsDisplayTextAllApp": "所有应用",
- "policyCloudAppsLabel": "云应用",
- "policyConditionClientAppDescription": "用户用于访问云应用的软件。例如,“浏览器”",
- "policyConditionClientAppV2Description": "用户用于访问云应用的软件。例如,“浏览器”",
- "policyConditionDevicePlatform": "设备平台",
- "policyConditionDevicePlatformDescription": "用户从其登录的平台。例如 \"iOS\"",
- "policyConditionLocation": "位置",
- "policyConditionLocationDescription": "用户从其登录的位置(使用 IP 地址范围确定)",
- "policyConditionSigninRisk": "登录风险",
- "policyConditionSigninRiskDescription": "除用户本人之外的其他人登录的可能性。风险级别可为高、中或低。需要 Azure AD Premium 2 许可证。",
- "policyConditionUserRisk": "用户风险",
- "policyConditionUserRiskDescription": "配置强制执行策略所需的用户风险级别",
- "policyConditioniClientApp": "客户端应用",
- "policyConditioniClientAppV2": "客户端应用(预览版)",
- "policyControlAllowAccessDisplayedName": "授予访问权限",
- "policyControlAuthenticationStrengthDisplayedName": "需要身份验证强度(预览版)",
- "policyControlBladeTitle": "授权",
- "policyControlBlockAccessDisplayedName": "阻止访问",
- "policyControlCompliantDeviceDisplayedName": "需要标记为兼容的设备",
- "policyControlContentDescription": "控制访问强制以阻止或授予访问权限。",
- "policyControlInfoBallonText": "阻止访问或选择允许访问需要满足的其他要求",
- "policyControlMfaChallengeDisplayedName": "要求多重身份验证",
- "policyControlRequireCompliantAppDisplayedName": "需要应用保护策略",
- "policyControlRequireDomainJoinedDisplayedName": "需要已建立混合 Azure AD 联接的设备",
- "policyControlRequireMamDisplayedName": "需要核准的客户端应用",
- "policyControlRequiredPasswordChangeDisplayedName": "需要密码更改",
- "policyControlSelectAuthStrength": "需要身份验证强度",
- "policyControlsNoControlsSelected": "已选择 0 个控件",
- "policyControlsSection": "访问控制",
- "policyCreatBladeTitle": "新建",
- "policyCreateButton": "创建",
- "policyCreateFailedMessage": "错误: {0}",
- "policyCreateFailedTitle": "未能创建“{0}”",
- "policyCreateInProgressTitle": "正在创建“{0}”",
- "policyCreateSuccessMessage": "已成功创建“{0}”。如果将“启用策略”设置为“开启”,策略将在几分钟后启用。",
- "policyCreateSuccessTitle": "已成功创建“{0}”",
- "policyDeleteConfirmation": "是否确实要删除“{0}”? 此操作无法撤消。",
- "policyDeleteFailTitle": "未能删除“{0}”",
- "policyDeleteInProgressTitle": "正在删除“{0}”",
- "policyDeleteSuccessTitle": "已成功删除“{0}”",
- "policyEnforceLabel": "启用策略",
- "policyErrorCannotSetSigninRisk": "你没有权限保存具有登录风险条件的策略。",
- "policyErrorNoPermission": "无权保存策略。请联系全局管理员。",
- "policyErrorUnknown": "出现问题,请稍后重试。",
- "policyFallbackWarningMessage": "无法使用 MS Graph 创建或更新“{0}”,这导致回退到 AD Graph。请调查以下场景,因为在不兼容条件下调用 MS Graph 的策略终结点时很可能存在 Bug。",
- "policyFallbackWarningTitle": "创建或更新“{0}”部分成功",
- "policyNameCannotBeEmpty": "策略名称不能为空",
- "policyNameDevice": "设备策略",
- "policyNameFormat": "[{0}] {1}",
- "policyNameMam": "移动应用管理策略",
- "policyNameMfaLocation": "MFA 和位置策略",
- "policyNamePlaceholderText": "示例:“设备合规性应用策略”",
- "policyNameTooLongError": "策略名称过长。不得超过 256 个字符",
- "policyOff": "关闭",
- "policyOn": "打开",
- "policyReportOnly": "仅报告",
- "policyReviewSection": "审阅",
- "policySaveButton": "保存",
- "policyStatusIconDescription": "已启用策略",
- "policyStatusIconEnabled": "“已启用”状态图标",
- "policyTemplateName1": "对 {0} 浏览器访问使用应用强制实施的限制",
- "policyTemplateName2": "仅在托管设备上允许 {0} 访问",
- "policyTemplateName3": "从“连续访问评估”设置迁移的策略",
- "policyTriggerRiskSpecific": "选择特定的风险级别",
- "policyTriggersInfoBalloonText": "定义将应用策略的条件。例如,“位置”",
- "policyTriggersNoConditionsSelected": "已选择 0 个条件",
- "policyTriggersSelectorLabel": "条件",
- "policyUpdateFailedMessage": "错误: {0}",
- "policyUpdateFailedTitle": "未能更新 {0}",
- "policyUpdateInProgressTitle": "正在更新 {0}",
- "policyUpdateSuccessMessage": "已成功更新 {0}。如果将“启用策略”设置为“开启”,策略将在几分钟后启用。",
- "policyUpdateSuccessTitle": "已成功更新 {0}",
- "primaryCol": "主",
- "privateLinkLabel": "Azure AD 专用链接",
- "reportOnlyInfoBox": "仅报告模式:在登录时评估和记录策略,但不会影响用户。",
- "requireAllControlsText": "需要所有已选控件",
- "requireCompliantDevice": "需要兼容设备",
- "requireDomainJoined": "需要加入域的设备",
- "requireMFA": "需要多重身份验证",
- "requireOneControlText": "需要某一已选控件",
- "resetFilters": "重置筛选器",
- "sPRequired": "需要服务主体",
- "sPSelectorInfoBalloon": "要测试的用户或服务主体",
- "saturday": "星期六",
- "searchTextTooLongError": "搜索文本太长。最多只能包含 256 个字符",
- "securityDefaultsPolicyName": "安全默认值",
- "securityDefaultsTextMessage": "必须禁用安全默认值才能启用条件访问策略。",
- "securityDefaultsWarningMessage": "看起来你即将管理组织的安全配置。真棒! 必须先禁用安全默认值,然后才能启用条件访问策略。",
- "selectDevicePlatforms": "选择设备平台",
- "selectNamedNetworksSubtitle": "",
- "selectNamedNetworksTitle": "选择位置",
- "selectedSP": "所选服务主体",
- "servicePrincipalDataGridAria": "可用服务主体列表",
- "servicePrincipalDropDownLabel": "此策略适用于哪些内容?",
- "servicePrincipalInfoBox": "由于在策略分配中选择了“{0}”,部分条件不可用",
- "servicePrincipalRadioAll": "所有拥有的服务主体",
- "servicePrincipalRadioSelect": "选择服务主体",
- "servicePrincipalSelectionsAria": "所选服务主体网格",
- "servicePrincipalSelectorAria": "所选服务主体的列表",
- "servicePrincipalSelectorMultiple": "{0} 已选服务主体",
- "servicePrincipalSelectorSingle": "已选择 1 个服务主体",
- "servicePrincipalSpecificInc": "包括的特定服务主体",
- "servicePrincipals": "服务主体",
- "sessionControlBladeTitle": "会话",
- "sessionControlDescriptionContent": "根据会话控制来控制访问,以在特定的云应用程序中启用有限体验。",
- "sessionControlDisableInfo": "此控件仅适用于支持的应用。目前支持应用强制实施限制的云应用只有 Office 365、Exchange Online 和 SharePoint Online。单击此处了解详细信息。",
- "sessionControlInfoBallonText": "可通过会话控件在云应用中获取有限体验。",
- "sessionControls": "会话控件",
- "sessionControlsAppEnforcedLabel": "使用应用强制实施的限制",
- "sessionControlsCasLabel": "使用条件访问应用控制",
- "sessionControlsSecureSignInLabel": "需要令牌绑定",
- "sharepointAppName": "SharePoint",
- "signinRiskDescription": "选择适用于此策略的登录风险级别",
- "signinRiskInclude": "包含 {0} 项",
- "signinRiskTriggerDescriptionContent": "选择登录风险级别",
- "singleTenantServicePrincipalInfoBallonText": "策略仅适用于贵组织所拥有的单个租户服务主体。单击此处了解详细信息",
- "specificSigninRiskLevelsOption": "选择特定登录风险级别",
- "specificUsersExcluded": "排除的特定用户",
- "specificUsersIncluded": "包括的特定用户",
- "specificUsersIncludedAndExcluded": "已排除和已添加特定用户",
- "startDatePickerLabel": "开始",
- "startFreeTrial": "启动免费试用版",
- "startTimePickerLabel": "开始时间",
- "sunday": "星期天",
- "testButton": "What If",
- "thumbprintCol": "指纹",
- "thursday": "星期四",
- "timeConditionAllTimesLabel": "任何时间",
- "timeConditionIntroText": "配置将应用此策略的时间",
- "timeConditionSelectorInfoBallonContent": "用户登录期间。例如,“星期三上午 9 点 - 下午 5 点太平洋标准时间”",
- "timeConditionSelectorLabel": "时间(预览版)",
- "timeConditionSpecificLabel": "特定时间",
- "timeSelectorAllTimesText": "任何时间",
- "timeSelectorSpecificTimesText": "配置的特定时间",
- "timeZoneDropdownInfoBalloonContent": "选择定义时间范围的时区。此策略将应用于所有时区的用户。例如,对于某用户为“星期三上午 9 点 - 下午 5 点”,而对于另一时区中的用户可能为“星期三上午 10 点 - 下午 6 点”。",
- "timeZoneDropdownLabel": "时区",
- "timeZoneDropdownPlaceholderText": "选择时区",
- "tooManyPoliciesDescription": "现在仅显示前 50 条策略,请单击此处查看所有策略",
- "tooManyPoliciesTitle": "找到超过 50 条策略",
- "trustedLocationStatusIconDescription": "可信位置",
- "trustedLocationStatusIconEnabled": "受信任状态图标",
- "tuesday": "星期二",
- "uploadInBadState": "无法上传指定的文件。",
- "upsellAppsDescription": "始终需要对敏感应用程序进行多重身份验证,或者仅从公司网络外部使用时才需要。",
- "upsellAppsTitle": "安全应用程序",
- "upsellBannerText": "获取免费的 Premium 试用版以使用此功能",
- "upsellDataDescription": "设备需要标记为符合或已建立混合 Azure AD 联接才能访问公司资源。",
- "upsellDataTitle": "安全数据",
- "upsellDescription": "条件访问提供了保护公司数据安全所需的控制和保护,同时允许员工从任何设备最有效地完成工作。例如,可以限制公司网络之外的访问,或限制访问符合合规性策略的设备。",
- "upsellRiskDescription": "需要对 Microsoft 机器学习系统检测到的风险事件进行多重身份验证。",
- "upsellRiskTitle": "防范风险",
- "upsellTitle": "条件访问",
- "upsellWhyTitle": "为什么要使用条件访问?",
- "userAppNoneOption": "无",
- "userNamePlaceholderText": "输入用户名",
- "userNotSetSeletorLabel": "已选择 0 个用户和组",
- "userOnlySelectionBladeExcludeDescription": "选择要从策略中排除的用户",
- "userOrGroupSelectionCountDiffBannerText": "已从目录中删除此策略中配置的 {0},但此操作不会影响此策略中的其他用户和组。下次更新策略时,将自动移除已删除的用户和/或组。",
- "userOrSPNotSetSelectorLabel": "已选择 0 个用户或工作负载标识",
- "userOrSPSelectionBladeTitle": "用户或工作负载标识",
- "userOrSPSelectorInfoBallonText": "应用策略的目录中的标识,包括用户、组和服务主体",
- "userRequired": "所需的用户",
- "userRiskErrorBox": "选择“需要更改密码”授权时,必须选择“用户风险”条件",
- "userSPRequired": "需要用户或服务主体",
- "userSPSelectorTitle": "用户或工作负载标识",
- "userSelectionBladeAllUsersAndGroups": "所有用户和组",
- "userSelectionBladeExcludeDescription": "选择从策略中排除的用户和组",
- "userSelectionBladeExcludeTabTitle": "排除",
- "userSelectionBladeExcludedSelectorTitle": "选择排除的用户",
- "userSelectionBladeIncludeDescription": "选择将应用此策略的用户",
- "userSelectionBladeIncludeTabTitle": "包括",
- "userSelectionBladeIncludedSelectorTitle": "选择",
- "userSelectionBladeSelectUsers": "选择用户",
- "userSelectionBladeSelectedUsers": "选择用户和组",
- "userSelectionBladeTitle": "用户和组",
- "userSelectorBladeTitle": "用户",
- "userSelectorExcluded": "{0} 已排除",
- "userSelectorGroupPlural": "{0} 组",
- "userSelectorGroupSingular": "1 个组",
- "userSelectorIncluded": "{0} 已包含",
- "userSelectorInfoBallonText": "应用策略的目录中的用户和组。例如,“试点组”",
- "userSelectorSelected": "已选择 {0}",
- "userSelectorTitle": "用户",
- "userSelectorUserAndGroup": "{0},{1}",
- "userSelectorUserPlural": "{0} 个用户",
- "userSelectorUserSingular": "1 个用户",
- "userSelectorWithExclusion": "{0} 和 {1}",
- "usersGroupsLabel": "用户和组",
- "viewApprovedAppsText": "请参阅核准客户端应用的列表",
- "viewCompliantAppsText": "请参阅受策略保护的客户端应用",
- "vpnBladeTitle": "VPN 连接",
- "vpnCertCreateFailedMessage": "错误: {0}",
- "vpnCertCreateFailedTitle": "无法创建 {0}",
- "vpnCertCreateInProgressTitle": "正在创建 {0}",
- "vpnCertCreateSuccessMessage": "已成功创建 {0}。",
- "vpnCertCreateSuccessTitle": "已成功创建 {0}",
- "vpnCertNoRowsMessage": "未找到任何 VPN 证书",
- "vpnCertUpdateFailedMessage": "错误: {0}",
- "vpnCertUpdateFailedTitle": "未能更新 {0}",
- "vpnCertUpdateInProgressTitle": "正在更新 {0}",
- "vpnCertUpdateSuccessMessage": "已成功更新 {0}。",
- "vpnCertUpdateSuccessTitle": "已成功更新 {0}",
- "vpnFeatureInfo": "有关 VPN 连接和条件访问的详细信息,请单击此处。",
- "vpnFeatureWarning": "在 Azure 门户中创建 VPN 证书后,Azure AD 将立即开始使用它来向 VPN 客户端颁发短生存期的证书。请务必将 VPN 证书立即部署到 VPN 服务器,以避免任何与 VPN 客户端凭据验证有关的问题,这一点非常重要。",
- "vpnMenuText": "VPN 连接",
- "vpncertDropdownDefaultOption": "持续时间",
- "vpncertDropdownInfoBalloonContent": "为要创建的证书选择持续时间",
- "vpncertDropdownLabel": "选择持续时间",
- "vpncertDropdownOneyearOption": "1 年",
- "vpncertDropdownThreeyearOption": "3 年",
- "vpncertDropdownTwoyearOption": "2 年",
- "wednesday": "星期三",
- "whatIfAppEnforcedControl": "使用应用强制实施的限制",
- "whatIfBladeDescription": "测试在某些情况下进行登录时条件访问对用户的影响。",
- "whatIfBladeTitle": "What If",
- "whatIfClassicPoliciesWarning": "此工具不评估经典策略。",
- "whatIfClientAppInfo": "用户用于签名的客户端应用。例如“浏览器”。",
- "whatIfCountry": "国家/地区",
- "whatIfCountryInfo": "用户登录时所处的国家/地区。",
- "whatIfDevicePlatformInfo": "用户正在从其登录的设备平台。",
- "whatIfDeviceStateInfo": "用户登录时的设备状态",
- "whatIfEnterIpAddress": "输入 IP 地址(示例: 40.77.182.32)",
- "whatIfErrorInvalidIpAddress": "指定了无效的 IP 地址。",
- "whatIfEvaResultApplication": "云应用",
- "whatIfEvaResultClientApps": "客户端应用",
- "whatIfEvaResultDevicePlatform": "设备平台",
- "whatIfEvaResultEmptyPolicy": "策略为空",
- "whatIfEvaResultInvalidCondition": "条件无效",
- "whatIfEvaResultInvalidPolicy": "策略无效",
- "whatIfEvaResultLocation": "位置",
- "whatIfEvaResultNotEnoughInformation": "信息不足",
- "whatIfEvaResultPolicyNotEnabled": "未启用策略",
- "whatIfEvaResultSignInRisk": "登录风险",
- "whatIfEvaResultUsers": "用户和组",
- "whatIfIpAddress": "IP 地址",
- "whatIfIpAddressInfo": "用户正在从其登录的 IP 地址。",
- "whatIfIpCountryInfoBoxText": "如果使用 IP 地址或国家/地区,则这两个字段将是必需字段,且应正确映射在一起。",
- "whatIfPolicyAppliesTab": "将应用的策略",
- "whatIfPolicyDoesNotApplyTab": "不应用的策略",
- "whatIfReasons": "不应用此策略的原因",
- "whatIfSelectClientApp": "选择客户端应用...",
- "whatIfSelectCountry": "选择国家/地区...",
- "whatIfSelectDevicePlatform": "选择设备平台...",
- "whatIfSelectPrivateLink": "选择专用链接...",
- "whatIfSelectServicePrincipalRisk": "选择服务主体风险...",
- "whatIfSelectSignInRisk": "选择登录风险...",
- "whatIfSelectType": "选择标识类型",
- "whatIfSelectUserRisk": "选择用户风险...",
- "whatIfServicePrincipalRiskInfo": "与服务主体关联的风险级别",
- "whatIfSignInRisk": "登录风险",
- "whatIfSignInRiskInfo": "登录相关风险级别",
- "whatIfUnknownAreas": "未知区域",
- "whatIfUserPickerLabel": "所选用户",
- "whatIfUserPickerNoRowsLabel": "未选择任何用户或服务主体",
- "whatIfUserRiskInfo": "与用户关联的风险级别",
- "whatIfUserSelectorInfo": "要测试的目录中的用户",
- "windows365InfoBox": "选择 Windows 365 将影响与云电脑和 Azure 虚拟桌面会话主机的连接。单击此处以了解详细信息。",
- "windowsDisplayName": "Windows",
- "windowsPhoneDisplayName": "Windows Phone",
- "workloadIdentities": "工作负载标识(预览)",
- "workloadIdentity": "工作负载标识"
- },
- "ApplicableDeviceType": {
- "iPad": "iPad",
- "iPhoneAndIPod": "iPhone 和 iPod"
- },
- "TAPSettings": {
- "AllowedDataIngestionLocations": {
- "label": "允许用户打开来自所选服务的数据",
- "tooltip": "选择用户可打开其中数据的应用程序存储服务。将阻止所有其他服务。如果不选择任何服务,将阻止用户打开数据。"
- },
- "AndroidBackup": {
- "label": "将组织数据备份到 Android 备份服务",
- "tooltip": "选择 {0} 会阻止将组织数据备份到 Android 备份服务。\r\n选择 {1} 则允许将组织数据备份到 Android 备份服务。\r\n个人或非托管数据不受影响。"
- },
- "AndroidBiometricAuthentication": {
- "label": "访问时使用生物特征而非 PIN",
- "tooltip": "选择用户可以使用哪些 Android 身份验证方法(如果有)来代替应用 PIN。"
- },
- "AndroidFingerprint": {
- "label": "访问时使用指纹而非 PIN (Android 6.0+)",
- "tooltip": "Android OS 使用指纹扫描对 Android 设备用户进行身份验证。此功能支持 Android 设备上的本机生物识别控件。不支持 OEM 特定生物识别设置,如 Samsung Pass。如果允许,必须使用本机生物识别控件在支持该控件的设备上访问该应用。"
- },
- "AndroidOverrideFingerprint": {
- "label": "超时后使用 PIN 覆盖指纹"
- },
- "AppPIN": {
- "label": "应用 PIN(设置了设备 PIN 时)",
- "tooltip": "如果未作要求,并且如果已在注册了 MDM 的设备上设置了设备 PIN,则访问应用时无需使用应用 PIN。
\r\n\r\n注意: Intune 无法使用 Android 上的第三方 EMM 解决方案检测设备注册。"
- },
- "BlockDataIngestionIntoOrganizationDocuments": {
- "label": "将数据打开到组织文档中",
- "tooltip1": "选择“阻止”以禁止在此应用中使用 “打开”选项或其他选项在帐户间共享数据。如果希望允许在此应用中使用“打开”和其他选项在帐户间共享数据,请选择“允许”。",
- "tooltip2": "设置为“阻止”时,可以配置“允许用户打开来自所选服务的数据”设置,以指定允许哪些服务使用组织数据位置。",
- "tooltip3": "注意: 仅当将“从其他应用接收数据”设置设为“策略托管应用”时,才仅强制实施此设置。
\r\n注意: 此设置并非适用于所有应用程序。有关详细信息,请参阅 {0}。",
- "tooltip4": "注意: 仅当将“从其他应用接收数据”设置设为“策略托管应用”时,才仅强制实施此设置。
\r\n注意: 此设置并非适用于所有应用程序。有关详细信息,请参阅 {0} 或 {0}。"
- },
- "ConnectToVpnOnLaunch": {
- "label": "在应用启动时启动 Microsoft Tunnel 连接",
- "tooltip": "应用启动时允许连接到 VPN"
- },
- "CredentialsForAccess": {
- "label": "用于访问的工作或学校帐户凭据",
- "tooltip": "如果有相应要求,须使用工作或学校凭据来访问策略托管应用。如果需要 PIN 或生物识别方法来访问应用,那么除此之外,仍需使用工作或学校帐户凭据。"
- },
- "CustomBrowserDisplayName": {
- "label": "非托管浏览器名称",
- "tooltip": "输入与“非托管浏览器 ID”关联的浏览器的应用程序名称。如果未安装指定的浏览器,则将对用户显示此名称。"
- },
- "CustomBrowserPackageId": {
- "label": "非托管浏览器 ID",
- "tooltip": "输入单个浏览器的应用程序 ID。来自策略托管应用程序的 Web 内容(http/s)将在指定的浏览器中打开。"
- },
- "CustomBrowserProtocol": {
- "label": "非托管浏览器协议",
- "tooltip": "为单个非托管浏览器输入协议。来自策略托管应用程序的 Web 内容(http/s)将在支持此协议的任意应用中打开。
\r\n \r\n注意: 仅包含协议前缀。如果浏览器需要 \"mybrowser://www.microsoft.com\" 形式的链接,请输入 \"mybrowser\"。
"
- },
- "CustomDialerAppDisplayName": {
- "label": "拨号器应用名称"
- },
- "CustomDialerAppPackageId": {
- "label": "拨号器应用包 ID"
- },
- "CustomDialerAppProtocol": {
- "label": "拨号器应用 URL 方案"
- },
- "Cutcopypaste": {
- "label": "限制在其他应用之间进行剪切、复制和粘贴",
- "tooltip": "在应用和设备上安装的其他已批准的应用之间剪切、复制和粘贴数据。选择完全阻止应用之前的这些操作、允许对任何应用执行这些操作或限制对组织管理的应用执行这些操作。
\r\n\r\n具有粘贴功能的策略托管应用可接受来自另一个应用的粘贴内容。但它禁止用户与外部共享其内容,除非是与托管应用进行共享。
"
- },
- "DialerRestrictionLevel": {
- "iosTooltip": "通常,当用户选择应用中的一个超链接电话号码时,系统将打开一个拨号器应用,其中预填充了该电话号码并准备呼叫。对于此设置,请选择从策略管理的应用启动时如何处理此类型的内容传输。为了使此设置生效,可能还需要其他步骤。首先,验证电话和电话提示是否已从“要豁免的精选应用”列表中删除。然后,确保该应用程序使用的是较高版本的 Intune SDK (版本 12.7.0+)。",
- "label": "将电信数据传输到",
- "tooltip": "通常,当用户在应用中选择超链接电话号码时,将打开拨号器应用,其中已预填充了该电话号码并可进行呼叫。对于此设置,请选择从策略管理的应用中启动此类内容传输时要如何对其进行处理。"
- },
- "EncryptData": {
- "label": "对组织数据进行加密",
- "link": "https://docs.microsoft.com/en-us/intune/app-protection-policy-settings-android#data-relocation-settings",
- "tooltip": "选择 {0} 会使用 Intune 应用层加密功能强制加密组织数据。
\r\n\r\n选择 {1} 则不使用 Intune 应用层加密功能强制加密组织数据。\r\n\r\n
\r\n注意: 有关 Intune 应用层加密功能的详细信息,请参阅 {2}。"
- },
- "EncryptDataAndroid": {
- "tooltip": "选择“必需”以对此应用中的工作或学校数据启用加密。Intune 使用 OpenSSL、256 位 AES 加密方案和 Android 密钥存储系统来安全加密应用数据。数据在文件 I/O 任务过程中同步加密。设备存储上的内容始终保持加密状态。SDK 将继续提供 128 位密钥支持,以兼容使用较旧 SDK 版本的内容和应用。
\r\n\r\n加密方法符合 FIPS 140-2。
"
- },
- "EncryptDataIos": {
- "tooltip1": "选择“必需”可启用此应用中工作或学校数据的加密。Intune 强制 iOS/iPadOS 设备加密在设备锁定时保护应用数据。应用程序可以选择使用 Intune APP SDK 加密加密应用数据。Intune APP SDK 使用 iOS/iPadOS 加密方法将 128 位 AES 加密应用于应用数据。",
- "tooltip2": "如果启用此设置,系统可能要求用户设置并使用 PIN 来访问其设备。如果无需设备 PIN 和加密,则系统会显示“你的组织要求你在启用设备 PIN 后才可访问此应用”消息,提示用户设置 PIN。",
- "tooltip3": "转到 Apple 官方文档,查看哪些 iOS 加密模块符合 FIPS 140-2 或待 FIPS 140-2 认证。"
- },
- "EncryptDataOnEnrolledDevices": {
- "label": "对注册的设备上的组织数据进行加密",
- "tooltip": "选择 {0} 会在所有设备上使用 Intune 应用层加密功能强制加密组织数据。
\r\n\r\n选择 {1} 则不在所有已注册的设备上使用 Intune 应用层加密功能强制加密组织数据。"
- },
- "IOSBackup": {
- "label": "将组织数据备份到 iTunes 和 iCloud 备份",
- "tooltip": "选择 {0} 会阻止将组织数据备份到 iTunes 或 iCloud。\r\n选择 {1} 则允许将组织数据备份到 iTunes 或 iCloud。\r\n个人或非托管数据不受影响。"
- },
- "IOSFaceID": {
- "label": "访问时使用 Face ID 而非 PIN (iOS 11+/iPadOS)",
- "tooltip": "Face ID 使用面部识别技术在 iOS/iPadOS 设备上对用户进行身份验证。Intune 调用 LocalAuthentication API 对使用 Face ID 的用户进行身份验证。如果允许,必须使用 Face ID 在支持 Face ID 的设备上访问该应用。"
- },
- "IOSOverrideTouchId": {
- "label": "超时后使用 PIN 覆盖生物特征"
- },
- "IOSTouchId": {
- "label": "访问时使用 Touch ID 而非 PIN (iOS 8+/iPadOS)",
- "tooltip": "Touch ID 使用指纹识别技术在 iOS 设备上对用户进行身份验证。Intune 调用 LocalAuthentication API 对使用 Touch ID 的用户进行身份验证。如果允许,必须使用 Touch ID 在支持 Touch ID 的设备上访问该应用。"
- },
- "NotificationRestriction": {
- "label": "组织数据通知",
- "tooltip": "选择下述一个选项来指定如何为此应用和任何连接的设备(例如可穿戴设备)显示组织帐户的通知:
\r\n{0}: 不共享通知。
\r\n{1}: 不在通知中共享组织数据。如果不受应用程序支持,则阻止通知。
\r\n{2}: 共享所有通知。
\r\n 仅限 Android:\r\n 注意: 此设置不适用于所有应用程序。有关详细信息,请参阅 {3}
\r\n \r\n 仅限 iOS:\r\n注意: 此设置不适用于所有应用程序。有关详细信息,请参阅 {4}
"
- },
- "OpenLinksManagedBrowser": {
- "label": "限制与其他应用的 Web 内容传输",
- "tooltip": "选择下列选项之一,以指定此应用可在其中打开 Web 内容的应用:
\r\nEdge: 仅允许在 Edge 中打开 Web 内容
\r\n非托管浏览器: 仅允许在由“非托管浏览器协议”设置定义的非托管浏览器中打开 Web 内容
\r\n任何应用: 允许在任何应用中打开 Web 链接
"
- },
- "OverrideBiometric": {
- "tooltip": "如果有相应要求,PIN 提示将覆盖生物计量提示,具体取决于超时时间(非活动状态分钟数)。如果不满足此超时值,将持续显示 生物计量提示。此超时值应大于“(非活动状态分钟数)分钟后重新检查访问要求”下指定的值。"
- },
- "PinAccess": {
- "label": "用于访问的 PIN",
- "tooltip": "如果有相应要求,须使用 PIN 访问策略托管应用。用户第一次通过工作或学校帐户打开应用时必须创建一个访问 PIN。"
- },
- "PinLength": {
- "label": "选择最小 PIN 长度",
- "tooltip": "此设置指定 PIN 的最小位数。"
- },
- "PinType": {
- "label": "PIN 类型",
- "tooltip": "数值 PIN 全部由数字组成。密码由字母数字字符和特殊字符组成。"
- },
- "Printing": {
- "label": "正在打印组织数据",
- "tooltip": "如果阻止,则应用无法打印受保护的数据。"
- },
- "ReceiveData": {
- "label": "从其他应用接收数据",
- "tooltip": "选择以下选项之一来指定此应用可从其接收数据的应用:
\r\n\r\n无: 不允许接收来自任何应用的组织文档或帐户中的数据
\r\n\r\n策略托管应用: 只允许接收来自其他策略托管应用的组织文档或帐户中的数据\r\n
\r\n任何带有传入的组织数据的应用: 允许接收来自任何应用的组织文档或帐户中的数据并将所有不具有用户帐户的传入的数据视为组织数据
\r\n\r\n所有应用: 允许接收来自任何应用的组织文档或帐户中的数据"
- },
- "RecheckAccessAfter": {
- "label": "(非活动状态分钟数)分钟后重新检查访问要求\r\n\r\n",
- "tooltip": "如果策略托管应用处于非活动状态的时间超过指定的非活动状态分钟数,应用将提示在启动应用后重新检查访问要求(也即 PIN、条件启动设置)。"
- },
- "RestrictKeyboards": {
- "duplicatePackageError": "包 ID 必须是唯一的。",
- "invalidPackageError": "包 ID 无效",
- "label": "批准的键盘",
- "select": "选择要审批的键盘",
- "subtitle": "添加使用户可与目标应用一起使用的所有键盘和输入法。由于你希望向最终用户显示键盘,因此请输入键盘名称。",
- "title": "添加已批准的键盘",
- "toolTip": "选择“需要”,然后指定此策略批准的键盘的列表。了解详细信息。"
- },
- "SaveData": {
- "label": "保存组织数据的副本",
- "tooltip": "选择 {0} 则阻止使用“另存为”将组织数据的副本保存到新位置而非所选的存储服务。\r\n 选择 {1} 则允许使用“另存为”将组织数据的副本保存到新位置而非所选的存储服务。
\r\n\r\n\r\n注意: 此设置并非适用于所有应用程序。有关详细信息,请参阅 {2}。\r\n"
- },
- "SaveDataToSelected": {
- "label": "允许用户将副本保存到选定的服务",
- "tooltip": "选择用户可将组织数据的副本保存到的存储服务。将阻止所有其他服务。如果不选择任何服务,将阻止用户保存组织数据的副本。"
- },
- "ScreenCaptureAndAndroidAssistant": {
- "label": "屏幕捕获和 Google 助手\r\n",
- "tooltip": "如果阻止,使用策略托管应用时,会禁用屏幕捕获和 Google 助手应用扫描功能。此功能支持常规 Google 助手应用。不支持使用 Google Assist API 第三方助手。如果选择“阻止”,在通过工作或学校帐户使用此应用时会导致应用切换器预览图像变得模糊。"
- },
- "SendData": {
- "label": "将组织数据发送到其他应用",
- "tooltip": "选择以下选项之一来指定此应用可向其发送组织数据的应用:
\r\n\r\n\r\n无: 不允许向任何应用发送组织数据
\r\n\r\n\r\n策略托管应用: 只允许向其他策略托管应用发送组织数据
\r\n\r\n\r\n带 OS 共享功能的策略托管应用: 只允许向已注册的设备上的其他策略托管应用发送组织数据及向其他 MDM 托管应用发送组织文档
\r\n\r\n\r\n带“打开方式/共享”筛选功能的策略托管应用: 只允许向其他策略托管应用发送组织数据并筛选 OS“打开方式/共享”对话框,仅显示策略托管应用\r\n
\r\n\r\n所有应用: 允许向任何应用发送组织数据"
- },
- "SimplePin": {
- "label": "简单 PIN",
- "tooltip": "用户如果受到阻止,则无法创建简单 PIN。简单 PIN 是连续或重复的一串数字或字符,例如 1234、ABCD 或 1111。请注意,如果要阻止“密码”类型的简单 PIN,该密码需具有至少一个数字、一个字母以及一个特殊字符。"
- },
- "SyncContacts": {
- "label": "将策略托管应用数据与本机应用或加载项同步"
- },
- "ThirdPartyKeyboards": {
- "infoBox": "键盘限制将应用于应用的所有区域。此限制将影响针对支持多个标识的应用的个人帐户。了解详细信息。",
- "label": "第三方键盘"
- },
- "Timeout": {
- "label": "超时(非活动状态分钟数)"
- },
- "Tap": {
- "numberOfDays": "天数",
- "pinResetAfterNumberOfDays": "PIN 重置前的天数",
- "previousPinBlockCount": "选择要保留的曾用 PIN 值个数"
- }
- },
- "WindowsFeatureUpdateProfile": {
- "Details": {
- "Description": {
- "label": "说明"
- },
- "FeatureDeploymentSettings": {
- "header": "功能部署设置"
- },
- "FeatureUpdateVersion": {
- "infoballoon": "此功能不能对设备降级。",
- "label": "要部署的功能更新"
- },
- "GradualRolloutEndDate": {
- "label": "最终组可用性"
- },
- "GradualRolloutInterval": {
- "label": "组之间的天数"
- },
- "GradualRolloutStartDate": {
- "label": "第一个组可用性"
- },
- "Name": {
- "label": "名称"
- },
- "RolloutOptions": {
- "label": "推出选项"
- },
- "RolloutSettings": {
- "header": "你希望 Windows 更新何时推出更新?"
- },
- "ScopeSettings": {
- "header": "为此策略配置范围标记。"
- },
- "StartDateOnlyStartDate": {
- "label": "第一个可用日期"
- },
- "bladeTitle": "功能更新部署",
- "deploymentSettingsTitle": "部署设置",
- "loadError": "加载失败!",
- "windows11EULA": "选择部署此功能更新即表示你同意在将此操作系统应用到设备时,(1) 已通过批量许可购买适用的 Windows 许可证,或 (2) 你已获授权绑定你的组织,并代表组织接受此处的相关 Microsoft 软件许可条款 {0}。"
- },
- "Notifications": {
- "deploymentSaved": "已保存“{0}”。",
- "newFeatureUpdateDeploymentCreated": "已创建新的功能更新部署。"
- },
- "TabName": {
- "deploymentSettings": "部署设置",
- "groupAssignmentSettings": "分配",
- "scopeSettings": "作用域标签"
- }
- },
- "OfficeUpdateChannel": {
- "current": "当前频道",
- "deferred": "半年企业频道",
- "firstReleaseCurrent": "当前频道(预览)",
- "firstReleaseDeferred": "半年企业频道(预览)",
- "monthlyEnterprise": "每月企业频道",
- "placeHolder": "选择一个"
- },
- "Win32ReturnCodes": {
- "CodeTypes": {
- "failed": "失败",
- "hardReboot": "硬重新启动",
- "retry": "重试",
- "softReboot": "软重新启动",
- "success": "成功"
- },
- "Columns": {
- "codeType": "代码类型",
- "returnCode": "返回代码"
- },
- "bladeTitle": "返回代码",
- "gridAriaLabel": "返回代码",
- "header": "指定返回代码以指示安装后行为:",
- "onAddAnnounceMessage": "返回代码已添加 {0} 项(共 {1} 项)",
- "onDeleteSuccess": "已成功删除返回代码 {0}",
- "returnCodeAlreadyUsedValidation": "已使用返回代码。",
- "returnCodeMustBeIntegerValidation": "返回代码应为整数。",
- "returnCodeShouldBeAtLeast": "返回代码至少应为 {0}。",
- "returnCodeShouldBeAtMost": "返回代码最多应为 {0}。",
- "selectorLabel": "返回代码"
- },
- "SecurityTemplate": {
- "aSR": "攻击面减少",
- "accountProtection": "帐户保护",
- "allDevices": "所有设备",
- "antivirus": "防病毒",
- "antivirusReporting": "防病毒报告(预览)",
- "conditionalAccess": "条件访问",
- "deviceCompliance": "设备合规性",
- "diskEncryption": "磁盘加密",
- "eDR": "终结点检测和响应",
- "firewall": "防火墙",
- "helpSupport": "帮助和支持",
- "setup": "安装",
- "wdapt": "Microsoft Defender for Endpoint"
- },
- "PolicySet": {
- "appManagement": "应用程序管理",
- "assignments": "分配",
- "basics": "基本",
- "deviceEnrollment": "设备注册",
- "deviceManagement": "设备管理",
- "scopeTags": "作用域标签",
- "appConfigurationTitle": "应用配置策略",
- "appProtectionTitle": "应用保护策略",
- "appTitle": "应用",
- "iOSAppProvisioningTitle": "iOS 应用预配配置文件",
- "deviceLimitRestrictionTitle": "设备极限限制",
- "deviceTypeRestrictionTitle": "设备类型限制",
- "enrollmentStatusSettingTitle": "注册状态页",
- "windowsAutopilotDeploymentProfileTitle": "Windows autopilot 部署配置文件",
- "deviceComplianceTitle": "设备符合性策略",
- "deviceConfigurationTitle": "设备配置文件",
- "powershellScriptTitle": "PowerShell 脚本"
- },
- "AssignmentAction": {
- "exclude": "已排除",
- "include": "已包含",
- "includeAllDevicesVirtualGroup": "已包含",
- "includeAllUsersVirtualGroup": "已包含"
- },
- "WindowsFeatureUpdate": {
- "EndOFSupportStatus": {
- "notSupported": "不受支持",
- "supportEnding": "支持结束",
- "supported": "受支持"
- }
- },
- "InstallIntent": {
- "available": "可用于已注册的设备",
- "availableWithoutEnrollment": "不论是否注册均可使用",
- "required": "必需",
- "uninstall": "卸载"
- },
"OutlookAppConfig": {
"DataProtectionConfiguration": {
"header": "数据保护配置"
@@ -1938,307 +100,864 @@
"themesEnabledTitle": "已启用主题",
"themesEnabledTooltip": "指定是否允许用户使用自定义视觉主题。"
},
- "TAP": {
- "AccessRequirements": {
- "infoText": "配置用户在工作上下文中访问应用时必须满足的 PIN 和凭据要求。"
- },
- "DataProtection": {
- "infoText": "此组包括数据丢失防护(DLP)控件,如“剪切”、“复制”、“粘贴”和“另存为”限制。这些设置确定用户与应用中的数据的交互方式。"
- },
- "DeviceTypes": {
- "selectOne": "至少选择一个设备类型。"
- },
- "TargetedApps": {
- "TargetToAll": {
- "label": "面向所有设备类型上的应用"
- },
- "infoText": "选择要如何将此策略应用于不同设备上的应用。然后,至少添加一个应用。",
- "selectOne": "至少选择一个应用以创建策略。"
- }
- },
- "TACSettings": {
- "edgeSettings": "Edge 配置设置",
- "edgeWindowsDataProtectionSettings": "Edge (Windows) 数据保护设置 - 预览",
- "edgeWindowsSettings": "Edge (Windows)配置设置 - 预览",
- "generalAppConfig": "常规应用配置",
- "generalSettings": "常规配置设置",
- "outlookSMIMEConfig": "Outlook S/MIME 设置",
- "outlookSettings": "Outlook 配置设置",
- "sMIME": "S/MIME"
- },
- "OfficeApplicationAdditionalType": {
- "projectProRetail": "Project Online 桌面客户端",
- "visioProRetail": "Visio Online 计划 2"
- },
- "Win32Requirements": {
- "AdditionalRequirements": {
- "File": {
- "fileOrFolderToolTip": "用作所选要求的文件或文件夹。",
- "pathToolTip": "要检测的文件或文件夹的完整路径。",
- "property": "属性",
- "valueToolTip": "选择与所选检测方法匹配的要求值。应按本地格式输入日期和时间要求。"
- },
- "GridColumns": {
- "pathOrScript": "路径/脚本",
- "type": "类型"
- },
- "Registry": {
- "keyPath": "密钥路径",
- "keyPathTooltip": "包含用作要求的值的注册表项的完整路径。",
- "operator": "运算符",
- "operatorTooltip": "选择用于比较的运算符。",
- "registryRequirement": "注册表项要求",
- "registryRequirementTooltip": "选择注册表项要求比较。",
- "valueName": "值名称",
- "valueNameTooltip": "所需注册表值的名称。"
- },
- "RequirementTypeOptions": {
- "fileType": "文件",
- "registry": "注册表",
- "script": "脚本"
- },
- "Script": {
- "RequirementMethodOptions": {
- "boolean": "布尔型",
- "dateTime": "日期和时间",
- "float": "浮点",
- "integer": "整型",
- "string": "字符串",
- "version": "版本"
- },
- "ScriptContent": {
- "emptyMessage": "脚本内容不应为空。"
- },
- "duplicateName": "脚本名称 {0} 已使用。请输入其他名称。",
- "enforceSignatureCheck": "强制执行脚本签名检查",
- "enforceSignatureCheckTooltip": "选择“是”以验证脚本是否已由受信任的发行商签名,这将允许运行脚本而不显示警告或提示。脚本运行将不受阻。选择“否”(默认),在需要最终用户确认但不验证签名的情况下运行脚本。",
- "loggedOnCredentials": "使用已登录的凭据运行此脚本",
- "loggedOnCredentialsTooltip": "使用已签名的设备凭据运行脚本。",
- "operatorTooltip": "选择用于要求比较的运算符。",
- "requirementMethod": "选择输出数据类型",
- "requirementMethodTooltip": "选择在确定检测匹配要求时使用的数据类型。",
- "scriptFile": "脚本文件",
- "scriptFileTooltip": "选择将检测客户端上是否存在应用的 PowerShell 脚本。如果检测到应用,则要求进程将返回 0 值退出代码,并将字符串值写入 STDOUT。",
- "scriptName": "脚本名称",
- "value": "值",
- "valueTooltip": "选择与所选检测方法匹配的要求值。应按本地格式输入日期和时间要求。"
- },
- "bladeTitle": "添加要求规则",
- "createRequirementHeader": "创建要求。",
- "header": "配置附加要求规则",
- "label": "其他要求规则",
- "noRequirementsSelectedPlaceholder": "未指定要求。",
- "requirementType": "要求类型",
- "requirementTypeTooltip": "选择用于确定如何验证要求的检测方法的类型。"
- },
- "architectures": "操作系统体系结构",
- "architecturesTooltip": "选择安装应用所需的体系结构。",
- "bladeTitle": "要求",
- "diskSpace": "所需磁盘空间(MB)",
- "diskSpaceTooltip": "需要系统驱动器上有可用磁盘空间才能安装应用。",
- "header": "指定安装应用前设备必须满足的要求:",
- "maximumTextFieldValue": "值不得大于 {0}。",
- "minimumCpuSpeed": "需要的最低 CPU 速度(MHz)",
- "minimumCpuSpeedTooltip": "安装应用所需的最低 CPU 速度。",
- "minimumLogicalProcessors": "需要的最小逻辑处理器数",
- "minimumLogicalProcessorsTooltip": "安装应用所需的最小逻辑处理器数。",
- "minimumOperatingSystem": "最低操作系统版本",
- "minimumOperatingSystemTooltip": "选择安装应用所需的最低操作系统。",
- "minumumTextFieldValue": "该值必须至少为 {0}。",
- "physicalMemory": "所需的物理内存(MB)",
- "physicalMemoryTooltip": "安装应用所需的物理内存(RAM)。",
- "selectorLabel": "要求",
- "validNumber": "请输入有效的数字。"
- },
- "ArchitectureOptions": {
- "sixtyFourBit": "64 位",
- "thirtyTwoBit": "32 位"
- },
- "Countries": {
- "ae": "阿拉伯联合酋长国",
- "ag": "安提瓜和巴布达",
- "ai": "安圭拉",
- "al": "阿尔巴尼亚",
- "am": "亚美尼亚",
- "ao": "安哥拉",
- "ar": "阿根廷",
- "at": "奥地利",
- "au": "澳大利亚",
- "az": "阿塞拜疆",
- "bb": "巴巴多斯",
- "be": "比利时",
- "bf": "布基纳法索",
- "bg": "保加利亚",
- "bh": "巴林",
- "bj": "贝宁",
- "bm": "百慕大",
- "bn": "文莱",
- "bo": "玻利维亚",
- "br": "巴西",
- "bs": "巴哈马",
- "bt": "不丹",
- "bw": "博茨瓦纳",
- "by": "白俄罗斯",
- "bz": "伯利兹",
- "ca": "加拿大",
- "cg": "刚果共和国",
- "ch": "瑞士",
- "cl": "智利",
- "cn": "中国",
- "co": "哥伦比亚",
- "cr": "哥斯达黎加",
- "cv": "佛得角",
- "cy": "塞浦路斯",
- "cz": "捷克共和国",
- "de": "德国",
- "dk": "丹麦",
- "dm": "多米尼克",
- "do": "多米尼加共和国",
- "dz": "阿尔及利亚",
- "ec": "厄瓜多尔",
- "ee": "爱沙尼亚",
- "eg": "埃及",
- "es": "西班牙",
- "fi": "芬兰",
- "fj": "斐济",
- "fm": "密克罗尼西亚联邦",
- "fr": "法国",
- "gb": "英国",
- "gd": "格林纳达",
- "gh": "加纳",
- "gm": "冈比亚",
- "gr": "希腊",
- "gt": "危地马拉",
- "gw": "几内亚比绍",
- "gy": "圭亚那",
- "hk": "香港特别行政区",
- "hn": "洪都拉斯",
- "hr": "克罗地亚",
- "hu": "匈牙利",
- "id": "印度尼西亚",
- "ie": "爱尔兰",
- "il": "以色列",
- "in": "印度",
- "is": "冰岛",
- "it": "意大利",
- "jm": "牙买加",
- "jo": "约旦",
- "jp": "日本",
- "ke": "肯尼亚",
- "kg": "吉尔吉斯斯坦",
- "kh": "柬埔寨",
- "kn": "圣基茨和尼维斯",
- "kr": "大韩民国",
- "kw": "科威特",
- "ky": "开曼群岛",
- "kz": "哈萨克斯坦",
- "la": "老挝人民民主共和国",
- "lb": "黎巴嫩",
- "lc": "圣卢西亚",
- "lk": "斯里兰卡",
- "lr": "利比里亚",
- "lt": "立陶宛",
- "lu": "卢森堡",
- "lv": "拉脱维亚",
- "md": "摩尔多瓦共和国",
- "mg": "马达加斯加",
- "mk": "北马其顿",
- "ml": "马里",
- "mn": "蒙古",
- "mo": "澳门",
- "mr": "毛里塔尼亚",
- "ms": "蒙特塞拉特",
- "mt": "马耳他",
- "mu": "毛里求斯",
- "mw": "马拉维",
- "mx": "墨西哥",
- "my": "马来西亚",
- "mz": "莫桑比克",
- "na": "纳米比亚",
- "ne": "尼日尔",
- "ng": "尼日利亚",
- "ni": "尼加拉瓜",
- "nl": "荷兰",
- "no": "挪威",
- "np": "尼泊尔",
- "nz": "新西兰",
- "om": "阿曼",
- "pa": "巴拿马",
- "pe": "秘鲁",
- "pg": "巴布亚新几内亚",
- "ph": "菲律宾",
- "pk": "巴基斯坦",
- "pl": "波兰",
- "pt": "葡萄牙",
- "pw": "帕劳",
- "py": "巴拉圭",
- "qa": "卡塔尔",
- "ro": "罗马尼亚",
- "ru": "俄罗斯",
- "sa": "沙特阿拉伯",
- "sb": "所罗门群岛",
- "sc": "塞舌尔",
- "se": "瑞典",
- "sg": "新加坡",
- "si": "斯洛文尼亚",
- "sk": "斯洛伐克",
- "sl": "塞拉利昂",
- "sn": "塞内加尔",
- "sr": "苏里南",
- "st": "圣多美和普林西比",
- "sv": "萨尔瓦多",
- "sz": "斯威士兰",
- "tc": "特克斯和凯科斯",
- "td": "乍得",
- "th": "泰国",
- "tj": "塔吉克斯坦",
- "tm": "土库曼斯坦",
- "tn": "突尼斯",
- "tr": "土耳其",
- "tt": "特立尼达和多巴哥",
- "tw": "台湾",
- "tz": "坦桑尼亚",
- "ua": "乌克兰",
- "ug": "乌干达",
- "us": "美国",
- "uy": "乌拉圭",
- "uz": "乌兹别克斯坦",
- "vc": "圣文森特和格林纳丁斯",
- "ve": "委内瑞拉",
- "vg": "英属维尔京群岛",
- "vn": "越南",
- "ye": "也门",
- "za": "南非",
- "zw": "津巴布韦"
+ "Languages": {
+ "ar-aE": "阿拉伯语(阿拉伯联合酋长国)",
+ "ar-bH": "阿拉伯语(巴林)",
+ "ar-dZ": "阿拉伯语(阿尔及利亚)",
+ "ar-eG": "阿拉伯语(埃及)",
+ "ar-iQ": "阿拉伯语(伊拉克)",
+ "ar-jO": "阿拉伯语(约旦)",
+ "ar-kW": "阿拉伯语(科威特)",
+ "ar-lB": "阿拉伯语(黎巴嫩)",
+ "ar-lY": "阿拉伯语(利比亚)",
+ "ar-mA": "阿拉伯语(摩洛哥)",
+ "ar-oM": "阿拉伯语(阿曼)",
+ "ar-qA": "阿拉伯语(卡塔尔)",
+ "ar-sA": "阿拉伯语(沙特阿拉伯)",
+ "ar-sY": "阿拉伯语(叙利亚)",
+ "ar-tN": "阿拉伯语(突尼斯)",
+ "ar-yE": "阿拉伯语(也门)",
+ "az-cyrl": "阿塞拜疆语(西里尔语,阿塞拜疆)",
+ "az-latn": "阿塞拜疆语(拉丁语,阿塞拜疆)",
+ "bn-bD": "孟加拉语(孟加拉)",
+ "bn-iN": "孟加拉语(印度)",
+ "bs-cyrl": "波斯尼亚语(西里尔文)",
+ "bs-latn": "波斯尼亚语(拉丁语)",
+ "zh-cN": "中文(中国)",
+ "zh-hK": "中文(香港特别行政区)",
+ "zh-mO": "中文(澳门特别行政区)",
+ "zh-sG": "中文(新加坡)",
+ "zh-tW": "中文(台湾)",
+ "hr-bA": "克罗地亚语(拉丁语)",
+ "hr-hR": "克罗地亚语(克罗地亚)",
+ "nl-bE": "荷兰语(比利时)",
+ "nl-nL": "荷兰语(荷兰)",
+ "en-aU": "英语(澳大利亚)",
+ "en-bZ": "英语(伯利兹)",
+ "en-cA": "英语(加拿大)",
+ "en-cabn": "英语(加勒比海)",
+ "en-iE": "英语(爱尔兰)",
+ "en-iN": "英语(印度)",
+ "en-jM": "英语(牙买加)",
+ "en-mY": "英语(马来西亚)",
+ "en-nZ": "英语(新西兰)",
+ "en-pH": "英语(菲律宾共和国)",
+ "en-sG": "英语(新加坡)",
+ "en-tT": "英语(特立尼达和多巴哥)",
+ "en-uK": "英语(英国)",
+ "en-uS": "英语(美国)",
+ "en-zA": "英语(南非)",
+ "en-zW": "英语(津巴布韦)",
+ "fr-bE": "法语(比利时)",
+ "fr-cA": "法语(加拿大)",
+ "fr-cH": "法语(瑞士)",
+ "fr-fR": "法语(法国)",
+ "fr-lU": "法语(卢森堡)",
+ "fr-mC": "法语(摩纳哥)",
+ "de-aT": "德语(奥地利)",
+ "de-cH": "德语(瑞士)",
+ "de-dE": "德语(德国)",
+ "de-lI": "德语(列支敦士登)",
+ "de-lU": "德语(卢森堡)",
+ "iu-cans": "因纽特语(音节,加拿大)",
+ "iu-latn": "因纽特语(拉丁语,加拿大)",
+ "it-cH": "意大利语(瑞士)",
+ "it-iT": "意大利语(意大利)",
+ "ms-bN": "马来语(文莱达鲁萨兰)",
+ "ms-mY": "马来语(马来西亚)",
+ "mn-cN": "蒙古语(传统蒙古语,中国)",
+ "mn-mN": "蒙古语(西里尔语,蒙古)",
+ "no-nB": "挪威语,博克马尔语(挪威)",
+ "no-nn": "挪威语、尼诺斯克语(挪威)",
+ "pt-bR": "葡萄牙语(巴西)",
+ "pt-pT": "葡萄牙语(葡萄牙)",
+ "quz-bO": "克丘亚语(玻利维亚)",
+ "quz-eC": "克丘亚语(厄瓜多尔)",
+ "quz-pE": "克丘亚语(秘鲁)",
+ "smj-nO": "律勒萨米语(挪威)",
+ "smj-sE": "律勒萨米语(瑞典)",
+ "se-fI": "北萨米语(芬兰)",
+ "se-nO": "北萨米语(挪威)",
+ "se-sE": "北萨米语(瑞典)",
+ "sma-nO": "南萨米语(挪威)",
+ "sma-sE": "南萨米语(瑞典)",
+ "smn": "伊纳里萨米语(芬兰)",
+ "sms": "斯科特萨米语(芬兰)",
+ "sr-Cyrl-bA": "塞尔维亚语(西里尔文)",
+ "sr-Cyrl-rS": "塞尔维亚语(西里尔文,塞尔维亚和黑山(前))",
+ "sr-Latn-bA": "塞尔维亚语(拉丁语)",
+ "sr-Latn-rS": "塞尔维亚语(拉丁语,塞尔维亚)",
+ "dsb": "下索布语(德国)",
+ "hsb": "上索布语(德国)",
+ "es-es-tradnl": "西班牙语(西班牙传统风格)",
+ "es-aR": "西班牙语(阿根廷)",
+ "es-bO": "西班牙语(玻利维亚)",
+ "es-cL": "西班牙语(智利)",
+ "es-cO": "西班牙语(哥伦比亚)",
+ "es-cR": "西班牙语(哥斯达黎加)",
+ "es-dO": "西班牙语(多米尼加共和国)",
+ "es-eC": "西班牙语(厄瓜多尔)",
+ "es-eS": "西班牙语(西班牙)",
+ "es-gT": "西班牙语(危地马拉)",
+ "es-hN": "西班牙语(洪都拉斯)",
+ "es-mX": "西班牙语(墨西哥)",
+ "es-nI": "西班牙语(尼加拉瓜)",
+ "es-pA": "西班牙语(巴拿马)",
+ "es-pE": "西班牙语(秘鲁)",
+ "es-pR": "西班牙语(波多黎各)",
+ "es-pY": "西班牙语(巴拉圭)",
+ "es-sV": "西班牙语(萨尔瓦多)",
+ "es-uS": "西班牙语(美国)",
+ "es-uY": "西班牙语(乌拉圭)",
+ "es-vE": "西班牙语(委内瑞拉)",
+ "sv-fI": "瑞典语(芬兰)",
+ "uz-cyrl": "乌兹别克语(西里尔语、乌兹别克斯坦)",
+ "uz-latn": "乌兹别克语(拉丁语、乌兹别克斯坦)",
+ "af": "南非荷兰语(南非)",
+ "sq": "阿尔巴尼亚语(阿尔巴尼亚)",
+ "am": "阿姆哈拉语(埃塞俄比亚)",
+ "hy": "亚美尼亚语(亚美尼亚)",
+ "as": "阿萨姆语(印度)",
+ "ba": "巴什基尔语(俄罗斯)",
+ "eu": "巴斯克语(巴斯克语)",
+ "be": "白俄罗斯语(白俄罗斯)",
+ "br": "布里多尼语(法国)",
+ "bg": "白俄罗斯语(保加利亚)",
+ "ca": "加泰罗尼亚语(加泰罗尼亚语)",
+ "co": "科西嘉语(法国)",
+ "cs": "捷克语(捷克共和国)",
+ "da": "丹麦语(丹麦)",
+ "prs": "达里语(阿富汗)",
+ "dv": "迪维希语(马尔代夫)",
+ "et": "爱沙尼亚语(爱沙尼亚)",
+ "fo": "法罗语(法罗群岛)",
+ "fil": "菲律宾语(菲律宾)",
+ "fi": "芬兰语(芬兰)",
+ "gl": "加利西亚语(加利西亚语)",
+ "ka": "格鲁吉亚语(格鲁吉亚)",
+ "el": "希腊语(希腊)",
+ "gu": "古吉拉特语(印度)",
+ "ha": "豪萨语(拉丁语,尼日利亚)",
+ "he": "希伯来语(以色列)",
+ "hi": "印地语(印度)",
+ "hu": "匈牙利语(匈牙利)",
+ "is": "冰岛语(冰岛)",
+ "ig": "伊博语(尼日利亚)",
+ "id": "印度尼西亚语(印度尼西亚)",
+ "ga": "爱尔兰语(爱尔兰)",
+ "xh": "科萨语(南非)",
+ "zu": "祖鲁语(南非)",
+ "ja": "日语(日本)",
+ "kn": "埃纳德语(印度)",
+ "kk": "哈萨克语(哈萨克斯坦)",
+ "km": "高棉语(柬埔寨)",
+ "rw": "卢旺达语(卢旺达)",
+ "sw": "斯瓦希里语(肯尼亚)",
+ "kok": "孔卡尼语(印度)",
+ "ko": "朝鲜语(韩国)",
+ "ky": "吉尔吉斯语(吉尔吉斯斯坦)",
+ "lo": "老挝语(老挝人民民主共和国)",
+ "lv": "拉脱维亚语(拉脱维亚)",
+ "lt": "立陶宛语(立陶宛)",
+ "lb": "卢森堡语(卢森堡)",
+ "mk": "马其顿语(北马其顿)",
+ "ml": "马拉雅拉姆语(印度)",
+ "mt": "马耳他语(马耳他)",
+ "mi": "毛利语(新西兰)",
+ "mr": "马拉地语(印度)",
+ "moh": "摩霍克语(莫霍克)",
+ "ne": "尼泊尔语(尼泊尔)",
+ "oc": "奥克西唐语(法国)",
+ "or": "奥里亚语(印度)",
+ "ps": "普什图语(阿富汗)",
+ "fa": "波斯语",
+ "pl": "波兰语(波兰)",
+ "pa": "旁遮普语(印度)",
+ "ro": "罗马尼亚语(罗马尼亚)",
+ "rm": "罗曼什语(瑞士)",
+ "ru": "俄语(俄罗斯)",
+ "sa": "梵语(印度)",
+ "st": "巴索托语(南非)",
+ "tn": "茨瓦纳语(南非)",
+ "si": "僧伽罗语(斯里兰卡)",
+ "sk": "斯洛伐克语(斯洛伐克)",
+ "sl": "斯洛文尼亚语(斯洛文尼亚)",
+ "sv": "瑞典语(瑞典)",
+ "syr": "叙利亚语(叙利亚)",
+ "tg": "塔吉克语(西里尔文,塔吉克斯坦)",
+ "ta": "泰米尔语(印度)",
+ "tt": "鞑靼语(俄罗斯)",
+ "te": "泰卢固语(印度)",
+ "th": "泰语(泰国)",
+ "bo": "藏语(中国)",
+ "tr": "土耳其语(土耳其)",
+ "tk": "土库曼语(土库曼斯坦)",
+ "uk": "乌克兰语(乌克兰)",
+ "ur": "乌尔都语(巴基斯坦伊斯兰共和国)",
+ "vi": "越南语(越南)",
+ "cy": "威尔士语(英国)",
+ "wo": "沃洛夫语(塞内加尔)",
+ "ii": "彝语(中国)",
+ "yo": "约鲁巴语(尼日利亚)"
+ },
+ "Category": {
+ "airPlay": "AirPlay",
+ "airPrint": "AirPrint",
+ "androidDefenderAtp": "Microsoft Defender for Endpoint",
+ "androidDeviceOwnerApplications": "应用程序",
+ "androidForWorkPassword": "设备密码",
+ "appManagement": "允许或阻止应用",
+ "applicationGuard": "Microsoft Defender 应用程序防护",
+ "applicationRestrictions": "受限应用",
+ "applicationVisibility": "显示或隐藏应用",
+ "applications": "应用商店",
+ "applicationsAndGames": "App Store,文档查看,游戏",
+ "applicationsAndGoogle": "Google Play 商店",
+ "appsAndExperience": "应用和体验",
+ "associatedDomains": "关联的域",
+ "autonomousSingleAppMode": "自治单应用模式",
+ "azureOperationalInsights": "Azure 运营见解",
+ "bitLocker": "Windows 加密",
+ "browser": "浏览器",
+ "builtinApps": "内置应用",
+ "cellular": "手机网络",
+ "cloudAndStorage": "云和存储",
+ "cloudPrint": "云打印机",
+ "complianceEmailProfile": "电子邮件",
+ "connectedDevices": "已连接的设备",
+ "connectivity": "手机网络和连接",
+ "contentCaching": "内容缓存",
+ "controlPanelAndSettings": "控制面板和设置",
+ "credentialGuard": "Microsoft Defender Credential Guard",
+ "customCompliance": "自定义合规性",
+ "customCompliancePreview": "自定义合规性(预览)",
+ "customConfiguration": "自定义配置文件",
+ "customOMASettings": "自定义 OMA-URI 设置",
+ "customPreferences": "首选项文件",
+ "defender": "Microsoft Defender 防病毒",
+ "defenderAntivirus": "Microsoft Defender 防病毒",
+ "defenderExploitGuard": "Microsoft Defender 攻击防护",
+ "defenderFirewall": "Microsoft Defender 防火墙",
+ "defenderLocalSecurityOptions": "本地设备安全选项",
+ "defenderSecurityCenter": "Microsoft Defender 安全中心",
+ "deliveryOptimization": "交付优化",
+ "derivedCredentialAuthenticationConfiguration": "派生凭据",
+ "deviceExperience": "设备体验",
+ "deviceFirmwareConfigurationInterface": "设备固件配置接口",
+ "deviceGuard": "Microsoft Defender 应用程序控制",
+ "deviceHealth": "设备运行状况",
+ "devicePassword": "设备密码",
+ "deviceProperties": "设备属性",
+ "deviceRestrictions": "常规",
+ "deviceSecurity": "系统安全",
+ "display": "显示",
+ "domainJoin": "域加入",
+ "domains": "域",
+ "edgeBrowser": "Microsoft Edge 旧版(版本 45 及更早版本)",
+ "edgeBrowserSmartScreen": "Microsoft Defender SmartScreen",
+ "edgeKiosk": "Microsoft Edge 展台模式",
+ "editionUpgrade": "版本升级",
+ "education": "教育",
+ "educationDeviceCerts": "设备证书",
+ "educationStudentCerts": "学生证书",
+ "educationTakeATest": "进行测试",
+ "educationTeacherCerts": "教师证书",
+ "emailProfile": "电子邮件",
+ "enterpriseDataProtection": "Windows 信息保护",
+ "expeditedCheckin": "移动设备管理配置",
+ "extensibleSingleSignOn": "单一登录应用扩展",
+ "filevault": "FileVault",
+ "firewall": "防火墙",
+ "games": "游戏",
+ "gatekeeper": "网关守卫",
+ "healthMonitoring": "运行状况监视",
+ "homeScreenLayout": "主屏幕布局",
+ "iOSWallpaper": "壁纸",
+ "importedPFX": "PKCS 导入的证书",
+ "iosDefenderAtp": "Microsoft Defender for Endpoint",
+ "iosKiosk": "展台",
+ "kernelExtensions": "内核扩展",
+ "keyboardAndDictionary": "键盘和字典",
+ "kiosk": "展台",
+ "kioskAndroidEnterprise": "专用设备",
+ "kioskConfiguration": "展台",
+ "kioskConfigurationV2": "展台",
+ "kioskWebBrowser": "展台 web 浏览器",
+ "lockScreenMessage": "锁定屏幕消息",
+ "lockedScreenExperience": "锁屏体验",
+ "logging": "报告和遥测",
+ "loginItems": "登录项",
+ "loginWindow": "登录窗口",
+ "macDefenderAtp": "Microsoft Defender for Endpoint",
+ "maintenance": "维护",
+ "malware": "恶意软件",
+ "messaging": "消息传递",
+ "networkBoundary": "网络边界",
+ "networkProxy": "网络代理",
+ "notifications": "应用通知",
+ "pKCS": "PKCS 证书",
+ "password": "密码",
+ "personalProfile": "个人配置文件",
+ "personalization": "个性化",
+ "policyOverride": "覆盖组策略",
+ "powerSettings": "电源设置",
+ "printer": "打印机",
+ "privacy": "隐私",
+ "privacyPerApp": "每个应用的隐私例外情况",
+ "privacyPreferences": "隐私首选项",
+ "projection": "投影",
+ "sCCMCompliance": "Configuration Manager 符合性",
+ "sCEP": "SCEP 证书",
+ "sCEPProperties": "SCEP 证书",
+ "sMode": "模式切换(仅 Windows 预览体验成员)",
+ "safari": "Safari",
+ "search": "搜索",
+ "session": "会话",
+ "sharedDevice": "共享 iPad",
+ "sharedPCAccountManager": "共享多用户设备",
+ "singleSignOn": "单一登录",
+ "smartScreen": "Microsoft Defender SmartScreen",
+ "softwareUpdates": "设置",
+ "start": "启动",
+ "systemExtensions": "系统扩展",
+ "systemSecurity": "系统安全",
+ "trustedCert": "受信任的证书",
+ "updates": "更新",
+ "userRights": "用户权限",
+ "usersAndAccounts": "用户和帐户",
+ "vPN": "基础 VPN",
+ "vPNApps": "自动 VPN",
+ "vPNAppsAndTrafficRules": "应用和通信规则",
+ "vPNConditionalAccess": "条件访问",
+ "vPNConnectivity": "连接性",
+ "vPNDNSTriggers": "DNS 设置",
+ "vPNIKEv2": "IKEv2 设置",
+ "vPNProxy": "代理",
+ "vPNSplitTunneling": "拆分隧道",
+ "vPNTrustedNetwork": "受信任的网络检测",
+ "webContentFilter": "Web 内容筛选",
+ "wiFi": "Wi-Fi",
+ "win10Wifi": "Wi-Fi",
+ "windowsAtp": "Microsoft Defender for Endpoint",
+ "windowsDefenderATP": "Microsoft Defender for Endpoint",
+ "windowsHelloForBusiness": "Windows Hello 企业版",
+ "windowsSpotlight": "Windows 聚焦",
+ "wiredNetwork": "有线网络",
+ "wireless": "无线",
+ "wirelessProjection": "无线投影",
+ "workProfile": "工作配置文件设置",
+ "workProfilePassword": "工作配置文件密码",
+ "xboxServices": "Xbox 服务",
+ "zebraMx": "MX 配置文件(仅限 Zebra)",
+ "complianceActionsLabel": "对不合规项的操作"
+ },
+ "WindowsFeatureUpdateProfile": {
+ "Details": {
+ "Description": {
+ "label": "说明"
+ },
+ "FeatureDeploymentSettings": {
+ "header": "功能部署设置"
+ },
+ "FeatureUpdateVersion": {
+ "infoballoon": "此功能不能对设备降级。",
+ "label": "要部署的功能更新"
+ },
+ "GradualRolloutEndDate": {
+ "label": "最终组可用性"
+ },
+ "GradualRolloutInterval": {
+ "label": "组之间的天数"
+ },
+ "GradualRolloutStartDate": {
+ "label": "第一个组可用性"
+ },
+ "Name": {
+ "label": "名称"
+ },
+ "RolloutOptions": {
+ "label": "推出选项"
+ },
+ "RolloutSettings": {
+ "header": "你希望 Windows 更新何时推出更新?"
+ },
+ "ScopeSettings": {
+ "header": "为此策略配置范围标记。"
+ },
+ "StartDateOnlyStartDate": {
+ "label": "第一个可用日期"
+ },
+ "bladeTitle": "功能更新部署",
+ "deploymentSettingsTitle": "部署设置",
+ "loadError": "加载失败!",
+ "windows11EULA": "选择部署此功能更新即表示你同意在将此操作系统应用到设备时,(1) 已通过批量许可购买适用的 Windows 许可证,或 (2) 你已获授权绑定你的组织,并代表组织接受此处的相关 Microsoft 软件许可条款 {0}。"
+ },
+ "Notifications": {
+ "deploymentSaved": "已保存“{0}”。",
+ "newFeatureUpdateDeploymentCreated": "已创建新的功能更新部署。"
+ },
+ "TabName": {
+ "deploymentSettings": "部署设置",
+ "groupAssignmentSettings": "分配",
+ "scopeSettings": "作用域标签"
+ }
+ },
+ "WIPPinRequirements": {
+ "WipLowercaseCharacterPinRequirements": {
+ "allow": "允许在 PIN 中使用小写字母",
+ "notAllow": "不允许在 PIN 中使用小写字母",
+ "requireAtLeastOne": "要求在 PIN 中使用至少一个小写字母"
+ },
+ "WipSpecialCharacterPinRequirements": {
+ "allow": "允许在 PIN 中使用特殊字符",
+ "notAllow": "不允许在 PIN 中使用特殊字符",
+ "requireAtLeastOne": "要求在 PIN 中使用至少一个特殊字符"
+ },
+ "WipUppercaseCharacterPinRequirements": {
+ "allow": "允许在 PIN 中使用大写字母",
+ "notAllow": "不允许在 PIN 中使用大写字母",
+ "requireAtLeastOne": "要求在 PIN 中使用至少一个大写字母"
+ }
+ },
+ "OutlookAppConfigSettings": {
+ "AllowUserToChangeSetting": {
+ "title": "允许用户更改设置",
+ "tooltip": "指定是否允许用户更改设置。"
+ },
+ "AllowWorkAccounts": {
+ "title": "仅允许工作或学校帐户",
+ "tooltip": " 启用此设置,用户将无法在 Outlook 中添加个人电子邮件和存储帐户。如果用户已将个人帐户添加到 Outlook,则会提示其删除个人帐户。如果用户不删除个人帐户,则无法添加工作或学校帐户。"
+ },
+ "BlockExternalImages": {
+ "title": "阻止外部图像",
+ "tooltip": "启用阻止外部图像后,应用将阻止下载通过 Internet(嵌入在邮件正文中)托管的图像。如果设置为“未配置”,则默认应用设置设为“关”"
+ },
+ "ConfigureEmail": {
+ "title": "配置电子邮件帐户设置"
+ },
+ "DefaultAppSignatureSetting": {
+ "Tooltip": {
+ "android": "默认应用签名指示应用是否要在消息撰写期间将“获取 Outlook for Android”用作默认签名。如果此设置配置为“关”,则不使用默认签名;但是,用户可添加自己的签名。\r\n\r\n当设置为“未配置”时,默认应用设置设为“开”。",
+ "iOS": "默认应用签名指示应用是否要在消息撰写期间将“获取 Outlook for iOS”用作默认签名。如果此设置配置为“关”,则不使用默认签名;但是,用户可添加自己的签名。\r\n\r\n当设置为“未配置”时,默认应用设置设为“开”。"
+ },
+ "title": "默认应用签名"
+ },
+ "OfficeFeedReplies": {
+ "title": "发现源",
+ "tooltip": "通过发现源,可查看最常访问的 Office 文件。默认情况下,在为用户启用 Delve 时启用此源。在设置为“未配置”时,默认应用设置设为“开”。"
+ },
+ "OrganizeMailByThread": {
+ "title": "按线程组织邮件",
+ "tooltip": "Outlook 中的默认行为是将邮件对话捆绑到链式对话视图中。如果禁用此设置,Outlook 将单独显示每个邮件,不会按线程对其进行分组。"
+ },
+ "PlayMyEmails": {
+ "title": "播放我的电子邮件",
+ "tooltip": "默认情况下,应用中不会启用“播放我的电子邮件”功能,但会通过收件箱中的横幅将此功能提升为符合条件的用户。如果设置为“关闭”,则不会在应用中将此功能提升为符合条件的用户。用户可以在应用中选择手动启用“播放我的电子邮件”,即使此功能设置为“关闭”也是如此。如果设置为“未配置”,则默认应用设置是“打开”,且功能将提升为符合条件的用户。"
+ },
+ "SuggestedReplies": {
+ "title": "建议的答复",
+ "tooltip": "打开邮件时,Outlook 可能会在邮件下建议答复。如果选择所建议的答复,可在发送答复前对其进行编辑。"
+ },
+ "SyncCalendars": {
+ "title": "同步日历",
+ "tooltip": "配置用户是否可将其 Outlook 日历同步到本机日历应用和数据库。"
+ },
+ "TextPredictions": {
+ "title": "文本预测",
+ "tooltip": "Outlook 可在你撰写邮件时提供词语和短语建议。当 Outlook 提供建议时,可通过轻扫接受建议。如果设置为“未配置”,应用设置默认设置为“开”。"
+ },
+ "ThemesEnabled": {
+ "title": "已启用主题",
+ "tooltip": "指定是否允许用户使用自定义视觉主题。"
+ }
+ },
+ "AssignmentFilters": {
+ "assignmentFilterColumnHeader": "筛选器",
+ "noFilters": "无"
+ },
+ "Platform": {
+ "all": "全部",
+ "android": "Android 设备管理员",
+ "androidAOSP": "Android (AOSP)",
+ "androidEnterprise": "Android Enterprise",
+ "androidForWork": "Android Enterprise",
+ "androidWorkProfile": "Android Enterprise",
+ "common": "通用",
+ "iOS": "iOS/iPadOS",
+ "iosAndAndroidPlatformLabel": "iOS 和 Android",
+ "iosCommaAndroidPlatformLabel": "iOS、Android",
+ "linux": "Linux",
+ "macOS": "macOS",
+ "unknown": "未知",
+ "unsupported": "不支持",
+ "windows": "Windows",
+ "windows10": "Windows 10 和更高版本",
+ "windows10CM": "Windows 10 及更高版本(ConfigMgr)",
+ "windows10Holo": "Windows 10 全息版",
+ "windows10Mobile": "Windows 10 移动版",
+ "windows10Team": "Windows 10 协同版",
+ "windows10X": "Windows 10X",
+ "windows8": "Windows 8.1 和更高版本",
+ "windows8And10": "Windows 8 和 10",
+ "windowsPhone": "Windows Phone 8.1",
+ "windows10AndLater": "Windows 10 和更高版本",
+ "windows10AndWindowsServer": "Windows 10、Windows 11 和 Windows Server (ConfigMgr)",
+ "windows10andLaterCM": "Windows 10 及更高版本(ConfigMgr)",
+ "holoLens": "HoloLens",
+ "surfaceHub2": "Surface Hub 2",
+ "surfaceHub2S": "Surface Hub 2S",
+ "windowsPC": "Windows 电脑"
+ },
+ "AppInformationTab": {
+ "Error": {
+ "multipleChildApps": "macOS LOB 应用只有在上传的包中包含一个应用时才能安装为托管应用。"
+ },
+ "Info": {
+ "AppStoreUrl": {
+ "android": "输入 Google Play 应用商店中的应用清单的链接。例如:",
+ "androidLink": "https://play.google.com/store/apps/details?id=com.microsoft.office.outlook",
+ "windows": "输入 Microsoft Store 中应用列表的链接。例如:",
+ "windowsLink": "https://www.microsoft.com/en-us/p/microsoft-to-do-lists-tasks-reminders/9nblggh5r558"
+ },
+ "appPackageFile": "包含采用可在设备上旁加载格式的应用的文件。有效的包类型包括: Android (.apk)、iOS (.ipa)、macOS (.pkg、.intunemac)、Windows (.msi、.appx、.appxbundle、.msix 和 .msixbundle)。",
+ "applicableDeviceType": "选择可安装此应用的设备类型。",
+ "category": "对应用进行分类,使用户能够更轻松地在公司门户中进行排序和查找。可选择多个类别。",
+ "categoryLink": "https://docs.microsoft.com/en-us/intune/apps/apps-add#create-and-edit-categories-for-apps",
+ "description": "帮助你的设备用户了解应用是什么和/或他们可在应用中执行哪些操作。此说明将在公司门户中显示。",
+ "developer": "开发应用的公司或个人的名称。这些信息将对已登录管理中心的人员可见。",
+ "displayVersion": "应用的版本。用户可在公司门户中查看此信息。",
+ "infoUrl": "将人员关联到包含有关应用的详细信息的网站或文档。信息 URL 将对公司门户中的用户可见。",
+ "isFeatured": "特别推荐的应用突出放置在公司门户中,以便用户能够快速访问它们。",
+ "learnMore": "了解更多",
+ "logo": "上传与应用关联的徽标。此徽标将显示在公司门户中的相应应用旁。",
+ "macOSDmgAppPackageFile": "包含可在设备上旁加载格式的应用的文件。有效的包类型:.dmg。",
+ "minOperatingSystem": "选择可安装应用的最低操作系统版本。如果向具有较早操作系统的设备分配应用,则不会安装该应用。",
+ "name": "为应用添加名称。此名称将显示在 Intune 应用列表并对公司门户中的用户可见。",
+ "notes": "添加有关应用的其他注释。注释将对登录到管理中心的人员可见。",
+ "owner": "组织中管理许可的人员姓名或作为此应用的联系点的人员姓名。此姓名将对登录到管理中心的用户可见。",
+ "packageName": "请与设备制造商联系以获取应用的包名称。示例包名称: com.example.app",
+ "privacyUrl": "为想要详细了解应用的隐私设置和条款的用户提供链接。隐私 URL 将对公司门户中的用户可见。",
+ "publisher": "分发应用的开发人员或公司的姓名/名称。用户将可在公司门户中查看此信息。",
+ "selectApp": "在 App Store 中搜索要使用 Intune 部署的 iOS 应用商店应用。",
+ "useManagedBrowser": "如果需要,用户打开 web 应用时,它将在受 Intune 保护的浏览器(如 Microsoft Edge 或 Intune Managed Browser)中打开。此设置适用于 iOS 和 Android 设备。",
+ "useManagedBrowserLink": "https://docs.microsoft.com/en-us/intune/apps/app-configuration-managed-browser",
+ "win32AppPackageFile": "包含你的应用的文件,其格式可在设备上旁加载。有效的包类型为: .intunewin。"
+ },
+ "descriptionPreview": "预览",
+ "descriptionRequired": "说明是必需的。",
+ "editDescription": "编辑说明",
+ "macOSMinOperatingSystemAdditionalInfo": "上传 .pkg 文件的最低操作系统是 macOS 10.14。上传 .intunemac 文件以选择较旧的最低操作系统。",
+ "name": "应用信息",
+ "nameForOfficeSuitApp": "应用套件信息"
+ },
+ "Tooltips": {
+ "PolicySettings": {
+ "TouchId1": {
+ "android": "在 Android 上,可允许使用指纹识别代替 PIN。用户使用其工作帐户范恩此应用时,将提示他们提供指纹。",
+ "iOS": "在 iOS/iPadOS 设备上,你可以允许使用指纹标识而非 PIN。当用户使用其工作帐户访问该应用时,将提示他们提供其指纹。",
+ "mac": "在 Mac 设备上,可以允许使用指纹标识代替 PIN。当用户使用其工作帐户访问此应用时,将提示他们提供其指纹。"
+ },
+ "appSharingFromLevel1": "选择以下选项之一,指定此应用可从哪些应用接收数据:",
+ "appSharingFromLevel2": "{0}: 只允许接收来自其他策略托管应用的组织文档或帐户中的数据",
+ "appSharingFromLevel3": "{0}: 允许接收来自任何应用的组织文档或帐户中的数据",
+ "appSharingFromLevel4": "{0}: 不允许接收来自任何应用的组织文档或帐户中的数据",
+ "appSharingFromLevel5": "{0}: 允许来自任意应用的数据传输,并将没有用户标识的所有传入数据视为组织数据。",
+ "appSharingToLevel1": "选择以下选项之一,指定此应用可将数据发送到哪些应用:",
+ "appSharingToLevel2": "{0}: 只允许向其他策略托管应用发送组织数据",
+ "appSharingToLevel3": "{0}: 允许向任何应用发送组织数据",
+ "appSharingToLevel4": "{0}: 不允许向任何应用发送组织数据",
+ "appSharingToLevel5": "{0}: 仅允许到其他策略托管应用的传输,以及到注册设备上的其他 MDM 托管应用的文件传输",
+ "appSharingToLevel6": "{0}: 允许仅传输到其他策略托管应用并筛选 OS“打开方式/共享”对话框以仅显示策略托管应用",
+ "conditionalEncryption1": "选择 {0},以便在注册设备上检测到设备加密时禁用内部应用存储的应用加密。",
+ "conditionalEncryption2": "注意: Intune 只能检测使用 Intune MDM 的设备注册。外部应用存储仍将处于加密状态,以确保非托管应用程序无法访问数据。",
+ "contactSyncMac": "如果禁用,应用无法将联系人保存到本机通讯簿。",
+ "contactsSync": "选择阻止防止策略托管应用将数据保存到设备的本机应用(如联系人、日历、小组件),或阻止在策略托管应用中使用外接程序。如果选择允许,如果这些功能在策略托管应用中受支持并启用,则策略托管应用可以将数据保存到本机应用或使用外接程序。
应用可能会通过应用配置策略提供其他配置功能。有关详细信息,请参阅应用的文档。",
+ "encryptionAndroid1": "对于与 Intune 移动应用程序管理策略相关联的应用,Microsoft 提供加密。在文件 I/O 操作期间,按照移动应用程序管理策略中的设置对数据进行同步加密。Android 上的托管应用使用 CBC 模式中的 AES-128 加密,该加密利用平台加密库。该加密方法不符合 FIPS 140-2。SHA-256 作为使用 SigAlg 参数的显式指令受到支持,且仅在 4.2 及以上的设备上起作用。设备存储空间中的内容始终是加密的。",
+ "encryptionAndroid2": "当你在应用策略中要求加密时,将要求最终用户设置并使用 PIN 以访问他们的设备。如果未设置用于访问设备的 PIN,应用将不会启动,而最终用户将看到一条消息,内容是“你的公司要求你首先必须启用设备 PIN 才能访问此应用程序”。",
+ "encryptionMac1": "对于与 Intune 移动应用程序管理策略相关联的应用,Microsoft 提供加密。在文件 I/O 操作期间,按照移动应用程序管理策略中的设置对数据进行同步加密。Mac 上的托管应用使用 CBC 模式中的 AES-128 加密,该加密利用平台加密库。该加密方法不符合 FIPS 140-2。SHA-256 作为使用 SigAlg 参数的显式指令受到支持,且仅在 4.2 及以上的设备上起作用。设备存储空间中的内容始终是加密的。",
+ "faceId1": "如果适用,可以允许使用人脸识别,而不是使用 PIN。用户使用其工作帐户访问此应用时,系统会提示他们提供人脸识别。",
+ "faceId2": "选择“是”允许使用人脸识别(而不是使用 PIN)访问应用。",
+ "managementLevelsAndroid1": "使用此选项指定将此策略应用于 Android 设备管理员设备、Android Enterprise 设备还是非托管设备。",
+ "managementLevelsAndroid2": "{0}: 非托管设备是未检测到 Intune MDM 管理的设备,包括第三方 MDM 供应商。",
+ "managementLevelsAndroid3": "{0}: 使用 Android 设备管理 API 的 Intune 托管设备。",
+ "managementLevelsAndroid4": "{0}: 使用 Android Enterprise 工作配置文件或 Android Enterprise 完全设备管理的 Intune 托管设备。",
+ "managementLevelsIos1": "使用此选项指定将此策略应用于 MDM 托管设备还是非托管设备。",
+ "managementLevelsIos2": "{0}: 非托管设备是未检测到 Intune MDM 管理的设备,包括第三方 MDM 供应商。",
+ "managementLevelsIos3": "{0}: 托管设备由 Intune MDM 管理。",
+ "minAppVersion": "定义用户安全访问应用应具有的必需的最低应用版本号。",
+ "minAppVersionWarning": "定义用户安全访问应用应具有的建议的最低应用版本号。",
+ "minOsVersion": "定义用户安全访问应用应具有的必需的最低 OS 版本号。",
+ "minOsVersionWarning": "定义用户安全访问应用应具有的建议的最低 OS 版本号。",
+ "minPatchVersion": "定义用户获取应用的安全访问权限时可以具有的最低必需 Android 安全修补程序级别。",
+ "minPatchVersionWarning": "定义用户获取应用的安全访问权限时可以具有的最低推荐 Android 安全修补程序级别。",
+ "minSdkVersion": "定义用户安全访问应用必需的最低 Intune 应用程序保护策略 SDK 版本。",
+ "requireAppPinDefault": "在已注册的设备上检测到设备锁定时,选择“是”可禁用应用 PIN。
",
+ "targetAllApps1": "使用此选项将策略定位到处于任何管理状态的设备上的应用。",
+ "targetAllApps2": "在策略冲突解决期间,如果用户具有针对特定管理状态的策略,则此设置将被取代。",
+ "touchId2": "选择 {0} 以要求使用指纹标识而非 PIN 来访问应用。"
+ },
+ "Tap": {
+ "pinResetAfterNumberOfDays": "指定用户在必须重设 PIN 前必须经过多少天。",
+ "previousPinBlockCount": "此设置指定 Intune 将保留的曾用 PIN 个数。任何新 PIN 都必须与 Intune 保留的 PIN 不同。"
+ },
+ "WipPolicySettings": {
+ "25": "",
+ "allowWindowsSearch": "这将允许 Windows Search 继续搜索加密数据。",
+ "authoritativeIpRanges": "如果要替代 Windows 自动检测 IP 范围,请启用此设置。",
+ "authoritativeProxyServers": "如果要替代 Windows 自动检测代理服务器,请启用此设置。",
+ "checkInput": "检查输入的有效性",
+ "dataRecoveryCert": "恢复证书是一种特殊的加密文件系统(EFS)证书,可用于在加密密钥丢失或损坏时恢复加密文件。你需要创建恢复证书,并在此处指定它。有关详细信息,请参阅此处",
+ "enterpriseCloudResources": "指定被视为公司数据且受到 Windows 信息保护策略保护的云资源。可用 \"|\" 字符分隔各项来指定多个资源。
如果你的公司配置了代理,则可指定该代理,用于传送你指定的云资源。
URL[,Proxy]|URL[,Proxy]
无代理: contoso.sharepoint.com|contoso.visualstudio.com
有代理: contoso.sharepoint.com,proxy.contoso.com|contoso.visualstudio.com,proxy.contoso.com
",
+ "enterpriseIPv4Ranges": "指定组成公司网络的 IPv4 范围。此范围可与你指定的企业网络域名结合使用,共同定义公司网络界限。
必须指定此设置才能启用 Windows 信息保护。
可用逗号分隔各项来指定多个范围。
例如: 3.4.0.1-3.4.255.255,192.168.1.1-192.168.255.255
",
+ "enterpriseIPv6Ranges": "指定组成公司网络的 IPv6 范围。此范围可与你指定的企业网络域名结合使用,共同定义公司网络界限。
可用逗号分隔各项来指定多个范围。
例如: 2001:4898:dc05::-2001:4898:dc05:ffff:ffff:ffff:ffff:ffff,2a01:110::-2a01:110:7fff:ffff:ffff:ffff:ffff:ffff
",
+ "enterpriseInternalProxyServers": "如果你的公司配置了代理,则可指定该代理,用于传送你在企业云资源设置中指定的云资源。
可用分号分隔各项来指定多个值。
例如: contoso.internalproxy1.com;contoso.internalproxy2.com
",
+ "enterpriseNetworkDomainNames": "指定组成公司网络的 DNS 名称。这些名称可与你指定的 IP 范围结合使用,共同定义公司网络界限。可用逗号分隔各项来指定多个值。
必须指定此设置才能启用 Windows 信息保护。
例如: corp.contoso.com,region.contoso.com
",
+ "enterpriseProtectedDomainNames": "指定构成公司网络的 DNS 名称。DNS 名称与指定用于定义公司网络边界的 IP 范围配合使用。通过使用 \"|\" 分隔各条目来指定多个值。
需要此设置来启用 Windows 信息保护。
例如: corp.contoso.com|region.contoso.com
",
+ "enterpriseProxyServers": "如果你的公司网络中有面向外部的代理,请在此处指定它们。指定代理服务器地址时,还应指定端口,流量允许通过此端口且受到 Windows 信息保护的保护。
注意: 此列表不得包括企业内部代理服务器列表中的服务器。可用分号分隔各项来指定多个值。
例如: proxy.contoso.com:80;proxy2.contoso.com:80
",
+ "maxInactivityTime1": "指定设备空闲后,导致设备锁定 PIN 或密码前允许的最长时间(以分钟为单位)。用户可以在“设置”应用中选择小于指定最大时间的任何现有超时值。注意,无论此策略设置的值为多少,Lumia 950 和 950XL 的最大超时值都为 5 分钟。",
+ "maxInactivityTime2": "0(默认值) - 未定义超时。默认值 \"0\" 是值“未定义超时。”",
+ "maxPasswordAttempts1": "此策略在移动设备和桌面上具有不同的行为。",
+ "maxPasswordAttempts2": "在移动设备上,当用户达到此策略设置的值时,设备将被擦除。",
+ "maxPasswordAttempts3": "在桌面上,当用户达到此策略设置的值时,设备不会被擦除。而是会将桌面置于 BitLocker 恢复模式,使数据不可访问,但可恢复。如果未启用 BitLocker,则无法执行此策略。",
+ "maxPasswordAttempts4": "在达到失败的尝试限制之前,会将用户发送到锁屏界面,并警告用户更多的失败尝试将锁定其计算机。当用户达到限制时,设备将自动重新启动并显示 BitLocker 恢复页面。此页面提示用户输入 BitLocker 恢复密钥。",
+ "maxPasswordAttempts5": "0(默认值) - 输入不正确的 PIN 或密码后,设备不会被擦除。",
+ "maxPasswordAttempts6": "如果所有策略值都等于 0,则最安全的值为 0;否则,最小策略值就是最安全的值。",
+ "mdmDiscoveryUrl": "指定注册到 MDM 的用户将使用的 MDM 注册终结点 URL。默认情况下,为 Intune 指定此值。",
+ "minimumPinLength1": "整数值,用于设置 PIN 所需的最小字符数。默认值为 4。可为此策略设置配置的最小数字为 4。可配置的最大数字必须小于最大 PIN 长度策略设置中配置的数字或小于 127 (以较小者为准)。",
+ "minimumPinLength2": "如果配置此策略设置,则 PIN 长度必须大于或等于此数字。如果禁用或不配置此策略设置,则 PIN 长度必须大于或等于 4。",
+ "name": "此网络边界的名称",
+ "neutralResources": "如果你的公司中有身份验证重定向终结点,请在此处指定它们。此处指定的位置将被视为个人位置或公司位置,具体取决于重定向之前的连接的上下文。
可用逗号分隔各项来指定多个值。
例如: sts.contoso.com,sts.contoso2.com
",
+ "passportForWork1": "将 Windows Hello 企业版设置为登录 Windows 的方法的值。",
+ "passportForWork2": "默认值为 True。如果将此策略设置为 False,则用户无法预配 Windows Hello 企业版,但可在加入 Azure Active Directory 且要求预配的手机上预配。",
+ "pinExpiration": "可为此策略设置配置的最大数字为 730。可为此策略设置配置的最小数字为 0。如果此策略设置为 0,则用户的 PIN 永不会过期。",
+ "pinHistory1": "可为此策略设置配置的最大数字为 50。可为此策略设置配置的最小数字为 0。如果此策略设置为 0,则不需要存储以前的 PIN。",
+ "pinHistory2": "用户的当前 PIN 包括在与用户帐户相关联的一组 PIN 中。PIN 重置不会保留 PIN 历史记录。",
+ "protectUnderLock": "在设备处于锁定状态时保护应用内容。",
+ "protectionModeBlock": "阻止: 阻止企业数据离开受保护的应用。
",
+ "protectionModeOff": "关闭: 用户可以自由重定位受保护应用的数据。不会记录任何操作。
",
+ "protectionModeOverride": "允许覆盖: 尝试将数据从受保护的应用重定位到未受保护的应用时,用户会收到提示。如果他们选择覆盖此提示,则将记录此操作。
",
+ "protectionModeSilent": "无提示: 用户可以自由重定位受保护应用的数据。将记录这些操作。
",
+ "required": "需要",
+ "revokeOnMdmHandoff": "于 Windows 10 版本 1703 中添加。此策略控制是否在设备从 MAM 升级到 MDM 时撤销 WIP 密钥。如果设置为“关”,则将撤销密钥,且用户在升级后可继续访问受保护文件。如果 MDM 服务是使用与 MAM 服务相同的 WIP EnterpriseID 配置的,则建议此设置。",
+ "revokeOnUnenroll": "这将导致在设备取消注册此策略时撤销加密密钥。",
+ "rmsTemplateForEdp": "用于 RMS 加密的 TemplateID GUID。Azure RMS 模板使 IT 管理员可以配置谁有权访问受 RMS 保护的文件以及他们有权访问的时长是多久。",
+ "showWipIcon": "这将通过覆盖图标让用户知道他们何时在企业环境中操作。",
+ "useRmsForWip": "指定是否允许对 WIP 进行 Azure RMS 加密。"
+ },
+ "requireAppPin": "在已注册的设备上检测到设备锁定时,选择“是”可禁用应用 PIN。
注意: Intune 不能使用 iOS/iPadOS 上的第三方 EMM 解决方案检测设备的注册情况。
"
+ },
+ "Autopilot": {
+ "AssignResourceAccount": {
+ "createNewCommandMenu": "新建",
+ "createNewResourceAccountInfo": "\r\n在注册过程中创建新的资源帐户。资源帐户会立即添加到资源帐户表中,但在注册设备以及验证 Surface Hub 订阅之前,帐户不会处于活动状态。详细了解资源帐户
\r\n",
+ "createNewResourceTitle": "新建资源帐户",
+ "deviceNameInvalid": "设备名称格式无效",
+ "deviceNameRequired": "设备名称是必需的",
+ "editResourceAccountLabel": "编辑",
+ "selectExistingCommandMenu": "选择现有"
+ },
+ "Device": {
+ "ComputerName": {
+ "validFormat": "名称必须使用 15 个或更少字符,并且只能包含字母(a 到 z、A 到 Z)、数字(0-9)和连字符。名称不能仅包含数字。名称不能包含空格。"
+ },
+ "Header": {
+ "addressableUserName": "用户易记名称",
+ "azureADDevice": "关联的 Azure AD 设备",
+ "batch": "组标记",
+ "dateAssigned": "分配日期",
+ "deviceAccountFriendlyName": "设备帐户易记名称",
+ "deviceAccountPwd": "设备帐户密码",
+ "deviceAccountUpn": "Device account",
+ "deviceDisplayName": "Device name",
+ "deviceName": "设备名",
+ "deviceUseType": "设备使用类型",
+ "enrollmentState": "注册状态",
+ "intuneDevice": "关联的 Intune 设备",
+ "lastContacted": "上次联系",
+ "make": "制造商",
+ "model": "模型",
+ "profile": "分配的配置文件",
+ "profileStatus": "配置文件状态",
+ "purchaseOrderId": "采购订单",
+ "resourceAccount": "资源帐户",
+ "serialNumber": "序列号",
+ "userPrincipalName": "用户"
+ },
+ "SurfaceHub": {
+ "friendlyNameRequired": "必须提供易记名称",
+ "pwdRequired": "密码是必需的。",
+ "upnRequired": "设备帐户是必需的",
+ "upnValidFormat": "值可以包含字母(a-z、A-Z)、数字(0-9)和连字符。值不能包含空白。"
+ }
+ },
+ "DeviceUseType": {
+ "meetingAndPresentation": "会议和演示文稿",
+ "teamCollaboration": "团队协作"
+ },
+ "Devices": {
+ "featureDescription": "Windows Autopilot 可以自定义用户的全新安装体验(OOBE)。",
+ "importErrorStatus": "未导入某些设备。请单击此处查看详细信息。",
+ "importPendingStatus": "正在导入。运行时间: {0} 分钟。此过程可能需要最多 {1} 分钟。"
+ },
+ "DirectoryService": {
+ "activeDirectoryAD": "已建立混合 Azure AD 联接",
+ "activeDirectoryADLabel": "混合 Azure AD 宽度 Autopilot",
+ "azureAD": "已联接 Azure AD",
+ "unknownType": "未知类型"
+ },
+ "Filter": {
+ "enrollmentState": "状态",
+ "profile": "配置文件状态"
+ },
+ "OOBE": {
+ "AddressableUserName": {
+ "validateEmpty": "用户友好名称不能为空。"
+ },
+ "ApplyComputerNameTemplate": {
+ "infoBalloon": "创建命名模板以在注册过程中将名称添加到设备。",
+ "label": "应用设备名模板"
+ },
+ "ApplyComputerNameTemplateDisabled": {
+ "label": "对于已建立混合 Azure AD 联接类型的 AutoPilot 部署配置文件,使用在域加入配置中指定的设置命名设备。"
+ },
+ "ComputerNameTemplate": {
+ "emptyValue": "MyCompany-%RAND:4%",
+ "label": "输入名称",
+ "noDisallowedChars": "名称只能包含字母数字字符、连字符、%SERIAL% 或 %RAND:x%",
+ "serialLength": "不能将 7 个以上的字符用于 %SERIAL%",
+ "validateLessThan15Chars": "名称必须为 15 个或更少字符",
+ "validateNoSpaces": "计算机名不能包含空格",
+ "validateNotAllNumbers": "名称还必须包含字母和/或连字符",
+ "validateNotEmpty": "名称不能为空",
+ "validateOnlyOneMacro": "名称只能包含 %SERIAL% 或 %RAND:x% 中的一个"
+ },
+ "ConfigureComputerNameTemplate": {
+ "description": "为设备创建唯一名称。名称长度不得超过 15 个字符,并且只能包含字母(a 到 z、A 到 Z)、数字(0-9)和连字符。名称不能仅包含数字。名称不能包含空白。可使用 %SERIAL% 宏添加特定于硬件的序列号。此外,还可使用 %RAND:x% 宏添加随机数字字符串,其中 x 等于要添加的位数。"
+ },
+ "EnableWhiteGlove": {
+ "infoBalloon": "允许按 Windows 键 5 次以运行 OOBE,无需用户身份验证即可注册设备并预配所有系统上下文应用和设置。用户上下文应用和设置将在用户登录时交付。",
+ "label": "允许预配的部署"
+ },
+ "HybridAzureADSkipConnectivityCheck": {
+ "infoBalloon": "即使 Autopilot Hybrid Azure AD 联接流没有在 OOBE 期间建立域控制器连接,它也会继续。",
+ "label": "跳过 AD 连接检查(预览)"
+ },
+ "accountType": "用户帐户类型",
+ "accountTypeInfo": "指定用户是设备上的管理员还是标准用户。请注意,此设置不适用于全局管理员帐户或公司管理员帐户。因为这些帐户可以访问 Azure AD 中的所有管理功能,所以它们不能为标准用户。",
+ "configOOBEInfo": "\r\n配置 Autopilot 设备的即装即用体验\r\n
",
+ "configureDevice": "部署模式",
+ "configureDeviceHintForSurfaceHub2": "Autopilot 仅支持 Surface Hub 2 的自部署模式。此模式不会将用户与已注册的设备关联,因此它不需要用户凭据。",
+ "configureDeviceHintForWindowsPC": "\r\n 部署节点控制用户是否需要提供凭据来预配设备。\r\n
\r\n \r\n - \r\n 用户驱动: 设备与注册设备的用户关联并且需要提供用户凭据来预配设备\r\n
\r\n - \r\n 自助部署(预览): 设备与注册设备的用户未关联并且不需要提供用户凭据即可预配设备\r\n
\r\n
",
+ "createSurfaceHub2Info": "为 Surface Hub 2 设备配置 Autopilot 注册设置。Autopilot 默认启用在 OOBE 期间跳过用户身份验证的操作。详细了解 Windows Autopilot for Surface Hub 2。",
+ "createWindowsPCInfo": "\r\n\r\n已为处于自部署模式下的 Autopilot 设备自动启用以下选项:\r\n
\r\n\r\n - \r\n 跳过“工作”或“家庭”使用选项\r\n
\r\n - \r\n 跳过 OEM 注册和 OneDrive 配置\r\n
\r\n - \r\n 跳过 OOBE 中的用户身份验证\r\n
\r\n
",
+ "endUserDevice": "用户驱动",
+ "hideEscapeLink": "隐藏更改帐户选项",
+ "hideEscapeLinkInfo": "初始化设备设置期间,公司登录页面和域错误页面上分别显示的更改帐户选项和使用其他帐户重新开始选项。若要隐藏这些选项,必须在 Azure Active Directory 中配置公司品牌(需要 Windows 10 1809 或更高版本或者 Windows 11)。",
+ "info": "第一次启动 Windows 时,AutoPilot 配置文件设置将定义用户看到的全新安装体验。",
+ "language": "语言(地区)",
+ "languageInfo": "指定将使用的语言和区域。",
+ "licenseAgreement": "Microsoft 软件许可条款",
+ "licenseAgreementInfo": "指定是否向用户显示 EULA。",
+ "plugAndForgetDevice": "自助部署(预览)",
+ "plugAndForgetGA": "正在自部署",
+ "privacySettingWarning": "已针对运行 Windows 10 版本 1903 及更高版本或 Windows 11 的设备更改诊断数据收集的默认值。",
+ "privacySettings": "隐私设置",
+ "privacySettingsInfo": "指定是否要向用户显示隐私设置。",
+ "showCortanaConfigurationPage": "Cortana 配置",
+ "showCortanaConfigurationPageInfo": "如果显示,将在启动过程中启用 Cortana 配置引入。",
+ "skipEULAWarning": "有关隐藏许可条款的重要信息",
+ "skipKeyboardSelection": "自动配置键盘",
+ "skipKeyboardSelectionInfo": "如果为 true,并且已设置语言,则会跳过键盘选择页。",
+ "subtitle": "AutoPilot 配置文件",
+ "title": "即装即用体验 (OOBE)",
+ "useOSDefaultLanguage": "默认操作系统",
+ "userSelect": "用户选择"
+ },
+ "Sync": {
+ "lastRequestedLabel": "最后一个同步请求",
+ "lastSuccessfulLabel": "上次成功同步",
+ "syncInProgress": "同步正在进行中。请稍后再次查看。",
+ "syncInitiated": "AutoPilot 设置同步已启动。",
+ "syncSettingsTitle": "同步 AutoPilot 设置"
+ },
+ "Title": {
+ "devices": "Windows AutoPilot 设备"
+ },
+ "Tooltips": {
+ "addressableUserName": "设备设置期间显示的问候语。",
+ "azureADDevice": "转到关联设备的设备详细信息。N/A 是指没有关联的设备。",
+ "batch": "可用于标识一组设备的字符串属性。Intune 的组标记字段映射到 Azure AD 设备上的 OrderID 属性。",
+ "dateAssigned": "向设备分配配置文件时的时间戳。",
+ "deviceAccountFriendlyName": "Surface Hub 设备的设备帐户易记名称",
+ "deviceAccountPwd": "Surface Hub 设备的设备帐户密码",
+ "deviceAccountUpn": "Surface Hub 设备的设备帐户电子邮件",
+ "deviceDisplayName": "为设备配置唯一的名称。在已建立混合 Azure AD 联接的部署中,此名称将被忽略。设备名称仍来自混合 Azure AD 设备的域加入配置文件。",
+ "deviceName": "有人尝试发现并连接到设备时显示的名称。",
+ "deviceUseType": " 设备将根据所选项进行设置。可以随时在“设置”中进行更改。\r\n \r\n - 对于会议和演示文稿,不会打开 Windows Hello,并且在每个会话后都会删除数据。\r\n
\r\n - 对于团队协作,将会打开 Windows Hello,并保存配置文件以供快速登录
\r\n
",
+ "enrollmentState": "指定设备是否已注册。",
+ "intuneDevice": "转到关联设备的设备详细信息。N/A 是指没有关联的设备。",
+ "lastContacted": "上次联系设备时的时间戳。",
+ "make": "所选设备的制造商。",
+ "model": "所选设备的型号",
+ "profile": "分配给设备的配置文件的名称。",
+ "profileStatus": "指定是否向设备分配配置文件。",
+ "purchaseOrderId": "采购订单 ID",
+ "resourceAccount": "设备的标识,或用户主体名称(UPN)。",
+ "serialNumber": "所选设备的序列号。",
+ "userPrincipalName": "设备设置期间要预填充身份验证的用户。"
+ },
+ "allDevices": "所有设备",
+ "allDevicesAlreadyAssignedError": "Autopilot 配置文件已分配给所有设备。",
+ "assignFailedDescription": "未能更新 {0} 的分配。",
+ "assignFailedTitle": "未能更新 AutoPilot 配置文件分配。",
+ "assignSuccessDescription": "已成功更新 {0} 的分配。",
+ "assignSuccessTitle": "已成功更新 Autopilot 配置文件分配。",
+ "assignSufaceHub2ProfileNextStep": "此部署的后续步骤",
+ "assignSurfaceHub2ProfileToDeviceGroup": "1. 将此配置文件分配给至少一个设备组",
+ "assignSurfaceHub2ProfileToResourceAccount": "2. 将资源帐户分配到每个向其部署此配置文件的 Surface Hub 设备",
+ "assignedDevicesCount": "已分配的设备",
+ "assignedDevicesResourceAccountDescription": "要将此配置文件部署到设备,必须为设备分配资源帐户。一次选择一个设备以分配现有资源帐户或创建新的帐户。详细了解资源帐户
",
+ "assignedDevicesResourceAccountStatusBarMessage": "此表仅列出已分配此配置文件的 Surface Hub 2 设备。",
+ "assigningDescription": "正在更新 {0} 的分配。",
+ "assigningTitle": "正在更新 Autopilot 配置文件分配。",
+ "autoremediationContext": "We've detected a hardware change on this device. We're trying to automatically register the new hardware. You don't need to do anything now; the status will be updated at the next check in with the result. Learn more about resetting the profile.",
+ "autoremediationTitle": "Device {0} has a fix pending",
+ "cannotDeleteMessage": "此配置文件分配到组。必须先将所有组从此配置文件取消分配,然后才能删除它。",
+ "cannotDeleteTitle": "无法删除 {0}",
+ "createdDateTime": "创建时间",
+ "deleteMessage": "如果删除此 AutoPilot 配置文件,则分配给此配置文件的任何设备都将显示为“未分配”。",
+ "deleteMessageWithPolicySet": "{0} 包含在一个或多个策略集中。如果删除 {0},将无法再通过这些策略集分配它。",
+ "deleteTitle": "是否确实要删除此配置文件?",
+ "description": "说明",
+ "deviceType": "设备类型",
+ "deviceUse": "设备使用",
+ "directoryServiceHintForSurfaceHub2": " \r\n Autopilot 仅支持 Surface Hub 2 设备的 Azure AD 加入。指定组织中的设备加入 Active Directory (AD) 的方式。\r\n
\r\n \r\n - \r\n Azure AD 加入: 仅限云,不使用本地 Windows Server Active Directory。\r\n
\r\n
\r\n ",
+ "directoryServiceHintForWindowsPC": "\r\n \r\n 指定设备如何加入组织中的 Active Directory (AD):\r\n
\r\n \r\n - \r\n 已加入 Azure AD: 仅限没有本地 Windows Server Active Directory 的云\r\n
\r\n
\r\n ",
+ "getAssignedDevicesCountError": "提取已分配设备计数时出现错误。",
+ "getAssignmentsError": "提取 Autopilot 配置文件分配时出错。",
+ "harvestDeviceId": "将所有目标设备转换为 Autopilot 设备",
+ "harvestDeviceIdDescription": "默认情况下,此配置文件只能应用于通过 Autopilot 服务同步的 Autopilot 设备。",
+ "harvestDeviceIdInfo": "\r\n 选择“是”可向 Autopilot 注册所有目标设备(如何尚未注册)。下一次已注册设备完成 Windows 开箱体验(OOBE)时,这些设备将完成分配的 Autopilot 方案。\r\n
\r\n 请注意,某些 Autopilot 方案需要特定的最低 Windows 版本。请确保设备具有所需的最低版本以完成该方案。\r\n
\r\n 删除此配置文件不会从 Autopilot 删除受影响的设备。要从 Autopilot 中删除设备,请使用 Windows Autopilot 设备视图。\r\n ",
+ "harvestDeviceIdWarning": "转换后,只能通过从 Autopilot 设备列表中删除 Autopilot 设备来使其回复原状。",
+ "holoLensCommandMenu": "HoloLens",
+ "info": "Windows Autopilot 部署配置文件可用于为设备自定义全新安装体验。",
+ "invalidProfileNameMessage": "不允许使用字符“{0}”",
+ "joinTypeLabel": "以此身份加入 Azure AD",
+ "lastModifiedDateTime": "上次修改时间:",
+ "manualRemediationContext": "We've detected a hardware change on this device. It won't automatically receive an Autopilot profile when it's reset unless you register the device again. Learn more about resetting the profile.",
+ "manualRemediationTitle": "Device {0} needs your attention",
+ "name": "名称",
+ "noAutopilotProfile": "没有 AutoPilot 配置文件",
+ "notEnoughPermissionAssignedError": "你的权限不够,无法将此配置文件分配到所选的一个或多个组。请与管理员联系。",
+ "profile": "配置文件",
+ "resourceAccountStatusBarMessage": "部署了此配置文件的每个 Surface Hub 2 设备都需要资源帐户。单击以了解详细信息。",
+ "selectServices": "选择设备将加入的目录服务",
+ "surfaceHub2CommandMenu": "Surface Hub 2",
+ "surfaceHub2SCommandMenu": "Surface Hub 2S",
+ "userAffinityLabel": "部署模式",
+ "windowsPCCommandMenu": "Windows 电脑",
+ "directoryServiceLabel": "加入 Azure AD 的类型"
},
- "CategoryDescription": {
- "androidGeneralApplicationRestrictions": "利用这些设置实时跟进哪些用户安装了公司未批准使用的应用。选择受限应用列表的类型:
\r\n 禁止的应用 - 你希望在用户安装此类应用时收到通知的应用的列表。
\r\n 批准的应用 - 公司批准使用的应用的列表。当用户安装非此列表内的应用时,你将收到通知。
\r\n",
- "androidZebraMxZebraMx": "通过按 XML 格式上传 MX 配置文件来配置 Zebra 设备。",
- "iosDeviceFeaturesAirprint": "使用这些设置将 iOS 设备配置为自动连接到网络上的兼容 AirPrint 打印机。需打印机的 IP 地址和资源路径。",
- "iosDeviceFeaturesExtensibleSingleSignOn": "配置应用扩展,该扩展可为运行 iOS 13.0 或更高版本的设备启用单一登录(SSO)。",
- "iosDeviceFeaturesHomeScreenLayout": "配置 iOS 设备上停靠屏幕和主屏幕的布局。某些设备可能对显示项的数量有限制。",
- "iosDeviceFeaturesIOSWallpaper": "显示将在 iOS 设备的主屏幕和/或锁屏界面上显示的图像。\r\n 要在每个位置显示唯一的图像,请分别使用锁屏界面图像和主屏幕图像创建一个配置文件。\r\n 然后将这两个配置文件分配给用户。\r\n
\r\n \r\n - 最大文件大小: 750 KB
\r\n - 文件类型: PNG、JPG 或 JPEG
\r\n
\r\n",
- "iosDeviceFeaturesNotifications": "指定应用的通知设定。支持 iOS 9.3 及更高版本。",
- "iosDeviceFeaturesSharedDevice": "指定在锁定屏幕上显示的可选文本。在 iOS 9.3 及更高版本中受支持。了解详细信息",
- "iosGeneralApplicationRestrictions": "利用这些设置实时跟进哪些用户安装了公司未批准使用的应用。选择受限应用列表的类型:
\r\n 禁止的应用 - 你希望在用户安装此类应用时收到通知的应用的列表。
\r\n 批准的应用 - 公司批准使用的应用的列表。当用户安装非此列表内的应用时,你将收到通知。
\r\n",
- "iosGeneralApplicationVisibility": "使用显示应用列表指定用户可以查看或启动的 iOS 应用。使用隐藏应用列表指定用户无法查看或启动的 iOS 应用。",
- "iosGeneralAutonomousSingleAppMode": "你添加到此列表并分配给设备的应用可以锁定设备,以便启动后仅运行该应用;或在某个操作正在运行时(例如正在测试时)锁定设备。操作完成后或删除限制后,设备将恢复其正常状态。",
- "iosGeneralKiosk": "展台模式可将各种设置锁定到设备中,或指定可在设备上运行的单个应用。这在诸如零售商店等你希望设备只运行一个演示应用的环境中很有用。",
- "macDeviceFeaturesAirprint": "使用这些设置来配置 macOS 设备以自动连接到网络上兼容 AirPrint 的打印机。需要打印机的 IP 地址和资源路径。",
- "macDeviceFeaturesAssociatedDomains": "配置关联的域以共享组织的应用和网站之间的数据和登录凭据。此配置文件可应用于运行 macOS 10.15 或更高版本的设备。",
- "macDeviceFeaturesExtensibleSingleSignOn": "配置应用扩展,该扩展可为运行 macOS 10.15 或更高版本的设备启用单一登录(SSO)。",
- "macDeviceFeaturesLoginItems": "选择用户登录到其设备时打开的应用、文件和文件夹。如果不希望用户更改所选应用的打开方式,可在用户配置中隐藏应用。",
- "macDeviceFeaturesLoginWindow": "配置 macOS 登录屏幕的外观以及要在用户登录前后提供给用户的功能。",
- "macExtensionsKernelExtensions": "使用这些设置在运行 10.13.2 或更高版本的 macOS 设备上配置内核扩展策略。",
- "macGeneralDomains": "用户发送或接收的电子邮件如果不匹配在此处指定的域,将标记为不受信任。",
- "windows10EndpointProtectionApplicationGuard": "使用 Microsoft Edge 时,Microsoft Defender 应用程序防护会隔绝你的环境与你的组织尚未定义为受信任的站点。当用户访问你的独立网络边界中未列出的站点时,将通过 Hyper-V 在虚拟浏览会话中打开该站点。受信任的站点由网络边界定义,可在设备配置中对其进行配置。请注意,此功能仅适用于运行 64 位 Windows 10 或更高版本的设备。",
- "windows10EndpointProtectionCredentialGuard": "启用 Credential Guard 将启用以下所需设置:\r\n
\r\n \r\n - 启用基于虚拟化的安全: 在下一次重启时打开基于虚拟化的安全 (VBS)。基于虚拟化的安全使用 Windows 虚拟机监控程序为安全服务提供支持。
\r\n
\r\n - 通过直接内存访问安全启动: 通过安全启动和直接内存访问 (DMA) 打开 VBS。
\r\n
\r\n ",
- "windows10EndpointProtectionDeviceGuard": "选择需要由 Microsoft Defender 应用程序控制策略审核或能够由该策略信任运行的其他应用。将自动信任 Windows 组件和来自 Windows 应用商店的所有应用
\r\n在“仅审核”模式下运行时,应用程序不受阻止。“仅审核”模式将在本地客户端日志中记录所有事件。\r\n",
- "windows10GeneralPrivacyPerApp": "添加应用,该应用的隐私行为不同于“默认隐私”中定义的内容。",
- "windows10NetworkBoundaryNetworkBoundary": "网络边界是企业资源(如云托管的域和企业网络上的计算机的 IP 地址范围)的列表。定义网络边界,以应用策略来保护驻留在这些位置的数据。",
- "windowsHealthMonitoring": "配置 Windows 运行状况监视策略。",
- "windowsPhoneGeneralApplicationRestrictions": "Windows Phone 可阻止用户安装或启动已禁止的应用列表中指定的应用(或已批准的应用列表中未指定的应用)。必须将所有托管应用添加到已批准列表。"
- },
"MinimumOperatingSystem": {
"Android": {
"v10": "Android 10.0",
@@ -2435,6 +1154,304 @@
"excludedGroups": "排除的组",
"licenseType": "许可证类型"
},
+ "TAP": {
+ "AccessRequirements": {
+ "infoText": "配置用户在工作上下文中访问应用时必须满足的 PIN 和凭据要求。"
+ },
+ "DataProtection": {
+ "infoText": "此组包括数据丢失防护(DLP)控件,如“剪切”、“复制”、“粘贴”和“另存为”限制。这些设置确定用户与应用中的数据的交互方式。"
+ },
+ "DeviceTypes": {
+ "selectOne": "至少选择一个设备类型。"
+ },
+ "TargetedApps": {
+ "TargetToAll": {
+ "label": "面向所有设备类型上的应用"
+ },
+ "infoText": "选择要如何将此策略应用于不同设备上的应用。然后,至少添加一个应用。",
+ "selectOne": "至少选择一个应用以创建策略。"
+ }
+ },
+ "AssignmentAction": {
+ "exclude": "已排除",
+ "include": "已包含",
+ "includeAllDevicesVirtualGroup": "已包含",
+ "includeAllUsersVirtualGroup": "已包含"
+ },
+ "AppType": {
+ "androidEnterpriseSystemApp": "Android Enterprise 系统应用",
+ "androidForWorkApp": "托管的 Google Play 商店应用",
+ "androidLobApp": "Android 业务线应用",
+ "androidStoreApp": "Android 应用商店应用",
+ "builtInAndroid": "内置的 Android 应用",
+ "builtInApp": "内置的应用",
+ "builtInIos": "内置的 iOS 应用",
+ "default": "",
+ "iosLobApp": "iOS 业务线应用",
+ "iosStoreApp": "iOS 应用商店应用",
+ "iosVppApp": "iOS Volume Purchase Program 应用",
+ "lineOfBusinessApp": "业务线应用",
+ "macOSDmgApp": "macOS 应用(DMG)",
+ "macOSEdgeApp": "Microsoft Edge (macOS)",
+ "macOSLobApp": "macOS 业务线应用",
+ "macOSMdatpApp": "Microsoft Defender ATP (macOS)",
+ "macOSOfficeSuiteApp": "Microsoft 365 应用(macOS)",
+ "macOsVppApp": "macOS Volume Purchase Program 应用",
+ "managedAndroidLobApp": "托管 Android 业务线应用",
+ "managedAndroidStoreApp": "托管 Android 应用商店应用",
+ "managedGooglePlayApp": "托管的 Google Play 商店应用",
+ "managedGooglePlayPrivateApp": "托管的 Google Play 专用应用",
+ "managedGooglePlayWebApp": "托管 Google Play Web 链接",
+ "managedIosLobApp": "托管 iOS 业务线应用",
+ "managedIosStoreApp": "托管 iOS 应用商店应用",
+ "microsoftStoreForBusinessApp": "适用于企业的 Microsoft 应用商店应用",
+ "microsoftStoreForBusinessReleaseManagedApp": "适用于企业的 Microsoft Store",
+ "officeSuiteApp": "Microsoft 365 应用版(Windows 10 及更高版本)",
+ "webApp": "Web 链接",
+ "windowsAppXLobApp": "Windows AppX 业务线应用",
+ "windowsClassicApp": "Windows 应用(Win32)",
+ "windowsEdgeApp": "Microsoft Edge (Windows 10及更高版本)",
+ "windowsMobileMsiLobApp": "Windows MSI 业务线应用",
+ "windowsPhone81AppXBundleLobApp": "Windows Phone 8.1 AppX 业务线应用",
+ "windowsPhone81AppXLobApp": "Windows Phone 8.1 AppX 业务线应用",
+ "windowsPhone81StoreApp": "Windows Phone 8.1 应用商店应用",
+ "windowsPhoneXapLobApp": "Windows Phone XAP 业务线应用",
+ "windowsStoreApp": "Microsoft Store 应用",
+ "windowsUniversalAppXLobApp": "Windows Universal AppX 业务线应用",
+ "windowsUniversalLobApp": "Windows 通用业务线应用"
+ },
+ "TAPSettings": {
+ "AllowedDataIngestionLocations": {
+ "label": "允许用户打开来自所选服务的数据",
+ "tooltip": "选择用户可打开其中数据的应用程序存储服务。将阻止所有其他服务。如果不选择任何服务,将阻止用户打开数据。"
+ },
+ "AndroidBackup": {
+ "label": "将组织数据备份到 Android 备份服务",
+ "tooltip": "选择 {0} 会阻止将组织数据备份到 Android 备份服务。\r\n选择 {1} 则允许将组织数据备份到 Android 备份服务。\r\n个人或非托管数据不受影响。"
+ },
+ "AndroidBiometricAuthentication": {
+ "label": "访问时使用生物特征而非 PIN",
+ "tooltip": "选择用户可以使用哪些 Android 身份验证方法(如果有)来代替应用 PIN。"
+ },
+ "AndroidFingerprint": {
+ "label": "访问时使用指纹而非 PIN (Android 6.0+)",
+ "tooltip": "Android OS 使用指纹扫描对 Android 设备用户进行身份验证。此功能支持 Android 设备上的本机生物识别控件。不支持 OEM 特定生物识别设置,如 Samsung Pass。如果允许,必须使用本机生物识别控件在支持该控件的设备上访问该应用。"
+ },
+ "AndroidOverrideFingerprint": {
+ "label": "超时后使用 PIN 覆盖指纹"
+ },
+ "AppPIN": {
+ "label": "应用 PIN(设置了设备 PIN 时)",
+ "tooltip": "如果未作要求,并且如果已在注册了 MDM 的设备上设置了设备 PIN,则访问应用时无需使用应用 PIN。
\r\n\r\n注意: Intune 无法使用 Android 上的第三方 EMM 解决方案检测设备注册。"
+ },
+ "BlockDataIngestionIntoOrganizationDocuments": {
+ "label": "将数据打开到组织文档中",
+ "tooltip1": "选择“阻止”以禁止在此应用中使用 “打开”选项或其他选项在帐户间共享数据。如果希望允许在此应用中使用“打开”和其他选项在帐户间共享数据,请选择“允许”。",
+ "tooltip2": "设置为“阻止”时,可以配置“允许用户打开来自所选服务的数据”设置,以指定允许哪些服务使用组织数据位置。",
+ "tooltip3": "注意: 仅当将“从其他应用接收数据”设置设为“策略托管应用”时,才仅强制实施此设置。
\r\n注意: 此设置并非适用于所有应用程序。有关详细信息,请参阅 {0}。",
+ "tooltip4": "注意: 仅当将“从其他应用接收数据”设置设为“策略托管应用”时,才仅强制实施此设置。
\r\n注意: 此设置并非适用于所有应用程序。有关详细信息,请参阅 {0} 或 {0}。"
+ },
+ "ConnectToVpnOnLaunch": {
+ "label": "在应用启动时启动 Microsoft Tunnel 连接",
+ "tooltip": "应用启动时允许连接到 VPN"
+ },
+ "CredentialsForAccess": {
+ "label": "用于访问的工作或学校帐户凭据",
+ "tooltip": "如果有相应要求,须使用工作或学校凭据来访问策略托管应用。如果需要 PIN 或生物识别方法来访问应用,那么除此之外,仍需使用工作或学校帐户凭据。"
+ },
+ "CustomBrowserDisplayName": {
+ "label": "非托管浏览器名称",
+ "tooltip": "输入与“非托管浏览器 ID”关联的浏览器的应用程序名称。如果未安装指定的浏览器,则将对用户显示此名称。"
+ },
+ "CustomBrowserPackageId": {
+ "label": "非托管浏览器 ID",
+ "tooltip": "输入单个浏览器的应用程序 ID。来自策略托管应用程序的 Web 内容(http/s)将在指定的浏览器中打开。"
+ },
+ "CustomBrowserProtocol": {
+ "label": "非托管浏览器协议",
+ "tooltip": "为单个非托管浏览器输入协议。来自策略托管应用程序的 Web 内容(http/s)将在支持此协议的任意应用中打开。
\r\n \r\n注意: 仅包含协议前缀。如果浏览器需要 \"mybrowser://www.microsoft.com\" 形式的链接,请输入 \"mybrowser\"。
"
+ },
+ "CustomDialerAppDisplayName": {
+ "label": "拨号器应用名称"
+ },
+ "CustomDialerAppPackageId": {
+ "label": "拨号器应用包 ID"
+ },
+ "CustomDialerAppProtocol": {
+ "label": "拨号器应用 URL 方案"
+ },
+ "Cutcopypaste": {
+ "label": "限制在其他应用之间进行剪切、复制和粘贴",
+ "tooltip": "在应用和设备上安装的其他已批准的应用之间剪切、复制和粘贴数据。选择完全阻止应用之前的这些操作、允许对任何应用执行这些操作或限制对组织管理的应用执行这些操作。
\r\n\r\n具有粘贴功能的策略托管应用可接受来自另一个应用的粘贴内容。但它禁止用户与外部共享其内容,除非是与托管应用进行共享。
"
+ },
+ "DialerRestrictionLevel": {
+ "iosTooltip": "通常,当用户选择应用中的一个超链接电话号码时,系统将打开一个拨号器应用,其中预填充了该电话号码并准备呼叫。对于此设置,请选择从策略管理的应用启动时如何处理此类型的内容传输。为了使此设置生效,可能还需要其他步骤。首先,验证电话和电话提示是否已从“要豁免的精选应用”列表中删除。然后,确保该应用程序使用的是较高版本的 Intune SDK (版本 12.7.0+)。",
+ "label": "将电信数据传输到",
+ "tooltip": "通常,当用户在应用中选择超链接电话号码时,将打开拨号器应用,其中已预填充了该电话号码并可进行呼叫。对于此设置,请选择从策略管理的应用中启动此类内容传输时要如何对其进行处理。"
+ },
+ "EncryptData": {
+ "label": "对组织数据进行加密",
+ "link": "https://docs.microsoft.com/en-us/intune/app-protection-policy-settings-android#data-relocation-settings",
+ "tooltip": "选择 {0} 会使用 Intune 应用层加密功能强制加密组织数据。
\r\n\r\n选择 {1} 则不使用 Intune 应用层加密功能强制加密组织数据。\r\n\r\n
\r\n注意: 有关 Intune 应用层加密功能的详细信息,请参阅 {2}。"
+ },
+ "EncryptDataAndroid": {
+ "tooltip": "选择“必需”以对此应用中的工作或学校数据启用加密。Intune 使用 OpenSSL、256 位 AES 加密方案和 Android 密钥存储系统来安全加密应用数据。数据在文件 I/O 任务过程中同步加密。设备存储上的内容始终保持加密状态。SDK 将继续提供 128 位密钥支持,以兼容使用较旧 SDK 版本的内容和应用。
\r\n\r\n加密方法符合 FIPS 140-2。
"
+ },
+ "EncryptDataIos": {
+ "tooltip1": "选择“必需”可启用此应用中工作或学校数据的加密。Intune 强制 iOS/iPadOS 设备加密在设备锁定时保护应用数据。应用程序可以选择使用 Intune APP SDK 加密加密应用数据。Intune APP SDK 使用 iOS/iPadOS 加密方法将 128 位 AES 加密应用于应用数据。",
+ "tooltip2": "如果启用此设置,系统可能要求用户设置并使用 PIN 来访问其设备。如果无需设备 PIN 和加密,则系统会显示“你的组织要求你在启用设备 PIN 后才可访问此应用”消息,提示用户设置 PIN。",
+ "tooltip3": "转到 Apple 官方文档,查看哪些 iOS 加密模块符合 FIPS 140-2 或待 FIPS 140-2 认证。"
+ },
+ "EncryptDataOnEnrolledDevices": {
+ "label": "对注册的设备上的组织数据进行加密",
+ "tooltip": "选择 {0} 会在所有设备上使用 Intune 应用层加密功能强制加密组织数据。
\r\n\r\n选择 {1} 则不在所有已注册的设备上使用 Intune 应用层加密功能强制加密组织数据。"
+ },
+ "IOSBackup": {
+ "label": "将组织数据备份到 iTunes 和 iCloud 备份",
+ "tooltip": "选择 {0} 会阻止将组织数据备份到 iTunes 或 iCloud。\r\n选择 {1} 则允许将组织数据备份到 iTunes 或 iCloud。\r\n个人或非托管数据不受影响。"
+ },
+ "IOSFaceID": {
+ "label": "访问时使用 Face ID 而非 PIN (iOS 11+/iPadOS)",
+ "tooltip": "Face ID 使用面部识别技术在 iOS/iPadOS 设备上对用户进行身份验证。Intune 调用 LocalAuthentication API 对使用 Face ID 的用户进行身份验证。如果允许,必须使用 Face ID 在支持 Face ID 的设备上访问该应用。"
+ },
+ "IOSOverrideTouchId": {
+ "label": "超时后使用 PIN 覆盖生物特征"
+ },
+ "IOSTouchId": {
+ "label": "访问时使用 Touch ID 而非 PIN (iOS 8+/iPadOS)",
+ "tooltip": "Touch ID 使用指纹识别技术在 iOS 设备上对用户进行身份验证。Intune 调用 LocalAuthentication API 对使用 Touch ID 的用户进行身份验证。如果允许,必须使用 Touch ID 在支持 Touch ID 的设备上访问该应用。"
+ },
+ "NotificationRestriction": {
+ "label": "组织数据通知",
+ "tooltip": "选择下述一个选项来指定如何为此应用和任何连接的设备(例如可穿戴设备)显示组织帐户的通知:
\r\n{0}: 不共享通知。
\r\n{1}: 不在通知中共享组织数据。如果不受应用程序支持,则阻止通知。
\r\n{2}: 共享所有通知。
\r\n 仅限 Android:\r\n 注意: 此设置不适用于所有应用程序。有关详细信息,请参阅 {3}
\r\n \r\n 仅限 iOS:\r\n注意: 此设置不适用于所有应用程序。有关详细信息,请参阅 {4}
"
+ },
+ "OpenLinksManagedBrowser": {
+ "label": "限制与其他应用的 Web 内容传输",
+ "tooltip": "选择下列选项之一,以指定此应用可在其中打开 Web 内容的应用:
\r\nEdge: 仅允许在 Edge 中打开 Web 内容
\r\n非托管浏览器: 仅允许在由“非托管浏览器协议”设置定义的非托管浏览器中打开 Web 内容
\r\n任何应用: 允许在任何应用中打开 Web 链接
"
+ },
+ "OverrideBiometric": {
+ "tooltip": "如果有相应要求,PIN 提示将覆盖生物计量提示,具体取决于超时时间(非活动状态分钟数)。如果不满足此超时值,将持续显示 生物计量提示。此超时值应大于“(非活动状态分钟数)分钟后重新检查访问要求”下指定的值。"
+ },
+ "PinAccess": {
+ "label": "用于访问的 PIN",
+ "tooltip": "如果有相应要求,须使用 PIN 访问策略托管应用。用户第一次通过工作或学校帐户打开应用时必须创建一个访问 PIN。"
+ },
+ "PinLength": {
+ "label": "选择最小 PIN 长度",
+ "tooltip": "此设置指定 PIN 的最小位数。"
+ },
+ "PinType": {
+ "label": "PIN 类型",
+ "tooltip": "数值 PIN 全部由数字组成。密码由字母数字字符和特殊字符组成。"
+ },
+ "Printing": {
+ "label": "正在打印组织数据",
+ "tooltip": "如果阻止,则应用无法打印受保护的数据。"
+ },
+ "ReceiveData": {
+ "label": "从其他应用接收数据",
+ "tooltip": "选择以下选项之一来指定此应用可从其接收数据的应用:
\r\n\r\n无: 不允许接收来自任何应用的组织文档或帐户中的数据
\r\n\r\n策略托管应用: 只允许接收来自其他策略托管应用的组织文档或帐户中的数据\r\n
\r\n任何带有传入的组织数据的应用: 允许接收来自任何应用的组织文档或帐户中的数据并将所有不具有用户帐户的传入的数据视为组织数据
\r\n\r\n所有应用: 允许接收来自任何应用的组织文档或帐户中的数据"
+ },
+ "RecheckAccessAfter": {
+ "label": "(非活动状态分钟数)分钟后重新检查访问要求\r\n\r\n",
+ "tooltip": "如果策略托管应用处于非活动状态的时间超过指定的非活动状态分钟数,应用将提示在启动应用后重新检查访问要求(也即 PIN、条件启动设置)。"
+ },
+ "RestrictKeyboards": {
+ "duplicatePackageError": "包 ID 必须是唯一的。",
+ "invalidPackageError": "包 ID 无效",
+ "label": "批准的键盘",
+ "select": "选择要审批的键盘",
+ "subtitle": "添加使用户可与目标应用一起使用的所有键盘和输入法。由于你希望向最终用户显示键盘,因此请输入键盘名称。",
+ "title": "添加已批准的键盘",
+ "toolTip": "选择“需要”,然后指定此策略批准的键盘的列表。了解详细信息。"
+ },
+ "SaveData": {
+ "label": "保存组织数据的副本",
+ "tooltip": "选择 {0} 则阻止使用“另存为”将组织数据的副本保存到新位置而非所选的存储服务。\r\n 选择 {1} 则允许使用“另存为”将组织数据的副本保存到新位置而非所选的存储服务。
\r\n\r\n\r\n注意: 此设置并非适用于所有应用程序。有关详细信息,请参阅 {2}。\r\n"
+ },
+ "SaveDataToSelected": {
+ "label": "允许用户将副本保存到选定的服务",
+ "tooltip": "选择用户可将组织数据的副本保存到的存储服务。将阻止所有其他服务。如果不选择任何服务,将阻止用户保存组织数据的副本。"
+ },
+ "ScreenCaptureAndAndroidAssistant": {
+ "label": "屏幕捕获和 Google 助手\r\n",
+ "tooltip": "如果阻止,使用策略托管应用时,会禁用屏幕捕获和 Google 助手应用扫描功能。此功能支持常规 Google 助手应用。不支持使用 Google Assist API 第三方助手。如果选择“阻止”,在通过工作或学校帐户使用此应用时会导致应用切换器预览图像变得模糊。"
+ },
+ "SendData": {
+ "label": "将组织数据发送到其他应用",
+ "tooltip": "选择以下选项之一来指定此应用可向其发送组织数据的应用:
\r\n\r\n\r\n无: 不允许向任何应用发送组织数据
\r\n\r\n\r\n策略托管应用: 只允许向其他策略托管应用发送组织数据
\r\n\r\n\r\n带 OS 共享功能的策略托管应用: 只允许向已注册的设备上的其他策略托管应用发送组织数据及向其他 MDM 托管应用发送组织文档
\r\n\r\n\r\n带“打开方式/共享”筛选功能的策略托管应用: 只允许向其他策略托管应用发送组织数据并筛选 OS“打开方式/共享”对话框,仅显示策略托管应用\r\n
\r\n\r\n所有应用: 允许向任何应用发送组织数据"
+ },
+ "SimplePin": {
+ "label": "简单 PIN",
+ "tooltip": "用户如果受到阻止,则无法创建简单 PIN。简单 PIN 是连续或重复的一串数字或字符,例如 1234、ABCD 或 1111。请注意,如果要阻止“密码”类型的简单 PIN,该密码需具有至少一个数字、一个字母以及一个特殊字符。"
+ },
+ "SyncContacts": {
+ "label": "将策略托管应用数据与本机应用或加载项同步"
+ },
+ "ThirdPartyKeyboards": {
+ "infoBox": "键盘限制将应用于应用的所有区域。此限制将影响针对支持多个标识的应用的个人帐户。了解详细信息。",
+ "label": "第三方键盘"
+ },
+ "Timeout": {
+ "label": "超时(非活动状态分钟数)"
+ },
+ "Tap": {
+ "numberOfDays": "天数",
+ "pinResetAfterNumberOfDays": "PIN 重置前的天数",
+ "previousPinBlockCount": "选择要保留的曾用 PIN 值个数"
+ }
+ },
+ "ScheduledAction": {
+ "Form": {
+ "editBlockActionInfo": "所有符合性策略必需一个阻止操作。",
+ "graceperiod": "计划(已超出符合性的天数)",
+ "graceperiodInfo": "指定在出现不符合后多久为用户设备触发此操作",
+ "subtitle": "指定操作参数",
+ "title": "操作参数"
+ },
+ "List": {
+ "gracePeriodDay": "失去符合性后 {0} 天",
+ "gracePeriodDays": "已超出符合性 {0} 天",
+ "gracePeriodHour": "已超出符合性 {0} 小时",
+ "gracePeriodHours": "已超出符合性 {0} 小时",
+ "gracePeriodMinute": "已超出符合性 {0} 分钟",
+ "gracePeriodMinutes": "已超出符合性 {0} 分钟",
+ "immediately": "立即",
+ "schedule": "计划",
+ "scheduleInfoBalloon": "处于不合规状态的天数",
+ "subtitle": "指定在不符合设备上执行操作的顺序",
+ "title": "操作"
+ },
+ "Notification": {
+ "additionalEmailLabel": "其他用户",
+ "additionalRecipients": "其他收件人(通过电子邮件)",
+ "additionalRecipientsBladeTitle": "选择其他收件人",
+ "emailAddressPrompt": "输入电子邮件地址(用逗号分隔)",
+ "invalidEmail": "电子邮件地址无效",
+ "messageTemplate": "邮件模板",
+ "noneSelected": "尚未选择",
+ "notSelected": "未选中",
+ "numSelected": "已选定 {0} 个",
+ "selected": "已选定"
+ },
+ "block": "标记不合规设备",
+ "lockDevice": "锁定设备(本地操作)",
+ "lockDeviceWithPasscode": "锁定设备(本地操作)",
+ "noAction": "无操作",
+ "noActionRow": "无操作,选择“添加”以添加操作",
+ "pushNotification": "向最终用户发送推送通知",
+ "remoteLock": "远程锁定不合规设备",
+ "removeSourceAccessProfile": "删除源访问配置文件",
+ "retire": "停用不相容设备",
+ "wipe": "擦除",
+ "emailNotification": "向最终用户发送电子邮件"
+ },
+ "InstallIntent": {
+ "available": "可用于已注册的设备",
+ "availableWithoutEnrollment": "不论是否注册均可使用",
+ "required": "必需",
+ "uninstall": "卸载"
+ },
"EnrollmentStatusScreen": {
"Apps": {
"managedApps": "托管应用",
@@ -2466,142 +1483,61 @@
"resetToggle": "如果发生安装错误,允许用户重置设备",
"timeout": "在安装时间超过指定的分钟数时显示错误信息"
},
- "EnrollmentType": {
- "devicesWithEnrollment": "托管设备",
- "devicesWithoutEnrollment": "托管应用"
- },
- "ApplicabilityRules": {
- "GridLabel": {
- "property": "属性",
- "rule": "规则",
- "ruleDetails": "规则详细信息",
- "value": "值"
- },
- "assignIf": "在以下情况下分配配置文件",
- "deleteWarning": "这将删除所选适用性规则",
- "dontAssignIf": "在以下情况下不分配配置文件",
- "editionDisplayText": "{0} {1}",
- "editionDisplayTextMore": "还有 {0} 个",
- "instructions": "指定如何在分配的组内应用此配置文件。Intune 仅将配置文件应用到满足以下规则的组合标准的设备。",
- "maxText": "最大值",
- "minText": "最小值",
- "noActionRow": "未指定任何适用性规则",
- "oSVersion": "如 1.2.3.4",
- "toText": "到",
- "windows10Education": "Windows 10/11 教育版",
- "windows10EducationN": "Windows 10/11 教育版 N",
- "windows10Enterprise": "Windows 10/11 企业版",
- "windows10EnterpriseN": "Windows 10/11 企业版 N",
- "windows10HolographicEnterprise": "Windows 10 全息企业版",
- "windows10Home": "Windows 10/11 家庭版",
- "windows10HomeChina": "Windows 10 家庭中文版",
- "windows10HomeN": "Windows 10/11 家庭版 N",
- "windows10HomeSingleLanguage": "Windows 10/11 家庭单语言版",
- "windows10IoTCore": "Windows 10 IoT Core",
- "windows10IoTCoreCommercial": "Windows 10 IoT Core Commercial",
- "windows10Mobile": "Windows 10 移动版",
- "windows10MobileEnterprise": "Windows 10 移动企业版",
- "windows10OsEdition": "OS 版本",
- "windows10OsVersion": "OS 版本",
- "windows10Professional": "Windows 10/11 专业版",
- "windows10ProfessionalEducation": "Windows 10/11 教育专业版",
- "windows10ProfessionalEducationN": "Windows 10/11 教育专业版 N",
- "windows10ProfessionalN": "Windows 10 专业版 N 版",
- "windows10ProfessionalWorkstation": "Windows 10/11 专业版工作站",
- "windows10ProfessionalWorkstationN": "Windows 10/11 专业版工作站 N"
+ "Devices": {
+ "General": {
+ "android": "Android"
+ },
+ "aOSP": "Android 开放源代码项目",
+ "android": "Android 设备管理员",
+ "androidWorkProfile": "Android Enterprise (工作配置文件)",
+ "iOS": "iOS/iPadOS",
+ "mac": "macOS",
+ "windows": "Windows (MDM)",
+ "windows10": "Windows 10 和更高版本",
+ "windowsHomeSku": "Windows 家庭 Sku",
+ "windowsMobile": "Windows Mobile"
+ },
+ "AppInfoBalloonText": {
+ "Certificate": {
+ "customSubjectName": "CN={{UserName}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US\r\nor\r\nCN={{AAD_Device_ID}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US",
+ "keySize": "选择密钥中包含的位数。",
+ "keyUsage": "指定交换证书的公钥所需的加密操作。",
+ "renewalThreshold": "输入设备可以请求续订证书之前允许的剩余证书有效期的百分比(介于 1% 和 99% 之间)。Intune 中的推荐量为 20%。(1-99)",
+ "rootCert": "选择先前配置和分配的根 CA 证书配置文件。CA 证书必须与为此配置文件(当前正在配置的配置文件)颁发证书的 CA 的根证书相匹配。",
+ "scepServerUrl": "输入通过 SCEP 颁发证书的 NDES 服务器的 URL (必须为 HTTPS),例如 https://contoso.com/certsrv/mscep/mscep.dll",
+ "scepServerUrls": "为通过 SCEP 颁发证书的 NDES 服务器添加一个或多个 URL (必须为 HTTPS),例如 https://contoso.com/certsrv/mscep/mscep.dll",
+ "subjectAlternativeName": "使用者可选名称",
+ "subjectNameFormat": "使用者名称格式",
+ "validityPeriod": "证书到期前的剩余时间量。输入一个等于或低于证书模板中显示的有效期的值。默认设置为一年。"
+ },
+ "appInstallContext": "此设置指定要与此应用相关联的安装上下文。对于双模式应用,请选择此应用所需的上下文。对于所有其他应用,此设置基于应用包预先选择,无法修改。",
+ "autoUpdateMode": "配置应用的更新优先级。选择“默认”以要求设备连接到 WiFi、充电,且在更新应用之前不得主动使用。选择“高优先级”可在开发人员发布应用后立即更新应用,无论设备充电状态、WiFi 功能或最终用户活动如何。选择“推迟”以放弃最多 90 天的应用更新。“高优先级”和“推迟”仅在 DO 设备上生效。",
+ "configurationSettingsFormat": "配置设置格式文本",
+ "ignoreVersionDetection": "对于要由应用开发商自动更新的应用(例如 Google Chrome),请将此设置为 \"Yes\"。",
+ "ignoreVersionDetectionMacOSLobApp": "若应用由应用开发者自动更新或者若在安装前仅检查有无应用捆绑 iD,请选择“是”。若在安装前检查有无应用捆绑 ID 和版本号,请选择“否”。",
+ "installAsManagedMacOSLobApp": "此设置仅适用于 macOS 11 及更高版本。将安装此应用,但不在 macOS 10.15 及更低版本上管理它。",
+ "installContextDropdown": "选择恰当的安装上下文。用户上下文将仅为目标用户安装应用,设备上下文将为设备上的所有用户安装应用。",
+ "ldapUrl": "这是客户端可由其获取电子邮件收件人公共加密密钥的 LDAP 主机名。当密钥可用时,将加密电子邮件。支持的格式: - ldap.example.com
\r\n- ldap.example.com:123
\r\n- ldap://ldap.example.com
- ldap://ldap.example.com:123
- ldaps://ldap.example.com
\r\n- ldaps://ldap.example.com:123
",
+ "permissionsSettings": "选择关联应用的运行时权限。",
+ "policyAssociatedApp": "选择此策略将与之关联的应用。",
+ "policyConfigurationSettings": "选择要用于为此策略定义配置设置的方法。",
+ "policyDescription": "或者,为此配置策略输入说明。",
+ "policyEnrollmentType": "选择这些设置是否通过设备管理或使用 Intune SDK 生成的应用管理。",
+ "policyName": "为此配置策略输入名称。",
+ "policyPlatform": "选择此应用配置策略将应用到其中的平台。",
+ "policyProfileType": "选择此应用配置文件将应用到的设备配置文件类型",
+ "policySMime": "配置 Outlook 的 S/MIME 签名和加密设置。",
+ "sMimeDeployCertsFromIntune": "指定是否将从 Intune 发送 S/MIME 证书以用于 Outlook。\r\nIntune 可以通过公司门户将签名和加密证书自动部署到用户。",
+ "sMimeEnable": "指定是否要在撰写电子邮件时启用 S/MIME 控件",
+ "sMimeEnableAllowChange": "指定是否允许用户更改“启用 S/MIME”设置。",
+ "sMimeEncryptAllEmails": "指定是否必须加密所有电子邮件。\r\n通过加密,可将数据转换为码文本,以便只有预期收件人可阅读该数据。",
+ "sMimeEncryptAllEmailsAllowChange": "指定是否允许用户更改“加密所有电子邮件”设置。",
+ "sMimeEncryptionCertProfile": "指定用于电子邮件加密的证书配置文件。",
+ "sMimeSignAllEmails": "指定必须签名所有电子邮件。\r\n数字签名验证电子邮件的真伪,确保内容在传输过程中没有被篡改。",
+ "sMimeSignAllEmailsAllowChange": "指定是否允许用户更改“对所有电子邮件签名”设置。",
+ "sMimeSigningCertProfile": "指定用于电子邮件签名的证书配置文件。",
+ "sMimeUserNotificationType": "用于通知用户他们必须打开公司门户以检索 Outlook 的 S/MIME 证书的方法。"
},
- "BooleanActions": {
- "allow": "允许",
- "block": "阻止",
- "configured": "已配置",
- "disable": "禁用",
- "dontRequire": "不需要",
- "enable": "启用",
- "hide": "隐藏",
- "limit": "限制",
- "notConfigured": "未配置",
- "require": "要求",
- "show": "显示",
- "yes": "是"
- },
- "ProactiveRemediations": {
- "Create": {
- "Basics": {
- "DescriptionMultiLineTextBox": {
- "label": "说明",
- "placeholder": "输入描述"
- },
- "NameTextBox": {
- "label": "名称",
- "placeholder": "输入名称"
- },
- "PublisherTextBox": {
- "label": "发布者",
- "placeholder": "输入发布服务器"
- },
- "VersionTextBox": {
- "label": "版本"
- },
- "headerDescription": "基于所编写的检测和修正脚本创建新的自定义脚本包。"
- },
- "ScopeTags": {
- "headerDescription": "选择一个或多个要分配脚本包的组。"
- },
- "Settings": {
- "DetectionScriptMultiLineTextBox": {
- "label": "检测脚本",
- "placeholder": "输入脚本文本",
- "requiredValidationMessage": "请输入检测脚本"
- },
- "EnforceScriptSignatureCheckOptionPicker": {
- "label": "强制执行脚本签名检查"
- },
- "LoggedOnCredentialsOptionPicker": {
- "label": "使用已登录的凭据运行此脚本"
- },
- "RemediationScript": {
- "infoBox": "此脚本将在“仅检测”模式下运行,因为没有修正脚本。"
- },
- "RemediationScriptMultiLineTextBox": {
- "label": "修正脚本",
- "placeholder": "输入脚本文本"
- },
- "RunIn64BitPSOptionPicker": {
- "label": "在 64 位 PowerShell 中运行脚本"
- },
- "ScriptMultiLineTextBox": {
- "base64EncodingValidationMessage": "脚本无效。脚本中使用的一个或多个字符无效。"
- },
- "headerDescription": "从已编写的脚本创建自定义脚本包。默认情况下,脚本将每天在指定设备上运行。",
- "infoBox": "此脚本是只读的。此脚本的某些设置可能已禁用。"
- },
- "title": "创建自定义脚本",
- "ScriptProperties": {
- "GridHeaders": {
- "interval": "间隔",
- "time": "日期和时间"
- },
- "Interval": {
- "day": "每天重复一次",
- "days": "每 {0} 天重复一次",
- "hour": "每小时重复一次",
- "hours": "每 {0} 小时重复一次",
- "month": "每月重复一次",
- "months": "每 {0} 个月重复一次",
- "week": "每周重复一次",
- "weeks": "每 {0} 周重复一次"
- },
- "Time": {
- "utc": "{0} (UTC)",
- "utcWithDate": "{1} {0} (UTC)",
- "withDate": "{1} {0}"
- }
- }
- },
- "Edit": {
- "title": "编辑 - {0}"
- }
- },
"WindowsManagement": {
"Assignment": {
"noAssignmentCustomAttributeDisplayText": "至少向一个组分配自定义属性。请转到“属性”来编辑分配。",
@@ -2708,910 +1644,6 @@
"shellScriptObjectName": "Shell 脚本",
"successfullySavedPolicy": "已保存 {0}"
},
- "AssignmentFilters": {
- "assignmentFilterColumnHeader": "筛选器",
- "noFilters": "无"
- },
- "Category": {
- "airPlay": "AirPlay",
- "airPrint": "AirPrint",
- "androidDefenderAtp": "Microsoft Defender for Endpoint",
- "androidDeviceOwnerApplications": "应用程序",
- "androidForWorkPassword": "设备密码",
- "appManagement": "允许或阻止应用",
- "applicationGuard": "Microsoft Defender 应用程序防护",
- "applicationRestrictions": "受限应用",
- "applicationVisibility": "显示或隐藏应用",
- "applications": "应用商店",
- "applicationsAndGames": "App Store,文档查看,游戏",
- "applicationsAndGoogle": "Google Play 商店",
- "appsAndExperience": "应用和体验",
- "associatedDomains": "关联的域",
- "autonomousSingleAppMode": "自治单应用模式",
- "azureOperationalInsights": "Azure 运营见解",
- "bitLocker": "Windows 加密",
- "browser": "浏览器",
- "builtinApps": "内置应用",
- "cellular": "手机网络",
- "cloudAndStorage": "云和存储",
- "cloudPrint": "云打印机",
- "complianceEmailProfile": "电子邮件",
- "connectedDevices": "已连接的设备",
- "connectivity": "手机网络和连接",
- "contentCaching": "内容缓存",
- "controlPanelAndSettings": "控制面板和设置",
- "credentialGuard": "Microsoft Defender Credential Guard",
- "customCompliance": "自定义合规性",
- "customCompliancePreview": "自定义合规性(预览)",
- "customConfiguration": "自定义配置文件",
- "customOMASettings": "自定义 OMA-URI 设置",
- "customPreferences": "首选项文件",
- "defender": "Microsoft Defender 防病毒",
- "defenderAntivirus": "Microsoft Defender 防病毒",
- "defenderExploitGuard": "Microsoft Defender 攻击防护",
- "defenderFirewall": "Microsoft Defender 防火墙",
- "defenderLocalSecurityOptions": "本地设备安全选项",
- "defenderSecurityCenter": "Microsoft Defender 安全中心",
- "deliveryOptimization": "交付优化",
- "derivedCredentialAuthenticationConfiguration": "派生凭据",
- "deviceExperience": "设备体验",
- "deviceFirmwareConfigurationInterface": "设备固件配置接口",
- "deviceGuard": "Microsoft Defender 应用程序控制",
- "deviceHealth": "设备运行状况",
- "devicePassword": "设备密码",
- "deviceProperties": "设备属性",
- "deviceRestrictions": "常规",
- "deviceSecurity": "系统安全",
- "display": "显示",
- "domainJoin": "域加入",
- "domains": "域",
- "edgeBrowser": "Microsoft Edge 旧版(版本 45 及更早版本)",
- "edgeBrowserSmartScreen": "Microsoft Defender SmartScreen",
- "edgeKiosk": "Microsoft Edge 展台模式",
- "editionUpgrade": "版本升级",
- "education": "教育",
- "educationDeviceCerts": "设备证书",
- "educationStudentCerts": "学生证书",
- "educationTakeATest": "进行测试",
- "educationTeacherCerts": "教师证书",
- "emailProfile": "电子邮件",
- "enterpriseDataProtection": "Windows 信息保护",
- "expeditedCheckin": "移动设备管理配置",
- "extensibleSingleSignOn": "单一登录应用扩展",
- "filevault": "FileVault",
- "firewall": "防火墙",
- "games": "游戏",
- "gatekeeper": "网关守卫",
- "healthMonitoring": "运行状况监视",
- "homeScreenLayout": "主屏幕布局",
- "iOSWallpaper": "壁纸",
- "importedPFX": "PKCS 导入的证书",
- "iosDefenderAtp": "Microsoft Defender for Endpoint",
- "iosKiosk": "展台",
- "kernelExtensions": "内核扩展",
- "keyboardAndDictionary": "键盘和字典",
- "kiosk": "展台",
- "kioskAndroidEnterprise": "专用设备",
- "kioskConfiguration": "展台",
- "kioskConfigurationV2": "展台",
- "kioskWebBrowser": "展台 web 浏览器",
- "lockScreenMessage": "锁定屏幕消息",
- "lockedScreenExperience": "锁屏体验",
- "logging": "报告和遥测",
- "loginItems": "登录项",
- "loginWindow": "登录窗口",
- "macDefenderAtp": "Microsoft Defender for Endpoint",
- "maintenance": "维护",
- "malware": "恶意软件",
- "messaging": "消息传递",
- "networkBoundary": "网络边界",
- "networkProxy": "网络代理",
- "notifications": "应用通知",
- "pKCS": "PKCS 证书",
- "password": "密码",
- "personalProfile": "个人配置文件",
- "personalization": "个性化",
- "policyOverride": "覆盖组策略",
- "powerSettings": "电源设置",
- "printer": "打印机",
- "privacy": "隐私",
- "privacyPerApp": "每个应用的隐私例外情况",
- "privacyPreferences": "隐私首选项",
- "projection": "投影",
- "sCCMCompliance": "Configuration Manager 符合性",
- "sCEP": "SCEP 证书",
- "sCEPProperties": "SCEP 证书",
- "sMode": "模式切换(仅 Windows 预览体验成员)",
- "safari": "Safari",
- "search": "搜索",
- "session": "会话",
- "sharedDevice": "共享 iPad",
- "sharedPCAccountManager": "共享多用户设备",
- "singleSignOn": "单一登录",
- "smartScreen": "Microsoft Defender SmartScreen",
- "softwareUpdates": "设置",
- "start": "启动",
- "systemExtensions": "系统扩展",
- "systemSecurity": "系统安全",
- "trustedCert": "受信任的证书",
- "updates": "更新",
- "userRights": "用户权限",
- "usersAndAccounts": "用户和帐户",
- "vPN": "基础 VPN",
- "vPNApps": "自动 VPN",
- "vPNAppsAndTrafficRules": "应用和通信规则",
- "vPNConditionalAccess": "条件访问",
- "vPNConnectivity": "连接性",
- "vPNDNSTriggers": "DNS 设置",
- "vPNIKEv2": "IKEv2 设置",
- "vPNProxy": "代理",
- "vPNSplitTunneling": "拆分隧道",
- "vPNTrustedNetwork": "受信任的网络检测",
- "webContentFilter": "Web 内容筛选",
- "wiFi": "Wi-Fi",
- "win10Wifi": "Wi-Fi",
- "windowsAtp": "Microsoft Defender for Endpoint",
- "windowsDefenderATP": "Microsoft Defender for Endpoint",
- "windowsHelloForBusiness": "Windows Hello 企业版",
- "windowsSpotlight": "Windows 聚焦",
- "wiredNetwork": "有线网络",
- "wireless": "无线",
- "wirelessProjection": "无线投影",
- "workProfile": "工作配置文件设置",
- "workProfilePassword": "工作配置文件密码",
- "xboxServices": "Xbox 服务",
- "zebraMx": "MX 配置文件(仅限 Zebra)",
- "complianceActionsLabel": "对不合规项的操作"
- },
- "MicrosoftEdgeChannel": {
- "beta": "Beta",
- "dev": "Dev",
- "stable": "Stable"
- },
- "ConfigurationTypes": {
- "Table": {
- "androidDeviceOwnerGeneral": "设备限制(设备所有者)",
- "androidForWorkGeneral": "设备限制(工作配置文件)"
- },
- "androidCustom": "自定义",
- "androidDeviceOwnerGeneral": "设备限制",
- "androidDeviceOwnerPkcs": "PKCS 证书",
- "androidDeviceOwnerScep": "SCEP 证书",
- "androidDeviceOwnerTrustedCertificate": "受信任的证书",
- "androidDeviceOwnerVpn": "VPN",
- "androidDeviceOwnerWiFi": "Wi-Fi",
- "androidEmailProfile": "电子邮件(仅限 Samsung KNOX)",
- "androidForWorkCustom": "自定义",
- "androidForWorkEmailProfile": "电子邮件",
- "androidForWorkGeneral": "设备限制",
- "androidForWorkImportedPFX": "PKCS 导入的证书",
- "androidForWorkOemConfig": "OEMConfig",
- "androidForWorkPKCS": "PKCS 证书",
- "androidForWorkSCEP": "SCEP 证书",
- "androidForWorkTrustedCertificate": "受信任的证书",
- "androidForWorkVpn": "VPN",
- "androidForWorkWiFi": "Wi-Fi",
- "androidGeneral": "设备限制",
- "androidImportedPFX": "PKCS 导入的证书",
- "androidPKCS": "PKCS 证书",
- "androidSCEP": "SCEP 证书",
- "androidTrustedCertificate": "受信任的证书",
- "androidVPN": "VPN",
- "androidWiFi": "Wi-Fi",
- "androidZebraMx": "MX 配置文件(仅限 Zebra)",
- "complianceAndroid": "Android 合规性策略",
- "complianceAndroidDeviceOwner": "公司拥有的完全托管式专用工作配置文件",
- "complianceAndroidEnterprise": "个人拥有的工作配置文件",
- "complianceAndroidForWork": "Android for Work 合规性策略",
- "complianceIos": "iOS 符合性策略",
- "complianceMac": "Mac 合规性策略",
- "complianceWindows10": "Windows 10 及更高版本的合规性策略",
- "complianceWindows10Mobile": "Windows 10 移动版合规性策略",
- "complianceWindows8": "Windows 8 合规性策略",
- "complianceWindowsPhone": "Windows Phone 合规性策略",
- "exchangeActiveSync": "Exchange Active Sync",
- "iosCustom": "自定义",
- "iosDerivedCredentialAuthenticationConfiguration": "派生的 PIV 凭据",
- "iosDeviceFeatures": "设备功能",
- "iosEDU": "教育",
- "iosEducation": "教育",
- "iosEmailProfile": "电子邮件",
- "iosGeneral": "设备限制",
- "iosImportedPFX": "PKCS 导入的证书",
- "iosPKCS": "PKCS 证书",
- "iosPresets": "预设",
- "iosSCEP": "SCEP 证书",
- "iosTrustedCertificate": "受信任的证书",
- "iosVPN": "VPN",
- "iosVPNZscaler": "VPN",
- "iosWiFi": "Wi-Fi",
- "macCustom": "自定义",
- "macDeviceFeatures": "设备功能",
- "macEndpointProtection": "终结点保护",
- "macExtensions": "扩展",
- "macGeneral": "设备限制",
- "macImportedPFX": "PKCS 导入的证书",
- "macSCEP": "SCEP 证书",
- "macTrustedCertificate": "受信任的证书",
- "macVPN": "VPN",
- "macWiFi": "Wi-Fi",
- "settingsCatalog": "设置目录(预览)",
- "unsupported": "不支持",
- "windows10AdministrativeTemplate": "管理模板(预览)",
- "windows10Atp": "Microsoft Defender for Endpoint (运行 Windows 10 或更高版本的桌面设备)",
- "windows10Custom": "自定义",
- "windows10DesktopSoftwareUpdate": "软件更新",
- "windows10DeviceFirmwareConfigurationInterface": "设备固件配置接口",
- "windows10EmailProfile": "电子邮件",
- "windows10EndpointProtection": "终结点保护",
- "windows10EnterpriseDataProtection": "Windows 信息保护",
- "windows10General": "设备限制",
- "windows10ImportedPFX": "PKCS 导入的证书",
- "windows10Kiosk": "展台",
- "windows10NetworkBoundary": "网络边界",
- "windows10PKCS": "PKCS 证书",
- "windows10PolicyOverride": "覆盖组策略",
- "windows10SCEP": "SCEP 证书",
- "windows10SecureAssessmentProfile": "教育配置文件",
- "windows10SharedPC": "共享多用户设备",
- "windows10TeamGeneral": "设备限制(Windows 10 团队)",
- "windows10TrustedCertificate": "受信任的证书",
- "windows10VPN": "VPN",
- "windows10WiFi": "Wi-Fi",
- "windows10WiFiCustom": "Wi-Fi 自定义",
- "windows8General": "设备限制",
- "windows8SCEP": "SCEP 证书",
- "windows8TrustedCertificate": "受信任的证书",
- "windows8VPN": "VPN",
- "windows8WiFi": "Wi-Fi 导入",
- "windowsDeliveryOptimization": "交付优化",
- "windowsDomainJoin": "域加入",
- "windowsEditionUpgrade": "版本升级和模式切换",
- "windowsIdentityProtection": "标识保护",
- "windowsPhoneCustom": "自定义",
- "windowsPhoneEmailProfile": "电子邮件",
- "windowsPhoneGeneral": "设备限制",
- "windowsPhoneImportedPFX": "PKCS 导入的证书",
- "windowsPhoneSCEP": "SCEP 证书",
- "windowsPhoneTrustedCertificate": "受信任的证书",
- "windowsPhoneVPN": "VPN",
- "IosUpdate": "iOS 更新策略"
- },
- "WindowsEnrollment": {
- "coManagementAuthorityDesc": "为 Configuration Manager 集成配置共同管理设置",
- "coManagementAuthorityTitle": "共同管理设置",
- "deploymentProfiles": "Windows AutoPilot Deployment 配置文件",
- "description": "了解用户或管理员向 Intune 注册 Windows 10/11 电脑的七种不同方法。",
- "descriptionLabel": "Windows 注册方法",
- "enrollmentStatusPage": "注册状态页"
- },
- "Platform": {
- "all": "全部",
- "android": "Android 设备管理员",
- "androidAOSP": "Android (AOSP)",
- "androidEnterprise": "Android Enterprise",
- "androidForWork": "Android Enterprise",
- "androidWorkProfile": "Android Enterprise",
- "common": "通用",
- "iOS": "iOS/iPadOS",
- "iosAndAndroidPlatformLabel": "iOS 和 Android",
- "iosCommaAndroidPlatformLabel": "iOS、Android",
- "linux": "Linux",
- "macOS": "macOS",
- "unknown": "未知",
- "unsupported": "不支持",
- "windows": "Windows",
- "windows10": "Windows 10 和更高版本",
- "windows10CM": "Windows 10 及更高版本(ConfigMgr)",
- "windows10Holo": "Windows 10 全息版",
- "windows10Mobile": "Windows 10 移动版",
- "windows10Team": "Windows 10 协同版",
- "windows10X": "Windows 10X",
- "windows8": "Windows 8.1 和更高版本",
- "windows8And10": "Windows 8 和 10",
- "windowsPhone": "Windows Phone 8.1",
- "windows10AndLater": "Windows 10 和更高版本",
- "windows10AndWindowsServer": "Windows 10、Windows 11 和 Windows Server (ConfigMgr)",
- "windows10andLaterCM": "Windows 10 及更高版本(ConfigMgr)",
- "holoLens": "HoloLens",
- "surfaceHub2": "Surface Hub 2",
- "surfaceHub2S": "Surface Hub 2S",
- "windowsPC": "Windows 电脑"
- },
- "EnrollmentRestrictions": {
- "DeletePayloadLink": {
- "content": "{0} 包含在一个或多个策略集中。如果删除 {0},将无法再通过这些策略集分配它。是否仍要删除?",
- "contentWithError": "{0} 可能包含在一个或多个策略集中。如果删除 {0},将无法再通过这些策略集分配它。是否仍要删除?",
- "header": "确定要删除此限制吗?"
- },
- "DeviceLimit": {
- "description": "指定用户可以注册的最大设备数。",
- "header": "设备极限限制",
- "info": "定义每个用户可以注册的设备数量。"
- },
- "DeviceType": {
- "VersionValidation": {
- "aOSP": "必须为 1.0 或更高版本。",
- "android": "请输入有效的版本号。示例: 5.0、5.5.1、6.0.0.1",
- "androidForWork": "请输入有效的版本号。示例: 5.0、5.1.1",
- "iOS": "请输入有效的版本号。示例: 9.0、10.0、9.0.2",
- "mac": "请输入一个有效的版本号。例如: 10, 10.10, 10.10.1",
- "min": "最小值不能低于 {0}",
- "minMax": "最低版本不能高于最高版本。",
- "windows": "必须为 10.0 或更高版本。保留为空以允许 8.1 设备",
- "windowsMobile": "必须为 10.0 或更高版本。保留为空以允许 8.1 设备"
- },
- "allPlatformsBlocked": "所有设备平台均已锁定。允许平台注册以启用平台配置。",
- "blockManufacturerPlaceHolder": "制造商名称",
- "blockManufacturersHeader": "被阻止的制造商",
- "cannotRestrict": "不支持限制",
- "configurationDescription": "指定要注册设备而必须满足的平台配置限制。注册后使用符合性策略限制设备。将版本定义为 major.minor.build。版本限制仅适用于注册了公司门户的设备。默认情况下,Intune 将设备分类为个人拥有。需要执行额外操作才能将设备分类为公司拥有。",
- "configurationDescriptionLabel": "了解有关设置注册限制的详细信息",
- "configurations": "配置平台",
- "deviceManufacturer": "设备制造商",
- "header": "设备类型限制",
- "info": "定义可以注册的平台、版本和管理类型。",
- "manufacturer": "制造商",
- "max": "最大值",
- "maxVersion": "最高版本",
- "min": "最小值",
- "minVersion": "最小版本",
- "newPlatforms": "已允许新平台。请考虑更新平台配置。",
- "personal": "个人拥有",
- "platform": "平台",
- "platformDescription": "可允许注册下列平台。仅阻止你不支持的平台。可使用其他注册限制配置已允许的平台。",
- "platformSettings": "平台设置",
- "platforms": "选择平台",
- "platformsSelected": "已选择 {0} 个平台",
- "type": "类型",
- "versions": "版本",
- "versionsRange": "允许的最小/最大范围:",
- "windowsTooltip": "通过移动设备管理限制注册。不限制电脑代理安装。仅支持 Windows 10 和 Windows 11 版本。保留版本为空以允许 Windows 8.1。"
- },
- "Priority": {
- "saved": "已成功保存限制优先级。"
- },
- "Row": {
- "announce": "优先级: {0},名称: {1},已分配: {2}"
- },
- "Table": {
- "deployed": "已部署",
- "name": "名称",
- "priority": "优先级"
- },
- "Type": {
- "limit": "设备限制",
- "type": "设备类型限制"
- },
- "allUsers": "所有用户",
- "androidRestrictions": "Android 限制",
- "create": "创建限制",
- "defaultLimitDescription": "这是应用于所有用户的优先级最低的默认设备限制,但不考虑组成员身份。",
- "defaultTypeDescription": "这是应用于所有用户的优先级最低的默认设备类型限制,但不考虑组成员身份。",
- "defaultWhfbDescription": "这是应用于所有用户的优先级最低的默认 Windows Hello 企业版,但不考虑组成员身份。",
- "deleteMessage": "如果未分配其他限制,则将按分配的下一个拥有最高优先级的限制或默认限制对受影响的用户进行限制。",
- "deleteTitle": "确定要删除 {0} 限制吗?",
- "descriptionHint": "描述由限制设置表征的业务用途或限制级别的简短段落。",
- "edit": "编辑限制",
- "info": "设备必须遵循分配给其用户的最高优先级注册限制。可拖动设备限制以更改其优先级。所有用户的默认限制都是最低优先级,且它们控制无用户参与的注册。可编辑(但不可删除)默认限制。",
- "iosRestrictions": "iOS 限制",
- "mDM": "MDM",
- "macRestrictions": "MacOS 限制",
- "maxVersion": "最高版本",
- "minVersion": "最低版本",
- "nameHint": "这将是显示标识限制集时可见的主属性。",
- "noAssignmentsStatusBar": "至少将限制分配给一个组。请单击“属性”。",
- "notFound": "找不到限制。它可能已删除。",
- "personallyOwned": "个人拥有的设备",
- "restriction": "限制",
- "restrictionLowerCase": "限制",
- "restrictionType": "Restriction type",
- "selectType": "选择限制类型",
- "selectValidation": "请选择平台",
- "typeHint": "选择“设备类型限制”可限制设备属性。选择“设备限制”可限制每个用户的设备数。",
- "typeRequired": "必须提供限制类型。",
- "winPhoneRestrictions": "Windows Phone 限制",
- "windowsRestrictions": "Windows 限制"
- },
- "Titles": {
- "ChromeOs": {
- "devices": "Chrome OS 设备"
- },
- "ManagedDesktop": {
- "adminContacts": "管理员联系人",
- "appPackaging": "应用包",
- "devices": "设备",
- "feedback": "反馈",
- "gettingStarted": "入门",
- "messages": "消息",
- "onlineResources": "联机资源",
- "serviceRequests": "服务请求",
- "settings": "设置",
- "tenantEnrollment": "租户注册"
- },
- "actions": "对不合规项的操作",
- "advancedExchangeSettings": "Exchange Online 设置",
- "advancedThreatProtection": "Microsoft Defender for Endpoint",
- "allApps": "所有应用",
- "allDevices": "所有设备",
- "androidFotaDeployments": "Android FOTA 部署",
- "appBundles": "应用程序包",
- "appCategories": "应用类别",
- "appConfigPolicies": "应用配置策略",
- "appInstallStatus": "应用安装状态",
- "appLicences": "应用许可证",
- "appProtectionPolicies": "应用保护策略",
- "appProtectionStatus": "应用保护状态",
- "appSelectiveWipe": "应用选择性擦除",
- "appleVppTokens": "Apple VPP 令牌",
- "apps": "应用",
- "assign": "分配",
- "assignedPermissions": "分配的权限",
- "assignedRoles": "分配的角色",
- "autopilotDeploymentReport": "Autopilot 部署(预览)",
- "brandingAndCustomization": "自定义",
- "cartProfiles": "匣配置文件",
- "certificateConnectors": "证书连接器",
- "chromeEnterprise": "Chrome Enterprise",
- "compliancePolicies": "符合性策略",
- "complianceScriptManagement": "脚本",
- "complianceScriptManagementPreview": "脚本(预览)",
- "complianceSettings": "合规性策略设置",
- "conditionStatements": "条件语句",
- "conditions": "位置",
- "configMgr": "Microsoft Endpoint Configuration Manager",
- "configurationProfiles": "配置文件",
- "configurationProfilesPreview": "配置文件(预览)",
- "connectorsAndTokens": "连接器和令牌",
- "corporateDeviceIdentifiers": "公司设备标识符",
- "customAttributes": "自定义属性",
- "customNotifications": "自定义通知",
- "deploymentSettings": "部署设置",
- "derivedCredentials": "派生凭据",
- "deviceActions": "设备操作",
- "deviceCategories": "设备类别",
- "deviceCleanUp": "设备清理规则",
- "deviceEnrollmentManagers": "设备注册管理员",
- "deviceExecutionStatus": "设备状态",
- "deviceLimitEnrollmentRestrictions": "注册设备限制",
- "deviceTypeEnrollmentRestrictions": "注册设备平台限制",
- "devices": "设备",
- "discoveredApps": "已发现的应用",
- "embeddedSIM": "eSIM 手机网络配置文件(预览)",
- "enrollDevices": "注册设备",
- "enrollmentFailures": "注册失败",
- "enrollmentNotifications": "注册通知(预览版)",
- "enrollmentRestrictions": "注册限制",
- "exchangeActiveSync": "Exchange ActiveSync ",
- "exchangeServiceConnectors": "Exchange 服务连接器",
- "failuresForFeatureUpdates": "功能更新失败(预览)",
- "failuresForQualityUpdates": "Windows 加急更新失败(预览版)",
- "featureFlighting": "功能外部测试",
- "featureUpdateDeployments": "Windows 10 及更高版本的功能更新(预览版)",
- "flighting": "外部测试",
- "fotaUpdate": "无线固件更新",
- "groupPolicy": "管理模板",
- "groupPolicyAnalytics": "组策略分析",
- "helpSupport": "帮助和支持",
- "helpSupportReplacement": "帮助和支持({0})",
- "iOSAppProvisioning": "iOS 应用预配配置文件",
- "incompleteUserEnrollments": "部分用户注册",
- "intuneRemoteAssistance": "远程帮助(预览版)",
- "iosUpdates": "更新 iOS/iPadOS 的策略",
- "legacyPcManagement": "旧式电脑管理",
- "macOSSoftwareUpdate": "更新 macOS 的策略",
- "macOSSoftwareUpdateAccountSummaries": "macOS 设备的安装状态",
- "macOSSoftwareUpdateCategorySummaries": "软件更新摘要",
- "macOSSoftwareUpdateStateSummaries": "更新",
- "managedGooglePlay": "托管的 Google Play",
- "msfb": "适用于企业的 Microsoft Store",
- "myPermissions": "我的权限",
- "notifications": "通知",
- "officeApps": "Office 应用",
- "officeProPlusPolicies": "Office 应用策略",
- "onPremise": "本地",
- "onPremisesConnector": "Exchange ActiveSync 本地连接器",
- "onPremisesDeviceAccess": "Exchange ActiveSync 设备",
- "onPremisesManageAccess": "Exchange 内部部署访问权限",
- "outOfDateIosDevices": "iOS 设备安装失败",
- "overview": "概述",
- "partnerDeviceManagement": "合作伙伴设备管理",
- "perUpdateRingDeploymentState": "每个更新策略的部署状态",
- "permissions": "权限",
- "platformApps": "{0} 个应用",
- "platformDevices": "{0} 台设备",
- "platformEnrollment": "{0} 注册",
- "policies": "策略",
- "previewMDMDevices": "所有托管设备(预览)",
- "profiles": "配置文件",
- "properties": "属性",
- "reports": "报告",
- "retireNoncompliantDevices": "停用不相容设备",
- "retireNoncompliantDevicesPreview": "Retire noncompliant devices (preview)",
- "role": "角色",
- "scriptManagement": "脚本",
- "securityBaselines": "安全基线",
- "serviceToServiceConnector": "Exchange Online 连接器",
- "shellScripts": "Shell 脚本",
- "teamViewerConnector": "TeamViewer 连接器",
- "telecomeExpenseManagement": "电信费用管理",
- "tenantAdmin": "租户管理员",
- "tenantAdministration": "租户管理",
- "termsAndConditions": "条款和条件",
- "titles": "标题",
- "troubleshootSupport": "疑难解答 + 支持",
- "user": "用户",
- "userExecutionStatus": "用户状态",
- "warranty": "保修供应商",
- "wdacSupplementalPolicies": "S 模式补充策略",
- "windows10DriverUpdate": "Windows 10 及更高版本的功能更新(预览)",
- "windows10QualityUpdate": "Windows 10 及更高版本的质量更新(预览版)",
- "windows10UpdateRings": "Windows 10 及更高版本的更新通道",
- "windows10XPolicyFailures": "Windows 10X 策略失败",
- "windowsEnterpriseCertificate": "Windows Enterprise 证书",
- "windowsManagement": "PowerShell 脚本",
- "windowsSideLoadingKeys": "Windows 边载密钥",
- "windowsSymantecCertificate": "Windows DigiCert 证书",
- "windowsThreatReport": "威胁代理状态"
- },
- "ScopeTypes": {
- "allDevices": "所有设备",
- "allUsers": "所有用户",
- "allUsersAndDevices": "所有用户和所有设备",
- "selectedGroups": "选择的组"
- },
- "DetectionRules": {
- "ComparisonOperators": {
- "equals": "等于",
- "greaterThan": "大于",
- "greaterThanOrEqualTo": "大于或等于",
- "lessThan": "小于",
- "lessThanOrEqualTo": "小于或等于",
- "notEqualTo": "不等于"
- },
- "CustomScript": {
- "enforceSignatureCheck": "强制执行脚本签名检查并静默运行脚本",
- "enforceSignatureCheckTooltip": "选择“是”以验证脚本由受信任的发行者签名,这将允许不显示任何警告或提示而运行脚本。脚本将不受阻止地运行。选择“否”(默认),在有最终用户确认而无签名验证的情况下运行脚本。",
- "header": "使用自定义脚本",
- "runAs32Bit": "在 64 位客户端上以 32 位进程形式运行脚本",
- "runAs32BitTooltip": "选择“是”以在 64 位客户端上的 32 位进程中运行脚本。选择“否”(默认)以在 64 位客户端上的 64 位进程中运行脚本。32 位客户端将始终在 32 位进程中运行脚本。",
- "scriptFile": "脚本文件",
- "scriptFileNotSelectedValidation": "未选择任何脚本文件。",
- "scriptFileTooltip": "选择将检测应用是否存在于客户端上的 PowerShell 脚本。脚本返回值为 0 的退出代码并将字符串值写入到 STDOUT 时,即表示检测到应用。"
- },
- "Manual": {
- "FileRule": {
- "DetectionMethodOptions": {
- "dateCreated": "创建日期",
- "dateModified": "修改日期",
- "doesNotExist": "文件或文件夹不存在",
- "fileOrFolderExists": "文件或文件夹存在",
- "sizeInMB": "大小(MB)",
- "version": "字符串(版本)"
- },
- "associatedWith32Bit": "与 64 位客户端上的 32 位应用关联",
- "associatedWith32BitTooltip": "选择“是”以在 64 位客户端上的 32 位上下文中展开任何路径环境变量。选择“否”(默认)以在 64 位客户端上的 64 位上下文中展开任何路径环境变量。32 位客户端将始终使用 32 位上下文。",
- "detectionMethod": "检测方法",
- "detectionMethodTooltip": "选择检测方法用于验证应用是否存在的类型。",
- "fileOrFolder": "文件或文件夹",
- "fileOrFolderToolTip": "指定要检测的文件或文件夹。",
- "operator": "运算符",
- "operatorTooltip": "选择检测方法用于验证比较的运算符。",
- "path": "路径",
- "pathTooltip": "包含要检测的文件或文件夹的文件夹的完整路径。",
- "value": "值",
- "valueTooltip": "选择与所选检测方法匹配的值。应按本地时间输入日期检测方法。"
- },
- "GridColumns": {
- "pathOrCode": "路径/代码",
- "type": "类型"
- },
- "MsiRule": {
- "operator": "运算符",
- "operatorTooltip": "选择用于 MSI 产品版本验证比较的运算符。",
- "productCode": "MSI 产品代码",
- "productCodeTooltip": "应用的有效 MSI 产品代码。",
- "productVersion": "值",
- "productVersionCheck": "MSI 产品版本检查",
- "productVersionCheckTooltip": "选择“是”以验证 MSI 产品版本和 MSI 产品代码。",
- "productVersionTooltip": "输入应用的 MSI 产品版本。"
- },
- "RegistryRule": {
- "DetectionMethodOptions": {
- "integerComparison": "整数比较",
- "keyDoesNotExist": "不存在密钥",
- "keyExists": "存在密钥",
- "stringComparison": "字符串比较",
- "valueDoesNotExist": "值不存在",
- "valueExists": "值存在",
- "versionComparison": "版本比较"
- },
- "associatedWith32Bit": "与 64 位客户端上的 32 位应用关联",
- "associatedWith32BitTooltip": "选择“是”以在 64 位客户端上搜索 32 位注册表。选择“否”(默认)以在 64 位客户端上搜索 64 位注册表。32 位客户端将始终搜索 32 位注册表。",
- "detectionMethod": "检测方法",
- "detectionMethodTooltip": "选择检测方法用于验证应用是否存在的类型。",
- "keyPath": "密钥路径",
- "keyPathTooltip": "包含要检测的值的注册表项的完整路径。",
- "operator": "运算符",
- "operatorTooltip": "选择检测方法用于验证比较的运算符。",
- "value": "值",
- "valueName": "值名称",
- "valueNameTooltip": "要检测的注册表项值的名称。",
- "valueTooltip": "选择与所选检测方法匹配的值。"
- },
- "RuleTypeOptions": {
- "file": "文件",
- "mSI": "MSI",
- "registry": "注册表"
- },
- "gridAriaLabel": "检测规则",
- "header": "创建指示此应用存在的规则。",
- "noRulesSelectedPlaceholder": "未指定规则。",
- "ruleTableLimit": "可添加多达 25 条检测规则",
- "ruleType": "规则类型",
- "ruleTypeTooltip": "选择要添加的检测规则类型。"
- },
- "RuleConfigurationOptions": {
- "customScript": "使用自定义脚本",
- "manual": "手动配置检测规则"
- },
- "bladeTitle": "检测规则",
- "header": "配置应用特定规则以检测此应用是否存在。",
- "rulesFormat": "规则格式",
- "rulesFormatTooltip": "选择手动配置检测规则,或使用自定义脚本检测此应用是否存在。",
- "selectorLabel": "检测规则"
- },
- "AppType": {
- "androidEnterpriseSystemApp": "Android Enterprise 系统应用",
- "androidForWorkApp": "托管的 Google Play 商店应用",
- "androidLobApp": "Android 业务线应用",
- "androidStoreApp": "Android 应用商店应用",
- "builtInAndroid": "内置的 Android 应用",
- "builtInApp": "内置的应用",
- "builtInIos": "内置的 iOS 应用",
- "default": "",
- "iosLobApp": "iOS 业务线应用",
- "iosStoreApp": "iOS 应用商店应用",
- "iosVppApp": "iOS Volume Purchase Program 应用",
- "lineOfBusinessApp": "业务线应用",
- "macOSDmgApp": "macOS 应用(DMG)",
- "macOSEdgeApp": "Microsoft Edge (macOS)",
- "macOSLobApp": "macOS 业务线应用",
- "macOSMdatpApp": "Microsoft Defender ATP (macOS)",
- "macOSOfficeSuiteApp": "Microsoft 365 应用(macOS)",
- "macOsVppApp": "macOS Volume Purchase Program 应用",
- "managedAndroidLobApp": "托管 Android 业务线应用",
- "managedAndroidStoreApp": "托管 Android 应用商店应用",
- "managedGooglePlayApp": "托管的 Google Play 商店应用",
- "managedGooglePlayPrivateApp": "托管的 Google Play 专用应用",
- "managedGooglePlayWebApp": "托管 Google Play Web 链接",
- "managedIosLobApp": "托管 iOS 业务线应用",
- "managedIosStoreApp": "托管 iOS 应用商店应用",
- "microsoftStoreForBusinessApp": "适用于企业的 Microsoft 应用商店应用",
- "microsoftStoreForBusinessReleaseManagedApp": "适用于企业的 Microsoft Store",
- "officeSuiteApp": "Microsoft 365 应用版(Windows 10 及更高版本)",
- "webApp": "Web 链接",
- "windowsAppXLobApp": "Windows AppX 业务线应用",
- "windowsClassicApp": "Windows 应用(Win32)",
- "windowsEdgeApp": "Microsoft Edge (Windows 10及更高版本)",
- "windowsMobileMsiLobApp": "Windows MSI 业务线应用",
- "windowsPhone81AppXBundleLobApp": "Windows Phone 8.1 AppX 业务线应用",
- "windowsPhone81AppXLobApp": "Windows Phone 8.1 AppX 业务线应用",
- "windowsPhone81StoreApp": "Windows Phone 8.1 应用商店应用",
- "windowsPhoneXapLobApp": "Windows Phone XAP 业务线应用",
- "windowsStoreApp": "Microsoft Store 应用",
- "windowsUniversalAppXLobApp": "Windows Universal AppX 业务线应用",
- "windowsUniversalLobApp": "Windows 通用业务线应用"
- },
- "PolicyType": {
- "AttackSurfaceReductionRules": {
- "configMgr": "攻击面减少规则 (ConfigMgr)"
- },
- "EndpointDetectionandResponse": {
- "mDE": "终结点检测和响应"
- },
- "EndpointSecurityTemplate": {
- "aSRAppBrowserSecurity": "应用和浏览器隔离",
- "aSRApplicationControl": "应用程序控制",
- "aSRAttackSurfaceReduction": "攻击面减少规则",
- "aSRDeviceControl": "设备控制",
- "aSRExploitProtection": "开发保护",
- "aSRWebProtection": "Web 保护(旧版 Microsoft Edge)",
- "aVExclusions": "Microsoft Defender 防病毒排除项",
- "antivirus": "Microsoft Defender 防病毒",
- "cloudPC": "Windows 365 安全基线",
- "default": "终结点安全性",
- "defenderTest": "Microsoft Defender for Endpoint 演示",
- "diskEncryption": "BitLocker",
- "eDR": "终结点检测和响应",
- "edgeSecurityBaseline": "Microsoft Edge 基线",
- "edgeSecurityBaselinePreview": "预览: Microsoft Edge 基线",
- "editionUpgradeConfiguration": "版本升级和模式切换",
- "firewall": "Microsoft Defender 防火墙",
- "firewallRules": "Microsoft Defender 防火墙规则",
- "identityProtection": "帐户保护",
- "identityProtectionPreview": "帐户保护(预览)",
- "mDMSecurityBaseline1810": "2018 年 10 月的适用于 Windows 10 及更高版本的 MDM 安全基线",
- "mDMSecurityBaseline1810Preview": "预览: 2018 年 10 月的适用于 Windows 10 及更高版本的 MDM 安全基线",
- "mDMSecurityBaseline1810PreviewBeta": "预览: 2018 年 10 月的适用于 Windows 10 的 MDM 安全基线(beta 版)",
- "mDMSecurityBaseline1906": "2019 年 5 月的适用于 Windows 10 及更高版本的 MDM 安全基线",
- "mDMSecurityBaseline2004": "2020 年 8 月的 Windows 10 及更高版本的 MDM 安全基线",
- "mDMSecurityBaseline2101": "2020 年 12 月的 Windows 10 及更高版本的 MDM 安全基线",
- "macOSAntivirus": "防病毒",
- "macOSDiskEncryption": "FileVault",
- "macOSFirewall": "macOS 防火墙",
- "microsoftDefenderBaseline": "Microsoft Defender for Endpoint 基线",
- "office365Baseline": "Microsoft Office O365 基线",
- "office365BaselinePreview": "预览: Microsoft Office O365 基线",
- "securityBaselines": "安全基线",
- "test": "测试模板",
- "testFirewallRulesSecurityTemplateName": "Microsoft Defender 防火墙规则(测试)",
- "testIdentityProtectionSecurityTemplateName": "帐户保护(测试)",
- "windowsSecurityExperience": "Windows Security 体验"
- },
- "Firewall": {
- "mDE": "Microsoft Defender 防火墙"
- },
- "FirewallRules": {
- "mDE": "Microsoft Defender 防火墙规则"
- },
- "administrativeTemplates": "管理模板",
- "androidCompliancePolicy": "Android 合规性策略",
- "aospDeviceOwnerCompliancePolicy": "Android (AOSP)合规性策略",
- "applicationControl": "应用程序控制",
- "custom": "自定义",
- "deliveryOptimization": "交付优化",
- "derivedPersonalIdentityVerificationCredential": "派生凭据",
- "deviceFeatures": "设备功能",
- "deviceFirmwareConfigurationInterface": "设备固件配置接口",
- "deviceLock": "设备锁定",
- "deviceOwner": "公司拥有的完全托管式专用工作配置文件",
- "deviceRestrictions": "设备限制",
- "deviceRestrictionsWindows10Team": "设备限制(Windows 10 团队)",
- "domainJoinPreview": "域加入",
- "editionUpgradeAndModeSwitch": "版本升级和模式切换",
- "education": "教育",
- "email": "电子邮件",
- "emailSamsungKnoxOnly": "电子邮件(仅限 Samsung KNOX)",
- "endpointProtection": "终结点保护",
- "expeditedCheckin": "移动设备管理配置",
- "exploitProtection": "Exploit Protection",
- "extensions": "扩展",
- "hardwareConfigurations": "BIOS 配置",
- "identityProtection": "Identity Protection",
- "iosCompliancePolicy": "iOS 符合性策略",
- "kiosk": "展台",
- "macCompliancePolicy": "Mac 合规性策略",
- "microsoftDefenderAntivirus": "Microsoft Defender 防病毒",
- "microsoftDefenderAntivirusexclusions": "Microsoft Defender 防病毒排除项",
- "microsoftDefenderAtpWindows10Desktop": "Microsoft Defender for Endpoint (运行 Windows 10 或更高版本的桌面设备)",
- "microsoftDefenderFirewallRules": "Microsoft Defender 防火墙规则",
- "microsoftEdgeBaseline": "Microsoft Edge 基线",
- "mxProfileZebraOnly": "MX 配置文件(仅限 Zebra)",
- "networkBoundary": "网络边界",
- "oemConfig": "OEMConfig",
- "overrideGroupPolicy": "覆盖组策略",
- "pkcsCertificate": "PKCS 证书",
- "pkcsImportedCertificate": "PKCS 导入的证书",
- "preferenceFile": "首选项文件",
- "presets": "预设",
- "scepCertificate": "SCEP 证书",
- "secureAssessmentEducation": "安全评估(教育)",
- "settingsCatalog": "设置目录",
- "sharedMultiUserDevice": "共享多用户设备",
- "softwareUpdates": "软件更新",
- "trustedCertificate": "受信任的证书",
- "unknown": "未知",
- "unsupported": "不支持",
- "vpn": "VPN",
- "wiFi": "Wi-Fi",
- "wiFiImport": "Wi-Fi 导入",
- "windows10CompliancePolicy": "Windows 10/11 合规性策略",
- "windows10MobileCompliancePolicy": "Windows 10 移动版合规性策略",
- "windows10XScep": "SCEP 证书 - 测试",
- "windows10XTrustedCertificate": "受信任的证书 - 测试",
- "windows10XVPN": "VPN - 测试",
- "windows10XWifi": "WIFI - 测试",
- "windows8CompliancePolicy": "Windows 8 合规性策略",
- "windowsHealthMonitoring": "Windows 运行状况监视",
- "windowsInformationProtection": "Windows 信息保护",
- "windowsPhoneCompliancePolicy": "Windows Phone 合规性策略",
- "windowsUpdateforBusiness": "适用于企业的 Windows 更新",
- "wiredNetwork": "有线网络",
- "workProfile": "个人拥有的工作配置文件"
- },
- "OfficeSuiteAppsTab": {
- "acceptLicenseOnBehalfOfUsersLabel": "代表用户接受 Microsoft 软件许可条款",
- "appSuiteConfigurationLabel": "应用套件配置",
- "appSuiteInformationLabel": "应用套件信息",
- "appsToBeInstalledLabel": "要作为套件的一部分进行安装的应用",
- "architectureLabel": "体系结构",
- "architectureTooltip": "定义设备上是否安装了 32 位或 64 位版本的 Microsoft 365 应用。",
- "configurationDesignerLabel": "配置设计器",
- "configurationFileLabel": "配置文件",
- "configurationSettingsFormatLabel": "配置设置格式",
- "configureAppSuiteLabel": "配置应用套件",
- "configuredLabel": "已配置",
- "currentVersionLabel": "当前版本",
- "currentVersionTooltip": "这是在此套件中配置的 Office 的当前版本。在配置和保存较新版本时,将更新此值。",
- "enableMicrosoftSearchAsDefaultTooltip": "安装一项后台服务,帮助确定设备上是否已安装适用于 Google Chrome 的 Microsoft 必应搜索扩展。",
- "enterXmlDataLabel": "输入 XML 数据",
- "languagesLabel": "语言",
- "languagesTooltip": "默认情况下,Intune 将使用操作系统的默认语言安装 Office。选择要安装的任何其他语言。",
- "learnMoreText": "了解更多",
- "newUpdateChannelTooltip": "定义提供新功能以更新应用的频率。",
- "noCurrentVersionText": "没有当前版本",
- "noLanguagesSelectedLabel": "未选择语言",
- "notConfiguredLabel": "未配置",
- "propertiesLabel": "属性",
- "removeOtherVersionsLabel": "删除其他版本",
- "removeOtherVersionsTooltip": "选择“是”从用户设备中删除其他版本的 Office (MSI)。",
- "selectOfficeAppsLabel": "选择 Office 应用",
- "selectOfficeAppsTooltip": "选择要作为套件的一部分安装的 Office 365 应用。",
- "selectOtherOfficeAppsLabel": "选择其他 Office 应用(需要许可证)",
- "selectOtherOfficeAppsTooltip": "如果你拥有这些额外的 Office 应用的许可证,也可以使用 Intune 分配这些应用。",
- "specificVersionLabel": "特定版本",
- "updateChannelLabel": "更新通道",
- "updateChannelTooltip": "定义提供新功能以更新应用的频率。
\r\n每月 - 在 Office 最新功能可用时即向用户提供。
\r\n每月企业频道 - 在每月的第二个星期二向用户提供一次 Office 最新功能。
\r\n每月(定向) – 提供抢先体验即将发布的每月频道版本的机会。这是一个受支持的更新频道,通常在包含新功能的每月频道版本发布前至少一周可用。
\r\n每半年 - 一年仅为用户提供几次 Office 新功能。
\r\n每半年(定向) - 为试点用户和应用程序兼容性测试者提供测试下一个半年版本的机会。",
- "useMicrosoftSearchAsDefault": "在必应中安装 Microsoft 搜索的后台服务",
- "useSharedComputerActivationLabel": "使用共享计算机激活",
- "useSharedComputerActivationTooltip": "通过共享计算机激活,可以将 Microsoft 365 应用部署到多个用户使用的计算机。通常,用户只能在有限数量的设备(例如 5 台电脑)上安装和激活 Microsoft 365 应用。使用具有共享计算机激活的 Microsoft 365 应用不会计入该限制范围。",
- "versionToInstallLabel": "要安装的版本",
- "versionToInstallTooltip": "选择应安装的 Office 版本。",
- "xLanguagesSelectedLabel": "已选择 {0} 个语言",
- "xmlConfigurationLabel": "XML 配置"
- },
- "OfficeApplicationType": {
- "access": "Access",
- "bing": "默认使用 Microsoft 搜索",
- "excel": "Excel",
- "groove": "OneDrive (Groove)",
- "lync": "Skype for Business",
- "oneDrive": "OneDrive 桌面版",
- "oneNote": "OneNote",
- "outlook": "Outlook",
- "powerPoint": "PowerPoint",
- "publisher": "Publisher",
- "teams": "Teams",
- "word": "Word"
- },
- "WindowsQualityUpdateProfile": {
- "Details": {
- "DaysUntilForcedReboot": {
- "label": "强制执行重新启动前等待的天数"
- },
- "Description": {
- "label": "说明"
- },
- "Name": {
- "label": "名称"
- },
- "QualityUpdateRelease": {
- "label": "如果设备 OS 版本低于以下值,则加快安装质量更新:"
- },
- "bladeTitle": "质量更新 Windows 10 及更高版本(预览版)",
- "loadError": "加载失败!"
- },
- "TabName": {
- "qualityUpdateSettings": "设置"
- },
- "infoBoxText": "除了适用于 Windows 10 及更高版本的现有更新通道策略之外,当前可用的唯一专用质量更新控制措施是,为落后于指定补丁级别的设备加快质量更新。将来还会提供其他控制措施。",
- "warningBoxText": "加速软件更新有助于在必要时在更短时间内实现合规性,它对最终用户的工作效率有较大的影响。在工作时间重启的可能性会显著增加。"
- },
- "Devices": {
- "General": {
- "android": "Android"
- },
- "aOSP": "Android 开放源代码项目",
- "android": "Android 设备管理员",
- "androidWorkProfile": "Android Enterprise (工作配置文件)",
- "iOS": "iOS/iPadOS",
- "mac": "macOS",
- "windows": "Windows (MDM)",
- "windows10": "Windows 10 和更高版本",
- "windowsHomeSku": "Windows 家庭 Sku",
- "windowsMobile": "Windows Mobile"
- },
"SettingDetails": {
"CustomPolicyConfigurationProfile": {
"uploadControlPlaceHolderText": "选择配置文件"
@@ -3675,7 +1707,7 @@
"aESGCM128": "AES-128-GCM (16-八进制 ICV)",
"aESGCM256": "AES-256-GCM (16-八进制 ICV)",
"aadSharedDeviceDataClearAppsDescription": "将任何未针对共享设备模式进行优化的应用添加到列表中。每次用户从某个针对共享设备模式进行了优化的应用中进行注销时,都会清除这些应用的本地数据。适用于注册了共享模式且运行 Android 9 及更高版本的专用设备。",
- "aadSharedDeviceDataClearAppsName": "清除未针对共享设备模式进行优化的应用中的本地数据(公共预览版)",
+ "aadSharedDeviceDataClearAppsName": "清除未针对共享设备模式进行优化的应用中的本地数据",
"accountsPageDescription": "阻止访问“设置”应用中的“帐户”。",
"accountsPageName": "帐户",
"accountsSignInAssistantSettingsDescription": "阻止 Microsoft 登录助手服务 (wlidsvc)。未配置此设置时,用户可以控制 wlidsvc NT 服务(手动启动)",
@@ -5503,7 +3535,7 @@
"enableEndUserAccessToDefenderName": "Defender 的最终用户访问权限",
"enableEngagedRestartDescription": "启用设置以允许用户切换到预定重启。",
"enableEngagedRestartName": "允许用户重启(预定重启)",
- "enableIdentityPrivacyDescription": "此属性使用你输入的文本来掩盖用户名。例如,如果键入“匿名”,则每位使用其真实用户名对此 Wi-Fi 连接进行身份验证的用户都会显示为“匿名”。",
+ "enableIdentityPrivacyDescription": "此属性使用输入的文本屏蔽用户名。例如,如果键入“匿名”,则使用其真实用户名通过此 Wi-Fi 连接进行身份验证的每个用户都将显示为“匿名”。如果使用基于设备的证书身份验证,则可能需要执行此操作。",
"enableIdentityPrivacyName": "标识隐私(外部标识)",
"enableNetworkInspectionSystemDescription": "阻止网络检查系统(NIS)中的签名检测到的恶意流量",
"enableNetworkInspectionSystemName": "网络检查系统(NIS)",
@@ -7252,6 +5284,8 @@
"presharedKeyEncodingDescription": "使用 UTF-8 对预共享密钥进行加密。",
"presharedKeyEncodingName": "预共享密钥编码",
"preventAny": "阻止任何跨边界的共享",
+ "primaryAuthenticationMethodName": "主身份验证方法",
+ "primaryAuthenticationMethodTEAPDescription": "选择希望用户进行身份验证的主要方式。选择“证书”时,选择还将部署到设备的证书配置文件(SCEP 或 PKCS)之一。这是设备提供给服务器的标识证书。",
"primarySMTPAddressOption": "主 SMTP 地址",
"printersColumns": "例如打印机 DNS 名称",
"printersDescription": "根据打印机网络主机名称自动设置打印机。此设置不支持共享打印机。",
@@ -7663,6 +5697,8 @@
"searchEnableRemoteQueriesName": "远程查询",
"secondActiveEthernet": "第二个活动以太网",
"secondEthernet": "第二个以太网",
+ "secondaryAuthenticationMethodName": "辅助身份验证方法",
+ "secondaryAuthenticationMethodTEAPDescription": "选择希望用户进行身份验证的辅助方式。选择“证书”时,选择还将部署到设备的证书配置文件(SCEP 或 PKCS)之一。这是设备提供给服务器的标识证书。",
"secretKey": "密钥:",
"secureBootEnabledDescription": "需要在设备上启用安全启动",
"secureBootEnabledName": "需要在设备上启用安全启动",
@@ -8074,6 +6110,7 @@
"systemUpdateWindow9": "凌晨 4:30",
"systemWindowsBlockedDescription": "禁用窗口通知,如 toast、传入呼叫、传出呼叫、系统警报和系统错误。",
"systemWindowsBlockedName": "通知窗口",
+ "tEAPName": "隧道 EAP (TEAP)",
"tLSMinMax": "TLS 最低版本必须小于或等于 TLS 最高版本。",
"tLSVersionRangeMaximum": "TLS 版本最大范围",
"tLSVersionRangeMaximumDescription": "输入 TLS 最高版本 - 1.0、1.1 或 1.2。如果留空,则将使用默认值 1.2。",
@@ -8126,6 +6163,17 @@
"timeWindowSameStartEndDayTime": "结束日期/时间不能与开始日期/时间相同。",
"timeZoneDescription": "为目标设备选择时区。",
"timeZoneName": "时区",
+ "timeoutFifteenMinutes": "15 分钟",
+ "timeoutFiveMinutes": "5 分钟",
+ "timeoutFourHours": "4 小时",
+ "timeoutNever": "永不超时",
+ "timeoutOneHour": "1 小时",
+ "timeoutOneMinute": "1 分钟",
+ "timeoutTenMinutes": "10 分钟",
+ "timeoutThirtyMinutes": "30 分钟",
+ "timeoutThreeMinutes": "3 分钟",
+ "timeoutTwoHours": "2 小时",
+ "timeoutTwoMinutes": "2 分钟",
"toggleConfigurationPkgDescription": "上传要用于加入 Microsoft Defender for Endpoint 客户端的签了名的配置包",
"toggleConfigurationPkgName": "Microsoft Defender for Endpoint 客户端配置包类型:",
"trafficRuleAppName": "应用",
@@ -8824,6 +6872,33 @@
"win10WifiWirelessSecurityTypeName": "无线安全类型",
"win10WifiWirelessSecurityTypeOpen": "打开(无身份验证)",
"win10WifiWirelessSecurityTypeWPA": "WPA/WPA2-个人",
+ "win10WiredAuthenticationModeDescription": "选择是要对用户、设备或其中任意一方进行身份验证,还是使用来宾身份验证(无) 。如果使用证书身份验证,请确保证书类型与身份验证类型匹配。",
+ "win10WiredAuthenticationModeName": "身份验证模式",
+ "win10WiredAuthenticationPeriodDescription": "身份验证失败之前客户端等待的秒数。请选择介于 1 和 3600 之间的数字。不指定值则使用 18 秒。",
+ "win10WiredAuthenticationPeriodName": "身份验证期",
+ "win10WiredAuthenticationRetryDelayPeriodDescription": "身份验证失败和下次身份验证尝试之间的秒数。请选择介于 1 和 3600 之间的值。不指定值则使用 1 秒。",
+ "win10WiredAuthenticationRetryDelayPeriodName": "身份验证重试延迟期 ",
+ "win10WiredFIPSComplianceDescription": "对于使用基于加密的安全系统来保护以数字方式存储的非保密的敏感信息的所有美国联邦政府机构,需要针对 FIPS 140-2 标准进行验证。",
+ "win10WiredFIPSComplianceName": "强制有线配置文件符合美国联邦信息处理标准(FIPS)",
+ "win10WiredGuest": "来宾",
+ "win10WiredMachine": "计算机",
+ "win10WiredMachineOrUser": "用户或计算机",
+ "win10WiredMaximumAuthenticationFailuresDescription": "输入这组凭据的最大身份验证失败次数。不指定值则使用 1 次尝试。",
+ "win10WiredMaximumAuthenticationFailuresName": "最大身份验证失败数",
+ "win10WiredMaximumEAPOLStartMessagesDescription": "选择介于 1 和 100 之间的 EAPOL-Start 消息数。不指定值则最多发送 3 条消息。",
+ "win10WiredMaximumEAPOLStartMessagesName": "最大 EAPOL-start 数",
+ "win10WiredNetworkAuthenticationBlockPeriodDescription": "身份验证阻止期限(以分钟为单位)。用于指定在身份验证尝试失败后将阻止自动进行身份验证尝试的持续时间。请选择介于 0 和 1440 之间的值。",
+ "win10WiredNetworkAuthenticationBlockPeriodName": "阻止期(以分钟为单位)",
+ "win10WiredNetworkAuthenticationModeName": "身份验证模式",
+ "win10WiredNetworkDoNotEnforceName": "不强制执行",
+ "win10WiredNetworkEnforce8021XDescription": "指定有线网络的自动配置服务是否需要使用 802.1X 进行端口身份验证。",
+ "win10WiredNetworkEnforce8021XName": "802.1x",
+ "win10WiredNetworkEnforceName": "强制执行",
+ "win10WiredRememberCredentialsDescription": "选择在用户首次连接到有线网络而输入用户凭据时是否缓存凭据。缓存的凭据用于后续连接,并且用户无需重新输入它们。不配置此设置等效于将其设置为“是”。",
+ "win10WiredRememberCredentialsName": "记住每次登录时所用凭据",
+ "win10WiredStartPeriodDescription": "发送 EAPOL-Start 消息前等待的秒数。请选择介于 1 和 3600 之间的值。不指定值则使用 5 秒。",
+ "win10WiredStartPeriodName": "开始期间",
+ "win10WiredUser": "用户",
"win10appLockerApplicationControlAllowDescription": "仅允许这些应用运行",
"win10appLockerApplicationControlAllowName": "强制执行",
"win10appLockerApplicationControlAuditComponentsAndStoreAppsDescription": "“仅审核”模式在本地客户端事件日志中记录所有事件,但不会阻止运行任何应用。Windows 组件和 Microsoft 应用商店应用将被记录为符合安全性要求。",
@@ -9165,7 +7240,6 @@
"deviceConditionsInfoParagraph2": "可为已注册设备配置相似的设备设置。",
"deviceConditionsInfoParagraph2LinkText": "详细了解如何配置已注册设备的设备符合性设置。",
"deviceId": "设备 ID",
- "deviceLockComplexityValidationFailureNotes": "注意:
\r\n\r\n - 设备锁可能需要密码复杂性: 面向 Android 11+ 的“低”、“中”或“高”。对于在 Android 10 及更早版本上运行的设备,将复杂性值设置为低/中/高将 默认为“低复杂性”的预期行为。
\r\n - 下面的密码定义可能会发生更改。请参阅 DevicePolicyManager|Android 开发人员了解不同密码复杂性级别的最新定义。
\r\n
\r\n\r\n低
\r\n\r\n - 密码可以是带有重复(4444)或顺序(1234、4321、2468)的模式或 PIN。
\r\n
\r\n\r\n中
\r\n\r\n - PIN,不重复(4444)或有顺序(1234、4321、2468),最小长度至少为 4 个字符
\r\n - 最小长度至少为 4 个字符的字母密码
\r\n - 最小长度至少为 4 个字符的字母数字密码\r\n
\r\n\r\n
高
\r\n\r\n - PIN,不重复(4444)或有顺序(1234, 4321、2468),最小长度为 8 个字符的序列
\r\n - 字母密码,最小长度至少为 6 个字符
\r\n - 字母数字密码,最小长度至少为 6 个字符
\r\n
\r\n",
"deviceLockedOpenFilesOptionsText": "锁定设备时和存在打开的文件时",
"deviceLockedOptionText": "锁定设备时",
"deviceManufacturer": "设备制造商",
@@ -9463,7 +7537,7 @@
"reporting": "报告",
"reports": "报表",
"require": "要求",
- "requireDeviceLockComplexityOnApps": "需要设备锁定复杂性",
+ "requireDeviceLockOnApps": "Require device lock",
"requireThreatScanOnApps": "要求对应用进行威胁扫描",
"requiredField": "此字段不能为空",
"requiredSafetyNetEvaluationType": "所需的 SafetyNet 计算类型",
@@ -9659,6 +7733,7 @@
"yourDataIsBeingDownloadedEllipsis": "正在下载数据,这可能需要一些时间...",
"yourDataIsBeingDownloadedMinutes": "正在下载数据,可能需要几分钟时间...",
"yourProtectionLevel": "你的保护级别",
+ "rules": "规则",
"basics": "基本",
"modeTableHeader": "组模式",
"appAssignmentMsg": "组",
@@ -9695,221 +7770,2042 @@
"licenseTypeDevice": "设备",
"licenseTypeUser": "用户"
},
- "Languages": {
- "ar-aE": "阿拉伯语(阿拉伯联合酋长国)",
- "ar-bH": "阿拉伯语(巴林)",
- "ar-dZ": "阿拉伯语(阿尔及利亚)",
- "ar-eG": "阿拉伯语(埃及)",
- "ar-iQ": "阿拉伯语(伊拉克)",
- "ar-jO": "阿拉伯语(约旦)",
- "ar-kW": "阿拉伯语(科威特)",
- "ar-lB": "阿拉伯语(黎巴嫩)",
- "ar-lY": "阿拉伯语(利比亚)",
- "ar-mA": "阿拉伯语(摩洛哥)",
- "ar-oM": "阿拉伯语(阿曼)",
- "ar-qA": "阿拉伯语(卡塔尔)",
- "ar-sA": "阿拉伯语(沙特阿拉伯)",
- "ar-sY": "阿拉伯语(叙利亚)",
- "ar-tN": "阿拉伯语(突尼斯)",
- "ar-yE": "阿拉伯语(也门)",
- "az-cyrl": "阿塞拜疆语(西里尔语,阿塞拜疆)",
- "az-latn": "阿塞拜疆语(拉丁语,阿塞拜疆)",
- "bn-bD": "孟加拉语(孟加拉)",
- "bn-iN": "孟加拉语(印度)",
- "bs-cyrl": "波斯尼亚语(西里尔文)",
- "bs-latn": "波斯尼亚语(拉丁语)",
- "zh-cN": "中文(中国)",
- "zh-hK": "中文(香港特别行政区)",
- "zh-mO": "中文(澳门特别行政区)",
- "zh-sG": "中文(新加坡)",
- "zh-tW": "中文(台湾)",
- "hr-bA": "克罗地亚语(拉丁语)",
- "hr-hR": "克罗地亚语(克罗地亚)",
- "nl-bE": "荷兰语(比利时)",
- "nl-nL": "荷兰语(荷兰)",
- "en-aU": "英语(澳大利亚)",
- "en-bZ": "英语(伯利兹)",
- "en-cA": "英语(加拿大)",
- "en-cabn": "英语(加勒比海)",
- "en-iE": "英语(爱尔兰)",
- "en-iN": "英语(印度)",
- "en-jM": "英语(牙买加)",
- "en-mY": "英语(马来西亚)",
- "en-nZ": "英语(新西兰)",
- "en-pH": "英语(菲律宾共和国)",
- "en-sG": "英语(新加坡)",
- "en-tT": "英语(特立尼达和多巴哥)",
- "en-uK": "英语(英国)",
- "en-uS": "英语(美国)",
- "en-zA": "英语(南非)",
- "en-zW": "英语(津巴布韦)",
- "fr-bE": "法语(比利时)",
- "fr-cA": "法语(加拿大)",
- "fr-cH": "法语(瑞士)",
- "fr-fR": "法语(法国)",
- "fr-lU": "法语(卢森堡)",
- "fr-mC": "法语(摩纳哥)",
- "de-aT": "德语(奥地利)",
- "de-cH": "德语(瑞士)",
- "de-dE": "德语(德国)",
- "de-lI": "德语(列支敦士登)",
- "de-lU": "德语(卢森堡)",
- "iu-cans": "因纽特语(音节,加拿大)",
- "iu-latn": "因纽特语(拉丁语,加拿大)",
- "it-cH": "意大利语(瑞士)",
- "it-iT": "意大利语(意大利)",
- "ms-bN": "马来语(文莱达鲁萨兰)",
- "ms-mY": "马来语(马来西亚)",
- "mn-cN": "蒙古语(传统蒙古语,中国)",
- "mn-mN": "蒙古语(西里尔语,蒙古)",
- "no-nB": "挪威语,博克马尔语(挪威)",
- "no-nn": "挪威语、尼诺斯克语(挪威)",
- "pt-bR": "葡萄牙语(巴西)",
- "pt-pT": "葡萄牙语(葡萄牙)",
- "quz-bO": "克丘亚语(玻利维亚)",
- "quz-eC": "克丘亚语(厄瓜多尔)",
- "quz-pE": "克丘亚语(秘鲁)",
- "smj-nO": "律勒萨米语(挪威)",
- "smj-sE": "律勒萨米语(瑞典)",
- "se-fI": "北萨米语(芬兰)",
- "se-nO": "北萨米语(挪威)",
- "se-sE": "北萨米语(瑞典)",
- "sma-nO": "南萨米语(挪威)",
- "sma-sE": "南萨米语(瑞典)",
- "smn": "伊纳里萨米语(芬兰)",
- "sms": "斯科特萨米语(芬兰)",
- "sr-Cyrl-bA": "塞尔维亚语(西里尔文)",
- "sr-Cyrl-rS": "塞尔维亚语(西里尔文,塞尔维亚和黑山(前))",
- "sr-Latn-bA": "塞尔维亚语(拉丁语)",
- "sr-Latn-rS": "塞尔维亚语(拉丁语,塞尔维亚)",
- "dsb": "下索布语(德国)",
- "hsb": "上索布语(德国)",
- "es-es-tradnl": "西班牙语(西班牙传统风格)",
- "es-aR": "西班牙语(阿根廷)",
- "es-bO": "西班牙语(玻利维亚)",
- "es-cL": "西班牙语(智利)",
- "es-cO": "西班牙语(哥伦比亚)",
- "es-cR": "西班牙语(哥斯达黎加)",
- "es-dO": "西班牙语(多米尼加共和国)",
- "es-eC": "西班牙语(厄瓜多尔)",
- "es-eS": "西班牙语(西班牙)",
- "es-gT": "西班牙语(危地马拉)",
- "es-hN": "西班牙语(洪都拉斯)",
- "es-mX": "西班牙语(墨西哥)",
- "es-nI": "西班牙语(尼加拉瓜)",
- "es-pA": "西班牙语(巴拿马)",
- "es-pE": "西班牙语(秘鲁)",
- "es-pR": "西班牙语(波多黎各)",
- "es-pY": "西班牙语(巴拉圭)",
- "es-sV": "西班牙语(萨尔瓦多)",
- "es-uS": "西班牙语(美国)",
- "es-uY": "西班牙语(乌拉圭)",
- "es-vE": "西班牙语(委内瑞拉)",
- "sv-fI": "瑞典语(芬兰)",
- "uz-cyrl": "乌兹别克语(西里尔语、乌兹别克斯坦)",
- "uz-latn": "乌兹别克语(拉丁语、乌兹别克斯坦)",
- "af": "南非荷兰语(南非)",
- "sq": "阿尔巴尼亚语(阿尔巴尼亚)",
- "am": "阿姆哈拉语(埃塞俄比亚)",
- "hy": "亚美尼亚语(亚美尼亚)",
- "as": "阿萨姆语(印度)",
- "ba": "巴什基尔语(俄罗斯)",
- "eu": "巴斯克语(巴斯克语)",
- "be": "白俄罗斯语(白俄罗斯)",
- "br": "布里多尼语(法国)",
- "bg": "白俄罗斯语(保加利亚)",
- "ca": "加泰罗尼亚语(加泰罗尼亚语)",
- "co": "科西嘉语(法国)",
- "cs": "捷克语(捷克共和国)",
- "da": "丹麦语(丹麦)",
- "prs": "达里语(阿富汗)",
- "dv": "迪维希语(马尔代夫)",
- "et": "爱沙尼亚语(爱沙尼亚)",
- "fo": "法罗语(法罗群岛)",
- "fil": "菲律宾语(菲律宾)",
- "fi": "芬兰语(芬兰)",
- "gl": "加利西亚语(加利西亚语)",
- "ka": "格鲁吉亚语(格鲁吉亚)",
- "el": "希腊语(希腊)",
- "gu": "古吉拉特语(印度)",
- "ha": "豪萨语(拉丁语,尼日利亚)",
- "he": "希伯来语(以色列)",
- "hi": "印地语(印度)",
- "hu": "匈牙利语(匈牙利)",
- "is": "冰岛语(冰岛)",
- "ig": "伊博语(尼日利亚)",
- "id": "印度尼西亚语(印度尼西亚)",
- "ga": "爱尔兰语(爱尔兰)",
- "xh": "科萨语(南非)",
- "zu": "祖鲁语(南非)",
- "ja": "日语(日本)",
- "kn": "埃纳德语(印度)",
- "kk": "哈萨克语(哈萨克斯坦)",
- "km": "高棉语(柬埔寨)",
- "rw": "卢旺达语(卢旺达)",
- "sw": "斯瓦希里语(肯尼亚)",
- "kok": "孔卡尼语(印度)",
- "ko": "朝鲜语(韩国)",
- "ky": "吉尔吉斯语(吉尔吉斯斯坦)",
- "lo": "老挝语(老挝人民民主共和国)",
- "lv": "拉脱维亚语(拉脱维亚)",
- "lt": "立陶宛语(立陶宛)",
- "lb": "卢森堡语(卢森堡)",
- "mk": "马其顿语(北马其顿)",
- "ml": "马拉雅拉姆语(印度)",
- "mt": "马耳他语(马耳他)",
- "mi": "毛利语(新西兰)",
- "mr": "马拉地语(印度)",
- "moh": "摩霍克语(莫霍克)",
- "ne": "尼泊尔语(尼泊尔)",
- "oc": "奥克西唐语(法国)",
- "or": "奥里亚语(印度)",
- "ps": "普什图语(阿富汗)",
- "fa": "波斯语",
- "pl": "波兰语(波兰)",
- "pa": "旁遮普语(印度)",
- "ro": "罗马尼亚语(罗马尼亚)",
- "rm": "罗曼什语(瑞士)",
- "ru": "俄语(俄罗斯)",
- "sa": "梵语(印度)",
- "st": "巴索托语(南非)",
- "tn": "茨瓦纳语(南非)",
- "si": "僧伽罗语(斯里兰卡)",
- "sk": "斯洛伐克语(斯洛伐克)",
- "sl": "斯洛文尼亚语(斯洛文尼亚)",
- "sv": "瑞典语(瑞典)",
- "syr": "叙利亚语(叙利亚)",
- "tg": "塔吉克语(西里尔文,塔吉克斯坦)",
- "ta": "泰米尔语(印度)",
- "tt": "鞑靼语(俄罗斯)",
- "te": "泰卢固语(印度)",
- "th": "泰语(泰国)",
- "bo": "藏语(中国)",
- "tr": "土耳其语(土耳其)",
- "tk": "土库曼语(土库曼斯坦)",
- "uk": "乌克兰语(乌克兰)",
- "ur": "乌尔都语(巴基斯坦伊斯兰共和国)",
- "vi": "越南语(越南)",
- "cy": "威尔士语(英国)",
- "wo": "沃洛夫语(塞内加尔)",
- "ii": "彝语(中国)",
- "yo": "约鲁巴语(尼日利亚)"
- },
- "AppProtection": {
- "allAppTypes": "针对所有应用类型",
- "androidPlatformLabel": "Android",
- "appsInAndroidWorkProfile": "Android 工作配置文件中的应用",
- "appsOnIntuneManagedDevices": "Intune 托管设备上的应用",
- "appsOnUnmanagedDevices": "非托管设备上的应用",
- "iOSPlatformLabel": "iOS/iPadOS",
- "iosAndroidMacPlatformLabel": "iOS、Android、Mac",
- "iosAndroidPlatformLabel": "iOS、Android",
- "macPlatformLabel": "Mac",
- "notAvailable": "不可用",
- "windows10PlatformLabel": "Windows 10 和更高版本",
- "withEnrollment": "已注册",
- "withoutEnrollment": "未注册"
- },
+ "ApplicabilityRules": {
+ "GridLabel": {
+ "property": "属性",
+ "rule": "规则",
+ "ruleDetails": "规则详细信息",
+ "value": "值"
+ },
+ "assignIf": "在以下情况下分配配置文件",
+ "deleteWarning": "这将删除所选适用性规则",
+ "dontAssignIf": "在以下情况下不分配配置文件",
+ "editionDisplayText": "{0} {1}",
+ "editionDisplayTextMore": "还有 {0} 个",
+ "instructions": "指定如何在分配的组内应用此配置文件。Intune 仅将配置文件应用到满足以下规则的组合标准的设备。",
+ "maxText": "最大值",
+ "minText": "最小值",
+ "noActionRow": "未指定任何适用性规则",
+ "oSVersion": "如 1.2.3.4",
+ "toText": "到",
+ "windows10Education": "Windows 10/11 教育版",
+ "windows10EducationN": "Windows 10/11 教育版 N",
+ "windows10Enterprise": "Windows 10/11 企业版",
+ "windows10EnterpriseN": "Windows 10/11 企业版 N",
+ "windows10HolographicEnterprise": "Windows 10 全息企业版",
+ "windows10Home": "Windows 10/11 家庭版",
+ "windows10HomeChina": "Windows 10 家庭中文版",
+ "windows10HomeN": "Windows 10/11 家庭版 N",
+ "windows10HomeSingleLanguage": "Windows 10/11 家庭单语言版",
+ "windows10IoTCore": "Windows 10 IoT Core",
+ "windows10IoTCoreCommercial": "Windows 10 IoT Core Commercial",
+ "windows10Mobile": "Windows 10 移动版",
+ "windows10MobileEnterprise": "Windows 10 移动企业版",
+ "windows10OsEdition": "OS 版本",
+ "windows10OsVersion": "OS 版本",
+ "windows10Professional": "Windows 10/11 专业版",
+ "windows10ProfessionalEducation": "Windows 10/11 教育专业版",
+ "windows10ProfessionalEducationN": "Windows 10/11 教育专业版 N",
+ "windows10ProfessionalN": "Windows 10 专业版 N 版",
+ "windows10ProfessionalWorkstation": "Windows 10/11 专业版工作站",
+ "windows10ProfessionalWorkstationN": "Windows 10/11 专业版工作站 N"
+ },
+ "DetectionRules": {
+ "ComparisonOperators": {
+ "equals": "等于",
+ "greaterThan": "大于",
+ "greaterThanOrEqualTo": "大于或等于",
+ "lessThan": "小于",
+ "lessThanOrEqualTo": "小于或等于",
+ "notEqualTo": "不等于"
+ },
+ "CustomScript": {
+ "enforceSignatureCheck": "强制执行脚本签名检查并静默运行脚本",
+ "enforceSignatureCheckTooltip": "选择“是”以验证脚本由受信任的发行者签名,这将允许不显示任何警告或提示而运行脚本。脚本将不受阻止地运行。选择“否”(默认),在有最终用户确认而无签名验证的情况下运行脚本。",
+ "header": "使用自定义脚本",
+ "runAs32Bit": "在 64 位客户端上以 32 位进程形式运行脚本",
+ "runAs32BitTooltip": "选择“是”以在 64 位客户端上的 32 位进程中运行脚本。选择“否”(默认)以在 64 位客户端上的 64 位进程中运行脚本。32 位客户端将始终在 32 位进程中运行脚本。",
+ "scriptFile": "脚本文件",
+ "scriptFileNotSelectedValidation": "未选择任何脚本文件。",
+ "scriptFileTooltip": "选择将检测应用是否存在于客户端上的 PowerShell 脚本。脚本返回值为 0 的退出代码并将字符串值写入到 STDOUT 时,即表示检测到应用。",
+ "scriptSizeLimitValidation": "检测脚本超出了允许的最大大小。可通过减小检测脚本的大小来解决此问题。"
+ },
+ "Manual": {
+ "FileRule": {
+ "DetectionMethodOptions": {
+ "dateCreated": "创建日期",
+ "dateModified": "修改日期",
+ "doesNotExist": "文件或文件夹不存在",
+ "fileOrFolderExists": "文件或文件夹存在",
+ "sizeInMB": "大小(MB)",
+ "version": "字符串(版本)"
+ },
+ "associatedWith32Bit": "与 64 位客户端上的 32 位应用关联",
+ "associatedWith32BitTooltip": "选择“是”以在 64 位客户端上的 32 位上下文中展开任何路径环境变量。选择“否”(默认)以在 64 位客户端上的 64 位上下文中展开任何路径环境变量。32 位客户端将始终使用 32 位上下文。",
+ "detectionMethod": "检测方法",
+ "detectionMethodTooltip": "选择检测方法用于验证应用是否存在的类型。",
+ "fileOrFolder": "文件或文件夹",
+ "fileOrFolderToolTip": "指定要检测的文件或文件夹。",
+ "operator": "运算符",
+ "operatorTooltip": "选择检测方法用于验证比较的运算符。",
+ "path": "路径",
+ "pathTooltip": "包含要检测的文件或文件夹的文件夹的完整路径。",
+ "value": "值",
+ "valueTooltip": "选择与所选检测方法匹配的值。应按本地时间输入日期检测方法。"
+ },
+ "GridColumns": {
+ "pathOrCode": "路径/代码",
+ "type": "类型"
+ },
+ "MsiRule": {
+ "operator": "运算符",
+ "operatorTooltip": "选择用于 MSI 产品版本验证比较的运算符。",
+ "productCode": "MSI 产品代码",
+ "productCodeTooltip": "应用的有效 MSI 产品代码。",
+ "productVersion": "值",
+ "productVersionCheck": "MSI 产品版本检查",
+ "productVersionCheckTooltip": "选择“是”以验证 MSI 产品版本和 MSI 产品代码。",
+ "productVersionTooltip": "输入应用的 MSI 产品版本。"
+ },
+ "RegistryRule": {
+ "DetectionMethodOptions": {
+ "integerComparison": "整数比较",
+ "keyDoesNotExist": "不存在密钥",
+ "keyExists": "存在密钥",
+ "stringComparison": "字符串比较",
+ "valueDoesNotExist": "值不存在",
+ "valueExists": "值存在",
+ "versionComparison": "版本比较"
+ },
+ "associatedWith32Bit": "与 64 位客户端上的 32 位应用关联",
+ "associatedWith32BitTooltip": "选择“是”以在 64 位客户端上搜索 32 位注册表。选择“否”(默认)以在 64 位客户端上搜索 64 位注册表。32 位客户端将始终搜索 32 位注册表。",
+ "detectionMethod": "检测方法",
+ "detectionMethodTooltip": "选择检测方法用于验证应用是否存在的类型。",
+ "keyPath": "密钥路径",
+ "keyPathTooltip": "包含要检测的值的注册表项的完整路径。",
+ "operator": "运算符",
+ "operatorTooltip": "选择检测方法用于验证比较的运算符。",
+ "value": "值",
+ "valueName": "值名称",
+ "valueNameTooltip": "要检测的注册表项值的名称。",
+ "valueTooltip": "选择与所选检测方法匹配的值。"
+ },
+ "RuleTypeOptions": {
+ "file": "文件",
+ "mSI": "MSI",
+ "registry": "注册表"
+ },
+ "gridAriaLabel": "检测规则",
+ "header": "创建指示此应用存在的规则。",
+ "noRulesSelectedPlaceholder": "未指定规则。",
+ "ruleTableLimit": "可添加多达 25 条检测规则",
+ "ruleType": "规则类型",
+ "ruleTypeTooltip": "选择要添加的检测规则类型。"
+ },
+ "RuleConfigurationOptions": {
+ "customScript": "使用自定义脚本",
+ "manual": "手动配置检测规则"
+ },
+ "bladeTitle": "检测规则",
+ "header": "配置应用特定规则以检测此应用是否存在。",
+ "rulesFormat": "规则格式",
+ "rulesFormatTooltip": "选择手动配置检测规则,或使用自定义脚本检测此应用是否存在。",
+ "selectorLabel": "检测规则"
+ },
+ "PolicyType": {
+ "AttackSurfaceReductionRules": {
+ "configMgr": "攻击面减少规则 (ConfigMgr)"
+ },
+ "EndpointDetectionandResponse": {
+ "mDE": "终结点检测和响应"
+ },
+ "EndpointSecurityTemplate": {
+ "aSRAppBrowserSecurity": "应用和浏览器隔离",
+ "aSRApplicationControl": "应用程序控制",
+ "aSRAttackSurfaceReduction": "攻击面减少规则",
+ "aSRDeviceControl": "设备控制",
+ "aSRExploitProtection": "开发保护",
+ "aSRWebProtection": "Web 保护(旧版 Microsoft Edge)",
+ "aVExclusions": "Microsoft Defender 防病毒排除项",
+ "antivirus": "Microsoft Defender 防病毒",
+ "cloudPC": "Windows 365 安全基线",
+ "default": "终结点安全性",
+ "defenderTest": "Microsoft Defender for Endpoint 演示",
+ "diskEncryption": "BitLocker",
+ "eDR": "终结点检测和响应",
+ "edgeSecurityBaseline": "Microsoft Edge 基线",
+ "edgeSecurityBaselinePreview": "预览: Microsoft Edge 基线",
+ "editionUpgradeConfiguration": "版本升级和模式切换",
+ "firewall": "Microsoft Defender 防火墙",
+ "firewallRules": "Microsoft Defender 防火墙规则",
+ "identityProtection": "帐户保护",
+ "identityProtectionPreview": "帐户保护(预览)",
+ "mDMSecurityBaseline1810": "2018 年 10 月的适用于 Windows 10 及更高版本的 MDM 安全基线",
+ "mDMSecurityBaseline1810Preview": "预览: 2018 年 10 月的适用于 Windows 10 及更高版本的 MDM 安全基线",
+ "mDMSecurityBaseline1810PreviewBeta": "预览: 2018 年 10 月的适用于 Windows 10 的 MDM 安全基线(beta 版)",
+ "mDMSecurityBaseline1906": "2019 年 5 月的适用于 Windows 10 及更高版本的 MDM 安全基线",
+ "mDMSecurityBaseline2004": "2020 年 8 月的 Windows 10 及更高版本的 MDM 安全基线",
+ "mDMSecurityBaseline2101": "2020 年 12 月的 Windows 10 及更高版本的 MDM 安全基线",
+ "macOSAntivirus": "防病毒",
+ "macOSDiskEncryption": "FileVault",
+ "macOSFirewall": "macOS 防火墙",
+ "microsoftDefenderBaseline": "Microsoft Defender for Endpoint 基线",
+ "office365Baseline": "Microsoft Office O365 基线",
+ "office365BaselinePreview": "预览: Microsoft Office O365 基线",
+ "securityBaselines": "安全基线",
+ "test": "测试模板",
+ "testFirewallRulesSecurityTemplateName": "Microsoft Defender 防火墙规则(测试)",
+ "testIdentityProtectionSecurityTemplateName": "帐户保护(测试)",
+ "windowsSecurityExperience": "Windows Security 体验"
+ },
+ "Firewall": {
+ "mDE": "Microsoft Defender 防火墙"
+ },
+ "FirewallRules": {
+ "mDE": "Microsoft Defender 防火墙规则"
+ },
+ "administrativeTemplates": "管理模板",
+ "androidCompliancePolicy": "Android 合规性策略",
+ "aospDeviceOwnerCompliancePolicy": "Android (AOSP)合规性策略",
+ "applicationControl": "应用程序控制",
+ "custom": "自定义",
+ "deliveryOptimization": "交付优化",
+ "derivedPersonalIdentityVerificationCredential": "派生凭据",
+ "deviceFeatures": "设备功能",
+ "deviceFirmwareConfigurationInterface": "设备固件配置接口",
+ "deviceLock": "设备锁定",
+ "deviceOwner": "公司拥有的完全托管式专用工作配置文件",
+ "deviceRestrictions": "设备限制",
+ "deviceRestrictionsWindows10Team": "设备限制(Windows 10 团队)",
+ "domainJoinPreview": "域加入",
+ "editionUpgradeAndModeSwitch": "版本升级和模式切换",
+ "education": "教育",
+ "email": "电子邮件",
+ "emailSamsungKnoxOnly": "电子邮件(仅限 Samsung KNOX)",
+ "endpointProtection": "终结点保护",
+ "expeditedCheckin": "移动设备管理配置",
+ "exploitProtection": "Exploit Protection",
+ "extensions": "扩展",
+ "hardwareConfigurations": "BIOS 配置",
+ "identityProtection": "Identity Protection",
+ "iosCompliancePolicy": "iOS 符合性策略",
+ "kiosk": "展台",
+ "macCompliancePolicy": "Mac 合规性策略",
+ "microsoftDefenderAntivirus": "Microsoft Defender 防病毒",
+ "microsoftDefenderAntivirusexclusions": "Microsoft Defender 防病毒排除项",
+ "microsoftDefenderAtpWindows10Desktop": "Microsoft Defender for Endpoint (运行 Windows 10 或更高版本的桌面设备)",
+ "microsoftDefenderFirewallRules": "Microsoft Defender 防火墙规则",
+ "microsoftEdgeBaseline": "Microsoft Edge 基线",
+ "mxProfileZebraOnly": "MX 配置文件(仅限 Zebra)",
+ "networkBoundary": "网络边界",
+ "oemConfig": "OEMConfig",
+ "overrideGroupPolicy": "覆盖组策略",
+ "pkcsCertificate": "PKCS 证书",
+ "pkcsImportedCertificate": "PKCS 导入的证书",
+ "preferenceFile": "首选项文件",
+ "presets": "预设",
+ "scepCertificate": "SCEP 证书",
+ "secureAssessmentEducation": "安全评估(教育)",
+ "settingsCatalog": "设置目录",
+ "sharedMultiUserDevice": "共享多用户设备",
+ "softwareUpdates": "软件更新",
+ "trustedCertificate": "受信任的证书",
+ "unknown": "未知",
+ "unsupported": "不支持",
+ "vpn": "VPN",
+ "wiFi": "Wi-Fi",
+ "wiFiImport": "Wi-Fi 导入",
+ "windows10CompliancePolicy": "Windows 10/11 合规性策略",
+ "windows10MobileCompliancePolicy": "Windows 10 移动版合规性策略",
+ "windows10XScep": "SCEP 证书 - 测试",
+ "windows10XTrustedCertificate": "受信任的证书 - 测试",
+ "windows10XVPN": "VPN - 测试",
+ "windows10XWifi": "WIFI - 测试",
+ "windows8CompliancePolicy": "Windows 8 合规性策略",
+ "windowsHealthMonitoring": "Windows 运行状况监视",
+ "windowsInformationProtection": "Windows 信息保护",
+ "windowsPhoneCompliancePolicy": "Windows Phone 合规性策略",
+ "windowsUpdateforBusiness": "适用于企业的 Windows 更新",
+ "wiredNetwork": "有线网络",
+ "workProfile": "个人拥有的工作配置文件"
+ },
+ "Win32Requirements": {
+ "AdditionalRequirements": {
+ "File": {
+ "fileOrFolderToolTip": "用作所选要求的文件或文件夹。",
+ "pathToolTip": "要检测的文件或文件夹的完整路径。",
+ "property": "属性",
+ "valueToolTip": "选择与所选检测方法匹配的要求值。应按本地格式输入日期和时间要求。"
+ },
+ "GridColumns": {
+ "pathOrScript": "路径/脚本",
+ "type": "类型"
+ },
+ "Registry": {
+ "keyPath": "密钥路径",
+ "keyPathTooltip": "包含用作要求的值的注册表项的完整路径。",
+ "operator": "运算符",
+ "operatorTooltip": "选择用于比较的运算符。",
+ "registryRequirement": "注册表项要求",
+ "registryRequirementTooltip": "选择注册表项要求比较。",
+ "valueName": "值名称",
+ "valueNameTooltip": "所需注册表值的名称。"
+ },
+ "RequirementTypeOptions": {
+ "fileType": "文件",
+ "registry": "注册表",
+ "script": "脚本"
+ },
+ "Script": {
+ "RequirementMethodOptions": {
+ "boolean": "布尔型",
+ "dateTime": "日期和时间",
+ "float": "浮点",
+ "integer": "整型",
+ "string": "字符串",
+ "version": "版本"
+ },
+ "ScriptContent": {
+ "emptyMessage": "脚本内容不应为空。"
+ },
+ "duplicateName": "脚本名称 {0} 已使用。请输入其他名称。",
+ "enforceSignatureCheck": "强制执行脚本签名检查",
+ "enforceSignatureCheckTooltip": "选择“是”以验证脚本是否已由受信任的发行商签名,这将允许运行脚本而不显示警告或提示。脚本运行将不受阻。选择“否”(默认),在需要最终用户确认但不验证签名的情况下运行脚本。",
+ "loggedOnCredentials": "使用已登录的凭据运行此脚本",
+ "loggedOnCredentialsTooltip": "使用已签名的设备凭据运行脚本。",
+ "operatorTooltip": "选择用于要求比较的运算符。",
+ "requirementMethod": "选择输出数据类型",
+ "requirementMethodTooltip": "选择在确定检测匹配要求时使用的数据类型。",
+ "scriptFile": "脚本文件",
+ "scriptFileTooltip": "选择将检测客户端上是否存在应用的 PowerShell 脚本。如果检测到应用,则要求进程将返回 0 值退出代码,并将字符串值写入 STDOUT。",
+ "scriptName": "脚本名称",
+ "value": "值",
+ "valueTooltip": "选择与所选检测方法匹配的要求值。应按本地格式输入日期和时间要求。"
+ },
+ "bladeTitle": "添加要求规则",
+ "createRequirementHeader": "创建要求。",
+ "header": "配置附加要求规则",
+ "label": "其他要求规则",
+ "noRequirementsSelectedPlaceholder": "未指定要求。",
+ "requirementType": "要求类型",
+ "requirementTypeTooltip": "选择用于确定如何验证要求的检测方法的类型。"
+ },
+ "architectures": "操作系统体系结构",
+ "architecturesTooltip": "选择安装应用所需的体系结构。",
+ "bladeTitle": "要求",
+ "diskSpace": "所需磁盘空间(MB)",
+ "diskSpaceTooltip": "需要系统驱动器上有可用磁盘空间才能安装应用。",
+ "header": "指定安装应用前设备必须满足的要求:",
+ "maximumTextFieldValue": "值不得大于 {0}。",
+ "minimumCpuSpeed": "需要的最低 CPU 速度(MHz)",
+ "minimumCpuSpeedTooltip": "安装应用所需的最低 CPU 速度。",
+ "minimumLogicalProcessors": "需要的最小逻辑处理器数",
+ "minimumLogicalProcessorsTooltip": "安装应用所需的最小逻辑处理器数。",
+ "minimumOperatingSystem": "最低操作系统版本",
+ "minimumOperatingSystemTooltip": "选择安装应用所需的最低操作系统。",
+ "minumumTextFieldValue": "该值必须至少为 {0}。",
+ "physicalMemory": "所需的物理内存(MB)",
+ "physicalMemoryTooltip": "安装应用所需的物理内存(RAM)。",
+ "selectorLabel": "要求",
+ "validNumber": "请输入有效的数字。"
+ },
+ "AzureIAM": {
+ "AdrsUserActionSelectionWarning": {
+ "conditions": "要求设备注册的条件不可用于“注册或联接设备”用户操作。",
+ "message": "只有“需要多重身份验证”可用于为“注册或联接设备”用户操作创建的策略{0}"
+ },
+ "AuthContext": {
+ "Delete": {
+ "failure": "未能删除 {0}",
+ "failureCa": "无法删除 {0},因为它已由 CA 策略引用",
+ "modifying": "正在删除 {0}",
+ "success": "已成功删除 {0}"
+ },
+ "Included": {
+ "none": "没有选择云应用、操作或身份验证上下文",
+ "plural": "包含 {0} 个身份验证上下文",
+ "singular": "包含 1 个身份验证上下文"
+ },
+ "InfoBlade": {
+ "createTitle": "添加身份验证上下文",
+ "descPlaceholder": "为身份验证上下文添加说明",
+ "modifyTitle": "修改身份验证上下文",
+ "namePlaceholder": "例如,“可信位置”、“受信任设备”、“强授权”",
+ "publishDesc": "“发布到应用”将使身份验证上下文可供应用使用。在完成为标记配置条件访问策略后发布。[了解更多][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150966",
+ "publishLabel": "发布到应用",
+ "titleDesc": "配置将用于保护应用程序数据和操作的身份验证上下文。使用应用程序管理员可以理解的名称和说明。[了解更多][1]\n[1]:https://go.microsoft.com/fwlink/?linkid=2150965"
+ },
+ "Notify": {
+ "failure": "未能更新 {0}",
+ "modifying": "正在修改 {0}",
+ "success": "已成功更新 {0}"
+ },
+ "WhatIf": {
+ "selected": "包含身份验证上下文"
+ },
+ "addNewStepUp": "新建身份验证上下文",
+ "checkBoxInfo": "选择此策略将应用到的身份验证上下文",
+ "configure": "配置身份验证上下文",
+ "createCA": "向身份验证上下文分配条件访问策略",
+ "dataGrid": "身份验证上下文列表",
+ "deleteFailedByReference": "You cannot delete this authentication context because it is being referenced by CA policies.",
+ "description": "说明",
+ "documentation": "文档",
+ "getStarted": "入门",
+ "label": "身份验证上下文(预览)",
+ "menuLabel": "身份验证上下文(预览)",
+ "name": "名称",
+ "noAuthContextConfigured": "尚未配置任何身份验证上下文。",
+ "noAuthContextSet": "没有身份验证上下文。",
+ "noData": "没有身份验证上下文可显示",
+ "selectionInfo": "身份验证上下文用于保护 SharePoint 和 Microsoft Cloud App Security 等应用中的应用程序数据和操作。",
+ "step": "步骤",
+ "tabDescription": "管理身份验证上下文,以保护应用中的数据和操作。[了解更多][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150965",
+ "tagResources": "使用身份验证上下文来标记资源"
+ },
+ "AuthenticationStrength": {
+ "Mode": {
+ "deviceBasedPush": "Microsoft Authenticator (手机登录)",
+ "deviceBasedPushFido2X509Certificate": "Microsoft Authenticator (手机登录) + Fido 2 + 基于证书的身份验证",
+ "deviceBasedPushX509CertificateSingleFactor": "Microsoft Authenticator (手机登录) + Fido 2 + 基于证书的身份验证 (单重)",
+ "email": "电子邮件一次性密码",
+ "emailOtp": "电子邮件一次性密码",
+ "federatedMultiFactor": "联合多重因素",
+ "federatedSingleFactor": "联合单一因素",
+ "federatedSingleFactorFederatedMultiFactor": "联合单因素 + 联合多因素",
+ "fido2": "FIDO 2 安全密钥",
+ "fido2X509CertificateSingleFactor": "FIDO 2 安全密钥 + 基于证书的身份验证 (单重)",
+ "hardwareOath": "硬件 OATH 令牌",
+ "hardwareOathEmail": "硬件 OATH 令牌 + 电子邮件一次性密码",
+ "hardwareOathX509CertificateSingleFactor": "硬件 OATH 令牌 + 基于证书的身份验证(单因素)",
+ "microsoftAuthenticatorPSIX509CertificateSingleFactor": "Microsoft Authenticator (手机登录) + 基于证书的身份验证 (单重)",
+ "microsoftAuthenticatorPsi": "Microsoft Authenticator (手机登录)",
+ "microsoftAuthenticatorPush": "Microsoft Authenticator (推送通知)",
+ "microsoftAuthenticatorPushEmail": "Microsoft Authenticator (推送通知)+ 电子邮件一次性密码",
+ "microsoftAuthenticatorPushX509CertificateSingleFactor": "Microsoft Authenticator (推送通知) + 基于证书的身份验证 (单重)",
+ "none": "无",
+ "password": "密码",
+ "passwordDeviceBasedPush": "密码 + Microsoft Authenticator (手机登录)",
+ "passwordFido2": "密码 + FIDO 2 安全密钥",
+ "passwordHardwareOath": "密码 + 硬件 OATH 令牌",
+ "passwordMicrosoftAuthenticatorPSI": "密码 + Microsoft Authenticator (手机登录)",
+ "passwordMicrosoftAuthenticatorPush": "密码 + Microsoft Authenticator (推送通知)",
+ "passwordSms": "密码 + 短信",
+ "passwordSoftwareOath": "密码 + 软件 OATH 令牌",
+ "passwordTemporaryAccessPassMultiUse": "密码 + 临时访问密码 (多次)",
+ "passwordTemporaryAccessPassOneTime": "密码 + 临时访问密码 (一次性使用)",
+ "passwordVoice": "密码 + 语音",
+ "sms": "短信",
+ "smsEmail": "短信 + 电子邮件一次性密码",
+ "smsSignIn": "短信登录",
+ "smsX509CertificateSingleFactor": "SMS + 基于证书的身份验证 (单重)",
+ "softwareOath": "软件 OATH 令牌",
+ "softwareOathEmail": "软件 OATH 令牌 + 电子邮件一次性密码",
+ "softwareOathX509CertificateSingleFactor": "软件 OATH 令牌 + 基于证书的身份验证(单因素)",
+ "temporaryAccessPassMultiUse": "临时访问密码 (多次使用)",
+ "temporaryAccessPassMultiUseX509CertificateSingleFactor": "临时访问密码 (多次使用) + 基于证书的身份验证 (单重)",
+ "temporaryAccessPassOneTime": "临时访问密码 (一次性使用)",
+ "temporaryAccessPassOneTimeX509CertificateSingleFactor": "临时访问密码 (一次性使用) + 基于证书的身份验证 (单重)",
+ "voice": "语音",
+ "voiceEmail": "语音 + 电子邮件一次性密码",
+ "voiceX509CertificateSingleFactor": "语音 + 基于证书的身份验证 (单重)",
+ "windowsHelloForBusiness": "Windows Hello 企业版",
+ "x509CertificateMultiFactor": "基于证书的身份验证 (多重)",
+ "x509CertificateSingleFactor": "基于证书的身份验证 (单重)"
+ }
+ },
+ "CAS": {
+ "BuiltinPolicy": {
+ "Option": {
+ "blockDownloads": "阻止下载内容(预览版)",
+ "monitorOnly": "仅监视(预览版)",
+ "protectDownloads": "保护下载内容(预览版)",
+ "useCustomControls": "使用自定义策略..."
+ },
+ "ariaLabel": "选择要应用的条件访问应用控制类型"
+ }
+ },
+ "ChooseApplications": {
+ "Grid": {
+ "appIdAria": "应用 ID: {0}"
+ },
+ "LowerGrid": {
+ "ariaLabel": "选定云应用的列表"
+ },
+ "UpperGrid": {
+ "ariaLabel": "与搜索词匹配的云应用的列表"
+ }
+ },
+ "ChooseLocations": {
+ "Validation": {
+ "failed": "对于“选定位置”,至少必须选择一个位置。",
+ "selector": "请至少选择一个位置"
+ }
+ },
+ "ClientApp": {
+ "Clients": {
+ "Validation": {
+ "failed": "必须选择以下至少一个客户端"
+ }
+ }
+ },
+ "ClientConditionsInfo": {
+ "browserAndModern": "此策略仅适用于浏览器和新式身份验证应用。要将策略应用于所有客户端应用,请启用客户端应用条件并选择所有客户端应用。",
+ "classicExperience": "自此策略创建以来,默认客户端应用配置已更新。",
+ "legacyAuth": "如果没有配置,策略现在应用于所有客户端应用,包括新式身份验证和旧身份验证。"
+ },
+ "CloudAppFilterBlade": {
+ "AssignmentFilter": {
+ "header": "属性",
+ "placeholder": "选择属性"
+ },
+ "Configure": {
+ "infoBalloon": "配置要应用策略的应用筛选器。"
+ },
+ "NoPermissions": {
+ "learnMoreAria": "有关自定义安全属性权限的详细信息。",
+ "message": "你没有使用自定义安全属性所需的权限。"
+ },
+ "gridHeader": "使用自定义安全属性,可以使用规则生成器或规则语法文本框创建或编辑筛选规则。在预览版中,仅支持字符串类型的属性。将不显示整型或布尔类型的属性。",
+ "learnMoreAria": "有关使用规则生成器和语法文本框的详细信息。",
+ "noAttributes": "没有可供筛选的自定义属性。需要配置一些属性才能使用此筛选器。",
+ "title": "编辑筛选器(预览)"
+ },
+ "CloudAppsUserActions": {
+ "any": "任何云应用或操作",
+ "infoBalloon": "要测试的云应用或用户操作。例如,\"SharePoint Online\"",
+ "learnMore": "根据所有或特定的云应用或操作来控制访问。",
+ "learnMoreB2C": "根据所有或特定的云应用来控制访问。",
+ "title": "云应用或操作"
+ },
+ "CloudappsSelectionBlade": {
+ "Excluded": {
+ "gridAria": "排除的云应用的列表"
+ },
+ "Filter": {
+ "configured": "已配置",
+ "label": "编辑筛选器(预览)",
+ "with": "{0},含 {1}"
+ },
+ "Included": {
+ "gridAria": "包含的云应用的列表"
+ },
+ "Validation": {
+ "authContext": "使用“身份验证上下文”时,必须配置至少一个子项。",
+ "selectApps": "必须配置 \"{0}\"",
+ "selector": "请至少选择一个应用。",
+ "userActions": "对于“用户操作”,至少必须配置一个子项。"
+ }
+ },
+ "DeviceState": {
+ "LearnMore": {
+ "message": "当用户从中登录的设备不是“已建立混合 Azure AD 联接”或“标记为合规”的设备时,控制用户访问。\n 此项已被弃用。请改用“{1}”。"
+ }
+ },
+ "Errors": {
+ "notFound": "策略未找到或已被删除。",
+ "notFoundDetailed": "策略“{0}”已不存在。它可能已遭删除。"
+ },
+ "GuestsOrExternalUsers": {
+ "allExternalTenantsLabel": "所有 Azure AD 组织",
+ "b2bCollaborationGuestLabel": "B2B 协作来宾用户",
+ "b2bCollaborationMemberLabel": "B2B 协作成员用户",
+ "b2bDirectConnectUserLabel": "B2B 直连用户",
+ "enumeratedExternalTenantsError": "请至少选择一个外部租户",
+ "enumeratedExternalTenantsLabel": "选择 Azure AD 组织",
+ "externalTenantsLabel": "指定外部 Azure AD 组织",
+ "externalUserDropdownLabel": "选择来宾或外部用户类型",
+ "externalUsersError": "至少选择一个外部来宾或用户类型",
+ "guestOrExternalUsersInfoContent": "包括 B2B 协作、B2B 直连和其他类型的外部用户。",
+ "guestOrExternalUsersLabel": "来宾或外部用户",
+ "internalGuestLabel": "本地来宾用户",
+ "otherExternalUserLabel": "其他外部用户"
+ },
+ "NamedLocation": {
+ "Form": {
+ "CountryLookup": {
+ "ariaLabel": "国家/地区查找方法",
+ "gps": "按 GPS 坐标确定位置",
+ "info": "如果配置了条件访问策略的位置条件,Authenticator 应用会提示用户共享其 GPS 位置。",
+ "ip": "按 IP 地址确定位置(仅限 IPv4) "
+ },
+ "Header": {
+ "new": "新位置({0})",
+ "update": "更新位置({0})"
+ },
+ "IP": {
+ "learn": "配置命名位置 IPv4 和 IPv6 范围。\n[了解更多][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
+ },
+ "Include": {
+ "infoBalloon": "未知国家/地区是指没有与特定国家/地区关联的 IP 地址。[了解更多信息][1]\n\n这包括:\n* IPv6 地址\n* 没有直接映射的 IPv4 地址\n[1]: https://aka.ms/canamedlocations\n",
+ "label": "包括未知国家/地区"
+ },
+ "Name": {
+ "empty": "名称不得为空。",
+ "placeholder": "命名此位置"
+ },
+ "PrivateLink": {
+ "learn": "创建包含 Azure AD 的专用链接的新命名位置。\n[了解详细信息][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
+ },
+ "Search": {
+ "countries": "搜索国家/地区",
+ "names": "搜索名称",
+ "privateLinks": "搜索专用链接"
+ },
+ "Trusted": {
+ "label": "标记为可信位置"
+ },
+ "enter": "输入新 IPv4 或 IPv6 范围",
+ "example": "例如: 40.77.182.32/27 或 2a01:111::/32"
+ },
+ "Label": {
+ "addCountries": "国家/地区位置",
+ "addIpRange": "IP 范围位置",
+ "addPrivateLink": "Azure 专用链接"
+ },
+ "Notification": {
+ "Create": {
+ "Failed": {
+ "description": "无法新建位置({0})",
+ "title": "无法创建"
+ },
+ "InProgress": {
+ "description": "正在新建位置({0})",
+ "title": "正在进行创建"
+ },
+ "Success": {
+ "description": "已成功新建位置({0})",
+ "title": "已成功创建"
+ }
+ },
+ "Delete": {
+ "Failed": {
+ "description": "无法删除位置({0})",
+ "title": "无法删除"
+ },
+ "InProgress": {
+ "description": "正在删除位置({0})",
+ "title": "正在删除"
+ },
+ "Success": {
+ "description": "已成功删除位置({0})",
+ "title": "已成功删除"
+ }
+ },
+ "Update": {
+ "Failed": {
+ "description": "无法更新位置({0})",
+ "title": "无法更新"
+ },
+ "InProgress": {
+ "description": "正在更新位置({0})",
+ "title": "正在更新"
+ },
+ "Success": {
+ "description": "已成功更新位置({0})",
+ "title": "已成功更新"
+ }
+ }
+ },
+ "PrivateLinks": {
+ "grid": "专用链接列表"
+ },
+ "Trusted": {
+ "title": "受信任类型",
+ "trusted": "受信任"
+ },
+ "Type": {
+ "all": "所有类型",
+ "countries": "国家/地区",
+ "ipRanges": "IP 范围",
+ "privateLinks": "专用链接",
+ "title": "位置类型"
+ },
+ "iPRangeInvalidError": "值必须是有效的 IPv4 或 IPv6 范围。",
+ "iPRangeLinkOrSiteLocalError": "检测到 IP 网络为链路本地地址或站点本地地址。",
+ "iPRangeOctetError": "IP 网络不得以 0 或 255 开头。",
+ "iPRangePrefixError": "IP 网络前缀必须介于 /{0} 和 /{1} 之间。",
+ "iPRangePrivateError": "检测到 IP 网络为专用地址。"
+ },
+ "NamedNetwork": {
+ "List": {
+ "gridAria": "已命名位置列表"
+ }
+ },
+ "Policies": {
+ "Grid": {
+ "aria": "条件访问策略的列表"
+ },
+ "countText": "找到了 {0} 个策略(共 {1} 个)",
+ "countTextSingular": "找到了 {0} 个策略(共 1 个)",
+ "search": "搜索策略"
+ },
+ "Policy": {
+ "Condition": {
+ "ServicePrincipalRisk": {
+ "description": "配置强制实施策略所需的服务主体风险级别",
+ "infoBalloonContent": "配置服务主体风险,以将策略应用于所选风险级别",
+ "title": "服务主体风险(预览)"
+ }
+ }
+ },
+ "PolicyControlAuthStrength": {
+ "MultiFactorAuthentication": {
+ "description": "满足强身份验证的方法组合,如密码 + 短信",
+ "displayName": "多重身份认证(MFA)"
+ },
+ "Passwordless": {
+ "description": "满足强身份验证要求的无密码方法,例如 Microsoft Authenticator ",
+ "displayName": "无密码 MFA"
+ },
+ "PhishingResistant": {
+ "description": "用于最强身份验证的防网络钓鱼无密码方法,如 FIDO2 安全密钥",
+ "displayName": "防网络钓鱼 MFA"
+ }
+ },
+ "PolicyControlFedAuthMethod": {
+ "ariaLabel": "Learn more about requiring authentication methods satisfied by federation providers.",
+ "certificate": "证书身份验证",
+ "infoBubble": "指定所需的身份验证方法,该方法必须满足 ADFS 等联合身份验证提供程序的要求。",
+ "multifactor": "多重身份验证",
+ "require": "需要联合身份验证方法(预览版)",
+ "whatIfFormat": "{0} - {1}"
+ },
+ "PolicyState": {
+ "off": "关闭",
+ "on": "打开",
+ "reportOnly": "仅报告"
+ },
+ "PolicyTemplates": {
+ "Devices": {
+ "description": "选择“设备”策略模板类别以查看访问网络的设备。在授予访问权限之前先确保合规性和运行状况状态。",
+ "name": "设备"
+ },
+ "Identities": {
+ "description": "选择“标识”策略模板类别,从而使用强身份验证在整个数字财产中验证并保护每个标识。",
+ "name": "标识"
+ },
+ "Summary": {
+ "CloudApps": {
+ "allCloudApps": "所有应用",
+ "office365": "Office 365",
+ "registerSecurityInfo": "注册安全信息"
+ },
+ "Conditions": {
+ "androidAndIOS": "设备平台: Android 和 IOS",
+ "anyDevice": "除 Android、IOS、Windows 和 Mac 之外的任何设备",
+ "anyDeviceStateExceptHybrid": "除合规和已建立混合 Azure AD 联接之外的任何设备状态",
+ "anyLocation": "除受信任之外的任何位置",
+ "browserMobileDesktop": "客户端应用: 浏览器、移动应用以及桌面客户端",
+ "exchangeActiveSync": "客户端应用: Exchange Active Sync、其他客户端",
+ "windowsAndMac": "设备平台: Windows 和 Mac"
+ },
+ "Devices": {
+ "anyDevice": "任何设备"
+ },
+ "Grant": {
+ "appProtectionPolicy": "需要应用保护策略",
+ "approvedClientApp": "需要核准的客户端应用",
+ "blockAccess": "阻止访问",
+ "mfa": "要求多重身份验证",
+ "passwordChange": "需要更改密码",
+ "requireCompliantDevice": "需要标记为兼容的设备",
+ "requireHybridAzureADDevice": "需要已建立混合 Azure AD 联接的设备"
+ },
+ "Session": {
+ "appEnforcedRestrictions": "使用应用强制实施的限制",
+ "signInFrequency": "登录频率和永不持续的浏览器会话"
+ },
+ "UsersAndGroups": {
+ "allUsers": "所有用户",
+ "directoryRoles": "除当前管理员之外的目录角色",
+ "globalAdmin": "全局管理员",
+ "noGuestAndAdmins": "除来宾和外部用户、全局管理员、当前管理员之外的所有用户"
+ },
+ "azureManagement": "Azure 管理",
+ "deviceFilters": "设备筛选器",
+ "devicePlatforms": "设备平台"
+ },
+ "TemplateId": {
+ "AppEnforcedRestrictions": {
+ "description": "阻止或限制从非托管设备访问 SharePoint、OneDrive 和 Exchange 内容。",
+ "name": "CA014: 对非管理的设备使用应用程序强制限制",
+ "title": "对非管理的设备使用应用程序强制限制"
+ },
+ "ApprovedClientApps": {
+ "description": "要防止数据丢失,组织可以使用 Intune 应用保护限制对已批准的新式身份验证客户端应用的访问权限。",
+ "name": "CA012: 需要已批准的客户端应用和应用保护",
+ "title": "需要已批准的客户端应用和应用保护"
+ },
+ "BlockAccessOnUnknowns": {
+ "description": "当设备类型未知或不受支持时,将阻止用户访问公司资源。",
+ "name": "CA010: 阻止未知或不支持设备平台的访问",
+ "title": "阻止未知或不支持设备平台的访问"
+ },
+ "BlockLegacyAuth": {
+ "description": "阻止可用于绕过多重身份验证的旧式身份验证终结点。 ",
+ "name": "CA003: 阻止旧版身份验证",
+ "title": "阻止旧身份验证"
+ },
+ "NoPersistentBrowserSession": {
+ "description": "阻止浏览器会话在浏览器关闭后保持登录状态并将登录频率设置为 1 小时,从而保护非托管设备上的用户访问。",
+ "name": "CA011: 浏览器会话不持久",
+ "title": "没有持久性浏览器会话"
+ },
+ "RequireCompliantOrHybridADAdmins": {
+ "description": "需要特权管理员仅在使用合规或已建立混合 Azure AD 联接的设备时才访问资源。",
+ "name": "CA009: 要求管理员的设备合规或已建立混合 Azure AD 联接",
+ "title": "要求管理员的设备合规或已建立混合 Azure AD 联接"
+ },
+ "RequireCompliantOrHybridADAllUsers": {
+ "description": "需要用户使用托管设备或执行多重身份验证,从而保护对公司资源的访问权限。(仅限 macOS 或 Windows)",
+ "name": "CA013: 要求所有用户都使用合规或已建立混合 Azure AD 联接的设备或多重身份验证",
+ "title": "要求所有用户都使用合规或已建立混合 Azure AD 联接的设备或多重身份验证"
+ },
+ "RequireMFAAllUsers": {
+ "description": "需要对所有用户帐户进行多重身份验证,以降低入侵风险。",
+ "name": "CA004: 要求对所有用户进行多重身份验证",
+ "title": "要求对所有用户进行多重身份验证"
+ },
+ "RequireMFAForAdmins": {
+ "description": "需要对特权管理帐户进行多重身份验证,以降低入侵风险。此策略将针对与“安全默认”相同的角色。",
+ "name": "CA001: 要求对所有管理员进行多重身份验证",
+ "title": "需要为管理员进行多重身份验证"
+ },
+ "RequireMFAForAzureManagement": {
+ "description": "需要多重身份验证来保护对 Azure 资源的特权访问。",
+ "name": "CA006: Azure 管理需要多重身份验证",
+ "title": "Azure 管理需要多重身份验证"
+ },
+ "RequireMFAForGuestAccess": {
+ "description": "当访问公司资源时,需要来宾用户执行多重身份验证。",
+ "name": "CA005: 要求对来宾访问进行多重身份验证",
+ "title": "要求对所有来宾访问进行多重身份验证"
+ },
+ "RequireMFAForRiskySignIn": {
+ "description": "如果检测到中或高登录风险,则需要进行多重身份验证。(需要 Azure AD Premium 2 许可证)",
+ "name": "CA007: 风险登录需要多重身份验证",
+ "title": "风险登录需要多重身份验证"
+ },
+ "RequirePasswordChangeForHighRiskUsers": {
+ "description": "如果检测到高用户风险,则需要用户更改其密码。(需要 Azure AD Premium 2 许可证)",
+ "name": "CA008: 需要为高风险用户更改密码",
+ "title": "需要为高风险用户更改密码"
+ },
+ "RequireSecurityInfo": {
+ "description": "保护用户注册 Azure AD 多重身份验证和自助服务密码的时间和方式。 ",
+ "name": "CA002: 保护安全信息注册",
+ "title": "保护安全信息注册"
+ }
+ },
+ "TemplateState": {
+ "BlockAccessOnUnknowns": {
+ "title": "启用此策略将阻止任何对未知设备类型的访问,在确认这不会影响用户前,请考虑使用仅限报告模式。"
+ },
+ "BlockLegacyAuth": {
+ "description": "在确认这不会影响用户前,请考虑使用仅限报告模式。",
+ "title": "启用此策略将阻止所有用户的旧身份验证。"
+ },
+ "RequireCompliantOrHybridADAdmins": {
+ "Description": {
+ "on": "在确认这不会影响特权用户之前,请考虑先使用仅报告模式。",
+ "reportOnly": "处于仅限报告模式且需要兼容设备的策略可能会提示 Mac、iOS 和 Android 上的用户在策略评估期间选择设备证书,即使没有强制执行设备合规性。在设备合规之前,可能会重复这些提示。"
+ },
+ "Title": {
+ "on": "启用此策略将为特权用户阻止访问,除非使用托管设备(例如合规或已建立混合 Azure AD 联接的设备)。在启用之前,请确保已配置合规性策略或已启用混合 Azure AD 配置。",
+ "reportOnly": "在启用之前,请确保已配置合规性策略或已启用混合Azure AD 配置。 "
+ }
+ },
+ "RequireCompliantOrHybridADAllUsers": {
+ "Description": {
+ "on": "此策略将影响除当前登录“管理员”之外的所有用户。在确认这不会影响用户之前,请考虑先使用仅报告模式。"
+ },
+ "Title": {
+ "on": "不要将自己锁定! 请确保设备合规或已建立混合 Azure AD 联接,或已配置多重身份验证。 ",
+ "reportOnly": "处于仅限报告模式且需要兼容设备的策略可能会提示 Mac、iOS 和 Android 上的用户在策略评估期间选择设备证书,即使没有强制执行设备合规性。在设备合规之前,可能会重复这些提示。"
+ }
+ },
+ "RequireMfa": {
+ "description": "如果使用紧急访问帐户或 Azure AD Connect 同步本地对象,则在创建后可能需要将这些帐户从该策略中排除。"
+ },
+ "RequireMfaAdmins": {
+ "description": "请注意,将自动排除当前管理员帐户,但所有其他帐户将在策略创建时受到保护。请首先考虑使用仅限报告模式。",
+ "title": "请勿置身事外! 此策略影响 Azure 门户。"
+ },
+ "RequireMfaAllUsers": {
+ "description": "在计划并通知所有用户此更改前,请考虑仅限报告模式。",
+ "title": "启用此策略将对所有用户强制执行多重身份验证。"
+ },
+ "RequireSecurityInfo": {
+ "description": "请确保根据公司需要检查配置以保护这些帐户。",
+ "title": "此策略不包括以下用户和角色: 来宾和外部用户、全局管理员、当前管理员"
+ }
+ },
+ "basics": "基本信息",
+ "clientApps": "客户端应用",
+ "cloudApps": "云应用",
+ "cloudAppsOrActions": "云应用或操作 ",
+ "conditions": "条件 ",
+ "createNewPolicy": "根据模板创建新策略(预览版)",
+ "createPolicy": "创建策略",
+ "currentUser": "当前用户",
+ "customizeBuild": "自定义版本",
+ "customizeTemplate": "基于你要创建的策略的类型自定义模板列表",
+ "excludedDevicePlatform": "排除的设备平台",
+ "excludedDirectoryRoles": "排除的目录角色",
+ "excludedLocation": "排除的目录角色",
+ "excludedUsers": "已排除用户",
+ "grantControl": "授权控制 ",
+ "includeFilteredDevice": "在策略中包括筛选后的设备",
+ "includedDevicePlatform": "包含的设备平台",
+ "includedDirectoryRoles": "包含的目录角色",
+ "includedLocation": "包含的位置",
+ "includedUsers": "包含的用户",
+ "legacyAuthenticationClients": "旧身份验证客户端",
+ "namePolicy": "命名策略",
+ "next": "下一步",
+ "policyName": "策略名称",
+ "policyState": "策略状态",
+ "policySummary": "策略摘要",
+ "policyTemplate": "策略模板",
+ "previous": "上一步",
+ "reviewAndCreate": "审阅 + 创建",
+ "riskLevels": "风险级别",
+ "selectATemplate": "选择模板",
+ "selectTemplate": "选择模板",
+ "selectTemplateCategory": "选择模板类别",
+ "selectTemplateRecommendation": "基于你的响应,我们建议使用以下模板",
+ "sessionControl": "会话控制 ",
+ "signInFrequency": "登录频率",
+ "signInRisk": "登录风险",
+ "template": "模板 ",
+ "templateCategory": "模板类别",
+ "userRisk": "用户风险",
+ "usersAndGroups": "用户和组 ",
+ "viewPolicySummary": "查看策略摘要 "
+ },
+ "SSM": {
+ "MemberSelector": {
+ "description": "用户和组"
+ },
+ "Notification": {
+ "Migration": {
+ "error": "无法将连续访问评估设置迁移到条件访问策略",
+ "inProgress": "迁移连续访问评估设置",
+ "success": "已成功将连续访问评估设置迁移到条件访问策略",
+ "successDescription": "请转至条件访问策略,以查看新创建的名为“从 CAE 设置创建的 CA 策略”的策略中迁移的设置。"
+ },
+ "error": "无法更新连续访问评估设置",
+ "inProgress": "正在更新连续访问评估设置",
+ "success": "已成功更新连续访问评估设置"
+ },
+ "PreviewOptions": {
+ "disable": "禁用预览",
+ "enable": "启用预览"
+ },
+ "StrictLocationEnforcement": {
+ "infoContent1": "由于网络分区或 IPv4/IPv6 不匹配,向同一客户端设备中的 Azure AD 和资源提供程序显示的 IP 可能不同。“严格位置强制”将强制执行基于向 Azure AD 和资源提供程序显示的 IP 地址的条件访问策略。",
+ "infoContent2": "为了最大程度地确保安全性,建议在“命名位置”策略中添加可能会向 Azure AD 和资源提供程序显示的所有 IP,并启用“严格位置强制”模式。",
+ "label": "严格位置强制",
+ "title": "其他强制模式"
+ },
+ "bladeTitle": "连续访问评估",
+ "description": "在用户的访问权限被撤消或客户端 IP 地址发生变化时,连续访问评估会准实时地自动阻止对资源和应用程序的访问。",
+ "migrateLabel": "迁移",
+ "migrationError": "由于以下错误,迁移失败: {0}",
+ "migrationInfo": "CAE 设置已在条件访问 UX 下移动,请使用上面的“迁移”按钮进行迁移,并在以后使用条件访问策略对其进行配置。单击此处了解详细信息。",
+ "noLicenseMessage": "使用 Azure AD Premium 管理智能会话管理设置",
+ "optionsPickerTitle": "启用/禁用连续访问评估",
+ "upsellInfo": "无法再更改此页上的设置,并应忽略此处的任何设置。将遵守你以前的设置。你可以在将来的条件访问下配置 CAE 设置。单击此处以了解详细信息。"
+ },
+ "SelectOrganizations": {
+ "Blade": {
+ "Lower": {
+ "gridAria": "所选组织的列表"
+ },
+ "Upper": {
+ "gridAria": "可用组织列表"
+ },
+ "description": "通过键入其域名之一来添加 Azure AD 组织。",
+ "notFoundResult": "找不到",
+ "searchBoxPlaceholder": "租户 ID 或域名",
+ "subTitle": "Azure AD 组织"
+ },
+ "Selector": {
+ "AdditionalDetails": {
+ "aria": "组织 ID: {0}"
+ },
+ "DisplayText": {
+ "multiple": "已选择 {0} Azure AD 组织",
+ "single": "已选择 1 个Azure AD 组织"
+ },
+ "gridAria": "所选组织的列表"
+ }
+ },
+ "SessionLifetime": {
+ "PersistentBrowser": {
+ "Error": {
+ "notAllApps": "仅当选中“所有云应用”时,持久性浏览器会话策略才正确发挥作用。请更新云应用选择。"
+ },
+ "Option": {
+ "always": "始终持久性",
+ "help": "通过永久性浏览器会话,用户可以在关闭并重新打开浏览器窗口后保持登录状态。
\n\n- 当选中“所有云应用”时,此设置可以正常运行。
\n- 这不影响令牌生存期或登录频率设置。
\n- 这会替代“公司品牌”中的“显示保持登录选项”策略。
\n- “绝不是永久性”将替代从联合身份验证服务传入的任何永久性 SSO 声明。
\n- “绝不是永久性”将跨应用程序以及在应用程序和用户移动浏览器之间阻止移动设备 SSO。
\n",
+ "label": "持久性浏览器会话",
+ "never": "从不持续"
+ },
+ "Warning": {
+ "allApps": "仅当选中“所有云应用”时,持久性浏览器会话才正确发挥作用。请更改云应用选择。单击此处可了解详细信息。"
+ }
+ },
+ "SignInFrequency": {
+ "Aria": {
+ "units": "小时或天",
+ "value": "频率"
+ },
+ "Option": {
+ "Day": {
+ "plural": "{0} 天",
+ "singular": "1 天"
+ },
+ "Hour": {
+ "plural": "{0} 小时",
+ "singular": "1 小时"
+ },
+ "daysOption": "天",
+ "everytime": "每次",
+ "help": "用户访问资源时收到登录提示的时间周期。默认设置是 90 天的滚动时间段,即用户在计算机上的非活跃天数为 90 天或更长时,首次访问资源将收到重新进行身份验证的提示。",
+ "hoursOption": "小时",
+ "label": "登录频率",
+ "placeholder": "选择单位"
+ }
+ },
+ "mainOption": "修改会话生存期",
+ "mainOptionHelp": "配置对用户进行提示的频率,以及是否保留浏览器会话。不支持新式身份验证协议的应用程序可能不遵守这些策略。在此情况下,请联系应用程序开发人员。"
+ },
+ "SigninRisk": {
+ "LearnMore": {
+ "message": "控制用户访问,以响应特定的登录风险级别。"
+ }
+ },
+ "SingleSelectorActive": {
+ "failed": "无法加载这些数据。",
+ "reattempt": "正在加载数据。重试 {1} 的 {0}。"
+ },
+ "TimeCondition": {
+ "Errors": {
+ "both": "“包括”或“排除”时间范围无效。",
+ "daysOfWeek": "{0} 请务必指定至少一个星期几。",
+ "endBeforeStart": "{0} 请确保开始日期/时间早于结束日期/时间。",
+ "exclude": "“排除”时间范围无效。",
+ "generic": "{0} 请确保星期几和时区都已设置。如果没有选中“全天”,则还需要设置开始时间和结束时间。",
+ "include": "“包括”时间范围无效。",
+ "timeMissing": "{0} 请务必同时指定开始时间和结束时间。",
+ "timeZone": "{0} 请务必指定时区。",
+ "timesAndZone": "{0} 请务必设置开始时间、结束时间和时区。"
+ }
+ },
+ "UserActions": {
+ "Included": {
+ "none": "未选择云应用或操作",
+ "plural": "包含 {0} 个用户操作",
+ "singular": "包含 1 个用户操作"
+ },
+ "accessRequirement1": "级别 1",
+ "accessRequirement2": "级别 2",
+ "accessRequirement3": "级别 3",
+ "accessRequirementsLabel": "访问受保护的应用数据",
+ "appsActionsAuthTitle": "云应用、操作或身份验证上下文",
+ "appsOrActionsSelectorInfoBallonText": "已访问应用程序或用户操作",
+ "appsOrActionsTitle": "云应用或操作",
+ "label": "用户操作",
+ "mainOptionsLabel": "选择此策略的适用对象",
+ "registerOrJoinDevices": "注册或加入设备",
+ "registerSecurityInfo": "注册安全信息",
+ "selectionInfo": "选择将应用此策略的操作",
+ "whatIf": "包括用户操作"
+ },
+ "UserSelectionBlade": {
+ "DirectoryRoles": {
+ "ariaLabel": "请选择目录角色"
+ },
+ "Excluded": {
+ "gridAria": "已排除用户的列表"
+ },
+ "Included": {
+ "gridAria": "已添加用户的列表"
+ },
+ "Validation": {
+ "customRoleIncluded": "“目录角色”至少包含一个自定义角色",
+ "customRoleSelected": "至少选择一个自定义角色",
+ "failed": "必须配置“{0}”",
+ "roles": "请至少选择一个角色",
+ "usersGroups": "请至少选择一个用户或组"
+ },
+ "learnMore": "根据策略将适用的人员(例如用户和组、工作负载标识、目录角色或外部来宾)控制访问权限。"
+ },
+ "ValidationResult": {
+ "blockEveryonePolicy": "不支持策略配置。请查看分配和控制。",
+ "invalidApplicationCondition": "所选云应用程序无效",
+ "invalidClientTypesCondition": "所选客户端应用无效",
+ "invalidConditions": "分配未选定",
+ "invalidControls": "所选控件无效",
+ "invalidDevicePlatformsCondition": "所选设备平台无效",
+ "invalidDevicesCondition": "设备配置无效。可能是“{0}”配置无效。",
+ "invalidGrantControlPolicy": "无效的授权控件",
+ "invalidLocationsCondition": "所选位置无效",
+ "invalidPolicy": "分配未选定",
+ "invalidSessionControlPolicy": "无效的会话控件",
+ "invalidSignInRisksCondition": "所选登录风险无效",
+ "invalidUserRisksCondition": "所选用户风险无效",
+ "invalidUsersCondition": "所选用户无效",
+ "mamPolicyShouldOnlyTargetAndroidOrIosPlatforms": "MAM 策略只能应用于 Android 或 IOS 客户端平台。",
+ "notSupportedCombination": "策略配置不受支持。了解有关受支持策略的详细信息。",
+ "pending": "正在验证策略",
+ "requireComplianceEveryonePolicy": "策略配置要求所有用户的设备均合规。查看选定的作业。",
+ "success": "有效策略"
+ },
+ "VpnCert": {
+ "Grid": {
+ "aria": "VPN 证书列表"
+ }
+ },
+ "WarningsInfo": {
+ "Controls": {
+ "compliantDeviceEnabled": "不要置身事外! 请确保设备的合规性。",
+ "domainJoinedDeviceEnabled": "不要置身事外! 请确保设备已建立混合 Azure AD 联接。",
+ "exchangeDisabled": "Exchange ActiveSync 仅支持“兼容设备”和“核准的客户端应用”控件。点击此处了解详细信息。",
+ "exchangeDisabled2": "Exchange ActiveSync 仅支持“兼容设备”、“核准的客户端应用”和“兼容客户的应用”控件。点击此处了解详细信息。",
+ "notAvailableForSP": "由于策略分配中选择了 '{0}',因此一些控件不可用",
+ "requireAuthOrMfa": "“{0}”不能和“{1}”一起使用",
+ "requireMfa": "请考虑测试新“{0}”公共预览版",
+ "requirePasswordChangeEnabled": "仅当策略被分配到“所有云应用”时,才能使用“需要更改密码”"
+ },
+ "Policies": {
+ "Linux": {
+ "devicePlatformsReportOnlyPolicy": "仅报告模式下需要合规设备的策略可能会提示 macOS、iOS、Android 和 Linux 用户选择设备证书。",
+ "excludeDevicePlatforms": "从此策略中排除设备平台 macOS、iOS 和 Android。",
+ "proceedAnywayDevicePlatforms": "继续使用所选配置。在检查设备是否符合要求时,macOS、iOS、Android 和 Linux 用户可能会收到提示。"
+ },
+ "blockCurrentUserPolicy": "不要置身事外! 建议先将策略应用于一小部分用户,以验证它是否按预期运行。还建议至少将一名管理员从此策略中排除。这可确保你仍具有访问权限并可在需要更改时更新策略。请查看受影响的用户和应用。",
+ "devicePlatformsReportOnlyPolicy": "仅报告模式下需要合规设备的策略可能会提示 macOS、iOS 和 Android 用户选择设备证书。",
+ "excludeCurrentUserSelection": "从此策略中排除当前用户 {0}。",
+ "excludeDevicePlatforms": "从此策略中排除设备平台 macOS、iOS 和 Android。",
+ "proceedAnywayDevicePlatforms": "继续使用选定的配置。在检查设备是否符合要求时,macOS、iOS 和 Android 用户可能会收到提示。",
+ "proceedAnywaySelection": "我了解我的帐户将受此策略的影响。仍要继续。"
+ },
+ "ServicePrincipals": {
+ "blockExchange": "选择 Office 365 Exchange Online 还将影响 OneDrive 和 Teams 等应用。",
+ "blockPortal": "不要置身事外! 此策略将影响 Azure 门户。在继续前,请确保你或其他人能够返回门户。",
+ "blockPortalWithSession": "不要把自己锁在外面!此策略会影响 Azure 门户。请确保你或其他人员能够再次返回门户,然后继续。
如果正在配置仅当选中“所有云应用”时才能正确发挥作用的持续性浏览器会话策略,请忽略此警告。",
+ "blockSharePoint": "选择 SharePoint Online 还会影响 Microsoft Teams、Planner、Delve、MyAnalytics 和 Newsfeed 等应用。",
+ "blockSkype": "选择 Skype for Business Online 也会对 Microsoft Teams 产生影响。 ",
+ "includeOrExclude": "可以为 \"{0}\" 或 \"{1}\" 配置应用筛选器,但不能同时配置两者。",
+ "selectAppsNAForSP": "由于策略分配中的“{0}”选择,无法选择单个云应用",
+ "teamsBlocked": "策略中包含 SharePoint Online 和 Exchange Online 等应用时,Microsoft Teams 也会受到影响。"
+ },
+ "Users": {
+ "blockAllUsers": "不要将自己拒之门外! 此策略将影响所有用户。建议先将策略应用于一小部分用户,以验证它的行为是否符合预期。"
+ }
+ },
+ "WhatIf": {
+ "Device": {
+ "AttributesGrid": {
+ "aria": "登录时使用的设备上的属性列表。",
+ "infoBalloon": "登录时使用的设备上的属性列表。"
+ }
+ }
+ },
+ "advancedTabText": "高级",
+ "allCloudAppsErrorBox": "选择“需要更改密码”授权时,必须选择“所有云应用”",
+ "allCloudAppsReauth": "当选择了“每次登录频率”会话控制和“登录风险”条件时,必须选择“所有云应用”",
+ "allCloudOrSpecificApps": "“每次登录评率”会话控制要求选择“所有云应用”或专门支持的应用。",
+ "allDayCheckboxLabel": "全天",
+ "allDevicePlatforms": "任何设备",
+ "allGuestUserInfoContent": "包括 Azure AD B2B 来宾,但不包括 SharePoint B2B 来宾",
+ "allGuestUserLabel": "所有来宾和外部用户",
+ "allRiskLevelsOption": "所有风险级别",
+ "allTrustedLocationLabel": "所有受信任位置",
+ "allUserGroupSetSelectorLabel": "已选择所有用户和组",
+ "allUsersReauth": "“每次登录频率”会话控制要求选择“所有用户”",
+ "allUsersString": "所有用户",
+ "and": "{0} 和 {1}",
+ "andWithGrouping": "({0})和 {1} ",
+ "androidDisplayName": "Android",
+ "anyCloudAppSelection": "任何云应用",
+ "appContextOptionInfoContent": "请求的身份验证标记",
+ "appContextOptionLabel": "请求的身份验证标记(预览版)",
+ "appContextUriPlaceholder": "示例: uri:contoso.com:level3",
+ "appEnforceInfoBubble": "应用强制实施的限制可能要求在云应用中进行额外的管理配置。这些限制将仅对新会话生效。",
+ "appNotSetSeletorLabel": "已选择 0 个云应用",
+ "applyConditionClientAppInfoBalloonContent": "配置客户端应用以将策略应用到特定客户端应用",
+ "applyConditionDevicePlatformInfoBalloonContent": "配置设备平台以将策略应用到特定平台",
+ "applyConditionDeviceStateInfoBalloonContent": "配置设备状态以将策略应用到特定设备状态",
+ "applyConditionLocationInfoBalloonContent": "配置位置以将策略应用到受信任/不受信任的位置",
+ "applyConditionSigninRiskInfoBalloonContent": "配置登录风险以将策略应用到所选风险级别",
+ "applyConditionUserRiskInfoBalloonContent": "配置用户风险以将策略应用于选定的一个或多个风险级别",
+ "applyConditonLabel": "配置",
+ "ariaLabelPolicyDisabled": "策略被禁用",
+ "ariaLabelPolicyEnabled": "已启用策略",
+ "ariaLabelPolicyReportOnly": "策略处于仅报告模式",
+ "blockAccess": "阻止访问",
+ "builtInDirectoryRoleLabel": "内置目录角色",
+ "casCustomControlInfo": "需要在 Cloud App Security 门户中配置自定义策略。此控件可立即用于特别推荐的应用,并且可对任何应用进行自载入。单击此处详细了解这两种情况。",
+ "casInfoBubble": "此控件适用于各种云应用。",
+ "casPreconfiguredControlInfo": "此控件可立即用于特别推荐的应用,并且可对任何应用进行自载入。单击此处详细了解这两种情况。",
+ "cert64DownloadCol": "下载 base64 证书",
+ "cert64Name": "VpnBase64Cert",
+ "certDownloadCol": "下载证书",
+ "certDurationCol": "到期",
+ "certDurationStartCol": "有效起始日期",
+ "certName": "VpnCert",
+ "certainApps": "如果未选择“需要多重身份验证”和“需要密码更改”授权,则仅为“每次登录频率”启用受到专门支持的应用",
+ "chooseApplicationsBladeSubtitle": "",
+ "chooseApplicationsBladeTitle": "选择应用程序",
+ "chooseApplicationsCartSubitle": "",
+ "chooseApplicationsCartTitle": "所选应用程序",
+ "chooseApplicationsEmpty": "没有应用程序",
+ "chooseApplicationsNone": "无",
+ "chooseApplicationsNoneFound": "找不到“{0}”。请尝试另一个名称或 ID。",
+ "chooseApplicationsPlural": "{0} 和另外 {1} 个",
+ "chooseApplicationsReAuthEverytimeInfo": "正在查找你的应用? 某些应用程序不能与“每次需要重新进行身份验证”会话控制一起使用",
+ "chooseApplicationsRemove": "删除",
+ "chooseApplicationsReturnedPlural": "找到 {0} 个应用程序 ",
+ "chooseApplicationsReturnedSingular": "找到 1 个应用程序",
+ "chooseApplicationsSearchBalloon": "搜索应用程序名称或 ID 以选择应用程序。",
+ "chooseApplicationsSearchHint": "搜索应用程序...",
+ "chooseApplicationsSearchLabel": "应用程序",
+ "chooseApplicationsSearching": "正在搜索...",
+ "chooseApplicationsSelect": "选择",
+ "chooseApplicationsSelected": "选定",
+ "chooseApplicationsSingular": "{0} 和另外 1 个",
+ "chooseApplicationsTooMany": "比可以显示的结果更多。 请使用搜索框进行筛选。",
+ "chooseLocationCorpnetItem": "公司网络",
+ "chooseLocationSelectedLocationsLabel": "选定位置",
+ "chooseLocationTrustedIpsItem": "MFA 受信任的 IP",
+ "chooseLocationsBladeSubtitle": "",
+ "chooseLocationsBladeTitle": "已选位置",
+ "chooseLocationsCartSubitle": "",
+ "chooseLocationsCartTitle": "已选位置",
+ "chooseLocationsEmpty": "没有位置",
+ "chooseLocationsExcludedSelectorTitle": "选择",
+ "chooseLocationsIncludedSelectorTitle": "选择",
+ "chooseLocationsNone": "无",
+ "chooseLocationsNoneFound": "找不到“{0}”。请尝试另一个名称或 ID。",
+ "chooseLocationsPlural": "{0} 和另外 {1} 个",
+ "chooseLocationsRemove": "删除",
+ "chooseLocationsReturnedPlural": "找到 {0} 个位置",
+ "chooseLocationsReturnedSingular": "找到 1 个位置",
+ "chooseLocationsSearchBalloon": "输入位置名称以搜索位置。",
+ "chooseLocationsSearchHint": "搜索位置...",
+ "chooseLocationsSearchLabel": "位置",
+ "chooseLocationsSearching": "正在搜索...",
+ "chooseLocationsSelect": "选择",
+ "chooseLocationsSelected": "已选择",
+ "chooseLocationsSelectionBladeExcludedSelectorTitle": "选择",
+ "chooseLocationsSelectionBladeIncludedSelectorTitle": "选择",
+ "chooseLocationsSingular": "{0} 和另外 1 个",
+ "chooseLocationsTooMany": "比可以显示的结果更多。 请使用搜索框进行筛选。",
+ "claimProviderAddCommandText": "新建自定义控件",
+ "claimProviderAddNewBladeTitle": "新建自定义控件",
+ "claimProviderDeleteCommand": "删除",
+ "claimProviderDeleteDescription": "是否确实要删除“{0}”? 此操作无法撤消。",
+ "claimProviderDeleteTitle": "是否确定?",
+ "claimProviderEditInfoText": "输入声明提供程序提供的自定义控件的 JSON。",
+ "claimProviderNotificationCreateDescription": "正在创建名为“{0}”的自定义控件",
+ "claimProviderNotificationCreateFailedDescription": "创建自定义控件“{0}”失败。请稍后重试。",
+ "claimProviderNotificationCreateFailedTitle": "未能创建自定义控件",
+ "claimProviderNotificationCreateSuccessDescription": "已创建名为“{0}”的自定义控件",
+ "claimProviderNotificationCreateSuccessTitle": "已创建“{0}”",
+ "claimProviderNotificationCreateTitle": "正在创建“{0}”",
+ "claimProviderNotificationDeleteDescription": "正在删除名为“{0}”的自定义控件",
+ "claimProviderNotificationDeleteFailedDescription": "删除自定义控件“{0}”失败。请稍后重试。",
+ "claimProviderNotificationDeleteFailedTitle": "未能删除自定义控件",
+ "claimProviderNotificationDeleteSuccessDescription": "已删除名为“{0}”的自定义控件",
+ "claimProviderNotificationDeleteSuccessTitle": "已删除“{0}”",
+ "claimProviderNotificationDeleteTitle": "正在删除“{0}”",
+ "claimProviderNotificationUpdateDescription": "正在更新名为“{0}”的自定义控件",
+ "claimProviderNotificationUpdateFailedDescription": "更新自定义控件“{0}”失败。请稍后重试。",
+ "claimProviderNotificationUpdateFailedTitle": "未能更新自定义控件",
+ "claimProviderNotificationUpdateSuccessDescription": "已更新名为“{0}”的自定义控件",
+ "claimProviderNotificationUpdateSuccessTitle": "已更新“{0}”",
+ "claimProviderNotificationUpdateTitle": "正在更新“{0}”",
+ "claimProviderValidationAppIdInvalid": "\"AppId\" 值无效。请检查并重试。",
+ "claimProviderValidationClientIdMissing": "数据缺少 \"ClientId\" 值。请检查并重试。",
+ "claimProviderValidationControlClaimsRequestedMissing": "\"Control\" 缺少 \"ClaimsRequested\" 值。请检查并重试。",
+ "claimProviderValidationControlClaimsRequestedTypeMissing": "\"ClaimsRequested\" 项缺少 \"Type\" 值。请检查并重试。",
+ "claimProviderValidationControlIdAlreadyExists": "\"Control\" \"Id\" 值已存在。请检查并重试。",
+ "claimProviderValidationControlIdMissing": "\"Control\" 缺少 \"Id\" 值。请检查并重试。",
+ "claimProviderValidationControlIdReferencedInExistingPolicy": "无法删除 \"Control\" \"Id\" 值,因为现有策略中引用了该值。请首先将其从策略中删除。",
+ "claimProviderValidationControlIdTooManyControls": "\"Control\" 属性包含过多控件。请检查并重试。",
+ "claimProviderValidationControlIdValueReserved": "\"Control\" \"Id\" 值是保留关键字,请使用其他 ID。",
+ "claimProviderValidationControlNameAlreadyExists": "\"Control\" \"Name\" 值已存在。请检查并重试。",
+ "claimProviderValidationControlNameMissing": "\"Control\" 缺少 \"Name\" 值。请检查并重试。",
+ "claimProviderValidationControlsMissing": "数据缺少 \"Controls\" 值。请检查并重试。",
+ "claimProviderValidationDiscoveryUrlMissing": "数据缺少 \"DiscoveryUrl\" 值。请检查并重试。",
+ "claimProviderValidationInvalid": "提供的数据无效。请检查并重试。",
+ "claimProviderValidationInvalidJsonDefinition": "无法保存自定义控件。请检查 JSON 文本并重试。",
+ "claimProviderValidationNameAlreadyExists": "\"Name\" 值已存在。请检查并重试。",
+ "claimProviderValidationNameMissing": "数据缺少 \"Name\" 值。请检查并重试。",
+ "claimProviderValidationUnknown": "验证提供的数据时出现未知错误。请检查并重试。",
+ "claimProvidersNone": "没有自定义控件",
+ "claimProvidersSearchPlaceholder": "搜索控件。",
+ "classicPoilcyFilterTitle": "显示",
+ "classicPolicyAllPlatforms": "所有平台",
+ "classicPolicyClientAppBrowserAndNative": "浏览器、移动应用和桌面客户端",
+ "classicPolicyCloudAppTitle": "云应用程序",
+ "classicPolicyControlAllow": "允许",
+ "classicPolicyControlBlock": "阻止",
+ "classicPolicyControlBlockWhenNotAtWork": "不工作时阻止访问",
+ "classicPolicyControlRequireCompliantDevice": "需要兼容设备",
+ "classicPolicyControlRequireDomainJoinedDevice": "需要已加入域的设备",
+ "classicPolicyControlRequireMfa": "要求多重身份验证",
+ "classicPolicyControlRequireMfaWhenNotAtWork": "不工作时要求多重身份验证",
+ "classicPolicyDeleteCommand": "删除",
+ "classicPolicyDeleteFailTitle": "未能删除经典策略",
+ "classicPolicyDeleteInProgressTitle": "正在删除经典策略",
+ "classicPolicyDeleteSuccessTitle": "已删除经典策略",
+ "classicPolicyDetailBladeTitle": "详细信息",
+ "classicPolicyDisableCommand": "禁用",
+ "classicPolicyDisableConfirmation": "确定要禁用“{0}”吗? 此操作无法被撤消。",
+ "classicPolicyDisableFailDescription": "未能禁用“{0}”",
+ "classicPolicyDisableFailTitle": "未能禁用经典策略",
+ "classicPolicyDisableInProgressDescription": "正在禁用“{0}”",
+ "classicPolicyDisableInProgressTitle": "正在禁用经典策略",
+ "classicPolicyDisableSuccessDescription": "已成功禁用“{0}”",
+ "classicPolicyDisableSuccessTitle": "已禁用经典策略",
+ "classicPolicyEasSupportedPlatforms": "Exchange ActiveSync 支持的平台",
+ "classicPolicyEasUnsupportedPlatforms": "Exchange ActiveSync 不支持的平台",
+ "classicPolicyExcludedPlatformsTitle": "排除的设备平台",
+ "classicPolicyFilterAll": "所有策略",
+ "classicPolicyFilterDisabled": "禁用的策略",
+ "classicPolicyFilterEnabled": "启用的策略",
+ "classicPolicyIncludeExcludeMembersDescription": "通过排除组,可以分阶段迁移策略。",
+ "classicPolicyIncludeExcludeMembersTitle": "包括/排除组",
+ "classicPolicyIncludedPlatformsTitle": "包含的设备平台",
+ "classicPolicyManualMigrationMessage": "此策略需要手动进行迁移。",
+ "classicPolicyMigrateCommand": "迁移",
+ "classicPolicyMigrateConfirmation": "确定要迁移“{0}”吗? 此策略仅可迁移一次。",
+ "classicPolicyMigrateFailDescription": "未能迁移“{0}”",
+ "classicPolicyMigrateFailTitle": "未能迁移经典策略",
+ "classicPolicyMigrateInProgressDescription": "正在迁移“{0}”",
+ "classicPolicyMigrateInProgressTitle": "正在迁移经典策略",
+ "classicPolicyMigrateRecommendText": "建议: 迁移到新的 Azure 门户策略。",
+ "classicPolicyMigrateSuccessTitle": "已成功迁移经典策略",
+ "classicPolicyMigratedSuccessDescription": "现在可在“策略”下管理此经典策略。",
+ "classicPolicyMigratedSuccessDescriptionMultiple": "此经典策略已迁移为 {0} 个新策略。可以在“策略”下管理这些新策略。",
+ "classicPolicyNoEditPermissionMsg": "你没有权限编辑此策略。只有全局管理员和安全管理员可以编辑此策略。请单击此处了解详细信息。",
+ "classicPolicySaveFailDescription": "未能保存“{0}”",
+ "classicPolicySaveFailTitle": "未能保存经典策略",
+ "classicPolicySaveInProgressDescription": "正在保存“{0}”",
+ "classicPolicySaveInProgressTitle": "正在保存经典策略",
+ "classicPolicySaveSuccessDescription": "已成功保存“{0}”",
+ "classicPolicySaveSuccessTitle": "已保存经典策略",
+ "clientAppBladeLegacyInfoBanner": "目前不支持旧身份验证",
+ "clientAppBladeLegacyUpsellBanner": "阻止不受支持的客户端应用(预览版)",
+ "clientAppBladeTitle": "客户端应用",
+ "clientAppDescription": "选择适用于该策略的客户端应用",
+ "clientAppExchangeActiveSync": "Exchange ActiveSync",
+ "clientAppExchangeDisabledInfo": "仅选中 Exchange Online 云应用时 Exchange ActiveSync 才可用。单击此处了解详细信息",
+ "clientAppExchangeWarning": "Exchange ActiveSync 目前不支持所有其他条件",
+ "clientAppLearnMore": "控制用户对不使用新式身份验证的特定客户端应用程序的访问。",
+ "clientAppLegacyHeader": "旧身份验证客户端",
+ "clientAppMobileDesktop": "移动应用和桌面客户端",
+ "clientAppModernHeader": "新式验证客户端",
+ "clientAppOnlySupportedPlatforms": "将策略仅应用到受支持的平台",
+ "clientAppSelectSpecificClientApps": "选择客户端应用",
+ "clientAppV2BladeTitle": "客户端应用(预览版)",
+ "clientAppWebBrowser": "浏览器",
+ "clientAppsSelectedLabel": "{0} 已包含",
+ "clientTypeBrowser": "浏览器",
+ "clientTypeEas": "Exchange ActiveSync 客户端",
+ "clientTypeEasInfo": "只使用旧身份验证的 Exchange ActiveSync 客户端。",
+ "clientTypeModernAuth": "新式身份验证客户端",
+ "clientTypeOtherClients": "其他客户端",
+ "clientTypeOtherClientsInfo": "这包括旧版 Office 客户端和其他邮件协议(POP、IMAP、SMTP 等)。[了解更多信息][1]\n[1]: https://aka.ms/caclientapps\n",
+ "cloudAppCountDiffBannerText": "已从目录中删除此策略中配置的 {0} 个云应用,但这不会影响此策略中的其他应用。下次更新策略的应用程序部分时,将从中自动移除已删除的应用。",
+ "cloudAppsSelectionBladeAllMicrosoftApps": "所有 Microsoft 应用",
+ "cloudAppsSelectionExcludeAllMicrosoftClients": "允许 Microsoft 云、桌面和移动应用(预览版)",
+ "cloudappsSelectionBladeAllCloudapps": "所有云应用",
+ "cloudappsSelectionBladeExcludeDescription": "选择要从策略中排除的云应用",
+ "cloudappsSelectionBladeExcludedSelectorTitle": "选择已排除的云应用",
+ "cloudappsSelectionBladeIncludeDescription": "选择此策略将应用到的云应用",
+ "cloudappsSelectionBladeIncludedSelectorTitle": "选择",
+ "cloudappsSelectionBladeSelectedCloudapps": "选择应用",
+ "cloudappsSelectorInfoBallonText": "用户为完成工作而访问的服务。例如,\"Salesforce\"",
+ "cloudappsSelectorPluralExcluded": "已排除 {0} 个应用",
+ "cloudappsSelectorPluralIncluded": "包含 {0} 个应用",
+ "cloudappsSelectorSingularExcluded": "已排除 1 个应用",
+ "cloudappsSelectorSingularIncluded": "包含 1 个应用",
+ "cloudappsSelectorUserPlural": "{0} 个应用",
+ "cloudappsSelectorUserSingular": "1 个应用",
+ "conditionLabelMulti": "已选择 {0} 个条件",
+ "conditionLabelOne": "已选择 1 个条件",
+ "conditionalAccessBladeTitle": "条件访问",
+ "conditionsNotSelectedLabel": "未配置",
+ "conditionsReqMfaReauthSet": "某些选项不可用,因为当前已选择“需要多重身份验证”授权和“每次登录频率”会话控件",
+ "conditionsReqPwSet": "一些选项不可用,因为当前选择的是“需要更改密码”授权",
+ "configureCasText": "配置 Cloud App Security",
+ "configureCustomControlsText": "配置自定义策略",
+ "controlLabelMulti": "已选择 {0} 个控件",
+ "controlLabelOne": "已选择 1 个控件",
+ "controlValidatorText": "请至少选择一个控件",
+ "controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
+ "controlsDeviceComplianceAriaLabel": "Learn more about requiring compliant devices.",
+ "controlsDeviceComplianceInfoBubble": "Device must be Intune compliant. If the device is non-compliant, the user will be prompted to bring the device under compliance.",
+ "controlsDomainJoinedAriaLabel": "Learn more about requiring hybrid Azure AD joined devices.",
+ "controlsDomainJoinedInfoBubble": "设备必须已建立混合 Azure AD 联接。",
+ "controlsMamAriaLabel": "Learn more about requiring approved client applications.",
+ "controlsMamInfoBubble": "设备必须使用这些核准的客户端应用程序。",
+ "controlsMfaInfoBubble": "用户必须完成其他安全性要求,如电话联络和短信",
+ "controlsOrAndInfoBubble": "ControlsOrAndInfoBubble",
+ "controlsRequireCompliantAppAriaLabel": "Learn more about requiring policy protected apps.",
+ "controlsRequireCompliantAppInfoBubble": "设备必须使用受策略保护的应用。",
+ "controlsRequirePasswordResetAriaLabel": "Learn more about requiring a password change.",
+ "controlsRequirePasswordResetInfoBubble": "需要更改密码以降低用户风险。此选项还要求进行多重身份验证。无法使用其他控制。",
+ "countriesRadiobuttonInfoBalloonContent": "发起登录所在的国家/地区取决于用户的 IP 地址。",
+ "createNewVpnCert": "新建证书",
+ "createdTimeLabel": "创建时间",
+ "customRoleLabel": "自定义角色(不支持)",
+ "dateRangeTypeLabel": "日期范围",
+ "daysOfWeekPlaceholderText": "筛选星期几",
+ "daysOfWeekTypeLabel": "星期几",
+ "deletePolicyNoLicenseText": "现在可以删除此策略。删除后,将无法重新创建它,直到拥有所需的许可证。",
+ "descriptionContentForControlsAndOr": "对于多个控件",
+ "devicePlatform": "设备平台",
+ "devicePlatformConditionHelpDescription": "将策略应用于所选的设备平台。\n[了解更多][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2044750",
+ "devicePlatformInclude": "{0} 已包含",
+ "devicePlatformIncludeExclude": "已排除 {0} 和 {1}",
+ "devicePlatformNoSelectionError": "选择的设备平台要求必须选择一个子项目。",
+ "devicePlatformsNone": "无",
+ "deviceSelectionBladeExcludeDescription": "选择要从策略中排除的平台",
+ "deviceSelectionBladeIncludeDescription": "选择要包括在此策略中的设备平台",
+ "deviceStateAll": "所有设备状态",
+ "deviceStateCompliant": "标记为“符合”的设备",
+ "deviceStateCompliantInfoContent": "将从此策略的评估中排除符合 Intune 的设备;例如,如果策略阻止访问,它将阻止所有设备(符合 Intune 的设备除外)。",
+ "deviceStateConditionConfigureInfoContent": "基于设备状态配置策略",
+ "deviceStateConditionSelectorInfoContent": "用户从中登录的设备是“已建立混合 Azure AD 联接”还是“标记为合规”的设备。\n 此项已弃用。请改用“{1}”。",
+ "deviceStateConditionSelectorLabel": "设备状态(已弃用)",
+ "deviceStateDomainJoined": "设备已建立混合 Azure AD 联接",
+ "deviceStateDomainJoinedInfoContent": "将从此策略的评估中排除已建立混合 Azure AD 联接的设备;例如,如果策略阻止访问,它将阻止所有设备(已建立混合 Azure AD 联接的设备除外)。",
+ "deviceStateDomainJoinedInfoLinkText": "了解详细信息。",
+ "deviceStateExcludeDescription": "选择用于从策略中排除设备的设备状态条件。",
+ "deviceStateIncludeAndExcludeOneLabel": "{0} 并排除 {1}",
+ "deviceStateIncludeAndExcludeTwoLabel": "{0} 并排除 {1} 和 {2}",
+ "directoryRoleInfoContent": "将策略分配给内置目录角色。",
+ "directoryRolesLabel": "目录角色",
+ "discardbutton": "放弃",
+ "downloadDefaultFileName": "IP 范围",
+ "downloadExampleFileName": "示例",
+ "downloadExampleHeader": "此示例文件含可接受的数据种类的展示。以 # 开头的行将被忽视。",
+ "endDatePickerLabel": "端",
+ "endTimePickerLabel": "结束时间",
+ "enterCountryText": "IP 地址和国家/地区是捆绑计算的。选择国家/地区。",
+ "enterIpText": "IP 地址和国家/地区是捆绑计算的。输入 IP 地址。",
+ "enterUserText": "未选择用户。选择一个用户。",
+ "evaluationResult": "计算结果",
+ "exchangeActiveSyncSelectedLabel": "Exchange ActiveSync ",
+ "exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "仅 Exchange ActiveSync 和受支持的平台",
+ "excludeAllTrustedLocationSelectorText": "所有可信位置",
+ "featureRequiresP2": "此功能需要 Azure AD Premium 2 许可证。",
+ "friday": "星期五",
+ "grantControls": "授权控件",
+ "gridNetworkTrusted": "受信任",
+ "gridPolicyCreatedDateTime": "创建日期",
+ "gridPolicyEnabled": "已启用",
+ "gridPolicyModifiedDateTime": "修改日期",
+ "gridPolicyName": "策略名称",
+ "gridPolicyState": "状态",
+ "groupSelectionBladeExcludeDescription": "选择要从策略中排除的组",
+ "groupSelectionBladeExcludedSelectorTitle": "选择排除的组",
+ "groupSelectionBladeSelect": "选择组",
+ "groupSelectorInfoBallonText": "应用策略的目录中的组。例如,“试点组”",
+ "groupsSelectionBladeTitle": "组",
+ "helpCommonScenariosText": "是否有兴趣了解常见方案?",
+ "helpCondition1": "当某用户位于公司网络之外时",
+ "helpCondition2": "当“经理”组中的用户登录时",
+ "helpConditionsTitle": "条件",
+ "helpControl1": "他们被要求使用多重身份验证进行登录",
+ "helpControl2": "他们需要使用 Intune 兼容或加入域的设备",
+ "helpControlsTitle": "控制",
+ "helpIntroText": "通过条件访问,可以在特定条件发生时强制执行访问要求。让我们举几个例子",
+ "helpIntroTitle": "什么是条件访问?",
+ "helpLearnMoreText": "想要深入了解条件访问吗?",
+ "helpStartStep1": "单击“+新建策略”创建首个策略",
+ "helpStartStep2": "指定策略条件和控制",
+ "helpStartStep3": "完成后,别忘了“启用策略并创建”步骤",
+ "helpStartTitle": "开始",
+ "highRisk": "高",
+ "includeAndExcludeAppsTextFormat": "包括: {0}。排除: {1}。",
+ "includeAppsTextFormat": "包括: {0}。",
+ "includeUnknownAreasCheckboxInfoBalloonContent": "未知区域是指无法映射到某国家/地区的 IP 地址。",
+ "includeUnknownAreasCheckboxLabel": "包含未知区域",
+ "infoCommandLabel": "信息",
+ "invalidCertDuration": "无效的证书持续时间",
+ "invalidIpAddress": "值必须是有效的 IP 地址",
+ "invalidUriErrorMsg": "请输入有效的 URI。例如 uri:contoso.com:acr",
+ "iosDisplayName": "iOS",
+ "linuxDisplayName": "Linux",
+ "loadAll": "加载全部",
+ "loading": "正在加载...",
+ "locationConfigureNamedLocationsText": "配置所有受信任位置",
+ "locationConfigureNamedLocationsUri": "{0}/usermanagement/mfasettings.aspx?tenantid={1}&culture={2}",
+ "locationNameTooLongError": "位置名称过长。不得超过 256 个字符",
+ "locationSelectionBladeExcludeDescription": "选择要从策略中排除的位置",
+ "locationSelectionBladeIncludeDescription": "选择要包括在此策略中的位置",
+ "locationsAllLocationsLabel": "任何位置",
+ "locationsAllNamedLocationsLabel": "所有受信任 IP",
+ "locationsAllPrivateLinksLabel": "我的租户中的所有专用链接",
+ "locationsIncludeExcludeLabel": "{0} 并排除所有受信任 IP",
+ "locationsSelectedPrivateLinksLabel": "所选专用链接",
+ "lowRisk": "低",
+ "macOsDisplayName": "macOS",
+ "managePoliciesLicenseText": "要管理条件访问策略,组织需要 Azure AD Premium P1 或 P2。",
+ "markAsTrustedCheckboxInfoBalloonContent": "从可信位置登录可降低用户的登录风险。如果知道输入的 IP 范围已建立且在组织中可信,则仅将此位置标记为可信位置。",
+ "markAsTrustedCheckboxLabel": "标记为可信位置",
+ "mediumRisk": "中",
+ "memberSelectionCommandRemove": "删除",
+ "menuItemClaimProviderControls": "自定义控件(预览版)",
+ "menuItemClassicPolicies": "经典策略",
+ "menuItemInsightsAndReporting": "见解和报告",
+ "menuItemManage": "管理",
+ "menuItemNamedLocationsPreview": "命名位置(预览)",
+ "menuItemNamedNetworks": "命名位置",
+ "menuItemPolicies": "策略",
+ "menuItemTermsOfUse": "使用条款",
+ "modifiedTimeLabel": "修改时间",
+ "monday": "星期一",
+ "nameLabel": "名称",
+ "namedLocationCountryInfoBanner": "只有 IPv4 地址映射到国家/地区。IPv6 地址包含在未知的国家/地区中。",
+ "namedLocationTypeCountry": "国家/地区",
+ "namedLocationTypeLabel": "使用以下内容定义位置:",
+ "namedLocationUpsellBanner": "此视图已弃用。转到新的和改进的“已命名位置”视图。",
+ "namedLocationsHelpDescription": "Azure AD 安全报告使用命名位置来减少误报和 Azure AD 条件访问策略。\n[了解更多][1]\n[1]: https://aka.ms/namedlocationupdate",
+ "namedNetworkAddIpRanges": "添加新的 IP 范围(示例: 40.77.182.32/27)",
+ "namedNetworkCountryNeeded": "需至少选择一个国家/地区",
+ "namedNetworkDeleteCommand": "删除",
+ "namedNetworkDeleteDescription": "是否确实要删除“{0}”? 此操作无法撤消。",
+ "namedNetworkDeleteTitle": "是否确定?",
+ "namedNetworkDownloadIpRange": "下载",
+ "namedNetworkInvalidRange": "值必须是有效的 IP 范围。",
+ "namedNetworkIpRangeNeeded": "至少需要一个有效的 IP 范围",
+ "namedNetworkIpRangesDescriptionContent": "配置你组织的 IP 范围",
+ "namedNetworkIpRangesTab": "IP 范围",
+ "namedNetworkListAdd": "新建位置",
+ "namedNetworkListConfigureTrustedIps": "配置 MFA 受信任的 IP",
+ "namedNetworkNameDescription": "例如:“Redmond 办公室”",
+ "namedNetworkNameInvalid": "所提供的名称无效。",
+ "namedNetworkNameRequired": "必须为此位置提供名称。",
+ "namedNetworkNoIpRanges": "无 IP 范围",
+ "namedNetworkNotificationCreateDescription": "正在创建名为“{0}”的位置",
+ "namedNetworkNotificationCreateFailedDescription": "创建位置“{0}”失败。请稍后重试。",
+ "namedNetworkNotificationCreateFailedTitle": "未能创建位置",
+ "namedNetworkNotificationCreateSuccessDescription": "已创建的名为“{0}”的位置",
+ "namedNetworkNotificationCreateSuccessTitle": "已创建“{0}”",
+ "namedNetworkNotificationCreateTitle": "正在创建“{0}”",
+ "namedNetworkNotificationDeleteDescription": "正在删除名为“{0}”的位置",
+ "namedNetworkNotificationDeleteFailedDescription": "删除位置“{0}”失败。请稍后重试。",
+ "namedNetworkNotificationDeleteFailedTitle": "未能删除位置",
+ "namedNetworkNotificationDeleteSuccessDescription": "已删除的名为“{0}”的位置",
+ "namedNetworkNotificationDeleteSuccessTitle": "已删除“{0}”",
+ "namedNetworkNotificationDeleteTitle": "正在删除“{0}”",
+ "namedNetworkNotificationUpdateDescription": "正在更新名为“{0}”的位置",
+ "namedNetworkNotificationUpdateFailedDescription": "更新位置“{0}”失败。请稍后重试。",
+ "namedNetworkNotificationUpdateFailedTitle": "未能更新位置",
+ "namedNetworkNotificationUpdateSuccessDescription": "已更新的名为“{0}”的位置",
+ "namedNetworkNotificationUpdateSuccessTitle": "已更新“{0}”",
+ "namedNetworkNotificationUpdateTitle": "正在更新“{0}”",
+ "namedNetworkSearchPlaceholder": "搜索位置。",
+ "namedNetworkUploadFailedDescription": "分析提供的文件时出现错误。请确保上传纯文本文件且每行都为 CIDR 格式。",
+ "namedNetworkUploadFailedTitle": "未能分析“{0}”",
+ "namedNetworkUploadInProgressDescription": "尝试分析“{0}”中的有效 CIDR 值。",
+ "namedNetworkUploadInProgressTitle": "正在分析“{0}”",
+ "namedNetworkUploadInvalidDescription": "“{0}”过大或采用的格式无效。",
+ "namedNetworkUploadInvalidTitle": "“{0}”无效",
+ "namedNetworkUploadIpRange": "上载",
+ "namedNetworkUploadSuccessDescription": "已分析 {0} 行。{1} 行格式错误。跳过 {2} 行。",
+ "namedNetworkUploadSuccessTitle": "已完成分析“{0}”",
+ "namedNetworksAdd": "新命名位置",
+ "namedNetworksConditionHelpDescription": "根据用户的实际位置控制用户访问。\n[了解更多][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
+ "namedNetworksExcludeLabel": "{0},排除 {1} 项",
+ "namedNetworksHelpDescription": "Azure AD 安全报告使用命名位置来减少误报和 Azure AD 条件访问策略。\n[了解更多][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
+ "namedNetworksIncludeLabel": "{0} 已包含",
+ "namedNetworksNone": "找不到命名位置。",
+ "namedNetworksTitle": "配置位置",
+ "namednetworkExceedingSizeErrorBladeTitle": "错误详细信息",
+ "namednetworkExceedingSizeErrorDetailText": "单击此处获取更多详细信息。",
+ "namednetworkExceedingSizeErrorMessage": "已超出命名位置所允许的最大存储空间。请使用更短的列表重试。单击此处以查看详细信息。",
+ "needMfaSecondary": "选择“每次登录频率”和“仅辅助身份验证方法”时,必须选择“需要多重身份验证”",
+ "newCertName": "新证书",
+ "noAttributePermissionsError": "权限不足,无法创建或更新策略。添加/编辑动态筛选器需要属性定义读者角色。",
+ "noPolicyRowMessage": "无策略",
+ "noSPSelected": "未选择任何服务主体",
+ "noUpdatePermissionMessage": "你无权更新这些设置。请联系你的全局管理员以获取访问权限。",
+ "noUserSelected": "未选择用户",
+ "noneRisk": "无风险",
+ "office365Description": "这些应用包括 Microsoft Flow、Microsoft Forms、Microsoft Teams、Office 365 Exchange Online、Office 365 SharePoint Online、Office 365 Yammer 和其他应用。",
+ "office365InfoBox": "所选应用中至少有一个应用是 Office 365 的一部分。建议改为在 Office 365 应用上设置策略。",
+ "oneUserSelected": "已选择 1 个用户",
+ "onlyGlobalAdminsCanSaveThisPolicyConfig": "仅全局管理员可保存此策略。",
+ "or": "{0} 或 {1}",
+ "pickerDoneCommand": "完成",
+ "policiesBladeAdPremiumUpsellBannerText": "借助 Azure AD Premium 创建自己的策略,并面向云应用、登录风险和设备平台等特定条件",
+ "policiesBladeTitle": "策略",
+ "policiesBladeTitleWithAppName": "策略: {0}",
+ "policiesDisabledBannerText": "禁止对具有链接登录属性的应用程序创建和编辑策略。",
+ "policiesHitMaxLimitStatusBarMessage": "你已达到此租户的策略数上限。请先删除一些策略,再创建其他策略。",
+ "policyAssignmentsSection": "分配",
+ "policyBlockAllInfoBox": "配置的策略将阻止所有用户,因此不受支持。查看分配和控件。如果要保存此策略,请排除当前用户 {0}。",
+ "policyCloudAppsDisplayTextAllApp": "所有应用",
+ "policyCloudAppsLabel": "云应用",
+ "policyConditionClientAppDescription": "用户用于访问云应用的软件。例如,“浏览器”",
+ "policyConditionClientAppV2Description": "用户用于访问云应用的软件。例如,“浏览器”",
+ "policyConditionDevicePlatform": "设备平台",
+ "policyConditionDevicePlatformDescription": "用户从其登录的平台。例如 \"iOS\"",
+ "policyConditionLocation": "位置",
+ "policyConditionLocationDescription": "用户从其登录的位置(使用 IP 地址范围确定)",
+ "policyConditionSigninRisk": "登录风险",
+ "policyConditionSigninRiskDescription": "除用户本人之外的其他人登录的可能性。风险级别可为高、中或低。需要 Azure AD Premium 2 许可证。",
+ "policyConditionUserRisk": "用户风险",
+ "policyConditionUserRiskDescription": "配置强制执行策略所需的用户风险级别",
+ "policyConditioniClientApp": "客户端应用",
+ "policyConditioniClientAppV2": "客户端应用(预览版)",
+ "policyControlAllowAccessDisplayedName": "授予访问权限",
+ "policyControlAuthenticationStrengthDisplayedName": "需要身份验证强度(预览版)",
+ "policyControlBladeTitle": "授权",
+ "policyControlBlockAccessDisplayedName": "阻止访问",
+ "policyControlCompliantDeviceDisplayedName": "需要标记为兼容的设备",
+ "policyControlContentDescription": "控制访问强制以阻止或授予访问权限。",
+ "policyControlInfoBallonText": "阻止访问或选择允许访问需要满足的其他要求",
+ "policyControlMfaChallengeDisplayedName": "要求多重身份验证",
+ "policyControlRequireCompliantAppDisplayedName": "需要应用保护策略",
+ "policyControlRequireDomainJoinedDisplayedName": "需要已建立混合 Azure AD 联接的设备",
+ "policyControlRequireMamDisplayedName": "需要核准的客户端应用",
+ "policyControlRequiredPasswordChangeDisplayedName": "需要密码更改",
+ "policyControlSelectAuthStrength": "需要身份验证强度",
+ "policyControlsNoControlsSelected": "已选择 0 个控件",
+ "policyControlsSection": "访问控制",
+ "policyCreatBladeTitle": "新建",
+ "policyCreateButton": "创建",
+ "policyCreateFailedMessage": "错误: {0}",
+ "policyCreateFailedTitle": "未能创建“{0}”",
+ "policyCreateInProgressTitle": "正在创建“{0}”",
+ "policyCreateSuccessMessage": "已成功创建“{0}”。如果将“启用策略”设置为“开启”,策略将在几分钟后启用。",
+ "policyCreateSuccessTitle": "已成功创建“{0}”",
+ "policyDeleteConfirmation": "是否确实要删除“{0}”? 此操作无法撤消。",
+ "policyDeleteFailTitle": "未能删除“{0}”",
+ "policyDeleteInProgressTitle": "正在删除“{0}”",
+ "policyDeleteSuccessTitle": "已成功删除“{0}”",
+ "policyEnforceLabel": "启用策略",
+ "policyErrorCannotSetSigninRisk": "你没有权限保存具有登录风险条件的策略。",
+ "policyErrorNoPermission": "无权保存策略。请联系全局管理员。",
+ "policyErrorUnknown": "出现问题,请稍后重试。",
+ "policyFallbackWarningMessage": "无法使用 MS Graph 创建或更新“{0}”,这导致回退到 AD Graph。请调查以下场景,因为在不兼容条件下调用 MS Graph 的策略终结点时很可能存在 Bug。",
+ "policyFallbackWarningTitle": "创建或更新“{0}”部分成功",
+ "policyNameCannotBeEmpty": "策略名称不能为空",
+ "policyNameDevice": "设备策略",
+ "policyNameFormat": "[{0}] {1}",
+ "policyNameMam": "移动应用管理策略",
+ "policyNameMfaLocation": "MFA 和位置策略",
+ "policyNamePlaceholderText": "示例:“设备合规性应用策略”",
+ "policyNameTooLongError": "策略名称过长。不得超过 256 个字符",
+ "policyOff": "关闭",
+ "policyOn": "打开",
+ "policyReportOnly": "仅报告",
+ "policyReviewSection": "审阅",
+ "policySaveButton": "保存",
+ "policyStatusIconDescription": "已启用策略",
+ "policyStatusIconEnabled": "“已启用”状态图标",
+ "policyTemplateName1": "对 {0} 浏览器访问使用应用强制实施的限制",
+ "policyTemplateName2": "仅在托管设备上允许 {0} 访问",
+ "policyTemplateName3": "从“连续访问评估”设置迁移的策略",
+ "policyTriggerRiskSpecific": "选择特定的风险级别",
+ "policyTriggersInfoBalloonText": "定义将应用策略的条件。例如,“位置”",
+ "policyTriggersNoConditionsSelected": "已选择 0 个条件",
+ "policyTriggersSelectorLabel": "条件",
+ "policyUpdateFailedMessage": "错误: {0}",
+ "policyUpdateFailedTitle": "未能更新 {0}",
+ "policyUpdateInProgressTitle": "正在更新 {0}",
+ "policyUpdateSuccessMessage": "已成功更新 {0}。如果将“启用策略”设置为“开启”,策略将在几分钟后启用。",
+ "policyUpdateSuccessTitle": "已成功更新 {0}",
+ "primaryCol": "主",
+ "privateLinkLabel": "Azure AD 专用链接",
+ "reportOnlyInfoBox": "仅报告模式:在登录时评估和记录策略,但不会影响用户。",
+ "requireAllControlsText": "需要所有已选控件",
+ "requireCompliantDevice": "需要兼容设备",
+ "requireDomainJoined": "需要加入域的设备",
+ "requireGrantReauth": "在已选择“所有云应用”时,“每次登录频率”会话控制要求“需要多重身份验证“或“需要密码更改”授权控制",
+ "requireMFA": "需要多重身份验证",
+ "requireMfaReauth": "“每次登录频率”会话控制需要针对“登录风险”的“需要多重身份验证”授权控制",
+ "requireOneControlText": "需要某一已选控件",
+ "requirePasswordChangeReauth": "“每次登录频率”会话控制需要针对“用户风险”的“需要密码更改”授权控制",
+ "requireRiskReauth": "在已选择“所有云应用”时,“每次登录频率”会话控制要求“用户风险”或“登录风险”会话控制。",
+ "resetFilters": "重置筛选器",
+ "sPRequired": "需要服务主体",
+ "sPSelectorInfoBalloon": "要测试的用户或服务主体",
+ "saturday": "星期六",
+ "searchTextTooLongError": "搜索文本太长。最多只能包含 256 个字符",
+ "securityDefaultsPolicyName": "安全默认值",
+ "securityDefaultsTextMessage": "必须禁用安全默认值才能启用条件访问策略。",
+ "securityDefaultsWarningMessage": "看起来你即将管理组织的安全配置。真棒! 必须先禁用安全默认值,然后才能启用条件访问策略。",
+ "selectDevicePlatforms": "选择设备平台",
+ "selectNamedNetworksSubtitle": "",
+ "selectNamedNetworksTitle": "选择位置",
+ "selectedSP": "所选服务主体",
+ "servicePrincipalDataGridAria": "可用服务主体列表",
+ "servicePrincipalDropDownLabel": "此策略适用于哪些内容?",
+ "servicePrincipalInfoBox": "由于在策略分配中选择了“{0}”,部分条件不可用",
+ "servicePrincipalRadioAll": "所有拥有的服务主体",
+ "servicePrincipalRadioSelect": "选择服务主体",
+ "servicePrincipalSelectionsAria": "所选服务主体网格",
+ "servicePrincipalSelectorAria": "所选服务主体的列表",
+ "servicePrincipalSelectorMultiple": "{0} 已选服务主体",
+ "servicePrincipalSelectorSingle": "已选择 1 个服务主体",
+ "servicePrincipalSpecificInc": "包括的特定服务主体",
+ "servicePrincipals": "服务主体",
+ "sessionControlBladeTitle": "会话",
+ "sessionControlDescriptionContent": "根据会话控制来控制访问,以在特定的云应用程序中启用有限体验。",
+ "sessionControlDisableInfo": "此控件仅适用于支持的应用。目前支持应用强制实施限制的云应用只有 Office 365、Exchange Online 和 SharePoint Online。单击此处了解详细信息。",
+ "sessionControlInfoBallonText": "可通过会话控件在云应用中获取有限体验。",
+ "sessionControls": "会话控件",
+ "sessionControlsAppEnforcedLabel": "使用应用强制实施的限制",
+ "sessionControlsCasLabel": "使用条件访问应用控制",
+ "sessionControlsSecureSignInLabel": "需要令牌绑定",
+ "sharepointAppName": "SharePoint",
+ "signinRiskDescription": "选择适用于此策略的登录风险级别",
+ "signinRiskInclude": "包含 {0} 项",
+ "signinRiskReauth": "选择“需要多重身份验证”授权和“每次登录频率”会话控件时,必须选择“登录风险”条件",
+ "signinRiskTriggerDescriptionContent": "选择登录风险级别",
+ "singleTenantServicePrincipalInfoBallonText": "策略仅适用于贵组织所拥有的单个租户服务主体。单击此处了解详细信息",
+ "specificSigninRiskLevelsOption": "选择特定登录风险级别",
+ "specificUsersExcluded": "排除的特定用户",
+ "specificUsersIncluded": "包括的特定用户",
+ "specificUsersIncludedAndExcluded": "已排除和已添加特定用户",
+ "startDatePickerLabel": "开始",
+ "startFreeTrial": "启动免费试用版",
+ "startTimePickerLabel": "开始时间",
+ "sunday": "星期天",
+ "testButton": "What If",
+ "thumbprintCol": "指纹",
+ "thursday": "星期四",
+ "timeConditionAllTimesLabel": "任何时间",
+ "timeConditionIntroText": "配置将应用此策略的时间",
+ "timeConditionSelectorInfoBallonContent": "用户登录期间。例如,“星期三上午 9 点 - 下午 5 点太平洋标准时间”",
+ "timeConditionSelectorLabel": "时间(预览版)",
+ "timeConditionSpecificLabel": "特定时间",
+ "timeSelectorAllTimesText": "任何时间",
+ "timeSelectorSpecificTimesText": "配置的特定时间",
+ "timeZoneDropdownInfoBalloonContent": "选择定义时间范围的时区。此策略将应用于所有时区的用户。例如,对于某用户为“星期三上午 9 点 - 下午 5 点”,而对于另一时区中的用户可能为“星期三上午 10 点 - 下午 6 点”。",
+ "timeZoneDropdownLabel": "时区",
+ "timeZoneDropdownPlaceholderText": "选择时区",
+ "tooManyPoliciesDescription": "现在仅显示前 50 条策略,请单击此处查看所有策略",
+ "tooManyPoliciesTitle": "找到超过 50 条策略",
+ "trustedLocationStatusIconDescription": "可信位置",
+ "trustedLocationStatusIconEnabled": "受信任状态图标",
+ "tuesday": "星期二",
+ "uploadInBadState": "无法上传指定的文件。",
+ "upsellAppsDescription": "始终需要对敏感应用程序进行多重身份验证,或者仅从公司网络外部使用时才需要。",
+ "upsellAppsTitle": "安全应用程序",
+ "upsellBannerText": "获取免费的 Premium 试用版以使用此功能",
+ "upsellDataDescription": "设备需要标记为符合或已建立混合 Azure AD 联接才能访问公司资源。",
+ "upsellDataTitle": "安全数据",
+ "upsellDescription": "条件访问提供了保护公司数据安全所需的控制和保护,同时允许员工从任何设备最有效地完成工作。例如,可以限制公司网络之外的访问,或限制访问符合合规性策略的设备。",
+ "upsellRiskDescription": "需要对 Microsoft 机器学习系统检测到的风险事件进行多重身份验证。",
+ "upsellRiskTitle": "防范风险",
+ "upsellTitle": "条件访问",
+ "upsellWhyTitle": "为什么要使用条件访问?",
+ "userAppNoneOption": "无",
+ "userNamePlaceholderText": "输入用户名",
+ "userNotSetSeletorLabel": "已选择 0 个用户和组",
+ "userOnlySelectionBladeExcludeDescription": "选择要从策略中排除的用户",
+ "userOrGroupSelectionCountDiffBannerText": "已从目录中删除此策略中配置的 {0},但此操作不会影响此策略中的其他用户和组。下次更新策略时,将自动移除已删除的用户和/或组。",
+ "userOrSPNotSetSelectorLabel": "已选择 0 个用户或工作负载标识",
+ "userOrSPSelectionBladeTitle": "用户或工作负载标识",
+ "userOrSPSelectorInfoBallonText": "应用策略的目录中的标识,包括用户、组和服务主体",
+ "userRequired": "所需的用户",
+ "userRiskErrorBox": "选择“需要更改密码”授权时,必须选择“用户风险”条件",
+ "userRiskReauth": "选择“需要密码更改”授权和“每次登录频率”会话控件时,必须选择“用户风险”条件,而不是“登录风险”",
+ "userSPRequired": "需要用户或服务主体",
+ "userSPSelectorTitle": "用户或工作负载标识",
+ "userSelectionBladeAllUsersAndGroups": "所有用户和组",
+ "userSelectionBladeExcludeDescription": "选择从策略中排除的用户和组",
+ "userSelectionBladeExcludeTabTitle": "排除",
+ "userSelectionBladeExcludedSelectorTitle": "选择排除的用户",
+ "userSelectionBladeIncludeDescription": "选择将应用此策略的用户",
+ "userSelectionBladeIncludeTabTitle": "包括",
+ "userSelectionBladeIncludedSelectorTitle": "选择",
+ "userSelectionBladeSelectUsers": "选择用户",
+ "userSelectionBladeSelectedUsers": "选择用户和组",
+ "userSelectionBladeTitle": "用户和组",
+ "userSelectorBladeTitle": "用户",
+ "userSelectorExcluded": "{0} 已排除",
+ "userSelectorGroupPlural": "{0} 组",
+ "userSelectorGroupSingular": "1 个组",
+ "userSelectorIncluded": "{0} 已包含",
+ "userSelectorInfoBallonText": "应用策略的目录中的用户和组。例如,“试点组”",
+ "userSelectorSelected": "已选择 {0}",
+ "userSelectorTitle": "用户",
+ "userSelectorUserAndGroup": "{0},{1}",
+ "userSelectorUserPlural": "{0} 个用户",
+ "userSelectorUserSingular": "1 个用户",
+ "userSelectorWithExclusion": "{0} 和 {1}",
+ "usersGroupsLabel": "用户和组",
+ "viewApprovedAppsText": "请参阅核准客户端应用的列表",
+ "viewCompliantAppsText": "请参阅受策略保护的客户端应用",
+ "vpnBladeTitle": "VPN 连接",
+ "vpnCertCreateFailedMessage": "错误: {0}",
+ "vpnCertCreateFailedTitle": "无法创建 {0}",
+ "vpnCertCreateInProgressTitle": "正在创建 {0}",
+ "vpnCertCreateSuccessMessage": "已成功创建 {0}。",
+ "vpnCertCreateSuccessTitle": "已成功创建 {0}",
+ "vpnCertNoRowsMessage": "未找到任何 VPN 证书",
+ "vpnCertUpdateFailedMessage": "错误: {0}",
+ "vpnCertUpdateFailedTitle": "未能更新 {0}",
+ "vpnCertUpdateInProgressTitle": "正在更新 {0}",
+ "vpnCertUpdateSuccessMessage": "已成功更新 {0}。",
+ "vpnCertUpdateSuccessTitle": "已成功更新 {0}",
+ "vpnFeatureInfo": "有关 VPN 连接和条件访问的详细信息,请单击此处。",
+ "vpnFeatureWarning": "在 Azure 门户中创建 VPN 证书后,Azure AD 将立即开始使用它来向 VPN 客户端颁发短生存期的证书。请务必将 VPN 证书立即部署到 VPN 服务器,以避免任何与 VPN 客户端凭据验证有关的问题,这一点非常重要。",
+ "vpnMenuText": "VPN 连接",
+ "vpncertDropdownDefaultOption": "持续时间",
+ "vpncertDropdownInfoBalloonContent": "为要创建的证书选择持续时间",
+ "vpncertDropdownLabel": "选择持续时间",
+ "vpncertDropdownOneyearOption": "1 年",
+ "vpncertDropdownThreeyearOption": "3 年",
+ "vpncertDropdownTwoyearOption": "2 年",
+ "wednesday": "星期三",
+ "whatIfAppEnforcedControl": "使用应用强制实施的限制",
+ "whatIfBladeDescription": "测试在某些情况下进行登录时条件访问对用户的影响。",
+ "whatIfBladeTitle": "What If",
+ "whatIfClassicPoliciesWarning": "此工具不评估经典策略。",
+ "whatIfClientAppInfo": "用户用于签名的客户端应用。例如“浏览器”。",
+ "whatIfCountry": "国家/地区",
+ "whatIfCountryInfo": "用户登录时所处的国家/地区。",
+ "whatIfDevicePlatformInfo": "用户正在从其登录的设备平台。",
+ "whatIfDeviceStateInfo": "用户登录时的设备状态",
+ "whatIfEnterIpAddress": "输入 IP 地址(示例: 40.77.182.32)",
+ "whatIfErrorInvalidIpAddress": "指定了无效的 IP 地址。",
+ "whatIfEvaResultApplication": "云应用",
+ "whatIfEvaResultClientApps": "客户端应用",
+ "whatIfEvaResultDevicePlatform": "设备平台",
+ "whatIfEvaResultEmptyPolicy": "策略为空",
+ "whatIfEvaResultInvalidCondition": "条件无效",
+ "whatIfEvaResultInvalidPolicy": "策略无效",
+ "whatIfEvaResultLocation": "位置",
+ "whatIfEvaResultNotEnoughInformation": "信息不足",
+ "whatIfEvaResultPolicyNotEnabled": "未启用策略",
+ "whatIfEvaResultSignInRisk": "登录风险",
+ "whatIfEvaResultUsers": "用户和组",
+ "whatIfIpAddress": "IP 地址",
+ "whatIfIpAddressInfo": "用户正在从其登录的 IP 地址。",
+ "whatIfIpCountryInfoBoxText": "如果使用 IP 地址或国家/地区,则这两个字段将是必需字段,且应正确映射在一起。",
+ "whatIfPolicyAppliesTab": "将应用的策略",
+ "whatIfPolicyDoesNotApplyTab": "不应用的策略",
+ "whatIfReasons": "不应用此策略的原因",
+ "whatIfSelectClientApp": "选择客户端应用...",
+ "whatIfSelectCountry": "选择国家/地区...",
+ "whatIfSelectDevicePlatform": "选择设备平台...",
+ "whatIfSelectPrivateLink": "选择专用链接...",
+ "whatIfSelectServicePrincipalRisk": "选择服务主体风险...",
+ "whatIfSelectSignInRisk": "选择登录风险...",
+ "whatIfSelectType": "选择标识类型",
+ "whatIfSelectUserRisk": "选择用户风险...",
+ "whatIfServicePrincipalRiskInfo": "与服务主体关联的风险级别",
+ "whatIfSignInRisk": "登录风险",
+ "whatIfSignInRiskInfo": "登录相关风险级别",
+ "whatIfUnknownAreas": "未知区域",
+ "whatIfUserPickerLabel": "所选用户",
+ "whatIfUserPickerNoRowsLabel": "未选择任何用户或服务主体",
+ "whatIfUserRiskInfo": "与用户关联的风险级别",
+ "whatIfUserSelectorInfo": "要测试的目录中的用户",
+ "windows365InfoBox": "选择 Windows 365 将影响与云电脑和 Azure 虚拟桌面会话主机的连接。单击此处以了解详细信息。",
+ "windowsDisplayName": "Windows",
+ "windowsPhoneDisplayName": "Windows Phone",
+ "workloadIdentities": "工作负载标识(预览)",
+ "workloadIdentity": "工作负载标识"
+ },
+ "AppResources": {
+ "AppSettingsUx": {
+ "assignmentFilterColumnHeader": "筛选器",
+ "assignmentFilterTypeColumnHeader": "筛选器模式",
+ "assignmentToast": "最终用户通知",
+ "assignmentTypeTableHeader": "分配类型",
+ "deadlineTimeColumnLabel": "安装截止时间",
+ "deliveryOptimizationPriorityHeader": "传递优化优先级",
+ "groupTableHeader": "组",
+ "installContextLabel": "安装上下文",
+ "isRemovable": "安装为可移动项",
+ "licenseTypeLabel": "许可证类型",
+ "modeTableHeader": "组模式",
+ "policySet": "策略集",
+ "restartGracePeriodHeader": "重启宽限期",
+ "startTimeColumnLabel": "可用性",
+ "tracks": "跟踪",
+ "uninstallOnRemoval": "删除设备时卸载",
+ "updateMode": "更新优先级",
+ "vPN": "VPN"
+ },
+ "AppType": {
+ "aADWebApp": "AAD Web 应用",
+ "androidEnterpriseSystemApp": "Android Enterprise 系统应用",
+ "androidForWorkApp": "托管的 Google Play 商店应用",
+ "androidLobApp": "Android 业务线应用",
+ "androidStoreApp": "Android 应用商店应用",
+ "builtInAndroid": "内置的 Android 应用",
+ "builtInApp": "内置的应用",
+ "builtInIos": "内置的 iOS 应用",
+ "iosLobApp": "iOS 业务线应用",
+ "iosStoreApp": "iOS 应用商店应用",
+ "iosVppApp": "iOS Volume Purchase Program 应用",
+ "lineOfBusinessApp": "业务线应用",
+ "macOSDmgApp": "macOS 应用(DMG)",
+ "macOSEdgeApp": "Microsoft Edge (macOS)",
+ "macOSLobApp": "macOS 业务线应用",
+ "macOSMdatpApp": "Microsoft Defender ATP (macOS)",
+ "macOSOfficeSuiteApp": "macOS Office 套件",
+ "macOsVppApp": "macOS Volume Purchase Program 应用",
+ "managedAndroidLobApp": "托管 Android 业务线应用",
+ "managedAndroidStoreApp": "托管 Android 应用商店应用",
+ "managedGooglePlayApp": "托管的 Google Play 商店应用",
+ "managedGooglePlayPrivateApp": "托管的 Google Play 专用应用",
+ "managedGooglePlayWebApp": "托管 Google Play Web 链接",
+ "managedIosLobApp": "托管 iOS 业务线应用",
+ "managedIosStoreApp": "托管 iOS 应用商店应用",
+ "microsoftStoreForBusinessApp": "适用于企业的 Microsoft 应用商店应用",
+ "microsoftStoreForBusinessReleaseManagedApp": "适用于企业的 Microsoft Store",
+ "officeAddIn": "Office 加载项",
+ "officeSuiteApp": "Microsoft 365 应用版(Windows 10 及更高版本)",
+ "sharePointApp": "SharePoint 应用",
+ "teamsApp": "Teams 应用",
+ "webApp": "Web 链接",
+ "windowsAppXLobApp": "Windows AppX 业务线应用",
+ "windowsClassicApp": "Windows 应用(Win32)",
+ "windowsEdgeApp": "Microsoft Edge (Windows 10及更高版本)",
+ "windowsMobileMsiLobApp": "Windows MSI 业务线应用",
+ "windowsPhone81AppXBundleLobApp": "Windows Phone 8.1 AppX 业务线应用",
+ "windowsPhone81AppXLobApp": "Windows Phone 8.1 AppX 业务线应用",
+ "windowsPhone81StoreApp": "Windows Phone 8.1 应用商店应用",
+ "windowsPhoneXapLobApp": "Windows Phone XAP 业务线应用",
+ "windowsStoreApp": "Microsoft Store 应用",
+ "windowsUniversalAppXLobApp": "Windows Universal AppX 业务线应用",
+ "windowsUniversalLobApp": "Windows 通用业务线应用"
+ },
+ "AppTypePlatform": {
+ "android": "Android",
+ "ios": "iOS",
+ "macOs": "macOS",
+ "web": "Web",
+ "windows": "Windows"
+ },
+ "AssignmentAction": {
+ "exclude": "已排除",
+ "include": "已包含",
+ "includeAllDevicesVirtualGroup": "已包含",
+ "includeAllUsersVirtualGroup": "已包含"
+ },
+ "AssignmentToast": {
+ "hideAll": "隐藏所有 Toast 通知",
+ "showAll": "显示所有 Toast 通知",
+ "showReboot": "显示计算机重启的 Toast 通知"
+ },
+ "DeliveryOptimizationPriority": {
+ "backgroundNormal": "背景",
+ "displayText": "{0} 中的内容下载",
+ "foreground": "前景",
+ "header": "传递优化优先级"
+ },
+ "DeviceRestartBehaviorOptions": {
+ "allow": "应用安装可能会强制重启设备",
+ "basedOnReturnCode": "根据返回代码确定行为",
+ "force": "Intune 将强制重启设备",
+ "suppress": "无特定操作"
+ },
+ "FilterType": {
+ "exclude": "排除",
+ "include": "包括",
+ "none": "无"
+ },
+ "InstallIntent": {
+ "available": "可用于已注册的设备",
+ "availableWithoutEnrollment": "不论是否注册均可使用",
+ "notApplicable": "不适用",
+ "required": "必需",
+ "uninstall": "卸载"
+ },
+ "SettingType": {
+ "assignmentType": "分配类型",
+ "deviceLicensing": "许可证类型",
+ "installContext": "删除设备时卸载",
+ "toastSettings": "最终用户通知",
+ "vpnConfiguration": "VPN"
+ },
+ "UpdateMode": {
+ "default": "默认",
+ "postponed": "推迟",
+ "priority": "高优先级"
+ }
+ },
+ "WindowsEnrollment": {
+ "coManagementAuthorityDesc": "为 Configuration Manager 集成配置共同管理设置",
+ "coManagementAuthorityTitle": "共同管理设置",
+ "deploymentProfiles": "Windows AutoPilot Deployment 配置文件",
+ "description": "了解用户或管理员向 Intune 注册 Windows 10/11 电脑的七种不同方法。",
+ "descriptionLabel": "Windows 注册方法",
+ "enrollmentStatusPage": "注册状态页"
+ },
+ "Win32Program": {
+ "DeviceRestartBehaviorOptions": {
+ "allow": "应用安装可能会强制重启设备",
+ "basedOnReturnCode": "根据返回代码确定行为",
+ "force": "Intune 将强制重启设备",
+ "suppress": "无特定操作"
+ },
+ "RunAsAccountOptions": {
+ "system": "系统",
+ "user": "用户"
+ },
+ "bladeTitle": "程序",
+ "deviceRestartBehavior": "设备重新启动行为",
+ "deviceRestartBehaviorTooltip": "选择成功安装应用后的设备重启行为。选择“根据返回代码确定行为”,以根据返回代码配置设置重启设备。选择“无特定操作”,以抑制基于 MSI 的应用在应用安装期间重启设备。选择“应用安装可强制重启设备”,以允许应用安装不抑制重启而直接完成。选择“Intune 将强制重启设备”,以便始终在成功安装应用后重启设备。",
+ "header": "指定用于安装和卸载此应用的命令:",
+ "installCommand": "安装命令",
+ "installCommandMaxLengthErrorMessage": "安装命令不能超过 1024 个字符的最大允许长度。",
+ "installCommandTooltip": "用于安装此应用的完整安装命令行。",
+ "runAs32Bit": "在 64 位客户端上的 32 位进程中运行安装和卸载命令",
+ "runAs32BitTooltip": "选择“是”以在 64 位客户端上的 32 位进程中安装和卸载应用。选择“否”(默认)以在 64 位客户端上的 64 位进程中安装和卸载应用。32 位客户端将始终使用 32 位进程。",
+ "runAsAccount": "安装行为",
+ "runAsAccountTooltip": "如果支持,请选择“系统”为所有用户安装此应用。选择“用户”为设备上的登录用户安装此应用。对于双用途 MSI 应用,值会在恢复原始安装时应用于设备,在此之前,更改将导致更新和卸载无法成功完成。",
+ "selectorLabel": "程序",
+ "uninstallCommand": "卸载命令",
+ "uninstallCommandTooltip": "用于卸载此应用的完整卸载命令行。"
+ },
+ "CategoryDescription": {
+ "androidGeneralApplicationRestrictions": "利用这些设置实时跟进哪些用户安装了公司未批准使用的应用。选择受限应用列表的类型:
\r\n 禁止的应用 - 你希望在用户安装此类应用时收到通知的应用的列表。
\r\n 批准的应用 - 公司批准使用的应用的列表。当用户安装非此列表内的应用时,你将收到通知。
\r\n",
+ "androidZebraMxZebraMx": "通过按 XML 格式上传 MX 配置文件来配置 Zebra 设备。",
+ "iosDeviceFeaturesAirprint": "使用这些设置将 iOS 设备配置为自动连接到网络上的兼容 AirPrint 打印机。需打印机的 IP 地址和资源路径。",
+ "iosDeviceFeaturesExtensibleSingleSignOn": "配置应用扩展,该扩展可为运行 iOS 13.0 或更高版本的设备启用单一登录(SSO)。",
+ "iosDeviceFeaturesHomeScreenLayout": "配置 iOS 设备上停靠屏幕和主屏幕的布局。某些设备可能对显示项的数量有限制。",
+ "iosDeviceFeaturesIOSWallpaper": "显示将在 iOS 设备的主屏幕和/或锁屏界面上显示的图像。\r\n 要在每个位置显示唯一的图像,请分别使用锁屏界面图像和主屏幕图像创建一个配置文件。\r\n 然后将这两个配置文件分配给用户。\r\n
\r\n \r\n - 最大文件大小: 750 KB
\r\n - 文件类型: PNG、JPG 或 JPEG
\r\n
\r\n",
+ "iosDeviceFeaturesNotifications": "指定应用的通知设定。支持 iOS 9.3 及更高版本。",
+ "iosDeviceFeaturesSharedDevice": "指定在锁定屏幕上显示的可选文本。在 iOS 9.3 及更高版本中受支持。了解详细信息",
+ "iosGeneralApplicationRestrictions": "利用这些设置实时跟进哪些用户安装了公司未批准使用的应用。选择受限应用列表的类型:
\r\n 禁止的应用 - 你希望在用户安装此类应用时收到通知的应用的列表。
\r\n 批准的应用 - 公司批准使用的应用的列表。当用户安装非此列表内的应用时,你将收到通知。
\r\n",
+ "iosGeneralApplicationVisibility": "使用显示应用列表指定用户可以查看或启动的 iOS 应用。使用隐藏应用列表指定用户无法查看或启动的 iOS 应用。",
+ "iosGeneralAutonomousSingleAppMode": "你添加到此列表并分配给设备的应用可以锁定设备,以便启动后仅运行该应用;或在某个操作正在运行时(例如正在测试时)锁定设备。操作完成后或删除限制后,设备将恢复其正常状态。",
+ "iosGeneralKiosk": "展台模式可将各种设置锁定到设备中,或指定可在设备上运行的单个应用。这在诸如零售商店等你希望设备只运行一个演示应用的环境中很有用。",
+ "macDeviceFeaturesAirprint": "使用这些设置来配置 macOS 设备以自动连接到网络上兼容 AirPrint 的打印机。需要打印机的 IP 地址和资源路径。",
+ "macDeviceFeaturesAssociatedDomains": "配置关联的域以共享组织的应用和网站之间的数据和登录凭据。此配置文件可应用于运行 macOS 10.15 或更高版本的设备。",
+ "macDeviceFeaturesExtensibleSingleSignOn": "配置应用扩展,该扩展可为运行 macOS 10.15 或更高版本的设备启用单一登录(SSO)。",
+ "macDeviceFeaturesLoginItems": "选择用户登录到其设备时打开的应用、文件和文件夹。如果不希望用户更改所选应用的打开方式,可在用户配置中隐藏应用。",
+ "macDeviceFeaturesLoginWindow": "配置 macOS 登录屏幕的外观以及要在用户登录前后提供给用户的功能。",
+ "macExtensionsKernelExtensions": "使用这些设置在运行 10.13.2 或更高版本的 macOS 设备上配置内核扩展策略。",
+ "macGeneralDomains": "用户发送或接收的电子邮件如果不匹配在此处指定的域,将标记为不受信任。",
+ "windows10EndpointProtectionApplicationGuard": "使用 Microsoft Edge 时,Microsoft Defender 应用程序防护会隔绝你的环境与你的组织尚未定义为受信任的站点。当用户访问你的独立网络边界中未列出的站点时,将通过 Hyper-V 在虚拟浏览会话中打开该站点。受信任的站点由网络边界定义,可在设备配置中对其进行配置。请注意,此功能仅适用于运行 64 位 Windows 10 或更高版本的设备。",
+ "windows10EndpointProtectionCredentialGuard": "启用 Credential Guard 将启用以下所需设置:\r\n
\r\n \r\n - 启用基于虚拟化的安全: 在下一次重启时打开基于虚拟化的安全 (VBS)。基于虚拟化的安全使用 Windows 虚拟机监控程序为安全服务提供支持。
\r\n
\r\n - 通过直接内存访问安全启动: 通过安全启动和直接内存访问 (DMA) 打开 VBS。
\r\n
\r\n ",
+ "windows10EndpointProtectionDeviceGuard": "选择需要由 Microsoft Defender 应用程序控制策略审核或能够由该策略信任运行的其他应用。将自动信任 Windows 组件和来自 Windows 应用商店的所有应用
\r\n在“仅审核”模式下运行时,应用程序不受阻止。“仅审核”模式将在本地客户端日志中记录所有事件。\r\n",
+ "windows10GeneralPrivacyPerApp": "添加应用,该应用的隐私行为不同于“默认隐私”中定义的内容。",
+ "windows10NetworkBoundaryNetworkBoundary": "网络边界是企业资源(如云托管的域和企业网络上的计算机的 IP 地址范围)的列表。定义网络边界,以应用策略来保护驻留在这些位置的数据。",
+ "windowsHealthMonitoring": "配置 Windows 运行状况监视策略。",
+ "windowsPhoneGeneralApplicationRestrictions": "Windows Phone 可阻止用户安装或启动已禁止的应用列表中指定的应用(或已批准的应用列表中未指定的应用)。必须将所有托管应用添加到已批准列表。"
+ },
"Inputs": {
"accountDomain": "帐户域",
"accountDomainHint": "例如 contosodomain",
@@ -9962,6 +9858,7 @@
"displayNameLabel": "名称",
"displayVersionHint": "输入应用版本",
"displayVersionLabel": "应用版本",
+ "displayVersionLengthCheck": "显示版本的长度应最多为 130 个字符",
"eBookCategoryNameLabel": "默认名称",
"emailAccount": "电子邮件帐户名称",
"emailAccountHint": "例如企业电子邮件",
@@ -10066,385 +9963,51 @@
"xmlFormatInvalid": "XML 策略格式无效。",
"xmlTooLarge": "输入的大小必须小于 1 MB。"
},
- "Tooltips": {
- "PolicySettings": {
- "TouchId1": {
- "android": "在 Android 上,可允许使用指纹识别代替 PIN。用户使用其工作帐户范恩此应用时,将提示他们提供指纹。",
- "iOS": "在 iOS/iPadOS 设备上,你可以允许使用指纹标识而非 PIN。当用户使用其工作帐户访问该应用时,将提示他们提供其指纹。",
- "mac": "在 Mac 设备上,可以允许使用指纹标识代替 PIN。当用户使用其工作帐户访问此应用时,将提示他们提供其指纹。"
- },
- "appSharingFromLevel1": "选择以下选项之一,指定此应用可从哪些应用接收数据:",
- "appSharingFromLevel2": "{0}: 只允许接收来自其他策略托管应用的组织文档或帐户中的数据",
- "appSharingFromLevel3": "{0}: 允许接收来自任何应用的组织文档或帐户中的数据",
- "appSharingFromLevel4": "{0}: 不允许接收来自任何应用的组织文档或帐户中的数据",
- "appSharingFromLevel5": "{0}: 允许来自任意应用的数据传输,并将没有用户标识的所有传入数据视为组织数据。",
- "appSharingToLevel1": "选择以下选项之一,指定此应用可将数据发送到哪些应用:",
- "appSharingToLevel2": "{0}: 只允许向其他策略托管应用发送组织数据",
- "appSharingToLevel3": "{0}: 允许向任何应用发送组织数据",
- "appSharingToLevel4": "{0}: 不允许向任何应用发送组织数据",
- "appSharingToLevel5": "{0}: 仅允许到其他策略托管应用的传输,以及到注册设备上的其他 MDM 托管应用的文件传输",
- "appSharingToLevel6": "{0}: 允许仅传输到其他策略托管应用并筛选 OS“打开方式/共享”对话框以仅显示策略托管应用",
- "conditionalEncryption1": "选择 {0},以便在注册设备上检测到设备加密时禁用内部应用存储的应用加密。",
- "conditionalEncryption2": "注意: Intune 只能检测使用 Intune MDM 的设备注册。外部应用存储仍将处于加密状态,以确保非托管应用程序无法访问数据。",
- "contactSyncMac": "如果禁用,应用无法将联系人保存到本机通讯簿。",
- "contactsSync": "选择阻止防止策略托管应用将数据保存到设备的本机应用(如联系人、日历、小组件),或阻止在策略托管应用中使用外接程序。如果选择允许,如果这些功能在策略托管应用中受支持并启用,则策略托管应用可以将数据保存到本机应用或使用外接程序。
应用可能会通过应用配置策略提供其他配置功能。有关详细信息,请参阅应用的文档。",
- "encryptionAndroid1": "对于与 Intune 移动应用程序管理策略相关联的应用,Microsoft 提供加密。在文件 I/O 操作期间,按照移动应用程序管理策略中的设置对数据进行同步加密。Android 上的托管应用使用 CBC 模式中的 AES-128 加密,该加密利用平台加密库。该加密方法不符合 FIPS 140-2。SHA-256 作为使用 SigAlg 参数的显式指令受到支持,且仅在 4.2 及以上的设备上起作用。设备存储空间中的内容始终是加密的。",
- "encryptionAndroid2": "当你在应用策略中要求加密时,将要求最终用户设置并使用 PIN 以访问他们的设备。如果未设置用于访问设备的 PIN,应用将不会启动,而最终用户将看到一条消息,内容是“你的公司要求你首先必须启用设备 PIN 才能访问此应用程序”。",
- "encryptionMac1": "对于与 Intune 移动应用程序管理策略相关联的应用,Microsoft 提供加密。在文件 I/O 操作期间,按照移动应用程序管理策略中的设置对数据进行同步加密。Mac 上的托管应用使用 CBC 模式中的 AES-128 加密,该加密利用平台加密库。该加密方法不符合 FIPS 140-2。SHA-256 作为使用 SigAlg 参数的显式指令受到支持,且仅在 4.2 及以上的设备上起作用。设备存储空间中的内容始终是加密的。",
- "faceId1": "如果适用,可以允许使用人脸识别,而不是使用 PIN。用户使用其工作帐户访问此应用时,系统会提示他们提供人脸识别。",
- "faceId2": "选择“是”允许使用人脸识别(而不是使用 PIN)访问应用。",
- "managementLevelsAndroid1": "使用此选项指定将此策略应用于 Android 设备管理员设备、Android Enterprise 设备还是非托管设备。",
- "managementLevelsAndroid2": "{0}: 非托管设备是未检测到 Intune MDM 管理的设备,包括第三方 MDM 供应商。",
- "managementLevelsAndroid3": "{0}: 使用 Android 设备管理 API 的 Intune 托管设备。",
- "managementLevelsAndroid4": "{0}: 使用 Android Enterprise 工作配置文件或 Android Enterprise 完全设备管理的 Intune 托管设备。",
- "managementLevelsIos1": "使用此选项指定将此策略应用于 MDM 托管设备还是非托管设备。",
- "managementLevelsIos2": "{0}: 非托管设备是未检测到 Intune MDM 管理的设备,包括第三方 MDM 供应商。",
- "managementLevelsIos3": "{0}: 托管设备由 Intune MDM 管理。",
- "minAppVersion": "定义用户安全访问应用应具有的必需的最低应用版本号。",
- "minAppVersionWarning": "定义用户安全访问应用应具有的建议的最低应用版本号。",
- "minOsVersion": "定义用户安全访问应用应具有的必需的最低 OS 版本号。",
- "minOsVersionWarning": "定义用户安全访问应用应具有的建议的最低 OS 版本号。",
- "minPatchVersion": "定义用户获取应用的安全访问权限时可以具有的最低必需 Android 安全修补程序级别。",
- "minPatchVersionWarning": "定义用户获取应用的安全访问权限时可以具有的最低推荐 Android 安全修补程序级别。",
- "minSdkVersion": "定义用户安全访问应用必需的最低 Intune 应用程序保护策略 SDK 版本。",
- "requireAppPinDefault": "在已注册的设备上检测到设备锁定时,选择“是”可禁用应用 PIN。
",
- "targetAllApps1": "使用此选项将策略定位到处于任何管理状态的设备上的应用。",
- "targetAllApps2": "在策略冲突解决期间,如果用户具有针对特定管理状态的策略,则此设置将被取代。",
- "touchId2": "选择 {0} 以要求使用指纹标识而非 PIN 来访问应用。"
- },
- "Tap": {
- "pinResetAfterNumberOfDays": "指定用户在必须重设 PIN 前必须经过多少天。",
- "previousPinBlockCount": "此设置指定 Intune 将保留的曾用 PIN 个数。任何新 PIN 都必须与 Intune 保留的 PIN 不同。"
+ "WindowsFeatureUpdate": {
+ "EndOFSupportStatus": {
+ "notSupported": "不受支持",
+ "supportEnding": "支持结束",
+ "supported": "受支持"
+ }
},
- "WipPolicySettings": {
- "25": "",
- "allowWindowsSearch": "这将允许 Windows Search 继续搜索加密数据。",
- "authoritativeIpRanges": "如果要替代 Windows 自动检测 IP 范围,请启用此设置。",
- "authoritativeProxyServers": "如果要替代 Windows 自动检测代理服务器,请启用此设置。",
- "checkInput": "检查输入的有效性",
- "dataRecoveryCert": "恢复证书是一种特殊的加密文件系统(EFS)证书,可用于在加密密钥丢失或损坏时恢复加密文件。你需要创建恢复证书,并在此处指定它。有关详细信息,请参阅此处",
- "enterpriseCloudResources": "指定被视为公司数据且受到 Windows 信息保护策略保护的云资源。可用 \"|\" 字符分隔各项来指定多个资源。
如果你的公司配置了代理,则可指定该代理,用于传送你指定的云资源。
URL[,Proxy]|URL[,Proxy]
无代理: contoso.sharepoint.com|contoso.visualstudio.com
有代理: contoso.sharepoint.com,proxy.contoso.com|contoso.visualstudio.com,proxy.contoso.com
",
- "enterpriseIPv4Ranges": "指定组成公司网络的 IPv4 范围。此范围可与你指定的企业网络域名结合使用,共同定义公司网络界限。
必须指定此设置才能启用 Windows 信息保护。
可用逗号分隔各项来指定多个范围。
例如: 3.4.0.1-3.4.255.255,192.168.1.1-192.168.255.255
",
- "enterpriseIPv6Ranges": "指定组成公司网络的 IPv6 范围。此范围可与你指定的企业网络域名结合使用,共同定义公司网络界限。
可用逗号分隔各项来指定多个范围。
例如: 2001:4898:dc05::-2001:4898:dc05:ffff:ffff:ffff:ffff:ffff,2a01:110::-2a01:110:7fff:ffff:ffff:ffff:ffff:ffff
",
- "enterpriseInternalProxyServers": "如果你的公司配置了代理,则可指定该代理,用于传送你在企业云资源设置中指定的云资源。
可用分号分隔各项来指定多个值。
例如: contoso.internalproxy1.com;contoso.internalproxy2.com
",
- "enterpriseNetworkDomainNames": "指定组成公司网络的 DNS 名称。这些名称可与你指定的 IP 范围结合使用,共同定义公司网络界限。可用逗号分隔各项来指定多个值。
必须指定此设置才能启用 Windows 信息保护。
例如: corp.contoso.com,region.contoso.com
",
- "enterpriseProtectedDomainNames": "指定构成公司网络的 DNS 名称。DNS 名称与指定用于定义公司网络边界的 IP 范围配合使用。通过使用 \"|\" 分隔各条目来指定多个值。
需要此设置来启用 Windows 信息保护。
例如: corp.contoso.com|region.contoso.com
",
- "enterpriseProxyServers": "如果你的公司网络中有面向外部的代理,请在此处指定它们。指定代理服务器地址时,还应指定端口,流量允许通过此端口且受到 Windows 信息保护的保护。
注意: 此列表不得包括企业内部代理服务器列表中的服务器。可用分号分隔各项来指定多个值。
例如: proxy.contoso.com:80;proxy2.contoso.com:80
",
- "maxInactivityTime1": "指定设备空闲后,导致设备锁定 PIN 或密码前允许的最长时间(以分钟为单位)。用户可以在“设置”应用中选择小于指定最大时间的任何现有超时值。注意,无论此策略设置的值为多少,Lumia 950 和 950XL 的最大超时值都为 5 分钟。",
- "maxInactivityTime2": "0(默认值) - 未定义超时。默认值 \"0\" 是值“未定义超时。”",
- "maxPasswordAttempts1": "此策略在移动设备和桌面上具有不同的行为。",
- "maxPasswordAttempts2": "在移动设备上,当用户达到此策略设置的值时,设备将被擦除。",
- "maxPasswordAttempts3": "在桌面上,当用户达到此策略设置的值时,设备不会被擦除。而是会将桌面置于 BitLocker 恢复模式,使数据不可访问,但可恢复。如果未启用 BitLocker,则无法执行此策略。",
- "maxPasswordAttempts4": "在达到失败的尝试限制之前,会将用户发送到锁屏界面,并警告用户更多的失败尝试将锁定其计算机。当用户达到限制时,设备将自动重新启动并显示 BitLocker 恢复页面。此页面提示用户输入 BitLocker 恢复密钥。",
- "maxPasswordAttempts5": "0(默认值) - 输入不正确的 PIN 或密码后,设备不会被擦除。",
- "maxPasswordAttempts6": "如果所有策略值都等于 0,则最安全的值为 0;否则,最小策略值就是最安全的值。",
- "mdmDiscoveryUrl": "指定注册到 MDM 的用户将使用的 MDM 注册终结点 URL。默认情况下,为 Intune 指定此值。",
- "minimumPinLength1": "整数值,用于设置 PIN 所需的最小字符数。默认值为 4。可为此策略设置配置的最小数字为 4。可配置的最大数字必须小于最大 PIN 长度策略设置中配置的数字或小于 127 (以较小者为准)。",
- "minimumPinLength2": "如果配置此策略设置,则 PIN 长度必须大于或等于此数字。如果禁用或不配置此策略设置,则 PIN 长度必须大于或等于 4。",
- "name": "此网络边界的名称",
- "neutralResources": "如果你的公司中有身份验证重定向终结点,请在此处指定它们。此处指定的位置将被视为个人位置或公司位置,具体取决于重定向之前的连接的上下文。
可用逗号分隔各项来指定多个值。
例如: sts.contoso.com,sts.contoso2.com
",
- "passportForWork1": "将 Windows Hello 企业版设置为登录 Windows 的方法的值。",
- "passportForWork2": "默认值为 True。如果将此策略设置为 False,则用户无法预配 Windows Hello 企业版,但可在加入 Azure Active Directory 且要求预配的手机上预配。",
- "pinExpiration": "可为此策略设置配置的最大数字为 730。可为此策略设置配置的最小数字为 0。如果此策略设置为 0,则用户的 PIN 永不会过期。",
- "pinHistory1": "可为此策略设置配置的最大数字为 50。可为此策略设置配置的最小数字为 0。如果此策略设置为 0,则不需要存储以前的 PIN。",
- "pinHistory2": "用户的当前 PIN 包括在与用户帐户相关联的一组 PIN 中。PIN 重置不会保留 PIN 历史记录。",
- "protectUnderLock": "在设备处于锁定状态时保护应用内容。",
- "protectionModeBlock": "阻止: 阻止企业数据离开受保护的应用。
",
- "protectionModeOff": "关闭: 用户可以自由重定位受保护应用的数据。不会记录任何操作。
",
- "protectionModeOverride": "允许覆盖: 尝试将数据从受保护的应用重定位到未受保护的应用时,用户会收到提示。如果他们选择覆盖此提示,则将记录此操作。
",
- "protectionModeSilent": "无提示: 用户可以自由重定位受保护应用的数据。将记录这些操作。
",
- "required": "需要",
- "revokeOnMdmHandoff": "于 Windows 10 版本 1703 中添加。此策略控制是否在设备从 MAM 升级到 MDM 时撤销 WIP 密钥。如果设置为“关”,则将撤销密钥,且用户在升级后可继续访问受保护文件。如果 MDM 服务是使用与 MAM 服务相同的 WIP EnterpriseID 配置的,则建议此设置。",
- "revokeOnUnenroll": "这将导致在设备取消注册此策略时撤销加密密钥。",
- "rmsTemplateForEdp": "用于 RMS 加密的 TemplateID GUID。Azure RMS 模板使 IT 管理员可以配置谁有权访问受 RMS 保护的文件以及他们有权访问的时长是多久。",
- "showWipIcon": "这将通过覆盖图标让用户知道他们何时在企业环境中操作。",
- "useRmsForWip": "指定是否允许对 WIP 进行 Azure RMS 加密。"
+ "SecurityTemplate": {
+ "aSR": "攻击面减少",
+ "accountProtection": "帐户保护",
+ "allDevices": "所有设备",
+ "antivirus": "防病毒",
+ "antivirusReporting": "防病毒报告(预览)",
+ "conditionalAccess": "条件访问",
+ "deviceCompliance": "设备合规性",
+ "diskEncryption": "磁盘加密",
+ "eDR": "终结点检测和响应",
+ "firewall": "防火墙",
+ "helpSupport": "帮助和支持",
+ "setup": "安装",
+ "wdapt": "Microsoft Defender for Endpoint"
+ },
+ "Win32ReturnCodes": {
+ "CodeTypes": {
+ "failed": "失败",
+ "hardReboot": "硬重新启动",
+ "retry": "重试",
+ "softReboot": "软重新启动",
+ "success": "成功"
},
- "requireAppPin": "在已注册的设备上检测到设备锁定时,选择“是”可禁用应用 PIN。
注意: Intune 不能使用 iOS/iPadOS 上的第三方 EMM 解决方案检测设备的注册情况。
"
- },
- "AppInfoBalloonText": {
- "Certificate": {
- "customSubjectName": "CN={{UserName}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US\r\nor\r\nCN={{AAD_Device_ID}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US",
- "keySize": "选择密钥中包含的位数。",
- "keyUsage": "指定交换证书的公钥所需的加密操作。",
- "renewalThreshold": "输入设备可以请求续订证书之前允许的剩余证书有效期的百分比(介于 1% 和 99% 之间)。Intune 中的推荐量为 20%。(1-99)",
- "rootCert": "选择先前配置和分配的根 CA 证书配置文件。CA 证书必须与为此配置文件(当前正在配置的配置文件)颁发证书的 CA 的根证书相匹配。",
- "scepServerUrl": "输入通过 SCEP 颁发证书的 NDES 服务器的 URL (必须为 HTTPS),例如 https://contoso.com/certsrv/mscep/mscep.dll",
- "scepServerUrls": "为通过 SCEP 颁发证书的 NDES 服务器添加一个或多个 URL (必须为 HTTPS),例如 https://contoso.com/certsrv/mscep/mscep.dll",
- "subjectAlternativeName": "使用者可选名称",
- "subjectNameFormat": "使用者名称格式",
- "validityPeriod": "证书到期前的剩余时间量。输入一个等于或低于证书模板中显示的有效期的值。默认设置为一年。"
- },
- "appInstallContext": "此设置指定要与此应用相关联的安装上下文。对于双模式应用,请选择此应用所需的上下文。对于所有其他应用,此设置基于应用包预先选择,无法修改。",
- "autoUpdateMode": "配置应用的更新优先级。选择“默认”以要求设备连接到 WiFi、充电,且在更新应用之前不得主动使用。选择“高优先级”可在开发人员发布应用后立即更新应用,无论设备充电状态、WiFi 功能或最终用户活动如何。高度优先级只会对 DO 设备生效。",
- "configurationSettingsFormat": "配置设置格式文本",
- "ignoreVersionDetection": "对于要由应用开发商自动更新的应用(例如 Google Chrome),请将此设置为 \"Yes\"。",
- "ignoreVersionDetectionMacOSLobApp": "若应用由应用开发者自动更新或者若在安装前仅检查有无应用捆绑 iD,请选择“是”。若在安装前检查有无应用捆绑 ID 和版本号,请选择“否”。",
- "installAsManagedMacOSLobApp": "此设置仅适用于 macOS 11 及更高版本。将安装此应用,但不在 macOS 10.15 及更低版本上管理它。",
- "installContextDropdown": "选择恰当的安装上下文。用户上下文将仅为目标用户安装应用,设备上下文将为设备上的所有用户安装应用。",
- "ldapUrl": "这是客户端可由其获取电子邮件收件人公共加密密钥的 LDAP 主机名。当密钥可用时,将加密电子邮件。支持的格式: - ldap.example.com
\r\n- ldap.example.com:123
\r\n- ldap://ldap.example.com
- ldap://ldap.example.com:123
- ldaps://ldap.example.com
\r\n- ldaps://ldap.example.com:123
",
- "permissionsSettings": "选择关联应用的运行时权限。",
- "policyAssociatedApp": "选择此策略将与之关联的应用。",
- "policyConfigurationSettings": "选择要用于为此策略定义配置设置的方法。",
- "policyDescription": "或者,为此配置策略输入说明。",
- "policyEnrollmentType": "选择这些设置是否通过设备管理或使用 Intune SDK 生成的应用管理。",
- "policyName": "为此配置策略输入名称。",
- "policyPlatform": "选择此应用配置策略将应用到其中的平台。",
- "policyProfileType": "选择此应用配置文件将应用到的设备配置文件类型",
- "policySMime": "配置 Outlook 的 S/MIME 签名和加密设置。",
- "sMimeDeployCertsFromIntune": "指定是否将从 Intune 发送 S/MIME 证书以用于 Outlook。\r\nIntune 可以通过公司门户将签名和加密证书自动部署到用户。",
- "sMimeEnable": "指定是否要在撰写电子邮件时启用 S/MIME 控件",
- "sMimeEnableAllowChange": "指定是否允许用户更改“启用 S/MIME”设置。",
- "sMimeEncryptAllEmails": "指定是否必须加密所有电子邮件。\r\n通过加密,可将数据转换为码文本,以便只有预期收件人可阅读该数据。",
- "sMimeEncryptAllEmailsAllowChange": "指定是否允许用户更改“加密所有电子邮件”设置。",
- "sMimeEncryptionCertProfile": "指定用于电子邮件加密的证书配置文件。",
- "sMimeSignAllEmails": "指定必须签名所有电子邮件。\r\n数字签名验证电子邮件的真伪,确保内容在传输过程中没有被篡改。",
- "sMimeSignAllEmailsAllowChange": "指定是否允许用户更改“对所有电子邮件签名”设置。",
- "sMimeSigningCertProfile": "指定用于电子邮件签名的证书配置文件。",
- "sMimeUserNotificationType": "用于通知用户他们必须打开公司门户以检索 Outlook 的 S/MIME 证书的方法。"
- },
- "WindowsQualityUpdateDaysUntilForcedReboot": {
- "oneDay": "1 天",
- "twoDays": "2 天",
- "zeroDays": "0 天"
- },
- "Autopilot": {
- "AssignResourceAccount": {
- "createNewCommandMenu": "新建",
- "createNewResourceAccountInfo": "\r\n在注册过程中创建新的资源帐户。资源帐户会立即添加到资源帐户表中,但在注册设备以及验证 Surface Hub 订阅之前,帐户不会处于活动状态。详细了解资源帐户
\r\n",
- "createNewResourceTitle": "新建资源帐户",
- "deviceNameInvalid": "设备名称格式无效",
- "deviceNameRequired": "设备名称是必需的",
- "editResourceAccountLabel": "编辑",
- "selectExistingCommandMenu": "选择现有"
- },
- "Device": {
- "ComputerName": {
- "validFormat": "名称必须使用 15 个或更少字符,并且只能包含字母(a 到 z、A 到 Z)、数字(0-9)和连字符。名称不能仅包含数字。名称不能包含空格。"
- },
- "Header": {
- "addressableUserName": "用户易记名称",
- "azureADDevice": "关联的 Azure AD 设备",
- "batch": "组标记",
- "dateAssigned": "分配日期",
- "deviceDisplayName": "设备名",
- "deviceName": "设备名",
- "deviceUseType": "设备使用类型",
- "enrollmentState": "注册状态",
- "intuneDevice": "关联的 Intune 设备",
- "lastContacted": "上次联系",
- "make": "制造商",
- "model": "模型",
- "profile": "分配的配置文件",
- "profileStatus": "配置文件状态",
- "purchaseOrderId": "采购订单",
- "resourceAccount": "资源帐户",
- "serialNumber": "序列号",
- "userPrincipalName": "用户"
- }
- },
- "DeviceUseType": {
- "meetingAndPresentation": "会议和演示文稿",
- "teamCollaboration": "团队协作"
- },
- "Devices": {
- "featureDescription": "Windows Autopilot 可以自定义用户的全新安装体验(OOBE)。",
- "importErrorStatus": "未导入某些设备。请单击此处查看详细信息。",
- "importPendingStatus": "正在导入。运行时间: {0} 分钟。此过程可能需要最多 {1} 分钟。"
- },
- "DirectoryService": {
- "activeDirectoryAD": "已建立混合 Azure AD 联接",
- "activeDirectoryADLabel": "混合 Azure AD 宽度 Autopilot",
- "azureAD": "已联接 Azure AD",
- "unknownType": "未知类型"
- },
- "Filter": {
- "enrollmentState": "状态",
- "profile": "配置文件状态"
- },
- "OOBE": {
- "AddressableUserName": {
- "validateEmpty": "用户友好名称不能为空。"
- },
- "ApplyComputerNameTemplate": {
- "infoBalloon": "创建命名模板以在注册过程中将名称添加到设备。",
- "label": "应用设备名模板"
- },
- "ApplyComputerNameTemplateDisabled": {
- "label": "对于已建立混合 Azure AD 联接类型的 AutoPilot 部署配置文件,使用在域加入配置中指定的设置命名设备。"
- },
- "ComputerNameTemplate": {
- "emptyValue": "MyCompany-%RAND:4%",
- "label": "输入名称",
- "noDisallowedChars": "名称只能包含字母数字字符、连字符、%SERIAL% 或 %RAND:x%",
- "serialLength": "不能将 7 个以上的字符用于 %SERIAL%",
- "validateLessThan15Chars": "名称必须为 15 个或更少字符",
- "validateNoSpaces": "计算机名不能包含空格",
- "validateNotAllNumbers": "名称还必须包含字母和/或连字符",
- "validateNotEmpty": "名称不能为空",
- "validateOnlyOneMacro": "名称只能包含 %SERIAL% 或 %RAND:x% 中的一个"
- },
- "ConfigureComputerNameTemplate": {
- "description": "为设备创建唯一名称。名称长度不得超过 15 个字符,并且只能包含字母(a 到 z、A 到 Z)、数字(0-9)和连字符。名称不能仅包含数字。名称不能包含空白。可使用 %SERIAL% 宏添加特定于硬件的序列号。此外,还可使用 %RAND:x% 宏添加随机数字字符串,其中 x 等于要添加的位数。"
- },
- "EnableWhiteGlove": {
- "infoBalloon": "允许按 Windows 键 5 次以运行 OOBE,无需用户身份验证即可注册设备并预配所有系统上下文应用和设置。用户上下文应用和设置将在用户登录时交付。",
- "label": "允许预配的部署"
- },
- "HybridAzureADSkipConnectivityCheck": {
- "infoBalloon": "即使 Autopilot Hybrid Azure AD 联接流没有在 OOBE 期间建立域控制器连接,它也会继续。",
- "label": "跳过 AD 连接检查(预览)"
- },
- "accountType": "用户帐户类型",
- "accountTypeInfo": "指定用户是设备上的管理员还是标准用户。请注意,此设置不适用于全局管理员帐户或公司管理员帐户。因为这些帐户可以访问 Azure AD 中的所有管理功能,所以它们不能为标准用户。",
- "configOOBEInfo": "\r\n配置 Autopilot 设备的即装即用体验\r\n
",
- "configureDevice": "部署模式",
- "configureDeviceHintForSurfaceHub2": "Autopilot 仅支持 Surface Hub 2 的自部署模式。此模式不会将用户与已注册的设备关联,因此它不需要用户凭据。",
- "configureDeviceHintForWindowsPC": "\r\n 部署节点控制用户是否需要提供凭据来预配设备。\r\n
\r\n \r\n - \r\n 用户驱动: 设备与注册设备的用户关联并且需要提供用户凭据来预配设备\r\n
\r\n - \r\n 自助部署(预览): 设备与注册设备的用户未关联并且不需要提供用户凭据即可预配设备\r\n
\r\n
",
- "createSurfaceHub2Info": "为 Surface Hub 2 设备配置 Autopilot 注册设置。Autopilot 默认启用在 OOBE 期间跳过用户身份验证的操作。详细了解 Windows Autopilot for Surface Hub 2。",
- "createWindowsPCInfo": "\r\n\r\n已为处于自部署模式下的 Autopilot 设备自动启用以下选项:\r\n
\r\n\r\n - \r\n 跳过“工作”或“家庭”使用选项\r\n
\r\n - \r\n 跳过 OEM 注册和 OneDrive 配置\r\n
\r\n - \r\n 跳过 OOBE 中的用户身份验证\r\n
\r\n
",
- "endUserDevice": "用户驱动",
- "hideEscapeLink": "隐藏更改帐户选项",
- "hideEscapeLinkInfo": "初始化设备设置期间,公司登录页面和域错误页面上分别显示的更改帐户选项和使用其他帐户重新开始选项。若要隐藏这些选项,必须在 Azure Active Directory 中配置公司品牌(需要 Windows 10 1809 或更高版本或者 Windows 11)。",
- "info": "第一次启动 Windows 时,AutoPilot 配置文件设置将定义用户看到的全新安装体验。",
- "language": "语言(地区)",
- "languageInfo": "指定将使用的语言和区域。",
- "licenseAgreement": "Microsoft 软件许可条款",
- "licenseAgreementInfo": "指定是否向用户显示 EULA。",
- "plugAndForgetDevice": "自助部署(预览)",
- "plugAndForgetGA": "正在自部署",
- "privacySettingWarning": "已针对运行 Windows 10 版本 1903 及更高版本或 Windows 11 的设备更改诊断数据收集的默认值。",
- "privacySettings": "隐私设置",
- "privacySettingsInfo": "指定是否要向用户显示隐私设置。",
- "showCortanaConfigurationPage": "Cortana 配置",
- "showCortanaConfigurationPageInfo": "如果显示,将在启动过程中启用 Cortana 配置引入。",
- "skipEULAWarning": "有关隐藏许可条款的重要信息",
- "skipKeyboardSelection": "自动配置键盘",
- "skipKeyboardSelectionInfo": "如果为 true,并且已设置语言,则会跳过键盘选择页。",
- "subtitle": "AutoPilot 配置文件",
- "title": "即装即用体验 (OOBE)",
- "useOSDefaultLanguage": "默认操作系统",
- "userSelect": "用户选择"
- },
- "Sync": {
- "lastRequestedLabel": "最后一个同步请求",
- "lastSuccessfulLabel": "上次成功同步",
- "syncInProgress": "同步正在进行中。请稍后再次查看。",
- "syncInitiated": "AutoPilot 设置同步已启动。",
- "syncSettingsTitle": "同步 AutoPilot 设置"
- },
- "Title": {
- "devices": "Windows AutoPilot 设备"
- },
- "Tooltips": {
- "addressableUserName": "设备设置期间显示的问候语。",
- "azureADDevice": "转到关联设备的设备详细信息。N/A 是指没有关联的设备。",
- "batch": "可用于标识一组设备的字符串属性。Intune 的组标记字段映射到 Azure AD 设备上的 OrderID 属性。",
- "dateAssigned": "向设备分配配置文件时的时间戳。",
- "deviceDisplayName": "为设备配置唯一的名称。在已建立混合 Azure AD 联接的部署中,此名称将被忽略。设备名称仍来自混合 Azure AD 设备的域加入配置文件。",
- "deviceName": "有人尝试发现并连接到设备时显示的名称。",
- "deviceUseType": " 设备将根据所选项进行设置。可以随时在“设置”中进行更改。\r\n \r\n - 对于会议和演示文稿,不会打开 Windows Hello,并且在每个会话后都会删除数据。\r\n
\r\n - 对于团队协作,将会打开 Windows Hello,并保存配置文件以供快速登录
\r\n
",
- "enrollmentState": "指定设备是否已注册。",
- "intuneDevice": "转到关联设备的设备详细信息。N/A 是指没有关联的设备。",
- "lastContacted": "上次联系设备时的时间戳。",
- "make": "所选设备的制造商。",
- "model": "所选设备的型号",
- "profile": "分配给设备的配置文件的名称。",
- "profileStatus": "指定是否向设备分配配置文件。",
- "purchaseOrderId": "采购订单 ID",
- "resourceAccount": "设备的标识,或用户主体名称(UPN)。",
- "serialNumber": "所选设备的序列号。",
- "userPrincipalName": "设备设置期间要预填充身份验证的用户。"
- },
- "allDevices": "所有设备",
- "allDevicesAlreadyAssignedError": "Autopilot 配置文件已分配给所有设备。",
- "assignFailedDescription": "未能更新 {0} 的分配。",
- "assignFailedTitle": "未能更新 AutoPilot 配置文件分配。",
- "assignSuccessDescription": "已成功更新 {0} 的分配。",
- "assignSuccessTitle": "已成功更新 Autopilot 配置文件分配。",
- "assignSufaceHub2ProfileNextStep": "此部署的后续步骤",
- "assignSurfaceHub2ProfileToDeviceGroup": "1. 将此配置文件分配给至少一个设备组",
- "assignSurfaceHub2ProfileToResourceAccount": "2. 将资源帐户分配到每个向其部署此配置文件的 Surface Hub 设备",
- "assignedDevicesCount": "已分配的设备",
- "assignedDevicesResourceAccountDescription": "要将此配置文件部署到设备,必须为设备分配资源帐户。一次选择一个设备以分配现有资源帐户或创建新的帐户。详细了解资源帐户
",
- "assignedDevicesResourceAccountStatusBarMessage": "此表仅列出已分配此配置文件的 Surface Hub 2 设备。",
- "assigningDescription": "正在更新 {0} 的分配。",
- "assigningTitle": "正在更新 Autopilot 配置文件分配。",
- "cannotDeleteMessage": "此配置文件分配到组。必须先将所有组从此配置文件取消分配,然后才能删除它。",
- "cannotDeleteTitle": "无法删除 {0}",
- "createdDateTime": "创建时间",
- "deleteMessage": "如果删除此 AutoPilot 配置文件,则分配给此配置文件的任何设备都将显示为“未分配”。",
- "deleteMessageWithPolicySet": "{0} 包含在一个或多个策略集中。如果删除 {0},将无法再通过这些策略集分配它。",
- "deleteTitle": "是否确实要删除此配置文件?",
- "description": "说明",
- "deviceType": "设备类型",
- "deviceUse": "设备使用",
- "directoryServiceHintForSurfaceHub2": " \r\n Autopilot 仅支持 Surface Hub 2 设备的 Azure AD 加入。指定组织中的设备加入 Active Directory (AD) 的方式。\r\n
\r\n \r\n - \r\n Azure AD 加入: 仅限云,不使用本地 Windows Server Active Directory。\r\n
\r\n
\r\n ",
- "directoryServiceHintForWindowsPC": "\r\n \r\n 指定设备如何加入组织中的 Active Directory (AD):\r\n
\r\n \r\n - \r\n 已加入 Azure AD: 仅限没有本地 Windows Server Active Directory 的云\r\n
\r\n
\r\n ",
- "getAssignedDevicesCountError": "提取已分配设备计数时出现错误。",
- "getAssignmentsError": "提取 Autopilot 配置文件分配时出错。",
- "harvestDeviceId": "将所有目标设备转换为 Autopilot 设备",
- "harvestDeviceIdDescription": "默认情况下,此配置文件只能应用于通过 Autopilot 服务同步的 Autopilot 设备。",
- "harvestDeviceIdInfo": "\r\n 选择“是”可向 Autopilot 注册所有目标设备(如何尚未注册)。下一次已注册设备完成 Windows 开箱体验(OOBE)时,这些设备将完成分配的 Autopilot 方案。\r\n
\r\n 请注意,某些 Autopilot 方案需要特定的最低 Windows 版本。请确保设备具有所需的最低版本以完成该方案。\r\n
\r\n 删除此配置文件不会从 Autopilot 删除受影响的设备。要从 Autopilot 中删除设备,请使用 Windows Autopilot 设备视图。\r\n ",
- "harvestDeviceIdWarning": "转换后,只能通过从 Autopilot 设备列表中删除 Autopilot 设备来使其回复原状。",
- "holoLensCommandMenu": "HoloLens",
- "info": "Windows Autopilot 部署配置文件可用于为设备自定义全新安装体验。",
- "invalidProfileNameMessage": "不允许使用字符“{0}”",
- "joinTypeLabel": "以此身份加入 Azure AD",
- "lastModifiedDateTime": "上次修改时间:",
- "name": "名称",
- "noAutopilotProfile": "没有 AutoPilot 配置文件",
- "notEnoughPermissionAssignedError": "你的权限不够,无法将此配置文件分配到所选的一个或多个组。请与管理员联系。",
- "profile": "配置文件",
- "resourceAccountStatusBarMessage": "部署了此配置文件的每个 Surface Hub 2 设备都需要资源帐户。单击以了解详细信息。",
- "selectServices": "选择设备将加入的目录服务",
- "surfaceHub2CommandMenu": "Surface Hub 2",
- "surfaceHub2SCommandMenu": "Surface Hub 2S",
- "userAffinityLabel": "部署模式",
- "windowsPCCommandMenu": "Windows 电脑",
- "directoryServiceLabel": "加入 Azure AD 的类型"
- },
- "AppInformationTab": {
- "Error": {
- "multipleChildApps": "macOS LOB 应用只有在上传的包中包含一个应用时才能安装为托管应用。"
- },
- "Info": {
- "AppStoreUrl": {
- "android": "输入 Google Play 应用商店中的应用清单的链接。例如:",
- "androidLink": "https://play.google.com/store/apps/details?id=com.microsoft.office.outlook",
- "windows": "输入 Microsoft Store 中应用列表的链接。例如:",
- "windowsLink": "https://www.microsoft.com/en-us/p/microsoft-to-do-lists-tasks-reminders/9nblggh5r558"
- },
- "appPackageFile": "包含你的应用的文件,其格式可在设备上旁加载。有效的包类型包括: Android (.apk)、iOS (.ipa)、macOS (.intunemac)、Windows (.msi、.appx、.appxbundle、.msix 和 .msixbundle)",
- "applicableDeviceType": "选择可安装此应用的设备类型。",
- "category": "对应用进行分类,使用户能够更轻松地在公司门户中进行排序和查找。可选择多个类别。",
- "categoryLink": "https://docs.microsoft.com/en-us/intune/apps/apps-add#create-and-edit-categories-for-apps",
- "description": "帮助你的设备用户了解应用是什么和/或他们可在应用中执行哪些操作。此说明将在公司门户中显示。",
- "developer": "开发应用的公司或个人的名称。这些信息将对已登录管理中心的人员可见。",
- "displayVersion": "应用的版本。用户可在公司门户中查看此信息。",
- "infoUrl": "将人员关联到包含有关应用的详细信息的网站或文档。信息 URL 将对公司门户中的用户可见。",
- "isFeatured": "特别推荐的应用突出放置在公司门户中,以便用户能够快速访问它们。",
- "learnMore": "了解更多",
- "logo": "上传与应用关联的徽标。此徽标将显示在公司门户中的相应应用旁。",
- "macOSDmgAppPackageFile": "包含可在设备上旁加载格式的应用的文件。有效的包类型:.dmg。",
- "minOperatingSystem": "选择可安装应用的最低操作系统版本。如果向具有较早操作系统的设备分配应用,则不会安装该应用。",
- "name": "为应用添加名称。此名称将显示在 Intune 应用列表并对公司门户中的用户可见。",
- "notes": "添加有关应用的其他注释。注释将对登录到管理中心的人员可见。",
- "owner": "组织中管理许可的人员姓名或作为此应用的联系点的人员姓名。此姓名将对登录到管理中心的用户可见。",
- "packageName": "请与设备制造商联系以获取应用的包名称。示例包名称: com.example.app",
- "privacyUrl": "为想要详细了解应用的隐私设置和条款的用户提供链接。隐私 URL 将对公司门户中的用户可见。",
- "publisher": "分发应用的开发人员或公司的姓名/名称。用户将可在公司门户中查看此信息。",
- "selectApp": "在 App Store 中搜索要使用 Intune 部署的 iOS 应用商店应用。",
- "useManagedBrowser": "如果需要,用户打开 web 应用时,它将在受 Intune 保护的浏览器(如 Microsoft Edge 或 Intune Managed Browser)中打开。此设置适用于 iOS 和 Android 设备。",
- "useManagedBrowserLink": "https://docs.microsoft.com/en-us/intune/apps/app-configuration-managed-browser",
- "win32AppPackageFile": "包含你的应用的文件,其格式可在设备上旁加载。有效的包类型为: .intunewin。"
- },
- "descriptionPreview": "预览",
- "descriptionRequired": "说明是必需的。",
- "editDescription": "编辑说明",
- "name": "应用信息",
- "nameForOfficeSuitApp": "应用套件信息"
- },
+ "Columns": {
+ "codeType": "代码类型",
+ "returnCode": "返回代码"
+ },
+ "bladeTitle": "返回代码",
+ "gridAriaLabel": "返回代码",
+ "header": "指定返回代码以指示安装后行为:",
+ "onAddAnnounceMessage": "返回代码已添加 {0} 项(共 {1} 项)",
+ "onDeleteSuccess": "已成功删除返回代码 {0}",
+ "returnCodeAlreadyUsedValidation": "已使用返回代码。",
+ "returnCodeMustBeIntegerValidation": "返回代码应为整数。",
+ "returnCodeShouldBeAtLeast": "返回代码至少应为 {0}。",
+ "returnCodeShouldBeAtMost": "返回代码最多应为 {0}。",
+ "selectorLabel": "返回代码"
+ },
"NotificationMessage": {
"NotificationMessageTemplatesTab": {
"arabic": "阿拉伯语",
@@ -10516,84 +10079,599 @@
"localeLabel": "区域设置",
"isDefaultLocale": "为默认"
},
- "Win32Program": {
- "DeviceRestartBehaviorOptions": {
- "allow": "应用安装可能会强制重启设备",
- "basedOnReturnCode": "根据返回代码确定行为",
- "force": "Intune 将强制重启设备",
- "suppress": "无特定操作"
- },
- "RunAsAccountOptions": {
- "system": "系统",
- "user": "用户"
- },
- "bladeTitle": "程序",
- "deviceRestartBehavior": "设备重新启动行为",
- "deviceRestartBehaviorTooltip": "选择成功安装应用后的设备重启行为。选择“根据返回代码确定行为”,以根据返回代码配置设置重启设备。选择“无特定操作”,以抑制基于 MSI 的应用在应用安装期间重启设备。选择“应用安装可强制重启设备”,以允许应用安装不抑制重启而直接完成。选择“Intune 将强制重启设备”,以便始终在成功安装应用后重启设备。",
- "header": "指定用于安装和卸载此应用的命令:",
- "installCommand": "安装命令",
- "installCommandMaxLengthErrorMessage": "安装命令不能超过 1024 个字符的最大允许长度。",
- "installCommandTooltip": "用于安装此应用的完整安装命令行。",
- "runAs32Bit": "在 64 位客户端上的 32 位进程中运行安装和卸载命令",
- "runAs32BitTooltip": "选择“是”以在 64 位客户端上的 32 位进程中安装和卸载应用。选择“否”(默认)以在 64 位客户端上的 64 位进程中安装和卸载应用。32 位客户端将始终使用 32 位进程。",
- "runAsAccount": "安装行为",
- "runAsAccountTooltip": "如果支持,请选择“系统”为所有用户安装此应用。选择“用户”为设备上的登录用户安装此应用。对于双用途 MSI 应用,值会在恢复原始安装时应用于设备,在此之前,更改将导致更新和卸载无法成功完成。",
- "selectorLabel": "程序",
- "uninstallCommand": "卸载命令",
- "uninstallCommandTooltip": "用于卸载此应用的完整卸载命令行。"
- },
- "OutlookAppConfigSettings": {
- "AllowUserToChangeSetting": {
- "title": "允许用户更改设置",
- "tooltip": "指定是否允许用户更改设置。"
- },
- "AllowWorkAccounts": {
- "title": "仅允许工作或学校帐户",
- "tooltip": " 启用此设置,用户将无法在 Outlook 中添加个人电子邮件和存储帐户。如果用户已将个人帐户添加到 Outlook,则会提示其删除个人帐户。如果用户不删除个人帐户,则无法添加工作或学校帐户。"
- },
- "BlockExternalImages": {
- "title": "阻止外部图像",
- "tooltip": "启用阻止外部图像后,应用将阻止下载通过 Internet(嵌入在邮件正文中)托管的图像。如果设置为“未配置”,则默认应用设置设为“关”"
- },
- "ConfigureEmail": {
- "title": "配置电子邮件帐户设置"
- },
- "DefaultAppSignatureSetting": {
- "Tooltip": {
- "android": "默认应用签名指示应用是否要在消息撰写期间将“获取 Outlook for Android”用作默认签名。如果此设置配置为“关”,则不使用默认签名;但是,用户可添加自己的签名。\r\n\r\n当设置为“未配置”时,默认应用设置设为“开”。",
- "iOS": "默认应用签名指示应用是否要在消息撰写期间将“获取 Outlook for iOS”用作默认签名。如果此设置配置为“关”,则不使用默认签名;但是,用户可添加自己的签名。\r\n\r\n当设置为“未配置”时,默认应用设置设为“开”。"
- },
- "title": "默认应用签名"
- },
- "OfficeFeedReplies": {
- "title": "发现源",
- "tooltip": "通过发现源,可查看最常访问的 Office 文件。默认情况下,在为用户启用 Delve 时启用此源。在设置为“未配置”时,默认应用设置设为“开”。"
- },
- "OrganizeMailByThread": {
- "title": "按线程组织邮件",
- "tooltip": "Outlook 中的默认行为是将邮件对话捆绑到链式对话视图中。如果禁用此设置,Outlook 将单独显示每个邮件,不会按线程对其进行分组。"
- },
- "PlayMyEmails": {
- "title": "播放我的电子邮件",
- "tooltip": "默认情况下,应用中不会启用“播放我的电子邮件”功能,但会通过收件箱中的横幅将此功能提升为符合条件的用户。如果设置为“关闭”,则不会在应用中将此功能提升为符合条件的用户。用户可以在应用中选择手动启用“播放我的电子邮件”,即使此功能设置为“关闭”也是如此。如果设置为“未配置”,则默认应用设置是“打开”,且功能将提升为符合条件的用户。"
- },
- "SuggestedReplies": {
- "title": "建议的答复",
- "tooltip": "打开邮件时,Outlook 可能会在邮件下建议答复。如果选择所建议的答复,可在发送答复前对其进行编辑。"
- },
- "SyncCalendars": {
- "title": "同步日历",
- "tooltip": "配置用户是否可将其 Outlook 日历同步到本机日历应用和数据库。"
- },
- "TextPredictions": {
- "title": "文本预测",
- "tooltip": "Outlook 可在你撰写邮件时提供词语和短语建议。当 Outlook 提供建议时,可通过轻扫接受建议。如果设置为“未配置”,应用设置默认设置为“开”。"
+ "WindowsQualityUpdateProfile": {
+ "Details": {
+ "DaysUntilForcedReboot": {
+ "label": "强制执行重新启动前等待的天数"
+ },
+ "Description": {
+ "label": "说明"
+ },
+ "Name": {
+ "label": "名称"
+ },
+ "QualityUpdateRelease": {
+ "label": "如果设备 OS 版本低于以下值,则加快安装质量更新:"
+ },
+ "bladeTitle": "质量更新 Windows 10 及更高版本(预览版)",
+ "loadError": "加载失败!"
+ },
+ "TabName": {
+ "qualityUpdateSettings": "设置"
+ },
+ "infoBoxText": "除了适用于 Windows 10 及更高版本的现有更新通道策略之外,当前可用的唯一专用质量更新控制措施是,为落后于指定补丁级别的设备加快质量更新。将来还会提供其他控制措施。",
+ "warningBoxText": "加速软件更新有助于在必要时在更短时间内实现合规性,它对最终用户的工作效率有较大的影响。在工作时间重启的可能性会显著增加。"
+ },
+ "TermsOfUse": {
+ "Languages": {
+ "addLanguage": "Add language",
+ "af": "Afrikaans",
+ "am": "Amharic",
+ "arSA": "Arabic (Saudi Arabia)",
+ "as": "Assamese",
+ "az": "Azerbaijani",
+ "be": "Belarusian",
+ "bg": "Bulgarian",
+ "bn": "Bangla",
+ "bnIN": "Bangla (India)",
+ "bs": "Bosnian",
+ "ca": "Catalan",
+ "caESvalencia": "Valencian (Spain)",
+ "cs": "Czech",
+ "cy": "Welsh",
+ "da": "Danish",
+ "de": "German",
+ "default": "Default",
+ "defaultDetailsTag": "{0} (Default)",
+ "el": "Greek",
+ "en": "English",
+ "enGB": "English (United Kingdom)",
+ "es": "Spanish",
+ "esMX": "Spanish (Mexico)",
+ "et": "Estonian",
+ "eu": "Basque",
+ "fa": "Persian",
+ "fi": "Finnish",
+ "fil": "Filipino",
+ "fr": "French",
+ "frCA": "French (Canada)",
+ "ga": "Irish",
+ "gd": "Scottish Gaelic",
+ "gl": "Galician",
+ "gu": "Gujarati",
+ "ha": "Hausa",
+ "he": "Hebrew",
+ "hi": "Hindi",
+ "hr": "Croatian",
+ "hu": "Hungarian",
+ "hy": "Armenian",
+ "id": "Indonesian",
+ "ig": "Igbo",
+ "is": "Icelandic",
+ "it": "Italian",
+ "ja": "Japanese",
+ "ka": "Georgian",
+ "kk": "Kazakh",
+ "km": "Khmer",
+ "kn": "Kannada",
+ "ko": "Korean",
+ "kok": "Konkani",
+ "kuArab": "Central Kurdish (Arabic)",
+ "ky": "Kyrgyz",
+ "languageOptions": "Language Options",
+ "lb": "Luxembourgish",
+ "lo": "Lao",
+ "lt": "Lithuanian",
+ "lv": "Latvian",
+ "mi": "Maori",
+ "mk": "Macedonian",
+ "ml": "Malayalam",
+ "mn": "Mongolian",
+ "mr": "Marathi",
+ "ms": "Malay",
+ "mt": "Maltese",
+ "ne": "Nepali",
+ "nl": "Dutch",
+ "nnNO": "Norwegian, Nynorsk (Norway)",
+ "no": "Norwegian",
+ "notSpecified": "Language not specified",
+ "nso": "Sesotho sa Leboa",
+ "or": "Odia",
+ "paArabPK": "Punjabi (Islamic Republic of Pakistan)",
+ "paIN": "Punjabi (India)",
+ "pl": "Polish",
+ "prs": "Dari",
+ "ptBR": "Portuguese (Brazil)",
+ "ptPT": "Portuguese (Portugal)",
+ "quz": "Quechua",
+ "ro": "Romanian",
+ "ru": "Russian",
+ "rw": "Kinyarwanda",
+ "sd": "Sindhi",
+ "si": "Sinhala",
+ "sk": "Slovak",
+ "sl": "Slovenian",
+ "sq": "Albanian",
+ "srCyrlBA": "Serbian (Cyrillic, Bosnia and Herzegovina)",
+ "srCyrlRS": "Serbian (Cyrillic, Serbia)",
+ "srLatnRS": "Serbian (Latin, Serbia)",
+ "sv": "Swedish",
+ "sw": "Kiswahili",
+ "ta": "Tamil",
+ "te": "Telugu",
+ "tg": "Tajik",
+ "th": "Thai",
+ "ti": "Tigrinya",
+ "tk": "Turkmen",
+ "tn": "Setswana",
+ "tr": "Turkish",
+ "tt": "Tatar",
+ "ug": "Uyghur",
+ "uk": "Ukrainian",
+ "ur": "Urdu",
+ "uz": "Uzbek",
+ "vi": "Vietnamese",
+ "wo": "Wolof",
+ "xh": "isiXhosa",
+ "yo": "Yoruba",
+ "zhHans": "Chinese (Simplified)",
+ "zhHant": "Chinese (Traditional)",
+ "zu": "isiZulu"
+ },
+ "AcceptanceExpirationFrequency": {
+ "annually": "Annually",
+ "biannually": "Bi-annually",
+ "monthly": "Monthly",
+ "quarterly": "Quarterly"
},
- "ThemesEnabled": {
- "title": "已启用主题",
- "tooltip": "指定是否允许用户使用自定义视觉主题。"
- }
- },
+ "Wizard": {
+ "AgreementTargetEntityScope": {
+ "NotSelected": {
+ "label": "None selected"
+ },
+ "selectEntityTitle": "Select group",
+ "title": "Select group"
+ },
+ "PolicyFile": {
+ "Languages": {
+ "Empty": {
+ "default": "Select default language",
+ "nonDefault": "Select a language"
+ }
+ },
+ "Validations": {
+ "duplicateLanguage": "Oops, {0} appears to be selected multiple times. Language selection must be unique."
+ }
+ },
+ "PolicyTemplate": {
+ "InfoBox": {
+ "allGuestsAllApps": "A conditional access policy will be created for all guests and all cloud apps. This policy impacts the Azure portal. Once this is created you might be required to sign-out and sign-in.",
+ "allUsersAllApps": "A conditional access policy will be created for all users and all cloud apps. This policy impacts the Azure portal. Once this is created you will be required to sign-out and sign-in.",
+ "custom": "Select the users, groups, and apps that this Terms of Use will be applied to.",
+ "noPolicy": "This terms of use will appear in the grant control list when creating a conditional access policy."
+ }
+ },
+ "Section": {
+ "conditionalAccessSubtitle": "Enforce with conditional access policy templates",
+ "conditionalAccessTitle": "Conditional access",
+ "termsOfUseSubtitle": "Create and upload documents",
+ "termsOfUseTitle": "Terms of use"
+ },
+ "acceptanceDurationInfo": "The terms of use will be enforced immediately and each user will have to re-consent every specified number of days.",
+ "acceptanceDurationLabel": "Duration before re-acceptance required (days)",
+ "acceptanceDurationPlaceholder": "Example: '90'",
+ "acceptanceExpirationFrequencyInfo": "Require users to consent on a recurring basis.",
+ "acceptanceExpirationFrequencyLabel": "Frequency",
+ "acceptanceExpirationStartDateTimeInfo": "The terms of use will be enforced immediately and users will be required to re-consent on this date.",
+ "acceptanceExpirationStartDateTimeLabel": "Expire starting on",
+ "agreementIsPerDeviceAcceptanceRequiredInfo": "The end users will be required to consent to the terms of use on every device.",
+ "agreementIsPerDeviceAcceptanceRequiredLabel": "Require users to consent on every device",
+ "agreementIsViewingBeforeAcceptanceRequiredInfo": "The end users will be required to view the terms of use prior to accepting.",
+ "agreementIsViewingBeforeAcceptanceRequiredLabel": "Require users to expand the terms of use",
+ "agreementNameInfo": "Name will be used to manage the terms of use within the Azure portal.",
+ "agreementNameLabel": "Name",
+ "agreementNamePlaceholderText": "Example: 'All users terms of use'",
+ "agreementRequirmentLabel": "Required Upon",
+ "agreementTargetEntityLabel": "Users targeted",
+ "agreementUploadPolicyLabel": "Terms of use",
+ "agreementUploadPolicyPlaceholderText": "Upload required PDF",
+ "createButtonLabel": "Create",
+ "createPolicyInfo": "In order to enforce the terms of use, a conditional access policy is required. You can create a conditional access policy targeted to specific users and applications later or use one of the predefined templates.",
+ "createPolicyLabel": "Create a policy",
+ "isAcceptanceExpirationEnabledInfo": "The terms of use will be enforced immediately and all users will be forced to re-consent on a schedule.",
+ "isAcceptanceExpirationEnabledLabel": "Expire consents",
+ "pdfValidationInvalidFileFormat": "The file must be in the .pdf format.",
+ "policyFilesInfo": "Upload a PDF file containing the terms of use that your end users must accept. Based on end user preferences they will be shown the appropriate language or if not match the default language will be shown.
For end users agreeing on mobile devices, we recommend the PDF font size to be at least 24 pt.
Display name will be the title of the terms of use that is presented to the end user.",
+ "policyFilesLabel": "Terms of use document",
+ "policyTemplateInfo": "These templates are pre configured conditional access policies that are targeted to specific users and applications.",
+ "policyTemplateLabel": "Policy templates",
+ "title": "New terms of use"
+ }
+ },
+ "TACSettings": {
+ "edgeSettings": "Edge 配置设置",
+ "edgeWindowsDataProtectionSettings": "Edge (Windows) 数据保护设置 - 预览",
+ "edgeWindowsSettings": "Edge (Windows)配置设置 - 预览",
+ "generalAppConfig": "常规应用配置",
+ "generalSettings": "常规配置设置",
+ "outlookSMIMEConfig": "Outlook S/MIME 设置",
+ "outlookSettings": "Outlook 配置设置",
+ "sMIME": "S/MIME"
+ },
+ "MicrosoftEdgeChannel": {
+ "beta": "Beta",
+ "dev": "Dev",
+ "stable": "Stable"
+ },
+ "WipPolicySettings": {
+ "addNetworkBoundary": "添加网络边界",
+ "addNetworkBoundaryButton": "添加网络边界...",
+ "allowWindowsSearch": "允许 Windows Search 搜索加密的公司数据和应用商店应用",
+ "authoritativeIpRanges": "企业 IP 范围列表具有权威性(不进行自动检测)",
+ "authoritativeProxyServers": "企业代理服务器列表具有权威性(不进行自动检测)",
+ "boundaryType": "边界类型",
+ "cloudResources": "云资源",
+ "corporateIdentity": "公司标识",
+ "dataRecoveryCert": "上传数据恢复代理(DRA)证书以允许恢复加密数据",
+ "editNetworkBoundary": "编辑网络边界",
+ "enrollmentState": "注册状态",
+ "iPv4Ranges": "IPv4 范围",
+ "iPv6Ranges": "IPv6 范围",
+ "internalProxyServers": "内部代理服务器",
+ "maxInactivityTime": "设备空闲后,导致设备锁定 PIN 或密码前允许的最长时间(以分钟为单位)",
+ "maxPasswordAttempts": "擦除设备之前允许的身份验证失败的次数",
+ "mdmDiscoveryUrl": "MDM 发现 URL",
+ "mdmRequiredSettingsInfo": "此策略仅适用于 Windows 10 周年纪念版及更高版本。此策略使用 Windows 信息保护(WIP)来应用保护。",
+ "minimumPinLength": "设置 PIN 所需的最小字符数",
+ "name": "名称",
+ "networkBoundariesGridEmptyText": "所添加的任何网络边界都将显示在此处",
+ "networkBoundary": "网络边界",
+ "networkDomainNames": "网络域",
+ "neutralResources": "中性资源",
+ "passportForWork": "使用 Windows Hello 企业版作为登录 Windows 的方法",
+ "pinExpiration": "指定在系统要求用户更改 PIN 之前可以使用 PIN 的时间段(以天为单位)",
+ "pinHistory": "指定可以与无法重复使用的用户帐户相关联的之前的 PIN 数",
+ "pinLowercaseLetters": "配置 Windows Hello 企业版 PIN 中小写字母的使用",
+ "pinSpecialCharacters": "配置 Windows Hello 企业版 PIN 中特殊字符的使用",
+ "pinUppercaseLetters": "配置 Windows Hello 企业版 PIN 中大写字母的使用",
+ "protectUnderLock": "锁定设备后防止应用访问公司数据。仅适用于 Windows 10 移动版",
+ "protectedDomainNames": "受保护域",
+ "proxyServers": "代理服务器",
+ "requireAppPin": "管理设备 PIN 时禁用应用 PIN",
+ "requiredSettings": "所需设置",
+ "requiredSettingsInfo": "更改范围或删除此策略将解密公司数据。",
+ "revokeOnMdmHandoff": "当设备注册 MDM 时,撤销对受保护数据的访问权限",
+ "revokeOnUnenroll": "取消注册时撤销加密密钥",
+ "rmsTemplateForEdp": "指定要用于 Azure RMS 的模板 ID",
+ "showWipIcon": "显示企业数据保护图标",
+ "type": "类型",
+ "useRmsForWip": "将 Azure RMS 用于 WIP",
+ "value": "值",
+ "weRequiredSettingsInfo": "此策略仅适用于 Windows 10 创意者更新及更高版本。此策略使用 Windows 信息保护(WIP)和 Windows MAM 来应用保护。",
+ "wipProtectionMode": "Windows 信息保护模式",
+ "withEnrollment": "已注册",
+ "withoutEnrollment": "未注册"
+ },
+ "OfficeApplicationAdditionalType": {
+ "projectProRetail": "Project Online 桌面客户端",
+ "visioProRetail": "Visio Online 计划 2"
+ },
+ "Countries": {
+ "ae": "阿拉伯联合酋长国",
+ "ag": "安提瓜和巴布达",
+ "ai": "安圭拉",
+ "al": "阿尔巴尼亚",
+ "am": "亚美尼亚",
+ "ao": "安哥拉",
+ "ar": "阿根廷",
+ "at": "奥地利",
+ "au": "澳大利亚",
+ "az": "阿塞拜疆",
+ "bb": "巴巴多斯",
+ "be": "比利时",
+ "bf": "布基纳法索",
+ "bg": "保加利亚",
+ "bh": "巴林",
+ "bj": "贝宁",
+ "bm": "百慕大",
+ "bn": "文莱",
+ "bo": "玻利维亚",
+ "br": "巴西",
+ "bs": "巴哈马",
+ "bt": "不丹",
+ "bw": "博茨瓦纳",
+ "by": "白俄罗斯",
+ "bz": "伯利兹",
+ "ca": "加拿大",
+ "cg": "刚果共和国",
+ "ch": "瑞士",
+ "cl": "智利",
+ "cn": "中国",
+ "co": "哥伦比亚",
+ "cr": "哥斯达黎加",
+ "cv": "佛得角",
+ "cy": "塞浦路斯",
+ "cz": "捷克共和国",
+ "de": "德国",
+ "dk": "丹麦",
+ "dm": "多米尼克",
+ "do": "多米尼加共和国",
+ "dz": "阿尔及利亚",
+ "ec": "厄瓜多尔",
+ "ee": "爱沙尼亚",
+ "eg": "埃及",
+ "es": "西班牙",
+ "fi": "芬兰",
+ "fj": "斐济",
+ "fm": "密克罗尼西亚联邦",
+ "fr": "法国",
+ "gb": "英国",
+ "gd": "格林纳达",
+ "gh": "加纳",
+ "gm": "冈比亚",
+ "gr": "希腊",
+ "gt": "危地马拉",
+ "gw": "几内亚比绍",
+ "gy": "圭亚那",
+ "hk": "香港特别行政区",
+ "hn": "洪都拉斯",
+ "hr": "克罗地亚",
+ "hu": "匈牙利",
+ "id": "印度尼西亚",
+ "ie": "爱尔兰",
+ "il": "以色列",
+ "in": "印度",
+ "is": "冰岛",
+ "it": "意大利",
+ "jm": "牙买加",
+ "jo": "约旦",
+ "jp": "日本",
+ "ke": "肯尼亚",
+ "kg": "吉尔吉斯斯坦",
+ "kh": "柬埔寨",
+ "kn": "圣基茨和尼维斯",
+ "kr": "大韩民国",
+ "kw": "科威特",
+ "ky": "开曼群岛",
+ "kz": "哈萨克斯坦",
+ "la": "老挝人民民主共和国",
+ "lb": "黎巴嫩",
+ "lc": "圣卢西亚",
+ "lk": "斯里兰卡",
+ "lr": "利比里亚",
+ "lt": "立陶宛",
+ "lu": "卢森堡",
+ "lv": "拉脱维亚",
+ "md": "摩尔多瓦共和国",
+ "mg": "马达加斯加",
+ "mk": "北马其顿",
+ "ml": "马里",
+ "mn": "蒙古",
+ "mo": "澳门",
+ "mr": "毛里塔尼亚",
+ "ms": "蒙特塞拉特",
+ "mt": "马耳他",
+ "mu": "毛里求斯",
+ "mw": "马拉维",
+ "mx": "墨西哥",
+ "my": "马来西亚",
+ "mz": "莫桑比克",
+ "na": "纳米比亚",
+ "ne": "尼日尔",
+ "ng": "尼日利亚",
+ "ni": "尼加拉瓜",
+ "nl": "荷兰",
+ "no": "挪威",
+ "np": "尼泊尔",
+ "nz": "新西兰",
+ "om": "阿曼",
+ "pa": "巴拿马",
+ "pe": "秘鲁",
+ "pg": "巴布亚新几内亚",
+ "ph": "菲律宾",
+ "pk": "巴基斯坦",
+ "pl": "波兰",
+ "pt": "葡萄牙",
+ "pw": "帕劳",
+ "py": "巴拉圭",
+ "qa": "卡塔尔",
+ "ro": "罗马尼亚",
+ "ru": "俄罗斯",
+ "sa": "沙特阿拉伯",
+ "sb": "所罗门群岛",
+ "sc": "塞舌尔",
+ "se": "瑞典",
+ "sg": "新加坡",
+ "si": "斯洛文尼亚",
+ "sk": "斯洛伐克",
+ "sl": "塞拉利昂",
+ "sn": "塞内加尔",
+ "sr": "苏里南",
+ "st": "圣多美和普林西比",
+ "sv": "萨尔瓦多",
+ "sz": "斯威士兰",
+ "tc": "特克斯和凯科斯",
+ "td": "乍得",
+ "th": "泰国",
+ "tj": "塔吉克斯坦",
+ "tm": "土库曼斯坦",
+ "tn": "突尼斯",
+ "tr": "土耳其",
+ "tt": "特立尼达和多巴哥",
+ "tw": "台湾",
+ "tz": "坦桑尼亚",
+ "ua": "乌克兰",
+ "ug": "乌干达",
+ "us": "美国",
+ "uy": "乌拉圭",
+ "uz": "乌兹别克斯坦",
+ "vc": "圣文森特和格林纳丁斯",
+ "ve": "委内瑞拉",
+ "vg": "英属维尔京群岛",
+ "vn": "越南",
+ "ye": "也门",
+ "za": "南非",
+ "zw": "津巴布韦"
+ },
+ "OfficeUpdateChannel": {
+ "current": "当前频道",
+ "deferred": "半年企业频道",
+ "firstReleaseCurrent": "当前频道(预览)",
+ "firstReleaseDeferred": "半年企业频道(预览)",
+ "monthlyEnterprise": "每月企业频道",
+ "placeHolder": "选择一个"
+ },
+ "AppProtection": {
+ "allAppTypes": "针对所有应用类型",
+ "androidPlatformLabel": "Android",
+ "appsInAndroidWorkProfile": "Android 工作配置文件中的应用",
+ "appsOnIntuneManagedDevices": "Intune 托管设备上的应用",
+ "appsOnUnmanagedDevices": "非托管设备上的应用",
+ "iOSPlatformLabel": "iOS/iPadOS",
+ "iosAndroidMacPlatformLabel": "iOS、Android、Mac",
+ "iosAndroidPlatformLabel": "iOS、Android",
+ "macPlatformLabel": "Mac",
+ "notAvailable": "不可用",
+ "windows10PlatformLabel": "Windows 10 和更高版本",
+ "withEnrollment": "已注册",
+ "withoutEnrollment": "未注册"
+ },
+ "InstallContextType": {
+ "device": "设备",
+ "deviceContext": "设备上下文",
+ "user": "用户",
+ "userContext": "用户上下文"
+ },
+ "ProactiveRemediations": {
+ "Create": {
+ "Basics": {
+ "DescriptionMultiLineTextBox": {
+ "label": "说明",
+ "placeholder": "输入描述"
+ },
+ "NameTextBox": {
+ "label": "名称",
+ "placeholder": "输入名称"
+ },
+ "PublisherTextBox": {
+ "label": "发布者",
+ "placeholder": "输入发布服务器"
+ },
+ "VersionTextBox": {
+ "label": "版本"
+ },
+ "headerDescription": "基于所编写的检测和修正脚本创建新的自定义脚本包。"
+ },
+ "ScopeTags": {
+ "headerDescription": "选择一个或多个要分配脚本包的组。"
+ },
+ "Settings": {
+ "DetectionScriptMultiLineTextBox": {
+ "label": "检测脚本",
+ "placeholder": "输入脚本文本",
+ "requiredValidationMessage": "请输入检测脚本"
+ },
+ "EnforceScriptSignatureCheckOptionPicker": {
+ "label": "强制执行脚本签名检查"
+ },
+ "LoggedOnCredentialsOptionPicker": {
+ "label": "使用已登录的凭据运行此脚本"
+ },
+ "RemediationScript": {
+ "infoBox": "此脚本将在“仅检测”模式下运行,因为没有修正脚本。"
+ },
+ "RemediationScriptMultiLineTextBox": {
+ "label": "修正脚本",
+ "placeholder": "输入脚本文本"
+ },
+ "RunIn64BitPSOptionPicker": {
+ "label": "在 64 位 PowerShell 中运行脚本"
+ },
+ "ScriptMultiLineTextBox": {
+ "base64EncodingValidationMessage": "脚本无效。脚本中使用的一个或多个字符无效。"
+ },
+ "headerDescription": "从已编写的脚本创建自定义脚本包。默认情况下,脚本将每天在指定设备上运行。",
+ "infoBox": "此脚本是只读的。此脚本的某些设置可能已禁用。"
+ },
+ "title": "创建自定义脚本",
+ "ScriptProperties": {
+ "GridHeaders": {
+ "interval": "间隔",
+ "time": "日期和时间"
+ },
+ "Interval": {
+ "day": "每天重复一次",
+ "days": "每 {0} 天重复一次",
+ "hour": "每小时重复一次",
+ "hours": "每 {0} 小时重复一次",
+ "month": "每月重复一次",
+ "months": "每 {0} 个月重复一次",
+ "week": "每周重复一次",
+ "weeks": "每 {0} 周重复一次"
+ },
+ "Time": {
+ "utc": "{0} (UTC)",
+ "utcWithDate": "{1} {0} (UTC)",
+ "withDate": "{1} {0}"
+ }
+ }
+ },
+ "Edit": {
+ "title": "编辑 - {0}"
+ }
+ },
+ "EdgeAppConfig": {
+ "AllowedURLs": {
+ "title": "允许的 URL",
+ "tooltip": "指定用户可在处于工作上下文中时访问的网站。不允许其他所有网站。可选择配置允许/阻止列表,但不可同时设置这两者。"
+ },
+ "ApplicationProxyRedirection": {
+ "header": "应用程序代理",
+ "title": "应用程序代理重定向",
+ "tooltip": "启用应用代理重定向,为用户提供访问企业链接和本地 web 应用的权限。"
+ },
+ "BlockedURLs": {
+ "title": "阻止的 URL",
+ "tooltip": "指定阻止用户在其处于工作上下文中时访问的网站。允许所有其他网站。可选择配置允许/阻止列表,但不可同时选择这两者。"
+ },
+ "Bookmarks": {
+ "header": "托管的书签",
+ "tooltip": "请输入用户在其工作上下文中使用 Microsoft Edge 时可使用的带标签的 URL 的列表。",
+ "uRL": "URL"
+ },
+ "HomepageURL": {
+ "header": "托管的主页",
+ "title": "主页快捷方式 URL",
+ "tooltip": "配置一个主页快捷方式;当用户在 Microsoft Edge 中打开新的标签页时,该快捷方式将作为第一个图标显示在搜索栏下面供用户查看。"
+ },
+ "PersonalContext": {
+ "label": "将受限站点重定向到个人上下文",
+ "tooltip": "配置是否应允许用户切换到其个人上下文来打开受限网站。"
+ }
+ },
+ "BooleanActions": {
+ "allow": "允许",
+ "block": "阻止",
+ "configured": "已配置",
+ "disable": "禁用",
+ "dontRequire": "不需要",
+ "enable": "启用",
+ "hide": "隐藏",
+ "limit": "限制",
+ "notConfigured": "未配置",
+ "require": "要求",
+ "show": "显示",
+ "yes": "是"
+ },
+ "ArchitectureOptions": {
+ "sixtyFourBit": "64 位",
+ "thirtyTwoBit": "32 位"
+ },
+ "WindowsQualityUpdateDaysUntilForcedReboot": {
+ "oneDay": "1 天",
+ "twoDays": "2 天",
+ "zeroDays": "0 天"
+ },
"SoftwareUpdates": {
"BladeTitles": {
"overview": "概述"
@@ -10800,66 +10878,732 @@
"notScannedYet": "尚未扫描",
"outOfDateIosDevices": "过期的 iOS 设备"
},
- "ScheduledAction": {
- "Form": {
- "editBlockActionInfo": "所有符合性策略必需一个阻止操作。",
- "graceperiod": "计划(已超出符合性的天数)",
- "graceperiodInfo": "指定在出现不符合后多久为用户设备触发此操作",
- "subtitle": "指定操作参数",
- "title": "操作参数"
- },
- "List": {
- "gracePeriodDay": "失去符合性后 {0} 天",
- "gracePeriodDays": "已超出符合性 {0} 天",
- "gracePeriodHour": "已超出符合性 {0} 小时",
- "gracePeriodHours": "已超出符合性 {0} 小时",
- "gracePeriodMinute": "已超出符合性 {0} 分钟",
- "gracePeriodMinutes": "已超出符合性 {0} 分钟",
- "immediately": "立即",
- "schedule": "计划",
- "scheduleInfoBalloon": "处于不合规状态的天数",
- "subtitle": "指定在不符合设备上执行操作的顺序",
- "title": "操作"
- },
- "Notification": {
- "additionalEmailLabel": "其他用户",
- "additionalRecipients": "其他收件人(通过电子邮件)",
- "additionalRecipientsBladeTitle": "选择其他收件人",
- "emailAddressPrompt": "输入电子邮件地址(用逗号分隔)",
- "invalidEmail": "电子邮件地址无效",
- "messageTemplate": "邮件模板",
- "noneSelected": "尚未选择",
- "notSelected": "未选中",
- "numSelected": "已选定 {0} 个",
- "selected": "已选定"
+ "ConfigurationTypes": {
+ "Table": {
+ "androidDeviceOwnerGeneral": "设备限制(设备所有者)",
+ "androidForWorkGeneral": "设备限制(工作配置文件)"
+ },
+ "androidCustom": "自定义",
+ "androidDeviceOwnerGeneral": "设备限制",
+ "androidDeviceOwnerPkcs": "PKCS 证书",
+ "androidDeviceOwnerScep": "SCEP 证书",
+ "androidDeviceOwnerTrustedCertificate": "受信任的证书",
+ "androidDeviceOwnerVpn": "VPN",
+ "androidDeviceOwnerWiFi": "Wi-Fi",
+ "androidEmailProfile": "电子邮件(仅限 Samsung KNOX)",
+ "androidForWorkCustom": "自定义",
+ "androidForWorkEmailProfile": "电子邮件",
+ "androidForWorkGeneral": "设备限制",
+ "androidForWorkImportedPFX": "PKCS 导入的证书",
+ "androidForWorkOemConfig": "OEMConfig",
+ "androidForWorkPKCS": "PKCS 证书",
+ "androidForWorkSCEP": "SCEP 证书",
+ "androidForWorkTrustedCertificate": "受信任的证书",
+ "androidForWorkVpn": "VPN",
+ "androidForWorkWiFi": "Wi-Fi",
+ "androidGeneral": "设备限制",
+ "androidImportedPFX": "PKCS 导入的证书",
+ "androidPKCS": "PKCS 证书",
+ "androidSCEP": "SCEP 证书",
+ "androidTrustedCertificate": "受信任的证书",
+ "androidVPN": "VPN",
+ "androidWiFi": "Wi-Fi",
+ "androidZebraMx": "MX 配置文件(仅限 Zebra)",
+ "complianceAndroid": "Android 合规性策略",
+ "complianceAndroidDeviceOwner": "公司拥有的完全托管式专用工作配置文件",
+ "complianceAndroidEnterprise": "个人拥有的工作配置文件",
+ "complianceAndroidForWork": "Android for Work 合规性策略",
+ "complianceIos": "iOS 符合性策略",
+ "complianceMac": "Mac 合规性策略",
+ "complianceWindows10": "Windows 10 及更高版本的合规性策略",
+ "complianceWindows10Mobile": "Windows 10 移动版合规性策略",
+ "complianceWindows8": "Windows 8 合规性策略",
+ "complianceWindowsPhone": "Windows Phone 合规性策略",
+ "exchangeActiveSync": "Exchange Active Sync",
+ "iosCustom": "自定义",
+ "iosDerivedCredentialAuthenticationConfiguration": "派生的 PIV 凭据",
+ "iosDeviceFeatures": "设备功能",
+ "iosEDU": "教育",
+ "iosEducation": "教育",
+ "iosEmailProfile": "电子邮件",
+ "iosGeneral": "设备限制",
+ "iosImportedPFX": "PKCS 导入的证书",
+ "iosPKCS": "PKCS 证书",
+ "iosPresets": "预设",
+ "iosSCEP": "SCEP 证书",
+ "iosTrustedCertificate": "受信任的证书",
+ "iosVPN": "VPN",
+ "iosVPNZscaler": "VPN",
+ "iosWiFi": "Wi-Fi",
+ "macCustom": "自定义",
+ "macDeviceFeatures": "设备功能",
+ "macEndpointProtection": "终结点保护",
+ "macExtensions": "扩展",
+ "macGeneral": "设备限制",
+ "macImportedPFX": "PKCS 导入的证书",
+ "macSCEP": "SCEP 证书",
+ "macTrustedCertificate": "受信任的证书",
+ "macVPN": "VPN",
+ "macWiFi": "Wi-Fi",
+ "settingsCatalog": "设置目录(预览)",
+ "unsupported": "不支持",
+ "windows10AdministrativeTemplate": "管理模板(预览)",
+ "windows10Atp": "Microsoft Defender for Endpoint (运行 Windows 10 或更高版本的桌面设备)",
+ "windows10Custom": "自定义",
+ "windows10DesktopSoftwareUpdate": "软件更新",
+ "windows10DeviceFirmwareConfigurationInterface": "设备固件配置接口",
+ "windows10EmailProfile": "电子邮件",
+ "windows10EndpointProtection": "终结点保护",
+ "windows10EnterpriseDataProtection": "Windows 信息保护",
+ "windows10General": "设备限制",
+ "windows10ImportedPFX": "PKCS 导入的证书",
+ "windows10Kiosk": "展台",
+ "windows10NetworkBoundary": "网络边界",
+ "windows10PKCS": "PKCS 证书",
+ "windows10PolicyOverride": "覆盖组策略",
+ "windows10SCEP": "SCEP 证书",
+ "windows10SecureAssessmentProfile": "教育配置文件",
+ "windows10SharedPC": "共享多用户设备",
+ "windows10TeamGeneral": "设备限制(Windows 10 团队)",
+ "windows10TrustedCertificate": "受信任的证书",
+ "windows10VPN": "VPN",
+ "windows10WiFi": "Wi-Fi",
+ "windows10WiFiCustom": "Wi-Fi 自定义",
+ "windows8General": "设备限制",
+ "windows8SCEP": "SCEP 证书",
+ "windows8TrustedCertificate": "受信任的证书",
+ "windows8VPN": "VPN",
+ "windows8WiFi": "Wi-Fi 导入",
+ "windowsDeliveryOptimization": "交付优化",
+ "windowsDomainJoin": "域加入",
+ "windowsEditionUpgrade": "版本升级和模式切换",
+ "windowsIdentityProtection": "标识保护",
+ "windowsPhoneCustom": "自定义",
+ "windowsPhoneEmailProfile": "电子邮件",
+ "windowsPhoneGeneral": "设备限制",
+ "windowsPhoneImportedPFX": "PKCS 导入的证书",
+ "windowsPhoneSCEP": "SCEP 证书",
+ "windowsPhoneTrustedCertificate": "受信任的证书",
+ "windowsPhoneVPN": "VPN",
+ "IosUpdate": "iOS 更新策略"
+ },
+ "OfficeSuiteAppsTab": {
+ "acceptLicenseOnBehalfOfUsersLabel": "代表用户接受 Microsoft 软件许可条款",
+ "appSuiteConfigurationLabel": "应用套件配置",
+ "appSuiteInformationLabel": "应用套件信息",
+ "appsToBeInstalledLabel": "要作为套件的一部分进行安装的应用",
+ "architectureLabel": "体系结构",
+ "architectureTooltip": "定义设备上是否安装了 32 位或 64 位版本的 Microsoft 365 应用。",
+ "configurationDesignerLabel": "配置设计器",
+ "configurationFileLabel": "配置文件",
+ "configurationSettingsFormatLabel": "配置设置格式",
+ "configureAppSuiteLabel": "配置应用套件",
+ "configuredLabel": "已配置",
+ "currentVersionLabel": "当前版本",
+ "currentVersionTooltip": "这是在此套件中配置的 Office 的当前版本。在配置和保存较新版本时,将更新此值。",
+ "enableMicrosoftSearchAsDefaultTooltip": "安装一项后台服务,帮助确定设备上是否已安装适用于 Google Chrome 的 Microsoft 必应搜索扩展。",
+ "enterXmlDataLabel": "输入 XML 数据",
+ "languagesLabel": "语言",
+ "languagesTooltip": "默认情况下,Intune 将使用操作系统的默认语言安装 Office。选择要安装的任何其他语言。",
+ "learnMoreText": "了解更多",
+ "newUpdateChannelTooltip": "定义提供新功能以更新应用的频率。",
+ "noCurrentVersionText": "没有当前版本",
+ "noLanguagesSelectedLabel": "未选择语言",
+ "notConfiguredLabel": "未配置",
+ "propertiesLabel": "属性",
+ "removeOtherVersionsLabel": "删除其他版本",
+ "removeOtherVersionsTooltip": "选择“是”从用户设备中删除其他版本的 Office (MSI)。",
+ "selectOfficeAppsLabel": "选择 Office 应用",
+ "selectOfficeAppsTooltip": "选择要作为套件的一部分安装的 Office 365 应用。",
+ "selectOtherOfficeAppsLabel": "选择其他 Office 应用(需要许可证)",
+ "selectOtherOfficeAppsTooltip": "如果你拥有这些额外的 Office 应用的许可证,也可以使用 Intune 分配这些应用。",
+ "specificVersionLabel": "特定版本",
+ "updateChannelLabel": "更新通道",
+ "updateChannelTooltip": "定义提供新功能以更新应用的频率。
\r\n每月 - 在 Office 最新功能可用时即向用户提供。
\r\n每月企业频道 - 在每月的第二个星期二向用户提供一次 Office 最新功能。
\r\n每月(定向) – 提供抢先体验即将发布的每月频道版本的机会。这是一个受支持的更新频道,通常在包含新功能的每月频道版本发布前至少一周可用。
\r\n每半年 - 一年仅为用户提供几次 Office 新功能。
\r\n每半年(定向) - 为试点用户和应用程序兼容性测试者提供测试下一个半年版本的机会。",
+ "useMicrosoftSearchAsDefault": "在必应中安装 Microsoft 搜索的后台服务",
+ "useSharedComputerActivationLabel": "使用共享计算机激活",
+ "useSharedComputerActivationTooltip": "通过共享计算机激活,可以将 Microsoft 365 应用部署到多个用户使用的计算机。通常,用户只能在有限数量的设备(例如 5 台电脑)上安装和激活 Microsoft 365 应用。使用具有共享计算机激活的 Microsoft 365 应用不会计入该限制范围。",
+ "versionToInstallLabel": "要安装的版本",
+ "versionToInstallTooltip": "选择应安装的 Office 版本。",
+ "xLanguagesSelectedLabel": "已选择 {0} 个语言",
+ "xmlConfigurationLabel": "XML 配置"
+ },
+ "EnrollmentRestrictions": {
+ "DeletePayloadLink": {
+ "content": "{0} 包含在一个或多个策略集中。如果删除 {0},将无法再通过这些策略集分配它。是否仍要删除?",
+ "contentWithError": "{0} 可能包含在一个或多个策略集中。如果删除 {0},将无法再通过这些策略集分配它。是否仍要删除?",
+ "header": "确定要删除此限制吗?"
+ },
+ "DeviceLimit": {
+ "description": "指定用户可以注册的最大设备数。",
+ "header": "设备极限限制",
+ "info": "定义每个用户可以注册的设备数量。"
+ },
+ "DeviceType": {
+ "VersionValidation": {
+ "aOSP": "必须为 1.0 或更高版本。",
+ "android": "请输入有效的版本号。示例: 5.0、5.5.1、6.0.0.1",
+ "androidForWork": "请输入有效的版本号。示例: 5.0、5.1.1",
+ "iOS": "请输入有效的版本号。示例: 9.0、10.0、9.0.2",
+ "mac": "请输入一个有效的版本号。例如: 10, 10.10, 10.10.1",
+ "min": "最小值不能低于 {0}",
+ "minMax": "最低版本不能高于最高版本。",
+ "windows": "必须为 10.0 或更高版本。保留为空以允许 8.1 设备",
+ "windowsMobile": "必须为 10.0 或更高版本。保留为空以允许 8.1 设备"
+ },
+ "allPlatformsBlocked": "所有设备平台均已锁定。允许平台注册以启用平台配置。",
+ "blockManufacturerPlaceHolder": "制造商名称",
+ "blockManufacturersHeader": "被阻止的制造商",
+ "cannotRestrict": "不支持限制",
+ "configurationDescription": "指定要注册设备而必须满足的平台配置限制。注册后使用符合性策略限制设备。将版本定义为 major.minor.build。版本限制仅适用于注册了公司门户的设备。默认情况下,Intune 将设备分类为个人拥有。需要执行额外操作才能将设备分类为公司拥有。",
+ "configurationDescriptionLabel": "了解有关设置注册限制的详细信息",
+ "configurations": "配置平台",
+ "deviceManufacturer": "设备制造商",
+ "header": "设备类型限制",
+ "info": "定义可以注册的平台、版本和管理类型。",
+ "manufacturer": "制造商",
+ "max": "最大值",
+ "maxVersion": "最高版本",
+ "min": "最小值",
+ "minVersion": "最小版本",
+ "newPlatforms": "已允许新平台。请考虑更新平台配置。",
+ "personal": "个人拥有",
+ "platform": "平台",
+ "platformDescription": "可允许注册下列平台。仅阻止你不支持的平台。可使用其他注册限制配置已允许的平台。",
+ "platformSettings": "平台设置",
+ "platforms": "选择平台",
+ "platformsSelected": "已选择 {0} 个平台",
+ "type": "类型",
+ "versions": "版本",
+ "versionsRange": "允许的最小/最大范围:",
+ "windowsTooltip": "通过移动设备管理限制注册。不限制电脑代理安装。仅支持 Windows 10 和 Windows 11 版本。保留版本为空以允许 Windows 8.1。"
+ },
+ "Priority": {
+ "saved": "已成功保存限制优先级。"
+ },
+ "Row": {
+ "announce": "优先级: {0},名称: {1},已分配: {2}"
+ },
+ "Table": {
+ "deployed": "已部署",
+ "name": "名称",
+ "priority": "优先级"
},
- "block": "标记不合规设备",
- "lockDevice": "锁定设备(本地操作)",
- "lockDeviceWithPasscode": "锁定设备(本地操作)",
- "noAction": "无操作",
- "noActionRow": "无操作,选择“添加”以添加操作",
- "pushNotification": "向最终用户发送推送通知",
- "remoteLock": "远程锁定不合规设备",
- "removeSourceAccessProfile": "删除源访问配置文件",
- "retire": "停用不相容设备",
- "wipe": "擦除",
- "emailNotification": "向最终用户发送电子邮件"
- },
- "WIPPinRequirements": {
- "WipLowercaseCharacterPinRequirements": {
- "allow": "允许在 PIN 中使用小写字母",
- "notAllow": "不允许在 PIN 中使用小写字母",
- "requireAtLeastOne": "要求在 PIN 中使用至少一个小写字母"
- },
- "WipSpecialCharacterPinRequirements": {
- "allow": "允许在 PIN 中使用特殊字符",
- "notAllow": "不允许在 PIN 中使用特殊字符",
- "requireAtLeastOne": "要求在 PIN 中使用至少一个特殊字符"
- },
- "WipUppercaseCharacterPinRequirements": {
- "allow": "允许在 PIN 中使用大写字母",
- "notAllow": "不允许在 PIN 中使用大写字母",
- "requireAtLeastOne": "要求在 PIN 中使用至少一个大写字母"
- }
- }
+ "Type": {
+ "limit": "设备限制",
+ "type": "设备类型限制"
+ },
+ "allUsers": "所有用户",
+ "androidRestrictions": "Android 限制",
+ "create": "创建限制",
+ "defaultLimitDescription": "这是应用于所有用户的优先级最低的默认设备限制,但不考虑组成员身份。",
+ "defaultTypeDescription": "这是应用于所有用户的优先级最低的默认设备类型限制,但不考虑组成员身份。",
+ "defaultWhfbDescription": "这是应用于所有用户的优先级最低的默认 Windows Hello 企业版,但不考虑组成员身份。",
+ "deleteMessage": "如果未分配其他限制,则将按分配的下一个拥有最高优先级的限制或默认限制对受影响的用户进行限制。",
+ "deleteTitle": "确定要删除 {0} 限制吗?",
+ "descriptionHint": "描述由限制设置表征的业务用途或限制级别的简短段落。",
+ "edit": "编辑限制",
+ "info": "设备必须遵循分配给其用户的最高优先级注册限制。可拖动设备限制以更改其优先级。所有用户的默认限制都是最低优先级,且它们控制无用户参与的注册。可编辑(但不可删除)默认限制。",
+ "iosRestrictions": "iOS 限制",
+ "mDM": "MDM",
+ "macRestrictions": "MacOS 限制",
+ "maxVersion": "最高版本",
+ "minVersion": "最低版本",
+ "nameHint": "这将是显示标识限制集时可见的主属性。",
+ "noAssignmentsStatusBar": "至少将限制分配给一个组。请单击“属性”。",
+ "notFound": "找不到限制。它可能已删除。",
+ "personallyOwned": "个人拥有的设备",
+ "restriction": "限制",
+ "restrictionLowerCase": "限制",
+ "restrictionType": "Restriction type",
+ "selectType": "选择限制类型",
+ "selectValidation": "请选择平台",
+ "typeHint": "选择“设备类型限制”可限制设备属性。选择“设备限制”可限制每个用户的设备数。",
+ "typeRequired": "必须提供限制类型。",
+ "winPhoneRestrictions": "Windows Phone 限制",
+ "windowsRestrictions": "Windows 限制"
+ },
+ "Titles": {
+ "ChromeOs": {
+ "devices": "Chrome OS 设备"
+ },
+ "ManagedDesktop": {
+ "adminContacts": "管理员联系人",
+ "appPackaging": "应用包",
+ "devices": "设备",
+ "feedback": "反馈",
+ "gettingStarted": "入门",
+ "messages": "消息",
+ "onlineResources": "联机资源",
+ "serviceRequests": "服务请求",
+ "settings": "设置",
+ "tenantEnrollment": "租户注册"
+ },
+ "actions": "对不合规项的操作",
+ "advancedExchangeSettings": "Exchange Online 设置",
+ "advancedThreatProtection": "Microsoft Defender for Endpoint",
+ "allApps": "所有应用",
+ "allDevices": "所有设备",
+ "androidFotaDeployments": "Android FOTA 部署",
+ "appBundles": "应用程序包",
+ "appCategories": "应用类别",
+ "appConfigPolicies": "应用配置策略",
+ "appInstallStatus": "应用安装状态",
+ "appLicences": "应用许可证",
+ "appProtectionPolicies": "应用保护策略",
+ "appProtectionStatus": "应用保护状态",
+ "appSelectiveWipe": "应用选择性擦除",
+ "appleVppTokens": "Apple VPP 令牌",
+ "apps": "应用",
+ "assign": "分配",
+ "assignedPermissions": "分配的权限",
+ "assignedRoles": "分配的角色",
+ "autopilotDeploymentReport": "Autopilot 部署(预览)",
+ "brandingAndCustomization": "自定义",
+ "cartProfiles": "匣配置文件",
+ "certificateConnectors": "证书连接器",
+ "chromeEnterprise": "Chrome Enterprise",
+ "compliancePolicies": "符合性策略",
+ "complianceScriptManagement": "脚本",
+ "complianceScriptManagementPreview": "脚本(预览)",
+ "complianceSettings": "合规性策略设置",
+ "conditionStatements": "条件语句",
+ "conditions": "位置",
+ "configMgr": "Microsoft Endpoint Configuration Manager",
+ "configurationProfiles": "配置文件",
+ "configurationProfilesPreview": "配置文件(预览)",
+ "connectorsAndTokens": "连接器和令牌",
+ "corporateDeviceIdentifiers": "公司设备标识符",
+ "customAttributes": "自定义属性",
+ "customNotifications": "自定义通知",
+ "deploymentSettings": "部署设置",
+ "derivedCredentials": "派生凭据",
+ "deviceActions": "设备操作",
+ "deviceCategories": "设备类别",
+ "deviceCleanUp": "设备清理规则",
+ "deviceEnrollmentManagers": "设备注册管理员",
+ "deviceExecutionStatus": "设备状态",
+ "deviceLimitEnrollmentRestrictions": "注册设备限制",
+ "deviceTypeEnrollmentRestrictions": "注册设备平台限制",
+ "devices": "设备",
+ "discoveredApps": "已发现的应用",
+ "embeddedSIM": "eSIM 手机网络配置文件(预览)",
+ "enrollDevices": "注册设备",
+ "enrollmentFailures": "注册失败",
+ "enrollmentNotifications": "注册通知(预览版)",
+ "enrollmentRestrictions": "注册限制",
+ "exchangeActiveSync": "Exchange ActiveSync ",
+ "exchangeServiceConnectors": "Exchange 服务连接器",
+ "failuresForFeatureUpdates": "功能更新失败(预览)",
+ "failuresForQualityUpdates": "Windows 加急更新失败(预览版)",
+ "featureFlighting": "功能外部测试",
+ "featureUpdateDeployments": "Windows 10 及更高版本的功能更新(预览版)",
+ "flighting": "外部测试",
+ "fotaUpdate": "无线固件更新",
+ "groupPolicy": "管理模板",
+ "groupPolicyAnalytics": "组策略分析",
+ "helpSupport": "帮助和支持",
+ "helpSupportReplacement": "帮助和支持({0})",
+ "iOSAppProvisioning": "iOS 应用预配配置文件",
+ "incompleteUserEnrollments": "部分用户注册",
+ "intuneRemoteAssistance": "远程帮助(预览版)",
+ "iosUpdates": "更新 iOS/iPadOS 的策略",
+ "legacyPcManagement": "旧式电脑管理",
+ "macOSSoftwareUpdate": "更新 macOS 的策略",
+ "macOSSoftwareUpdateAccountSummaries": "macOS 设备的安装状态",
+ "macOSSoftwareUpdateCategorySummaries": "软件更新摘要",
+ "macOSSoftwareUpdateStateSummaries": "更新",
+ "managedGooglePlay": "托管的 Google Play",
+ "msfb": "适用于企业的 Microsoft Store",
+ "myPermissions": "我的权限",
+ "notifications": "通知",
+ "officeApps": "Office 应用",
+ "officeProPlusPolicies": "Office 应用策略",
+ "onPremise": "本地",
+ "onPremisesConnector": "Exchange ActiveSync 本地连接器",
+ "onPremisesDeviceAccess": "Exchange ActiveSync 设备",
+ "onPremisesManageAccess": "Exchange 内部部署访问权限",
+ "outOfDateIosDevices": "iOS 设备安装失败",
+ "overview": "概述",
+ "partnerDeviceManagement": "合作伙伴设备管理",
+ "perUpdateRingDeploymentState": "每个更新策略的部署状态",
+ "permissions": "权限",
+ "platformApps": "{0} 个应用",
+ "platformDevices": "{0} 台设备",
+ "platformEnrollment": "{0} 注册",
+ "policies": "策略",
+ "previewMDMDevices": "所有托管设备(预览)",
+ "profiles": "配置文件",
+ "properties": "属性",
+ "reports": "报告",
+ "retireNoncompliantDevices": "停用不相容设备",
+ "retireNoncompliantDevicesPreview": "Retire noncompliant devices (preview)",
+ "role": "角色",
+ "scriptManagement": "脚本",
+ "securityBaselines": "安全基线",
+ "serviceToServiceConnector": "Exchange Online 连接器",
+ "shellScripts": "Shell 脚本",
+ "teamViewerConnector": "TeamViewer 连接器",
+ "telecomeExpenseManagement": "电信费用管理",
+ "tenantAdmin": "租户管理员",
+ "tenantAdministration": "租户管理",
+ "termsAndConditions": "条款和条件",
+ "titles": "标题",
+ "troubleshootSupport": "疑难解答 + 支持",
+ "user": "用户",
+ "userExecutionStatus": "用户状态",
+ "warranty": "保修供应商",
+ "wdacSupplementalPolicies": "S 模式补充策略",
+ "windows10DriverUpdate": "Windows 10 及更高版本的功能更新(预览)",
+ "windows10QualityUpdate": "Windows 10 及更高版本的质量更新(预览版)",
+ "windows10UpdateRings": "Windows 10 及更高版本的更新通道",
+ "windows10XPolicyFailures": "Windows 10X 策略失败",
+ "windowsEnterpriseCertificate": "Windows Enterprise 证书",
+ "windowsManagement": "PowerShell 脚本",
+ "windowsSideLoadingKeys": "Windows 边载密钥",
+ "windowsSymantecCertificate": "Windows DigiCert 证书",
+ "windowsThreatReport": "威胁代理状态"
+ },
+ "ScopeTypes": {
+ "allDevices": "所有设备",
+ "allUsers": "所有用户",
+ "allUsersAndDevices": "所有用户和所有设备",
+ "selectedGroups": "选择的组"
+ },
+ "OfficeApplicationType": {
+ "access": "Access",
+ "bing": "默认使用 Microsoft 搜索",
+ "excel": "Excel",
+ "groove": "OneDrive (Groove)",
+ "lync": "Skype for Business",
+ "oneDrive": "OneDrive 桌面版",
+ "oneNote": "OneNote",
+ "outlook": "Outlook",
+ "powerPoint": "PowerPoint",
+ "publisher": "Publisher",
+ "teams": "Teams",
+ "word": "Word"
+ },
+ "ApplicableDeviceType": {
+ "iPad": "iPad",
+ "iPhoneAndIPod": "iPhone 和 iPod"
+ },
+ "Assignment": {
+ "AutoUpdateMode": {
+ "default": "默认",
+ "header": "更新优先级",
+ "postponed": "推迟",
+ "priority": "高优先级"
+ },
+ "DeliveryOptimizationPriority": {
+ "backgroundNormal": "背景",
+ "displayText": "{0} 中的内容下载",
+ "foreground": "前景",
+ "header": "传递优化优先级"
+ },
+ "RestartGracePeriod": {
+ "allowSnooze": "允许用户推迟重启通知",
+ "countdownDialog": "选择在重启前多久显示重启倒计时对话框(分钟)",
+ "durationInMinutes": "设备重启宽限期(分钟)",
+ "snoozeDurationInMinutes": "选择推迟时间(分钟)"
+ },
+ "SoftwareInstallationTime": {
+ "TimeZone": {
+ "label": "时区",
+ "local": "设备时区",
+ "utc": "UTC"
+ },
+ "dateAndTimeLabel": "日期和时间",
+ "deadlineTimeColumnLabel": "安装截止时间",
+ "deadlineTimeDatePickerErrorMessage": "所选日期必须晚于空闲日期",
+ "deadlineTimeLabel": "应用安装截止时间",
+ "defaultTime": "尽快",
+ "infoText": "此应用程序部署后将立即可用,除非你在下面指定一个可用性时间。如果这是必需应用程序,则可指定安装截止日期。",
+ "specificTime": "具体日期和时间",
+ "startTimeColumnLabel": "可用性",
+ "startTimeDatePickerErrorMessage": "所选日期必须早于截止日期",
+ "startTimeLabel": "应用可用性"
+ },
+ "restartGracePeriodHeader": "重启宽限期",
+ "restartGracePeriodLabel": "设备重启宽限期",
+ "summaryTitle": "最终用户体验"
+ },
+ "EnrollmentType": {
+ "devicesWithEnrollment": "托管设备",
+ "devicesWithoutEnrollment": "托管应用"
+ },
+ "PolicySet": {
+ "appManagement": "应用程序管理",
+ "assignments": "分配",
+ "basics": "基本",
+ "deviceEnrollment": "设备注册",
+ "deviceManagement": "设备管理",
+ "scopeTags": "作用域标签",
+ "appConfigurationTitle": "应用配置策略",
+ "appProtectionTitle": "应用保护策略",
+ "appTitle": "应用",
+ "iOSAppProvisioningTitle": "iOS 应用预配配置文件",
+ "deviceLimitRestrictionTitle": "设备极限限制",
+ "deviceTypeRestrictionTitle": "设备类型限制",
+ "enrollmentStatusSettingTitle": "注册状态页",
+ "windowsAutopilotDeploymentProfileTitle": "Windows autopilot 部署配置文件",
+ "deviceComplianceTitle": "设备符合性策略",
+ "deviceConfigurationTitle": "设备配置文件",
+ "powershellScriptTitle": "PowerShell 脚本"
+ },
+ "AzureIAMCommon": {
+ "CountryNames": {
+ "countryNameNR": "瑙鲁",
+ "countryNameBH": "巴林",
+ "countryNameZA": "南非",
+ "countryNameJO": "约旦",
+ "countryNameSD": "苏丹",
+ "countryNameNU": "纽埃",
+ "countryNameCZ": "捷克共和国",
+ "countryNameLT": "立陶宛",
+ "countryNameTK": "托克劳",
+ "countryNameEC": "厄瓜多尔",
+ "countryNameVU": "瓦努阿图",
+ "countryNameUG": "乌干达",
+ "countryNameLI": "列支敦士登",
+ "countryNameHK": "香港特别行政区",
+ "countryNameGH": "加纳",
+ "countryNameSA": "沙特阿拉伯",
+ "countryNamePG": "巴布亚新几内亚",
+ "countryNameBW": "博茨瓦纳",
+ "countryNameDG": "迪戈加西亚",
+ "countryNameIN": "印度",
+ "countryNameHN": "洪都拉斯",
+ "countryNameRO": "罗马尼亚",
+ "countryNameKZ": "哈萨克斯坦",
+ "countryNameLC": "圣卢西亚岛",
+ "countryNameGE": "格鲁吉亚",
+ "countryNameTT": "特立尼达和多巴哥",
+ "countryNameMP": "北马里亚纳群岛",
+ "countryNameMV": "马尔代夫",
+ "countryNameFI": "芬兰",
+ "countryNameNO": "挪威",
+ "countryNameEE": "爱沙尼亚",
+ "countryNameVE": "委内瑞拉",
+ "countryNameUZ": "乌兹别克斯坦",
+ "countryNameME": "黑山",
+ "countryNameTJ": "塔吉克斯坦",
+ "countryNameAW": "阿鲁巴",
+ "countryNameFR": "法国",
+ "countryNameOM": "阿曼",
+ "countryNameAO": "安哥拉",
+ "countryNameIT": "意大利",
+ "countryNameAZ": "阿塞拜疆",
+ "countryNameKG": "吉尔吉斯斯坦",
+ "countryNameWF": "瓦利斯和富图纳",
+ "countryNameTL": "东帝汶",
+ "countryNameFK": "福克兰群岛(马尔维纳斯群岛)",
+ "countryNameGY": "圭亚那",
+ "countryNameSS": "南苏丹",
+ "countryNameMM": "缅甸",
+ "countryNameHT": "海地",
+ "countryNameSY": "叙利亚",
+ "countryNameMD": "摩尔多瓦",
+ "countryNameVC": "圣文森特和格林纳丁斯",
+ "countryNameID": "印度尼西亚",
+ "countryNameRE": "留尼汪岛",
+ "countryNameER": "厄立特里亚",
+ "countryNameMK": "北马其顿",
+ "countryNameTG": "多哥",
+ "countryNamePF": "法属波利尼西亚",
+ "countryNameKY": "开曼群岛",
+ "countryNameIO": "不列颠印度洋属土",
+ "countryNameRU": "俄罗斯",
+ "countryNameMA": "摩洛哥",
+ "countryNameAU": "澳大利亚",
+ "countryNameBO": "玻利维亚",
+ "countryNameVA": "梵蒂冈(教区)",
+ "countryNameVG": "英属维尔京群岛",
+ "countryNameFM": "密克罗尼西亚",
+ "countryNameAQ": "南极洲",
+ "countryNameZM": "赞比亚",
+ "countryNameBR": "巴西",
+ "countryNameIS": "冰岛",
+ "countryNamePE": "秘鲁",
+ "countryNameBG": "保加利亚",
+ "countryNamePR": "波多黎各",
+ "countryNameGI": "直布罗陀",
+ "countryNameBS": "巴哈马",
+ "countryNameJE": "泽西",
+ "countryNameMO": "澳门特别行政区",
+ "countryNameRW": "卢旺达",
+ "countryNameAS": "美属萨摩亚",
+ "countryNameBQ": "博内尔岛、圣尤斯特歇斯和萨巴岛",
+ "countryNameMF": "圣马丁岛",
+ "countryNameTM": "土库曼斯坦",
+ "countryNameML": "马里",
+ "countryNameTO": "汤加",
+ "countryNameNC": "新喀里多尼亚",
+ "countryNameAC": "阿森松岛",
+ "countryNameBN": "文莱",
+ "countryNameBD": "孟加拉国",
+ "countryNameMW": "马拉维",
+ "countryNameGM": "冈比亚",
+ "countryNameGA": "加蓬",
+ "countryNameCA": "加拿大",
+ "countryNameSH": "圣赫勒拿",
+ "countryNameYT": "马约特岛",
+ "countryNameMN": "蒙古",
+ "countryNamePA": "巴拿马",
+ "countryNameCM": "喀麦隆",
+ "countryNameNE": "尼日尔",
+ "countryNameCW": "库拉索岛",
+ "countryNameJP": "日本",
+ "countryNameCY": "塞浦路斯",
+ "countryNameCD": "刚果民主共和国",
+ "countryNameTN": "突尼斯",
+ "countryNameTR": "土耳其",
+ "countryNameWS": "萨摩亚",
+ "countryNameSE": "瑞典",
+ "countryNameXK": "科索沃",
+ "countryNameKH": "柬埔寨",
+ "countryNamePL": "波兰",
+ "countryNameDZ": "阿尔及利亚",
+ "countryNameLR": "利比里亚",
+ "countryNameSO": "索马里",
+ "countryNameDM": "多米尼加",
+ "countryNameEG": "埃及",
+ "countryNameGF": "法属圭亚那",
+ "countryNameNZ": "新西兰",
+ "countryNamePS": "巴勒斯坦民族权力机构",
+ "countryNameIL": "以色列",
+ "countryNameSL": "塞拉利昂",
+ "countryNameGR": "希腊",
+ "countryNameNG": "尼日尼亚",
+ "countryNameMR": "毛里塔尼亚",
+ "countryNameVI": "美属维尔京群岛",
+ "countryNameGQ": "赤道几内亚",
+ "countryNameMX": "墨西哥",
+ "countryNameDJ": "吉布提",
+ "countryNameGN": "几内亚",
+ "countryNameCN": "中国",
+ "countryNameMZ": "莫桑比克",
+ "countryNameBV": "布维岛",
+ "countryNameNF": "诺福克岛",
+ "countryNameTZ": "坦桑尼亚",
+ "countryNameAI": "安圭拉岛",
+ "countryNameGS": "南乔治亚和南桑德威奇群岛",
+ "countryNameRS": "塞尔维亚",
+ "countryNameCC": "科科斯群岛(基灵群岛)",
+ "countryNameNA": "纳米比亚",
+ "countryNameDE": "德国",
+ "countryNameCG": "刚果共和国",
+ "countryNameKW": "科威特",
+ "countryNameMH": "马绍尔群岛",
+ "countryNameVN": "越南",
+ "countryNameBY": "白俄罗斯",
+ "countryNameMY": "马来西亚",
+ "countryNameST": "圣多美和普林西比",
+ "countryNameLS": "莱索托",
+ "countryNameBI": "布隆迪",
+ "countryNameTD": "乍得",
+ "countryNameCX": "圣诞岛",
+ "countryNameIR": "伊朗",
+ "countryNameTV": "图瓦卢",
+ "countryNameGW": "几内亚比绍",
+ "countryNameUA": "乌克兰",
+ "countryNameCU": "古巴",
+ "countryNameCO": "哥伦比亚",
+ "countryNameNI": "尼加拉瓜",
+ "countryNameHR": "克罗地亚",
+ "countryNameSC": "塞舌尔",
+ "countryNameNL": "荷兰",
+ "countryNameUM": "美国本土外小岛屿",
+ "countryNameIM": "马恩岛",
+ "countryNameFJ": "斐济",
+ "countryNameSR": "苏里南",
+ "countryNameGT": "危地马拉",
+ "countryNameSM": "圣马力诺",
+ "countryNameLA": "老挝",
+ "countryNameGB": "英国",
+ "countryNameBB": "巴巴多斯",
+ "countryNameSI": "斯洛文尼亚",
+ "countryNameAM": "亚美尼亚",
+ "countryNameAR": "阿根廷",
+ "countryNamePM": "圣皮埃尔和密克隆群岛",
+ "countryNameTF": "法国南部和安塔克提克地区",
+ "countryNameDO": "多米尼加共和国",
+ "countryNameZW": "津巴布韦",
+ "countryNameMQ": "马提尼克岛",
+ "countryNamePT": "葡萄牙",
+ "countryNameCF": "中非共和国",
+ "countryNameBE": "比利时",
+ "countryNameKM": "科摩罗",
+ "countryNameLY": "利比亚",
+ "countryNameIE": "爱尔兰",
+ "countryNameKP": "朝鲜民主主义人民共和国",
+ "countryNameGG": "格恩西",
+ "countryNameSK": "斯洛伐克",
+ "countryNameTC": "特克斯群岛和凯科斯群岛",
+ "countryNameNP": "尼泊尔",
+ "countryNameBF": "布基纳法索",
+ "countryNameYE": "也门",
+ "countryNameBA": "波斯尼亚和黑塞哥维那",
+ "countryNameGP": "瓜德罗普",
+ "countryNameMS": "蒙特塞拉特",
+ "countryNameCL": "智利",
+ "countryNameIQ": "伊拉克",
+ "countryNameSJ": "斯瓦尔巴岛和扬马延岛",
+ "countryNameAX": "奥兰群岛",
+ "countryNameKE": "肯尼亚",
+ "countryNameGU": "关岛",
+ "countryNameBM": "百慕大群岛",
+ "countryNameFO": "法罗群岛",
+ "countryNameBL": "圣巴泰勒米",
+ "countryNameLB": "黎巴嫩",
+ "countryNameJM": "牙买加",
+ "countryNameAF": "阿富汗",
+ "countryNameES": "西班牙",
+ "countryNameMC": "摩纳哥",
+ "countryNameSG": "新加坡",
+ "countryNameAL": "阿尔巴尼亚",
+ "countryNameSN": "塞内加尔",
+ "countryNameSZ": "斯威士兰",
+ "countryNameBZ": "伯利兹",
+ "countryNameCI": "科特迪瓦",
+ "countryNameTW": "台湾",
+ "countryNameUY": "乌拉圭",
+ "countryNameCK": "库克群岛",
+ "countryNameTH": "泰国",
+ "countryNameHM": "赫德和麦克唐纳群岛",
+ "countryNameGD": "格林纳达",
+ "countryNameUS": "美国",
+ "countryNameAT": "奥地利",
+ "countryNameKR": "韩国",
+ "countryNamePK": "巴基斯坦",
+ "countryNameDK": "丹麦",
+ "countryNameSV": "萨尔瓦多",
+ "countryNamePW": "帕劳",
+ "countryNameET": "埃塞俄比亚",
+ "countryNameMG": "马达加斯加",
+ "countryNameCR": "哥斯达黎加",
+ "countryNameLU": "卢森堡",
+ "countryNameQA": "卡塔尔",
+ "countryNameBT": "不丹",
+ "countryNameSB": "所罗门群岛",
+ "countryNameAE": "阿拉伯联合酋长国",
+ "countryNameAD": "安道尔",
+ "countryNameCV": "佛得角",
+ "countryNameAG": "安提瓜和巴布达",
+ "countryNameMU": "毛里求斯",
+ "countryNameHU": "匈牙利",
+ "countryNameSX": "圣马丁",
+ "countryNameCH": "瑞士",
+ "countryNamePN": "皮特凯恩群岛",
+ "countryNameGL": "格陵兰",
+ "countryNamePH": "菲律宾",
+ "countryNameMT": "马耳他",
+ "countryNameKN": "圣基茨和尼维斯岛",
+ "countryNameLK": "斯里兰卡",
+ "countryNameKI": "基里巴斯",
+ "countryNameBJ": "贝宁",
+ "countryNameLV": "拉脱维亚",
+ "countryNamePY": "巴拉圭"
+ }
+ }
}
diff --git a/Documentation/Strings-zh-hant.json b/Documentation/Strings-zh-hant.json
index d5eb26e..474a498 100644
--- a/Documentation/Strings-zh-hant.json
+++ b/Documentation/Strings-zh-hant.json
@@ -1,1842 +1,4 @@
{
- "InstallContextType": {
- "device": "裝置",
- "deviceContext": "裝置內容",
- "user": "使用者",
- "userContext": "使用者內容"
- },
- "WipPolicySettings": {
- "addNetworkBoundary": "新增網路界限",
- "addNetworkBoundaryButton": "新增網路界限...",
- "allowWindowsSearch": "允許 Windows Search 搜尋已加密的公司資料與市集應用程式",
- "authoritativeIpRanges": "企業 IP 範圍清單具權威性 (不會自動偵測)",
- "authoritativeProxyServers": "企業 Proxy 伺服器清單具權威性 (不會自動偵測)",
- "boundaryType": "界限類型",
- "cloudResources": "雲端資源",
- "corporateIdentity": "公司身分識別",
- "dataRecoveryCert": "上傳資料修復代理 (DRA) 憑證以允許復原已加密的資料",
- "editNetworkBoundary": "編輯網路界限",
- "enrollmentState": "註冊狀態",
- "iPv4Ranges": "IPv4 範圍",
- "iPv6Ranges": "IPv6 範圍",
- "internalProxyServers": "內部 Proxy 伺服器",
- "maxInactivityTime": "在裝置閒置後允許的最大時間長度 (分鐘),之後裝置會以 PIN 或密碼鎖定",
- "maxPasswordAttempts": "允許的驗證失敗次數,之後會抹除裝置",
- "mdmDiscoveryUrl": "MDM 探索 URL",
- "mdmRequiredSettingsInfo": "此原則僅適用於 Windows 10 年度更新版及更高版本。此原則使用 Windows 資訊保護 (WIP) 來進行保護。",
- "minimumPinLength": "設定 PIN 所需的最小字元數",
- "name": "名稱",
- "networkBoundariesGridEmptyText": "所有新增的網路界限皆會顯示於此",
- "networkBoundary": "網路界限",
- "networkDomainNames": "網路網域",
- "neutralResources": "中性資源",
- "passportForWork": "使用 Windows Hello 企業版作為登入 Windows 的方法",
- "pinExpiration": "指定可以使用 PIN 的時間長度 (天),之後系統會要求使用者予以變更",
- "pinHistory": "指定可與使用者帳戶相關聯但不可重複使用先前用過的 PIN 數目",
- "pinLowercaseLetters": "設定 Windows Hello 企業版 PIN 中的小寫字母用法",
- "pinSpecialCharacters": "設定 Windows Hello 企業版 PIN 中的特殊字元用法",
- "pinUppercaseLetters": "設定 Windows Hello 企業版 PIN 中的大寫字母用法",
- "protectUnderLock": "防止 App 在裝置鎖定時存取公司資料。只適用於 Windows 10 行動裝置版",
- "protectedDomainNames": "受保護的網域",
- "proxyServers": "Proxy 伺服器",
- "requireAppPin": "當裝置 PIN 受管理時,停用應用程式 PIN",
- "requiredSettings": "必要設定",
- "requiredSettingsInfo": "變更範圍或移除此原則會將公司資料解密。",
- "revokeOnMdmHandoff": "在裝置註冊 MDM 時撤銷對受保護資料的存取權",
- "revokeOnUnenroll": "取消註冊時一併撤銷加密金鑰",
- "rmsTemplateForEdp": "指定要用於 Azure RMS 的範本識別碼",
- "showWipIcon": "顯示企業資料保護圖示",
- "type": "類型",
- "useRmsForWip": "將 Azure RMS 用於 WIP",
- "value": "值",
- "weRequiredSettingsInfo": "此原則僅適用於 Windows 10 Creators Update 及更高版本。此原則使用 Windows 資訊保護 (WIP) 與 Windows MAM 來進行保護。",
- "wipProtectionMode": "Windows 資訊保護模式",
- "withEnrollment": "有註冊",
- "withoutEnrollment": "沒有註冊"
- },
- "EdgeAppConfig": {
- "AllowedURLs": {
- "title": "允許的 URL",
- "tooltip": "指定會在您使用者處於工作內容時允許的網站。所有其他網站將受到封鎖。您可以選擇設定允許/封鎖清單,但無法同時設定兩者。"
- },
- "ApplicationProxyRedirection": {
- "header": "應用程式 Proxy",
- "title": "應用程式 Proxy 重新導向",
- "tooltip": "啟用應用程式 Proxy 重新導向,能讓使用者存取公司連結和內部部署 Web 應用程式。"
- },
- "BlockedURLs": {
- "title": "封鎖的 URL",
- "tooltip": "指定會在您使用者處於工作內容時封鎖的網站。所有其他網站將不受封鎖。您可以選擇設定允許/封鎖清單,但無法同時設定兩者。"
- },
- "Bookmarks": {
- "header": "受控書籤",
- "tooltip": "請輸入已加入書籤的 URL 清單,供您的使用者在其工作內容中使用 Microsoft Edge 時利用。",
- "uRL": "URL"
- },
- "HomepageURL": {
- "header": "受控首頁",
- "title": "首頁捷徑 URL",
- "tooltip": "設定首頁捷徑,當使用者在 Microsoft Edge 中開啟新的索引標籤時,這會是他們在搜尋列下方看見的第一個圖示。"
- },
- "PersonalContext": {
- "label": "將受限制網站重新導向至個人內容",
- "tooltip": "設定是否應允許使用者將他們的個人內容轉換至開放的受限網站。"
- }
- },
- "AzureIAM": {
- "AdrsUserActionSelectionWarning": {
- "conditions": "需要裝置註冊的條件無法用於「註冊或聯結裝置」使用者動作。",
- "message": "「註冊或加入裝置」使用者動作所建立的原則中,只可使用「需要多重要素驗證」。{0}"
- },
- "AuthContext": {
- "Included": {
- "none": "未選取任何雲端應用程式、動作或驗證內容",
- "plural": "已包含 {0} 個驗證內容",
- "singular": "已包含 1 個驗證內容"
- },
- "InfoBlade": {
- "createTitle": "新增驗證內容",
- "descPlaceholder": "新增驗證內容的描述",
- "modifyTitle": "修改驗證內容",
- "namePlaceholder": "例如,信任的位置、信任的裝置、強式授權",
- "publishDesc": "發佈至應用程式後,應用程式即可使用驗證內容。請在完成設定標籤的條件式存取原則後,進行發佈。[深入了解][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150966",
- "publishLabel": "發佈至應用程式",
- "titleDesc": "設定將會用於保護應用程式資料與動作的驗證內容。請使用應用程式系統管理員可理解的名稱與描述。[深入了解][1]\n[1]:https://go.microsoft.com/fwlink/?linkid=2150965"
- },
- "Notify": {
- "failure": "無法更新 {0}",
- "modifying": "正在修改 {0}",
- "success": "已成功更新 {0}"
- },
- "WhatIf": {
- "selected": "包含驗證內容"
- },
- "addNewStepUp": "新增驗證內容",
- "checkBoxInfo": "選取要套用此原則的驗證內容",
- "configure": "設定驗證內容",
- "createCA": "對驗證內容指派條件式存取原則",
- "dataGrid": "驗證內容清單",
- "description": "描述",
- "documentation": "文件",
- "getStarted": "開始",
- "label": "驗證內容 (預覽)",
- "menuLabel": "驗證內容 (預覽)",
- "name": "名稱",
- "noAuthContextSet": "沒有驗證內容",
- "noData": "沒有驗證內容可顯示",
- "selectionInfo": "驗證內容可用於保護 SharePoint 及 Microsoft Cloud App Security 應用程式中的應用程式資料及動作。",
- "step": "步驟",
- "tabDescription": "管理驗證內容,以保護您應用程式中的資料與動作。[深入了解][1]\n[1]:https://go.microsoft.com/fwlink/?linkid=2150965",
- "tagResources": "標記具有驗證內容的資源"
- },
- "AuthenticationStrength": {
- "Mode": {
- "deviceBasedPush": "Microsoft Authenticator (手機登入)",
- "deviceBasedPushFido2X509Certificate": "Microsoft Authenticator (手機登入) + Fido 2 + 憑證式驗證",
- "deviceBasedPushX509CertificateSingleFactor": "Microsoft Authenticator (手機登入) + Fido 2 + 憑證式驗證 (單一要素)",
- "email": "以電子郵件寄送一次性密碼",
- "emailOtp": "電子郵件 OTP",
- "federatedMultiFactor": "同盟多重要素",
- "federatedSingleFactor": "同盟單一要素",
- "federatedSingleFactorFederatedMultiFactor": "同盟單一要素 + 同盟多重要素",
- "fido2": "FIDO 2 安全性金鑰",
- "fido2X509CertificateSingleFactor": "FIDO 2 安全性金鑰 + 憑證式驗證 (單一要素)",
- "hardwareOath": "硬體 OTP",
- "hardwareOathX509CertificateSingleFactor": "硬體 OTP + 憑證式驗證 (單一要素)",
- "microsoftAuthenticatorPSIX509CertificateSingleFactor": "Microsoft Authenticator (手機登入) + 憑證式驗證 (單一要素)",
- "microsoftAuthenticatorPsi": "Microsoft Authenticator (手機登入)",
- "microsoftAuthenticatorPush": "Microsoft Authenticator (推播通知)",
- "microsoftAuthenticatorPushX509CertificateSingleFactor": "Microsoft Authenticator (推播通知) + 憑證式驗證 (單一要素)",
- "none": "無",
- "password": "密碼",
- "passwordDeviceBasedPush": "密碼 + Microsoft Authenticator (手機登入)",
- "passwordFido2": "密碼 + FIDO 2 安全性金鑰",
- "passwordHardwareOath": "密碼 + 硬體 OTP",
- "passwordMicrosoftAuthenticatorPSI": "密碼 + Microsoft Authenticator (手機登入)",
- "passwordMicrosoftAuthenticatorPush": "密碼 + Microsoft Authenticator (推播通知)",
- "passwordSms": "密碼 + 簡訊",
- "passwordSoftwareOath": "密碼 + 軟體 OTP",
- "passwordTemporaryAccessPassMultiUse": "密碼 + 暫時存取密碼 (多次使用)",
- "passwordTemporaryAccessPassOneTime": "密碼 + 臨時存取密碼 (單次使用)",
- "passwordVoice": "密碼 + 語音",
- "sms": "簡訊",
- "smsSignIn": "簡訊登入",
- "smsX509CertificateSingleFactor": "簡訊 + 憑證式驗證 (單一要素)",
- "softwareOath": "軟體 OTP",
- "softwareOathX509CertificateSingleFactor": "軟體 OTP + 憑證式驗證 (單一要素)",
- "temporaryAccessPassMultiUse": "臨時存取密碼 (多次使用)",
- "temporaryAccessPassMultiUseX509CertificateSingleFactor": "臨時存取密碼 (多次使用) + 憑證式驗證 (單一要素)",
- "temporaryAccessPassOneTime": "臨時存取密碼 (單次使用)",
- "temporaryAccessPassOneTimeX509CertificateSingleFactor": "臨時存取密碼 (單次使用) + 憑證式驗證 (單一要素)",
- "voice": "語音",
- "voiceX509CertificateSingleFactor": "語音 + 憑證式驗證 (單一要素)",
- "windowsHelloForBusiness": "Windows Hello 企業版",
- "x509CertificateMultiFactor": "憑證式驗證 (多重要素)",
- "x509CertificateSingleFactor": "憑證式驗證 (單一要素)"
- }
- },
- "CAS": {
- "BuiltinPolicy": {
- "Option": {
- "blockDownloads": "禁止下載 (預覽)",
- "monitorOnly": "僅限監視器 (預覽)",
- "protectDownloads": "保護下載 (預覽)",
- "useCustomControls": "使用自訂原則..."
- },
- "ariaLabel": "選擇要套用的條件式存取應用程式控制種類"
- }
- },
- "ChooseApplications": {
- "Grid": {
- "appIdAria": "應用程式識別碼: {0}"
- },
- "LowerGrid": {
- "ariaLabel": "選取的雲端應用程式清單"
- },
- "UpperGrid": {
- "ariaLabel": "符合搜尋字詞的雲端應用程式清單"
- }
- },
- "ChooseLocations": {
- "Validation": {
- "failed": "在 [選取的位置] 中,您必須至少選擇一個位置。",
- "selector": "至少選擇一個位置"
- }
- },
- "ClientApp": {
- "Clients": {
- "Validation": {
- "failed": "您至少必須選取下列其中一個用戶端"
- }
- }
- },
- "ClientConditionsInfo": {
- "browserAndModern": "此原則僅適用於瀏覽器和新式驗證應用程式。若要將原則套用至所有用戶端應用程式,請啟用用戶端應用程式條件,並選取所有用戶端應用程式。",
- "classicExperience": "因為建立了此原則,所以更新了預設的用戶端應用程式設定。",
- "legacyAuth": "若未設定,將會立即對所有用戶端應用程式套用原則,包括新式及傳統驗證。"
- },
- "CloudAppFilterBlade": {
- "AssignmentFilter": {
- "header": "屬性",
- "placeholder": "選擇屬性"
- },
- "Configure": {
- "infoBalloon": "設定要套用原則的應用程式篩選。"
- },
- "NoPermissions": {
- "learnMoreAria": "關於自訂安全性屬性權限的詳細資訊。",
- "message": "您沒有使用自訂安全性屬性所需的權限。"
- },
- "gridHeader": "運用自訂安全性屬性,您可以使用規則建立器或規則語法文字方塊來建立或編輯篩選規則。在預覽中,只支援類型 String 的屬性。將不會顯示類型 Integer 或 Boolean 的屬性。",
- "learnMoreAria": "關於使用規則產生器和語法文字方塊的詳細資訊。",
- "noAttributes": "沒有可供篩選的自訂屬性。您必須設定一些屬性才可使用此篩選。",
- "title": "Edit filter (Preview)"
- },
- "CloudAppsUserActions": {
- "any": "任何雲端應用程式或動作",
- "infoBalloon": "您要測試的雲端應用程式或使用者動作。例如 ' SharePoint Online'",
- "learnMore": "利用所有或特定的雲端應用程式或動作控制存取。",
- "learnMoreB2C": "控制對所有或特定雲端應用程式的存取權。",
- "title": "雲端應用程式或動作"
- },
- "CloudappsSelectionBlade": {
- "Excluded": {
- "gridAria": "排除的雲端應用程式清單"
- },
- "Filter": {
- "configured": "已設定",
- "label": "Edit filter (Preview)",
- "with": "具備 {1} 的 {0}"
- },
- "Included": {
- "gridAria": "包含的雲端應用程式清單"
- },
- "Validation": {
- "authContext": "您至少須為 [驗證內容] 設定一個子項目。",
- "selectApps": "必須設定 \"{0}\"",
- "selector": "至少選取一個應用程式。",
- "userActions": "至少須設定一個子項目,才能使用 [使用者動作]。"
- }
- },
- "DeviceState": {
- "LearnMore": {
- "message": "Control user access when the device the user is signing-in from is not \"Hybrid Azure AD joined\" or \"marked as compliant\".\n '{0}' has been deprecated. Use '{1}' instead."
- }
- },
- "Errors": {
- "notFound": "找不到該原則,或已將其刪除。",
- "notFoundDetailed": "原則 \"{0}\" 已不存在。可能已刪除。"
- },
- "NamedLocation": {
- "Form": {
- "CountryLookup": {
- "ariaLabel": "國家/地區查閱方法",
- "gps": "依 GPS 座標判斷位置",
- "info": "若設定了條件式存取原則的位置條件,Authenticator 應用程式就會提示使用者共用其 GPS 位置。 ",
- "ip": "依 IP 位址判斷位置 (僅 IPv4)"
- },
- "Header": {
- "new": "新增位置 ({0})",
- "update": "更新位置 ({0})"
- },
- "IP": {
- "learn": "設定具名位置 IPv4 與 IPv6 的範圍。\n[深入了解][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
- },
- "Include": {
- "infoBalloon": "未知的國家/地區,是指未與特定國家或地區建立關聯的 IP 位址。[深入了解][1]\n\n這包括下列項目: \n* IPv6 位址\n* 沒有直接對應的 IPv4 位址\n[1]: https://aka.ms/canamedlocations\n",
- "label": "包含未知的國家/地區"
- },
- "Name": {
- "empty": "名稱不得空白",
- "placeholder": "命名此位置"
- },
- "PrivateLink": {
- "learn": "建立新的命名位置,其中包含 Azure AD 的私人連結。\n[深入了解][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
- },
- "Search": {
- "countries": "搜尋國家/地區",
- "names": "搜尋名稱",
- "privateLinks": "搜尋私人連結"
- },
- "Trusted": {
- "label": "標示為信任位置"
- },
- "enter": "輸入新的 IPv4 或 IPv6 範圍",
- "example": "例如: 40.77.182.32/27 或 2a01:111::/32"
- },
- "Label": {
- "addCountries": "國家/地區位置",
- "addIpRange": "IP 範圍位置",
- "addPrivateLink": "Azure 私人連結"
- },
- "Notification": {
- "Create": {
- "Failed": {
- "description": "建立新的位置 ({0}) 失敗",
- "title": "建立失敗"
- },
- "InProgress": {
- "description": "正在建立新的位置 ({0})",
- "title": "建立正在進行中"
- },
- "Success": {
- "description": "建立新的位置 ({0}) 成功",
- "title": "建立成功"
- }
- },
- "Delete": {
- "Failed": {
- "description": "刪除位置 ({0}) 失敗",
- "title": "刪除失敗"
- },
- "InProgress": {
- "description": "正在刪除位置 ({0})",
- "title": "刪除進行中"
- },
- "Success": {
- "description": "刪除位置 ({0}) 成功",
- "title": "刪除成功"
- }
- },
- "Update": {
- "Failed": {
- "description": "更新位置 ({0}) 失敗",
- "title": "更新失敗"
- },
- "InProgress": {
- "description": "正在更新位置 ({0})",
- "title": "正在更新"
- },
- "Success": {
- "description": "更新位置 ({0}) 成功",
- "title": "更新成功"
- }
- }
- },
- "PrivateLinks": {
- "grid": "私人連結清單"
- },
- "Trusted": {
- "title": "信任的類型",
- "trusted": "信任"
- },
- "Type": {
- "all": "所有類型",
- "countries": "國家/地區",
- "ipRanges": "IP 範圍",
- "privateLinks": "私人連結",
- "title": "位置類型"
- },
- "iPRangeInvalidError": "值必須是有效的 IPv4 或 IPv6 範圍。",
- "iPRangeLinkOrSiteLocalError": "偵測到 IP 網路為本機連結或網站本機位址。",
- "iPRangeOctetError": "IP 網路不能以 0 或 255 開頭。",
- "iPRangePrefixError": "IP 網路首碼必須介於 /{0} 到 /{1} 之間。",
- "iPRangePrivateError": "偵測到 IP 網路為私人位址。"
- },
- "Policies": {
- "Grid": {
- "aria": "條件式存取原則清單"
- },
- "countText": "找到 {0} 個原則,共 {1} 個",
- "countTextSingular": "找到 {0} 個原則,共 1 個",
- "search": "搜尋原則"
- },
- "Policy": {
- "Condition": {
- "ServicePrincipalRisk": {
- "description": "設定實施原則所需的服務主體風險層級",
- "infoBalloonContent": "設定服務主體風險,以將原則套用至選取的風險層級",
- "title": "服務主體風險"
- }
- }
- },
- "PolicyControlAuthStrength": {
- "MultiFactorAuthentication": {
- "description": "滿足增強式驗證的方法組合,例如密碼 + SMS",
- "displayName": "多重要素驗證 (MFA)"
- },
- "Passwordless": {
- "description": "滿足增強式驗證的無密碼方法,例如 Microsoft Authenticator",
- "displayName": "無密碼 MFA"
- },
- "PhishingResistant": {
- "description": "用於最強驗證的防網路釣魚無密碼方法,例如 FIDO2 安全性金鑰",
- "displayName": "防網路釣魚 MFA"
- }
- },
- "PolicyControlFedAuthMethod": {
- "certificate": "憑證驗證",
- "infoBubble": "請指定必要的驗證方法,其必須由 ADFS 等同盟提供者滿足。",
- "multifactor": "多重要素驗證",
- "require": "需要同盟的驗證方法 (預覽)",
- "whatIfFormat": "{0} - {1}"
- },
- "PolicyState": {
- "off": "關閉",
- "on": "開啟",
- "reportOnly": "報告專用"
- },
- "PolicyTemplates": {
- "Devices": {
- "description": "選取 [裝置原則範本] 類別,即可深入了解存取網路的裝置。授與存取前,請先確認合規性和健全狀態。",
- "name": "裝置"
- },
- "Identities": {
- "description": "選取 [身分識別原則範本] 類別,以透過增強式驗證對所有數位資產驗證及保護每個身分識別。",
- "name": "身分識別"
- },
- "Summary": {
- "CloudApps": {
- "allCloudApps": "所有 App",
- "office365": "Office 365",
- "registerSecurityInfo": "登錄安全性資訊"
- },
- "Conditions": {
- "androidAndIOS": "裝置平台: Android 及 IOS",
- "anyDevice": "Android、IOS、Windows 和 Mac 以外的任何裝置",
- "anyDeviceStateExceptHybrid": "相容和已使用混合式 Azure AD 而聯結的裝置以外的任何裝置狀態",
- "anyLocation": "信任位置以外的任何位置",
- "browserMobileDesktop": "用戶端應用程式: 瀏覽器、行動裝置應用程式與電腦用戶端",
- "exchangeActiveSync": "用戶端應用程式: Exchange Active Sync,其他用戶端",
- "windowsAndMac": "裝置平台: Windows 與 Mac"
- },
- "Devices": {
- "anyDevice": "任何裝置"
- },
- "Grant": {
- "appProtectionPolicy": "需要應用程式保護原則",
- "approvedClientApp": "需要經過核准的用戶端應用程式",
- "blockAccess": "封鎖存取",
- "mfa": "需要多重要素驗證",
- "passwordChange": "需要變更密碼",
- "requireCompliantDevice": "裝置需要標記為合規",
- "requireHybridAzureADDevice": "需要已使用混合式 Azure AD 而聯結的裝置"
- },
- "Session": {
- "appEnforcedRestrictions": "使用應用程式強制執行限制",
- "signInFrequency": "登入頻率及永不持續的瀏覽器工作階段"
- },
- "UsersAndGroups": {
- "allUsers": "所有使用者",
- "directoryRoles": "目前系統管理員以外的目錄角色",
- "globalAdmin": "全域系統管理員",
- "noGuestAndAdmins": "來賓及外部、全域系統管理員、目前系統管理員以外的所有使用者"
- },
- "azureManagement": "Azure 管理",
- "deviceFilters": "裝置的篩選",
- "devicePlatforms": "裝置平台"
- },
- "TemplateId": {
- "AppEnforcedRestrictions": {
- "description": "封鎖或限制從非受控裝置存取 SharePoint、OneDrive 和 Exchange 內容。",
- "name": "CA014: 對非受控裝置使用應用程式強制的限制",
- "title": "對非受控裝置使用應用程式強制的限制"
- },
- "ApprovedClientApps": {
- "description": "為了防止資料遺失,組織可使用 Intune 應用程式防護,對核准的新式驗證用戶端應用程式限制存取。",
- "name": "CA012: 需要核准的用戶端應用程式及應用程式防護",
- "title": "需要核准的用戶端應用程式及應用程式防護"
- },
- "BlockAccessOnUnknowns": {
- "description": "當裝置類型不明或不受支援時,將會封鎖使用者存取公司資源。",
- "name": "CA010: 封鎖未知或不受支援裝置平台的存取",
- "title": "封鎖未知或不受支援裝置平台的存取"
- },
- "BlockLegacyAuth": {
- "description": "封鎖可用來跳過多重要素驗證的舊版驗證端點。 ",
- "name": "CA003: 封鎖舊版驗證",
- "title": "封鎖舊版驗證"
- },
- "NoPersistentBrowserSession": {
- "description": "防止瀏覽器工作階段在瀏覽器關閉後保持登入狀態,以及將登入頻率設定為 1 小時,進而保護非受控裝置上的使用者存取。",
- "name": "CA011: 沒有持續瀏覽器工作階段",
- "title": "沒有持續性瀏覽器工作階段"
- },
- "RequireCompliantOrHybridADAdmins": {
- "description": "要求特殊權限系統管理員在使用符合規範或已使用混合式 Azure AD 而聯結的裝置時,才存取資源。",
- "name": "CA009: 系統管理員需要符合規範或已使用混合式 Azure AD 而聯結的裝置",
- "title": "系統管理員需要符合規範或已使用混合式 Azure AD 而聯結的裝置"
- },
- "RequireCompliantOrHybridADAllUsers": {
- "description": "要求使用者使用受控裝置或執行多重要素驗證,以保護公司資源的存取。(僅限 macOS 或 Windows)",
- "name": "CA013: 所有使用者都需要符合規範或已使用混合式 Azure AD 而聯結的裝置或多重要素驗證",
- "title": "所有使用者都需要符合規範或已使用混合式 Azure AD 而聯結的裝置或多重要素驗證"
- },
- "RequireMFAAllUsers": {
- "description": "所有使用者帳戶都需要多重要素驗證,以降低洩露的風險。",
- "name": "CA004: 所有使用者都需要多重要素驗證",
- "title": "所有使用者都需要多重要素驗證"
- },
- "RequireMFAForAdmins": {
- "description": "需要特殊權限系統管理帳戶的多重要素驗證,以降低洩露的風險。此原則將鎖定與安全性預設相同的角色。",
- "name": "CA001: 管理員需要多重要素驗證",
- "title": "管理員需要進行多重要素驗證"
- },
- "RequireMFAForAzureManagement": {
- "description": "需要多重要素驗證,才能保護對 Azure 資源的特殊權限存取。",
- "name": "CA006: Azure 管理需要多重要素驗證",
- "title": "Azure 管理需要多重要素驗證"
- },
- "RequireMFAForGuestAccess": {
- "description": "要求來賓使用者在存取公司資源時執行多重要素驗證。",
- "name": "CA005: 來賓存取需要多重要素驗證",
- "title": "來賓存取需要多重要素驗證"
- },
- "RequireMFAForRiskySignIn": {
- "description": "如果偵測到中度或高度的登入風險,則需要多重要素驗證。(需要 Azure AD Premium 2 授權)",
- "name": "CA007: 風險性登入需要多重要素驗證",
- "title": "風險性登入需要多重要素驗證"
- },
- "RequirePasswordChangeForHighRiskUsers": {
- "description": "如果偵測到使用者風險很高,請要求使用者變更其密碼。(需要 Azure AD Premium 2 授權)",
- "name": "CA008: 高風險使用者需要變更密碼",
- "title": "高風險使用者需要變更密碼"
- },
- "RequireSecurityInfo": {
- "description": "保護使用者註冊 Azure AD 多重要素驗證和自助式密碼的時機和方式。 ",
- "name": "CA002: 保護安全性資訊註冊",
- "title": "保護安全性資訊註冊"
- }
- },
- "TemplateState": {
- "BlockAccessOnUnknowns": {
- "title": "啟用此原則將阻止任何對未知裝置類型的存取,在確認這不會影響使用者前,請考慮使用僅限報表模式。"
- },
- "BlockLegacyAuth": {
- "description": "在確認這不會影響使用者前,請考慮使用僅限報表模式。",
- "title": "啟用此原則將封鎖所有使用者的版驗證。"
- },
- "RequireCompliantOrHybridADAdmins": {
- "Description": {
- "on": "在您確認這不會影響您的特殊權限使用者之前,請考慮從使用僅限報表模式開始。",
- "reportOnly": "處於僅限報表模式且需要相容裝置的原則可能會提示 Mac、iOS 和 Android 上的使用者在原則評定期間選取裝置憑證,即使沒有強制執行裝置合規性。在裝置符合規範之前,可能會重複這些提示。"
- },
- "Title": {
- "on": "除非使用符合規範或已使用混合式 Azure AD 聯結等受控裝置,否則啟用此原則將會防止特殊權限使用者存取。啟用之前,請先確保您已設定合規性原則或已啟用混合式 Azure AD 設定。",
- "reportOnly": "啟用之前,請先確保您已設定合規性原則或已啟用混合式 Azure AD 設定。 "
- }
- },
- "RequireCompliantOrHybridADAllUsers": {
- "Description": {
- "on": "此原則會影響目前登入系統管理員以外的所有使用者。在您確認這不會影響您的使用者之前,請考慮從使用僅限報表模式開始。"
- },
- "Title": {
- "on": "不要將自己鎖定! 請確定您的裝置符合規範、已使用混合式 Azure AD 聯結,或您已設定多重要素驗證。 ",
- "reportOnly": "處於僅限報表模式且需要相容裝置的原則可能會提示 Mac、iOS 和 Android 上的使用者在原則評定期間選取裝置憑證,即使沒有強制執行裝置合規性。在裝置符合規範之前,可能會重複這些提示。"
- }
- },
- "RequireMfa": {
- "description": "如果使用緊急存取帳戶或 Azure AD Connect 同步內部部署物件,則在建立後可能需要將這些帳戶從該原則中排除。"
- },
- "RequireMfaAdmins": {
- "description": "請注意,將自動排除目前系統管理員帳戶,但所有其他帳戶將在原則建立時受到保護。請首先考慮使用僅限報表模式。",
- "title": "請勿將自己鎖於之外而無法使用! 此原則影響 Azure 入口網站。"
- },
- "RequireMfaAllUsers": {
- "description": "在計劃並通知所有使用者此變更前,請考慮僅限報表模式。",
- "title": "啟用此原則將針對所有使用者強制執行多重要素驗證。"
- },
- "RequireSecurityInfo": {
- "description": "請確保根據公司需要檢查設定以保護這些帳戶。",
- "title": "此原則不包括以下使用者和角色: 來賓和外部使用者、全域系統管理員、目前管理員"
- }
- },
- "basics": "基本資料",
- "clientApps": "用戶端應用程式",
- "cloudApps": "雲端應用程式",
- "cloudAppsOrActions": "雲端應用程式或動作 ",
- "conditions": "條件 ",
- "createNewPolicy": "從範本建立新原則 (預覽)",
- "createPolicy": "建立原則",
- "currentUser": "目前的使用者",
- "customizeBuild": "自訂您的組建",
- "customizeTemplate": "根據您要建立的原則類型自訂範本清單",
- "excludedDevicePlatform": "排除的裝置平台",
- "excludedDirectoryRoles": "排除的目錄角色",
- "excludedLocation": "排除的目錄角色",
- "excludedUsers": "排除使用者",
- "grantControl": "授與控制項 ",
- "includeFilteredDevice": "將篩選的裝置包含在原則中",
- "includedDevicePlatform": "包含的裝置平台",
- "includedDirectoryRoles": "包含的目錄角色",
- "includedLocation": "包含的位置",
- "includedUsers": "包含的使用者",
- "legacyAuthenticationClients": "舊版驗證用戶端",
- "namePolicy": "命名您的原則",
- "next": "下一步",
- "policyName": "原則名稱",
- "policyState": "原則狀態",
- "policySummary": "原則摘要",
- "policyTemplate": "原則範本",
- "previous": "上一步",
- "reviewAndCreate": "審核 + 建立",
- "riskLevels": "風險層級",
- "selectATemplate": "選取範本",
- "selectTemplate": "選取範本",
- "selectTemplateCategory": "選取範本類別",
- "selectTemplateRecommendation": "根據您的回應建議下列範本",
- "sessionControl": "工作階段控制項 ",
- "signInFrequency": "登入頻率",
- "signInRisk": "登入風險",
- "template": "範本 ",
- "templateCategory": "範本類別",
- "userRisk": "使用者風險",
- "usersAndGroups": "使用者與群組 ",
- "viewPolicySummary": "檢視原則摘要 "
- },
- "SSM": {
- "MemberSelector": {
- "description": "使用者與群組"
- },
- "Notification": {
- "Migration": {
- "error": "無法將持續性存取評估設定遷移至持續性存取評估原則",
- "inProgress": "遷移持續性存取評估設定",
- "success": "已成功將持續性存取評估設定移轉至條件式存取原則",
- "successDescription": "請前往條件式存取原則,以檢視新建名爲「从CAE 設定建立的 CA 原則」的原則中移轉之設定。"
- },
- "error": "無法更新持續性存取評估設定",
- "inProgress": "正在更新持續性存取評估設定",
- "success": "已成功更新持續性存取評估設定"
- },
- "PreviewOptions": {
- "disable": "停用預覽",
- "enable": "啟用預覽"
- },
- "StrictLocationEnforcement": {
- "infoContent1": "因為網路磁碟分割或 IPv4/IPv6 不相符,所以同一部用戶端裝置上的 Azure AD 與資源提供者,會看到不同的 IP 位址。施行詳細位置將會依據 Azure AD 與資源提供者看到的 IP 位址,施行條件式存取原則。",
- "infoContent2": "為確保最高安全性,建議您在命名位置原則中提供 Azure AD 與資源提供者都可以看到的所有 IP,並開啟「嚴格位置強制」模式。",
- "label": "嚴格施行位置",
- "title": "其他施行模式"
- },
- "bladeTitle": "持續性存取評估",
- "description": "當使用者的存取權移除,或用戶端 IP 位址變更時,持續性存取評估會近即時地自動禁止存取資源與應用程式。",
- "migrateLabel": "移轉",
- "migrationError": "因為發生下列錯誤,移轉失敗: {0}",
- "migrationInfo": "CAE 設定已移動至條件式存取 UX 下,請使用上方的 [遷移] 按鈕進行遷移,並在以後使用條件式存取原則進行設定。按一下這裡可深入了解。",
- "noLicenseMessage": "使用 Azure AD Premium 管理智慧型工作階段管理設定",
- "optionsPickerTitle": "啟用/停用持續性存取評估",
- "upsellInfo": "您不再能變更此頁面上的設定,而且應該捨棄這裡的任何設定。將會遵守您先前的設定。您未來可以在 [條件式存取] 下設定 CAE 設定。按一下這裡以深入了解。"
- },
- "SessionLifetime": {
- "PersistentBrowser": {
- "Error": {
- "notAllApps": "持續性瀏覽器工作階段原則只會在已選取 [所有雲端應用程式] 時正常運作。請更新您的雲端應用程式選取項目。"
- },
- "Option": {
- "always": "一律持續",
- "help": "持續性瀏覽器工作階段可讓使用者在關閉並重新開啟瀏覽器視窗後,仍保持登入。
\n\n- 這項設定會在已選取 [所有雲端應用程式] 時正常運作
\n- 這不會影響權杖存留期或登入頻率設定。
\n- 這會覆寫 [公司商標] 中的 [顯示保持登入的選項] 原則。
\n- [永不持續] 會覆寫任何從同盟驗證服務傳入的持續 SSO 宣告。
\n- [永不持續] 會防止在行動裝置上的應用程式之間及使用者的行動瀏覽器上進行 SSO。
\n",
- "label": "持續性瀏覽器工作階段",
- "never": "永不持續"
- },
- "Warning": {
- "allApps": "持續性瀏覽器工作階段只會在已選取 [所有雲端應用程式] 時正常運作。請變更您的雲端應用程式選取項目。若要深入了解,請按一下這裡。"
- }
- },
- "SignInFrequency": {
- "Aria": {
- "units": "小時或天",
- "value": "頻率"
- },
- "Option": {
- "Day": {
- "plural": "{0} 天",
- "singular": "1 天"
- },
- "Hour": {
- "plural": "{0} 小時",
- "singular": "1 小時"
- },
- "daysOption": "天",
- "everytime": "每次",
- "help": "經過這段時間後,在使用者嘗試存取資源時要求再次登入。預設設定是一段連續 90 天的時間,也就是說,若使用者在電腦上有 90 天以上的時間處於非使用中狀態,系統會在他們之後初次嘗試存取資源時要求重新驗證。",
- "hoursOption": "小時",
- "label": "登入頻率",
- "placeholder": "選取單位"
- }
- },
- "mainOption": "修改工作階段存留期",
- "mainOptionHelp": "設定使用者收到提示的頻率,及瀏覽器工作階段是否會持續。不支援新式驗證通訊協定的應用程式可能無法遵循這些原則。若遇到這種情況,請連絡應用程式開發人員。"
- },
- "SigninRisk": {
- "LearnMore": {
- "message": "針對特定登入風險層級,控制使用者的存取權。"
- }
- },
- "SingleSelectorActive": {
- "failed": "無法載入此資料。",
- "reattempt": "正在載入資料。重試 {0}/{1}。"
- },
- "TimeCondition": {
- "Errors": {
- "both": "「包括」或「排除」時間範圍無效。",
- "daysOfWeek": "{0}請務必指定至少一天的星期幾。",
- "endBeforeStart": "{0}請確定開始日期/時間早於結束日期/時間。",
- "exclude": "「排除」時間範圍無效。",
- "generic": "{0}請確保星期幾和時區都已設定。如果未選取 [全天],則必須設定開始時間和結束時間。",
- "include": "「包括」時間範圍無效。",
- "timeMissing": "{0}請務必指定開始時間和結束時間。",
- "timeZone": "{0}請務必指定時區。",
- "timesAndZone": "{0}請務必設定開始時間、結束時間及時區。"
- }
- },
- "UserActions": {
- "Included": {
- "none": "未選取任何雲端應用程式或動作",
- "plural": "包含 {0} 個使用者動作",
- "singular": "包含 1 個使用者動作"
- },
- "accessRequirement1": "層級 1",
- "accessRequirement2": "層級 2",
- "accessRequirement3": "層級 3",
- "accessRequirementsLabel": "正在存取受保護的應用程式資料",
- "appsActionsAuthTitle": "雲端應用程式、動作或驗證內容",
- "appsOrActionsSelectorInfoBallonText": "已存取的應用程式或使用者動作",
- "appsOrActionsTitle": "雲端應用程式或動作",
- "label": "使用者動作",
- "mainOptionsLabel": "選取此原則的套用對象",
- "registerOrJoinDevices": "註冊或加入裝置",
- "registerSecurityInfo": "登錄安全性資訊",
- "selectionInfo": "選取要套用此原則的動作"
- },
- "UserSelectionBlade": {
- "DirectoryRoles": {
- "ariaLabel": "選擇目錄角色"
- },
- "Excluded": {
- "gridAria": "已排除使用者的清單"
- },
- "Included": {
- "gridAria": "已包含使用者的清單"
- },
- "Validation": {
- "customRoleIncluded": "「目錄角色」包含至少一個自訂角色",
- "customRoleSelected": "已選取至少一個自訂角色",
- "failed": "必須設定 \"{0}\"",
- "roles": "至少選取一個角色",
- "usersGroups": "至少選取一個使用者或群組"
- },
- "learnMore": "根據原則的適用者來控制存取權,例如使用者和群組、工作負載身分、目錄角色或外部來賓。"
- },
- "ValidationResult": {
- "blockEveryonePolicy": "無法設定原則。請檢閱指派與控制項。",
- "invalidApplicationCondition": "選取的雲端應用程式無效",
- "invalidClientTypesCondition": "選取的用戶端應用程式無效",
- "invalidConditions": "未選取指派",
- "invalidControls": "選取的控制項無效",
- "invalidDevicePlatformsCondition": "選取的裝置平台無效",
- "invalidDevicesCondition": "裝置设定無效。可能是「{0}」設定無效。",
- "invalidGrantControlPolicy": "授與控制項無效",
- "invalidLocationsCondition": "選取的位置無效",
- "invalidPolicy": "未選取指派",
- "invalidSessionControlPolicy": "工作階段控制項無效",
- "invalidSignInRisksCondition": "選取的登入風險無效",
- "invalidUserRisksCondition": "選取的使用者風險無效",
- "invalidUsersCondition": "選取的使用者無效",
- "mamPolicyShouldOnlyTargetAndroidOrIosPlatforms": "MAM 原則只能套用到 Android 或 iOS 用戶端平台。",
- "notSupportedCombination": "不支援原則設定。深入了解支援的原則。",
- "pending": "正在驗證原則",
- "requireComplianceEveryonePolicy": "原則設定會要求所有使用者都具備裝置合規性。檢閱選取的指派。",
- "success": "原則有效"
- },
- "VpnCert": {
- "Grid": {
- "aria": "VPN 憑證清單"
- }
- },
- "WarningsInfo": {
- "Controls": {
- "compliantDeviceEnabled": "請勿將自己鎖於之外而無法使用! 請確定您的裝置符合規範。",
- "domainJoinedDeviceEnabled": "請勿將自己鎖於之外而無法使用! 請確定您已使用混合式 Azure AD 而聯結的裝置。",
- "exchangeDisabled": "Exchange ActiveSync 僅支援 [符合規範的裝置] 和 [已核准的用戶端應用程式] 控制項。按一下以深入了解。",
- "exchangeDisabled2": "Exchange ActiveSync 僅支援「符合規範的裝置」、「已核准的用戶端應用程式」以及「符合規範的用戶端應用程」控制項。按一下可深入了解。",
- "notAvailableForSP": "由於在原則指派中選取了 ‘{0}’,因此某些控制項無法使用",
- "requireAuthOrMfa": "'{0}' 無法搭配 '{1}' 使用",
- "requireMfa": "請考慮測試新「{0}」公開預覽",
- "requirePasswordChangeEnabled": "當原則指派給「所有雲端應用程式」時,才可使用 [需要密碼變更]"
- },
- "Policies": {
- "Linux": {
- "devicePlatformsReportOnlyPolicy": "需要合規裝置的僅限報表模式中之原則,會在 macOS、iOS、Android 和 Linux 上提示使用者選取裝置憑證。",
- "excludeDevicePlatforms": "在此原則中排除裝置平台 macOS、iOS、Android 和 Linux。",
- "proceedAnywayDevicePlatforms": "繼續進行選取的設定。檢查裝置是否合規時,macOS、iOS、Android 和 Linux 上的使用者會收到提示。"
- },
- "blockCurrentUserPolicy": "請勿將自己鎖於之外而無法使用! 建議您先將原則套用至少量的使用者,確認其行為符合預期。同時也建議至少將一位系統管理員排除在此原則之外。如此可確保需要進行變時,您仍能存取及更新原則。請檢閱受影響的使用者與應用程式。",
- "devicePlatformsReportOnlyPolicy": "需要合規裝置的僅限報表模式中之原則,會在 macOS、iOS 及 Android 上提示使用者選取裝置憑證。",
- "excludeCurrentUserSelection": "將目前的使用者 {0} 排除在此原則之外。",
- "excludeDevicePlatforms": "在此原則中排除裝置平台 macOS、iOS 及 Android。",
- "proceedAnywayDevicePlatforms": "繼續進行選取的設定。檢查裝置是否合規時,macOS、iOS 及 Android 上的使用者會收到提示。",
- "proceedAnywaySelection": "我了解我的帳戶將會受到這項原則的影響,仍要繼續。"
- },
- "ServicePrincipals": {
- "blockExchange": "選取 Office 365 Exchange Online 也會影響像是 OneDrive 與 Teams 等應用程式。",
- "blockPortal": "請勿將自己鎖於之外而無法使用! 此原則會影響 Azure 入口網站。繼續之前,請先確認您或其他人可以回到入口網站。",
- "blockPortalWithSession": "別限制自己的行動! 此原則會影響 Azure 入口網站。在您繼續前,請先確保您或其他人可回到入口網站。
若您要設定僅會在選取 [所有雲端應用程式] 時正常運作的持續性瀏覽器工作階段原則,請略過此警告。",
- "blockSharePoint": "選取 SharePoint Online 也會影響 Microsoft Teams、Planner、Delve、MyAnalytics 和 Newsfeed 等應用程式。",
- "blockSkype": "選取商務用 Skype 網頁版也會影響 Microsoft Teams。",
- "includeOrExclude": "您可以設定 ‘{0}’ 或 ‘{1}’ 的應用程式篩選,但不能同時設定兩者。",
- "selectAppsNAForSP": "因為在原則指派中選取了 [{0}],所以無法選取個別的雲端應用程式",
- "teamsBlocked": "當 SharePoint Online 和 Exchange Online 等應用程式包含在原則中時,Microsoft Teams 也會受到影響。"
- },
- "Users": {
- "blockAllUsers": "別將自己鎖在外面! 此原則會影響您的所有使用者。建議您先對一小部分使用者套用原則,以確認其行為符合預期。"
- }
- },
- "WhatIf": {
- "Device": {
- "AttributesGrid": {
- "aria": "登入期間所採用裝置上的屬性清單。",
- "infoBalloon": "登入期間所採用裝置上的屬性清單。"
- }
- }
- },
- "advancedTabText": "進階",
- "allCloudAppsErrorBox": "選取 [需要密碼變更] 授與時,必須選取 [所有雲端應用程式]",
- "allDayCheckboxLabel": "全天",
- "allDevicePlatforms": "任何裝置",
- "allGuestUserInfoContent": "包括 Azure AD B2B 來賓,但不包括 SharePoint B2B 來賓",
- "allGuestUserLabel": "所有來賓與外部使用者",
- "allRiskLevelsOption": "所有風險等級",
- "allTrustedLocationLabel": "所有信任的位置",
- "allUserGroupSetSelectorLabel": "選取的所有使用者與群組",
- "allUsersString": "所有使用者",
- "and": "{0} 與 {1}",
- "andWithGrouping": "({0}) 與 {1} ",
- "androidDisplayName": "Android",
- "anyCloudAppSelection": "任何雲端應用程式",
- "appContextOptionInfoContent": "要求的驗證標籤",
- "appContextOptionLabel": "要求的驗證標籤 (預覽)",
- "appContextUriPlaceholder": "範例: uri:contoso.com:level3",
- "appEnforceInfoBubble": "應用程式強制限制可能需要在雲端應用程式內具有額外的管理員設定。該類限制只為對新的工作階段產生效用。",
- "appNotSetSeletorLabel": "已選取 0 個雲端應用程式",
- "applyConditionClientAppInfoBalloonContent": "設定用戶端應用程式,將原則套用至特定用戶端應用程式",
- "applyConditionDevicePlatformInfoBalloonContent": "設定裝置平台,將原則套用至特定平台",
- "applyConditionDeviceStateInfoBalloonContent": "設定裝置狀態以將原則套用至特定裝置狀態",
- "applyConditionLocationInfoBalloonContent": "設定位置,將原則套用至受信任/不受信任的位置",
- "applyConditionSigninRiskInfoBalloonContent": "設定登入風險,將原則套用至選取的風險層級",
- "applyConditionUserRiskInfoBalloonContent": "設定使用者風險,將原則套用至選取的風險層級",
- "applyConditonLabel": "設定",
- "ariaLabelPolicyDisabled": "原則已停用",
- "ariaLabelPolicyEnabled": "已啟用原則",
- "ariaLabelPolicyReportOnly": "原則處於僅限報表模式",
- "blockAccess": "封鎖存取",
- "builtInDirectoryRoleLabel": "內建目錄角色",
- "casCustomControlInfo": "必須在 Cloud App Security 入口網站中設定自訂原則。這個控制項會立即對所有精選應用程式生效,且能針對任何應用程式自行導入。按一下這裡即可深入了解這兩種情形。",
- "casInfoBubble": "此控制項適用於多種雲端應用程式。",
- "casPreconfiguredControlInfo": "這個控制項會立即對所有精選應用程式生效,且能針對任何應用程式自行導入。按一下這裡即可深入了解這兩種情形。",
- "cert64DownloadCol": "下載 base64 憑證",
- "cert64Name": "VpnBase64Cert",
- "certDownloadCol": "下載憑證",
- "certDurationCol": "到期日",
- "certDurationStartCol": "有效期限自",
- "certName": "VpnCert",
- "chooseApplicationsBladeSubtitle": "",
- "chooseApplicationsBladeTitle": "選擇應用程式",
- "chooseApplicationsCartSubitle": "",
- "chooseApplicationsCartTitle": "選擇的應用程式",
- "chooseApplicationsEmpty": "沒有應用程式",
- "chooseApplicationsNone": "無",
- "chooseApplicationsNoneFound": "找不到 \"{0}\"。請嘗試其他名稱或識別碼。",
- "chooseApplicationsPlural": "{0} 與另外 {1} 個",
- "chooseApplicationsReAuthEverytimeInfo": "正在尋找您的應用程式? 某些應用程式無法與「需要重新驗證 – 每次」工作階段控制一起使用",
- "chooseApplicationsRemove": "移除",
- "chooseApplicationsReturnedPlural": "找到 {0} 個應用程式",
- "chooseApplicationsReturnedSingular": "找到 1 個應用程式",
- "chooseApplicationsSearchBalloon": "輸入應用程式名稱或識別碼,搜尋應用程式。",
- "chooseApplicationsSearchHint": "搜尋應用程式...",
- "chooseApplicationsSearchLabel": "應用程式",
- "chooseApplicationsSearching": "搜尋中...",
- "chooseApplicationsSelect": "選取",
- "chooseApplicationsSelected": "已選取",
- "chooseApplicationsSingular": "{0} 與另外 1 個",
- "chooseApplicationsTooMany": "結果超過可顯示的數量。請使用搜尋方塊篩選。",
- "chooseLocationCorpnetItem": "公司網路",
- "chooseLocationSelectedLocationsLabel": "選取的位置",
- "chooseLocationTrustedIpsItem": "MFA 信任的 IP",
- "chooseLocationsBladeSubtitle": "",
- "chooseLocationsBladeTitle": "選擇位置",
- "chooseLocationsCartSubitle": "",
- "chooseLocationsCartTitle": "選擇的位置",
- "chooseLocationsEmpty": "沒有位置",
- "chooseLocationsExcludedSelectorTitle": "選取",
- "chooseLocationsIncludedSelectorTitle": "選取",
- "chooseLocationsNone": "無",
- "chooseLocationsNoneFound": "找不到 \"{0}\"。請嘗試其他名稱或識別碼。",
- "chooseLocationsPlural": "{0} 與另外 {1} 個",
- "chooseLocationsRemove": "移除",
- "chooseLocationsReturnedPlural": "找到 {0} 個位置",
- "chooseLocationsReturnedSingular": "找到 1 個位置",
- "chooseLocationsSearchBalloon": "輸入其名稱以搜尋位置。",
- "chooseLocationsSearchHint": "搜尋位置...",
- "chooseLocationsSearchLabel": "位置",
- "chooseLocationsSearching": "搜尋中...",
- "chooseLocationsSelect": "選取",
- "chooseLocationsSelected": "已選取",
- "chooseLocationsSelectionBladeExcludedSelectorTitle": "選取",
- "chooseLocationsSelectionBladeIncludedSelectorTitle": "選取",
- "chooseLocationsSingular": "{0} 與另外 1 個",
- "chooseLocationsTooMany": "結果超過可顯示的數量。請使用搜尋方塊篩選。",
- "claimProviderAddCommandText": "新增自訂控制項",
- "claimProviderAddNewBladeTitle": "新增自訂控制項",
- "claimProviderDeleteCommand": "刪除",
- "claimProviderDeleteDescription": "確定要刪除 '{0}' 嗎? 此動作無法復原。",
- "claimProviderDeleteTitle": "確定嗎?",
- "claimProviderEditInfoText": "為宣告提供者所指定的自訂控制輸入 JSON。",
- "claimProviderNotificationCreateDescription": "正在建立名為 '{0}' 的自訂控制項",
- "claimProviderNotificationCreateFailedDescription": "建立自訂控制項 '{0}' 失敗。請稍後再試一次。",
- "claimProviderNotificationCreateFailedTitle": "無法建立自訂控制項",
- "claimProviderNotificationCreateSuccessDescription": "已建立名為 '{0}' 的自訂控制項",
- "claimProviderNotificationCreateSuccessTitle": "已建立 '{0}'",
- "claimProviderNotificationCreateTitle": "正在建立 '{0}'",
- "claimProviderNotificationDeleteDescription": "正在刪除名為 '{0}' 的自訂控制項",
- "claimProviderNotificationDeleteFailedDescription": "刪除自訂控制項 '{0}' 失敗。請稍後再試一次。",
- "claimProviderNotificationDeleteFailedTitle": "無法刪除自訂控制項",
- "claimProviderNotificationDeleteSuccessDescription": "已刪除名為 '{0}' 的自訂控制項",
- "claimProviderNotificationDeleteSuccessTitle": "已刪除 '{0}'",
- "claimProviderNotificationDeleteTitle": "正在刪除 '{0}'",
- "claimProviderNotificationUpdateDescription": "正在更新名為 '{0}' 的自訂控制項",
- "claimProviderNotificationUpdateFailedDescription": "更新自訂控制項 '{0}' 失敗。請稍後再試一次。",
- "claimProviderNotificationUpdateFailedTitle": "無法更新自訂控制項",
- "claimProviderNotificationUpdateSuccessDescription": "已更新名為 '{0}' 的自訂控制項",
- "claimProviderNotificationUpdateSuccessTitle": "已更新 '{0}'",
- "claimProviderNotificationUpdateTitle": "正在更新 '{0}'",
- "claimProviderValidationAppIdInvalid": "\"AppId\" 值無效。請檢閱後再試一次。",
- "claimProviderValidationClientIdMissing": "資料遺漏了 \"ClientId\" 值。請檢閱後再試一次。",
- "claimProviderValidationControlClaimsRequestedMissing": "\"Control\" 項目遺漏了 \"ClaimsRequested\" 值。請檢閱後再試一次。",
- "claimProviderValidationControlClaimsRequestedTypeMissing": "\"ClaimsRequested\" 項目遺漏了 \"Type\" 值。請檢閱後再試一次。",
- "claimProviderValidationControlIdAlreadyExists": "\"Control\" \"Id\" 值已存在。請檢閱後再試一次。",
- "claimProviderValidationControlIdMissing": "\"Control\" 項目遺漏了 \"Id\" 值。請檢閱後再試一次。",
- "claimProviderValidationControlIdReferencedInExistingPolicy": "因為在現有原則中參考了 \"Control\" \"Id\" 值,所以無法將其移除。請先將它從原則中移除。",
- "claimProviderValidationControlIdTooManyControls": "\"Control\" 屬性有過多控制項。請檢閱後再試一次。",
- "claimProviderValidationControlIdValueReserved": "\"Control\" \"Id\" 值是保留關鍵字,請使用不同的識別碼。",
- "claimProviderValidationControlNameAlreadyExists": "\"Control\" \"Name\" 值已存在。請檢閱後再試一次。",
- "claimProviderValidationControlNameMissing": "\"Control\" 項目遺漏了 \"Name\" 值。請檢閱後再試一次。",
- "claimProviderValidationControlsMissing": "資料遺漏了 \"Controls\" 值。請檢閱後再試一次。",
- "claimProviderValidationDiscoveryUrlMissing": "資料遺漏了 \"DiscoveryUrl\" 值。請檢閱後再試一次。",
- "claimProviderValidationInvalid": "提供的資料無效。請檢閱後再試一次。",
- "claimProviderValidationInvalidJsonDefinition": "無法儲存自訂控制項。請檢閱 JSON 文字後再試一次。",
- "claimProviderValidationNameAlreadyExists": "\"Name\" 值已存在。請檢閱後再試一次。",
- "claimProviderValidationNameMissing": "資料遺漏了 \"Name\" 值。請檢閱後再試一次。",
- "claimProviderValidationUnknown": "驗證提供的資料時,發生未知的錯誤。請檢閱後再試一次。",
- "claimProvidersNone": "沒有任何自訂控制項",
- "claimProvidersSearchPlaceholder": "搜尋控制項。",
- "classicPoilcyFilterTitle": "顯示",
- "classicPolicyAllPlatforms": "所有平台",
- "classicPolicyClientAppBrowserAndNative": "瀏覽器、行動裝置應用程式與電腦用戶端",
- "classicPolicyCloudAppTitle": "雲端應用程式",
- "classicPolicyControlAllow": "允許",
- "classicPolicyControlBlock": "封鎖",
- "classicPolicyControlBlockWhenNotAtWork": "不工作時封鎖存取",
- "classicPolicyControlRequireCompliantDevice": "需要符合規範裝置",
- "classicPolicyControlRequireDomainJoinedDevice": "要求已加入網域的裝置",
- "classicPolicyControlRequireMfa": "需要多重要素驗證",
- "classicPolicyControlRequireMfaWhenNotAtWork": "不在工作時需要多重要素驗證",
- "classicPolicyDeleteCommand": "刪除",
- "classicPolicyDeleteFailTitle": "無法刪除傳統原則",
- "classicPolicyDeleteInProgressTitle": "正在刪除傳統原則",
- "classicPolicyDeleteSuccessTitle": "已刪除傳統原則",
- "classicPolicyDetailBladeTitle": "詳細資料",
- "classicPolicyDisableCommand": "停用",
- "classicPolicyDisableConfirmation": "確定要停用 '{0}' 嗎? 此動作無法復原。",
- "classicPolicyDisableFailDescription": "無法停用 '{0}'",
- "classicPolicyDisableFailTitle": "無法停用傳統原則",
- "classicPolicyDisableInProgressDescription": "正在停用 '{0}'",
- "classicPolicyDisableInProgressTitle": "正在停用傳統原則",
- "classicPolicyDisableSuccessDescription": "已成功停用 '{0}'",
- "classicPolicyDisableSuccessTitle": "已停用傳統原則",
- "classicPolicyEasSupportedPlatforms": "Exchange ActiveSync 支援的平台",
- "classicPolicyEasUnsupportedPlatforms": "Exchange ActiveSync 不支援的平台",
- "classicPolicyExcludedPlatformsTitle": "排除的裝置平台",
- "classicPolicyFilterAll": "所有原則",
- "classicPolicyFilterDisabled": "已停用的原則",
- "classicPolicyFilterEnabled": "已啟用的原則",
- "classicPolicyIncludeExcludeMembersDescription": "您可以藉著排除群組,執行階段性的原則移轉。",
- "classicPolicyIncludeExcludeMembersTitle": "包含/排除群組",
- "classicPolicyIncludedPlatformsTitle": "包含的裝置平台",
- "classicPolicyManualMigrationMessage": "此原則必須手動移轉。",
- "classicPolicyMigrateCommand": "移轉",
- "classicPolicyMigrateConfirmation": "確定要移轉 '{0}' 嗎? 此原則只能移轉一次。",
- "classicPolicyMigrateFailDescription": "無法移轉 '{0}'",
- "classicPolicyMigrateFailTitle": "無法移轉傳統原則",
- "classicPolicyMigrateInProgressDescription": "正在移轉 '{0}'",
- "classicPolicyMigrateInProgressTitle": "正在移轉傳統原則",
- "classicPolicyMigrateRecommendText": "建議: 移轉到新的 Azure 入口網站原則。",
- "classicPolicyMigrateSuccessTitle": "已成功移轉傳統原則",
- "classicPolicyMigratedSuccessDescription": "現在可以在 [原則] 下管理這個傳統原則。",
- "classicPolicyMigratedSuccessDescriptionMultiple": "這個傳統原則已移轉為 {0} 個新原則。新原則可以在 [原則] 下進行管理。",
- "classicPolicyNoEditPermissionMsg": "您沒有編輯此原則的權限。只有全域管理員及安全性系統管理員可以編輯此原則。如需詳細資訊,請按一下這裡。",
- "classicPolicySaveFailDescription": "無法儲存 '{0}'",
- "classicPolicySaveFailTitle": "無法儲存傳統原則",
- "classicPolicySaveInProgressDescription": "正在儲存 '{0}'",
- "classicPolicySaveInProgressTitle": "正在儲存傳統原則",
- "classicPolicySaveSuccessDescription": "已成功儲存 '{0}'",
- "classicPolicySaveSuccessTitle": "已儲存傳統原則",
- "clientAppBladeLegacyInfoBanner": "目前不支援舊版驗證",
- "clientAppBladeLegacyUpsellBanner": "封鎖不支援的用戶端應用程式 (預覽)",
- "clientAppBladeTitle": "用戶端應用程式",
- "clientAppDescription": "選取將套用此原則的用戶端應用程式",
- "clientAppExchangeActiveSync": "Exchange ActiveSync",
- "clientAppExchangeDisabledInfo": "Exchange ActiveSync 可在 Exchange Online 為唯一選取的雲端應用程式時使用。按一下以深入了解",
- "clientAppExchangeWarning": "Exchange ActiveSync 目前不支援所有其他條件",
- "clientAppLearnMore": "控制使用者對未使用新式驗證之特定用戶端應用程式的存取。",
- "clientAppLegacyHeader": "舊版驗證用戶端",
- "clientAppMobileDesktop": "行動裝置 App 及桌面用戶端",
- "clientAppModernHeader": "新式驗證用戶端",
- "clientAppOnlySupportedPlatforms": "僅將原則套用至支援的平台",
- "clientAppSelectSpecificClientApps": "選取用戶端應用程式",
- "clientAppV2BladeTitle": "用戶端應用程式 (預覽)",
- "clientAppWebBrowser": "瀏覽器",
- "clientAppsSelectedLabel": "已包含 {0} 個",
- "clientTypeBrowser": "瀏覽器",
- "clientTypeEas": "Exchange ActiveSync 用戶端",
- "clientTypeEasInfo": "Exchange ActiveSync 用戶端 (只使用舊版驗證)。",
- "clientTypeModernAuth": "新式驗證用戶端",
- "clientTypeOtherClients": "其他用戶端",
- "clientTypeOtherClientsInfo": "這包括舊版 Office 用戶端及其他郵件通訊協定 (POP、IMAP、SMTP 等)。[深入了解][1]\n[1]: https://aka.ms/caclientapps\n",
- "cloudAppCountDiffBannerText": "此原則中設定的 {0} 個雲端應用程式已從目錄中刪除,但這不會影響原則中的其他應用程式。當您下次更新原則的應用程式區段時,刪除的應用程式就會自動從中移除。",
- "cloudAppsSelectionBladeAllMicrosoftApps": "所有 Microsoft 應用程式",
- "cloudAppsSelectionExcludeAllMicrosoftClients": "允許 Microsoft 雲端、桌面和行動應用程式 (預覽)",
- "cloudappsSelectionBladeAllCloudapps": "所有雲端應用程式",
- "cloudappsSelectionBladeExcludeDescription": "選取要從原則豁免的雲端應用程式",
- "cloudappsSelectionBladeExcludedSelectorTitle": "選取排除的雲端應用程式",
- "cloudappsSelectionBladeIncludeDescription": "選取將套用這項原則的雲端應用程式",
- "cloudappsSelectionBladeIncludedSelectorTitle": "選取",
- "cloudappsSelectionBladeSelectedCloudapps": "選取應用程式",
- "cloudappsSelectorInfoBallonText": "使用者要加以存取以執行作業的服務。例如 'Salesforce'",
- "cloudappsSelectorUserPlural": "{0} 個應用程式",
- "cloudappsSelectorUserSingular": "1 個應用程式",
- "conditionLabelMulti": "已選取 {0} 個條件",
- "conditionLabelOne": "已選取 1 個條件",
- "conditionalAccessBladeTitle": "條件式存取",
- "conditionsNotSelectedLabel": "未設定",
- "conditionsReqPwSet": "因為目前已選取 [需要密碼變更],所以有些選項無法使用",
- "configureCasText": "設定 Cloud App Security",
- "configureCustomControlsText": "設定自訂原則",
- "controlLabelMulti": "已選取 {0} 個控制項",
- "controlLabelOne": "已選取 1 個控制項",
- "controlValidatorText": "請選取至少一個控制項",
- "controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
- "controlsDeviceComplianceInfoBubble": "裝置必須與 Intune 符合規範。如果裝置不符合規範,則會提示使用者將裝置改為符合規範",
- "controlsDomainJoinedInfoBubble": "必須為已使用混合式 Azure AD 而聯結的裝置。",
- "controlsMamInfoBubble": "裝置必須使用這些經過核准的用戶端應用程式。",
- "controlsMfaInfoBubble": "使用者必須完成通話和簡訊等其他安全性需求",
- "controlsOrAndInfoBubble": "ControlsOrAndInfoBubble",
- "controlsRequireCompliantAppInfoBubble": "裝置必須使用受原則保護的應用程式。",
- "controlsRequirePasswordResetInfoBubble": "需要變更密碼才可降低使用者風險。此選項也需要多重要素驗證。無法使用其他控制項。",
- "countriesRadiobuttonInfoBalloonContent": "登入所來自的國家/地區取決於使用者 IP 位址。",
- "createNewVpnCert": "新憑證",
- "createdTimeLabel": "建立時間",
- "customRoleLabel": "自訂角色 (不支援)",
- "dateRangeTypeLabel": "日期範圍",
- "daysOfWeekPlaceholderText": "篩選星期幾",
- "daysOfWeekTypeLabel": "星期幾",
- "deletePolicyNoLicenseText": "您可立即刪除此原則。刪除後,在您擁有必要授權前,都無法重新建立該原則。",
- "descriptionContentForControlsAndOr": "針對多個控制項",
- "devicePlatform": "裝置平台",
- "devicePlatformConditionHelpDescription": "將原則套用至選取的裝置平台。\n[深入了解][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2044750",
- "devicePlatformInclude": "已包含 {0} 個",
- "devicePlatformIncludeExclude": "已排除 {0} 與 {1}",
- "devicePlatformNoSelectionError": "選取裝置平台必須選取一個子項目。",
- "devicePlatformsNone": "無",
- "deviceSelectionBladeExcludeDescription": "選取要從原則豁免的平台",
- "deviceSelectionBladeIncludeDescription": "選取要包含在這項原則的雲端應用程式",
- "deviceStateAll": "所有裝置狀態",
- "deviceStateCompliant": "標示為符合規範的裝置",
- "deviceStateCompliantInfoContent": "此原則的評估會排除符合 Intune 規範的裝置,因此,假如原則封鎖了存取權,系統即會封鎖所有裝置,但符合 Intune 規範的裝置除外。",
- "deviceStateConditionConfigureInfoContent": "依裝置狀態設定原則",
- "deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Hybrid Azure AD joined' or 'marked as compliant'.\n '{0}' has been deprecated. Use '{1}' instead.",
- "deviceStateConditionSelectorLabel": "裝置狀態 (預覽)",
- "deviceStateDomainJoined": "已使用混合式 Azure AD 而聯結的裝置",
- "deviceStateDomainJoinedInfoContent": "此原則的評估會排除已使用混合式 Azure AD 而聯結的裝置,因此,假如原則封鎖了存取權,系統即會封鎖所有裝置,但已使用混合式 Azure AD 而聯結的裝置除外。",
- "deviceStateDomainJoinedInfoLinkText": "深入了解。",
- "deviceStateExcludeDescription": "選取用以將裝置排除在原則之外的裝置狀態。",
- "deviceStateIncludeAndExcludeOneLabel": "{0} 及排除 {1}",
- "deviceStateIncludeAndExcludeTwoLabel": "{0} 及排除 {1} 與 {2}",
- "directoryRoleInfoContent": "對內建目錄角色指派原則。",
- "directoryRolesLabel": "目錄角色",
- "discardbutton": "捨棄",
- "downloadDefaultFileName": "IP 範圍",
- "downloadExampleFileName": "範例",
- "downloadExampleHeader": "此範例檔案內含可接受之資料種類的示範。將略過以 # 開始的行。",
- "endDatePickerLabel": "末端",
- "endTimePickerLabel": "結束時間",
- "enterCountryText": "IP 位址與國家/地區要成對評估。請選取國家/地區。",
- "enterIpText": "IP 位址與國家/地區要成對評估。請輸入 IP 位址。",
- "enterUserText": "未選取任何使用者。請選取一名使用者。",
- "evaluationResult": "評估結果",
- "exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
- "exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync 僅搭配受支援的平台",
- "excludeAllTrustedLocationSelectorText": "所有信任位置",
- "featureRequiresP2": "此功能需要 Azure AD Premium 2 個授權。",
- "friday": "星期五",
- "grantControls": "授與控制權",
- "gridNetworkTrusted": "信任",
- "gridPolicyCreatedDateTime": "建立日期",
- "gridPolicyEnabled": "已啟用",
- "gridPolicyModifiedDateTime": "修改日期",
- "gridPolicyName": "原則名稱",
- "gridPolicyState": "狀態",
- "groupSelectionBladeExcludeDescription": "選取要從原則豁免的群組",
- "groupSelectionBladeExcludedSelectorTitle": "選取排除的群組",
- "groupSelectionBladeSelect": "選取群組",
- "groupSelectorInfoBallonText": "所處目錄已套用原則的群組。例如「試驗群組」",
- "groupsSelectionBladeTitle": "群組",
- "helpCommonScenariosText": "對常見案例感興趣嗎?",
- "helpCondition1": "當任何使用者於公司網路外時",
- "helpCondition2": "當「經理」群組的使用者登入時",
- "helpConditionsTitle": "條件",
- "helpControl1": "他們必須以多重要素驗證登入",
- "helpControl2": "需要他們使用與 Intune 相容或已加入網域的裝置上",
- "helpControlsTitle": "控制項",
- "helpIntroText": "條件式存取可供您在發生特定狀況時,強制執行存取需求。讓我們看看一些範例",
- "helpIntroTitle": "什麼是條件式存取?",
- "helpLearnMoreText": "想要深入了解條件式存取嗎?",
- "helpStartStep1": "按一下 [+ 新增原則] 即可建立第一項原則",
- "helpStartStep2": "指定原則條件與控制項",
- "helpStartStep3": "完成之後,別忘了要啟用原則並建立",
- "helpStartTitle": "開始使用",
- "highRisk": "高",
- "includeAndExcludeAppsTextFormat": "包含: {0}。排除: {1}。",
- "includeAppsTextFormat": "包含: {0}。",
- "includeUnknownAreasCheckboxInfoBalloonContent": "未知區域是無法對應至國家/地區的 IP 位址。",
- "includeUnknownAreasCheckboxLabel": "包含未知區域",
- "infoCommandLabel": "資訊",
- "invalidCertDuration": "憑證期限無效",
- "invalidIpAddress": "值必須是有效的 IP 位址",
- "invalidUriErrorMsg": "請輸入有效的 URI。例如 'uri:contoso.com:acr'",
- "iosDisplayName": "iOS",
- "linuxDisplayName": "Linux",
- "linuxDisplayNamePreview": "Linux (預覽)",
- "loadAll": "載入所有",
- "loading": "載入中...",
- "locationConfigureNamedLocationsText": "設定所有信任的位置",
- "locationConfigureNamedLocationsUri": "{0}/usermanagement/mfasettings.aspx?tenantid={1}&culture={2}",
- "locationNameTooLongError": "位置名稱過長。上限為 256 個字元",
- "locationSelectionBladeExcludeDescription": "選取要從原則豁免的位置",
- "locationSelectionBladeIncludeDescription": "選取要包含在此原則中的位置",
- "locationsAllLocationsLabel": "任何位置",
- "locationsAllNamedLocationsLabel": "所有信任的 IP",
- "locationsAllPrivateLinksLabel": "我租用戶中的所有私人連結",
- "locationsIncludeExcludeLabel": "{0} 並排除所有信任的 IP",
- "locationsSelectedPrivateLinksLabel": "選取的私人連結",
- "lowRisk": "低",
- "macOsDisplayName": "macOS",
- "managePoliciesLicenseText": "若要管理條件式存取原則,您的組織需要 Azure AD Premium P1 或 P2。",
- "markAsTrustedCheckboxInfoBalloonContent": "從信任位置登入可降低使用者登入風險。只有在您知道輸入的 IP 範圍已在組織中建立且可靠時,才會將此位置標示為信任。",
- "markAsTrustedCheckboxLabel": "標示為信任位置",
- "mediumRisk": "中",
- "memberSelectionCommandRemove": "移除",
- "menuItemClaimProviderControls": "自訂控制項 (預覽)",
- "menuItemClassicPolicies": "傳統原則",
- "menuItemInsightsAndReporting": "深入解析與報告",
- "menuItemManage": "管理",
- "menuItemNamedLocationsPreview": "具名位置 (預覽)",
- "menuItemNamedNetworks": "具名位置",
- "menuItemPolicies": "原則",
- "menuItemTermsOfUse": "使用規定",
- "modifiedTimeLabel": "修改時間",
- "monday": "星期一",
- "nameLabel": "名稱",
- "namedLocationCountryInfoBanner": "只有 IPv4 位址對應到國家/地區。IPv6 位址包含在未知的國家/地區中。",
- "namedLocationTypeCountry": "國家/地區",
- "namedLocationTypeLabel": "定義位置的方式:",
- "namedLocationUpsellBanner": "此檢視已被取代。前往改良的新「具名位置」檢視。",
- "namedLocationsHelpDescription": "Azure AD 安全性報告與 Azure AD 條件式存取原則皆會使用具名位置,前者用此減少誤判。\n[深入了解][1]\n[1]: https://aka.ms/namedlocationupdate",
- "namedNetworkAddIpRanges": "新增 IP 範圍 (例如: 40.77.182.32/27)",
- "namedNetworkCountryNeeded": "您至少需要選取一個國家/地區",
- "namedNetworkDeleteCommand": "刪除",
- "namedNetworkDeleteDescription": "確定要刪除 '{0}' 嗎? 此動作無法復原。",
- "namedNetworkDeleteTitle": "您確定嗎?",
- "namedNetworkDownloadIpRange": "下載",
- "namedNetworkInvalidRange": "值必須是有效的 IP 範圍。",
- "namedNetworkIpRangeNeeded": "您需要至少一個有效的 IP 範圍",
- "namedNetworkIpRangesDescriptionContent": "設定您組織的 IP 範圍",
- "namedNetworkIpRangesTab": "IP 範圍",
- "namedNetworkListAdd": "新增位置",
- "namedNetworkListConfigureTrustedIps": "設定 MFA 信任的 IP",
- "namedNetworkNameDescription": "例如: 'Redmond office'",
- "namedNetworkNameInvalid": "提供的名稱無效。",
- "namedNetworkNameRequired": "您必須替此位置提供名稱。",
- "namedNetworkNoIpRanges": "沒有 IP 範圍",
- "namedNetworkNotificationCreateDescription": "正在建立命為 '{0}' 的位置",
- "namedNetworkNotificationCreateFailedDescription": "建立位置 '{0}' 失敗。請稍後再試一次。",
- "namedNetworkNotificationCreateFailedTitle": "無法建立位置",
- "namedNetworkNotificationCreateSuccessDescription": "已建立名為 '{0}' 的位置",
- "namedNetworkNotificationCreateSuccessTitle": "已建立 '{0}'",
- "namedNetworkNotificationCreateTitle": "正在建立 '{0}'",
- "namedNetworkNotificationDeleteDescription": "正在刪除命為 '{0}' 的位置",
- "namedNetworkNotificationDeleteFailedDescription": "刪除位置 '{0}' 失敗。請稍後再試一次。",
- "namedNetworkNotificationDeleteFailedTitle": "無法刪除位置",
- "namedNetworkNotificationDeleteSuccessDescription": "已刪除名為 '{0}' 的位置",
- "namedNetworkNotificationDeleteSuccessTitle": "已刪除 '{0}'",
- "namedNetworkNotificationDeleteTitle": "正在刪除 '{0}'",
- "namedNetworkNotificationUpdateDescription": "正在更新命為 '{0}' 的位置",
- "namedNetworkNotificationUpdateFailedDescription": "更新位置 '{0}' 失敗。請稍後再試一次。",
- "namedNetworkNotificationUpdateFailedTitle": "無法更新位置",
- "namedNetworkNotificationUpdateSuccessDescription": "已更新命為 '{0}' 的位置",
- "namedNetworkNotificationUpdateSuccessTitle": "已更新 '{0}'",
- "namedNetworkNotificationUpdateTitle": "正在更新 '{0}'",
- "namedNetworkSearchPlaceholder": "搜尋位置。",
- "namedNetworkUploadFailedDescription": "剖析提供的檔案時,發生錯誤。請務必上傳純文字檔,且每行都要是 CIDR 的格式。",
- "namedNetworkUploadFailedTitle": "無法剖析 '{0}'",
- "namedNetworkUploadInProgressDescription": "正在嘗試從 '{0}' 剖析有效的 CIDR 值。",
- "namedNetworkUploadInProgressTitle": "正在剖析 '{0}'",
- "namedNetworkUploadInvalidDescription": "'{0}' 可能太大或格式不正確。",
- "namedNetworkUploadInvalidTitle": "'{0}' 無效",
- "namedNetworkUploadIpRange": "上傳",
- "namedNetworkUploadSuccessDescription": "已分析 {0} 行。出現 {1} 個格式錯誤。已跳過 {2} 個。",
- "namedNetworkUploadSuccessTitle": "正在完成剖析 '{0}'",
- "namedNetworksAdd": "新增具名位置",
- "namedNetworksConditionHelpDescription": "根據其實際位置控制使用者存取。\n[深入了解][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
- "namedNetworksExcludeLabel": "已排除 {0} 與 {1}",
- "namedNetworksHelpDescription": "Azure AD 安全性報告與 Azure AD 條件式存取原則皆會使用具名位置,前者用此減少誤判。\n[深入了解][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
- "namedNetworksIncludeLabel": "已包含 {0} 個",
- "namedNetworksNone": "找不到任何具名位置。",
- "namedNetworksTitle": "設定位置",
- "namednetworkExceedingSizeErrorBladeTitle": "錯誤詳細資料",
- "namednetworkExceedingSizeErrorDetailText": "如需詳細資料,請按一下這裡。",
- "namednetworkExceedingSizeErrorMessage": "超出具名位置所允許的儲存體上限。請使用較短的清單再試一次。若要檢視詳細資料,請按一下這裡。",
- "newCertName": "新憑證",
- "noPolicyRowMessage": "無任何原則",
- "noSPSelected": "未選取任何服務主體",
- "noUpdatePermissionMessage": "您無權更新這些設定。請連絡您的全域管理員以取得存取權。",
- "noUserSelected": "未選取任何使用者",
- "noneRisk": "無風險",
- "office365Description": "這些應用程式包含 Microsoft Flow、Microsoft Forms、Microsoft Teams、Office 365 Exchange Online、Office 365 SharePoint Online、Office 365 Yammer 等項目。",
- "office365InfoBox": "選取的應用程式至少有一個屬於 Office 365。建議您改為設定 Office 365 應用程式上的原則。",
- "oneUserSelected": "已選取 1 位使用者",
- "onlyGlobalAdminsCanSaveThisPolicyConfig": "只有全域管理員能夠儲存此原則。",
- "or": "{0} 或 {1}",
- "pickerDoneCommand": "完成",
- "policiesBladeAdPremiumUpsellBannerText": "利用 Azure AD Premium 建立自己的原則與目標特定條件,例如雲端應用程式、登入風險及裝置平台",
- "policiesBladeTitle": "原則",
- "policiesBladeTitleWithAppName": "原則: {0}",
- "policiesDisabledBannerText": "不允許為具有連結登入屬性的應用程式建立及編輯原則。",
- "policiesHitMaxLimitStatusBarMessage": "您已達到此租用戶的原則數上限。請先刪除部分原則再新增。",
- "policyAssignmentsSection": "工作分派",
- "policyBlockAllInfoBox": "設定的原則會封鎖所有使用者,所以不受支援。請檢閱指派與控制項。如果您想儲存此原則,請排除目前的使用者 {0}。",
- "policyCloudAppsDisplayTextAllApp": "所有 App",
- "policyCloudAppsLabel": "雲端應用程式",
- "policyConditionClientAppDescription": "使用者正在用來存取雲端應用程式的軟體。例如「瀏覽器」",
- "policyConditionClientAppV2Description": "使用者正在用來存取雲端應用程式的軟體。例如「瀏覽器」",
- "policyConditionDevicePlatform": "裝置平台",
- "policyConditionDevicePlatformDescription": "使用者的登入來源平台。例如 'iOS'",
- "policyConditionLocation": "位置",
- "policyConditionLocationDescription": "使用者的登入來源位置 (使用 IP 位址範圍判定)",
- "policyConditionSigninRisk": "登入風險",
- "policyConditionSigninRiskDescription": "登入者為其他人而非使用者的可能性。風險等級可能是高、中或低。必須要有 Azure AD Premium 2 授權。",
- "policyConditionUserRisk": "使用者風險",
- "policyConditionUserRiskDescription": "設定實施原則所需的使用者風險層級",
- "policyConditioniClientApp": "用戶端應用程式",
- "policyConditioniClientAppV2": "用戶端應用程式 (預覽)",
- "policyControlAllowAccessDisplayedName": "授與存取權",
- "policyControlAuthenticationStrengthDisplayedName": "需要驗證強度 (預覽)",
- "policyControlBladeTitle": "授與",
- "policyControlBlockAccessDisplayedName": "封鎖存取",
- "policyControlCompliantDeviceDisplayedName": "裝置需要標記為合規",
- "policyControlContentDescription": "控制存取強制執行以封鎖或授與存取權。",
- "policyControlInfoBallonText": "封鎖存取,或選取如需允許存取所需滿足的其他需求",
- "policyControlMfaChallengeDisplayedName": "需要多重要素驗證",
- "policyControlRequireCompliantAppDisplayedName": "需要應用程式保護原則",
- "policyControlRequireDomainJoinedDisplayedName": "需要已使用混合式 Azure AD 而聯結的裝置",
- "policyControlRequireMamDisplayedName": "需要經過核准的用戶端應用程式",
- "policyControlRequiredPasswordChangeDisplayedName": "需要變更密碼",
- "policyControlSelectAuthStrength": "需要驗證強度",
- "policyControlsNoControlsSelected": "已選取 0 個控制項",
- "policyControlsSection": "存取控制",
- "policyCreatBladeTitle": "新增",
- "policyCreateButton": "建立",
- "policyCreateFailedMessage": "錯誤: {0}",
- "policyCreateFailedTitle": "無法建立 '{0}'",
- "policyCreateInProgressTitle": "正在建立 '{0}'",
- "policyCreateSuccessMessage": "已成功建立 '{0}'。若您將 [啟用原則] 設為 [開啟],原則會在幾分鐘後啟用。",
- "policyCreateSuccessTitle": "已成功建立 '{0}'",
- "policyDeleteConfirmation": "確定要刪除 '{0}' 嗎? 此動作無法復原。",
- "policyDeleteFailTitle": "無法刪除 '{0}'",
- "policyDeleteInProgressTitle": "正在刪除 '{0}'",
- "policyDeleteSuccessTitle": "已成功刪除 '{0}'",
- "policyEnforceLabel": "啟用原則",
- "policyErrorCannotSetSigninRisk": "您無權使用登入風險狀況儲存原則。",
- "policyErrorNoPermission": "您無權儲存原則。請連絡您的全域管理員。",
- "policyErrorUnknown": "發生錯誤,請稍後再試一次。",
- "policyFallbackWarningMessage": "無法使用 MS Graph 建立或更新 '{0}',導致 AD Graph 的後援。請調查下列案例,因為在使用不相容的條件呼叫 MS Graph 原則端點時,最可能發生 Bug。",
- "policyFallbackWarningTitle": "已部分成功建立或更新 '{0}'",
- "policyNameCannotBeEmpty": "原則名稱不可為空白",
- "policyNameDevice": "裝置原則",
- "policyNameFormat": "[{0}] {1}",
- "policyNameMam": "行動裝置應用程式管理原則",
- "policyNameMfaLocation": "MFA 與位置原則",
- "policyNamePlaceholderText": "範例:「裝置合規性應用程式原則」",
- "policyNameTooLongError": "原則名稱過長。上限為 256 個字元",
- "policyOff": "關閉",
- "policyOn": "開啟",
- "policyReportOnly": "僅限報表",
- "policyReviewSection": "檢閱",
- "policySaveButton": "儲存",
- "policyStatusIconDescription": "已啟用原則",
- "policyStatusIconEnabled": "己啟用狀態圖示",
- "policyTemplateName1": "為 {0} 瀏覽器存取使用應用程式強制的限制",
- "policyTemplateName2": "受控的裝置上只允許 {0} 存取",
- "policyTemplateName3": "從 [持續性存取評估] 設定中移轉的原則",
- "policyTriggerRiskSpecific": "選取指定的風險等級",
- "policyTriggersInfoBalloonText": "定義原則套用時機的條件。例如「位置」",
- "policyTriggersNoConditionsSelected": "已選取 0 個條件",
- "policyTriggersSelectorLabel": "條件",
- "policyUpdateFailedMessage": "錯誤: {0}",
- "policyUpdateFailedTitle": "無法更新 {0}",
- "policyUpdateInProgressTitle": "正在更新 {0}",
- "policyUpdateSuccessMessage": "已成功更新 {0}。若您將 [啟用原則] 設為 [開啟],原則會在幾分鐘後啟用。",
- "policyUpdateSuccessTitle": "已成功更新 {0}",
- "primaryCol": "主要",
- "privateLinkLabel": "Azure AD Private Link",
- "reportOnlyInfoBox": "報告專用模式: 原則會在登入時經過評估及記錄,但不會影響使用者。",
- "requireAllControlsText": "需要所有選取的控制項",
- "requireCompliantDevice": "需要符合規範裝置",
- "requireDomainJoined": "需要已加入網域的裝置",
- "requireMFA": "需要多重要素驗證",
- "requireOneControlText": "需要其中一個選取的控制項",
- "resetFilters": "重設篩選",
- "sPRequired": "需要服務主體",
- "sPSelectorInfoBalloon": "您要測試的使用者或服務主體",
- "saturday": "星期六",
- "searchTextTooLongError": "搜尋文字太長。最多 256 個字元",
- "securityDefaultsPolicyName": "安全性預設值",
- "securityDefaultsTextMessage": "必須停用安全性預設值,才可啟用條件式存取原則。",
- "securityDefaultsWarningMessage": "您似乎想要管理您組織的安全性設定。真棒! 您必須先停用安全性預設值,才能啟用條件式存取原則。",
- "selectDevicePlatforms": "選取裝置平台",
- "selectNamedNetworksSubtitle": "",
- "selectNamedNetworksTitle": "選取位置",
- "selectedSP": "選取的服務主體",
- "servicePrincipalDataGridAria": "可用服務主體的清單",
- "servicePrincipalDropDownLabel": "此原則適用於哪些方面?",
- "servicePrincipalInfoBox": "因為原則指派中的 '{0}' 選取範圍,導致某些條件無法使用",
- "servicePrincipalRadioAll": "所有擁有的服務主體",
- "servicePrincipalRadioSelect": "選取服務主體",
- "servicePrincipalSelectionsAria": "選取的服務主體格線",
- "servicePrincipalSelectorAria": "所選服務主體的清單",
- "servicePrincipalSelectorMultiple": "已選取 {0} 個服務主體",
- "servicePrincipalSelectorSingle": "已選取 1 個服務主體",
- "servicePrincipalSpecificInc": "包含特定的服務主體",
- "servicePrincipals": "服務主體",
- "sessionControlBladeTitle": "工作階段",
- "sessionControlDescriptionContent": "根據工作階段控制項控制存取,以啟用特定雲端應用程式中的有限體驗。",
- "sessionControlDisableInfo": "此控制項只適用於支援的應用程式。目前僅 Office 365、Exchange Online 和 SharePoint Online 等雲端應用程式支援應用程式強制執行的限制。按一下這裡以深入了解。",
- "sessionControlInfoBallonText": "工作階段控制項讓雲端應用程式內的體驗受限。",
- "sessionControls": "工作階段控制項",
- "sessionControlsAppEnforcedLabel": "使用應用程式強制執行限制",
- "sessionControlsCasLabel": "使用條件式存取應用程式控制",
- "sessionControlsSecureSignInLabel": "需要權杖繫結",
- "sharepointAppName": "SharePoint",
- "signinRiskDescription": "選取此原則將套用的登入風險層級",
- "signinRiskInclude": "已包含 {0} 個",
- "signinRiskTriggerDescriptionContent": "選取登入風險等級",
- "singleTenantServicePrincipalInfoBallonText": "原則僅適用於貴組織所擁有的單一租用戶服務主體。按一下這裡以深入了解",
- "specificSigninRiskLevelsOption": "選取特定登入風險等級",
- "specificUsersExcluded": "排除的特定使用者",
- "specificUsersIncluded": "包含的特定使用者",
- "specificUsersIncludedAndExcluded": "排除及包含特定的使用者",
- "startDatePickerLabel": "開始",
- "startFreeTrial": "開始免費試用",
- "startTimePickerLabel": "開始時間",
- "sunday": "星期日",
- "testButton": "What If",
- "thumbprintCol": "指紋",
- "thursday": "星期四",
- "timeConditionAllTimesLabel": "任何時間",
- "timeConditionIntroText": "設定將套用此原則的時間",
- "timeConditionSelectorInfoBallonContent": "使用者登入時間。例如,\"Wednesday 9am-5pm PST\"",
- "timeConditionSelectorLabel": "時間 (預覽)",
- "timeConditionSpecificLabel": "特定時間",
- "timeSelectorAllTimesText": "任何時間",
- "timeSelectorSpecificTimesText": "已設定特定時間",
- "timeZoneDropdownInfoBalloonContent": "選取可定義時間範圍的時區。此原則適用於所有時區中的使用者。例如,對某位使用者是 'Wednesday 9am - 5pm',對不同時區的使用者則是 'Wednesday 10am - 6pm'。",
- "timeZoneDropdownLabel": "時區",
- "timeZoneDropdownPlaceholderText": "選取時區",
- "tooManyPoliciesDescription": "目前僅顯示前 50 個原則,請按一下這裡檢視所有原則",
- "tooManyPoliciesTitle": "找到 50 個以上的原則",
- "trustedLocationStatusIconDescription": "位置受信任",
- "trustedLocationStatusIconEnabled": "信任的狀態圖示",
- "tuesday": "星期二",
- "uploadInBadState": "無法上傳指定的檔案。",
- "upsellAppsDescription": "敏感性應用程式隨時都需要多重要素驗證,或僅在來自公司網路外部時需要。",
- "upsellAppsTitle": "保護應用程式",
- "upsellBannerText": "取得免費 Premium 試用版即可使用此功能",
- "upsellDataDescription": "必須標記為符合規範或已使用混合式 Azure AD 而聯結的裝置,才允許該裝置存取公司資源。",
- "upsellDataTitle": "保護資料",
- "upsellDescription": "條件式存取可提供保護公司資料安全所需的控制及保護,同時可讓您的員工透過任一種裝置交出最好的工作表現。例如,您可以限制來自公司網路外部的存取,或僅限對符合合規性原則的裝置進行存取。",
- "upsellRiskDescription": "Microsoft 的機器學習系統所偵測到的風險事件需要多重要素驗證。",
- "upsellRiskTitle": "保護免於風險的威脅",
- "upsellTitle": "條件式存取",
- "upsellWhyTitle": "為什麼要使用條件式存取?",
- "userAppNoneOption": "無",
- "userNamePlaceholderText": "輸入使用者名稱",
- "userNotSetSeletorLabel": "已選取 0 個使用者與群組",
- "userOnlySelectionBladeExcludeDescription": "選取要從原則免除的使用者",
- "userOrGroupSelectionCountDiffBannerText": "已將此原則中設定的 {0} 從目錄中刪除,但不會影響原則中的其他使用者與群組。當您下次更新此原則時,刪除的使用者及 (或) 群組將自動移除。",
- "userOrSPNotSetSelectorLabel": "已選取 0 個使用者或工作負載身分識別",
- "userOrSPSelectionBladeTitle": "使用者或工作負載身分識別",
- "userOrSPSelectorInfoBallonText": "原則套用目錄中的身分標識,包括使用者、群組和服務主體",
- "userRequired": "需要使用者",
- "userRiskErrorBox": "選取 [需要密碼變更] 授與時,必須選取 [使用者風險] 條件",
- "userSPRequired": "需要使用者或服務主體",
- "userSPSelectorTitle": "使用者或工作負載身分識別",
- "userSelectionBladeAllUsersAndGroups": "所有使用者與群組",
- "userSelectionBladeExcludeDescription": "選取要從原則豁免的使用者與群組",
- "userSelectionBladeExcludeTabTitle": "排除",
- "userSelectionBladeExcludedSelectorTitle": "選取排除的使用者",
- "userSelectionBladeIncludeDescription": "選取此原則要套用的使用者",
- "userSelectionBladeIncludeTabTitle": "包括",
- "userSelectionBladeIncludedSelectorTitle": "選取",
- "userSelectionBladeSelectUsers": "選取使用者",
- "userSelectionBladeSelectedUsers": "選取使用者與群組",
- "userSelectionBladeTitle": "使用者和群組",
- "userSelectorBladeTitle": "使用者",
- "userSelectorExcluded": "已排除 {0} 個",
- "userSelectorGroupPlural": "{0} 個群組",
- "userSelectorGroupSingular": "1 個群組",
- "userSelectorIncluded": "已包含 {0} 個",
- "userSelectorInfoBallonText": "所處目錄已套用原則的使用者與群組。例如「試驗群組」",
- "userSelectorSelected": "已選取 {0} ",
- "userSelectorTitle": "使用者",
- "userSelectorUserAndGroup": "{0},{1}",
- "userSelectorUserPlural": "{0} 位使用者",
- "userSelectorUserSingular": "1 位使用者",
- "userSelectorWithExclusion": "{0} 和 {1}",
- "usersGroupsLabel": "使用者和群組",
- "viewApprovedAppsText": "請參閱經核准的用戶端應用程式清單",
- "viewCompliantAppsText": "請參閱受原則保護的用戶端應用程式清單",
- "vpnBladeTitle": "VPN 連線能力",
- "vpnCertCreateFailedMessage": "錯誤: {0}",
- "vpnCertCreateFailedTitle": "無法建立 {0}",
- "vpnCertCreateInProgressTitle": "正在建立 {0}",
- "vpnCertCreateSuccessMessage": "已成功建立 {0}。",
- "vpnCertCreateSuccessTitle": "已成功建立 {0}",
- "vpnCertNoRowsMessage": "找不到任何 VPN 憑證",
- "vpnCertUpdateFailedMessage": "錯誤: {0}",
- "vpnCertUpdateFailedTitle": "無法更新 {0}",
- "vpnCertUpdateInProgressTitle": "正在更新 {0}",
- "vpnCertUpdateSuccessMessage": "已成功更新 {0}。",
- "vpnCertUpdateSuccessTitle": "已成功更新 {0}",
- "vpnFeatureInfo": "如需 VPN 連線能力與條件式存取的其他資訊,請按一下這裡。",
- "vpnFeatureWarning": "在 Azure 入口網站開啟 VPN 憑證後,Azure AD 就會立即開始利用其來對 VPN 用戶端發行短期憑證。立即將 VPN 憑證部署至 VPN 伺服器相當重要,這可避免 VPN 用戶端的認證驗證發生任何問題。",
- "vpnMenuText": "VPN 連線能力",
- "vpncertDropdownDefaultOption": "持續時間",
- "vpncertDropdownInfoBalloonContent": "為您要建立的憑證選取期限",
- "vpncertDropdownLabel": "選取持續時間",
- "vpncertDropdownOneyearOption": "1 年",
- "vpncertDropdownThreeyearOption": "3 年",
- "vpncertDropdownTwoyearOption": "2 年",
- "wednesday": "星期三",
- "whatIfAppEnforcedControl": "使用應用程式強制執行限制",
- "whatIfBladeDescription": "測試使用者在特定條件下登入時,條件式存取對其所產生的影響。",
- "whatIfBladeTitle": "What If",
- "whatIfClassicPoliciesWarning": "傳統原則不是由此工具評估。",
- "whatIfClientAppInfo": "使用者所登入的用戶端應用程式。例如「瀏覽器」。",
- "whatIfCountry": "國家/地區",
- "whatIfCountryInfo": "使用者進行登入的國家/地區。",
- "whatIfDevicePlatformInfo": "使用者登入時所使用的裝置平台。",
- "whatIfDeviceStateInfo": "使用者從中登入的裝置狀態",
- "whatIfEnterIpAddress": "輸入 IP 位址 (例如: 40.77.182.32)",
- "whatIfErrorInvalidIpAddress": "指定的 IP 位址無效。",
- "whatIfEvaResultApplication": "雲端應用程式",
- "whatIfEvaResultClientApps": "用戶端應用程式",
- "whatIfEvaResultDevicePlatform": "裝置平台",
- "whatIfEvaResultEmptyPolicy": "原則空白",
- "whatIfEvaResultInvalidCondition": "條件無效",
- "whatIfEvaResultInvalidPolicy": "原則無效",
- "whatIfEvaResultLocation": "位置",
- "whatIfEvaResultNotEnoughInformation": "資訊不足",
- "whatIfEvaResultPolicyNotEnabled": "原則未啟用",
- "whatIfEvaResultSignInRisk": "登入風險",
- "whatIfEvaResultUsers": "使用者和群組",
- "whatIfIpAddress": "IP 位址",
- "whatIfIpAddressInfo": "使用者登入時所使用的 IP 位址。",
- "whatIfIpCountryInfoBoxText": "若使用 IP 位址或國家/地區,則會需要兩個欄位,且應正確對應。",
- "whatIfPolicyAppliesTab": "會套用的原則",
- "whatIfPolicyDoesNotApplyTab": "不會套用的原則",
- "whatIfReasons": "此原則不會套用的原因",
- "whatIfSelectClientApp": "選取用戶端應用程式...",
- "whatIfSelectCountry": "選取國家/地區...",
- "whatIfSelectDevicePlatform": "選取裝置平台...",
- "whatIfSelectPrivateLink": "選取私人連結...",
- "whatIfSelectServicePrincipalRisk": "選取服務主體風險...",
- "whatIfSelectSignInRisk": "選取登入風險...",
- "whatIfSelectType": "選取身分識別類型",
- "whatIfSelectUserRisk": "選取使用者風險...",
- "whatIfServicePrincipalRiskInfo": "與服務主體相關聯的風險層級",
- "whatIfSignInRisk": "登入風險",
- "whatIfSignInRiskInfo": "與登入相關的風險層級",
- "whatIfUnknownAreas": "不明區域",
- "whatIfUserPickerLabel": "選取的使用者",
- "whatIfUserPickerNoRowsLabel": "未選取任何使用者或服務主體",
- "whatIfUserRiskInfo": "與使用者相關的風險層級",
- "whatIfUserSelectorInfo": "您想要測試的目錄中使用者",
- "windows365InfoBox": "選取 Windows 365 會影響與雲端電腦和 Azure 虛擬桌面工作階段主機的連接。按一下這裡以深入了解。",
- "windowsDisplayName": "Windows",
- "windowsPhoneDisplayName": "Windows Phone",
- "workloadIdentities": "工作負載身分識別 (預覽)",
- "workloadIdentity": "工作負載身分識別"
- },
- "ApplicableDeviceType": {
- "iPad": "iPad",
- "iPhoneAndIPod": "iPhone 和 iPod"
- },
- "TAPSettings": {
- "AllowedDataIngestionLocations": {
- "label": "允許使用者從選取的服務開啟資料",
- "tooltip": "選取使用者可從中開啟資料的應用程式儲存體服務。系統會封鎖其他所有服務。未選取任何服務將會導致使用者無法開啟資料。"
- },
- "AndroidBackup": {
- "label": "將組織資料備份到 Android 備份服務",
- "tooltip": "選取 {0} 會讓組織資料無法備份到 Android 備份服務。\r\n選取 {1} 則允許將組織資料備份到 Android 備份服務。\r\n個人或非受控的資料不會受到影響。"
- },
- "AndroidBiometricAuthentication": {
- "label": "使用生物識別技術而非 PIN 來存取",
- "tooltip": "請選擇人員可使用的 Android 驗證方法 (若有的話) 來取代應用程式 PIN。"
- },
- "AndroidFingerprint": {
- "label": "以指紋而非 PIN 存取 (Android 6.0 +)",
- "tooltip": "Android OS 使用指紋掃描來驗證 Android 裝置的使用者。此功能可在 Android 裝置上,支援原生生物特徵辨識控管。但不支援 OEM 專用的生物特徵辨識設定,例如 Samsung Pass。在允許的情況下,必須使用原生生物特徵辨識控管,來存取具備該功能裝置上的應用程式。"
- },
- "AndroidOverrideFingerprint": {
- "label": "逾時後以 PIN 取代指紋"
- },
- "AppPIN": {
- "label": "設定有裝置 PIN 時,為應用程式 PIN",
- "tooltip": "若非必要,則如果在已註冊 MDM 的裝置上設定了裝置 PIN,就不必使用應用程式 PIN 來存取此應用程式。
\r\n\r\n注意: Intune 無法在 Android 上偵測裝置是否註冊了第三方 EMM 解決方案。"
- },
- "BlockDataIngestionIntoOrganizationDocuments": {
- "label": "將資料開啟為組織文件",
- "tooltip1": "選取 [封鎖] 可停用在此應用程式之帳戶間共用資料的 [開啟] 選項或其他選項。若要允許使用在此應用程式之帳戶間共用資料的 [開啟] 及其他選項,請選取 [允許]。",
- "tooltip2": "當設定為 [封鎖] 時,您可以進行 [允許使用者從選取的服務開啟資料] 設定,以指定允許組織資料位置使用的服務。",
- "tooltip3": "注意: 只有在 [從其他應用程式接收資料] 設定設為 [原則管理的應用程式] 時,才會強制執行此設定。
\r\n注意: 此設定不適用於所有應用程式。如需詳細資訊,請參閱 {0}。",
- "tooltip4": "注意: 只有在 [從其他應用程式接收資料] 設定設為 [原則管理的應用程式] 時,才會強制執行此設定。
\r\n注意: 此設定不適用於所有應用程式。如需詳細資訊,請參閱 {0} 或 {0}。"
- },
- "ConnectToVpnOnLaunch": {
- "label": "在應用程式啟動時啟動 Microsoft Tunnel 連線",
- "tooltip": "啟動應用程式時允許連線到 VPN"
- },
- "CredentialsForAccess": {
- "label": "用於存取的公司或學校認證",
- "tooltip": "如有必要,必須使用公司或學校認證來存取受原則管理的應用程式。若存取該應用程式也需要 PIN 或生物特徵辨識方法,即需在這些提示上方出現公司或學校帳戶認證。"
- },
- "CustomBrowserDisplayName": {
- "label": "非受控瀏覽器名稱",
- "tooltip": "請輸入與「非受控瀏覽器識別碼」相關的瀏覽器應用程式名稱。如果未安裝指定瀏覽器,將會對使用者顯示這個。"
- },
- "CustomBrowserPackageId": {
- "label": "非受控瀏覽器識別碼",
- "tooltip": "請輸入單一瀏覽器的應用程式識別碼。來自原則受控應用程式的 Web 內容 (http/s) 將會於指定瀏覽器內開啟。"
- },
- "CustomBrowserProtocol": {
- "label": "非受控瀏覽器通訊協定",
- "tooltip": "請輸入單一瀏覽器的應用程式識別碼。來自原則受控應用程式的 Web 內容 (http/s) 可於任何支援此通訊協定的應用程式內開啟。
\r\n \r\n注意: 請只包含通訊協定前置詞。如果瀏覽器需要如 \"mybrowser://www.microsoft.com\" 格式的連結,請輸入 \"mybrowser\"。
"
- },
- "CustomDialerAppDisplayName": {
- "label": "撥號程式應用程式名稱"
- },
- "CustomDialerAppPackageId": {
- "label": "撥號程式應用程式套件識別碼"
- },
- "CustomDialerAppProtocol": {
- "label": "撥號程式應用程式 URL 配置"
- },
- "Cutcopypaste": {
- "label": "禁止在不同的應用程式之間剪下、複製及貼上",
- "tooltip": "在您的應用程式與裝置上安裝的其他核准應用程式之間,剪下、複製及貼上資料。選擇在應用程式間完全封鎖這些動作,即可對任何應用程式進行這些動作,或是限制對組織所管理的應用程式進行這些動作。
\r\n\r\n具備貼上功能的原則受控應用程式可讓您選擇接受從另一個應用程式所貼上的傳入內容。但如此會禁止使用者對外共用內容,除非透過受控應用程式進行共用。
"
- },
- "DialerRestrictionLevel": {
- "iosTooltip": "當使用者在應用程式中選取了超連結電話號碼時,通常會開啟撥號應用程式,並預先填入電話號碼,讓使用者可以直接撥話。對於此設定,請選擇當從原則管理的應用程式中起始此動作時,應如何處理這類型的內容傳輸。您可能必須執行額外的步驟,此設定才會生效。首先,請確認已從「選取豁免的應用程式」清單中移除了 tel 與 telprompt,接著再確認應用程式使用的是較新版的 Intune SDK (12.7.0 以上的版本)。",
- "label": "將電信資料傳送至",
- "tooltip": "一般來說,當使用者在應用程式中選取了電話號碼超連結時,隨即會開啟撥號程式應用程式,並會預先填入該電話號碼,備妥可進行通話。請為此設定選擇在從原則管理的應用程式起始時,該如何處理此類型的內容傳輸。"
- },
- "EncryptData": {
- "label": "為組織資料加密",
- "link": "https://docs.microsoft.com/zh-tw/intune/app-protection-policy-settings-android#data-relocation-settings",
- "tooltip": "選取 {0} 會利用 Intune 應用程式層加密,進行組織資料的加密。\r\n
\r\n選取 {1} 則不會利用 Intune 應用程式層加密,進行組織資料的加密。\r\n\r\n
\r\n注意: 如需 Intune 應用程式層加密的詳細資訊,請參閱 {2}。"
- },
- "EncryptDataAndroid": {
- "tooltip": "選擇 [需要],即可為此應用程式中的公司或學校資料啟用加密。Intune 會搭配 Android Keystore 系統使用 OpenSSL (256 位元 AES 加密配置),來安全地加密應用程式資料。檔案會在檔案 I/O 工作期間同步地加密。裝置存放空間上的內容會保持加密狀態。為與使用舊版 SDK 的內容及應用程式相容,SDK 會繼續提供 128 位元金鑰的支援。
\r\n\r\n加密方法並非通過認證的 FIPS 140-2。
"
- },
- "EncryptDataIos": {
- "tooltip1": "選擇 [需要],即可為此應用程式中的公司或學校資料啟用加密。裝置鎖定時,Intune 會實施 iOS/iPadOS 裝置加密以保護應用程式資料。應用程式可選擇使用 Intune APP SDK 加密來加密應用程式資料。Intune APP SDK 會使用 iOS/iPadOS 加密方法將 128 位元 AES 加密套用到應用程式資料。",
- "tooltip2": "您啟用此設定後,使用者就必須設定及使用 PIN 才能存取他們的裝置。如果不需要任何裝置 PIN 和加密,系統就會以 \"Your organization has required you to first enable a device PIN to access this app.\" (您的組織要求您在存取此應用程式前,先啟用裝置 PIN) 訊息提示使用者設定 PIN。",
- "tooltip3": "前往官方的 Apple 文件,即可查看有哪些 iOS 加密模組符合 FIPS 140-2 規範,或是尚未符合 FIPS 140-2 規範。"
- },
- "EncryptDataOnEnrolledDevices": {
- "label": "在註冊的裝置上為組織資料加密",
- "tooltip": "選取 {0} 會在所有裝置上,利用 Intune 應用程式層加密,進行組織資料的加密。
\r\n\r\n選取 {1} 則不會在註冊的裝置上,利用 Intune 應用程式層加密,進行組織資料的加密。"
- },
- "IOSBackup": {
- "label": "將組織資料備份到 iTunes 與 iCloud 備份",
- "tooltip": "選取 {0} 會讓組織資料無法備份到 iTunes 或 iCloud。\r\n選取 {1} 則允許將組織資料備份到 iTunes 或 iCloud。\r\n個人或非受控資料不會受到影響。"
- },
- "IOSFaceID": {
- "label": "以 Face ID 而非 PIN 存取 (iOS 11+/iPadOS)",
- "tooltip": "Face ID 使用臉部辨識技術,驗證 iOS/iPadOS 裝置上的使用者。Intune 會呼叫 LocalAuthentication API,使用 Face ID 驗證使用者。在允許的情況下,必須使用 Face ID 來存取具備 Face ID 功能裝置上的應用程式。"
- },
- "IOSOverrideTouchId": {
- "label": "逾時後,以 PIN 碼取代生物識別特徵"
- },
- "IOSTouchId": {
- "label": "以 Touch ID 而非 PIN 存取 (iOS 8+/iPadOS)",
- "tooltip": "Touch ID 使用指紋辨識技術,驗證 iOS 裝置的使用者。Intune 會呼叫 LocalAuthentication API,使用 Touch ID 驗證使用者。在允許的情況下,必須使用 Touch ID 來存取具備 Touch ID 功能裝置上的應用程式。"
- },
- "NotificationRestriction": {
- "label": "組織資料通知",
- "tooltip": "請選取以下其中一個選項,來指定如何在此應用程式和任何連線式裝置 (例如穿戴式裝置) 顯示組織帳戶的通知:
\r\n{0}: 不要共用通知。
\r\n{1}: 不要在通知中共用組織資料。如果不受應用程式支援,則封鎖通知。
\r\n{2}: 共用所有通知。
\r\n 僅限 Android:\r\n 注意: 這個設定並非所有應用程式均適用。如需詳細資訊,請參閱 {3}
\r\n \r\n 僅限 iOS:\r\n注意: 這個設定並非所有應用程式均適用。如需詳細資訊,請參閱 {4}
"
- },
- "OpenLinksManagedBrowser": {
- "label": "限制使用其他應用程式的 Web 內容傳輸",
- "tooltip": "請選取下列其中一個選項,來指定此應用程式可在其中開啟 Web 內容的應用程式:
\r\nEdge: 僅允許在 Edge 中開啟 Web 內容
\r\n非受控瀏覽器: 僅允許在由 [非受控瀏覽器通訊協定] 設定所定義的非受控瀏覽器內開啟 Web 內容
\r\n任何應用程式: 在所有應用程式中允許 Web 連結
"
- },
- "OverrideBiometric": {
- "tooltip": "PIN 提示會視逾時情況 (非使用狀態分鐘數),在必要時覆寫生物特徵辨識提示。若不符合此逾時值,則會持續顯示生物特徵辨識提示。此逾時值應大於在 [重新檢查存取需求前的剩餘時間 (非使用狀態分鐘數)] 下所指定的值。"
- },
- "PinAccess": {
- "label": "用於存取的 PIN",
- "tooltip": "如有必要,必須使用 PIN 來存取受原則管理的應用程式。使用者第一次從其公司或學校帳戶開啟應用程式時,必須建立存取 PIN。"
- },
- "PinLength": {
- "label": "選取 PIN 長度下限",
- "tooltip": "此設定可指定 PIN 中數字的數目下限。"
- },
- "PinType": {
- "label": "PIN 類型",
- "tooltip": "數字 PIN 全部由數字組成。密碼則由英數字元及特殊字元組成。"
- },
- "Printing": {
- "label": "列印組織資料",
- "tooltip": "一旦封鎖,應用程式就無法列印受保護的資料。"
- },
- "ReceiveData": {
- "label": "從其他應用程式接收資料",
- "tooltip": "選取下列其中一個選項,指定此應用程式可從中接收資料的應用程式:
\r\n\r\n無: 不允許從任何應用程式接收組織文件或帳戶的資料
\r\n\r\n受原則管理的應用程式: 只允許從其他受原則管理的應用程式接收組織文件或帳戶的資料\r\n
\r\n所有包含傳入組織資料的應用程式: 允許從任何應用程式接收組織文件或帳戶的資料,並將所有無使用者帳戶的傳入資料,都視為組織資料
\r\n\r\n所有應用程式: 允許從任何應用程式接收組織文件或帳戶的資料"
- },
- "RecheckAccessAfter": {
- "label": "(非使用狀態分鐘數) 之後重新檢查是否需要存取權\r\n\r\n",
- "tooltip": "若受原則管理的應用程式,未使用的時間超過指定的未使用分鐘數後,在啟動應用程式之後,該應用程式即會提示要重新檢查是否需要存取權 (例如 PIN,條件啟動設定)。"
- },
- "RestrictKeyboards": {
- "duplicatePackageError": "套件識別碼必須是唯一的。",
- "invalidPackageError": "套件識別碼無效",
- "label": "核准的鍵盤",
- "select": "選取要核准的鍵盤",
- "subtitle": "新增允許使用者用於目標應用程式的所有鍵盤和輸入法。輸入要向終端使用者顯示的鍵盤名稱。",
- "title": "新增核准的鍵盤",
- "toolTip": "選取 [需要],然後為此原則指定核准鍵盤的清單。深入了解。 "
- },
- "SaveData": {
- "label": "儲存組織資料複本",
- "tooltip": "選取 {0} 會無法使用 [另存新檔],將組織資料的複本儲存到非所選儲存體服務的新位置。\r\n 選取 {1} 則允許使用 [另存新檔],將組織資料的複本儲存到新的位置。
\r\n\r\n\r\n注意: 此設定並非所有應用程式均適用。如需詳細資訊,請參閱 {2}。\r\n"
- },
- "SaveDataToSelected": {
- "label": "允許使用者將複本儲存到選取的服務",
- "tooltip": "選取使用者可在其中儲存組織資料複本的儲存體服務。系統會封鎖其他所有服務。不選取任何服務,將會使得使用者無法儲存組織資料的複本。"
- },
- "ScreenCaptureAndAndroidAssistant": {
- "label": "螢幕擷取與 Google Assistant\r\n",
- "tooltip": "若封鎖,則在使用受原則管理的應用程式時,將會停用螢幕擷取及 Google Assistant 的應用程式掃描功能。此功能支援一般的 Google Assistant 應用程式,但不支援使用 Google 助理 API 的協力廠商助理程式。選擇 [停用] 也會在以公司或學校帳戶使用此應用程式時,讓 App 切換的預覽影像變得模糊。"
- },
- "SendData": {
- "label": "將組織資料傳送到其他應用程式",
- "tooltip": "選取下列其中一個選項,指定此應用程式可對其傳送組織資料的應用程式:
\r\n\r\n\r\n無: 不允許將組織資料傳送到任何應用程式
\r\n\r\n\r\n受原則管理的應用程式: 只允許將組織資料傳送到其他受原則管理的應用程式
\r\n\r\n\r\n共用 OS 且受原則管理的應用程式: 只允許將組織資料傳送到其他受原則管理的應用程式,並將組織文件傳送到註冊裝置上其他受 MDM 管理的應用程式
\r\n\r\n\r\n具 Open-In/Share 篩選且受原則管理的應用程式: 只允許將組織資料傳送到其他受原則管理的應用程式,並篩選 [Open-In/Share] 對話方塊,使其只顯示受原則管理的應用程式\r\n
\r\n\r\n所有應用程式: 允許將組織資料傳送到任何應用程式"
- },
- "SimplePin": {
- "label": "簡易 PIN",
- "tooltip": "若已封鎖,使用者即無法建立簡易 PIN。簡易 PIN 是連續或重複的數字字串,例如 1234、ABCD 或 1111。請注意,封鎖類型為「密碼」的簡易 PIN,密碼至少要有一個數字、一個字母及一個特殊字元。"
- },
- "SyncContacts": {
- "label": "使用原生應用程式同步受原則管理的應用程式資料或增益集"
- },
- "ThirdPartyKeyboards": {
- "infoBox": "鍵盤限制會套用到應用程式的所有區域。此限制會影響支援多個身分識別的應用程式個人帳戶。深入了解。",
- "label": "協力廠商鍵盤"
- },
- "Timeout": {
- "label": "逾時 (非使用狀態分鐘數)"
- },
- "Tap": {
- "numberOfDays": "天數",
- "pinResetAfterNumberOfDays": "重設 PIN 前經過的天數",
- "previousPinBlockCount": "選取要維護的前幾個 PIN 值數目"
- }
- },
- "WindowsFeatureUpdateProfile": {
- "Details": {
- "Description": {
- "label": "說明"
- },
- "FeatureDeploymentSettings": {
- "header": "功能部署設定"
- },
- "FeatureUpdateVersion": {
- "infoballoon": "此功能無法降級裝置。",
- "label": "要部署的功能更新"
- },
- "GradualRolloutEndDate": {
- "label": "最終群組可用性"
- },
- "GradualRolloutInterval": {
- "label": "群組之間的天數"
- },
- "GradualRolloutStartDate": {
- "label": "第一個群組可用性"
- },
- "Name": {
- "label": "名稱"
- },
- "RolloutOptions": {
- "label": "推出選項"
- },
- "RolloutSettings": {
- "header": "您何時要讓更新在 Windows Update 中提供?"
- },
- "ScopeSettings": {
- "header": "設定此原則的範圍標籤。"
- },
- "StartDateOnlyStartDate": {
- "label": "第一個可用日期"
- },
- "bladeTitle": "功能更新部署",
- "deploymentSettingsTitle": "部署設定",
- "loadError": "載入失敗!",
- "windows11EULA": "選取此 [功能更新] 進行部署即表示您將此作業系統套用至裝置時,同意 (1) 透過大量授權購買適用的 Windows 授權係,或 (2) 您已獲得授權可繫結您的組織,並代表您的組織接受列於此處的相關 Microsoft 軟體授權條款{0}。"
- },
- "Notifications": {
- "deploymentSaved": "已儲存 \"{0}\"。",
- "newFeatureUpdateDeploymentCreated": "已建立新的功能更新部署。"
- },
- "TabName": {
- "deploymentSettings": "部署設定",
- "groupAssignmentSettings": "指派",
- "scopeSettings": "範圍標籤"
- }
- },
- "OfficeUpdateChannel": {
- "current": "目前通道",
- "deferred": "半年企業通道",
- "firstReleaseCurrent": "目前通道 (預覽)",
- "firstReleaseDeferred": "半年企業通道 (預覽)",
- "monthlyEnterprise": "每月企業通道",
- "placeHolder": "選取一項"
- },
- "Win32ReturnCodes": {
- "CodeTypes": {
- "failed": "失敗",
- "hardReboot": "強制重新開機",
- "retry": "重試",
- "softReboot": "軟開機",
- "success": "成功"
- },
- "Columns": {
- "codeType": "程式碼類型",
- "returnCode": "傳回碼"
- },
- "bladeTitle": "傳回碼",
- "gridAriaLabel": "傳回碼",
- "header": "指定傳回碼以指出安裝後行為:",
- "onAddAnnounceMessage": "傳回新增了程式碼的第 {1} 個項目 (共 {0} 個項目)",
- "onDeleteSuccess": "傳回碼 {0} 刪除成功",
- "returnCodeAlreadyUsedValidation": "傳回碼已使用。",
- "returnCodeMustBeIntegerValidation": "傳回碼應為整數。",
- "returnCodeShouldBeAtLeast": "傳回碼至少應為 {0}。",
- "returnCodeShouldBeAtMost": "傳回碼最多應為 {0}。",
- "selectorLabel": "傳回碼"
- },
- "SecurityTemplate": {
- "aSR": "受攻擊面縮小",
- "accountProtection": "帳戶防護",
- "allDevices": "所有裝置",
- "antivirus": "防毒",
- "antivirusReporting": "防毒報告 (預覽)",
- "conditionalAccess": "條件存取",
- "deviceCompliance": "裝置相容性",
- "diskEncryption": "磁碟加密",
- "eDR": "端點偵測及回應",
- "firewall": "防火牆",
- "helpSupport": "說明及支援",
- "setup": "安裝",
- "wdapt": "適用於端點的 Microsoft Defender"
- },
- "PolicySet": {
- "appManagement": "應用程式管理",
- "assignments": "指派",
- "basics": "基本",
- "deviceEnrollment": "裝置註冊",
- "deviceManagement": "裝置管理",
- "scopeTags": "範圍標籤",
- "appConfigurationTitle": "應用程式設定原則",
- "appProtectionTitle": "應用程式保護原則",
- "appTitle": "應用程式",
- "iOSAppProvisioningTitle": "iOS 應用程式佈建設定檔",
- "deviceLimitRestrictionTitle": "裝置限制",
- "deviceTypeRestrictionTitle": "裝置類型限制",
- "enrollmentStatusSettingTitle": "註冊狀態頁面",
- "windowsAutopilotDeploymentProfileTitle": "Windows autopilot 部署設定檔",
- "deviceComplianceTitle": "裝置合規性政策",
- "deviceConfigurationTitle": "裝置組態設定檔",
- "powershellScriptTitle": "PowerShell 指令碼"
- },
- "AssignmentAction": {
- "exclude": "排除",
- "include": "包含元件",
- "includeAllDevicesVirtualGroup": "包含元件",
- "includeAllUsersVirtualGroup": "包含元件"
- },
- "WindowsFeatureUpdate": {
- "EndOFSupportStatus": {
- "notSupported": "不支援",
- "supportEnding": "支援結束",
- "supported": "受支援"
- }
- },
- "InstallIntent": {
- "available": "適用於已註冊的裝置",
- "availableWithoutEnrollment": "無論註冊與否均可使用",
- "required": "必要",
- "uninstall": "解除安裝"
- },
"OutlookAppConfig": {
"DataProtectionConfiguration": {
"header": "資料保護設定"
@@ -1938,307 +100,864 @@
"themesEnabledTitle": "佈景主題已啟用",
"themesEnabledTooltip": "指定使用者能否使用自訂視覺效果的佈景主題。"
},
- "TAP": {
- "AccessRequirements": {
- "infoText": "設定使用者在工作內容中存取應用程式時必須符合的 PIN 和認證需求。"
- },
- "DataProtection": {
- "infoText": "這個群組包含資料外洩防護 (DLC) 控制,例如剪下、複製、貼上和另存新檔限制。這些設定會決定使用者在應用程式中與資料互動的方式。"
- },
- "DeviceTypes": {
- "selectOne": "至少選取一種裝置類型。"
- },
- "TargetedApps": {
- "TargetToAll": {
- "label": "鎖定所有裝置類型上的應用程式"
- },
- "infoText": "選擇要如何將此原則套用至不同裝置上的應用程式。然後至少新增一個應用程式。",
- "selectOne": "請至少選取一個應用程式以建立原則。"
- }
- },
- "TACSettings": {
- "edgeSettings": "Edge 組態設定",
- "edgeWindowsDataProtectionSettings": "Edge (Windows) 資料保護設定 - 預覽",
- "edgeWindowsSettings": "Microsoft Edge (Windows) 設定 - 預覽",
- "generalAppConfig": "一般應用程式設定",
- "generalSettings": "一般組態設定",
- "outlookSMIMEConfig": "Outlook S/MIME 設定",
- "outlookSettings": "Outlook 組態設定",
- "sMIME": "S/MIME"
- },
- "OfficeApplicationAdditionalType": {
- "projectProRetail": "Project Online Desktop 用戶端",
- "visioProRetail": "Visio Online 方案 2"
- },
- "Win32Requirements": {
- "AdditionalRequirements": {
- "File": {
- "fileOrFolderToolTip": "檔案或資料夾作為選取的需求。",
- "pathToolTip": "要偵測檔案或資料夾的完整路徑。",
- "property": "屬性",
- "valueToolTip": "選取符合所選偵測方法的需求值。應以您當地的格式輸入日期與時間需求。"
- },
- "GridColumns": {
- "pathOrScript": "路徑/指令碼",
- "type": "類型"
- },
- "Registry": {
- "keyPath": "機碼路徑",
- "keyPathTooltip": "包含作為需求之值的登錄項目完整路徑。",
- "operator": "Operator",
- "operatorTooltip": "選取運算子以供比較。",
- "registryRequirement": "登錄機碼需求",
- "registryRequirementTooltip": "選取登錄機碼需求比較。",
- "valueName": "值名稱",
- "valueNameTooltip": "所需登錄值的名稱。"
- },
- "RequirementTypeOptions": {
- "fileType": "檔案",
- "registry": "登錄",
- "script": "指令碼"
- },
- "Script": {
- "RequirementMethodOptions": {
- "boolean": "布林值",
- "dateTime": "日期與時間",
- "float": "浮點",
- "integer": "整數",
- "string": "字串",
- "version": "版本"
- },
- "ScriptContent": {
- "emptyMessage": "指令碼內容不應為空白。"
- },
- "duplicateName": "指令碼名稱 {0} 已使用。請輸入其他名稱。",
- "enforceSignatureCheck": "強制執行指令碼簽章檢查",
- "enforceSignatureCheckTooltip": "選取 [是] 可驗證指令碼確實由信任的發行者所簽署,這能使指令碼執行時不顯示任何警告或提示。指令碼會在已解除封鎖的情況下執行。選取 [否] (預設) 會經終端使用者確認後執行指令碼,但不經過簽章驗證。",
- "loggedOnCredentials": "使用登入認證執行此指令碼",
- "loggedOnCredentialsTooltip": "使用已登入的裝置認證執行指令碼。",
- "operatorTooltip": "選取運算子以比較需求。",
- "requirementMethod": "選取輸出資料類型",
- "requirementMethodTooltip": "選取判斷偵測符合需求時所使用的資料類型。",
- "scriptFile": "指令碼檔",
- "scriptFileTooltip": "選取將偵測應用程式是否存在於用戶端上的 PowerShell 指令碼。若偵測到應用程式,需求處理序會提供值為 0 的結束代碼,並會將字串值寫入 StdOut。",
- "scriptName": "指令碼名稱",
- "value": "值",
- "valueTooltip": "選取符合所選偵測方法的需求值。應以您當地的格式輸入日期與時間需求。"
- },
- "bladeTitle": "新增需求規則",
- "createRequirementHeader": "建立需求。",
- "header": "設定其他需求規則",
- "label": "其他需求規則",
- "noRequirementsSelectedPlaceholder": "未指定任何需求。",
- "requirementType": "需求類型",
- "requirementTypeTooltip": "選擇用來判斷如何驗證需求的偵測方法類型。"
- },
- "architectures": "作業系統架構",
- "architecturesTooltip": "請選擇安裝應用程式所需的架構。",
- "bladeTitle": "需求",
- "diskSpace": "所需磁碟空間 (MB)",
- "diskSpaceTooltip": "安裝應用程式所需的系統磁碟機可用磁碟空間。",
- "header": "請指定安裝應用程式前,裝置須滿足的需求:",
- "maximumTextFieldValue": "此值最大不可超過 {0}。",
- "minimumCpuSpeed": "所需的最低 CPU 速度 (MHz)",
- "minimumCpuSpeedTooltip": "安裝應用程式所需的最低 CPU 速度。",
- "minimumLogicalProcessors": "所需的最低邏輯處理器數",
- "minimumLogicalProcessorsTooltip": "安裝應用程式所需的最低邏輯處理器數。",
- "minimumOperatingSystem": "最基本的作業系統",
- "minimumOperatingSystemTooltip": "請選取安裝應用程式所需的最低作業系統。",
- "minumumTextFieldValue": "此值至少須為 {0}。",
- "physicalMemory": "所需的實體記憶體 (MB)",
- "physicalMemoryTooltip": "安裝應用程式所需的實體記憶體 (RAM)。",
- "selectorLabel": "需求",
- "validNumber": "請輸入有效的數字。"
- },
- "ArchitectureOptions": {
- "sixtyFourBit": "64 位元",
- "thirtyTwoBit": "32 位元"
- },
- "Countries": {
- "ae": "阿拉伯聯合大公國",
- "ag": "安地卡及巴布達",
- "ai": "安奎拉",
- "al": "阿爾巴尼亞",
- "am": "亞美尼亞",
- "ao": "安哥拉",
- "ar": "阿根廷",
- "at": "奧地利",
- "au": "澳洲",
- "az": "亞塞拜然",
- "bb": "巴貝多",
- "be": "比利時",
- "bf": "布吉納法索",
- "bg": "保加利亞",
- "bh": "巴林",
- "bj": "貝南",
- "bm": "百慕達",
- "bn": "汶萊",
- "bo": "玻利維亞",
- "br": "巴西",
- "bs": "巴哈馬",
- "bt": "不丹",
- "bw": "波札那",
- "by": "白俄羅斯",
- "bz": "貝里斯",
- "ca": "加拿大",
- "cg": "剛果共和國",
- "ch": "瑞士",
- "cl": "智利",
- "cn": "中國",
- "co": "哥倫比亞",
- "cr": "哥斯大黎加",
- "cv": "維德角",
- "cy": "賽普勒斯",
- "cz": "捷克共和國",
- "de": "德國",
- "dk": "丹麥",
- "dm": "多米尼克",
- "do": "多明尼加共和國",
- "dz": "阿爾及利亞",
- "ec": "厄瓜多",
- "ee": "愛沙尼亞",
- "eg": "埃及",
- "es": "西班牙",
- "fi": "芬蘭",
- "fj": "斐濟",
- "fm": "密克羅尼西亞聯邦",
- "fr": "法國",
- "gb": "英國",
- "gd": "格瑞那達",
- "gh": "迦納",
- "gm": "甘比亞",
- "gr": "希臘",
- "gt": "瓜地馬拉",
- "gw": "幾內亞比索",
- "gy": "蓋亞那",
- "hk": "香港",
- "hn": "宏都拉斯",
- "hr": "克羅埃西亞",
- "hu": "匈牙利",
- "id": "印尼",
- "ie": "愛爾蘭",
- "il": "以色列",
- "in": "印度",
- "is": "冰島",
- "it": "義大利",
- "jm": "牙買加",
- "jo": "約旦",
- "jp": "日本",
- "ke": "肯亞",
- "kg": "吉爾吉斯",
- "kh": "柬埔寨",
- "kn": "聖克里斯多福及尼維斯",
- "kr": "大韓民國",
- "kw": "科威特",
- "ky": "開曼群島",
- "kz": "哈薩克",
- "la": "寮人民民主共和國",
- "lb": "黎巴嫩",
- "lc": "聖露西亞",
- "lk": "斯里蘭卡",
- "lr": "賴比瑞亞",
- "lt": "立陶宛",
- "lu": "盧森堡",
- "lv": "拉脫維亞",
- "md": "摩爾多瓦共和國",
- "mg": "馬達加斯加",
- "mk": "北馬其頓",
- "ml": "馬利",
- "mn": "蒙古",
- "mo": "澳門",
- "mr": "茅利塔尼亞",
- "ms": "蒙哲臘",
- "mt": "馬爾他",
- "mu": "模里西斯",
- "mw": "馬拉威",
- "mx": "墨西哥",
- "my": "馬來西亞",
- "mz": "莫三比克",
- "na": "納米比亞",
- "ne": "尼日",
- "ng": "奈及利亞",
- "ni": "尼加拉瓜",
- "nl": "荷蘭",
- "no": "挪威",
- "np": "尼泊爾",
- "nz": "紐西蘭",
- "om": "阿曼",
- "pa": "巴拿馬",
- "pe": "祕魯",
- "pg": "巴布亞紐幾內亞",
- "ph": "菲律賓",
- "pk": "巴基斯坦",
- "pl": "波蘭",
- "pt": "葡萄牙",
- "pw": "帛琉",
- "py": "巴拉圭",
- "qa": "卡達",
- "ro": "羅馬尼亞",
- "ru": "俄羅斯",
- "sa": "沙烏地阿拉伯",
- "sb": "索羅門群島",
- "sc": "塞席爾",
- "se": "瑞典",
- "sg": "新加坡",
- "si": "斯洛維尼亞",
- "sk": "斯洛伐克",
- "sl": "獅子山",
- "sn": "塞內加爾",
- "sr": "蘇利南",
- "st": "聖多美普林西比",
- "sv": "薩爾瓦多",
- "sz": "史瓦濟蘭",
- "tc": "土克斯及開科斯群島",
- "td": "查德",
- "th": "泰國",
- "tj": "塔吉克",
- "tm": "土庫曼",
- "tn": "突尼西亞",
- "tr": "土耳其",
- "tt": "千里達及托巴哥",
- "tw": "台灣",
- "tz": "坦尚尼亞",
- "ua": "烏克蘭",
- "ug": "烏干達",
- "us": "美國",
- "uy": "烏拉圭",
- "uz": "烏茲別克",
- "vc": "聖文森及格瑞那丁",
- "ve": "委內瑞拉",
- "vg": "英屬維京群島",
- "vn": "越南",
- "ye": "葉門",
- "za": "南非",
- "zw": "辛巴威"
+ "Languages": {
+ "ar-aE": "阿拉伯文 (阿拉伯聯合大公國)",
+ "ar-bH": "阿拉伯文 (巴林)",
+ "ar-dZ": "阿拉伯文 (阿爾及利亞)",
+ "ar-eG": "阿拉伯文 (埃及)",
+ "ar-iQ": "阿拉伯文 (伊拉克)",
+ "ar-jO": "阿拉伯文 (約旦)",
+ "ar-kW": "阿拉伯文 (科威特)",
+ "ar-lB": "阿拉伯文 (黎巴嫩)",
+ "ar-lY": "阿拉伯文 (利比亞)",
+ "ar-mA": "阿拉伯文 (摩洛哥)",
+ "ar-oM": "阿拉伯文 (阿曼)",
+ "ar-qA": "阿拉伯文 (卡達)",
+ "ar-sA": "阿拉伯文 (沙烏地阿拉伯)",
+ "ar-sY": "阿拉伯文 (敘利亞)",
+ "ar-tN": "阿拉伯文 (突尼西亞)",
+ "ar-yE": "阿拉伯文 (葉門)",
+ "az-cyrl": "阿塞拜疆文 (斯拉夫、亞塞拜然)",
+ "az-latn": "阿塞拜疆文 (拉丁、亞塞拜然)",
+ "bn-bD": "孟加拉文 (孟加拉)",
+ "bn-iN": "孟加拉文 (印度)",
+ "bs-cyrl": "波士尼亞文 (斯拉夫)",
+ "bs-latn": "波士尼亞文 (拉丁)",
+ "zh-cN": "中文 (中國)",
+ "zh-hK": "中文 (香港特別行政區)",
+ "zh-mO": "中文 (澳門特別行政區)",
+ "zh-sG": "中文 (新加坡)",
+ "zh-tW": "中文 (台灣)",
+ "hr-bA": "克羅埃西亞文 (拉丁)",
+ "hr-hR": "克羅埃西亞文 (克羅埃西亞)",
+ "nl-bE": "荷蘭文 (比利時)",
+ "nl-nL": "荷蘭文 (荷蘭)",
+ "en-aU": "英文 (澳大利亞)",
+ "en-bZ": "英文 (貝里斯)",
+ "en-cA": "英文 (加拿大)",
+ "en-cabn": "英文 (加勒比海)",
+ "en-iE": "英文 (愛爾蘭)",
+ "en-iN": "英文 (印度)",
+ "en-jM": "英文 (牙買加)",
+ "en-mY": "英文 (馬來西亞)",
+ "en-nZ": "英文 (紐西蘭)",
+ "en-pH": "英文 (菲律賓共和國)",
+ "en-sG": "英文 (新加坡)",
+ "en-tT": "英文 (千里達及托巴哥)",
+ "en-uK": "英文 (英國)",
+ "en-uS": "英文 (美國)",
+ "en-zA": "英文 (南非)",
+ "en-zW": "英文 (辛巴威)",
+ "fr-bE": "法文 (比利時)",
+ "fr-cA": "法文 (加拿大)",
+ "fr-cH": "法文 (瑞士)",
+ "fr-fR": "法文 (法國)",
+ "fr-lU": "法文 (盧森堡)",
+ "fr-mC": "法文 (摩納哥)",
+ "de-aT": "德文 (奧地利)",
+ "de-cH": "德文 (瑞士)",
+ "de-dE": "德文 (德國)",
+ "de-lI": "德文 (列支敦斯登)",
+ "de-lU": "德文 (盧森堡)",
+ "iu-cans": "因紐特文 (語音節,加拿大)",
+ "iu-latn": "因紐特文 (拉丁,加拿大)",
+ "it-cH": "義大利文 (瑞士)",
+ "it-iT": "義大利文 (義大利)",
+ "ms-bN": "馬來文 (汶萊)",
+ "ms-mY": "馬來文 (馬來西亞)",
+ "mn-cN": "蒙古文 (傳統蒙古文,中華人民共和國)",
+ "mn-mN": "蒙古文 (斯拉夫,蒙古)",
+ "no-nB": "挪威文 (巴克摩) (挪威)",
+ "no-nn": "挪威文、耐諾斯克 (挪威)",
+ "pt-bR": "葡萄牙文 (巴西)",
+ "pt-pT": "葡萄牙文 (葡萄牙)",
+ "quz-bO": "蓋楚瓦文 (玻利維亞)",
+ "quz-eC": "蓋楚瓦文 (厄瓜多)",
+ "quz-pE": "蓋楚瓦文 (秘魯)",
+ "smj-nO": "盧勒沙米文 (挪威)",
+ "smj-sE": "盧勒沙米文 (瑞典)",
+ "se-fI": "北沙米文 (芬蘭)",
+ "se-nO": "北沙米文 (挪威)",
+ "se-sE": "北沙米文 (瑞典)",
+ "sma-nO": "南沙米文 (挪威)",
+ "sma-sE": "南沙米文 (瑞典)",
+ "smn": "伊納立沙米文 (芬蘭)",
+ "sms": "斯科特沙米文 (芬蘭)",
+ "sr-Cyrl-bA": "塞爾維亞文 (斯拉夫)",
+ "sr-Cyrl-rS": "塞爾維亞文 (斯拉夫,塞爾維亞蒙特內哥羅)",
+ "sr-Latn-bA": "塞爾維亞文 (拉丁)",
+ "sr-Latn-rS": "塞爾維亞文 (拉丁,塞爾維亞)",
+ "dsb": "下索布文 (德國)",
+ "hsb": "上索布文 (德國)",
+ "es-es-tradnl": "西班牙文 (西班牙,傳統排序)",
+ "es-aR": "西班牙文 (阿根廷)",
+ "es-bO": "西班牙文 (玻利維亞)",
+ "es-cL": "西班牙文 (智利)",
+ "es-cO": "西班牙文 (哥倫比亞)",
+ "es-cR": "西班牙文 (哥斯大黎加)",
+ "es-dO": "西班牙文 (多明尼加共和國)",
+ "es-eC": "西班牙文 (厄瓜多)",
+ "es-eS": "西班牙文 (西班牙)",
+ "es-gT": "西班牙文 (瓜地馬拉)",
+ "es-hN": "西班牙文 (宏都拉斯)",
+ "es-mX": "西班牙文 (墨西哥)",
+ "es-nI": "西班牙文 (尼加拉瓜)",
+ "es-pA": "西班牙文 (巴拿馬)",
+ "es-pE": "西班牙文 (秘魯)",
+ "es-pR": "西班牙文 (波多黎各)",
+ "es-pY": "西班牙文 (巴拉圭)",
+ "es-sV": "西班牙文 (薩爾瓦多)",
+ "es-uS": "西班牙文 (美國)",
+ "es-uY": "西班牙文 (烏拉圭)",
+ "es-vE": "西班牙文 (委內瑞拉)",
+ "sv-fI": "瑞典文 (芬蘭)",
+ "uz-cyrl": "烏茲別克文 (斯拉夫,烏茲別克)",
+ "uz-latn": "烏茲別克文 (拉丁,烏茲別克)",
+ "af": "南非荷蘭文 (南非)",
+ "sq": "阿爾巴尼亞文 (阿爾巴尼亞)",
+ "am": "阿姆哈拉文 (衣索比亞)",
+ "hy": "亞美尼亞文 (亞美尼亞)",
+ "as": "阿薩姆文 (印度)",
+ "ba": "巴什基爾文 (俄羅斯)",
+ "eu": "巴斯克文 (巴斯克文)",
+ "be": "白俄羅斯文 (白俄羅斯)",
+ "br": "布里敦文 (法國)",
+ "bg": "保加利亞文 (保加利亞)",
+ "ca": "卡達隆尼亞文 (卡達隆尼亞文)",
+ "co": "科西嘉文 (法國)",
+ "cs": "捷克文 (捷克共和國)",
+ "da": "丹麥文 (丹麥)",
+ "prs": "達利文 (阿富汗)",
+ "dv": "迪維西文 (馬爾地夫)",
+ "et": "愛沙尼亞文 (愛沙尼亞)",
+ "fo": "法羅文 (法羅群島)",
+ "fil": "菲律賓文 (菲律賓)",
+ "fi": "芬蘭文 (芬蘭)",
+ "gl": "加利西亞文 (加利西亞)",
+ "ka": "喬治亞文 (喬治亞)",
+ "el": "希臘文 (希臘)",
+ "gu": "古吉拉特文 (印度)",
+ "ha": "豪撒文 (拉丁,奈及利亞)",
+ "he": "希伯來文 (以色列)",
+ "hi": "印度文 (印度)",
+ "hu": "匈牙利文 (匈牙利)",
+ "is": "冰島文 (冰島)",
+ "ig": "伊布文 (奈及利亞)",
+ "id": "印尼文 (印尼)",
+ "ga": "愛爾蘭文 (愛爾蘭)",
+ "xh": "科薩文 (南非)",
+ "zu": "祖魯文 (南非)",
+ "ja": "日文 (日本)",
+ "kn": "坎那達文 (印度)",
+ "kk": "哈薩克文 (哈薩克)",
+ "km": "高棉文 (柬埔寨)",
+ "rw": "金揚萬答文 (盧安達)",
+ "sw": "史瓦西里文 (肯亞)",
+ "kok": "貢根文 (印度)",
+ "ko": "韓文 (韓國)",
+ "ky": "吉爾吉斯文 (吉爾吉斯)",
+ "lo": "寮文 (寮國人民共和國)",
+ "lv": "拉脫維亞文 (拉脫維亞)",
+ "lt": "立陶宛文 (立陶宛)",
+ "lb": "盧森堡文 (盧森堡)",
+ "mk": "馬其頓文 (北馬其頓)",
+ "ml": "馬來亞拉姆文 (印度)",
+ "mt": "馬爾他文 (馬爾他)",
+ "mi": "毛利文 (紐西蘭)",
+ "mr": "馬拉提文 (印度)",
+ "moh": "莫霍克文 (莫霍克)",
+ "ne": "尼泊爾文 (尼泊爾)",
+ "oc": "奧克西坦文 (法國)",
+ "or": "歐迪亞文 (印度)",
+ "ps": "普什圖文 (阿富汗)",
+ "fa": "波斯文",
+ "pl": "波蘭文 (波蘭)",
+ "pa": "旁遮普文 (印度)",
+ "ro": "羅馬尼亞文 (羅馬尼亞)",
+ "rm": "羅曼斯文 (瑞士)",
+ "ru": "俄文 (俄羅斯)",
+ "sa": "梵文 (印度)",
+ "st": "賴索托文 (南非)",
+ "tn": "塞茲瓦納文 (南非)",
+ "si": "僧伽羅文 (斯里蘭卡)",
+ "sk": "斯洛伐克文 (斯洛伐克)",
+ "sl": "斯洛維尼亞文 (斯洛維尼亞)",
+ "sv": "瑞典文 (瑞典)",
+ "syr": "敘利亞文 (敘利亞)",
+ "tg": "塔吉克文 (斯拉夫,塔吉克)",
+ "ta": "坦米爾文 (印度)",
+ "tt": "韃靼文 (俄羅斯)",
+ "te": "特拉古文 (印度)",
+ "th": "泰文 (泰國)",
+ "bo": "藏文 (中華人民共和國)",
+ "tr": "土耳其文 (土耳其)",
+ "tk": "土庫曼文 (土庫曼)",
+ "uk": "烏克蘭文 (烏克蘭)",
+ "ur": "烏都文 (巴基斯坦伊斯蘭共和國)",
+ "vi": "越南文 (越南)",
+ "cy": "威爾斯文 (英國)",
+ "wo": "沃洛夫文 (塞內加爾)",
+ "ii": "爨文 (中華人民共和國)",
+ "yo": "優魯巴文 (奈及利亞)"
+ },
+ "Category": {
+ "airPlay": "AirPlay",
+ "airPrint": "AirPrint",
+ "androidDefenderAtp": "適用於端點的 Microsoft Defender",
+ "androidDeviceOwnerApplications": "應用程式",
+ "androidForWorkPassword": "裝置密碼",
+ "appManagement": "允許或封鎖應用程式",
+ "applicationGuard": "Microsoft Defender 應用程式防護",
+ "applicationRestrictions": "受限應用程式",
+ "applicationVisibility": "顯示或隱藏應用程式",
+ "applications": "App Store",
+ "applicationsAndGames": "App Store、文件檢視、遊戲",
+ "applicationsAndGoogle": "Google Play 商店",
+ "appsAndExperience": "應用程式及體驗",
+ "associatedDomains": "相關網域",
+ "autonomousSingleAppMode": "自發單一應用程式模式",
+ "azureOperationalInsights": "Azure Operational Insights",
+ "bitLocker": "Windows 加密",
+ "browser": "瀏覽器",
+ "builtinApps": "內建應用程式",
+ "cellular": "行動電話通訊",
+ "cloudAndStorage": "雲端和存放裝置",
+ "cloudPrint": "雲端印表機",
+ "complianceEmailProfile": "電子郵件",
+ "connectedDevices": "已連線的裝置",
+ "connectivity": "行動數據與連線",
+ "contentCaching": "內容快取",
+ "controlPanelAndSettings": "控制台與設定",
+ "credentialGuard": "Microsoft Defender Credential Guard",
+ "customCompliance": "自訂合規性",
+ "customCompliancePreview": "自訂合規性 (預覽)",
+ "customConfiguration": "自訂組態設定檔",
+ "customOMASettings": "自訂 OMA-URI 設定",
+ "customPreferences": "喜好設定檔案",
+ "defender": "Microsoft Defender 防毒軟體",
+ "defenderAntivirus": "Microsoft Defender 防毒軟體",
+ "defenderExploitGuard": "Microsoft Defender 惡意探索防護",
+ "defenderFirewall": "Microsoft Defender 防火牆",
+ "defenderLocalSecurityOptions": "本機裝置安全性選項",
+ "defenderSecurityCenter": "Microsoft Defender 資訊安全中心",
+ "deliveryOptimization": "傳遞最佳化",
+ "derivedCredentialAuthenticationConfiguration": "衍生認證",
+ "deviceExperience": "裝置體驗",
+ "deviceFirmwareConfigurationInterface": "裝置韌體設定介面",
+ "deviceGuard": "Microsoft Defender 應用程式控制",
+ "deviceHealth": "裝置健全狀況",
+ "devicePassword": "裝置密碼",
+ "deviceProperties": "裝置屬性",
+ "deviceRestrictions": "一般",
+ "deviceSecurity": "系統安全性",
+ "display": "顯示",
+ "domainJoin": "加入網域",
+ "domains": "網域",
+ "edgeBrowser": "舊版 Microsoft Edge (45 版及較舊版本)",
+ "edgeBrowserSmartScreen": "Microsoft Defender SmartScreen",
+ "edgeKiosk": "Microsoft Edge 資訊亭模式",
+ "editionUpgrade": "版本升級",
+ "education": "教育",
+ "educationDeviceCerts": "裝置憑證",
+ "educationStudentCerts": "學生憑證",
+ "educationTakeATest": "執行測試",
+ "educationTeacherCerts": "老師憑證",
+ "emailProfile": "電子郵件",
+ "enterpriseDataProtection": "Windows 資訊保護",
+ "expeditedCheckin": "行動裝置管理設定",
+ "extensibleSingleSignOn": "單一登入應用程式延伸模組",
+ "filevault": "FileVault",
+ "firewall": "防火牆",
+ "games": "遊戲",
+ "gatekeeper": "Gatekeeper",
+ "healthMonitoring": "狀況監控",
+ "homeScreenLayout": "主畫面版面配置",
+ "iOSWallpaper": "底色圖案",
+ "importedPFX": "PKCS 匯入的憑證",
+ "iosDefenderAtp": "適用於端點的 Microsoft Defender",
+ "iosKiosk": "資訊亭",
+ "kernelExtensions": "核心延伸模組",
+ "keyboardAndDictionary": "鍵盤與字典",
+ "kiosk": "資訊亭",
+ "kioskAndroidEnterprise": "專用裝置",
+ "kioskConfiguration": "資訊亭",
+ "kioskConfigurationV2": "資訊亭",
+ "kioskWebBrowser": "資訊亭網頁瀏覽器",
+ "lockScreenMessage": "鎖定畫面訊息",
+ "lockedScreenExperience": "鎖定畫面體驗",
+ "logging": "報告和遙測",
+ "loginItems": "登入項目",
+ "loginWindow": "登入視窗",
+ "macDefenderAtp": "適用於端點的 Microsoft Defender",
+ "maintenance": "維護",
+ "malware": "惡意程式碼",
+ "messaging": "傳訊",
+ "networkBoundary": "網路界限",
+ "networkProxy": "網路 Proxy",
+ "notifications": "應用程式通知",
+ "pKCS": "PKCS 憑證",
+ "password": "密碼",
+ "personalProfile": "個人設定檔",
+ "personalization": "個人化",
+ "policyOverride": "覆寫群組原則",
+ "powerSettings": "電源設定",
+ "printer": "印表機",
+ "privacy": "隱私權",
+ "privacyPerApp": "個別應用程式的隱私權例外狀況",
+ "privacyPreferences": "隱私權喜好設定",
+ "projection": "投影",
+ "sCCMCompliance": "設定管理員合規性",
+ "sCEP": "SCEP 憑證",
+ "sCEPProperties": "SCEP 憑證",
+ "sMode": "模式切換 (僅限 Windows 測試人員)",
+ "safari": "Safari",
+ "search": "搜尋",
+ "session": "工作階段",
+ "sharedDevice": "共享的 iPad",
+ "sharedPCAccountManager": "共用多重使用者裝置",
+ "singleSignOn": "單一登入",
+ "smartScreen": "Microsoft Defender SmartScreen",
+ "softwareUpdates": "設定",
+ "start": "啟動",
+ "systemExtensions": "系統延伸模組",
+ "systemSecurity": "系統安全性",
+ "trustedCert": "信任的憑證",
+ "updates": "更新",
+ "userRights": "使用者權限",
+ "usersAndAccounts": "使用者及帳戶",
+ "vPN": "基底 VPN",
+ "vPNApps": "自動 VPN",
+ "vPNAppsAndTrafficRules": "應用程式和流量規則",
+ "vPNConditionalAccess": "條件式存取",
+ "vPNConnectivity": "連線能力",
+ "vPNDNSTriggers": "DNS 設定",
+ "vPNIKEv2": "IKEv2 設定",
+ "vPNProxy": "Proxy",
+ "vPNSplitTunneling": "分割通道",
+ "vPNTrustedNetwork": "受信任的網路偵測",
+ "webContentFilter": "Web 內容篩選",
+ "wiFi": "Wi-Fi",
+ "win10Wifi": "Wi-Fi",
+ "windowsAtp": "適用於端點的 Microsoft Defender",
+ "windowsDefenderATP": "適用於端點的 Microsoft Defender",
+ "windowsHelloForBusiness": "Windows Hello 企業版",
+ "windowsSpotlight": "Windows 焦點",
+ "wiredNetwork": "有線網路",
+ "wireless": "無線",
+ "wirelessProjection": "無線投影",
+ "workProfile": "工作設定檔設定",
+ "workProfilePassword": "工作設定檔密碼",
+ "xboxServices": "Xbox 服務",
+ "zebraMx": "MX 設定檔 (僅限 Zebra)",
+ "complianceActionsLabel": "因不符合規範而採取的動作"
+ },
+ "WindowsFeatureUpdateProfile": {
+ "Details": {
+ "Description": {
+ "label": "說明"
+ },
+ "FeatureDeploymentSettings": {
+ "header": "功能部署設定"
+ },
+ "FeatureUpdateVersion": {
+ "infoballoon": "此功能無法降級裝置。",
+ "label": "要部署的功能更新"
+ },
+ "GradualRolloutEndDate": {
+ "label": "最終群組可用性"
+ },
+ "GradualRolloutInterval": {
+ "label": "群組之間的天數"
+ },
+ "GradualRolloutStartDate": {
+ "label": "第一個群組可用性"
+ },
+ "Name": {
+ "label": "名稱"
+ },
+ "RolloutOptions": {
+ "label": "推出選項"
+ },
+ "RolloutSettings": {
+ "header": "您何時要讓更新在 Windows Update 中提供?"
+ },
+ "ScopeSettings": {
+ "header": "設定此原則的範圍標籤。"
+ },
+ "StartDateOnlyStartDate": {
+ "label": "第一個可用日期"
+ },
+ "bladeTitle": "功能更新部署",
+ "deploymentSettingsTitle": "部署設定",
+ "loadError": "載入失敗!",
+ "windows11EULA": "選取此 [功能更新] 進行部署即表示您將此作業系統套用至裝置時,同意 (1) 透過大量授權購買適用的 Windows 授權係,或 (2) 您已獲得授權可繫結您的組織,並代表您的組織接受列於此處的相關 Microsoft 軟體授權條款{0}。"
+ },
+ "Notifications": {
+ "deploymentSaved": "已儲存 \"{0}\"。",
+ "newFeatureUpdateDeploymentCreated": "已建立新的功能更新部署。"
+ },
+ "TabName": {
+ "deploymentSettings": "部署設定",
+ "groupAssignmentSettings": "指派",
+ "scopeSettings": "範圍標籤"
+ }
+ },
+ "WIPPinRequirements": {
+ "WipLowercaseCharacterPinRequirements": {
+ "allow": "允許在 PIN 中使用小寫字母",
+ "notAllow": "不允許在 PIN 中使用小寫字母",
+ "requireAtLeastOne": "要求在 PIN 中至少使用一個小寫字母"
+ },
+ "WipSpecialCharacterPinRequirements": {
+ "allow": "允許在 PIN 中使用特殊字元",
+ "notAllow": "不允許在 PIN 中使用特殊字元",
+ "requireAtLeastOne": "要求在 PIN 中至少使用一個特殊字元"
+ },
+ "WipUppercaseCharacterPinRequirements": {
+ "allow": "允許在 PIN 中使用大寫字母",
+ "notAllow": "不允許在 PIN 中使用大寫字母",
+ "requireAtLeastOne": "要求在 PIN 中至少使用一個大寫字母"
+ }
+ },
+ "OutlookAppConfigSettings": {
+ "AllowUserToChangeSetting": {
+ "title": "允許使用者變更設定",
+ "tooltip": "指定是否允許使用者變更設定。"
+ },
+ "AllowWorkAccounts": {
+ "title": "只允許公司或學校帳戶",
+ "tooltip": " 若啟用此設定,使用者將無法在 Outlook 內新增個人電子郵件及儲存體帳戶。若使用者將個人帳戶新增至 Outlook,系統會提示使用者移除該個人帳戶。若使用者不移除個人帳戶,就無法新增公司或學校帳戶。"
+ },
+ "BlockExternalImages": {
+ "title": "封鎖外部影像",
+ "tooltip": "啟用封鎖外部影像時,應用程式會禁止下載裝載於網際網路且內嵌在郵件內文中的影像。若設為未設定,預設應用程式設定會設為 [關閉]"
+ },
+ "ConfigureEmail": {
+ "title": "進行電子郵件帳戶設定"
+ },
+ "DefaultAppSignatureSetting": {
+ "Tooltip": {
+ "android": "預設應用程式簽章指出應用程式在撰寫訊息時,是否要使用「取得 Android 版 Outlook」作為預設簽章。若將此設定設為 [關閉],將不會使用此預設簽章; 但使用者可以新增自己的簽章。\r\n\r\n若將此設定設為 [未設定],預設應用程式設定將設為 [開啟]。",
+ "iOS": "預設應用程式簽章指出應用程式在撰寫訊息時,是否要使用「取得 iOS 版 Outlook」作為預設簽章。若將此設定設為 [關閉],將不會使用此預設簽章; 但使用者可以新增自己的簽章。\r\n\r\n若將此設定設為 [未設定],預設應用程式設定將設為 [開啟]。"
+ },
+ "title": "預設應用程式簽章"
+ },
+ "OfficeFeedReplies": {
+ "title": "探索摘要",
+ "tooltip": "探索摘要會顯示您最常存取的 Office 檔案。根據預設,當使用者的 Delve 啟用時,此摘要會啟用。當設定為未設定時,預設應用程式設定會設為 [開啟]。"
+ },
+ "OrganizeMailByThread": {
+ "title": "依執行緒整理郵件",
+ "tooltip": "Outlook 中的預設行為是將郵件交談組合為執行緒交談檢視。如果停用此設定,Outlook 會分別顯示每個郵件,而且不會依執行緒將其分組。"
+ },
+ "PlayMyEmails": {
+ "title": "播放我的電子郵件",
+ "tooltip": "根據預設,應用程式不會啟用 [播放我的電子郵件] 功能,但會透過收件匣中的橫幅,向符合資格的使用者推廣此功能。當設定為 [關閉] 時,應用程式中將不會對符合資格的使用者推廣此功能。即便此功能的設定為 [關閉],使用者仍可選擇從應用程式中手動啟用 [播放我的電子郵件]。當設定為 [未設定] 時,預設的應用程式設定為 [開啟],將會向符合資格的使用者推廣此功能。"
+ },
+ "SuggestedReplies": {
+ "title": "建議的回覆",
+ "tooltip": "當您開啟訊息時,Outlook 可能會在訊息下方建議回覆。如果您選取建議的回覆,可以在傳送前編輯回覆。"
+ },
+ "SyncCalendars": {
+ "title": "同步行事曆",
+ "tooltip": "設定使用者是否可將 Outlook 行事曆同步到原生行事曆應用程式與資料庫。"
+ },
+ "TextPredictions": {
+ "title": "文字預測",
+ "tooltip": "當您撰寫訊息時,Outlook 可以建議字詞與片語。當 Outlook 提供建議時,撥動即可接受。當未設定時,預設應用程式設定將設為 [開啟]。"
+ },
+ "ThemesEnabled": {
+ "title": "佈景主題已啟用",
+ "tooltip": "指定使用者能否使用自訂視覺效果的佈景主題。"
+ }
+ },
+ "AssignmentFilters": {
+ "assignmentFilterColumnHeader": "篩選",
+ "noFilters": "無"
+ },
+ "Platform": {
+ "all": "全部",
+ "android": "Android 裝置系統管理員",
+ "androidAOSP": "Android (AOSP)",
+ "androidEnterprise": "Android Enterprise",
+ "androidForWork": "Android Enterprise",
+ "androidWorkProfile": "Android Enterprise",
+ "common": "通用",
+ "iOS": "iOS/iPadOS",
+ "iosAndAndroidPlatformLabel": "iOS 與 Android",
+ "iosCommaAndroidPlatformLabel": "iOS、Android",
+ "linux": "Linux",
+ "macOS": "macOS",
+ "unknown": "未知",
+ "unsupported": "不支援",
+ "windows": "Windows",
+ "windows10": "Windows 10 及更新版本",
+ "windows10CM": "Windows 10 及更新版本 (ConfigMgr)",
+ "windows10Holo": "Windows 10 全像攝影版",
+ "windows10Mobile": "Windows 10 行動裝置版",
+ "windows10Team": "Windows 10 團隊版",
+ "windows10X": "Windows 10X",
+ "windows8": "Windows 8.1 及更新版本",
+ "windows8And10": "Windows 8 與 10",
+ "windowsPhone": "Windows Phone 8.1",
+ "windows10AndLater": "Windows 10 及更新版本",
+ "windows10AndWindowsServer": "Windows 10、Windows 11 與 Windows Server (ConfigMgr)",
+ "windows10andLaterCM": "Windows 10 及更新版本 (ConfigMgr)",
+ "holoLens": "HoloLens",
+ "surfaceHub2": "Surface Hub 2",
+ "surfaceHub2S": "Surface Hub 2S",
+ "windowsPC": "Windows 電腦"
+ },
+ "AppInformationTab": {
+ "Error": {
+ "multipleChildApps": "macOS LOB 應用程式只能在上傳的套件包含單一應用程式時,安裝為受控應用程式。"
+ },
+ "Info": {
+ "AppStoreUrl": {
+ "android": "輸入 Google Play 商店中應用程式清單的連結。例如:",
+ "androidLink": "https://play.google.com/store/apps/details?id=com.microsoft.office.outlook",
+ "windows": "輸入 Microsoft Store 中應用程式清單的連結。例如:",
+ "windowsLink": "https://www.microsoft.com/en-us/p/microsoft-to-do-lists-tasks-reminders/9nblggh5r558"
+ },
+ "appPackageFile": "包含應用程式的檔案格式可在裝置上側載。有效的套件類型包括: Android (.apk)、iOS (.ipa)、macOS (.pkg、.intunemac)、Windows (.msi、.appx、.appxbundle、.msix 和 .msixbundle)。",
+ "applicableDeviceType": "選取可安裝此應用程式的裝置類型。",
+ "category": "將應用程式分類,讓使用者更方便在公司入口網站中排序及尋找。您可以選擇多個類別。",
+ "categoryLink": "https://docs.microsoft.com/en-us/intune/apps/apps-add#create-and-edit-categories-for-apps",
+ "description": "協助您的裝置使用者了解應用程式的內容及 (或) 應用程式的功能。使用者會在公司入口網站看見此描述。",
+ "developer": "開發應用程式的公司或個人名稱。此資訊將會顯示給登入系統管理中心的人員看。",
+ "displayVersion": "應用程式的版本。使用者可在公司入口網站看見此資訊。",
+ "infoUrl": "將人員連結至具有應用程式詳細資訊的網站或文件。此資訊 URL 將會顯示給公司入口網站中的使用者看。",
+ "isFeatured": "精選應用程式會放在公司入口網站的醒目處,以便使用者快速取得。",
+ "learnMore": "深入了解",
+ "logo": "上傳與應用程式建立關聯的標誌。此標誌在整個公司入口網站中都會顯示在應用程式旁邊。",
+ "macOSDmgAppPackageFile": "包含您應用程式的檔案,其格式可在裝置上側載。有效的套件類型: .dmg.",
+ "minOperatingSystem": "選取可安裝應用程式的最舊作業系統版本。如果您將應用程式指派給具有更舊作業系統的裝置,將不會安裝該應用程式。",
+ "name": "新增應用程式的名稱。此名稱會顯示在 Intune 應用程式清單中,以及顯示給公司入口網站中的使用者看。",
+ "notes": "新增應用程式的其他相關附註。附註將會顯示給登入系統管理中心的人員看。",
+ "owner": "組織中管理授權或可供洽詢此應用程式的人員名稱。此名稱將會顯示給登入系統管理中心的人員看。",
+ "packageName": "請連絡裝置製造商以取得應用程式的套件名稱。範例套件名稱: com.example.app",
+ "privacyUrl": "為想要深入了解應用程式隱私權設定及條款的人員提供連結。此隱私權 URL 將會顯示給公司入口網站中的使用者看。",
+ "publisher": "散發應用程式的開發人員或公司名稱。使用者可在公司入口網站看見此資訊。",
+ "selectApp": "在 App Store 中搜尋要使用 Intune 部署的 iOS 市集應用程式。",
+ "useManagedBrowser": "如有必要,當使用者開啟 Web 應用程式時,其會在受 Intune 保護的瀏覽器中開啟,例如 Microsoft Edge 或 Intune Managed Browser。此設定同時適用於 iOS 和 Android 裝置。",
+ "useManagedBrowserLink": "https://docs.microsoft.com/en-us/intune/apps/app-configuration-managed-browser",
+ "win32AppPackageFile": "包含您應用程式的檔案,其格式可在裝置上側載。有效的套件類型: .intunewin。"
+ },
+ "descriptionPreview": "預覽",
+ "descriptionRequired": "需要描述。",
+ "editDescription": "編輯描述",
+ "macOSMinOperatingSystemAdditionalInfo": "上傳 .pkg 檔案的最小作業系統為 macOS 10.14。上傳 .intunemac 檔案以選取較舊的最小作業系統。",
+ "name": "應用程式資訊",
+ "nameForOfficeSuitApp": "應用程式套件資訊"
+ },
+ "Tooltips": {
+ "PolicySettings": {
+ "TouchId1": {
+ "android": "您可在 Android 上允許使用指紋識別碼而不使用 PIN。系統會在使用者使用其工作帳戶存取此應用程式時,提示使用者提供指紋。",
+ "iOS": "在 iOS/iPadOS 裝置上,您可以允許不使用 PIN 碼而改以使用指紋識別。當使用者使用其工作帳戶存取此應用程式時,會收到提示要求他們提供其指紋識別。",
+ "mac": "在 Mac 裝置上,您可以允許不使用 PIN 而改用指紋識別碼。當使用者以其公司帳戶存取此應用程式時,系統會提示他們提供指紋。"
+ },
+ "appSharingFromLevel1": "請選取下列其中一個選項,以指定此應用程式可以從其接收資料的來源應用程式:",
+ "appSharingFromLevel2": "{0}: 只允許從其他受原則管理應用程式接收組織文件或帳戶的資料",
+ "appSharingFromLevel3": "{0}: 允許從任何應用程式接收組織文件或帳戶的資料",
+ "appSharingFromLevel4": "{0}: 不允許從任何應用程式接收組織文件或帳戶的資料",
+ "appSharingFromLevel5": "{0}: 允許來自任何應用程式的資料轉送,且將所有不具使用者身分識別的輸入資料視作組織資料。",
+ "appSharingToLevel1": "請選取下列其中一個選項,以指定可以接收此應用程式所傳送之資料的應用程式:",
+ "appSharingToLevel2": "{0}: 只允許將組織資料傳送到其他受原則管理的應用程式",
+ "appSharingToLevel3": "{0}: 允許將組織資料傳送到任何應用程式",
+ "appSharingToLevel4": "{0}: 不允許將組織資料傳送到任何應用程式",
+ "appSharingToLevel5": "{0}: 僅允許對其他原則受控應用程式的轉送,以及對已註冊裝置上其他 MDM 受控應用程式的檔案轉送",
+ "appSharingToLevel6": "{0}: 僅允許對其他原則受控應用程式的轉送,並篩選 [Open-in/Share] 對話方塊為只顯示原則受控的應用程式",
+ "conditionalEncryption1": "選取 {0} 可在已註冊的裝置上偵測到裝置加密時,停用內部應用程式儲存體的應用程式加密。",
+ "conditionalEncryption2": "注意: Intune 只能透過 Intune MDM 偵測到裝置註冊。外部應用程式儲存體仍會加密,以確保非受控的應用程式無法存取資料。",
+ "contactSyncMac": "若已停用,應用程式就無法將連絡人儲存到原生通訊錄中。",
+ "contactsSync": "選擇 [封鎖],以防止受原則管理的應用程式將資料儲存到裝置的原生應用程式 (例如連絡人、行事曆和小工具) ,或防止在受原則管理的應用程式內使用增益集。如果您選擇 [允許],則受原則管理的應用程式可以將資料儲存到原生應用程式或使用增益集,如果這些功能在受原則管理的應用程式中受到支援並啟用。
應用程式可能會提供額外的設定功能與應用程式設定原則。如需詳細資訊,請參閱應用程式的文件。",
+ "encryptionAndroid1": "對於關聯到 Intune 行動應用程式管理原則的應用程式,Microsoft 會提供加密。檔案在 I/O 作業期間,將會依據行動應用程式管理原則中的設定同步加密資料。Android 上受管理的應用程式會利用平台加密程式庫使用 CBC 模式的 AES-128 加密。此加密法並未符合 FIPS 140-2 規範。在用法說明中明確指出,只有使用 SigAlg 參數時,才支援 SHA-256 加密,而且此加密法只可在 4.2 (含) 版以上的裝置上運作。裝置儲存體中的內容一律會加密。",
+ "encryptionAndroid2": "當您的應用程式原則規定需要加密時,使用者便須設定及使用 PIN 碼,才能存取其裝置。若未設定存取裝置所需的 PIN 碼,應用程式將不會啟動,而且會對使用者顯示下列訊息:「根據您公司的要求,您必須先啟用裝置的 PIN 碼,才能存取此應用程式」。",
+ "encryptionMac1": "對於與 Intune 行動應用程式管理原則建立關聯的應用程式,Microsoft 會提供加密。在檔案 I/O 作業期間,會依據行動應用程式管理原則中的設定同步加密資料。Mac 上受管理的應用程式會利用平台加密程式庫使用 CBC 模式的 AES-128 加密。此加密方法並未符合 FIPS 140-2 規範。在用法說明中明確指出,使用 SigAlg 參數時,才支援 SHA-256 加密,且此加密方法只可在 4.2 (含) 以上的裝置上運作。裝置儲存體中的內容一律會經過加密。",
+ "faceId1": "您可以在適當的情況下,使用臉部辨識而不使用 PIN 碼。當使用者使用其工作帳戶存取此應用程式時,將會提示其提供臉部辨識。",
+ "faceId2": "選取 [是] 可啟用臉部辨識而不使用 PIN 碼來存取應用程式。",
+ "managementLevelsAndroid1": "使用此選項來指定此原則適用於 Android 裝置系統管理員的裝置、Android Enterprise 裝置或非受控裝置。",
+ "managementLevelsAndroid2": "{0}: 非受控裝置為未偵測到 Intune MDM 管理的裝置。這包括協力廠商 MDM 廠商。",
+ "managementLevelsAndroid3": "{0}: 使用 Android 裝置管理 API 的 Intune 受控裝置。",
+ "managementLevelsAndroid4": "{0}: 使用 Android Enterprise 公司設定檔或 Android Enterprise 完整裝置管理的 Intune 受控裝置。",
+ "managementLevelsIos1": "使用此選項來指定此原則適用 MDM 受控裝置或非受控裝置。",
+ "managementLevelsIos2": "{0}: 非受控裝置為未偵測到 Intune MDM 管理的裝置。這包括協力廠商 MDM 廠商。",
+ "managementLevelsIos3": "{0}: 受控裝置受 Intune MDM 管理。",
+ "minAppVersion": "請定義使用者應有的所需最小 App 版本號碼,以取得對該應用程式的安全存取權。",
+ "minAppVersionWarning": "請定義使用者應有的建議最小 App 版本號碼,以取得對該應用程式的安全存取權。",
+ "minOsVersion": "請定義使用者應有的所需最小 OS 版本號碼,以取得對該應用程式的安全存取權。",
+ "minOsVersionWarning": "請定義使用者應有的建議最小 OS 版本號碼,以取得對該應用程式的安全存取權。",
+ "minPatchVersion": "請定義必要的 Android 安全性更新程式封裝等級,使用者至少要有這個等級才能安全存取應用程式。",
+ "minPatchVersionWarning": "請定義建議的 Android 安全性更新程式封裝等級,使用者至少要有這個等級才能安全存取應用程式。",
+ "minSdkVersion": "請定義使用者應有的所需最小 Intune 應用程式保護原則 SDK 版本,以取得對該應用程式的安全存取權。",
+ "requireAppPinDefault": "選取 [是]會在註冊的裝置上偵測到裝置鎖定時,停用應用程式 PIN。
",
+ "targetAllApps1": "使用此選項,將您原則的目標設為處於任何管理狀態之裝置上的應用程式。",
+ "targetAllApps2": "若使用者為特定管理狀態指定了目標原則,則此設定在原則衝突解決期間將受到取代。",
+ "touchId2": "選取 {0} 可要求在存取應用程式時提供指紋識別,而不是提供 PIN 碼。"
+ },
+ "Tap": {
+ "pinResetAfterNumberOfDays": "指定天數,使用者在那之後必須重設 PIN。",
+ "previousPinBlockCount": "此設定會指定 Intune 要維護的前幾個 PIN 數目。任何新的 PIN 都必須與 Intune 維護的 PIN 不同。"
+ },
+ "WipPolicySettings": {
+ "25": "",
+ "allowWindowsSearch": "這會允許 Windows Search 繼續在已加密的資料中搜尋。",
+ "authoritativeIpRanges": "如果您想覆寫 IP 範圍的 Windows 自動偵測,請啟用此設定。",
+ "authoritativeProxyServers": "如果您想覆寫 Proxy 伺服器的 Windows 自動偵測,請啟用此設定。",
+ "checkInput": "檢查輸入是否有效",
+ "dataRecoveryCert": "復原憑證是特殊的加密檔案系統 (EFS) 憑證,可以在您的加密金鑰遺失或損毀時用於復原加密的檔案。您必須建立復原憑證,並在此指定。如需詳細資訊,請參閱這裡",
+ "enterpriseCloudResources": "指定要將雲端資源視為公司,且受 Windows 資訊保護原則所保護。可利用以 '|' 字元分號隔開的個別項目來指定多重資源。
若公司中設有 Proxy,則可指定 Proxy 來路由進入您指定之雲端資源的流量。
URL[,Proxy]|URL[,Proxy]
沒有 Proxy: contoso.sharepoint.com|contoso.visualstudio.com
有 Proxy: contoso.sharepoint.com,proxy.contoso.com|contoso.visualstudio.com,proxy.contoso.com
",
+ "enterpriseIPv4Ranges": "指定組成您公司網路的 IPv4 範圍。這些項目可與您指定的企業網路網域名稱結合一起使用,來定義公司網路界限。
若要啟用 Windows 資訊保護,需要此設定。
可利用以逗號隔開的個別項目來指定多重範圍。
例如: 3.4.0.1-3.4.255.255,192.168.1.1-192.168.255.255
",
+ "enterpriseIPv6Ranges": "指定組成您公司網路的 IPv6 範圍。這些項目可與您指定的企業網路網域名稱結合一起使用,來定義公司網路界限。
可利用以逗號隔開的個別項目來指定多重範圍。
例如: 2001:4898:dc05::-2001:4898:dc05:ffff:ffff:ffff:ffff:ffff,2a01:110::-2a01:110:7fff:ffff:ffff:ffff:ffff:ffff
",
+ "enterpriseInternalProxyServers": "若公司內設有 Proxy,則您可指定該 Proxy,讓流量透過它進入企業中指定的雲端資源。
可利用以分號隔開的個別項目來指定多重值。
例如: contoso.internalproxy1.com;contoso.internalproxy2.com
",
+ "enterpriseNetworkDomainNames": "指定組成您公司網路的 DNS 名稱。這些項目可與您指定的 IP 範圍結合一起使用,來定義公司網路界限。可利用以逗號隔開的個別項目來指定多重值。
若要啟用 Windows 資訊保護,需要此設定。
例如: corp.contoso.com,region.contoso.com
",
+ "enterpriseProtectedDomainNames": "請指定組成公司網路的 DNS 名稱。這些名稱會與您為定義公司網路界限而指定的 IP 範圍結合使用。可以使用 '|' 分隔個別項目,以指定多個值。
這是啟用 Windows 資訊保護的必要設定。
範例: corp.contoso.com|region.contoso.com
",
+ "enterpriseProxyServers": "若公司網路中有對外的 Proxy,請於此處指定。指定 Proxy 伺服器位址時,也應指定連接埠來允許流量且受 Windows 資訊保護。
注意: 此清單不得包含企業內部 Proxy 伺服器清單中的伺服器。可利用以分號隔開的個別項目來指定多重值。
例如: proxy.contoso.com:80;proxy2.contoso.com:80
",
+ "maxInactivityTime1": "指定在裝置閒置後允許的最大時間長度 (分鐘),之後裝置會以 PIN 或密碼鎖定。使用者可在 [設定] 應用程式中選取小於指定最大時間的現有逾時值。請注意,無論此原則設定的值為多少,Lumia 950 和 950XL 的最大逾時值都是 5 分鐘。",
+ "maxInactivityTime2": "0 (預設) - 未定義任何逾時。預設 '0' 可解讀為「未定義任何逾時」。",
+ "maxPasswordAttempts1": "此原則在行動裝置和桌面的行為不同。",
+ "maxPasswordAttempts2": "在行動裝置上,當使用者達到此原則所設定的值時,裝置會抹除。",
+ "maxPasswordAttempts3": "在桌面上,當使用者達到此原則所設定的值時,則不會抹除,而是使桌面進入 BitLocker 復原模式,讓資料無法存取但可復原。如果 BitLocker 未啟用,即無法強制執行原則。",
+ "maxPasswordAttempts4": "在達到失敗嘗試次數限制前,使用者會看到鎖定畫面和警告,指出更多失敗的嘗試次數會鎖定他們的電腦。當使用者達到限制時,裝置會自動重新啟動並顯示 BitLocker 復原頁面。此頁面會提示使用者取得 BitLocker 復原金鑰。",
+ "maxPasswordAttempts5": "0 (預設) - 裝置永遠不會在輸入不正確的 PIN 或密碼後抹除。",
+ "maxPasswordAttempts6": "如果所有原則值都 = 0,最安全的值就是 0; 否則最低原則值為最安全的值。",
+ "mdmDiscoveryUrl": "指定 MDM 註冊端點的 URL,向 MDM 註冊的使用者會使用該端點。依預設,這是為 Intune 而指定的。",
+ "minimumPinLength1": "設定 PIN 所需最小字元數的整數值。預設值為 4。您可以為這項原則設定進行設定的最小數字為 4。您可以設定的最大數字必須小於 [最大 PIN 長度] 原則設定中設定的數字或數字 127,取最小者。",
+ "minimumPinLength2": "如果您設定這項原則設定,PIN 長度必須大於或等於此數字。如果您停用或未設定這項原則設定,PIN 長度必須大於或等於 4。",
+ "name": "此網路界限的名稱",
+ "neutralResources": "若公司內有驗證重新導向的端點,請於此處指定。指定於此處的位置有可能是個人或公司 (取決重新導向前的連線內容)。
可利用以逗號隔開的個別項目來指定多重值。
例如: sts.contoso.com,sts.contoso2.com
",
+ "passportForWork1": "將 Windows Hello 企業版設為 Windows 登入方法的值。",
+ "passportForWork2": "預設值為 true。如果您將此原則設為 false,使用者就無法佈建 Windows Hello 企業版,已加入 Azure Active Directory 而必須佈建的行動電話以外。",
+ "pinExpiration": "您可以為這項原則設定進行設定的最大數字為 730。您可以為這項原則設定進行設定的最小數字為 0。如果這項原則設為 0,使用者的 PIN 就永遠不會過期。",
+ "pinHistory1": "您可以為這項原則設定進行設定的最大數字為 50。您可以為這項原則設定進行設定的最小數字為 0。如果這項原則設為 0,就不必儲存先前的 PIN。",
+ "pinHistory2": "使用者目前的 PIN 包含在已與使用者帳戶建立關聯的 PIN 組中。PIN 歷程記錄不會透過 PIN 重設過程保留。",
+ "protectUnderLock": "在裝置處於鎖定狀態時保護應用程式內容。",
+ "protectionModeBlock": "禁止: 禁止企業資料離開受保護的應用程式。
",
+ "protectionModeOff": "關閉: 使用者可隨意將資料重新放置到受保護的應用程式以外。不會記錄任何動作。
",
+ "protectionModeOverride": "允許覆寫: 使用者嘗試將資料從受保護應用程式重新放置到未受保護的應用程式時,會收到提示。若使用者選擇覆寫此提示,將會記錄該動作。
",
+ "protectionModeSilent": "無訊息: 使用者可隨意將資料重新放置到受保護應用程式以外。系統會記錄這些動作。
",
+ "required": "必要",
+ "revokeOnMdmHandoff": "在 Windows 10 的 1703 版中新增。此原則會控制將裝置從 MAM 升級為 MDM 時,是否要撤銷 WIP 金鑰。若設為 [關閉],金鑰就不會撤銷,而使用者在升級之後會保有受保護檔案的存取權。如果使用與 MAM 服務相同的 WIP EnterpriseID 設定 MDM 服務,建議您使用此設定。",
+ "revokeOnUnenroll": "這會造成裝置從這項原則取消註冊時,撤銷加密金鑰。",
+ "rmsTemplateForEdp": "要用於 RMS 加密的 TemplateID GUID。Azure RMS 範本可讓 IT 系統管理員設定誰能存取 RMS 保護的檔案,及該存取權的有效時間長度等詳細資料。",
+ "showWipIcon": "這會重疊圖示,會讓使用者知道他們正在對公司內容執行動作。",
+ "useRmsForWip": "指定是否允許將 Azure RMS 加密用於 WIP。"
+ },
+ "requireAppPin": "選取 [是]會在註冊的裝置上偵測到裝置鎖定時,停用應用程式 PIN。
注意: Intune 只能偵測到 iOS/iPadOS 上有協力廠商 EMM 解決方案的裝置註冊。
"
+ },
+ "Autopilot": {
+ "AssignResourceAccount": {
+ "createNewCommandMenu": "新建",
+ "createNewResourceAccountInfo": "\r\n請在註冊期間註冊新的資源帳戶。資源帳戶會立即新增到資源帳戶表格,但在裝置註冊完成之前不會生效,且 Surface Hub 訂用帳戶會經過驗證。深入了解資源帳戶
\r\n ",
+ "createNewResourceTitle": "建立新的資源帳戶",
+ "deviceNameInvalid": "裝置名稱的格式無效",
+ "deviceNameRequired": "裝置名稱是必要項",
+ "editResourceAccountLabel": "編輯",
+ "selectExistingCommandMenu": "選取現有的"
+ },
+ "Device": {
+ "ComputerName": {
+ "validFormat": "名稱長度必須在 15 個字元以內,而且只能包含字母 (a-z、A-Z)、數字 (0-9) 和連字號,並且不可只含數字,也不可空白。"
+ },
+ "Header": {
+ "addressableUserName": "使用者易記名稱",
+ "azureADDevice": "已建立關聯的 Azure AD 裝置",
+ "batch": "群組標籤",
+ "dateAssigned": "指派的日期",
+ "deviceAccountFriendlyName": "裝置帳戶易記名稱",
+ "deviceAccountPwd": "裝置帳戶密碼",
+ "deviceAccountUpn": "Device account",
+ "deviceDisplayName": "裝置名稱",
+ "deviceName": "裝置名稱",
+ "deviceUseType": "使用裝置類型",
+ "enrollmentState": "註冊狀態",
+ "intuneDevice": "已建立關聯的 Intune 裝置",
+ "lastContacted": "上次連上的",
+ "make": "製造商",
+ "model": "模型",
+ "profile": "指派的設定檔",
+ "profileStatus": "設定檔狀態",
+ "purchaseOrderId": "訂購單",
+ "resourceAccount": "資源帳戶",
+ "serialNumber": "序號",
+ "userPrincipalName": "使用者"
+ },
+ "SurfaceHub": {
+ "friendlyNameRequired": "需要易記名稱",
+ "pwdRequired": "密碼為必要項。",
+ "upnRequired": "需要裝置帳戶",
+ "upnValidFormat": "值可以包含字母 (a-z、A-Z)、數字 (0-9)和連字號。值不能包含空白。"
+ }
+ },
+ "DeviceUseType": {
+ "meetingAndPresentation": "會議及簡報",
+ "teamCollaboration": "小組共同作業"
+ },
+ "Devices": {
+ "featureDescription": "您可利用 Windows Autopilot 為使用者自訂現成體驗 (OOBE)。",
+ "importErrorStatus": "某些裝置未匯入。如需詳細資訊,請按一下這裡。",
+ "importPendingStatus": "正在匯入。已耗用時間: {0} 分鐘。此程序最多可花費 {1} 分鐘。"
+ },
+ "DirectoryService": {
+ "activeDirectoryAD": "已加入混合式 Azure AD",
+ "activeDirectoryADLabel": "具有 Autopilot 的混合式 Azure AD",
+ "azureAD": "已加入 Azure AD",
+ "unknownType": "未知的類型"
+ },
+ "Filter": {
+ "enrollmentState": "狀態",
+ "profile": "設定檔狀態"
+ },
+ "OOBE": {
+ "AddressableUserName": {
+ "validateEmpty": "使用者易記名稱不可以是空白的。"
+ },
+ "ApplyComputerNameTemplate": {
+ "infoBalloon": "建立命名範本,以在註冊過程中將名稱新增到您的裝置。",
+ "label": "套用裝置名稱範本"
+ },
+ "ApplyComputerNameTemplateDisabled": {
+ "label": "若是 Autopilot 部署設定檔的 Hybrid Azure AD 加入類型,會使用網域加入設定中所指定的設定為裝置命名。"
+ },
+ "ComputerNameTemplate": {
+ "emptyValue": "MyCompany-%RAND:4%",
+ "label": "輸入名稱",
+ "noDisallowedChars": "名稱只能包含英數字元、連字號、%SERIAL% 或 %RAND:x%",
+ "serialLength": "%SERIAL% 不可超過 7 個字元",
+ "validateLessThan15Chars": "名稱必須等於或少於 15 個字元",
+ "validateNoSpaces": "電腦名稱不可包含空格",
+ "validateNotAllNumbers": "名稱也必須包含字母及 (或) 連字號",
+ "validateNotEmpty": "名稱不可為空白",
+ "validateOnlyOneMacro": "名稱只能包含一個 %SERIAL% 或 %RAND:x%"
+ },
+ "ConfigureComputerNameTemplate": {
+ "description": "請建立您裝置的唯一名稱。名稱必須等於或少於 15 個字元,而且只能包含字母 (a-z、A-Z)、數字 (0-9) 和連字號。名稱不可只含數字。名稱不可包含空白。使用 %SERIAL% 巨集可新增硬體專屬序號。或者,使用 %RAND:x% 巨集可新增隨機的一串數字,其中 x 等於要新增的位數。"
+ },
+ "EnableWhiteGlove": {
+ "infoBalloon": "啟用按 Windows 鍵 5 次即可執行 OOBE,且無需使用者驗證註冊裝置,並佈建所有系統內容應用程式及設定的功能。當使用者登入時,就會傳遞使用者內容應用程式及設定。",
+ "label": "允許預先佈建的部署"
+ },
+ "HybridAzureADSkipConnectivityCheck": {
+ "infoBalloon": "即使未在 OOBE 期間建立網域控制站連線,Autopilot 混合式 Azure AD 聯結流程也會繼續。",
+ "label": "略過 AD 連線檢查 (預覽)"
+ },
+ "accountType": "使用者帳戶類型",
+ "accountTypeInfo": "指定使用者是裝置上的系統管理員或標準使用者。請注意,此設定不適用於全域管理員或公司管理員帳戶。因為這些帳戶在 Azure AD 中可以存取所有系統管理功能,所以無法設為標準使用者。",
+ "configOOBEInfo": "\r\n為您的 Autopilot 裝置設定全新體驗\r\n
",
+ "configureDevice": "部署模式",
+ "configureDeviceHintForSurfaceHub2": "Autopilot 僅對 Surface Hub 2 支援自我部署模式。這個模式不會在使用者與註冊的裝置之間建立關聯,因此不需要使用者認證。",
+ "configureDeviceHintForWindowsPC": "\r\n 部署模式會控制使用者是否需要提供認證才能佈建裝置。\r\n
\r\n \r\n - \r\n 使用者驅動: 裝置會與註冊裝置的使用者建立關聯,而且必須有使用者認證才能佈建裝置\r\n
\r\n - \r\n 自我部署 (預覽): 裝置不會與註冊裝置的使用者建立關聯,而且佈建裝置不需要使用者認證\r\n
\r\n
",
+ "createSurfaceHub2Info": "為您的 Surface Hub 2 裝置進行 Autopilot 註冊設定。根據預設,Autopilot 允許在 OOBE 期間跳過使用者驗證。深入了解 Surface Hub 2 的 Windows Autopilot。",
+ "createWindowsPCInfo": "\r\n\r\n下列選項會自動為自我部署模式中的 Autopilot 裝置啟用:\r\n
\r\n\r\n - \r\n 跳過選取公司或住家用途的過程\r\n
\r\n - \r\n 跳過 OEM 註冊和 OneDrive 設定\r\n
\r\n - \r\n 在 OOBE 中跳過使用者驗證\r\n
\r\n
",
+ "endUserDevice": "使用者驅動",
+ "hideEscapeLink": "隱藏變更帳戶選項",
+ "hideEscapeLinkInfo": "用於變更帳戶和重新使用其他帳戶的選項,分別會在公司登入頁面與網域錯誤頁面上的初始裝置安裝期間顯示。若要隱藏這些選項,您必須在 Azure Active Directory 中設定公司商標 (需要 Windows 10 1809 或更新版本或 Windows 11)。",
+ "info": "AutoPilot 設定檔的設定,定義了使用者第一次啟動 Windows 時看到的全新體驗。 ",
+ "language": "語言 (區域)",
+ "languageInfo": "請指定要使用的語言與區域。",
+ "licenseAgreement": "Microsoft 軟體授權條款",
+ "licenseAgreementInfo": "指定是否要向使用者顯示授權條款。",
+ "plugAndForgetDevice": "自我部署 (預覽)",
+ "plugAndForgetGA": "自我部署",
+ "privacySettingWarning": "執行 Windows 10 1903 版及更新版本或 Windows 11 之裝置的診斷資料收集預設值已變更。",
+ "privacySettings": "隱私權設定",
+ "privacySettingsInfo": "指定是否要向使用者顯示隱私權設定。",
+ "showCortanaConfigurationPage": "Cortana 設定",
+ "showCortanaConfigurationPageInfo": "示範將在啟動期間介紹 Cortana 設定。",
+ "skipEULAWarning": "關於隱藏授權條款的重要資訊",
+ "skipKeyboardSelection": "自動設定鍵盤",
+ "skipKeyboardSelectionInfo": "若為 true 且已設定語言,即跳過鍵盤選取頁面。",
+ "subtitle": "AutoPilot 設定檔",
+ "title": "首次體驗 (OOBE)",
+ "useOSDefaultLanguage": "預設作業系統",
+ "userSelect": "使用者選取"
+ },
+ "Sync": {
+ "lastRequestedLabel": "上次同步要求",
+ "lastSuccessfulLabel": "上次成功同步",
+ "syncInProgress": "正在同步。請稍後回來查看。",
+ "syncInitiated": "AutoPilot 設定同步已起始。",
+ "syncSettingsTitle": "同步 AutoPilot 設定"
+ },
+ "Title": {
+ "devices": "Windows AutoPilot 裝置"
+ },
+ "Tooltips": {
+ "addressableUserName": "在裝置設定期間顯示的問候姓名。",
+ "azureADDevice": "前往裝置詳細資料了解已建立關聯的裝置。N/A 表示未與任何裝置建立關聯。",
+ "batch": "可用於識別裝置群組的字串屬性。Intune 的 [群組標籤] 欄位會對應到 Azure AD 裝置上的 OrderID 屬性。",
+ "dateAssigned": "設定檔指派給裝置時的時間戳記。",
+ "deviceAccountFriendlyName": "Surface Hub 裝置的裝置帳戶易記名稱",
+ "deviceAccountPwd": "Surface Hub 裝置的裝置帳戶密碼",
+ "deviceAccountUpn": "Surface Hub 裝置的裝置帳戶電子郵件",
+ "deviceDisplayName": "為裝置設定唯一名稱。在加入混合式 Azure AD 的部署中會忽略此名稱。裝置名稱仍是來自混合式 Azure AD 裝置的網域加入設定檔。",
+ "deviceName": "當有人嘗試探索及連線到裝置時的顯示名稱。",
+ "deviceUseType": " 裝置會根據您的選項來設定。您稍後可以隨時在設定中變更。\r\n \r\n - 若用於會議及簡報,Windows Hello 不會開啟,且資料會在每個工作階段之後移除。\r\n
\r\n - 若用於小組共同作業,Windows Hello 則會開啟,且系統會儲存設定檔以便快速登入
\r\n
",
+ "enrollmentState": "指定是否註冊裝置。",
+ "intuneDevice": "前往裝置詳細資料了解已建立關聯的裝置。N/A 表示未與任何裝置建立關聯。",
+ "lastContacted": "裝置上次連線時的時間戳記。",
+ "make": "所選裝置的製造商。",
+ "model": "所選裝置的型號",
+ "profile": "指派給裝置的設定檔名稱。",
+ "profileStatus": "指定設定檔是否指派給裝置。",
+ "purchaseOrderId": "購買訂單識別碼",
+ "resourceAccount": "裝置的身分識別或使用者主體名稱 (UPN)。",
+ "serialNumber": "所選裝置的序號。",
+ "userPrincipalName": "在裝置設定期間預先填入驗證的使用者。"
+ },
+ "allDevices": "所有裝置",
+ "allDevicesAlreadyAssignedError": "Autopilot 設定檔已經指派至所有裝置。",
+ "assignFailedDescription": "無法更新 {0} 的指派。",
+ "assignFailedTitle": "無法更新 Autopilot 設定檔指派。",
+ "assignSuccessDescription": "已成功更新 {0} 的指派。",
+ "assignSuccessTitle": "已成功更新 Autopilot 設定檔指派。",
+ "assignSufaceHub2ProfileNextStep": "此部署的後續步驟",
+ "assignSurfaceHub2ProfileToDeviceGroup": "1. 將此設定檔指派給至少一個裝置群組",
+ "assignSurfaceHub2ProfileToResourceAccount": "2. 指派資源帳戶給每個您部署此設定檔的目標 Surface Hub 裝置",
+ "assignedDevicesCount": "指派的裝置",
+ "assignedDevicesResourceAccountDescription": "若要將此設定檔部署到裝置,您必須為裝置指派資源帳戶。請一次選取一部裝置以指派現有資源帳戶,或新建一個。 深入了解資源帳戶
",
+ "assignedDevicesResourceAccountStatusBarMessage": "這個表格只會列出已指派給此設定檔的 Surface Hub 2 裝置。",
+ "assigningDescription": "正在更新 {0} 的指派。",
+ "assigningTitle": "正在更新 Autopilot 設定檔指派。",
+ "autoremediationContext": "We've detected a hardware change on this device. We're trying to automatically register the new hardware. You don't need to do anything now; the status will be updated at the next check in with the result. Learn more about resetting the profile.",
+ "autoremediationTitle": "Device {0} has a fix pending",
+ "cannotDeleteMessage": "此設定檔已指派至群組。您必須取消此設定檔在所有群組的指派,才能予以刪除。",
+ "cannotDeleteTitle": "無法刪除 {0}",
+ "createdDateTime": "已建立",
+ "deleteMessage": "若刪除此 AutoPilot 設定檔,任何指派至此設定檔的裝置都會顯示為 [未指派]。",
+ "deleteMessageWithPolicySet": "{0} 包含在一或多個原則集中。如果刪除 {0},您將無法再透過這些原則集加以指派。",
+ "deleteTitle": "確定要刪除此設定檔嗎?",
+ "description": "描述",
+ "deviceType": "裝置類型",
+ "deviceUse": "裝置用途",
+ "directoryServiceHintForSurfaceHub2": " \r\n Autopilot 僅支援已加入 Azure AD 的 Surface Hub 2 裝置。請指定組織中的裝置如何加入 Active Directory (AD)。\r\n
\r\n \r\n - \r\n 已加入 Azure AD: 僅雲端,而沒有內部部署的 Windows Server Active Directory。\r\n
\r\n
\r\n ",
+ "directoryServiceHintForWindowsPC": "\r\n \r\n 指定裝置如何加入您組織的 Active Directory (AD):\r\n
\r\n \r\n - \r\n Azure AD 已加入: 僅限內部部署未使用 Windows Server Active Directory 的雲端\r\n
\r\n
\r\n",
+ "getAssignedDevicesCountError": "擷取已指派的裝置計數時發生錯誤。",
+ "getAssignmentsError": "擷取 Autopilot 設定檔指派時發生錯誤。",
+ "harvestDeviceId": "將所有目標裝置轉換為 Autopilot",
+ "harvestDeviceIdDescription": "根據預設,此設定檔只可套用至從 Autopilot 服務同步的 Autopilot 裝置。",
+ "harvestDeviceIdInfo": "\r\n 若要將所有還未註冊到 Autopilot 的目標裝置註冊到 Autopilot,請選取 [是]。當已註冊的裝置下次經歷 Windows 全新體驗 (OOBE) 時,也會經歷所指派的 Autopilot 情境。\r\n
\r\n 請注意,有一些 Autopilot 情境需要的 Windows 具有最低組建要求。您的裝置必須安裝要求的最低組建,才能通過這些情境。\r\n
\r\n 移除此設定檔不會從 Autopilot 移除受影響的裝置。若要從 Autopilot 移除裝置,請使用 [Windows Autopilot 裝置] 檢視。\r\n",
+ "harvestDeviceIdWarning": "在轉換後,只有從 Autopilot 裝置清單刪除 Autopilot 裝置,才能將其還原。",
+ "holoLensCommandMenu": "HoloLens",
+ "info": "Windows AutoPilot 部署設定檔可讓您為裝置自訂全新體驗。",
+ "invalidProfileNameMessage": "不允許字元 \"{0}\"",
+ "joinTypeLabel": "加入 Azure AD 的身分",
+ "lastModifiedDateTime": "上次修改日期:",
+ "manualRemediationContext": "We've detected a hardware change on this device. It won't automatically receive an Autopilot profile when it's reset unless you register the device again. Learn more about resetting the profile.",
+ "manualRemediationTitle": "Device {0} needs your attention",
+ "name": "名稱",
+ "noAutopilotProfile": "沒有任何 AutoPilot 設定檔",
+ "notEnoughPermissionAssignedError": "您的權限不足,無法將此設定檔指派給選取的一或多個群組。請連絡您的系統管理員。",
+ "profile": "設定檔",
+ "resourceAccountStatusBarMessage": "部署了這個設定檔的每部 Surface Hub 2 裝置都需要一個資源帳戶。按一下以深入了解。",
+ "selectServices": "選取要加入的目錄服務裝置",
+ "surfaceHub2CommandMenu": "Surface Hub 2",
+ "surfaceHub2SCommandMenu": "Surface Hub 2S",
+ "userAffinityLabel": "部署模式",
+ "windowsPCCommandMenu": "Windows 電腦",
+ "directoryServiceLabel": "加入 Azure AD 成為"
},
- "CategoryDescription": {
- "androidGeneralApplicationRestrictions": "使用這些設定以隨時掌握哪些使用者安裝了在您的公司中未核准使用的應用程式。選取受限制的應用程式清單類型:
\r\n 禁止的應用程式 - 在使用者安裝時,您希望收到通知的應用程式清單。
\r\n 核准的應用程式 - 您的公司中核准使用的應用程式清單。當使用者安裝不在此清單中的應用程式時,您就會收到通知。
\r\n ",
- "androidZebraMxZebraMx": "用 XML 格式上傳 MX 設定檔的方式,設定 Zebra 裝置。",
- "iosDeviceFeaturesAirprint": "使用這些設定將 iOS 裝置設定為可自動連線到您網路上與 AirPrint 相容的印表機。您需要印表機的 IP 位址與資源路徑。",
- "iosDeviceFeaturesExtensibleSingleSignOn": "設定應用程式延伸模組,為執行 iOS 13.0 或更新版本的裝置啟用單一登入 (SSO)。",
- "iosDeviceFeaturesHomeScreenLayout": "設定 iOS 裝置的固定位置與主畫面配置。某些裝置可能對於顯示的項目數有所限制。",
- "iosDeviceFeaturesIOSWallpaper": "顯示會出現在 iOS 裝置主畫面及/或鎖定畫面中的影像。\r\n 若要在每個位置都顯示唯一的影像,請使用鎖定畫面影像建立一個設定檔,使用主畫面影像建立一個設定檔。\r\n 然後將這兩個設定檔指派給您的使用者。\r\n
\r\n \r\n - 檔案大小上限: 750 KB
\r\n - 檔案類型: PNG、JPG 或 JPEG
\r\n
\r\n ",
- "iosDeviceFeaturesNotifications": "指定應用程式的通知設定。支援 iOS 9.3 及更新版本。",
- "iosDeviceFeaturesSharedDevice": "指定顯示於鎖定畫面上的選擇性文字。iOS 9.3 及更新版本支援此功能。深入了解",
- "iosGeneralApplicationRestrictions": "使用這些設定以隨時掌握哪些使用者安裝了在您的公司中未核准使用的應用程式。選取受限制的應用程式清單類型:
\r\n 禁止的應用程式 - 在使用者安裝時,您希望收到通知的應用程式清單。
\r\n 核准的應用程式 - 您的公司中核准使用的應用程式清單。當使用者安裝不在此清單中的應用程式時,您就會收到通知。
\r\n ",
- "iosGeneralApplicationVisibility": "使用顯示應用程式清單可指定使用者可以檢視或啟動的 iOS 應用程式。使用隱藏應用程式清單可指定使用者無法檢視或啟動的 iOS 應用程式。",
- "iosGeneralAutonomousSingleAppMode": "您新增到此清單並指派到裝置的應用程式可以鎖定裝置,使其在啟動後僅執行該應用程式,或在某動作執行時鎖定裝置 (例如進行測試)。在動作完成後,或您移除限制後,裝置會回到正常狀態。",
- "iosGeneralKiosk": "資訊亭模式會將多項設定鎖定在裝置中,或指定可在裝置上執行的單一應用程式。這在您希望裝置只執行單一示範應用程式的環境中很實用,例如零售商店。",
- "macDeviceFeaturesAirprint": "使用這些設定,將 macOS 裝置設定為自動連線到網路上與 AirPrint 相容的印表機。您會需要印表機的 IP 位址及資源路徑。",
- "macDeviceFeaturesAssociatedDomains": "設定相關網域以在您組織的應用程式與網站之間共用資料及登入認證。此設定檔可套用到執行 macOS 10.15 或更新版本的裝置。",
- "macDeviceFeaturesExtensibleSingleSignOn": "設定應用程式延伸模組,為執行 macOS 10.15 或更新版本的裝置啟用單一登入 (SSO)。",
- "macDeviceFeaturesLoginItems": "選擇使用者登入裝置時要開啟的應用程式、檔案和資料夾。如果您不想要讓使用者變更所選應用程式的開啟方式,可以將應用程式從使用者設定中隱藏。",
- "macDeviceFeaturesLoginWindow": "設定 macOS 登入畫面的外觀,及使用者在登入前後可使用的功能。",
- "macExtensionsKernelExtensions": "使用這些項目來設定執行 10.13.2 或更新版本之 macOS 裝置上的核心延伸模組原則。",
- "macGeneralDomains": "使用者傳送或接收的電子郵件,若不符合您於此處所指定的網域,會標示為不受信任。",
- "windows10EndpointProtectionApplicationGuard": "在使用 Microsoft Edge 時,Microsoft Defender 應用程式防護會保護您的環境免受未經您組織定義為受信任的網站所威脅。當使用者前往未列於隔離網路界限中的網站時,該網站就會在 Hyper-V 的虛擬瀏覽工作階段內開啟。信任的網站會根據網路界限來定義,您可以在裝置設定中加以設定。請注意,僅執行 64 位元 Windows 10 或更新版本的裝置可使用此功能。",
- "windows10EndpointProtectionCredentialGuard": "啟用 Credential Guard 會啟用下列必要設定:\r\n
\r\n \r\n - 啟用虛擬化型安全性: 於下次重新開機時開啟虛擬化型安全性 (VBS)。虛擬化型安全性使用 Windows Hypervisor 提供安全性服務的支援。
\r\n
\r\n - 使用直接記憶體存取的安全開機: 使用安全開機與直接記憶體存取 (DMA) 來開啟 VBS。
\r\n
\r\n ",
- "windows10EndpointProtectionDeviceGuard": "請選擇其他需要稽核,或者是可以信任由 Microsoft Defender 應用程式控制執行的應用程式。Windows 元件及來自 Microsoft Store 的所有應用程式都會直接受信任並執行。
\r\n 當以「僅稽核」模式執行時,應用程式不會受到封鎖。「僅稽核」模式會在本機用戶端記錄中記錄所有事件。\r\n ",
- "windows10GeneralPrivacyPerApp": "新增隱私權行為不同於您在 [預設隱私權] 中所定義的應用程式。",
- "windows10NetworkBoundaryNetworkBoundary": "網路界限是企業資源 (例如企業網路上電腦裝載於雲端的網域和 IP 位址範圍) 清單。定義網路界限可套用原則以保護位於這些位置的資料。",
- "windowsHealthMonitoring": "設定 Windows 狀況監控視原則。",
- "windowsPhoneGeneralApplicationRestrictions": "Windows Phone 可以封鎖使用者安裝或啟動禁止的應用程式清單中所指定的應用程式,或核准的應用程式清單中未指定的應用程式。所有受管理應用程式都必須新增至核准的清單中。"
- },
"MinimumOperatingSystem": {
"Android": {
"v10": "Android 10.0",
@@ -2435,6 +1154,304 @@
"excludedGroups": "排除的群組",
"licenseType": "授權類型"
},
+ "TAP": {
+ "AccessRequirements": {
+ "infoText": "設定使用者在工作內容中存取應用程式時必須符合的 PIN 和認證需求。"
+ },
+ "DataProtection": {
+ "infoText": "這個群組包含資料外洩防護 (DLC) 控制,例如剪下、複製、貼上和另存新檔限制。這些設定會決定使用者在應用程式中與資料互動的方式。"
+ },
+ "DeviceTypes": {
+ "selectOne": "至少選取一種裝置類型。"
+ },
+ "TargetedApps": {
+ "TargetToAll": {
+ "label": "鎖定所有裝置類型上的應用程式"
+ },
+ "infoText": "選擇要如何將此原則套用至不同裝置上的應用程式。然後至少新增一個應用程式。",
+ "selectOne": "請至少選取一個應用程式以建立原則。"
+ }
+ },
+ "AssignmentAction": {
+ "exclude": "排除",
+ "include": "包含元件",
+ "includeAllDevicesVirtualGroup": "包含元件",
+ "includeAllUsersVirtualGroup": "包含元件"
+ },
+ "AppType": {
+ "androidEnterpriseSystemApp": "Android Enterprise 系統應用程式",
+ "androidForWorkApp": "受控 Google Play 商店應用程式",
+ "androidLobApp": "Android 企業營運應用程式",
+ "androidStoreApp": "Android Store 應用程式",
+ "builtInAndroid": "內建 Android 應用程式",
+ "builtInApp": "內建應用程式",
+ "builtInIos": "內建 iOS 應用程式",
+ "default": "",
+ "iosLobApp": "iOS 企業營運應用程式",
+ "iosStoreApp": "iOS Store 應用程式",
+ "iosVppApp": "iOS 大量採購方案應用程式",
+ "lineOfBusinessApp": "企業營運應用程式",
+ "macOSDmgApp": "macOS 應用程式 (DMG)",
+ "macOSEdgeApp": "Microsoft Edge (macOS)",
+ "macOSLobApp": "macOS 企業營運應用程式",
+ "macOSMdatpApp": "Microsoft Defender ATP (macOS)",
+ "macOSOfficeSuiteApp": "Microsoft 365 應用程式 (macOS)",
+ "macOsVppApp": "macOS 大量採購方案應用程式",
+ "managedAndroidLobApp": "受管理的 Android 企業營運應用程式",
+ "managedAndroidStoreApp": "受管理的 Android Store 應用程式",
+ "managedGooglePlayApp": "受控 Google Play 商店應用程式",
+ "managedGooglePlayPrivateApp": "受控 Google Play 私人應用程式",
+ "managedGooglePlayWebApp": "受控 Google Play Web 連結",
+ "managedIosLobApp": "受管理的 iOS 企業營運應用程式",
+ "managedIosStoreApp": "受管理的 iOS Store 應用程式",
+ "microsoftStoreForBusinessApp": "商務用 Microsoft 網上商店應用程式",
+ "microsoftStoreForBusinessReleaseManagedApp": "商務用 Microsoft 網上商店",
+ "officeSuiteApp": "Microsoft 365 Apps (Windows 10 及更新版本)",
+ "webApp": "網頁連結",
+ "windowsAppXLobApp": "Windows AppX 企業營運應用程式",
+ "windowsClassicApp": "Windows 應用程式 (Win32)",
+ "windowsEdgeApp": "Microsoft Edge (Windows 10 及更新版本)",
+ "windowsMobileMsiLobApp": "Windows MSI 企業營運應用程式",
+ "windowsPhone81AppXBundleLobApp": "Windows Phone 8.1 AppX 企業營運應用程式",
+ "windowsPhone81AppXLobApp": "Windows Phone 8.1 AppX 企業營運應用程式",
+ "windowsPhone81StoreApp": "Windows Phone 8.1 市集應用程式",
+ "windowsPhoneXapLobApp": "Windows Phone XAP 企業營運應用程式",
+ "windowsStoreApp": "Microsoft Store 應用程式",
+ "windowsUniversalAppXLobApp": "Windows 通用 AppX 企業營運應用程式",
+ "windowsUniversalLobApp": "Windows 通用企業營運應用程式"
+ },
+ "TAPSettings": {
+ "AllowedDataIngestionLocations": {
+ "label": "允許使用者從選取的服務開啟資料",
+ "tooltip": "選取使用者可從中開啟資料的應用程式儲存體服務。系統會封鎖其他所有服務。未選取任何服務將會導致使用者無法開啟資料。"
+ },
+ "AndroidBackup": {
+ "label": "將組織資料備份到 Android 備份服務",
+ "tooltip": "選取 {0} 會讓組織資料無法備份到 Android 備份服務。\r\n選取 {1} 則允許將組織資料備份到 Android 備份服務。\r\n個人或非受控的資料不會受到影響。"
+ },
+ "AndroidBiometricAuthentication": {
+ "label": "使用生物識別技術而非 PIN 來存取",
+ "tooltip": "請選擇人員可使用的 Android 驗證方法 (若有的話) 來取代應用程式 PIN。"
+ },
+ "AndroidFingerprint": {
+ "label": "以指紋而非 PIN 存取 (Android 6.0 +)",
+ "tooltip": "Android OS 使用指紋掃描來驗證 Android 裝置的使用者。此功能可在 Android 裝置上,支援原生生物特徵辨識控管。但不支援 OEM 專用的生物特徵辨識設定,例如 Samsung Pass。在允許的情況下,必須使用原生生物特徵辨識控管,來存取具備該功能裝置上的應用程式。"
+ },
+ "AndroidOverrideFingerprint": {
+ "label": "逾時後以 PIN 取代指紋"
+ },
+ "AppPIN": {
+ "label": "設定有裝置 PIN 時,為應用程式 PIN",
+ "tooltip": "若非必要,則如果在已註冊 MDM 的裝置上設定了裝置 PIN,就不必使用應用程式 PIN 來存取此應用程式。
\r\n\r\n注意: Intune 無法在 Android 上偵測裝置是否註冊了第三方 EMM 解決方案。"
+ },
+ "BlockDataIngestionIntoOrganizationDocuments": {
+ "label": "將資料開啟為組織文件",
+ "tooltip1": "選取 [封鎖] 可停用在此應用程式之帳戶間共用資料的 [開啟] 選項或其他選項。若要允許使用在此應用程式之帳戶間共用資料的 [開啟] 及其他選項,請選取 [允許]。",
+ "tooltip2": "當設定為 [封鎖] 時,您可以進行 [允許使用者從選取的服務開啟資料] 設定,以指定允許組織資料位置使用的服務。",
+ "tooltip3": "注意: 只有在 [從其他應用程式接收資料] 設定設為 [原則管理的應用程式] 時,才會強制執行此設定。
\r\n注意: 此設定不適用於所有應用程式。如需詳細資訊,請參閱 {0}。",
+ "tooltip4": "注意: 只有在 [從其他應用程式接收資料] 設定設為 [原則管理的應用程式] 時,才會強制執行此設定。
\r\n注意: 此設定不適用於所有應用程式。如需詳細資訊,請參閱 {0} 或 {0}。"
+ },
+ "ConnectToVpnOnLaunch": {
+ "label": "在應用程式啟動時啟動 Microsoft Tunnel 連線",
+ "tooltip": "啟動應用程式時允許連線到 VPN"
+ },
+ "CredentialsForAccess": {
+ "label": "用於存取的公司或學校認證",
+ "tooltip": "如有必要,必須使用公司或學校認證來存取受原則管理的應用程式。若存取該應用程式也需要 PIN 或生物特徵辨識方法,即需在這些提示上方出現公司或學校帳戶認證。"
+ },
+ "CustomBrowserDisplayName": {
+ "label": "非受控瀏覽器名稱",
+ "tooltip": "請輸入與「非受控瀏覽器識別碼」相關的瀏覽器應用程式名稱。如果未安裝指定瀏覽器,將會對使用者顯示這個。"
+ },
+ "CustomBrowserPackageId": {
+ "label": "非受控瀏覽器識別碼",
+ "tooltip": "請輸入單一瀏覽器的應用程式識別碼。來自原則受控應用程式的 Web 內容 (http/s) 將會於指定瀏覽器內開啟。"
+ },
+ "CustomBrowserProtocol": {
+ "label": "非受控瀏覽器通訊協定",
+ "tooltip": "請輸入單一瀏覽器的應用程式識別碼。來自原則受控應用程式的 Web 內容 (http/s) 可於任何支援此通訊協定的應用程式內開啟。
\r\n \r\n注意: 請只包含通訊協定前置詞。如果瀏覽器需要如 \"mybrowser://www.microsoft.com\" 格式的連結,請輸入 \"mybrowser\"。
"
+ },
+ "CustomDialerAppDisplayName": {
+ "label": "撥號程式應用程式名稱"
+ },
+ "CustomDialerAppPackageId": {
+ "label": "撥號程式應用程式套件識別碼"
+ },
+ "CustomDialerAppProtocol": {
+ "label": "撥號程式應用程式 URL 配置"
+ },
+ "Cutcopypaste": {
+ "label": "禁止在不同的應用程式之間剪下、複製及貼上",
+ "tooltip": "在您的應用程式與裝置上安裝的其他核准應用程式之間,剪下、複製及貼上資料。選擇在應用程式間完全封鎖這些動作,即可對任何應用程式進行這些動作,或是限制對組織所管理的應用程式進行這些動作。
\r\n\r\n具備貼上功能的原則受控應用程式可讓您選擇接受從另一個應用程式所貼上的傳入內容。但如此會禁止使用者對外共用內容,除非透過受控應用程式進行共用。
"
+ },
+ "DialerRestrictionLevel": {
+ "iosTooltip": "當使用者在應用程式中選取了超連結電話號碼時,通常會開啟撥號應用程式,並預先填入電話號碼,讓使用者可以直接撥話。對於此設定,請選擇當從原則管理的應用程式中起始此動作時,應如何處理這類型的內容傳輸。您可能必須執行額外的步驟,此設定才會生效。首先,請確認已從「選取豁免的應用程式」清單中移除了 tel 與 telprompt,接著再確認應用程式使用的是較新版的 Intune SDK (12.7.0 以上的版本)。",
+ "label": "將電信資料傳送至",
+ "tooltip": "一般來說,當使用者在應用程式中選取了電話號碼超連結時,隨即會開啟撥號程式應用程式,並會預先填入該電話號碼,備妥可進行通話。請為此設定選擇在從原則管理的應用程式起始時,該如何處理此類型的內容傳輸。"
+ },
+ "EncryptData": {
+ "label": "為組織資料加密",
+ "link": "https://docs.microsoft.com/zh-tw/intune/app-protection-policy-settings-android#data-relocation-settings",
+ "tooltip": "選取 {0} 會利用 Intune 應用程式層加密,進行組織資料的加密。\r\n
\r\n選取 {1} 則不會利用 Intune 應用程式層加密,進行組織資料的加密。\r\n\r\n
\r\n注意: 如需 Intune 應用程式層加密的詳細資訊,請參閱 {2}。"
+ },
+ "EncryptDataAndroid": {
+ "tooltip": "選擇 [需要],即可為此應用程式中的公司或學校資料啟用加密。Intune 會搭配 Android Keystore 系統使用 OpenSSL (256 位元 AES 加密配置),來安全地加密應用程式資料。檔案會在檔案 I/O 工作期間同步地加密。裝置存放空間上的內容會保持加密狀態。為與使用舊版 SDK 的內容及應用程式相容,SDK 會繼續提供 128 位元金鑰的支援。
\r\n\r\n加密方法並非通過認證的 FIPS 140-2。
"
+ },
+ "EncryptDataIos": {
+ "tooltip1": "選擇 [需要],即可為此應用程式中的公司或學校資料啟用加密。裝置鎖定時,Intune 會實施 iOS/iPadOS 裝置加密以保護應用程式資料。應用程式可選擇使用 Intune APP SDK 加密來加密應用程式資料。Intune APP SDK 會使用 iOS/iPadOS 加密方法將 128 位元 AES 加密套用到應用程式資料。",
+ "tooltip2": "您啟用此設定後,使用者就必須設定及使用 PIN 才能存取他們的裝置。如果不需要任何裝置 PIN 和加密,系統就會以 \"Your organization has required you to first enable a device PIN to access this app.\" (您的組織要求您在存取此應用程式前,先啟用裝置 PIN) 訊息提示使用者設定 PIN。",
+ "tooltip3": "前往官方的 Apple 文件,即可查看有哪些 iOS 加密模組符合 FIPS 140-2 規範,或是尚未符合 FIPS 140-2 規範。"
+ },
+ "EncryptDataOnEnrolledDevices": {
+ "label": "在註冊的裝置上為組織資料加密",
+ "tooltip": "選取 {0} 會在所有裝置上,利用 Intune 應用程式層加密,進行組織資料的加密。
\r\n\r\n選取 {1} 則不會在註冊的裝置上,利用 Intune 應用程式層加密,進行組織資料的加密。"
+ },
+ "IOSBackup": {
+ "label": "將組織資料備份到 iTunes 與 iCloud 備份",
+ "tooltip": "選取 {0} 會讓組織資料無法備份到 iTunes 或 iCloud。\r\n選取 {1} 則允許將組織資料備份到 iTunes 或 iCloud。\r\n個人或非受控資料不會受到影響。"
+ },
+ "IOSFaceID": {
+ "label": "以 Face ID 而非 PIN 存取 (iOS 11+/iPadOS)",
+ "tooltip": "Face ID 使用臉部辨識技術,驗證 iOS/iPadOS 裝置上的使用者。Intune 會呼叫 LocalAuthentication API,使用 Face ID 驗證使用者。在允許的情況下,必須使用 Face ID 來存取具備 Face ID 功能裝置上的應用程式。"
+ },
+ "IOSOverrideTouchId": {
+ "label": "逾時後,以 PIN 碼取代生物識別特徵"
+ },
+ "IOSTouchId": {
+ "label": "以 Touch ID 而非 PIN 存取 (iOS 8+/iPadOS)",
+ "tooltip": "Touch ID 使用指紋辨識技術,驗證 iOS 裝置的使用者。Intune 會呼叫 LocalAuthentication API,使用 Touch ID 驗證使用者。在允許的情況下,必須使用 Touch ID 來存取具備 Touch ID 功能裝置上的應用程式。"
+ },
+ "NotificationRestriction": {
+ "label": "組織資料通知",
+ "tooltip": "請選取以下其中一個選項,來指定如何在此應用程式和任何連線式裝置 (例如穿戴式裝置) 顯示組織帳戶的通知:
\r\n{0}: 不要共用通知。
\r\n{1}: 不要在通知中共用組織資料。如果不受應用程式支援,則封鎖通知。
\r\n{2}: 共用所有通知。
\r\n 僅限 Android:\r\n 注意: 這個設定並非所有應用程式均適用。如需詳細資訊,請參閱 {3}
\r\n \r\n 僅限 iOS:\r\n注意: 這個設定並非所有應用程式均適用。如需詳細資訊,請參閱 {4}
"
+ },
+ "OpenLinksManagedBrowser": {
+ "label": "限制使用其他應用程式的 Web 內容傳輸",
+ "tooltip": "請選取下列其中一個選項,來指定此應用程式可在其中開啟 Web 內容的應用程式:
\r\nEdge: 僅允許在 Edge 中開啟 Web 內容
\r\n非受控瀏覽器: 僅允許在由 [非受控瀏覽器通訊協定] 設定所定義的非受控瀏覽器內開啟 Web 內容
\r\n任何應用程式: 在所有應用程式中允許 Web 連結
"
+ },
+ "OverrideBiometric": {
+ "tooltip": "PIN 提示會視逾時情況 (非使用狀態分鐘數),在必要時覆寫生物特徵辨識提示。若不符合此逾時值,則會持續顯示生物特徵辨識提示。此逾時值應大於在 [重新檢查存取需求前的剩餘時間 (非使用狀態分鐘數)] 下所指定的值。"
+ },
+ "PinAccess": {
+ "label": "用於存取的 PIN",
+ "tooltip": "如有必要,必須使用 PIN 來存取受原則管理的應用程式。使用者第一次從其公司或學校帳戶開啟應用程式時,必須建立存取 PIN。"
+ },
+ "PinLength": {
+ "label": "選取 PIN 長度下限",
+ "tooltip": "此設定可指定 PIN 中數字的數目下限。"
+ },
+ "PinType": {
+ "label": "PIN 類型",
+ "tooltip": "數字 PIN 全部由數字組成。密碼則由英數字元及特殊字元組成。"
+ },
+ "Printing": {
+ "label": "列印組織資料",
+ "tooltip": "一旦封鎖,應用程式就無法列印受保護的資料。"
+ },
+ "ReceiveData": {
+ "label": "從其他應用程式接收資料",
+ "tooltip": "選取下列其中一個選項,指定此應用程式可從中接收資料的應用程式:
\r\n\r\n無: 不允許從任何應用程式接收組織文件或帳戶的資料
\r\n\r\n受原則管理的應用程式: 只允許從其他受原則管理的應用程式接收組織文件或帳戶的資料\r\n
\r\n所有包含傳入組織資料的應用程式: 允許從任何應用程式接收組織文件或帳戶的資料,並將所有無使用者帳戶的傳入資料,都視為組織資料
\r\n\r\n所有應用程式: 允許從任何應用程式接收組織文件或帳戶的資料"
+ },
+ "RecheckAccessAfter": {
+ "label": "(非使用狀態分鐘數) 之後重新檢查是否需要存取權\r\n\r\n",
+ "tooltip": "若受原則管理的應用程式,未使用的時間超過指定的未使用分鐘數後,在啟動應用程式之後,該應用程式即會提示要重新檢查是否需要存取權 (例如 PIN,條件啟動設定)。"
+ },
+ "RestrictKeyboards": {
+ "duplicatePackageError": "套件識別碼必須是唯一的。",
+ "invalidPackageError": "套件識別碼無效",
+ "label": "核准的鍵盤",
+ "select": "選取要核准的鍵盤",
+ "subtitle": "新增允許使用者用於目標應用程式的所有鍵盤和輸入法。輸入要向終端使用者顯示的鍵盤名稱。",
+ "title": "新增核准的鍵盤",
+ "toolTip": "選取 [需要],然後為此原則指定核准鍵盤的清單。深入了解。 "
+ },
+ "SaveData": {
+ "label": "儲存組織資料複本",
+ "tooltip": "選取 {0} 會無法使用 [另存新檔],將組織資料的複本儲存到非所選儲存體服務的新位置。\r\n 選取 {1} 則允許使用 [另存新檔],將組織資料的複本儲存到新的位置。
\r\n\r\n\r\n注意: 此設定並非所有應用程式均適用。如需詳細資訊,請參閱 {2}。\r\n"
+ },
+ "SaveDataToSelected": {
+ "label": "允許使用者將複本儲存到選取的服務",
+ "tooltip": "選取使用者可在其中儲存組織資料複本的儲存體服務。系統會封鎖其他所有服務。不選取任何服務,將會使得使用者無法儲存組織資料的複本。"
+ },
+ "ScreenCaptureAndAndroidAssistant": {
+ "label": "螢幕擷取與 Google Assistant\r\n",
+ "tooltip": "若封鎖,則在使用受原則管理的應用程式時,將會停用螢幕擷取及 Google Assistant 的應用程式掃描功能。此功能支援一般的 Google Assistant 應用程式,但不支援使用 Google 助理 API 的協力廠商助理程式。選擇 [停用] 也會在以公司或學校帳戶使用此應用程式時,讓 App 切換的預覽影像變得模糊。"
+ },
+ "SendData": {
+ "label": "將組織資料傳送到其他應用程式",
+ "tooltip": "選取下列其中一個選項,指定此應用程式可對其傳送組織資料的應用程式:
\r\n\r\n\r\n無: 不允許將組織資料傳送到任何應用程式
\r\n\r\n\r\n受原則管理的應用程式: 只允許將組織資料傳送到其他受原則管理的應用程式
\r\n\r\n\r\n共用 OS 且受原則管理的應用程式: 只允許將組織資料傳送到其他受原則管理的應用程式,並將組織文件傳送到註冊裝置上其他受 MDM 管理的應用程式
\r\n\r\n\r\n具 Open-In/Share 篩選且受原則管理的應用程式: 只允許將組織資料傳送到其他受原則管理的應用程式,並篩選 [Open-In/Share] 對話方塊,使其只顯示受原則管理的應用程式\r\n
\r\n\r\n所有應用程式: 允許將組織資料傳送到任何應用程式"
+ },
+ "SimplePin": {
+ "label": "簡易 PIN",
+ "tooltip": "若已封鎖,使用者即無法建立簡易 PIN。簡易 PIN 是連續或重複的數字字串,例如 1234、ABCD 或 1111。請注意,封鎖類型為「密碼」的簡易 PIN,密碼至少要有一個數字、一個字母及一個特殊字元。"
+ },
+ "SyncContacts": {
+ "label": "使用原生應用程式同步受原則管理的應用程式資料或增益集"
+ },
+ "ThirdPartyKeyboards": {
+ "infoBox": "鍵盤限制會套用到應用程式的所有區域。此限制會影響支援多個身分識別的應用程式個人帳戶。深入了解。",
+ "label": "協力廠商鍵盤"
+ },
+ "Timeout": {
+ "label": "逾時 (非使用狀態分鐘數)"
+ },
+ "Tap": {
+ "numberOfDays": "天數",
+ "pinResetAfterNumberOfDays": "重設 PIN 前經過的天數",
+ "previousPinBlockCount": "選取要維護的前幾個 PIN 值數目"
+ }
+ },
+ "ScheduledAction": {
+ "Form": {
+ "editBlockActionInfo": "所有的合規性原則都必須具有一個封鎖動作。",
+ "graceperiod": "排程 (不合規後的天數)",
+ "graceperiodInfo": "指定不合規後的天數,在此時間之後,應該為使用者裝置觸發此動作。",
+ "subtitle": "指定動作參數",
+ "title": "動作參數"
+ },
+ "List": {
+ "gracePeriodDay": "已不合規 {0} 天",
+ "gracePeriodDays": "已不合規 {0} 天",
+ "gracePeriodHour": "不合規之後的 {0} 小時",
+ "gracePeriodHours": "不合規之後的 {0} 小時",
+ "gracePeriodMinute": "不合規之後的 {0} 分鐘",
+ "gracePeriodMinutes": "不合規之後的 {0} 分鐘",
+ "immediately": "立即",
+ "schedule": "排程",
+ "scheduleInfoBalloon": "不符合規範的已過天數",
+ "subtitle": "指定不合規裝置的動作序列",
+ "title": "動作"
+ },
+ "Notification": {
+ "additionalEmailLabel": "其他",
+ "additionalRecipients": "其他收件者 (透過電子郵件)",
+ "additionalRecipientsBladeTitle": "選取其他收件者",
+ "emailAddressPrompt": "輸入電子郵件地址 (以逗點分隔)",
+ "invalidEmail": "電子郵件地址無效",
+ "messageTemplate": "訊息範本",
+ "noneSelected": "未選取任何項目",
+ "notSelected": "未選取任何項目",
+ "numSelected": "已選取 {0} 個",
+ "selected": "已選取"
+ },
+ "block": "標記裝置不合規",
+ "lockDevice": "鎖定裝置 (本機動作)",
+ "lockDeviceWithPasscode": "鎖定裝置 (本機動作)",
+ "noAction": "沒有任何動作",
+ "noActionRow": "沒有任何動作,請選取 [新增] 以新增動作",
+ "pushNotification": "傳送推播通知給終端使用者",
+ "remoteLock": "從遠端鎖定不符合規範的裝置",
+ "removeSourceAccessProfile": "移除來源存取設定檔",
+ "retire": "淘汰不符合規範的裝置",
+ "wipe": "抹除",
+ "emailNotification": "傳送電子郵件給使用者"
+ },
+ "InstallIntent": {
+ "available": "適用於已註冊的裝置",
+ "availableWithoutEnrollment": "無論註冊與否均可使用",
+ "required": "必要",
+ "uninstall": "解除安裝"
+ },
"EnrollmentStatusScreen": {
"Apps": {
"managedApps": "受管理的應用程式",
@@ -2466,142 +1483,61 @@
"resetToggle": "允許使用者在發生安裝錯誤時重設裝置",
"timeout": "當安裝時間超過指定的分鐘數時顯示錯誤"
},
- "EnrollmentType": {
- "devicesWithEnrollment": "受控裝置",
- "devicesWithoutEnrollment": "受管理的應用程式"
- },
- "ApplicabilityRules": {
- "GridLabel": {
- "property": "屬性",
- "rule": "規則",
- "ruleDetails": "規則詳細資料",
- "value": "值"
- },
- "assignIf": "指派設定檔的條件",
- "deleteWarning": "這會刪除選取的適用性規則",
- "dontAssignIf": "不指派設定檔的條件",
- "editionDisplayText": "{0} {1}",
- "editionDisplayTextMore": "及其他 {0} 個",
- "instructions": "指定如何在已指派群組中套用此設定檔。Intune 只會將設定檔套用至滿足這些規則所結合準則的裝置。",
- "maxText": "最大值",
- "minText": "最小值",
- "noActionRow": "未指定任何適用性規則",
- "oSVersion": "例如: 1.2.3.4",
- "toText": "到",
- "windows10Education": "Windows 10/11 教育版",
- "windows10EducationN": "Windows 10/11 教育版 N",
- "windows10Enterprise": "Windows 10/11 企業版",
- "windows10EnterpriseN": "Windows 10/11 企業版 N",
- "windows10HolographicEnterprise": "Windows 10 Holographic for Business",
- "windows10Home": "Windows 10/11 家用版",
- "windows10HomeChina": "Windows 10 家用中國版",
- "windows10HomeN": "Windows 10/11 家用版 N",
- "windows10HomeSingleLanguage": "Windows 10/11 家用版單一語言",
- "windows10IoTCore": "Windows 10 IoT Core",
- "windows10IoTCoreCommercial": "Windows 10 IoT Core Commercial",
- "windows10Mobile": "Windows 10 行動裝置版",
- "windows10MobileEnterprise": "Windows 10 行動裝置企業版",
- "windows10OsEdition": "OS 版本",
- "windows10OsVersion": "OS 版本",
- "windows10Professional": "Windows 10/11 專業版",
- "windows10ProfessionalEducation": "Windows 10/11 專業教育版",
- "windows10ProfessionalEducationN": "Windows 10/11 專業教育版 N",
- "windows10ProfessionalN": "Windows 10 Professional N",
- "windows10ProfessionalWorkstation": "Windows 10/11 Professional Workstation",
- "windows10ProfessionalWorkstationN": "Windows 10/11 Professional Workstation N"
+ "Devices": {
+ "General": {
+ "android": "Android"
+ },
+ "aOSP": "Android 開放原始碼專案",
+ "android": "Android 裝置系統管理員",
+ "androidWorkProfile": "Android Enterprise (公司設定檔)",
+ "iOS": "iOS/iPadOS",
+ "mac": "macOS",
+ "windows": "Windows (MDM)",
+ "windows10": "Windows 10 及更新版本",
+ "windowsHomeSku": "Windows 家用版 SKU",
+ "windowsMobile": "Windows Mobile"
+ },
+ "AppInfoBalloonText": {
+ "Certificate": {
+ "customSubjectName": "CN={{UserName}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US\r\nor\r\nCN={{AAD_Device_ID}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US",
+ "keySize": "請選取金鑰包含的位元數。",
+ "keyUsage": "請指定交換憑證公用金鑰所需的密碼編譯動作。",
+ "renewalThreshold": "請輸入百分比 (介於 1% 到 99%),指定憑證存留期必須剩餘多少百分比,使用者才能要求更新憑證。Intune 建議的時間量為 20%。(1-99)",
+ "rootCert": "請選擇先前設定及指派的根 CA 憑證設定檔。此 CA 憑證必須是核發此設定檔 (您目前設定的設定檔) 憑證之 CA 的根憑證。",
+ "scepServerUrl": "請為透過 SCEP 發行憑證的 NDES 伺服器輸入 URL (必須是 HTTPS)。例如: https://contoso.com/certsrv/mscep/mscep.dll",
+ "scepServerUrls": "請為透過 SCEP 發行憑證的 NDES 伺服器新增一或多個 URL (必須是 HTTPS)。例如: https://contoso.com/certsrv/mscep/mscep.dll",
+ "subjectAlternativeName": "主體別名",
+ "subjectNameFormat": "主體名稱格式",
+ "validityPeriod": "憑證到期前的剩餘時間。請輸入等於或少於顯示憑證範本中顯示的有效期間值。預設設定為一年。"
+ },
+ "appInstallContext": "其會指定要與此應用程式相關聯的安裝內容。若是雙重模式的應用程式,請為此應用程式選取所需的內容。若為其他所有應用程式,則會依據套件預先選取,無法修改。",
+ "autoUpdateMode": "設定應用程式的更新優先順序。選取 [預設] 可要求裝置必須連線至 WiFi、充電,以及在更新應用程式之前不要主動使用。選取 [高優先順序] 可在開發人員發佈應用程式後立即更新,無論裝置上的費用狀態、WiFi 功能或使用者活動為何。選取 [已延後] 以放棄最多 90 天的應用程式更新。高優先順序和延遲只會在 DO 裝置上生效。",
+ "configurationSettingsFormat": "組態設定格式文字",
+ "ignoreVersionDetection": "針對應用程式開發人員自動更新的應用程式 (像是 Google Chrome),將這項設為 [是]。",
+ "ignoreVersionDetectionMacOSLobApp": "若是應用程式開發人員會自動更新的應用程式,或要在安裝前只檢查應用程式 bundleID,請選取 [是]。若要在安裝前檢查應用程式 bundleID 和版本號碼,請選取 [否]。",
+ "installAsManagedMacOSLobApp": "此設定僅適用於 macOS 11 及更高版本。在 macOS 10.15 及更低版本,會安裝應用程式,但不會加以管理。",
+ "installContextDropdown": "請選取適當的安裝內容。使用者內容僅會為目標使用者安裝應用程式,裝置內容則會為此裝置上的所有使用者安裝應用程式。",
+ "ldapUrl": "此為 LDAP 主機名稱,用戶端可以此取得電子郵件收件者的公用加密金鑰。如果有金鑰可供使用,便會加密電子郵件。支援的格式: - ldap.example.com
\r\n- ldap.example.com:123
\r\n- ldap://ldap.example.com
- ldap://ldap.example.com:123
- ldaps://ldap.example.com
\r\n- ldaps://ldap.example.com:123
",
+ "permissionsSettings": "選取相關聯之應用程式的執行階段權限。",
+ "policyAssociatedApp": "請為此原則選取要建立關聯的應用程式。",
+ "policyConfigurationSettings": "請選取要定義此原則之組態設定時所要使用的方法。",
+ "policyDescription": "您可以選擇是否要為此設定原則輸入描述。",
+ "policyEnrollmentType": "選擇是否要透過裝置管理或以 Intune SDK 製作的應用程式來管理這些設定。",
+ "policyName": "請輸入此設定原則的名稱。",
+ "policyPlatform": "請選取要套用此應用程式設定原則的平台。",
+ "policyProfileType": "請選取此應用程式設定檔所要套用的裝置設定檔類型",
+ "policySMime": "進行 Outlook 的 S/MIME 簽署及加密設定。",
+ "sMimeDeployCertsFromIntune": "指定是否從 Intune 傳遞 S/MIME 憑證,以用於 Outlook。\r\nIntune 可以透過公司入口網站,自動將簽署及加密憑證部署給使用者。",
+ "sMimeEnable": "指定在撰寫電子郵件時,是否會啟用 S/MIME 控制項",
+ "sMimeEnableAllowChange": "請指定是否允許使用者變更 [啟用 S/MIME] 設定。",
+ "sMimeEncryptAllEmails": "指定是否所有電子郵件均必須加密。\r\n加密會將資料轉換為加密文字,這樣一來就只有指定的收件者能加以讀取。",
+ "sMimeEncryptAllEmailsAllowChange": "請指定是否允許使用者變更 [加密所有電子郵件] 設定。",
+ "sMimeEncryptionCertProfile": "指定電子郵件加密的憑證設定檔。",
+ "sMimeSignAllEmails": "請指定是否所有電子郵件均必須經過簽署。\r\n數位簽章可驗證電子郵件的真確性,並確保內容不會在傳輸過程中經過竄改。",
+ "sMimeSignAllEmailsAllowChange": "指定是否允許使用者變更 [簽署所有電子郵件] 設定。",
+ "sMimeSigningCertProfile": "指定電子郵件簽署憑證設定檔。",
+ "sMimeUserNotificationType": "這個方法會用來通知使用者必須開啟公司入口網站,以擷取 Outlook S/MIME 憑證。"
},
- "BooleanActions": {
- "allow": "允許",
- "block": "封鎖",
- "configured": "已設定",
- "disable": "停用",
- "dontRequire": "不需要",
- "enable": "啟用",
- "hide": "隱藏",
- "limit": "限制",
- "notConfigured": "未設定",
- "require": "需要",
- "show": "顯示",
- "yes": "是"
- },
- "ProactiveRemediations": {
- "Create": {
- "Basics": {
- "DescriptionMultiLineTextBox": {
- "label": "描述",
- "placeholder": "輸入描述"
- },
- "NameTextBox": {
- "label": "名稱",
- "placeholder": "輸入名稱"
- },
- "PublisherTextBox": {
- "label": "發行者",
- "placeholder": "輸入發行者"
- },
- "VersionTextBox": {
- "label": "版本"
- },
- "headerDescription": "依據您編寫的偵測及補救指令碼,建立新的自訂指令碼套件。"
- },
- "ScopeTags": {
- "headerDescription": "選取一或多個群組以指派指令碼套件。"
- },
- "Settings": {
- "DetectionScriptMultiLineTextBox": {
- "label": "偵測指令碼",
- "placeholder": "輸入指令碼文字",
- "requiredValidationMessage": "請輸入偵測指令碼"
- },
- "EnforceScriptSignatureCheckOptionPicker": {
- "label": "強制執行指令碼簽章檢查"
- },
- "LoggedOnCredentialsOptionPicker": {
- "label": "使用登入認證執行此指令碼"
- },
- "RemediationScript": {
- "infoBox": "此指令碼因為沒有補救指令碼,所以只會在「只偵測」模式下執行。"
- },
- "RemediationScriptMultiLineTextBox": {
- "label": "補救指令碼",
- "placeholder": "輸入指令碼文字"
- },
- "RunIn64BitPSOptionPicker": {
- "label": "在 64 位元的 PowerShell 中執行指令碼"
- },
- "ScriptMultiLineTextBox": {
- "base64EncodingValidationMessage": "指令碼無效。指令碼中使用了一或多個無效的字元。"
- },
- "headerDescription": "從您撰寫的指令碼建立自訂指令碼套件。根據預設,指令碼會每天在指派的裝置上執行。",
- "infoBox": "這是唯讀的指令碼。系統可能已封鎖此指令碼的某些設定。"
- },
- "title": "建立自訂指令碼",
- "ScriptProperties": {
- "GridHeaders": {
- "interval": "間隔",
- "time": "日期與時間"
- },
- "Interval": {
- "day": "每天重複一次",
- "days": "每 {0} 天重複一次",
- "hour": "每小時重複一次",
- "hours": "每隔 {0} 小時重複一次",
- "month": "每月重複一次",
- "months": "每 {0} 個月重複一次",
- "week": "每週重複一次",
- "weeks": "每 {0} 週重複一次"
- },
- "Time": {
- "utc": "{0} (UTC)",
- "utcWithDate": "{1} {0} (UTC)",
- "withDate": "{0} {1}"
- }
- }
- },
- "Edit": {
- "title": "編輯 - {0}"
- }
- },
"WindowsManagement": {
"Assignment": {
"noAssignmentCustomAttributeDisplayText": "請將自訂屬性指派給至少一個群組。前往 [屬性] 以編輯指派。",
@@ -2708,910 +1644,6 @@
"shellScriptObjectName": "Shell 指令碼",
"successfullySavedPolicy": "已儲存 {0}"
},
- "AssignmentFilters": {
- "assignmentFilterColumnHeader": "篩選",
- "noFilters": "無"
- },
- "Category": {
- "airPlay": "AirPlay",
- "airPrint": "AirPrint",
- "androidDefenderAtp": "適用於端點的 Microsoft Defender",
- "androidDeviceOwnerApplications": "應用程式",
- "androidForWorkPassword": "裝置密碼",
- "appManagement": "允許或封鎖應用程式",
- "applicationGuard": "Microsoft Defender 應用程式防護",
- "applicationRestrictions": "受限應用程式",
- "applicationVisibility": "顯示或隱藏應用程式",
- "applications": "App Store",
- "applicationsAndGames": "App Store、文件檢視、遊戲",
- "applicationsAndGoogle": "Google Play 商店",
- "appsAndExperience": "應用程式及體驗",
- "associatedDomains": "相關網域",
- "autonomousSingleAppMode": "自發單一應用程式模式",
- "azureOperationalInsights": "Azure Operational Insights",
- "bitLocker": "Windows 加密",
- "browser": "瀏覽器",
- "builtinApps": "內建應用程式",
- "cellular": "行動電話通訊",
- "cloudAndStorage": "雲端和存放裝置",
- "cloudPrint": "雲端印表機",
- "complianceEmailProfile": "電子郵件",
- "connectedDevices": "已連線的裝置",
- "connectivity": "行動數據與連線",
- "contentCaching": "內容快取",
- "controlPanelAndSettings": "控制台與設定",
- "credentialGuard": "Microsoft Defender Credential Guard",
- "customCompliance": "自訂合規性",
- "customCompliancePreview": "自訂合規性 (預覽)",
- "customConfiguration": "自訂組態設定檔",
- "customOMASettings": "自訂 OMA-URI 設定",
- "customPreferences": "喜好設定檔案",
- "defender": "Microsoft Defender 防毒軟體",
- "defenderAntivirus": "Microsoft Defender 防毒軟體",
- "defenderExploitGuard": "Microsoft Defender 惡意探索防護",
- "defenderFirewall": "Microsoft Defender 防火牆",
- "defenderLocalSecurityOptions": "本機裝置安全性選項",
- "defenderSecurityCenter": "Microsoft Defender 資訊安全中心",
- "deliveryOptimization": "傳遞最佳化",
- "derivedCredentialAuthenticationConfiguration": "衍生認證",
- "deviceExperience": "裝置體驗",
- "deviceFirmwareConfigurationInterface": "裝置韌體設定介面",
- "deviceGuard": "Microsoft Defender 應用程式控制",
- "deviceHealth": "裝置健全狀況",
- "devicePassword": "裝置密碼",
- "deviceProperties": "裝置屬性",
- "deviceRestrictions": "一般",
- "deviceSecurity": "系統安全性",
- "display": "顯示",
- "domainJoin": "加入網域",
- "domains": "網域",
- "edgeBrowser": "舊版 Microsoft Edge (45 版及較舊版本)",
- "edgeBrowserSmartScreen": "Microsoft Defender SmartScreen",
- "edgeKiosk": "Microsoft Edge 資訊亭模式",
- "editionUpgrade": "版本升級",
- "education": "教育",
- "educationDeviceCerts": "裝置憑證",
- "educationStudentCerts": "學生憑證",
- "educationTakeATest": "執行測試",
- "educationTeacherCerts": "老師憑證",
- "emailProfile": "電子郵件",
- "enterpriseDataProtection": "Windows 資訊保護",
- "expeditedCheckin": "行動裝置管理設定",
- "extensibleSingleSignOn": "單一登入應用程式延伸模組",
- "filevault": "FileVault",
- "firewall": "防火牆",
- "games": "遊戲",
- "gatekeeper": "Gatekeeper",
- "healthMonitoring": "狀況監控",
- "homeScreenLayout": "主畫面版面配置",
- "iOSWallpaper": "底色圖案",
- "importedPFX": "PKCS 匯入的憑證",
- "iosDefenderAtp": "適用於端點的 Microsoft Defender",
- "iosKiosk": "資訊亭",
- "kernelExtensions": "核心延伸模組",
- "keyboardAndDictionary": "鍵盤與字典",
- "kiosk": "資訊亭",
- "kioskAndroidEnterprise": "專用裝置",
- "kioskConfiguration": "資訊亭",
- "kioskConfigurationV2": "資訊亭",
- "kioskWebBrowser": "資訊亭網頁瀏覽器",
- "lockScreenMessage": "鎖定畫面訊息",
- "lockedScreenExperience": "鎖定畫面體驗",
- "logging": "報告和遙測",
- "loginItems": "登入項目",
- "loginWindow": "登入視窗",
- "macDefenderAtp": "適用於端點的 Microsoft Defender",
- "maintenance": "維護",
- "malware": "惡意程式碼",
- "messaging": "傳訊",
- "networkBoundary": "網路界限",
- "networkProxy": "網路 Proxy",
- "notifications": "應用程式通知",
- "pKCS": "PKCS 憑證",
- "password": "密碼",
- "personalProfile": "個人設定檔",
- "personalization": "個人化",
- "policyOverride": "覆寫群組原則",
- "powerSettings": "電源設定",
- "printer": "印表機",
- "privacy": "隱私權",
- "privacyPerApp": "個別應用程式的隱私權例外狀況",
- "privacyPreferences": "隱私權喜好設定",
- "projection": "投影",
- "sCCMCompliance": "設定管理員合規性",
- "sCEP": "SCEP 憑證",
- "sCEPProperties": "SCEP 憑證",
- "sMode": "模式切換 (僅限 Windows 測試人員)",
- "safari": "Safari",
- "search": "搜尋",
- "session": "工作階段",
- "sharedDevice": "共享的 iPad",
- "sharedPCAccountManager": "共用多重使用者裝置",
- "singleSignOn": "單一登入",
- "smartScreen": "Microsoft Defender SmartScreen",
- "softwareUpdates": "設定",
- "start": "啟動",
- "systemExtensions": "系統延伸模組",
- "systemSecurity": "系統安全性",
- "trustedCert": "信任的憑證",
- "updates": "更新",
- "userRights": "使用者權限",
- "usersAndAccounts": "使用者及帳戶",
- "vPN": "基底 VPN",
- "vPNApps": "自動 VPN",
- "vPNAppsAndTrafficRules": "應用程式和流量規則",
- "vPNConditionalAccess": "條件式存取",
- "vPNConnectivity": "連線能力",
- "vPNDNSTriggers": "DNS 設定",
- "vPNIKEv2": "IKEv2 設定",
- "vPNProxy": "Proxy",
- "vPNSplitTunneling": "分割通道",
- "vPNTrustedNetwork": "受信任的網路偵測",
- "webContentFilter": "Web 內容篩選",
- "wiFi": "Wi-Fi",
- "win10Wifi": "Wi-Fi",
- "windowsAtp": "適用於端點的 Microsoft Defender",
- "windowsDefenderATP": "適用於端點的 Microsoft Defender",
- "windowsHelloForBusiness": "Windows Hello 企業版",
- "windowsSpotlight": "Windows 焦點",
- "wiredNetwork": "有線網路",
- "wireless": "無線",
- "wirelessProjection": "無線投影",
- "workProfile": "工作設定檔設定",
- "workProfilePassword": "工作設定檔密碼",
- "xboxServices": "Xbox 服務",
- "zebraMx": "MX 設定檔 (僅限 Zebra)",
- "complianceActionsLabel": "因不符合規範而採取的動作"
- },
- "MicrosoftEdgeChannel": {
- "beta": "Beta",
- "dev": "Dev",
- "stable": "Stable"
- },
- "ConfigurationTypes": {
- "Table": {
- "androidDeviceOwnerGeneral": "裝置限制 (裝置擁有者)",
- "androidForWorkGeneral": "裝置限制 (公司設定檔)"
- },
- "androidCustom": "自訂",
- "androidDeviceOwnerGeneral": "裝置限制",
- "androidDeviceOwnerPkcs": "PKCS 憑證",
- "androidDeviceOwnerScep": "SCEP 憑證",
- "androidDeviceOwnerTrustedCertificate": "信任的憑證",
- "androidDeviceOwnerVpn": "VPN",
- "androidDeviceOwnerWiFi": "Wi-Fi",
- "androidEmailProfile": "電子郵件 (僅 Samsung KNOX)",
- "androidForWorkCustom": "自訂",
- "androidForWorkEmailProfile": "電子郵件",
- "androidForWorkGeneral": "裝置限制",
- "androidForWorkImportedPFX": "PKCS 匯入的憑證",
- "androidForWorkOemConfig": "OEMConfig",
- "androidForWorkPKCS": "PKCS 憑證",
- "androidForWorkSCEP": "SCEP 憑證",
- "androidForWorkTrustedCertificate": "信任的憑證",
- "androidForWorkVpn": "VPN",
- "androidForWorkWiFi": "Wi-Fi",
- "androidGeneral": "裝置限制",
- "androidImportedPFX": "PKCS 匯入的憑證",
- "androidPKCS": "PKCS 憑證",
- "androidSCEP": "SCEP 憑證",
- "androidTrustedCertificate": "信任的憑證",
- "androidVPN": "VPN",
- "androidWiFi": "Wi-Fi",
- "androidZebraMx": "MX 設定檔 (僅限 Zebra)",
- "complianceAndroid": "Android 合規性原則",
- "complianceAndroidDeviceOwner": "公司擁有且完全受控的專用工作設定檔",
- "complianceAndroidEnterprise": "個人擁有的工作設定檔",
- "complianceAndroidForWork": "Android for Work 合規性原則",
- "complianceIos": "iOS 合規性政策",
- "complianceMac": "Mac 合規性原則",
- "complianceWindows10": "Windows 10 及更新版本合規性政策",
- "complianceWindows10Mobile": "Windows 10 行動裝置版合規性原則",
- "complianceWindows8": "Windows 8 合規性原則",
- "complianceWindowsPhone": "Windows Phone 合規性原則",
- "exchangeActiveSync": "Exchange Active Sync",
- "iosCustom": "自訂",
- "iosDerivedCredentialAuthenticationConfiguration": "衍生的 PIV 認證",
- "iosDeviceFeatures": "裝置功能",
- "iosEDU": "教育",
- "iosEducation": "教育",
- "iosEmailProfile": "電子郵件",
- "iosGeneral": "裝置限制",
- "iosImportedPFX": "PKCS 匯入的憑證",
- "iosPKCS": "PKCS 憑證",
- "iosPresets": "預設",
- "iosSCEP": "SCEP 憑證",
- "iosTrustedCertificate": "信任的憑證",
- "iosVPN": "VPN",
- "iosVPNZscaler": "VPN",
- "iosWiFi": "Wi-Fi",
- "macCustom": "自訂",
- "macDeviceFeatures": "裝置功能",
- "macEndpointProtection": "Endpoint Protection",
- "macExtensions": "延伸模組",
- "macGeneral": "裝置限制",
- "macImportedPFX": "PKCS 匯入的憑證",
- "macSCEP": "SCEP 憑證",
- "macTrustedCertificate": "信任的憑證",
- "macVPN": "VPN",
- "macWiFi": "Wi-Fi",
- "settingsCatalog": "設定目錄 (預覽)",
- "unsupported": "不支援",
- "windows10AdministrativeTemplate": "系統管理範本 (預覽)",
- "windows10Atp": "適用於端點的 Microsoft Defender (執行 Windows 10 及更新版本的電腦裝置)",
- "windows10Custom": "自訂",
- "windows10DesktopSoftwareUpdate": "軟體更新",
- "windows10DeviceFirmwareConfigurationInterface": "裝置韌體設定介面",
- "windows10EmailProfile": "電子郵件",
- "windows10EndpointProtection": "Endpoint Protection",
- "windows10EnterpriseDataProtection": "Windows 資訊保護",
- "windows10General": "裝置限制",
- "windows10ImportedPFX": "PKCS 匯入的憑證",
- "windows10Kiosk": "資訊亭",
- "windows10NetworkBoundary": "網路界限",
- "windows10PKCS": "PKCS 憑證",
- "windows10PolicyOverride": "覆寫群組原則",
- "windows10SCEP": "SCEP 憑證",
- "windows10SecureAssessmentProfile": "教育設定檔",
- "windows10SharedPC": "共用多重使用者裝置",
- "windows10TeamGeneral": "裝置限制 (Windows 10 團隊版)",
- "windows10TrustedCertificate": "信任的憑證",
- "windows10VPN": "VPN",
- "windows10WiFi": "Wi-Fi",
- "windows10WiFiCustom": "Wi-Fi 自訂",
- "windows8General": "裝置限制",
- "windows8SCEP": "SCEP 憑證",
- "windows8TrustedCertificate": "信任的憑證",
- "windows8VPN": "VPN",
- "windows8WiFi": "Wi-Fi 匯入",
- "windowsDeliveryOptimization": "傳遞最佳化",
- "windowsDomainJoin": "加入網域",
- "windowsEditionUpgrade": "版本升級和模式切換",
- "windowsIdentityProtection": "身分識別保護",
- "windowsPhoneCustom": "自訂",
- "windowsPhoneEmailProfile": "電子郵件",
- "windowsPhoneGeneral": "裝置限制",
- "windowsPhoneImportedPFX": "PKCS 匯入的憑證",
- "windowsPhoneSCEP": "SCEP 憑證",
- "windowsPhoneTrustedCertificate": "信任的憑證",
- "windowsPhoneVPN": "VPN",
- "IosUpdate": "iOS 更新原則"
- },
- "WindowsEnrollment": {
- "coManagementAuthorityDesc": "設定 Configuration Manager 整合的共同管理設定",
- "coManagementAuthorityTitle": "共同管理設定 ",
- "deploymentProfiles": "Windows AutoPilot 部署設定檔",
- "description": "了解使用者或系統管理員可向 Intune 註冊 Windows 10/11 電腦的七種不同方式。",
- "descriptionLabel": "Windows 註冊方式",
- "enrollmentStatusPage": "[註冊狀態] 頁面"
- },
- "Platform": {
- "all": "全部",
- "android": "Android 裝置系統管理員",
- "androidAOSP": "Android (AOSP)",
- "androidEnterprise": "Android Enterprise",
- "androidForWork": "Android Enterprise",
- "androidWorkProfile": "Android Enterprise",
- "common": "通用",
- "iOS": "iOS/iPadOS",
- "iosAndAndroidPlatformLabel": "iOS 與 Android",
- "iosCommaAndroidPlatformLabel": "iOS、Android",
- "linux": "Linux",
- "macOS": "macOS",
- "unknown": "未知",
- "unsupported": "不支援",
- "windows": "Windows",
- "windows10": "Windows 10 及更新版本",
- "windows10CM": "Windows 10 及更新版本 (ConfigMgr)",
- "windows10Holo": "Windows 10 全像攝影版",
- "windows10Mobile": "Windows 10 行動裝置版",
- "windows10Team": "Windows 10 團隊版",
- "windows10X": "Windows 10X",
- "windows8": "Windows 8.1 及更新版本",
- "windows8And10": "Windows 8 與 10",
- "windowsPhone": "Windows Phone 8.1",
- "windows10AndLater": "Windows 10 及更新版本",
- "windows10AndWindowsServer": "Windows 10、Windows 11 與 Windows Server (ConfigMgr)",
- "windows10andLaterCM": "Windows 10 及更新版本 (ConfigMgr)",
- "holoLens": "HoloLens",
- "surfaceHub2": "Surface Hub 2",
- "surfaceHub2S": "Surface Hub 2S",
- "windowsPC": "Windows 電腦"
- },
- "EnrollmentRestrictions": {
- "DeletePayloadLink": {
- "content": "{0} 包含在一或多個原則集中。如果刪除 {0},您將無法再透過這些原則集加以指派。仍要刪除嗎?",
- "contentWithError": "{0} 可能包含在一或多個原則集中。如果刪除 {0},您將無法再透過這些原則集加以指派。仍要刪除嗎?",
- "header": "確定要刪除此限制嗎?"
- },
- "DeviceLimit": {
- "description": "指定使用者可註冊的裝置上限數。",
- "header": "裝置限制",
- "info": "定義每個使用者可註冊的裝置數。"
- },
- "DeviceType": {
- "VersionValidation": {
- "aOSP": "必須為 1.0 或更高版本。",
- "android": "請輸入有效的版本號碼。範例: 5.0、5.5.1、6.0.0.1",
- "androidForWork": "請輸入有效的版本號碼。範例: 5.0、5.1.1",
- "iOS": "請輸入有效的版本號碼。範例: 9.0、10.0、9.0.2",
- "mac": "輸入有效的版本號碼。範例: 10, 10.10, 10.10.1",
- "min": "最小值不能低於 {0}",
- "minMax": "最小版本不可大於最大版本。",
- "windows": "必須是 10.0 或更高版本。若要允許 8.1 裝置,請保留空白",
- "windowsMobile": "必須是 10.0 或更高版本。若要允許 8.1 裝置,請保留空白"
- },
- "allPlatformsBlocked": "所有裝置平台皆已封鎖。請允許平台註冊,以啟用平台設定。",
- "blockManufacturerPlaceHolder": "製造商名稱",
- "blockManufacturersHeader": "封鎖的製造商",
- "cannotRestrict": "不支援限制",
- "configurationDescription": "指定裝置註冊時必須符合的平台設定限制。您可以使用合規性政策限制註冊後的裝置。將版本定義為 major.minor.build。只有在公司入口網站註冊的裝置才會套用版本限制。根據預設,Intune 會將裝置分類為個人擁有。若要將裝置分類為公司擁有,需要執行其他動作。",
- "configurationDescriptionLabel": "深入了解如何設定註冊限制",
- "configurations": "設定平台",
- "deviceManufacturer": "裝置製造商",
- "header": "裝置類型限制",
- "info": "定義可註冊哪些平台、版本及管理類型。",
- "manufacturer": "製造商",
- "max": "最大值",
- "maxVersion": "版本上限",
- "min": "最小值",
- "minVersion": "最小版本",
- "newPlatforms": "您允許了新平台。請考慮更新平台設定。",
- "personal": "個人所擁有",
- "platform": "平台",
- "platformDescription": "您可以允許註冊下列平台。僅封鎖不受支援的平台。可以使用其他註冊限制來設定允許的平台。",
- "platformSettings": "平台設定",
- "platforms": "選取平台",
- "platformsSelected": "選取了 {0} 個平台",
- "type": "類型",
- "versions": "版本",
- "versionsRange": "允許最小/最大範圍:",
- "windowsTooltip": "透過行動裝置管理來限制註冊。不限制 PC 代理程式的安裝。只支援 Windows 10 和 Windows 11 版本。將版本保留空白即可允許 Windows 8.1。"
- },
- "Priority": {
- "saved": "已成功儲存限制的優先順序。"
- },
- "Row": {
- "announce": "優先順序: {0},名稱: {1},已指派: {2}"
- },
- "Table": {
- "deployed": "已部署",
- "name": "名稱",
- "priority": "優先順序"
- },
- "Type": {
- "limit": "裝置限制的限制",
- "type": "裝置類型的限制"
- },
- "allUsers": "所有使用者",
- "androidRestrictions": "Android 限制",
- "create": "建立限制",
- "defaultLimitDescription": "這項預設裝置上限會以最低優先順序套用至所有使用者,而不論群組成員資格。",
- "defaultTypeDescription": "這項預設裝置類型限制會以最低優先順序套用至所有使用者,而不論群組成員資格。",
- "defaultWhfbDescription": "這是預設 Windows Hello 企業版設定,會以最低優先順序套用至所有使用者,而不論群組成員資格。",
- "deleteMessage": "受影響的使用者會受到指派的次一優先順序限制的限制,若未指派任何其他限制,則會是預設的限制。",
- "deleteTitle": "確定要刪除 {0} 限制嗎?",
- "descriptionHint": "短文,描述以限制的設定作為特性的商務用途或限制等級。",
- "edit": "編輯限制",
- "info": "裝置必須符合指派到其使用者的最高優先順序註冊限制。您可以拖曳裝置限制來變更其優先順序。預設限制對所有使用者而言都是最低優先順序,並且會治理使用者未參與的註冊。預設限制可以編輯但無法刪除。",
- "iosRestrictions": "iOS 限制",
- "mDM": "MDM",
- "macRestrictions": "MacOS 限制",
- "maxVersion": "最大版本",
- "minVersion": "最小版本",
- "nameHint": "這將是可見的主要屬性,用以識別所設定的限制。",
- "noAssignmentsStatusBar": "將限制指派到至少一個群組。按一下 [屬性]。",
- "notFound": "找不到限制。可能已將其刪除。",
- "personallyOwned": "個人擁有的裝置",
- "restriction": "限制",
- "restrictionLowerCase": "限制",
- "restrictionType": "Restriction Type",
- "selectType": "選取限制類型",
- "selectValidation": "請選取平台",
- "typeHint": "選擇裝置類型限制可限制裝置的屬性。選擇裝置限制的限制,則可限制每位使用者的裝置數目。",
- "typeRequired": "需要限制類型。",
- "winPhoneRestrictions": "Windows Phone 限制",
- "windowsRestrictions": "Windows 限制"
- },
- "Titles": {
- "ChromeOs": {
- "devices": "Chrome OS 裝置"
- },
- "ManagedDesktop": {
- "adminContacts": "系統管理連絡人",
- "appPackaging": "應用程式封裝",
- "devices": "裝置",
- "feedback": "意見反應",
- "gettingStarted": "開始使用",
- "messages": "訊息",
- "onlineResources": "線上資源",
- "serviceRequests": "服務要求",
- "settings": "設定",
- "tenantEnrollment": "租用戶註冊"
- },
- "actions": "不符合規定時所採取的動作",
- "advancedExchangeSettings": "Exchange 線上設定",
- "advancedThreatProtection": "適用於端點的 Microsoft Defender",
- "allApps": "所有應用程式",
- "allDevices": "所有裝置",
- "androidFotaDeployments": "Android FOTA 部署",
- "appBundles": "應用程式套件組合",
- "appCategories": "應用程式類別",
- "appConfigPolicies": "應用程式設定原則",
- "appInstallStatus": "應用程式安裝狀態",
- "appLicences": "應用程式授權",
- "appProtectionPolicies": "應用程式保護原則",
- "appProtectionStatus": "應用程式保護狀態",
- "appSelectiveWipe": "應用程式選擇性抹除",
- "appleVppTokens": "Apple VPP 權杖",
- "apps": "應用程式",
- "assign": "指派",
- "assignedPermissions": "指派的權限",
- "assignedRoles": "指派的角色",
- "autopilotDeploymentReport": "Autopilot 部署 (預覽)",
- "brandingAndCustomization": "自訂",
- "cartProfiles": "購物車設定檔",
- "certificateConnectors": "憑證連接器",
- "chromeEnterprise": "Chrome Enterprise",
- "compliancePolicies": "合規性政策",
- "complianceScriptManagement": "指令碼",
- "complianceScriptManagementPreview": "指令碼 (預覽)",
- "complianceSettings": "合規性政策設定",
- "conditionStatements": "條件陳述式",
- "conditions": "位置",
- "configMgr": "Microsoft Endpoint Configuration Manager",
- "configurationProfiles": "組態設定檔",
- "configurationProfilesPreview": "組態設定檔 (預覽)",
- "connectorsAndTokens": "連接器與權杖",
- "corporateDeviceIdentifiers": "公司裝置識別碼",
- "customAttributes": "自訂屬性",
- "customNotifications": "自訂通知",
- "deploymentSettings": "部署設定",
- "derivedCredentials": "衍生認證",
- "deviceActions": "裝置動作",
- "deviceCategories": "裝置類別",
- "deviceCleanUp": "裝置清除規則",
- "deviceEnrollmentManagers": "裝置註冊管理員",
- "deviceExecutionStatus": "裝置狀態",
- "deviceLimitEnrollmentRestrictions": "註冊裝置限制",
- "deviceTypeEnrollmentRestrictions": "註冊裝置平台限制",
- "devices": "裝置",
- "discoveredApps": "探索到的應用程式",
- "embeddedSIM": "eSIM 行動數據設定檔 (預覽)",
- "enrollDevices": "註冊裝置",
- "enrollmentFailures": "註冊失敗",
- "enrollmentNotifications": "註冊通知 (預覽)",
- "enrollmentRestrictions": "註冊限制",
- "exchangeActiveSync": "Exchange ActiveSync",
- "exchangeServiceConnectors": "Exchange 服務連接器",
- "failuresForFeatureUpdates": "功能更新失敗 (預覽)",
- "failuresForQualityUpdates": "Windows 快速更新失敗 (預覽)",
- "featureFlighting": "功能正式發行前小眾測試",
- "featureUpdateDeployments": "Windows 10 和更新版本的功能更新 (預覽)",
- "flighting": "正式發行前小眾測試",
- "fotaUpdate": "韌體無線更新",
- "groupPolicy": "系統管理範本",
- "groupPolicyAnalytics": "群組原則分析",
- "helpSupport": "說明及支援",
- "helpSupportReplacement": "說明及支援 ({0})",
- "iOSAppProvisioning": "iOS 應用程式佈建設定檔",
- "incompleteUserEnrollments": "未完成的使用者註冊",
- "intuneRemoteAssistance": "遠端協助 (預覽)",
- "iosUpdates": "更新 iOS/iPadOS 的原則",
- "legacyPcManagement": "舊版電腦管理",
- "macOSSoftwareUpdate": "更新 macOS 的原則",
- "macOSSoftwareUpdateAccountSummaries": "macOS 裝置的安裝狀態",
- "macOSSoftwareUpdateCategorySummaries": "軟體更新摘要",
- "macOSSoftwareUpdateStateSummaries": "更新",
- "managedGooglePlay": "受控的 Google Play",
- "msfb": "商務用 Microsoft 網上商店",
- "myPermissions": "我的使用權限",
- "notifications": "通知",
- "officeApps": "Office 應用程式",
- "officeProPlusPolicies": "Office 應用程式的原則",
- "onPremise": "內部部署",
- "onPremisesConnector": "Exchange ActiveSync 內部部署連接器",
- "onPremisesDeviceAccess": "Exchange ActiveSync 裝置",
- "onPremisesManageAccess": "Exchange 內部部署存取",
- "outOfDateIosDevices": "iOS 裝置的安裝失敗",
- "overview": "概觀",
- "partnerDeviceManagement": "夥伴裝置管理",
- "perUpdateRingDeploymentState": "依更新通道別部署狀態",
- "permissions": "權限",
- "platformApps": "{0} 個應用程式",
- "platformDevices": "{0} 部裝置",
- "platformEnrollment": "{0} 註冊",
- "policies": "原則",
- "previewMDMDevices": "所有受控裝置 (預覽)",
- "profiles": "設定檔",
- "properties": "屬性",
- "reports": "報表",
- "retireNoncompliantDevices": "淘汰不符合規範的裝置",
- "retireNoncompliantDevicesPreview": "Retire noncompliant devices (preview)",
- "role": "角色",
- "scriptManagement": "指令碼",
- "securityBaselines": "安全性基準",
- "serviceToServiceConnector": "Exchange 線上連接器",
- "shellScripts": "Shell 指令碼",
- "teamViewerConnector": "TeamViewer 連接器",
- "telecomeExpenseManagement": "電信費用管理",
- "tenantAdmin": "租用戶系統管理員",
- "tenantAdministration": "租用戶系統管理",
- "termsAndConditions": "條款及條件",
- "titles": "標題",
- "troubleshootSupport": "疑難排解 + 支援",
- "user": "使用者",
- "userExecutionStatus": "使用者狀態",
- "warranty": "保固廠商",
- "wdacSupplementalPolicies": "S 模式補充原則",
- "windows10DriverUpdate": "Windows 10 和更新版本的驅動程式更新 (預覽)",
- "windows10QualityUpdate": "Windows 10 和更新版本的品質更新 (預覽)",
- "windows10UpdateRings": "Windows 10 及更新版本的更新通道",
- "windows10XPolicyFailures": "Windows 10X 原則失敗",
- "windowsEnterpriseCertificate": "Windows Enterprise 憑證",
- "windowsManagement": "PowerShell 指令碼",
- "windowsSideLoadingKeys": "Windows 側載金鑰",
- "windowsSymantecCertificate": "Windows DigiCert 憑證",
- "windowsThreatReport": "威脅代理程式狀態"
- },
- "ScopeTypes": {
- "allDevices": "所有裝置",
- "allUsers": "所有使用者",
- "allUsersAndDevices": "所有使用者與所有裝置",
- "selectedGroups": "選取的群組"
- },
- "DetectionRules": {
- "ComparisonOperators": {
- "equals": "等於",
- "greaterThan": "大於",
- "greaterThanOrEqualTo": "大於或等於",
- "lessThan": "小於",
- "lessThanOrEqualTo": "小於或等於",
- "notEqualTo": "不等於"
- },
- "CustomScript": {
- "enforceSignatureCheck": "強制執行指令碼簽章檢查,並以無訊息模式執行指令碼",
- "enforceSignatureCheckTooltip": "選取 [是] 可驗證指令碼是否由信任的發行者簽署,這能使指令碼執行時不顯示任何警告或提示。指令碼會在已解除封鎖的情況下執行。選取 [否] (預設) 會以終端使用者確認執行指令碼,而不經過簽章驗證。",
- "header": "使用自訂偵測指令碼",
- "runAs32Bit": "在 64 位元用戶端上以 32 位元處理序的形式執行指令碼",
- "runAs32BitTooltip": "選取 [是] 會在 64 位元用戶端上以 32 位元處理序的形式執行指令碼。選取 [否] (預設) 會在 64 位元用戶端上以 64 位元處理序的形式執行指令碼。32 位元用戶端會以 32 位元處理序的形式執行指令碼。",
- "scriptFile": "指令檔",
- "scriptFileNotSelectedValidation": "未選取任何指令檔。",
- "scriptFileTooltip": "請選取會偵測應用程式是否存在用戶端上的 PowerShell 指令碼。當指令碼同時傳回 0 值結束代碼且對 STDOUT 寫入字串值時,會偵測到應用程式。"
- },
- "Manual": {
- "FileRule": {
- "DetectionMethodOptions": {
- "dateCreated": "建立日期",
- "dateModified": "修改日期",
- "doesNotExist": "檔案或資料夾不存在",
- "fileOrFolderExists": "檔案或資料夾存在",
- "sizeInMB": "大小 (MB)",
- "version": "字串 (版本)"
- },
- "associatedWith32Bit": "已與 64 位元用戶端上的 32 位元應用程式建立關聯",
- "associatedWith32BitTooltip": "選取 [是] 會展開 64 位元用戶端上 32 位元內容中的所有路徑環境變數。選取 [否] (預設) 會展開 64 位元用戶端上 64 位元內容中的所有路徑變數。32 位元用戶端一律會使用 32 位元內容。",
- "detectionMethod": "偵測方法",
- "detectionMethodTooltip": "請為要用來驗證應用程式是否存在的偵測方法選取類型。",
- "fileOrFolder": "檔案或資料夾",
- "fileOrFolderToolTip": "要偵測的檔案或資料夾。",
- "operator": "運算子",
- "operatorTooltip": "請為要用來驗證比較的偵測方法選取運算子。",
- "path": "路徑",
- "pathTooltip": "包含所要偵測檔案或資料夾的資料夾完整路徑。",
- "value": "值",
- "valueTooltip": "選取符合所選偵測方法的值。日期偵測方法應以當地時間輸入。"
- },
- "GridColumns": {
- "pathOrCode": "路徑/代碼",
- "type": "類型"
- },
- "MsiRule": {
- "operator": "運算子",
- "operatorTooltip": "請為 MSI 產品版本驗證比較選取運算子。",
- "productCode": "MSI 產品代碼",
- "productCodeTooltip": "應用程式的有效 MSI 產品代碼。",
- "productVersion": "值",
- "productVersionCheck": "MSI 產品版本檢查",
- "productVersionCheckTooltip": "選取 [是] 則除了 MSI 產品代碼以外,也會驗證 MSI 產品版本。",
- "productVersionTooltip": "請輸入應用程式的 MSI 產品版本。"
- },
- "RegistryRule": {
- "DetectionMethodOptions": {
- "integerComparison": "整數比較",
- "keyDoesNotExist": "機碼不存在",
- "keyExists": "機碼存在",
- "stringComparison": "字串比較",
- "valueDoesNotExist": "值不存在",
- "valueExists": "值存在",
- "versionComparison": "版本比較"
- },
- "associatedWith32Bit": "已與 64 位元用戶端上的 32 位元應用程式建立關聯",
- "associatedWith32BitTooltip": "選取 [是] 會搜尋 64 位元用戶端上的 32 位元登錄。選取 [否] (預設) 會搜尋 64 位元用戶端上的 64 位元登錄。32 位元用戶端一律會搜尋 32 位元登錄。",
- "detectionMethod": "偵測方法",
- "detectionMethodTooltip": "請為要用來驗證應用程式是否存在的偵測方法選取類型。",
- "keyPath": "機碼路徑",
- "keyPathTooltip": "包含所要偵測值的登錄項目完整路徑。",
- "operator": "運算子",
- "operatorTooltip": "請為要用來驗證比較的偵測方法選取運算子。",
- "value": "值",
- "valueName": "值名稱",
- "valueNameTooltip": "要偵測之登錄值的名稱。",
- "valueTooltip": "請選取符合所選偵測方法的值。"
- },
- "RuleTypeOptions": {
- "file": "檔案",
- "mSI": "MSI",
- "registry": "登錄"
- },
- "gridAriaLabel": "偵測規則",
- "header": "建立指出應用程式是否存在的規則。",
- "noRulesSelectedPlaceholder": "未指定任何規則。",
- "ruleTableLimit": "您最多可以新增 25 項偵測規則",
- "ruleType": "規則型別",
- "ruleTypeTooltip": "選擇要新增的偵測規則類型。"
- },
- "RuleConfigurationOptions": {
- "customScript": "使用自訂偵測指令碼",
- "manual": "手動設定偵測規則"
- },
- "bladeTitle": "偵測規則",
- "header": "設定用於偵測應用程式是否存在的應用程式特定規則。",
- "rulesFormat": "規則格式",
- "rulesFormatTooltip": "請選擇要手動設定偵測規則或使用自訂指令碼,來偵測應用程式是否存在。",
- "selectorLabel": "偵測規則"
- },
- "AppType": {
- "androidEnterpriseSystemApp": "Android Enterprise 系統應用程式",
- "androidForWorkApp": "受控 Google Play 商店應用程式",
- "androidLobApp": "Android 企業營運應用程式",
- "androidStoreApp": "Android Store 應用程式",
- "builtInAndroid": "內建 Android 應用程式",
- "builtInApp": "內建應用程式",
- "builtInIos": "內建 iOS 應用程式",
- "default": "",
- "iosLobApp": "iOS 企業營運應用程式",
- "iosStoreApp": "iOS Store 應用程式",
- "iosVppApp": "iOS 大量採購方案應用程式",
- "lineOfBusinessApp": "企業營運應用程式",
- "macOSDmgApp": "macOS 應用程式 (DMG)",
- "macOSEdgeApp": "Microsoft Edge (macOS)",
- "macOSLobApp": "macOS 企業營運應用程式",
- "macOSMdatpApp": "Microsoft Defender ATP (macOS)",
- "macOSOfficeSuiteApp": "Microsoft 365 應用程式 (macOS)",
- "macOsVppApp": "macOS 大量採購方案應用程式",
- "managedAndroidLobApp": "受管理的 Android 企業營運應用程式",
- "managedAndroidStoreApp": "受管理的 Android Store 應用程式",
- "managedGooglePlayApp": "受控 Google Play 商店應用程式",
- "managedGooglePlayPrivateApp": "受控 Google Play 私人應用程式",
- "managedGooglePlayWebApp": "受控 Google Play Web 連結",
- "managedIosLobApp": "受管理的 iOS 企業營運應用程式",
- "managedIosStoreApp": "受管理的 iOS Store 應用程式",
- "microsoftStoreForBusinessApp": "商務用 Microsoft 網上商店應用程式",
- "microsoftStoreForBusinessReleaseManagedApp": "商務用 Microsoft 網上商店",
- "officeSuiteApp": "Microsoft 365 Apps (Windows 10 及更新版本)",
- "webApp": "網頁連結",
- "windowsAppXLobApp": "Windows AppX 企業營運應用程式",
- "windowsClassicApp": "Windows 應用程式 (Win32)",
- "windowsEdgeApp": "Microsoft Edge (Windows 10 及更新版本)",
- "windowsMobileMsiLobApp": "Windows MSI 企業營運應用程式",
- "windowsPhone81AppXBundleLobApp": "Windows Phone 8.1 AppX 企業營運應用程式",
- "windowsPhone81AppXLobApp": "Windows Phone 8.1 AppX 企業營運應用程式",
- "windowsPhone81StoreApp": "Windows Phone 8.1 市集應用程式",
- "windowsPhoneXapLobApp": "Windows Phone XAP 企業營運應用程式",
- "windowsStoreApp": "Microsoft Store 應用程式",
- "windowsUniversalAppXLobApp": "Windows 通用 AppX 企業營運應用程式",
- "windowsUniversalLobApp": "Windows 通用企業營運應用程式"
- },
- "PolicyType": {
- "AttackSurfaceReductionRules": {
- "configMgr": "縮小受攻擊面規則 (ConfigMgr)"
- },
- "EndpointDetectionandResponse": {
- "mDE": "端點偵測及回應"
- },
- "EndpointSecurityTemplate": {
- "aSRAppBrowserSecurity": "應用程式與瀏覽器隔離",
- "aSRApplicationControl": "應用程式控制",
- "aSRAttackSurfaceReduction": "受攻擊面縮小規則",
- "aSRDeviceControl": "裝置控制",
- "aSRExploitProtection": "惡意探索保護",
- "aSRWebProtection": "Web 保護 (舊版 Microsoft Edge)",
- "aVExclusions": "Microsoft Defender 防毒軟體排除",
- "antivirus": "Microsoft Defender 防毒軟體",
- "cloudPC": "Windows 365 安全性基準",
- "default": "端點安全性",
- "defenderTest": "Microsoft Defender for Endpoint 示範",
- "diskEncryption": "BitLocker",
- "eDR": "端點偵測及回應",
- "edgeSecurityBaseline": "Microsoft Edge 基準",
- "edgeSecurityBaselinePreview": "預覽: Microsoft Edge 基準",
- "editionUpgradeConfiguration": "版本升級和模式切換",
- "firewall": "Microsoft Defender 防火牆",
- "firewallRules": "Microsoft Defender 防火牆規則",
- "identityProtection": "帳戶防護",
- "identityProtectionPreview": "帳戶保護 (預覽)",
- "mDMSecurityBaseline1810": "2018 年 10 月的 Windows 10 及更新版本的 MDM 安全性基準",
- "mDMSecurityBaseline1810Preview": "預覽: 2018 年 10 月的 Windows 10 及更新版本之 MDM 安全性基準",
- "mDMSecurityBaseline1810PreviewBeta": "預覽: 2018 年 10 月的 Windows 10 之 MDM 安全性基準搶鮮版 (Beta)",
- "mDMSecurityBaseline1906": "2019 年 5 月的 Windows 10 及更新版本的 MDM 安全性基準",
- "mDMSecurityBaseline2004": "2020 年 8 月的 Windows 10 及更新版本的 MDM 安全性基準",
- "mDMSecurityBaseline2101": "2020 年 12 月的 Windows 10 及更高版本的 MDM 安全性基準",
- "macOSAntivirus": "防毒軟體",
- "macOSDiskEncryption": "FileVault",
- "macOSFirewall": "macOS 防火牆",
- "microsoftDefenderBaseline": "Microsoft Defender for Endpoint 基準",
- "office365Baseline": "Microsoft Office 365 基準",
- "office365BaselinePreview": "預覽: Microsoft Office O365 基準",
- "securityBaselines": "安全性基準",
- "test": "測試範本",
- "testFirewallRulesSecurityTemplateName": "Microsoft Defender 防火牆規則 (測試)",
- "testIdentityProtectionSecurityTemplateName": "帳戶防護 (測試)",
- "windowsSecurityExperience": "Windows 安全性體驗"
- },
- "Firewall": {
- "mDE": "Microsoft Defender 防火牆"
- },
- "FirewallRules": {
- "mDE": "Microsoft Defender 防火牆規則"
- },
- "administrativeTemplates": "系統管理範本",
- "androidCompliancePolicy": "Android 合規性原則",
- "aospDeviceOwnerCompliancePolicy": "Android (AOSP) 合規性政策",
- "applicationControl": "應用程式控制",
- "custom": "自訂",
- "deliveryOptimization": "傳遞最佳化",
- "derivedPersonalIdentityVerificationCredential": "衍生認證",
- "deviceFeatures": "裝置功能",
- "deviceFirmwareConfigurationInterface": "裝置韌體設定介面",
- "deviceLock": "裝置鎖定",
- "deviceOwner": "公司擁有且完全受控的專用工作設定檔",
- "deviceRestrictions": "裝置限制",
- "deviceRestrictionsWindows10Team": "裝置限制 (Windows 10 團隊版)",
- "domainJoinPreview": "加入網域",
- "editionUpgradeAndModeSwitch": "版本升級和模式切換",
- "education": "教育",
- "email": "電子郵件",
- "emailSamsungKnoxOnly": "電子郵件 (僅 Samsung KNOX)",
- "endpointProtection": "Endpoint Protection",
- "expeditedCheckin": "行動裝置管理設定",
- "exploitProtection": "惡意探索保護",
- "extensions": "副檔名",
- "hardwareConfigurations": "BIOS 設定",
- "identityProtection": "身分識別保護",
- "iosCompliancePolicy": "iOS 合規性政策",
- "kiosk": "資訊亭",
- "macCompliancePolicy": "Mac 合規性原則",
- "microsoftDefenderAntivirus": "Microsoft Defender 防毒軟體",
- "microsoftDefenderAntivirusexclusions": "Microsoft Defender 防毒軟體排除",
- "microsoftDefenderAtpWindows10Desktop": "適用於端點的 Microsoft Defender (執行 Windows 10 及更新版本的電腦裝置)",
- "microsoftDefenderFirewallRules": "Microsoft Defender 防火牆規則",
- "microsoftEdgeBaseline": "Microsoft Edge 基準",
- "mxProfileZebraOnly": "MX 設定檔 (僅限 Zebra)",
- "networkBoundary": "網路界限",
- "oemConfig": "OEMConfig",
- "overrideGroupPolicy": "覆寫群組原則",
- "pkcsCertificate": "PKCS 憑證",
- "pkcsImportedCertificate": "PKCS 匯入的憑證",
- "preferenceFile": "喜好設定檔案",
- "presets": "預設",
- "scepCertificate": "SCEP 憑證",
- "secureAssessmentEducation": "安全性評定 (教育)",
- "settingsCatalog": "設定目錄",
- "sharedMultiUserDevice": "共用多重使用者裝置",
- "softwareUpdates": "軟體更新",
- "trustedCertificate": "信任的憑證",
- "unknown": "未知",
- "unsupported": "不支援",
- "vpn": "VPN",
- "wiFi": "Wi-Fi",
- "wiFiImport": "Wi-Fi 匯入",
- "windows10CompliancePolicy": "Windows 10/11 合規性原則",
- "windows10MobileCompliancePolicy": "Windows 10 行動裝置版合規性原則",
- "windows10XScep": "SCEP 憑證 - 測試",
- "windows10XTrustedCertificate": "信任的憑證 - 測試",
- "windows10XVPN": "VPN - 測驗",
- "windows10XWifi": "WIFI - 測試",
- "windows8CompliancePolicy": "Windows 8 合規性原則",
- "windowsHealthMonitoring": "Windows 狀況監控",
- "windowsInformationProtection": "Windows 資訊保護",
- "windowsPhoneCompliancePolicy": "Windows Phone 合規性原則",
- "windowsUpdateforBusiness": "商務用 Windows Update",
- "wiredNetwork": "有線網路",
- "workProfile": "個人擁有的工作設定檔"
- },
- "OfficeSuiteAppsTab": {
- "acceptLicenseOnBehalfOfUsersLabel": "代表使用者接受 Microsoft 軟體授權條款",
- "appSuiteConfigurationLabel": "應用程式套件設定",
- "appSuiteInformationLabel": "應用程式套件資訊",
- "appsToBeInstalledLabel": "要隨套件一起安裝的應用程式",
- "architectureLabel": "架構",
- "architectureTooltip": "定義在裝置上安裝的是 32 位元或 64 位元的 Microsoft 365 應用程式。",
- "configurationDesignerLabel": "設定設計工具",
- "configurationFileLabel": "組態檔",
- "configurationSettingsFormatLabel": "組態設定格式",
- "configureAppSuiteLabel": "設定應用程式套件",
- "configuredLabel": "已設定",
- "currentVersionLabel": "目前的版本",
- "currentVersionTooltip": "這是此套件中目前設定的 Office 版本。設定並儲存較新版本時,將會更新此值。",
- "enableMicrosoftSearchAsDefaultTooltip": "請安裝背景服務,協助判斷裝置上是否已安裝適用於 Google Chrome 的 Bing 專用 Microsoft 搜尋延伸模組。",
- "enterXmlDataLabel": "輸入 XML 資料",
- "languagesLabel": "語言",
- "languagesTooltip": "根據預設,Intune 會以作業系統的預設語言安裝 Office。請選擇您要安裝的任何其他語言。",
- "learnMoreText": "深入了解",
- "newUpdateChannelTooltip": "定義使用新功能更新應用程式的頻率。",
- "noCurrentVersionText": "沒有目前的版本",
- "noLanguagesSelectedLabel": "未選取任何語言",
- "notConfiguredLabel": "未設定",
- "propertiesLabel": "屬性",
- "removeOtherVersionsLabel": "移除其他版本",
- "removeOtherVersionsTooltip": "選取 [是] 以從使用者裝置移除其他 Office (MSI) 版本。",
- "selectOfficeAppsLabel": "選取 Office 應用程式",
- "selectOfficeAppsTooltip": "請選取要隨套件一起安裝的 Office 365 應用程式。",
- "selectOtherOfficeAppsLabel": "選取其他 Office 應用程式 (需要授權)",
- "selectOtherOfficeAppsTooltip": "如果您對這些額外的 Office 應用程式擁有授權,也可將其指派給 Intune。",
- "specificVersionLabel": "特定版本",
- "updateChannelLabel": "更新通道",
- "updateChannelTooltip": "定義使用新功能更新應用程式的頻率。
\r\n每月 - Office 推出最新功能時,即提供給使用者。
\r\n每月企業通道 - 每月第二個星期二,為使用者提供 Office 的最新功能。
\r\n每月 (已設定目標) - 提前查看即將推出的每月通道版本。這是受支援的更新通道,如果其為包含新功能的每月通道版本,通常至少一週前提供。
\r\n半年 - 一年只為使用者提供幾次 Office 的新功能。
\r\n半年 (已設定目標) - 提供試驗使用者與應用程式相容性測試人員測試下一個半年通道的機會。",
- "useMicrosoftSearchAsDefault": "安裝 Bing 專用 Microsoft 搜尋的背景服務",
- "useSharedComputerActivationLabel": "使用共用的電腦啟用",
- "useSharedComputerActivationTooltip": "[共用電腦啟用] 可讓您將 Microsoft 365 應用程式,部署到多位使用者共用的電腦上。在正常的情況下,使用者只能在限定數量的裝置上,安裝及啟用 Microsoft 365 應用程式,例如 5 部電腦。透過 [共用電腦啟用] 使用 Microsoft 365 應用程式不計入此計數限制。",
- "versionToInstallLabel": "要安裝的版本",
- "versionToInstallTooltip": "選取應安裝的 Office 版本。",
- "xLanguagesSelectedLabel": "已選取 {0} 個語言",
- "xmlConfigurationLabel": "XML 設定"
- },
- "OfficeApplicationType": {
- "access": "Access",
- "bing": "以 Microsoft 搜尋為預設",
- "excel": "Excel",
- "groove": "OneDrive (Groove)",
- "lync": "商務用 Skype",
- "oneDrive": "OneDrive 電腦版",
- "oneNote": "OneNote",
- "outlook": "Outlook",
- "powerPoint": "PowerPoint",
- "publisher": "Publisher",
- "teams": "Teams",
- "word": "Word"
- },
- "WindowsQualityUpdateProfile": {
- "Details": {
- "DaysUntilForcedReboot": {
- "label": "已施行重新開機前要等候的天數"
- },
- "Description": {
- "label": "描述"
- },
- "Name": {
- "label": "名稱"
- },
- "QualityUpdateRelease": {
- "label": "當裝置 OS 版本低於以下版本時,加快品質更新的安裝:"
- },
- "bladeTitle": "Windows 10 和更新版本的品質更新 (預覽)",
- "loadError": "載入失敗!"
- },
- "TabName": {
- "qualityUpdateSettings": "設定"
- },
- "infoBoxText": "除了現有的 Windows 10 及更新版本的更新通道原則外,目前所提供專用品質更新控制項能夠為低於指定修補程式等級的裝置加快品質更新。日後將推出其他控制項。",
- "warningBoxText": "雖然加速軟體更新有助於在必要時,縮短達成合規性的時間,但對於終端使用者的產能,將會有較大影響。終端使用者在上班時間內執行重新啟動的機會,可能會明顯增加。"
- },
- "Devices": {
- "General": {
- "android": "Android"
- },
- "aOSP": "Android 開放原始碼專案",
- "android": "Android 裝置系統管理員",
- "androidWorkProfile": "Android Enterprise (公司設定檔)",
- "iOS": "iOS/iPadOS",
- "mac": "macOS",
- "windows": "Windows (MDM)",
- "windows10": "Windows 10 及更新版本",
- "windowsHomeSku": "Windows 家用版 SKU",
- "windowsMobile": "Windows Mobile"
- },
"SettingDetails": {
"CustomPolicyConfigurationProfile": {
"uploadControlPlaceHolderText": "選取設定檔"
@@ -3675,7 +1707,7 @@
"aESGCM128": "AES-128-GCM (16 個八位元 ICV)",
"aESGCM256": "AES-256-GCM (16 個八位元 ICV)",
"aadSharedDeviceDataClearAppsDescription": "將任何未針對共用裝置模式最佳化的應用程式新增至清單。每當使用者登出針對共用裝置模式最佳化的應用程式時,將會清除應用程式的本機資料。適用於執行 Android 9 及更新版本並已註冊共用模式的專用裝置。",
- "aadSharedDeviceDataClearAppsName": "清除未針對共用裝置模式最佳化之應用程式中的本機資料 (公開預覽)",
+ "aadSharedDeviceDataClearAppsName": "清除未針對共用裝置模式最佳化之應用程式中的本機資料",
"accountsPageDescription": "封鎖對 [設定] 應用程式中 [帳戶] 的存取。",
"accountsPageName": "帳戶",
"accountsSignInAssistantSettingsDescription": "封鎖 Microsoft 登入小幫手服務 (wlidsvc)。未進行此設定時,wlidsvc NT 服務可由使用者控制 (手動啟動)",
@@ -5503,7 +3535,7 @@
"enableEndUserAccessToDefenderName": "Defender 的使用者存取",
"enableEngagedRestartDescription": "啟用設定可讓使用者切換至預約重新啟動。",
"enableEngagedRestartName": "可讓使用者重新啟動 (預約重新啟動)",
- "enableIdentityPrivacyDescription": "此屬性以您輸入的文字遮罩使用者名稱。例如,如果您鍵入「匿名」,每位使用其真實使用者名稱對此 Wi-Fi 連線進行驗證的使用者都會顯示為「匿名」。",
+ "enableIdentityPrivacyDescription": "此屬性會以您輸入的文字遮罩使用者名稱。例如,如果您輸入「匿名」,則使用其真實使用者名稱向此 Wi-Fi 連線進行驗證的每個使用者都會顯示為「匿名」。若使用裝置型憑證驗證,可能需要此動作。",
"enableIdentityPrivacyName": "身分識別隱私權 (外部身分識別)",
"enableNetworkInspectionSystemDescription": "封鎖網路檢查系統 (NIS) 中的簽章所偵測到的惡意流量",
"enableNetworkInspectionSystemName": "網路檢查系統 (NIS)",
@@ -7252,6 +5284,8 @@
"presharedKeyEncodingDescription": "使用 UTF-8 為預先共用的金鑰編碼。",
"presharedKeyEncodingName": "預先共用金鑰的編碼",
"preventAny": "禁止跨邊界共用",
+ "primaryAuthenticationMethodName": "主要驗證方法",
+ "primaryAuthenticationMethodTEAPDescription": "選擇您要使用者驗證的主要方式。當您選取 [憑證] 時,請選取其中一個也部署至裝置中的憑證設定檔 (SCEP 或 PKCS)。這是裝置向伺服器呈現的身分識別憑證。",
"primarySMTPAddressOption": "主要 SMTP 位址",
"printersColumns": "例如印表機 DNS 名稱",
"printersDescription": "依網路主機名稱自動佈建印表機。此設定不支援共用的印表機。",
@@ -7663,6 +5697,8 @@
"searchEnableRemoteQueriesName": "遠端查詢",
"secondActiveEthernet": "第二個啟用的乙太網路",
"secondEthernet": "第二個乙太網路",
+ "secondaryAuthenticationMethodName": "次要驗證方法",
+ "secondaryAuthenticationMethodTEAPDescription": "選擇您要使用者驗證的次要方式。當您選取 [憑證] 時,請選取其中一個也部署至裝置中的憑證設定檔 (SCEP 或 PKCS)。這是裝置向伺服器呈現的身分識別憑證。",
"secretKey": "祕密金鑰:",
"secureBootEnabledDescription": "要求在裝置上啟用安全開機",
"secureBootEnabledName": "要求在裝置上啟用安全開機",
@@ -8074,6 +6110,7 @@
"systemUpdateWindow9": "上午 4:30",
"systemWindowsBlockedDescription": "停用視窗通知,例如快顯通知、來電、撥出電話、系統警示及系統錯誤。",
"systemWindowsBlockedName": "通知視窗",
+ "tEAPName": "通道 EAP (TEAP)",
"tLSMinMax": "TLS 最低版本必須低於或等於 TLS 最高版本。",
"tLSVersionRangeMaximum": "TLS 版本範圍最大值",
"tLSVersionRangeMaximumDescription": "輸入 1.0、1.1 或 1.2 的最高 TLS 版本。如果保留空白,將會使用預設值 1.2。",
@@ -8126,6 +6163,17 @@
"timeWindowSameStartEndDayTime": "結束日期/時間不可與開始日期/時間相同。",
"timeZoneDescription": "請選取目標裝置的時區。",
"timeZoneName": "時區",
+ "timeoutFifteenMinutes": "15 分鐘",
+ "timeoutFiveMinutes": "5 分鐘",
+ "timeoutFourHours": "4 小時",
+ "timeoutNever": "永不逾時",
+ "timeoutOneHour": "1 小時",
+ "timeoutOneMinute": "1 分鐘",
+ "timeoutTenMinutes": "10 分鐘",
+ "timeoutThirtyMinutes": "30 分鐘",
+ "timeoutThreeMinutes": "3 分鐘",
+ "timeoutTwoHours": "2 小時",
+ "timeoutTwoMinutes": "2 分鐘",
"toggleConfigurationPkgDescription": "上傳將用於上架 Microsoft Defender for Endpoint 用戶端的已簽署設定套件",
"toggleConfigurationPkgName": "Microsoft Defender for Endpoint 用戶端設定套件類型:",
"trafficRuleAppName": "應用程式",
@@ -8824,6 +6872,33 @@
"win10WifiWirelessSecurityTypeName": "無線安全性類型",
"win10WifiWirelessSecurityTypeOpen": "開放 (無驗證)",
"win10WifiWirelessSecurityTypeWPA": "WPA/WPA2-個人",
+ "win10WiredAuthenticationModeDescription": "選擇要驗證使用者、裝置,兩者之一,或是要使用來賓驗證 (無)。如果您使用的是憑證驗證,請確定憑證類型符合驗證類型。",
+ "win10WiredAuthenticationModeName": "驗證模式",
+ "win10WiredAuthenticationPeriodDescription": "用戶端在嘗試驗證之後、失敗之前等候的秒數。請選擇介於 1 到 3600 之間的數字。若未指定值,則會使用 18 秒。",
+ "win10WiredAuthenticationPeriodName": "驗證期間",
+ "win10WiredAuthenticationRetryDelayPeriodDescription": "失敗的驗證與下一次嘗試驗證之間的秒數。請選擇介於 1 到 3600 之間的值。若未指定值,則會使用 1 秒。",
+ "win10WiredAuthenticationRetryDelayPeriodName": "驗證重試延遲期間 ",
+ "win10WiredFIPSComplianceDescription": "所有使用加密型安全性系統的美國聯邦政府機構,都需要驗證是否符合 FIPS 140-2 標準,以保護數位形式儲存的敏感但並非機密之資訊。",
+ "win10WiredFIPSComplianceName": "強制有線設定檔符合聯邦資訊處理標準 (FIPS)",
+ "win10WiredGuest": "來賓",
+ "win10WiredMachine": "機器",
+ "win10WiredMachineOrUser": "使用者或機器",
+ "win10WiredMaximumAuthenticationFailuresDescription": "輸入這組認證的驗證失敗次數上限。若未指定值,則會使用 1 次嘗試。",
+ "win10WiredMaximumAuthenticationFailuresName": "驗證失敗上限",
+ "win10WiredMaximumEAPOLStartMessagesDescription": "請選擇介於 1 到 100 之間的 EAPOL-Start 訊息數目。若未指定值,則會傳送最多 3 則訊息。",
+ "win10WiredMaximumEAPOLStartMessagesName": "最大 EAPOL-start",
+ "win10WiredNetworkAuthenticationBlockPeriodDescription": "以分鐘為計時單位的驗證封鎖期。用於指定驗證嘗試失敗之後,自動驗證嘗試被封鎖的持續時間。選擇介於 0 到 1440 之間的值。",
+ "win10WiredNetworkAuthenticationBlockPeriodName": "封鎖期間 (分鐘)",
+ "win10WiredNetworkAuthenticationModeName": "驗證模式",
+ "win10WiredNetworkDoNotEnforceName": "不強制",
+ "win10WiredNetworkEnforce8021XDescription": "指定有線網路的自動設定服務是否需要使用連接埠驗證的 802.1X。",
+ "win10WiredNetworkEnforce8021XName": "802.1x",
+ "win10WiredNetworkEnforceName": "強制",
+ "win10WiredRememberCredentialsDescription": "選擇是否要在使用者第一次連線到有線網路並輸入認證時,對認進行快取。已快取的認證用於後續的連線,使用者不需要重新輸入。不設定此設定相當於將其設定為 Yes。",
+ "win10WiredRememberCredentialsName": "在每次登入時記住認證",
+ "win10WiredStartPeriodDescription": "傳送 EAPOL-Start 訊息前要等候的秒數。請選擇介於 1 到 3600 之間的值。若未指定值,則會使用 5 秒。",
+ "win10WiredStartPeriodName": "開始期間",
+ "win10WiredUser": "使用者",
"win10appLockerApplicationControlAllowDescription": "將允許這些應用程式執行",
"win10appLockerApplicationControlAllowName": "強制",
"win10appLockerApplicationControlAuditComponentsAndStoreAppsDescription": "[僅稽核] 模式會在本機用戶端事件記錄檔中記錄所有事件,但不會封鎖任何應用程式的執行。Windows 元件及 Microsoft 網上商店應用程式會記錄為傳遞安全性需求。",
@@ -9165,7 +7240,6 @@
"deviceConditionsInfoParagraph2": "可對已註冊裝置進行類似設定 (以裝置為準)。",
"deviceConditionsInfoParagraph2LinkText": "深入了解如何對已註冊裝置進行裝置合規性設定。",
"deviceId": "裝置識別碼",
- "deviceLockComplexityValidationFailureNotes": "注意:
\r\n\r\n - 裝置鎖定可要求輸入密碼的複雜度: Android 11+ 目標設定為低、中或高。適用於 Android 10 以及之前版本作業的裝置,將複雜度值設為低/中/高會 預設為「低複雜度」的預期行為。
\r\n - 以下定義的密碼隨時會變更。請參閱 DevicePolicyManager|Android 開發人員,以取得不同密碼複雜度等級的最新的定義。
\r\n
\r\n\r\n低
\r\n\r\n - 密碼可以是重複 (4444) 或排序 (1234, 4321, 2468) 序列的模式或 PIN。
\r\n
\r\n\r\n中
\r\n\r\n - 不含重複 (4444) 或排序 (1234, 4321, 2468) 序列且最小長度為至少 4 個字元的 Pin
\r\n - 最小長度為至少 4 個字元的字母密碼
\r\n - 最小長度為至少 4 個字元的英數字元密碼
\r\n
\r\n\r\n高
\r\n\r\n - 不含重複 (4444) 或排序 (1234, 4321, 2468) 序列且最小長度為至少 8 個字元的 Pin
\r\n - 最小長度為至少 6 個字元的字母密碼
\r\n - 最小長度為至少 6 個字元的英數字元密碼
\r\n
\r\n",
"deviceLockedOpenFilesOptionsText": "當裝置鎖定時且有開啟的檔案",
"deviceLockedOptionText": "當裝置鎖定時",
"deviceManufacturer": "裝置製造商",
@@ -9463,7 +7537,7 @@
"reporting": "報告",
"reports": "報表",
"require": "需要",
- "requireDeviceLockComplexityOnApps": "需要裝置鎖定複雜度",
+ "requireDeviceLockOnApps": "Require device lock",
"requireThreatScanOnApps": "需要對應用程式進行威脅掃描",
"requiredField": "此欄位不能是空的",
"requiredSafetyNetEvaluationType": "需要的 SafetyNet 評估類型",
@@ -9659,6 +7733,7 @@
"yourDataIsBeingDownloadedEllipsis": "正在下載您的資料,此作業可能會需要一段時間...",
"yourDataIsBeingDownloadedMinutes": "正在下載您的資料,可能需要幾分鐘的時間...",
"yourProtectionLevel": "您的保護層級",
+ "rules": "規則",
"basics": "基本",
"modeTableHeader": "群組模式",
"appAssignmentMsg": "群組",
@@ -9695,221 +7770,2042 @@
"licenseTypeDevice": "裝置",
"licenseTypeUser": "使用者"
},
- "Languages": {
- "ar-aE": "阿拉伯文 (阿拉伯聯合大公國)",
- "ar-bH": "阿拉伯文 (巴林)",
- "ar-dZ": "阿拉伯文 (阿爾及利亞)",
- "ar-eG": "阿拉伯文 (埃及)",
- "ar-iQ": "阿拉伯文 (伊拉克)",
- "ar-jO": "阿拉伯文 (約旦)",
- "ar-kW": "阿拉伯文 (科威特)",
- "ar-lB": "阿拉伯文 (黎巴嫩)",
- "ar-lY": "阿拉伯文 (利比亞)",
- "ar-mA": "阿拉伯文 (摩洛哥)",
- "ar-oM": "阿拉伯文 (阿曼)",
- "ar-qA": "阿拉伯文 (卡達)",
- "ar-sA": "阿拉伯文 (沙烏地阿拉伯)",
- "ar-sY": "阿拉伯文 (敘利亞)",
- "ar-tN": "阿拉伯文 (突尼西亞)",
- "ar-yE": "阿拉伯文 (葉門)",
- "az-cyrl": "阿塞拜疆文 (斯拉夫、亞塞拜然)",
- "az-latn": "阿塞拜疆文 (拉丁、亞塞拜然)",
- "bn-bD": "孟加拉文 (孟加拉)",
- "bn-iN": "孟加拉文 (印度)",
- "bs-cyrl": "波士尼亞文 (斯拉夫)",
- "bs-latn": "波士尼亞文 (拉丁)",
- "zh-cN": "中文 (中國)",
- "zh-hK": "中文 (香港特別行政區)",
- "zh-mO": "中文 (澳門特別行政區)",
- "zh-sG": "中文 (新加坡)",
- "zh-tW": "中文 (台灣)",
- "hr-bA": "克羅埃西亞文 (拉丁)",
- "hr-hR": "克羅埃西亞文 (克羅埃西亞)",
- "nl-bE": "荷蘭文 (比利時)",
- "nl-nL": "荷蘭文 (荷蘭)",
- "en-aU": "英文 (澳大利亞)",
- "en-bZ": "英文 (貝里斯)",
- "en-cA": "英文 (加拿大)",
- "en-cabn": "英文 (加勒比海)",
- "en-iE": "英文 (愛爾蘭)",
- "en-iN": "英文 (印度)",
- "en-jM": "英文 (牙買加)",
- "en-mY": "英文 (馬來西亞)",
- "en-nZ": "英文 (紐西蘭)",
- "en-pH": "英文 (菲律賓共和國)",
- "en-sG": "英文 (新加坡)",
- "en-tT": "英文 (千里達及托巴哥)",
- "en-uK": "英文 (英國)",
- "en-uS": "英文 (美國)",
- "en-zA": "英文 (南非)",
- "en-zW": "英文 (辛巴威)",
- "fr-bE": "法文 (比利時)",
- "fr-cA": "法文 (加拿大)",
- "fr-cH": "法文 (瑞士)",
- "fr-fR": "法文 (法國)",
- "fr-lU": "法文 (盧森堡)",
- "fr-mC": "法文 (摩納哥)",
- "de-aT": "德文 (奧地利)",
- "de-cH": "德文 (瑞士)",
- "de-dE": "德文 (德國)",
- "de-lI": "德文 (列支敦斯登)",
- "de-lU": "德文 (盧森堡)",
- "iu-cans": "因紐特文 (語音節,加拿大)",
- "iu-latn": "因紐特文 (拉丁,加拿大)",
- "it-cH": "義大利文 (瑞士)",
- "it-iT": "義大利文 (義大利)",
- "ms-bN": "馬來文 (汶萊)",
- "ms-mY": "馬來文 (馬來西亞)",
- "mn-cN": "蒙古文 (傳統蒙古文,中華人民共和國)",
- "mn-mN": "蒙古文 (斯拉夫,蒙古)",
- "no-nB": "挪威文 (巴克摩) (挪威)",
- "no-nn": "挪威文、耐諾斯克 (挪威)",
- "pt-bR": "葡萄牙文 (巴西)",
- "pt-pT": "葡萄牙文 (葡萄牙)",
- "quz-bO": "蓋楚瓦文 (玻利維亞)",
- "quz-eC": "蓋楚瓦文 (厄瓜多)",
- "quz-pE": "蓋楚瓦文 (秘魯)",
- "smj-nO": "盧勒沙米文 (挪威)",
- "smj-sE": "盧勒沙米文 (瑞典)",
- "se-fI": "北沙米文 (芬蘭)",
- "se-nO": "北沙米文 (挪威)",
- "se-sE": "北沙米文 (瑞典)",
- "sma-nO": "南沙米文 (挪威)",
- "sma-sE": "南沙米文 (瑞典)",
- "smn": "伊納立沙米文 (芬蘭)",
- "sms": "斯科特沙米文 (芬蘭)",
- "sr-Cyrl-bA": "塞爾維亞文 (斯拉夫)",
- "sr-Cyrl-rS": "塞爾維亞文 (斯拉夫,塞爾維亞蒙特內哥羅)",
- "sr-Latn-bA": "塞爾維亞文 (拉丁)",
- "sr-Latn-rS": "塞爾維亞文 (拉丁,塞爾維亞)",
- "dsb": "下索布文 (德國)",
- "hsb": "上索布文 (德國)",
- "es-es-tradnl": "西班牙文 (西班牙,傳統排序)",
- "es-aR": "西班牙文 (阿根廷)",
- "es-bO": "西班牙文 (玻利維亞)",
- "es-cL": "西班牙文 (智利)",
- "es-cO": "西班牙文 (哥倫比亞)",
- "es-cR": "西班牙文 (哥斯大黎加)",
- "es-dO": "西班牙文 (多明尼加共和國)",
- "es-eC": "西班牙文 (厄瓜多)",
- "es-eS": "西班牙文 (西班牙)",
- "es-gT": "西班牙文 (瓜地馬拉)",
- "es-hN": "西班牙文 (宏都拉斯)",
- "es-mX": "西班牙文 (墨西哥)",
- "es-nI": "西班牙文 (尼加拉瓜)",
- "es-pA": "西班牙文 (巴拿馬)",
- "es-pE": "西班牙文 (秘魯)",
- "es-pR": "西班牙文 (波多黎各)",
- "es-pY": "西班牙文 (巴拉圭)",
- "es-sV": "西班牙文 (薩爾瓦多)",
- "es-uS": "西班牙文 (美國)",
- "es-uY": "西班牙文 (烏拉圭)",
- "es-vE": "西班牙文 (委內瑞拉)",
- "sv-fI": "瑞典文 (芬蘭)",
- "uz-cyrl": "烏茲別克文 (斯拉夫,烏茲別克)",
- "uz-latn": "烏茲別克文 (拉丁,烏茲別克)",
- "af": "南非荷蘭文 (南非)",
- "sq": "阿爾巴尼亞文 (阿爾巴尼亞)",
- "am": "阿姆哈拉文 (衣索比亞)",
- "hy": "亞美尼亞文 (亞美尼亞)",
- "as": "阿薩姆文 (印度)",
- "ba": "巴什基爾文 (俄羅斯)",
- "eu": "巴斯克文 (巴斯克文)",
- "be": "白俄羅斯文 (白俄羅斯)",
- "br": "布里敦文 (法國)",
- "bg": "保加利亞文 (保加利亞)",
- "ca": "卡達隆尼亞文 (卡達隆尼亞文)",
- "co": "科西嘉文 (法國)",
- "cs": "捷克文 (捷克共和國)",
- "da": "丹麥文 (丹麥)",
- "prs": "達利文 (阿富汗)",
- "dv": "迪維西文 (馬爾地夫)",
- "et": "愛沙尼亞文 (愛沙尼亞)",
- "fo": "法羅文 (法羅群島)",
- "fil": "菲律賓文 (菲律賓)",
- "fi": "芬蘭文 (芬蘭)",
- "gl": "加利西亞文 (加利西亞)",
- "ka": "喬治亞文 (喬治亞)",
- "el": "希臘文 (希臘)",
- "gu": "古吉拉特文 (印度)",
- "ha": "豪撒文 (拉丁,奈及利亞)",
- "he": "希伯來文 (以色列)",
- "hi": "印度文 (印度)",
- "hu": "匈牙利文 (匈牙利)",
- "is": "冰島文 (冰島)",
- "ig": "伊布文 (奈及利亞)",
- "id": "印尼文 (印尼)",
- "ga": "愛爾蘭文 (愛爾蘭)",
- "xh": "科薩文 (南非)",
- "zu": "祖魯文 (南非)",
- "ja": "日文 (日本)",
- "kn": "坎那達文 (印度)",
- "kk": "哈薩克文 (哈薩克)",
- "km": "高棉文 (柬埔寨)",
- "rw": "金揚萬答文 (盧安達)",
- "sw": "史瓦西里文 (肯亞)",
- "kok": "貢根文 (印度)",
- "ko": "韓文 (韓國)",
- "ky": "吉爾吉斯文 (吉爾吉斯)",
- "lo": "寮文 (寮國人民共和國)",
- "lv": "拉脫維亞文 (拉脫維亞)",
- "lt": "立陶宛文 (立陶宛)",
- "lb": "盧森堡文 (盧森堡)",
- "mk": "馬其頓文 (北馬其頓)",
- "ml": "馬來亞拉姆文 (印度)",
- "mt": "馬爾他文 (馬爾他)",
- "mi": "毛利文 (紐西蘭)",
- "mr": "馬拉提文 (印度)",
- "moh": "莫霍克文 (莫霍克)",
- "ne": "尼泊爾文 (尼泊爾)",
- "oc": "奧克西坦文 (法國)",
- "or": "歐迪亞文 (印度)",
- "ps": "普什圖文 (阿富汗)",
- "fa": "波斯文",
- "pl": "波蘭文 (波蘭)",
- "pa": "旁遮普文 (印度)",
- "ro": "羅馬尼亞文 (羅馬尼亞)",
- "rm": "羅曼斯文 (瑞士)",
- "ru": "俄文 (俄羅斯)",
- "sa": "梵文 (印度)",
- "st": "賴索托文 (南非)",
- "tn": "塞茲瓦納文 (南非)",
- "si": "僧伽羅文 (斯里蘭卡)",
- "sk": "斯洛伐克文 (斯洛伐克)",
- "sl": "斯洛維尼亞文 (斯洛維尼亞)",
- "sv": "瑞典文 (瑞典)",
- "syr": "敘利亞文 (敘利亞)",
- "tg": "塔吉克文 (斯拉夫,塔吉克)",
- "ta": "坦米爾文 (印度)",
- "tt": "韃靼文 (俄羅斯)",
- "te": "特拉古文 (印度)",
- "th": "泰文 (泰國)",
- "bo": "藏文 (中華人民共和國)",
- "tr": "土耳其文 (土耳其)",
- "tk": "土庫曼文 (土庫曼)",
- "uk": "烏克蘭文 (烏克蘭)",
- "ur": "烏都文 (巴基斯坦伊斯蘭共和國)",
- "vi": "越南文 (越南)",
- "cy": "威爾斯文 (英國)",
- "wo": "沃洛夫文 (塞內加爾)",
- "ii": "爨文 (中華人民共和國)",
- "yo": "優魯巴文 (奈及利亞)"
- },
- "AppProtection": {
- "allAppTypes": "以所有應用程式類型為目標",
- "androidPlatformLabel": "Android",
- "appsInAndroidWorkProfile": "Android 工作設定檔中的應用程式",
- "appsOnIntuneManagedDevices": "Intune 受控裝置上的應用程式",
- "appsOnUnmanagedDevices": "非受控裝置上的應用程式",
- "iOSPlatformLabel": "iOS/iPadOS",
- "iosAndroidMacPlatformLabel": "iOS、Android、Mac",
- "iosAndroidPlatformLabel": "iOS、Android",
- "macPlatformLabel": "Mac",
- "notAvailable": "無法使用",
- "windows10PlatformLabel": "Windows 10 及更新版本",
- "withEnrollment": "有註冊",
- "withoutEnrollment": "沒有註冊"
- },
+ "ApplicabilityRules": {
+ "GridLabel": {
+ "property": "屬性",
+ "rule": "規則",
+ "ruleDetails": "規則詳細資料",
+ "value": "值"
+ },
+ "assignIf": "指派設定檔的條件",
+ "deleteWarning": "這會刪除選取的適用性規則",
+ "dontAssignIf": "不指派設定檔的條件",
+ "editionDisplayText": "{0} {1}",
+ "editionDisplayTextMore": "及其他 {0} 個",
+ "instructions": "指定如何在已指派群組中套用此設定檔。Intune 只會將設定檔套用至滿足這些規則所結合準則的裝置。",
+ "maxText": "最大值",
+ "minText": "最小值",
+ "noActionRow": "未指定任何適用性規則",
+ "oSVersion": "例如: 1.2.3.4",
+ "toText": "到",
+ "windows10Education": "Windows 10/11 教育版",
+ "windows10EducationN": "Windows 10/11 教育版 N",
+ "windows10Enterprise": "Windows 10/11 企業版",
+ "windows10EnterpriseN": "Windows 10/11 企業版 N",
+ "windows10HolographicEnterprise": "Windows 10 Holographic for Business",
+ "windows10Home": "Windows 10/11 家用版",
+ "windows10HomeChina": "Windows 10 家用中國版",
+ "windows10HomeN": "Windows 10/11 家用版 N",
+ "windows10HomeSingleLanguage": "Windows 10/11 家用版單一語言",
+ "windows10IoTCore": "Windows 10 IoT Core",
+ "windows10IoTCoreCommercial": "Windows 10 IoT Core Commercial",
+ "windows10Mobile": "Windows 10 行動裝置版",
+ "windows10MobileEnterprise": "Windows 10 行動裝置企業版",
+ "windows10OsEdition": "OS 版本",
+ "windows10OsVersion": "OS 版本",
+ "windows10Professional": "Windows 10/11 專業版",
+ "windows10ProfessionalEducation": "Windows 10/11 專業教育版",
+ "windows10ProfessionalEducationN": "Windows 10/11 專業教育版 N",
+ "windows10ProfessionalN": "Windows 10 Professional N",
+ "windows10ProfessionalWorkstation": "Windows 10/11 Professional Workstation",
+ "windows10ProfessionalWorkstationN": "Windows 10/11 Professional Workstation N"
+ },
+ "DetectionRules": {
+ "ComparisonOperators": {
+ "equals": "等於",
+ "greaterThan": "大於",
+ "greaterThanOrEqualTo": "大於或等於",
+ "lessThan": "小於",
+ "lessThanOrEqualTo": "小於或等於",
+ "notEqualTo": "不等於"
+ },
+ "CustomScript": {
+ "enforceSignatureCheck": "強制執行指令碼簽章檢查,並以無訊息模式執行指令碼",
+ "enforceSignatureCheckTooltip": "選取 [是] 可驗證指令碼是否由信任的發行者簽署,這能使指令碼執行時不顯示任何警告或提示。指令碼會在已解除封鎖的情況下執行。選取 [否] (預設) 會以終端使用者確認執行指令碼,而不經過簽章驗證。",
+ "header": "使用自訂偵測指令碼",
+ "runAs32Bit": "在 64 位元用戶端上以 32 位元處理序的形式執行指令碼",
+ "runAs32BitTooltip": "選取 [是] 會在 64 位元用戶端上以 32 位元處理序的形式執行指令碼。選取 [否] (預設) 會在 64 位元用戶端上以 64 位元處理序的形式執行指令碼。32 位元用戶端會以 32 位元處理序的形式執行指令碼。",
+ "scriptFile": "指令檔",
+ "scriptFileNotSelectedValidation": "未選取任何指令檔。",
+ "scriptFileTooltip": "請選取會偵測應用程式是否存在用戶端上的 PowerShell 指令碼。當指令碼同時傳回 0 值結束代碼且對 STDOUT 寫入字串值時,會偵測到應用程式。",
+ "scriptSizeLimitValidation": "您的偵測指令碼超過允許的大小上限。縮小偵測指令碼的大小以解決此問題。"
+ },
+ "Manual": {
+ "FileRule": {
+ "DetectionMethodOptions": {
+ "dateCreated": "建立日期",
+ "dateModified": "修改日期",
+ "doesNotExist": "檔案或資料夾不存在",
+ "fileOrFolderExists": "檔案或資料夾存在",
+ "sizeInMB": "大小 (MB)",
+ "version": "字串 (版本)"
+ },
+ "associatedWith32Bit": "已與 64 位元用戶端上的 32 位元應用程式建立關聯",
+ "associatedWith32BitTooltip": "選取 [是] 會展開 64 位元用戶端上 32 位元內容中的所有路徑環境變數。選取 [否] (預設) 會展開 64 位元用戶端上 64 位元內容中的所有路徑變數。32 位元用戶端一律會使用 32 位元內容。",
+ "detectionMethod": "偵測方法",
+ "detectionMethodTooltip": "請為要用來驗證應用程式是否存在的偵測方法選取類型。",
+ "fileOrFolder": "檔案或資料夾",
+ "fileOrFolderToolTip": "要偵測的檔案或資料夾。",
+ "operator": "運算子",
+ "operatorTooltip": "請為要用來驗證比較的偵測方法選取運算子。",
+ "path": "路徑",
+ "pathTooltip": "包含所要偵測檔案或資料夾的資料夾完整路徑。",
+ "value": "值",
+ "valueTooltip": "選取符合所選偵測方法的值。日期偵測方法應以當地時間輸入。"
+ },
+ "GridColumns": {
+ "pathOrCode": "路徑/代碼",
+ "type": "類型"
+ },
+ "MsiRule": {
+ "operator": "運算子",
+ "operatorTooltip": "請為 MSI 產品版本驗證比較選取運算子。",
+ "productCode": "MSI 產品代碼",
+ "productCodeTooltip": "應用程式的有效 MSI 產品代碼。",
+ "productVersion": "值",
+ "productVersionCheck": "MSI 產品版本檢查",
+ "productVersionCheckTooltip": "選取 [是] 則除了 MSI 產品代碼以外,也會驗證 MSI 產品版本。",
+ "productVersionTooltip": "請輸入應用程式的 MSI 產品版本。"
+ },
+ "RegistryRule": {
+ "DetectionMethodOptions": {
+ "integerComparison": "整數比較",
+ "keyDoesNotExist": "機碼不存在",
+ "keyExists": "機碼存在",
+ "stringComparison": "字串比較",
+ "valueDoesNotExist": "值不存在",
+ "valueExists": "值存在",
+ "versionComparison": "版本比較"
+ },
+ "associatedWith32Bit": "已與 64 位元用戶端上的 32 位元應用程式建立關聯",
+ "associatedWith32BitTooltip": "選取 [是] 會搜尋 64 位元用戶端上的 32 位元登錄。選取 [否] (預設) 會搜尋 64 位元用戶端上的 64 位元登錄。32 位元用戶端一律會搜尋 32 位元登錄。",
+ "detectionMethod": "偵測方法",
+ "detectionMethodTooltip": "請為要用來驗證應用程式是否存在的偵測方法選取類型。",
+ "keyPath": "機碼路徑",
+ "keyPathTooltip": "包含所要偵測值的登錄項目完整路徑。",
+ "operator": "運算子",
+ "operatorTooltip": "請為要用來驗證比較的偵測方法選取運算子。",
+ "value": "值",
+ "valueName": "值名稱",
+ "valueNameTooltip": "要偵測之登錄值的名稱。",
+ "valueTooltip": "請選取符合所選偵測方法的值。"
+ },
+ "RuleTypeOptions": {
+ "file": "檔案",
+ "mSI": "MSI",
+ "registry": "登錄"
+ },
+ "gridAriaLabel": "偵測規則",
+ "header": "建立指出應用程式是否存在的規則。",
+ "noRulesSelectedPlaceholder": "未指定任何規則。",
+ "ruleTableLimit": "您最多可以新增 25 項偵測規則",
+ "ruleType": "規則型別",
+ "ruleTypeTooltip": "選擇要新增的偵測規則類型。"
+ },
+ "RuleConfigurationOptions": {
+ "customScript": "使用自訂偵測指令碼",
+ "manual": "手動設定偵測規則"
+ },
+ "bladeTitle": "偵測規則",
+ "header": "設定用於偵測應用程式是否存在的應用程式特定規則。",
+ "rulesFormat": "規則格式",
+ "rulesFormatTooltip": "請選擇要手動設定偵測規則或使用自訂指令碼,來偵測應用程式是否存在。",
+ "selectorLabel": "偵測規則"
+ },
+ "PolicyType": {
+ "AttackSurfaceReductionRules": {
+ "configMgr": "縮小受攻擊面規則 (ConfigMgr)"
+ },
+ "EndpointDetectionandResponse": {
+ "mDE": "端點偵測及回應"
+ },
+ "EndpointSecurityTemplate": {
+ "aSRAppBrowserSecurity": "應用程式與瀏覽器隔離",
+ "aSRApplicationControl": "應用程式控制",
+ "aSRAttackSurfaceReduction": "受攻擊面縮小規則",
+ "aSRDeviceControl": "裝置控制",
+ "aSRExploitProtection": "惡意探索保護",
+ "aSRWebProtection": "Web 保護 (舊版 Microsoft Edge)",
+ "aVExclusions": "Microsoft Defender 防毒軟體排除",
+ "antivirus": "Microsoft Defender 防毒軟體",
+ "cloudPC": "Windows 365 安全性基準",
+ "default": "端點安全性",
+ "defenderTest": "Microsoft Defender for Endpoint 示範",
+ "diskEncryption": "BitLocker",
+ "eDR": "端點偵測及回應",
+ "edgeSecurityBaseline": "Microsoft Edge 基準",
+ "edgeSecurityBaselinePreview": "預覽: Microsoft Edge 基準",
+ "editionUpgradeConfiguration": "版本升級和模式切換",
+ "firewall": "Microsoft Defender 防火牆",
+ "firewallRules": "Microsoft Defender 防火牆規則",
+ "identityProtection": "帳戶防護",
+ "identityProtectionPreview": "帳戶保護 (預覽)",
+ "mDMSecurityBaseline1810": "2018 年 10 月的 Windows 10 及更新版本的 MDM 安全性基準",
+ "mDMSecurityBaseline1810Preview": "預覽: 2018 年 10 月的 Windows 10 及更新版本之 MDM 安全性基準",
+ "mDMSecurityBaseline1810PreviewBeta": "預覽: 2018 年 10 月的 Windows 10 之 MDM 安全性基準搶鮮版 (Beta)",
+ "mDMSecurityBaseline1906": "2019 年 5 月的 Windows 10 及更新版本的 MDM 安全性基準",
+ "mDMSecurityBaseline2004": "2020 年 8 月的 Windows 10 及更新版本的 MDM 安全性基準",
+ "mDMSecurityBaseline2101": "2020 年 12 月的 Windows 10 及更高版本的 MDM 安全性基準",
+ "macOSAntivirus": "防毒軟體",
+ "macOSDiskEncryption": "FileVault",
+ "macOSFirewall": "macOS 防火牆",
+ "microsoftDefenderBaseline": "Microsoft Defender for Endpoint 基準",
+ "office365Baseline": "Microsoft Office 365 基準",
+ "office365BaselinePreview": "預覽: Microsoft Office O365 基準",
+ "securityBaselines": "安全性基準",
+ "test": "測試範本",
+ "testFirewallRulesSecurityTemplateName": "Microsoft Defender 防火牆規則 (測試)",
+ "testIdentityProtectionSecurityTemplateName": "帳戶防護 (測試)",
+ "windowsSecurityExperience": "Windows 安全性體驗"
+ },
+ "Firewall": {
+ "mDE": "Microsoft Defender 防火牆"
+ },
+ "FirewallRules": {
+ "mDE": "Microsoft Defender 防火牆規則"
+ },
+ "administrativeTemplates": "系統管理範本",
+ "androidCompliancePolicy": "Android 合規性原則",
+ "aospDeviceOwnerCompliancePolicy": "Android (AOSP) 合規性政策",
+ "applicationControl": "應用程式控制",
+ "custom": "自訂",
+ "deliveryOptimization": "傳遞最佳化",
+ "derivedPersonalIdentityVerificationCredential": "衍生認證",
+ "deviceFeatures": "裝置功能",
+ "deviceFirmwareConfigurationInterface": "裝置韌體設定介面",
+ "deviceLock": "裝置鎖定",
+ "deviceOwner": "公司擁有且完全受控的專用工作設定檔",
+ "deviceRestrictions": "裝置限制",
+ "deviceRestrictionsWindows10Team": "裝置限制 (Windows 10 團隊版)",
+ "domainJoinPreview": "加入網域",
+ "editionUpgradeAndModeSwitch": "版本升級和模式切換",
+ "education": "教育",
+ "email": "電子郵件",
+ "emailSamsungKnoxOnly": "電子郵件 (僅 Samsung KNOX)",
+ "endpointProtection": "Endpoint Protection",
+ "expeditedCheckin": "行動裝置管理設定",
+ "exploitProtection": "惡意探索保護",
+ "extensions": "副檔名",
+ "hardwareConfigurations": "BIOS 設定",
+ "identityProtection": "身分識別保護",
+ "iosCompliancePolicy": "iOS 合規性政策",
+ "kiosk": "資訊亭",
+ "macCompliancePolicy": "Mac 合規性原則",
+ "microsoftDefenderAntivirus": "Microsoft Defender 防毒軟體",
+ "microsoftDefenderAntivirusexclusions": "Microsoft Defender 防毒軟體排除",
+ "microsoftDefenderAtpWindows10Desktop": "適用於端點的 Microsoft Defender (執行 Windows 10 及更新版本的電腦裝置)",
+ "microsoftDefenderFirewallRules": "Microsoft Defender 防火牆規則",
+ "microsoftEdgeBaseline": "Microsoft Edge 基準",
+ "mxProfileZebraOnly": "MX 設定檔 (僅限 Zebra)",
+ "networkBoundary": "網路界限",
+ "oemConfig": "OEMConfig",
+ "overrideGroupPolicy": "覆寫群組原則",
+ "pkcsCertificate": "PKCS 憑證",
+ "pkcsImportedCertificate": "PKCS 匯入的憑證",
+ "preferenceFile": "喜好設定檔案",
+ "presets": "預設",
+ "scepCertificate": "SCEP 憑證",
+ "secureAssessmentEducation": "安全性評定 (教育)",
+ "settingsCatalog": "設定目錄",
+ "sharedMultiUserDevice": "共用多重使用者裝置",
+ "softwareUpdates": "軟體更新",
+ "trustedCertificate": "信任的憑證",
+ "unknown": "未知",
+ "unsupported": "不支援",
+ "vpn": "VPN",
+ "wiFi": "Wi-Fi",
+ "wiFiImport": "Wi-Fi 匯入",
+ "windows10CompliancePolicy": "Windows 10/11 合規性原則",
+ "windows10MobileCompliancePolicy": "Windows 10 行動裝置版合規性原則",
+ "windows10XScep": "SCEP 憑證 - 測試",
+ "windows10XTrustedCertificate": "信任的憑證 - 測試",
+ "windows10XVPN": "VPN - 測驗",
+ "windows10XWifi": "WIFI - 測試",
+ "windows8CompliancePolicy": "Windows 8 合規性原則",
+ "windowsHealthMonitoring": "Windows 狀況監控",
+ "windowsInformationProtection": "Windows 資訊保護",
+ "windowsPhoneCompliancePolicy": "Windows Phone 合規性原則",
+ "windowsUpdateforBusiness": "商務用 Windows Update",
+ "wiredNetwork": "有線網路",
+ "workProfile": "個人擁有的工作設定檔"
+ },
+ "Win32Requirements": {
+ "AdditionalRequirements": {
+ "File": {
+ "fileOrFolderToolTip": "檔案或資料夾作為選取的需求。",
+ "pathToolTip": "要偵測檔案或資料夾的完整路徑。",
+ "property": "屬性",
+ "valueToolTip": "選取符合所選偵測方法的需求值。應以您當地的格式輸入日期與時間需求。"
+ },
+ "GridColumns": {
+ "pathOrScript": "路徑/指令碼",
+ "type": "類型"
+ },
+ "Registry": {
+ "keyPath": "機碼路徑",
+ "keyPathTooltip": "包含作為需求之值的登錄項目完整路徑。",
+ "operator": "Operator",
+ "operatorTooltip": "選取運算子以供比較。",
+ "registryRequirement": "登錄機碼需求",
+ "registryRequirementTooltip": "選取登錄機碼需求比較。",
+ "valueName": "值名稱",
+ "valueNameTooltip": "所需登錄值的名稱。"
+ },
+ "RequirementTypeOptions": {
+ "fileType": "檔案",
+ "registry": "登錄",
+ "script": "指令碼"
+ },
+ "Script": {
+ "RequirementMethodOptions": {
+ "boolean": "布林值",
+ "dateTime": "日期與時間",
+ "float": "浮點",
+ "integer": "整數",
+ "string": "字串",
+ "version": "版本"
+ },
+ "ScriptContent": {
+ "emptyMessage": "指令碼內容不應為空白。"
+ },
+ "duplicateName": "指令碼名稱 {0} 已使用。請輸入其他名稱。",
+ "enforceSignatureCheck": "強制執行指令碼簽章檢查",
+ "enforceSignatureCheckTooltip": "選取 [是] 可驗證指令碼確實由信任的發行者所簽署,這能使指令碼執行時不顯示任何警告或提示。指令碼會在已解除封鎖的情況下執行。選取 [否] (預設) 會經終端使用者確認後執行指令碼,但不經過簽章驗證。",
+ "loggedOnCredentials": "使用登入認證執行此指令碼",
+ "loggedOnCredentialsTooltip": "使用已登入的裝置認證執行指令碼。",
+ "operatorTooltip": "選取運算子以比較需求。",
+ "requirementMethod": "選取輸出資料類型",
+ "requirementMethodTooltip": "選取判斷偵測符合需求時所使用的資料類型。",
+ "scriptFile": "指令碼檔",
+ "scriptFileTooltip": "選取將偵測應用程式是否存在於用戶端上的 PowerShell 指令碼。若偵測到應用程式,需求處理序會提供值為 0 的結束代碼,並會將字串值寫入 StdOut。",
+ "scriptName": "指令碼名稱",
+ "value": "值",
+ "valueTooltip": "選取符合所選偵測方法的需求值。應以您當地的格式輸入日期與時間需求。"
+ },
+ "bladeTitle": "新增需求規則",
+ "createRequirementHeader": "建立需求。",
+ "header": "設定其他需求規則",
+ "label": "其他需求規則",
+ "noRequirementsSelectedPlaceholder": "未指定任何需求。",
+ "requirementType": "需求類型",
+ "requirementTypeTooltip": "選擇用來判斷如何驗證需求的偵測方法類型。"
+ },
+ "architectures": "作業系統架構",
+ "architecturesTooltip": "請選擇安裝應用程式所需的架構。",
+ "bladeTitle": "需求",
+ "diskSpace": "所需磁碟空間 (MB)",
+ "diskSpaceTooltip": "安裝應用程式所需的系統磁碟機可用磁碟空間。",
+ "header": "請指定安裝應用程式前,裝置須滿足的需求:",
+ "maximumTextFieldValue": "此值最大不可超過 {0}。",
+ "minimumCpuSpeed": "所需的最低 CPU 速度 (MHz)",
+ "minimumCpuSpeedTooltip": "安裝應用程式所需的最低 CPU 速度。",
+ "minimumLogicalProcessors": "所需的最低邏輯處理器數",
+ "minimumLogicalProcessorsTooltip": "安裝應用程式所需的最低邏輯處理器數。",
+ "minimumOperatingSystem": "最基本的作業系統",
+ "minimumOperatingSystemTooltip": "請選取安裝應用程式所需的最低作業系統。",
+ "minumumTextFieldValue": "此值至少須為 {0}。",
+ "physicalMemory": "所需的實體記憶體 (MB)",
+ "physicalMemoryTooltip": "安裝應用程式所需的實體記憶體 (RAM)。",
+ "selectorLabel": "需求",
+ "validNumber": "請輸入有效的數字。"
+ },
+ "AzureIAM": {
+ "AdrsUserActionSelectionWarning": {
+ "conditions": "需要裝置註冊的條件無法用於「註冊或聯結裝置」使用者動作。",
+ "message": "「註冊或加入裝置」使用者動作所建立的原則中,只可使用「需要多重要素驗證」。{0}"
+ },
+ "AuthContext": {
+ "Delete": {
+ "failure": "無法刪除 {0}",
+ "failureCa": "無法刪除 {0},因為它正由 CA 原則參考",
+ "modifying": "正在刪除 {0}",
+ "success": "已成功刪除 {0}"
+ },
+ "Included": {
+ "none": "未選取任何雲端應用程式、動作或驗證內容",
+ "plural": "已包含 {0} 個驗證內容",
+ "singular": "已包含 1 個驗證內容"
+ },
+ "InfoBlade": {
+ "createTitle": "新增驗證內容",
+ "descPlaceholder": "新增驗證內容的描述",
+ "modifyTitle": "修改驗證內容",
+ "namePlaceholder": "例如,信任的位置、信任的裝置、強式授權",
+ "publishDesc": "發佈至應用程式後,應用程式即可使用驗證內容。請在完成設定標籤的條件式存取原則後,進行發佈。[深入了解][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150966",
+ "publishLabel": "發佈至應用程式",
+ "titleDesc": "設定將會用於保護應用程式資料與動作的驗證內容。請使用應用程式系統管理員可理解的名稱與描述。[深入了解][1]\n[1]:https://go.microsoft.com/fwlink/?linkid=2150965"
+ },
+ "Notify": {
+ "failure": "無法更新 {0}",
+ "modifying": "正在修改 {0}",
+ "success": "已成功更新 {0}"
+ },
+ "WhatIf": {
+ "selected": "包含驗證內容"
+ },
+ "addNewStepUp": "新增驗證內容",
+ "checkBoxInfo": "選取要套用此原則的驗證內容",
+ "configure": "設定驗證內容",
+ "createCA": "對驗證內容指派條件式存取原則",
+ "dataGrid": "驗證內容清單",
+ "deleteFailedByReference": "You cannot delete this authentication context because it is being referenced by CA policies.",
+ "description": "描述",
+ "documentation": "文件",
+ "getStarted": "開始",
+ "label": "驗證內容 (預覽)",
+ "menuLabel": "驗證內容 (預覽)",
+ "name": "名稱",
+ "noAuthContextConfigured": "尚未設定任何驗證內容。",
+ "noAuthContextSet": "沒有驗證內容",
+ "noData": "沒有驗證內容可顯示",
+ "selectionInfo": "驗證內容可用於保護 SharePoint 及 Microsoft Cloud App Security 應用程式中的應用程式資料及動作。",
+ "step": "步驟",
+ "tabDescription": "管理驗證內容,以保護您應用程式中的資料與動作。[深入了解][1]\n[1]:https://go.microsoft.com/fwlink/?linkid=2150965",
+ "tagResources": "標記具有驗證內容的資源"
+ },
+ "AuthenticationStrength": {
+ "Mode": {
+ "deviceBasedPush": "Microsoft Authenticator (手機登入)",
+ "deviceBasedPushFido2X509Certificate": "Microsoft Authenticator (手機登入) + Fido 2 + 憑證式驗證",
+ "deviceBasedPushX509CertificateSingleFactor": "Microsoft Authenticator (手機登入) + Fido 2 + 憑證式驗證 (單一要素)",
+ "email": "電子郵件一次性密碼",
+ "emailOtp": "電子郵件一次性密碼",
+ "federatedMultiFactor": "同盟多重要素",
+ "federatedSingleFactor": "同盟單一要素",
+ "federatedSingleFactorFederatedMultiFactor": "同盟單一要素 + 同盟多重要素",
+ "fido2": "FIDO 2 安全性金鑰",
+ "fido2X509CertificateSingleFactor": "FIDO 2 安全性金鑰 + 憑證式驗證 (單一要素)",
+ "hardwareOath": "硬體 OATH 權杖",
+ "hardwareOathEmail": "硬體 OATH 權杖 + 電子郵件單次密碼",
+ "hardwareOathX509CertificateSingleFactor": "硬體 OATH 權杖 + 憑證式驗證 (單一要素)",
+ "microsoftAuthenticatorPSIX509CertificateSingleFactor": "Microsoft Authenticator (手機登入) + 憑證式驗證 (單一要素)",
+ "microsoftAuthenticatorPsi": "Microsoft Authenticator (手機登入)",
+ "microsoftAuthenticatorPush": "Microsoft Authenticator (推播通知)",
+ "microsoftAuthenticatorPushEmail": "Microsoft Authenticator (推播通知) + 電子郵件單次密碼",
+ "microsoftAuthenticatorPushX509CertificateSingleFactor": "Microsoft Authenticator (推播通知) + 憑證式驗證 (單一要素)",
+ "none": "無",
+ "password": "密碼",
+ "passwordDeviceBasedPush": "密碼 + Microsoft Authenticator (手機登入)",
+ "passwordFido2": "密碼 + FIDO 2 安全性金鑰",
+ "passwordHardwareOath": "密碼 + 硬體 OATH 權杖",
+ "passwordMicrosoftAuthenticatorPSI": "密碼 + Microsoft Authenticator (手機登入)",
+ "passwordMicrosoftAuthenticatorPush": "密碼 + Microsoft Authenticator (推播通知)",
+ "passwordSms": "密碼 + 簡訊",
+ "passwordSoftwareOath": "密碼 + 軟體 OATH 權杖",
+ "passwordTemporaryAccessPassMultiUse": "密碼 + 暫時存取密碼 (多次使用)",
+ "passwordTemporaryAccessPassOneTime": "密碼 + 臨時存取密碼 (單次使用)",
+ "passwordVoice": "密碼 + 語音",
+ "sms": "簡訊",
+ "smsEmail": "SMS +以電子郵件寄送一次性密碼",
+ "smsSignIn": "簡訊登入",
+ "smsX509CertificateSingleFactor": "簡訊 + 憑證式驗證 (單一要素)",
+ "softwareOath": "軟體 OATH 權杖",
+ "softwareOathEmail": "軟體 OATH 權杖 + 電子郵件單次密碼",
+ "softwareOathX509CertificateSingleFactor": "軟體 OATH 權杖 + 憑證式驗證 (單一要素)",
+ "temporaryAccessPassMultiUse": "臨時存取密碼 (多次使用)",
+ "temporaryAccessPassMultiUseX509CertificateSingleFactor": "臨時存取密碼 (多次使用) + 憑證式驗證 (單一要素)",
+ "temporaryAccessPassOneTime": "臨時存取密碼 (單次使用)",
+ "temporaryAccessPassOneTimeX509CertificateSingleFactor": "臨時存取密碼 (單次使用) + 憑證式驗證 (單一要素)",
+ "voice": "語音",
+ "voiceEmail": "語音 + 以電子郵件寄送一次性密碼",
+ "voiceX509CertificateSingleFactor": "語音 + 憑證式驗證 (單一要素)",
+ "windowsHelloForBusiness": "Windows Hello 企業版",
+ "x509CertificateMultiFactor": "憑證式驗證 (多重要素)",
+ "x509CertificateSingleFactor": "憑證式驗證 (單一要素)"
+ }
+ },
+ "CAS": {
+ "BuiltinPolicy": {
+ "Option": {
+ "blockDownloads": "禁止下載 (預覽)",
+ "monitorOnly": "僅限監視器 (預覽)",
+ "protectDownloads": "保護下載 (預覽)",
+ "useCustomControls": "使用自訂原則..."
+ },
+ "ariaLabel": "選擇要套用的條件式存取應用程式控制種類"
+ }
+ },
+ "ChooseApplications": {
+ "Grid": {
+ "appIdAria": "應用程式識別碼: {0}"
+ },
+ "LowerGrid": {
+ "ariaLabel": "選取的雲端應用程式清單"
+ },
+ "UpperGrid": {
+ "ariaLabel": "符合搜尋字詞的雲端應用程式清單"
+ }
+ },
+ "ChooseLocations": {
+ "Validation": {
+ "failed": "在 [選取的位置] 中,您必須至少選擇一個位置。",
+ "selector": "至少選擇一個位置"
+ }
+ },
+ "ClientApp": {
+ "Clients": {
+ "Validation": {
+ "failed": "您至少必須選取下列其中一個用戶端"
+ }
+ }
+ },
+ "ClientConditionsInfo": {
+ "browserAndModern": "此原則僅適用於瀏覽器和新式驗證應用程式。若要將原則套用至所有用戶端應用程式,請啟用用戶端應用程式條件,並選取所有用戶端應用程式。",
+ "classicExperience": "因為建立了此原則,所以更新了預設的用戶端應用程式設定。",
+ "legacyAuth": "若未設定,將會立即對所有用戶端應用程式套用原則,包括新式及傳統驗證。"
+ },
+ "CloudAppFilterBlade": {
+ "AssignmentFilter": {
+ "header": "屬性",
+ "placeholder": "選擇屬性"
+ },
+ "Configure": {
+ "infoBalloon": "設定要套用原則的應用程式篩選。"
+ },
+ "NoPermissions": {
+ "learnMoreAria": "關於自訂安全性屬性權限的詳細資訊。",
+ "message": "您沒有使用自訂安全性屬性所需的權限。"
+ },
+ "gridHeader": "運用自訂安全性屬性,您可以使用規則建立器或規則語法文字方塊來建立或編輯篩選規則。在預覽中,只支援類型 String 的屬性。將不會顯示類型 Integer 或 Boolean 的屬性。",
+ "learnMoreAria": "關於使用規則產生器和語法文字方塊的詳細資訊。",
+ "noAttributes": "沒有可供篩選的自訂屬性。您必須設定一些屬性才可使用此篩選。",
+ "title": "編輯篩選 (預覽)"
+ },
+ "CloudAppsUserActions": {
+ "any": "任何雲端應用程式或動作",
+ "infoBalloon": "您要測試的雲端應用程式或使用者動作。例如 ' SharePoint Online'",
+ "learnMore": "利用所有或特定的雲端應用程式或動作控制存取。",
+ "learnMoreB2C": "控制對所有或特定雲端應用程式的存取權。",
+ "title": "雲端應用程式或動作"
+ },
+ "CloudappsSelectionBlade": {
+ "Excluded": {
+ "gridAria": "排除的雲端應用程式清單"
+ },
+ "Filter": {
+ "configured": "已設定",
+ "label": "編輯篩選 (預覽)",
+ "with": "具備 {1} 的 {0}"
+ },
+ "Included": {
+ "gridAria": "包含的雲端應用程式清單"
+ },
+ "Validation": {
+ "authContext": "您至少須為 [驗證內容] 設定一個子項目。",
+ "selectApps": "必須設定 \"{0}\"",
+ "selector": "至少選取一個應用程式。",
+ "userActions": "至少須設定一個子項目,才能使用 [使用者動作]。"
+ }
+ },
+ "DeviceState": {
+ "LearnMore": {
+ "message": "當使用者用來登入的裝置不是「已使用混合式 Azure AD 而聯結的」或「標示為合規」時,控制使用者存取權。\n 這已被淘汰。請改用 '{1}'。"
+ }
+ },
+ "Errors": {
+ "notFound": "找不到該原則,或已將其刪除。",
+ "notFoundDetailed": "原則 \"{0}\" 已不存在。可能已刪除。"
+ },
+ "GuestsOrExternalUsers": {
+ "allExternalTenantsLabel": "所有 Azure AD 組織",
+ "b2bCollaborationGuestLabel": "B2B 共同作業來賓使用者",
+ "b2bCollaborationMemberLabel": "B2B 共同作業成員使用者",
+ "b2bDirectConnectUserLabel": "B2B 直接連線使用者",
+ "enumeratedExternalTenantsError": "請至少選取一個外部租用戶",
+ "enumeratedExternalTenantsLabel": "選取 Azure AD 組織",
+ "externalTenantsLabel": "指定外部 Azure AD 組織",
+ "externalUserDropdownLabel": "選擇來賓或外部使用者類型",
+ "externalUsersError": "選取至少一個外部來賓或使用者類型",
+ "guestOrExternalUsersInfoContent": "包括 B2B 共同作業、B2B 直接連接和其他類型的外部使用者。",
+ "guestOrExternalUsersLabel": "來賓或外部使用者",
+ "internalGuestLabel": "本機來賓使用者",
+ "otherExternalUserLabel": "其他外部使用者"
+ },
+ "NamedLocation": {
+ "Form": {
+ "CountryLookup": {
+ "ariaLabel": "國家/地區查閱方法",
+ "gps": "依 GPS 座標判斷位置",
+ "info": "若設定了條件式存取原則的位置條件,Authenticator 應用程式就會提示使用者共用其 GPS 位置。 ",
+ "ip": "依 IP 位址判斷位置 (僅 IPv4)"
+ },
+ "Header": {
+ "new": "新增位置 ({0})",
+ "update": "更新位置 ({0})"
+ },
+ "IP": {
+ "learn": "設定具名位置 IPv4 與 IPv6 的範圍。\n[深入了解][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
+ },
+ "Include": {
+ "infoBalloon": "未知的國家/地區,是指未與特定國家或地區建立關聯的 IP 位址。[深入了解][1]\n\n這包括下列項目: \n* IPv6 位址\n* 沒有直接對應的 IPv4 位址\n[1]: https://aka.ms/canamedlocations\n",
+ "label": "包含未知的國家/地區"
+ },
+ "Name": {
+ "empty": "名稱不得空白",
+ "placeholder": "命名此位置"
+ },
+ "PrivateLink": {
+ "learn": "建立新的命名位置,其中包含 Azure AD 的私人連結。\n[深入了解][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
+ },
+ "Search": {
+ "countries": "搜尋國家/地區",
+ "names": "搜尋名稱",
+ "privateLinks": "搜尋私人連結"
+ },
+ "Trusted": {
+ "label": "標示為信任位置"
+ },
+ "enter": "輸入新的 IPv4 或 IPv6 範圍",
+ "example": "例如: 40.77.182.32/27 或 2a01:111::/32"
+ },
+ "Label": {
+ "addCountries": "國家/地區位置",
+ "addIpRange": "IP 範圍位置",
+ "addPrivateLink": "Azure 私人連結"
+ },
+ "Notification": {
+ "Create": {
+ "Failed": {
+ "description": "建立新的位置 ({0}) 失敗",
+ "title": "建立失敗"
+ },
+ "InProgress": {
+ "description": "正在建立新的位置 ({0})",
+ "title": "建立正在進行中"
+ },
+ "Success": {
+ "description": "建立新的位置 ({0}) 成功",
+ "title": "建立成功"
+ }
+ },
+ "Delete": {
+ "Failed": {
+ "description": "刪除位置 ({0}) 失敗",
+ "title": "刪除失敗"
+ },
+ "InProgress": {
+ "description": "正在刪除位置 ({0})",
+ "title": "刪除進行中"
+ },
+ "Success": {
+ "description": "刪除位置 ({0}) 成功",
+ "title": "刪除成功"
+ }
+ },
+ "Update": {
+ "Failed": {
+ "description": "更新位置 ({0}) 失敗",
+ "title": "更新失敗"
+ },
+ "InProgress": {
+ "description": "正在更新位置 ({0})",
+ "title": "正在更新"
+ },
+ "Success": {
+ "description": "更新位置 ({0}) 成功",
+ "title": "更新成功"
+ }
+ }
+ },
+ "PrivateLinks": {
+ "grid": "私人連結清單"
+ },
+ "Trusted": {
+ "title": "信任的類型",
+ "trusted": "信任"
+ },
+ "Type": {
+ "all": "所有類型",
+ "countries": "國家/地區",
+ "ipRanges": "IP 範圍",
+ "privateLinks": "私人連結",
+ "title": "位置類型"
+ },
+ "iPRangeInvalidError": "值必須是有效的 IPv4 或 IPv6 範圍。",
+ "iPRangeLinkOrSiteLocalError": "偵測到 IP 網路為本機連結或網站本機位址。",
+ "iPRangeOctetError": "IP 網路不能以 0 或 255 開頭。",
+ "iPRangePrefixError": "IP 網路首碼必須介於 /{0} 到 /{1} 之間。",
+ "iPRangePrivateError": "偵測到 IP 網路為私人位址。"
+ },
+ "NamedNetwork": {
+ "List": {
+ "gridAria": "已命名位置的清單"
+ }
+ },
+ "Policies": {
+ "Grid": {
+ "aria": "條件式存取原則清單"
+ },
+ "countText": "找到 {0} 個原則,共 {1} 個",
+ "countTextSingular": "找到 {0} 個原則,共 1 個",
+ "search": "搜尋原則"
+ },
+ "Policy": {
+ "Condition": {
+ "ServicePrincipalRisk": {
+ "description": "設定實施原則所需的服務主體風險層級",
+ "infoBalloonContent": "設定服務主體風險,以將原則套用至選取的風險層級",
+ "title": "服務主體風險 (預覽)"
+ }
+ }
+ },
+ "PolicyControlAuthStrength": {
+ "MultiFactorAuthentication": {
+ "description": "滿足增強式驗證的方法組合,例如密碼 + SMS",
+ "displayName": "多重要素驗證 (MFA)"
+ },
+ "Passwordless": {
+ "description": "滿足增強式驗證的無密碼方法,例如 Microsoft Authenticator",
+ "displayName": "無密碼 MFA"
+ },
+ "PhishingResistant": {
+ "description": "用於最強驗證的防網路釣魚無密碼方法,例如 FIDO2 安全性金鑰",
+ "displayName": "防網路釣魚 MFA"
+ }
+ },
+ "PolicyControlFedAuthMethod": {
+ "ariaLabel": "深入了解同盟提供者所滿足的驗證方法的要求。",
+ "certificate": "憑證驗證",
+ "infoBubble": "請指定必要的驗證方法,其必須由 ADFS 等同盟提供者滿足。",
+ "multifactor": "多重要素驗證",
+ "require": "需要同盟的驗證方法 (預覽)",
+ "whatIfFormat": "{0} - {1}"
+ },
+ "PolicyState": {
+ "off": "關閉",
+ "on": "開啟",
+ "reportOnly": "報告專用"
+ },
+ "PolicyTemplates": {
+ "Devices": {
+ "description": "選取 [裝置原則範本] 類別,即可深入了解存取網路的裝置。授與存取前,請先確認合規性和健全狀態。",
+ "name": "裝置"
+ },
+ "Identities": {
+ "description": "選取 [身分識別原則範本] 類別,以透過增強式驗證對所有數位資產驗證及保護每個身分識別。",
+ "name": "身分識別"
+ },
+ "Summary": {
+ "CloudApps": {
+ "allCloudApps": "所有 App",
+ "office365": "Office 365",
+ "registerSecurityInfo": "登錄安全性資訊"
+ },
+ "Conditions": {
+ "androidAndIOS": "裝置平台: Android 及 IOS",
+ "anyDevice": "Android、IOS、Windows 和 Mac 以外的任何裝置",
+ "anyDeviceStateExceptHybrid": "相容和已使用混合式 Azure AD 而聯結的裝置以外的任何裝置狀態",
+ "anyLocation": "信任位置以外的任何位置",
+ "browserMobileDesktop": "用戶端應用程式: 瀏覽器、行動裝置應用程式與電腦用戶端",
+ "exchangeActiveSync": "用戶端應用程式: Exchange Active Sync,其他用戶端",
+ "windowsAndMac": "裝置平台: Windows 與 Mac"
+ },
+ "Devices": {
+ "anyDevice": "任何裝置"
+ },
+ "Grant": {
+ "appProtectionPolicy": "需要應用程式保護原則",
+ "approvedClientApp": "需要經過核准的用戶端應用程式",
+ "blockAccess": "封鎖存取",
+ "mfa": "需要多重要素驗證",
+ "passwordChange": "需要變更密碼",
+ "requireCompliantDevice": "裝置需要標記為合規",
+ "requireHybridAzureADDevice": "需要已使用混合式 Azure AD 而聯結的裝置"
+ },
+ "Session": {
+ "appEnforcedRestrictions": "使用應用程式強制執行限制",
+ "signInFrequency": "登入頻率及永不持續的瀏覽器工作階段"
+ },
+ "UsersAndGroups": {
+ "allUsers": "所有使用者",
+ "directoryRoles": "目前系統管理員以外的目錄角色",
+ "globalAdmin": "全域系統管理員",
+ "noGuestAndAdmins": "來賓及外部、全域系統管理員、目前系統管理員以外的所有使用者"
+ },
+ "azureManagement": "Azure 管理",
+ "deviceFilters": "裝置的篩選",
+ "devicePlatforms": "裝置平台"
+ },
+ "TemplateId": {
+ "AppEnforcedRestrictions": {
+ "description": "封鎖或限制從非受控裝置存取 SharePoint、OneDrive 和 Exchange 內容。",
+ "name": "CA014: 對非受控裝置使用應用程式強制的限制",
+ "title": "對非受控裝置使用應用程式強制的限制"
+ },
+ "ApprovedClientApps": {
+ "description": "為了防止資料遺失,組織可使用 Intune 應用程式防護,對核准的新式驗證用戶端應用程式限制存取。",
+ "name": "CA012: 需要核准的用戶端應用程式及應用程式防護",
+ "title": "需要核准的用戶端應用程式及應用程式防護"
+ },
+ "BlockAccessOnUnknowns": {
+ "description": "當裝置類型不明或不受支援時,將會封鎖使用者存取公司資源。",
+ "name": "CA010: 封鎖未知或不受支援裝置平台的存取",
+ "title": "封鎖未知或不受支援裝置平台的存取"
+ },
+ "BlockLegacyAuth": {
+ "description": "封鎖可用來跳過多重要素驗證的舊版驗證端點。 ",
+ "name": "CA003: 封鎖舊版驗證",
+ "title": "封鎖舊版驗證"
+ },
+ "NoPersistentBrowserSession": {
+ "description": "防止瀏覽器工作階段在瀏覽器關閉後保持登入狀態,以及將登入頻率設定為 1 小時,進而保護非受控裝置上的使用者存取。",
+ "name": "CA011: 沒有持續瀏覽器工作階段",
+ "title": "沒有持續性瀏覽器工作階段"
+ },
+ "RequireCompliantOrHybridADAdmins": {
+ "description": "要求特殊權限系統管理員在使用符合規範或已使用混合式 Azure AD 而聯結的裝置時,才存取資源。",
+ "name": "CA009: 系統管理員需要符合規範或已使用混合式 Azure AD 而聯結的裝置",
+ "title": "系統管理員需要符合規範或已使用混合式 Azure AD 而聯結的裝置"
+ },
+ "RequireCompliantOrHybridADAllUsers": {
+ "description": "要求使用者使用受控裝置或執行多重要素驗證,以保護公司資源的存取。(僅限 macOS 或 Windows)",
+ "name": "CA013: 所有使用者都需要符合規範或已使用混合式 Azure AD 而聯結的裝置或多重要素驗證",
+ "title": "所有使用者都需要符合規範或已使用混合式 Azure AD 而聯結的裝置或多重要素驗證"
+ },
+ "RequireMFAAllUsers": {
+ "description": "所有使用者帳戶都需要多重要素驗證,以降低洩露的風險。",
+ "name": "CA004: 所有使用者都需要多重要素驗證",
+ "title": "所有使用者都需要多重要素驗證"
+ },
+ "RequireMFAForAdmins": {
+ "description": "需要特殊權限系統管理帳戶的多重要素驗證,以降低洩露的風險。此原則將鎖定與安全性預設相同的角色。",
+ "name": "CA001: 管理員需要多重要素驗證",
+ "title": "管理員需要進行多重要素驗證"
+ },
+ "RequireMFAForAzureManagement": {
+ "description": "需要多重要素驗證,才能保護對 Azure 資源的特殊權限存取。",
+ "name": "CA006: Azure 管理需要多重要素驗證",
+ "title": "Azure 管理需要多重要素驗證"
+ },
+ "RequireMFAForGuestAccess": {
+ "description": "要求來賓使用者在存取公司資源時執行多重要素驗證。",
+ "name": "CA005: 來賓存取需要多重要素驗證",
+ "title": "來賓存取需要多重要素驗證"
+ },
+ "RequireMFAForRiskySignIn": {
+ "description": "如果偵測到中度或高度的登入風險,則需要多重要素驗證。(需要 Azure AD Premium 2 授權)",
+ "name": "CA007: 風險性登入需要多重要素驗證",
+ "title": "風險性登入需要多重要素驗證"
+ },
+ "RequirePasswordChangeForHighRiskUsers": {
+ "description": "如果偵測到使用者風險很高,請要求使用者變更其密碼。(需要 Azure AD Premium 2 授權)",
+ "name": "CA008: 高風險使用者需要變更密碼",
+ "title": "高風險使用者需要變更密碼"
+ },
+ "RequireSecurityInfo": {
+ "description": "保護使用者註冊 Azure AD 多重要素驗證和自助式密碼的時機和方式。 ",
+ "name": "CA002: 保護安全性資訊註冊",
+ "title": "保護安全性資訊註冊"
+ }
+ },
+ "TemplateState": {
+ "BlockAccessOnUnknowns": {
+ "title": "啟用此原則將阻止任何對未知裝置類型的存取,在確認這不會影響使用者前,請考慮使用僅限報表模式。"
+ },
+ "BlockLegacyAuth": {
+ "description": "在確認這不會影響使用者前,請考慮使用僅限報表模式。",
+ "title": "啟用此原則將封鎖所有使用者的版驗證。"
+ },
+ "RequireCompliantOrHybridADAdmins": {
+ "Description": {
+ "on": "在您確認這不會影響您的特殊權限使用者之前,請考慮從使用僅限報表模式開始。",
+ "reportOnly": "處於僅限報表模式且需要相容裝置的原則可能會提示 Mac、iOS 和 Android 上的使用者在原則評定期間選取裝置憑證,即使沒有強制執行裝置合規性。在裝置符合規範之前,可能會重複這些提示。"
+ },
+ "Title": {
+ "on": "除非使用符合規範或已使用混合式 Azure AD 聯結等受控裝置,否則啟用此原則將會防止特殊權限使用者存取。啟用之前,請先確保您已設定合規性原則或已啟用混合式 Azure AD 設定。",
+ "reportOnly": "啟用之前,請先確保您已設定合規性原則或已啟用混合式 Azure AD 設定。 "
+ }
+ },
+ "RequireCompliantOrHybridADAllUsers": {
+ "Description": {
+ "on": "此原則會影響目前登入系統管理員以外的所有使用者。在您確認這不會影響您的使用者之前,請考慮從使用僅限報表模式開始。"
+ },
+ "Title": {
+ "on": "不要將自己鎖定! 請確定您的裝置符合規範、已使用混合式 Azure AD 聯結,或您已設定多重要素驗證。 ",
+ "reportOnly": "處於僅限報表模式且需要相容裝置的原則可能會提示 Mac、iOS 和 Android 上的使用者在原則評定期間選取裝置憑證,即使沒有強制執行裝置合規性。在裝置符合規範之前,可能會重複這些提示。"
+ }
+ },
+ "RequireMfa": {
+ "description": "如果使用緊急存取帳戶或 Azure AD Connect 同步內部部署物件,則在建立後可能需要將這些帳戶從該原則中排除。"
+ },
+ "RequireMfaAdmins": {
+ "description": "請注意,將自動排除目前系統管理員帳戶,但所有其他帳戶將在原則建立時受到保護。請首先考慮使用僅限報表模式。",
+ "title": "請勿將自己鎖於之外而無法使用! 此原則影響 Azure 入口網站。"
+ },
+ "RequireMfaAllUsers": {
+ "description": "在計劃並通知所有使用者此變更前,請考慮僅限報表模式。",
+ "title": "啟用此原則將針對所有使用者強制執行多重要素驗證。"
+ },
+ "RequireSecurityInfo": {
+ "description": "請確保根據公司需要檢查設定以保護這些帳戶。",
+ "title": "此原則不包括以下使用者和角色: 來賓和外部使用者、全域系統管理員、目前管理員"
+ }
+ },
+ "basics": "基本資料",
+ "clientApps": "用戶端應用程式",
+ "cloudApps": "雲端應用程式",
+ "cloudAppsOrActions": "雲端應用程式或動作 ",
+ "conditions": "條件 ",
+ "createNewPolicy": "從範本建立新原則 (預覽)",
+ "createPolicy": "建立原則",
+ "currentUser": "目前的使用者",
+ "customizeBuild": "自訂您的組建",
+ "customizeTemplate": "根據您要建立的原則類型自訂範本清單",
+ "excludedDevicePlatform": "排除的裝置平台",
+ "excludedDirectoryRoles": "排除的目錄角色",
+ "excludedLocation": "排除的目錄角色",
+ "excludedUsers": "排除使用者",
+ "grantControl": "授與控制項 ",
+ "includeFilteredDevice": "將篩選的裝置包含在原則中",
+ "includedDevicePlatform": "包含的裝置平台",
+ "includedDirectoryRoles": "包含的目錄角色",
+ "includedLocation": "包含的位置",
+ "includedUsers": "包含的使用者",
+ "legacyAuthenticationClients": "舊版驗證用戶端",
+ "namePolicy": "命名您的原則",
+ "next": "下一步",
+ "policyName": "原則名稱",
+ "policyState": "原則狀態",
+ "policySummary": "原則摘要",
+ "policyTemplate": "原則範本",
+ "previous": "上一步",
+ "reviewAndCreate": "審核 + 建立",
+ "riskLevels": "風險層級",
+ "selectATemplate": "選取範本",
+ "selectTemplate": "選取範本",
+ "selectTemplateCategory": "選取範本類別",
+ "selectTemplateRecommendation": "根據您的回應建議下列範本",
+ "sessionControl": "工作階段控制項 ",
+ "signInFrequency": "登入頻率",
+ "signInRisk": "登入風險",
+ "template": "範本 ",
+ "templateCategory": "範本類別",
+ "userRisk": "使用者風險",
+ "usersAndGroups": "使用者與群組 ",
+ "viewPolicySummary": "檢視原則摘要 "
+ },
+ "SSM": {
+ "MemberSelector": {
+ "description": "使用者與群組"
+ },
+ "Notification": {
+ "Migration": {
+ "error": "無法將持續性存取評估設定遷移至持續性存取評估原則",
+ "inProgress": "遷移持續性存取評估設定",
+ "success": "已成功將持續性存取評估設定移轉至條件式存取原則",
+ "successDescription": "請前往條件式存取原則,以檢視新建名爲「从CAE 設定建立的 CA 原則」的原則中移轉之設定。"
+ },
+ "error": "無法更新持續性存取評估設定",
+ "inProgress": "正在更新持續性存取評估設定",
+ "success": "已成功更新持續性存取評估設定"
+ },
+ "PreviewOptions": {
+ "disable": "停用預覽",
+ "enable": "啟用預覽"
+ },
+ "StrictLocationEnforcement": {
+ "infoContent1": "因為網路磁碟分割或 IPv4/IPv6 不相符,所以同一部用戶端裝置上的 Azure AD 與資源提供者,會看到不同的 IP 位址。施行詳細位置將會依據 Azure AD 與資源提供者看到的 IP 位址,施行條件式存取原則。",
+ "infoContent2": "為確保最高安全性,建議您在命名位置原則中提供 Azure AD 與資源提供者都可以看到的所有 IP,並開啟「嚴格位置強制」模式。",
+ "label": "嚴格施行位置",
+ "title": "其他施行模式"
+ },
+ "bladeTitle": "持續性存取評估",
+ "description": "當使用者的存取權移除,或用戶端 IP 位址變更時,持續性存取評估會近即時地自動禁止存取資源與應用程式。",
+ "migrateLabel": "移轉",
+ "migrationError": "因為發生下列錯誤,移轉失敗: {0}",
+ "migrationInfo": "CAE 設定已移動至條件式存取 UX 下,請使用上方的 [遷移] 按鈕進行遷移,並在以後使用條件式存取原則進行設定。按一下這裡可深入了解。",
+ "noLicenseMessage": "使用 Azure AD Premium 管理智慧型工作階段管理設定",
+ "optionsPickerTitle": "啟用/停用持續性存取評估",
+ "upsellInfo": "您不再能變更此頁面上的設定,而且應該捨棄這裡的任何設定。將會遵守您先前的設定。您未來可以在 [條件式存取] 下設定 CAE 設定。按一下這裡以深入了解。"
+ },
+ "SelectOrganizations": {
+ "Blade": {
+ "Lower": {
+ "gridAria": "已選取的組織清單"
+ },
+ "Upper": {
+ "gridAria": "可用的組織清單"
+ },
+ "description": "輸入其中一個網域名稱來新增 Azure AD 組織。",
+ "notFoundResult": "找不到",
+ "searchBoxPlaceholder": "租用戶識別碼或網域名稱",
+ "subTitle": "Azure AD 組織"
+ },
+ "Selector": {
+ "AdditionalDetails": {
+ "aria": "組織識別碼: {0}"
+ },
+ "DisplayText": {
+ "multiple": "已選取 {0} 個 Azure AD 組織",
+ "single": "已選取 1 個 Azure AD 組織"
+ },
+ "gridAria": "已選取的組織清單"
+ }
+ },
+ "SessionLifetime": {
+ "PersistentBrowser": {
+ "Error": {
+ "notAllApps": "持續性瀏覽器工作階段原則只會在已選取 [所有雲端應用程式] 時正常運作。請更新您的雲端應用程式選取項目。"
+ },
+ "Option": {
+ "always": "一律持續",
+ "help": "持續性瀏覽器工作階段可讓使用者在關閉並重新開啟瀏覽器視窗後,仍保持登入。
\n\n- 這項設定會在已選取 [所有雲端應用程式] 時正常運作
\n- 這不會影響權杖存留期或登入頻率設定。
\n- 這會覆寫 [公司商標] 中的 [顯示保持登入的選項] 原則。
\n- [永不持續] 會覆寫任何從同盟驗證服務傳入的持續 SSO 宣告。
\n- [永不持續] 會防止在行動裝置上的應用程式之間及使用者的行動瀏覽器上進行 SSO。
\n",
+ "label": "持續性瀏覽器工作階段",
+ "never": "永不持續"
+ },
+ "Warning": {
+ "allApps": "持續性瀏覽器工作階段只會在已選取 [所有雲端應用程式] 時正常運作。請變更您的雲端應用程式選取項目。若要深入了解,請按一下這裡。"
+ }
+ },
+ "SignInFrequency": {
+ "Aria": {
+ "units": "小時或天",
+ "value": "頻率"
+ },
+ "Option": {
+ "Day": {
+ "plural": "{0} 天",
+ "singular": "1 天"
+ },
+ "Hour": {
+ "plural": "{0} 小時",
+ "singular": "1 小時"
+ },
+ "daysOption": "天",
+ "everytime": "每次",
+ "help": "經過這段時間後,在使用者嘗試存取資源時要求再次登入。預設設定是一段連續 90 天的時間,也就是說,若使用者在電腦上有 90 天以上的時間處於非使用中狀態,系統會在他們之後初次嘗試存取資源時要求重新驗證。",
+ "hoursOption": "小時",
+ "label": "登入頻率",
+ "placeholder": "選取單位"
+ }
+ },
+ "mainOption": "修改工作階段存留期",
+ "mainOptionHelp": "設定使用者收到提示的頻率,及瀏覽器工作階段是否會持續。不支援新式驗證通訊協定的應用程式可能無法遵循這些原則。若遇到這種情況,請連絡應用程式開發人員。"
+ },
+ "SigninRisk": {
+ "LearnMore": {
+ "message": "針對特定登入風險層級,控制使用者的存取權。"
+ }
+ },
+ "SingleSelectorActive": {
+ "failed": "無法載入此資料。",
+ "reattempt": "正在載入資料。重試 {0}/{1}。"
+ },
+ "TimeCondition": {
+ "Errors": {
+ "both": "「包括」或「排除」時間範圍無效。",
+ "daysOfWeek": "{0}請務必指定至少一天的星期幾。",
+ "endBeforeStart": "{0}請確定開始日期/時間早於結束日期/時間。",
+ "exclude": "「排除」時間範圍無效。",
+ "generic": "{0}請確保星期幾和時區都已設定。如果未選取 [全天],則必須設定開始時間和結束時間。",
+ "include": "「包括」時間範圍無效。",
+ "timeMissing": "{0}請務必指定開始時間和結束時間。",
+ "timeZone": "{0}請務必指定時區。",
+ "timesAndZone": "{0}請務必設定開始時間、結束時間及時區。"
+ }
+ },
+ "UserActions": {
+ "Included": {
+ "none": "未選取任何雲端應用程式或動作",
+ "plural": "包含 {0} 個使用者動作",
+ "singular": "包含 1 個使用者動作"
+ },
+ "accessRequirement1": "層級 1",
+ "accessRequirement2": "層級 2",
+ "accessRequirement3": "層級 3",
+ "accessRequirementsLabel": "正在存取受保護的應用程式資料",
+ "appsActionsAuthTitle": "雲端應用程式、動作或驗證內容",
+ "appsOrActionsSelectorInfoBallonText": "已存取的應用程式或使用者動作",
+ "appsOrActionsTitle": "雲端應用程式或動作",
+ "label": "使用者動作",
+ "mainOptionsLabel": "選取此原則的套用對象",
+ "registerOrJoinDevices": "註冊或加入裝置",
+ "registerSecurityInfo": "登錄安全性資訊",
+ "selectionInfo": "選取要套用此原則的動作",
+ "whatIf": "包含使用者動作"
+ },
+ "UserSelectionBlade": {
+ "DirectoryRoles": {
+ "ariaLabel": "選擇目錄角色"
+ },
+ "Excluded": {
+ "gridAria": "已排除使用者的清單"
+ },
+ "Included": {
+ "gridAria": "已包含使用者的清單"
+ },
+ "Validation": {
+ "customRoleIncluded": "「目錄角色」包含至少一個自訂角色",
+ "customRoleSelected": "已選取至少一個自訂角色",
+ "failed": "必須設定 \"{0}\"",
+ "roles": "至少選取一個角色",
+ "usersGroups": "至少選取一個使用者或群組"
+ },
+ "learnMore": "根據原則的適用者來控制存取權,例如使用者和群組、工作負載身分、目錄角色或外部來賓。"
+ },
+ "ValidationResult": {
+ "blockEveryonePolicy": "無法設定原則。請檢閱指派與控制項。",
+ "invalidApplicationCondition": "選取的雲端應用程式無效",
+ "invalidClientTypesCondition": "選取的用戶端應用程式無效",
+ "invalidConditions": "未選取指派",
+ "invalidControls": "選取的控制項無效",
+ "invalidDevicePlatformsCondition": "選取的裝置平台無效",
+ "invalidDevicesCondition": "裝置设定無效。可能是「{0}」設定無效。",
+ "invalidGrantControlPolicy": "授與控制項無效",
+ "invalidLocationsCondition": "選取的位置無效",
+ "invalidPolicy": "未選取指派",
+ "invalidSessionControlPolicy": "工作階段控制項無效",
+ "invalidSignInRisksCondition": "選取的登入風險無效",
+ "invalidUserRisksCondition": "選取的使用者風險無效",
+ "invalidUsersCondition": "選取的使用者無效",
+ "mamPolicyShouldOnlyTargetAndroidOrIosPlatforms": "MAM 原則只能套用到 Android 或 iOS 用戶端平台。",
+ "notSupportedCombination": "不支援原則設定。深入了解支援的原則。",
+ "pending": "正在驗證原則",
+ "requireComplianceEveryonePolicy": "原則設定會要求所有使用者都具備裝置合規性。檢閱選取的指派。",
+ "success": "原則有效"
+ },
+ "VpnCert": {
+ "Grid": {
+ "aria": "VPN 憑證清單"
+ }
+ },
+ "WarningsInfo": {
+ "Controls": {
+ "compliantDeviceEnabled": "請勿將自己鎖於之外而無法使用! 請確定您的裝置符合規範。",
+ "domainJoinedDeviceEnabled": "請勿將自己鎖於之外而無法使用! 請確定您已使用混合式 Azure AD 而聯結的裝置。",
+ "exchangeDisabled": "Exchange ActiveSync 僅支援 [符合規範的裝置] 和 [已核准的用戶端應用程式] 控制項。按一下以深入了解。",
+ "exchangeDisabled2": "Exchange ActiveSync 僅支援「符合規範的裝置」、「已核准的用戶端應用程式」以及「符合規範的用戶端應用程」控制項。按一下可深入了解。",
+ "notAvailableForSP": "由於在原則指派中選取了 ‘{0}’,因此某些控制項無法使用",
+ "requireAuthOrMfa": "'{0}' 無法搭配 '{1}' 使用",
+ "requireMfa": "請考慮測試新「{0}」公開預覽",
+ "requirePasswordChangeEnabled": "當原則指派給「所有雲端應用程式」時,才可使用 [需要密碼變更]"
+ },
+ "Policies": {
+ "Linux": {
+ "devicePlatformsReportOnlyPolicy": "需要合規裝置的僅限報表模式中之原則,會在 macOS、iOS、Android 和 Linux 上提示使用者選取裝置憑證。",
+ "excludeDevicePlatforms": "在此原則中排除裝置平台 macOS、iOS、Android 和 Linux。",
+ "proceedAnywayDevicePlatforms": "繼續進行選取的設定。檢查裝置是否合規時,macOS、iOS、Android 和 Linux 上的使用者會收到提示。"
+ },
+ "blockCurrentUserPolicy": "請勿將自己鎖於之外而無法使用! 建議您先將原則套用至少量的使用者,確認其行為符合預期。同時也建議至少將一位系統管理員排除在此原則之外。如此可確保需要進行變時,您仍能存取及更新原則。請檢閱受影響的使用者與應用程式。",
+ "devicePlatformsReportOnlyPolicy": "需要合規裝置的僅限報表模式中之原則,會在 macOS、iOS 及 Android 上提示使用者選取裝置憑證。",
+ "excludeCurrentUserSelection": "將目前的使用者 {0} 排除在此原則之外。",
+ "excludeDevicePlatforms": "在此原則中排除裝置平台 macOS、iOS 及 Android。",
+ "proceedAnywayDevicePlatforms": "繼續進行選取的設定。檢查裝置是否合規時,macOS、iOS 及 Android 上的使用者會收到提示。",
+ "proceedAnywaySelection": "我了解我的帳戶將會受到這項原則的影響,仍要繼續。"
+ },
+ "ServicePrincipals": {
+ "blockExchange": "選取 Office 365 Exchange Online 也會影響像是 OneDrive 與 Teams 等應用程式。",
+ "blockPortal": "請勿將自己鎖於之外而無法使用! 此原則會影響 Azure 入口網站。繼續之前,請先確認您或其他人可以回到入口網站。",
+ "blockPortalWithSession": "別限制自己的行動! 此原則會影響 Azure 入口網站。在您繼續前,請先確保您或其他人可回到入口網站。
若您要設定僅會在選取 [所有雲端應用程式] 時正常運作的持續性瀏覽器工作階段原則,請略過此警告。",
+ "blockSharePoint": "選取 SharePoint Online 也會影響 Microsoft Teams、Planner、Delve、MyAnalytics 和 Newsfeed 等應用程式。",
+ "blockSkype": "選取商務用 Skype 網頁版也會影響 Microsoft Teams。",
+ "includeOrExclude": "您可以設定 ‘{0}’ 或 ‘{1}’ 的應用程式篩選,但不能同時設定兩者。",
+ "selectAppsNAForSP": "因為在原則指派中選取了 [{0}],所以無法選取個別的雲端應用程式",
+ "teamsBlocked": "當 SharePoint Online 和 Exchange Online 等應用程式包含在原則中時,Microsoft Teams 也會受到影響。"
+ },
+ "Users": {
+ "blockAllUsers": "別將自己鎖在外面! 此原則會影響您的所有使用者。建議您先對一小部分使用者套用原則,以確認其行為符合預期。"
+ }
+ },
+ "WhatIf": {
+ "Device": {
+ "AttributesGrid": {
+ "aria": "登入期間所採用裝置上的屬性清單。",
+ "infoBalloon": "登入期間所採用裝置上的屬性清單。"
+ }
+ }
+ },
+ "advancedTabText": "進階",
+ "allCloudAppsErrorBox": "選取 [需要密碼變更] 授與時,必須選取 [所有雲端應用程式]",
+ "allCloudAppsReauth": "選取 [每次登入頻率] 工作階段控制項及 [登入風險] 條件時,必須選取 [所有雲端應用程式]",
+ "allCloudOrSpecificApps": "「每次登入頻率」工作階段控制項需要選取「所有雲端應用程式」或特別支援的應用程式",
+ "allDayCheckboxLabel": "全天",
+ "allDevicePlatforms": "任何裝置",
+ "allGuestUserInfoContent": "包括 Azure AD B2B 來賓,但不包括 SharePoint B2B 來賓",
+ "allGuestUserLabel": "所有來賓與外部使用者",
+ "allRiskLevelsOption": "所有風險等級",
+ "allTrustedLocationLabel": "所有信任的位置",
+ "allUserGroupSetSelectorLabel": "選取的所有使用者與群組",
+ "allUsersReauth": "必須選取 「所有使用者」的「每次登入頻率」工作階段控制項",
+ "allUsersString": "所有使用者",
+ "and": "{0} 與 {1}",
+ "andWithGrouping": "({0}) 與 {1} ",
+ "androidDisplayName": "Android",
+ "anyCloudAppSelection": "任何雲端應用程式",
+ "appContextOptionInfoContent": "要求的驗證標籤",
+ "appContextOptionLabel": "要求的驗證標籤 (預覽)",
+ "appContextUriPlaceholder": "範例: uri:contoso.com:level3",
+ "appEnforceInfoBubble": "應用程式強制限制可能需要在雲端應用程式內具有額外的管理員設定。該類限制只為對新的工作階段產生效用。",
+ "appNotSetSeletorLabel": "已選取 0 個雲端應用程式",
+ "applyConditionClientAppInfoBalloonContent": "設定用戶端應用程式,將原則套用至特定用戶端應用程式",
+ "applyConditionDevicePlatformInfoBalloonContent": "設定裝置平台,將原則套用至特定平台",
+ "applyConditionDeviceStateInfoBalloonContent": "設定裝置狀態以將原則套用至特定裝置狀態",
+ "applyConditionLocationInfoBalloonContent": "設定位置,將原則套用至受信任/不受信任的位置",
+ "applyConditionSigninRiskInfoBalloonContent": "設定登入風險,將原則套用至選取的風險層級",
+ "applyConditionUserRiskInfoBalloonContent": "設定使用者風險,將原則套用至選取的風險層級",
+ "applyConditonLabel": "設定",
+ "ariaLabelPolicyDisabled": "原則已停用",
+ "ariaLabelPolicyEnabled": "已啟用原則",
+ "ariaLabelPolicyReportOnly": "原則處於僅限報表模式",
+ "blockAccess": "封鎖存取",
+ "builtInDirectoryRoleLabel": "內建目錄角色",
+ "casCustomControlInfo": "必須在 Cloud App Security 入口網站中設定自訂原則。這個控制項會立即對所有精選應用程式生效,且能針對任何應用程式自行導入。按一下這裡即可深入了解這兩種情形。",
+ "casInfoBubble": "此控制項適用於多種雲端應用程式。",
+ "casPreconfiguredControlInfo": "這個控制項會立即對所有精選應用程式生效,且能針對任何應用程式自行導入。按一下這裡即可深入了解這兩種情形。",
+ "cert64DownloadCol": "下載 base64 憑證",
+ "cert64Name": "VpnBase64Cert",
+ "certDownloadCol": "下載憑證",
+ "certDurationCol": "到期日",
+ "certDurationStartCol": "有效期限自",
+ "certName": "VpnCert",
+ "certainApps": "如果未選取 [需要多重要素驗證] 和 [需要密碼變更] 授與,則 「每次登入頻率」僅支援特定應用程式",
+ "chooseApplicationsBladeSubtitle": "",
+ "chooseApplicationsBladeTitle": "選擇應用程式",
+ "chooseApplicationsCartSubitle": "",
+ "chooseApplicationsCartTitle": "選擇的應用程式",
+ "chooseApplicationsEmpty": "沒有應用程式",
+ "chooseApplicationsNone": "無",
+ "chooseApplicationsNoneFound": "找不到 \"{0}\"。請嘗試其他名稱或識別碼。",
+ "chooseApplicationsPlural": "{0} 與另外 {1} 個",
+ "chooseApplicationsReAuthEverytimeInfo": "正在尋找您的應用程式? 某些應用程式無法與「需要重新驗證 – 每次」工作階段控制一起使用",
+ "chooseApplicationsRemove": "移除",
+ "chooseApplicationsReturnedPlural": "找到 {0} 個應用程式",
+ "chooseApplicationsReturnedSingular": "找到 1 個應用程式",
+ "chooseApplicationsSearchBalloon": "輸入應用程式名稱或識別碼,搜尋應用程式。",
+ "chooseApplicationsSearchHint": "搜尋應用程式...",
+ "chooseApplicationsSearchLabel": "應用程式",
+ "chooseApplicationsSearching": "搜尋中...",
+ "chooseApplicationsSelect": "選取",
+ "chooseApplicationsSelected": "已選取",
+ "chooseApplicationsSingular": "{0} 與另外 1 個",
+ "chooseApplicationsTooMany": "結果超過可顯示的數量。請使用搜尋方塊篩選。",
+ "chooseLocationCorpnetItem": "公司網路",
+ "chooseLocationSelectedLocationsLabel": "選取的位置",
+ "chooseLocationTrustedIpsItem": "MFA 信任的 IP",
+ "chooseLocationsBladeSubtitle": "",
+ "chooseLocationsBladeTitle": "選擇位置",
+ "chooseLocationsCartSubitle": "",
+ "chooseLocationsCartTitle": "選擇的位置",
+ "chooseLocationsEmpty": "沒有位置",
+ "chooseLocationsExcludedSelectorTitle": "選取",
+ "chooseLocationsIncludedSelectorTitle": "選取",
+ "chooseLocationsNone": "無",
+ "chooseLocationsNoneFound": "找不到 \"{0}\"。請嘗試其他名稱或識別碼。",
+ "chooseLocationsPlural": "{0} 與另外 {1} 個",
+ "chooseLocationsRemove": "移除",
+ "chooseLocationsReturnedPlural": "找到 {0} 個位置",
+ "chooseLocationsReturnedSingular": "找到 1 個位置",
+ "chooseLocationsSearchBalloon": "輸入其名稱以搜尋位置。",
+ "chooseLocationsSearchHint": "搜尋位置...",
+ "chooseLocationsSearchLabel": "位置",
+ "chooseLocationsSearching": "搜尋中...",
+ "chooseLocationsSelect": "選取",
+ "chooseLocationsSelected": "已選取",
+ "chooseLocationsSelectionBladeExcludedSelectorTitle": "選取",
+ "chooseLocationsSelectionBladeIncludedSelectorTitle": "選取",
+ "chooseLocationsSingular": "{0} 與另外 1 個",
+ "chooseLocationsTooMany": "結果超過可顯示的數量。請使用搜尋方塊篩選。",
+ "claimProviderAddCommandText": "新增自訂控制項",
+ "claimProviderAddNewBladeTitle": "新增自訂控制項",
+ "claimProviderDeleteCommand": "刪除",
+ "claimProviderDeleteDescription": "確定要刪除 '{0}' 嗎? 此動作無法復原。",
+ "claimProviderDeleteTitle": "確定嗎?",
+ "claimProviderEditInfoText": "為宣告提供者所指定的自訂控制輸入 JSON。",
+ "claimProviderNotificationCreateDescription": "正在建立名為 '{0}' 的自訂控制項",
+ "claimProviderNotificationCreateFailedDescription": "建立自訂控制項 '{0}' 失敗。請稍後再試一次。",
+ "claimProviderNotificationCreateFailedTitle": "無法建立自訂控制項",
+ "claimProviderNotificationCreateSuccessDescription": "已建立名為 '{0}' 的自訂控制項",
+ "claimProviderNotificationCreateSuccessTitle": "已建立 '{0}'",
+ "claimProviderNotificationCreateTitle": "正在建立 '{0}'",
+ "claimProviderNotificationDeleteDescription": "正在刪除名為 '{0}' 的自訂控制項",
+ "claimProviderNotificationDeleteFailedDescription": "刪除自訂控制項 '{0}' 失敗。請稍後再試一次。",
+ "claimProviderNotificationDeleteFailedTitle": "無法刪除自訂控制項",
+ "claimProviderNotificationDeleteSuccessDescription": "已刪除名為 '{0}' 的自訂控制項",
+ "claimProviderNotificationDeleteSuccessTitle": "已刪除 '{0}'",
+ "claimProviderNotificationDeleteTitle": "正在刪除 '{0}'",
+ "claimProviderNotificationUpdateDescription": "正在更新名為 '{0}' 的自訂控制項",
+ "claimProviderNotificationUpdateFailedDescription": "更新自訂控制項 '{0}' 失敗。請稍後再試一次。",
+ "claimProviderNotificationUpdateFailedTitle": "無法更新自訂控制項",
+ "claimProviderNotificationUpdateSuccessDescription": "已更新名為 '{0}' 的自訂控制項",
+ "claimProviderNotificationUpdateSuccessTitle": "已更新 '{0}'",
+ "claimProviderNotificationUpdateTitle": "正在更新 '{0}'",
+ "claimProviderValidationAppIdInvalid": "\"AppId\" 值無效。請檢閱後再試一次。",
+ "claimProviderValidationClientIdMissing": "資料遺漏了 \"ClientId\" 值。請檢閱後再試一次。",
+ "claimProviderValidationControlClaimsRequestedMissing": "\"Control\" 項目遺漏了 \"ClaimsRequested\" 值。請檢閱後再試一次。",
+ "claimProviderValidationControlClaimsRequestedTypeMissing": "\"ClaimsRequested\" 項目遺漏了 \"Type\" 值。請檢閱後再試一次。",
+ "claimProviderValidationControlIdAlreadyExists": "\"Control\" \"Id\" 值已存在。請檢閱後再試一次。",
+ "claimProviderValidationControlIdMissing": "\"Control\" 項目遺漏了 \"Id\" 值。請檢閱後再試一次。",
+ "claimProviderValidationControlIdReferencedInExistingPolicy": "因為在現有原則中參考了 \"Control\" \"Id\" 值,所以無法將其移除。請先將它從原則中移除。",
+ "claimProviderValidationControlIdTooManyControls": "\"Control\" 屬性有過多控制項。請檢閱後再試一次。",
+ "claimProviderValidationControlIdValueReserved": "\"Control\" \"Id\" 值是保留關鍵字,請使用不同的識別碼。",
+ "claimProviderValidationControlNameAlreadyExists": "\"Control\" \"Name\" 值已存在。請檢閱後再試一次。",
+ "claimProviderValidationControlNameMissing": "\"Control\" 項目遺漏了 \"Name\" 值。請檢閱後再試一次。",
+ "claimProviderValidationControlsMissing": "資料遺漏了 \"Controls\" 值。請檢閱後再試一次。",
+ "claimProviderValidationDiscoveryUrlMissing": "資料遺漏了 \"DiscoveryUrl\" 值。請檢閱後再試一次。",
+ "claimProviderValidationInvalid": "提供的資料無效。請檢閱後再試一次。",
+ "claimProviderValidationInvalidJsonDefinition": "無法儲存自訂控制項。請檢閱 JSON 文字後再試一次。",
+ "claimProviderValidationNameAlreadyExists": "\"Name\" 值已存在。請檢閱後再試一次。",
+ "claimProviderValidationNameMissing": "資料遺漏了 \"Name\" 值。請檢閱後再試一次。",
+ "claimProviderValidationUnknown": "驗證提供的資料時,發生未知的錯誤。請檢閱後再試一次。",
+ "claimProvidersNone": "沒有任何自訂控制項",
+ "claimProvidersSearchPlaceholder": "搜尋控制項。",
+ "classicPoilcyFilterTitle": "顯示",
+ "classicPolicyAllPlatforms": "所有平台",
+ "classicPolicyClientAppBrowserAndNative": "瀏覽器、行動裝置應用程式與電腦用戶端",
+ "classicPolicyCloudAppTitle": "雲端應用程式",
+ "classicPolicyControlAllow": "允許",
+ "classicPolicyControlBlock": "封鎖",
+ "classicPolicyControlBlockWhenNotAtWork": "不工作時封鎖存取",
+ "classicPolicyControlRequireCompliantDevice": "需要符合規範裝置",
+ "classicPolicyControlRequireDomainJoinedDevice": "要求已加入網域的裝置",
+ "classicPolicyControlRequireMfa": "需要多重要素驗證",
+ "classicPolicyControlRequireMfaWhenNotAtWork": "不在工作時需要多重要素驗證",
+ "classicPolicyDeleteCommand": "刪除",
+ "classicPolicyDeleteFailTitle": "無法刪除傳統原則",
+ "classicPolicyDeleteInProgressTitle": "正在刪除傳統原則",
+ "classicPolicyDeleteSuccessTitle": "已刪除傳統原則",
+ "classicPolicyDetailBladeTitle": "詳細資料",
+ "classicPolicyDisableCommand": "停用",
+ "classicPolicyDisableConfirmation": "確定要停用 '{0}' 嗎? 此動作無法復原。",
+ "classicPolicyDisableFailDescription": "無法停用 '{0}'",
+ "classicPolicyDisableFailTitle": "無法停用傳統原則",
+ "classicPolicyDisableInProgressDescription": "正在停用 '{0}'",
+ "classicPolicyDisableInProgressTitle": "正在停用傳統原則",
+ "classicPolicyDisableSuccessDescription": "已成功停用 '{0}'",
+ "classicPolicyDisableSuccessTitle": "已停用傳統原則",
+ "classicPolicyEasSupportedPlatforms": "Exchange ActiveSync 支援的平台",
+ "classicPolicyEasUnsupportedPlatforms": "Exchange ActiveSync 不支援的平台",
+ "classicPolicyExcludedPlatformsTitle": "排除的裝置平台",
+ "classicPolicyFilterAll": "所有原則",
+ "classicPolicyFilterDisabled": "已停用的原則",
+ "classicPolicyFilterEnabled": "已啟用的原則",
+ "classicPolicyIncludeExcludeMembersDescription": "您可以藉著排除群組,執行階段性的原則移轉。",
+ "classicPolicyIncludeExcludeMembersTitle": "包含/排除群組",
+ "classicPolicyIncludedPlatformsTitle": "包含的裝置平台",
+ "classicPolicyManualMigrationMessage": "此原則必須手動移轉。",
+ "classicPolicyMigrateCommand": "移轉",
+ "classicPolicyMigrateConfirmation": "確定要移轉 '{0}' 嗎? 此原則只能移轉一次。",
+ "classicPolicyMigrateFailDescription": "無法移轉 '{0}'",
+ "classicPolicyMigrateFailTitle": "無法移轉傳統原則",
+ "classicPolicyMigrateInProgressDescription": "正在移轉 '{0}'",
+ "classicPolicyMigrateInProgressTitle": "正在移轉傳統原則",
+ "classicPolicyMigrateRecommendText": "建議: 移轉到新的 Azure 入口網站原則。",
+ "classicPolicyMigrateSuccessTitle": "已成功移轉傳統原則",
+ "classicPolicyMigratedSuccessDescription": "現在可以在 [原則] 下管理這個傳統原則。",
+ "classicPolicyMigratedSuccessDescriptionMultiple": "這個傳統原則已移轉為 {0} 個新原則。新原則可以在 [原則] 下進行管理。",
+ "classicPolicyNoEditPermissionMsg": "您沒有編輯此原則的權限。只有全域管理員及安全性系統管理員可以編輯此原則。如需詳細資訊,請按一下這裡。",
+ "classicPolicySaveFailDescription": "無法儲存 '{0}'",
+ "classicPolicySaveFailTitle": "無法儲存傳統原則",
+ "classicPolicySaveInProgressDescription": "正在儲存 '{0}'",
+ "classicPolicySaveInProgressTitle": "正在儲存傳統原則",
+ "classicPolicySaveSuccessDescription": "已成功儲存 '{0}'",
+ "classicPolicySaveSuccessTitle": "已儲存傳統原則",
+ "clientAppBladeLegacyInfoBanner": "目前不支援舊版驗證",
+ "clientAppBladeLegacyUpsellBanner": "封鎖不支援的用戶端應用程式 (預覽)",
+ "clientAppBladeTitle": "用戶端應用程式",
+ "clientAppDescription": "選取將套用此原則的用戶端應用程式",
+ "clientAppExchangeActiveSync": "Exchange ActiveSync",
+ "clientAppExchangeDisabledInfo": "Exchange ActiveSync 可在 Exchange Online 為唯一選取的雲端應用程式時使用。按一下以深入了解",
+ "clientAppExchangeWarning": "Exchange ActiveSync 目前不支援所有其他條件",
+ "clientAppLearnMore": "控制使用者對未使用新式驗證之特定用戶端應用程式的存取。",
+ "clientAppLegacyHeader": "舊版驗證用戶端",
+ "clientAppMobileDesktop": "行動裝置 App 及桌面用戶端",
+ "clientAppModernHeader": "新式驗證用戶端",
+ "clientAppOnlySupportedPlatforms": "僅將原則套用至支援的平台",
+ "clientAppSelectSpecificClientApps": "選取用戶端應用程式",
+ "clientAppV2BladeTitle": "用戶端應用程式 (預覽)",
+ "clientAppWebBrowser": "瀏覽器",
+ "clientAppsSelectedLabel": "已包含 {0} 個",
+ "clientTypeBrowser": "瀏覽器",
+ "clientTypeEas": "Exchange ActiveSync 用戶端",
+ "clientTypeEasInfo": "Exchange ActiveSync 用戶端 (只使用舊版驗證)。",
+ "clientTypeModernAuth": "新式驗證用戶端",
+ "clientTypeOtherClients": "其他用戶端",
+ "clientTypeOtherClientsInfo": "這包括舊版 Office 用戶端及其他郵件通訊協定 (POP、IMAP、SMTP 等)。[深入了解][1]\n[1]: https://aka.ms/caclientapps\n",
+ "cloudAppCountDiffBannerText": "此原則中設定的 {0} 個雲端應用程式已從目錄中刪除,但這不會影響原則中的其他應用程式。當您下次更新原則的應用程式區段時,刪除的應用程式就會自動從中移除。",
+ "cloudAppsSelectionBladeAllMicrosoftApps": "所有 Microsoft 應用程式",
+ "cloudAppsSelectionExcludeAllMicrosoftClients": "允許 Microsoft 雲端、桌面和行動應用程式 (預覽)",
+ "cloudappsSelectionBladeAllCloudapps": "所有雲端應用程式",
+ "cloudappsSelectionBladeExcludeDescription": "選取要從原則豁免的雲端應用程式",
+ "cloudappsSelectionBladeExcludedSelectorTitle": "選取排除的雲端應用程式",
+ "cloudappsSelectionBladeIncludeDescription": "選取將套用這項原則的雲端應用程式",
+ "cloudappsSelectionBladeIncludedSelectorTitle": "選取",
+ "cloudappsSelectionBladeSelectedCloudapps": "選取應用程式",
+ "cloudappsSelectorInfoBallonText": "使用者要加以存取以執行作業的服務。例如 'Salesforce'",
+ "cloudappsSelectorPluralExcluded": "已排除 {0} 個應用程式",
+ "cloudappsSelectorPluralIncluded": "已包含 {0} 個應用程式",
+ "cloudappsSelectorSingularExcluded": "已排除 1 個應用程式",
+ "cloudappsSelectorSingularIncluded": "已包含 1 個應用程式",
+ "cloudappsSelectorUserPlural": "{0} 個應用程式",
+ "cloudappsSelectorUserSingular": "1 個應用程式",
+ "conditionLabelMulti": "已選取 {0} 個條件",
+ "conditionLabelOne": "已選取 1 個條件",
+ "conditionalAccessBladeTitle": "條件式存取",
+ "conditionsNotSelectedLabel": "未設定",
+ "conditionsReqMfaReauthSet": "某些選項無法使用,因為目前正在選取 [需要多重要素驗證] 授與及 [每次登入頻率] 工作階段控制",
+ "conditionsReqPwSet": "因為目前已選取 [需要密碼變更],所以有些選項無法使用",
+ "configureCasText": "設定 Cloud App Security",
+ "configureCustomControlsText": "設定自訂原則",
+ "controlLabelMulti": "已選取 {0} 個控制項",
+ "controlLabelOne": "已選取 1 個控制項",
+ "controlValidatorText": "請選取至少一個控制項",
+ "controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
+ "controlsDeviceComplianceAriaLabel": "深入了解相容裝置的要求。",
+ "controlsDeviceComplianceInfoBubble": "裝置必須符合 Intune 規範。如果裝置不符合規範,則會提示使用者使裝置符合規範。",
+ "controlsDomainJoinedAriaLabel": "深入了解已使用混合式 Azure AD 而聯結的裝置的要求。",
+ "controlsDomainJoinedInfoBubble": "必須為已使用混合式 Azure AD 而聯結的裝置。",
+ "controlsMamAriaLabel": "深入了解核准用戶端應用程式的要求。",
+ "controlsMamInfoBubble": "裝置必須使用這些經過核准的用戶端應用程式。",
+ "controlsMfaInfoBubble": "使用者必須完成通話和簡訊等其他安全性需求",
+ "controlsOrAndInfoBubble": "ControlsOrAndInfoBubble",
+ "controlsRequireCompliantAppAriaLabel": "深入了解受原則保護的應用程式的要求。",
+ "controlsRequireCompliantAppInfoBubble": "裝置必須使用受原則保護的應用程式。",
+ "controlsRequirePasswordResetAriaLabel": "深入了解變更密碼的要求。",
+ "controlsRequirePasswordResetInfoBubble": "需要變更密碼才可降低使用者風險。此選項也需要多重要素驗證。無法使用其他控制項。",
+ "countriesRadiobuttonInfoBalloonContent": "登入所來自的國家/地區取決於使用者 IP 位址。",
+ "createNewVpnCert": "新憑證",
+ "createdTimeLabel": "建立時間",
+ "customRoleLabel": "自訂角色 (不支援)",
+ "dateRangeTypeLabel": "日期範圍",
+ "daysOfWeekPlaceholderText": "篩選星期幾",
+ "daysOfWeekTypeLabel": "星期幾",
+ "deletePolicyNoLicenseText": "您可立即刪除此原則。刪除後,在您擁有必要授權前,都無法重新建立該原則。",
+ "descriptionContentForControlsAndOr": "針對多個控制項",
+ "devicePlatform": "裝置平台",
+ "devicePlatformConditionHelpDescription": "將原則套用至選取的裝置平台。\n[深入了解][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2044750",
+ "devicePlatformInclude": "已包含 {0} 個",
+ "devicePlatformIncludeExclude": "已排除 {0} 與 {1}",
+ "devicePlatformNoSelectionError": "選取裝置平台必須選取一個子項目。",
+ "devicePlatformsNone": "無",
+ "deviceSelectionBladeExcludeDescription": "選取要從原則豁免的平台",
+ "deviceSelectionBladeIncludeDescription": "選取要包含在這項原則的雲端應用程式",
+ "deviceStateAll": "所有裝置狀態",
+ "deviceStateCompliant": "標示為符合規範的裝置",
+ "deviceStateCompliantInfoContent": "此原則的評估會排除符合 Intune 規範的裝置,因此,假如原則封鎖了存取權,系統即會封鎖所有裝置,但符合 Intune 規範的裝置除外。",
+ "deviceStateConditionConfigureInfoContent": "依裝置狀態設定原則",
+ "deviceStateConditionSelectorInfoContent": "使用者用來登入的裝置是否為「已使用混合式 Azure AD 而聯結的」或「標示為合規」。\n 這已被淘汰。請改用 '{1}'。",
+ "deviceStateConditionSelectorLabel": "裝置狀態 (已棄用)",
+ "deviceStateDomainJoined": "已使用混合式 Azure AD 而聯結的裝置",
+ "deviceStateDomainJoinedInfoContent": "此原則的評估會排除已使用混合式 Azure AD 而聯結的裝置,因此,假如原則封鎖了存取權,系統即會封鎖所有裝置,但已使用混合式 Azure AD 而聯結的裝置除外。",
+ "deviceStateDomainJoinedInfoLinkText": "深入了解。",
+ "deviceStateExcludeDescription": "選取用以將裝置排除在原則之外的裝置狀態。",
+ "deviceStateIncludeAndExcludeOneLabel": "{0} 及排除 {1}",
+ "deviceStateIncludeAndExcludeTwoLabel": "{0} 及排除 {1} 與 {2}",
+ "directoryRoleInfoContent": "對內建目錄角色指派原則。",
+ "directoryRolesLabel": "目錄角色",
+ "discardbutton": "捨棄",
+ "downloadDefaultFileName": "IP 範圍",
+ "downloadExampleFileName": "範例",
+ "downloadExampleHeader": "此範例檔案內含可接受之資料種類的示範。將略過以 # 開始的行。",
+ "endDatePickerLabel": "末端",
+ "endTimePickerLabel": "結束時間",
+ "enterCountryText": "IP 位址與國家/地區要成對評估。請選取國家/地區。",
+ "enterIpText": "IP 位址與國家/地區要成對評估。請輸入 IP 位址。",
+ "enterUserText": "未選取任何使用者。請選取一名使用者。",
+ "evaluationResult": "評估結果",
+ "exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
+ "exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync 僅搭配受支援的平台",
+ "excludeAllTrustedLocationSelectorText": "所有信任位置",
+ "featureRequiresP2": "此功能需要 Azure AD Premium 2 個授權。",
+ "friday": "星期五",
+ "grantControls": "授與控制權",
+ "gridNetworkTrusted": "信任",
+ "gridPolicyCreatedDateTime": "建立日期",
+ "gridPolicyEnabled": "已啟用",
+ "gridPolicyModifiedDateTime": "修改日期",
+ "gridPolicyName": "原則名稱",
+ "gridPolicyState": "狀態",
+ "groupSelectionBladeExcludeDescription": "選取要從原則豁免的群組",
+ "groupSelectionBladeExcludedSelectorTitle": "選取排除的群組",
+ "groupSelectionBladeSelect": "選取群組",
+ "groupSelectorInfoBallonText": "所處目錄已套用原則的群組。例如「試驗群組」",
+ "groupsSelectionBladeTitle": "群組",
+ "helpCommonScenariosText": "對常見案例感興趣嗎?",
+ "helpCondition1": "當任何使用者於公司網路外時",
+ "helpCondition2": "當「經理」群組的使用者登入時",
+ "helpConditionsTitle": "條件",
+ "helpControl1": "他們必須以多重要素驗證登入",
+ "helpControl2": "需要他們使用與 Intune 相容或已加入網域的裝置上",
+ "helpControlsTitle": "控制項",
+ "helpIntroText": "條件式存取可供您在發生特定狀況時,強制執行存取需求。讓我們看看一些範例",
+ "helpIntroTitle": "什麼是條件式存取?",
+ "helpLearnMoreText": "想要深入了解條件式存取嗎?",
+ "helpStartStep1": "按一下 [+ 新增原則] 即可建立第一項原則",
+ "helpStartStep2": "指定原則條件與控制項",
+ "helpStartStep3": "完成之後,別忘了要啟用原則並建立",
+ "helpStartTitle": "開始使用",
+ "highRisk": "高",
+ "includeAndExcludeAppsTextFormat": "包含: {0}。排除: {1}。",
+ "includeAppsTextFormat": "包含: {0}。",
+ "includeUnknownAreasCheckboxInfoBalloonContent": "未知區域是無法對應至國家/地區的 IP 位址。",
+ "includeUnknownAreasCheckboxLabel": "包含未知區域",
+ "infoCommandLabel": "資訊",
+ "invalidCertDuration": "憑證期限無效",
+ "invalidIpAddress": "值必須是有效的 IP 位址",
+ "invalidUriErrorMsg": "請輸入有效的 URI。例如 'uri:contoso.com:acr'",
+ "iosDisplayName": "iOS",
+ "linuxDisplayName": "Linux",
+ "loadAll": "載入所有",
+ "loading": "載入中...",
+ "locationConfigureNamedLocationsText": "設定所有信任的位置",
+ "locationConfigureNamedLocationsUri": "{0}/usermanagement/mfasettings.aspx?tenantid={1}&culture={2}",
+ "locationNameTooLongError": "位置名稱過長。上限為 256 個字元",
+ "locationSelectionBladeExcludeDescription": "選取要從原則豁免的位置",
+ "locationSelectionBladeIncludeDescription": "選取要包含在此原則中的位置",
+ "locationsAllLocationsLabel": "任何位置",
+ "locationsAllNamedLocationsLabel": "所有信任的 IP",
+ "locationsAllPrivateLinksLabel": "我租用戶中的所有私人連結",
+ "locationsIncludeExcludeLabel": "{0} 並排除所有信任的 IP",
+ "locationsSelectedPrivateLinksLabel": "選取的私人連結",
+ "lowRisk": "低",
+ "macOsDisplayName": "macOS",
+ "managePoliciesLicenseText": "若要管理條件式存取原則,您的組織需要 Azure AD Premium P1 或 P2。",
+ "markAsTrustedCheckboxInfoBalloonContent": "從信任位置登入可降低使用者登入風險。只有在您知道輸入的 IP 範圍已在組織中建立且可靠時,才會將此位置標示為信任。",
+ "markAsTrustedCheckboxLabel": "標示為信任位置",
+ "mediumRisk": "中",
+ "memberSelectionCommandRemove": "移除",
+ "menuItemClaimProviderControls": "自訂控制項 (預覽)",
+ "menuItemClassicPolicies": "傳統原則",
+ "menuItemInsightsAndReporting": "深入解析與報告",
+ "menuItemManage": "管理",
+ "menuItemNamedLocationsPreview": "具名位置 (預覽)",
+ "menuItemNamedNetworks": "具名位置",
+ "menuItemPolicies": "原則",
+ "menuItemTermsOfUse": "使用規定",
+ "modifiedTimeLabel": "修改時間",
+ "monday": "星期一",
+ "nameLabel": "名稱",
+ "namedLocationCountryInfoBanner": "只有 IPv4 位址對應到國家/地區。IPv6 位址包含在未知的國家/地區中。",
+ "namedLocationTypeCountry": "國家/地區",
+ "namedLocationTypeLabel": "定義位置的方式:",
+ "namedLocationUpsellBanner": "此檢視已被取代。前往改良的新「具名位置」檢視。",
+ "namedLocationsHelpDescription": "Azure AD 安全性報告與 Azure AD 條件式存取原則皆會使用具名位置,前者用此減少誤判。\n[深入了解][1]\n[1]: https://aka.ms/namedlocationupdate",
+ "namedNetworkAddIpRanges": "新增 IP 範圍 (例如: 40.77.182.32/27)",
+ "namedNetworkCountryNeeded": "您至少需要選取一個國家/地區",
+ "namedNetworkDeleteCommand": "刪除",
+ "namedNetworkDeleteDescription": "確定要刪除 '{0}' 嗎? 此動作無法復原。",
+ "namedNetworkDeleteTitle": "您確定嗎?",
+ "namedNetworkDownloadIpRange": "下載",
+ "namedNetworkInvalidRange": "值必須是有效的 IP 範圍。",
+ "namedNetworkIpRangeNeeded": "您需要至少一個有效的 IP 範圍",
+ "namedNetworkIpRangesDescriptionContent": "設定您組織的 IP 範圍",
+ "namedNetworkIpRangesTab": "IP 範圍",
+ "namedNetworkListAdd": "新增位置",
+ "namedNetworkListConfigureTrustedIps": "設定 MFA 信任的 IP",
+ "namedNetworkNameDescription": "例如: 'Redmond office'",
+ "namedNetworkNameInvalid": "提供的名稱無效。",
+ "namedNetworkNameRequired": "您必須替此位置提供名稱。",
+ "namedNetworkNoIpRanges": "沒有 IP 範圍",
+ "namedNetworkNotificationCreateDescription": "正在建立命為 '{0}' 的位置",
+ "namedNetworkNotificationCreateFailedDescription": "建立位置 '{0}' 失敗。請稍後再試一次。",
+ "namedNetworkNotificationCreateFailedTitle": "無法建立位置",
+ "namedNetworkNotificationCreateSuccessDescription": "已建立名為 '{0}' 的位置",
+ "namedNetworkNotificationCreateSuccessTitle": "已建立 '{0}'",
+ "namedNetworkNotificationCreateTitle": "正在建立 '{0}'",
+ "namedNetworkNotificationDeleteDescription": "正在刪除命為 '{0}' 的位置",
+ "namedNetworkNotificationDeleteFailedDescription": "刪除位置 '{0}' 失敗。請稍後再試一次。",
+ "namedNetworkNotificationDeleteFailedTitle": "無法刪除位置",
+ "namedNetworkNotificationDeleteSuccessDescription": "已刪除名為 '{0}' 的位置",
+ "namedNetworkNotificationDeleteSuccessTitle": "已刪除 '{0}'",
+ "namedNetworkNotificationDeleteTitle": "正在刪除 '{0}'",
+ "namedNetworkNotificationUpdateDescription": "正在更新命為 '{0}' 的位置",
+ "namedNetworkNotificationUpdateFailedDescription": "更新位置 '{0}' 失敗。請稍後再試一次。",
+ "namedNetworkNotificationUpdateFailedTitle": "無法更新位置",
+ "namedNetworkNotificationUpdateSuccessDescription": "已更新命為 '{0}' 的位置",
+ "namedNetworkNotificationUpdateSuccessTitle": "已更新 '{0}'",
+ "namedNetworkNotificationUpdateTitle": "正在更新 '{0}'",
+ "namedNetworkSearchPlaceholder": "搜尋位置。",
+ "namedNetworkUploadFailedDescription": "剖析提供的檔案時,發生錯誤。請務必上傳純文字檔,且每行都要是 CIDR 的格式。",
+ "namedNetworkUploadFailedTitle": "無法剖析 '{0}'",
+ "namedNetworkUploadInProgressDescription": "正在嘗試從 '{0}' 剖析有效的 CIDR 值。",
+ "namedNetworkUploadInProgressTitle": "正在剖析 '{0}'",
+ "namedNetworkUploadInvalidDescription": "'{0}' 可能太大或格式不正確。",
+ "namedNetworkUploadInvalidTitle": "'{0}' 無效",
+ "namedNetworkUploadIpRange": "上傳",
+ "namedNetworkUploadSuccessDescription": "已分析 {0} 行。出現 {1} 個格式錯誤。已跳過 {2} 個。",
+ "namedNetworkUploadSuccessTitle": "正在完成剖析 '{0}'",
+ "namedNetworksAdd": "新增具名位置",
+ "namedNetworksConditionHelpDescription": "根據其實際位置控制使用者存取。\n[深入了解][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
+ "namedNetworksExcludeLabel": "已排除 {0} 與 {1}",
+ "namedNetworksHelpDescription": "Azure AD 安全性報告與 Azure AD 條件式存取原則皆會使用具名位置,前者用此減少誤判。\n[深入了解][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
+ "namedNetworksIncludeLabel": "已包含 {0} 個",
+ "namedNetworksNone": "找不到任何具名位置。",
+ "namedNetworksTitle": "設定位置",
+ "namednetworkExceedingSizeErrorBladeTitle": "錯誤詳細資料",
+ "namednetworkExceedingSizeErrorDetailText": "如需詳細資料,請按一下這裡。",
+ "namednetworkExceedingSizeErrorMessage": "超出具名位置所允許的儲存體上限。請使用較短的清單再試一次。若要檢視詳細資料,請按一下這裡。",
+ "needMfaSecondary": "選取 [僅限次要驗證方法] 的 [每次登入頻率] 時,必須選取 [需要多重要素驗證]",
+ "newCertName": "新憑證",
+ "noAttributePermissionsError": "權限不足,無法建立或更新原則。需要屬性定義讀取器角色才能新增/編輯動態篩選。",
+ "noPolicyRowMessage": "無任何原則",
+ "noSPSelected": "未選取任何服務主體",
+ "noUpdatePermissionMessage": "您無權更新這些設定。請連絡您的全域管理員以取得存取權。",
+ "noUserSelected": "未選取任何使用者",
+ "noneRisk": "無風險",
+ "office365Description": "這些應用程式包含 Microsoft Flow、Microsoft Forms、Microsoft Teams、Office 365 Exchange Online、Office 365 SharePoint Online、Office 365 Yammer 等項目。",
+ "office365InfoBox": "選取的應用程式至少有一個屬於 Office 365。建議您改為設定 Office 365 應用程式上的原則。",
+ "oneUserSelected": "已選取 1 位使用者",
+ "onlyGlobalAdminsCanSaveThisPolicyConfig": "只有全域管理員能夠儲存此原則。",
+ "or": "{0} 或 {1}",
+ "pickerDoneCommand": "完成",
+ "policiesBladeAdPremiumUpsellBannerText": "利用 Azure AD Premium 建立自己的原則與目標特定條件,例如雲端應用程式、登入風險及裝置平台",
+ "policiesBladeTitle": "原則",
+ "policiesBladeTitleWithAppName": "原則: {0}",
+ "policiesDisabledBannerText": "不允許為具有連結登入屬性的應用程式建立及編輯原則。",
+ "policiesHitMaxLimitStatusBarMessage": "您已達到此租用戶的原則數上限。請先刪除部分原則再新增。",
+ "policyAssignmentsSection": "工作分派",
+ "policyBlockAllInfoBox": "設定的原則會封鎖所有使用者,所以不受支援。請檢閱指派與控制項。如果您想儲存此原則,請排除目前的使用者 {0}。",
+ "policyCloudAppsDisplayTextAllApp": "所有 App",
+ "policyCloudAppsLabel": "雲端應用程式",
+ "policyConditionClientAppDescription": "使用者正在用來存取雲端應用程式的軟體。例如「瀏覽器」",
+ "policyConditionClientAppV2Description": "使用者正在用來存取雲端應用程式的軟體。例如「瀏覽器」",
+ "policyConditionDevicePlatform": "裝置平台",
+ "policyConditionDevicePlatformDescription": "使用者的登入來源平台。例如 'iOS'",
+ "policyConditionLocation": "位置",
+ "policyConditionLocationDescription": "使用者的登入來源位置 (使用 IP 位址範圍判定)",
+ "policyConditionSigninRisk": "登入風險",
+ "policyConditionSigninRiskDescription": "登入者為其他人而非使用者的可能性。風險等級可能是高、中或低。必須要有 Azure AD Premium 2 授權。",
+ "policyConditionUserRisk": "使用者風險",
+ "policyConditionUserRiskDescription": "設定實施原則所需的使用者風險層級",
+ "policyConditioniClientApp": "用戶端應用程式",
+ "policyConditioniClientAppV2": "用戶端應用程式 (預覽)",
+ "policyControlAllowAccessDisplayedName": "授與存取權",
+ "policyControlAuthenticationStrengthDisplayedName": "需要驗證強度 (預覽)",
+ "policyControlBladeTitle": "授與",
+ "policyControlBlockAccessDisplayedName": "封鎖存取",
+ "policyControlCompliantDeviceDisplayedName": "裝置需要標記為合規",
+ "policyControlContentDescription": "控制存取強制執行以封鎖或授與存取權。",
+ "policyControlInfoBallonText": "封鎖存取,或選取如需允許存取所需滿足的其他需求",
+ "policyControlMfaChallengeDisplayedName": "需要多重要素驗證",
+ "policyControlRequireCompliantAppDisplayedName": "需要應用程式保護原則",
+ "policyControlRequireDomainJoinedDisplayedName": "需要已使用混合式 Azure AD 而聯結的裝置",
+ "policyControlRequireMamDisplayedName": "需要經過核准的用戶端應用程式",
+ "policyControlRequiredPasswordChangeDisplayedName": "需要變更密碼",
+ "policyControlSelectAuthStrength": "需要驗證強度",
+ "policyControlsNoControlsSelected": "已選取 0 個控制項",
+ "policyControlsSection": "存取控制",
+ "policyCreatBladeTitle": "新增",
+ "policyCreateButton": "建立",
+ "policyCreateFailedMessage": "錯誤: {0}",
+ "policyCreateFailedTitle": "無法建立 '{0}'",
+ "policyCreateInProgressTitle": "正在建立 '{0}'",
+ "policyCreateSuccessMessage": "已成功建立 '{0}'。若您將 [啟用原則] 設為 [開啟],原則會在幾分鐘後啟用。",
+ "policyCreateSuccessTitle": "已成功建立 '{0}'",
+ "policyDeleteConfirmation": "確定要刪除 '{0}' 嗎? 此動作無法復原。",
+ "policyDeleteFailTitle": "無法刪除 '{0}'",
+ "policyDeleteInProgressTitle": "正在刪除 '{0}'",
+ "policyDeleteSuccessTitle": "已成功刪除 '{0}'",
+ "policyEnforceLabel": "啟用原則",
+ "policyErrorCannotSetSigninRisk": "您無權使用登入風險狀況儲存原則。",
+ "policyErrorNoPermission": "您無權儲存原則。請連絡您的全域管理員。",
+ "policyErrorUnknown": "發生錯誤,請稍後再試一次。",
+ "policyFallbackWarningMessage": "無法使用 MS Graph 建立或更新 '{0}',導致 AD Graph 的後援。請調查下列案例,因為在使用不相容的條件呼叫 MS Graph 原則端點時,最可能發生 Bug。",
+ "policyFallbackWarningTitle": "已部分成功建立或更新 '{0}'",
+ "policyNameCannotBeEmpty": "原則名稱不可為空白",
+ "policyNameDevice": "裝置原則",
+ "policyNameFormat": "[{0}] {1}",
+ "policyNameMam": "行動裝置應用程式管理原則",
+ "policyNameMfaLocation": "MFA 與位置原則",
+ "policyNamePlaceholderText": "範例:「裝置合規性應用程式原則」",
+ "policyNameTooLongError": "原則名稱過長。上限為 256 個字元",
+ "policyOff": "關閉",
+ "policyOn": "開啟",
+ "policyReportOnly": "僅限報表",
+ "policyReviewSection": "檢閱",
+ "policySaveButton": "儲存",
+ "policyStatusIconDescription": "已啟用原則",
+ "policyStatusIconEnabled": "己啟用狀態圖示",
+ "policyTemplateName1": "為 {0} 瀏覽器存取使用應用程式強制的限制",
+ "policyTemplateName2": "受控的裝置上只允許 {0} 存取",
+ "policyTemplateName3": "從 [持續性存取評估] 設定中移轉的原則",
+ "policyTriggerRiskSpecific": "選取指定的風險等級",
+ "policyTriggersInfoBalloonText": "定義原則套用時機的條件。例如「位置」",
+ "policyTriggersNoConditionsSelected": "已選取 0 個條件",
+ "policyTriggersSelectorLabel": "條件",
+ "policyUpdateFailedMessage": "錯誤: {0}",
+ "policyUpdateFailedTitle": "無法更新 {0}",
+ "policyUpdateInProgressTitle": "正在更新 {0}",
+ "policyUpdateSuccessMessage": "已成功更新 {0}。若您將 [啟用原則] 設為 [開啟],原則會在幾分鐘後啟用。",
+ "policyUpdateSuccessTitle": "已成功更新 {0}",
+ "primaryCol": "主要",
+ "privateLinkLabel": "Azure AD Private Link",
+ "reportOnlyInfoBox": "報告專用模式: 原則會在登入時經過評估及記錄,但不會影響使用者。",
+ "requireAllControlsText": "需要所有選取的控制項",
+ "requireCompliantDevice": "需要符合規範裝置",
+ "requireDomainJoined": "需要已加入網域的裝置",
+ "requireGrantReauth": "選取 「所有雲端應用程式」時,「每次登入頻率」工作階段控制項需要「需要多重要素驗證」或「需要變更密碼」授予控制",
+ "requireMFA": "需要多重要素驗證",
+ "requireMfaReauth": "「每次登入頻率」工作階段控制項需要「需要多重要素驗證」,以授予「登入風險」的控制權",
+ "requireOneControlText": "需要其中一個選取的控制項",
+ "requirePasswordChangeReauth": "「每次登入頻率」工作階段控制項需要「需要變更密碼」授權控制「使用者風險」",
+ "requireRiskReauth": "選取 「所有雲端應用程式」時,「每次的登入頻率」工作階段控制項需要「使用者風險」或「登入風險」工作階段控制。",
+ "resetFilters": "重設篩選",
+ "sPRequired": "需要服務主體",
+ "sPSelectorInfoBalloon": "您要測試的使用者或服務主體",
+ "saturday": "星期六",
+ "searchTextTooLongError": "搜尋文字太長。最多 256 個字元",
+ "securityDefaultsPolicyName": "安全性預設值",
+ "securityDefaultsTextMessage": "必須停用安全性預設值,才可啟用條件式存取原則。",
+ "securityDefaultsWarningMessage": "您似乎想要管理您組織的安全性設定。真棒! 您必須先停用安全性預設值,才能啟用條件式存取原則。",
+ "selectDevicePlatforms": "選取裝置平台",
+ "selectNamedNetworksSubtitle": "",
+ "selectNamedNetworksTitle": "選取位置",
+ "selectedSP": "選取的服務主體",
+ "servicePrincipalDataGridAria": "可用服務主體的清單",
+ "servicePrincipalDropDownLabel": "此原則適用於哪些方面?",
+ "servicePrincipalInfoBox": "因為原則指派中的 '{0}' 選取範圍,導致某些條件無法使用",
+ "servicePrincipalRadioAll": "所有擁有的服務主體",
+ "servicePrincipalRadioSelect": "選取服務主體",
+ "servicePrincipalSelectionsAria": "選取的服務主體格線",
+ "servicePrincipalSelectorAria": "所選服務主體的清單",
+ "servicePrincipalSelectorMultiple": "已選取 {0} 個服務主體",
+ "servicePrincipalSelectorSingle": "已選取 1 個服務主體",
+ "servicePrincipalSpecificInc": "包含特定的服務主體",
+ "servicePrincipals": "服務主體",
+ "sessionControlBladeTitle": "工作階段",
+ "sessionControlDescriptionContent": "根據工作階段控制項控制存取,以啟用特定雲端應用程式中的有限體驗。",
+ "sessionControlDisableInfo": "此控制項只適用於支援的應用程式。目前僅 Office 365、Exchange Online 和 SharePoint Online 等雲端應用程式支援應用程式強制執行的限制。按一下這裡以深入了解。",
+ "sessionControlInfoBallonText": "工作階段控制項讓雲端應用程式內的體驗受限。",
+ "sessionControls": "工作階段控制項",
+ "sessionControlsAppEnforcedLabel": "使用應用程式強制執行限制",
+ "sessionControlsCasLabel": "使用條件式存取應用程式控制",
+ "sessionControlsSecureSignInLabel": "需要權杖繫結",
+ "sharepointAppName": "SharePoint",
+ "signinRiskDescription": "選取此原則將套用的登入風險層級",
+ "signinRiskInclude": "已包含 {0} 個",
+ "signinRiskReauth": "選取 [需要多重要素驗證] 授與 [每次登入頻率] 工作階段控制時,必須選取 [登入風險] 條件",
+ "signinRiskTriggerDescriptionContent": "選取登入風險等級",
+ "singleTenantServicePrincipalInfoBallonText": "原則僅適用於貴組織所擁有的單一租用戶服務主體。按一下這裡以深入了解",
+ "specificSigninRiskLevelsOption": "選取特定登入風險等級",
+ "specificUsersExcluded": "排除的特定使用者",
+ "specificUsersIncluded": "包含的特定使用者",
+ "specificUsersIncludedAndExcluded": "排除及包含特定的使用者",
+ "startDatePickerLabel": "開始",
+ "startFreeTrial": "開始免費試用",
+ "startTimePickerLabel": "開始時間",
+ "sunday": "星期日",
+ "testButton": "What If",
+ "thumbprintCol": "指紋",
+ "thursday": "星期四",
+ "timeConditionAllTimesLabel": "任何時間",
+ "timeConditionIntroText": "設定將套用此原則的時間",
+ "timeConditionSelectorInfoBallonContent": "使用者登入時間。例如,\"Wednesday 9am-5pm PST\"",
+ "timeConditionSelectorLabel": "時間 (預覽)",
+ "timeConditionSpecificLabel": "特定時間",
+ "timeSelectorAllTimesText": "任何時間",
+ "timeSelectorSpecificTimesText": "已設定特定時間",
+ "timeZoneDropdownInfoBalloonContent": "選取可定義時間範圍的時區。此原則適用於所有時區中的使用者。例如,對某位使用者是 'Wednesday 9am - 5pm',對不同時區的使用者則是 'Wednesday 10am - 6pm'。",
+ "timeZoneDropdownLabel": "時區",
+ "timeZoneDropdownPlaceholderText": "選取時區",
+ "tooManyPoliciesDescription": "目前僅顯示前 50 個原則,請按一下這裡檢視所有原則",
+ "tooManyPoliciesTitle": "找到 50 個以上的原則",
+ "trustedLocationStatusIconDescription": "位置受信任",
+ "trustedLocationStatusIconEnabled": "信任的狀態圖示",
+ "tuesday": "星期二",
+ "uploadInBadState": "無法上傳指定的檔案。",
+ "upsellAppsDescription": "敏感性應用程式隨時都需要多重要素驗證,或僅在來自公司網路外部時需要。",
+ "upsellAppsTitle": "保護應用程式",
+ "upsellBannerText": "取得免費 Premium 試用版即可使用此功能",
+ "upsellDataDescription": "必須標記為符合規範或已使用混合式 Azure AD 而聯結的裝置,才允許該裝置存取公司資源。",
+ "upsellDataTitle": "保護資料",
+ "upsellDescription": "條件式存取可提供保護公司資料安全所需的控制及保護,同時可讓您的員工透過任一種裝置交出最好的工作表現。例如,您可以限制來自公司網路外部的存取,或僅限對符合合規性原則的裝置進行存取。",
+ "upsellRiskDescription": "Microsoft 的機器學習系統所偵測到的風險事件需要多重要素驗證。",
+ "upsellRiskTitle": "保護免於風險的威脅",
+ "upsellTitle": "條件式存取",
+ "upsellWhyTitle": "為什麼要使用條件式存取?",
+ "userAppNoneOption": "無",
+ "userNamePlaceholderText": "輸入使用者名稱",
+ "userNotSetSeletorLabel": "已選取 0 個使用者與群組",
+ "userOnlySelectionBladeExcludeDescription": "選取要從原則免除的使用者",
+ "userOrGroupSelectionCountDiffBannerText": "已將此原則中設定的 {0} 從目錄中刪除,但不會影響原則中的其他使用者與群組。當您下次更新此原則時,刪除的使用者及 (或) 群組將自動移除。",
+ "userOrSPNotSetSelectorLabel": "已選取 0 個使用者或工作負載身分識別",
+ "userOrSPSelectionBladeTitle": "使用者或工作負載身分識別",
+ "userOrSPSelectorInfoBallonText": "原則套用目錄中的身分標識,包括使用者、群組和服務主體",
+ "userRequired": "需要使用者",
+ "userRiskErrorBox": "選取 [需要密碼變更] 授與時,必須選取 [使用者風險] 條件",
+ "userRiskReauth": "選取 [需要變更密碼] 授與 [每次登入頻率] 工作階段控制時,必須選取 [使用者風險] 條件而非 [登入風險]",
+ "userSPRequired": "需要使用者或服務主體",
+ "userSPSelectorTitle": "使用者或工作負載身分識別",
+ "userSelectionBladeAllUsersAndGroups": "所有使用者與群組",
+ "userSelectionBladeExcludeDescription": "選取要從原則豁免的使用者與群組",
+ "userSelectionBladeExcludeTabTitle": "排除",
+ "userSelectionBladeExcludedSelectorTitle": "選取排除的使用者",
+ "userSelectionBladeIncludeDescription": "選取此原則要套用的使用者",
+ "userSelectionBladeIncludeTabTitle": "包括",
+ "userSelectionBladeIncludedSelectorTitle": "選取",
+ "userSelectionBladeSelectUsers": "選取使用者",
+ "userSelectionBladeSelectedUsers": "選取使用者與群組",
+ "userSelectionBladeTitle": "使用者和群組",
+ "userSelectorBladeTitle": "使用者",
+ "userSelectorExcluded": "已排除 {0} 個",
+ "userSelectorGroupPlural": "{0} 個群組",
+ "userSelectorGroupSingular": "1 個群組",
+ "userSelectorIncluded": "已包含 {0} 個",
+ "userSelectorInfoBallonText": "所處目錄已套用原則的使用者與群組。例如「試驗群組」",
+ "userSelectorSelected": "已選取 {0} ",
+ "userSelectorTitle": "使用者",
+ "userSelectorUserAndGroup": "{0},{1}",
+ "userSelectorUserPlural": "{0} 位使用者",
+ "userSelectorUserSingular": "1 位使用者",
+ "userSelectorWithExclusion": "{0} 和 {1}",
+ "usersGroupsLabel": "使用者和群組",
+ "viewApprovedAppsText": "請參閱經核准的用戶端應用程式清單",
+ "viewCompliantAppsText": "請參閱受原則保護的用戶端應用程式清單",
+ "vpnBladeTitle": "VPN 連線能力",
+ "vpnCertCreateFailedMessage": "錯誤: {0}",
+ "vpnCertCreateFailedTitle": "無法建立 {0}",
+ "vpnCertCreateInProgressTitle": "正在建立 {0}",
+ "vpnCertCreateSuccessMessage": "已成功建立 {0}。",
+ "vpnCertCreateSuccessTitle": "已成功建立 {0}",
+ "vpnCertNoRowsMessage": "找不到任何 VPN 憑證",
+ "vpnCertUpdateFailedMessage": "錯誤: {0}",
+ "vpnCertUpdateFailedTitle": "無法更新 {0}",
+ "vpnCertUpdateInProgressTitle": "正在更新 {0}",
+ "vpnCertUpdateSuccessMessage": "已成功更新 {0}。",
+ "vpnCertUpdateSuccessTitle": "已成功更新 {0}",
+ "vpnFeatureInfo": "如需 VPN 連線能力與條件式存取的其他資訊,請按一下這裡。",
+ "vpnFeatureWarning": "在 Azure 入口網站開啟 VPN 憑證後,Azure AD 就會立即開始利用其來對 VPN 用戶端發行短期憑證。立即將 VPN 憑證部署至 VPN 伺服器相當重要,這可避免 VPN 用戶端的認證驗證發生任何問題。",
+ "vpnMenuText": "VPN 連線能力",
+ "vpncertDropdownDefaultOption": "持續時間",
+ "vpncertDropdownInfoBalloonContent": "為您要建立的憑證選取期限",
+ "vpncertDropdownLabel": "選取持續時間",
+ "vpncertDropdownOneyearOption": "1 年",
+ "vpncertDropdownThreeyearOption": "3 年",
+ "vpncertDropdownTwoyearOption": "2 年",
+ "wednesday": "星期三",
+ "whatIfAppEnforcedControl": "使用應用程式強制執行限制",
+ "whatIfBladeDescription": "測試使用者在特定條件下登入時,條件式存取對其所產生的影響。",
+ "whatIfBladeTitle": "What If",
+ "whatIfClassicPoliciesWarning": "傳統原則不是由此工具評估。",
+ "whatIfClientAppInfo": "使用者所登入的用戶端應用程式。例如「瀏覽器」。",
+ "whatIfCountry": "國家/地區",
+ "whatIfCountryInfo": "使用者進行登入的國家/地區。",
+ "whatIfDevicePlatformInfo": "使用者登入時所使用的裝置平台。",
+ "whatIfDeviceStateInfo": "使用者從中登入的裝置狀態",
+ "whatIfEnterIpAddress": "輸入 IP 位址 (例如: 40.77.182.32)",
+ "whatIfErrorInvalidIpAddress": "指定的 IP 位址無效。",
+ "whatIfEvaResultApplication": "雲端應用程式",
+ "whatIfEvaResultClientApps": "用戶端應用程式",
+ "whatIfEvaResultDevicePlatform": "裝置平台",
+ "whatIfEvaResultEmptyPolicy": "原則空白",
+ "whatIfEvaResultInvalidCondition": "條件無效",
+ "whatIfEvaResultInvalidPolicy": "原則無效",
+ "whatIfEvaResultLocation": "位置",
+ "whatIfEvaResultNotEnoughInformation": "資訊不足",
+ "whatIfEvaResultPolicyNotEnabled": "原則未啟用",
+ "whatIfEvaResultSignInRisk": "登入風險",
+ "whatIfEvaResultUsers": "使用者和群組",
+ "whatIfIpAddress": "IP 位址",
+ "whatIfIpAddressInfo": "使用者登入時所使用的 IP 位址。",
+ "whatIfIpCountryInfoBoxText": "若使用 IP 位址或國家/地區,則會需要兩個欄位,且應正確對應。",
+ "whatIfPolicyAppliesTab": "會套用的原則",
+ "whatIfPolicyDoesNotApplyTab": "不會套用的原則",
+ "whatIfReasons": "此原則不會套用的原因",
+ "whatIfSelectClientApp": "選取用戶端應用程式...",
+ "whatIfSelectCountry": "選取國家/地區...",
+ "whatIfSelectDevicePlatform": "選取裝置平台...",
+ "whatIfSelectPrivateLink": "選取私人連結...",
+ "whatIfSelectServicePrincipalRisk": "選取服務主體風險...",
+ "whatIfSelectSignInRisk": "選取登入風險...",
+ "whatIfSelectType": "選取身分識別類型",
+ "whatIfSelectUserRisk": "選取使用者風險...",
+ "whatIfServicePrincipalRiskInfo": "與服務主體相關聯的風險層級",
+ "whatIfSignInRisk": "登入風險",
+ "whatIfSignInRiskInfo": "與登入相關的風險層級",
+ "whatIfUnknownAreas": "不明區域",
+ "whatIfUserPickerLabel": "選取的使用者",
+ "whatIfUserPickerNoRowsLabel": "未選取任何使用者或服務主體",
+ "whatIfUserRiskInfo": "與使用者相關的風險層級",
+ "whatIfUserSelectorInfo": "您想要測試的目錄中使用者",
+ "windows365InfoBox": "選取 Windows 365 會影響與雲端電腦和 Azure 虛擬桌面工作階段主機的連接。按一下這裡以深入了解。",
+ "windowsDisplayName": "Windows",
+ "windowsPhoneDisplayName": "Windows Phone",
+ "workloadIdentities": "工作負載身分識別 (預覽)",
+ "workloadIdentity": "工作負載身分識別"
+ },
+ "AppResources": {
+ "AppSettingsUx": {
+ "assignmentFilterColumnHeader": "篩選",
+ "assignmentFilterTypeColumnHeader": "篩選模式",
+ "assignmentToast": "終端使用者通知",
+ "assignmentTypeTableHeader": "指派類型",
+ "deadlineTimeColumnLabel": "安裝期限",
+ "deliveryOptimizationPriorityHeader": "傳遞最佳化優先順序",
+ "groupTableHeader": "群組",
+ "installContextLabel": "安裝內容",
+ "isRemovable": "安裝為卸除式",
+ "licenseTypeLabel": "授權類型",
+ "modeTableHeader": "群組模式",
+ "policySet": "原則集合",
+ "restartGracePeriodHeader": "重新啟動寬限期",
+ "startTimeColumnLabel": "可用性",
+ "tracks": "追蹤",
+ "uninstallOnRemoval": "移除裝置時解除安裝",
+ "updateMode": "更新優先順序",
+ "vPN": "VPN"
+ },
+ "AppType": {
+ "aADWebApp": "AAD Web 應用程式",
+ "androidEnterpriseSystemApp": "Android Enterprise 系統應用程式",
+ "androidForWorkApp": "受控 Google Play 商店應用程式",
+ "androidLobApp": "Android 企業營運應用程式",
+ "androidStoreApp": "Android Store 應用程式",
+ "builtInAndroid": "內建 Android 應用程式",
+ "builtInApp": "內建應用程式",
+ "builtInIos": "內建 iOS 應用程式",
+ "iosLobApp": "iOS 企業營運應用程式",
+ "iosStoreApp": "iOS Store 應用程式",
+ "iosVppApp": "iOS 大量採購方案應用程式",
+ "lineOfBusinessApp": "企業營運應用程式",
+ "macOSDmgApp": "macOS 應用程式 (DMG)",
+ "macOSEdgeApp": "Microsoft Edge (macOS)",
+ "macOSLobApp": "macOS 企業營運應用程式",
+ "macOSMdatpApp": "Microsoft Defender ATP (macOS)",
+ "macOSOfficeSuiteApp": "macOS Office 套件",
+ "macOsVppApp": "macOS 大量採購方案應用程式",
+ "managedAndroidLobApp": "受管理的 Android 企業營運應用程式",
+ "managedAndroidStoreApp": "受管理的 Android Store 應用程式",
+ "managedGooglePlayApp": "受控 Google Play 商店應用程式",
+ "managedGooglePlayPrivateApp": "受控 Google Play 私人應用程式",
+ "managedGooglePlayWebApp": "受控 Google Play Web 連結",
+ "managedIosLobApp": "受管理的 iOS 企業營運應用程式",
+ "managedIosStoreApp": "受管理的 iOS Store 應用程式",
+ "microsoftStoreForBusinessApp": "商務用 Microsoft 網上商店應用程式",
+ "microsoftStoreForBusinessReleaseManagedApp": "商務用 Microsoft 網上商店",
+ "officeAddIn": "Office 增益集",
+ "officeSuiteApp": "Microsoft 365 Apps (Windows 10 及更新版本)",
+ "sharePointApp": "SharePoint 應用程式",
+ "teamsApp": "Teams 應用程式",
+ "webApp": "網頁連結",
+ "windowsAppXLobApp": "Windows AppX 企業營運應用程式",
+ "windowsClassicApp": "Windows 應用程式 (Win32)",
+ "windowsEdgeApp": "Microsoft Edge (Windows 10 及更新版本)",
+ "windowsMobileMsiLobApp": "Windows MSI 企業營運應用程式",
+ "windowsPhone81AppXBundleLobApp": "Windows Phone 8.1 AppX 企業營運應用程式",
+ "windowsPhone81AppXLobApp": "Windows Phone 8.1 AppX 企業營運應用程式",
+ "windowsPhone81StoreApp": "Windows Phone 8.1 市集應用程式",
+ "windowsPhoneXapLobApp": "Windows Phone XAP 企業營運應用程式",
+ "windowsStoreApp": "Microsoft Store 應用程式",
+ "windowsUniversalAppXLobApp": "Windows 通用 AppX 企業營運應用程式",
+ "windowsUniversalLobApp": "Windows 通用企業營運應用程式"
+ },
+ "AppTypePlatform": {
+ "android": "Android",
+ "ios": "iOS",
+ "macOs": "macOS",
+ "web": "Web",
+ "windows": "Windows"
+ },
+ "AssignmentAction": {
+ "exclude": "已排除",
+ "include": "已包含",
+ "includeAllDevicesVirtualGroup": "已包含",
+ "includeAllUsersVirtualGroup": "已包含"
+ },
+ "AssignmentToast": {
+ "hideAll": "隱藏所有快顯通知",
+ "showAll": "顯示所有快顯通知",
+ "showReboot": "顯示電腦重新開機的快顯通知"
+ },
+ "DeliveryOptimizationPriority": {
+ "backgroundNormal": "背景",
+ "displayText": "{0} 中的內容下載",
+ "foreground": "前景",
+ "header": "傳遞最佳化優先順序"
+ },
+ "DeviceRestartBehaviorOptions": {
+ "allow": "應用程式安裝可能會強制裝置重新啟動",
+ "basedOnReturnCode": "根據傳回碼決定行為",
+ "force": "Intune 用戶端將會強制裝置重新啟動",
+ "suppress": "無特定動作"
+ },
+ "FilterType": {
+ "exclude": "排除",
+ "include": "包含",
+ "none": "無"
+ },
+ "InstallIntent": {
+ "available": "適用於已註冊的裝置",
+ "availableWithoutEnrollment": "無論註冊與否均可使用",
+ "notApplicable": "不適用",
+ "required": "必要",
+ "uninstall": "解除安裝"
+ },
+ "SettingType": {
+ "assignmentType": "指派類型",
+ "deviceLicensing": "授權類型",
+ "installContext": "移除裝置時解除安裝",
+ "toastSettings": "終端使用者通知",
+ "vpnConfiguration": "VPN"
+ },
+ "UpdateMode": {
+ "default": "預設",
+ "postponed": "已延後",
+ "priority": "高優先順序"
+ }
+ },
+ "WindowsEnrollment": {
+ "coManagementAuthorityDesc": "設定 Configuration Manager 整合的共同管理設定",
+ "coManagementAuthorityTitle": "共同管理設定 ",
+ "deploymentProfiles": "Windows AutoPilot 部署設定檔",
+ "description": "了解使用者或系統管理員可向 Intune 註冊 Windows 10/11 電腦的七種不同方式。",
+ "descriptionLabel": "Windows 註冊方式",
+ "enrollmentStatusPage": "[註冊狀態] 頁面"
+ },
+ "Win32Program": {
+ "DeviceRestartBehaviorOptions": {
+ "allow": "應用程式安裝可能會強制裝置重新啟動",
+ "basedOnReturnCode": "根據傳回碼決定行為",
+ "force": "Intune 用戶端將會強制裝置重新啟動",
+ "suppress": "無特定動作"
+ },
+ "RunAsAccountOptions": {
+ "system": "系統",
+ "user": "使用者"
+ },
+ "bladeTitle": "程式",
+ "deviceRestartBehavior": "裝置重新啟動行為",
+ "deviceRestartBehaviorTooltip": "請選取應用程式成功安裝後的裝置重新啟動行為。選取 [根據傳回碼決定行為] 會根據傳回的代碼組態設定重新啟動裝置。選取 [無特定動作] 會在 MSI 式應用程式的應用程式安裝期間隱藏裝置重新啟動。選取 [App install may force a device restart] 會允許應用程式在不隱藏重新啟動的情況下完成。選取 [Intune will force a mandatory device restart] 會一律在成功安裝應用程式後重新啟動裝置。",
+ "header": "請指定用於安裝和解除安裝此應用程式的命令:",
+ "installCommand": "安裝命令",
+ "installCommandMaxLengthErrorMessage": "安裝命令不得超過允許的長度上限 1024 個字元。",
+ "installCommandTooltip": "用於安裝此應用程式的完整安裝命令列。",
+ "runAs32Bit": "在 64 位元用戶端上以 32 位元處理序的形式執行安裝和解除安裝命令",
+ "runAs32BitTooltip": "選取 [是] 會在 64 位元用戶端上以 32 位元處理序的形式安裝和解除安裝應用程式。選取 [否] (預設) 會在 64 位元用戶端上以 64 位元處理序的形式安裝和解除安裝應用程式。32 位元用戶端一律會使用 32 位元處理序。",
+ "runAsAccount": "安裝行為",
+ "runAsAccountTooltip": "選取 [系統] 可為所有使用者安裝此應用程式 (如果支援)。選取 [使用者] 可為裝置上的登入使用者安裝此應用程式。對於要達到兩種目標的 MSI 應用程式,變更會使更新和解除安裝在原始安裝時套用到裝置的值還原前,都無法成功完成。",
+ "selectorLabel": "程式",
+ "uninstallCommand": "解除安裝命令",
+ "uninstallCommandTooltip": "用於將此應用程式解除安裝的完整解除安裝命令列。"
+ },
+ "CategoryDescription": {
+ "androidGeneralApplicationRestrictions": "使用這些設定以隨時掌握哪些使用者安裝了在您的公司中未核准使用的應用程式。選取受限制的應用程式清單類型:
\r\n 禁止的應用程式 - 在使用者安裝時,您希望收到通知的應用程式清單。
\r\n 核准的應用程式 - 您的公司中核准使用的應用程式清單。當使用者安裝不在此清單中的應用程式時,您就會收到通知。
\r\n ",
+ "androidZebraMxZebraMx": "用 XML 格式上傳 MX 設定檔的方式,設定 Zebra 裝置。",
+ "iosDeviceFeaturesAirprint": "使用這些設定將 iOS 裝置設定為可自動連線到您網路上與 AirPrint 相容的印表機。您需要印表機的 IP 位址與資源路徑。",
+ "iosDeviceFeaturesExtensibleSingleSignOn": "設定應用程式延伸模組,為執行 iOS 13.0 或更新版本的裝置啟用單一登入 (SSO)。",
+ "iosDeviceFeaturesHomeScreenLayout": "設定 iOS 裝置的固定位置與主畫面配置。某些裝置可能對於顯示的項目數有所限制。",
+ "iosDeviceFeaturesIOSWallpaper": "顯示會出現在 iOS 裝置主畫面及/或鎖定畫面中的影像。\r\n 若要在每個位置都顯示唯一的影像,請使用鎖定畫面影像建立一個設定檔,使用主畫面影像建立一個設定檔。\r\n 然後將這兩個設定檔指派給您的使用者。\r\n
\r\n \r\n - 檔案大小上限: 750 KB
\r\n - 檔案類型: PNG、JPG 或 JPEG
\r\n
\r\n ",
+ "iosDeviceFeaturesNotifications": "指定應用程式的通知設定。支援 iOS 9.3 及更新版本。",
+ "iosDeviceFeaturesSharedDevice": "指定顯示於鎖定畫面上的選擇性文字。iOS 9.3 及更新版本支援此功能。深入了解",
+ "iosGeneralApplicationRestrictions": "使用這些設定以隨時掌握哪些使用者安裝了在您的公司中未核准使用的應用程式。選取受限制的應用程式清單類型:
\r\n 禁止的應用程式 - 在使用者安裝時,您希望收到通知的應用程式清單。
\r\n 核准的應用程式 - 您的公司中核准使用的應用程式清單。當使用者安裝不在此清單中的應用程式時,您就會收到通知。
\r\n ",
+ "iosGeneralApplicationVisibility": "使用顯示應用程式清單可指定使用者可以檢視或啟動的 iOS 應用程式。使用隱藏應用程式清單可指定使用者無法檢視或啟動的 iOS 應用程式。",
+ "iosGeneralAutonomousSingleAppMode": "您新增到此清單並指派到裝置的應用程式可以鎖定裝置,使其在啟動後僅執行該應用程式,或在某動作執行時鎖定裝置 (例如進行測試)。在動作完成後,或您移除限制後,裝置會回到正常狀態。",
+ "iosGeneralKiosk": "資訊亭模式會將多項設定鎖定在裝置中,或指定可在裝置上執行的單一應用程式。這在您希望裝置只執行單一示範應用程式的環境中很實用,例如零售商店。",
+ "macDeviceFeaturesAirprint": "使用這些設定,將 macOS 裝置設定為自動連線到網路上與 AirPrint 相容的印表機。您會需要印表機的 IP 位址及資源路徑。",
+ "macDeviceFeaturesAssociatedDomains": "設定相關網域以在您組織的應用程式與網站之間共用資料及登入認證。此設定檔可套用到執行 macOS 10.15 或更新版本的裝置。",
+ "macDeviceFeaturesExtensibleSingleSignOn": "設定應用程式延伸模組,為執行 macOS 10.15 或更新版本的裝置啟用單一登入 (SSO)。",
+ "macDeviceFeaturesLoginItems": "選擇使用者登入裝置時要開啟的應用程式、檔案和資料夾。如果您不想要讓使用者變更所選應用程式的開啟方式,可以將應用程式從使用者設定中隱藏。",
+ "macDeviceFeaturesLoginWindow": "設定 macOS 登入畫面的外觀,及使用者在登入前後可使用的功能。",
+ "macExtensionsKernelExtensions": "使用這些項目來設定執行 10.13.2 或更新版本之 macOS 裝置上的核心延伸模組原則。",
+ "macGeneralDomains": "使用者傳送或接收的電子郵件,若不符合您於此處所指定的網域,會標示為不受信任。",
+ "windows10EndpointProtectionApplicationGuard": "在使用 Microsoft Edge 時,Microsoft Defender 應用程式防護會保護您的環境免受未經您組織定義為受信任的網站所威脅。當使用者前往未列於隔離網路界限中的網站時,該網站就會在 Hyper-V 的虛擬瀏覽工作階段內開啟。信任的網站會根據網路界限來定義,您可以在裝置設定中加以設定。請注意,僅執行 64 位元 Windows 10 或更新版本的裝置可使用此功能。",
+ "windows10EndpointProtectionCredentialGuard": "啟用 Credential Guard 會啟用下列必要設定:\r\n
\r\n \r\n - 啟用虛擬化型安全性: 於下次重新開機時開啟虛擬化型安全性 (VBS)。虛擬化型安全性使用 Windows Hypervisor 提供安全性服務的支援。
\r\n
\r\n - 使用直接記憶體存取的安全開機: 使用安全開機與直接記憶體存取 (DMA) 來開啟 VBS。
\r\n
\r\n ",
+ "windows10EndpointProtectionDeviceGuard": "請選擇其他需要稽核,或者是可以信任由 Microsoft Defender 應用程式控制執行的應用程式。Windows 元件及來自 Microsoft Store 的所有應用程式都會直接受信任並執行。
\r\n 當以「僅稽核」模式執行時,應用程式不會受到封鎖。「僅稽核」模式會在本機用戶端記錄中記錄所有事件。\r\n ",
+ "windows10GeneralPrivacyPerApp": "新增隱私權行為不同於您在 [預設隱私權] 中所定義的應用程式。",
+ "windows10NetworkBoundaryNetworkBoundary": "網路界限是企業資源 (例如企業網路上電腦裝載於雲端的網域和 IP 位址範圍) 清單。定義網路界限可套用原則以保護位於這些位置的資料。",
+ "windowsHealthMonitoring": "設定 Windows 狀況監控視原則。",
+ "windowsPhoneGeneralApplicationRestrictions": "Windows Phone 可以封鎖使用者安裝或啟動禁止的應用程式清單中所指定的應用程式,或核准的應用程式清單中未指定的應用程式。所有受管理應用程式都必須新增至核准的清單中。"
+ },
"Inputs": {
"accountDomain": "帳戶網域",
"accountDomainHint": "例如 contosodomain",
@@ -9962,6 +9858,7 @@
"displayNameLabel": "名稱",
"displayVersionHint": "輸入應用程式版本",
"displayVersionLabel": "應用程式版本",
+ "displayVersionLengthCheck": "顯示版本的長度最多應為 130 個字元",
"eBookCategoryNameLabel": "預設名稱",
"emailAccount": "電子郵件帳戶名稱",
"emailAccountHint": "例如,公司電子郵件",
@@ -10066,385 +9963,51 @@
"xmlFormatInvalid": "XML 原則的格式不正確。",
"xmlTooLarge": "輸入大小必須小於 1 MB。"
},
- "Tooltips": {
- "PolicySettings": {
- "TouchId1": {
- "android": "您可在 Android 上允許使用指紋識別碼而不使用 PIN。系統會在使用者使用其工作帳戶存取此應用程式時,提示使用者提供指紋。",
- "iOS": "在 iOS/iPadOS 裝置上,您可以允許不使用 PIN 碼而改以使用指紋識別。當使用者使用其工作帳戶存取此應用程式時,會收到提示要求他們提供其指紋識別。",
- "mac": "在 Mac 裝置上,您可以允許不使用 PIN 而改用指紋識別碼。當使用者以其公司帳戶存取此應用程式時,系統會提示他們提供指紋。"
- },
- "appSharingFromLevel1": "請選取下列其中一個選項,以指定此應用程式可以從其接收資料的來源應用程式:",
- "appSharingFromLevel2": "{0}: 只允許從其他受原則管理應用程式接收組織文件或帳戶的資料",
- "appSharingFromLevel3": "{0}: 允許從任何應用程式接收組織文件或帳戶的資料",
- "appSharingFromLevel4": "{0}: 不允許從任何應用程式接收組織文件或帳戶的資料",
- "appSharingFromLevel5": "{0}: 允許來自任何應用程式的資料轉送,且將所有不具使用者身分識別的輸入資料視作組織資料。",
- "appSharingToLevel1": "請選取下列其中一個選項,以指定可以接收此應用程式所傳送之資料的應用程式:",
- "appSharingToLevel2": "{0}: 只允許將組織資料傳送到其他受原則管理的應用程式",
- "appSharingToLevel3": "{0}: 允許將組織資料傳送到任何應用程式",
- "appSharingToLevel4": "{0}: 不允許將組織資料傳送到任何應用程式",
- "appSharingToLevel5": "{0}: 僅允許對其他原則受控應用程式的轉送,以及對已註冊裝置上其他 MDM 受控應用程式的檔案轉送",
- "appSharingToLevel6": "{0}: 僅允許對其他原則受控應用程式的轉送,並篩選 [Open-in/Share] 對話方塊為只顯示原則受控的應用程式",
- "conditionalEncryption1": "選取 {0} 可在已註冊的裝置上偵測到裝置加密時,停用內部應用程式儲存體的應用程式加密。",
- "conditionalEncryption2": "注意: Intune 只能透過 Intune MDM 偵測到裝置註冊。外部應用程式儲存體仍會加密,以確保非受控的應用程式無法存取資料。",
- "contactSyncMac": "若已停用,應用程式就無法將連絡人儲存到原生通訊錄中。",
- "contactsSync": "選擇 [封鎖],以防止受原則管理的應用程式將資料儲存到裝置的原生應用程式 (例如連絡人、行事曆和小工具) ,或防止在受原則管理的應用程式內使用增益集。如果您選擇 [允許],則受原則管理的應用程式可以將資料儲存到原生應用程式或使用增益集,如果這些功能在受原則管理的應用程式中受到支援並啟用。
應用程式可能會提供額外的設定功能與應用程式設定原則。如需詳細資訊,請參閱應用程式的文件。",
- "encryptionAndroid1": "對於關聯到 Intune 行動應用程式管理原則的應用程式,Microsoft 會提供加密。檔案在 I/O 作業期間,將會依據行動應用程式管理原則中的設定同步加密資料。Android 上受管理的應用程式會利用平台加密程式庫使用 CBC 模式的 AES-128 加密。此加密法並未符合 FIPS 140-2 規範。在用法說明中明確指出,只有使用 SigAlg 參數時,才支援 SHA-256 加密,而且此加密法只可在 4.2 (含) 版以上的裝置上運作。裝置儲存體中的內容一律會加密。",
- "encryptionAndroid2": "當您的應用程式原則規定需要加密時,使用者便須設定及使用 PIN 碼,才能存取其裝置。若未設定存取裝置所需的 PIN 碼,應用程式將不會啟動,而且會對使用者顯示下列訊息:「根據您公司的要求,您必須先啟用裝置的 PIN 碼,才能存取此應用程式」。",
- "encryptionMac1": "對於與 Intune 行動應用程式管理原則建立關聯的應用程式,Microsoft 會提供加密。在檔案 I/O 作業期間,會依據行動應用程式管理原則中的設定同步加密資料。Mac 上受管理的應用程式會利用平台加密程式庫使用 CBC 模式的 AES-128 加密。此加密方法並未符合 FIPS 140-2 規範。在用法說明中明確指出,使用 SigAlg 參數時,才支援 SHA-256 加密,且此加密方法只可在 4.2 (含) 以上的裝置上運作。裝置儲存體中的內容一律會經過加密。",
- "faceId1": "您可以在適當的情況下,使用臉部辨識而不使用 PIN 碼。當使用者使用其工作帳戶存取此應用程式時,將會提示其提供臉部辨識。",
- "faceId2": "選取 [是] 可啟用臉部辨識而不使用 PIN 碼來存取應用程式。",
- "managementLevelsAndroid1": "使用此選項來指定此原則適用於 Android 裝置系統管理員的裝置、Android Enterprise 裝置或非受控裝置。",
- "managementLevelsAndroid2": "{0}: 非受控裝置為未偵測到 Intune MDM 管理的裝置。這包括協力廠商 MDM 廠商。",
- "managementLevelsAndroid3": "{0}: 使用 Android 裝置管理 API 的 Intune 受控裝置。",
- "managementLevelsAndroid4": "{0}: 使用 Android Enterprise 公司設定檔或 Android Enterprise 完整裝置管理的 Intune 受控裝置。",
- "managementLevelsIos1": "使用此選項來指定此原則適用 MDM 受控裝置或非受控裝置。",
- "managementLevelsIos2": "{0}: 非受控裝置為未偵測到 Intune MDM 管理的裝置。這包括協力廠商 MDM 廠商。",
- "managementLevelsIos3": "{0}: 受控裝置受 Intune MDM 管理。",
- "minAppVersion": "請定義使用者應有的所需最小 App 版本號碼,以取得對該應用程式的安全存取權。",
- "minAppVersionWarning": "請定義使用者應有的建議最小 App 版本號碼,以取得對該應用程式的安全存取權。",
- "minOsVersion": "請定義使用者應有的所需最小 OS 版本號碼,以取得對該應用程式的安全存取權。",
- "minOsVersionWarning": "請定義使用者應有的建議最小 OS 版本號碼,以取得對該應用程式的安全存取權。",
- "minPatchVersion": "請定義必要的 Android 安全性更新程式封裝等級,使用者至少要有這個等級才能安全存取應用程式。",
- "minPatchVersionWarning": "請定義建議的 Android 安全性更新程式封裝等級,使用者至少要有這個等級才能安全存取應用程式。",
- "minSdkVersion": "請定義使用者應有的所需最小 Intune 應用程式保護原則 SDK 版本,以取得對該應用程式的安全存取權。",
- "requireAppPinDefault": "選取 [是]會在註冊的裝置上偵測到裝置鎖定時,停用應用程式 PIN。
",
- "targetAllApps1": "使用此選項,將您原則的目標設為處於任何管理狀態之裝置上的應用程式。",
- "targetAllApps2": "若使用者為特定管理狀態指定了目標原則,則此設定在原則衝突解決期間將受到取代。",
- "touchId2": "選取 {0} 可要求在存取應用程式時提供指紋識別,而不是提供 PIN 碼。"
- },
- "Tap": {
- "pinResetAfterNumberOfDays": "指定天數,使用者在那之後必須重設 PIN。",
- "previousPinBlockCount": "此設定會指定 Intune 要維護的前幾個 PIN 數目。任何新的 PIN 都必須與 Intune 維護的 PIN 不同。"
+ "WindowsFeatureUpdate": {
+ "EndOFSupportStatus": {
+ "notSupported": "不支援",
+ "supportEnding": "支援結束",
+ "supported": "受支援"
+ }
},
- "WipPolicySettings": {
- "25": "",
- "allowWindowsSearch": "這會允許 Windows Search 繼續在已加密的資料中搜尋。",
- "authoritativeIpRanges": "如果您想覆寫 IP 範圍的 Windows 自動偵測,請啟用此設定。",
- "authoritativeProxyServers": "如果您想覆寫 Proxy 伺服器的 Windows 自動偵測,請啟用此設定。",
- "checkInput": "檢查輸入是否有效",
- "dataRecoveryCert": "復原憑證是特殊的加密檔案系統 (EFS) 憑證,可以在您的加密金鑰遺失或損毀時用於復原加密的檔案。您必須建立復原憑證,並在此指定。如需詳細資訊,請參閱這裡",
- "enterpriseCloudResources": "指定要將雲端資源視為公司,且受 Windows 資訊保護原則所保護。可利用以 '|' 字元分號隔開的個別項目來指定多重資源。
若公司中設有 Proxy,則可指定 Proxy 來路由進入您指定之雲端資源的流量。
URL[,Proxy]|URL[,Proxy]
沒有 Proxy: contoso.sharepoint.com|contoso.visualstudio.com
有 Proxy: contoso.sharepoint.com,proxy.contoso.com|contoso.visualstudio.com,proxy.contoso.com
",
- "enterpriseIPv4Ranges": "指定組成您公司網路的 IPv4 範圍。這些項目可與您指定的企業網路網域名稱結合一起使用,來定義公司網路界限。
若要啟用 Windows 資訊保護,需要此設定。
可利用以逗號隔開的個別項目來指定多重範圍。
例如: 3.4.0.1-3.4.255.255,192.168.1.1-192.168.255.255
",
- "enterpriseIPv6Ranges": "指定組成您公司網路的 IPv6 範圍。這些項目可與您指定的企業網路網域名稱結合一起使用,來定義公司網路界限。
可利用以逗號隔開的個別項目來指定多重範圍。
例如: 2001:4898:dc05::-2001:4898:dc05:ffff:ffff:ffff:ffff:ffff,2a01:110::-2a01:110:7fff:ffff:ffff:ffff:ffff:ffff
",
- "enterpriseInternalProxyServers": "若公司內設有 Proxy,則您可指定該 Proxy,讓流量透過它進入企業中指定的雲端資源。
可利用以分號隔開的個別項目來指定多重值。
例如: contoso.internalproxy1.com;contoso.internalproxy2.com
",
- "enterpriseNetworkDomainNames": "指定組成您公司網路的 DNS 名稱。這些項目可與您指定的 IP 範圍結合一起使用,來定義公司網路界限。可利用以逗號隔開的個別項目來指定多重值。
若要啟用 Windows 資訊保護,需要此設定。
例如: corp.contoso.com,region.contoso.com
",
- "enterpriseProtectedDomainNames": "請指定組成公司網路的 DNS 名稱。這些名稱會與您為定義公司網路界限而指定的 IP 範圍結合使用。可以使用 '|' 分隔個別項目,以指定多個值。
這是啟用 Windows 資訊保護的必要設定。
範例: corp.contoso.com|region.contoso.com
",
- "enterpriseProxyServers": "若公司網路中有對外的 Proxy,請於此處指定。指定 Proxy 伺服器位址時,也應指定連接埠來允許流量且受 Windows 資訊保護。
注意: 此清單不得包含企業內部 Proxy 伺服器清單中的伺服器。可利用以分號隔開的個別項目來指定多重值。
例如: proxy.contoso.com:80;proxy2.contoso.com:80
",
- "maxInactivityTime1": "指定在裝置閒置後允許的最大時間長度 (分鐘),之後裝置會以 PIN 或密碼鎖定。使用者可在 [設定] 應用程式中選取小於指定最大時間的現有逾時值。請注意,無論此原則設定的值為多少,Lumia 950 和 950XL 的最大逾時值都是 5 分鐘。",
- "maxInactivityTime2": "0 (預設) - 未定義任何逾時。預設 '0' 可解讀為「未定義任何逾時」。",
- "maxPasswordAttempts1": "此原則在行動裝置和桌面的行為不同。",
- "maxPasswordAttempts2": "在行動裝置上,當使用者達到此原則所設定的值時,裝置會抹除。",
- "maxPasswordAttempts3": "在桌面上,當使用者達到此原則所設定的值時,則不會抹除,而是使桌面進入 BitLocker 復原模式,讓資料無法存取但可復原。如果 BitLocker 未啟用,即無法強制執行原則。",
- "maxPasswordAttempts4": "在達到失敗嘗試次數限制前,使用者會看到鎖定畫面和警告,指出更多失敗的嘗試次數會鎖定他們的電腦。當使用者達到限制時,裝置會自動重新啟動並顯示 BitLocker 復原頁面。此頁面會提示使用者取得 BitLocker 復原金鑰。",
- "maxPasswordAttempts5": "0 (預設) - 裝置永遠不會在輸入不正確的 PIN 或密碼後抹除。",
- "maxPasswordAttempts6": "如果所有原則值都 = 0,最安全的值就是 0; 否則最低原則值為最安全的值。",
- "mdmDiscoveryUrl": "指定 MDM 註冊端點的 URL,向 MDM 註冊的使用者會使用該端點。依預設,這是為 Intune 而指定的。",
- "minimumPinLength1": "設定 PIN 所需最小字元數的整數值。預設值為 4。您可以為這項原則設定進行設定的最小數字為 4。您可以設定的最大數字必須小於 [最大 PIN 長度] 原則設定中設定的數字或數字 127,取最小者。",
- "minimumPinLength2": "如果您設定這項原則設定,PIN 長度必須大於或等於此數字。如果您停用或未設定這項原則設定,PIN 長度必須大於或等於 4。",
- "name": "此網路界限的名稱",
- "neutralResources": "若公司內有驗證重新導向的端點,請於此處指定。指定於此處的位置有可能是個人或公司 (取決重新導向前的連線內容)。
可利用以逗號隔開的個別項目來指定多重值。
例如: sts.contoso.com,sts.contoso2.com
",
- "passportForWork1": "將 Windows Hello 企業版設為 Windows 登入方法的值。",
- "passportForWork2": "預設值為 true。如果您將此原則設為 false,使用者就無法佈建 Windows Hello 企業版,已加入 Azure Active Directory 而必須佈建的行動電話以外。",
- "pinExpiration": "您可以為這項原則設定進行設定的最大數字為 730。您可以為這項原則設定進行設定的最小數字為 0。如果這項原則設為 0,使用者的 PIN 就永遠不會過期。",
- "pinHistory1": "您可以為這項原則設定進行設定的最大數字為 50。您可以為這項原則設定進行設定的最小數字為 0。如果這項原則設為 0,就不必儲存先前的 PIN。",
- "pinHistory2": "使用者目前的 PIN 包含在已與使用者帳戶建立關聯的 PIN 組中。PIN 歷程記錄不會透過 PIN 重設過程保留。",
- "protectUnderLock": "在裝置處於鎖定狀態時保護應用程式內容。",
- "protectionModeBlock": "禁止: 禁止企業資料離開受保護的應用程式。
",
- "protectionModeOff": "關閉: 使用者可隨意將資料重新放置到受保護的應用程式以外。不會記錄任何動作。
",
- "protectionModeOverride": "允許覆寫: 使用者嘗試將資料從受保護應用程式重新放置到未受保護的應用程式時,會收到提示。若使用者選擇覆寫此提示,將會記錄該動作。
",
- "protectionModeSilent": "無訊息: 使用者可隨意將資料重新放置到受保護應用程式以外。系統會記錄這些動作。
",
- "required": "必要",
- "revokeOnMdmHandoff": "在 Windows 10 的 1703 版中新增。此原則會控制將裝置從 MAM 升級為 MDM 時,是否要撤銷 WIP 金鑰。若設為 [關閉],金鑰就不會撤銷,而使用者在升級之後會保有受保護檔案的存取權。如果使用與 MAM 服務相同的 WIP EnterpriseID 設定 MDM 服務,建議您使用此設定。",
- "revokeOnUnenroll": "這會造成裝置從這項原則取消註冊時,撤銷加密金鑰。",
- "rmsTemplateForEdp": "要用於 RMS 加密的 TemplateID GUID。Azure RMS 範本可讓 IT 系統管理員設定誰能存取 RMS 保護的檔案,及該存取權的有效時間長度等詳細資料。",
- "showWipIcon": "這會重疊圖示,會讓使用者知道他們正在對公司內容執行動作。",
- "useRmsForWip": "指定是否允許將 Azure RMS 加密用於 WIP。"
+ "SecurityTemplate": {
+ "aSR": "受攻擊面縮小",
+ "accountProtection": "帳戶防護",
+ "allDevices": "所有裝置",
+ "antivirus": "防毒",
+ "antivirusReporting": "防毒報告 (預覽)",
+ "conditionalAccess": "條件存取",
+ "deviceCompliance": "裝置相容性",
+ "diskEncryption": "磁碟加密",
+ "eDR": "端點偵測及回應",
+ "firewall": "防火牆",
+ "helpSupport": "說明及支援",
+ "setup": "安裝",
+ "wdapt": "適用於端點的 Microsoft Defender"
+ },
+ "Win32ReturnCodes": {
+ "CodeTypes": {
+ "failed": "失敗",
+ "hardReboot": "強制重新開機",
+ "retry": "重試",
+ "softReboot": "軟開機",
+ "success": "成功"
},
- "requireAppPin": "選取 [是]會在註冊的裝置上偵測到裝置鎖定時,停用應用程式 PIN。
注意: Intune 只能偵測到 iOS/iPadOS 上有協力廠商 EMM 解決方案的裝置註冊。
"
- },
- "AppInfoBalloonText": {
- "Certificate": {
- "customSubjectName": "CN={{UserName}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US\r\nor\r\nCN={{AAD_Device_ID}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US",
- "keySize": "請選取金鑰包含的位元數。",
- "keyUsage": "請指定交換憑證公用金鑰所需的密碼編譯動作。",
- "renewalThreshold": "請輸入百分比 (介於 1% 到 99%),指定憑證存留期必須剩餘多少百分比,使用者才能要求更新憑證。Intune 建議的時間量為 20%。(1-99)",
- "rootCert": "請選擇先前設定及指派的根 CA 憑證設定檔。此 CA 憑證必須是核發此設定檔 (您目前設定的設定檔) 憑證之 CA 的根憑證。",
- "scepServerUrl": "請為透過 SCEP 發行憑證的 NDES 伺服器輸入 URL (必須是 HTTPS)。例如: https://contoso.com/certsrv/mscep/mscep.dll",
- "scepServerUrls": "請為透過 SCEP 發行憑證的 NDES 伺服器新增一或多個 URL (必須是 HTTPS)。例如: https://contoso.com/certsrv/mscep/mscep.dll",
- "subjectAlternativeName": "主體別名",
- "subjectNameFormat": "主體名稱格式",
- "validityPeriod": "憑證到期前的剩餘時間。請輸入等於或少於顯示憑證範本中顯示的有效期間值。預設設定為一年。"
- },
- "appInstallContext": "其會指定要與此應用程式相關聯的安裝內容。若是雙重模式的應用程式,請為此應用程式選取所需的內容。若為其他所有應用程式,則會依據套件預先選取,無法修改。",
- "autoUpdateMode": "設定應用程式的更新優先順序。選取 [預設] 可要求裝置必須連線至 WiFi、充電,以及在更新應用程式之前不要主動使用。選取 [高優先順序] 可在開發人員發佈應用程式後立即更新,無論裝置上的費用狀態、WiFi 功能或使用者活動為何。高優先順序只會在 DO 裝置上生效。",
- "configurationSettingsFormat": "組態設定格式文字",
- "ignoreVersionDetection": "針對應用程式開發人員自動更新的應用程式 (像是 Google Chrome),將這項設為 [是]。",
- "ignoreVersionDetectionMacOSLobApp": "若是應用程式開發人員會自動更新的應用程式,或要在安裝前只檢查應用程式 bundleID,請選取 [是]。若要在安裝前檢查應用程式 bundleID 和版本號碼,請選取 [否]。",
- "installAsManagedMacOSLobApp": "此設定僅適用於 macOS 11 及更高版本。在 macOS 10.15 及更低版本,會安裝應用程式,但不會加以管理。",
- "installContextDropdown": "請選取適當的安裝內容。使用者內容僅會為目標使用者安裝應用程式,裝置內容則會為此裝置上的所有使用者安裝應用程式。",
- "ldapUrl": "此為 LDAP 主機名稱,用戶端可以此取得電子郵件收件者的公用加密金鑰。如果有金鑰可供使用,便會加密電子郵件。支援的格式: - ldap.example.com
\r\n- ldap.example.com:123
\r\n- ldap://ldap.example.com
- ldap://ldap.example.com:123
- ldaps://ldap.example.com
\r\n- ldaps://ldap.example.com:123
",
- "permissionsSettings": "選取相關聯之應用程式的執行階段權限。",
- "policyAssociatedApp": "請為此原則選取要建立關聯的應用程式。",
- "policyConfigurationSettings": "請選取要定義此原則之組態設定時所要使用的方法。",
- "policyDescription": "您可以選擇是否要為此設定原則輸入描述。",
- "policyEnrollmentType": "選擇是否要透過裝置管理或以 Intune SDK 製作的應用程式來管理這些設定。",
- "policyName": "請輸入此設定原則的名稱。",
- "policyPlatform": "請選取要套用此應用程式設定原則的平台。",
- "policyProfileType": "請選取此應用程式設定檔所要套用的裝置設定檔類型",
- "policySMime": "進行 Outlook 的 S/MIME 簽署及加密設定。",
- "sMimeDeployCertsFromIntune": "指定是否從 Intune 傳遞 S/MIME 憑證,以用於 Outlook。\r\nIntune 可以透過公司入口網站,自動將簽署及加密憑證部署給使用者。",
- "sMimeEnable": "指定在撰寫電子郵件時,是否會啟用 S/MIME 控制項",
- "sMimeEnableAllowChange": "請指定是否允許使用者變更 [啟用 S/MIME] 設定。",
- "sMimeEncryptAllEmails": "指定是否所有電子郵件均必須加密。\r\n加密會將資料轉換為加密文字,這樣一來就只有指定的收件者能加以讀取。",
- "sMimeEncryptAllEmailsAllowChange": "請指定是否允許使用者變更 [加密所有電子郵件] 設定。",
- "sMimeEncryptionCertProfile": "指定電子郵件加密的憑證設定檔。",
- "sMimeSignAllEmails": "請指定是否所有電子郵件均必須經過簽署。\r\n數位簽章可驗證電子郵件的真確性,並確保內容不會在傳輸過程中經過竄改。",
- "sMimeSignAllEmailsAllowChange": "指定是否允許使用者變更 [簽署所有電子郵件] 設定。",
- "sMimeSigningCertProfile": "指定電子郵件簽署憑證設定檔。",
- "sMimeUserNotificationType": "這個方法會用來通知使用者必須開啟公司入口網站,以擷取 Outlook S/MIME 憑證。"
- },
- "WindowsQualityUpdateDaysUntilForcedReboot": {
- "oneDay": "1 天",
- "twoDays": "2 天",
- "zeroDays": "0 天"
- },
- "Autopilot": {
- "AssignResourceAccount": {
- "createNewCommandMenu": "新建",
- "createNewResourceAccountInfo": "\r\n請在註冊期間註冊新的資源帳戶。資源帳戶會立即新增到資源帳戶表格,但在裝置註冊完成之前不會生效,且 Surface Hub 訂用帳戶會經過驗證。深入了解資源帳戶
\r\n ",
- "createNewResourceTitle": "建立新的資源帳戶",
- "deviceNameInvalid": "裝置名稱的格式無效",
- "deviceNameRequired": "裝置名稱是必要項",
- "editResourceAccountLabel": "編輯",
- "selectExistingCommandMenu": "選取現有的"
- },
- "Device": {
- "ComputerName": {
- "validFormat": "名稱長度必須在 15 個字元以內,而且只能包含字母 (a-z、A-Z)、數字 (0-9) 和連字號,並且不可只含數字,也不可空白。"
- },
- "Header": {
- "addressableUserName": "使用者易記名稱",
- "azureADDevice": "已建立關聯的 Azure AD 裝置",
- "batch": "群組標籤",
- "dateAssigned": "指派的日期",
- "deviceDisplayName": "裝置名稱",
- "deviceName": "裝置名稱",
- "deviceUseType": "使用裝置類型",
- "enrollmentState": "註冊狀態",
- "intuneDevice": "已建立關聯的 Intune 裝置",
- "lastContacted": "上次連上的",
- "make": "製造商",
- "model": "模型",
- "profile": "指派的設定檔",
- "profileStatus": "設定檔狀態",
- "purchaseOrderId": "訂購單",
- "resourceAccount": "資源帳戶",
- "serialNumber": "序號",
- "userPrincipalName": "使用者"
- }
- },
- "DeviceUseType": {
- "meetingAndPresentation": "會議及簡報",
- "teamCollaboration": "小組共同作業"
- },
- "Devices": {
- "featureDescription": "您可利用 Windows Autopilot 為使用者自訂現成體驗 (OOBE)。",
- "importErrorStatus": "某些裝置未匯入。如需詳細資訊,請按一下這裡。",
- "importPendingStatus": "正在匯入。已耗用時間: {0} 分鐘。此程序最多可花費 {1} 分鐘。"
- },
- "DirectoryService": {
- "activeDirectoryAD": "已加入混合式 Azure AD",
- "activeDirectoryADLabel": "具有 Autopilot 的混合式 Azure AD",
- "azureAD": "已加入 Azure AD",
- "unknownType": "未知的類型"
- },
- "Filter": {
- "enrollmentState": "狀態",
- "profile": "設定檔狀態"
- },
- "OOBE": {
- "AddressableUserName": {
- "validateEmpty": "使用者易記名稱不可以是空白的。"
- },
- "ApplyComputerNameTemplate": {
- "infoBalloon": "建立命名範本,以在註冊過程中將名稱新增到您的裝置。",
- "label": "套用裝置名稱範本"
- },
- "ApplyComputerNameTemplateDisabled": {
- "label": "若是 Autopilot 部署設定檔的 Hybrid Azure AD 加入類型,會使用網域加入設定中所指定的設定為裝置命名。"
- },
- "ComputerNameTemplate": {
- "emptyValue": "MyCompany-%RAND:4%",
- "label": "輸入名稱",
- "noDisallowedChars": "名稱只能包含英數字元、連字號、%SERIAL% 或 %RAND:x%",
- "serialLength": "%SERIAL% 不可超過 7 個字元",
- "validateLessThan15Chars": "名稱必須等於或少於 15 個字元",
- "validateNoSpaces": "電腦名稱不可包含空格",
- "validateNotAllNumbers": "名稱也必須包含字母及 (或) 連字號",
- "validateNotEmpty": "名稱不可為空白",
- "validateOnlyOneMacro": "名稱只能包含一個 %SERIAL% 或 %RAND:x%"
- },
- "ConfigureComputerNameTemplate": {
- "description": "請建立您裝置的唯一名稱。名稱必須等於或少於 15 個字元,而且只能包含字母 (a-z、A-Z)、數字 (0-9) 和連字號。名稱不可只含數字。名稱不可包含空白。使用 %SERIAL% 巨集可新增硬體專屬序號。或者,使用 %RAND:x% 巨集可新增隨機的一串數字,其中 x 等於要新增的位數。"
- },
- "EnableWhiteGlove": {
- "infoBalloon": "啟用按 Windows 鍵 5 次即可執行 OOBE,且無需使用者驗證註冊裝置,並佈建所有系統內容應用程式及設定的功能。當使用者登入時,就會傳遞使用者內容應用程式及設定。",
- "label": "允許預先佈建的部署"
- },
- "HybridAzureADSkipConnectivityCheck": {
- "infoBalloon": "即使未在 OOBE 期間建立網域控制站連線,Autopilot 混合式 Azure AD 聯結流程也會繼續。",
- "label": "略過 AD 連線檢查 (預覽)"
- },
- "accountType": "使用者帳戶類型",
- "accountTypeInfo": "指定使用者是裝置上的系統管理員或標準使用者。請注意,此設定不適用於全域管理員或公司管理員帳戶。因為這些帳戶在 Azure AD 中可以存取所有系統管理功能,所以無法設為標準使用者。",
- "configOOBEInfo": "\r\n為您的 Autopilot 裝置設定全新體驗\r\n
",
- "configureDevice": "部署模式",
- "configureDeviceHintForSurfaceHub2": "Autopilot 僅對 Surface Hub 2 支援自我部署模式。這個模式不會在使用者與註冊的裝置之間建立關聯,因此不需要使用者認證。",
- "configureDeviceHintForWindowsPC": "\r\n 部署模式會控制使用者是否需要提供認證才能佈建裝置。\r\n
\r\n \r\n - \r\n 使用者驅動: 裝置會與註冊裝置的使用者建立關聯,而且必須有使用者認證才能佈建裝置\r\n
\r\n - \r\n 自我部署 (預覽): 裝置不會與註冊裝置的使用者建立關聯,而且佈建裝置不需要使用者認證\r\n
\r\n
",
- "createSurfaceHub2Info": "為您的 Surface Hub 2 裝置進行 Autopilot 註冊設定。根據預設,Autopilot 允許在 OOBE 期間跳過使用者驗證。深入了解 Surface Hub 2 的 Windows Autopilot。",
- "createWindowsPCInfo": "\r\n\r\n下列選項會自動為自我部署模式中的 Autopilot 裝置啟用:\r\n
\r\n\r\n - \r\n 跳過選取公司或住家用途的過程\r\n
\r\n - \r\n 跳過 OEM 註冊和 OneDrive 設定\r\n
\r\n - \r\n 在 OOBE 中跳過使用者驗證\r\n
\r\n
",
- "endUserDevice": "使用者驅動",
- "hideEscapeLink": "隱藏變更帳戶選項",
- "hideEscapeLinkInfo": "用於變更帳戶和重新使用其他帳戶的選項,分別會在公司登入頁面與網域錯誤頁面上的初始裝置安裝期間顯示。若要隱藏這些選項,您必須在 Azure Active Directory 中設定公司商標 (需要 Windows 10 1809 或更新版本或 Windows 11)。",
- "info": "AutoPilot 設定檔的設定,定義了使用者第一次啟動 Windows 時看到的全新體驗。 ",
- "language": "語言 (區域)",
- "languageInfo": "請指定要使用的語言與區域。",
- "licenseAgreement": "Microsoft 軟體授權條款",
- "licenseAgreementInfo": "指定是否要向使用者顯示授權條款。",
- "plugAndForgetDevice": "自我部署 (預覽)",
- "plugAndForgetGA": "自我部署",
- "privacySettingWarning": "執行 Windows 10 1903 版及更新版本或 Windows 11 之裝置的診斷資料收集預設值已變更。",
- "privacySettings": "隱私權設定",
- "privacySettingsInfo": "指定是否要向使用者顯示隱私權設定。",
- "showCortanaConfigurationPage": "Cortana 設定",
- "showCortanaConfigurationPageInfo": "示範將在啟動期間介紹 Cortana 設定。",
- "skipEULAWarning": "關於隱藏授權條款的重要資訊",
- "skipKeyboardSelection": "自動設定鍵盤",
- "skipKeyboardSelectionInfo": "若為 true 且已設定語言,即跳過鍵盤選取頁面。",
- "subtitle": "AutoPilot 設定檔",
- "title": "首次體驗 (OOBE)",
- "useOSDefaultLanguage": "預設作業系統",
- "userSelect": "使用者選取"
- },
- "Sync": {
- "lastRequestedLabel": "上次同步要求",
- "lastSuccessfulLabel": "上次成功同步",
- "syncInProgress": "正在同步。請稍後回來查看。",
- "syncInitiated": "AutoPilot 設定同步已起始。",
- "syncSettingsTitle": "同步 AutoPilot 設定"
- },
- "Title": {
- "devices": "Windows AutoPilot 裝置"
- },
- "Tooltips": {
- "addressableUserName": "在裝置設定期間顯示的問候姓名。",
- "azureADDevice": "前往裝置詳細資料了解已建立關聯的裝置。N/A 表示未與任何裝置建立關聯。",
- "batch": "可用於識別裝置群組的字串屬性。Intune 的 [群組標籤] 欄位會對應到 Azure AD 裝置上的 OrderID 屬性。",
- "dateAssigned": "設定檔指派給裝置時的時間戳記。",
- "deviceDisplayName": "為裝置設定唯一名稱。在加入混合式 Azure AD 的部署中會忽略此名稱。裝置名稱仍是來自混合式 Azure AD 裝置的網域加入設定檔。",
- "deviceName": "當有人嘗試探索及連線到裝置時的顯示名稱。",
- "deviceUseType": " 裝置會根據您的選項來設定。您稍後可以隨時在設定中變更。\r\n \r\n - 若用於會議及簡報,Windows Hello 不會開啟,且資料會在每個工作階段之後移除。\r\n
\r\n - 若用於小組共同作業,Windows Hello 則會開啟,且系統會儲存設定檔以便快速登入
\r\n
",
- "enrollmentState": "指定是否註冊裝置。",
- "intuneDevice": "前往裝置詳細資料了解已建立關聯的裝置。N/A 表示未與任何裝置建立關聯。",
- "lastContacted": "裝置上次連線時的時間戳記。",
- "make": "所選裝置的製造商。",
- "model": "所選裝置的型號",
- "profile": "指派給裝置的設定檔名稱。",
- "profileStatus": "指定設定檔是否指派給裝置。",
- "purchaseOrderId": "購買訂單識別碼",
- "resourceAccount": "裝置的身分識別或使用者主體名稱 (UPN)。",
- "serialNumber": "所選裝置的序號。",
- "userPrincipalName": "在裝置設定期間預先填入驗證的使用者。"
- },
- "allDevices": "所有裝置",
- "allDevicesAlreadyAssignedError": "Autopilot 設定檔已經指派至所有裝置。",
- "assignFailedDescription": "無法更新 {0} 的指派。",
- "assignFailedTitle": "無法更新 Autopilot 設定檔指派。",
- "assignSuccessDescription": "已成功更新 {0} 的指派。",
- "assignSuccessTitle": "已成功更新 Autopilot 設定檔指派。",
- "assignSufaceHub2ProfileNextStep": "此部署的後續步驟",
- "assignSurfaceHub2ProfileToDeviceGroup": "1. 將此設定檔指派給至少一個裝置群組",
- "assignSurfaceHub2ProfileToResourceAccount": "2. 指派資源帳戶給每個您部署此設定檔的目標 Surface Hub 裝置",
- "assignedDevicesCount": "指派的裝置",
- "assignedDevicesResourceAccountDescription": "若要將此設定檔部署到裝置,您必須為裝置指派資源帳戶。請一次選取一部裝置以指派現有資源帳戶,或新建一個。 深入了解資源帳戶
",
- "assignedDevicesResourceAccountStatusBarMessage": "這個表格只會列出已指派給此設定檔的 Surface Hub 2 裝置。",
- "assigningDescription": "正在更新 {0} 的指派。",
- "assigningTitle": "正在更新 Autopilot 設定檔指派。",
- "cannotDeleteMessage": "此設定檔已指派至群組。您必須取消此設定檔在所有群組的指派,才能予以刪除。",
- "cannotDeleteTitle": "無法刪除 {0}",
- "createdDateTime": "已建立",
- "deleteMessage": "若刪除此 AutoPilot 設定檔,任何指派至此設定檔的裝置都會顯示為 [未指派]。",
- "deleteMessageWithPolicySet": "{0} 包含在一或多個原則集中。如果刪除 {0},您將無法再透過這些原則集加以指派。",
- "deleteTitle": "確定要刪除此設定檔嗎?",
- "description": "描述",
- "deviceType": "裝置類型",
- "deviceUse": "裝置用途",
- "directoryServiceHintForSurfaceHub2": " \r\n Autopilot 僅支援已加入 Azure AD 的 Surface Hub 2 裝置。請指定組織中的裝置如何加入 Active Directory (AD)。\r\n
\r\n \r\n - \r\n 已加入 Azure AD: 僅雲端,而沒有內部部署的 Windows Server Active Directory。\r\n
\r\n
\r\n ",
- "directoryServiceHintForWindowsPC": "\r\n \r\n 指定裝置如何加入您組織的 Active Directory (AD):\r\n
\r\n \r\n - \r\n Azure AD 已加入: 僅限內部部署未使用 Windows Server Active Directory 的雲端\r\n
\r\n
\r\n",
- "getAssignedDevicesCountError": "擷取已指派的裝置計數時發生錯誤。",
- "getAssignmentsError": "擷取 Autopilot 設定檔指派時發生錯誤。",
- "harvestDeviceId": "將所有目標裝置轉換為 Autopilot",
- "harvestDeviceIdDescription": "根據預設,此設定檔只可套用至從 Autopilot 服務同步的 Autopilot 裝置。",
- "harvestDeviceIdInfo": "\r\n 若要將所有還未註冊到 Autopilot 的目標裝置註冊到 Autopilot,請選取 [是]。當已註冊的裝置下次經歷 Windows 全新體驗 (OOBE) 時,也會經歷所指派的 Autopilot 情境。\r\n
\r\n 請注意,有一些 Autopilot 情境需要的 Windows 具有最低組建要求。您的裝置必須安裝要求的最低組建,才能通過這些情境。\r\n
\r\n 移除此設定檔不會從 Autopilot 移除受影響的裝置。若要從 Autopilot 移除裝置,請使用 [Windows Autopilot 裝置] 檢視。\r\n",
- "harvestDeviceIdWarning": "在轉換後,只有從 Autopilot 裝置清單刪除 Autopilot 裝置,才能將其還原。",
- "holoLensCommandMenu": "HoloLens",
- "info": "Windows AutoPilot 部署設定檔可讓您為裝置自訂全新體驗。",
- "invalidProfileNameMessage": "不允許字元 \"{0}\"",
- "joinTypeLabel": "加入 Azure AD 的身分",
- "lastModifiedDateTime": "上次修改日期:",
- "name": "名稱",
- "noAutopilotProfile": "沒有任何 AutoPilot 設定檔",
- "notEnoughPermissionAssignedError": "您的權限不足,無法將此設定檔指派給選取的一或多個群組。請連絡您的系統管理員。",
- "profile": "設定檔",
- "resourceAccountStatusBarMessage": "部署了這個設定檔的每部 Surface Hub 2 裝置都需要一個資源帳戶。按一下以深入了解。",
- "selectServices": "選取要加入的目錄服務裝置",
- "surfaceHub2CommandMenu": "Surface Hub 2",
- "surfaceHub2SCommandMenu": "Surface Hub 2S",
- "userAffinityLabel": "部署模式",
- "windowsPCCommandMenu": "Windows 電腦",
- "directoryServiceLabel": "加入 Azure AD 成為"
- },
- "AppInformationTab": {
- "Error": {
- "multipleChildApps": "macOS LOB 應用程式只能在上傳的套件包含單一應用程式時,安裝為受控應用程式。"
- },
- "Info": {
- "AppStoreUrl": {
- "android": "輸入 Google Play 商店中應用程式清單的連結。例如:",
- "androidLink": "https://play.google.com/store/apps/details?id=com.microsoft.office.outlook",
- "windows": "輸入 Microsoft Store 中應用程式清單的連結。例如:",
- "windowsLink": "https://www.microsoft.com/en-us/p/microsoft-to-do-lists-tasks-reminders/9nblggh5r558"
- },
- "appPackageFile": "包含您應用程式的檔案,其格式可供側載到裝置上。有效的套件類型有: Android (.apk)、iOS (.ipa)、macOS (.intunemac)、Windows (.msi、.appx、.appxbundle、.msix 及 .msixbundle)。",
- "applicableDeviceType": "選取可安裝此應用程式的裝置類型。",
- "category": "將應用程式分類,讓使用者更方便在公司入口網站中排序及尋找。您可以選擇多個類別。",
- "categoryLink": "https://docs.microsoft.com/en-us/intune/apps/apps-add#create-and-edit-categories-for-apps",
- "description": "協助您的裝置使用者了解應用程式的內容及 (或) 應用程式的功能。使用者會在公司入口網站看見此描述。",
- "developer": "開發應用程式的公司或個人名稱。此資訊將會顯示給登入系統管理中心的人員看。",
- "displayVersion": "應用程式的版本。使用者可在公司入口網站看見此資訊。",
- "infoUrl": "將人員連結至具有應用程式詳細資訊的網站或文件。此資訊 URL 將會顯示給公司入口網站中的使用者看。",
- "isFeatured": "精選應用程式會放在公司入口網站的醒目處,以便使用者快速取得。",
- "learnMore": "深入了解",
- "logo": "上傳與應用程式建立關聯的標誌。此標誌在整個公司入口網站中都會顯示在應用程式旁邊。",
- "macOSDmgAppPackageFile": "包含您應用程式的檔案,其格式可在裝置上側載。有效的套件類型: .dmg.",
- "minOperatingSystem": "選取可安裝應用程式的最舊作業系統版本。如果您將應用程式指派給具有更舊作業系統的裝置,將不會安裝該應用程式。",
- "name": "新增應用程式的名稱。此名稱會顯示在 Intune 應用程式清單中,以及顯示給公司入口網站中的使用者看。",
- "notes": "新增應用程式的其他相關附註。附註將會顯示給登入系統管理中心的人員看。",
- "owner": "組織中管理授權或可供洽詢此應用程式的人員名稱。此名稱將會顯示給登入系統管理中心的人員看。",
- "packageName": "請連絡裝置製造商以取得應用程式的套件名稱。範例套件名稱: com.example.app",
- "privacyUrl": "為想要深入了解應用程式隱私權設定及條款的人員提供連結。此隱私權 URL 將會顯示給公司入口網站中的使用者看。",
- "publisher": "散發應用程式的開發人員或公司名稱。使用者可在公司入口網站看見此資訊。",
- "selectApp": "在 App Store 中搜尋要使用 Intune 部署的 iOS 市集應用程式。",
- "useManagedBrowser": "如有必要,當使用者開啟 Web 應用程式時,其會在受 Intune 保護的瀏覽器中開啟,例如 Microsoft Edge 或 Intune Managed Browser。此設定同時適用於 iOS 和 Android 裝置。",
- "useManagedBrowserLink": "https://docs.microsoft.com/en-us/intune/apps/app-configuration-managed-browser",
- "win32AppPackageFile": "包含您應用程式的檔案,其格式可在裝置上側載。有效的套件類型: .intunewin。"
- },
- "descriptionPreview": "預覽",
- "descriptionRequired": "需要描述。",
- "editDescription": "編輯描述",
- "name": "應用程式資訊",
- "nameForOfficeSuitApp": "應用程式套件資訊"
- },
+ "Columns": {
+ "codeType": "程式碼類型",
+ "returnCode": "傳回碼"
+ },
+ "bladeTitle": "傳回碼",
+ "gridAriaLabel": "傳回碼",
+ "header": "指定傳回碼以指出安裝後行為:",
+ "onAddAnnounceMessage": "傳回新增了程式碼的第 {1} 個項目 (共 {0} 個項目)",
+ "onDeleteSuccess": "傳回碼 {0} 刪除成功",
+ "returnCodeAlreadyUsedValidation": "傳回碼已使用。",
+ "returnCodeMustBeIntegerValidation": "傳回碼應為整數。",
+ "returnCodeShouldBeAtLeast": "傳回碼至少應為 {0}。",
+ "returnCodeShouldBeAtMost": "傳回碼最多應為 {0}。",
+ "selectorLabel": "傳回碼"
+ },
"NotificationMessage": {
"NotificationMessageTemplatesTab": {
"arabic": "阿拉伯文",
@@ -10516,84 +10079,599 @@
"localeLabel": "地區設定",
"isDefaultLocale": "是預設"
},
- "Win32Program": {
- "DeviceRestartBehaviorOptions": {
- "allow": "應用程式安裝可能會強制裝置重新啟動",
- "basedOnReturnCode": "根據傳回碼決定行為",
- "force": "Intune 用戶端將會強制裝置重新啟動",
- "suppress": "無特定動作"
- },
- "RunAsAccountOptions": {
- "system": "系統",
- "user": "使用者"
- },
- "bladeTitle": "程式",
- "deviceRestartBehavior": "裝置重新啟動行為",
- "deviceRestartBehaviorTooltip": "請選取應用程式成功安裝後的裝置重新啟動行為。選取 [根據傳回碼決定行為] 會根據傳回的代碼組態設定重新啟動裝置。選取 [無特定動作] 會在 MSI 式應用程式的應用程式安裝期間隱藏裝置重新啟動。選取 [App install may force a device restart] 會允許應用程式在不隱藏重新啟動的情況下完成。選取 [Intune will force a mandatory device restart] 會一律在成功安裝應用程式後重新啟動裝置。",
- "header": "請指定用於安裝和解除安裝此應用程式的命令:",
- "installCommand": "安裝命令",
- "installCommandMaxLengthErrorMessage": "安裝命令不得超過允許的長度上限 1024 個字元。",
- "installCommandTooltip": "用於安裝此應用程式的完整安裝命令列。",
- "runAs32Bit": "在 64 位元用戶端上以 32 位元處理序的形式執行安裝和解除安裝命令",
- "runAs32BitTooltip": "選取 [是] 會在 64 位元用戶端上以 32 位元處理序的形式安裝和解除安裝應用程式。選取 [否] (預設) 會在 64 位元用戶端上以 64 位元處理序的形式安裝和解除安裝應用程式。32 位元用戶端一律會使用 32 位元處理序。",
- "runAsAccount": "安裝行為",
- "runAsAccountTooltip": "選取 [系統] 可為所有使用者安裝此應用程式 (如果支援)。選取 [使用者] 可為裝置上的登入使用者安裝此應用程式。對於要達到兩種目標的 MSI 應用程式,變更會使更新和解除安裝在原始安裝時套用到裝置的值還原前,都無法成功完成。",
- "selectorLabel": "程式",
- "uninstallCommand": "解除安裝命令",
- "uninstallCommandTooltip": "用於將此應用程式解除安裝的完整解除安裝命令列。"
- },
- "OutlookAppConfigSettings": {
- "AllowUserToChangeSetting": {
- "title": "允許使用者變更設定",
- "tooltip": "指定是否允許使用者變更設定。"
- },
- "AllowWorkAccounts": {
- "title": "只允許公司或學校帳戶",
- "tooltip": " 若啟用此設定,使用者將無法在 Outlook 內新增個人電子郵件及儲存體帳戶。若使用者將個人帳戶新增至 Outlook,系統會提示使用者移除該個人帳戶。若使用者不移除個人帳戶,就無法新增公司或學校帳戶。"
- },
- "BlockExternalImages": {
- "title": "封鎖外部影像",
- "tooltip": "啟用封鎖外部影像時,應用程式會禁止下載裝載於網際網路且內嵌在郵件內文中的影像。若設為未設定,預設應用程式設定會設為 [關閉]"
- },
- "ConfigureEmail": {
- "title": "進行電子郵件帳戶設定"
- },
- "DefaultAppSignatureSetting": {
- "Tooltip": {
- "android": "預設應用程式簽章指出應用程式在撰寫訊息時,是否要使用「取得 Android 版 Outlook」作為預設簽章。若將此設定設為 [關閉],將不會使用此預設簽章; 但使用者可以新增自己的簽章。\r\n\r\n若將此設定設為 [未設定],預設應用程式設定將設為 [開啟]。",
- "iOS": "預設應用程式簽章指出應用程式在撰寫訊息時,是否要使用「取得 iOS 版 Outlook」作為預設簽章。若將此設定設為 [關閉],將不會使用此預設簽章; 但使用者可以新增自己的簽章。\r\n\r\n若將此設定設為 [未設定],預設應用程式設定將設為 [開啟]。"
- },
- "title": "預設應用程式簽章"
- },
- "OfficeFeedReplies": {
- "title": "探索摘要",
- "tooltip": "探索摘要會顯示您最常存取的 Office 檔案。根據預設,當使用者的 Delve 啟用時,此摘要會啟用。當設定為未設定時,預設應用程式設定會設為 [開啟]。"
- },
- "OrganizeMailByThread": {
- "title": "依執行緒整理郵件",
- "tooltip": "Outlook 中的預設行為是將郵件交談組合為執行緒交談檢視。如果停用此設定,Outlook 會分別顯示每個郵件,而且不會依執行緒將其分組。"
- },
- "PlayMyEmails": {
- "title": "播放我的電子郵件",
- "tooltip": "根據預設,應用程式不會啟用 [播放我的電子郵件] 功能,但會透過收件匣中的橫幅,向符合資格的使用者推廣此功能。當設定為 [關閉] 時,應用程式中將不會對符合資格的使用者推廣此功能。即便此功能的設定為 [關閉],使用者仍可選擇從應用程式中手動啟用 [播放我的電子郵件]。當設定為 [未設定] 時,預設的應用程式設定為 [開啟],將會向符合資格的使用者推廣此功能。"
- },
- "SuggestedReplies": {
- "title": "建議的回覆",
- "tooltip": "當您開啟訊息時,Outlook 可能會在訊息下方建議回覆。如果您選取建議的回覆,可以在傳送前編輯回覆。"
- },
- "SyncCalendars": {
- "title": "同步行事曆",
- "tooltip": "設定使用者是否可將 Outlook 行事曆同步到原生行事曆應用程式與資料庫。"
- },
- "TextPredictions": {
- "title": "文字預測",
- "tooltip": "當您撰寫訊息時,Outlook 可以建議字詞與片語。當 Outlook 提供建議時,撥動即可接受。當未設定時,預設應用程式設定將設為 [開啟]。"
+ "WindowsQualityUpdateProfile": {
+ "Details": {
+ "DaysUntilForcedReboot": {
+ "label": "已施行重新開機前要等候的天數"
+ },
+ "Description": {
+ "label": "描述"
+ },
+ "Name": {
+ "label": "名稱"
+ },
+ "QualityUpdateRelease": {
+ "label": "當裝置 OS 版本低於以下版本時,加快品質更新的安裝:"
+ },
+ "bladeTitle": "Windows 10 和更新版本的品質更新 (預覽)",
+ "loadError": "載入失敗!"
+ },
+ "TabName": {
+ "qualityUpdateSettings": "設定"
+ },
+ "infoBoxText": "除了現有的 Windows 10 及更新版本的更新通道原則外,目前所提供專用品質更新控制項能夠為低於指定修補程式等級的裝置加快品質更新。日後將推出其他控制項。",
+ "warningBoxText": "雖然加速軟體更新有助於在必要時,縮短達成合規性的時間,但對於終端使用者的產能,將會有較大影響。終端使用者在上班時間內執行重新啟動的機會,可能會明顯增加。"
+ },
+ "TermsOfUse": {
+ "Languages": {
+ "addLanguage": "Add language",
+ "af": "Afrikaans",
+ "am": "Amharic",
+ "arSA": "Arabic (Saudi Arabia)",
+ "as": "Assamese",
+ "az": "Azerbaijani",
+ "be": "Belarusian",
+ "bg": "Bulgarian",
+ "bn": "Bangla",
+ "bnIN": "Bangla (India)",
+ "bs": "Bosnian",
+ "ca": "Catalan",
+ "caESvalencia": "Valencian (Spain)",
+ "cs": "Czech",
+ "cy": "Welsh",
+ "da": "Danish",
+ "de": "German",
+ "default": "Default",
+ "defaultDetailsTag": "{0} (Default)",
+ "el": "Greek",
+ "en": "English",
+ "enGB": "English (United Kingdom)",
+ "es": "Spanish",
+ "esMX": "Spanish (Mexico)",
+ "et": "Estonian",
+ "eu": "Basque",
+ "fa": "Persian",
+ "fi": "Finnish",
+ "fil": "Filipino",
+ "fr": "French",
+ "frCA": "French (Canada)",
+ "ga": "Irish",
+ "gd": "Scottish Gaelic",
+ "gl": "Galician",
+ "gu": "Gujarati",
+ "ha": "Hausa",
+ "he": "Hebrew",
+ "hi": "Hindi",
+ "hr": "Croatian",
+ "hu": "Hungarian",
+ "hy": "Armenian",
+ "id": "Indonesian",
+ "ig": "Igbo",
+ "is": "Icelandic",
+ "it": "Italian",
+ "ja": "Japanese",
+ "ka": "Georgian",
+ "kk": "Kazakh",
+ "km": "Khmer",
+ "kn": "Kannada",
+ "ko": "Korean",
+ "kok": "Konkani",
+ "kuArab": "Central Kurdish (Arabic)",
+ "ky": "Kyrgyz",
+ "languageOptions": "Language Options",
+ "lb": "Luxembourgish",
+ "lo": "Lao",
+ "lt": "Lithuanian",
+ "lv": "Latvian",
+ "mi": "Maori",
+ "mk": "Macedonian",
+ "ml": "Malayalam",
+ "mn": "Mongolian",
+ "mr": "Marathi",
+ "ms": "Malay",
+ "mt": "Maltese",
+ "ne": "Nepali",
+ "nl": "Dutch",
+ "nnNO": "Norwegian, Nynorsk (Norway)",
+ "no": "Norwegian",
+ "notSpecified": "Language not specified",
+ "nso": "Sesotho sa Leboa",
+ "or": "Odia",
+ "paArabPK": "Punjabi (Islamic Republic of Pakistan)",
+ "paIN": "Punjabi (India)",
+ "pl": "Polish",
+ "prs": "Dari",
+ "ptBR": "Portuguese (Brazil)",
+ "ptPT": "Portuguese (Portugal)",
+ "quz": "Quechua",
+ "ro": "Romanian",
+ "ru": "Russian",
+ "rw": "Kinyarwanda",
+ "sd": "Sindhi",
+ "si": "Sinhala",
+ "sk": "Slovak",
+ "sl": "Slovenian",
+ "sq": "Albanian",
+ "srCyrlBA": "Serbian (Cyrillic, Bosnia and Herzegovina)",
+ "srCyrlRS": "Serbian (Cyrillic, Serbia)",
+ "srLatnRS": "Serbian (Latin, Serbia)",
+ "sv": "Swedish",
+ "sw": "Kiswahili",
+ "ta": "Tamil",
+ "te": "Telugu",
+ "tg": "Tajik",
+ "th": "Thai",
+ "ti": "Tigrinya",
+ "tk": "Turkmen",
+ "tn": "Setswana",
+ "tr": "Turkish",
+ "tt": "Tatar",
+ "ug": "Uyghur",
+ "uk": "Ukrainian",
+ "ur": "Urdu",
+ "uz": "Uzbek",
+ "vi": "Vietnamese",
+ "wo": "Wolof",
+ "xh": "isiXhosa",
+ "yo": "Yoruba",
+ "zhHans": "Chinese (Simplified)",
+ "zhHant": "Chinese (Traditional)",
+ "zu": "isiZulu"
+ },
+ "AcceptanceExpirationFrequency": {
+ "annually": "Annually",
+ "biannually": "Bi-annually",
+ "monthly": "Monthly",
+ "quarterly": "Quarterly"
},
- "ThemesEnabled": {
- "title": "佈景主題已啟用",
- "tooltip": "指定使用者能否使用自訂視覺效果的佈景主題。"
- }
- },
+ "Wizard": {
+ "AgreementTargetEntityScope": {
+ "NotSelected": {
+ "label": "None selected"
+ },
+ "selectEntityTitle": "Select group",
+ "title": "Select group"
+ },
+ "PolicyFile": {
+ "Languages": {
+ "Empty": {
+ "default": "Select default language",
+ "nonDefault": "Select a language"
+ }
+ },
+ "Validations": {
+ "duplicateLanguage": "Oops, {0} appears to be selected multiple times. Language selection must be unique."
+ }
+ },
+ "PolicyTemplate": {
+ "InfoBox": {
+ "allGuestsAllApps": "A conditional access policy will be created for all guests and all cloud apps. This policy impacts the Azure portal. Once this is created you might be required to sign-out and sign-in.",
+ "allUsersAllApps": "A conditional access policy will be created for all users and all cloud apps. This policy impacts the Azure portal. Once this is created you will be required to sign-out and sign-in.",
+ "custom": "Select the users, groups, and apps that this Terms of Use will be applied to.",
+ "noPolicy": "This terms of use will appear in the grant control list when creating a conditional access policy."
+ }
+ },
+ "Section": {
+ "conditionalAccessSubtitle": "Enforce with conditional access policy templates",
+ "conditionalAccessTitle": "Conditional access",
+ "termsOfUseSubtitle": "Create and upload documents",
+ "termsOfUseTitle": "Terms of use"
+ },
+ "acceptanceDurationInfo": "The terms of use will be enforced immediately and each user will have to re-consent every specified number of days.",
+ "acceptanceDurationLabel": "Duration before re-acceptance required (days)",
+ "acceptanceDurationPlaceholder": "Example: '90'",
+ "acceptanceExpirationFrequencyInfo": "Require users to consent on a recurring basis.",
+ "acceptanceExpirationFrequencyLabel": "Frequency",
+ "acceptanceExpirationStartDateTimeInfo": "The terms of use will be enforced immediately and users will be required to re-consent on this date.",
+ "acceptanceExpirationStartDateTimeLabel": "Expire starting on",
+ "agreementIsPerDeviceAcceptanceRequiredInfo": "The end users will be required to consent to the terms of use on every device.",
+ "agreementIsPerDeviceAcceptanceRequiredLabel": "Require users to consent on every device",
+ "agreementIsViewingBeforeAcceptanceRequiredInfo": "The end users will be required to view the terms of use prior to accepting.",
+ "agreementIsViewingBeforeAcceptanceRequiredLabel": "Require users to expand the terms of use",
+ "agreementNameInfo": "Name will be used to manage the terms of use within the Azure portal.",
+ "agreementNameLabel": "Name",
+ "agreementNamePlaceholderText": "Example: 'All users terms of use'",
+ "agreementRequirmentLabel": "Required Upon",
+ "agreementTargetEntityLabel": "Users targeted",
+ "agreementUploadPolicyLabel": "Terms of use",
+ "agreementUploadPolicyPlaceholderText": "Upload required PDF",
+ "createButtonLabel": "Create",
+ "createPolicyInfo": "In order to enforce the terms of use, a conditional access policy is required. You can create a conditional access policy targeted to specific users and applications later or use one of the predefined templates.",
+ "createPolicyLabel": "Create a policy",
+ "isAcceptanceExpirationEnabledInfo": "The terms of use will be enforced immediately and all users will be forced to re-consent on a schedule.",
+ "isAcceptanceExpirationEnabledLabel": "Expire consents",
+ "pdfValidationInvalidFileFormat": "The file must be in the .pdf format.",
+ "policyFilesInfo": "Upload a PDF file containing the terms of use that your end users must accept. Based on end user preferences they will be shown the appropriate language or if not match the default language will be shown.
For end users agreeing on mobile devices, we recommend the PDF font size to be at least 24 pt.
Display name will be the title of the terms of use that is presented to the end user.",
+ "policyFilesLabel": "Terms of use document",
+ "policyTemplateInfo": "These templates are pre configured conditional access policies that are targeted to specific users and applications.",
+ "policyTemplateLabel": "Policy templates",
+ "title": "New terms of use"
+ }
+ },
+ "TACSettings": {
+ "edgeSettings": "Edge 組態設定",
+ "edgeWindowsDataProtectionSettings": "Edge (Windows) 資料保護設定 - 預覽",
+ "edgeWindowsSettings": "Microsoft Edge (Windows) 設定 - 預覽",
+ "generalAppConfig": "一般應用程式設定",
+ "generalSettings": "一般組態設定",
+ "outlookSMIMEConfig": "Outlook S/MIME 設定",
+ "outlookSettings": "Outlook 組態設定",
+ "sMIME": "S/MIME"
+ },
+ "MicrosoftEdgeChannel": {
+ "beta": "Beta",
+ "dev": "Dev",
+ "stable": "Stable"
+ },
+ "WipPolicySettings": {
+ "addNetworkBoundary": "新增網路界限",
+ "addNetworkBoundaryButton": "新增網路界限...",
+ "allowWindowsSearch": "允許 Windows Search 搜尋已加密的公司資料與市集應用程式",
+ "authoritativeIpRanges": "企業 IP 範圍清單具權威性 (不會自動偵測)",
+ "authoritativeProxyServers": "企業 Proxy 伺服器清單具權威性 (不會自動偵測)",
+ "boundaryType": "界限類型",
+ "cloudResources": "雲端資源",
+ "corporateIdentity": "公司身分識別",
+ "dataRecoveryCert": "上傳資料修復代理 (DRA) 憑證以允許復原已加密的資料",
+ "editNetworkBoundary": "編輯網路界限",
+ "enrollmentState": "註冊狀態",
+ "iPv4Ranges": "IPv4 範圍",
+ "iPv6Ranges": "IPv6 範圍",
+ "internalProxyServers": "內部 Proxy 伺服器",
+ "maxInactivityTime": "在裝置閒置後允許的最大時間長度 (分鐘),之後裝置會以 PIN 或密碼鎖定",
+ "maxPasswordAttempts": "允許的驗證失敗次數,之後會抹除裝置",
+ "mdmDiscoveryUrl": "MDM 探索 URL",
+ "mdmRequiredSettingsInfo": "此原則僅適用於 Windows 10 年度更新版及更高版本。此原則使用 Windows 資訊保護 (WIP) 來進行保護。",
+ "minimumPinLength": "設定 PIN 所需的最小字元數",
+ "name": "名稱",
+ "networkBoundariesGridEmptyText": "所有新增的網路界限皆會顯示於此",
+ "networkBoundary": "網路界限",
+ "networkDomainNames": "網路網域",
+ "neutralResources": "中性資源",
+ "passportForWork": "使用 Windows Hello 企業版作為登入 Windows 的方法",
+ "pinExpiration": "指定可以使用 PIN 的時間長度 (天),之後系統會要求使用者予以變更",
+ "pinHistory": "指定可與使用者帳戶相關聯但不可重複使用先前用過的 PIN 數目",
+ "pinLowercaseLetters": "設定 Windows Hello 企業版 PIN 中的小寫字母用法",
+ "pinSpecialCharacters": "設定 Windows Hello 企業版 PIN 中的特殊字元用法",
+ "pinUppercaseLetters": "設定 Windows Hello 企業版 PIN 中的大寫字母用法",
+ "protectUnderLock": "防止 App 在裝置鎖定時存取公司資料。只適用於 Windows 10 行動裝置版",
+ "protectedDomainNames": "受保護的網域",
+ "proxyServers": "Proxy 伺服器",
+ "requireAppPin": "當裝置 PIN 受管理時,停用應用程式 PIN",
+ "requiredSettings": "必要設定",
+ "requiredSettingsInfo": "變更範圍或移除此原則會將公司資料解密。",
+ "revokeOnMdmHandoff": "在裝置註冊 MDM 時撤銷對受保護資料的存取權",
+ "revokeOnUnenroll": "取消註冊時一併撤銷加密金鑰",
+ "rmsTemplateForEdp": "指定要用於 Azure RMS 的範本識別碼",
+ "showWipIcon": "顯示企業資料保護圖示",
+ "type": "類型",
+ "useRmsForWip": "將 Azure RMS 用於 WIP",
+ "value": "值",
+ "weRequiredSettingsInfo": "此原則僅適用於 Windows 10 Creators Update 及更高版本。此原則使用 Windows 資訊保護 (WIP) 與 Windows MAM 來進行保護。",
+ "wipProtectionMode": "Windows 資訊保護模式",
+ "withEnrollment": "有註冊",
+ "withoutEnrollment": "沒有註冊"
+ },
+ "OfficeApplicationAdditionalType": {
+ "projectProRetail": "Project Online Desktop 用戶端",
+ "visioProRetail": "Visio Online 方案 2"
+ },
+ "Countries": {
+ "ae": "阿拉伯聯合大公國",
+ "ag": "安地卡及巴布達",
+ "ai": "安奎拉",
+ "al": "阿爾巴尼亞",
+ "am": "亞美尼亞",
+ "ao": "安哥拉",
+ "ar": "阿根廷",
+ "at": "奧地利",
+ "au": "澳洲",
+ "az": "亞塞拜然",
+ "bb": "巴貝多",
+ "be": "比利時",
+ "bf": "布吉納法索",
+ "bg": "保加利亞",
+ "bh": "巴林",
+ "bj": "貝南",
+ "bm": "百慕達",
+ "bn": "汶萊",
+ "bo": "玻利維亞",
+ "br": "巴西",
+ "bs": "巴哈馬",
+ "bt": "不丹",
+ "bw": "波札那",
+ "by": "白俄羅斯",
+ "bz": "貝里斯",
+ "ca": "加拿大",
+ "cg": "剛果共和國",
+ "ch": "瑞士",
+ "cl": "智利",
+ "cn": "中國",
+ "co": "哥倫比亞",
+ "cr": "哥斯大黎加",
+ "cv": "維德角",
+ "cy": "賽普勒斯",
+ "cz": "捷克共和國",
+ "de": "德國",
+ "dk": "丹麥",
+ "dm": "多米尼克",
+ "do": "多明尼加共和國",
+ "dz": "阿爾及利亞",
+ "ec": "厄瓜多",
+ "ee": "愛沙尼亞",
+ "eg": "埃及",
+ "es": "西班牙",
+ "fi": "芬蘭",
+ "fj": "斐濟",
+ "fm": "密克羅尼西亞聯邦",
+ "fr": "法國",
+ "gb": "英國",
+ "gd": "格瑞那達",
+ "gh": "迦納",
+ "gm": "甘比亞",
+ "gr": "希臘",
+ "gt": "瓜地馬拉",
+ "gw": "幾內亞比索",
+ "gy": "蓋亞那",
+ "hk": "香港",
+ "hn": "宏都拉斯",
+ "hr": "克羅埃西亞",
+ "hu": "匈牙利",
+ "id": "印尼",
+ "ie": "愛爾蘭",
+ "il": "以色列",
+ "in": "印度",
+ "is": "冰島",
+ "it": "義大利",
+ "jm": "牙買加",
+ "jo": "約旦",
+ "jp": "日本",
+ "ke": "肯亞",
+ "kg": "吉爾吉斯",
+ "kh": "柬埔寨",
+ "kn": "聖克里斯多福及尼維斯",
+ "kr": "大韓民國",
+ "kw": "科威特",
+ "ky": "開曼群島",
+ "kz": "哈薩克",
+ "la": "寮人民民主共和國",
+ "lb": "黎巴嫩",
+ "lc": "聖露西亞",
+ "lk": "斯里蘭卡",
+ "lr": "賴比瑞亞",
+ "lt": "立陶宛",
+ "lu": "盧森堡",
+ "lv": "拉脫維亞",
+ "md": "摩爾多瓦共和國",
+ "mg": "馬達加斯加",
+ "mk": "北馬其頓",
+ "ml": "馬利",
+ "mn": "蒙古",
+ "mo": "澳門",
+ "mr": "茅利塔尼亞",
+ "ms": "蒙哲臘",
+ "mt": "馬爾他",
+ "mu": "模里西斯",
+ "mw": "馬拉威",
+ "mx": "墨西哥",
+ "my": "馬來西亞",
+ "mz": "莫三比克",
+ "na": "納米比亞",
+ "ne": "尼日",
+ "ng": "奈及利亞",
+ "ni": "尼加拉瓜",
+ "nl": "荷蘭",
+ "no": "挪威",
+ "np": "尼泊爾",
+ "nz": "紐西蘭",
+ "om": "阿曼",
+ "pa": "巴拿馬",
+ "pe": "祕魯",
+ "pg": "巴布亞紐幾內亞",
+ "ph": "菲律賓",
+ "pk": "巴基斯坦",
+ "pl": "波蘭",
+ "pt": "葡萄牙",
+ "pw": "帛琉",
+ "py": "巴拉圭",
+ "qa": "卡達",
+ "ro": "羅馬尼亞",
+ "ru": "俄羅斯",
+ "sa": "沙烏地阿拉伯",
+ "sb": "索羅門群島",
+ "sc": "塞席爾",
+ "se": "瑞典",
+ "sg": "新加坡",
+ "si": "斯洛維尼亞",
+ "sk": "斯洛伐克",
+ "sl": "獅子山",
+ "sn": "塞內加爾",
+ "sr": "蘇利南",
+ "st": "聖多美普林西比",
+ "sv": "薩爾瓦多",
+ "sz": "史瓦濟蘭",
+ "tc": "土克斯及開科斯群島",
+ "td": "查德",
+ "th": "泰國",
+ "tj": "塔吉克",
+ "tm": "土庫曼",
+ "tn": "突尼西亞",
+ "tr": "土耳其",
+ "tt": "千里達及托巴哥",
+ "tw": "台灣",
+ "tz": "坦尚尼亞",
+ "ua": "烏克蘭",
+ "ug": "烏干達",
+ "us": "美國",
+ "uy": "烏拉圭",
+ "uz": "烏茲別克",
+ "vc": "聖文森及格瑞那丁",
+ "ve": "委內瑞拉",
+ "vg": "英屬維京群島",
+ "vn": "越南",
+ "ye": "葉門",
+ "za": "南非",
+ "zw": "辛巴威"
+ },
+ "OfficeUpdateChannel": {
+ "current": "目前通道",
+ "deferred": "半年企業通道",
+ "firstReleaseCurrent": "目前通道 (預覽)",
+ "firstReleaseDeferred": "半年企業通道 (預覽)",
+ "monthlyEnterprise": "每月企業通道",
+ "placeHolder": "選取一項"
+ },
+ "AppProtection": {
+ "allAppTypes": "以所有應用程式類型為目標",
+ "androidPlatformLabel": "Android",
+ "appsInAndroidWorkProfile": "Android 工作設定檔中的應用程式",
+ "appsOnIntuneManagedDevices": "Intune 受控裝置上的應用程式",
+ "appsOnUnmanagedDevices": "非受控裝置上的應用程式",
+ "iOSPlatformLabel": "iOS/iPadOS",
+ "iosAndroidMacPlatformLabel": "iOS、Android、Mac",
+ "iosAndroidPlatformLabel": "iOS、Android",
+ "macPlatformLabel": "Mac",
+ "notAvailable": "無法使用",
+ "windows10PlatformLabel": "Windows 10 及更新版本",
+ "withEnrollment": "有註冊",
+ "withoutEnrollment": "沒有註冊"
+ },
+ "InstallContextType": {
+ "device": "裝置",
+ "deviceContext": "裝置內容",
+ "user": "使用者",
+ "userContext": "使用者內容"
+ },
+ "ProactiveRemediations": {
+ "Create": {
+ "Basics": {
+ "DescriptionMultiLineTextBox": {
+ "label": "描述",
+ "placeholder": "輸入描述"
+ },
+ "NameTextBox": {
+ "label": "名稱",
+ "placeholder": "輸入名稱"
+ },
+ "PublisherTextBox": {
+ "label": "發行者",
+ "placeholder": "輸入發行者"
+ },
+ "VersionTextBox": {
+ "label": "版本"
+ },
+ "headerDescription": "依據您編寫的偵測及補救指令碼,建立新的自訂指令碼套件。"
+ },
+ "ScopeTags": {
+ "headerDescription": "選取一或多個群組以指派指令碼套件。"
+ },
+ "Settings": {
+ "DetectionScriptMultiLineTextBox": {
+ "label": "偵測指令碼",
+ "placeholder": "輸入指令碼文字",
+ "requiredValidationMessage": "請輸入偵測指令碼"
+ },
+ "EnforceScriptSignatureCheckOptionPicker": {
+ "label": "強制執行指令碼簽章檢查"
+ },
+ "LoggedOnCredentialsOptionPicker": {
+ "label": "使用登入認證執行此指令碼"
+ },
+ "RemediationScript": {
+ "infoBox": "此指令碼因為沒有補救指令碼,所以只會在「只偵測」模式下執行。"
+ },
+ "RemediationScriptMultiLineTextBox": {
+ "label": "補救指令碼",
+ "placeholder": "輸入指令碼文字"
+ },
+ "RunIn64BitPSOptionPicker": {
+ "label": "在 64 位元的 PowerShell 中執行指令碼"
+ },
+ "ScriptMultiLineTextBox": {
+ "base64EncodingValidationMessage": "指令碼無效。指令碼中使用了一或多個無效的字元。"
+ },
+ "headerDescription": "從您撰寫的指令碼建立自訂指令碼套件。根據預設,指令碼會每天在指派的裝置上執行。",
+ "infoBox": "這是唯讀的指令碼。系統可能已封鎖此指令碼的某些設定。"
+ },
+ "title": "建立自訂指令碼",
+ "ScriptProperties": {
+ "GridHeaders": {
+ "interval": "間隔",
+ "time": "日期與時間"
+ },
+ "Interval": {
+ "day": "每天重複一次",
+ "days": "每 {0} 天重複一次",
+ "hour": "每小時重複一次",
+ "hours": "每隔 {0} 小時重複一次",
+ "month": "每月重複一次",
+ "months": "每 {0} 個月重複一次",
+ "week": "每週重複一次",
+ "weeks": "每 {0} 週重複一次"
+ },
+ "Time": {
+ "utc": "{0} (UTC)",
+ "utcWithDate": "{1} {0} (UTC)",
+ "withDate": "{0} {1}"
+ }
+ }
+ },
+ "Edit": {
+ "title": "編輯 - {0}"
+ }
+ },
+ "EdgeAppConfig": {
+ "AllowedURLs": {
+ "title": "允許的 URL",
+ "tooltip": "指定會在您使用者處於工作內容時允許的網站。所有其他網站將受到封鎖。您可以選擇設定允許/封鎖清單,但無法同時設定兩者。"
+ },
+ "ApplicationProxyRedirection": {
+ "header": "應用程式 Proxy",
+ "title": "應用程式 Proxy 重新導向",
+ "tooltip": "啟用應用程式 Proxy 重新導向,能讓使用者存取公司連結和內部部署 Web 應用程式。"
+ },
+ "BlockedURLs": {
+ "title": "封鎖的 URL",
+ "tooltip": "指定會在您使用者處於工作內容時封鎖的網站。所有其他網站將不受封鎖。您可以選擇設定允許/封鎖清單,但無法同時設定兩者。"
+ },
+ "Bookmarks": {
+ "header": "受控書籤",
+ "tooltip": "請輸入已加入書籤的 URL 清單,供您的使用者在其工作內容中使用 Microsoft Edge 時利用。",
+ "uRL": "URL"
+ },
+ "HomepageURL": {
+ "header": "受控首頁",
+ "title": "首頁捷徑 URL",
+ "tooltip": "設定首頁捷徑,當使用者在 Microsoft Edge 中開啟新的索引標籤時,這會是他們在搜尋列下方看見的第一個圖示。"
+ },
+ "PersonalContext": {
+ "label": "將受限制網站重新導向至個人內容",
+ "tooltip": "設定是否應允許使用者將他們的個人內容轉換至開放的受限網站。"
+ }
+ },
+ "BooleanActions": {
+ "allow": "允許",
+ "block": "封鎖",
+ "configured": "已設定",
+ "disable": "停用",
+ "dontRequire": "不需要",
+ "enable": "啟用",
+ "hide": "隱藏",
+ "limit": "限制",
+ "notConfigured": "未設定",
+ "require": "需要",
+ "show": "顯示",
+ "yes": "是"
+ },
+ "ArchitectureOptions": {
+ "sixtyFourBit": "64 位元",
+ "thirtyTwoBit": "32 位元"
+ },
+ "WindowsQualityUpdateDaysUntilForcedReboot": {
+ "oneDay": "1 天",
+ "twoDays": "2 天",
+ "zeroDays": "0 天"
+ },
"SoftwareUpdates": {
"BladeTitles": {
"overview": "概觀"
@@ -10800,66 +10878,732 @@
"notScannedYet": "尚未掃描",
"outOfDateIosDevices": "過時的 iOS 裝置"
},
- "ScheduledAction": {
- "Form": {
- "editBlockActionInfo": "所有的合規性原則都必須具有一個封鎖動作。",
- "graceperiod": "排程 (不合規後的天數)",
- "graceperiodInfo": "指定不合規後的天數,在此時間之後,應該為使用者裝置觸發此動作。",
- "subtitle": "指定動作參數",
- "title": "動作參數"
- },
- "List": {
- "gracePeriodDay": "已不合規 {0} 天",
- "gracePeriodDays": "已不合規 {0} 天",
- "gracePeriodHour": "不合規之後的 {0} 小時",
- "gracePeriodHours": "不合規之後的 {0} 小時",
- "gracePeriodMinute": "不合規之後的 {0} 分鐘",
- "gracePeriodMinutes": "不合規之後的 {0} 分鐘",
- "immediately": "立即",
- "schedule": "排程",
- "scheduleInfoBalloon": "不符合規範的已過天數",
- "subtitle": "指定不合規裝置的動作序列",
- "title": "動作"
- },
- "Notification": {
- "additionalEmailLabel": "其他",
- "additionalRecipients": "其他收件者 (透過電子郵件)",
- "additionalRecipientsBladeTitle": "選取其他收件者",
- "emailAddressPrompt": "輸入電子郵件地址 (以逗點分隔)",
- "invalidEmail": "電子郵件地址無效",
- "messageTemplate": "訊息範本",
- "noneSelected": "未選取任何項目",
- "notSelected": "未選取任何項目",
- "numSelected": "已選取 {0} 個",
- "selected": "已選取"
+ "ConfigurationTypes": {
+ "Table": {
+ "androidDeviceOwnerGeneral": "裝置限制 (裝置擁有者)",
+ "androidForWorkGeneral": "裝置限制 (公司設定檔)"
+ },
+ "androidCustom": "自訂",
+ "androidDeviceOwnerGeneral": "裝置限制",
+ "androidDeviceOwnerPkcs": "PKCS 憑證",
+ "androidDeviceOwnerScep": "SCEP 憑證",
+ "androidDeviceOwnerTrustedCertificate": "信任的憑證",
+ "androidDeviceOwnerVpn": "VPN",
+ "androidDeviceOwnerWiFi": "Wi-Fi",
+ "androidEmailProfile": "電子郵件 (僅 Samsung KNOX)",
+ "androidForWorkCustom": "自訂",
+ "androidForWorkEmailProfile": "電子郵件",
+ "androidForWorkGeneral": "裝置限制",
+ "androidForWorkImportedPFX": "PKCS 匯入的憑證",
+ "androidForWorkOemConfig": "OEMConfig",
+ "androidForWorkPKCS": "PKCS 憑證",
+ "androidForWorkSCEP": "SCEP 憑證",
+ "androidForWorkTrustedCertificate": "信任的憑證",
+ "androidForWorkVpn": "VPN",
+ "androidForWorkWiFi": "Wi-Fi",
+ "androidGeneral": "裝置限制",
+ "androidImportedPFX": "PKCS 匯入的憑證",
+ "androidPKCS": "PKCS 憑證",
+ "androidSCEP": "SCEP 憑證",
+ "androidTrustedCertificate": "信任的憑證",
+ "androidVPN": "VPN",
+ "androidWiFi": "Wi-Fi",
+ "androidZebraMx": "MX 設定檔 (僅限 Zebra)",
+ "complianceAndroid": "Android 合規性原則",
+ "complianceAndroidDeviceOwner": "公司擁有且完全受控的專用工作設定檔",
+ "complianceAndroidEnterprise": "個人擁有的工作設定檔",
+ "complianceAndroidForWork": "Android for Work 合規性原則",
+ "complianceIos": "iOS 合規性政策",
+ "complianceMac": "Mac 合規性原則",
+ "complianceWindows10": "Windows 10 及更新版本合規性政策",
+ "complianceWindows10Mobile": "Windows 10 行動裝置版合規性原則",
+ "complianceWindows8": "Windows 8 合規性原則",
+ "complianceWindowsPhone": "Windows Phone 合規性原則",
+ "exchangeActiveSync": "Exchange Active Sync",
+ "iosCustom": "自訂",
+ "iosDerivedCredentialAuthenticationConfiguration": "衍生的 PIV 認證",
+ "iosDeviceFeatures": "裝置功能",
+ "iosEDU": "教育",
+ "iosEducation": "教育",
+ "iosEmailProfile": "電子郵件",
+ "iosGeneral": "裝置限制",
+ "iosImportedPFX": "PKCS 匯入的憑證",
+ "iosPKCS": "PKCS 憑證",
+ "iosPresets": "預設",
+ "iosSCEP": "SCEP 憑證",
+ "iosTrustedCertificate": "信任的憑證",
+ "iosVPN": "VPN",
+ "iosVPNZscaler": "VPN",
+ "iosWiFi": "Wi-Fi",
+ "macCustom": "自訂",
+ "macDeviceFeatures": "裝置功能",
+ "macEndpointProtection": "Endpoint Protection",
+ "macExtensions": "延伸模組",
+ "macGeneral": "裝置限制",
+ "macImportedPFX": "PKCS 匯入的憑證",
+ "macSCEP": "SCEP 憑證",
+ "macTrustedCertificate": "信任的憑證",
+ "macVPN": "VPN",
+ "macWiFi": "Wi-Fi",
+ "settingsCatalog": "設定目錄 (預覽)",
+ "unsupported": "不支援",
+ "windows10AdministrativeTemplate": "系統管理範本 (預覽)",
+ "windows10Atp": "適用於端點的 Microsoft Defender (執行 Windows 10 及更新版本的電腦裝置)",
+ "windows10Custom": "自訂",
+ "windows10DesktopSoftwareUpdate": "軟體更新",
+ "windows10DeviceFirmwareConfigurationInterface": "裝置韌體設定介面",
+ "windows10EmailProfile": "電子郵件",
+ "windows10EndpointProtection": "Endpoint Protection",
+ "windows10EnterpriseDataProtection": "Windows 資訊保護",
+ "windows10General": "裝置限制",
+ "windows10ImportedPFX": "PKCS 匯入的憑證",
+ "windows10Kiosk": "資訊亭",
+ "windows10NetworkBoundary": "網路界限",
+ "windows10PKCS": "PKCS 憑證",
+ "windows10PolicyOverride": "覆寫群組原則",
+ "windows10SCEP": "SCEP 憑證",
+ "windows10SecureAssessmentProfile": "教育設定檔",
+ "windows10SharedPC": "共用多重使用者裝置",
+ "windows10TeamGeneral": "裝置限制 (Windows 10 團隊版)",
+ "windows10TrustedCertificate": "信任的憑證",
+ "windows10VPN": "VPN",
+ "windows10WiFi": "Wi-Fi",
+ "windows10WiFiCustom": "Wi-Fi 自訂",
+ "windows8General": "裝置限制",
+ "windows8SCEP": "SCEP 憑證",
+ "windows8TrustedCertificate": "信任的憑證",
+ "windows8VPN": "VPN",
+ "windows8WiFi": "Wi-Fi 匯入",
+ "windowsDeliveryOptimization": "傳遞最佳化",
+ "windowsDomainJoin": "加入網域",
+ "windowsEditionUpgrade": "版本升級和模式切換",
+ "windowsIdentityProtection": "身分識別保護",
+ "windowsPhoneCustom": "自訂",
+ "windowsPhoneEmailProfile": "電子郵件",
+ "windowsPhoneGeneral": "裝置限制",
+ "windowsPhoneImportedPFX": "PKCS 匯入的憑證",
+ "windowsPhoneSCEP": "SCEP 憑證",
+ "windowsPhoneTrustedCertificate": "信任的憑證",
+ "windowsPhoneVPN": "VPN",
+ "IosUpdate": "iOS 更新原則"
+ },
+ "OfficeSuiteAppsTab": {
+ "acceptLicenseOnBehalfOfUsersLabel": "代表使用者接受 Microsoft 軟體授權條款",
+ "appSuiteConfigurationLabel": "應用程式套件設定",
+ "appSuiteInformationLabel": "應用程式套件資訊",
+ "appsToBeInstalledLabel": "要隨套件一起安裝的應用程式",
+ "architectureLabel": "架構",
+ "architectureTooltip": "定義在裝置上安裝的是 32 位元或 64 位元的 Microsoft 365 應用程式。",
+ "configurationDesignerLabel": "設定設計工具",
+ "configurationFileLabel": "組態檔",
+ "configurationSettingsFormatLabel": "組態設定格式",
+ "configureAppSuiteLabel": "設定應用程式套件",
+ "configuredLabel": "已設定",
+ "currentVersionLabel": "目前的版本",
+ "currentVersionTooltip": "這是此套件中目前設定的 Office 版本。設定並儲存較新版本時,將會更新此值。",
+ "enableMicrosoftSearchAsDefaultTooltip": "請安裝背景服務,協助判斷裝置上是否已安裝適用於 Google Chrome 的 Bing 專用 Microsoft 搜尋延伸模組。",
+ "enterXmlDataLabel": "輸入 XML 資料",
+ "languagesLabel": "語言",
+ "languagesTooltip": "根據預設,Intune 會以作業系統的預設語言安裝 Office。請選擇您要安裝的任何其他語言。",
+ "learnMoreText": "深入了解",
+ "newUpdateChannelTooltip": "定義使用新功能更新應用程式的頻率。",
+ "noCurrentVersionText": "沒有目前的版本",
+ "noLanguagesSelectedLabel": "未選取任何語言",
+ "notConfiguredLabel": "未設定",
+ "propertiesLabel": "屬性",
+ "removeOtherVersionsLabel": "移除其他版本",
+ "removeOtherVersionsTooltip": "選取 [是] 以從使用者裝置移除其他 Office (MSI) 版本。",
+ "selectOfficeAppsLabel": "選取 Office 應用程式",
+ "selectOfficeAppsTooltip": "請選取要隨套件一起安裝的 Office 365 應用程式。",
+ "selectOtherOfficeAppsLabel": "選取其他 Office 應用程式 (需要授權)",
+ "selectOtherOfficeAppsTooltip": "如果您對這些額外的 Office 應用程式擁有授權,也可將其指派給 Intune。",
+ "specificVersionLabel": "特定版本",
+ "updateChannelLabel": "更新通道",
+ "updateChannelTooltip": "定義使用新功能更新應用程式的頻率。
\r\n每月 - Office 推出最新功能時,即提供給使用者。
\r\n每月企業通道 - 每月第二個星期二,為使用者提供 Office 的最新功能。
\r\n每月 (已設定目標) - 提前查看即將推出的每月通道版本。這是受支援的更新通道,如果其為包含新功能的每月通道版本,通常至少一週前提供。
\r\n半年 - 一年只為使用者提供幾次 Office 的新功能。
\r\n半年 (已設定目標) - 提供試驗使用者與應用程式相容性測試人員測試下一個半年通道的機會。",
+ "useMicrosoftSearchAsDefault": "安裝 Bing 專用 Microsoft 搜尋的背景服務",
+ "useSharedComputerActivationLabel": "使用共用的電腦啟用",
+ "useSharedComputerActivationTooltip": "[共用電腦啟用] 可讓您將 Microsoft 365 應用程式,部署到多位使用者共用的電腦上。在正常的情況下,使用者只能在限定數量的裝置上,安裝及啟用 Microsoft 365 應用程式,例如 5 部電腦。透過 [共用電腦啟用] 使用 Microsoft 365 應用程式不計入此計數限制。",
+ "versionToInstallLabel": "要安裝的版本",
+ "versionToInstallTooltip": "選取應安裝的 Office 版本。",
+ "xLanguagesSelectedLabel": "已選取 {0} 個語言",
+ "xmlConfigurationLabel": "XML 設定"
+ },
+ "EnrollmentRestrictions": {
+ "DeletePayloadLink": {
+ "content": "{0} 包含在一或多個原則集中。如果刪除 {0},您將無法再透過這些原則集加以指派。仍要刪除嗎?",
+ "contentWithError": "{0} 可能包含在一或多個原則集中。如果刪除 {0},您將無法再透過這些原則集加以指派。仍要刪除嗎?",
+ "header": "確定要刪除此限制嗎?"
+ },
+ "DeviceLimit": {
+ "description": "指定使用者可註冊的裝置上限數。",
+ "header": "裝置限制",
+ "info": "定義每個使用者可註冊的裝置數。"
+ },
+ "DeviceType": {
+ "VersionValidation": {
+ "aOSP": "必須為 1.0 或更高版本。",
+ "android": "請輸入有效的版本號碼。範例: 5.0、5.5.1、6.0.0.1",
+ "androidForWork": "請輸入有效的版本號碼。範例: 5.0、5.1.1",
+ "iOS": "請輸入有效的版本號碼。範例: 9.0、10.0、9.0.2",
+ "mac": "輸入有效的版本號碼。範例: 10, 10.10, 10.10.1",
+ "min": "最小值不能低於 {0}",
+ "minMax": "最小版本不可大於最大版本。",
+ "windows": "必須是 10.0 或更高版本。若要允許 8.1 裝置,請保留空白",
+ "windowsMobile": "必須是 10.0 或更高版本。若要允許 8.1 裝置,請保留空白"
+ },
+ "allPlatformsBlocked": "所有裝置平台皆已封鎖。請允許平台註冊,以啟用平台設定。",
+ "blockManufacturerPlaceHolder": "製造商名稱",
+ "blockManufacturersHeader": "封鎖的製造商",
+ "cannotRestrict": "不支援限制",
+ "configurationDescription": "指定裝置註冊時必須符合的平台設定限制。您可以使用合規性政策限制註冊後的裝置。將版本定義為 major.minor.build。只有在公司入口網站註冊的裝置才會套用版本限制。根據預設,Intune 會將裝置分類為個人擁有。若要將裝置分類為公司擁有,需要執行其他動作。",
+ "configurationDescriptionLabel": "深入了解如何設定註冊限制",
+ "configurations": "設定平台",
+ "deviceManufacturer": "裝置製造商",
+ "header": "裝置類型限制",
+ "info": "定義可註冊哪些平台、版本及管理類型。",
+ "manufacturer": "製造商",
+ "max": "最大值",
+ "maxVersion": "版本上限",
+ "min": "最小值",
+ "minVersion": "最小版本",
+ "newPlatforms": "您允許了新平台。請考慮更新平台設定。",
+ "personal": "個人所擁有",
+ "platform": "平台",
+ "platformDescription": "您可以允許註冊下列平台。僅封鎖不受支援的平台。可以使用其他註冊限制來設定允許的平台。",
+ "platformSettings": "平台設定",
+ "platforms": "選取平台",
+ "platformsSelected": "選取了 {0} 個平台",
+ "type": "類型",
+ "versions": "版本",
+ "versionsRange": "允許最小/最大範圍:",
+ "windowsTooltip": "透過行動裝置管理來限制註冊。不限制 PC 代理程式的安裝。只支援 Windows 10 和 Windows 11 版本。將版本保留空白即可允許 Windows 8.1。"
+ },
+ "Priority": {
+ "saved": "已成功儲存限制的優先順序。"
+ },
+ "Row": {
+ "announce": "優先順序: {0},名稱: {1},已指派: {2}"
+ },
+ "Table": {
+ "deployed": "已部署",
+ "name": "名稱",
+ "priority": "優先順序"
},
- "block": "標記裝置不合規",
- "lockDevice": "鎖定裝置 (本機動作)",
- "lockDeviceWithPasscode": "鎖定裝置 (本機動作)",
- "noAction": "沒有任何動作",
- "noActionRow": "沒有任何動作,請選取 [新增] 以新增動作",
- "pushNotification": "傳送推播通知給終端使用者",
- "remoteLock": "從遠端鎖定不符合規範的裝置",
- "removeSourceAccessProfile": "移除來源存取設定檔",
- "retire": "淘汰不符合規範的裝置",
- "wipe": "抹除",
- "emailNotification": "傳送電子郵件給使用者"
- },
- "WIPPinRequirements": {
- "WipLowercaseCharacterPinRequirements": {
- "allow": "允許在 PIN 中使用小寫字母",
- "notAllow": "不允許在 PIN 中使用小寫字母",
- "requireAtLeastOne": "要求在 PIN 中至少使用一個小寫字母"
- },
- "WipSpecialCharacterPinRequirements": {
- "allow": "允許在 PIN 中使用特殊字元",
- "notAllow": "不允許在 PIN 中使用特殊字元",
- "requireAtLeastOne": "要求在 PIN 中至少使用一個特殊字元"
- },
- "WipUppercaseCharacterPinRequirements": {
- "allow": "允許在 PIN 中使用大寫字母",
- "notAllow": "不允許在 PIN 中使用大寫字母",
- "requireAtLeastOne": "要求在 PIN 中至少使用一個大寫字母"
- }
- }
+ "Type": {
+ "limit": "裝置限制的限制",
+ "type": "裝置類型的限制"
+ },
+ "allUsers": "所有使用者",
+ "androidRestrictions": "Android 限制",
+ "create": "建立限制",
+ "defaultLimitDescription": "這項預設裝置上限會以最低優先順序套用至所有使用者,而不論群組成員資格。",
+ "defaultTypeDescription": "這項預設裝置類型限制會以最低優先順序套用至所有使用者,而不論群組成員資格。",
+ "defaultWhfbDescription": "這是預設 Windows Hello 企業版設定,會以最低優先順序套用至所有使用者,而不論群組成員資格。",
+ "deleteMessage": "受影響的使用者會受到指派的次一優先順序限制的限制,若未指派任何其他限制,則會是預設的限制。",
+ "deleteTitle": "確定要刪除 {0} 限制嗎?",
+ "descriptionHint": "短文,描述以限制的設定作為特性的商務用途或限制等級。",
+ "edit": "編輯限制",
+ "info": "裝置必須符合指派到其使用者的最高優先順序註冊限制。您可以拖曳裝置限制來變更其優先順序。預設限制對所有使用者而言都是最低優先順序,並且會治理使用者未參與的註冊。預設限制可以編輯但無法刪除。",
+ "iosRestrictions": "iOS 限制",
+ "mDM": "MDM",
+ "macRestrictions": "MacOS 限制",
+ "maxVersion": "最大版本",
+ "minVersion": "最小版本",
+ "nameHint": "這將是可見的主要屬性,用以識別所設定的限制。",
+ "noAssignmentsStatusBar": "將限制指派到至少一個群組。按一下 [屬性]。",
+ "notFound": "找不到限制。可能已將其刪除。",
+ "personallyOwned": "個人擁有的裝置",
+ "restriction": "限制",
+ "restrictionLowerCase": "限制",
+ "restrictionType": "Restriction Type",
+ "selectType": "選取限制類型",
+ "selectValidation": "請選取平台",
+ "typeHint": "選擇裝置類型限制可限制裝置的屬性。選擇裝置限制的限制,則可限制每位使用者的裝置數目。",
+ "typeRequired": "需要限制類型。",
+ "winPhoneRestrictions": "Windows Phone 限制",
+ "windowsRestrictions": "Windows 限制"
+ },
+ "Titles": {
+ "ChromeOs": {
+ "devices": "Chrome OS 裝置"
+ },
+ "ManagedDesktop": {
+ "adminContacts": "系統管理連絡人",
+ "appPackaging": "應用程式封裝",
+ "devices": "裝置",
+ "feedback": "意見反應",
+ "gettingStarted": "開始使用",
+ "messages": "訊息",
+ "onlineResources": "線上資源",
+ "serviceRequests": "服務要求",
+ "settings": "設定",
+ "tenantEnrollment": "租用戶註冊"
+ },
+ "actions": "不符合規定時所採取的動作",
+ "advancedExchangeSettings": "Exchange 線上設定",
+ "advancedThreatProtection": "適用於端點的 Microsoft Defender",
+ "allApps": "所有應用程式",
+ "allDevices": "所有裝置",
+ "androidFotaDeployments": "Android FOTA 部署",
+ "appBundles": "應用程式套件組合",
+ "appCategories": "應用程式類別",
+ "appConfigPolicies": "應用程式設定原則",
+ "appInstallStatus": "應用程式安裝狀態",
+ "appLicences": "應用程式授權",
+ "appProtectionPolicies": "應用程式保護原則",
+ "appProtectionStatus": "應用程式保護狀態",
+ "appSelectiveWipe": "應用程式選擇性抹除",
+ "appleVppTokens": "Apple VPP 權杖",
+ "apps": "應用程式",
+ "assign": "指派",
+ "assignedPermissions": "指派的權限",
+ "assignedRoles": "指派的角色",
+ "autopilotDeploymentReport": "Autopilot 部署 (預覽)",
+ "brandingAndCustomization": "自訂",
+ "cartProfiles": "購物車設定檔",
+ "certificateConnectors": "憑證連接器",
+ "chromeEnterprise": "Chrome Enterprise",
+ "compliancePolicies": "合規性政策",
+ "complianceScriptManagement": "指令碼",
+ "complianceScriptManagementPreview": "指令碼 (預覽)",
+ "complianceSettings": "合規性政策設定",
+ "conditionStatements": "條件陳述式",
+ "conditions": "位置",
+ "configMgr": "Microsoft Endpoint Configuration Manager",
+ "configurationProfiles": "組態設定檔",
+ "configurationProfilesPreview": "組態設定檔 (預覽)",
+ "connectorsAndTokens": "連接器與權杖",
+ "corporateDeviceIdentifiers": "公司裝置識別碼",
+ "customAttributes": "自訂屬性",
+ "customNotifications": "自訂通知",
+ "deploymentSettings": "部署設定",
+ "derivedCredentials": "衍生認證",
+ "deviceActions": "裝置動作",
+ "deviceCategories": "裝置類別",
+ "deviceCleanUp": "裝置清除規則",
+ "deviceEnrollmentManagers": "裝置註冊管理員",
+ "deviceExecutionStatus": "裝置狀態",
+ "deviceLimitEnrollmentRestrictions": "註冊裝置限制",
+ "deviceTypeEnrollmentRestrictions": "註冊裝置平台限制",
+ "devices": "裝置",
+ "discoveredApps": "探索到的應用程式",
+ "embeddedSIM": "eSIM 行動數據設定檔 (預覽)",
+ "enrollDevices": "註冊裝置",
+ "enrollmentFailures": "註冊失敗",
+ "enrollmentNotifications": "註冊通知 (預覽)",
+ "enrollmentRestrictions": "註冊限制",
+ "exchangeActiveSync": "Exchange ActiveSync",
+ "exchangeServiceConnectors": "Exchange 服務連接器",
+ "failuresForFeatureUpdates": "功能更新失敗 (預覽)",
+ "failuresForQualityUpdates": "Windows 快速更新失敗 (預覽)",
+ "featureFlighting": "功能正式發行前小眾測試",
+ "featureUpdateDeployments": "Windows 10 和更新版本的功能更新 (預覽)",
+ "flighting": "正式發行前小眾測試",
+ "fotaUpdate": "韌體無線更新",
+ "groupPolicy": "系統管理範本",
+ "groupPolicyAnalytics": "群組原則分析",
+ "helpSupport": "說明及支援",
+ "helpSupportReplacement": "說明及支援 ({0})",
+ "iOSAppProvisioning": "iOS 應用程式佈建設定檔",
+ "incompleteUserEnrollments": "未完成的使用者註冊",
+ "intuneRemoteAssistance": "遠端協助 (預覽)",
+ "iosUpdates": "更新 iOS/iPadOS 的原則",
+ "legacyPcManagement": "舊版電腦管理",
+ "macOSSoftwareUpdate": "更新 macOS 的原則",
+ "macOSSoftwareUpdateAccountSummaries": "macOS 裝置的安裝狀態",
+ "macOSSoftwareUpdateCategorySummaries": "軟體更新摘要",
+ "macOSSoftwareUpdateStateSummaries": "更新",
+ "managedGooglePlay": "受控的 Google Play",
+ "msfb": "商務用 Microsoft 網上商店",
+ "myPermissions": "我的使用權限",
+ "notifications": "通知",
+ "officeApps": "Office 應用程式",
+ "officeProPlusPolicies": "Office 應用程式的原則",
+ "onPremise": "內部部署",
+ "onPremisesConnector": "Exchange ActiveSync 內部部署連接器",
+ "onPremisesDeviceAccess": "Exchange ActiveSync 裝置",
+ "onPremisesManageAccess": "Exchange 內部部署存取",
+ "outOfDateIosDevices": "iOS 裝置的安裝失敗",
+ "overview": "概觀",
+ "partnerDeviceManagement": "夥伴裝置管理",
+ "perUpdateRingDeploymentState": "依更新通道別部署狀態",
+ "permissions": "權限",
+ "platformApps": "{0} 個應用程式",
+ "platformDevices": "{0} 部裝置",
+ "platformEnrollment": "{0} 註冊",
+ "policies": "原則",
+ "previewMDMDevices": "所有受控裝置 (預覽)",
+ "profiles": "設定檔",
+ "properties": "屬性",
+ "reports": "報表",
+ "retireNoncompliantDevices": "淘汰不符合規範的裝置",
+ "retireNoncompliantDevicesPreview": "Retire noncompliant devices (preview)",
+ "role": "角色",
+ "scriptManagement": "指令碼",
+ "securityBaselines": "安全性基準",
+ "serviceToServiceConnector": "Exchange 線上連接器",
+ "shellScripts": "Shell 指令碼",
+ "teamViewerConnector": "TeamViewer 連接器",
+ "telecomeExpenseManagement": "電信費用管理",
+ "tenantAdmin": "租用戶系統管理員",
+ "tenantAdministration": "租用戶系統管理",
+ "termsAndConditions": "條款及條件",
+ "titles": "標題",
+ "troubleshootSupport": "疑難排解 + 支援",
+ "user": "使用者",
+ "userExecutionStatus": "使用者狀態",
+ "warranty": "保固廠商",
+ "wdacSupplementalPolicies": "S 模式補充原則",
+ "windows10DriverUpdate": "Windows 10 和更新版本的驅動程式更新 (預覽)",
+ "windows10QualityUpdate": "Windows 10 和更新版本的品質更新 (預覽)",
+ "windows10UpdateRings": "Windows 10 及更新版本的更新通道",
+ "windows10XPolicyFailures": "Windows 10X 原則失敗",
+ "windowsEnterpriseCertificate": "Windows Enterprise 憑證",
+ "windowsManagement": "PowerShell 指令碼",
+ "windowsSideLoadingKeys": "Windows 側載金鑰",
+ "windowsSymantecCertificate": "Windows DigiCert 憑證",
+ "windowsThreatReport": "威脅代理程式狀態"
+ },
+ "ScopeTypes": {
+ "allDevices": "所有裝置",
+ "allUsers": "所有使用者",
+ "allUsersAndDevices": "所有使用者與所有裝置",
+ "selectedGroups": "選取的群組"
+ },
+ "OfficeApplicationType": {
+ "access": "Access",
+ "bing": "以 Microsoft 搜尋為預設",
+ "excel": "Excel",
+ "groove": "OneDrive (Groove)",
+ "lync": "商務用 Skype",
+ "oneDrive": "OneDrive 電腦版",
+ "oneNote": "OneNote",
+ "outlook": "Outlook",
+ "powerPoint": "PowerPoint",
+ "publisher": "Publisher",
+ "teams": "Teams",
+ "word": "Word"
+ },
+ "ApplicableDeviceType": {
+ "iPad": "iPad",
+ "iPhoneAndIPod": "iPhone 和 iPod"
+ },
+ "Assignment": {
+ "AutoUpdateMode": {
+ "default": "預設",
+ "header": "更新優先順序",
+ "postponed": "已延後",
+ "priority": "高優先順序"
+ },
+ "DeliveryOptimizationPriority": {
+ "backgroundNormal": "背景",
+ "displayText": "{0} 中的內容下載",
+ "foreground": "前景",
+ "header": "傳遞最佳化優先順序"
+ },
+ "RestartGracePeriod": {
+ "allowSnooze": "允許使用者延遲重新啟動通知",
+ "countdownDialog": "選取要再重新啟動前,顯示重新啟動倒數對話方塊的時間 (分鐘)",
+ "durationInMinutes": "裝置重新啟動寬限期 (分鐘)",
+ "snoozeDurationInMinutes": "選取延遲持續時間 (分鐘)"
+ },
+ "SoftwareInstallationTime": {
+ "TimeZone": {
+ "label": "時區",
+ "local": "裝置時區",
+ "utc": "UTC"
+ },
+ "dateAndTimeLabel": "日期和時間",
+ "deadlineTimeColumnLabel": "安裝期限",
+ "deadlineTimeDatePickerErrorMessage": "選取的日期必須晚於可用日期",
+ "deadlineTimeLabel": "應用程式安裝期限",
+ "defaultTime": "盡快",
+ "infoText": "除非您在下方指定可用時間,否則此應用程式會在部署後立即可用。如果這是必要的應用程式,您可以指定安裝期限。",
+ "specificTime": "特定日期與時間",
+ "startTimeColumnLabel": "可用性",
+ "startTimeDatePickerErrorMessage": "選取的日期必須在期限日期之前",
+ "startTimeLabel": "應用程式可用性"
+ },
+ "restartGracePeriodHeader": "重新啟動寬限期",
+ "restartGracePeriodLabel": "裝置重新啟動寬限期",
+ "summaryTitle": "終端使用者體驗"
+ },
+ "EnrollmentType": {
+ "devicesWithEnrollment": "受控裝置",
+ "devicesWithoutEnrollment": "受管理的應用程式"
+ },
+ "PolicySet": {
+ "appManagement": "應用程式管理",
+ "assignments": "指派",
+ "basics": "基本",
+ "deviceEnrollment": "裝置註冊",
+ "deviceManagement": "裝置管理",
+ "scopeTags": "範圍標籤",
+ "appConfigurationTitle": "應用程式設定原則",
+ "appProtectionTitle": "應用程式保護原則",
+ "appTitle": "應用程式",
+ "iOSAppProvisioningTitle": "iOS 應用程式佈建設定檔",
+ "deviceLimitRestrictionTitle": "裝置限制",
+ "deviceTypeRestrictionTitle": "裝置類型限制",
+ "enrollmentStatusSettingTitle": "註冊狀態頁面",
+ "windowsAutopilotDeploymentProfileTitle": "Windows autopilot 部署設定檔",
+ "deviceComplianceTitle": "裝置合規性政策",
+ "deviceConfigurationTitle": "裝置組態設定檔",
+ "powershellScriptTitle": "PowerShell 指令碼"
+ },
+ "AzureIAMCommon": {
+ "CountryNames": {
+ "countryNameNR": "諾魯",
+ "countryNameBH": "巴林",
+ "countryNameZA": "南非",
+ "countryNameJO": "約旦",
+ "countryNameSD": "蘇丹",
+ "countryNameNU": "紐埃島",
+ "countryNameCZ": "捷克共和國",
+ "countryNameLT": "立陶宛",
+ "countryNameTK": "托克勞群島",
+ "countryNameEC": "厄瓜多",
+ "countryNameVU": "萬那杜",
+ "countryNameUG": "烏干達",
+ "countryNameLI": "列支敦斯登",
+ "countryNameHK": "香港特別行政區",
+ "countryNameGH": "迦納",
+ "countryNameSA": "沙烏地阿拉伯",
+ "countryNamePG": "巴布亞紐幾內亞",
+ "countryNameBW": "波札那",
+ "countryNameDG": "地牙哥加西亞島",
+ "countryNameIN": "印度",
+ "countryNameHN": "宏都拉斯",
+ "countryNameRO": "羅馬尼亞",
+ "countryNameKZ": "哈薩克",
+ "countryNameLC": "聖露西亞",
+ "countryNameGE": "喬治亞",
+ "countryNameTT": "千里達及托巴哥",
+ "countryNameMP": "北馬利安納群島",
+ "countryNameMV": "馬爾地夫",
+ "countryNameFI": "芬蘭",
+ "countryNameNO": "挪威",
+ "countryNameEE": "愛沙尼亞",
+ "countryNameVE": "委內瑞拉",
+ "countryNameUZ": "烏茲別克",
+ "countryNameME": "蒙特內哥羅",
+ "countryNameTJ": "塔吉克",
+ "countryNameAW": "荷屬阿魯巴",
+ "countryNameFR": "法國",
+ "countryNameOM": "阿曼",
+ "countryNameAO": "安哥拉",
+ "countryNameIT": "義大利",
+ "countryNameAZ": "亞塞拜然",
+ "countryNameKG": "吉爾吉斯",
+ "countryNameWF": "瓦利斯及福杜納群島",
+ "countryNameTL": "東帝汶",
+ "countryNameFK": "福克蘭群島",
+ "countryNameGY": "蓋亞那",
+ "countryNameSS": "南蘇丹",
+ "countryNameMM": "緬甸",
+ "countryNameHT": "海地",
+ "countryNameSY": "敘利亞",
+ "countryNameMD": "摩爾多瓦",
+ "countryNameVC": "聖文森及格瑞那丁",
+ "countryNameID": "印尼",
+ "countryNameRE": "留尼旺島",
+ "countryNameER": "厄利垂亞",
+ "countryNameMK": "北馬其頓",
+ "countryNameTG": "多哥",
+ "countryNamePF": "法屬玻里尼西亞",
+ "countryNameKY": "開曼群島",
+ "countryNameIO": "英屬印度洋領地",
+ "countryNameRU": "俄羅斯",
+ "countryNameMA": "摩洛哥",
+ "countryNameAU": "澳洲",
+ "countryNameBO": "玻利維亞",
+ "countryNameVA": "教廷 (梵諦岡)",
+ "countryNameVG": "英屬維爾京群島",
+ "countryNameFM": "密克羅尼西亞",
+ "countryNameAQ": "南極洲",
+ "countryNameZM": "尚比亞",
+ "countryNameBR": "巴西",
+ "countryNameIS": "冰島",
+ "countryNamePE": "秘魯",
+ "countryNameBG": "保加利亞",
+ "countryNamePR": "波多黎各",
+ "countryNameGI": "直布羅陀",
+ "countryNameBS": "巴哈馬",
+ "countryNameJE": "澤西島",
+ "countryNameMO": "澳門特別行政區",
+ "countryNameRW": "盧安達",
+ "countryNameAS": "美屬薩摩亞",
+ "countryNameBQ": "波奈、聖佑達修斯和沙巴",
+ "countryNameMF": "法屬聖馬丁",
+ "countryNameTM": "土庫曼",
+ "countryNameML": "馬利",
+ "countryNameTO": "東加",
+ "countryNameNC": "新喀里多尼亞群島",
+ "countryNameAC": "亞森欣島",
+ "countryNameBN": "汶萊",
+ "countryNameBD": "孟加拉",
+ "countryNameMW": "馬拉威",
+ "countryNameGM": "甘比亞",
+ "countryNameGA": "加彭",
+ "countryNameCA": "加拿大",
+ "countryNameSH": "聖赫勒拿島",
+ "countryNameYT": "馬約特",
+ "countryNameMN": "蒙古",
+ "countryNamePA": "巴拿馬",
+ "countryNameCM": "喀麥隆",
+ "countryNameNE": "尼日",
+ "countryNameCW": "庫拉索",
+ "countryNameJP": "日本",
+ "countryNameCY": "賽普勒斯",
+ "countryNameCD": "剛果民主共和國",
+ "countryNameTN": "突尼西亞",
+ "countryNameTR": "土耳其",
+ "countryNameWS": "薩摩亞",
+ "countryNameSE": "瑞典",
+ "countryNameXK": "科索沃",
+ "countryNameKH": "柬埔寨",
+ "countryNamePL": "波蘭",
+ "countryNameDZ": "阿爾及利亞",
+ "countryNameLR": "賴比瑞亞",
+ "countryNameSO": "索馬利亞",
+ "countryNameDM": "多米尼克",
+ "countryNameEG": "埃及",
+ "countryNameGF": "法屬圭亞那",
+ "countryNameNZ": "紐西蘭",
+ "countryNamePS": "巴勒斯坦政府",
+ "countryNameIL": "以色列",
+ "countryNameSL": "獅子山",
+ "countryNameGR": "希臘",
+ "countryNameNG": "奈及利亞",
+ "countryNameMR": "茅利塔尼亞",
+ "countryNameVI": "美屬維京群島",
+ "countryNameGQ": "赤道幾內亞",
+ "countryNameMX": "墨西哥",
+ "countryNameDJ": "吉布地",
+ "countryNameGN": "幾內亞",
+ "countryNameCN": "中國",
+ "countryNameMZ": "莫三比克",
+ "countryNameBV": "布威島",
+ "countryNameNF": "諾福克島",
+ "countryNameTZ": "坦尚尼亞",
+ "countryNameAI": "安奎拉",
+ "countryNameGS": "南喬治亞與南三明治群島",
+ "countryNameRS": "塞爾維亞",
+ "countryNameCC": "科克斯(基靈)群島",
+ "countryNameNA": "納米比亞",
+ "countryNameDE": "德國",
+ "countryNameCG": "剛果共和國",
+ "countryNameKW": "科威特",
+ "countryNameMH": "馬紹爾群島",
+ "countryNameVN": "越南",
+ "countryNameBY": "白俄羅斯",
+ "countryNameMY": "馬來西亞",
+ "countryNameST": "聖多美和普林西比",
+ "countryNameLS": "賴索托",
+ "countryNameBI": "浦隆地",
+ "countryNameTD": "查德",
+ "countryNameCX": "聖誕島",
+ "countryNameIR": "伊朗",
+ "countryNameTV": "吐瓦魯",
+ "countryNameGW": "幾內亞比索",
+ "countryNameUA": "烏克蘭",
+ "countryNameCU": "古巴",
+ "countryNameCO": "哥倫比亞",
+ "countryNameNI": "尼加拉瓜",
+ "countryNameHR": "克羅埃西亞",
+ "countryNameSC": "塞席爾",
+ "countryNameNL": "荷蘭",
+ "countryNameUM": "美國本土外小島嶼",
+ "countryNameIM": "曼島",
+ "countryNameFJ": "斐濟",
+ "countryNameSR": "蘇利南",
+ "countryNameGT": "瓜地馬拉",
+ "countryNameSM": "聖馬利諾",
+ "countryNameLA": "寮國",
+ "countryNameGB": "英國",
+ "countryNameBB": "巴貝多",
+ "countryNameSI": "斯洛維尼亞",
+ "countryNameAM": "亞美尼亞",
+ "countryNameAR": "阿根廷",
+ "countryNamePM": "聖皮埃與密克隆群島",
+ "countryNameTF": "法屬南半球及南極陸地",
+ "countryNameDO": "多明尼加共和國",
+ "countryNameZW": "辛巴威",
+ "countryNameMQ": "馬丁尼克",
+ "countryNamePT": "葡萄牙",
+ "countryNameCF": "中非共和國",
+ "countryNameBE": "比利時",
+ "countryNameKM": "葛摩",
+ "countryNameLY": "利比亞",
+ "countryNameIE": "愛爾蘭",
+ "countryNameKP": "北韓",
+ "countryNameGG": "根息",
+ "countryNameSK": "斯洛伐克",
+ "countryNameTC": "土克斯及開科斯群島",
+ "countryNameNP": "尼泊爾",
+ "countryNameBF": "布吉納法索",
+ "countryNameYE": "葉門",
+ "countryNameBA": "波士尼亞赫塞哥維納",
+ "countryNameGP": "瓜地洛普",
+ "countryNameMS": "蒙哲臘",
+ "countryNameCL": "智利",
+ "countryNameIQ": "伊拉克",
+ "countryNameSJ": "挪威屬斯瓦巴及尖棉群島",
+ "countryNameAX": "奧蘭群島",
+ "countryNameKE": "肯亞",
+ "countryNameGU": "關島",
+ "countryNameBM": "百慕達",
+ "countryNameFO": "法羅群島",
+ "countryNameBL": "聖巴泰勒米",
+ "countryNameLB": "黎巴嫩",
+ "countryNameJM": "牙買加",
+ "countryNameAF": "阿富汗",
+ "countryNameES": "西班牙",
+ "countryNameMC": "摩納哥",
+ "countryNameSG": "新加坡",
+ "countryNameAL": "阿爾巴尼亞",
+ "countryNameSN": "塞內加爾",
+ "countryNameSZ": "史瓦濟蘭",
+ "countryNameBZ": "貝里斯",
+ "countryNameCI": "科特迪瓦 (象牙海岸)",
+ "countryNameTW": "台灣",
+ "countryNameUY": "烏拉圭",
+ "countryNameCK": "庫克群島",
+ "countryNameTH": "泰國",
+ "countryNameHM": "赫德島及麥唐納群島",
+ "countryNameGD": "格瑞那達",
+ "countryNameUS": "美國",
+ "countryNameAT": "奧地利",
+ "countryNameKR": "大韓民國",
+ "countryNamePK": "巴基斯坦",
+ "countryNameDK": "丹麥",
+ "countryNameSV": "薩爾瓦多",
+ "countryNamePW": "帛琉",
+ "countryNameET": "衣索比亞",
+ "countryNameMG": "馬達加斯加",
+ "countryNameCR": "哥斯大黎加",
+ "countryNameLU": "盧森堡",
+ "countryNameQA": "卡達",
+ "countryNameBT": "不丹",
+ "countryNameSB": "所羅門群島",
+ "countryNameAE": "阿拉伯聯合大公國",
+ "countryNameAD": "安道爾",
+ "countryNameCV": "維德角",
+ "countryNameAG": "安地卡及巴布達",
+ "countryNameMU": "毛里裘斯",
+ "countryNameHU": "匈牙利",
+ "countryNameSX": "荷屬聖馬丁",
+ "countryNameCH": "瑞士",
+ "countryNamePN": "皮特肯群島",
+ "countryNameGL": "格陵蘭",
+ "countryNamePH": "菲律賓",
+ "countryNameMT": "馬耳他",
+ "countryNameKN": "聖基茨和尼維斯",
+ "countryNameLK": "斯里蘭卡",
+ "countryNameKI": "吉里巴斯",
+ "countryNameBJ": "貝南",
+ "countryNameLV": "拉脫維亞",
+ "countryNamePY": "巴拉圭"
+ }
+ }
}
diff --git a/Documentation/Strings-zh.json b/Documentation/Strings-zh.json
index 360f961..7341501 100644
--- a/Documentation/Strings-zh.json
+++ b/Documentation/Strings-zh.json
@@ -1,1842 +1,4 @@
{
- "InstallContextType": {
- "device": "Device",
- "deviceContext": "Device context",
- "user": "User",
- "userContext": "User context"
- },
- "WipPolicySettings": {
- "addNetworkBoundary": "Add network boundary",
- "addNetworkBoundaryButton": "Add network boundary...",
- "allowWindowsSearch": "Allow Windows Search to search encrypted corporate data and Store apps",
- "authoritativeIpRanges": "Enterprise IP Ranges list is authoritative (do not auto-detect)",
- "authoritativeProxyServers": "Enterprise Proxy Servers list is authoritative (do not auto-detect)",
- "boundaryType": "Boundary type",
- "cloudResources": "Cloud resources",
- "corporateIdentity": "Corporate identity",
- "dataRecoveryCert": "Upload a Data Recovery Agent (DRA) certificate to allow recovery of encrypted data",
- "editNetworkBoundary": "Edit network boundary",
- "enrollmentState": "Enrollment state",
- "iPv4Ranges": "IPv4 ranges",
- "iPv6Ranges": "IPv6 ranges",
- "internalProxyServers": "Internal proxy servers",
- "maxInactivityTime": "Maximum amount of time (in minutes) allowed after the device is idle that will cause the device to become PIN or password locked",
- "maxPasswordAttempts": "Number of authentication failures allowed before the device will be wiped",
- "mdmDiscoveryUrl": "MDM discovery URL",
- "mdmRequiredSettingsInfo": "This policy only applies to Windows 10 Anniversary Edition and higher. This policy uses Windows Information Protection (WIP) to apply protection.",
- "minimumPinLength": "Set the minimum number of characters required for the PIN",
- "name": "Name",
- "networkBoundariesGridEmptyText": "Any network boundaries you add will show up here",
- "networkBoundary": "Network boundary",
- "networkDomainNames": "Network domains",
- "neutralResources": "Neutral resources",
- "passportForWork": "Use Windows Hello for Business as a method for signing into Windows",
- "pinExpiration": "Specify the period of time (in days) that a PIN can be used before the system requires the user to change it",
- "pinHistory": "Specify the number of past PINs that can be associated to a user account that can’t be reused",
- "pinLowercaseLetters": "Configure the use of lowercase letters in the Windows Hello for Business PIN",
- "pinSpecialCharacters": "Configure the use of special characters in the Windows Hello for Business PIN",
- "pinUppercaseLetters": "Configure the use of uppercase letters in the Windows Hello for Business PIN",
- "protectUnderLock": "Prevent corporate data from being accessed by apps when the device is locked. Applies only to Windows 10 Mobile",
- "protectedDomainNames": "Protected domains",
- "proxyServers": "Proxy servers",
- "requireAppPin": "Disable app PIN when device PIN is managed",
- "requiredSettings": "Required settings",
- "requiredSettingsInfo": "Changing the scope or removing this policy will decrypt corporate data.",
- "revokeOnMdmHandoff": "Revoke access to protected data when the device enrolls to MDM",
- "revokeOnUnenroll": "Revoke encryption keys on unenroll",
- "rmsTemplateForEdp": "Specify the template ID to use for Azure RMS",
- "showWipIcon": "Show the enterprise data protection icon",
- "type": "Type",
- "useRmsForWip": "Use Azure RMS for WIP",
- "value": "Value",
- "weRequiredSettingsInfo": "This policy only applies to Windows 10 Creators Update and higher. This policy uses Windows Information Protection (WIP) and Windows MAM to apply protection.",
- "wipProtectionMode": "Windows Information Protection mode",
- "withEnrollment": "With enrollment",
- "withoutEnrollment": "Without enrollment"
- },
- "EdgeAppConfig": {
- "AllowedURLs": {
- "title": "Allowed URLs",
- "tooltip": "Specify the sites your users are allowed to access while in their work context. No other sites will be allowed. You may choose to configure either an allowed/blocked list, but not both. "
- },
- "ApplicationProxyRedirection": {
- "header": "Application proxy",
- "title": "Application proxy redirection",
- "tooltip": "Enable App proxy redirection to give users access to corporate links and on-premise web apps."
- },
- "BlockedURLs": {
- "title": "Blocked URLs",
- "tooltip": "Specify the sites that are blocked for your users while in their work context. All other sites will be allowed. You may choose to configure either an allowed/blocked list, but not both. "
- },
- "Bookmarks": {
- "header": "Managed bookmarks",
- "tooltip": "Enter a list of bookmarked URLs for your users to have available when using Microsoft Edge in their work context.",
- "uRL": "URL"
- },
- "HomepageURL": {
- "header": "Managed homepage",
- "title": "Homepage shortcut URL",
- "tooltip": "Configure a homepage shortcut that will appear to users as the first icon beneath the search bar when they open a new tab in Microsoft Edge."
- },
- "PersonalContext": {
- "label": "Redirect restricted sites to personal context",
- "tooltip": "Configure if users should be allowed to transition to their personal context to open restricted sites."
- }
- },
- "AzureIAM": {
- "AdrsUserActionSelectionWarning": {
- "conditions": "Conditions that require device registration are not available with \"Register or join devices\" user action.",
- "message": "Only \"Require multi-factor authentication\" can be used in policies created for the \"Register or join devices\" user action.{0}"
- },
- "AuthContext": {
- "Included": {
- "none": "No cloud apps, actions, or authentication contexts selected",
- "plural": "{0} authentication contexts included",
- "singular": "1 authentication context included"
- },
- "InfoBlade": {
- "createTitle": "Add authentication context",
- "descPlaceholder": "Add description for the authentication context",
- "modifyTitle": "Modify authentication context",
- "namePlaceholder": "Ex. Trusted location, Trusted device, Strong authorization",
- "publishDesc": "Publish to apps will make the authentication context available for apps to use. Publish once you finish configuring Conditional Access policy for the tag. [Learn more][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150966",
- "publishLabel": "Publish to apps",
- "titleDesc": "Configure an authentication context that will be used to protect application data and actions. Use names and descriptions that can be understood by application administrators. [Learn more][1]\n[1]:https://go.microsoft.com/fwlink/?linkid=2150965"
- },
- "Notify": {
- "failure": "Failed to update {0}",
- "modifying": "Modifying {0}",
- "success": "Successfully updated {0}"
- },
- "WhatIf": {
- "selected": "Authentication context included"
- },
- "addNewStepUp": "New authentication context",
- "checkBoxInfo": "Select the authentication contexts this policy will apply to",
- "configure": "Configure authentication contexts",
- "createCA": "Assign Conditional Access policies to the authentication context",
- "dataGrid": "List of authentication contexts",
- "description": "Description",
- "documentation": "Documentation",
- "getStarted": "Get started",
- "label": "Authentication context (preview)",
- "menuLabel": "Authentication context (Preview)",
- "name": "Name",
- "noAuthContextSet": "There are no authentication contexts",
- "noData": "No authentication contexts to display",
- "selectionInfo": "Authentication context is used to secure application data and actions in apps like SharePoint and Microsoft Cloud App Security.",
- "step": "Step",
- "tabDescription": "Manage authentication context to protect data and actions in your apps. [Learn more][1]\n[1]:https://go.microsoft.com/fwlink/?linkid=2150965",
- "tagResources": "Tag resources with an authentication context"
- },
- "AuthenticationStrength": {
- "Mode": {
- "deviceBasedPush": "Microsoft Authenticator (Phone Sign-in)",
- "deviceBasedPushFido2X509Certificate": "Microsoft Authenticator (Phone Sign-in) + Fido 2 + Certificate Based Authentication",
- "deviceBasedPushX509CertificateSingleFactor": "Microsoft Authenticator (Phone Sign-in) + Fido 2 + Certificate Based Authentication (Single Factor)",
- "email": "Email One Time Pass",
- "emailOtp": "Email OTP",
- "federatedMultiFactor": "Federated Multi-Factor",
- "federatedSingleFactor": "Federated single factor",
- "federatedSingleFactorFederatedMultiFactor": "Federated single factor + Federated Multi-Factor",
- "fido2": "FIDO 2 security key",
- "fido2X509CertificateSingleFactor": "FIDO 2 security key + Certificate Based Authentication (Single Factor)",
- "hardwareOath": "Hardware OTP",
- "hardwareOathX509CertificateSingleFactor": "Hardware OTP + Certificate Based Authentication (Single Factor)",
- "microsoftAuthenticatorPSIX509CertificateSingleFactor": "Microsoft Authenticator (Phone Sign-in) + Certificate Based Authentication (Single Factor)",
- "microsoftAuthenticatorPsi": "Microsoft Authenticator (Phone Sign-in)",
- "microsoftAuthenticatorPush": "Microsoft Authenticator (Push Notification)",
- "microsoftAuthenticatorPushX509CertificateSingleFactor": "Microsoft Authenticator (Push Notification) + Certificate Based Authentication (Single Factor)",
- "none": "None",
- "password": "Password",
- "passwordDeviceBasedPush": "Password + Microsoft Authenticator (Phone Sign-in)",
- "passwordFido2": "Password + FIDO 2 security key",
- "passwordHardwareOath": "Password + Hardware OTP",
- "passwordMicrosoftAuthenticatorPSI": "Password + Microsoft Authenticator (Phone Sign-in)",
- "passwordMicrosoftAuthenticatorPush": "Password + Microsoft Authenticator (Push Notification)",
- "passwordSms": "Password + SMS",
- "passwordSoftwareOath": "Password + Software OTP",
- "passwordTemporaryAccessPassMultiUse": "Password + Temporary Access Pass (Multi-use)",
- "passwordTemporaryAccessPassOneTime": "Password + Temporary Access Pass (One-time use)",
- "passwordVoice": "Password + Voice",
- "sms": "SMS",
- "smsSignIn": "SMS sign in",
- "smsX509CertificateSingleFactor": "SMS + Certificate Based Authentication (Single Factor)",
- "softwareOath": "Software OTP",
- "softwareOathX509CertificateSingleFactor": "Software OTP + Certificate Based Authentication (Single Factor)",
- "temporaryAccessPassMultiUse": "Temporary Access Pass (Multi-use)",
- "temporaryAccessPassMultiUseX509CertificateSingleFactor": "Temporary Access Pass (Multi-use) + Certificate Based Authentication (Single Factor)",
- "temporaryAccessPassOneTime": "Temporary Access Pass (One-time use)",
- "temporaryAccessPassOneTimeX509CertificateSingleFactor": "Temporary Access Pass (One-time use) + Certificate Based Authentication (Single Factor)",
- "voice": "Voice",
- "voiceX509CertificateSingleFactor": "Voice + Certificate Based Authentication (Single Factor)",
- "windowsHelloForBusiness": "Windows Hello For Business",
- "x509CertificateMultiFactor": "Certificate Based Authentication (Multi-Factor)",
- "x509CertificateSingleFactor": "Certificate Based Authentication (Single Factor)"
- }
- },
- "CAS": {
- "BuiltinPolicy": {
- "Option": {
- "blockDownloads": "Block downloads (Preview)",
- "monitorOnly": "Monitor only (Preview)",
- "protectDownloads": "Protect downloads (Preview)",
- "useCustomControls": "Use custom policy..."
- },
- "ariaLabel": "Choose the kind of Conditional Access App Control to apply"
- }
- },
- "ChooseApplications": {
- "Grid": {
- "appIdAria": "App ID: {0}"
- },
- "LowerGrid": {
- "ariaLabel": "List of selected cloud apps"
- },
- "UpperGrid": {
- "ariaLabel": "List of cloud apps which match the search term"
- }
- },
- "ChooseLocations": {
- "Validation": {
- "failed": "With \"Selected locations\" you must choose at least one location.",
- "selector": "Choose at least one location"
- }
- },
- "ClientApp": {
- "Clients": {
- "Validation": {
- "failed": "You must select at least one of the following clients"
- }
- }
- },
- "ClientConditionsInfo": {
- "browserAndModern": "This policy only applies to browser and modern authentication apps. To apply the policy to all client apps, enable the client app condition and select all the client apps.",
- "classicExperience": "Since this policy was created, the default client apps configuration has been updated.",
- "legacyAuth": "When not configured, policies now apply to all client apps, including modern and legacy auth."
- },
- "CloudAppFilterBlade": {
- "AssignmentFilter": {
- "header": "Attribute",
- "placeholder": "Choose an attribute"
- },
- "Configure": {
- "infoBalloon": "Configure app filters you want to policy to apply to."
- },
- "NoPermissions": {
- "learnMoreAria": "More about custom security attribute permissions.",
- "message": "You do not have the permissions needed to use custom security attributes."
- },
- "gridHeader": "Using custom security attributes you can use the rule builder or rule syntax text box to create or edit the filter rules. In the preview, only attributes of type String are supported. Attributes of type Integer or Boolean will not be shown.",
- "learnMoreAria": "More information about using the rule builder and syntax text box.",
- "noAttributes": "There are no custom attributes available to filter on. You will need to configure some attributes to employ this filter.",
- "title": "Edit filter (Preview)"
- },
- "CloudAppsUserActions": {
- "any": "Any cloud app or action",
- "infoBalloon": "Cloud app or user action you want to test. For example, 'SharePoint Online'",
- "learnMore": "Control access based on all or specific cloud apps or actions.",
- "learnMoreB2C": "Control access based on all or specific cloud apps.",
- "title": "Cloud apps or actions"
- },
- "CloudappsSelectionBlade": {
- "Excluded": {
- "gridAria": "List of excluded cloud apps"
- },
- "Filter": {
- "configured": "Configured",
- "label": "Edit filter (Preview)",
- "with": "{0} with {1}"
- },
- "Included": {
- "gridAria": "List of included cloud apps"
- },
- "Validation": {
- "authContext": "With \"authentication context\" you must configure at least one sub-item.",
- "selectApps": "\"{0}\" must be configured",
- "selector": "Select at least one app.",
- "userActions": "With \"User actions\" you must configure at least one sub-item."
- }
- },
- "DeviceState": {
- "LearnMore": {
- "message": "Control user access when the device the user is signing-in from is not \"Hybrid Azure AD joined\" or \"marked as compliant\".\n '{0}' has been deprecated. Use '{1}' instead."
- }
- },
- "Errors": {
- "notFound": "The policy was not found or has been deleted.",
- "notFoundDetailed": "The policy \"{0}\" no longer exists. It may have been deleted."
- },
- "NamedLocation": {
- "Form": {
- "CountryLookup": {
- "ariaLabel": "Country lookup method",
- "gps": "Determine location by GPS coordinates",
- "info": "When the location condition of a Conditional Access policy is configured, users will be prompted by the Authenticator app to share their GPS location. ",
- "ip": "Determine location by IP address (IPv4 only)"
- },
- "Header": {
- "new": "New location ({0})",
- "update": "Update location ({0})"
- },
- "IP": {
- "learn": "Configure named location IPv4 and IPv6 ranges.\n[Learn more][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
- },
- "Include": {
- "infoBalloon": "Unknown countries/regions are IP addresses that are not associated with a specific country or region. [Learn more][1]\n\nThis includes:\n* IPv6 addresses\n* IPv4 addresses without a direct mapping\n[1]: https://aka.ms/canamedlocations\n",
- "label": "Include unknown countries/regions"
- },
- "Name": {
- "empty": "Name cannot be empty",
- "placeholder": "Name this location"
- },
- "PrivateLink": {
- "learn": "Create a new named location containing Private Links for Azure AD.\n[Learn more][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
- },
- "Search": {
- "countries": "Search countries",
- "names": "Search names",
- "privateLinks": "Search Private Links"
- },
- "Trusted": {
- "label": "Mark as trusted location"
- },
- "enter": "Enter a new IPv4 or IPv6 range",
- "example": "ex: 40.77.182.32/27 or 2a01:111::/32"
- },
- "Label": {
- "addCountries": "Countries location",
- "addIpRange": "IP ranges location",
- "addPrivateLink": "Azure Private Links"
- },
- "Notification": {
- "Create": {
- "Failed": {
- "description": "Failure in creating new location ({0})",
- "title": "Creation has failed"
- },
- "InProgress": {
- "description": "Creating new location ({0})",
- "title": "Creation in progress"
- },
- "Success": {
- "description": "Success in creating new location ({0})",
- "title": "Creation has succeeded"
- }
- },
- "Delete": {
- "Failed": {
- "description": "Failure in deleting location ({0})",
- "title": "Deletion has failed"
- },
- "InProgress": {
- "description": "Deleting location ({0})",
- "title": "Deletion in progress"
- },
- "Success": {
- "description": "Success in deleting location ({0})",
- "title": "Deletion has succeeded"
- }
- },
- "Update": {
- "Failed": {
- "description": "Failure in updating location ({0})",
- "title": "Updating has failed"
- },
- "InProgress": {
- "description": "Updating location ({0})",
- "title": "Updating in progress"
- },
- "Success": {
- "description": "Success in updating location ({0})",
- "title": "Updating has succeeded"
- }
- }
- },
- "PrivateLinks": {
- "grid": "List of Private Links"
- },
- "Trusted": {
- "title": "Trusted type",
- "trusted": "Trusted"
- },
- "Type": {
- "all": "All types",
- "countries": "Countries",
- "ipRanges": "IP ranges",
- "privateLinks": "Private Links",
- "title": "Location type"
- },
- "iPRangeInvalidError": "Value must be a valid IPv4 or IPv6 range.",
- "iPRangeLinkOrSiteLocalError": "IP network detected as a link local or site local address.",
- "iPRangeOctetError": "IP network must not start with 0 or 255.",
- "iPRangePrefixError": "IP network prefix must be from /{0} to /{1}.",
- "iPRangePrivateError": "IP network detected as a private address."
- },
- "Policies": {
- "Grid": {
- "aria": "List of Conditional Access policies"
- },
- "countText": "{0} out of {1} policies found",
- "countTextSingular": "{0} out of 1 policy found",
- "search": "Search policies"
- },
- "Policy": {
- "Condition": {
- "ServicePrincipalRisk": {
- "description": "Configure service principal risk levels needed for policy to be enforced",
- "infoBalloonContent": "Configure service principal risk to apply the policy to selected risk level(s)",
- "title": "Service principal risk"
- }
- }
- },
- "PolicyControlAuthStrength": {
- "MultiFactorAuthentication": {
- "description": "Combinations of methods that satisfy strong authentication, such as Password + SMS",
- "displayName": "Multi-factor authentication (MFA)"
- },
- "Passwordless": {
- "description": "Passwordless methods that satisfy strong authentication, such as Microsoft Authenticator ",
- "displayName": "Passwordless MFA"
- },
- "PhishingResistant": {
- "description": "Phishing-resistant Passwordless methods for the strongest authentication, such as FIDO2 Security Key",
- "displayName": "Phishing resistant MFA"
- }
- },
- "PolicyControlFedAuthMethod": {
- "certificate": "Certificate authentication",
- "infoBubble": "Specify a required authentication method, that must be satisfied by federation provider, such as ADFS.",
- "multifactor": "Multi-factor authentication",
- "require": "Require federated authentication method (Preview)",
- "whatIfFormat": "{0} - {1}"
- },
- "PolicyState": {
- "off": "Off",
- "on": "On",
- "reportOnly": "Report-only"
- },
- "PolicyTemplates": {
- "Devices": {
- "description": "Select Devices policy template category to gain visibility into devices accessing the network. Ensure compliance and health status before granting access.",
- "name": "Devices"
- },
- "Identities": {
- "description": "Select Identities policy template category to verify and secure each identity with strong authentication across your entire digital estate.",
- "name": "Identities"
- },
- "Summary": {
- "CloudApps": {
- "allCloudApps": "All apps",
- "office365": "Office 365",
- "registerSecurityInfo": "Register security information"
- },
- "Conditions": {
- "androidAndIOS": "Device Platform: Android and IOS",
- "anyDevice": "Any device except Android, IOS, Windows and Mac",
- "anyDeviceStateExceptHybrid": "Any device state except compliant and hybrid Azure AD joined",
- "anyLocation": "Any location except trusted",
- "browserMobileDesktop": "Client apps: Browser, Mobile apps and desktop clients",
- "exchangeActiveSync": "Client Apps: Exchange Active Sync, Other Clients",
- "windowsAndMac": "Device Platform: Windows and Mac"
- },
- "Devices": {
- "anyDevice": "Any Device"
- },
- "Grant": {
- "appProtectionPolicy": "Require app protection policy",
- "approvedClientApp": "Require approved client app",
- "blockAccess": "Block access",
- "mfa": "Require multi-factor authentication",
- "passwordChange": "Require password change",
- "requireCompliantDevice": "Require device to be marked as compliant",
- "requireHybridAzureADDevice": "Require hybrid Azure AD joined device"
- },
- "Session": {
- "appEnforcedRestrictions": "Use app enforced restrictions",
- "signInFrequency": "Sign-in Frequency and never persistent browser session"
- },
- "UsersAndGroups": {
- "allUsers": "All Users",
- "directoryRoles": "Directory roles except current administrator",
- "globalAdmin": "Global Administrator",
- "noGuestAndAdmins": "All Users except Guest and External, Global administrators, Current administrator"
- },
- "azureManagement": "Azure Management",
- "deviceFilters": "Filters for devices",
- "devicePlatforms": "Device Platforms"
- },
- "TemplateId": {
- "AppEnforcedRestrictions": {
- "description": "Block or limit access to SharePoint, OneDrive, and Exchange content from unmanaged devices.",
- "name": "CA014: Use application enforced restrictions for unmanaged devices",
- "title": "Use application enforced restrictions for unmanaged devices"
- },
- "ApprovedClientApps": {
- "description": "To prevent data loss, organizations can restrict access to approved modern auth client apps with Intune app protection.",
- "name": "CA012: Require approved client apps and app protection",
- "title": "Require approved client apps and app protection"
- },
- "BlockAccessOnUnknowns": {
- "description": "Users will be blocked from accessing company resources when the device type is unknown or unsupported.",
- "name": "CA010: Block access for unknown or unsupported device platform",
- "title": "Block access for unknown or unsupported device platform"
- },
- "BlockLegacyAuth": {
- "description": "Block legacy authentication endpoints that can be used to bypass multi-factor authentication. ",
- "name": "CA003: Block legacy authentication",
- "title": "Block legacy authentication"
- },
- "NoPersistentBrowserSession": {
- "description": "Protect user access on unmanaged devices by preventing browser sessions from remaining signed in after the browser is closed and setting a sign-in frequency to 1 hour.",
- "name": "CA011: No persistent browser session",
- "title": "No persistent browser session"
- },
- "RequireCompliantOrHybridADAdmins": {
- "description": "Require privileged administrators to only access resources when using a compliant or hybrid Azure AD joined device.",
- "name": "CA009: Require compliant or hybrid Azure AD joined device for admins",
- "title": "Require compliant or hybrid Azure AD joined device for admins"
- },
- "RequireCompliantOrHybridADAllUsers": {
- "description": "Protect access to company resources by requiring users to use a managed device or perform multi-factor authentication. (macOS or Windows only)",
- "name": "CA013: Require compliant or hybrid Azure AD joined device or multi-factor authentication for all users",
- "title": "Require compliant or hybrid Azure AD joined device or multi-factor authentication for all users"
- },
- "RequireMFAAllUsers": {
- "description": "Require multi-factor authentication for all user accounts to reduce risk of compromise.",
- "name": "CA004: Require multi-factor authentication for all users",
- "title": "Require multi-factor authentication for all users"
- },
- "RequireMFAForAdmins": {
- "description": "Require multi-factor authentication for privileged administrative accounts to reduce risk of compromise. This policy will target the same roles as Security Default.",
- "name": "CA001: Require multi-factor authentication for admins",
- "title": "Require multi-factor authentication for admins"
- },
- "RequireMFAForAzureManagement": {
- "description": "Require multi-factor authentication to protect privileged access to Azure resources.",
- "name": "CA006: Require multi-factor authentication for Azure management",
- "title": "Require multi-factor authentication for Azure management"
- },
- "RequireMFAForGuestAccess": {
- "description": "Require guest users perform multi-factor authentication when accessing your company resources.",
- "name": "CA005: Require multi-factor authentication for guest access",
- "title": "Require multi-factor authentication for guest access"
- },
- "RequireMFAForRiskySignIn": {
- "description": "Require multi-factor authentication if the sign-in risk is detected to be medium or high. (Requires an Azure AD Premium 2 License)",
- "name": "CA007: Require multi-factor authentication for risky sign-ins",
- "title": "Require multi-factor authentication for risky sign-ins"
- },
- "RequirePasswordChangeForHighRiskUsers": {
- "description": "Require the user to change their password if the user risk is detected to be high. (Requires an Azure AD Premium 2 License)",
- "name": "CA008: Require password change for high-risk users",
- "title": "Require password change for high-risk users"
- },
- "RequireSecurityInfo": {
- "description": "Secure when and how users register for Azure AD multi-factor authentication and self-service password. ",
- "name": "CA002: Securing security info registration",
- "title": "Securing security info registration"
- }
- },
- "TemplateState": {
- "BlockAccessOnUnknowns": {
- "title": "Enabling this policy will prevent any access from unknown device type, consider using report only mode to begin with until you have confirmed this will not impact your users."
- },
- "BlockLegacyAuth": {
- "description": "Consider using report only mode to begin with until you have confirmed this will not impact your users.",
- "title": "Enabling this policy will block legacy authentication for all your users."
- },
- "RequireCompliantOrHybridADAdmins": {
- "Description": {
- "on": "Consider using report only mode to begin with until you have confirmed this will not impact your privileged users.",
- "reportOnly": "Policies in report-only mode that require compliant devices may prompt users on Mac, iOS, and Android to select a device certificate during policy evaluation, even though device compliance is not enforced. These prompts may repeat until the device is made compliant."
- },
- "Title": {
- "on": "Enabling this policy will prevent any access for privileged users unless using a managed device such as compliant or hybrid Azure AD joined. Ensure you have configured your compliance policies or enabled hybrid Azure AD configuration before enabling.",
- "reportOnly": "Ensure you have configured your compliance policies or enabled hybrid Azure AD configuration before enabling. "
- }
- },
- "RequireCompliantOrHybridADAllUsers": {
- "Description": {
- "on": "This policy will affect all users except the current logged in Administrator. Consider using report only mode to begin with until you have confirmed this will not impact your users."
- },
- "Title": {
- "on": "Don't lock yourself out! Make sure that your device is compliant, or hybrid Azure AD Joined or you have configured multi-factor authentication. ",
- "reportOnly": "Policies in report-only mode that require compliant devices may prompt users on Mac, iOS, and Android to select a device certificate during policy evaluation, even though device compliance is not enforced. These prompts may repeat untli the device is made compliant."
- }
- },
- "RequireMfa": {
- "description": "If you use emergency access accounts or Azure AD connect to synchronize your on-premises objects, you may need to exclude these accounts from this policy after creation."
- },
- "RequireMfaAdmins": {
- "description": "Please note the current administrator account will automatically be excluded but all others will be protected on policy creation. Consider using report only mode to begin with.",
- "title": "Don't lock yourself out! This policy impacts the Azure portal."
- },
- "RequireMfaAllUsers": {
- "description": "Consider using report only mode to begin with until you have planned and communicated this change to all your users.",
- "title": "Enabling this policy will enforce multi-factor authentication for all your users."
- },
- "RequireSecurityInfo": {
- "description": "Please ensure you review your configuration to protect these accounts based on your company needs.",
- "title": "The following users and roles are excluded from this policy, Guests and External Users, Global Administrators, Current Administrator"
- }
- },
- "basics": "Basics",
- "clientApps": "Client apps",
- "cloudApps": "Cloud apps",
- "cloudAppsOrActions": "Cloud apps or actions ",
- "conditions": "Conditions ",
- "createNewPolicy": "Create new policy from templates (Preview)",
- "createPolicy": "Create Policy",
- "currentUser": "Current user",
- "customizeBuild": "Customize your build",
- "customizeTemplate": "Template lists are customized based on the type of policy you're looking to create",
- "excludedDevicePlatform": "Excluded device platforms",
- "excludedDirectoryRoles": "Excluded directory roles",
- "excludedLocation": "Excluded directory roles",
- "excludedUsers": "Excluded users",
- "grantControl": "Grant control ",
- "includeFilteredDevice": "Include filtered devices in policy",
- "includedDevicePlatform": "Included device platforms",
- "includedDirectoryRoles": "Included directory roles",
- "includedLocation": "Included location",
- "includedUsers": "Included users",
- "legacyAuthenticationClients": "Legacy authentication clients",
- "namePolicy": "Name your policy",
- "next": "Next",
- "policyName": "Policy Name",
- "policyState": "Policy state",
- "policySummary": "Policy summary",
- "policyTemplate": "Policy template",
- "previous": "Previous",
- "reviewAndCreate": "Review + create",
- "riskLevels": "Risk levels",
- "selectATemplate": "Select a Template",
- "selectTemplate": "Select template",
- "selectTemplateCategory": "Select a template category",
- "selectTemplateRecommendation": "We recommend the following templates based on your response",
- "sessionControl": "Session control ",
- "signInFrequency": "Sign-in frequency",
- "signInRisk": "Sign-in risk",
- "template": "Template ",
- "templateCategory": "Template category",
- "userRisk": "User risk",
- "usersAndGroups": "Users and groups ",
- "viewPolicySummary": "View policy summary "
- },
- "SSM": {
- "MemberSelector": {
- "description": "Users and groups"
- },
- "Notification": {
- "Migration": {
- "error": "Failed to migrate Continuous access evaluation settings to Conditional access policies",
- "inProgress": "Migrating Continuous access evaluation settings",
- "success": "Successfully migrated Continuous access evaluation settings to Conditional access policies",
- "successDescription": "Please proceed to Conditional access policies to view the migrated settings in the newly created policy named \"CA policy created from CAE settings\"."
- },
- "error": "Failed to update Continuous access evaluation settings",
- "inProgress": "Updating Continuous access evaluation settings",
- "success": "Successfully updated Continuous access evaluation settings"
- },
- "PreviewOptions": {
- "disable": "Disable preview",
- "enable": "Enable preview"
- },
- "StrictLocationEnforcement": {
- "infoContent1": "Different IPs can be seen by Azure AD and Resource Provider from the same client device due to network partition or IPv4/IPv6 mismatch. Strict Location Enforcement will enforce the Conditional Access policy based on both IP addresses seen by Azure AD and Resource Provider.",
- "infoContent2": "To ensure maximum security, it is recommended to include all IPs that can be seen by both Azure AD and Resource Provider in your Named Location policy and turn on \"Strict Location Enforcement\" mode.",
- "label": "Strict Location Enforcement",
- "title": "Additional enforcement modes"
- },
- "bladeTitle": "Continuous access evaluation",
- "description": "When a user's access is removed or a client IP address changes, Continuous access evaluation automatically blocks access to resources and applications in near real time. ",
- "migrateLabel": "Migrate",
- "migrationError": "Migration failed due to the following error: {0}",
- "migrationInfo": "CAE setting has been moved under Conditional Access UX, please migrate with the “Migrate” button above and configure it with Conditional Access policy going forward. Click here to learn more.",
- "noLicenseMessage": "Manage smart session management settings with Azure AD Premium",
- "optionsPickerTitle": "Enable/Disable Continuous access evaluation",
- "upsellInfo": "You cannot change your settings on this page anymore and any settings here should be disregarded. Your previous setting will be honored. You can configure your CAE settings under Conditional Access going forward. Click here to learn more."
- },
- "SessionLifetime": {
- "PersistentBrowser": {
- "Error": {
- "notAllApps": "Persistent browser session policy only works correctly when \"All cloud apps\" is selected. Please update your cloud apps selection."
- },
- "Option": {
- "always": "Always persistent",
- "help": "A persistent browser session allows users to remain signed in after closing and reopening their browser window.
\n\n- This setting works correctly when \"All cloud apps\" are selected
\n- This does not affect token lifetimes or the sign-in frequency setting.
\n- This will override the \"Show option to stay signed in\" policy in Company Branding.
\n- \"Never persistent\" will override any persistent SSO claims passed in from federated authentication services.
\n- \"Never persistent\" will prevent SSO on mobile devices across applications and between applications and the user's mobile browser.
\n",
- "label": "Persistent browser session",
- "never": "Never persistent"
- },
- "Warning": {
- "allApps": "Persistent browser session only works correctly when All cloud apps is selected. Please change your cloud apps selection. Click here to learn more."
- }
- },
- "SignInFrequency": {
- "Aria": {
- "units": "Hours or days",
- "value": "Frequency"
- },
- "Option": {
- "Day": {
- "plural": "{0} days",
- "singular": "1 day"
- },
- "Hour": {
- "plural": "{0} hours",
- "singular": "1 hour"
- },
- "daysOption": "Days",
- "everytime": "Every time",
- "help": "Time period before a user is asked to sign-in again when attempting to access a resource. The default setting is a rolling window of 90 days, i.e. users will be asked to re-authenticate on the first attempt to access a resource after being inactive on their machine for 90 days or longer.",
- "hoursOption": "Hours",
- "label": "Sign-in frequency",
- "placeholder": "Select units"
- }
- },
- "mainOption": "Modify session lifetime",
- "mainOptionHelp": "Configure how often users will get prompted and whether browser sessions will be persisted. Applications that don't support modern authentication protocols might not honor these policies. In such cases please contact the application developer."
- },
- "SigninRisk": {
- "LearnMore": {
- "message": "Control user access to respond to specific sign-in risk levels."
- }
- },
- "SingleSelectorActive": {
- "failed": "Unable to load this data.",
- "reattempt": "Loading data. Reattempt {0} of {1}."
- },
- "TimeCondition": {
- "Errors": {
- "both": "Invalid \"Include\" or \"Exclude\" time range.",
- "daysOfWeek": "{0} Make sure to specify at least one day of the week.",
- "endBeforeStart": "{0} Make sure start date/time is earlier than end date/time.",
- "exclude": "Invalid \"Exclude\" time range.",
- "generic": "{0} Make sure both days of the week and time zone are set. If \"All day\" is not checked, start time and end time need to be set as well.",
- "include": "Invalid \"Include\" time range.",
- "timeMissing": "{0} Make sure to specify both a start and end time.",
- "timeZone": "{0} Make sure to specify a time zone.",
- "timesAndZone": "{0} Make sure you set start time, end time and time zone."
- }
- },
- "UserActions": {
- "Included": {
- "none": "No cloud apps or actions selected",
- "plural": "{0} user actions included",
- "singular": "1 user action included"
- },
- "accessRequirement1": "Level 1",
- "accessRequirement2": "Level 2",
- "accessRequirement3": "Level 3",
- "accessRequirementsLabel": "Accessing secured app data",
- "appsActionsAuthTitle": "Cloud apps, actions, or authentication context",
- "appsOrActionsSelectorInfoBallonText": "Applications accessed or user actions",
- "appsOrActionsTitle": "Cloud apps or actions",
- "label": "User actions",
- "mainOptionsLabel": "Select what this policy applies to",
- "registerOrJoinDevices": "Register or join devices",
- "registerSecurityInfo": "Register security information",
- "selectionInfo": "Select the action this policy will apply to"
- },
- "UserSelectionBlade": {
- "DirectoryRoles": {
- "ariaLabel": "Choose directory roles"
- },
- "Excluded": {
- "gridAria": "List of excluded users"
- },
- "Included": {
- "gridAria": "List of included users"
- },
- "Validation": {
- "customRoleIncluded": "\"Directory Roles\" includes at least one custom role",
- "customRoleSelected": "At least one custom role is selected",
- "failed": "\"{0}\" must be configured",
- "roles": "Select at least one role",
- "usersGroups": "Select at least one user or group"
- },
- "learnMore": "Control access based on who the policy will apply to, such as users and groups, workload identities, directory roles, or external guests."
- },
- "ValidationResult": {
- "blockEveryonePolicy": "Policy configuration not supported. Review the assignments and controls.",
- "invalidApplicationCondition": "Invalid cloud applications selected",
- "invalidClientTypesCondition": "Invalid client apps selected",
- "invalidConditions": "Assignments are not selected",
- "invalidControls": "Invalid controls selected",
- "invalidDevicePlatformsCondition": "Invalid device platforms selected",
- "invalidDevicesCondition": "Invalid device configuration. Likely an invalid \"{0}\" configuration.",
- "invalidGrantControlPolicy": "Invalid grant control",
- "invalidLocationsCondition": "Invalid locations selected",
- "invalidPolicy": "Assignments are not selected",
- "invalidSessionControlPolicy": "Invalid session control",
- "invalidSignInRisksCondition": "Invalid sign-in risk selected",
- "invalidUserRisksCondition": "Invalid user risk selected",
- "invalidUsersCondition": "Invalid users selected",
- "mamPolicyShouldOnlyTargetAndroidOrIosPlatforms": "MAM policy can only be applied to Android or iOS client platforms.",
- "notSupportedCombination": "Policy configuration is not supported. Learn more about supported policies.",
- "pending": "Validating policy",
- "requireComplianceEveryonePolicy": "Policy configuration will require device compliance for all users. Review the assignments selected.",
- "success": "Valid policy"
- },
- "VpnCert": {
- "Grid": {
- "aria": "List of VPN Certificates"
- }
- },
- "WarningsInfo": {
- "Controls": {
- "compliantDeviceEnabled": "Don't lock yourself out! Make sure that your device is compliant.",
- "domainJoinedDeviceEnabled": "Don't lock yourself out! Make sure that your device is Hybrid Azure AD Joined.",
- "exchangeDisabled": "Exchange ActiveSync only supports \"Compliant device\" and \"Approved client app\" controls. Click to learn more.",
- "exchangeDisabled2": "Exchange ActiveSync only supports \"Compliant device\", \"Approved client app\" and \"Compliant client app\" controls. Click to learn more.",
- "notAvailableForSP": "Some controls are not available due to '{0}' selection in policy assignment",
- "requireAuthOrMfa": "\"{0}\" cannot be used with \"{1}\"",
- "requireMfa": "Consider testing the new \"{0}\" public preview",
- "requirePasswordChangeEnabled": "\"Require password change\" can only be used when policy is assigned to \"All cloud apps\""
- },
- "Policies": {
- "Linux": {
- "devicePlatformsReportOnlyPolicy": "Policies in Report-only mode requiring compliant devices may prompt users on macOS, iOS, Android, and Linux to select a device certificate.",
- "excludeDevicePlatforms": "Exclude device platforms macOS, iOS, Android, and Linux from this policy.",
- "proceedAnywayDevicePlatforms": "Proceed with selected configuration. Users on macOS, iOS, Android, and Linux may receive prompts when the device is checked for compliance."
- },
- "blockCurrentUserPolicy": "Don't lock yourself out! We recommend applying a policy to a small set of users first to verify it behaves as expected. We also recommend excluding at least one administrator from this policy. This ensures that you still have access and can update a policy if a change is required. Please review the affected users and apps.",
- "devicePlatformsReportOnlyPolicy": "Policies in Report-only mode requiring compliant devices may prompt users on macOS, iOS, and Android to select a device certificate.",
- "excludeCurrentUserSelection": "Exclude current user, {0}, from this policy.",
- "excludeDevicePlatforms": "Exclude device platforms macOS, iOS, and Android from this policy.",
- "proceedAnywayDevicePlatforms": "Proceed with selected configuration. Users on macOS, iOS, and Android may receive prompts when the device is checked for compliance.",
- "proceedAnywaySelection": "I understand that my account will be impacted by this policy. Proceed anyway."
- },
- "ServicePrincipals": {
- "blockExchange": "Selecting Office 365 Exchange Online will also affect apps such as OneDrive and Teams.",
- "blockPortal": "Don't lock yourself out! This policy impacts the Azure portal. Before you continue, ensure that you or someone else will be able to get back into the portal.",
- "blockPortalWithSession": "Don't lock yourself out! This policy impacts the Azure portal. Before you continue, ensure that you or someone else will be able to get back into the portal.
Disregard this warning if you are configuring persistent browser session policy that works correctly only if \"All cloud apps\" are selected.",
- "blockSharePoint": "Selecting SharePoint Online will also affect apps such as Microsoft Teams, Planner, Delve, MyAnalytics, and Newsfeed.",
- "blockSkype": "Selecting Skype for Business Online will also affect Microsoft Teams.",
- "includeOrExclude": "You can configure the App Filter for '{0}' or '{1}', but not both.",
- "selectAppsNAForSP": "Individual cloud apps cannot be selected due to '{0}' selection in policy assignment",
- "teamsBlocked": "Microsoft Teams will also be affected when apps such as SharePoint Online and Exchange Online are included in policy."
- },
- "Users": {
- "blockAllUsers": "Don't lock yourself out! This policy will affect all of your users. We recommend applying a policy to a small set of users first to verify it behaves as expected."
- }
- },
- "WhatIf": {
- "Device": {
- "AttributesGrid": {
- "aria": "List of attributes on the device employed during sign-in.",
- "infoBalloon": "List of attributes on the device employed during sign-in."
- }
- }
- },
- "advancedTabText": "Advanced",
- "allCloudAppsErrorBox": "\"All cloud apps\" must be selected when \"Require password change\" grant is selected",
- "allDayCheckboxLabel": "All day",
- "allDevicePlatforms": "Any device",
- "allGuestUserInfoContent": "Includes Azure AD B2B guests, but not SharePoint B2B guests",
- "allGuestUserLabel": "All guest and external users",
- "allRiskLevelsOption": "All risk levels",
- "allTrustedLocationLabel": "All trusted locations",
- "allUserGroupSetSelectorLabel": "All users and groups selected",
- "allUsersString": "All users",
- "and": "{0} AND {1} ",
- "andWithGrouping": "({0}) AND {1} ",
- "androidDisplayName": "Android",
- "anyCloudAppSelection": "Any cloud app",
- "appContextOptionInfoContent": "Requested authentication tag",
- "appContextOptionLabel": "Requested authentication tag (Preview)",
- "appContextUriPlaceholder": "Example: uri:contoso.com:level3",
- "appEnforceInfoBubble": "App enforced restrictions might require additional admin configurations within the cloud apps. The restrictions will only take effect for new sessions.",
- "appNotSetSeletorLabel": "0 cloud apps selected",
- "applyConditionClientAppInfoBalloonContent": "Configure client apps to apply the policy to specific client apps",
- "applyConditionDevicePlatformInfoBalloonContent": "Configure device platforms to apply the policy to specific platforms",
- "applyConditionDeviceStateInfoBalloonContent": "Configure device state to apply the policy to specific device state(s)",
- "applyConditionLocationInfoBalloonContent": "Configure locations to apply the policy to trusted/untrusted locations",
- "applyConditionSigninRiskInfoBalloonContent": "Configure sign-in risk to apply the policy to selected risk level(s)",
- "applyConditionUserRiskInfoBalloonContent": "Configure user risk to apply the policy to selected risk level(s)",
- "applyConditonLabel": "Configure",
- "ariaLabelPolicyDisabled": "Policy is disabled",
- "ariaLabelPolicyEnabled": "Policy is enabled",
- "ariaLabelPolicyReportOnly": "Policy is in Report-only mode",
- "blockAccess": "Block access",
- "builtInDirectoryRoleLabel": "Built-in directory roles",
- "casCustomControlInfo": "Custom policies need to be configured in Cloud App Security portal. This control works instantly for featured apps and can be self onboarded for any app. Click here to learn more about both scenarios.",
- "casInfoBubble": "This control works for various cloud apps.",
- "casPreconfiguredControlInfo": "This control works instantly for featured apps and can be self onboarded for any app. Click here to learn more about both scenarios.",
- "cert64DownloadCol": "Download base64 certificate",
- "cert64Name": "VpnBase64Cert",
- "certDownloadCol": "Download certificate",
- "certDurationCol": "Expiry",
- "certDurationStartCol": "Valid from",
- "certName": "VpnCert",
- "chooseApplicationsBladeSubtitle": "",
- "chooseApplicationsBladeTitle": "Choose Applications",
- "chooseApplicationsCartSubitle": "",
- "chooseApplicationsCartTitle": "Chosen Applications",
- "chooseApplicationsEmpty": "No Applications",
- "chooseApplicationsNone": "None",
- "chooseApplicationsNoneFound": "We didn't find \"{0}\". Try another name or ID.",
- "chooseApplicationsPlural": "{0} and {1} more",
- "chooseApplicationsReAuthEverytimeInfo": "Looking for your app? Some applications cannot be used with \"Require reauthentication – every time\" session control",
- "chooseApplicationsRemove": "Remove",
- "chooseApplicationsReturnedPlural": "{0} applications found",
- "chooseApplicationsReturnedSingular": "1 application found",
- "chooseApplicationsSearchBalloon": "Search for an Application by entering its name or ID.",
- "chooseApplicationsSearchHint": "Search Applications...",
- "chooseApplicationsSearchLabel": "Applications",
- "chooseApplicationsSearching": "Searching...",
- "chooseApplicationsSelect": "Select",
- "chooseApplicationsSelected": "Selected",
- "chooseApplicationsSingular": "{0} and 1 more",
- "chooseApplicationsTooMany": "More results than can be shown. Please filter using the search box.",
- "chooseLocationCorpnetItem": "Corporate network",
- "chooseLocationSelectedLocationsLabel": "Selected locations",
- "chooseLocationTrustedIpsItem": "MFA Trusted IPs",
- "chooseLocationsBladeSubtitle": "",
- "chooseLocationsBladeTitle": "Choose Locations",
- "chooseLocationsCartSubitle": "",
- "chooseLocationsCartTitle": "Chosen Locations",
- "chooseLocationsEmpty": "No Locations",
- "chooseLocationsExcludedSelectorTitle": "Select",
- "chooseLocationsIncludedSelectorTitle": "Select",
- "chooseLocationsNone": "None",
- "chooseLocationsNoneFound": "We didn't find \"{0}\". Try another name or ID.",
- "chooseLocationsPlural": "{0} and {1} more",
- "chooseLocationsRemove": "Remove",
- "chooseLocationsReturnedPlural": "{0} locations found",
- "chooseLocationsReturnedSingular": "1 location found",
- "chooseLocationsSearchBalloon": "Search for a Location by entering its name.",
- "chooseLocationsSearchHint": "Search Locations...",
- "chooseLocationsSearchLabel": "Locations",
- "chooseLocationsSearching": "Searching...",
- "chooseLocationsSelect": "Select",
- "chooseLocationsSelected": "Selected",
- "chooseLocationsSelectionBladeExcludedSelectorTitle": "Select",
- "chooseLocationsSelectionBladeIncludedSelectorTitle": "Select",
- "chooseLocationsSingular": "{0} and 1 more",
- "chooseLocationsTooMany": "More results than can be shown. Please filter using the search box.",
- "claimProviderAddCommandText": "New custom control",
- "claimProviderAddNewBladeTitle": "New custom control",
- "claimProviderDeleteCommand": "Delete",
- "claimProviderDeleteDescription": "Are you sure you want to delete '{0}'? This action cannot be undone.",
- "claimProviderDeleteTitle": "Are you sure?",
- "claimProviderEditInfoText": "Enter the JSON for customized controls given by your claim providers.",
- "claimProviderNotificationCreateDescription": "Creating custom control named '{0}'",
- "claimProviderNotificationCreateFailedDescription": "Creating custom control '{0}' failed. Please try again later.",
- "claimProviderNotificationCreateFailedTitle": "Failed to create custom control",
- "claimProviderNotificationCreateSuccessDescription": "Created custom control named '{0}'",
- "claimProviderNotificationCreateSuccessTitle": "Created '{0}'",
- "claimProviderNotificationCreateTitle": "Creating '{0}'",
- "claimProviderNotificationDeleteDescription": "Deleting custom control named '{0}'",
- "claimProviderNotificationDeleteFailedDescription": "Deleting custom control '{0}' failed. Please try again later.",
- "claimProviderNotificationDeleteFailedTitle": "Failed to delete custom control",
- "claimProviderNotificationDeleteSuccessDescription": "Deleted custom control named '{0}'",
- "claimProviderNotificationDeleteSuccessTitle": "Deleted '{0}'",
- "claimProviderNotificationDeleteTitle": "Deleting '{0}'",
- "claimProviderNotificationUpdateDescription": "Updating custom control named '{0}'",
- "claimProviderNotificationUpdateFailedDescription": "Updating custom control '{0}' failed. Please try again later.",
- "claimProviderNotificationUpdateFailedTitle": "Failed to update custom control",
- "claimProviderNotificationUpdateSuccessDescription": "Updated custom control named '{0}'",
- "claimProviderNotificationUpdateSuccessTitle": "Updated '{0}'",
- "claimProviderNotificationUpdateTitle": "Updating '{0}'",
- "claimProviderValidationAppIdInvalid": "The \"AppId\" value is not valid. Please review and try again.",
- "claimProviderValidationClientIdMissing": "The data is missing a \"ClientId\" value. Please review and try again.",
- "claimProviderValidationControlClaimsRequestedMissing": "The \"Control\" is missing a \"ClaimsRequested\" value. Please review and try again.",
- "claimProviderValidationControlClaimsRequestedTypeMissing": "The \"ClaimsRequested\" item is missing a \"Type\" value. Please review and try again.",
- "claimProviderValidationControlIdAlreadyExists": "The \"Control\" \"Id\" value already exists. Please review and try again.",
- "claimProviderValidationControlIdMissing": "The \"Control\" is missing an \"Id\" value. Please review and try again.",
- "claimProviderValidationControlIdReferencedInExistingPolicy": "The \"Control\" \"Id\" value cannot be removed because it is referenced in an existing policy. Please remove it from the policy first.",
- "claimProviderValidationControlIdTooManyControls": "The \"Control\" property has too many controls. Please review and try again.",
- "claimProviderValidationControlIdValueReserved": "The \"Control\" \"Id\" value is a reserved keyword, please use a different id.",
- "claimProviderValidationControlNameAlreadyExists": "The \"Control\" \"Name\" value already exists. Please review and try again.",
- "claimProviderValidationControlNameMissing": "The \"Control\" is missing a \"Name\" value. Please review and try again.",
- "claimProviderValidationControlsMissing": "The data is missing a \"Controls\" value. Please review and try again.",
- "claimProviderValidationDiscoveryUrlMissing": "The data is missing a \"DiscoveryUrl\" value. Please review and try again.",
- "claimProviderValidationInvalid": "There data provided is not valid. Please review and try again.",
- "claimProviderValidationInvalidJsonDefinition": "Unable to save the custom control. Review the JSON text and try again.",
- "claimProviderValidationNameAlreadyExists": "The \"Name\" value already exists. Please review and try again.",
- "claimProviderValidationNameMissing": "The data is missing a \"Name\" value. Please review and try again.",
- "claimProviderValidationUnknown": "There was an unknown error while validating the data provided. Please review and try again.",
- "claimProvidersNone": "No custom controls",
- "claimProvidersSearchPlaceholder": "Search controls.",
- "classicPoilcyFilterTitle": "Show",
- "classicPolicyAllPlatforms": "All Platforms",
- "classicPolicyClientAppBrowserAndNative": "Browser, mobile apps and desktop clients",
- "classicPolicyCloudAppTitle": "Cloud application",
- "classicPolicyControlAllow": "Allow",
- "classicPolicyControlBlock": "Block",
- "classicPolicyControlBlockWhenNotAtWork": "Block access when not at work",
- "classicPolicyControlRequireCompliantDevice": "Require compliant device",
- "classicPolicyControlRequireDomainJoinedDevice": "Require domain joined device",
- "classicPolicyControlRequireMfa": "Require multi-factor authentication",
- "classicPolicyControlRequireMfaWhenNotAtWork": "Require multi-factor authentication when not at work",
- "classicPolicyDeleteCommand": "Delete",
- "classicPolicyDeleteFailTitle": "Failed to delete classic policy",
- "classicPolicyDeleteInProgressTitle": "Deleting classic policy",
- "classicPolicyDeleteSuccessTitle": "Classic policy deleted",
- "classicPolicyDetailBladeTitle": "Details",
- "classicPolicyDisableCommand": "Disable",
- "classicPolicyDisableConfirmation": "Are you sure you want to disable '{0}'? This action cannot be undone.",
- "classicPolicyDisableFailDescription": "Failed to disable '{0}'",
- "classicPolicyDisableFailTitle": "Failed to disable classic policy",
- "classicPolicyDisableInProgressDescription": "Disabling '{0}'",
- "classicPolicyDisableInProgressTitle": "Disabling classic policy",
- "classicPolicyDisableSuccessDescription": "Successfully disabled '{0}'",
- "classicPolicyDisableSuccessTitle": "Classic policy disabled",
- "classicPolicyEasSupportedPlatforms": "Exchange ActiveSync supported platforms",
- "classicPolicyEasUnsupportedPlatforms": "Exchange ActiveSync unsupported platforms",
- "classicPolicyExcludedPlatformsTitle": "Excluded device platforms",
- "classicPolicyFilterAll": "All policies",
- "classicPolicyFilterDisabled": "Disabled policies",
- "classicPolicyFilterEnabled": "Enabled policies",
- "classicPolicyIncludeExcludeMembersDescription": "By excluding groups, you can perform phased migration of policies.",
- "classicPolicyIncludeExcludeMembersTitle": "Include/exclude groups",
- "classicPolicyIncludedPlatformsTitle": "Included device platforms",
- "classicPolicyManualMigrationMessage": "This policy needs to be migrated manually.",
- "classicPolicyMigrateCommand": "Migrate",
- "classicPolicyMigrateConfirmation": "Are you sure you want to migrate '{0}'? This policy can only be migrated once.",
- "classicPolicyMigrateFailDescription": "Failed to migrate '{0}'",
- "classicPolicyMigrateFailTitle": "Failed to migrate classic policy",
- "classicPolicyMigrateInProgressDescription": "Migrating '{0}'",
- "classicPolicyMigrateInProgressTitle": "Migrating classic policy",
- "classicPolicyMigrateRecommendText": "Recommendation: Migrate to the new Azure portal policies.",
- "classicPolicyMigrateSuccessTitle": "Classic policy migrated successfully",
- "classicPolicyMigratedSuccessDescription": "This classic policy can now be managed under Polices.",
- "classicPolicyMigratedSuccessDescriptionMultiple": "This classic policy is migrated as {0} new policies. New policies can be managed under Policies.",
- "classicPolicyNoEditPermissionMsg": "You don't have permission to edit this policy. Only global administrators and security administrators can edit the policy. Click here for more information.",
- "classicPolicySaveFailDescription": "Failed to save '{0}'",
- "classicPolicySaveFailTitle": "Failed to save classic policy",
- "classicPolicySaveInProgressDescription": "Saving '{0}'",
- "classicPolicySaveInProgressTitle": "Saving classic policy",
- "classicPolicySaveSuccessDescription": "Successfully saved '{0}'",
- "classicPolicySaveSuccessTitle": "Classic policy saved",
- "clientAppBladeLegacyInfoBanner": "Legacy auth is currently not supported",
- "clientAppBladeLegacyUpsellBanner": "Block unsupported client apps (Preview)",
- "clientAppBladeTitle": "Client apps",
- "clientAppDescription": "Select the client apps this policy will apply to",
- "clientAppExchangeActiveSync": "Exchange ActiveSync",
- "clientAppExchangeDisabledInfo": "Exchange ActiveSync is available when Exchange Online is the only cloud app selected. Click to learn more",
- "clientAppExchangeWarning": "Exchange ActiveSync currently does not support all other conditions",
- "clientAppLearnMore": "Control user access to target specific client applications not using modern authentication.",
- "clientAppLegacyHeader": "Legacy authentication clients",
- "clientAppMobileDesktop": "Mobile apps and desktop clients",
- "clientAppModernHeader": "Modern authentication clients",
- "clientAppOnlySupportedPlatforms": "Apply policy only to supported platforms",
- "clientAppSelectSpecificClientApps": "Select client apps",
- "clientAppV2BladeTitle": "Client apps (Preview)",
- "clientAppWebBrowser": "Browser",
- "clientAppsSelectedLabel": "{0} included",
- "clientTypeBrowser": "Browser",
- "clientTypeEas": "Exchange ActiveSync clients",
- "clientTypeEasInfo": "Exchange ActiveSync clients that use legacy authentication only.",
- "clientTypeModernAuth": "Modern authentication clients",
- "clientTypeOtherClients": "Other clients",
- "clientTypeOtherClientsInfo": "This includes older office clients and other mail protocols(POP, IMAP, SMTP, etc). [Learn more][1]\n[1]: https://aka.ms/caclientapps\n",
- "cloudAppCountDiffBannerText": "{0} cloud apps configured in this policy have been deleted from the directory, but this doesn't affect the other apps in the policy. The next time you update the application section of the policy, the deleted apps will be automatically removed from it.",
- "cloudAppsSelectionBladeAllMicrosoftApps": "All Microsoft apps",
- "cloudAppsSelectionExcludeAllMicrosoftClients": "Allow Microsoft cloud, desktop and mobile apps (Preview)",
- "cloudappsSelectionBladeAllCloudapps": "All cloud apps",
- "cloudappsSelectionBladeExcludeDescription": "Select the cloud apps to exempt from the policy",
- "cloudappsSelectionBladeExcludedSelectorTitle": "Select excluded cloud apps",
- "cloudappsSelectionBladeIncludeDescription": "Select the cloud apps this policy will apply to",
- "cloudappsSelectionBladeIncludedSelectorTitle": "Select",
- "cloudappsSelectionBladeSelectedCloudapps": "Select apps",
- "cloudappsSelectorInfoBallonText": "Services which the user accesses to do work. For example, 'Salesforce'",
- "cloudappsSelectorUserPlural": "{0} apps",
- "cloudappsSelectorUserSingular": "1 app",
- "conditionLabelMulti": "{0} conditions selected",
- "conditionLabelOne": "1 condition selected",
- "conditionalAccessBladeTitle": "Conditional Access",
- "conditionsNotSelectedLabel": "Not configured",
- "conditionsReqPwSet": "Some options are not available due to the \"Require password change\" grant currently being selected",
- "configureCasText": "Configure Cloud App Security",
- "configureCustomControlsText": "Configure custom policy",
- "controlLabelMulti": "{0} controls selected",
- "controlLabelOne": "1 control selected",
- "controlValidatorText": "Please select at least one control",
- "controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
- "controlsDeviceComplianceInfoBubble": "Device must be Intune compliant. If the device is non-compliant, the user will be prompted to bring the device under compliance",
- "controlsDomainJoinedInfoBubble": "Devices must be Hybrid Azure AD joined.",
- "controlsMamInfoBubble": "Device must use these approved client applications.",
- "controlsMfaInfoBubble": "User must complete additional security requirements like phone call, text",
- "controlsOrAndInfoBubble": "ControlsOrAndInfoBubble",
- "controlsRequireCompliantAppInfoBubble": "Device must use policy protected apps.",
- "controlsRequirePasswordResetInfoBubble": "Require password change to lower user risk. This option also requires multi-factor authentication. Other controls can't be used.",
- "countriesRadiobuttonInfoBalloonContent": "The country/region a sign-in is coming from is determined by the user's IP address.",
- "createNewVpnCert": "New certificate",
- "createdTimeLabel": "Creation time",
- "customRoleLabel": "Custom roles (not supported)",
- "dateRangeTypeLabel": "Date range",
- "daysOfWeekPlaceholderText": "Filter days of the week",
- "daysOfWeekTypeLabel": "Days of the week",
- "deletePolicyNoLicenseText": "You can delete this policy now. Once deleted you will not be able to recreate it until you have the required licenses.",
- "descriptionContentForControlsAndOr": "For multiple controls",
- "devicePlatform": "Device platform",
- "devicePlatformConditionHelpDescription": "Apply policy to selected device platforms.\n[Learn more][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2044750",
- "devicePlatformInclude": "{0} included",
- "devicePlatformIncludeExclude": "{0} and {1} excluded",
- "devicePlatformNoSelectionError": "Select device platforms requires one sub-item to be selected.",
- "devicePlatformsNone": "None",
- "deviceSelectionBladeExcludeDescription": "Select the platforms to exempt from the policy",
- "deviceSelectionBladeIncludeDescription": "Select the device platforms to include in this policy",
- "deviceStateAll": "All device state",
- "deviceStateCompliant": "Device marked as compliant",
- "deviceStateCompliantInfoContent": "Devices that are Intune compliant will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Intune compliant.",
- "deviceStateConditionConfigureInfoContent": "Configure policy based on device state",
- "deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Hybrid Azure AD joined' or 'marked as compliant'.\n '{0}' has been deprecated. Use '{1}' instead.",
- "deviceStateConditionSelectorLabel": "Device state (Preview)",
- "deviceStateDomainJoined": "Device Hybrid Azure AD joined",
- "deviceStateDomainJoinedInfoContent": "Devices that are Hybrid Azure AD joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Hybrid Azure AD joined.",
- "deviceStateDomainJoinedInfoLinkText": "Learn more.",
- "deviceStateExcludeDescription": "Select the device state condition used to exclude devices from policy.",
- "deviceStateIncludeAndExcludeOneLabel": "{0} and exclude {1}",
- "deviceStateIncludeAndExcludeTwoLabel": "{0} and exclude {1}, {2}",
- "directoryRoleInfoContent": "Assign policy to built-in directory roles.",
- "directoryRolesLabel": "Directory roles",
- "discardbutton": "Discard",
- "downloadDefaultFileName": "IP Ranges",
- "downloadExampleFileName": "Example",
- "downloadExampleHeader": "This is an example file with demonstrations of the kinds of data which can be accepted. Lines starting with # will be ignored.",
- "endDatePickerLabel": "Ends",
- "endTimePickerLabel": "End time",
- "enterCountryText": "IP address and Country are evaluated in a pair. Select the Country.",
- "enterIpText": "IP address and Country are evaluated in a pair. Input the IP address.",
- "enterUserText": "No user is selected. Select a user.",
- "evaluationResult": "Evaluation result",
- "exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
- "exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync with supported platforms only",
- "excludeAllTrustedLocationSelectorText": "all trusted locations",
- "featureRequiresP2": "This feature requires Azure AD Premium 2 license.",
- "friday": "Friday",
- "grantControls": "Grant controls",
- "gridNetworkTrusted": "Trusted",
- "gridPolicyCreatedDateTime": "Creation Date",
- "gridPolicyEnabled": "Enabled",
- "gridPolicyModifiedDateTime": "Modified Date",
- "gridPolicyName": "Policy Name",
- "gridPolicyState": "State",
- "groupSelectionBladeExcludeDescription": "Select the groups to exempt from the policy",
- "groupSelectionBladeExcludedSelectorTitle": "Select excluded groups",
- "groupSelectionBladeSelect": "Select groups",
- "groupSelectorInfoBallonText": "Groups in the directory that the policy applies to. For example, 'Pilot group'",
- "groupsSelectionBladeTitle": "Groups",
- "helpCommonScenariosText": "Interested in common scenarios?",
- "helpCondition1": "When any user is outside the company network",
- "helpCondition2": "When users in the 'Managers' group sign-in",
- "helpConditionsTitle": "Conditions",
- "helpControl1": "They're required to sign in with multi-factor authentication",
- "helpControl2": "They are required be on an Intune compliant or domain-joined device",
- "helpControlsTitle": "Controls",
- "helpIntroText": "Conditional Access gives you the ability to enforce access requirements when specific conditions occur. Let's take a few examples",
- "helpIntroTitle": "What is Conditional Access?",
- "helpLearnMoreText": "Want to learn more about Conditional Access?",
- "helpStartStep1": "Create your first policy by clicking \"+ New policy\"",
- "helpStartStep2": "Specify policy Conditions and Controls",
- "helpStartStep3": "When you are done, don't forget to Enable policy and Create",
- "helpStartTitle": "Get started",
- "highRisk": "High",
- "includeAndExcludeAppsTextFormat": "Include: {0}. Exclude: {1}.",
- "includeAppsTextFormat": "Include: {0}.",
- "includeUnknownAreasCheckboxInfoBalloonContent": "Unknown areas are IP addresses that can't be mapped to a country/region.",
- "includeUnknownAreasCheckboxLabel": "Include unknown areas",
- "infoCommandLabel": "Info",
- "invalidCertDuration": "Invalid cert duration",
- "invalidIpAddress": "Value must be a valid IP address",
- "invalidUriErrorMsg": "Please enter a valid Uri. For example,'uri:contoso.com:acr' ",
- "iosDisplayName": "iOS",
- "linuxDisplayName": "Linux",
- "linuxDisplayNamePreview": "Linux (Preview)",
- "loadAll": "Load all",
- "loading": "Loading...",
- "locationConfigureNamedLocationsText": "Configure all trusted locations",
- "locationConfigureNamedLocationsUri": "{0}/usermanagement/mfasettings.aspx?tenantid={1}&culture={2}",
- "locationNameTooLongError": "Location name is too long. Maximum is 256 characters",
- "locationSelectionBladeExcludeDescription": "Select the locations to exempt from the policy",
- "locationSelectionBladeIncludeDescription": "Select the locations to include in this policy",
- "locationsAllLocationsLabel": "Any location",
- "locationsAllNamedLocationsLabel": "All trusted IPs",
- "locationsAllPrivateLinksLabel": "All Private Links in my tenant",
- "locationsIncludeExcludeLabel": "{0} and exclude all trusted IPs",
- "locationsSelectedPrivateLinksLabel": "Selected Private Links",
- "lowRisk": "Low",
- "macOsDisplayName": "macOS",
- "managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Azure AD Premium P1 or P2.",
- "markAsTrustedCheckboxInfoBalloonContent": "Signing in from a trusted location lowers a user's sign-in risk. Only mark this location as trusted if you know the IP ranges entered are established and credible in your organization.",
- "markAsTrustedCheckboxLabel": "Mark as trusted location",
- "mediumRisk": "Medium",
- "memberSelectionCommandRemove": "Remove",
- "menuItemClaimProviderControls": "Custom controls (Preview)",
- "menuItemClassicPolicies": "Classic policies",
- "menuItemInsightsAndReporting": "Insights and reporting",
- "menuItemManage": "Manage",
- "menuItemNamedLocationsPreview": "Named locations (Preview)",
- "menuItemNamedNetworks": "Named locations",
- "menuItemPolicies": "Policies",
- "menuItemTermsOfUse": "Terms of use",
- "modifiedTimeLabel": "Modified time",
- "monday": "Monday",
- "nameLabel": "Name",
- "namedLocationCountryInfoBanner": "Only IPv4 addresses are mapped to countries/regions. IPv6 addresses are included in unknown countries/regions.",
- "namedLocationTypeCountry": "Countries/Regions",
- "namedLocationTypeLabel": "Define the location using:",
- "namedLocationUpsellBanner": "This view has been deprecated. Go to the new and improved 'Named locations' view.",
- "namedLocationsHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/namedlocationupdate",
- "namedNetworkAddIpRanges": "Add a new IP range (ex: 40.77.182.32/27)",
- "namedNetworkCountryNeeded": "You need to select at least one country",
- "namedNetworkDeleteCommand": "Delete",
- "namedNetworkDeleteDescription": "Are you sure you want to delete '{0}'? This action cannot be undone.",
- "namedNetworkDeleteTitle": "Are you sure?",
- "namedNetworkDownloadIpRange": "Download",
- "namedNetworkInvalidRange": "Value must be a valid IP range.",
- "namedNetworkIpRangeNeeded": "You need at least one valid IP range",
- "namedNetworkIpRangesDescriptionContent": "Configure your organization's IP ranges",
- "namedNetworkIpRangesTab": "IP ranges",
- "namedNetworkListAdd": "New location",
- "namedNetworkListConfigureTrustedIps": "Configure MFA trusted IPs",
- "namedNetworkNameDescription": "Example: 'Redmond office'",
- "namedNetworkNameInvalid": "The supplied name is invalid.",
- "namedNetworkNameRequired": "You must supply a name for this location.",
- "namedNetworkNoIpRanges": "No IP ranges",
- "namedNetworkNotificationCreateDescription": "Creating location named '{0}'",
- "namedNetworkNotificationCreateFailedDescription": "Creating location '{0}' failed. Please try again later.",
- "namedNetworkNotificationCreateFailedTitle": "Failed to create location",
- "namedNetworkNotificationCreateSuccessDescription": "Created location named '{0}'",
- "namedNetworkNotificationCreateSuccessTitle": "Created '{0}'",
- "namedNetworkNotificationCreateTitle": "Creating '{0}'",
- "namedNetworkNotificationDeleteDescription": "Deleting location named '{0}'",
- "namedNetworkNotificationDeleteFailedDescription": "Deleting location '{0}' failed. Please try again later.",
- "namedNetworkNotificationDeleteFailedTitle": "Failed to Delete location",
- "namedNetworkNotificationDeleteSuccessDescription": "Deleted location named '{0}'",
- "namedNetworkNotificationDeleteSuccessTitle": "Deleted '{0}'",
- "namedNetworkNotificationDeleteTitle": "Deleting '{0}'",
- "namedNetworkNotificationUpdateDescription": "Updating location named '{0}'",
- "namedNetworkNotificationUpdateFailedDescription": "Updating location '{0}' failed. Please try again later.",
- "namedNetworkNotificationUpdateFailedTitle": "Failed to Update location",
- "namedNetworkNotificationUpdateSuccessDescription": "Updated location named '{0}'",
- "namedNetworkNotificationUpdateSuccessTitle": "Updated '{0}'",
- "namedNetworkNotificationUpdateTitle": "Updating '{0}'",
- "namedNetworkSearchPlaceholder": "Search locations.",
- "namedNetworkUploadFailedDescription": "There was an error parsing the supplied file. Please make sure to upload a plain-text file with each line in the CIDR format.",
- "namedNetworkUploadFailedTitle": "Failed to parse '{0}'",
- "namedNetworkUploadInProgressDescription": "Attempting to parse valid CIDR values from '{0}'.",
- "namedNetworkUploadInProgressTitle": "Parsing '{0}'",
- "namedNetworkUploadInvalidDescription": "'{0}' is either too large or in an invalid format.",
- "namedNetworkUploadInvalidTitle": "'{0}' Invalid",
- "namedNetworkUploadIpRange": "Upload",
- "namedNetworkUploadSuccessDescription": "{0} lines analyzed. {1} in a bad format. {2} skipped.",
- "namedNetworkUploadSuccessTitle": "Finished parsing '{0}'",
- "namedNetworksAdd": "New named location",
- "namedNetworksConditionHelpDescription": "Control user access based on their physical location.\n[Learn more][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
- "namedNetworksExcludeLabel": "{0} and {1} excluded",
- "namedNetworksHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
- "namedNetworksIncludeLabel": "{0} included",
- "namedNetworksNone": "No named locations found.",
- "namedNetworksTitle": "Configure locations",
- "namednetworkExceedingSizeErrorBladeTitle": "Error details",
- "namednetworkExceedingSizeErrorDetailText": "Click here for more details.",
- "namednetworkExceedingSizeErrorMessage": "You have exceeded the maximum allowed storage for named locations. Try again with a shorter list. Click here to view more details.",
- "newCertName": "new cert",
- "noPolicyRowMessage": "No policies",
- "noSPSelected": "No service principal selected",
- "noUpdatePermissionMessage": "You don't have permissions to update these settings. Please contact your global administrator to get access.",
- "noUserSelected": "No user selected",
- "noneRisk": "No risk",
- "office365Description": "These apps include Microsoft Flow, Microsoft Forms, Microsoft Teams, Office 365 Exchange Online, Office 365 SharePoint Online, Office 365 Yammer, and others.",
- "office365InfoBox": "At least one of the apps selected is part of Office 365. We recommend setting the policy on the Office 365 app instead.",
- "oneUserSelected": "1 user selected",
- "onlyGlobalAdminsCanSaveThisPolicyConfig": "Only global administrators can save this policy.",
- "or": "{0} OR {1} ",
- "pickerDoneCommand": "Done",
- "policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like Cloud apps, Sign-in risk, and Device platforms with Azure AD Premium",
- "policiesBladeTitle": "Policies",
- "policiesBladeTitleWithAppName": "Policies: {0}",
- "policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked sign-on attribute.",
- "policiesHitMaxLimitStatusBarMessage": "You've reached the maximum number of policies for this tenant. Delete some policies before creating more.",
- "policyAssignmentsSection": "Assignments",
- "policyBlockAllInfoBox": "The configured policy will block all users, so it is not supported. Review the assignments and controls. Exclude the current user {0}, if you would like to save this policy.",
- "policyCloudAppsDisplayTextAllApp": "All apps",
- "policyCloudAppsLabel": "Cloud apps",
- "policyConditionClientAppDescription": "Software the user is employing to access the cloud app. For example, 'Browser'",
- "policyConditionClientAppV2Description": "Software the user is employing to access the cloud app. For example, 'Browser'",
- "policyConditionDevicePlatform": "Device platforms",
- "policyConditionDevicePlatformDescription": "Platform the user is signing in from. For example, 'iOS'",
- "policyConditionLocation": "Locations",
- "policyConditionLocationDescription": "Location (determined using IP address range) the user is signing in from",
- "policyConditionSigninRisk": "Sign-in risk",
- "policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Azure AD Premium 2 license.",
- "policyConditionUserRisk": "User risk",
- "policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
- "policyConditioniClientApp": "Client apps",
- "policyConditioniClientAppV2": "Client apps (Preview)",
- "policyControlAllowAccessDisplayedName": "Grant access",
- "policyControlAuthenticationStrengthDisplayedName": "Require authentication strength (Preview)",
- "policyControlBladeTitle": "Grant",
- "policyControlBlockAccessDisplayedName": "Block access",
- "policyControlCompliantDeviceDisplayedName": "Require device to be marked as compliant",
- "policyControlContentDescription": "Control access enforcement to block or grant access.",
- "policyControlInfoBallonText": "Block access or select additional requirements which need to be satisfied to allow access",
- "policyControlMfaChallengeDisplayedName": "Require multi-factor authentication",
- "policyControlRequireCompliantAppDisplayedName": "Require app protection policy",
- "policyControlRequireDomainJoinedDisplayedName": "Require Hybrid Azure AD joined device",
- "policyControlRequireMamDisplayedName": "Require approved client app",
- "policyControlRequiredPasswordChangeDisplayedName": "Require password change",
- "policyControlSelectAuthStrength": "Require authentication strength",
- "policyControlsNoControlsSelected": "0 controls selected",
- "policyControlsSection": "Access controls",
- "policyCreatBladeTitle": "New",
- "policyCreateButton": "Create",
- "policyCreateFailedMessage": "Error: {0}",
- "policyCreateFailedTitle": "Failed to create '{0}'",
- "policyCreateInProgressTitle": "Creating '{0}'",
- "policyCreateSuccessMessage": "Successfully created '{0}'. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
- "policyCreateSuccessTitle": "Successfully created '{0}'",
- "policyDeleteConfirmation": "Are you sure you want to delete '{0}'? This action cannot be undone.",
- "policyDeleteFailTitle": "Failed to delete '{0}'",
- "policyDeleteInProgressTitle": "Deleting '{0}'",
- "policyDeleteSuccessTitle": "Successfully deleted '{0}'",
- "policyEnforceLabel": "Enable policy",
- "policyErrorCannotSetSigninRisk": "You don't have permission to save a policy with a sign-in risk condition.",
- "policyErrorNoPermission": "You don't have permission to save policy. Contact your global admin.",
- "policyErrorUnknown": "Something went wrong, please try again later.",
- "policyFallbackWarningMessage": "Failure to create or update '{0}' using MS Graph resulting in a fallback to AD Graph. Please investigate the following scenario as there is most likely a bug when calling the policy endpoint for MS Graph with an incompatible condition.",
- "policyFallbackWarningTitle": "Creating or updating '{0}' partially successful",
- "policyNameCannotBeEmpty": "Policy name can't be empty",
- "policyNameDevice": "Device policy",
- "policyNameFormat": "[{0}] {1}",
- "policyNameMam": "Mobile App Management policy",
- "policyNameMfaLocation": "MFA and location policy",
- "policyNamePlaceholderText": "Example: 'Device compliance app policy'",
- "policyNameTooLongError": "Policy name is too long. Maximum 256 characters",
- "policyOff": "Off",
- "policyOn": "On",
- "policyReportOnly": "Report-only",
- "policyReviewSection": "Review",
- "policySaveButton": "Save",
- "policyStatusIconDescription": "Policy is Enabled",
- "policyStatusIconEnabled": "Enabled status icon",
- "policyTemplateName1": "Use app enforced restrictions for {0} browser access",
- "policyTemplateName2": "Allow {0} access only on managed devices",
- "policyTemplateName3": "Policy migrated from Continuous Access Evaluation settings",
- "policyTriggerRiskSpecific": "Select specific risk level",
- "policyTriggersInfoBalloonText": "Conditions which define when the policy will apply. For example, 'location'",
- "policyTriggersNoConditionsSelected": "0 conditions selected",
- "policyTriggersSelectorLabel": "Conditions",
- "policyUpdateFailedMessage": "Error: {0}",
- "policyUpdateFailedTitle": "Failed to update {0}",
- "policyUpdateInProgressTitle": "Updating {0}",
- "policyUpdateSuccessMessage": "Successfully updated {0}. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
- "policyUpdateSuccessTitle": "Successfully updated {0}",
- "primaryCol": "Primary",
- "privateLinkLabel": "Azure AD Private Link",
- "reportOnlyInfoBox": "Report-only mode: Policies are evaluated and logged at sign-in but do not impact users.",
- "requireAllControlsText": "Require all the selected controls",
- "requireCompliantDevice": "Require compliant device",
- "requireDomainJoined": "Require domain-joined device",
- "requireMFA": "Require multi-factor authentication ",
- "requireOneControlText": "Require one of the selected controls",
- "resetFilters": "Reset filters",
- "sPRequired": "Service principal required",
- "sPSelectorInfoBalloon": "User or Service Principal you want to test",
- "saturday": "Saturday",
- "searchTextTooLongError": "The search text is too long. Maximum 256 characters",
- "securityDefaultsPolicyName": "Security defaults",
- "securityDefaultsTextMessage": "Security defaults must be disabled to enable Conditional Access policy.",
- "securityDefaultsWarningMessage": "It looks like you're about to manage your organization's security configurations. That's great! You must first disable Security defaults before enabling a Conditional Access policy.",
- "selectDevicePlatforms": "Select device platforms",
- "selectNamedNetworksSubtitle": "",
- "selectNamedNetworksTitle": "Select locations",
- "selectedSP": "Selected Service Principal",
- "servicePrincipalDataGridAria": "List of available service principals",
- "servicePrincipalDropDownLabel": "What does this policy apply to?",
- "servicePrincipalInfoBox": "Some conditions are not available due to '{0}' selection in policy assignment",
- "servicePrincipalRadioAll": "All owned service principals",
- "servicePrincipalRadioSelect": "Select service principals",
- "servicePrincipalSelectionsAria": "Selected service principals grid",
- "servicePrincipalSelectorAria": "List of chosen service principals",
- "servicePrincipalSelectorMultiple": "{0} service principals selected",
- "servicePrincipalSelectorSingle": "1 service principal selected",
- "servicePrincipalSpecificInc": "Specific service principals included",
- "servicePrincipals": "Service principals",
- "sessionControlBladeTitle": "Session",
- "sessionControlDescriptionContent": "Control access based on session controls to enable limited experiences within specific cloud applications.",
- "sessionControlDisableInfo": "This control only works with supported apps. Currently, Office 365, Exchange Online, and SharePoint Online are the only cloud apps that support app enforced restrictions. Click here to learn more.",
- "sessionControlInfoBallonText": "Session controls enable limited experience within a cloud app.",
- "sessionControls": "Session controls",
- "sessionControlsAppEnforcedLabel": "Use app enforced restrictions",
- "sessionControlsCasLabel": "Use Conditional Access App Control",
- "sessionControlsSecureSignInLabel": "Require token binding",
- "sharepointAppName": "SharePoint",
- "signinRiskDescription": "Select the sign-in risk level this policy will apply to",
- "signinRiskInclude": "{0} included",
- "signinRiskTriggerDescriptionContent": "Select the sign-in risk level",
- "singleTenantServicePrincipalInfoBallonText": "Policy only applies to single tenant service principals owned by your organization. Click here to learn more ",
- "specificSigninRiskLevelsOption": "Select specific sign-in risk levels",
- "specificUsersExcluded": "specific users excluded",
- "specificUsersIncluded": "Specific users included",
- "specificUsersIncludedAndExcluded": "Specific users excluded and included",
- "startDatePickerLabel": "Starts",
- "startFreeTrial": "Start a free trial",
- "startTimePickerLabel": "Start time",
- "sunday": "Sunday",
- "testButton": "What If",
- "thumbprintCol": "Thumbprint",
- "thursday": "Thursday",
- "timeConditionAllTimesLabel": "Any time",
- "timeConditionIntroText": "Configure the time this policy will apply to",
- "timeConditionSelectorInfoBallonContent": "When the user is signing in. For example, \"Wednesday 9am-5pm PST\"",
- "timeConditionSelectorLabel": "Time (Preview)",
- "timeConditionSpecificLabel": "Specific times",
- "timeSelectorAllTimesText": "Any time",
- "timeSelectorSpecificTimesText": "Specific times configured",
- "timeZoneDropdownInfoBalloonContent": "Select a time zone that defines the time range. This policy applies to users in all time zones. For example, 'Wednesday 9am - 5pm' for one user would be 'Wednesday 10am - 6pm' for a user in a different time zone.",
- "timeZoneDropdownLabel": "Time zone",
- "timeZoneDropdownPlaceholderText": "Select a time zone",
- "tooManyPoliciesDescription": "Only first 50 policies are being displayed now, click here to view all policies",
- "tooManyPoliciesTitle": "More than 50 policies found",
- "trustedLocationStatusIconDescription": "Location is trusted",
- "trustedLocationStatusIconEnabled": "Trusted status icon",
- "tuesday": "Tuesday",
- "uploadInBadState": "Unable to upload the specified file.",
- "upsellAppsDescription": "Require multi-factor authentication for sensitive applications all the time or only from outside the company network.",
- "upsellAppsTitle": "Secure applications",
- "upsellBannerText": "Get a free Premium trial to use this feature",
- "upsellDataDescription": "Require device to be marked as compliant or Hybrid Azure AD joined to allow access to company resources.",
- "upsellDataTitle": "Secure data",
- "upsellDescription": "Conditional Access provides the control and protection you need to keep your corporate data secure, while giving your people an experience that allows them to do their best work from any device. For instance, you can restrict access from outside the company network or restrict access to devices which meet the compliance policies.",
- "upsellRiskDescription": "Require multi-factor authentication for risk events detected by Microsoft's machine learning system.",
- "upsellRiskTitle": "Protect against risk",
- "upsellTitle": "Conditional Access",
- "upsellWhyTitle": "Why use Conditional Access?",
- "userAppNoneOption": "None",
- "userNamePlaceholderText": "Enter User Name",
- "userNotSetSeletorLabel": "0 users and groups selected",
- "userOnlySelectionBladeExcludeDescription": "Select the users to exempt from the policy",
- "userOrGroupSelectionCountDiffBannerText": "{0} configured in this policy have been deleted from the directory, but this doesn't affect the other users and groups in the policy. The next time you update the policy, the deleted users and/or groups will be automatically removed.",
- "userOrSPNotSetSelectorLabel": "0 users or workload identities selected",
- "userOrSPSelectionBladeTitle": "Users or workload identities",
- "userOrSPSelectorInfoBallonText": "Identities in the directory that the policy applies to, including users, groups, and service principals",
- "userRequired": "User Required",
- "userRiskErrorBox": "\"User risk\" condition must be selected when \"Require password change\" grant is selected",
- "userSPRequired": "User or Service principal required",
- "userSPSelectorTitle": "User or Workload identity",
- "userSelectionBladeAllUsersAndGroups": "All users and groups",
- "userSelectionBladeExcludeDescription": "Select the users and groups to exempt from the policy",
- "userSelectionBladeExcludeTabTitle": "Exclude",
- "userSelectionBladeExcludedSelectorTitle": "Select excluded users",
- "userSelectionBladeIncludeDescription": "Select the users this policy will apply to",
- "userSelectionBladeIncludeTabTitle": "Include",
- "userSelectionBladeIncludedSelectorTitle": "Select",
- "userSelectionBladeSelectUsers": "Select users",
- "userSelectionBladeSelectedUsers": "Select users and groups",
- "userSelectionBladeTitle": "Users and groups",
- "userSelectorBladeTitle": "Users",
- "userSelectorExcluded": "{0} excluded",
- "userSelectorGroupPlural": "{0} groups",
- "userSelectorGroupSingular": "1 group",
- "userSelectorIncluded": "{0} included",
- "userSelectorInfoBallonText": "Users and groups in the directory that the policy applies to. For example, 'Pilot group'",
- "userSelectorSelected": "{0} selected",
- "userSelectorTitle": "User",
- "userSelectorUserAndGroup": "{0}, {1}",
- "userSelectorUserPlural": "{0} users",
- "userSelectorUserSingular": "1 user",
- "userSelectorWithExclusion": "{0} and {1}",
- "usersGroupsLabel": "Users and groups",
- "viewApprovedAppsText": "See list of approved client apps",
- "viewCompliantAppsText": "See list of policy protected client apps",
- "vpnBladeTitle": "VPN connectivity",
- "vpnCertCreateFailedMessage": "Error: {0}",
- "vpnCertCreateFailedTitle": "Failed to create {0}",
- "vpnCertCreateInProgressTitle": "Creating {0}",
- "vpnCertCreateSuccessMessage": "Successfully created {0}.",
- "vpnCertCreateSuccessTitle": "Successfully created {0}",
- "vpnCertNoRowsMessage": "No VPN certificates found",
- "vpnCertUpdateFailedMessage": "Error: {0}",
- "vpnCertUpdateFailedTitle": "Failed to update {0}",
- "vpnCertUpdateInProgressTitle": "Updating {0}",
- "vpnCertUpdateSuccessMessage": "Successfully updated {0}.",
- "vpnCertUpdateSuccessTitle": "Successfully updated {0}",
- "vpnFeatureInfo": "For more information on VPN connectivity and Conditional Access, click here.",
- "vpnFeatureWarning": "Once a VPN certificate is created in the Azure portal, Azure AD will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
- "vpnMenuText": "VPN connectivity",
- "vpncertDropdownDefaultOption": "Duration",
- "vpncertDropdownInfoBalloonContent": "Select the duration for the cert you want to create",
- "vpncertDropdownLabel": "Select duration",
- "vpncertDropdownOneyearOption": "1 year",
- "vpncertDropdownThreeyearOption": "3 years",
- "vpncertDropdownTwoyearOption": "2 years",
- "wednesday": "Wednesday",
- "whatIfAppEnforcedControl": "Use app enforced restrictions",
- "whatIfBladeDescription": "Test the impact of Conditional Access on a user when signing in under certain conditions.",
- "whatIfBladeTitle": "What If",
- "whatIfClassicPoliciesWarning": "Classic policies are not evaluated by this tool.",
- "whatIfClientAppInfo": "The client app the user is signing in from. For example, 'Browser'.",
- "whatIfCountry": "Country",
- "whatIfCountryInfo": "The country the user is signing in from.",
- "whatIfDevicePlatformInfo": "The device platform the user is signing in from.",
- "whatIfDeviceStateInfo": "The device state the user is signing in from",
- "whatIfEnterIpAddress": "Enter IP address (ex: 40.77.182.32)",
- "whatIfErrorInvalidIpAddress": "An invalid IP address was specified.",
- "whatIfEvaResultApplication": "Cloud apps",
- "whatIfEvaResultClientApps": "Client app",
- "whatIfEvaResultDevicePlatform": "Device platform",
- "whatIfEvaResultEmptyPolicy": "Empty policy",
- "whatIfEvaResultInvalidCondition": "Invalid condition",
- "whatIfEvaResultInvalidPolicy": "Invalid policy",
- "whatIfEvaResultLocation": "Location",
- "whatIfEvaResultNotEnoughInformation": "Not enough information",
- "whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
- "whatIfEvaResultSignInRisk": "Sign-in risk",
- "whatIfEvaResultUsers": "Users and groups",
- "whatIfIpAddress": "IP address",
- "whatIfIpAddressInfo": "IP address the user is signing in from.",
- "whatIfIpCountryInfoBoxText": "If using an IP address or Country, both fields will be required and should correctly map together.",
- "whatIfPolicyAppliesTab": "Policies that will apply",
- "whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
- "whatIfReasons": "Reasons why this policy will not apply",
- "whatIfSelectClientApp": "Select a client app...",
- "whatIfSelectCountry": "Select country...",
- "whatIfSelectDevicePlatform": "Select device platform...",
- "whatIfSelectPrivateLink": "Select private link...",
- "whatIfSelectServicePrincipalRisk": "Select service principal risk...",
- "whatIfSelectSignInRisk": "Select sign-in risk...",
- "whatIfSelectType": "Select identity type",
- "whatIfSelectUserRisk": "Select user risk...",
- "whatIfServicePrincipalRiskInfo": "The risk level associated with the service principal",
- "whatIfSignInRisk": "Sign-in risk",
- "whatIfSignInRiskInfo": "The risk level associated with the sign-in",
- "whatIfUnknownAreas": "Unknown Areas",
- "whatIfUserPickerLabel": "Selected user",
- "whatIfUserPickerNoRowsLabel": "No user or service principal selected",
- "whatIfUserRiskInfo": "The risk level associated with the user",
- "whatIfUserSelectorInfo": "User in the directory that you want to test",
- "windows365InfoBox": "Selecting Windows 365 will affect connections to Cloud PCs and Azure Virtual Desktop session hosts. Click here to learn more.",
- "windowsDisplayName": "Windows",
- "windowsPhoneDisplayName": "Windows Phone",
- "workloadIdentities": "Workload identities (Preview)",
- "workloadIdentity": "Workload identity"
- },
- "ApplicableDeviceType": {
- "iPad": "iPad",
- "iPhoneAndIPod": "iPhone and iPod"
- },
- "TAPSettings": {
- "AllowedDataIngestionLocations": {
- "label": "Allow users to open data from selected services",
- "tooltip": "Select the application storage services users can open data from. All other services are blocked. Selecting no services will prevent users from opening data."
- },
- "AndroidBackup": {
- "label": "Backup org data to Android backup services",
- "tooltip": "Select {0} to prevent backup of org data to Android backup services. \nSelect {1} to permit backup of org data to Android backup services. \nPersonal or unmanaged data is not affected."
- },
- "AndroidBiometricAuthentication": {
- "label": "Biometrics instead of PIN for access",
- "tooltip": "Choose which android authentication methods people can use, if any, in place of an app PIN."
- },
- "AndroidFingerprint": {
- "label": "Fingerprint instead of PIN for access (Android 6.0+)",
- "tooltip": "Android OS uses fingerprint scans to authenticate Android-device users. This feature supports the native biometric controls on Android devices. OEM-specific biometric settings, like Samsung Pass, are not supported. If allowed, native biometric controls must be used to access the app on a capable device."
- },
- "AndroidOverrideFingerprint": {
- "label": "Override fingerprint with PIN after timeout"
- },
- "AppPIN": {
- "label": "App PIN when device PIN is set",
- "tooltip": "If not required, an app PIN does not need to be used to access the app if the device PIN is set on an MDM enrolled device.
\n\nNote: Intune cannot detect device enrollment with a third-party EMM solution on Android."
- },
- "BlockDataIngestionIntoOrganizationDocuments": {
- "label": "Open data into Org documents",
- "tooltip1": "Select Block to disable the use of the Open option or other options to share data between accounts in this app. Select Allow if you want to allow the use of Open and other options to share data between accounts in this app.",
- "tooltip2": "When set to Block, you can configure the following setting, Allow user to open data from selected services, to specify which services are allowed for Org data locations.",
- "tooltip3": "Note: This setting is only enforced if the setting \"Receive data from other apps\" is set to \"Policy managed apps\".
\nNote: This setting does not apply to all applications. For more information see {0}.",
- "tooltip4": "Note: This setting is only enforced if the setting \"Receive data from other apps\" is set to \"Policy managed apps\".
\nNote: This setting does not apply to all applications. For more information see {0} or {0}."
- },
- "ConnectToVpnOnLaunch": {
- "label": "Start Microsoft Tunnel connection on app-launch",
- "tooltip": "Allow connection to VPN when app is launch"
- },
- "CredentialsForAccess": {
- "label": "Work or school account credentials for access",
- "tooltip": "If required, work or school credentials must be used to access the policy-managed app. If PIN or biometric methods also required for access to the app, the work or school account credentials will be required on top of those prompts."
- },
- "CustomBrowserDisplayName": {
- "label": "Unmanaged Browser Name",
- "tooltip": "Enter the application name for browser associated with the \"Unmanaged Browser ID\". This name will be displayed to users if the specified browser is not installed."
- },
- "CustomBrowserPackageId": {
- "label": "Unmanaged Browser ID",
- "tooltip": "Enter the application ID for a single browser. Web content (http/s) from policy managed applications will open in the specified browser."
- },
- "CustomBrowserProtocol": {
- "label": "Unmanaged browser protocol",
- "tooltip": "Enter the protocol for a single unmanaged browser. Web content (http/s) from policy managed applications will open in any app that supports this protocol.
\n \nNote: Include only the protocol prefix. If your browser requires links of the form \"mybrowser://www.microsoft.com\", enter \"mybrowser\".
"
- },
- "CustomDialerAppDisplayName": {
- "label": "Dialer App Name"
- },
- "CustomDialerAppPackageId": {
- "label": "Dialer App Package ID"
- },
- "CustomDialerAppProtocol": {
- "label": "Dialer App URL Scheme"
- },
- "Cutcopypaste": {
- "label": "Restrict cut, copy, and paste between other apps",
- "tooltip": "Cut, copy, and paste data between your app and other approved apps installed on the device. Choose to block these actions completely between apps, allow these actions for use with any app, or restrict use to apps that your organization manages.
\n\nPolicy-managed apps with paste in gives you the option to accept incoming content pasted from another app. However, it blocks users from sharing content outwardly, unless sharing with a managed app.
"
- },
- "DialerRestrictionLevel": {
- "iosTooltip": "Typically, when a user selects a hyperlinked phone number in an app, a dialer app will open with the phone number prepopulated and ready to call. For this setting, choose how to handle this type of content transfer when it's initiated from a policy-managed app. Additional steps may be necessary in order for this setting to take effect. First, verify that tel and telprompt have been removed from the Select apps to exempt list. Then, ensure the application is using a newer version of Intune SDK (Version 12.7.0+).",
- "label": "Transfer telecommunication data to",
- "tooltip": "Typically, when a user selects a hyperlinked phone number in an app, a dialer app will open with the phone number prepopulated and ready to call. For this setting, choose how to handle this type of content transfer when it's initiated from a policy-managed app."
- },
- "EncryptData": {
- "label": "Encrypt org data",
- "link": "https://docs.microsoft.com/en-us/intune/app-protection-policy-settings-android#data-relocation-settings",
- "tooltip": "Select {0} to enforce encrypting org data with Intune app layer encryption.\n
\nSelect {1} to not enforce encrypting org data with Intune app layer encryption.\n\n
\nNote: For more information on Intune app layer encryption, see {2}."
- },
- "EncryptDataAndroid": {
- "tooltip": "Choose Require to enable encryption of work or school data in this app. Intune uses an OpenSSL, 256-bit AES encryption scheme along with the Android Keystore system to securely encrypt app data. Data is encrypted synchronously during file I/O tasks. Content on the device storage is always encrypted. The SDK will continue to provide support of 128-bit keys for compatibility with content and apps that use older SDK versions.
\n\nThe encryption method is FIPS 140-2 compliant.
"
- },
- "EncryptDataIos": {
- "tooltip1": "Choose Require to enable encryption of work or school data in this app. Intune enforces iOS/iPadOS device encryption to protect app data while the device is locked. Applications may optionally encrypt app data using Intune APP SDK encryption. Intune APP SDK uses iOS/iPadOS cryptography methods to apply 128-bit AES encryption to app data.",
- "tooltip2": "When you enable this setting, the user may be required to set up and use a PIN to access their device. If there's no device PIN and encryption is required, the user is prompted to set a PIN with the message \"Your organization has required you to first enable a device PIN to access this app.\"",
- "tooltip3": "Go to the official Apple documentation to see which iOS encryption modules are FIPS 140-2 compliant or pending FIPS 140-2 compliance."
- },
- "EncryptDataOnEnrolledDevices": {
- "label": "Encrypt org data on enrolled devices",
- "tooltip": "Select {0} to enforce encrypting org data with Intune app layer encryption on all devices.
\n\nSelect {1} to not enforce encrypting org data with Intune app layer encryption on enrolled devices."
- },
- "IOSBackup": {
- "label": "Backup org data to iTunes and iCloud backups",
- "tooltip": "Select {0} to prevent backup of org data to iTunes or iCloud. \nSelect {1} to permit backup of org data to iTunes or iCloud. \nPersonal or unmanaged data is not affected."
- },
- "IOSFaceID": {
- "label": "Face ID instead of PIN for access (iOS 11+/iPadOS)",
- "tooltip": "Face ID uses facial recognition technology to authenticate users on iOS/iPadOS devices. Intune calls the LocalAuthentication API to authenticate users using Face ID. If allowed, Face ID must be used to access the app on a Face ID capable device."
- },
- "IOSOverrideTouchId": {
- "label": "Override biometrics with PIN after timeout"
- },
- "IOSTouchId": {
- "label": "Touch ID instead of PIN for access (iOS 8+/iPadOS)",
- "tooltip": "Touch ID uses fingerprint recognition technology to authenticate users on iOS devices. Intune calls the LocalAuthentication API to authenticate users using Touch ID. If allowed, Touch ID must be used to access the app on a Touch ID capable device."
- },
- "NotificationRestriction": {
- "label": "Org data notifications",
- "tooltip": "Select one of the following options to specify how notifications for org accounts are shown for this app and any connected devices such as wearables:
\n{0}: Do not share notifications.
\n{1}: Do not share org data in notifications. If not supported by the application, notifications are blocked.
\n{2}: Share all notifications.
\n Android only:\n Note: This setting does not apply to all applications. For more information see {3}
\n \n iOS only:\nNote: This setting does not apply to all applications. For more information see {4}
"
- },
- "OpenLinksManagedBrowser": {
- "label": "Restrict web content transfer with other apps",
- "tooltip": "Select one of the following options to specify the apps that this app can open web content in:
\nEdge: Allow web content to open only in Edge
\nUnmanaged browser: Allow web content to open only in the unmanaged browser defined by \"Unmanaged browser protocol\" setting
\nAny app: Allow web links in any app
"
- },
- "OverrideBiometric": {
- "tooltip": "If required, depending on the timeout (minutes of inactivity), a PIN prompt will override biometric prompts. If this timeout value is not met, the biometric prompt will continue to show. This timeout value should be greater than the value specified under 'Recheck the access requirements after (minutes of inactivity)'. "
- },
- "PinAccess": {
- "label": "PIN for access",
- "tooltip": "If required, a PIN must be used to access the policy-managed app. Users must create an access PIN the first time that they open the app from a work or school account."
- },
- "PinLength": {
- "label": "Select minimum PIN length",
- "tooltip": "This setting specifies the minimum number of digits of a PIN."
- },
- "PinType": {
- "label": "PIN type",
- "tooltip": "Numeric PINs are made up of all numbers. Passcodes are made up of alphanumeric characters and special characters. "
- },
- "Printing": {
- "label": "Printing org data",
- "tooltip": "If blocked, the app cannot print protected data."
- },
- "ReceiveData": {
- "label": "Receive data from other apps",
- "tooltip": "Select one of the following options to specify the apps that this app can receive data from:
\n\nNone: Do not allow receiving data in org documents or accounts from any app
\n\nPolicy managed apps: Only allow receiving data in org documents or accounts from other policy managed apps\n
\nAny app with incoming org data: Allow receiving data in org documents or accounts from from any app and treat all incoming data without an user account as org data
\n\nAll apps: Allow receiving data in org documents or accounts from any app"
- },
- "RecheckAccessAfter": {
- "label": "Recheck the access requirements after (minutes of inactivity)\n\n",
- "tooltip": "If the policy-managed app is inactive for longer than the number of minutes of inactivity specified, the app will prompt the access requirements (i.e PIN, conditional launch settings) to be rechecked after the app is launched."
- },
- "RestrictKeyboards": {
- "duplicatePackageError": "The package ID must be unique.",
- "invalidPackageError": "Invalid package ID",
- "label": "Approved keyboards",
- "select": "Select keyboards to approve",
- "subtitle": "Add all keyboards and input methods that users are allowed to use with targeted apps. Enter the keyboard name as you would like it to appear to the end user.",
- "title": "Add approved keyboards",
- "toolTip": "Select Require and then specify a list of approved keyboards for this policy. Learn more."
- },
- "SaveData": {
- "label": "Save copies of org data",
- "tooltip": "Select {0} to prevent saving a copy of org data to a new location, other than the selected storage services, using \"Save As\".\n Select {1} to permit saving a copy of org data to a new location using \"Save As\".
\n\n\nNote: This setting does not apply to all applications. For more information see {2}.\n"
- },
- "SaveDataToSelected": {
- "label": "Allow user to save copies to selected services",
- "tooltip": "Select the storage services users can save copies of org data to. All other services are blocked. Selecting no services will prevent users from saving a copy of org data."
- },
- "ScreenCaptureAndAndroidAssistant": {
- "label": "Screen capture and Google Assistant\n",
- "tooltip": "If blocked, both screen capture and Google Assistant app scanning capabilities will be disabled when using the policy-managed app. This feature supports the usual Google Assistant app. Third party assistants using Google's Assist API are not supported. Choosing Block will also blur the App-Switcher preview image when using the app with a work or school account."
- },
- "SendData": {
- "label": "Send org data to other apps",
- "tooltip": "Select one of the following options to specify the apps that this app can send org data to:
\n\n\nNone: Do not allow sending org data to any app
\n\n\nPolicy managed apps: Only allow sending org data to other policy managed apps
\n\n\nPolicy managed apps with OS sharing: Only allow sending org data to other policy managed apps and sending org documents to other MDM managed apps on enrolled devices
\n\n\nPolicy managed apps with Open-In/Share filtering: Only allow sending org data to other policy managed apps and filter OS Open-in/Share dialogs to only display policy managed apps\n
\n\nAll apps: Allow sending org data to any app"
- },
- "SimplePin": {
- "label": "Simple PIN",
- "tooltip": "If blocked, users may not create a simple PIN. A simple PIN is a string of consecutive or repetitive digits, such as 1234, ABCD, or 1111. Please note that blocking simple PIN of type 'Passcode' requires the passcode to have at least one number, one letter, and one special character."
- },
- "SyncContacts": {
- "label": "Sync policy managed app data with native apps or add-ins"
- },
- "ThirdPartyKeyboards": {
- "infoBox": "Keyboard restrictions will apply to all areas of an app. Personal accounts for apps that support multiple identities will be affected by this restriction. Learn more.",
- "label": "Third party keyboards"
- },
- "Timeout": {
- "label": "Timeout (minutes of inactivity)"
- },
- "Tap": {
- "numberOfDays": "Number of days",
- "pinResetAfterNumberOfDays": "PIN reset after number of days",
- "previousPinBlockCount": "Select number of previous PIN values to maintain"
- }
- },
- "WindowsFeatureUpdateProfile": {
- "Details": {
- "Description": {
- "label": "Description"
- },
- "FeatureDeploymentSettings": {
- "header": "Feature deployment settings"
- },
- "FeatureUpdateVersion": {
- "infoballoon": "This feature cannot downgrade a device.",
- "label": "Feature update to deploy"
- },
- "GradualRolloutEndDate": {
- "label": "Final group availability"
- },
- "GradualRolloutInterval": {
- "label": "Days between groups"
- },
- "GradualRolloutStartDate": {
- "label": "First group availability"
- },
- "Name": {
- "label": "Name"
- },
- "RolloutOptions": {
- "label": "Rollout options"
- },
- "RolloutSettings": {
- "header": "When would you like to make the update available in Windows Update?"
- },
- "ScopeSettings": {
- "header": "Configure scope tags for this policy."
- },
- "StartDateOnlyStartDate": {
- "label": "First available date"
- },
- "bladeTitle": "Feature update deployments",
- "deploymentSettingsTitle": "Deployment settings",
- "loadError": "Loading failed!",
- "windows11EULA": "By selecting this Feature update to deploy you are agreeing that when applying this operating system to a device either (1) the applicable Windows license was purchased though volume licensing, or (2) that you are authorized to bind your organization and are accepting on its behalf the relevant Microsoft Software License Terms to be found here {0}."
- },
- "Notifications": {
- "deploymentSaved": "\"{0}\" has been saved.",
- "newFeatureUpdateDeploymentCreated": "New feature update deployment created."
- },
- "TabName": {
- "deploymentSettings": "Deployment settings",
- "groupAssignmentSettings": "Assignments",
- "scopeSettings": "Scope tags"
- }
- },
- "OfficeUpdateChannel": {
- "current": "Current Channel",
- "deferred": "Semi-Annual Enterprise Channel",
- "firstReleaseCurrent": "Current Channel (Preview)",
- "firstReleaseDeferred": "Semi-Annual Enterprise Channel (Preview)",
- "monthlyEnterprise": "Monthly Enterprise Channel",
- "placeHolder": "Select one"
- },
- "Win32ReturnCodes": {
- "CodeTypes": {
- "failed": "Failed",
- "hardReboot": "Hard reboot",
- "retry": "Retry",
- "softReboot": "Soft reboot",
- "success": "Success"
- },
- "Columns": {
- "codeType": "Code type",
- "returnCode": "Return code"
- },
- "bladeTitle": "Return codes",
- "gridAriaLabel": "Return codes",
- "header": "Specify return codes to indicate post-installation behavior:",
- "onAddAnnounceMessage": "Return code added item {0} of {1}",
- "onDeleteSuccess": "Return code {0} deleted successfully",
- "returnCodeAlreadyUsedValidation": "Return code is already used.",
- "returnCodeMustBeIntegerValidation": "Return code should be an integer.",
- "returnCodeShouldBeAtLeast": "Return code should be at least {0}.",
- "returnCodeShouldBeAtMost": "Return code should be at most {0}.",
- "selectorLabel": "Return codes"
- },
- "SecurityTemplate": {
- "aSR": "Attack surface reduction",
- "accountProtection": "Account protection",
- "allDevices": "All devices",
- "antivirus": "Antivirus",
- "antivirusReporting": "Antivirus Reporting (Preview)",
- "conditionalAccess": "Conditional access",
- "deviceCompliance": "Device compliance",
- "diskEncryption": "Disk encryption",
- "eDR": "Endpoint detection and response",
- "firewall": "Firewall",
- "helpSupport": "Help and support",
- "setup": "Setup",
- "wdapt": "Microsoft Defender for Endpoint"
- },
- "PolicySet": {
- "appManagement": "Application management",
- "assignments": "Assignments",
- "basics": "Basics",
- "deviceEnrollment": "Device enrollment",
- "deviceManagement": "Device management",
- "scopeTags": "Scope tags",
- "appConfigurationTitle": "App configuration policies",
- "appProtectionTitle": "App protection policies",
- "appTitle": "Apps",
- "iOSAppProvisioningTitle": "iOS app provisioning profiles",
- "deviceLimitRestrictionTitle": "Device limit restrictions",
- "deviceTypeRestrictionTitle": "Device type restrictions",
- "enrollmentStatusSettingTitle": "Enrollment status pages",
- "windowsAutopilotDeploymentProfileTitle": "Windows autopilot deployment profiles",
- "deviceComplianceTitle": "Device compliance policies",
- "deviceConfigurationTitle": "Device configuration profiles",
- "powershellScriptTitle": "Powershell scripts"
- },
- "AssignmentAction": {
- "exclude": "Excluded",
- "include": "Included",
- "includeAllDevicesVirtualGroup": "Included",
- "includeAllUsersVirtualGroup": "Included"
- },
- "WindowsFeatureUpdate": {
- "EndOFSupportStatus": {
- "notSupported": "Not supported",
- "supportEnding": "Support ending",
- "supported": "Supported"
- }
- },
- "InstallIntent": {
- "available": "Available for enrolled devices",
- "availableWithoutEnrollment": "Available with or without enrollment",
- "required": "Required",
- "uninstall": "Uninstall"
- },
"OutlookAppConfig": {
"DataProtectionConfiguration": {
"header": "Data Protection configuration"
@@ -1938,307 +100,864 @@
"themesEnabledTitle": "Themes Enabled",
"themesEnabledTooltip": "Specify if the user is allowed to use a custom visual theme."
},
- "TAP": {
- "AccessRequirements": {
- "infoText": "Configure the PIN and credential requirements that users must meet to access apps in a work context."
- },
- "DataProtection": {
- "infoText": "This group includes the data loss prevention (DLP) controls, like cut, copy, paste, and save-as restrictions. These settings determine how users interact with data in the apps."
- },
- "DeviceTypes": {
- "selectOne": "Select at least one device type."
- },
- "TargetedApps": {
- "TargetToAll": {
- "label": "Target to apps on all device types"
- },
- "infoText": "Choose how you want to apply this policy to apps on different devices. Then add at least one app.",
- "selectOne": "Select at least one app to create a policy."
- }
- },
- "TACSettings": {
- "edgeSettings": "Edge configuration settings",
- "edgeWindowsDataProtectionSettings": "Edge (Windows) data protection settings - Preview",
- "edgeWindowsSettings": "Edge (Windows) configuration settings - Preview",
- "generalAppConfig": "General app configuration",
- "generalSettings": "General configuration settings",
- "outlookSMIMEConfig": "Outlook S/MIME settings",
- "outlookSettings": "Outlook configuration settings",
- "sMIME": "S/MIME"
- },
- "OfficeApplicationAdditionalType": {
- "projectProRetail": "Project Online Desktop Client",
- "visioProRetail": "Visio Online Plan 2"
- },
- "Win32Requirements": {
- "AdditionalRequirements": {
- "File": {
- "fileOrFolderToolTip": "The file or folder as the selected requirement.",
- "pathToolTip": "The complete path of the file or folder to detect.",
- "property": "Property",
- "valueToolTip": "Select a requirement value that matches the selected detection method. Date and time requirement should be entered in your local format."
- },
- "GridColumns": {
- "pathOrScript": "Path/Script",
- "type": "Type"
- },
- "Registry": {
- "keyPath": "Key path",
- "keyPathTooltip": "The full path of the registry entry containing the value as a requirement.",
- "operator": "Operator",
- "operatorTooltip": "Select the operator for the comparison.",
- "registryRequirement": "Registry key requirement",
- "registryRequirementTooltip": "Select the registry key requirement comparison.",
- "valueName": "Value name",
- "valueNameTooltip": "The name of the required registry value."
- },
- "RequirementTypeOptions": {
- "fileType": "File",
- "registry": "Registry",
- "script": "Script"
- },
- "Script": {
- "RequirementMethodOptions": {
- "boolean": "Boolean",
- "dateTime": "Date and Time",
- "float": "Floating Point",
- "integer": "Integer",
- "string": "String",
- "version": "Version"
- },
- "ScriptContent": {
- "emptyMessage": "Script content should not be empty."
- },
- "duplicateName": "Script name {0} has already been used. Please enter a different name.",
- "enforceSignatureCheck": "Enforce script signature check",
- "enforceSignatureCheckTooltip": "Select ‘Yes’ to verify that the script is signed by a trusted publisher, which will allow the script to run without warnings or prompts. The script will run unblocked. Select ‘No’ (default) to run the script with end-user confirmation, but without signature verification.",
- "loggedOnCredentials": "Run this script using the logged on credentials",
- "loggedOnCredentialsTooltip": "Run script using the signed in device credentials.",
- "operatorTooltip": "Select the operator for the requirement comparison.",
- "requirementMethod": "Select output data type",
- "requirementMethodTooltip": "Select the data type used when determining a detection match requirement.",
- "scriptFile": "Script file",
- "scriptFileTooltip": "Select a PowerShell script that will detect the presence of the app on the client. If the app is detected, the requirement process will provide a 0 value exit code and will write a string value to STDOUT.",
- "scriptName": "Script name",
- "value": "Value",
- "valueTooltip": "Select a requirement value that matches the selected detection method. Date and time requirement should be entered in your local format."
- },
- "bladeTitle": "Add a Requirement rule",
- "createRequirementHeader": "Create a requirement.",
- "header": "Configure additional requirement rules",
- "label": "Additional requirement rules",
- "noRequirementsSelectedPlaceholder": "No requirements are specified.",
- "requirementType": "Requirement type",
- "requirementTypeTooltip": "Choose the type of detection method used to determine how a requirement is validated."
- },
- "architectures": "Operating system architecture",
- "architecturesTooltip": "Choose the architectures needed to install the app.",
- "bladeTitle": "Requirements",
- "diskSpace": "Disk space required (MB)",
- "diskSpaceTooltip": "Free disk space needed on the system drive to install the app.",
- "header": "Specify the requirements that devices must meet before the app is installed:",
- "maximumTextFieldValue": "The value must be at most {0}.",
- "minimumCpuSpeed": "Minimum CPU speed required (MHz)",
- "minimumCpuSpeedTooltip": "The minimum CPU speed required to install the app.",
- "minimumLogicalProcessors": "Minimum number of logical processors required",
- "minimumLogicalProcessorsTooltip": "The minimum number of logical processors required to install the app.",
- "minimumOperatingSystem": "Minimum operating system",
- "minimumOperatingSystemTooltip": "Select the minimum operating system needed to install the app.",
- "minumumTextFieldValue": "The value must be at least {0}.",
- "physicalMemory": "Physical memory required (MB)",
- "physicalMemoryTooltip": "Physical memory (RAM) required to install the app.",
- "selectorLabel": "Requirements",
- "validNumber": "Please enter a valid number."
- },
- "ArchitectureOptions": {
- "sixtyFourBit": "64-bit",
- "thirtyTwoBit": "32-bit"
- },
- "Countries": {
- "ae": "United Arab Emirates",
- "ag": "Antigua and Barbuda",
- "ai": "Anguilla",
- "al": "Albania",
- "am": "Armenia",
- "ao": "Angola",
- "ar": "Argentina",
- "at": "Austria",
- "au": "Australia",
- "az": "Azerbaijan",
- "bb": "Barbados",
- "be": "Belgium",
- "bf": "Burkina Faso",
- "bg": "Bulgaria",
- "bh": "Bahrain",
- "bj": "Benin",
- "bm": "Bermuda",
- "bn": "Brunei",
- "bo": "Bolivia",
- "br": "Brazil",
- "bs": "Bahamas",
- "bt": "Bhutan",
- "bw": "Botswana",
- "by": "Belarus",
- "bz": "Belize",
- "ca": "Canada",
- "cg": "Republic Of Congo",
- "ch": "Switzerland",
- "cl": "Chile",
- "cn": "China",
- "co": "Colombia",
- "cr": "Costa Rica",
- "cv": "Cape Verde",
- "cy": "Cyprus",
- "cz": "Czech Republic",
- "de": "Germany",
- "dk": "Denmark",
- "dm": "Dominica",
- "do": "Dominican Republic",
- "dz": "Algeria",
- "ec": "Ecuador",
- "ee": "Estonia",
- "eg": "Egypt",
- "es": "Spain",
- "fi": "Finland",
- "fj": "Fiji",
- "fm": "Federated States Of Micronesia",
- "fr": "France",
- "gb": "United Kingdom",
- "gd": "Grenada",
- "gh": "Ghana",
- "gm": "Gambia",
- "gr": "Greece",
- "gt": "Guatemala",
- "gw": "Guinea-Bissau",
- "gy": "Guyana",
- "hk": "Hong Kong",
- "hn": "Honduras",
- "hr": "Croatia",
- "hu": "Hungary",
- "id": "Indonesia",
- "ie": "Ireland",
- "il": "Israel",
- "in": "India",
- "is": "Iceland",
- "it": "Italy",
- "jm": "Jamaica",
- "jo": "Jordan",
- "jp": "Japan",
- "ke": "Kenya",
- "kg": "Kyrgyzstan",
- "kh": "Cambodia",
- "kn": "St. Kitts and Nevis",
- "kr": "Republic Of Korea",
- "kw": "Kuwait",
- "ky": "Cayman Islands",
- "kz": "Kazakstan",
- "la": "Lao People’s Democratic Republic",
- "lb": "Lebanon",
- "lc": "St. Lucia",
- "lk": "Sri Lanka",
- "lr": "Liberia",
- "lt": "Lithuania",
- "lu": "Luxembourg",
- "lv": "Latvia",
- "md": "Republic Of Moldova",
- "mg": "Madagascar",
- "mk": "North Macedonia",
- "ml": "Mali",
- "mn": "Mongolia",
- "mo": "Macau",
- "mr": "Mauritania",
- "ms": "Montserrat",
- "mt": "Malta",
- "mu": "Mauritius",
- "mw": "Malawi",
- "mx": "Mexico",
- "my": "Malaysia",
- "mz": "Mozambique",
- "na": "Namibia",
- "ne": "Niger",
- "ng": "Nigeria",
- "ni": "Nicaragua",
- "nl": "Netherlands",
- "no": "Norway",
- "np": "Nepal",
- "nz": "New Zealand",
- "om": "Oman",
- "pa": "Panama",
- "pe": "Peru",
- "pg": "Papua New Guinea",
- "ph": "Philippines",
- "pk": "Pakistan",
- "pl": "Poland",
- "pt": "Portugal",
- "pw": "Palau",
- "py": "Paraguay",
- "qa": "Qatar",
- "ro": "Romania",
- "ru": "Russia",
- "sa": "Saudi Arabia",
- "sb": "Solomon Islands",
- "sc": "Seychelles",
- "se": "Sweden",
- "sg": "Singapore",
- "si": "Slovenia",
- "sk": "Slovakia",
- "sl": "Sierra Leone",
- "sn": "Senegal",
- "sr": "Suriname",
- "st": "Sao Tome and Principe",
- "sv": "El Salvador",
- "sz": "Swaziland",
- "tc": "Turks and Caicos",
- "td": "Chad",
- "th": "Thailand",
- "tj": "Tajikistan",
- "tm": "Turkmenistan",
- "tn": "Tunisia",
- "tr": "Turkey",
- "tt": "Trinidad and Tobago",
- "tw": "Taiwan",
- "tz": "Tanzania",
- "ua": "Ukraine",
- "ug": "Uganda",
- "us": "United States",
- "uy": "Uruguay",
- "uz": "Uzbekistan",
- "vc": "St. Vincent and The Grenadines",
- "ve": "Venezuela",
- "vg": "British Virgin Islands",
- "vn": "Vietnam",
- "ye": "Yemen",
- "za": "South Africa",
- "zw": "Zimbabwe"
+ "Languages": {
+ "ar-aE": "Arabic (U.A.E.)",
+ "ar-bH": "Arabic (Bahrain)",
+ "ar-dZ": "Arabic (Algeria)",
+ "ar-eG": "Arabic (Egypt)",
+ "ar-iQ": "Arabic (Iraq)",
+ "ar-jO": "Arabic (Jordan)",
+ "ar-kW": "Arabic (Kuwait)",
+ "ar-lB": "Arabic (Lebanon)",
+ "ar-lY": "Arabic (Libya)",
+ "ar-mA": "Arabic (Morocco)",
+ "ar-oM": "Arabic (Oman)",
+ "ar-qA": "Arabic (Qatar)",
+ "ar-sA": "Arabic (Saudi Arabia)",
+ "ar-sY": "Arabic (Syria)",
+ "ar-tN": "Arabic (Tunisia)",
+ "ar-yE": "Arabic (Yemen)",
+ "az-cyrl": "Azerbaijani (Cyrillic, Azerbaijan)",
+ "az-latn": "Azerbaijani (Latin, Azerbaijan)",
+ "bn-bD": "Bangla (Bangladesh)",
+ "bn-iN": "Bangla (India)",
+ "bs-cyrl": "Bosnian (Cyrillic)",
+ "bs-latn": "Bosnian (Latin)",
+ "zh-cN": "Chinese (PRC)",
+ "zh-hK": "Chinese (Hong Kong S.A.R.)",
+ "zh-mO": "Chinese (Macao S.A.R.)",
+ "zh-sG": "Chinese (Singapore)",
+ "zh-tW": "Chinese (Taiwan)",
+ "hr-bA": "Croatian (Latin)",
+ "hr-hR": "Croatian (Croatia)",
+ "nl-bE": "Dutch (Belgium)",
+ "nl-nL": "Dutch (Netherlands)",
+ "en-aU": "English (Australia)",
+ "en-bZ": "English (Belize)",
+ "en-cA": "English (Canada)",
+ "en-cabn": "English (Caribbean)",
+ "en-iE": "English (Ireland)",
+ "en-iN": "English (India)",
+ "en-jM": "English (Jamaica)",
+ "en-mY": "English (Malaysia)",
+ "en-nZ": "English (New Zealand)",
+ "en-pH": "English (Republic of the Philippines)",
+ "en-sG": "English (Singapore)",
+ "en-tT": "English (Trinidad and Tobago)",
+ "en-uK": "English (United Kingdom)",
+ "en-uS": "English (United States)",
+ "en-zA": "English (South Africa)",
+ "en-zW": "English (Zimbabwe)",
+ "fr-bE": "French (Belgium)",
+ "fr-cA": "French (Canada)",
+ "fr-cH": "French (Switzerland)",
+ "fr-fR": "French (France)",
+ "fr-lU": "French (Luxembourg)",
+ "fr-mC": "French (Monaco)",
+ "de-aT": "German (Austria)",
+ "de-cH": "German (Switzerland)",
+ "de-dE": "German (Germany)",
+ "de-lI": "German (Liechtenstein)",
+ "de-lU": "German (Luxembourg)",
+ "iu-cans": "Inuktitut (Syllabics, Canada)",
+ "iu-latn": "Inuktitut (Latin, Canada)",
+ "it-cH": "Italian (Switzerland)",
+ "it-iT": "Italian (Italy)",
+ "ms-bN": "Malay (Brunei Darussalam)",
+ "ms-mY": "Malay (Malaysia)",
+ "mn-cN": "Mongolian (Traditional Mongolian, PRC)",
+ "mn-mN": "Mongolian (Cyrillic, Mongolia)",
+ "no-nB": "Norwegian, Bokmål (Norway)",
+ "no-nn": "Norwegian, Nynorsk (Norway)",
+ "pt-bR": "Portuguese (Brazil)",
+ "pt-pT": "Portuguese (Portugal)",
+ "quz-bO": "Quechua (Bolivia)",
+ "quz-eC": "Quechua (Ecuador)",
+ "quz-pE": "Quechua (Peru)",
+ "smj-nO": "Sami, Lule (Norway)",
+ "smj-sE": "Sami, Lule (Sweden)",
+ "se-fI": "Sami, Northern (Finland)",
+ "se-nO": "Sami, Northern (Norway)",
+ "se-sE": "Sami, Northern (Sweden)",
+ "sma-nO": "Sami, Southern (Norway)",
+ "sma-sE": "Sami, Southern (Sweden)",
+ "smn": "Sami, Inari (Finland)",
+ "sms": "Sami, Skolt (Finland)",
+ "sr-Cyrl-bA": "Serbian (Cyrillic)",
+ "sr-Cyrl-rS": "Serbian (Cyrillic, Serbia and Montenegro)",
+ "sr-Latn-bA": "Serbian (Latin)",
+ "sr-Latn-rS": "Serbian (Latin, Serbia)",
+ "dsb": "Lower Sorbian (Germany)",
+ "hsb": "Upper Sorbian (Germany)",
+ "es-es-tradnl": "Spanish (Spain, Traditional Sort)",
+ "es-aR": "Spanish (Argentina)",
+ "es-bO": "Spanish (Bolivia)",
+ "es-cL": "Spanish (Chile)",
+ "es-cO": "Spanish (Colombia)",
+ "es-cR": "Spanish (Costa Rica)",
+ "es-dO": "Spanish (Dominican Republic)",
+ "es-eC": "Spanish (Ecuador)",
+ "es-eS": "Spanish (Spain)",
+ "es-gT": "Spanish (Guatemala)",
+ "es-hN": "Spanish (Honduras)",
+ "es-mX": "Spanish (Mexico)",
+ "es-nI": "Spanish (Nicaragua)",
+ "es-pA": "Spanish (Panama)",
+ "es-pE": "Spanish (Peru)",
+ "es-pR": "Spanish (Puerto Rico)",
+ "es-pY": "Spanish (Paraguay)",
+ "es-sV": "Spanish (El Salvador)",
+ "es-uS": "Spanish (United States)",
+ "es-uY": "Spanish (Uruguay)",
+ "es-vE": "Spanish (Venezuela)",
+ "sv-fI": "Swedish (Finland)",
+ "uz-cyrl": "Uzbek (Cyrillic, Uzbekistan)",
+ "uz-latn": "Uzbek (Latin, Uzbekistan)",
+ "af": "Afrikaans (South Africa)",
+ "sq": "Albanian (Albania)",
+ "am": "Amharic (Ethiopia)",
+ "hy": "Armenian (Armenia)",
+ "as": "Assamese (India)",
+ "ba": "Bashkir (Russia)",
+ "eu": "Basque (Basque)",
+ "be": "Belarusian (Belarus)",
+ "br": "Breton (France)",
+ "bg": "Bulgarian (Bulgaria)",
+ "ca": "Catalan (Catalan)",
+ "co": "Corsican (France)",
+ "cs": "Czech (Czech Republic)",
+ "da": "Danish (Denmark)",
+ "prs": "Dari (Afghanistan)",
+ "dv": "Divehi (Maldives)",
+ "et": "Estonian (Estonia)",
+ "fo": "Faroese (Faroe Islands)",
+ "fil": "Filipino (Philippines)",
+ "fi": "Finnish (Finland)",
+ "gl": "Galician (Galician)",
+ "ka": "Georgian (Georgia)",
+ "el": "Greek (Greece)",
+ "gu": "Gujarati (India)",
+ "ha": "Hausa (Latin, Nigeria)",
+ "he": "Hebrew (Israel)",
+ "hi": "Hindi (India)",
+ "hu": "Hungarian (Hungary)",
+ "is": "Icelandic (Iceland)",
+ "ig": "Igbo (Nigeria)",
+ "id": "Indonesian (Indonesia)",
+ "ga": "Irish (Ireland)",
+ "xh": "isiXhosa (South Africa)",
+ "zu": "isiZulu (South Africa)",
+ "ja": "Japanese (Japan)",
+ "kn": "Kannada (India)",
+ "kk": "Kazakh (Kazakhstan)",
+ "km": "Khmer (Cambodia)",
+ "rw": "Kinyarwanda (Rwanda)",
+ "sw": "Kiswahili (Kenya)",
+ "kok": "Konkani (India)",
+ "ko": "Korean (Korea)",
+ "ky": "Kyrgyz (Kyrgyzstan)",
+ "lo": "Lao (Lao P.D.R.)",
+ "lv": "Latvian (Latvia)",
+ "lt": "Lithuanian (Lithuania)",
+ "lb": "Luxembourgish (Luxembourg)",
+ "mk": "Macedonian (North Macedonia)",
+ "ml": "Malayalam (India)",
+ "mt": "Maltese (Malta)",
+ "mi": "Maori (New Zealand)",
+ "mr": "Marathi (India)",
+ "moh": "Mohawk (Mohawk)",
+ "ne": "Nepali (Nepal)",
+ "oc": "Occitan (France)",
+ "or": "Odia (India)",
+ "ps": "Pashto (Afghanistan)",
+ "fa": "Persian",
+ "pl": "Polish (Poland)",
+ "pa": "Punjabi (India)",
+ "ro": "Romanian (Romania)",
+ "rm": "Romansh (Switzerland)",
+ "ru": "Russian (Russia)",
+ "sa": "Sanskrit (India)",
+ "st": "Sesotho sa Leboa (South Africa)",
+ "tn": "Setswana (South Africa)",
+ "si": "Sinhala (Sri Lanka)",
+ "sk": "Slovak (Slovakia)",
+ "sl": "Slovenian (Slovenia)",
+ "sv": "Swedish (Sweden)",
+ "syr": "Syriac (Syria)",
+ "tg": "Tajik (Cyrillic, Tajikistan)",
+ "ta": "Tamil (India)",
+ "tt": "Tatar (Russia)",
+ "te": "Telugu (India)",
+ "th": "Thai (Thailand)",
+ "bo": "Tibetan (PRC)",
+ "tr": "Turkish (Turkey)",
+ "tk": "Turkmen (Turkmenistan)",
+ "uk": "Ukrainian (Ukraine)",
+ "ur": "Urdu (Islamic Republic of Pakistan)",
+ "vi": "Vietnamese (Vietnam)",
+ "cy": "Welsh (United Kingdom)",
+ "wo": "Wolof (Senegal)",
+ "ii": "Yi (PRC)",
+ "yo": "Yoruba (Nigeria)"
+ },
+ "Category": {
+ "airPlay": "AirPlay",
+ "airPrint": "AirPrint",
+ "androidDefenderAtp": "Microsoft Defender for Endpoint",
+ "androidDeviceOwnerApplications": "Applications",
+ "androidForWorkPassword": "Device password",
+ "appManagement": "Allow or Block apps",
+ "applicationGuard": "Microsoft Defender Application Guard",
+ "applicationRestrictions": "Restricted Apps",
+ "applicationVisibility": "Show or Hide Apps",
+ "applications": "App Store",
+ "applicationsAndGames": "App Store, Doc Viewing, Gaming",
+ "applicationsAndGoogle": "Google Play Store",
+ "appsAndExperience": "Apps and experience",
+ "associatedDomains": "Associated domains",
+ "autonomousSingleAppMode": "Autonomous Single App Mode",
+ "azureOperationalInsights": "Azure operational insights",
+ "bitLocker": "Windows Encryption",
+ "browser": "Browser",
+ "builtinApps": "Built-in Apps",
+ "cellular": "Cellular",
+ "cloudAndStorage": "Cloud and Storage",
+ "cloudPrint": "Cloud Printer",
+ "complianceEmailProfile": "Email",
+ "connectedDevices": "Connected Devices",
+ "connectivity": "Cellular and connectivity",
+ "contentCaching": "Content caching",
+ "controlPanelAndSettings": "Control Panel and Settings",
+ "credentialGuard": "Microsoft Defender Credential Guard",
+ "customCompliance": "Custom Compliance",
+ "customCompliancePreview": "Custom Compliance (Preview)",
+ "customConfiguration": "Custom Configuration Profile",
+ "customOMASettings": "Custom OMA-URI Settings",
+ "customPreferences": "Preference file",
+ "defender": "Microsoft Defender Antivirus",
+ "defenderAntivirus": "Microsoft Defender Antivirus",
+ "defenderExploitGuard": "Microsoft Defender Exploit Guard",
+ "defenderFirewall": "Microsoft Defender Firewall",
+ "defenderLocalSecurityOptions": "Local device security options",
+ "defenderSecurityCenter": "Microsoft Defender Security Center",
+ "deliveryOptimization": "Delivery Optimization",
+ "derivedCredentialAuthenticationConfiguration": "Derived credential",
+ "deviceExperience": "Device experience",
+ "deviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
+ "deviceGuard": "Microsoft Defender Application Control",
+ "deviceHealth": "Device Health",
+ "devicePassword": "Device password",
+ "deviceProperties": "Device Properties",
+ "deviceRestrictions": "General",
+ "deviceSecurity": "System security",
+ "display": "Display",
+ "domainJoin": "Domain Join",
+ "domains": "Domains",
+ "edgeBrowser": "Microsoft Edge Legacy (Version 45 and earlier)",
+ "edgeBrowserSmartScreen": "Microsoft Defender SmartScreen",
+ "edgeKiosk": "Microsoft Edge kiosk mode",
+ "editionUpgrade": "Edition Upgrade",
+ "education": "Education",
+ "educationDeviceCerts": "Device certificates",
+ "educationStudentCerts": "Student certificates",
+ "educationTakeATest": "Take a Test",
+ "educationTeacherCerts": "Teacher certificates",
+ "emailProfile": "Email",
+ "enterpriseDataProtection": "Windows Information Protection",
+ "expeditedCheckin": "Mobile device management configuration",
+ "extensibleSingleSignOn": "Single sign-on app extension",
+ "filevault": "FileVault",
+ "firewall": "Firewall",
+ "games": "Games",
+ "gatekeeper": "Gatekeeper",
+ "healthMonitoring": "Health monitoring",
+ "homeScreenLayout": "Home Screen Layout",
+ "iOSWallpaper": "Wallpaper",
+ "importedPFX": "PKCS Imported Certificate",
+ "iosDefenderAtp": "Microsoft Defender for Endpoint",
+ "iosKiosk": "Kiosk",
+ "kernelExtensions": "Kernel extensions",
+ "keyboardAndDictionary": "Keyboard and Dictionary",
+ "kiosk": "Kiosk",
+ "kioskAndroidEnterprise": "Dedicated devices",
+ "kioskConfiguration": "Kiosk",
+ "kioskConfigurationV2": "Kiosk",
+ "kioskWebBrowser": "Kiosk web browser",
+ "lockScreenMessage": "Lock Screen Message",
+ "lockedScreenExperience": "Locked Screen Experience",
+ "logging": "Reporting and Telemetry",
+ "loginItems": "Login items",
+ "loginWindow": "Login window",
+ "macDefenderAtp": "Microsoft Defender for Endpoint",
+ "maintenance": "Maintenance",
+ "malware": "Malware",
+ "messaging": "Messaging",
+ "networkBoundary": "Network boundary",
+ "networkProxy": "Network proxy",
+ "notifications": "App Notifications",
+ "pKCS": "PKCS Certificate",
+ "password": "Password",
+ "personalProfile": "Personal profile",
+ "personalization": "Personalization",
+ "policyOverride": "Override Group Policy",
+ "powerSettings": "Power Settings",
+ "printer": "Printer",
+ "privacy": "Privacy",
+ "privacyPerApp": "Per-app privacy exceptions",
+ "privacyPreferences": "Privacy preferences",
+ "projection": "Projection",
+ "sCCMCompliance": "Configuration Manager Compliance",
+ "sCEP": "SCEP Certificate",
+ "sCEPProperties": "SCEP Certificate",
+ "sMode": "Mode switch (Windows Insider only)",
+ "safari": "Safari",
+ "search": "Search",
+ "session": "Session",
+ "sharedDevice": "Shared iPad",
+ "sharedPCAccountManager": "Shared multi-user device",
+ "singleSignOn": "Single sign-on",
+ "smartScreen": "Microsoft Defender SmartScreen",
+ "softwareUpdates": "Settings",
+ "start": "Start",
+ "systemExtensions": "System extensions",
+ "systemSecurity": "System Security",
+ "trustedCert": "Trusted Certificate",
+ "updates": "Updates",
+ "userRights": "User Rights",
+ "usersAndAccounts": "Users and Accounts",
+ "vPN": "Base VPN",
+ "vPNApps": "Automatic VPN",
+ "vPNAppsAndTrafficRules": "Apps and Traffic Rules",
+ "vPNConditionalAccess": "Conditional Access",
+ "vPNConnectivity": "Connectivity",
+ "vPNDNSTriggers": "DNS Settings",
+ "vPNIKEv2": "IKEv2 settings",
+ "vPNProxy": "Proxy",
+ "vPNSplitTunneling": "Split Tunneling",
+ "vPNTrustedNetwork": "Trusted Network Detection",
+ "webContentFilter": "Web Content Filter",
+ "wiFi": "Wi-Fi",
+ "win10Wifi": "Wi-Fi",
+ "windowsAtp": "Microsoft Defender for Endpoint",
+ "windowsDefenderATP": "Microsoft Defender for Endpoint",
+ "windowsHelloForBusiness": "Windows Hello for Business",
+ "windowsSpotlight": "Windows Spotlight",
+ "wiredNetwork": "Wired network",
+ "wireless": "Wireless",
+ "wirelessProjection": "Wireless projection",
+ "workProfile": "Work profile settings",
+ "workProfilePassword": "Work profile password",
+ "xboxServices": "Xbox services",
+ "zebraMx": "MX profile (Zebra only)",
+ "complianceActionsLabel": "Actions for noncompliance"
+ },
+ "WindowsFeatureUpdateProfile": {
+ "Details": {
+ "Description": {
+ "label": "Description"
+ },
+ "FeatureDeploymentSettings": {
+ "header": "Feature deployment settings"
+ },
+ "FeatureUpdateVersion": {
+ "infoballoon": "This feature cannot downgrade a device.",
+ "label": "Feature update to deploy"
+ },
+ "GradualRolloutEndDate": {
+ "label": "Final group availability"
+ },
+ "GradualRolloutInterval": {
+ "label": "Days between groups"
+ },
+ "GradualRolloutStartDate": {
+ "label": "First group availability"
+ },
+ "Name": {
+ "label": "Name"
+ },
+ "RolloutOptions": {
+ "label": "Rollout options"
+ },
+ "RolloutSettings": {
+ "header": "When would you like to make the update available in Windows Update?"
+ },
+ "ScopeSettings": {
+ "header": "Configure scope tags for this policy."
+ },
+ "StartDateOnlyStartDate": {
+ "label": "First available date"
+ },
+ "bladeTitle": "Feature update deployments",
+ "deploymentSettingsTitle": "Deployment settings",
+ "loadError": "Loading failed!",
+ "windows11EULA": "By selecting this Feature update to deploy you are agreeing that when applying this operating system to a device either (1) the applicable Windows license was purchased though volume licensing, or (2) that you are authorized to bind your organization and are accepting on its behalf the relevant Microsoft Software License Terms to be found here {0}."
+ },
+ "Notifications": {
+ "deploymentSaved": "\"{0}\" has been saved.",
+ "newFeatureUpdateDeploymentCreated": "New feature update deployment created."
+ },
+ "TabName": {
+ "deploymentSettings": "Deployment settings",
+ "groupAssignmentSettings": "Assignments",
+ "scopeSettings": "Scope tags"
+ }
+ },
+ "WIPPinRequirements": {
+ "WipLowercaseCharacterPinRequirements": {
+ "allow": "Allow the use of lowercase letters in PIN",
+ "notAllow": "Do not allow the use of lowercase letters in PIN",
+ "requireAtLeastOne": "Require the use of at least one lowercase letter in PIN"
+ },
+ "WipSpecialCharacterPinRequirements": {
+ "allow": "Allow the use of special characters in PIN",
+ "notAllow": "Do not allow the use of special characters in PIN",
+ "requireAtLeastOne": "Require the use of at least one special character in PIN"
+ },
+ "WipUppercaseCharacterPinRequirements": {
+ "allow": "Allow the use of uppercase letters in PIN",
+ "notAllow": "Do not allow the use of uppercase letters in PIN",
+ "requireAtLeastOne": "Require the use of at least one uppercase letter in PIN"
+ }
+ },
+ "OutlookAppConfigSettings": {
+ "AllowUserToChangeSetting": {
+ "title": "Allow user to change setting",
+ "tooltip": "Specify if the user is allowed to change the setting."
+ },
+ "AllowWorkAccounts": {
+ "title": "Allow only work or school accounts",
+ "tooltip": " By enabling this setting, users will be unable to add personal email and storage accounts within Outlook. If the user has a personal account added to Outlook, the user is prompted to remove the personal account. If the user does not remove the personal account, the work or school account cannot be added."
+ },
+ "BlockExternalImages": {
+ "title": "Block external images",
+ "tooltip": "When block external images is enabled, the app will prevent the download of images hosted on the Internet that are embedded in the message body. When set as not configured, the default app setting is set to Off"
+ },
+ "ConfigureEmail": {
+ "title": "Configure email account settings"
+ },
+ "DefaultAppSignatureSetting": {
+ "Tooltip": {
+ "android": "Default app signature indicates whether the app will use “Get Outlook for Android” as the default signature during message composition. If the setting is configured as Off, the default signature will not be used; however, users can add their own signature.\n\nWhen set as Not Configured, the default app setting is set to On.",
+ "iOS": "Default app signature indicates whether the app will use “Get Outlook for iOS” as the default signature during message composition. If the setting is configured as Off, the default signature will not be used; however, users can add their own signature.\n\nWhen set as Not Configured, the default app setting is set to On."
+ },
+ "title": "Default app signature"
+ },
+ "OfficeFeedReplies": {
+ "title": "Discover Feed",
+ "tooltip": "Discover Feed surfaces your most frequently accessed Office files. By default, this feed is enabled when Delve is enabled for the user. When set as not configured, the default app setting is set to On."
+ },
+ "OrganizeMailByThread": {
+ "title": "Organize mail by thread",
+ "tooltip": "The default behavior in Outlook is to bundle mail conversations into a threaded conversation view. If this setting is disabled Outlook will display each mail individually and will not group them by thread."
+ },
+ "PlayMyEmails": {
+ "title": "Play My Emails",
+ "tooltip": "The Play My Emails feature is not enabled by default in the app, but it is promoted to eligible users via a banner in the inbox. When set to Off, this feature will not be promoted to eligible users in the app. Users can choose to manually enable Play My Emails from within the app, even when this feature is set to Off. When set as Not configured, the default app setting is On and the feature will be promoted to eligible users."
+ },
+ "SuggestedReplies": {
+ "title": "Suggested replies",
+ "tooltip": "When you open a message, Outlook might suggest replies below the message. If you select a suggested reply, you can edit the reply before sending it."
+ },
+ "SyncCalendars": {
+ "title": "Sync Calendars",
+ "tooltip": "Configure whether users can sync their Outlook calendar to the native calendar app and database."
+ },
+ "TextPredictions": {
+ "title": "Text Predictions",
+ "tooltip": "Outlook can suggest words and phrases as you compose messages. When Outlook offers a suggestion, swipe to accept it. When set as not configured, the default app setting is set to On."
+ },
+ "ThemesEnabled": {
+ "title": "Themes enabled",
+ "tooltip": "Specify if the user is allowed to use a custom visual theme."
+ }
+ },
+ "AssignmentFilters": {
+ "assignmentFilterColumnHeader": "Filter",
+ "noFilters": "None"
+ },
+ "Platform": {
+ "all": "All",
+ "android": "Android device administrator",
+ "androidAOSP": "Android (AOSP)",
+ "androidEnterprise": "Android Enterprise",
+ "androidForWork": "Android Enterprise",
+ "androidWorkProfile": "Android enterprise",
+ "common": "Common",
+ "iOS": "iOS/iPadOS",
+ "iosAndAndroidPlatformLabel": "iOS and Android",
+ "iosCommaAndroidPlatformLabel": "iOS, Android",
+ "linux": "Linux",
+ "macOS": "macOS",
+ "unknown": "Unknown",
+ "unsupported": "Unsupported",
+ "windows": "Windows",
+ "windows10": "Windows 10 and later",
+ "windows10CM": "Windows 10 and later (ConfigMgr)",
+ "windows10Holo": "Windows 10 Holographic",
+ "windows10Mobile": "Windows 10 Mobile",
+ "windows10Team": "Windows 10 Team",
+ "windows10X": "Windows 10X",
+ "windows8": "Windows 8.1 and later",
+ "windows8And10": "Windows 8 and 10",
+ "windowsPhone": "Windows Phone 8.1",
+ "windows10AndLater": "Windows 10 and later",
+ "windows10AndWindowsServer": "Windows 10, Windows 11, and Windows Server (ConfigMgr)",
+ "windows10andLaterCM": "Windows 10 and later (ConfigMgr)",
+ "holoLens": "HoloLens",
+ "surfaceHub2": "Surface Hub 2",
+ "surfaceHub2S": "Surface Hub 2S",
+ "windowsPC": "Windows PC"
+ },
+ "AppInformationTab": {
+ "Error": {
+ "multipleChildApps": "A macOS LOB app can only be installed as managed when the uploaded package contains a single app."
+ },
+ "Info": {
+ "AppStoreUrl": {
+ "android": "Enter the link to the app listing in Google Play store. For example:",
+ "androidLink": "https://play.google.com/store/apps/details?id=com.microsoft.office.outlook",
+ "windows": "Enter the link to the app listing in the Microsoft Store. For example:",
+ "windowsLink": "https://www.microsoft.com/en-us/p/microsoft-to-do-lists-tasks-reminders/9nblggh5r558"
+ },
+ "appPackageFile": "A file that contains your app in a format that can be sideloaded on a device. Valid package types include: Android (.apk), iOS (.ipa), macOS (.pkg, .intunemac), Windows (.msi, .appx, .appxbundle, .msix, and .msixbundle).",
+ "applicableDeviceType": "Select the device types that can install this app.",
+ "category": "Categorize the app to make it easier for users to sort and find in Company Portal. You can choose multiple categories.",
+ "categoryLink": "https://docs.microsoft.com/en-us/intune/apps/apps-add#create-and-edit-categories-for-apps",
+ "description": "Help your device users understand what the app is and/or what they can do in the app. This description will be visible to them in Company Portal.",
+ "developer": "The name of the company or Individual that developed the app. This information will be visible to people signed into the admin center.",
+ "displayVersion": "The version of the app. This information will be visible to users in the Company Portal.",
+ "infoUrl": "Link people to a website or documentation that has more information about the app. The information URL will be visible to users in Company Portal.",
+ "isFeatured": "Featured apps are prominently placed in Company Portal so that users can quickly get to them.",
+ "learnMore": "Learn more",
+ "logo": "Upload a logo that's associated with the app. This logo will appear next to the app throughout Company Portal.",
+ "macOSDmgAppPackageFile": "A file that contains your app in a format that can be sideloaded on a device. Valid package type: .dmg.",
+ "minOperatingSystem": "Select the earliest operating system version on which the app can be installed. If you assign the app to a device with an earlier operating system, it will not be installed.",
+ "name": "Add a name for the app. This name will be visible in the Intune apps list and to users in the Company Portal.",
+ "notes": "Add additional notes about the app. Notes will be visible to people signed in to the admin center.",
+ "owner": "The name of the person in your organization who manages licensing or is the point-of-contact for this app. This name will be visible to people signed in to the admin center.",
+ "packageName": "Contact the device manufacturer to get the app's package name. Example package name: com.example.app",
+ "privacyUrl": "Provide a link for people who want to learn more about the app's privacy settings and terms. The privacy URL will be visible to users in Company Portal.",
+ "publisher": "The name of the developer or company that distributes the app. This information will be visible to users in Company Portal.",
+ "selectApp": "Search the App Store for iOS store apps that you want to deploy with Intune.",
+ "useManagedBrowser": "If required, when a user opens the web app, it will open in an Intune-protected browser such as Microsoft Edge or Intune Managed Browser. This setting applies to both iOS and Android devices.",
+ "useManagedBrowserLink": "https://docs.microsoft.com/en-us/intune/apps/app-configuration-managed-browser",
+ "win32AppPackageFile": "A file that contains your app in a format that can be sideloaded on a device. Valid package type: .intunewin."
+ },
+ "descriptionPreview": "Preview",
+ "descriptionRequired": "Description is required.",
+ "editDescription": "Edit Description",
+ "macOSMinOperatingSystemAdditionalInfo": "The minimum operating system for uploading a .pkg file is macOS 10.14. Upload a .intunemac file to select an older minimum operating system.",
+ "name": "App information",
+ "nameForOfficeSuitApp": "App suite information"
+ },
+ "Tooltips": {
+ "PolicySettings": {
+ "TouchId1": {
+ "android": "On Android, you can allow using fingerprint identification instead of a PIN. Users are prompted to provide their fingerprints when they access this app with their work accounts.",
+ "iOS": "On iOS/iPadOS devices, you can allow using fingerprint identification instead of a PIN. Users are prompted to provide their fingerprints when they access this app with their work accounts.",
+ "mac": "On Mac devices, you can allow using fingerprint identification instead of a PIN. Users are prompted to provide their fingerprints when they access this app with their work accounts."
+ },
+ "appSharingFromLevel1": "Select one of the following options to specify the apps that this app can receive data from:",
+ "appSharingFromLevel2": "{0}: Only allow receiving data in org documents or accounts from other policy managed apps",
+ "appSharingFromLevel3": "{0}: Allow receiving data in org documents or accounts from any app",
+ "appSharingFromLevel4": "{0}: Do not allow receiving data in org documents or accounts from any app",
+ "appSharingFromLevel5": "{0}: Allow data transfer from any app and treat all incoming data without an user identity as Org data.",
+ "appSharingToLevel1": "Select one of the following options to specify the apps that this app can send data to:",
+ "appSharingToLevel2": "{0}: Only allow sending org data to other policy managed apps",
+ "appSharingToLevel3": "{0}: Allow sending org data to any app",
+ "appSharingToLevel4": "{0}: Do not allow sending org data to any app",
+ "appSharingToLevel5": "{0}: Only allow transfer only to other policy managed apps and file transfer to other MDM managed apps on enrolled devices",
+ "appSharingToLevel6": "{0}: Allow transfer only to other policy managed apps and filter OS Open-in/Share dialogs to only display policy managed apps",
+ "conditionalEncryption1": "Select {0} to disable app encryption for internal app storage when device encryption is detected on an enrolled device.",
+ "conditionalEncryption2": "Note: Intune can only detect device enrollment with Intune MDM. External app storage will still be encrypted to ensure data cannot be accessed by unmanaged applications.",
+ "contactSyncMac": "If disabled, apps cannot save contacts to the native address book.",
+ "contactsSync": "Choose Block to prevent policy managed apps from saving data to the device's native apps (like Contacts, Calendar and widgets), or to prevent the use of add-ins within the policy managed apps. If you choose Allow, the policy managed app can save data to the native apps or use add-ins, if those features are supported and enabled within the policy managed app.
Apps may provide additional configuration capability with app configuration policies. For more information, see the app's documentation.",
+ "encryptionAndroid1": "For apps that are associated with an Intune mobile application management policy, encryption is provided by Microsoft. Data is encrypted synchronously during file I/O operations according to the setting in the mobile application management policy. Managed apps on Android use AES-128 encryption in CBC mode utilizing the platform cryptography libraries. The encryption method is not FIPS 140-2 compliant. SHA-256 encryption is supported as an explicit instruction using the SigAlg parameter and will only work on devices 4.2 and above. Content on the device storage is always be encrypted.",
+ "encryptionAndroid2": "When you require encryption in your app policy, the end-user is required to setup and use a PIN to access their device. If there is not a PIN set up for device access, the apps will not launch and the end-user will instead see a message, which says, “Your company has required that you must first enable a device PIN to access this application.\"",
+ "encryptionMac1": "For apps that are associated with an Intune mobile application management policy, encryption is provided by Microsoft. Data is encrypted synchronously during file I/O operations according to the setting in the mobile application management policy. Managed apps on Mac use AES-128 encryption in CBC mode utilizing the platform cryptography libraries. The encryption method is not FIPS 140-2 compliant. SHA-256 encryption is supported as an explicit instruction using the SigAlg parameter and will only work on devices 4.2 and above. Content on the device storage is always be encrypted.",
+ "faceId1": "Where applicable, you can allow the use of face identification instead of PIN. Users are prompted to provide face identification when they access this app with their work accounts.",
+ "faceId2": "Select Yes to allow face identification instead of a PIN for app access.",
+ "managementLevelsAndroid1": "Use this option to specify whether this policy applies to Android device administrator devices, Android Enterprise devices, or unmanaged devices.",
+ "managementLevelsAndroid2": "{0}: Unmanaged devices are devices where Intune MDM management has not been detected. This includes 3rd party MDM vendors.",
+ "managementLevelsAndroid3": "{0}: Intune-managed devices using the Android Device Administration API.",
+ "managementLevelsAndroid4": "{0}: Intune-managed devices using Android Enterprise Work Profiles or Android Enterprise Full Device Management.",
+ "managementLevelsIos1": "Use this option to specify whether this policy applies to MDM managed devices or unmanaged devices.",
+ "managementLevelsIos2": "{0}: Unmanaged devices are devices where Intune MDM management has not been detected. This includes 3rd party MDM vendors.",
+ "managementLevelsIos3": "{0}: Managed devices are managed by Intune MDM.",
+ "minAppVersion": "Define the required minimum App version number that a user should have to gain secure access to the app.",
+ "minAppVersionWarning": "Define the recommended minimum App version number that a user should have for secure access to the app.",
+ "minOsVersion": "Define the required minimum OS version number that a user should have to gain secure access to the app.",
+ "minOsVersionWarning": "Define the recommended minimum OS version number that a user should have to gain secure access to the app.",
+ "minPatchVersion": "Define the oldest required Android security patch level a user can have to gain secure access to the app.",
+ "minPatchVersionWarning": "Define the oldest recommended Android security patch level a user can have for secure access to the app.",
+ "minSdkVersion": "Define the required minimum Intune Application Protection Policy SDK version that a user should have to gain secure access to the app.",
+ "requireAppPinDefault": "Select Yes to disable the app PIN when a device lock is detected on an enrolled device.
",
+ "targetAllApps1": "Use this option to target your policy to apps on devices of any management state.",
+ "targetAllApps2": "During policy conflict resolution this setting will be superseded if a user has policy targeted for a specific management state.",
+ "touchId2": "Select {0} to require fingerprint identity instead of a PIN for app access."
+ },
+ "Tap": {
+ "pinResetAfterNumberOfDays": "Specify the number of days that must pass before the user must reset the PIN.",
+ "previousPinBlockCount": "This setting specifies the number of previous PINs that Intune will maintain. Any new PINs must be different from those that Intune is maintaining."
+ },
+ "WipPolicySettings": {
+ "25": "",
+ "allowWindowsSearch": "This will allow Windows Search to continue to search through encrypted data.",
+ "authoritativeIpRanges": "Enable this setting if you want to override Windows auto-detection of IP ranges.",
+ "authoritativeProxyServers": "Enable this setting if you want to override Windows auto-detection of proxy servers.",
+ "checkInput": "Check input for validity",
+ "dataRecoveryCert": "A recovery certificate is a special Encrypting File System (EFS) certificate you can use to recover encrypted files if your encryption key is lost or damaged. You need to create the recovery certificate, and specify it here. More information is here",
+ "enterpriseCloudResources": "Specify cloud resources to be treated as corporate and be protected with Windows Information Protection policy. Multiple resources can be specified by separating individual entries with the '|' character.
If you have a proxy configured in your company, then you can specify the proxy through which traffic to cloud resources you specified will be routed.
URL[,Proxy]|URL[,Proxy]
Without proxy: contoso.sharepoint.com|contoso.visualstudio.com
With proxy: contoso.sharepoint.com,proxy.contoso.com|contoso.visualstudio.com,proxy.contoso.com
",
+ "enterpriseIPv4Ranges": "Specify the IPv4 ranges that form your corporate network. These are used in conjunction with the Enterprise Network Domain Names that you specify to define your corporate network boundary.
This setting is required to have Windows Information Protection enabled.
Multiple ranges can be specified by separating individual entries with a comma.
For example: 3.4.0.1-3.4.255.255,192.168.1.1-192.168.255.255
",
+ "enterpriseIPv6Ranges": "Specify the IPv6 ranges that form your corporate network. These are used in conjunction with the Enterprise Network Domain Names that you specify to define your corporate network boundary.
Multiple ranges can be specified by separating individual entries with a comma.
For example: 2001:4898:dc05::-2001:4898:dc05:ffff:ffff:ffff:ffff:ffff,2a01:110::-2a01:110:7fff:ffff:ffff:ffff:ffff:ffff
",
+ "enterpriseInternalProxyServers": "If you have a proxy configured in your company, then you can specify the proxy through which traffic to cloud resources specified in the Enterprise Cloud Resources settings are to be routed.
Multiple values can be specified by separating individual entries with a semi-colon.
For example: contoso.internalproxy1.com;contoso.internalproxy2.com
",
+ "enterpriseNetworkDomainNames": "Specify the DNS names that form your corporate network. These are used in conjunction with the IP ranges that you specify to define your corporate network boundary. Multiple values can be specified by separating individual entries with a comma.
This setting is required to have Windows Information Protection enabled.
For example: corp.contoso.com,region.contoso.com
",
+ "enterpriseProtectedDomainNames": "Specify the DNS names that form your corporate network. These are used in conjunction with the IP ranges that you specify to define your corporate network boundary. Multiple values can be specified by separating individual entries with a '|'.
This setting is required to have Windows Information Protection enabled.
For example: corp.contoso.com|region.contoso.com
",
+ "enterpriseProxyServers": "If you have external facing proxies in your corporate network, specify them here. When specifying a proxy server address, you should also specify the port through which traffic should be allowed and protected through Windows Information Protection.
Note: This list must not include servers in your Enterprise Internal Proxy Server list. Multiple values can be specified by separating individual entries with a semi-colon.
For example: proxy.contoso.com:80;proxy2.contoso.com:80
",
+ "maxInactivityTime1": "Specifies the maximum amount of time (in minutes) allowed after the device is idle that will cause the device to become PIN or password locked. Users can select any existing timeout value less than the specified maximum time in the Settings app. Note the Lumia 950 and 950XL have a maximum timeout value of 5 minutes, regardless of the value set by this policy.",
+ "maxInactivityTime2": "0 (default) - No timeout is defined. The default of '0' is interpreted as 'No timeout is defined.'",
+ "maxPasswordAttempts1": "This policy has different behaviors on the mobile device and desktop.",
+ "maxPasswordAttempts2": "On a mobile device, when the user reaches the value set by this policy, then the device is wiped.",
+ "maxPasswordAttempts3": "On a desktop, when the user reaches the value set by this policy, it is not wiped.Instead, the desktop is put on BitLocker recovery mode, which makes the data inaccessible but recoverable.If BitLocker is not enabled, then the policy cannot be enforced.",
+ "maxPasswordAttempts4": "Prior to reaching the failed attempts limit, the user is sent to the lock screen and warned that more failed attempts will lock their computer.When the user reaches the limit, the device automatically reboots and shows the BitLocker recovery page.This page prompts the user for the BitLocker recovery key.",
+ "maxPasswordAttempts5": "0 (default) - The device is never wiped after an incorrect PIN or password is entered.",
+ "maxPasswordAttempts6": "Most secure value is 0 if all policy values = 0; otherwise, Min policy value is the most secure value.",
+ "mdmDiscoveryUrl": "Specify the URL for the MDM enrollment endpoint that users who enroll to MDM will use. By default, this is specified for Intune.",
+ "minimumPinLength1": "Integer value that sets the minimum number of characters required for the PIN. Default value is 4. The lowest number you can configure for this policy setting is 4. The largest number you can configure must be less than the number configured in the Maximum PIN length policy setting or the number 127, whichever is the lowest.",
+ "minimumPinLength2": "If you configure this policy setting, the PIN length must be greater than or equal to this number. If you disable or do not configure this policy setting, the PIN length must be greater than or equal to 4.",
+ "name": "The name of this network boundary",
+ "neutralResources": "If you have authentication redirection endpoints in your company, specify those here. The locations specified here are considered to be either personal or corporate depending on the context of the connection prior to the redirection.
Multiple values can be specified by separating individual entries with a comma.
For example: sts.contoso.com,sts.contoso2.com
",
+ "passportForWork1": "Value that sets Windows Hello for Business as a method for signing into Windows.",
+ "passportForWork2": "Default value is true.If you set this policy to false, the user cannot provision Windows Hello for Business except on Azure Active Directory joined mobile phones where provisioning is required.",
+ "pinExpiration": "The largest number you can configure for this policy setting is 730. The lowest number you can configure for this policy setting is 0. If this policy is set to 0, then the user’s PIN will never expire.",
+ "pinHistory1": "The largest number you can configure for this policy setting is 50. The lowest number you can configure for this policy setting is 0. If this policy is set to 0, then storage of previous PINs is not required.",
+ "pinHistory2": "The current PIN of the user is included in the set of PINs associated with the user account. PIN history is not preserved through a PIN reset.",
+ "protectUnderLock": "Protects app content while the device is in a locked state.",
+ "protectionModeBlock": "Block: Blocks enterprise data from leaving protected apps.
",
+ "protectionModeOff": "Off: User is free to relocate data off of protected apps. No actions are logged.
",
+ "protectionModeOverride": "Allow overrides: User is prompted when attempting to relocate data from a protected to a non-protected app. If they choose to override this prompt, the action will be logged.
",
+ "protectionModeSilent": "Silent: User is free to relocate data off of protected apps. These actions are logged.
",
+ "required": "Required",
+ "revokeOnMdmHandoff": "Added in Windows 10, version 1703. This policy controls whether to revoke the WIP keys when a device upgrades from MAM to MDM. If set to “Off”, the keys will not be revoked and the user will continue to have access to protected files after upgrade. This is recommended if the MDM service is configured with the same WIP EnterpriseID as the MAM service.",
+ "revokeOnUnenroll": "This will cause encryption keys to be revoked when a device un-enrolls from this policy.",
+ "rmsTemplateForEdp": "TemplateID GUID to use for RMS encryption. The Azure RMS template allows the IT admin to configure the details about who has access to RMS-protected file and how long they have access.",
+ "showWipIcon": "This will let the user know when they are acting in a corporate context, by overlaying an icon.",
+ "useRmsForWip": "Specifies whether to allow Azure RMS encryption for WIP."
+ },
+ "requireAppPin": "Select Yes to disable the app PIN when a device lock is detected on an enrolled device.
Note: Intune cannot detect device enrollment with a third-party EMM solution on iOS/iPadOS.
"
+ },
+ "Autopilot": {
+ "AssignResourceAccount": {
+ "createNewCommandMenu": "Create new",
+ "createNewResourceAccountInfo": "\nCreate a new resource account during enrollment. The Resource account will be added to the Resource account table right away, but won't be active until the device is enrolled, and the Surface Hub subscription is verified. Learn more about Resource Accounts
\n ",
+ "createNewResourceTitle": "Create new resource account",
+ "deviceNameInvalid": "Device name is in an invalid format",
+ "deviceNameRequired": "A device name is required",
+ "editResourceAccountLabel": "Edit",
+ "selectExistingCommandMenu": "Select existing"
+ },
+ "Device": {
+ "ComputerName": {
+ "validFormat": "Names must be 15 characters or less, and can contain letters (a-z, A-Z), numbers (0-9), and hyphens. Names must not contain only numbers. Names cannot include a blank space."
+ },
+ "Header": {
+ "addressableUserName": "User friendly name",
+ "azureADDevice": "Associated Azure AD device",
+ "batch": "Group tag",
+ "dateAssigned": "Date assigned",
+ "deviceAccountFriendlyName": "Device account friendly name",
+ "deviceAccountPwd": "Device account password",
+ "deviceAccountUpn": "Device account",
+ "deviceDisplayName": "Device name",
+ "deviceName": "Device name",
+ "deviceUseType": "Device-use type",
+ "enrollmentState": "Enrollment state",
+ "intuneDevice": "Associated Intune device",
+ "lastContacted": "Last contacted",
+ "make": "Manufacturer",
+ "model": "Model",
+ "profile": "Assigned profile",
+ "profileStatus": "Profile status",
+ "purchaseOrderId": "Purchase order",
+ "resourceAccount": "Resource account",
+ "serialNumber": "Serial number",
+ "userPrincipalName": "User"
+ },
+ "SurfaceHub": {
+ "friendlyNameRequired": "A friendly name is required",
+ "pwdRequired": "A password is required",
+ "upnRequired": "A device account is required",
+ "upnValidFormat": "Values can contain letters (a-z, A-Z), numbers (0-9), and hyphens. Values cannot include a blank space."
+ }
+ },
+ "DeviceUseType": {
+ "meetingAndPresentation": "Meeting and presentation",
+ "teamCollaboration": "Team collaboration"
+ },
+ "Devices": {
+ "featureDescription": "Windows Autopilot lets you customize the out-of-box experience (OOBE) for your users.",
+ "importErrorStatus": "Some devices were not imported. Click here for more information.",
+ "importPendingStatus": "Import in progress. Elapsed time: {0} min. This process can take up to {1} min."
+ },
+ "DirectoryService": {
+ "activeDirectoryAD": "Hybrid Azure AD joined",
+ "activeDirectoryADLabel": "Hybrid Azure AD width Autopilot",
+ "azureAD": "Azure AD joined",
+ "unknownType": "Unknown Type"
+ },
+ "Filter": {
+ "enrollmentState": "State",
+ "profile": "Profile status"
+ },
+ "OOBE": {
+ "AddressableUserName": {
+ "validateEmpty": "User friendly name cannot be empty."
+ },
+ "ApplyComputerNameTemplate": {
+ "infoBalloon": "Create a naming template to add names to your devices during enrollment.",
+ "label": "Apply device name template"
+ },
+ "ApplyComputerNameTemplateDisabled": {
+ "label": "For Hybrid Azure AD joined type of Autopilot deployment profiles, devices are named using settings specified in Domain Join configuration."
+ },
+ "ComputerNameTemplate": {
+ "emptyValue": "MyCompany-%RAND:4%",
+ "label": "Enter a name",
+ "noDisallowedChars": "Name must only contain alphanumeric characters, hyphens, %SERIAL%, or %RAND:x%",
+ "serialLength": "Cannot use more than 7 characters with %SERIAL%",
+ "validateLessThan15Chars": "Name must be 15 characters or less",
+ "validateNoSpaces": "Computer names cannot contain spaces",
+ "validateNotAllNumbers": "Name must also contain letters and/or hyphens",
+ "validateNotEmpty": "Name cannot be empty",
+ "validateOnlyOneMacro": "Name must only contain one of %SERIAL% or %RAND:x%"
+ },
+ "ConfigureComputerNameTemplate": {
+ "description": "Create a unique name for your devices. Names must be 15 characters or less, and can contain letters (a-z, A-Z), numbers (0-9), and hyphens. Names must not contain only numbers. Names cannot include a blank space. Use the %SERIAL% macro to add a hardware-specific serial number. Alternatively, use the %RAND:x% macro to add a random string of numbers, where x equals the number of digits to add."
+ },
+ "EnableWhiteGlove": {
+ "infoBalloon": "Enable pressing Windows key 5 times to run OOBE without user authentication to enroll device and provision all system-context apps and settings. User-context apps and settings will be delivered when the user signs in.",
+ "label": "Allow pre-provisioned deployment"
+ },
+ "HybridAzureADSkipConnectivityCheck": {
+ "infoBalloon": "The Autopilot Hybrid Azure AD join flow will continue even if it does not establish domain controller connectivity during OOBE.",
+ "label": "Skip AD connectivity check (preview)"
+ },
+ "accountType": "User account type",
+ "accountTypeInfo": "Specify whether users are administrators or standard users on the device. Note that this setting does not apply to Global Administrator or Company Administrator accounts. These accounts cannot be standard users because they have access to all administrative features in Azure AD.",
+ "configOOBEInfo": "\nConfigure the out-of-box experience for your Autopilot devices\n
",
+ "configureDevice": "Deployment mode",
+ "configureDeviceHintForSurfaceHub2": "Autopilot only supports self-deploying mode for Surface Hub 2. This mode doesn't associate the user with the enrolled device, so it doesn't require user credentials.",
+ "configureDeviceHintForWindowsPC": "\n Deployment mode controls if a user needs to provide credentials in order to provision the device.\n
\n \n - \n User-Driven: Devices are associated with the user enrolling the device and user credentials are required to provision the device\n
\n - \n Self-Deploying (preview): Devices are not associated with the user enrolling the device and user credentials are not required to provision the device\n
\n
",
+ "createSurfaceHub2Info": "Configure the Autopilot enrollment settings for your Surface Hub 2 devices. By default Autopilot enables skipping user authentication during OOBE. Learn more about Windows Autopilot for Surface Hub 2.",
+ "createWindowsPCInfo": "\n\nThe following options are automatically enabled for Autopilot devices in self-deploying mode:\n
\n\n - \n Skip Work or Home usage selection\n
\n - \n Skip OEM registration and OneDrive configuration\n
\n - \n Skip user authentication in OOBE\n
\n
",
+ "endUserDevice": "User-Driven",
+ "hideEscapeLink": "Hide change account options",
+ "hideEscapeLinkInfo": "Options to change account and start over with a different account appear, respectively, during initial device setup on the company sign-in page, and on the domain error page. To hide these options, you must configure company branding in Azure Active Directory (requires Windows 10, 1809 or later, or Windows 11).",
+ "info": "Autopilot profile settings define the out-of-box experience users see when starting Windows for the first time. ",
+ "language": "Language (Region)",
+ "languageInfo": "Specify the language and region that will be used.",
+ "licenseAgreement": "Microsoft Software License Terms",
+ "licenseAgreementInfo": "Specify whether to show the EULA to users.",
+ "plugAndForgetDevice": "Self-Deploying (preview)",
+ "plugAndForgetGA": "Self-Deploying",
+ "privacySettingWarning": "The default value for diagnostic data collection has changed for devices running Windows 10, version 1903 and later, or Windows 11. ",
+ "privacySettings": "Privacy settings",
+ "privacySettingsInfo": "Specify whether to show privacy settings to users.",
+ "showCortanaConfigurationPage": "Cortana configuration",
+ "showCortanaConfigurationPageInfo": "Show will enable the Cortana configuration introduction during startup.",
+ "skipEULAWarning": "Important information about hiding license terms",
+ "skipKeyboardSelection": "Automatically configure keyboard",
+ "skipKeyboardSelectionInfo": "If true, skip the keyboard selection page if Language is set.",
+ "subtitle": "Autopilot profiles",
+ "title": "Out-of-box experience (OOBE)",
+ "useOSDefaultLanguage": "Operating system default",
+ "userSelect": "User select"
+ },
+ "Sync": {
+ "lastRequestedLabel": "Last sync request",
+ "lastSuccessfulLabel": "Last successful sync",
+ "syncInProgress": "Sync is in progress. Check back again soon.",
+ "syncInitiated": "Autopilot settings sync initiated.",
+ "syncSettingsTitle": "Sync Autopilot settings"
+ },
+ "Title": {
+ "devices": "Windows Autopilot devices"
+ },
+ "Tooltips": {
+ "addressableUserName": "Greeting name displayed during device setup.",
+ "azureADDevice": "Go to device details for associated device. N/A means that there's no associated device.",
+ "batch": "A string attribute that can be used to identify a group of devices. Intune's group tag field maps to the OrderID attribute on Azure AD devices.",
+ "dateAssigned": "Timestamp of when the profile was assigned to the device.",
+ "deviceAccountFriendlyName": "Device account friendly name for Surface Hub devices",
+ "deviceAccountPwd": "Device account password for Surface Hub devices",
+ "deviceAccountUpn": "Device account email for Surface Hub devices",
+ "deviceDisplayName": "Configure a unique name for a device. This name will be ignored in Hybrid Azure AD joined deployments. Device name still comes from the domain join profile for Hybrid Azure AD devices.",
+ "deviceName": "The name shown when someone tried to discover and connect to the device.",
+ "deviceUseType": " Device would setup based on your choice. You can always change later in settings.\n \n - For meetings and presentations, Windows Hello isn't turned on and data is removed after each session.\n
\n - For team collaboration, Windows Hello is turned on and profiles are saved for quick sign-in
\n
",
+ "enrollmentState": "Specifies if the device has enrolled.",
+ "intuneDevice": "Go to device details for associated device. N/A means that there's no associated device.",
+ "lastContacted": "Timestamp of when the device was last contacted.",
+ "make": "Manufacturer of the selected device.",
+ "model": "Model of the selected device",
+ "profile": "Name of the profile assigned to the device.",
+ "profileStatus": "Specifies if a profile is assigned to the device.",
+ "purchaseOrderId": "Purchase order ID",
+ "resourceAccount": "The device's identity, or user principal name (UPN).",
+ "serialNumber": "Serial number of the selected device.",
+ "userPrincipalName": "User to pre-fill authentication during device setup."
+ },
+ "allDevices": "All devices",
+ "allDevicesAlreadyAssignedError": "An Autopilot profile is already assigned to All Devices.",
+ "assignFailedDescription": "Failed to update assignments for {0}.",
+ "assignFailedTitle": "Failed to update Autopilot profile assignments.",
+ "assignSuccessDescription": "Successfully updated assignments for {0}.",
+ "assignSuccessTitle": "Successfully updated Autopilot profile assignments.",
+ "assignSufaceHub2ProfileNextStep": "Next steps for this deployment",
+ "assignSurfaceHub2ProfileToDeviceGroup": "1. Assign this profile to at least one device group",
+ "assignSurfaceHub2ProfileToResourceAccount": "2. Assign a resource account to each Surface Hub device to which you deploy this profile",
+ "assignedDevicesCount": "Assigned devices",
+ "assignedDevicesResourceAccountDescription": "To deploy this profile to a device, you must assign the device a Resource account. Select one device at a time to assign an existing Resource account or to create a new one. Learn more about Resource Accounts
",
+ "assignedDevicesResourceAccountStatusBarMessage": "This table only lists the Surface Hub 2 devices that have been assigned this profile.",
+ "assigningDescription": "Updating assignments for {0}.",
+ "assigningTitle": "Updating Autopilot profile assignments.",
+ "autoremediationContext": "We've detected a hardware change on this device. We're trying to automatically register the new hardware. You don't need to do anything now; the status will be updated at the next check in with the result. Learn more about resetting the profile.",
+ "autoremediationTitle": "Device {0} has a fix pending",
+ "cannotDeleteMessage": "This profile is assigned to groups. You must unassign all groups from this profile before you can delete it.",
+ "cannotDeleteTitle": "Cannot delete {0}",
+ "createdDateTime": "Created",
+ "deleteMessage": "If you delete this Autopilot profile, any devices assigned to this profile will display Unassigned.",
+ "deleteMessageWithPolicySet": "{0} is included in one more more policy sets. If you delete {0}, you'll no longer be able to assign it via these policy sets.",
+ "deleteTitle": "Are you sure you want to delete this profile?",
+ "description": "Description",
+ "deviceType": "Device type",
+ "deviceUse": "Device use",
+ "directoryServiceHintForSurfaceHub2": " \n Autopilot only supports Azure AD Joined for Surface Hub 2 devices. Specify how devices join Active Directory (AD) in your organization.\n
\n \n - \n Azure AD joined: Cloud-only without an on-premises Windows Server Active Directory.\n
\n
\n ",
+ "directoryServiceHintForWindowsPC": "\n \n Specify how devices join Active Directory (AD) in your organization:\n
\n \n - \n Azure AD joined: Cloud-only without an on-premises Windows Server Active Directory\n
\n
\n ",
+ "getAssignedDevicesCountError": "An error occurred while fetching the assigned devices count.",
+ "getAssignmentsError": "An error occurred while fetching Autopilot profile assignments.",
+ "harvestDeviceId": "Convert all targeted devices to Autopilot",
+ "harvestDeviceIdDescription": "By default, this profile can only be applied to Autopilot devices synced from the Autopilot service.",
+ "harvestDeviceIdInfo": "\n Select Yes to register all targeted devices to Autopilot if they are not already registered. The next time registered devices go through the Windows Out of Box Experience (OOBE), they will go through the assigned Autopilot scenario.\n
\n Please note that certain Autopilot scenarios require specific minimum builds of Windows. Please make sure your device has the required minimum build to go through the scenario.\n
\n Removing this profile won’t remove affected devices from Autopilot. To remove a device from Autopilot, use the Windows Autopilot Devices view.\n ",
+ "harvestDeviceIdWarning": "After conversion, Autopilot devices can only be reverted by deleting them from the Autopilot devices list.",
+ "holoLensCommandMenu": "HoloLens",
+ "info": "Windows Autopilot deployment profiles lets you customize the out-of-box experience for your devices.",
+ "invalidProfileNameMessage": "Character \"{0}\" is not allowed",
+ "joinTypeLabel": "Join Azure AD as",
+ "lastModifiedDateTime": "Last modified:",
+ "manualRemediationContext": "We've detected a hardware change on this device. It won't automatically receive an Autopilot profile when it's reset unless you register the device again. Learn more about resetting the profile.",
+ "manualRemediationTitle": "Device {0} needs your attention",
+ "name": "Name",
+ "noAutopilotProfile": "No Autopilot profiles",
+ "notEnoughPermissionAssignedError": "You don't have enough permissions to assign this profile to one or more of your selected groups. Please contact your administrator.",
+ "profile": "profile",
+ "resourceAccountStatusBarMessage": "A Resource Account is required for each Surface Hub 2 device to which this profile is deployed. Click to learn more.",
+ "selectServices": "Select directory service devices will join",
+ "surfaceHub2CommandMenu": "Surface Hub 2",
+ "surfaceHub2SCommandMenu": "Surface Hub 2S",
+ "userAffinityLabel": "Deployment mode",
+ "windowsPCCommandMenu": "Windows PC",
+ "directoryServiceLabel": "Join to Azure AD as"
},
- "CategoryDescription": {
- "androidGeneralApplicationRestrictions": "Use these settings to stay informed about which users install apps that are not approved for use in your company. Select the type of restricted app list:
\n Prohibited apps - A list of apps that you want to be informed about when users install them.
\n Approved apps - A list of apps that are approved for use in your company. When users install an app that is not in this list, you will be informed.
\n ",
- "androidZebraMxZebraMx": "Configure Zebra devices by uploading a MX profile in XML format.",
- "iosDeviceFeaturesAirprint": "Use these settings to configure iOS devices to automatically connect to AirPrint compatible printers on your network. You'll need the IP address and resource path of your printers.",
- "iosDeviceFeaturesExtensibleSingleSignOn": "Configure an app extension that enables single sign-on (SSO) for devices running iOS 13.0 or later.",
- "iosDeviceFeaturesHomeScreenLayout": "Configure the layout for the dock and Home Screens on iOS devices. Certain devices may have limits to how many items can be displayed.",
- "iosDeviceFeaturesIOSWallpaper": "Display an image that will appear on the Home Screen and/or the lock screen of iOS devices.\n To display a unique image in each location, create one profile with the lock screen image, and one with the Home Screen image.\n Then assign both profiles to your users.\n
\n \n - Max file size: 750 KB
\n - File type: PNG, JPG or JPEG
\n
\n ",
- "iosDeviceFeaturesNotifications": "Specify notification settings for apps. Supports iOS 9.3 and later.",
- "iosDeviceFeaturesSharedDevice": "Specify optional text displayed on the locked screen. It is supported on iOS 9.3 and later. Learn More",
- "iosGeneralApplicationRestrictions": "Use these settings to stay informed about which users install apps that are not approved for use in your company. Select the type of restricted app list:
\n Prohibited apps - A list of apps that you want to be informed about when users install them.
\n Approved apps - A list of apps that are approved for use in your company. When users install an app that is not in this list, you will be informed.
\n ",
- "iosGeneralApplicationVisibility": "Use the show apps list to specify the iOS apps that user can view or launch. Use the hidden apps list to specify the iOS apps that user cannot view or launch.",
- "iosGeneralAutonomousSingleAppMode": "Apps you add to this list and assign to a device can lock the device to run only that app once launched, or lock the device while a certain action is running (for example taking a test). Once the action is complete, or you remove the restriction, the device returns to its normal state.",
- "iosGeneralKiosk": "Kiosk mode locks various settings into a device, or specifies a single app that can be run on a device. This can be useful in environments like a retail store where you want a device to run only a single demo app.",
- "macDeviceFeaturesAirprint": "Use these settings to configure macOS devices to automatically connect to AirPrint compatible printers on your network. You'll need the IP address and resource path of your printers.",
- "macDeviceFeaturesAssociatedDomains": "Configure associated domains to share data and sign-in credentials between your org’s apps and websites. This profile can be applied to devices running macOS 10.15 or later.",
- "macDeviceFeaturesExtensibleSingleSignOn": "Configure an app extension that enables single sign-on (SSO) for devices running macOS 10.15 or later.",
- "macDeviceFeaturesLoginItems": "Choose which apps, files, and folders open when users log in to their devices. If you don't want users to change how the selected apps open, you can hide the app from the user configuration.",
- "macDeviceFeaturesLoginWindow": "Configure the appearance of the macOS login screen and the functions that are available to users before and after they log in.",
- "macExtensionsKernelExtensions": "Use these settings to configure kernel extension policy on macOS devices running 10.13.2 or later.",
- "macGeneralDomains": "Emails that the user sends or receives which don't match the domains you specify here will be marked as untrusted.",
- "windows10EndpointProtectionApplicationGuard": "While using Microsoft Edge, Microsoft Defender Application Guard protects your environment from sites that haven’t been defined as trusted by your organization. When users visit sites that aren’t listed in your isolated network boundary, the sites will be opened in a virtual browsing session in Hyper-V. Trusted sites are defined by a network boundary, which can be configured in Device Configuration. Note this feature is only available for devices running 64-bit Windows 10 or later.",
- "windows10EndpointProtectionCredentialGuard": "Enabling Credential Guard will enable the following required settings:\n
\n \n - Enable Virtualization-based Security: Turns on virtualization-based security (VBS) at next reboot. Virtualization-based security uses the Windows Hypervisor to provide support for security services.
\n
\n - Secure Boot with Direct Memory Access: Turns on VBS with Secure Boot and direct memory access (DMA).
\n
\n ",
- "windows10EndpointProtectionDeviceGuard": "Choose additional apps that either need to be audited by, or can be trusted to run by Microsoft Defender Application Control. Windows components and all apps from Windows store are automatically trusted to run.
\n Applications will not be blocked when running in “audit only” mode. “Audit only” mode logs all events in local client logs.\n ",
- "windows10GeneralPrivacyPerApp": "Add apps that should have a different privacy behavior from what you defined in “Default privacy”.",
- "windows10NetworkBoundaryNetworkBoundary": "The network boundary is the list of enterprise resources, such as cloud-hosted domain and IP address ranges for computers that are on the enterprise network. Define network boundaries to apply policies to protect data that resides in these locations.",
- "windowsHealthMonitoring": "Configure the Windows health monitoring policy.",
- "windowsPhoneGeneralApplicationRestrictions": "Windows Phone can block users from installing or launching apps specified in the prohibited apps list, or apps not specified in the approved apps list. All managed apps must be added to the approved list."
- },
"MinimumOperatingSystem": {
"Android": {
"v10": "Android 10.0",
@@ -2435,6 +1154,304 @@
"excludedGroups": "Excluded Groups",
"licenseType": "License type"
},
+ "TAP": {
+ "AccessRequirements": {
+ "infoText": "Configure the PIN and credential requirements that users must meet to access apps in a work context."
+ },
+ "DataProtection": {
+ "infoText": "This group includes the data loss prevention (DLP) controls, like cut, copy, paste, and save-as restrictions. These settings determine how users interact with data in the apps."
+ },
+ "DeviceTypes": {
+ "selectOne": "Select at least one device type."
+ },
+ "TargetedApps": {
+ "TargetToAll": {
+ "label": "Target to apps on all device types"
+ },
+ "infoText": "Choose how you want to apply this policy to apps on different devices. Then add at least one app.",
+ "selectOne": "Select at least one app to create a policy."
+ }
+ },
+ "AssignmentAction": {
+ "exclude": "Excluded",
+ "include": "Included",
+ "includeAllDevicesVirtualGroup": "Included",
+ "includeAllUsersVirtualGroup": "Included"
+ },
+ "AppType": {
+ "androidEnterpriseSystemApp": "Android Enterprise system app",
+ "androidForWorkApp": "Managed Google Play store app",
+ "androidLobApp": "Android line-of-business app",
+ "androidStoreApp": "Android store app",
+ "builtInAndroid": "Built-In Android app",
+ "builtInApp": "Built-In app",
+ "builtInIos": "Built-In iOS app",
+ "default": "",
+ "iosLobApp": "iOS line-of-business app",
+ "iosStoreApp": "iOS store app",
+ "iosVppApp": "iOS volume purchase program app",
+ "lineOfBusinessApp": "Line-of-business app",
+ "macOSDmgApp": "macOS app (DMG)",
+ "macOSEdgeApp": "Microsoft Edge (macOS)",
+ "macOSLobApp": "macOS line-of-business app",
+ "macOSMdatpApp": "Microsoft Defender ATP (macOS)",
+ "macOSOfficeSuiteApp": "Microsoft 365 Apps (macOS)",
+ "macOsVppApp": "macOS volume purchase program app",
+ "managedAndroidLobApp": "Managed Android line-of-business app",
+ "managedAndroidStoreApp": "Managed Android store app",
+ "managedGooglePlayApp": "Managed Google Play store app",
+ "managedGooglePlayPrivateApp": "Managed Google Play private app",
+ "managedGooglePlayWebApp": "Managed Google Play web link",
+ "managedIosLobApp": "Managed iOS line-of-business app",
+ "managedIosStoreApp": "Managed iOS store app",
+ "microsoftStoreForBusinessApp": "Microsoft Store for Business app",
+ "microsoftStoreForBusinessReleaseManagedApp": "Microsoft Store for Business",
+ "officeSuiteApp": "Microsoft 365 Apps (Windows 10 and later)",
+ "webApp": "Web link",
+ "windowsAppXLobApp": "Windows AppX line-of-business app",
+ "windowsClassicApp": "Windows app (Win32)",
+ "windowsEdgeApp": "Microsoft Edge (Windows 10 and later)",
+ "windowsMobileMsiLobApp": "Windows MSI line-of-business app",
+ "windowsPhone81AppXBundleLobApp": "Windows Phone 8.1 AppX line-of-business app",
+ "windowsPhone81AppXLobApp": "Windows Phone 8.1 AppX line-of-business app",
+ "windowsPhone81StoreApp": "Windows Phone 8.1 store app",
+ "windowsPhoneXapLobApp": "Windows Phone XAP line-of-business app",
+ "windowsStoreApp": "Microsoft Store app",
+ "windowsUniversalAppXLobApp": "Windows Universal AppX line-of-business app",
+ "windowsUniversalLobApp": "Windows Universal line-of-business app"
+ },
+ "TAPSettings": {
+ "AllowedDataIngestionLocations": {
+ "label": "Allow users to open data from selected services",
+ "tooltip": "Select the application storage services users can open data from. All other services are blocked. Selecting no services will prevent users from opening data."
+ },
+ "AndroidBackup": {
+ "label": "Backup org data to Android backup services",
+ "tooltip": "Select {0} to prevent backup of org data to Android backup services. \nSelect {1} to permit backup of org data to Android backup services. \nPersonal or unmanaged data is not affected."
+ },
+ "AndroidBiometricAuthentication": {
+ "label": "Biometrics instead of PIN for access",
+ "tooltip": "Choose which android authentication methods people can use, if any, in place of an app PIN."
+ },
+ "AndroidFingerprint": {
+ "label": "Fingerprint instead of PIN for access (Android 6.0+)",
+ "tooltip": "Android OS uses fingerprint scans to authenticate Android-device users. This feature supports the native biometric controls on Android devices. OEM-specific biometric settings, like Samsung Pass, are not supported. If allowed, native biometric controls must be used to access the app on a capable device."
+ },
+ "AndroidOverrideFingerprint": {
+ "label": "Override fingerprint with PIN after timeout"
+ },
+ "AppPIN": {
+ "label": "App PIN when device PIN is set",
+ "tooltip": "If not required, an app PIN does not need to be used to access the app if the device PIN is set on an MDM enrolled device.
\n\nNote: Intune cannot detect device enrollment with a third-party EMM solution on Android."
+ },
+ "BlockDataIngestionIntoOrganizationDocuments": {
+ "label": "Open data into Org documents",
+ "tooltip1": "Select Block to disable the use of the Open option or other options to share data between accounts in this app. Select Allow if you want to allow the use of Open and other options to share data between accounts in this app.",
+ "tooltip2": "When set to Block, you can configure the following setting, Allow user to open data from selected services, to specify which services are allowed for Org data locations.",
+ "tooltip3": "Note: This setting is only enforced if the setting \"Receive data from other apps\" is set to \"Policy managed apps\".
\nNote: This setting does not apply to all applications. For more information see {0}.",
+ "tooltip4": "Note: This setting is only enforced if the setting \"Receive data from other apps\" is set to \"Policy managed apps\".
\nNote: This setting does not apply to all applications. For more information see {0} or {0}."
+ },
+ "ConnectToVpnOnLaunch": {
+ "label": "Start Microsoft Tunnel connection on app-launch",
+ "tooltip": "Allow connection to VPN when app is launch"
+ },
+ "CredentialsForAccess": {
+ "label": "Work or school account credentials for access",
+ "tooltip": "If required, work or school credentials must be used to access the policy-managed app. If PIN or biometric methods also required for access to the app, the work or school account credentials will be required on top of those prompts."
+ },
+ "CustomBrowserDisplayName": {
+ "label": "Unmanaged Browser Name",
+ "tooltip": "Enter the application name for browser associated with the \"Unmanaged Browser ID\". This name will be displayed to users if the specified browser is not installed."
+ },
+ "CustomBrowserPackageId": {
+ "label": "Unmanaged Browser ID",
+ "tooltip": "Enter the application ID for a single browser. Web content (http/s) from policy managed applications will open in the specified browser."
+ },
+ "CustomBrowserProtocol": {
+ "label": "Unmanaged browser protocol",
+ "tooltip": "Enter the protocol for a single unmanaged browser. Web content (http/s) from policy managed applications will open in any app that supports this protocol.
\n \nNote: Include only the protocol prefix. If your browser requires links of the form \"mybrowser://www.microsoft.com\", enter \"mybrowser\".
"
+ },
+ "CustomDialerAppDisplayName": {
+ "label": "Dialer App Name"
+ },
+ "CustomDialerAppPackageId": {
+ "label": "Dialer App Package ID"
+ },
+ "CustomDialerAppProtocol": {
+ "label": "Dialer App URL Scheme"
+ },
+ "Cutcopypaste": {
+ "label": "Restrict cut, copy, and paste between other apps",
+ "tooltip": "Cut, copy, and paste data between your app and other approved apps installed on the device. Choose to block these actions completely between apps, allow these actions for use with any app, or restrict use to apps that your organization manages.
\n\nPolicy-managed apps with paste in gives you the option to accept incoming content pasted from another app. However, it blocks users from sharing content outwardly, unless sharing with a managed app.
"
+ },
+ "DialerRestrictionLevel": {
+ "iosTooltip": "Typically, when a user selects a hyperlinked phone number in an app, a dialer app will open with the phone number prepopulated and ready to call. For this setting, choose how to handle this type of content transfer when it's initiated from a policy-managed app. Additional steps may be necessary in order for this setting to take effect. First, verify that tel and telprompt have been removed from the Select apps to exempt list. Then, ensure the application is using a newer version of Intune SDK (Version 12.7.0+).",
+ "label": "Transfer telecommunication data to",
+ "tooltip": "Typically, when a user selects a hyperlinked phone number in an app, a dialer app will open with the phone number prepopulated and ready to call. For this setting, choose how to handle this type of content transfer when it's initiated from a policy-managed app."
+ },
+ "EncryptData": {
+ "label": "Encrypt org data",
+ "link": "https://docs.microsoft.com/en-us/intune/app-protection-policy-settings-android#data-relocation-settings",
+ "tooltip": "Select {0} to enforce encrypting org data with Intune app layer encryption.\n
\nSelect {1} to not enforce encrypting org data with Intune app layer encryption.\n\n
\nNote: For more information on Intune app layer encryption, see {2}."
+ },
+ "EncryptDataAndroid": {
+ "tooltip": "Choose Require to enable encryption of work or school data in this app. Intune uses an OpenSSL, 256-bit AES encryption scheme along with the Android Keystore system to securely encrypt app data. Data is encrypted synchronously during file I/O tasks. Content on the device storage is always encrypted. The SDK will continue to provide support of 128-bit keys for compatibility with content and apps that use older SDK versions.
\n\nThe encryption method is FIPS 140-2 compliant.
"
+ },
+ "EncryptDataIos": {
+ "tooltip1": "Choose Require to enable encryption of work or school data in this app. Intune enforces iOS/iPadOS device encryption to protect app data while the device is locked. Applications may optionally encrypt app data using Intune APP SDK encryption. Intune APP SDK uses iOS/iPadOS cryptography methods to apply 128-bit AES encryption to app data.",
+ "tooltip2": "When you enable this setting, the user may be required to set up and use a PIN to access their device. If there's no device PIN and encryption is required, the user is prompted to set a PIN with the message \"Your organization has required you to first enable a device PIN to access this app.\"",
+ "tooltip3": "Go to the official Apple documentation to see which iOS encryption modules are FIPS 140-2 compliant or pending FIPS 140-2 compliance."
+ },
+ "EncryptDataOnEnrolledDevices": {
+ "label": "Encrypt org data on enrolled devices",
+ "tooltip": "Select {0} to enforce encrypting org data with Intune app layer encryption on all devices.
\n\nSelect {1} to not enforce encrypting org data with Intune app layer encryption on enrolled devices."
+ },
+ "IOSBackup": {
+ "label": "Backup org data to iTunes and iCloud backups",
+ "tooltip": "Select {0} to prevent backup of org data to iTunes or iCloud. \nSelect {1} to permit backup of org data to iTunes or iCloud. \nPersonal or unmanaged data is not affected."
+ },
+ "IOSFaceID": {
+ "label": "Face ID instead of PIN for access (iOS 11+/iPadOS)",
+ "tooltip": "Face ID uses facial recognition technology to authenticate users on iOS/iPadOS devices. Intune calls the LocalAuthentication API to authenticate users using Face ID. If allowed, Face ID must be used to access the app on a Face ID capable device."
+ },
+ "IOSOverrideTouchId": {
+ "label": "Override biometrics with PIN after timeout"
+ },
+ "IOSTouchId": {
+ "label": "Touch ID instead of PIN for access (iOS 8+/iPadOS)",
+ "tooltip": "Touch ID uses fingerprint recognition technology to authenticate users on iOS devices. Intune calls the LocalAuthentication API to authenticate users using Touch ID. If allowed, Touch ID must be used to access the app on a Touch ID capable device."
+ },
+ "NotificationRestriction": {
+ "label": "Org data notifications",
+ "tooltip": "Select one of the following options to specify how notifications for org accounts are shown for this app and any connected devices such as wearables:
\n{0}: Do not share notifications.
\n{1}: Do not share org data in notifications. If not supported by the application, notifications are blocked.
\n{2}: Share all notifications.
\n Android only:\n Note: This setting does not apply to all applications. For more information see {3}
\n \n iOS only:\nNote: This setting does not apply to all applications. For more information see {4}
"
+ },
+ "OpenLinksManagedBrowser": {
+ "label": "Restrict web content transfer with other apps",
+ "tooltip": "Select one of the following options to specify the apps that this app can open web content in:
\nEdge: Allow web content to open only in Edge
\nUnmanaged browser: Allow web content to open only in the unmanaged browser defined by \"Unmanaged browser protocol\" setting
\nAny app: Allow web links in any app
"
+ },
+ "OverrideBiometric": {
+ "tooltip": "If required, depending on the timeout (minutes of inactivity), a PIN prompt will override biometric prompts. If this timeout value is not met, the biometric prompt will continue to show. This timeout value should be greater than the value specified under 'Recheck the access requirements after (minutes of inactivity)'. "
+ },
+ "PinAccess": {
+ "label": "PIN for access",
+ "tooltip": "If required, a PIN must be used to access the policy-managed app. Users must create an access PIN the first time that they open the app from a work or school account."
+ },
+ "PinLength": {
+ "label": "Select minimum PIN length",
+ "tooltip": "This setting specifies the minimum number of digits of a PIN."
+ },
+ "PinType": {
+ "label": "PIN type",
+ "tooltip": "Numeric PINs are made up of all numbers. Passcodes are made up of alphanumeric characters and special characters. "
+ },
+ "Printing": {
+ "label": "Printing org data",
+ "tooltip": "If blocked, the app cannot print protected data."
+ },
+ "ReceiveData": {
+ "label": "Receive data from other apps",
+ "tooltip": "Select one of the following options to specify the apps that this app can receive data from:
\n\nNone: Do not allow receiving data in org documents or accounts from any app
\n\nPolicy managed apps: Only allow receiving data in org documents or accounts from other policy managed apps\n
\nAny app with incoming org data: Allow receiving data in org documents or accounts from from any app and treat all incoming data without an user account as org data
\n\nAll apps: Allow receiving data in org documents or accounts from any app"
+ },
+ "RecheckAccessAfter": {
+ "label": "Recheck the access requirements after (minutes of inactivity)\n\n",
+ "tooltip": "If the policy-managed app is inactive for longer than the number of minutes of inactivity specified, the app will prompt the access requirements (i.e PIN, conditional launch settings) to be rechecked after the app is launched."
+ },
+ "RestrictKeyboards": {
+ "duplicatePackageError": "The package ID must be unique.",
+ "invalidPackageError": "Invalid package ID",
+ "label": "Approved keyboards",
+ "select": "Select keyboards to approve",
+ "subtitle": "Add all keyboards and input methods that users are allowed to use with targeted apps. Enter the keyboard name as you would like it to appear to the end user.",
+ "title": "Add approved keyboards",
+ "toolTip": "Select Require and then specify a list of approved keyboards for this policy. Learn more."
+ },
+ "SaveData": {
+ "label": "Save copies of org data",
+ "tooltip": "Select {0} to prevent saving a copy of org data to a new location, other than the selected storage services, using \"Save As\".\n Select {1} to permit saving a copy of org data to a new location using \"Save As\".
\n\n\nNote: This setting does not apply to all applications. For more information see {2}.\n"
+ },
+ "SaveDataToSelected": {
+ "label": "Allow user to save copies to selected services",
+ "tooltip": "Select the storage services users can save copies of org data to. All other services are blocked. Selecting no services will prevent users from saving a copy of org data."
+ },
+ "ScreenCaptureAndAndroidAssistant": {
+ "label": "Screen capture and Google Assistant\n",
+ "tooltip": "If blocked, both screen capture and Google Assistant app scanning capabilities will be disabled when using the policy-managed app. This feature supports the usual Google Assistant app. Third party assistants using Google's Assist API are not supported. Choosing Block will also blur the App-Switcher preview image when using the app with a work or school account."
+ },
+ "SendData": {
+ "label": "Send org data to other apps",
+ "tooltip": "Select one of the following options to specify the apps that this app can send org data to:
\n\n\nNone: Do not allow sending org data to any app
\n\n\nPolicy managed apps: Only allow sending org data to other policy managed apps
\n\n\nPolicy managed apps with OS sharing: Only allow sending org data to other policy managed apps and sending org documents to other MDM managed apps on enrolled devices
\n\n\nPolicy managed apps with Open-In/Share filtering: Only allow sending org data to other policy managed apps and filter OS Open-in/Share dialogs to only display policy managed apps\n
\n\nAll apps: Allow sending org data to any app"
+ },
+ "SimplePin": {
+ "label": "Simple PIN",
+ "tooltip": "If blocked, users may not create a simple PIN. A simple PIN is a string of consecutive or repetitive digits, such as 1234, ABCD, or 1111. Please note that blocking simple PIN of type 'Passcode' requires the passcode to have at least one number, one letter, and one special character."
+ },
+ "SyncContacts": {
+ "label": "Sync policy managed app data with native apps or add-ins"
+ },
+ "ThirdPartyKeyboards": {
+ "infoBox": "Keyboard restrictions will apply to all areas of an app. Personal accounts for apps that support multiple identities will be affected by this restriction. Learn more.",
+ "label": "Third party keyboards"
+ },
+ "Timeout": {
+ "label": "Timeout (minutes of inactivity)"
+ },
+ "Tap": {
+ "numberOfDays": "Number of days",
+ "pinResetAfterNumberOfDays": "PIN reset after number of days",
+ "previousPinBlockCount": "Select number of previous PIN values to maintain"
+ }
+ },
+ "ScheduledAction": {
+ "Form": {
+ "editBlockActionInfo": "One block action is required for all compliance policies.",
+ "graceperiod": "Schedule (days after noncompliance)",
+ "graceperiodInfo": "Specify the number of days after noncompliance after which this action should be triggered for the user's device",
+ "subtitle": "Specify action parameters",
+ "title": "Action parameters"
+ },
+ "List": {
+ "gracePeriodDay": "{0} day after noncompliance",
+ "gracePeriodDays": "{0} days after noncompliance",
+ "gracePeriodHour": "{0} hour after noncompliance",
+ "gracePeriodHours": "{0} hours after noncompliance",
+ "gracePeriodMinute": "{0} minute after noncompliance",
+ "gracePeriodMinutes": "{0} minutes after noncompliance",
+ "immediately": "Immediately",
+ "schedule": "Schedule",
+ "scheduleInfoBalloon": "Days after noncompliance",
+ "subtitle": "Specify the sequence of actions on noncompliant devices",
+ "title": "Actions"
+ },
+ "Notification": {
+ "additionalEmailLabel": "Others",
+ "additionalRecipients": "Additional recipients (via email)",
+ "additionalRecipientsBladeTitle": "Select additional recipients",
+ "emailAddressPrompt": "Enter email addresses (separated by commas)",
+ "invalidEmail": "Invalid email address",
+ "messageTemplate": "Message template",
+ "noneSelected": "None selected",
+ "notSelected": "Not selected",
+ "numSelected": "{0} selected",
+ "selected": "Selected"
+ },
+ "block": "Mark device noncompliant",
+ "lockDevice": "Lock device (local action)",
+ "lockDeviceWithPasscode": "Lock device (local action)",
+ "noAction": "No action",
+ "noActionRow": "No actions, select 'Add' to add an action",
+ "pushNotification": "Send push notification to end user",
+ "remoteLock": "Remotely lock the noncompliant device",
+ "removeSourceAccessProfile": "Remove source access profile",
+ "retire": "Retire the noncompliant device",
+ "wipe": "Wipe",
+ "emailNotification": "Send email to end user"
+ },
+ "InstallIntent": {
+ "available": "Available for enrolled devices",
+ "availableWithoutEnrollment": "Available with or without enrollment",
+ "required": "Required",
+ "uninstall": "Uninstall"
+ },
"EnrollmentStatusScreen": {
"Apps": {
"managedApps": "Managed apps",
@@ -2466,142 +1483,61 @@
"resetToggle": "Allow users to reset device if installation error occurs",
"timeout": "Show an error when installation takes longer than specified number of minutes"
},
- "EnrollmentType": {
- "devicesWithEnrollment": "Managed devices",
- "devicesWithoutEnrollment": "Managed apps"
- },
- "ApplicabilityRules": {
- "GridLabel": {
- "property": "Property",
- "rule": "Rule",
- "ruleDetails": "Rule Details",
- "value": "Value"
- },
- "assignIf": "Assign profile if",
- "deleteWarning": "This will delete the selected Applicability Rule",
- "dontAssignIf": "Don't assign profile if",
- "editionDisplayText": "{0} {1}",
- "editionDisplayTextMore": "and {0} more",
- "instructions": "Specify how to apply this profile within an assigned group. Intune will only apply the profile to devices that meet the combined criteria of these rules.",
- "maxText": "Max",
- "minText": "Min",
- "noActionRow": "No Applicability Rules Specified",
- "oSVersion": "e.g. 1.2.3.4",
- "toText": "to",
- "windows10Education": "Windows 10/11 Education",
- "windows10EducationN": "Windows 10/11 Education N",
- "windows10Enterprise": "Windows 10/11 Enterprise",
- "windows10EnterpriseN": "Windows 10/11 Enterprise N",
- "windows10HolographicEnterprise": "Windows 10 Holographic for Business",
- "windows10Home": "Windows 10/11 Home",
- "windows10HomeChina": "Windows 10 Home China",
- "windows10HomeN": "Windows 10/11 Home N",
- "windows10HomeSingleLanguage": "Windows 10/11 Home Single Language",
- "windows10IoTCore": "Windows 10 IoT Core",
- "windows10IoTCoreCommercial": "Windows 10 IoT Core Commercial",
- "windows10Mobile": "Windows 10 Mobile",
- "windows10MobileEnterprise": "Windows 10 Mobile Enterprise",
- "windows10OsEdition": "OS edition",
- "windows10OsVersion": "OS version",
- "windows10Professional": "Windows 10/11 Professional",
- "windows10ProfessionalEducation": "Windows 10/11 Professional Education",
- "windows10ProfessionalEducationN": "Windows 10/11 Professional Education N",
- "windows10ProfessionalN": "Windows 10 Professional N",
- "windows10ProfessionalWorkstation": "Windows 10/11 Professional Workstation",
- "windows10ProfessionalWorkstationN": "Windows 10/11 Professional Workstation N"
+ "Devices": {
+ "General": {
+ "android": "Android"
+ },
+ "aOSP": "Android open source project",
+ "android": "Android device administrator",
+ "androidWorkProfile": "Android Enterprise (work profile)",
+ "iOS": "iOS/iPadOS",
+ "mac": "macOS",
+ "windows": "Windows (MDM)",
+ "windows10": "Windows 10 and later",
+ "windowsHomeSku": "Windows Home Sku",
+ "windowsMobile": "Windows Mobile"
+ },
+ "AppInfoBalloonText": {
+ "Certificate": {
+ "customSubjectName": "CN={{UserName}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US\nor\nCN={{AAD_Device_ID}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US",
+ "keySize": "Select the number of bits contained in the key.",
+ "keyUsage": "Specify the cryptographic action that is required to exchange the certificate’s public key.",
+ "renewalThreshold": "Enter the percentage (between 1 and 99 percent) of remaining certificate lifetime that is allowed before a device can request renewal of the certificate. The recommended amount in Intune is 20%. (1-99)",
+ "rootCert": "Choose a previously configured and assigned root CA certificate profile. The CA certificate must match the root certificate of the CA that is issuing the certificate for this profile (the one you are currently configuring).",
+ "scepServerUrl": "Enter a URL for the NDES Server that issues certificates through SCEP (Must be HTTPS). e.g. https://contoso.com/certsrv/mscep/mscep.dll",
+ "scepServerUrls": "Add one or more URLs for the NDES Server that issues certificates through SCEP (Must be HTTPS). e.g. https://contoso.com/certsrv/mscep/mscep.dll",
+ "subjectAlternativeName": "Subject alternative name",
+ "subjectNameFormat": "Subject name format",
+ "validityPeriod": "The amount of time remaining before the certificate expires. Enter a value that is equal to or lower than the validity period shown in the certificate template. Default is set at one year."
+ },
+ "appInstallContext": "This specifies the install context to be associated with this app. For dual mode apps, select the desired context for this app. For all other apps, this is pre-selected based on the package and cannot be modified.",
+ "autoUpdateMode": "Configure the update priority for the app. Select Default to require the device to be connected to WiFi, to be charging, and not to be actively in use before updating the app. Select High Priority to update the app as soon as the developer has published the app, regardless of charge status, WiFi capability, or end user activity on the device. Select Postponed to forgo app updates for up to 90 days. High priority and postponed will only take effect on DO devices.",
+ "configurationSettingsFormat": "Configuration settings format text",
+ "ignoreVersionDetection": "Set this to “Yes” for apps that are automatically updated by the app developer (such as Google Chrome).",
+ "ignoreVersionDetectionMacOSLobApp": "Select \"Yes\" for apps that are automatically updated by app developer or to only check for app bundleID before installation. Select \"No\" to check for app bundleID and version number before installation.",
+ "installAsManagedMacOSLobApp": "This setting only applies to macOS 11 and higher. The app will be installed but not managed on macOS 10.15 and lower.",
+ "installContextDropdown": "Select the appropriate install context. User context will install the app only for the targeted user while device context will install the app for all users on the device.",
+ "ldapUrl": "This is the LDAP hostname where clients can get the public encryption keys for email recipients. Emails will be encrypted when a key is available. Supported formats: - ldap.example.com
\n- ldap.example.com:123
\n- ldap://ldap.example.com
- ldap://ldap.example.com:123
- ldaps://ldap.example.com
\n- ldaps://ldap.example.com:123
",
+ "permissionsSettings": "Select runtime permissions for the associated app.",
+ "policyAssociatedApp": "Select the app that this policy will be associated with.",
+ "policyConfigurationSettings": "Select the method you want to use to define configuration settings for this policy.",
+ "policyDescription": "Optionally, enter a description for this configuration policy.",
+ "policyEnrollmentType": "Choose whether these settings are managed through device management or apps made with Intune SDK.",
+ "policyName": "Enter a name for this configuration policy.",
+ "policyPlatform": "Select the platform this app configuration policy will apply to.",
+ "policyProfileType": "Select the device profile types that this app configuration profile will apply to",
+ "policySMime": "Configure S/MIME signing and encryption settings for Outlook.",
+ "sMimeDeployCertsFromIntune": "Specify whether or not S/MIME certificates will be delivered from Intune for use with Outlook.\nIntune can automatically deploy signing and encryption certificates to users through the Company Portal.",
+ "sMimeEnable": "Specify whether or not S/MIME controls are enabled when composing an email",
+ "sMimeEnableAllowChange": "Specify if the user is allowed to change the Enable S/MIME setting.",
+ "sMimeEncryptAllEmails": "Specify whether or not all emails must be encrypted.\nEncrypting converts data to cipher text so that only the intended recipient can read it.",
+ "sMimeEncryptAllEmailsAllowChange": "Specify if the user is allowed to change the Encrypt all emails setting.",
+ "sMimeEncryptionCertProfile": "Specify certificate profile for email encryption.",
+ "sMimeSignAllEmails": "Specify whether or not all emails must be signed.\nA digital signature verifies the authenticity of the email and ensures that the contents are not tampered with in transit.",
+ "sMimeSignAllEmailsAllowChange": "Specify if the user is allowed to change the Sign all emails setting.",
+ "sMimeSigningCertProfile": "Specify certificate profile for email signing.",
+ "sMimeUserNotificationType": "Method to notify users that they must open Company Portal to retrieve S/MIME certificates for Outlook."
},
- "BooleanActions": {
- "allow": "Allow",
- "block": "Block",
- "configured": "Configured",
- "disable": "Disable",
- "dontRequire": "Don't Require",
- "enable": "Enable",
- "hide": "Hide",
- "limit": "Limit",
- "notConfigured": "Not configured",
- "require": "Require",
- "show": "Show",
- "yes": "Yes"
- },
- "ProactiveRemediations": {
- "Create": {
- "Basics": {
- "DescriptionMultiLineTextBox": {
- "label": "Description",
- "placeholder": "Enter a description"
- },
- "NameTextBox": {
- "label": "Name",
- "placeholder": "Enter a name"
- },
- "PublisherTextBox": {
- "label": "Publisher",
- "placeholder": "Enter a publisher"
- },
- "VersionTextBox": {
- "label": "Version"
- },
- "headerDescription": "Create a new custom script package from detection and remediation scripts that you’ve written."
- },
- "ScopeTags": {
- "headerDescription": "Select one or more groups to assign the script package."
- },
- "Settings": {
- "DetectionScriptMultiLineTextBox": {
- "label": "Detection script",
- "placeholder": "Input script text",
- "requiredValidationMessage": "Please enter the detection script"
- },
- "EnforceScriptSignatureCheckOptionPicker": {
- "label": "Enforce script signature check"
- },
- "LoggedOnCredentialsOptionPicker": {
- "label": "Run this script using the logged-on credentials"
- },
- "RemediationScript": {
- "infoBox": "This script will run in detect-only mode because there is no remediation script."
- },
- "RemediationScriptMultiLineTextBox": {
- "label": "Remediation script",
- "placeholder": "Input script text"
- },
- "RunIn64BitPSOptionPicker": {
- "label": "Run script in 64-bit PowerShell"
- },
- "ScriptMultiLineTextBox": {
- "base64EncodingValidationMessage": "Invalid script. One or more characters used in the script is not valid."
- },
- "headerDescription": "Create a custom script package from scripts you've written. By default, scripts will run on assigned devices every day.",
- "infoBox": "This script is read-only. Some of the settings for this script might be disabled."
- },
- "title": "Create custom script",
- "ScriptProperties": {
- "GridHeaders": {
- "interval": "Interval",
- "time": "Date and time"
- },
- "Interval": {
- "day": "Repeats every day",
- "days": "Repeats every {0} days",
- "hour": "Repeats every hour",
- "hours": "Repeats every {0} hours",
- "month": "Repeats every month",
- "months": "Repeats every {0} months",
- "week": "Repeats every week",
- "weeks": "Repeats every {0} weeks"
- },
- "Time": {
- "utc": "{0} (UTC)",
- "utcWithDate": "{0} (UTC) on {1}",
- "withDate": "{0} on {1}"
- }
- }
- },
- "Edit": {
- "title": "Edit - {0}"
- }
- },
"WindowsManagement": {
"Assignment": {
"noAssignmentCustomAttributeDisplayText": "Assign custom attribute to at least one group. Go to Properties to edit assignments.",
@@ -2708,910 +1644,6 @@
"shellScriptObjectName": "Shell script",
"successfullySavedPolicy": "Saved {0}"
},
- "AssignmentFilters": {
- "assignmentFilterColumnHeader": "Filter",
- "noFilters": "None"
- },
- "Category": {
- "airPlay": "AirPlay",
- "airPrint": "AirPrint",
- "androidDefenderAtp": "Microsoft Defender for Endpoint",
- "androidDeviceOwnerApplications": "Applications",
- "androidForWorkPassword": "Device password",
- "appManagement": "Allow or Block apps",
- "applicationGuard": "Microsoft Defender Application Guard",
- "applicationRestrictions": "Restricted Apps",
- "applicationVisibility": "Show or Hide Apps",
- "applications": "App Store",
- "applicationsAndGames": "App Store, Doc Viewing, Gaming",
- "applicationsAndGoogle": "Google Play Store",
- "appsAndExperience": "Apps and experience",
- "associatedDomains": "Associated domains",
- "autonomousSingleAppMode": "Autonomous Single App Mode",
- "azureOperationalInsights": "Azure operational insights",
- "bitLocker": "Windows Encryption",
- "browser": "Browser",
- "builtinApps": "Built-in Apps",
- "cellular": "Cellular",
- "cloudAndStorage": "Cloud and Storage",
- "cloudPrint": "Cloud Printer",
- "complianceEmailProfile": "Email",
- "connectedDevices": "Connected Devices",
- "connectivity": "Cellular and connectivity",
- "contentCaching": "Content caching",
- "controlPanelAndSettings": "Control Panel and Settings",
- "credentialGuard": "Microsoft Defender Credential Guard",
- "customCompliance": "Custom Compliance",
- "customCompliancePreview": "Custom Compliance (Preview)",
- "customConfiguration": "Custom Configuration Profile",
- "customOMASettings": "Custom OMA-URI Settings",
- "customPreferences": "Preference file",
- "defender": "Microsoft Defender Antivirus",
- "defenderAntivirus": "Microsoft Defender Antivirus",
- "defenderExploitGuard": "Microsoft Defender Exploit Guard",
- "defenderFirewall": "Microsoft Defender Firewall",
- "defenderLocalSecurityOptions": "Local device security options",
- "defenderSecurityCenter": "Microsoft Defender Security Center",
- "deliveryOptimization": "Delivery Optimization",
- "derivedCredentialAuthenticationConfiguration": "Derived credential",
- "deviceExperience": "Device experience",
- "deviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
- "deviceGuard": "Microsoft Defender Application Control",
- "deviceHealth": "Device Health",
- "devicePassword": "Device password",
- "deviceProperties": "Device Properties",
- "deviceRestrictions": "General",
- "deviceSecurity": "System security",
- "display": "Display",
- "domainJoin": "Domain Join",
- "domains": "Domains",
- "edgeBrowser": "Microsoft Edge Legacy (Version 45 and earlier)",
- "edgeBrowserSmartScreen": "Microsoft Defender SmartScreen",
- "edgeKiosk": "Microsoft Edge kiosk mode",
- "editionUpgrade": "Edition Upgrade",
- "education": "Education",
- "educationDeviceCerts": "Device certificates",
- "educationStudentCerts": "Student certificates",
- "educationTakeATest": "Take a Test",
- "educationTeacherCerts": "Teacher certificates",
- "emailProfile": "Email",
- "enterpriseDataProtection": "Windows Information Protection",
- "expeditedCheckin": "Mobile device management configuration",
- "extensibleSingleSignOn": "Single sign-on app extension",
- "filevault": "FileVault",
- "firewall": "Firewall",
- "games": "Games",
- "gatekeeper": "Gatekeeper",
- "healthMonitoring": "Health monitoring",
- "homeScreenLayout": "Home Screen Layout",
- "iOSWallpaper": "Wallpaper",
- "importedPFX": "PKCS Imported Certificate",
- "iosDefenderAtp": "Microsoft Defender for Endpoint",
- "iosKiosk": "Kiosk",
- "kernelExtensions": "Kernel extensions",
- "keyboardAndDictionary": "Keyboard and Dictionary",
- "kiosk": "Kiosk",
- "kioskAndroidEnterprise": "Dedicated devices",
- "kioskConfiguration": "Kiosk",
- "kioskConfigurationV2": "Kiosk",
- "kioskWebBrowser": "Kiosk web browser",
- "lockScreenMessage": "Lock Screen Message",
- "lockedScreenExperience": "Locked Screen Experience",
- "logging": "Reporting and Telemetry",
- "loginItems": "Login items",
- "loginWindow": "Login window",
- "macDefenderAtp": "Microsoft Defender for Endpoint",
- "maintenance": "Maintenance",
- "malware": "Malware",
- "messaging": "Messaging",
- "networkBoundary": "Network boundary",
- "networkProxy": "Network proxy",
- "notifications": "App Notifications",
- "pKCS": "PKCS Certificate",
- "password": "Password",
- "personalProfile": "Personal profile",
- "personalization": "Personalization",
- "policyOverride": "Override Group Policy",
- "powerSettings": "Power Settings",
- "printer": "Printer",
- "privacy": "Privacy",
- "privacyPerApp": "Per-app privacy exceptions",
- "privacyPreferences": "Privacy preferences",
- "projection": "Projection",
- "sCCMCompliance": "Configuration Manager Compliance",
- "sCEP": "SCEP Certificate",
- "sCEPProperties": "SCEP Certificate",
- "sMode": "Mode switch (Windows Insider only)",
- "safari": "Safari",
- "search": "Search",
- "session": "Session",
- "sharedDevice": "Shared iPad",
- "sharedPCAccountManager": "Shared multi-user device",
- "singleSignOn": "Single sign-on",
- "smartScreen": "Microsoft Defender SmartScreen",
- "softwareUpdates": "Settings",
- "start": "Start",
- "systemExtensions": "System extensions",
- "systemSecurity": "System Security",
- "trustedCert": "Trusted Certificate",
- "updates": "Updates",
- "userRights": "User Rights",
- "usersAndAccounts": "Users and Accounts",
- "vPN": "Base VPN",
- "vPNApps": "Automatic VPN",
- "vPNAppsAndTrafficRules": "Apps and Traffic Rules",
- "vPNConditionalAccess": "Conditional Access",
- "vPNConnectivity": "Connectivity",
- "vPNDNSTriggers": "DNS Settings",
- "vPNIKEv2": "IKEv2 settings",
- "vPNProxy": "Proxy",
- "vPNSplitTunneling": "Split Tunneling",
- "vPNTrustedNetwork": "Trusted Network Detection",
- "webContentFilter": "Web Content Filter",
- "wiFi": "Wi-Fi",
- "win10Wifi": "Wi-Fi",
- "windowsAtp": "Microsoft Defender for Endpoint",
- "windowsDefenderATP": "Microsoft Defender for Endpoint",
- "windowsHelloForBusiness": "Windows Hello for Business",
- "windowsSpotlight": "Windows Spotlight",
- "wiredNetwork": "Wired network",
- "wireless": "Wireless",
- "wirelessProjection": "Wireless projection",
- "workProfile": "Work profile settings",
- "workProfilePassword": "Work profile password",
- "xboxServices": "Xbox services",
- "zebraMx": "MX profile (Zebra only)",
- "complianceActionsLabel": "Actions for noncompliance"
- },
- "MicrosoftEdgeChannel": {
- "beta": "Beta",
- "dev": "Dev",
- "stable": "Stable"
- },
- "ConfigurationTypes": {
- "Table": {
- "androidDeviceOwnerGeneral": "Device restrictions (device owner)",
- "androidForWorkGeneral": "Device restrictions (work profile)"
- },
- "androidCustom": "Custom",
- "androidDeviceOwnerGeneral": "Device restrictions",
- "androidDeviceOwnerPkcs": "PKCS Certificate",
- "androidDeviceOwnerScep": "SCEP Certificate",
- "androidDeviceOwnerTrustedCertificate": "Trusted Certificate",
- "androidDeviceOwnerVpn": "VPN",
- "androidDeviceOwnerWiFi": "Wi-Fi",
- "androidEmailProfile": "Email (Samsung KNOX only)",
- "androidForWorkCustom": "Custom",
- "androidForWorkEmailProfile": "Email",
- "androidForWorkGeneral": "Device restrictions",
- "androidForWorkImportedPFX": "PKCS imported certificate",
- "androidForWorkOemConfig": "OEMConfig",
- "androidForWorkPKCS": "PKCS certificate",
- "androidForWorkSCEP": "SCEP certificate",
- "androidForWorkTrustedCertificate": "Trusted certificate",
- "androidForWorkVpn": "VPN",
- "androidForWorkWiFi": "Wi-Fi",
- "androidGeneral": "Device restrictions",
- "androidImportedPFX": "PKCS imported certificate",
- "androidPKCS": "PKCS certificate",
- "androidSCEP": "SCEP certificate",
- "androidTrustedCertificate": "Trusted certificate",
- "androidVPN": "VPN",
- "androidWiFi": "Wi-Fi",
- "androidZebraMx": "MX profile (Zebra only)",
- "complianceAndroid": "Android compliance policy",
- "complianceAndroidDeviceOwner": "Fully managed, dedicated, and corporate-owned work profile",
- "complianceAndroidEnterprise": "Personally-owned work profile",
- "complianceAndroidForWork": "Android for Work compliance policy",
- "complianceIos": "iOS compliance policy",
- "complianceMac": "Mac compliance policy",
- "complianceWindows10": "Windows 10 and later compliance policy",
- "complianceWindows10Mobile": "Windows 10 mobile compliance policy",
- "complianceWindows8": "Windows 8 compliance policy",
- "complianceWindowsPhone": "Windows Phone compliance policy",
- "exchangeActiveSync": "Exchange Active Sync",
- "iosCustom": "Custom",
- "iosDerivedCredentialAuthenticationConfiguration": "Derived PIV credential",
- "iosDeviceFeatures": "Device features",
- "iosEDU": "Education",
- "iosEducation": "Education",
- "iosEmailProfile": "Email",
- "iosGeneral": "Device restrictions",
- "iosImportedPFX": "PKCS imported certificate",
- "iosPKCS": "PKCS certificate",
- "iosPresets": "Presets",
- "iosSCEP": "SCEP certificate",
- "iosTrustedCertificate": "Trusted certificate",
- "iosVPN": "VPN",
- "iosVPNZscaler": "VPN",
- "iosWiFi": "Wi-Fi",
- "macCustom": "Custom",
- "macDeviceFeatures": "Device features",
- "macEndpointProtection": "Endpoint protection",
- "macExtensions": "Extensions",
- "macGeneral": "Device restrictions",
- "macImportedPFX": "PKCS imported certificate",
- "macSCEP": "SCEP certificate",
- "macTrustedCertificate": "Trusted certificate",
- "macVPN": "VPN",
- "macWiFi": "Wi-Fi",
- "settingsCatalog": "Settings catalog (preview)",
- "unsupported": "Unsupported",
- "windows10AdministrativeTemplate": "Administrative Templates (Preview)",
- "windows10Atp": "Microsoft Defender for Endpoint (desktop devices running Windows 10 or later)",
- "windows10Custom": "Custom",
- "windows10DesktopSoftwareUpdate": "Software Updates",
- "windows10DeviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
- "windows10EmailProfile": "Email",
- "windows10EndpointProtection": "Endpoint protection",
- "windows10EnterpriseDataProtection": "Windows Information Protection",
- "windows10General": "Device restrictions",
- "windows10ImportedPFX": "PKCS imported certificate",
- "windows10Kiosk": "Kiosk",
- "windows10NetworkBoundary": "Network boundary",
- "windows10PKCS": "PKCS certificate",
- "windows10PolicyOverride": "Override Group Policy",
- "windows10SCEP": "SCEP certificate",
- "windows10SecureAssessmentProfile": "Education profile",
- "windows10SharedPC": "Shared multi-user device",
- "windows10TeamGeneral": "Device restrictions (Windows 10 Team)",
- "windows10TrustedCertificate": "Trusted certificate",
- "windows10VPN": "VPN",
- "windows10WiFi": "Wi-Fi",
- "windows10WiFiCustom": "Wi-Fi custom",
- "windows8General": "Device restrictions",
- "windows8SCEP": "SCEP certificate",
- "windows8TrustedCertificate": "Trusted certificate",
- "windows8VPN": "VPN",
- "windows8WiFi": "Wi-Fi import",
- "windowsDeliveryOptimization": "Delivery Optimization",
- "windowsDomainJoin": "Domain Join",
- "windowsEditionUpgrade": "Edition upgrade and mode switch",
- "windowsIdentityProtection": "Identity protection",
- "windowsPhoneCustom": "Custom",
- "windowsPhoneEmailProfile": "Email",
- "windowsPhoneGeneral": "Device restrictions",
- "windowsPhoneImportedPFX": "PKCS imported certificate",
- "windowsPhoneSCEP": "SCEP certificate",
- "windowsPhoneTrustedCertificate": "Trusted certificate",
- "windowsPhoneVPN": "VPN",
- "IosUpdate": "iOS Update policy"
- },
- "WindowsEnrollment": {
- "coManagementAuthorityDesc": "Configure co-management settings for Configuration Manager integration",
- "coManagementAuthorityTitle": "Co-management Settings ",
- "deploymentProfiles": "Windows Autopilot deployment profiles",
- "description": "Learn about the seven different ways a Windows 10/11 PC can be enrolled into Intune by users or admins.",
- "descriptionLabel": "Windows enrollment methods",
- "enrollmentStatusPage": "Enrollment Status Page"
- },
- "Platform": {
- "all": "All",
- "android": "Android device administrator",
- "androidAOSP": "Android (AOSP)",
- "androidEnterprise": "Android Enterprise",
- "androidForWork": "Android Enterprise",
- "androidWorkProfile": "Android enterprise",
- "common": "Common",
- "iOS": "iOS/iPadOS",
- "iosAndAndroidPlatformLabel": "iOS and Android",
- "iosCommaAndroidPlatformLabel": "iOS, Android",
- "linux": "Linux",
- "macOS": "macOS",
- "unknown": "Unknown",
- "unsupported": "Unsupported",
- "windows": "Windows",
- "windows10": "Windows 10 and later",
- "windows10CM": "Windows 10 and later (ConfigMgr)",
- "windows10Holo": "Windows 10 Holographic",
- "windows10Mobile": "Windows 10 Mobile",
- "windows10Team": "Windows 10 Team",
- "windows10X": "Windows 10X",
- "windows8": "Windows 8.1 and later",
- "windows8And10": "Windows 8 and 10",
- "windowsPhone": "Windows Phone 8.1",
- "windows10AndLater": "Windows 10 and later",
- "windows10AndWindowsServer": "Windows 10, Windows 11, and Windows Server (ConfigMgr)",
- "windows10andLaterCM": "Windows 10 and later (ConfigMgr)",
- "holoLens": "HoloLens",
- "surfaceHub2": "Surface Hub 2",
- "surfaceHub2S": "Surface Hub 2S",
- "windowsPC": "Windows PC"
- },
- "EnrollmentRestrictions": {
- "DeletePayloadLink": {
- "content": "{0} is included in one or more policy sets. If you delete {0}, you'll no longer be able to assign it via these policy sets. Delete anyway?",
- "contentWithError": "{0} might be included in one or more policy sets. If you delete {0}, you'll no longer be able to assign it via these policy sets. Delete anyway?",
- "header": "Are you sure you want to delete this restriction?"
- },
- "DeviceLimit": {
- "description": "Specify the maximum number of devices a user can enroll.",
- "header": "Device limit restrictions",
- "info": "Define how many devices each user can enroll."
- },
- "DeviceType": {
- "VersionValidation": {
- "aOSP": "Must be 1.0 or greater.",
- "android": "Enter a valid version number. Examples: 5.0, 5.5.1, 6.0.0.1",
- "androidForWork": "Enter a valid version number. Examples: 5.0, 5.1.1",
- "iOS": "Enter a valid version number. Examples: 9.0, 10.0, 9.0.2",
- "mac": "Enter a valid version number. Examples: 10, 10.10, 10.10.1",
- "min": "Minimum cannot be lower than {0}",
- "minMax": "Minimum version cannot be greater than maximum version.",
- "windows": "Must be 10.0 or greater. Leave blank to allow 8.1 devices",
- "windowsMobile": "Must be 10.0 or greater. Leave blank to allow 8.1 devices"
- },
- "allPlatformsBlocked": "All device platforms are blocked. Allow platform enrollment to enable platform configuration.",
- "blockManufacturerPlaceHolder": "Manufacturer name",
- "blockManufacturersHeader": "Blocked manufacturers",
- "cannotRestrict": "Restriction not supported",
- "configurationDescription": "Specify the platform configuration restrictions that must be met for a device to enroll. Use compliance policies to restrict devices after enrollment. Define versions as major.minor.build. Version restrictions only apply to devices enrolled with the Company Portal. Intune classifies devices as personally-owned by default. Additional action is required to classify devices as corporate-owned.",
- "configurationDescriptionLabel": "Learn more about setting enrollment restrictions",
- "configurations": "Configure platforms",
- "deviceManufacturer": "Device manufacturer",
- "header": "Device type restrictions",
- "info": "Define which platforms, versions, and management types can enroll.",
- "manufacturer": "Manufacturer",
- "max": "Max",
- "maxVersion": "Maximum version",
- "min": "Min",
- "minVersion": "Minimum version",
- "newPlatforms": "You have allowed new platforms. Consider updating Platform Configurations.",
- "personal": "Personally owned",
- "platform": "Platform",
- "platformDescription": "You can allow enrollment of the following platforms. Only block platforms you will not support. Allowed platforms can be configured with additional enrollment restrictions.",
- "platformSettings": "Platform settings",
- "platforms": "Select platforms",
- "platformsSelected": "{0} platforms selected",
- "type": "Type",
- "versions": "versions",
- "versionsRange": "Allow min/max range:",
- "windowsTooltip": "Restricts enrollment through Mobile Device Management. Does not restrict PC agent installation. Only Windows 10 and Windows 11 versions are supported. Leave versions blank to allow Windows 8.1."
- },
- "Priority": {
- "saved": "Restriction Priorities were successfully saved."
- },
- "Row": {
- "announce": "Priority: {0}, Name: {1}, Assigned: {2}"
- },
- "Table": {
- "deployed": "Deployed",
- "name": "Name",
- "priority": "Priority"
- },
- "Type": {
- "limit": "Device limit restriction",
- "type": "Device type restriction"
- },
- "allUsers": "All Users",
- "androidRestrictions": "Android restrictions",
- "create": "Create restriction",
- "defaultLimitDescription": "This is the default Device Limit Restriction applied with lowest priority to all users regardless of group membership.",
- "defaultTypeDescription": "This is the default Device Type Restriction applied with lowest priority to all users regardless of group membership.",
- "defaultWhfbDescription": "This is the default Windows Hello for Business configuration applied with the lowest priority to all users regardless of group membership.",
- "deleteMessage": "Affected users will be restricted by the next highest priority restriction assigned or the default restriction if no other restriction is assigned.",
- "deleteTitle": "Are you sure you want to delete {0} restriction?",
- "descriptionHint": "Short paragraph describing the business use or restriction level characterized by the restriction's settings.",
- "edit": "Edit restriction",
- "info": "A device must comply with the highest priority enrollment restrictions assigned to its user. You can drag a device restriction to change its priority. Default restrictions are lowest priority for all users and govern userless enrollments. Default restrictions may be edited, but not deleted.",
- "iosRestrictions": "iOS restrictions",
- "mDM": "MDM",
- "macRestrictions": "MacOS restrictions",
- "maxVersion": "Max Version",
- "minVersion": "Min Version",
- "nameHint": "This will be the primary attribute visible for identifying the restriction set.",
- "noAssignmentsStatusBar": "Assign restriction to at least one group. Click Properties.",
- "notFound": "Restriction not found. It may have already been deleted.",
- "personallyOwned": "Personally owned devices",
- "restriction": "Restriction",
- "restrictionLowerCase": "restriction",
- "restrictionType": "Restriction type",
- "selectType": "Select restriction type",
- "selectValidation": "Please select a platform",
- "typeHint": "Choose Device Type Restriction to restrict device properties. Choose Device Limit Restriction to restrict number of devices per-user.",
- "typeRequired": "Restriction type is required.",
- "winPhoneRestrictions": "Windows Phone restrictions",
- "windowsRestrictions": "Windows restrictions"
- },
- "Titles": {
- "ChromeOs": {
- "devices": "Chrome OS devices"
- },
- "ManagedDesktop": {
- "adminContacts": "Admin contacts",
- "appPackaging": "App packaging",
- "devices": "Devices",
- "feedback": "Feedback",
- "gettingStarted": "Getting started",
- "messages": "Messages",
- "onlineResources": "Online resources",
- "serviceRequests": "Service requests",
- "settings": "Settings",
- "tenantEnrollment": "Tenant enrollment"
- },
- "actions": "Actions for Non-Compliance",
- "advancedExchangeSettings": "Exchange online settings",
- "advancedThreatProtection": "Microsoft Defender for Endpoint",
- "allApps": "All apps",
- "allDevices": "All devices",
- "androidFotaDeployments": "Android FOTA deployments",
- "appBundles": "App Bundles",
- "appCategories": "App categories",
- "appConfigPolicies": "App configuration policies",
- "appInstallStatus": "App install status",
- "appLicences": "App licenses",
- "appProtectionPolicies": "App protection policies",
- "appProtectionStatus": "App protection status",
- "appSelectiveWipe": "App selective wipe",
- "appleVppTokens": "Apple VPP Tokens",
- "apps": "Apps",
- "assign": "Assignments",
- "assignedPermissions": "Assigned permissions",
- "assignedRoles": "Assigned roles",
- "autopilotDeploymentReport": "Autopilot deployments (preview)",
- "brandingAndCustomization": "Customization",
- "cartProfiles": "Cart profiles",
- "certificateConnectors": "Certificate connectors",
- "chromeEnterprise": "Chrome Enterprise",
- "compliancePolicies": "Compliance policies",
- "complianceScriptManagement": "Scripts",
- "complianceScriptManagementPreview": "Scripts (Preview)",
- "complianceSettings": "Compliance policy settings",
- "conditionStatements": "Condition statements",
- "conditions": "Locations",
- "configMgr": "Microsoft Endpoint Configuration Manager",
- "configurationProfiles": "Configuration profiles",
- "configurationProfilesPreview": "Configuration profiles (preview)",
- "connectorsAndTokens": "Connectors and tokens",
- "corporateDeviceIdentifiers": "Corporate device identifiers",
- "customAttributes": "Custom attributes",
- "customNotifications": "Custom notifications",
- "deploymentSettings": "Deployment settings",
- "derivedCredentials": "Derived Credentials",
- "deviceActions": "Device actions",
- "deviceCategories": "Device categories",
- "deviceCleanUp": "Device clean-up rules",
- "deviceEnrollmentManagers": "Device enrollment managers",
- "deviceExecutionStatus": "Device status",
- "deviceLimitEnrollmentRestrictions": "Enrollment device limit restrictions",
- "deviceTypeEnrollmentRestrictions": "Enrollment device platform restrictions",
- "devices": "Devices",
- "discoveredApps": "Discovered apps",
- "embeddedSIM": "eSIM cellular profiles (Preview)",
- "enrollDevices": "Enroll devices",
- "enrollmentFailures": "Enrollment failures",
- "enrollmentNotifications": "Enrollment notifications (Preview)",
- "enrollmentRestrictions": "Enrollment restrictions",
- "exchangeActiveSync": "Exchange ActiveSync",
- "exchangeServiceConnectors": "Exchange service connectors",
- "failuresForFeatureUpdates": "Feature update failures (Preview)",
- "failuresForQualityUpdates": "Windows Expedited update failures (Preview)",
- "featureFlighting": "Feature flighting",
- "featureUpdateDeployments": "Feature updates for Windows 10 and later (Preview)",
- "flighting": "Flighting",
- "fotaUpdate": "Firmware over-the-air update",
- "groupPolicy": "Administrative Templates",
- "groupPolicyAnalytics": "Group policy analytics",
- "helpSupport": "Help and support",
- "helpSupportReplacement": "Help and support ({0})",
- "iOSAppProvisioning": "iOS app provisioning profiles",
- "incompleteUserEnrollments": "Incomplete user enrollments",
- "intuneRemoteAssistance": "Remote help (preview)",
- "iosUpdates": "Update policies for iOS/iPadOS",
- "legacyPcManagement": "Legacy PC management",
- "macOSSoftwareUpdate": "Update policies for macOS",
- "macOSSoftwareUpdateAccountSummaries": "Installation status for macOS devices",
- "macOSSoftwareUpdateCategorySummaries": "Software updates summary",
- "macOSSoftwareUpdateStateSummaries": "updates",
- "managedGooglePlay": "Managed Google Play",
- "msfb": "Microsoft Store for Business",
- "myPermissions": "My permissions",
- "notifications": "Notifications",
- "officeApps": "Office apps",
- "officeProPlusPolicies": "Policies for Office apps",
- "onPremise": "On Premise",
- "onPremisesConnector": "Exchange ActiveSync on-premises connector",
- "onPremisesDeviceAccess": "Exchange ActiveSync devices",
- "onPremisesManageAccess": "Exchange on-premises access",
- "outOfDateIosDevices": "Installation failures for iOS devices",
- "overview": "Overview",
- "partnerDeviceManagement": "Partner device management",
- "perUpdateRingDeploymentState": "Per update ring deployment state",
- "permissions": "Permissions",
- "platformApps": "{0} apps",
- "platformDevices": "{0} devices",
- "platformEnrollment": "{0} enrollment",
- "policies": "Policies",
- "previewMDMDevices": "All managed devices (Preview)",
- "profiles": "Profiles",
- "properties": "Properties",
- "reports": "Reports",
- "retireNoncompliantDevices": "Retire noncompliant devices",
- "retireNoncompliantDevicesPreview": "Retire noncompliant devices (preview)",
- "role": "Role",
- "scriptManagement": "Scripts",
- "securityBaselines": "Security baselines",
- "serviceToServiceConnector": "Exchange online connector",
- "shellScripts": "Shell scripts",
- "teamViewerConnector": "TeamViewer connector",
- "telecomeExpenseManagement": "Telecom expense management",
- "tenantAdmin": "Tenant admin",
- "tenantAdministration": "Tenant administration",
- "termsAndConditions": "Terms and conditions",
- "titles": "Titles",
- "troubleshootSupport": "Troubleshooting + support",
- "user": "User",
- "userExecutionStatus": "User status",
- "warranty": "Warranty vendors",
- "wdacSupplementalPolicies": "S mode supplemental policies",
- "windows10DriverUpdate": "Driver updates for Windows 10 and later (Preview)",
- "windows10QualityUpdate": "Quality updates for Windows 10 and later (Preview)",
- "windows10UpdateRings": "Update rings for Windows 10 and later",
- "windows10XPolicyFailures": "Windows 10X policy failures",
- "windowsEnterpriseCertificate": "Windows enterprise certificate",
- "windowsManagement": "PowerShell scripts",
- "windowsSideLoadingKeys": "Windows side loading keys",
- "windowsSymantecCertificate": "Windows DigiCert certificate",
- "windowsThreatReport": "Threat agent status"
- },
- "ScopeTypes": {
- "allDevices": "All Devices",
- "allUsers": "All Users",
- "allUsersAndDevices": "All Users & All Devices",
- "selectedGroups": "Selected Groups"
- },
- "DetectionRules": {
- "ComparisonOperators": {
- "equals": "Equals",
- "greaterThan": "Greater than",
- "greaterThanOrEqualTo": "Greater than or equal to",
- "lessThan": "Less than",
- "lessThanOrEqualTo": "Less than or equal to",
- "notEqualTo": "Not equal to"
- },
- "CustomScript": {
- "enforceSignatureCheck": "Enforce script signature check and run script silently",
- "enforceSignatureCheckTooltip": "Select 'Yes' to verify that the script is signed by a trusted publisher, which will allow the script to run with no warnings or prompts displayed. The script will run unblocked. Select 'No' (default) to run the script with end-user confirmation without signature verification.",
- "header": "Use a custom detection script",
- "runAs32Bit": "Run script as 32-bit process on 64-bit clients",
- "runAs32BitTooltip": "Select 'Yes' to run the script in a 32-bit process on 64-bit clients. Select 'No' (default) to run the script in a 64-bit process on 64-bit clients. 32-bit clients run the script in a 32-bit process.",
- "scriptFile": "Script file",
- "scriptFileNotSelectedValidation": "No script file is selected.",
- "scriptFileTooltip": "Select a PowerShell script that will detect the presence of the app on the client. The app will be detected when the script both returns a 0 value exit code and writes a string value to STDOUT."
- },
- "Manual": {
- "FileRule": {
- "DetectionMethodOptions": {
- "dateCreated": "Date created",
- "dateModified": "Date modified",
- "doesNotExist": "File or folder does not exist",
- "fileOrFolderExists": "File or folder exists",
- "sizeInMB": "Size in MB",
- "version": "String (version)"
- },
- "associatedWith32Bit": "Associated with a 32-bit app on 64-bit clients",
- "associatedWith32BitTooltip": "Select 'Yes' to expand any path environment variables in the 32-bit context on 64-bit clients. Select 'No' (default) to expand any path variables in the 64-bit context on 64-bit clients. 32-bit clients will always use the 32-bit context.",
- "detectionMethod": "Detection method",
- "detectionMethodTooltip": "Select the type of detection method used to validate the presence of the app.",
- "fileOrFolder": "File or folder",
- "fileOrFolderToolTip": "The file or folder to detect.",
- "operator": "Operator",
- "operatorTooltip": "Select the operator for the detection method used to validate the comparison.",
- "path": "Path",
- "pathTooltip": "The full path of the folder containing the file or folder to detect.",
- "value": "Value",
- "valueTooltip": "Select a value that matches the selected detection method. Date detection methods should be entered in local time."
- },
- "GridColumns": {
- "pathOrCode": "Path/Code",
- "type": "Type"
- },
- "MsiRule": {
- "operator": "Operator",
- "operatorTooltip": "Select the operator for the MSI product version validation comparison.",
- "productCode": "MSI product code",
- "productCodeTooltip": "A valid MSI product code for the app.",
- "productVersion": "Value",
- "productVersionCheck": "MSI product version check",
- "productVersionCheckTooltip": "Select 'Yes' to verify the MSI product version in addition to the MSI product code.",
- "productVersionTooltip": "Enter the MSI product version for the app."
- },
- "RegistryRule": {
- "DetectionMethodOptions": {
- "integerComparison": "Integer comparison",
- "keyDoesNotExist": "Key does not exist",
- "keyExists": "Key exists",
- "stringComparison": "String comparison",
- "valueDoesNotExist": "Value does not exist",
- "valueExists": "Value exists",
- "versionComparison": "Version comparison"
- },
- "associatedWith32Bit": "Associated with a 32-bit app on 64-bit clients",
- "associatedWith32BitTooltip": "Select 'Yes' to search the 32-bit registry on 64-bit clients. Select 'No' (default) search the 64-bit registry on 64-bit clients. 32-bit clients will always search the 32-bit registry.",
- "detectionMethod": "Detection method",
- "detectionMethodTooltip": "Select the type of detection method used to validate the presence of the app.",
- "keyPath": "Key path",
- "keyPathTooltip": "The full path of the registry entry containing the value to detect.",
- "operator": "Operator",
- "operatorTooltip": "Select the operator for the detection method used to validate the comparison.",
- "value": "Value",
- "valueName": "Value name",
- "valueNameTooltip": "The name of the registry value to detect.",
- "valueTooltip": "Select a value that matches the selected detection method."
- },
- "RuleTypeOptions": {
- "file": "File",
- "mSI": "MSI",
- "registry": "Registry"
- },
- "gridAriaLabel": "Detection Rules",
- "header": "Create a rule that indicates the presence of the app.",
- "noRulesSelectedPlaceholder": "No rules are specified.",
- "ruleTableLimit": "You can add up to 25 detection rules",
- "ruleType": "Rule type",
- "ruleTypeTooltip": "Choose the type of detection rule to add."
- },
- "RuleConfigurationOptions": {
- "customScript": "Use a custom detection script",
- "manual": "Manually configure detection rules"
- },
- "bladeTitle": "Detection rules",
- "header": "Configure app specific rules used to detect the presence of the app.",
- "rulesFormat": "Rules format",
- "rulesFormatTooltip": "Choose to either manually configure the detection rules or use a custom script to detect the presence of the app.",
- "selectorLabel": "Detection rules"
- },
- "AppType": {
- "androidEnterpriseSystemApp": "Android Enterprise system app",
- "androidForWorkApp": "Managed Google Play store app",
- "androidLobApp": "Android line-of-business app",
- "androidStoreApp": "Android store app",
- "builtInAndroid": "Built-In Android app",
- "builtInApp": "Built-In app",
- "builtInIos": "Built-In iOS app",
- "default": "",
- "iosLobApp": "iOS line-of-business app",
- "iosStoreApp": "iOS store app",
- "iosVppApp": "iOS volume purchase program app",
- "lineOfBusinessApp": "Line-of-business app",
- "macOSDmgApp": "macOS app (DMG)",
- "macOSEdgeApp": "Microsoft Edge (macOS)",
- "macOSLobApp": "macOS line-of-business app",
- "macOSMdatpApp": "Microsoft Defender ATP (macOS)",
- "macOSOfficeSuiteApp": "Microsoft 365 Apps (macOS)",
- "macOsVppApp": "macOS volume purchase program app",
- "managedAndroidLobApp": "Managed Android line-of-business app",
- "managedAndroidStoreApp": "Managed Android store app",
- "managedGooglePlayApp": "Managed Google Play store app",
- "managedGooglePlayPrivateApp": "Managed Google Play private app",
- "managedGooglePlayWebApp": "Managed Google Play web link",
- "managedIosLobApp": "Managed iOS line-of-business app",
- "managedIosStoreApp": "Managed iOS store app",
- "microsoftStoreForBusinessApp": "Microsoft Store for Business app",
- "microsoftStoreForBusinessReleaseManagedApp": "Microsoft Store for Business",
- "officeSuiteApp": "Microsoft 365 Apps (Windows 10 and later)",
- "webApp": "Web link",
- "windowsAppXLobApp": "Windows AppX line-of-business app",
- "windowsClassicApp": "Windows app (Win32)",
- "windowsEdgeApp": "Microsoft Edge (Windows 10 and later)",
- "windowsMobileMsiLobApp": "Windows MSI line-of-business app",
- "windowsPhone81AppXBundleLobApp": "Windows Phone 8.1 AppX line-of-business app",
- "windowsPhone81AppXLobApp": "Windows Phone 8.1 AppX line-of-business app",
- "windowsPhone81StoreApp": "Windows Phone 8.1 store app",
- "windowsPhoneXapLobApp": "Windows Phone XAP line-of-business app",
- "windowsStoreApp": "Microsoft Store app",
- "windowsUniversalAppXLobApp": "Windows Universal AppX line-of-business app",
- "windowsUniversalLobApp": "Windows Universal line-of-business app"
- },
- "PolicyType": {
- "AttackSurfaceReductionRules": {
- "configMgr": "Attack Surface Reduction Rules (ConfigMgr)"
- },
- "EndpointDetectionandResponse": {
- "mDE": "Endpoint detection and response"
- },
- "EndpointSecurityTemplate": {
- "aSRAppBrowserSecurity": "App and browser isolation",
- "aSRApplicationControl": "Application control",
- "aSRAttackSurfaceReduction": "Attack surface reduction rules",
- "aSRDeviceControl": "Device control",
- "aSRExploitProtection": "Exploit protection",
- "aSRWebProtection": "Web protection (Microsoft Edge Legacy)",
- "aVExclusions": "Microsoft Defender Antivirus exclusions",
- "antivirus": "Microsoft Defender Antivirus",
- "cloudPC": "Windows 365 Security Baseline",
- "default": "Endpoint Security",
- "defenderTest": "Microsoft Defender for Endpoint demo",
- "diskEncryption": "BitLocker",
- "eDR": "Endpoint detection and response",
- "edgeSecurityBaseline": "Microsoft Edge baseline",
- "edgeSecurityBaselinePreview": "Preview: Microsoft Edge baseline",
- "editionUpgradeConfiguration": "Edition upgrade and mode switch",
- "firewall": "Microsoft Defender Firewall",
- "firewallRules": "Microsoft Defender Firewall rules",
- "identityProtection": "Account protection",
- "identityProtectionPreview": "Account protection (Preview)",
- "mDMSecurityBaseline1810": "MDM Security Baseline for Windows 10 and later for October 2018",
- "mDMSecurityBaseline1810Preview": "Preview: MDM Security Baseline for Windows 10 and later for October 2018",
- "mDMSecurityBaseline1810PreviewBeta": "Preview: MDM Security Baseline for Windows 10 for October 2018 (beta)",
- "mDMSecurityBaseline1906": "MDM Security Baseline for Windows 10 and later for May 2019",
- "mDMSecurityBaseline2004": "MDM Security Baseline for Windows 10 and later for August 2020",
- "mDMSecurityBaseline2101": "MDM Security Baseline for Windows 10 and later Decemeber 2020",
- "macOSAntivirus": "Antivirus",
- "macOSDiskEncryption": "FileVault",
- "macOSFirewall": "macOS firewall",
- "microsoftDefenderBaseline": "Microsoft Defender for Endpoint baseline",
- "office365Baseline": "Microsoft Office O365 baseline",
- "office365BaselinePreview": "Preview: Microsoft Office O365 baseline",
- "securityBaselines": "Security Baselines",
- "test": "Test Template",
- "testFirewallRulesSecurityTemplateName": "Microsoft Defender Firewall rules (Test)",
- "testIdentityProtectionSecurityTemplateName": "Account protection (Test)",
- "windowsSecurityExperience": "Windows Security experience"
- },
- "Firewall": {
- "mDE": "Microsoft Defender Firewall"
- },
- "FirewallRules": {
- "mDE": "Microsoft Defender Firewall Rules"
- },
- "administrativeTemplates": "Administrative Templates",
- "androidCompliancePolicy": "Android compliance policy",
- "aospDeviceOwnerCompliancePolicy": "Android (AOSP) compliance policy",
- "applicationControl": "Application Control",
- "custom": "Custom",
- "deliveryOptimization": "Delivery Optimization",
- "derivedPersonalIdentityVerificationCredential": "Derived credential",
- "deviceFeatures": "Device features",
- "deviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
- "deviceLock": "Device Lock",
- "deviceOwner": "Fully managed, dedicated, and corporate-owned work profile",
- "deviceRestrictions": "Device restrictions",
- "deviceRestrictionsWindows10Team": "Device restrictions (Windows 10 Team)",
- "domainJoinPreview": "Domain Join",
- "editionUpgradeAndModeSwitch": "Edition upgrade and mode switch",
- "education": "Education",
- "email": "Email",
- "emailSamsungKnoxOnly": "Email (Samsung KNOX only)",
- "endpointProtection": "Endpoint protection",
- "expeditedCheckin": "Mobile device management configuration",
- "exploitProtection": "Exploit Protection",
- "extensions": "Extensions",
- "hardwareConfigurations": "BIOS Configurations",
- "identityProtection": "Identity protection",
- "iosCompliancePolicy": "iOS compliance policy",
- "kiosk": "Kiosk",
- "macCompliancePolicy": "Mac compliance policy",
- "microsoftDefenderAntivirus": "Microsoft Defender Antivirus",
- "microsoftDefenderAntivirusexclusions": "Microsoft Defender Antivirus exclusions",
- "microsoftDefenderAtpWindows10Desktop": "Microsoft Defender for Endpoint (desktop devices running Windows 10 or later)",
- "microsoftDefenderFirewallRules": "Microsoft Defender Firewall Rules",
- "microsoftEdgeBaseline": "Microsoft Edge Baseline",
- "mxProfileZebraOnly": "MX profile (Zebra only)",
- "networkBoundary": "Network boundary",
- "oemConfig": "OEMConfig",
- "overrideGroupPolicy": "Override Group Policy",
- "pkcsCertificate": "PKCS certificate",
- "pkcsImportedCertificate": "PKCS imported certificate",
- "preferenceFile": "Preference file",
- "presets": "Presets",
- "scepCertificate": "SCEP certificate",
- "secureAssessmentEducation": "Secure assessment (Education)",
- "settingsCatalog": "Settings Catalog",
- "sharedMultiUserDevice": "Shared multi-user device",
- "softwareUpdates": "Software Updates",
- "trustedCertificate": "Trusted certificate",
- "unknown": "Unknown",
- "unsupported": "Unsupported",
- "vpn": "VPN",
- "wiFi": "Wi-Fi",
- "wiFiImport": "Wi-Fi import",
- "windows10CompliancePolicy": "Windows 10/11 compliance policy",
- "windows10MobileCompliancePolicy": "Windows 10 mobile compliance policy",
- "windows10XScep": "SCEP certificate - TEST",
- "windows10XTrustedCertificate": "Trusted certificate - TEST",
- "windows10XVPN": "VPN - TEST",
- "windows10XWifi": "WIFI - TEST",
- "windows8CompliancePolicy": "Windows 8 compliance policy",
- "windowsHealthMonitoring": "Windows health monitoring",
- "windowsInformationProtection": "Windows Information Protection",
- "windowsPhoneCompliancePolicy": "Windows Phone compliance policy",
- "windowsUpdateforBusiness": "Windows Update for Business",
- "wiredNetwork": "Wired Network",
- "workProfile": "Personally-owned work profile"
- },
- "OfficeSuiteAppsTab": {
- "acceptLicenseOnBehalfOfUsersLabel": "Accept the Microsoft Software License Terms on behalf of users",
- "appSuiteConfigurationLabel": "App suite configuration",
- "appSuiteInformationLabel": "App suite information",
- "appsToBeInstalledLabel": "Apps to be installed as part of the suite",
- "architectureLabel": "Architecture",
- "architectureTooltip": "Defines whether the 32-bit or 64-bit edition of Microsoft 365 Apps is installed on devices.",
- "configurationDesignerLabel": "Configuration designer",
- "configurationFileLabel": "Configuration file",
- "configurationSettingsFormatLabel": "Configuration settings format",
- "configureAppSuiteLabel": "Configure app suite",
- "configuredLabel": "Configured",
- "currentVersionLabel": "Current version",
- "currentVersionTooltip": "This is the current version of Office that’s configured in this suite. This value will be updated when a newer version is configured and saved.",
- "enableMicrosoftSearchAsDefaultTooltip": "Installs a background service that helps determine whether a Microsoft Search in Bing extension for Google Chrome is installed on the device.",
- "enterXmlDataLabel": "Enter XML data",
- "languagesLabel": "Languages",
- "languagesTooltip": "By default, Intune will install Office with the default language of the operating system. Choose any additional languages that you want to install.",
- "learnMoreText": "Learn more",
- "newUpdateChannelTooltip": "Defines how often the app is updated with new features.",
- "noCurrentVersionText": "No current version",
- "noLanguagesSelectedLabel": "No languages selected",
- "notConfiguredLabel": "Not configured",
- "propertiesLabel": "Properties",
- "removeOtherVersionsLabel": "Remove other versions",
- "removeOtherVersionsTooltip": "Select Yes to remove other versions of Office (MSI) from user devices.",
- "selectOfficeAppsLabel": "Select Office apps",
- "selectOfficeAppsTooltip": "Select the Office 365 apps that you want to install as part of the suite.",
- "selectOtherOfficeAppsLabel": "Select other Office apps (license required)",
- "selectOtherOfficeAppsTooltip": "If you own licenses for these additional Office apps you can also assign them with Intune.",
- "specificVersionLabel": "Specific version",
- "updateChannelLabel": "Update channel",
- "updateChannelTooltip": "Defines how often the app is updated with new features.
\nMonthly - Provide users with the newest features of Office as soon as they're available.
\nMonthly Enterprise Channel - Provide users with the newest features of Office once a month, on the second Tuesday of the month.
\nMonthly (Targeted) – Provide an early look at the upcoming Monthly Channel release. It is a supported update channel, and usually is available at least one week ahead of time when it's a Monthly Channel release that contains new features.
\nSemi-Annual - Provide users with new features of Office only a few times a year.
\nSemi-Annual (Targeted) - Provide pilot users and application compatibility testers the opportunity to test the next Semi-Annual.",
- "useMicrosoftSearchAsDefault": "Install background service for Microsoft Search in Bing",
- "useSharedComputerActivationLabel": "Use shared computer activation",
- "useSharedComputerActivationTooltip": "Shared computer activation lets you deploy Microsoft 365 Apps to computers that are used by multiple users. Normally, users can only install and activate Microsoft 365 Apps on a limited number of devices, such as 5 PCs. Using Microsoft 365 Apps with shared computer activation doesn't count against that limit.",
- "versionToInstallLabel": "Version to install",
- "versionToInstallTooltip": "Select the version of Office that should be installed.",
- "xLanguagesSelectedLabel": "{0} language(s) selected",
- "xmlConfigurationLabel": "XML Configuration"
- },
- "OfficeApplicationType": {
- "access": "Access",
- "bing": "Microsoft Search as default",
- "excel": "Excel",
- "groove": "OneDrive (Groove)",
- "lync": "Skype for Business",
- "oneDrive": "OneDrive Desktop",
- "oneNote": "OneNote",
- "outlook": "Outlook",
- "powerPoint": "PowerPoint",
- "publisher": "Publisher",
- "teams": "Teams",
- "word": "Word"
- },
- "WindowsQualityUpdateProfile": {
- "Details": {
- "DaysUntilForcedReboot": {
- "label": "Number of days to wait before restart is enforced"
- },
- "Description": {
- "label": "Description"
- },
- "Name": {
- "label": "Name"
- },
- "QualityUpdateRelease": {
- "label": "Expedite installation of quality updates if device OS version less than:"
- },
- "bladeTitle": "Quality updates Windows 10 and later (Preview)",
- "loadError": "Loading failed!"
- },
- "TabName": {
- "qualityUpdateSettings": "Settings"
- },
- "infoBoxText": "The only dedicated quality update control currently available other than the existing update rings policy for Windows 10 and later is the ability to expedite quality updates for devices that fall behind a specified patch level. Additional controls will be available in the future.",
- "warningBoxText": "While expediting software updates can help decrease the time to get to compliance when necessary, it has a larger impact on end-user productivity. The chances that they will experience a restart during business hours is significantly increased."
- },
- "Devices": {
- "General": {
- "android": "Android"
- },
- "aOSP": "Android open source project",
- "android": "Android device administrator",
- "androidWorkProfile": "Android Enterprise (work profile)",
- "iOS": "iOS/iPadOS",
- "mac": "macOS",
- "windows": "Windows (MDM)",
- "windows10": "Windows 10 and later",
- "windowsHomeSku": "Windows Home Sku",
- "windowsMobile": "Windows Mobile"
- },
"SettingDetails": {
"CustomPolicyConfigurationProfile": {
"uploadControlPlaceHolderText": "Select a configuration profile file"
@@ -3675,7 +1707,7 @@
"aESGCM128": "AES-128-GCM (16-octet ICV)",
"aESGCM256": "AES-256-GCM (16-octet ICV)",
"aadSharedDeviceDataClearAppsDescription": "Add any app not optimized for shared device mode to the list. The app's local data will be cleared whenever a user signs out of an app that's optimized for shared device mode. Available for dedicated devices enrolled with Shared mode running Android 9 and later.",
- "aadSharedDeviceDataClearAppsName": "Clear local data in apps not optimized for Shared device mode (Public Preview)",
+ "aadSharedDeviceDataClearAppsName": "Clear local data in apps not optimized for Shared device mode",
"accountsPageDescription": "Block access to Accounts in Settings app.",
"accountsPageName": "Accounts",
"accountsSignInAssistantSettingsDescription": "Block the Microsoft Sign-in Assistant service (wlidsvc). When this setting is not cofigured, the wlidsvc NT service is controllable by the user (manual start)",
@@ -5503,7 +3535,7 @@
"enableEndUserAccessToDefenderName": "End-user access to Defender",
"enableEngagedRestartDescription": "Enables settings to allow user switch to engaged restart.",
"enableEngagedRestartName": "Allow user to restart (engaged restart)",
- "enableIdentityPrivacyDescription": "This property masks user names with the text you enter. For example, if you type 'anonymous', each user that authenticates with this Wi-Fi connection using their real user name is displayed as 'anonymous'.",
+ "enableIdentityPrivacyDescription": "This property masks user names with the text you enter. For example, if you type 'anonymous', each user that authenticates with this Wi-Fi connection using their real user name is displayed as 'anonymous'. This may be required if using device-based certificate authentication.",
"enableIdentityPrivacyName": "Identity privacy (outer identity)",
"enableNetworkInspectionSystemDescription": "Block malicious traffic detected by signatures in the Network Inspection System (NIS)",
"enableNetworkInspectionSystemName": "Network Inspection System (NIS)",
@@ -7252,6 +5284,8 @@
"presharedKeyEncodingDescription": "Encode preshared keys using UTF-8.",
"presharedKeyEncodingName": "Pre-shared key encoding",
"preventAny": "Prevent any sharing across boundaries",
+ "primaryAuthenticationMethodName": "Primary authentication method",
+ "primaryAuthenticationMethodTEAPDescription": "Choose the primary way you want users to authenticate. When you select Certificates, select one of the certificate profiles (SCEP or PKCS) that is also deployed to the device. This is the identity certificate that is presented by the device to the server.",
"primarySMTPAddressOption": "Primary SMTP Address",
"printersColumns": "e.g. printer DNS name",
"printersDescription": "Automatically provision printers based on their network host names. This setting does not support shared printers.",
@@ -7663,6 +5697,8 @@
"searchEnableRemoteQueriesName": "Remote queries",
"secondActiveEthernet": "Second active Ethernet",
"secondEthernet": "Second Ethernet",
+ "secondaryAuthenticationMethodName": "Secondary authentication method",
+ "secondaryAuthenticationMethodTEAPDescription": "Choose the secondary way you want users to authenticate. When you select Certificates, select one of the certificate profiles (SCEP or PKCS) that is also deployed to the device. This is the identity certificate that is presented by the device to the server.",
"secretKey": "Secret Key:",
"secureBootEnabledDescription": "Require Secure Boot to be enabled on the device",
"secureBootEnabledName": "Require Secure Boot to be enabled on the device",
@@ -8074,6 +6110,7 @@
"systemUpdateWindow9": "4:30 AM",
"systemWindowsBlockedDescription": "Disable window notifications such as toasts, incoming calls, outgoing calls, system alerts, and system errors.",
"systemWindowsBlockedName": "Notification windows",
+ "tEAPName": "Tunnel EAP (TEAP)",
"tLSMinMax": "TLS minimum version must be less than or equal to TLS maximum version.",
"tLSVersionRangeMaximum": "TLS version range maximum",
"tLSVersionRangeMaximumDescription": "Enter a maximum TLS version of 1.0, 1.1, or 1.2. If left blank, a default value of 1.2 will be used.",
@@ -8126,6 +6163,17 @@
"timeWindowSameStartEndDayTime": "End day/time cannot be the same as the start day/time.",
"timeZoneDescription": "Select the time zone for the targeted devices.",
"timeZoneName": "Time zone",
+ "timeoutFifteenMinutes": "15 minutes",
+ "timeoutFiveMinutes": "5 minutes",
+ "timeoutFourHours": "4 hours",
+ "timeoutNever": "Never timeout",
+ "timeoutOneHour": "1 hour",
+ "timeoutOneMinute": "1 minute",
+ "timeoutTenMinutes": "10 minutes",
+ "timeoutThirtyMinutes": "30 minutes",
+ "timeoutThreeMinutes": "3 minutes",
+ "timeoutTwoHours": "2 hours",
+ "timeoutTwoMinutes": "2 minutes",
"toggleConfigurationPkgDescription": "Upload a signed configuration package that will be used to onboard the Microsoft Defender for Endpoint client",
"toggleConfigurationPkgName": "Microsoft Defender for Endpoint client configuration package type:",
"trafficRuleAppName": "App",
@@ -8824,6 +6872,33 @@
"win10WifiWirelessSecurityTypeName": "Wireless Security Type",
"win10WifiWirelessSecurityTypeOpen": "Open (no authentication)",
"win10WifiWirelessSecurityTypeWPA": "WPA/WPA2-Personal",
+ "win10WiredAuthenticationModeDescription": "Choose whether to authenticate the user, the device, either, or to use guest authentication (none). If you’re using certificate authentication, make sure the certificate type matches the authentication type.",
+ "win10WiredAuthenticationModeName": "Authentication Mode",
+ "win10WiredAuthenticationPeriodDescription": "Number of seconds for the client to wait after an authentication attempt before failing. Choose a number between 1 and 3600. Not specifying a value results in 18 seconds being used.",
+ "win10WiredAuthenticationPeriodName": "Authentication period",
+ "win10WiredAuthenticationRetryDelayPeriodDescription": "Number of seconds between a failed authentication and the next authentication attempt. Choose a value between 1 and 3600. Not specifying a value results in 1 second being used.",
+ "win10WiredAuthenticationRetryDelayPeriodName": "Authentication retry delay period ",
+ "win10WiredFIPSComplianceDescription": "Validation against the FIPS 140-2 standard is required for all US federal government agencies that use cryptography-based security systems to protect sensitive but unclassified information stored digitally.",
+ "win10WiredFIPSComplianceName": "Force wired profile to be compliant with the Federal Information Processing Standard (FIPS)",
+ "win10WiredGuest": "Guest",
+ "win10WiredMachine": "Machine",
+ "win10WiredMachineOrUser": "User or machine",
+ "win10WiredMaximumAuthenticationFailuresDescription": "Enter the maximum number of authentication failures for this set of credentials. Not specifying a value results in 1 attempt being used.",
+ "win10WiredMaximumAuthenticationFailuresName": "Maximum authentication failures",
+ "win10WiredMaximumEAPOLStartMessagesDescription": "Choose a number of EAPOL-Start messages between 1 and 100. Not specifying a value results in a maximum of 3 messages being sent.",
+ "win10WiredMaximumEAPOLStartMessagesName": "Maximum EAPOL-start",
+ "win10WiredNetworkAuthenticationBlockPeriodDescription": "Authentication block period in minutes. Used to specify the duration for which automatic authentication attempts will be blocked from occurring after a failed authentication attempt. Choose a value between 0 and 1440.",
+ "win10WiredNetworkAuthenticationBlockPeriodName": "Block period (minutes)",
+ "win10WiredNetworkAuthenticationModeName": "Authentication Mode",
+ "win10WiredNetworkDoNotEnforceName": "Do not enforce",
+ "win10WiredNetworkEnforce8021XDescription": "Specifies whether the automatic configuration service for wired networks requires the use of 802.1X for port authentication.",
+ "win10WiredNetworkEnforce8021XName": "802.1x",
+ "win10WiredNetworkEnforceName": "Enforce",
+ "win10WiredRememberCredentialsDescription": "Choose whether to cache users' credentials when they enter them the first time they connect to the wired network. Cached credentials are used for subsequent connections and the users don't need to re-enter them. Not configuring this setting is equivalent to setting it to yes.",
+ "win10WiredRememberCredentialsName": "Remember credentials at each logon",
+ "win10WiredStartPeriodDescription": "Number of seconds to wait before sending an EAPOL-Start message. Choose a value between 1 and 3600. Not specifying a value results in 5 seconds being used.",
+ "win10WiredStartPeriodName": "Start period",
+ "win10WiredUser": "User",
"win10appLockerApplicationControlAllowDescription": "These apps will be allowed to run",
"win10appLockerApplicationControlAllowName": "Enforce",
"win10appLockerApplicationControlAuditComponentsAndStoreAppsDescription": "\"Audit Only\" mode logs all events in local client event logs, but does not block any apps from running. Windows components and Microsoft Store apps will be logged as passing security requirements.",
@@ -9165,7 +7240,6 @@
"deviceConditionsInfoParagraph2": "Similar device based settings can be configured for enrolled devices.",
"deviceConditionsInfoParagraph2LinkText": "Learn more about configuring device compliance settings for enrolled devices.",
"deviceId": "Device ID",
- "deviceLockComplexityValidationFailureNotes": "Notes:
\n\n - The device lock can require a password complexity of: LOW, MEDIUM, or HIGH targeted to Android 11+. For devices operating on Android 10 and earlier, setting a complexity value of Low/Medium/High will default to the expected behavior for \"Low Complexity\".
\n - The password definitions below are subject to change. Please refer to DevicePolicyManager|Android Developers for the most updated definitions of the different password complexity levels.
\n
\n\nLow
\n\n - Password can be a pattern or PIN with repeating (4444) or ordered (1234, 4321, 2468) sequences.
\n
\n\nMedium
\n\n - PIN with no repeating (4444) or ordered (1234, 4321, 2468) sequences with a minimum length of at least 4 characters
\n - Alphabetic passwords with a minimum length of at least 4 characters
\n - Alphanumeric passwords with a minimum length of at least 4 characters
\n
\n\nHigh
\n\n - PIN with no repeating (4444) or ordered (1234, 4321, 2468) sequences with a minimum length of at least 8 characters
\n - Alphabetic passwords with a minimum length of at least 6 characters
\n - Alphanumeric passwords with a minimum length of at least 6 characters
\n
\n",
"deviceLockedOpenFilesOptionsText": "When device is locked and there are open files",
"deviceLockedOptionText": "When device is locked",
"deviceManufacturer": "Device manufacturer",
@@ -9463,7 +7537,7 @@
"reporting": "Reporting",
"reports": "Reports",
"require": "Require",
- "requireDeviceLockComplexityOnApps": "Require device lock complexity",
+ "requireDeviceLockOnApps": "Require device lock",
"requireThreatScanOnApps": "Require threat scan on apps",
"requiredField": "This field can't be empty",
"requiredSafetyNetEvaluationType": "Required SafetyNet evaluation type",
@@ -9659,6 +7733,7 @@
"yourDataIsBeingDownloadedEllipsis": "Your data is being downloaded, this can take a while...",
"yourDataIsBeingDownloadedMinutes": "Your data is being downloaded, this can take a few minutes...",
"yourProtectionLevel": "Your protection level",
+ "rules": "Rules",
"basics": "Basics",
"modeTableHeader": "Group mode",
"appAssignmentMsg": "Group",
@@ -9695,221 +7770,2042 @@
"licenseTypeDevice": "Device",
"licenseTypeUser": "User"
},
- "Languages": {
- "ar-aE": "Arabic (U.A.E.)",
- "ar-bH": "Arabic (Bahrain)",
- "ar-dZ": "Arabic (Algeria)",
- "ar-eG": "Arabic (Egypt)",
- "ar-iQ": "Arabic (Iraq)",
- "ar-jO": "Arabic (Jordan)",
- "ar-kW": "Arabic (Kuwait)",
- "ar-lB": "Arabic (Lebanon)",
- "ar-lY": "Arabic (Libya)",
- "ar-mA": "Arabic (Morocco)",
- "ar-oM": "Arabic (Oman)",
- "ar-qA": "Arabic (Qatar)",
- "ar-sA": "Arabic (Saudi Arabia)",
- "ar-sY": "Arabic (Syria)",
- "ar-tN": "Arabic (Tunisia)",
- "ar-yE": "Arabic (Yemen)",
- "az-cyrl": "Azerbaijani (Cyrillic, Azerbaijan)",
- "az-latn": "Azerbaijani (Latin, Azerbaijan)",
- "bn-bD": "Bangla (Bangladesh)",
- "bn-iN": "Bangla (India)",
- "bs-cyrl": "Bosnian (Cyrillic)",
- "bs-latn": "Bosnian (Latin)",
- "zh-cN": "Chinese (PRC)",
- "zh-hK": "Chinese (Hong Kong S.A.R.)",
- "zh-mO": "Chinese (Macao S.A.R.)",
- "zh-sG": "Chinese (Singapore)",
- "zh-tW": "Chinese (Taiwan)",
- "hr-bA": "Croatian (Latin)",
- "hr-hR": "Croatian (Croatia)",
- "nl-bE": "Dutch (Belgium)",
- "nl-nL": "Dutch (Netherlands)",
- "en-aU": "English (Australia)",
- "en-bZ": "English (Belize)",
- "en-cA": "English (Canada)",
- "en-cabn": "English (Caribbean)",
- "en-iE": "English (Ireland)",
- "en-iN": "English (India)",
- "en-jM": "English (Jamaica)",
- "en-mY": "English (Malaysia)",
- "en-nZ": "English (New Zealand)",
- "en-pH": "English (Republic of the Philippines)",
- "en-sG": "English (Singapore)",
- "en-tT": "English (Trinidad and Tobago)",
- "en-uK": "English (United Kingdom)",
- "en-uS": "English (United States)",
- "en-zA": "English (South Africa)",
- "en-zW": "English (Zimbabwe)",
- "fr-bE": "French (Belgium)",
- "fr-cA": "French (Canada)",
- "fr-cH": "French (Switzerland)",
- "fr-fR": "French (France)",
- "fr-lU": "French (Luxembourg)",
- "fr-mC": "French (Monaco)",
- "de-aT": "German (Austria)",
- "de-cH": "German (Switzerland)",
- "de-dE": "German (Germany)",
- "de-lI": "German (Liechtenstein)",
- "de-lU": "German (Luxembourg)",
- "iu-cans": "Inuktitut (Syllabics, Canada)",
- "iu-latn": "Inuktitut (Latin, Canada)",
- "it-cH": "Italian (Switzerland)",
- "it-iT": "Italian (Italy)",
- "ms-bN": "Malay (Brunei Darussalam)",
- "ms-mY": "Malay (Malaysia)",
- "mn-cN": "Mongolian (Traditional Mongolian, PRC)",
- "mn-mN": "Mongolian (Cyrillic, Mongolia)",
- "no-nB": "Norwegian, Bokmål (Norway)",
- "no-nn": "Norwegian, Nynorsk (Norway)",
- "pt-bR": "Portuguese (Brazil)",
- "pt-pT": "Portuguese (Portugal)",
- "quz-bO": "Quechua (Bolivia)",
- "quz-eC": "Quechua (Ecuador)",
- "quz-pE": "Quechua (Peru)",
- "smj-nO": "Sami, Lule (Norway)",
- "smj-sE": "Sami, Lule (Sweden)",
- "se-fI": "Sami, Northern (Finland)",
- "se-nO": "Sami, Northern (Norway)",
- "se-sE": "Sami, Northern (Sweden)",
- "sma-nO": "Sami, Southern (Norway)",
- "sma-sE": "Sami, Southern (Sweden)",
- "smn": "Sami, Inari (Finland)",
- "sms": "Sami, Skolt (Finland)",
- "sr-Cyrl-bA": "Serbian (Cyrillic)",
- "sr-Cyrl-rS": "Serbian (Cyrillic, Serbia and Montenegro)",
- "sr-Latn-bA": "Serbian (Latin)",
- "sr-Latn-rS": "Serbian (Latin, Serbia)",
- "dsb": "Lower Sorbian (Germany)",
- "hsb": "Upper Sorbian (Germany)",
- "es-es-tradnl": "Spanish (Spain, Traditional Sort)",
- "es-aR": "Spanish (Argentina)",
- "es-bO": "Spanish (Bolivia)",
- "es-cL": "Spanish (Chile)",
- "es-cO": "Spanish (Colombia)",
- "es-cR": "Spanish (Costa Rica)",
- "es-dO": "Spanish (Dominican Republic)",
- "es-eC": "Spanish (Ecuador)",
- "es-eS": "Spanish (Spain)",
- "es-gT": "Spanish (Guatemala)",
- "es-hN": "Spanish (Honduras)",
- "es-mX": "Spanish (Mexico)",
- "es-nI": "Spanish (Nicaragua)",
- "es-pA": "Spanish (Panama)",
- "es-pE": "Spanish (Peru)",
- "es-pR": "Spanish (Puerto Rico)",
- "es-pY": "Spanish (Paraguay)",
- "es-sV": "Spanish (El Salvador)",
- "es-uS": "Spanish (United States)",
- "es-uY": "Spanish (Uruguay)",
- "es-vE": "Spanish (Venezuela)",
- "sv-fI": "Swedish (Finland)",
- "uz-cyrl": "Uzbek (Cyrillic, Uzbekistan)",
- "uz-latn": "Uzbek (Latin, Uzbekistan)",
- "af": "Afrikaans (South Africa)",
- "sq": "Albanian (Albania)",
- "am": "Amharic (Ethiopia)",
- "hy": "Armenian (Armenia)",
- "as": "Assamese (India)",
- "ba": "Bashkir (Russia)",
- "eu": "Basque (Basque)",
- "be": "Belarusian (Belarus)",
- "br": "Breton (France)",
- "bg": "Bulgarian (Bulgaria)",
- "ca": "Catalan (Catalan)",
- "co": "Corsican (France)",
- "cs": "Czech (Czech Republic)",
- "da": "Danish (Denmark)",
- "prs": "Dari (Afghanistan)",
- "dv": "Divehi (Maldives)",
- "et": "Estonian (Estonia)",
- "fo": "Faroese (Faroe Islands)",
- "fil": "Filipino (Philippines)",
- "fi": "Finnish (Finland)",
- "gl": "Galician (Galician)",
- "ka": "Georgian (Georgia)",
- "el": "Greek (Greece)",
- "gu": "Gujarati (India)",
- "ha": "Hausa (Latin, Nigeria)",
- "he": "Hebrew (Israel)",
- "hi": "Hindi (India)",
- "hu": "Hungarian (Hungary)",
- "is": "Icelandic (Iceland)",
- "ig": "Igbo (Nigeria)",
- "id": "Indonesian (Indonesia)",
- "ga": "Irish (Ireland)",
- "xh": "isiXhosa (South Africa)",
- "zu": "isiZulu (South Africa)",
- "ja": "Japanese (Japan)",
- "kn": "Kannada (India)",
- "kk": "Kazakh (Kazakhstan)",
- "km": "Khmer (Cambodia)",
- "rw": "Kinyarwanda (Rwanda)",
- "sw": "Kiswahili (Kenya)",
- "kok": "Konkani (India)",
- "ko": "Korean (Korea)",
- "ky": "Kyrgyz (Kyrgyzstan)",
- "lo": "Lao (Lao P.D.R.)",
- "lv": "Latvian (Latvia)",
- "lt": "Lithuanian (Lithuania)",
- "lb": "Luxembourgish (Luxembourg)",
- "mk": "Macedonian (North Macedonia)",
- "ml": "Malayalam (India)",
- "mt": "Maltese (Malta)",
- "mi": "Maori (New Zealand)",
- "mr": "Marathi (India)",
- "moh": "Mohawk (Mohawk)",
- "ne": "Nepali (Nepal)",
- "oc": "Occitan (France)",
- "or": "Odia (India)",
- "ps": "Pashto (Afghanistan)",
- "fa": "Persian",
- "pl": "Polish (Poland)",
- "pa": "Punjabi (India)",
- "ro": "Romanian (Romania)",
- "rm": "Romansh (Switzerland)",
- "ru": "Russian (Russia)",
- "sa": "Sanskrit (India)",
- "st": "Sesotho sa Leboa (South Africa)",
- "tn": "Setswana (South Africa)",
- "si": "Sinhala (Sri Lanka)",
- "sk": "Slovak (Slovakia)",
- "sl": "Slovenian (Slovenia)",
- "sv": "Swedish (Sweden)",
- "syr": "Syriac (Syria)",
- "tg": "Tajik (Cyrillic, Tajikistan)",
- "ta": "Tamil (India)",
- "tt": "Tatar (Russia)",
- "te": "Telugu (India)",
- "th": "Thai (Thailand)",
- "bo": "Tibetan (PRC)",
- "tr": "Turkish (Turkey)",
- "tk": "Turkmen (Turkmenistan)",
- "uk": "Ukrainian (Ukraine)",
- "ur": "Urdu (Islamic Republic of Pakistan)",
- "vi": "Vietnamese (Vietnam)",
- "cy": "Welsh (United Kingdom)",
- "wo": "Wolof (Senegal)",
- "ii": "Yi (PRC)",
- "yo": "Yoruba (Nigeria)"
- },
- "AppProtection": {
- "allAppTypes": "Target to all app types",
- "androidPlatformLabel": "Android",
- "appsInAndroidWorkProfile": "Apps in Android Work Profile",
- "appsOnIntuneManagedDevices": "Apps on Intune managed devices",
- "appsOnUnmanagedDevices": "Apps on unmanaged devices",
- "iOSPlatformLabel": "iOS/iPadOS",
- "iosAndroidMacPlatformLabel": "iOS, Android, Mac",
- "iosAndroidPlatformLabel": "iOS, Android",
- "macPlatformLabel": "Mac",
- "notAvailable": "Not Available",
- "windows10PlatformLabel": "Windows 10 and later",
- "withEnrollment": "With enrollment",
- "withoutEnrollment": "Without enrollment"
- },
+ "ApplicabilityRules": {
+ "GridLabel": {
+ "property": "Property",
+ "rule": "Rule",
+ "ruleDetails": "Rule Details",
+ "value": "Value"
+ },
+ "assignIf": "Assign profile if",
+ "deleteWarning": "This will delete the selected Applicability Rule",
+ "dontAssignIf": "Don't assign profile if",
+ "editionDisplayText": "{0} {1}",
+ "editionDisplayTextMore": "and {0} more",
+ "instructions": "Specify how to apply this profile within an assigned group. Intune will only apply the profile to devices that meet the combined criteria of these rules.",
+ "maxText": "Max",
+ "minText": "Min",
+ "noActionRow": "No Applicability Rules Specified",
+ "oSVersion": "e.g. 1.2.3.4",
+ "toText": "to",
+ "windows10Education": "Windows 10/11 Education",
+ "windows10EducationN": "Windows 10/11 Education N",
+ "windows10Enterprise": "Windows 10/11 Enterprise",
+ "windows10EnterpriseN": "Windows 10/11 Enterprise N",
+ "windows10HolographicEnterprise": "Windows 10 Holographic for Business",
+ "windows10Home": "Windows 10/11 Home",
+ "windows10HomeChina": "Windows 10 Home China",
+ "windows10HomeN": "Windows 10/11 Home N",
+ "windows10HomeSingleLanguage": "Windows 10/11 Home Single Language",
+ "windows10IoTCore": "Windows 10 IoT Core",
+ "windows10IoTCoreCommercial": "Windows 10 IoT Core Commercial",
+ "windows10Mobile": "Windows 10 Mobile",
+ "windows10MobileEnterprise": "Windows 10 Mobile Enterprise",
+ "windows10OsEdition": "OS edition",
+ "windows10OsVersion": "OS version",
+ "windows10Professional": "Windows 10/11 Professional",
+ "windows10ProfessionalEducation": "Windows 10/11 Professional Education",
+ "windows10ProfessionalEducationN": "Windows 10/11 Professional Education N",
+ "windows10ProfessionalN": "Windows 10 Professional N",
+ "windows10ProfessionalWorkstation": "Windows 10/11 Professional Workstation",
+ "windows10ProfessionalWorkstationN": "Windows 10/11 Professional Workstation N"
+ },
+ "DetectionRules": {
+ "ComparisonOperators": {
+ "equals": "Equals",
+ "greaterThan": "Greater than",
+ "greaterThanOrEqualTo": "Greater than or equal to",
+ "lessThan": "Less than",
+ "lessThanOrEqualTo": "Less than or equal to",
+ "notEqualTo": "Not equal to"
+ },
+ "CustomScript": {
+ "enforceSignatureCheck": "Enforce script signature check and run script silently",
+ "enforceSignatureCheckTooltip": "Select 'Yes' to verify that the script is signed by a trusted publisher, which will allow the script to run with no warnings or prompts displayed. The script will run unblocked. Select 'No' (default) to run the script with end-user confirmation without signature verification.",
+ "header": "Use a custom detection script",
+ "runAs32Bit": "Run script as 32-bit process on 64-bit clients",
+ "runAs32BitTooltip": "Select 'Yes' to run the script in a 32-bit process on 64-bit clients. Select 'No' (default) to run the script in a 64-bit process on 64-bit clients. 32-bit clients run the script in a 32-bit process.",
+ "scriptFile": "Script file",
+ "scriptFileNotSelectedValidation": "No script file is selected.",
+ "scriptFileTooltip": "Select a PowerShell script that will detect the presence of the app on the client. The app will be detected when the script both returns a 0 value exit code and writes a string value to STDOUT.",
+ "scriptSizeLimitValidation": "Your detection script exceeds the maximum size allowed. Resolve this by reducing the size of your detection script."
+ },
+ "Manual": {
+ "FileRule": {
+ "DetectionMethodOptions": {
+ "dateCreated": "Date created",
+ "dateModified": "Date modified",
+ "doesNotExist": "File or folder does not exist",
+ "fileOrFolderExists": "File or folder exists",
+ "sizeInMB": "Size in MB",
+ "version": "String (version)"
+ },
+ "associatedWith32Bit": "Associated with a 32-bit app on 64-bit clients",
+ "associatedWith32BitTooltip": "Select 'Yes' to expand any path environment variables in the 32-bit context on 64-bit clients. Select 'No' (default) to expand any path variables in the 64-bit context on 64-bit clients. 32-bit clients will always use the 32-bit context.",
+ "detectionMethod": "Detection method",
+ "detectionMethodTooltip": "Select the type of detection method used to validate the presence of the app.",
+ "fileOrFolder": "File or folder",
+ "fileOrFolderToolTip": "The file or folder to detect.",
+ "operator": "Operator",
+ "operatorTooltip": "Select the operator for the detection method used to validate the comparison.",
+ "path": "Path",
+ "pathTooltip": "The full path of the folder containing the file or folder to detect.",
+ "value": "Value",
+ "valueTooltip": "Select a value that matches the selected detection method. Date detection methods should be entered in local time."
+ },
+ "GridColumns": {
+ "pathOrCode": "Path/Code",
+ "type": "Type"
+ },
+ "MsiRule": {
+ "operator": "Operator",
+ "operatorTooltip": "Select the operator for the MSI product version validation comparison.",
+ "productCode": "MSI product code",
+ "productCodeTooltip": "A valid MSI product code for the app.",
+ "productVersion": "Value",
+ "productVersionCheck": "MSI product version check",
+ "productVersionCheckTooltip": "Select 'Yes' to verify the MSI product version in addition to the MSI product code.",
+ "productVersionTooltip": "Enter the MSI product version for the app."
+ },
+ "RegistryRule": {
+ "DetectionMethodOptions": {
+ "integerComparison": "Integer comparison",
+ "keyDoesNotExist": "Key does not exist",
+ "keyExists": "Key exists",
+ "stringComparison": "String comparison",
+ "valueDoesNotExist": "Value does not exist",
+ "valueExists": "Value exists",
+ "versionComparison": "Version comparison"
+ },
+ "associatedWith32Bit": "Associated with a 32-bit app on 64-bit clients",
+ "associatedWith32BitTooltip": "Select 'Yes' to search the 32-bit registry on 64-bit clients. Select 'No' (default) search the 64-bit registry on 64-bit clients. 32-bit clients will always search the 32-bit registry.",
+ "detectionMethod": "Detection method",
+ "detectionMethodTooltip": "Select the type of detection method used to validate the presence of the app.",
+ "keyPath": "Key path",
+ "keyPathTooltip": "The full path of the registry entry containing the value to detect.",
+ "operator": "Operator",
+ "operatorTooltip": "Select the operator for the detection method used to validate the comparison.",
+ "value": "Value",
+ "valueName": "Value name",
+ "valueNameTooltip": "The name of the registry value to detect.",
+ "valueTooltip": "Select a value that matches the selected detection method."
+ },
+ "RuleTypeOptions": {
+ "file": "File",
+ "mSI": "MSI",
+ "registry": "Registry"
+ },
+ "gridAriaLabel": "Detection Rules",
+ "header": "Create a rule that indicates the presence of the app.",
+ "noRulesSelectedPlaceholder": "No rules are specified.",
+ "ruleTableLimit": "You can add up to 25 detection rules",
+ "ruleType": "Rule type",
+ "ruleTypeTooltip": "Choose the type of detection rule to add."
+ },
+ "RuleConfigurationOptions": {
+ "customScript": "Use a custom detection script",
+ "manual": "Manually configure detection rules"
+ },
+ "bladeTitle": "Detection rules",
+ "header": "Configure app specific rules used to detect the presence of the app.",
+ "rulesFormat": "Rules format",
+ "rulesFormatTooltip": "Choose to either manually configure the detection rules or use a custom script to detect the presence of the app.",
+ "selectorLabel": "Detection rules"
+ },
+ "PolicyType": {
+ "AttackSurfaceReductionRules": {
+ "configMgr": "Attack Surface Reduction Rules (ConfigMgr)"
+ },
+ "EndpointDetectionandResponse": {
+ "mDE": "Endpoint detection and response"
+ },
+ "EndpointSecurityTemplate": {
+ "aSRAppBrowserSecurity": "App and browser isolation",
+ "aSRApplicationControl": "Application control",
+ "aSRAttackSurfaceReduction": "Attack surface reduction rules",
+ "aSRDeviceControl": "Device control",
+ "aSRExploitProtection": "Exploit protection",
+ "aSRWebProtection": "Web protection (Microsoft Edge Legacy)",
+ "aVExclusions": "Microsoft Defender Antivirus exclusions",
+ "antivirus": "Microsoft Defender Antivirus",
+ "cloudPC": "Windows 365 Security Baseline",
+ "default": "Endpoint Security",
+ "defenderTest": "Microsoft Defender for Endpoint demo",
+ "diskEncryption": "BitLocker",
+ "eDR": "Endpoint detection and response",
+ "edgeSecurityBaseline": "Microsoft Edge baseline",
+ "edgeSecurityBaselinePreview": "Preview: Microsoft Edge baseline",
+ "editionUpgradeConfiguration": "Edition upgrade and mode switch",
+ "firewall": "Microsoft Defender Firewall",
+ "firewallRules": "Microsoft Defender Firewall rules",
+ "identityProtection": "Account protection",
+ "identityProtectionPreview": "Account protection (Preview)",
+ "mDMSecurityBaseline1810": "MDM Security Baseline for Windows 10 and later for October 2018",
+ "mDMSecurityBaseline1810Preview": "Preview: MDM Security Baseline for Windows 10 and later for October 2018",
+ "mDMSecurityBaseline1810PreviewBeta": "Preview: MDM Security Baseline for Windows 10 for October 2018 (beta)",
+ "mDMSecurityBaseline1906": "MDM Security Baseline for Windows 10 and later for May 2019",
+ "mDMSecurityBaseline2004": "MDM Security Baseline for Windows 10 and later for August 2020",
+ "mDMSecurityBaseline2101": "MDM Security Baseline for Windows 10 and later Decemeber 2020",
+ "macOSAntivirus": "Antivirus",
+ "macOSDiskEncryption": "FileVault",
+ "macOSFirewall": "macOS firewall",
+ "microsoftDefenderBaseline": "Microsoft Defender for Endpoint baseline",
+ "office365Baseline": "Microsoft Office O365 baseline",
+ "office365BaselinePreview": "Preview: Microsoft Office O365 baseline",
+ "securityBaselines": "Security Baselines",
+ "test": "Test Template",
+ "testFirewallRulesSecurityTemplateName": "Microsoft Defender Firewall rules (Test)",
+ "testIdentityProtectionSecurityTemplateName": "Account protection (Test)",
+ "windowsSecurityExperience": "Windows Security experience"
+ },
+ "Firewall": {
+ "mDE": "Microsoft Defender Firewall"
+ },
+ "FirewallRules": {
+ "mDE": "Microsoft Defender Firewall Rules"
+ },
+ "administrativeTemplates": "Administrative Templates",
+ "androidCompliancePolicy": "Android compliance policy",
+ "aospDeviceOwnerCompliancePolicy": "Android (AOSP) compliance policy",
+ "applicationControl": "Application Control",
+ "custom": "Custom",
+ "deliveryOptimization": "Delivery Optimization",
+ "derivedPersonalIdentityVerificationCredential": "Derived credential",
+ "deviceFeatures": "Device features",
+ "deviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
+ "deviceLock": "Device Lock",
+ "deviceOwner": "Fully managed, dedicated, and corporate-owned work profile",
+ "deviceRestrictions": "Device restrictions",
+ "deviceRestrictionsWindows10Team": "Device restrictions (Windows 10 Team)",
+ "domainJoinPreview": "Domain Join",
+ "editionUpgradeAndModeSwitch": "Edition upgrade and mode switch",
+ "education": "Education",
+ "email": "Email",
+ "emailSamsungKnoxOnly": "Email (Samsung KNOX only)",
+ "endpointProtection": "Endpoint protection",
+ "expeditedCheckin": "Mobile device management configuration",
+ "exploitProtection": "Exploit Protection",
+ "extensions": "Extensions",
+ "hardwareConfigurations": "BIOS Configurations",
+ "identityProtection": "Identity protection",
+ "iosCompliancePolicy": "iOS compliance policy",
+ "kiosk": "Kiosk",
+ "macCompliancePolicy": "Mac compliance policy",
+ "microsoftDefenderAntivirus": "Microsoft Defender Antivirus",
+ "microsoftDefenderAntivirusexclusions": "Microsoft Defender Antivirus exclusions",
+ "microsoftDefenderAtpWindows10Desktop": "Microsoft Defender for Endpoint (desktop devices running Windows 10 or later)",
+ "microsoftDefenderFirewallRules": "Microsoft Defender Firewall Rules",
+ "microsoftEdgeBaseline": "Microsoft Edge Baseline",
+ "mxProfileZebraOnly": "MX profile (Zebra only)",
+ "networkBoundary": "Network boundary",
+ "oemConfig": "OEMConfig",
+ "overrideGroupPolicy": "Override Group Policy",
+ "pkcsCertificate": "PKCS certificate",
+ "pkcsImportedCertificate": "PKCS imported certificate",
+ "preferenceFile": "Preference file",
+ "presets": "Presets",
+ "scepCertificate": "SCEP certificate",
+ "secureAssessmentEducation": "Secure assessment (Education)",
+ "settingsCatalog": "Settings Catalog",
+ "sharedMultiUserDevice": "Shared multi-user device",
+ "softwareUpdates": "Software Updates",
+ "trustedCertificate": "Trusted certificate",
+ "unknown": "Unknown",
+ "unsupported": "Unsupported",
+ "vpn": "VPN",
+ "wiFi": "Wi-Fi",
+ "wiFiImport": "Wi-Fi import",
+ "windows10CompliancePolicy": "Windows 10/11 compliance policy",
+ "windows10MobileCompliancePolicy": "Windows 10 mobile compliance policy",
+ "windows10XScep": "SCEP certificate - TEST",
+ "windows10XTrustedCertificate": "Trusted certificate - TEST",
+ "windows10XVPN": "VPN - TEST",
+ "windows10XWifi": "WIFI - TEST",
+ "windows8CompliancePolicy": "Windows 8 compliance policy",
+ "windowsHealthMonitoring": "Windows health monitoring",
+ "windowsInformationProtection": "Windows Information Protection",
+ "windowsPhoneCompliancePolicy": "Windows Phone compliance policy",
+ "windowsUpdateforBusiness": "Windows Update for Business",
+ "wiredNetwork": "Wired network",
+ "workProfile": "Personally-owned work profile"
+ },
+ "Win32Requirements": {
+ "AdditionalRequirements": {
+ "File": {
+ "fileOrFolderToolTip": "The file or folder as the selected requirement.",
+ "pathToolTip": "The complete path of the file or folder to detect.",
+ "property": "Property",
+ "valueToolTip": "Select a requirement value that matches the selected detection method. Date and time requirement should be entered in your local format."
+ },
+ "GridColumns": {
+ "pathOrScript": "Path/Script",
+ "type": "Type"
+ },
+ "Registry": {
+ "keyPath": "Key path",
+ "keyPathTooltip": "The full path of the registry entry containing the value as a requirement.",
+ "operator": "Operator",
+ "operatorTooltip": "Select the operator for the comparison.",
+ "registryRequirement": "Registry key requirement",
+ "registryRequirementTooltip": "Select the registry key requirement comparison.",
+ "valueName": "Value name",
+ "valueNameTooltip": "The name of the required registry value."
+ },
+ "RequirementTypeOptions": {
+ "fileType": "File",
+ "registry": "Registry",
+ "script": "Script"
+ },
+ "Script": {
+ "RequirementMethodOptions": {
+ "boolean": "Boolean",
+ "dateTime": "Date and Time",
+ "float": "Floating Point",
+ "integer": "Integer",
+ "string": "String",
+ "version": "Version"
+ },
+ "ScriptContent": {
+ "emptyMessage": "Script content should not be empty."
+ },
+ "duplicateName": "Script name {0} has already been used. Please enter a different name.",
+ "enforceSignatureCheck": "Enforce script signature check",
+ "enforceSignatureCheckTooltip": "Select ‘Yes’ to verify that the script is signed by a trusted publisher, which will allow the script to run without warnings or prompts. The script will run unblocked. Select ‘No’ (default) to run the script with end-user confirmation, but without signature verification.",
+ "loggedOnCredentials": "Run this script using the logged on credentials",
+ "loggedOnCredentialsTooltip": "Run script using the signed in device credentials.",
+ "operatorTooltip": "Select the operator for the requirement comparison.",
+ "requirementMethod": "Select output data type",
+ "requirementMethodTooltip": "Select the data type used when determining a detection match requirement.",
+ "scriptFile": "Script file",
+ "scriptFileTooltip": "Select a PowerShell script that will detect the presence of the app on the client. If the app is detected, the requirement process will provide a 0 value exit code and will write a string value to STDOUT.",
+ "scriptName": "Script name",
+ "value": "Value",
+ "valueTooltip": "Select a requirement value that matches the selected detection method. Date and time requirement should be entered in your local format."
+ },
+ "bladeTitle": "Add a Requirement rule",
+ "createRequirementHeader": "Create a requirement.",
+ "header": "Configure additional requirement rules",
+ "label": "Additional requirement rules",
+ "noRequirementsSelectedPlaceholder": "No requirements are specified.",
+ "requirementType": "Requirement type",
+ "requirementTypeTooltip": "Choose the type of detection method used to determine how a requirement is validated."
+ },
+ "architectures": "Operating system architecture",
+ "architecturesTooltip": "Choose the architectures needed to install the app.",
+ "bladeTitle": "Requirements",
+ "diskSpace": "Disk space required (MB)",
+ "diskSpaceTooltip": "Free disk space needed on the system drive to install the app.",
+ "header": "Specify the requirements that devices must meet before the app is installed:",
+ "maximumTextFieldValue": "The value must be at most {0}.",
+ "minimumCpuSpeed": "Minimum CPU speed required (MHz)",
+ "minimumCpuSpeedTooltip": "The minimum CPU speed required to install the app.",
+ "minimumLogicalProcessors": "Minimum number of logical processors required",
+ "minimumLogicalProcessorsTooltip": "The minimum number of logical processors required to install the app.",
+ "minimumOperatingSystem": "Minimum operating system",
+ "minimumOperatingSystemTooltip": "Select the minimum operating system needed to install the app.",
+ "minumumTextFieldValue": "The value must be at least {0}.",
+ "physicalMemory": "Physical memory required (MB)",
+ "physicalMemoryTooltip": "Physical memory (RAM) required to install the app.",
+ "selectorLabel": "Requirements",
+ "validNumber": "Please enter a valid number."
+ },
+ "AzureIAM": {
+ "AdrsUserActionSelectionWarning": {
+ "conditions": "Conditions that require device registration are not available with \"Register or join devices\" user action.",
+ "message": "Only \"Require multi-factor authentication\" can be used in policies created for the \"Register or join devices\" user action.{0}"
+ },
+ "AuthContext": {
+ "Delete": {
+ "failure": "Failed to delete {0}",
+ "failureCa": "Failed to delete {0} because it is referenced by CA policies",
+ "modifying": "Deleting {0}",
+ "success": "Successfully deleted {0}"
+ },
+ "Included": {
+ "none": "No cloud apps, actions, or authentication contexts selected",
+ "plural": "{0} authentication contexts included",
+ "singular": "1 authentication context included"
+ },
+ "InfoBlade": {
+ "createTitle": "Add authentication context",
+ "descPlaceholder": "Add description for the authentication context",
+ "modifyTitle": "Modify authentication context",
+ "namePlaceholder": "Ex. Trusted location, Trusted device, Strong authorization",
+ "publishDesc": "Publish to apps will make the authentication context available for apps to use. Publish once you finish configuring Conditional Access policy for the tag. [Learn more][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2150966",
+ "publishLabel": "Publish to apps",
+ "titleDesc": "Configure an authentication context that will be used to protect application data and actions. Use names and descriptions that can be understood by application administrators. [Learn more][1]\n[1]:https://go.microsoft.com/fwlink/?linkid=2150965"
+ },
+ "Notify": {
+ "failure": "Failed to update {0}",
+ "modifying": "Modifying {0}",
+ "success": "Successfully updated {0}"
+ },
+ "WhatIf": {
+ "selected": "Authentication context included"
+ },
+ "addNewStepUp": "New authentication context",
+ "checkBoxInfo": "Select the authentication contexts this policy will apply to",
+ "configure": "Configure authentication contexts",
+ "createCA": "Assign Conditional Access policies to the authentication context",
+ "dataGrid": "List of authentication contexts",
+ "deleteFailedByReference": "You cannot delete this authentication context because it is being referenced by CA policies.",
+ "description": "Description",
+ "documentation": "Documentation",
+ "getStarted": "Get started",
+ "label": "Authentication context (preview)",
+ "menuLabel": "Authentication context (Preview)",
+ "name": "Name",
+ "noAuthContextConfigured": "No authentication contexts have been configured.",
+ "noAuthContextSet": "There are no authentication contexts",
+ "noData": "No authentication contexts to display",
+ "selectionInfo": "Authentication context is used to secure application data and actions in apps like SharePoint and Microsoft Cloud App Security.",
+ "step": "Step",
+ "tabDescription": "Manage authentication context to protect data and actions in your apps. [Learn more][1]\n[1]:https://go.microsoft.com/fwlink/?linkid=2150965",
+ "tagResources": "Tag resources with an authentication context"
+ },
+ "AuthenticationStrength": {
+ "Mode": {
+ "deviceBasedPush": "Microsoft Authenticator (Phone Sign-in)",
+ "deviceBasedPushFido2X509Certificate": "Microsoft Authenticator (Phone Sign-in) + Fido 2 + Certificate Based Authentication",
+ "deviceBasedPushX509CertificateSingleFactor": "Microsoft Authenticator (Phone Sign-in) + Fido 2 + Certificate Based Authentication (Single Factor)",
+ "email": "Email one-time passcode",
+ "emailOtp": "Email one-time passcode",
+ "federatedMultiFactor": "Federated Multi-Factor",
+ "federatedSingleFactor": "Federated single factor",
+ "federatedSingleFactorFederatedMultiFactor": "Federated single factor + Federated Multi-Factor",
+ "fido2": "FIDO 2 security key",
+ "fido2X509CertificateSingleFactor": "FIDO 2 security key + Certificate Based Authentication (Single Factor)",
+ "hardwareOath": "Hardware OATH tokens",
+ "hardwareOathEmail": "Hardware OATH tokens + Email one-time passcode",
+ "hardwareOathX509CertificateSingleFactor": "Hardware OATH tokens + Certificate Based Authentication (Single Factor)",
+ "microsoftAuthenticatorPSIX509CertificateSingleFactor": "Microsoft Authenticator (Phone Sign-in) + Certificate Based Authentication (Single Factor)",
+ "microsoftAuthenticatorPsi": "Microsoft Authenticator (Phone Sign-in)",
+ "microsoftAuthenticatorPush": "Microsoft Authenticator (Push Notification)",
+ "microsoftAuthenticatorPushEmail": "Microsoft Authenticator (Push Notification) + Email one-time passcode",
+ "microsoftAuthenticatorPushX509CertificateSingleFactor": "Microsoft Authenticator (Push Notification) + Certificate Based Authentication (Single Factor)",
+ "none": "None",
+ "password": "Password",
+ "passwordDeviceBasedPush": "Password + Microsoft Authenticator (Phone Sign-in)",
+ "passwordFido2": "Password + FIDO 2 security key",
+ "passwordHardwareOath": "Password + Hardware OATH tokens",
+ "passwordMicrosoftAuthenticatorPSI": "Password + Microsoft Authenticator (Phone Sign-in)",
+ "passwordMicrosoftAuthenticatorPush": "Password + Microsoft Authenticator (Push Notification)",
+ "passwordSms": "Password + SMS",
+ "passwordSoftwareOath": "Password + Software OATH tokens",
+ "passwordTemporaryAccessPassMultiUse": "Password + Temporary Access Pass (Multi-use)",
+ "passwordTemporaryAccessPassOneTime": "Password + Temporary Access Pass (One-time use)",
+ "passwordVoice": "Password + Voice",
+ "sms": "SMS",
+ "smsEmail": "SMS + Email one-time passcode",
+ "smsSignIn": "SMS sign in",
+ "smsX509CertificateSingleFactor": "SMS + Certificate Based Authentication (Single Factor)",
+ "softwareOath": "Software OATH tokens",
+ "softwareOathEmail": "Software OATH tokens + Email one-time passcode",
+ "softwareOathX509CertificateSingleFactor": "Software OATH tokens + Certificate Based Authentication (Single Factor)",
+ "temporaryAccessPassMultiUse": "Temporary Access Pass (Multi-use)",
+ "temporaryAccessPassMultiUseX509CertificateSingleFactor": "Temporary Access Pass (Multi-use) + Certificate Based Authentication (Single Factor)",
+ "temporaryAccessPassOneTime": "Temporary Access Pass (One-time use)",
+ "temporaryAccessPassOneTimeX509CertificateSingleFactor": "Temporary Access Pass (One-time use) + Certificate Based Authentication (Single Factor)",
+ "voice": "Voice",
+ "voiceEmail": "Voice + Email one-time passcode",
+ "voiceX509CertificateSingleFactor": "Voice + Certificate Based Authentication (Single Factor)",
+ "windowsHelloForBusiness": "Windows Hello For Business",
+ "x509CertificateMultiFactor": "Certificate Based Authentication (Multi-Factor)",
+ "x509CertificateSingleFactor": "Certificate Based Authentication (Single Factor)"
+ }
+ },
+ "CAS": {
+ "BuiltinPolicy": {
+ "Option": {
+ "blockDownloads": "Block downloads (Preview)",
+ "monitorOnly": "Monitor only (Preview)",
+ "protectDownloads": "Protect downloads (Preview)",
+ "useCustomControls": "Use custom policy..."
+ },
+ "ariaLabel": "Choose the kind of Conditional Access App Control to apply"
+ }
+ },
+ "ChooseApplications": {
+ "Grid": {
+ "appIdAria": "App ID: {0}"
+ },
+ "LowerGrid": {
+ "ariaLabel": "List of selected cloud apps"
+ },
+ "UpperGrid": {
+ "ariaLabel": "List of cloud apps which match the search term"
+ }
+ },
+ "ChooseLocations": {
+ "Validation": {
+ "failed": "With \"Selected locations\" you must choose at least one location.",
+ "selector": "Choose at least one location"
+ }
+ },
+ "ClientApp": {
+ "Clients": {
+ "Validation": {
+ "failed": "You must select at least one of the following clients"
+ }
+ }
+ },
+ "ClientConditionsInfo": {
+ "browserAndModern": "This policy only applies to browser and modern authentication apps. To apply the policy to all client apps, enable the client app condition and select all the client apps.",
+ "classicExperience": "Since this policy was created, the default client apps configuration has been updated.",
+ "legacyAuth": "When not configured, policies now apply to all client apps, including modern and legacy auth."
+ },
+ "CloudAppFilterBlade": {
+ "AssignmentFilter": {
+ "header": "Attribute",
+ "placeholder": "Choose an attribute"
+ },
+ "Configure": {
+ "infoBalloon": "Configure app filters you want to policy to apply to."
+ },
+ "NoPermissions": {
+ "learnMoreAria": "More about custom security attribute permissions.",
+ "message": "You do not have the permissions needed to use custom security attributes."
+ },
+ "gridHeader": "Using custom security attributes you can use the rule builder or rule syntax text box to create or edit the filter rules. In the preview, only attributes of type String are supported. Attributes of type Integer or Boolean will not be shown.",
+ "learnMoreAria": "More information about using the rule builder and syntax text box.",
+ "noAttributes": "There are no custom attributes available to filter on. You will need to configure some attributes to employ this filter.",
+ "title": "Edit filter (Preview)"
+ },
+ "CloudAppsUserActions": {
+ "any": "Any cloud app or action",
+ "infoBalloon": "Cloud app or user action you want to test. For example, 'SharePoint Online'",
+ "learnMore": "Control access based on all or specific cloud apps or actions.",
+ "learnMoreB2C": "Control access based on all or specific cloud apps.",
+ "title": "Cloud apps or actions"
+ },
+ "CloudappsSelectionBlade": {
+ "Excluded": {
+ "gridAria": "List of excluded cloud apps"
+ },
+ "Filter": {
+ "configured": "Configured",
+ "label": "Edit filter (Preview)",
+ "with": "{0} with {1}"
+ },
+ "Included": {
+ "gridAria": "List of included cloud apps"
+ },
+ "Validation": {
+ "authContext": "With \"authentication context\" you must configure at least one sub-item.",
+ "selectApps": "\"{0}\" must be configured",
+ "selector": "Select at least one app.",
+ "userActions": "With \"User actions\" you must configure at least one sub-item."
+ }
+ },
+ "DeviceState": {
+ "LearnMore": {
+ "message": "Control user access when the device the user is signing-in from is not \"Hybrid Azure AD joined\" or \"marked as compliant\".\n This has been deprecated. Use '{1}' instead."
+ }
+ },
+ "Errors": {
+ "notFound": "The policy was not found or has been deleted.",
+ "notFoundDetailed": "The policy \"{0}\" no longer exists. It may have been deleted."
+ },
+ "GuestsOrExternalUsers": {
+ "allExternalTenantsLabel": "All Azure AD organizations",
+ "b2bCollaborationGuestLabel": "B2B collaboration guest users",
+ "b2bCollaborationMemberLabel": "B2B collaboration member users",
+ "b2bDirectConnectUserLabel": "B2B direct connect users",
+ "enumeratedExternalTenantsError": "Please select at least one external tenant",
+ "enumeratedExternalTenantsLabel": "Select Azure AD organizations",
+ "externalTenantsLabel": "Specify external Azure AD organizations",
+ "externalUserDropdownLabel": "Choose guest or external user types",
+ "externalUsersError": "Select at least one external guest or user type",
+ "guestOrExternalUsersInfoContent": "Includes B2B Collaboration, B2B direct connect and other types of external users.",
+ "guestOrExternalUsersLabel": "Guest or external users",
+ "internalGuestLabel": "Local guest users",
+ "otherExternalUserLabel": "Other external users"
+ },
+ "NamedLocation": {
+ "Form": {
+ "CountryLookup": {
+ "ariaLabel": "Country lookup method",
+ "gps": "Determine location by GPS coordinates",
+ "info": "When the location condition of a Conditional Access policy is configured, users will be prompted by the Authenticator app to share their GPS location. ",
+ "ip": "Determine location by IP address (IPv4 only)"
+ },
+ "Header": {
+ "new": "New location ({0})",
+ "update": "Update location ({0})"
+ },
+ "IP": {
+ "learn": "Configure named location IPv4 and IPv6 ranges.\n[Learn more][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
+ },
+ "Include": {
+ "infoBalloon": "Unknown countries/regions are IP addresses that are not associated with a specific country or region. [Learn more][1]\n\nThis includes:\n* IPv6 addresses\n* IPv4 addresses without a direct mapping\n[1]: https://aka.ms/canamedlocations\n",
+ "label": "Include unknown countries/regions"
+ },
+ "Name": {
+ "empty": "Name cannot be empty",
+ "placeholder": "Name this location"
+ },
+ "PrivateLink": {
+ "learn": "Create a new named location containing Private Links for Azure AD.\n[Learn more][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2084753"
+ },
+ "Search": {
+ "countries": "Search countries",
+ "names": "Search names",
+ "privateLinks": "Search Private Links"
+ },
+ "Trusted": {
+ "label": "Mark as trusted location"
+ },
+ "enter": "Enter a new IPv4 or IPv6 range",
+ "example": "ex: 40.77.182.32/27 or 2a01:111::/32"
+ },
+ "Label": {
+ "addCountries": "Countries location",
+ "addIpRange": "IP ranges location",
+ "addPrivateLink": "Azure Private Links"
+ },
+ "Notification": {
+ "Create": {
+ "Failed": {
+ "description": "Failure in creating new location ({0})",
+ "title": "Creation has failed"
+ },
+ "InProgress": {
+ "description": "Creating new location ({0})",
+ "title": "Creation in progress"
+ },
+ "Success": {
+ "description": "Success in creating new location ({0})",
+ "title": "Creation has succeeded"
+ }
+ },
+ "Delete": {
+ "Failed": {
+ "description": "Failure in deleting location ({0})",
+ "title": "Deletion has failed"
+ },
+ "InProgress": {
+ "description": "Deleting location ({0})",
+ "title": "Deletion in progress"
+ },
+ "Success": {
+ "description": "Success in deleting location ({0})",
+ "title": "Deletion has succeeded"
+ }
+ },
+ "Update": {
+ "Failed": {
+ "description": "Failure in updating location ({0})",
+ "title": "Updating has failed"
+ },
+ "InProgress": {
+ "description": "Updating location ({0})",
+ "title": "Updating in progress"
+ },
+ "Success": {
+ "description": "Success in updating location ({0})",
+ "title": "Updating has succeeded"
+ }
+ }
+ },
+ "PrivateLinks": {
+ "grid": "List of Private Links"
+ },
+ "Trusted": {
+ "title": "Trusted type",
+ "trusted": "Trusted"
+ },
+ "Type": {
+ "all": "All types",
+ "countries": "Countries",
+ "ipRanges": "IP ranges",
+ "privateLinks": "Private Links",
+ "title": "Location type"
+ },
+ "iPRangeInvalidError": "Value must be a valid IPv4 or IPv6 range.",
+ "iPRangeLinkOrSiteLocalError": "IP network detected as a link local or site local address.",
+ "iPRangeOctetError": "IP network must not start with 0 or 255.",
+ "iPRangePrefixError": "IP network prefix must be from /{0} to /{1}.",
+ "iPRangePrivateError": "IP network detected as a private address."
+ },
+ "NamedNetwork": {
+ "List": {
+ "gridAria": "List of named locations"
+ }
+ },
+ "Policies": {
+ "Grid": {
+ "aria": "List of Conditional Access policies"
+ },
+ "countText": "{0} out of {1} policies found",
+ "countTextSingular": "{0} out of 1 policy found",
+ "search": "Search policies"
+ },
+ "Policy": {
+ "Condition": {
+ "ServicePrincipalRisk": {
+ "description": "Configure service principal risk levels needed for policy to be enforced",
+ "infoBalloonContent": "Configure service principal risk to apply the policy to selected risk level(s)",
+ "title": "Service principal risk (Preview)"
+ }
+ }
+ },
+ "PolicyControlAuthStrength": {
+ "MultiFactorAuthentication": {
+ "description": "Combinations of methods that satisfy strong authentication, such as Password + SMS",
+ "displayName": "Multi-factor authentication (MFA)"
+ },
+ "Passwordless": {
+ "description": "Passwordless methods that satisfy strong authentication, such as Microsoft Authenticator ",
+ "displayName": "Passwordless MFA"
+ },
+ "PhishingResistant": {
+ "description": "Phishing-resistant Passwordless methods for the strongest authentication, such as FIDO2 Security Key",
+ "displayName": "Phishing resistant MFA"
+ }
+ },
+ "PolicyControlFedAuthMethod": {
+ "ariaLabel": "Learn more about requiring authentication methods satisfied by federation providers.",
+ "certificate": "Certificate authentication",
+ "infoBubble": "Specify a required authentication method, that must be satisfied by federation provider, such as ADFS.",
+ "multifactor": "Multi-factor authentication",
+ "require": "Require federated authentication method (Preview)",
+ "whatIfFormat": "{0} - {1}"
+ },
+ "PolicyState": {
+ "off": "Off",
+ "on": "On",
+ "reportOnly": "Report-only"
+ },
+ "PolicyTemplates": {
+ "Devices": {
+ "description": "Select Devices policy template category to gain visibility into devices accessing the network. Ensure compliance and health status before granting access.",
+ "name": "Devices"
+ },
+ "Identities": {
+ "description": "Select Identities policy template category to verify and secure each identity with strong authentication across your entire digital estate.",
+ "name": "Identities"
+ },
+ "Summary": {
+ "CloudApps": {
+ "allCloudApps": "All apps",
+ "office365": "Office 365",
+ "registerSecurityInfo": "Register security information"
+ },
+ "Conditions": {
+ "androidAndIOS": "Device Platform: Android and IOS",
+ "anyDevice": "Any device except Android, IOS, Windows and Mac",
+ "anyDeviceStateExceptHybrid": "Any device state except compliant and hybrid Azure AD joined",
+ "anyLocation": "Any location except trusted",
+ "browserMobileDesktop": "Client apps: Browser, Mobile apps and desktop clients",
+ "exchangeActiveSync": "Client Apps: Exchange Active Sync, Other Clients",
+ "windowsAndMac": "Device Platform: Windows and Mac"
+ },
+ "Devices": {
+ "anyDevice": "Any Device"
+ },
+ "Grant": {
+ "appProtectionPolicy": "Require app protection policy",
+ "approvedClientApp": "Require approved client app",
+ "blockAccess": "Block access",
+ "mfa": "Require multi-factor authentication",
+ "passwordChange": "Require password change",
+ "requireCompliantDevice": "Require device to be marked as compliant",
+ "requireHybridAzureADDevice": "Require hybrid Azure AD joined device"
+ },
+ "Session": {
+ "appEnforcedRestrictions": "Use app enforced restrictions",
+ "signInFrequency": "Sign-in Frequency and never persistent browser session"
+ },
+ "UsersAndGroups": {
+ "allUsers": "All Users",
+ "directoryRoles": "Directory roles except current administrator",
+ "globalAdmin": "Global Administrator",
+ "noGuestAndAdmins": "All Users except Guest and External, Global administrators, Current administrator"
+ },
+ "azureManagement": "Azure Management",
+ "deviceFilters": "Filters for devices",
+ "devicePlatforms": "Device Platforms"
+ },
+ "TemplateId": {
+ "AppEnforcedRestrictions": {
+ "description": "Block or limit access to SharePoint, OneDrive, and Exchange content from unmanaged devices.",
+ "name": "CA014: Use application enforced restrictions for unmanaged devices",
+ "title": "Use application enforced restrictions for unmanaged devices"
+ },
+ "ApprovedClientApps": {
+ "description": "To prevent data loss, organizations can restrict access to approved modern auth client apps with Intune app protection.",
+ "name": "CA012: Require approved client apps and app protection",
+ "title": "Require approved client apps and app protection"
+ },
+ "BlockAccessOnUnknowns": {
+ "description": "Users will be blocked from accessing company resources when the device type is unknown or unsupported.",
+ "name": "CA010: Block access for unknown or unsupported device platform",
+ "title": "Block access for unknown or unsupported device platform"
+ },
+ "BlockLegacyAuth": {
+ "description": "Block legacy authentication endpoints that can be used to bypass multi-factor authentication. ",
+ "name": "CA003: Block legacy authentication",
+ "title": "Block legacy authentication"
+ },
+ "NoPersistentBrowserSession": {
+ "description": "Protect user access on unmanaged devices by preventing browser sessions from remaining signed in after the browser is closed and setting a sign-in frequency to 1 hour.",
+ "name": "CA011: No persistent browser session",
+ "title": "No persistent browser session"
+ },
+ "RequireCompliantOrHybridADAdmins": {
+ "description": "Require privileged administrators to only access resources when using a compliant or hybrid Azure AD joined device.",
+ "name": "CA009: Require compliant or hybrid Azure AD joined device for admins",
+ "title": "Require compliant or hybrid Azure AD joined device for admins"
+ },
+ "RequireCompliantOrHybridADAllUsers": {
+ "description": "Protect access to company resources by requiring users to use a managed device or perform multi-factor authentication. (macOS or Windows only)",
+ "name": "CA013: Require compliant or hybrid Azure AD joined device or multi-factor authentication for all users",
+ "title": "Require compliant or hybrid Azure AD joined device or multi-factor authentication for all users"
+ },
+ "RequireMFAAllUsers": {
+ "description": "Require multi-factor authentication for all user accounts to reduce risk of compromise.",
+ "name": "CA004: Require multi-factor authentication for all users",
+ "title": "Require multi-factor authentication for all users"
+ },
+ "RequireMFAForAdmins": {
+ "description": "Require multi-factor authentication for privileged administrative accounts to reduce risk of compromise. This policy will target the same roles as Security Default.",
+ "name": "CA001: Require multi-factor authentication for admins",
+ "title": "Require multi-factor authentication for admins"
+ },
+ "RequireMFAForAzureManagement": {
+ "description": "Require multi-factor authentication to protect privileged access to Azure resources.",
+ "name": "CA006: Require multi-factor authentication for Azure management",
+ "title": "Require multi-factor authentication for Azure management"
+ },
+ "RequireMFAForGuestAccess": {
+ "description": "Require guest users perform multi-factor authentication when accessing your company resources.",
+ "name": "CA005: Require multi-factor authentication for guest access",
+ "title": "Require multi-factor authentication for guest access"
+ },
+ "RequireMFAForRiskySignIn": {
+ "description": "Require multi-factor authentication if the sign-in risk is detected to be medium or high. (Requires an Azure AD Premium 2 License)",
+ "name": "CA007: Require multi-factor authentication for risky sign-ins",
+ "title": "Require multi-factor authentication for risky sign-ins"
+ },
+ "RequirePasswordChangeForHighRiskUsers": {
+ "description": "Require the user to change their password if the user risk is detected to be high. (Requires an Azure AD Premium 2 License)",
+ "name": "CA008: Require password change for high-risk users",
+ "title": "Require password change for high-risk users"
+ },
+ "RequireSecurityInfo": {
+ "description": "Secure when and how users register for Azure AD multi-factor authentication and self-service password. ",
+ "name": "CA002: Securing security info registration",
+ "title": "Securing security info registration"
+ }
+ },
+ "TemplateState": {
+ "BlockAccessOnUnknowns": {
+ "title": "Enabling this policy will prevent any access from unknown device type, consider using report only mode to begin with until you have confirmed this will not impact your users."
+ },
+ "BlockLegacyAuth": {
+ "description": "Consider using report only mode to begin with until you have confirmed this will not impact your users.",
+ "title": "Enabling this policy will block legacy authentication for all your users."
+ },
+ "RequireCompliantOrHybridADAdmins": {
+ "Description": {
+ "on": "Consider using report only mode to begin with until you have confirmed this will not impact your privileged users.",
+ "reportOnly": "Policies in report-only mode that require compliant devices may prompt users on Mac, iOS, and Android to select a device certificate during policy evaluation, even though device compliance is not enforced. These prompts may repeat until the device is made compliant."
+ },
+ "Title": {
+ "on": "Enabling this policy will prevent any access for privileged users unless using a managed device such as compliant or hybrid Azure AD joined. Ensure you have configured your compliance policies or enabled hybrid Azure AD configuration before enabling.",
+ "reportOnly": "Ensure you have configured your compliance policies or enabled hybrid Azure AD configuration before enabling. "
+ }
+ },
+ "RequireCompliantOrHybridADAllUsers": {
+ "Description": {
+ "on": "This policy will affect all users except the current logged in Administrator. Consider using report only mode to begin with until you have confirmed this will not impact your users."
+ },
+ "Title": {
+ "on": "Don't lock yourself out! Make sure that your device is compliant, or hybrid Azure AD Joined or you have configured multi-factor authentication. ",
+ "reportOnly": "Policies in report-only mode that require compliant devices may prompt users on Mac, iOS, and Android to select a device certificate during policy evaluation, even though device compliance is not enforced. These prompts may repeat untli the device is made compliant."
+ }
+ },
+ "RequireMfa": {
+ "description": "If you use emergency access accounts or Azure AD connect to synchronize your on-premises objects, you may need to exclude these accounts from this policy after creation."
+ },
+ "RequireMfaAdmins": {
+ "description": "Please note the current administrator account will automatically be excluded but all others will be protected on policy creation. Consider using report only mode to begin with.",
+ "title": "Don't lock yourself out! This policy impacts the Azure portal."
+ },
+ "RequireMfaAllUsers": {
+ "description": "Consider using report only mode to begin with until you have planned and communicated this change to all your users.",
+ "title": "Enabling this policy will enforce multi-factor authentication for all your users."
+ },
+ "RequireSecurityInfo": {
+ "description": "Please ensure you review your configuration to protect these accounts based on your company needs.",
+ "title": "The following users and roles are excluded from this policy, Guests and External Users, Global Administrators, Current Administrator"
+ }
+ },
+ "basics": "Basics",
+ "clientApps": "Client apps",
+ "cloudApps": "Cloud apps",
+ "cloudAppsOrActions": "Cloud apps or actions ",
+ "conditions": "Conditions ",
+ "createNewPolicy": "Create new policy from templates (Preview)",
+ "createPolicy": "Create Policy",
+ "currentUser": "Current user",
+ "customizeBuild": "Customize your build",
+ "customizeTemplate": "Template lists are customized based on the type of policy you're looking to create",
+ "excludedDevicePlatform": "Excluded device platforms",
+ "excludedDirectoryRoles": "Excluded directory roles",
+ "excludedLocation": "Excluded directory roles",
+ "excludedUsers": "Excluded users",
+ "grantControl": "Grant control ",
+ "includeFilteredDevice": "Include filtered devices in policy",
+ "includedDevicePlatform": "Included device platforms",
+ "includedDirectoryRoles": "Included directory roles",
+ "includedLocation": "Included location",
+ "includedUsers": "Included users",
+ "legacyAuthenticationClients": "Legacy authentication clients",
+ "namePolicy": "Name your policy",
+ "next": "Next",
+ "policyName": "Policy Name",
+ "policyState": "Policy state",
+ "policySummary": "Policy summary",
+ "policyTemplate": "Policy template",
+ "previous": "Previous",
+ "reviewAndCreate": "Review + create",
+ "riskLevels": "Risk levels",
+ "selectATemplate": "Select a Template",
+ "selectTemplate": "Select template",
+ "selectTemplateCategory": "Select a template category",
+ "selectTemplateRecommendation": "We recommend the following templates based on your response",
+ "sessionControl": "Session control ",
+ "signInFrequency": "Sign-in frequency",
+ "signInRisk": "Sign-in risk",
+ "template": "Template ",
+ "templateCategory": "Template category",
+ "userRisk": "User risk",
+ "usersAndGroups": "Users and groups ",
+ "viewPolicySummary": "View policy summary "
+ },
+ "SSM": {
+ "MemberSelector": {
+ "description": "Users and groups"
+ },
+ "Notification": {
+ "Migration": {
+ "error": "Failed to migrate Continuous access evaluation settings to Conditional access policies",
+ "inProgress": "Migrating Continuous access evaluation settings",
+ "success": "Successfully migrated Continuous access evaluation settings to Conditional access policies",
+ "successDescription": "Please proceed to Conditional access policies to view the migrated settings in the newly created policy named \"CA policy created from CAE settings\"."
+ },
+ "error": "Failed to update Continuous access evaluation settings",
+ "inProgress": "Updating Continuous access evaluation settings",
+ "success": "Successfully updated Continuous access evaluation settings"
+ },
+ "PreviewOptions": {
+ "disable": "Disable preview",
+ "enable": "Enable preview"
+ },
+ "StrictLocationEnforcement": {
+ "infoContent1": "Different IPs can be seen by Azure AD and Resource Provider from the same client device due to network partition or IPv4/IPv6 mismatch. Strict Location Enforcement will enforce the Conditional Access policy based on both IP addresses seen by Azure AD and Resource Provider.",
+ "infoContent2": "To ensure maximum security, it is recommended to include all IPs that can be seen by both Azure AD and Resource Provider in your Named Location policy and turn on \"Strict Location Enforcement\" mode.",
+ "label": "Strict Location Enforcement",
+ "title": "Additional enforcement modes"
+ },
+ "bladeTitle": "Continuous access evaluation",
+ "description": "When a user's access is removed or a client IP address changes, Continuous access evaluation automatically blocks access to resources and applications in near real time. ",
+ "migrateLabel": "Migrate",
+ "migrationError": "Migration failed due to the following error: {0}",
+ "migrationInfo": "CAE setting has been moved under Conditional Access UX, please migrate with the “Migrate” button above and configure it with Conditional Access policy going forward. Click here to learn more.",
+ "noLicenseMessage": "Manage smart session management settings with Azure AD Premium",
+ "optionsPickerTitle": "Enable/Disable Continuous access evaluation",
+ "upsellInfo": "You cannot change your settings on this page anymore and any settings here should be disregarded. Your previous setting will be honored. You can configure your CAE settings under Conditional Access going forward. Click here to learn more."
+ },
+ "SelectOrganizations": {
+ "Blade": {
+ "Lower": {
+ "gridAria": "List of selected organizations"
+ },
+ "Upper": {
+ "gridAria": "List of available organizations"
+ },
+ "description": "Add an Azure AD organization by typing one of its domain names.",
+ "notFoundResult": "Not found",
+ "searchBoxPlaceholder": "Tenant ID or domain name",
+ "subTitle": "Azure AD organization"
+ },
+ "Selector": {
+ "AdditionalDetails": {
+ "aria": "Organization ID: {0}"
+ },
+ "DisplayText": {
+ "multiple": "{0} Azure AD organizations selected",
+ "single": "1 Azure AD organization selected"
+ },
+ "gridAria": "List of selected organizations"
+ }
+ },
+ "SessionLifetime": {
+ "PersistentBrowser": {
+ "Error": {
+ "notAllApps": "Persistent browser session policy only works correctly when \"All cloud apps\" is selected. Please update your cloud apps selection."
+ },
+ "Option": {
+ "always": "Always persistent",
+ "help": "A persistent browser session allows users to remain signed in after closing and reopening their browser window.
\n\n- This setting works correctly when \"All cloud apps\" are selected
\n- This does not affect token lifetimes or the sign-in frequency setting.
\n- This will override the \"Show option to stay signed in\" policy in Company Branding.
\n- \"Never persistent\" will override any persistent SSO claims passed in from federated authentication services.
\n- \"Never persistent\" will prevent SSO on mobile devices across applications and between applications and the user's mobile browser.
\n",
+ "label": "Persistent browser session",
+ "never": "Never persistent"
+ },
+ "Warning": {
+ "allApps": "Persistent browser session only works correctly when All cloud apps is selected. Please change your cloud apps selection. Click here to learn more."
+ }
+ },
+ "SignInFrequency": {
+ "Aria": {
+ "units": "Hours or days",
+ "value": "Frequency"
+ },
+ "Option": {
+ "Day": {
+ "plural": "{0} days",
+ "singular": "1 day"
+ },
+ "Hour": {
+ "plural": "{0} hours",
+ "singular": "1 hour"
+ },
+ "daysOption": "Days",
+ "everytime": "Every time",
+ "help": "Time period before a user is asked to sign-in again when attempting to access a resource. The default setting is a rolling window of 90 days, i.e. users will be asked to re-authenticate on the first attempt to access a resource after being inactive on their machine for 90 days or longer.",
+ "hoursOption": "Hours",
+ "label": "Sign-in frequency",
+ "placeholder": "Select units"
+ }
+ },
+ "mainOption": "Modify session lifetime",
+ "mainOptionHelp": "Configure how often users will get prompted and whether browser sessions will be persisted. Applications that don't support modern authentication protocols might not honor these policies. In such cases please contact the application developer."
+ },
+ "SigninRisk": {
+ "LearnMore": {
+ "message": "Control user access to respond to specific sign-in risk levels."
+ }
+ },
+ "SingleSelectorActive": {
+ "failed": "Unable to load this data.",
+ "reattempt": "Loading data. Reattempt {0} of {1}."
+ },
+ "TimeCondition": {
+ "Errors": {
+ "both": "Invalid \"Include\" or \"Exclude\" time range.",
+ "daysOfWeek": "{0} Make sure to specify at least one day of the week.",
+ "endBeforeStart": "{0} Make sure start date/time is earlier than end date/time.",
+ "exclude": "Invalid \"Exclude\" time range.",
+ "generic": "{0} Make sure both days of the week and time zone are set. If \"All day\" is not checked, start time and end time need to be set as well.",
+ "include": "Invalid \"Include\" time range.",
+ "timeMissing": "{0} Make sure to specify both a start and end time.",
+ "timeZone": "{0} Make sure to specify a time zone.",
+ "timesAndZone": "{0} Make sure you set start time, end time and time zone."
+ }
+ },
+ "UserActions": {
+ "Included": {
+ "none": "No cloud apps or actions selected",
+ "plural": "{0} user actions included",
+ "singular": "1 user action included"
+ },
+ "accessRequirement1": "Level 1",
+ "accessRequirement2": "Level 2",
+ "accessRequirement3": "Level 3",
+ "accessRequirementsLabel": "Accessing secured app data",
+ "appsActionsAuthTitle": "Cloud apps, actions, or authentication context",
+ "appsOrActionsSelectorInfoBallonText": "Applications accessed or user actions",
+ "appsOrActionsTitle": "Cloud apps or actions",
+ "label": "User actions",
+ "mainOptionsLabel": "Select what this policy applies to",
+ "registerOrJoinDevices": "Register or join devices",
+ "registerSecurityInfo": "Register security information",
+ "selectionInfo": "Select the action this policy will apply to",
+ "whatIf": "User action included"
+ },
+ "UserSelectionBlade": {
+ "DirectoryRoles": {
+ "ariaLabel": "Choose directory roles"
+ },
+ "Excluded": {
+ "gridAria": "List of excluded users"
+ },
+ "Included": {
+ "gridAria": "List of included users"
+ },
+ "Validation": {
+ "customRoleIncluded": "\"Directory Roles\" includes at least one custom role",
+ "customRoleSelected": "At least one custom role is selected",
+ "failed": "\"{0}\" must be configured",
+ "roles": "Select at least one role",
+ "usersGroups": "Select at least one user or group"
+ },
+ "learnMore": "Control access based on who the policy will apply to, such as users and groups, workload identities, directory roles, or external guests."
+ },
+ "ValidationResult": {
+ "blockEveryonePolicy": "Policy configuration not supported. Review the assignments and controls.",
+ "invalidApplicationCondition": "Invalid cloud applications selected",
+ "invalidClientTypesCondition": "Invalid client apps selected",
+ "invalidConditions": "Assignments are not selected",
+ "invalidControls": "Invalid controls selected",
+ "invalidDevicePlatformsCondition": "Invalid device platforms selected",
+ "invalidDevicesCondition": "Invalid device configuration. Likely an invalid \"{0}\" configuration.",
+ "invalidGrantControlPolicy": "Invalid grant control",
+ "invalidLocationsCondition": "Invalid locations selected",
+ "invalidPolicy": "Assignments are not selected",
+ "invalidSessionControlPolicy": "Invalid session control",
+ "invalidSignInRisksCondition": "Invalid sign-in risk selected",
+ "invalidUserRisksCondition": "Invalid user risk selected",
+ "invalidUsersCondition": "Invalid users selected",
+ "mamPolicyShouldOnlyTargetAndroidOrIosPlatforms": "MAM policy can only be applied to Android or iOS client platforms.",
+ "notSupportedCombination": "Policy configuration is not supported. Learn more about supported policies.",
+ "pending": "Validating policy",
+ "requireComplianceEveryonePolicy": "Policy configuration will require device compliance for all users. Review the assignments selected.",
+ "success": "Valid policy"
+ },
+ "VpnCert": {
+ "Grid": {
+ "aria": "List of VPN Certificates"
+ }
+ },
+ "WarningsInfo": {
+ "Controls": {
+ "compliantDeviceEnabled": "Don't lock yourself out! Make sure that your device is compliant.",
+ "domainJoinedDeviceEnabled": "Don't lock yourself out! Make sure that your device is Hybrid Azure AD Joined.",
+ "exchangeDisabled": "Exchange ActiveSync only supports \"Compliant device\" and \"Approved client app\" controls. Click to learn more.",
+ "exchangeDisabled2": "Exchange ActiveSync only supports \"Compliant device\", \"Approved client app\" and \"Compliant client app\" controls. Click to learn more.",
+ "notAvailableForSP": "Some controls are not available due to '{0}' selection in policy assignment",
+ "requireAuthOrMfa": "\"{0}\" cannot be used with \"{1}\"",
+ "requireMfa": "Consider testing the new \"{0}\" public preview",
+ "requirePasswordChangeEnabled": "\"Require password change\" can only be used when policy is assigned to \"All cloud apps\""
+ },
+ "Policies": {
+ "Linux": {
+ "devicePlatformsReportOnlyPolicy": "Policies in Report-only mode requiring compliant devices may prompt users on macOS, iOS, Android, and Linux to select a device certificate.",
+ "excludeDevicePlatforms": "Exclude device platforms macOS, iOS, Android, and Linux from this policy.",
+ "proceedAnywayDevicePlatforms": "Proceed with selected configuration. Users on macOS, iOS, Android, and Linux may receive prompts when the device is checked for compliance."
+ },
+ "blockCurrentUserPolicy": "Don't lock yourself out! We recommend applying a policy to a small set of users first to verify it behaves as expected. We also recommend excluding at least one administrator from this policy. This ensures that you still have access and can update a policy if a change is required. Please review the affected users and apps.",
+ "devicePlatformsReportOnlyPolicy": "Policies in Report-only mode requiring compliant devices may prompt users on macOS, iOS, and Android to select a device certificate.",
+ "excludeCurrentUserSelection": "Exclude current user, {0}, from this policy.",
+ "excludeDevicePlatforms": "Exclude device platforms macOS, iOS, and Android from this policy.",
+ "proceedAnywayDevicePlatforms": "Proceed with selected configuration. Users on macOS, iOS, and Android may receive prompts when the device is checked for compliance.",
+ "proceedAnywaySelection": "I understand that my account will be impacted by this policy. Proceed anyway."
+ },
+ "ServicePrincipals": {
+ "blockExchange": "Selecting Office 365 Exchange Online will also affect apps such as OneDrive and Teams.",
+ "blockPortal": "Don't lock yourself out! This policy impacts the Azure portal. Before you continue, ensure that you or someone else will be able to get back into the portal.",
+ "blockPortalWithSession": "Don't lock yourself out! This policy impacts the Azure portal. Before you continue, ensure that you or someone else will be able to get back into the portal.
Disregard this warning if you are configuring persistent browser session policy that works correctly only if \"All cloud apps\" are selected.",
+ "blockSharePoint": "Selecting SharePoint Online will also affect apps such as Microsoft Teams, Planner, Delve, MyAnalytics, and Newsfeed.",
+ "blockSkype": "Selecting Skype for Business Online will also affect Microsoft Teams.",
+ "includeOrExclude": "You can configure the App Filter for '{0}' or '{1}', but not both.",
+ "selectAppsNAForSP": "Individual cloud apps cannot be selected due to '{0}' selection in policy assignment",
+ "teamsBlocked": "Microsoft Teams will also be affected when apps such as SharePoint Online and Exchange Online are included in policy."
+ },
+ "Users": {
+ "blockAllUsers": "Don't lock yourself out! This policy will affect all of your users. We recommend applying a policy to a small set of users first to verify it behaves as expected."
+ }
+ },
+ "WhatIf": {
+ "Device": {
+ "AttributesGrid": {
+ "aria": "List of attributes on the device employed during sign-in.",
+ "infoBalloon": "List of attributes on the device employed during sign-in."
+ }
+ }
+ },
+ "advancedTabText": "Advanced",
+ "allCloudAppsErrorBox": "\"All cloud apps\" must be selected when \"Require password change\" grant is selected",
+ "allCloudAppsReauth": "\"All cloud apps\" must be selected when \"Sign-in frequency every time\" session control and \"sign-in risk\" condition are selected",
+ "allCloudOrSpecificApps": "The \"sign-in frequency every time\" session control requires \"all cloud apps\" or specifically-supported apps to be selected",
+ "allDayCheckboxLabel": "All day",
+ "allDevicePlatforms": "Any device",
+ "allGuestUserInfoContent": "Includes Azure AD B2B guests, but not SharePoint B2B guests",
+ "allGuestUserLabel": "All guest and external users",
+ "allRiskLevelsOption": "All risk levels",
+ "allTrustedLocationLabel": "All trusted locations",
+ "allUserGroupSetSelectorLabel": "All users and groups selected",
+ "allUsersReauth": "The \"sign-in frequency every time\" session control requires \"All Users\" to be selected",
+ "allUsersString": "All users",
+ "and": "{0} AND {1} ",
+ "andWithGrouping": "({0}) AND {1} ",
+ "androidDisplayName": "Android",
+ "anyCloudAppSelection": "Any cloud app",
+ "appContextOptionInfoContent": "Requested authentication tag",
+ "appContextOptionLabel": "Requested authentication tag (Preview)",
+ "appContextUriPlaceholder": "Example: uri:contoso.com:level3",
+ "appEnforceInfoBubble": "App enforced restrictions might require additional admin configurations within the cloud apps. The restrictions will only take effect for new sessions.",
+ "appNotSetSeletorLabel": "0 cloud apps selected",
+ "applyConditionClientAppInfoBalloonContent": "Configure client apps to apply the policy to specific client apps",
+ "applyConditionDevicePlatformInfoBalloonContent": "Configure device platforms to apply the policy to specific platforms",
+ "applyConditionDeviceStateInfoBalloonContent": "Configure device state to apply the policy to specific device state(s)",
+ "applyConditionLocationInfoBalloonContent": "Configure locations to apply the policy to trusted/untrusted locations",
+ "applyConditionSigninRiskInfoBalloonContent": "Configure sign-in risk to apply the policy to selected risk level(s)",
+ "applyConditionUserRiskInfoBalloonContent": "Configure user risk to apply the policy to selected risk level(s)",
+ "applyConditonLabel": "Configure",
+ "ariaLabelPolicyDisabled": "Policy is disabled",
+ "ariaLabelPolicyEnabled": "Policy is enabled",
+ "ariaLabelPolicyReportOnly": "Policy is in Report-only mode",
+ "blockAccess": "Block access",
+ "builtInDirectoryRoleLabel": "Built-in directory roles",
+ "casCustomControlInfo": "Custom policies need to be configured in Cloud App Security portal. This control works instantly for featured apps and can be self onboarded for any app. Click here to learn more about both scenarios.",
+ "casInfoBubble": "This control works for various cloud apps.",
+ "casPreconfiguredControlInfo": "This control works instantly for featured apps and can be self onboarded for any app. Click here to learn more about both scenarios.",
+ "cert64DownloadCol": "Download base64 certificate",
+ "cert64Name": "VpnBase64Cert",
+ "certDownloadCol": "Download certificate",
+ "certDurationCol": "Expiry",
+ "certDurationStartCol": "Valid from",
+ "certName": "VpnCert",
+ "certainApps": "Only specifically-supported apps are enabled for \"Sign-in frequency every time\" if \"Require multi-factor authentication\" and \"Require password change\" grants are not selected",
+ "chooseApplicationsBladeSubtitle": "",
+ "chooseApplicationsBladeTitle": "Choose Applications",
+ "chooseApplicationsCartSubitle": "",
+ "chooseApplicationsCartTitle": "Chosen Applications",
+ "chooseApplicationsEmpty": "No Applications",
+ "chooseApplicationsNone": "None",
+ "chooseApplicationsNoneFound": "We didn't find \"{0}\". Try another name or ID.",
+ "chooseApplicationsPlural": "{0} and {1} more",
+ "chooseApplicationsReAuthEverytimeInfo": "Looking for your app? Some applications cannot be used with \"Require reauthentication – every time\" session control",
+ "chooseApplicationsRemove": "Remove",
+ "chooseApplicationsReturnedPlural": "{0} applications found",
+ "chooseApplicationsReturnedSingular": "1 application found",
+ "chooseApplicationsSearchBalloon": "Search for an Application by entering its name or ID.",
+ "chooseApplicationsSearchHint": "Search Applications...",
+ "chooseApplicationsSearchLabel": "Applications",
+ "chooseApplicationsSearching": "Searching...",
+ "chooseApplicationsSelect": "Select",
+ "chooseApplicationsSelected": "Selected",
+ "chooseApplicationsSingular": "{0} and 1 more",
+ "chooseApplicationsTooMany": "More results than can be shown. Please filter using the search box.",
+ "chooseLocationCorpnetItem": "Corporate network",
+ "chooseLocationSelectedLocationsLabel": "Selected locations",
+ "chooseLocationTrustedIpsItem": "MFA Trusted IPs",
+ "chooseLocationsBladeSubtitle": "",
+ "chooseLocationsBladeTitle": "Choose Locations",
+ "chooseLocationsCartSubitle": "",
+ "chooseLocationsCartTitle": "Chosen Locations",
+ "chooseLocationsEmpty": "No Locations",
+ "chooseLocationsExcludedSelectorTitle": "Select",
+ "chooseLocationsIncludedSelectorTitle": "Select",
+ "chooseLocationsNone": "None",
+ "chooseLocationsNoneFound": "We didn't find \"{0}\". Try another name or ID.",
+ "chooseLocationsPlural": "{0} and {1} more",
+ "chooseLocationsRemove": "Remove",
+ "chooseLocationsReturnedPlural": "{0} locations found",
+ "chooseLocationsReturnedSingular": "1 location found",
+ "chooseLocationsSearchBalloon": "Search for a Location by entering its name.",
+ "chooseLocationsSearchHint": "Search Locations...",
+ "chooseLocationsSearchLabel": "Locations",
+ "chooseLocationsSearching": "Searching...",
+ "chooseLocationsSelect": "Select",
+ "chooseLocationsSelected": "Selected",
+ "chooseLocationsSelectionBladeExcludedSelectorTitle": "Select",
+ "chooseLocationsSelectionBladeIncludedSelectorTitle": "Select",
+ "chooseLocationsSingular": "{0} and 1 more",
+ "chooseLocationsTooMany": "More results than can be shown. Please filter using the search box.",
+ "claimProviderAddCommandText": "New custom control",
+ "claimProviderAddNewBladeTitle": "New custom control",
+ "claimProviderDeleteCommand": "Delete",
+ "claimProviderDeleteDescription": "Are you sure you want to delete '{0}'? This action cannot be undone.",
+ "claimProviderDeleteTitle": "Are you sure?",
+ "claimProviderEditInfoText": "Enter the JSON for customized controls given by your claim providers.",
+ "claimProviderNotificationCreateDescription": "Creating custom control named '{0}'",
+ "claimProviderNotificationCreateFailedDescription": "Creating custom control '{0}' failed. Please try again later.",
+ "claimProviderNotificationCreateFailedTitle": "Failed to create custom control",
+ "claimProviderNotificationCreateSuccessDescription": "Created custom control named '{0}'",
+ "claimProviderNotificationCreateSuccessTitle": "Created '{0}'",
+ "claimProviderNotificationCreateTitle": "Creating '{0}'",
+ "claimProviderNotificationDeleteDescription": "Deleting custom control named '{0}'",
+ "claimProviderNotificationDeleteFailedDescription": "Deleting custom control '{0}' failed. Please try again later.",
+ "claimProviderNotificationDeleteFailedTitle": "Failed to delete custom control",
+ "claimProviderNotificationDeleteSuccessDescription": "Deleted custom control named '{0}'",
+ "claimProviderNotificationDeleteSuccessTitle": "Deleted '{0}'",
+ "claimProviderNotificationDeleteTitle": "Deleting '{0}'",
+ "claimProviderNotificationUpdateDescription": "Updating custom control named '{0}'",
+ "claimProviderNotificationUpdateFailedDescription": "Updating custom control '{0}' failed. Please try again later.",
+ "claimProviderNotificationUpdateFailedTitle": "Failed to update custom control",
+ "claimProviderNotificationUpdateSuccessDescription": "Updated custom control named '{0}'",
+ "claimProviderNotificationUpdateSuccessTitle": "Updated '{0}'",
+ "claimProviderNotificationUpdateTitle": "Updating '{0}'",
+ "claimProviderValidationAppIdInvalid": "The \"AppId\" value is not valid. Please review and try again.",
+ "claimProviderValidationClientIdMissing": "The data is missing a \"ClientId\" value. Please review and try again.",
+ "claimProviderValidationControlClaimsRequestedMissing": "The \"Control\" is missing a \"ClaimsRequested\" value. Please review and try again.",
+ "claimProviderValidationControlClaimsRequestedTypeMissing": "The \"ClaimsRequested\" item is missing a \"Type\" value. Please review and try again.",
+ "claimProviderValidationControlIdAlreadyExists": "The \"Control\" \"Id\" value already exists. Please review and try again.",
+ "claimProviderValidationControlIdMissing": "The \"Control\" is missing an \"Id\" value. Please review and try again.",
+ "claimProviderValidationControlIdReferencedInExistingPolicy": "The \"Control\" \"Id\" value cannot be removed because it is referenced in an existing policy. Please remove it from the policy first.",
+ "claimProviderValidationControlIdTooManyControls": "The \"Control\" property has too many controls. Please review and try again.",
+ "claimProviderValidationControlIdValueReserved": "The \"Control\" \"Id\" value is a reserved keyword, please use a different id.",
+ "claimProviderValidationControlNameAlreadyExists": "The \"Control\" \"Name\" value already exists. Please review and try again.",
+ "claimProviderValidationControlNameMissing": "The \"Control\" is missing a \"Name\" value. Please review and try again.",
+ "claimProviderValidationControlsMissing": "The data is missing a \"Controls\" value. Please review and try again.",
+ "claimProviderValidationDiscoveryUrlMissing": "The data is missing a \"DiscoveryUrl\" value. Please review and try again.",
+ "claimProviderValidationInvalid": "There data provided is not valid. Please review and try again.",
+ "claimProviderValidationInvalidJsonDefinition": "Unable to save the custom control. Review the JSON text and try again.",
+ "claimProviderValidationNameAlreadyExists": "The \"Name\" value already exists. Please review and try again.",
+ "claimProviderValidationNameMissing": "The data is missing a \"Name\" value. Please review and try again.",
+ "claimProviderValidationUnknown": "There was an unknown error while validating the data provided. Please review and try again.",
+ "claimProvidersNone": "No custom controls",
+ "claimProvidersSearchPlaceholder": "Search controls.",
+ "classicPoilcyFilterTitle": "Show",
+ "classicPolicyAllPlatforms": "All Platforms",
+ "classicPolicyClientAppBrowserAndNative": "Browser, mobile apps and desktop clients",
+ "classicPolicyCloudAppTitle": "Cloud application",
+ "classicPolicyControlAllow": "Allow",
+ "classicPolicyControlBlock": "Block",
+ "classicPolicyControlBlockWhenNotAtWork": "Block access when not at work",
+ "classicPolicyControlRequireCompliantDevice": "Require compliant device",
+ "classicPolicyControlRequireDomainJoinedDevice": "Require domain joined device",
+ "classicPolicyControlRequireMfa": "Require multi-factor authentication",
+ "classicPolicyControlRequireMfaWhenNotAtWork": "Require multi-factor authentication when not at work",
+ "classicPolicyDeleteCommand": "Delete",
+ "classicPolicyDeleteFailTitle": "Failed to delete classic policy",
+ "classicPolicyDeleteInProgressTitle": "Deleting classic policy",
+ "classicPolicyDeleteSuccessTitle": "Classic policy deleted",
+ "classicPolicyDetailBladeTitle": "Details",
+ "classicPolicyDisableCommand": "Disable",
+ "classicPolicyDisableConfirmation": "Are you sure you want to disable '{0}'? This action cannot be undone.",
+ "classicPolicyDisableFailDescription": "Failed to disable '{0}'",
+ "classicPolicyDisableFailTitle": "Failed to disable classic policy",
+ "classicPolicyDisableInProgressDescription": "Disabling '{0}'",
+ "classicPolicyDisableInProgressTitle": "Disabling classic policy",
+ "classicPolicyDisableSuccessDescription": "Successfully disabled '{0}'",
+ "classicPolicyDisableSuccessTitle": "Classic policy disabled",
+ "classicPolicyEasSupportedPlatforms": "Exchange ActiveSync supported platforms",
+ "classicPolicyEasUnsupportedPlatforms": "Exchange ActiveSync unsupported platforms",
+ "classicPolicyExcludedPlatformsTitle": "Excluded device platforms",
+ "classicPolicyFilterAll": "All policies",
+ "classicPolicyFilterDisabled": "Disabled policies",
+ "classicPolicyFilterEnabled": "Enabled policies",
+ "classicPolicyIncludeExcludeMembersDescription": "By excluding groups, you can perform phased migration of policies.",
+ "classicPolicyIncludeExcludeMembersTitle": "Include/exclude groups",
+ "classicPolicyIncludedPlatformsTitle": "Included device platforms",
+ "classicPolicyManualMigrationMessage": "This policy needs to be migrated manually.",
+ "classicPolicyMigrateCommand": "Migrate",
+ "classicPolicyMigrateConfirmation": "Are you sure you want to migrate '{0}'? This policy can only be migrated once.",
+ "classicPolicyMigrateFailDescription": "Failed to migrate '{0}'",
+ "classicPolicyMigrateFailTitle": "Failed to migrate classic policy",
+ "classicPolicyMigrateInProgressDescription": "Migrating '{0}'",
+ "classicPolicyMigrateInProgressTitle": "Migrating classic policy",
+ "classicPolicyMigrateRecommendText": "Recommendation: Migrate to the new Azure portal policies.",
+ "classicPolicyMigrateSuccessTitle": "Classic policy migrated successfully",
+ "classicPolicyMigratedSuccessDescription": "This classic policy can now be managed under Polices.",
+ "classicPolicyMigratedSuccessDescriptionMultiple": "This classic policy is migrated as {0} new policies. New policies can be managed under Policies.",
+ "classicPolicyNoEditPermissionMsg": "You don't have permission to edit this policy. Only global administrators and security administrators can edit the policy. Click here for more information.",
+ "classicPolicySaveFailDescription": "Failed to save '{0}'",
+ "classicPolicySaveFailTitle": "Failed to save classic policy",
+ "classicPolicySaveInProgressDescription": "Saving '{0}'",
+ "classicPolicySaveInProgressTitle": "Saving classic policy",
+ "classicPolicySaveSuccessDescription": "Successfully saved '{0}'",
+ "classicPolicySaveSuccessTitle": "Classic policy saved",
+ "clientAppBladeLegacyInfoBanner": "Legacy auth is currently not supported",
+ "clientAppBladeLegacyUpsellBanner": "Block unsupported client apps (Preview)",
+ "clientAppBladeTitle": "Client apps",
+ "clientAppDescription": "Select the client apps this policy will apply to",
+ "clientAppExchangeActiveSync": "Exchange ActiveSync",
+ "clientAppExchangeDisabledInfo": "Exchange ActiveSync is available when Exchange Online is the only cloud app selected. Click to learn more",
+ "clientAppExchangeWarning": "Exchange ActiveSync currently does not support all other conditions",
+ "clientAppLearnMore": "Control user access to target specific client applications not using modern authentication.",
+ "clientAppLegacyHeader": "Legacy authentication clients",
+ "clientAppMobileDesktop": "Mobile apps and desktop clients",
+ "clientAppModernHeader": "Modern authentication clients",
+ "clientAppOnlySupportedPlatforms": "Apply policy only to supported platforms",
+ "clientAppSelectSpecificClientApps": "Select client apps",
+ "clientAppV2BladeTitle": "Client apps (Preview)",
+ "clientAppWebBrowser": "Browser",
+ "clientAppsSelectedLabel": "{0} included",
+ "clientTypeBrowser": "Browser",
+ "clientTypeEas": "Exchange ActiveSync clients",
+ "clientTypeEasInfo": "Exchange ActiveSync clients that use legacy authentication only.",
+ "clientTypeModernAuth": "Modern authentication clients",
+ "clientTypeOtherClients": "Other clients",
+ "clientTypeOtherClientsInfo": "This includes older office clients and other mail protocols(POP, IMAP, SMTP, etc). [Learn more][1]\n[1]: https://aka.ms/caclientapps\n",
+ "cloudAppCountDiffBannerText": "{0} cloud apps configured in this policy have been deleted from the directory, but this doesn't affect the other apps in the policy. The next time you update the application section of the policy, the deleted apps will be automatically removed from it.",
+ "cloudAppsSelectionBladeAllMicrosoftApps": "All Microsoft apps",
+ "cloudAppsSelectionExcludeAllMicrosoftClients": "Allow Microsoft cloud, desktop and mobile apps (Preview)",
+ "cloudappsSelectionBladeAllCloudapps": "All cloud apps",
+ "cloudappsSelectionBladeExcludeDescription": "Select the cloud apps to exempt from the policy",
+ "cloudappsSelectionBladeExcludedSelectorTitle": "Select excluded cloud apps",
+ "cloudappsSelectionBladeIncludeDescription": "Select the cloud apps this policy will apply to",
+ "cloudappsSelectionBladeIncludedSelectorTitle": "Select",
+ "cloudappsSelectionBladeSelectedCloudapps": "Select apps",
+ "cloudappsSelectorInfoBallonText": "Services which the user accesses to do work. For example, 'Salesforce'",
+ "cloudappsSelectorPluralExcluded": "{0} apps excluded",
+ "cloudappsSelectorPluralIncluded": "{0} apps included",
+ "cloudappsSelectorSingularExcluded": "1 app excluded",
+ "cloudappsSelectorSingularIncluded": "1 app included",
+ "cloudappsSelectorUserPlural": "{0} apps",
+ "cloudappsSelectorUserSingular": "1 app",
+ "conditionLabelMulti": "{0} conditions selected",
+ "conditionLabelOne": "1 condition selected",
+ "conditionalAccessBladeTitle": "Conditional Access",
+ "conditionsNotSelectedLabel": "Not configured",
+ "conditionsReqMfaReauthSet": "Some options are not available due to the \"Require multi-factor authentication\" grant and \"sign-in frequency every time\" session control currently being selected",
+ "conditionsReqPwSet": "Some options are not available due to the \"Require password change\" grant currently being selected",
+ "configureCasText": "Configure Cloud App Security",
+ "configureCustomControlsText": "Configure custom policy",
+ "controlLabelMulti": "{0} controls selected",
+ "controlLabelOne": "1 control selected",
+ "controlValidatorText": "Please select at least one control",
+ "controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
+ "controlsDeviceComplianceAriaLabel": "Learn more about requiring compliant devices.",
+ "controlsDeviceComplianceInfoBubble": "Device must be Intune compliant. If the device is non-compliant, the user will be prompted to bring the device under compliance.",
+ "controlsDomainJoinedAriaLabel": "Learn more about requiring hybrid Azure AD joined devices.",
+ "controlsDomainJoinedInfoBubble": "Devices must be Hybrid Azure AD joined.",
+ "controlsMamAriaLabel": "Learn more about requiring approved client applications.",
+ "controlsMamInfoBubble": "Device must use these approved client applications.",
+ "controlsMfaInfoBubble": "User must complete additional security requirements like phone call, text",
+ "controlsOrAndInfoBubble": "ControlsOrAndInfoBubble",
+ "controlsRequireCompliantAppAriaLabel": "Learn more about requiring policy protected apps.",
+ "controlsRequireCompliantAppInfoBubble": "Device must use policy protected apps.",
+ "controlsRequirePasswordResetAriaLabel": "Learn more about requiring a password change.",
+ "controlsRequirePasswordResetInfoBubble": "Require password change to lower user risk. This option also requires multi-factor authentication. Other controls can't be used.",
+ "countriesRadiobuttonInfoBalloonContent": "The country/region a sign-in is coming from is determined by the user's IP address.",
+ "createNewVpnCert": "New certificate",
+ "createdTimeLabel": "Creation time",
+ "customRoleLabel": "Custom roles (not supported)",
+ "dateRangeTypeLabel": "Date range",
+ "daysOfWeekPlaceholderText": "Filter days of the week",
+ "daysOfWeekTypeLabel": "Days of the week",
+ "deletePolicyNoLicenseText": "You can delete this policy now. Once deleted you will not be able to recreate it until you have the required licenses.",
+ "descriptionContentForControlsAndOr": "For multiple controls",
+ "devicePlatform": "Device platform",
+ "devicePlatformConditionHelpDescription": "Apply policy to selected device platforms.\n[Learn more][1]\n[1]: https://go.microsoft.com/fwlink/?linkid=2044750",
+ "devicePlatformInclude": "{0} included",
+ "devicePlatformIncludeExclude": "{0} and {1} excluded",
+ "devicePlatformNoSelectionError": "Select device platforms requires one sub-item to be selected.",
+ "devicePlatformsNone": "None",
+ "deviceSelectionBladeExcludeDescription": "Select the platforms to exempt from the policy",
+ "deviceSelectionBladeIncludeDescription": "Select the device platforms to include in this policy",
+ "deviceStateAll": "All device state",
+ "deviceStateCompliant": "Device marked as compliant",
+ "deviceStateCompliantInfoContent": "Devices that are Intune compliant will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Intune compliant.",
+ "deviceStateConditionConfigureInfoContent": "Configure policy based on device state",
+ "deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Hybrid Azure AD joined' or 'marked as compliant'.\n This has been deprecated. Use '{1}' instead.",
+ "deviceStateConditionSelectorLabel": "Device state (deprecated)",
+ "deviceStateDomainJoined": "Device Hybrid Azure AD joined",
+ "deviceStateDomainJoinedInfoContent": "Devices that are Hybrid Azure AD joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Hybrid Azure AD joined.",
+ "deviceStateDomainJoinedInfoLinkText": "Learn more.",
+ "deviceStateExcludeDescription": "Select the device state condition used to exclude devices from policy.",
+ "deviceStateIncludeAndExcludeOneLabel": "{0} and exclude {1}",
+ "deviceStateIncludeAndExcludeTwoLabel": "{0} and exclude {1}, {2}",
+ "directoryRoleInfoContent": "Assign policy to built-in directory roles.",
+ "directoryRolesLabel": "Directory roles",
+ "discardbutton": "Discard",
+ "downloadDefaultFileName": "IP Ranges",
+ "downloadExampleFileName": "Example",
+ "downloadExampleHeader": "This is an example file with demonstrations of the kinds of data which can be accepted. Lines starting with # will be ignored.",
+ "endDatePickerLabel": "Ends",
+ "endTimePickerLabel": "End time",
+ "enterCountryText": "IP address and Country are evaluated in a pair. Select the Country.",
+ "enterIpText": "IP address and Country are evaluated in a pair. Input the IP address.",
+ "enterUserText": "No user is selected. Select a user.",
+ "evaluationResult": "Evaluation result",
+ "exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
+ "exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync with supported platforms only",
+ "excludeAllTrustedLocationSelectorText": "all trusted locations",
+ "featureRequiresP2": "This feature requires Azure AD Premium 2 license.",
+ "friday": "Friday",
+ "grantControls": "Grant controls",
+ "gridNetworkTrusted": "Trusted",
+ "gridPolicyCreatedDateTime": "Creation Date",
+ "gridPolicyEnabled": "Enabled",
+ "gridPolicyModifiedDateTime": "Modified Date",
+ "gridPolicyName": "Policy Name",
+ "gridPolicyState": "State",
+ "groupSelectionBladeExcludeDescription": "Select the groups to exempt from the policy",
+ "groupSelectionBladeExcludedSelectorTitle": "Select excluded groups",
+ "groupSelectionBladeSelect": "Select groups",
+ "groupSelectorInfoBallonText": "Groups in the directory that the policy applies to. For example, 'Pilot group'",
+ "groupsSelectionBladeTitle": "Groups",
+ "helpCommonScenariosText": "Interested in common scenarios?",
+ "helpCondition1": "When any user is outside the company network",
+ "helpCondition2": "When users in the 'Managers' group sign-in",
+ "helpConditionsTitle": "Conditions",
+ "helpControl1": "They're required to sign in with multi-factor authentication",
+ "helpControl2": "They are required be on an Intune compliant or domain-joined device",
+ "helpControlsTitle": "Controls",
+ "helpIntroText": "Conditional Access gives you the ability to enforce access requirements when specific conditions occur. Let's take a few examples",
+ "helpIntroTitle": "What is Conditional Access?",
+ "helpLearnMoreText": "Want to learn more about Conditional Access?",
+ "helpStartStep1": "Create your first policy by clicking \"+ New policy\"",
+ "helpStartStep2": "Specify policy Conditions and Controls",
+ "helpStartStep3": "When you are done, don't forget to Enable policy and Create",
+ "helpStartTitle": "Get started",
+ "highRisk": "High",
+ "includeAndExcludeAppsTextFormat": "Include: {0}. Exclude: {1}.",
+ "includeAppsTextFormat": "Include: {0}.",
+ "includeUnknownAreasCheckboxInfoBalloonContent": "Unknown areas are IP addresses that can't be mapped to a country/region.",
+ "includeUnknownAreasCheckboxLabel": "Include unknown areas",
+ "infoCommandLabel": "Info",
+ "invalidCertDuration": "Invalid cert duration",
+ "invalidIpAddress": "Value must be a valid IP address",
+ "invalidUriErrorMsg": "Please enter a valid Uri. For example,'uri:contoso.com:acr' ",
+ "iosDisplayName": "iOS",
+ "linuxDisplayName": "Linux",
+ "loadAll": "Load all",
+ "loading": "Loading...",
+ "locationConfigureNamedLocationsText": "Configure all trusted locations",
+ "locationConfigureNamedLocationsUri": "{0}/usermanagement/mfasettings.aspx?tenantid={1}&culture={2}",
+ "locationNameTooLongError": "Location name is too long. Maximum is 256 characters",
+ "locationSelectionBladeExcludeDescription": "Select the locations to exempt from the policy",
+ "locationSelectionBladeIncludeDescription": "Select the locations to include in this policy",
+ "locationsAllLocationsLabel": "Any location",
+ "locationsAllNamedLocationsLabel": "All trusted IPs",
+ "locationsAllPrivateLinksLabel": "All Private Links in my tenant",
+ "locationsIncludeExcludeLabel": "{0} and exclude all trusted IPs",
+ "locationsSelectedPrivateLinksLabel": "Selected Private Links",
+ "lowRisk": "Low",
+ "macOsDisplayName": "macOS",
+ "managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Azure AD Premium P1 or P2.",
+ "markAsTrustedCheckboxInfoBalloonContent": "Signing in from a trusted location lowers a user's sign-in risk. Only mark this location as trusted if you know the IP ranges entered are established and credible in your organization.",
+ "markAsTrustedCheckboxLabel": "Mark as trusted location",
+ "mediumRisk": "Medium",
+ "memberSelectionCommandRemove": "Remove",
+ "menuItemClaimProviderControls": "Custom controls (Preview)",
+ "menuItemClassicPolicies": "Classic policies",
+ "menuItemInsightsAndReporting": "Insights and reporting",
+ "menuItemManage": "Manage",
+ "menuItemNamedLocationsPreview": "Named locations (Preview)",
+ "menuItemNamedNetworks": "Named locations",
+ "menuItemPolicies": "Policies",
+ "menuItemTermsOfUse": "Terms of use",
+ "modifiedTimeLabel": "Modified time",
+ "monday": "Monday",
+ "nameLabel": "Name",
+ "namedLocationCountryInfoBanner": "Only IPv4 addresses are mapped to countries/regions. IPv6 addresses are included in unknown countries/regions.",
+ "namedLocationTypeCountry": "Countries/Regions",
+ "namedLocationTypeLabel": "Define the location using:",
+ "namedLocationUpsellBanner": "This view has been deprecated. Go to the new and improved 'Named locations' view.",
+ "namedLocationsHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/namedlocationupdate",
+ "namedNetworkAddIpRanges": "Add a new IP range (ex: 40.77.182.32/27)",
+ "namedNetworkCountryNeeded": "You need to select at least one country",
+ "namedNetworkDeleteCommand": "Delete",
+ "namedNetworkDeleteDescription": "Are you sure you want to delete '{0}'? This action cannot be undone.",
+ "namedNetworkDeleteTitle": "Are you sure?",
+ "namedNetworkDownloadIpRange": "Download",
+ "namedNetworkInvalidRange": "Value must be a valid IP range.",
+ "namedNetworkIpRangeNeeded": "You need at least one valid IP range",
+ "namedNetworkIpRangesDescriptionContent": "Configure your organization's IP ranges",
+ "namedNetworkIpRangesTab": "IP ranges",
+ "namedNetworkListAdd": "New location",
+ "namedNetworkListConfigureTrustedIps": "Configure MFA trusted IPs",
+ "namedNetworkNameDescription": "Example: 'Redmond office'",
+ "namedNetworkNameInvalid": "The supplied name is invalid.",
+ "namedNetworkNameRequired": "You must supply a name for this location.",
+ "namedNetworkNoIpRanges": "No IP ranges",
+ "namedNetworkNotificationCreateDescription": "Creating location named '{0}'",
+ "namedNetworkNotificationCreateFailedDescription": "Creating location '{0}' failed. Please try again later.",
+ "namedNetworkNotificationCreateFailedTitle": "Failed to create location",
+ "namedNetworkNotificationCreateSuccessDescription": "Created location named '{0}'",
+ "namedNetworkNotificationCreateSuccessTitle": "Created '{0}'",
+ "namedNetworkNotificationCreateTitle": "Creating '{0}'",
+ "namedNetworkNotificationDeleteDescription": "Deleting location named '{0}'",
+ "namedNetworkNotificationDeleteFailedDescription": "Deleting location '{0}' failed. Please try again later.",
+ "namedNetworkNotificationDeleteFailedTitle": "Failed to Delete location",
+ "namedNetworkNotificationDeleteSuccessDescription": "Deleted location named '{0}'",
+ "namedNetworkNotificationDeleteSuccessTitle": "Deleted '{0}'",
+ "namedNetworkNotificationDeleteTitle": "Deleting '{0}'",
+ "namedNetworkNotificationUpdateDescription": "Updating location named '{0}'",
+ "namedNetworkNotificationUpdateFailedDescription": "Updating location '{0}' failed. Please try again later.",
+ "namedNetworkNotificationUpdateFailedTitle": "Failed to Update location",
+ "namedNetworkNotificationUpdateSuccessDescription": "Updated location named '{0}'",
+ "namedNetworkNotificationUpdateSuccessTitle": "Updated '{0}'",
+ "namedNetworkNotificationUpdateTitle": "Updating '{0}'",
+ "namedNetworkSearchPlaceholder": "Search locations.",
+ "namedNetworkUploadFailedDescription": "There was an error parsing the supplied file. Please make sure to upload a plain-text file with each line in the CIDR format.",
+ "namedNetworkUploadFailedTitle": "Failed to parse '{0}'",
+ "namedNetworkUploadInProgressDescription": "Attempting to parse valid CIDR values from '{0}'.",
+ "namedNetworkUploadInProgressTitle": "Parsing '{0}'",
+ "namedNetworkUploadInvalidDescription": "'{0}' is either too large or in an invalid format.",
+ "namedNetworkUploadInvalidTitle": "'{0}' Invalid",
+ "namedNetworkUploadIpRange": "Upload",
+ "namedNetworkUploadSuccessDescription": "{0} lines analyzed. {1} in a bad format. {2} skipped.",
+ "namedNetworkUploadSuccessTitle": "Finished parsing '{0}'",
+ "namedNetworksAdd": "New named location",
+ "namedNetworksConditionHelpDescription": "Control user access based on their physical location.\n[Learn more][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
+ "namedNetworksExcludeLabel": "{0} and {1} excluded",
+ "namedNetworksHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
+ "namedNetworksIncludeLabel": "{0} included",
+ "namedNetworksNone": "No named locations found.",
+ "namedNetworksTitle": "Configure locations",
+ "namednetworkExceedingSizeErrorBladeTitle": "Error details",
+ "namednetworkExceedingSizeErrorDetailText": "Click here for more details.",
+ "namednetworkExceedingSizeErrorMessage": "You have exceeded the maximum allowed storage for named locations. Try again with a shorter list. Click here to view more details.",
+ "needMfaSecondary": "\"Require multi-factor authentication\" must be selected when \"Sign-in frequency every time\" is selected with \"Secondary authentication methods only\"",
+ "newCertName": "new cert",
+ "noAttributePermissionsError": "Insufficient privileges to create or update policy. Attribute definition reader role is required to add/edit dynamic filters.",
+ "noPolicyRowMessage": "No policies",
+ "noSPSelected": "No service principal selected",
+ "noUpdatePermissionMessage": "You don't have permissions to update these settings. Please contact your global administrator to get access.",
+ "noUserSelected": "No user selected",
+ "noneRisk": "No risk",
+ "office365Description": "These apps include Microsoft Flow, Microsoft Forms, Microsoft Teams, Office 365 Exchange Online, Office 365 SharePoint Online, Office 365 Yammer, and others.",
+ "office365InfoBox": "At least one of the apps selected is part of Office 365. We recommend setting the policy on the Office 365 app instead.",
+ "oneUserSelected": "1 user selected",
+ "onlyGlobalAdminsCanSaveThisPolicyConfig": "Only global administrators can save this policy.",
+ "or": "{0} OR {1} ",
+ "pickerDoneCommand": "Done",
+ "policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like Cloud apps, Sign-in risk, and Device platforms with Azure AD Premium",
+ "policiesBladeTitle": "Policies",
+ "policiesBladeTitleWithAppName": "Policies: {0}",
+ "policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked sign-on attribute.",
+ "policiesHitMaxLimitStatusBarMessage": "You've reached the maximum number of policies for this tenant. Delete some policies before creating more.",
+ "policyAssignmentsSection": "Assignments",
+ "policyBlockAllInfoBox": "The configured policy will block all users, so it is not supported. Review the assignments and controls. Exclude the current user {0}, if you would like to save this policy.",
+ "policyCloudAppsDisplayTextAllApp": "All apps",
+ "policyCloudAppsLabel": "Cloud apps",
+ "policyConditionClientAppDescription": "Software the user is employing to access the cloud app. For example, 'Browser'",
+ "policyConditionClientAppV2Description": "Software the user is employing to access the cloud app. For example, 'Browser'",
+ "policyConditionDevicePlatform": "Device platforms",
+ "policyConditionDevicePlatformDescription": "Platform the user is signing in from. For example, 'iOS'",
+ "policyConditionLocation": "Locations",
+ "policyConditionLocationDescription": "Location (determined using IP address range) the user is signing in from",
+ "policyConditionSigninRisk": "Sign-in risk",
+ "policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Azure AD Premium 2 license.",
+ "policyConditionUserRisk": "User risk",
+ "policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
+ "policyConditioniClientApp": "Client apps",
+ "policyConditioniClientAppV2": "Client apps (Preview)",
+ "policyControlAllowAccessDisplayedName": "Grant access",
+ "policyControlAuthenticationStrengthDisplayedName": "Require authentication strength (Preview)",
+ "policyControlBladeTitle": "Grant",
+ "policyControlBlockAccessDisplayedName": "Block access",
+ "policyControlCompliantDeviceDisplayedName": "Require device to be marked as compliant",
+ "policyControlContentDescription": "Control access enforcement to block or grant access.",
+ "policyControlInfoBallonText": "Block access or select additional requirements which need to be satisfied to allow access",
+ "policyControlMfaChallengeDisplayedName": "Require multi-factor authentication",
+ "policyControlRequireCompliantAppDisplayedName": "Require app protection policy",
+ "policyControlRequireDomainJoinedDisplayedName": "Require Hybrid Azure AD joined device",
+ "policyControlRequireMamDisplayedName": "Require approved client app",
+ "policyControlRequiredPasswordChangeDisplayedName": "Require password change",
+ "policyControlSelectAuthStrength": "Require authentication strength",
+ "policyControlsNoControlsSelected": "0 controls selected",
+ "policyControlsSection": "Access controls",
+ "policyCreatBladeTitle": "New",
+ "policyCreateButton": "Create",
+ "policyCreateFailedMessage": "Error: {0}",
+ "policyCreateFailedTitle": "Failed to create '{0}'",
+ "policyCreateInProgressTitle": "Creating '{0}'",
+ "policyCreateSuccessMessage": "Successfully created '{0}'. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
+ "policyCreateSuccessTitle": "Successfully created '{0}'",
+ "policyDeleteConfirmation": "Are you sure you want to delete '{0}'? This action cannot be undone.",
+ "policyDeleteFailTitle": "Failed to delete '{0}'",
+ "policyDeleteInProgressTitle": "Deleting '{0}'",
+ "policyDeleteSuccessTitle": "Successfully deleted '{0}'",
+ "policyEnforceLabel": "Enable policy",
+ "policyErrorCannotSetSigninRisk": "You don't have permission to save a policy with a sign-in risk condition.",
+ "policyErrorNoPermission": "You don't have permission to save policy. Contact your global admin.",
+ "policyErrorUnknown": "Something went wrong, please try again later.",
+ "policyFallbackWarningMessage": "Failure to create or update '{0}' using MS Graph resulting in a fallback to AD Graph. Please investigate the following scenario as there is most likely a bug when calling the policy endpoint for MS Graph with an incompatible condition.",
+ "policyFallbackWarningTitle": "Creating or updating '{0}' partially successful",
+ "policyNameCannotBeEmpty": "Policy name can't be empty",
+ "policyNameDevice": "Device policy",
+ "policyNameFormat": "[{0}] {1}",
+ "policyNameMam": "Mobile App Management policy",
+ "policyNameMfaLocation": "MFA and location policy",
+ "policyNamePlaceholderText": "Example: 'Device compliance app policy'",
+ "policyNameTooLongError": "Policy name is too long. Maximum 256 characters",
+ "policyOff": "Off",
+ "policyOn": "On",
+ "policyReportOnly": "Report-only",
+ "policyReviewSection": "Review",
+ "policySaveButton": "Save",
+ "policyStatusIconDescription": "Policy is Enabled",
+ "policyStatusIconEnabled": "Enabled status icon",
+ "policyTemplateName1": "Use app enforced restrictions for {0} browser access",
+ "policyTemplateName2": "Allow {0} access only on managed devices",
+ "policyTemplateName3": "Policy migrated from Continuous Access Evaluation settings",
+ "policyTriggerRiskSpecific": "Select specific risk level",
+ "policyTriggersInfoBalloonText": "Conditions which define when the policy will apply. For example, 'location'",
+ "policyTriggersNoConditionsSelected": "0 conditions selected",
+ "policyTriggersSelectorLabel": "Conditions",
+ "policyUpdateFailedMessage": "Error: {0}",
+ "policyUpdateFailedTitle": "Failed to update {0}",
+ "policyUpdateInProgressTitle": "Updating {0}",
+ "policyUpdateSuccessMessage": "Successfully updated {0}. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
+ "policyUpdateSuccessTitle": "Successfully updated {0}",
+ "primaryCol": "Primary",
+ "privateLinkLabel": "Azure AD Private Link",
+ "reportOnlyInfoBox": "Report-only mode: Policies are evaluated and logged at sign-in but do not impact users.",
+ "requireAllControlsText": "Require all the selected controls",
+ "requireCompliantDevice": "Require compliant device",
+ "requireDomainJoined": "Require domain-joined device",
+ "requireGrantReauth": "The \"sign-in frequency every time\" session control requires a \"require multi-factor authentication\" or \"require password change\" grant control when \"All cloud apps\" is selected",
+ "requireMFA": "Require multi-factor authentication ",
+ "requireMfaReauth": "The \"sign-in frequency every time\" session control requires the \"require multi-factor authentication\" grant control for \"sign-in risk\"",
+ "requireOneControlText": "Require one of the selected controls",
+ "requirePasswordChangeReauth": "The \"sign-in frequency every time\" session control requires the \"require password change\" grant control for \"user risk\"",
+ "requireRiskReauth": "The \"sign-in frequency every time\" session control requires the \"user risk\" or \"sign-in risk\" session control when \"all cloud apps\" is selected.",
+ "resetFilters": "Reset filters",
+ "sPRequired": "Service principal required",
+ "sPSelectorInfoBalloon": "User or Service Principal you want to test",
+ "saturday": "Saturday",
+ "searchTextTooLongError": "The search text is too long. Maximum 256 characters",
+ "securityDefaultsPolicyName": "Security defaults",
+ "securityDefaultsTextMessage": "Security defaults must be disabled to enable Conditional Access policy.",
+ "securityDefaultsWarningMessage": "It looks like you're about to manage your organization's security configurations. That's great! You must first disable Security defaults before enabling a Conditional Access policy.",
+ "selectDevicePlatforms": "Select device platforms",
+ "selectNamedNetworksSubtitle": "",
+ "selectNamedNetworksTitle": "Select locations",
+ "selectedSP": "Selected Service Principal",
+ "servicePrincipalDataGridAria": "List of available service principals",
+ "servicePrincipalDropDownLabel": "What does this policy apply to?",
+ "servicePrincipalInfoBox": "Some conditions are not available due to '{0}' selection in policy assignment",
+ "servicePrincipalRadioAll": "All owned service principals",
+ "servicePrincipalRadioSelect": "Select service principals",
+ "servicePrincipalSelectionsAria": "Selected service principals grid",
+ "servicePrincipalSelectorAria": "List of chosen service principals",
+ "servicePrincipalSelectorMultiple": "{0} service principals selected",
+ "servicePrincipalSelectorSingle": "1 service principal selected",
+ "servicePrincipalSpecificInc": "Specific service principals included",
+ "servicePrincipals": "Service principals",
+ "sessionControlBladeTitle": "Session",
+ "sessionControlDescriptionContent": "Control access based on session controls to enable limited experiences within specific cloud applications.",
+ "sessionControlDisableInfo": "This control only works with supported apps. Currently, Office 365, Exchange Online, and SharePoint Online are the only cloud apps that support app enforced restrictions. Click here to learn more.",
+ "sessionControlInfoBallonText": "Session controls enable limited experience within a cloud app.",
+ "sessionControls": "Session controls",
+ "sessionControlsAppEnforcedLabel": "Use app enforced restrictions",
+ "sessionControlsCasLabel": "Use Conditional Access App Control",
+ "sessionControlsSecureSignInLabel": "Require token binding",
+ "sharepointAppName": "SharePoint",
+ "signinRiskDescription": "Select the sign-in risk level this policy will apply to",
+ "signinRiskInclude": "{0} included",
+ "signinRiskReauth": "\"Sign-in risk\" condition must be selected when \"Require multi-factor authentication\" grant and \"sign-in frequency every time\" session control are selected",
+ "signinRiskTriggerDescriptionContent": "Select the sign-in risk level",
+ "singleTenantServicePrincipalInfoBallonText": "Policy only applies to single tenant service principals owned by your organization. Click here to learn more ",
+ "specificSigninRiskLevelsOption": "Select specific sign-in risk levels",
+ "specificUsersExcluded": "specific users excluded",
+ "specificUsersIncluded": "Specific users included",
+ "specificUsersIncludedAndExcluded": "Specific users excluded and included",
+ "startDatePickerLabel": "Starts",
+ "startFreeTrial": "Start a free trial",
+ "startTimePickerLabel": "Start time",
+ "sunday": "Sunday",
+ "testButton": "What If",
+ "thumbprintCol": "Thumbprint",
+ "thursday": "Thursday",
+ "timeConditionAllTimesLabel": "Any time",
+ "timeConditionIntroText": "Configure the time this policy will apply to",
+ "timeConditionSelectorInfoBallonContent": "When the user is signing in. For example, \"Wednesday 9am-5pm PST\"",
+ "timeConditionSelectorLabel": "Time (Preview)",
+ "timeConditionSpecificLabel": "Specific times",
+ "timeSelectorAllTimesText": "Any time",
+ "timeSelectorSpecificTimesText": "Specific times configured",
+ "timeZoneDropdownInfoBalloonContent": "Select a time zone that defines the time range. This policy applies to users in all time zones. For example, 'Wednesday 9am - 5pm' for one user would be 'Wednesday 10am - 6pm' for a user in a different time zone.",
+ "timeZoneDropdownLabel": "Time zone",
+ "timeZoneDropdownPlaceholderText": "Select a time zone",
+ "tooManyPoliciesDescription": "Only first 50 policies are being displayed now, click here to view all policies",
+ "tooManyPoliciesTitle": "More than 50 policies found",
+ "trustedLocationStatusIconDescription": "Location is trusted",
+ "trustedLocationStatusIconEnabled": "Trusted status icon",
+ "tuesday": "Tuesday",
+ "uploadInBadState": "Unable to upload the specified file.",
+ "upsellAppsDescription": "Require multi-factor authentication for sensitive applications all the time or only from outside the company network.",
+ "upsellAppsTitle": "Secure applications",
+ "upsellBannerText": "Get a free Premium trial to use this feature",
+ "upsellDataDescription": "Require device to be marked as compliant or Hybrid Azure AD joined to allow access to company resources.",
+ "upsellDataTitle": "Secure data",
+ "upsellDescription": "Conditional Access provides the control and protection you need to keep your corporate data secure, while giving your people an experience that allows them to do their best work from any device. For instance, you can restrict access from outside the company network or restrict access to devices which meet the compliance policies.",
+ "upsellRiskDescription": "Require multi-factor authentication for risk events detected by Microsoft's machine learning system.",
+ "upsellRiskTitle": "Protect against risk",
+ "upsellTitle": "Conditional Access",
+ "upsellWhyTitle": "Why use Conditional Access?",
+ "userAppNoneOption": "None",
+ "userNamePlaceholderText": "Enter User Name",
+ "userNotSetSeletorLabel": "0 users and groups selected",
+ "userOnlySelectionBladeExcludeDescription": "Select the users to exempt from the policy",
+ "userOrGroupSelectionCountDiffBannerText": "{0} configured in this policy have been deleted from the directory, but this doesn't affect the other users and groups in the policy. The next time you update the policy, the deleted users and/or groups will be automatically removed.",
+ "userOrSPNotSetSelectorLabel": "0 users or workload identities selected",
+ "userOrSPSelectionBladeTitle": "Users or workload identities",
+ "userOrSPSelectorInfoBallonText": "Identities in the directory that the policy applies to, including users, groups, and service principals",
+ "userRequired": "User Required",
+ "userRiskErrorBox": "\"User risk\" condition must be selected when \"Require password change\" grant is selected",
+ "userRiskReauth": "\"User risk\" condition and not \"Sign-in risk\" must be selected when \"Require password change\" grant and \"Sign-in frequency every time\" session control are selected",
+ "userSPRequired": "User or Service principal required",
+ "userSPSelectorTitle": "User or Workload identity",
+ "userSelectionBladeAllUsersAndGroups": "All users and groups",
+ "userSelectionBladeExcludeDescription": "Select the users and groups to exempt from the policy",
+ "userSelectionBladeExcludeTabTitle": "Exclude",
+ "userSelectionBladeExcludedSelectorTitle": "Select excluded users",
+ "userSelectionBladeIncludeDescription": "Select the users this policy will apply to",
+ "userSelectionBladeIncludeTabTitle": "Include",
+ "userSelectionBladeIncludedSelectorTitle": "Select",
+ "userSelectionBladeSelectUsers": "Select users",
+ "userSelectionBladeSelectedUsers": "Select users and groups",
+ "userSelectionBladeTitle": "Users and groups",
+ "userSelectorBladeTitle": "Users",
+ "userSelectorExcluded": "{0} excluded",
+ "userSelectorGroupPlural": "{0} groups",
+ "userSelectorGroupSingular": "1 group",
+ "userSelectorIncluded": "{0} included",
+ "userSelectorInfoBallonText": "Users and groups in the directory that the policy applies to. For example, 'Pilot group'",
+ "userSelectorSelected": "{0} selected",
+ "userSelectorTitle": "User",
+ "userSelectorUserAndGroup": "{0}, {1}",
+ "userSelectorUserPlural": "{0} users",
+ "userSelectorUserSingular": "1 user",
+ "userSelectorWithExclusion": "{0} and {1}",
+ "usersGroupsLabel": "Users and groups",
+ "viewApprovedAppsText": "See list of approved client apps",
+ "viewCompliantAppsText": "See list of policy protected client apps",
+ "vpnBladeTitle": "VPN connectivity",
+ "vpnCertCreateFailedMessage": "Error: {0}",
+ "vpnCertCreateFailedTitle": "Failed to create {0}",
+ "vpnCertCreateInProgressTitle": "Creating {0}",
+ "vpnCertCreateSuccessMessage": "Successfully created {0}.",
+ "vpnCertCreateSuccessTitle": "Successfully created {0}",
+ "vpnCertNoRowsMessage": "No VPN certificates found",
+ "vpnCertUpdateFailedMessage": "Error: {0}",
+ "vpnCertUpdateFailedTitle": "Failed to update {0}",
+ "vpnCertUpdateInProgressTitle": "Updating {0}",
+ "vpnCertUpdateSuccessMessage": "Successfully updated {0}.",
+ "vpnCertUpdateSuccessTitle": "Successfully updated {0}",
+ "vpnFeatureInfo": "For more information on VPN connectivity and Conditional Access, click here.",
+ "vpnFeatureWarning": "Once a VPN certificate is created in the Azure portal, Azure AD will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
+ "vpnMenuText": "VPN connectivity",
+ "vpncertDropdownDefaultOption": "Duration",
+ "vpncertDropdownInfoBalloonContent": "Select the duration for the cert you want to create",
+ "vpncertDropdownLabel": "Select duration",
+ "vpncertDropdownOneyearOption": "1 year",
+ "vpncertDropdownThreeyearOption": "3 years",
+ "vpncertDropdownTwoyearOption": "2 years",
+ "wednesday": "Wednesday",
+ "whatIfAppEnforcedControl": "Use app enforced restrictions",
+ "whatIfBladeDescription": "Test the impact of Conditional Access on a user when signing in under certain conditions.",
+ "whatIfBladeTitle": "What If",
+ "whatIfClassicPoliciesWarning": "Classic policies are not evaluated by this tool.",
+ "whatIfClientAppInfo": "The client app the user is signing in from. For example, 'Browser'.",
+ "whatIfCountry": "Country",
+ "whatIfCountryInfo": "The country the user is signing in from.",
+ "whatIfDevicePlatformInfo": "The device platform the user is signing in from.",
+ "whatIfDeviceStateInfo": "The device state the user is signing in from",
+ "whatIfEnterIpAddress": "Enter IP address (ex: 40.77.182.32)",
+ "whatIfErrorInvalidIpAddress": "An invalid IP address was specified.",
+ "whatIfEvaResultApplication": "Cloud apps",
+ "whatIfEvaResultClientApps": "Client app",
+ "whatIfEvaResultDevicePlatform": "Device platform",
+ "whatIfEvaResultEmptyPolicy": "Empty policy",
+ "whatIfEvaResultInvalidCondition": "Invalid condition",
+ "whatIfEvaResultInvalidPolicy": "Invalid policy",
+ "whatIfEvaResultLocation": "Location",
+ "whatIfEvaResultNotEnoughInformation": "Not enough information",
+ "whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
+ "whatIfEvaResultSignInRisk": "Sign-in risk",
+ "whatIfEvaResultUsers": "Users and groups",
+ "whatIfIpAddress": "IP address",
+ "whatIfIpAddressInfo": "IP address the user is signing in from.",
+ "whatIfIpCountryInfoBoxText": "If using an IP address or Country, both fields will be required and should correctly map together.",
+ "whatIfPolicyAppliesTab": "Policies that will apply",
+ "whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
+ "whatIfReasons": "Reasons why this policy will not apply",
+ "whatIfSelectClientApp": "Select a client app...",
+ "whatIfSelectCountry": "Select country...",
+ "whatIfSelectDevicePlatform": "Select device platform...",
+ "whatIfSelectPrivateLink": "Select private link...",
+ "whatIfSelectServicePrincipalRisk": "Select service principal risk...",
+ "whatIfSelectSignInRisk": "Select sign-in risk...",
+ "whatIfSelectType": "Select identity type",
+ "whatIfSelectUserRisk": "Select user risk...",
+ "whatIfServicePrincipalRiskInfo": "The risk level associated with the service principal",
+ "whatIfSignInRisk": "Sign-in risk",
+ "whatIfSignInRiskInfo": "The risk level associated with the sign-in",
+ "whatIfUnknownAreas": "Unknown Areas",
+ "whatIfUserPickerLabel": "Selected user",
+ "whatIfUserPickerNoRowsLabel": "No user or service principal selected",
+ "whatIfUserRiskInfo": "The risk level associated with the user",
+ "whatIfUserSelectorInfo": "User in the directory that you want to test",
+ "windows365InfoBox": "Selecting Windows 365 will affect connections to Cloud PCs and Azure Virtual Desktop session hosts. Click here to learn more.",
+ "windowsDisplayName": "Windows",
+ "windowsPhoneDisplayName": "Windows Phone",
+ "workloadIdentities": "Workload identities (preview)",
+ "workloadIdentity": "Workload identity"
+ },
+ "AppResources": {
+ "AppSettingsUx": {
+ "assignmentFilterColumnHeader": "Filter",
+ "assignmentFilterTypeColumnHeader": "Filter mode",
+ "assignmentToast": "End user notifications",
+ "assignmentTypeTableHeader": "ASSIGNMENT TYPE",
+ "deadlineTimeColumnLabel": "Installation deadline",
+ "deliveryOptimizationPriorityHeader": "Delivery optimization priority",
+ "groupTableHeader": "Group",
+ "installContextLabel": "Install Context",
+ "isRemovable": "Install as removable",
+ "licenseTypeLabel": "License type",
+ "modeTableHeader": "Group mode",
+ "policySet": "Policy Set",
+ "restartGracePeriodHeader": "Restart grace period",
+ "startTimeColumnLabel": "Availability",
+ "tracks": "Tracks",
+ "uninstallOnRemoval": "Uninstall on device removal",
+ "updateMode": "Update Priority",
+ "vPN": "VPN"
+ },
+ "AppType": {
+ "aADWebApp": "AAD web app",
+ "androidEnterpriseSystemApp": "Android Enterprise system app",
+ "androidForWorkApp": "Managed Google Play store app",
+ "androidLobApp": "Android line-of-business app",
+ "androidStoreApp": "Android store app",
+ "builtInAndroid": "Built-In Android app",
+ "builtInApp": "Built-In app",
+ "builtInIos": "Built-In iOS app",
+ "iosLobApp": "iOS line-of-business app",
+ "iosStoreApp": "iOS store app",
+ "iosVppApp": "iOS volume purchase program app",
+ "lineOfBusinessApp": "Line-of-business app",
+ "macOSDmgApp": "macOS app (DMG)",
+ "macOSEdgeApp": "Microsoft Edge (macOS)",
+ "macOSLobApp": "macOS line-of-business app",
+ "macOSMdatpApp": "Microsoft Defender ATP (macOS)",
+ "macOSOfficeSuiteApp": "macOS Office Suite",
+ "macOsVppApp": "macOS volume purchase program app",
+ "managedAndroidLobApp": "Managed Android line-of-business app",
+ "managedAndroidStoreApp": "Managed Android store app",
+ "managedGooglePlayApp": "Managed Google Play store app",
+ "managedGooglePlayPrivateApp": "Managed Google Play private app",
+ "managedGooglePlayWebApp": "Managed Google Play web link",
+ "managedIosLobApp": "Managed iOS line-of-business app",
+ "managedIosStoreApp": "Managed iOS store app",
+ "microsoftStoreForBusinessApp": "Microsoft Store for Business app",
+ "microsoftStoreForBusinessReleaseManagedApp": "Microsoft Store for Business",
+ "officeAddIn": "Office add-in",
+ "officeSuiteApp": "Microsoft 365 Apps (Windows 10 and later)",
+ "sharePointApp": "SharePoint app",
+ "teamsApp": "Teams app",
+ "webApp": "Web link",
+ "windowsAppXLobApp": "Windows AppX line-of-business app",
+ "windowsClassicApp": "Windows app (Win32)",
+ "windowsEdgeApp": "Microsoft Edge (Windows 10 and later)",
+ "windowsMobileMsiLobApp": "Windows MSI line-of-business app",
+ "windowsPhone81AppXBundleLobApp": "Windows Phone 8.1 AppX line-of-business app",
+ "windowsPhone81AppXLobApp": "Windows Phone 8.1 AppX line-of-business app",
+ "windowsPhone81StoreApp": "Windows Phone 8.1 store app",
+ "windowsPhoneXapLobApp": "Windows Phone XAP line-of-business app",
+ "windowsStoreApp": "Microsoft Store app",
+ "windowsUniversalAppXLobApp": "Windows Universal AppX line-of-business app",
+ "windowsUniversalLobApp": "Windows Universal line-of-business app"
+ },
+ "AppTypePlatform": {
+ "android": "Android",
+ "ios": "iOS",
+ "macOs": "macOS",
+ "web": "Web",
+ "windows": "Windows"
+ },
+ "AssignmentAction": {
+ "exclude": "Excluded",
+ "include": "Included",
+ "includeAllDevicesVirtualGroup": "Included",
+ "includeAllUsersVirtualGroup": "Included"
+ },
+ "AssignmentToast": {
+ "hideAll": "Hide all toast notifications",
+ "showAll": "Show all toast notifications",
+ "showReboot": "Show toast notifications for computer restarts"
+ },
+ "DeliveryOptimizationPriority": {
+ "backgroundNormal": "Background",
+ "displayText": "Content download in {0}",
+ "foreground": "Foreground",
+ "header": "Delivery optimization priority"
+ },
+ "DeviceRestartBehaviorOptions": {
+ "allow": "App install may force a device restart",
+ "basedOnReturnCode": "Determine behavior based on return codes",
+ "force": "Intune will force a mandatory device restart",
+ "suppress": "No specific action"
+ },
+ "FilterType": {
+ "exclude": "Exclude",
+ "include": "Include",
+ "none": "None"
+ },
+ "InstallIntent": {
+ "available": "Available for enrolled devices",
+ "availableWithoutEnrollment": "Available with or without enrollment",
+ "notApplicable": "Not applicable",
+ "required": "Required",
+ "uninstall": "Uninstall"
+ },
+ "SettingType": {
+ "assignmentType": "Assignment type",
+ "deviceLicensing": "License type",
+ "installContext": "Uninstall on device removal",
+ "toastSettings": "End user notifications",
+ "vpnConfiguration": "VPN"
+ },
+ "UpdateMode": {
+ "default": "Default",
+ "postponed": "Postponed",
+ "priority": "High Priority"
+ }
+ },
+ "WindowsEnrollment": {
+ "coManagementAuthorityDesc": "Configure co-management settings for Configuration Manager integration",
+ "coManagementAuthorityTitle": "Co-management Settings ",
+ "deploymentProfiles": "Windows Autopilot deployment profiles",
+ "description": "Learn about the seven different ways a Windows 10/11 PC can be enrolled into Intune by users or admins.",
+ "descriptionLabel": "Windows enrollment methods",
+ "enrollmentStatusPage": "Enrollment Status Page"
+ },
+ "Win32Program": {
+ "DeviceRestartBehaviorOptions": {
+ "allow": "App install may force a device restart",
+ "basedOnReturnCode": "Determine behavior based on return codes",
+ "force": "Intune will force a mandatory device restart",
+ "suppress": "No specific action"
+ },
+ "RunAsAccountOptions": {
+ "system": "System",
+ "user": "User"
+ },
+ "bladeTitle": "Program",
+ "deviceRestartBehavior": "Device restart behavior",
+ "deviceRestartBehaviorTooltip": "Select the device restart behavior after the app has successfully installed. Select 'Determine behavior based on return codes' to restart the device based on the return codes configuration settings. Select 'No specific action' to suppress device restarts during the app install for MSI-based apps. Select 'App install may force a device restart' to allow the app install to complete without suppressing restarts. Select 'Intune will force a mandatory device restart' to always restart the device after successful app installation.",
+ "header": "Specify the commands to install and uninstall this app:",
+ "installCommand": "Install command",
+ "installCommandMaxLengthErrorMessage": "Install command cannot exceed the maximum allowed length of 1024 characters.",
+ "installCommandTooltip": "The complete installation command line used to install this app.",
+ "runAs32Bit": "Run install and uninstall commands in a 32-bit process on 64-bit clients",
+ "runAs32BitTooltip": "Select 'Yes' to install and uninstall the app in a 32-bit process on 64-bit clients. Select 'No' (default) to install and uninstall the app in a 64-bit process on 64-bit clients. 32-bit clients will always use a 32-bit process.",
+ "runAsAccount": "Install behavior",
+ "runAsAccountTooltip": "Select 'System' to install this app for all users if supported. Select 'User' to install this app for the logged-in user on the device. For dual-purpose MSI apps, changes will prevent updates and uninstalls from successfully completing until the value applied to the device at the time of the original install is restored.",
+ "selectorLabel": "Program",
+ "uninstallCommand": "Uninstall command",
+ "uninstallCommandTooltip": "The complete uninstallation command line used to uninstall this app."
+ },
+ "CategoryDescription": {
+ "androidGeneralApplicationRestrictions": "Use these settings to stay informed about which users install apps that are not approved for use in your company. Select the type of restricted app list:
\n Prohibited apps - A list of apps that you want to be informed about when users install them.
\n Approved apps - A list of apps that are approved for use in your company. When users install an app that is not in this list, you will be informed.
\n ",
+ "androidZebraMxZebraMx": "Configure Zebra devices by uploading a MX profile in XML format.",
+ "iosDeviceFeaturesAirprint": "Use these settings to configure iOS devices to automatically connect to AirPrint compatible printers on your network. You'll need the IP address and resource path of your printers.",
+ "iosDeviceFeaturesExtensibleSingleSignOn": "Configure an app extension that enables single sign-on (SSO) for devices running iOS 13.0 or later.",
+ "iosDeviceFeaturesHomeScreenLayout": "Configure the layout for the dock and Home Screens on iOS devices. Certain devices may have limits to how many items can be displayed.",
+ "iosDeviceFeaturesIOSWallpaper": "Display an image that will appear on the Home Screen and/or the lock screen of iOS devices.\n To display a unique image in each location, create one profile with the lock screen image, and one with the Home Screen image.\n Then assign both profiles to your users.\n
\n \n - Max file size: 750 KB
\n - File type: PNG, JPG or JPEG
\n
\n ",
+ "iosDeviceFeaturesNotifications": "Specify notification settings for apps. Supports iOS 9.3 and later.",
+ "iosDeviceFeaturesSharedDevice": "Specify optional text displayed on the locked screen. It is supported on iOS 9.3 and later. Learn More",
+ "iosGeneralApplicationRestrictions": "Use these settings to stay informed about which users install apps that are not approved for use in your company. Select the type of restricted app list:
\n Prohibited apps - A list of apps that you want to be informed about when users install them.
\n Approved apps - A list of apps that are approved for use in your company. When users install an app that is not in this list, you will be informed.
\n ",
+ "iosGeneralApplicationVisibility": "Use the show apps list to specify the iOS apps that user can view or launch. Use the hidden apps list to specify the iOS apps that user cannot view or launch.",
+ "iosGeneralAutonomousSingleAppMode": "Apps you add to this list and assign to a device can lock the device to run only that app once launched, or lock the device while a certain action is running (for example taking a test). Once the action is complete, or you remove the restriction, the device returns to its normal state.",
+ "iosGeneralKiosk": "Kiosk mode locks various settings into a device, or specifies a single app that can be run on a device. This can be useful in environments like a retail store where you want a device to run only a single demo app.",
+ "macDeviceFeaturesAirprint": "Use these settings to configure macOS devices to automatically connect to AirPrint compatible printers on your network. You'll need the IP address and resource path of your printers.",
+ "macDeviceFeaturesAssociatedDomains": "Configure associated domains to share data and sign-in credentials between your org’s apps and websites. This profile can be applied to devices running macOS 10.15 or later.",
+ "macDeviceFeaturesExtensibleSingleSignOn": "Configure an app extension that enables single sign-on (SSO) for devices running macOS 10.15 or later.",
+ "macDeviceFeaturesLoginItems": "Choose which apps, files, and folders open when users log in to their devices. If you don't want users to change how the selected apps open, you can hide the app from the user configuration.",
+ "macDeviceFeaturesLoginWindow": "Configure the appearance of the macOS login screen and the functions that are available to users before and after they log in.",
+ "macExtensionsKernelExtensions": "Use these settings to configure kernel extension policy on macOS devices running 10.13.2 or later.",
+ "macGeneralDomains": "Emails that the user sends or receives which don't match the domains you specify here will be marked as untrusted.",
+ "windows10EndpointProtectionApplicationGuard": "While using Microsoft Edge, Microsoft Defender Application Guard protects your environment from sites that haven’t been defined as trusted by your organization. When users visit sites that aren’t listed in your isolated network boundary, the sites will be opened in a virtual browsing session in Hyper-V. Trusted sites are defined by a network boundary, which can be configured in Device Configuration. Note this feature is only available for devices running 64-bit Windows 10 or later.",
+ "windows10EndpointProtectionCredentialGuard": "Enabling Credential Guard will enable the following required settings:\n
\n \n - Enable Virtualization-based Security: Turns on virtualization-based security (VBS) at next reboot. Virtualization-based security uses the Windows Hypervisor to provide support for security services.
\n
\n - Secure Boot with Direct Memory Access: Turns on VBS with Secure Boot and direct memory access (DMA).
\n
\n ",
+ "windows10EndpointProtectionDeviceGuard": "Choose additional apps that either need to be audited by, or can be trusted to run by Microsoft Defender Application Control. Windows components and all apps from Windows store are automatically trusted to run.
\n Applications will not be blocked when running in “audit only” mode. “Audit only” mode logs all events in local client logs.\n ",
+ "windows10GeneralPrivacyPerApp": "Add apps that should have a different privacy behavior from what you defined in “Default privacy”.",
+ "windows10NetworkBoundaryNetworkBoundary": "The network boundary is the list of enterprise resources, such as cloud-hosted domain and IP address ranges for computers that are on the enterprise network. Define network boundaries to apply policies to protect data that resides in these locations.",
+ "windowsHealthMonitoring": "Configure the Windows health monitoring policy.",
+ "windowsPhoneGeneralApplicationRestrictions": "Windows Phone can block users from installing or launching apps specified in the prohibited apps list, or apps not specified in the approved apps list. All managed apps must be added to the approved list."
+ },
"Inputs": {
"accountDomain": "Account domain",
"accountDomainHint": "e.g. contosodomain",
@@ -9962,6 +9858,7 @@
"displayNameLabel": "Name",
"displayVersionHint": "Enter the app version",
"displayVersionLabel": "App Version",
+ "displayVersionLengthCheck": "The length of the display version should be a maximum of 130 characters",
"eBookCategoryNameLabel": "Default name",
"emailAccount": "Email account name",
"emailAccountHint": "e.g. Corporate Email",
@@ -10066,385 +9963,51 @@
"xmlFormatInvalid": "XML policy format is invalid.",
"xmlTooLarge": "Input size must be less than 1 MB."
},
- "Tooltips": {
- "PolicySettings": {
- "TouchId1": {
- "android": "On Android, you can allow using fingerprint identification instead of a PIN. Users are prompted to provide their fingerprints when they access this app with their work accounts.",
- "iOS": "On iOS/iPadOS devices, you can allow using fingerprint identification instead of a PIN. Users are prompted to provide their fingerprints when they access this app with their work accounts.",
- "mac": "On Mac devices, you can allow using fingerprint identification instead of a PIN. Users are prompted to provide their fingerprints when they access this app with their work accounts."
- },
- "appSharingFromLevel1": "Select one of the following options to specify the apps that this app can receive data from:",
- "appSharingFromLevel2": "{0}: Only allow receiving data in org documents or accounts from other policy managed apps",
- "appSharingFromLevel3": "{0}: Allow receiving data in org documents or accounts from any app",
- "appSharingFromLevel4": "{0}: Do not allow receiving data in org documents or accounts from any app",
- "appSharingFromLevel5": "{0}: Allow data transfer from any app and treat all incoming data without an user identity as Org data.",
- "appSharingToLevel1": "Select one of the following options to specify the apps that this app can send data to:",
- "appSharingToLevel2": "{0}: Only allow sending org data to other policy managed apps",
- "appSharingToLevel3": "{0}: Allow sending org data to any app",
- "appSharingToLevel4": "{0}: Do not allow sending org data to any app",
- "appSharingToLevel5": "{0}: Only allow transfer only to other policy managed apps and file transfer to other MDM managed apps on enrolled devices",
- "appSharingToLevel6": "{0}: Allow transfer only to other policy managed apps and filter OS Open-in/Share dialogs to only display policy managed apps",
- "conditionalEncryption1": "Select {0} to disable app encryption for internal app storage when device encryption is detected on an enrolled device.",
- "conditionalEncryption2": "Note: Intune can only detect device enrollment with Intune MDM. External app storage will still be encrypted to ensure data cannot be accessed by unmanaged applications.",
- "contactSyncMac": "If disabled, apps cannot save contacts to the native address book.",
- "contactsSync": "Choose Block to prevent policy managed apps from saving data to the device's native apps (like Contacts, Calendar and widgets), or to prevent the use of add-ins within the policy managed apps. If you choose Allow, the policy managed app can save data to the native apps or use add-ins, if those features are supported and enabled within the policy managed app.
Apps may provide additional configuration capability with app configuration policies. For more information, see the app's documentation.",
- "encryptionAndroid1": "For apps that are associated with an Intune mobile application management policy, encryption is provided by Microsoft. Data is encrypted synchronously during file I/O operations according to the setting in the mobile application management policy. Managed apps on Android use AES-128 encryption in CBC mode utilizing the platform cryptography libraries. The encryption method is not FIPS 140-2 compliant. SHA-256 encryption is supported as an explicit instruction using the SigAlg parameter and will only work on devices 4.2 and above. Content on the device storage is always be encrypted.",
- "encryptionAndroid2": "When you require encryption in your app policy, the end-user is required to setup and use a PIN to access their device. If there is not a PIN set up for device access, the apps will not launch and the end-user will instead see a message, which says, “Your company has required that you must first enable a device PIN to access this application.\"",
- "encryptionMac1": "For apps that are associated with an Intune mobile application management policy, encryption is provided by Microsoft. Data is encrypted synchronously during file I/O operations according to the setting in the mobile application management policy. Managed apps on Mac use AES-128 encryption in CBC mode utilizing the platform cryptography libraries. The encryption method is not FIPS 140-2 compliant. SHA-256 encryption is supported as an explicit instruction using the SigAlg parameter and will only work on devices 4.2 and above. Content on the device storage is always be encrypted.",
- "faceId1": "Where applicable, you can allow the use of face identification instead of PIN. Users are prompted to provide face identification when they access this app with their work accounts.",
- "faceId2": "Select Yes to allow face identification instead of a PIN for app access.",
- "managementLevelsAndroid1": "Use this option to specify whether this policy applies to Android device administrator devices, Android Enterprise devices, or unmanaged devices.",
- "managementLevelsAndroid2": "{0}: Unmanaged devices are devices where Intune MDM management has not been detected. This includes 3rd party MDM vendors.",
- "managementLevelsAndroid3": "{0}: Intune-managed devices using the Android Device Administration API.",
- "managementLevelsAndroid4": "{0}: Intune-managed devices using Android Enterprise Work Profiles or Android Enterprise Full Device Management.",
- "managementLevelsIos1": "Use this option to specify whether this policy applies to MDM managed devices or unmanaged devices.",
- "managementLevelsIos2": "{0}: Unmanaged devices are devices where Intune MDM management has not been detected. This includes 3rd party MDM vendors.",
- "managementLevelsIos3": "{0}: Managed devices are managed by Intune MDM.",
- "minAppVersion": "Define the required minimum App version number that a user should have to gain secure access to the app.",
- "minAppVersionWarning": "Define the recommended minimum App version number that a user should have for secure access to the app.",
- "minOsVersion": "Define the required minimum OS version number that a user should have to gain secure access to the app.",
- "minOsVersionWarning": "Define the recommended minimum OS version number that a user should have to gain secure access to the app.",
- "minPatchVersion": "Define the oldest required Android security patch level a user can have to gain secure access to the app.",
- "minPatchVersionWarning": "Define the oldest recommended Android security patch level a user can have for secure access to the app.",
- "minSdkVersion": "Define the required minimum Intune Application Protection Policy SDK version that a user should have to gain secure access to the app.",
- "requireAppPinDefault": "Select Yes to disable the app PIN when a device lock is detected on an enrolled device.
",
- "targetAllApps1": "Use this option to target your policy to apps on devices of any management state.",
- "targetAllApps2": "During policy conflict resolution this setting will be superseded if a user has policy targeted for a specific management state.",
- "touchId2": "Select {0} to require fingerprint identity instead of a PIN for app access."
- },
- "Tap": {
- "pinResetAfterNumberOfDays": "Specify the number of days that must pass before the user must reset the PIN.",
- "previousPinBlockCount": "This setting specifies the number of previous PINs that Intune will maintain. Any new PINs must be different from those that Intune is maintaining."
+ "WindowsFeatureUpdate": {
+ "EndOFSupportStatus": {
+ "notSupported": "Not supported",
+ "supportEnding": "Support ending",
+ "supported": "Supported"
+ }
},
- "WipPolicySettings": {
- "25": "",
- "allowWindowsSearch": "This will allow Windows Search to continue to search through encrypted data.",
- "authoritativeIpRanges": "Enable this setting if you want to override Windows auto-detection of IP ranges.",
- "authoritativeProxyServers": "Enable this setting if you want to override Windows auto-detection of proxy servers.",
- "checkInput": "Check input for validity",
- "dataRecoveryCert": "A recovery certificate is a special Encrypting File System (EFS) certificate you can use to recover encrypted files if your encryption key is lost or damaged. You need to create the recovery certificate, and specify it here. More information is here",
- "enterpriseCloudResources": "Specify cloud resources to be treated as corporate and be protected with Windows Information Protection policy. Multiple resources can be specified by separating individual entries with the '|' character.
If you have a proxy configured in your company, then you can specify the proxy through which traffic to cloud resources you specified will be routed.
URL[,Proxy]|URL[,Proxy]
Without proxy: contoso.sharepoint.com|contoso.visualstudio.com
With proxy: contoso.sharepoint.com,proxy.contoso.com|contoso.visualstudio.com,proxy.contoso.com
",
- "enterpriseIPv4Ranges": "Specify the IPv4 ranges that form your corporate network. These are used in conjunction with the Enterprise Network Domain Names that you specify to define your corporate network boundary.
This setting is required to have Windows Information Protection enabled.
Multiple ranges can be specified by separating individual entries with a comma.
For example: 3.4.0.1-3.4.255.255,192.168.1.1-192.168.255.255
",
- "enterpriseIPv6Ranges": "Specify the IPv6 ranges that form your corporate network. These are used in conjunction with the Enterprise Network Domain Names that you specify to define your corporate network boundary.
Multiple ranges can be specified by separating individual entries with a comma.
For example: 2001:4898:dc05::-2001:4898:dc05:ffff:ffff:ffff:ffff:ffff,2a01:110::-2a01:110:7fff:ffff:ffff:ffff:ffff:ffff
",
- "enterpriseInternalProxyServers": "If you have a proxy configured in your company, then you can specify the proxy through which traffic to cloud resources specified in the Enterprise Cloud Resources settings are to be routed.
Multiple values can be specified by separating individual entries with a semi-colon.
For example: contoso.internalproxy1.com;contoso.internalproxy2.com
",
- "enterpriseNetworkDomainNames": "Specify the DNS names that form your corporate network. These are used in conjunction with the IP ranges that you specify to define your corporate network boundary. Multiple values can be specified by separating individual entries with a comma.
This setting is required to have Windows Information Protection enabled.
For example: corp.contoso.com,region.contoso.com
",
- "enterpriseProtectedDomainNames": "Specify the DNS names that form your corporate network. These are used in conjunction with the IP ranges that you specify to define your corporate network boundary. Multiple values can be specified by separating individual entries with a '|'.
This setting is required to have Windows Information Protection enabled.
For example: corp.contoso.com|region.contoso.com
",
- "enterpriseProxyServers": "If you have external facing proxies in your corporate network, specify them here. When specifying a proxy server address, you should also specify the port through which traffic should be allowed and protected through Windows Information Protection.
Note: This list must not include servers in your Enterprise Internal Proxy Server list. Multiple values can be specified by separating individual entries with a semi-colon.
For example: proxy.contoso.com:80;proxy2.contoso.com:80
",
- "maxInactivityTime1": "Specifies the maximum amount of time (in minutes) allowed after the device is idle that will cause the device to become PIN or password locked. Users can select any existing timeout value less than the specified maximum time in the Settings app. Note the Lumia 950 and 950XL have a maximum timeout value of 5 minutes, regardless of the value set by this policy.",
- "maxInactivityTime2": "0 (default) - No timeout is defined. The default of '0' is interpreted as 'No timeout is defined.'",
- "maxPasswordAttempts1": "This policy has different behaviors on the mobile device and desktop.",
- "maxPasswordAttempts2": "On a mobile device, when the user reaches the value set by this policy, then the device is wiped.",
- "maxPasswordAttempts3": "On a desktop, when the user reaches the value set by this policy, it is not wiped.Instead, the desktop is put on BitLocker recovery mode, which makes the data inaccessible but recoverable.If BitLocker is not enabled, then the policy cannot be enforced.",
- "maxPasswordAttempts4": "Prior to reaching the failed attempts limit, the user is sent to the lock screen and warned that more failed attempts will lock their computer.When the user reaches the limit, the device automatically reboots and shows the BitLocker recovery page.This page prompts the user for the BitLocker recovery key.",
- "maxPasswordAttempts5": "0 (default) - The device is never wiped after an incorrect PIN or password is entered.",
- "maxPasswordAttempts6": "Most secure value is 0 if all policy values = 0; otherwise, Min policy value is the most secure value.",
- "mdmDiscoveryUrl": "Specify the URL for the MDM enrollment endpoint that users who enroll to MDM will use. By default, this is specified for Intune.",
- "minimumPinLength1": "Integer value that sets the minimum number of characters required for the PIN. Default value is 4. The lowest number you can configure for this policy setting is 4. The largest number you can configure must be less than the number configured in the Maximum PIN length policy setting or the number 127, whichever is the lowest.",
- "minimumPinLength2": "If you configure this policy setting, the PIN length must be greater than or equal to this number. If you disable or do not configure this policy setting, the PIN length must be greater than or equal to 4.",
- "name": "The name of this network boundary",
- "neutralResources": "If you have authentication redirection endpoints in your company, specify those here. The locations specified here are considered to be either personal or corporate depending on the context of the connection prior to the redirection.
Multiple values can be specified by separating individual entries with a comma.
For example: sts.contoso.com,sts.contoso2.com
",
- "passportForWork1": "Value that sets Windows Hello for Business as a method for signing into Windows.",
- "passportForWork2": "Default value is true.If you set this policy to false, the user cannot provision Windows Hello for Business except on Azure Active Directory joined mobile phones where provisioning is required.",
- "pinExpiration": "The largest number you can configure for this policy setting is 730. The lowest number you can configure for this policy setting is 0. If this policy is set to 0, then the user’s PIN will never expire.",
- "pinHistory1": "The largest number you can configure for this policy setting is 50. The lowest number you can configure for this policy setting is 0. If this policy is set to 0, then storage of previous PINs is not required.",
- "pinHistory2": "The current PIN of the user is included in the set of PINs associated with the user account. PIN history is not preserved through a PIN reset.",
- "protectUnderLock": "Protects app content while the device is in a locked state.",
- "protectionModeBlock": "Block: Blocks enterprise data from leaving protected apps.
",
- "protectionModeOff": "Off: User is free to relocate data off of protected apps. No actions are logged.
",
- "protectionModeOverride": "Allow overrides: User is prompted when attempting to relocate data from a protected to a non-protected app. If they choose to override this prompt, the action will be logged.
",
- "protectionModeSilent": "Silent: User is free to relocate data off of protected apps. These actions are logged.
",
- "required": "Required",
- "revokeOnMdmHandoff": "Added in Windows 10, version 1703. This policy controls whether to revoke the WIP keys when a device upgrades from MAM to MDM. If set to “Off”, the keys will not be revoked and the user will continue to have access to protected files after upgrade. This is recommended if the MDM service is configured with the same WIP EnterpriseID as the MAM service.",
- "revokeOnUnenroll": "This will cause encryption keys to be revoked when a device un-enrolls from this policy.",
- "rmsTemplateForEdp": "TemplateID GUID to use for RMS encryption. The Azure RMS template allows the IT admin to configure the details about who has access to RMS-protected file and how long they have access.",
- "showWipIcon": "This will let the user know when they are acting in a corporate context, by overlaying an icon.",
- "useRmsForWip": "Specifies whether to allow Azure RMS encryption for WIP."
+ "SecurityTemplate": {
+ "aSR": "Attack surface reduction",
+ "accountProtection": "Account protection",
+ "allDevices": "All devices",
+ "antivirus": "Antivirus",
+ "antivirusReporting": "Antivirus Reporting (Preview)",
+ "conditionalAccess": "Conditional access",
+ "deviceCompliance": "Device compliance",
+ "diskEncryption": "Disk encryption",
+ "eDR": "Endpoint detection and response",
+ "firewall": "Firewall",
+ "helpSupport": "Help and support",
+ "setup": "Setup",
+ "wdapt": "Microsoft Defender for Endpoint"
+ },
+ "Win32ReturnCodes": {
+ "CodeTypes": {
+ "failed": "Failed",
+ "hardReboot": "Hard reboot",
+ "retry": "Retry",
+ "softReboot": "Soft reboot",
+ "success": "Success"
},
- "requireAppPin": "Select Yes to disable the app PIN when a device lock is detected on an enrolled device.
Note: Intune cannot detect device enrollment with a third-party EMM solution on iOS/iPadOS.
"
- },
- "AppInfoBalloonText": {
- "Certificate": {
- "customSubjectName": "CN={{UserName}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US\nor\nCN={{AAD_Device_ID}},E={{EmailAddress}},OU=EnterpriseUsers,O=Contoso Corporation,L=Redmond,ST=WA,C=US",
- "keySize": "Select the number of bits contained in the key.",
- "keyUsage": "Specify the cryptographic action that is required to exchange the certificate’s public key.",
- "renewalThreshold": "Enter the percentage (between 1 and 99 percent) of remaining certificate lifetime that is allowed before a device can request renewal of the certificate. The recommended amount in Intune is 20%. (1-99)",
- "rootCert": "Choose a previously configured and assigned root CA certificate profile. The CA certificate must match the root certificate of the CA that is issuing the certificate for this profile (the one you are currently configuring).",
- "scepServerUrl": "Enter a URL for the NDES Server that issues certificates through SCEP (Must be HTTPS). e.g. https://contoso.com/certsrv/mscep/mscep.dll",
- "scepServerUrls": "Add one or more URLs for the NDES Server that issues certificates through SCEP (Must be HTTPS). e.g. https://contoso.com/certsrv/mscep/mscep.dll",
- "subjectAlternativeName": "Subject alternative name",
- "subjectNameFormat": "Subject name format",
- "validityPeriod": "The amount of time remaining before the certificate expires. Enter a value that is equal to or lower than the validity period shown in the certificate template. Default is set at one year."
- },
- "appInstallContext": "This specifies the install context to be associated with this app. For dual mode apps, select the desired context for this app. For all other apps, this is pre-selected based on the package and cannot be modified.",
- "autoUpdateMode": "Configure the update priority for the app. Select Default to require the device to be connected to WiFi, to be charging, and not to be actively in use before updating the app. Select High Priority to update the app as soon as the developer has published the app, regardless of charge status, WiFi capability, or end user activity on the device. High priority will only take effect on DO devices.",
- "configurationSettingsFormat": "Configuration settings format text",
- "ignoreVersionDetection": "Set this to “Yes” for apps that are automatically updated by the app developer (such as Google Chrome).",
- "ignoreVersionDetectionMacOSLobApp": "Select \"Yes\" for apps that are automatically updated by app developer or to only check for app bundleID before installation. Select \"No\" to check for app bundleID and version number before installation.",
- "installAsManagedMacOSLobApp": "This setting only applies to macOS 11 and higher. The app will be installed but not managed on macOS 10.15 and lower.",
- "installContextDropdown": "Select the appropriate install context. User context will install the app only for the targeted user while device context will install the app for all users on the device.",
- "ldapUrl": "This is the LDAP hostname where clients can get the public encryption keys for email recipients. Emails will be encrypted when a key is available. Supported formats: - ldap.example.com
\n- ldap.example.com:123
\n- ldap://ldap.example.com
- ldap://ldap.example.com:123
- ldaps://ldap.example.com
\n- ldaps://ldap.example.com:123
",
- "permissionsSettings": "Select runtime permissions for the associated app.",
- "policyAssociatedApp": "Select the app that this policy will be associated with.",
- "policyConfigurationSettings": "Select the method you want to use to define configuration settings for this policy.",
- "policyDescription": "Optionally, enter a description for this configuration policy.",
- "policyEnrollmentType": "Choose whether these settings are managed through device management or apps made with Intune SDK.",
- "policyName": "Enter a name for this configuration policy.",
- "policyPlatform": "Select the platform this app configuration policy will apply to.",
- "policyProfileType": "Select the device profile types that this app configuration profile will apply to",
- "policySMime": "Configure S/MIME signing and encryption settings for Outlook.",
- "sMimeDeployCertsFromIntune": "Specify whether or not S/MIME certificates will be delivered from Intune for use with Outlook.\nIntune can automatically deploy signing and encryption certificates to users through the Company Portal.",
- "sMimeEnable": "Specify whether or not S/MIME controls are enabled when composing an email",
- "sMimeEnableAllowChange": "Specify if the user is allowed to change the Enable S/MIME setting.",
- "sMimeEncryptAllEmails": "Specify whether or not all emails must be encrypted.\nEncrypting converts data to cipher text so that only the intended recipient can read it.",
- "sMimeEncryptAllEmailsAllowChange": "Specify if the user is allowed to change the Encrypt all emails setting.",
- "sMimeEncryptionCertProfile": "Specify certificate profile for email encryption.",
- "sMimeSignAllEmails": "Specify whether or not all emails must be signed.\nA digital signature verifies the authenticity of the email and ensures that the contents are not tampered with in transit.",
- "sMimeSignAllEmailsAllowChange": "Specify if the user is allowed to change the Sign all emails setting.",
- "sMimeSigningCertProfile": "Specify certificate profile for email signing.",
- "sMimeUserNotificationType": "Method to notify users that they must open Company Portal to retrieve S/MIME certificates for Outlook."
- },
- "WindowsQualityUpdateDaysUntilForcedReboot": {
- "oneDay": "1 day",
- "twoDays": "2 days",
- "zeroDays": "0 days"
- },
- "Autopilot": {
- "AssignResourceAccount": {
- "createNewCommandMenu": "Create new",
- "createNewResourceAccountInfo": "\nCreate a new resource account during enrollment. The Resource account will be added to the Resource account table right away, but won't be active until the device is enrolled, and the Surface Hub subscription is verified. Learn more about Resource Accounts
\n ",
- "createNewResourceTitle": "Create new resource account",
- "deviceNameInvalid": "Device name is in an invalid format",
- "deviceNameRequired": "A device name is required",
- "editResourceAccountLabel": "Edit",
- "selectExistingCommandMenu": "Select existing"
- },
- "Device": {
- "ComputerName": {
- "validFormat": "Names must be 15 characters or less, and can contain letters (a-z, A-Z), numbers (0-9), and hyphens. Names must not contain only numbers. Names cannot include a blank space."
- },
- "Header": {
- "addressableUserName": "User Friendly Name",
- "azureADDevice": "Associated Azure AD device",
- "batch": "Group Tag",
- "dateAssigned": "Date assigned",
- "deviceDisplayName": "Device Name",
- "deviceName": "Device name",
- "deviceUseType": "Device-use type",
- "enrollmentState": "Enrollment state",
- "intuneDevice": "Associated Intune device",
- "lastContacted": "Last contacted",
- "make": "Manufacturer",
- "model": "Model",
- "profile": "Assigned profile",
- "profileStatus": "Profile status",
- "purchaseOrderId": "Purchase order",
- "resourceAccount": "Resource account",
- "serialNumber": "Serial number",
- "userPrincipalName": "User"
- }
- },
- "DeviceUseType": {
- "meetingAndPresentation": "Meeting and presentation",
- "teamCollaboration": "Team collaboration"
- },
- "Devices": {
- "featureDescription": "Windows Autopilot lets you customize the out-of-box experience (OOBE) for your users.",
- "importErrorStatus": "Some devices were not imported. Click here for more information.",
- "importPendingStatus": "Import in progress. Elapsed time: {0} min. This process can take up to {1} min."
- },
- "DirectoryService": {
- "activeDirectoryAD": "Hybrid Azure AD joined",
- "activeDirectoryADLabel": "Hybrid Azure AD width Autopilot",
- "azureAD": "Azure AD joined",
- "unknownType": "Unknown Type"
- },
- "Filter": {
- "enrollmentState": "State",
- "profile": "Profile status"
- },
- "OOBE": {
- "AddressableUserName": {
- "validateEmpty": "User friendly name cannot be empty."
- },
- "ApplyComputerNameTemplate": {
- "infoBalloon": "Create a naming template to add names to your devices during enrollment.",
- "label": "Apply device name template"
- },
- "ApplyComputerNameTemplateDisabled": {
- "label": "For Hybrid Azure AD joined type of Autopilot deployment profiles, devices are named using settings specified in Domain Join configuration."
- },
- "ComputerNameTemplate": {
- "emptyValue": "MyCompany-%RAND:4%",
- "label": "Enter a name",
- "noDisallowedChars": "Name must only contain alphanumeric characters, hyphens, %SERIAL%, or %RAND:x%",
- "serialLength": "Cannot use more than 7 characters with %SERIAL%",
- "validateLessThan15Chars": "Name must be 15 characters or less",
- "validateNoSpaces": "Computer names cannot contain spaces",
- "validateNotAllNumbers": "Name must also contain letters and/or hyphens",
- "validateNotEmpty": "Name cannot be empty",
- "validateOnlyOneMacro": "Name must only contain one of %SERIAL% or %RAND:x%"
- },
- "ConfigureComputerNameTemplate": {
- "description": "Create a unique name for your devices. Names must be 15 characters or less, and can contain letters (a-z, A-Z), numbers (0-9), and hyphens. Names must not contain only numbers. Names cannot include a blank space. Use the %SERIAL% macro to add a hardware-specific serial number. Alternatively, use the %RAND:x% macro to add a random string of numbers, where x equals the number of digits to add."
- },
- "EnableWhiteGlove": {
- "infoBalloon": "Enable pressing Windows key 5 times to run OOBE without user authentication to enroll device and provision all system-context apps and settings. User-context apps and settings will be delivered when the user signs in.",
- "label": "Allow pre-provisioned deployment"
- },
- "HybridAzureADSkipConnectivityCheck": {
- "infoBalloon": "The Autopilot Hybrid Azure AD join flow will continue even if it does not establish domain controller connectivity during OOBE.",
- "label": "Skip AD connectivity check (preview)"
- },
- "accountType": "User account type",
- "accountTypeInfo": "Specify whether users are administrators or standard users on the device. Note that this setting does not apply to Global Administrator or Company Administrator accounts. These accounts cannot be standard users because they have access to all administrative features in Azure AD.",
- "configOOBEInfo": "\nConfigure the out-of-box experience for your Autopilot devices\n
",
- "configureDevice": "Deployment mode",
- "configureDeviceHintForSurfaceHub2": "Autopilot only supports self-deploying mode for Surface Hub 2. This mode doesn't associate the user with the enrolled device, so it doesn't require user credentials.",
- "configureDeviceHintForWindowsPC": "\n Deployment mode controls if a user needs to provide credentials in order to provision the device.\n
\n \n - \n User-Driven: Devices are associated with the user enrolling the device and user credentials are required to provision the device\n
\n - \n Self-Deploying (preview): Devices are not associated with the user enrolling the device and user credentials are not required to provision the device\n
\n
",
- "createSurfaceHub2Info": "Configure the Autopilot enrollment settings for your Surface Hub 2 devices. By default Autopilot enables skipping user authentication during OOBE. Learn more about Windows Autopilot for Surface Hub 2.",
- "createWindowsPCInfo": "\n\nThe following options are automatically enabled for Autopilot devices in self-deploying mode:\n
\n\n - \n Skip Work or Home usage selection\n
\n - \n Skip OEM registration and OneDrive configuration\n
\n - \n Skip user authentication in OOBE\n
\n
",
- "endUserDevice": "User-Driven",
- "hideEscapeLink": "Hide change account options",
- "hideEscapeLinkInfo": "Options to change account and start over with a different account appear, respectively, during initial device setup on the company sign-in page, and on the domain error page. To hide these options, you must configure company branding in Azure Active Directory (requires Windows 10, 1809 or later, or Windows 11).",
- "info": "Autopilot profile settings define the out-of-box experience users see when starting Windows for the first time. ",
- "language": "Language (Region)",
- "languageInfo": "Specify the language and region that will be used.",
- "licenseAgreement": "Microsoft Software License Terms",
- "licenseAgreementInfo": "Specify whether to show the EULA to users.",
- "plugAndForgetDevice": "Self-Deploying (preview)",
- "plugAndForgetGA": "Self-Deploying",
- "privacySettingWarning": "The default value for diagnostic data collection has changed for devices running Windows 10, version 1903 and later, or Windows 11. ",
- "privacySettings": "Privacy settings",
- "privacySettingsInfo": "Specify whether to show privacy settings to users.",
- "showCortanaConfigurationPage": "Cortana configuration",
- "showCortanaConfigurationPageInfo": "Show will enable the Cortana configuration introduction during startup.",
- "skipEULAWarning": "Important information about hiding license terms",
- "skipKeyboardSelection": "Automatically configure keyboard",
- "skipKeyboardSelectionInfo": "If true, skip the keyboard selection page if Language is set.",
- "subtitle": "Autopilot profiles",
- "title": "Out-of-box experience (OOBE)",
- "useOSDefaultLanguage": "Operating system default",
- "userSelect": "User select"
- },
- "Sync": {
- "lastRequestedLabel": "Last sync request",
- "lastSuccessfulLabel": "Last successful sync",
- "syncInProgress": "Sync is in progress. Check back again soon.",
- "syncInitiated": "Autopilot settings sync initiated.",
- "syncSettingsTitle": "Sync Autopilot settings"
- },
- "Title": {
- "devices": "Windows Autopilot devices"
- },
- "Tooltips": {
- "addressableUserName": "Greeting name displayed during device setup.",
- "azureADDevice": "Go to device details for associated device. N/A means that there's no associated device.",
- "batch": "A string attribute that can be used to identify a group of devices. Intune's Group Tag field maps to the OrderID attribute on Azure AD devices.",
- "dateAssigned": "Timestamp of when the profile was assigned to the device.",
- "deviceDisplayName": "Configure a unique name for a device. This name will be ignored in Hybrid Azure AD joined deployments. Device name still comes from the domain join profile for Hybrid Azure AD devices.",
- "deviceName": "The name shown when someone tried to discover and connect to the device.",
- "deviceUseType": " Device would setup based on your choice. You can always change later in settings.\n \n - For meetings and presentations, Windows Hello isn't turned on and data is removed after each session.\n
\n - For team collaboration, Windows Hello is turned on and profiles are saved for quick sign-in
\n
",
- "enrollmentState": "Specifies if the device has enrolled.",
- "intuneDevice": "Go to device details for associated device. N/A means that there's no associated device.",
- "lastContacted": "Timestamp of when the device was last contacted.",
- "make": "Manufacturer of the selected device.",
- "model": "Model of the selected device",
- "profile": "Name of the profile assigned to the device.",
- "profileStatus": "Specifies if a profile is assigned to the device.",
- "purchaseOrderId": "Purchase Order ID",
- "resourceAccount": "The device's identity, or user principal name (UPN).",
- "serialNumber": "Serial number of the selected device.",
- "userPrincipalName": "User to pre-fill authentication during device setup."
- },
- "allDevices": "All devices",
- "allDevicesAlreadyAssignedError": "An Autopilot profile is already assigned to All Devices.",
- "assignFailedDescription": "Failed to update assignments for {0}.",
- "assignFailedTitle": "Failed to update Autopilot profile assignments.",
- "assignSuccessDescription": "Successfully updated assignments for {0}.",
- "assignSuccessTitle": "Successfully updated Autopilot profile assignments.",
- "assignSufaceHub2ProfileNextStep": "Next steps for this deployment",
- "assignSurfaceHub2ProfileToDeviceGroup": "1. Assign this profile to at least one device group",
- "assignSurfaceHub2ProfileToResourceAccount": "2. Assign a resource account to each Surface Hub device to which you deploy this profile",
- "assignedDevicesCount": "Assigned devices",
- "assignedDevicesResourceAccountDescription": "To deploy this profile to a device, you must assign the device a Resource account. Select one device at a time to assign an existing Resource account or to create a new one. Learn more about Resource Accounts
",
- "assignedDevicesResourceAccountStatusBarMessage": "This table only lists the Surface Hub 2 devices that have been assigned this profile.",
- "assigningDescription": "Updating assignments for {0}.",
- "assigningTitle": "Updating Autopilot profile assignments.",
- "cannotDeleteMessage": "This profile is assigned to groups. You must unassign all groups from this profile before you can delete it.",
- "cannotDeleteTitle": "Cannot delete {0}",
- "createdDateTime": "Created",
- "deleteMessage": "If you delete this Autopilot profile, any devices assigned to this profile will display Unassigned.",
- "deleteMessageWithPolicySet": "{0} is included in one more more policy sets. If you delete {0}, you'll no longer be able to assign it via these policy sets.",
- "deleteTitle": "Are you sure you want to delete this profile?",
- "description": "Description",
- "deviceType": "Device type",
- "deviceUse": "Device use",
- "directoryServiceHintForSurfaceHub2": " \n Autopilot only supports Azure AD Joined for Surface Hub 2 devices. Specify how devices join Active Directory (AD) in your organization.\n
\n \n - \n Azure AD joined: Cloud-only without an on-premises Windows Server Active Directory.\n
\n
\n ",
- "directoryServiceHintForWindowsPC": "\n \n Specify how devices join Active Directory (AD) in your organization:\n
\n \n - \n Azure AD joined: Cloud-only without an on-premises Windows Server Active Directory\n
\n
\n ",
- "getAssignedDevicesCountError": "An error occurred while fetching the assigned devices count.",
- "getAssignmentsError": "An error occurred while fetching Autopilot profile assignments.",
- "harvestDeviceId": "Convert all targeted devices to Autopilot",
- "harvestDeviceIdDescription": "By default, this profile can only be applied to Autopilot devices synced from the Autopilot service.",
- "harvestDeviceIdInfo": "\n Select Yes to register all targeted devices to Autopilot if they are not already registered. The next time registered devices go through the Windows Out of Box Experience (OOBE), they will go through the assigned Autopilot scenario.\n
\n Please note that certain Autopilot scenarios require specific minimum builds of Windows. Please make sure your device has the required minimum build to go through the scenario.\n
\n Removing this profile won’t remove affected devices from Autopilot. To remove a device from Autopilot, use the Windows Autopilot Devices view.\n ",
- "harvestDeviceIdWarning": "After conversion, Autopilot devices can only be reverted by deleting them from the Autopilot devices list.",
- "holoLensCommandMenu": "HoloLens",
- "info": "Windows Autopilot deployment profiles lets you customize the out-of-box experience for your devices.",
- "invalidProfileNameMessage": "Character \"{0}\" is not allowed",
- "joinTypeLabel": "Join Azure AD as",
- "lastModifiedDateTime": "Last modified:",
- "name": "Name",
- "noAutopilotProfile": "No Autopilot profiles",
- "notEnoughPermissionAssignedError": "You don't have enough permissions to assign this profile to one or more of your selected groups. Please contact your administrator.",
- "profile": "profile",
- "resourceAccountStatusBarMessage": "A Resource Account is required for each Surface Hub 2 device to which this profile is deployed. Click to learn more.",
- "selectServices": "Select directory service devices will join",
- "surfaceHub2CommandMenu": "Surface Hub 2",
- "surfaceHub2SCommandMenu": "Surface Hub 2S",
- "userAffinityLabel": "Deployment mode",
- "windowsPCCommandMenu": "Windows PC",
- "directoryServiceLabel": "Join to Azure AD as"
- },
- "AppInformationTab": {
- "Error": {
- "multipleChildApps": "A macOS LOB app can only be installed as managed when the uploaded package contains a single app."
- },
- "Info": {
- "AppStoreUrl": {
- "android": "Enter the link to the app listing in Google Play store. For example:",
- "androidLink": "https://play.google.com/store/apps/details?id=com.microsoft.office.outlook",
- "windows": "Enter the link to the app listing in the Microsoft Store. For example:",
- "windowsLink": "https://www.microsoft.com/en-us/p/microsoft-to-do-lists-tasks-reminders/9nblggh5r558"
- },
- "appPackageFile": "A file that contains your app in a format that can be sideloaded on a device. Valid package types include: Android (.apk), iOS (.ipa), macOS (.intunemac), Windows (.msi, .appx, .appxbundle, .msix, and .msixbundle).",
- "applicableDeviceType": "Select the device types that can install this app.",
- "category": "Categorize the app to make it easier for users to sort and find in Company Portal. You can choose multiple categories.",
- "categoryLink": "https://docs.microsoft.com/en-us/intune/apps/apps-add#create-and-edit-categories-for-apps",
- "description": "Help your device users understand what the app is and/or what they can do in the app. This description will be visible to them in Company Portal.",
- "developer": "The name of the company or Individual that developed the app. This information will be visible to people signed into the admin center.",
- "displayVersion": "The version of the app. This information will be visible to users in the Company Portal.",
- "infoUrl": "Link people to a website or documentation that has more information about the app. The information URL will be visible to users in Company Portal.",
- "isFeatured": "Featured apps are prominently placed in Company Portal so that users can quickly get to them.",
- "learnMore": "Learn more",
- "logo": "Upload a logo that's associated with the app. This logo will appear next to the app throughout Company Portal.",
- "macOSDmgAppPackageFile": "A file that contains your app in a format that can be sideloaded on a device. Valid package type: .dmg.",
- "minOperatingSystem": "Select the earliest operating system version on which the app can be installed. If you assign the app to a device with an earlier operating system, it will not be installed.",
- "name": "Add a name for the app. This name will be visible in the Intune apps list and to users in the Company Portal.",
- "notes": "Add additional notes about the app. Notes will be visible to people signed in to the admin center.",
- "owner": "The name of the person in your organization who manages licensing or is the point-of-contact for this app. This name will be visible to people signed in to the admin center.",
- "packageName": "Contact the device manufacturer to get the app's package name. Example package name: com.example.app",
- "privacyUrl": "Provide a link for people who want to learn more about the app's privacy settings and terms. The privacy URL will be visible to users in Company Portal.",
- "publisher": "The name of the developer or company that distributes the app. This information will be visible to users in Company Portal.",
- "selectApp": "Search the App Store for iOS store apps that you want to deploy with Intune.",
- "useManagedBrowser": "If required, when a user opens the web app, it will open in an Intune-protected browser such as Microsoft Edge or Intune Managed Browser. This setting applies to both iOS and Android devices.",
- "useManagedBrowserLink": "https://docs.microsoft.com/en-us/intune/apps/app-configuration-managed-browser",
- "win32AppPackageFile": "A file that contains your app in a format that can be sideloaded on a device. Valid package type: .intunewin."
- },
- "descriptionPreview": "Preview",
- "descriptionRequired": "Description is required.",
- "editDescription": "Edit Description",
- "name": "App information",
- "nameForOfficeSuitApp": "App suite information"
- },
+ "Columns": {
+ "codeType": "Code type",
+ "returnCode": "Return code"
+ },
+ "bladeTitle": "Return codes",
+ "gridAriaLabel": "Return codes",
+ "header": "Specify return codes to indicate post-installation behavior:",
+ "onAddAnnounceMessage": "Return code added item {0} of {1}",
+ "onDeleteSuccess": "Return code {0} deleted successfully",
+ "returnCodeAlreadyUsedValidation": "Return code is already used.",
+ "returnCodeMustBeIntegerValidation": "Return code should be an integer.",
+ "returnCodeShouldBeAtLeast": "Return code should be at least {0}.",
+ "returnCodeShouldBeAtMost": "Return code should be at most {0}.",
+ "selectorLabel": "Return codes"
+ },
"NotificationMessage": {
"NotificationMessageTemplatesTab": {
"arabic": "Arabic",
@@ -10516,84 +10079,599 @@
"localeLabel": "Locale",
"isDefaultLocale": "Is Default"
},
- "Win32Program": {
- "DeviceRestartBehaviorOptions": {
- "allow": "App install may force a device restart",
- "basedOnReturnCode": "Determine behavior based on return codes",
- "force": "Intune will force a mandatory device restart",
- "suppress": "No specific action"
- },
- "RunAsAccountOptions": {
- "system": "System",
- "user": "User"
- },
- "bladeTitle": "Program",
- "deviceRestartBehavior": "Device restart behavior",
- "deviceRestartBehaviorTooltip": "Select the device restart behavior after the app has successfully installed. Select 'Determine behavior based on return codes' to restart the device based on the return codes configuration settings. Select 'No specific action' to suppress device restarts during the app install for MSI-based apps. Select 'App install may force a device restart' to allow the app install to complete without suppressing restarts. Select 'Intune will force a mandatory device restart' to always restart the device after successful app installation.",
- "header": "Specify the commands to install and uninstall this app:",
- "installCommand": "Install command",
- "installCommandMaxLengthErrorMessage": "Install command cannot exceed the maximum allowed length of 1024 characters.",
- "installCommandTooltip": "The complete installation command line used to install this app.",
- "runAs32Bit": "Run install and uninstall commands in a 32-bit process on 64-bit clients",
- "runAs32BitTooltip": "Select 'Yes' to install and uninstall the app in a 32-bit process on 64-bit clients. Select 'No' (default) to install and uninstall the app in a 64-bit process on 64-bit clients. 32-bit clients will always use a 32-bit process.",
- "runAsAccount": "Install behavior",
- "runAsAccountTooltip": "Select 'System' to install this app for all users if supported. Select 'User' to install this app for the logged-in user on the device. For dual-purpose MSI apps, changes will prevent updates and uninstalls from successfully completing until the value applied to the device at the time of the original install is restored.",
- "selectorLabel": "Program",
- "uninstallCommand": "Uninstall command",
- "uninstallCommandTooltip": "The complete uninstallation command line used to uninstall this app."
- },
- "OutlookAppConfigSettings": {
- "AllowUserToChangeSetting": {
- "title": "Allow user to change setting",
- "tooltip": "Specify if the user is allowed to change the setting."
- },
- "AllowWorkAccounts": {
- "title": "Allow only work or school accounts",
- "tooltip": " By enabling this setting, users will be unable to add personal email and storage accounts within Outlook. If the user has a personal account added to Outlook, the user is prompted to remove the personal account. If the user does not remove the personal account, the work or school account cannot be added."
- },
- "BlockExternalImages": {
- "title": "Block external images",
- "tooltip": "When block external images is enabled, the app will prevent the download of images hosted on the Internet that are embedded in the message body. When set as not configured, the default app setting is set to Off"
- },
- "ConfigureEmail": {
- "title": "Configure email account settings"
- },
- "DefaultAppSignatureSetting": {
- "Tooltip": {
- "android": "Default app signature indicates whether the app will use “Get Outlook for Android” as the default signature during message composition. If the setting is configured as Off, the default signature will not be used; however, users can add their own signature.\n\nWhen set as Not Configured, the default app setting is set to On.",
- "iOS": "Default app signature indicates whether the app will use “Get Outlook for iOS” as the default signature during message composition. If the setting is configured as Off, the default signature will not be used; however, users can add their own signature.\n\nWhen set as Not Configured, the default app setting is set to On."
- },
- "title": "Default app signature"
- },
- "OfficeFeedReplies": {
- "title": "Discover Feed",
- "tooltip": "Discover Feed surfaces your most frequently accessed Office files. By default, this feed is enabled when Delve is enabled for the user. When set as not configured, the default app setting is set to On."
- },
- "OrganizeMailByThread": {
- "title": "Organize mail by thread",
- "tooltip": "The default behavior in Outlook is to bundle mail conversations into a threaded conversation view. If this setting is disabled Outlook will display each mail individually and will not group them by thread."
- },
- "PlayMyEmails": {
- "title": "Play My Emails",
- "tooltip": "The Play My Emails feature is not enabled by default in the app, but it is promoted to eligible users via a banner in the inbox. When set to Off, this feature will not be promoted to eligible users in the app. Users can choose to manually enable Play My Emails from within the app, even when this feature is set to Off. When set as Not configured, the default app setting is On and the feature will be promoted to eligible users."
- },
- "SuggestedReplies": {
- "title": "Suggested replies",
- "tooltip": "When you open a message, Outlook might suggest replies below the message. If you select a suggested reply, you can edit the reply before sending it."
- },
- "SyncCalendars": {
- "title": "Sync Calendars",
- "tooltip": "Configure whether users can sync their Outlook calendar to the native calendar app and database."
- },
- "TextPredictions": {
- "title": "Text Predictions",
- "tooltip": "Outlook can suggest words and phrases as you compose messages. When Outlook offers a suggestion, swipe to accept it. When set as not configured, the default app setting is set to On."
+ "WindowsQualityUpdateProfile": {
+ "Details": {
+ "DaysUntilForcedReboot": {
+ "label": "Number of days to wait before restart is enforced"
+ },
+ "Description": {
+ "label": "Description"
+ },
+ "Name": {
+ "label": "Name"
+ },
+ "QualityUpdateRelease": {
+ "label": "Expedite installation of quality updates if device OS version less than:"
+ },
+ "bladeTitle": "Quality updates Windows 10 and later (Preview)",
+ "loadError": "Loading failed!"
+ },
+ "TabName": {
+ "qualityUpdateSettings": "Settings"
+ },
+ "infoBoxText": "The only dedicated quality update control currently available other than the existing update rings policy for Windows 10 and later is the ability to expedite quality updates for devices that fall behind a specified patch level. Additional controls will be available in the future.",
+ "warningBoxText": "While expediting software updates can help decrease the time to get to compliance when necessary, it has a larger impact on end-user productivity. The chances that they will experience a restart during business hours is significantly increased."
+ },
+ "TermsOfUse": {
+ "Languages": {
+ "addLanguage": "Add language",
+ "af": "Afrikaans",
+ "am": "Amharic",
+ "arSA": "Arabic (Saudi Arabia)",
+ "as": "Assamese",
+ "az": "Azerbaijani",
+ "be": "Belarusian",
+ "bg": "Bulgarian",
+ "bn": "Bangla",
+ "bnIN": "Bangla (India)",
+ "bs": "Bosnian",
+ "ca": "Catalan",
+ "caESvalencia": "Valencian (Spain)",
+ "cs": "Czech",
+ "cy": "Welsh",
+ "da": "Danish",
+ "de": "German",
+ "default": "Default",
+ "defaultDetailsTag": "{0} (Default)",
+ "el": "Greek",
+ "en": "English",
+ "enGB": "English (United Kingdom)",
+ "es": "Spanish",
+ "esMX": "Spanish (Mexico)",
+ "et": "Estonian",
+ "eu": "Basque",
+ "fa": "Persian",
+ "fi": "Finnish",
+ "fil": "Filipino",
+ "fr": "French",
+ "frCA": "French (Canada)",
+ "ga": "Irish",
+ "gd": "Scottish Gaelic",
+ "gl": "Galician",
+ "gu": "Gujarati",
+ "ha": "Hausa",
+ "he": "Hebrew",
+ "hi": "Hindi",
+ "hr": "Croatian",
+ "hu": "Hungarian",
+ "hy": "Armenian",
+ "id": "Indonesian",
+ "ig": "Igbo",
+ "is": "Icelandic",
+ "it": "Italian",
+ "ja": "Japanese",
+ "ka": "Georgian",
+ "kk": "Kazakh",
+ "km": "Khmer",
+ "kn": "Kannada",
+ "ko": "Korean",
+ "kok": "Konkani",
+ "kuArab": "Central Kurdish (Arabic)",
+ "ky": "Kyrgyz",
+ "languageOptions": "Language Options",
+ "lb": "Luxembourgish",
+ "lo": "Lao",
+ "lt": "Lithuanian",
+ "lv": "Latvian",
+ "mi": "Maori",
+ "mk": "Macedonian",
+ "ml": "Malayalam",
+ "mn": "Mongolian",
+ "mr": "Marathi",
+ "ms": "Malay",
+ "mt": "Maltese",
+ "ne": "Nepali",
+ "nl": "Dutch",
+ "nnNO": "Norwegian, Nynorsk (Norway)",
+ "no": "Norwegian",
+ "notSpecified": "Language not specified",
+ "nso": "Sesotho sa Leboa",
+ "or": "Odia",
+ "paArabPK": "Punjabi (Islamic Republic of Pakistan)",
+ "paIN": "Punjabi (India)",
+ "pl": "Polish",
+ "prs": "Dari",
+ "ptBR": "Portuguese (Brazil)",
+ "ptPT": "Portuguese (Portugal)",
+ "quz": "Quechua",
+ "ro": "Romanian",
+ "ru": "Russian",
+ "rw": "Kinyarwanda",
+ "sd": "Sindhi",
+ "si": "Sinhala",
+ "sk": "Slovak",
+ "sl": "Slovenian",
+ "sq": "Albanian",
+ "srCyrlBA": "Serbian (Cyrillic, Bosnia and Herzegovina)",
+ "srCyrlRS": "Serbian (Cyrillic, Serbia)",
+ "srLatnRS": "Serbian (Latin, Serbia)",
+ "sv": "Swedish",
+ "sw": "Kiswahili",
+ "ta": "Tamil",
+ "te": "Telugu",
+ "tg": "Tajik",
+ "th": "Thai",
+ "ti": "Tigrinya",
+ "tk": "Turkmen",
+ "tn": "Setswana",
+ "tr": "Turkish",
+ "tt": "Tatar",
+ "ug": "Uyghur",
+ "uk": "Ukrainian",
+ "ur": "Urdu",
+ "uz": "Uzbek",
+ "vi": "Vietnamese",
+ "wo": "Wolof",
+ "xh": "isiXhosa",
+ "yo": "Yoruba",
+ "zhHans": "Chinese (Simplified)",
+ "zhHant": "Chinese (Traditional)",
+ "zu": "isiZulu"
+ },
+ "AcceptanceExpirationFrequency": {
+ "annually": "Annually",
+ "biannually": "Bi-annually",
+ "monthly": "Monthly",
+ "quarterly": "Quarterly"
},
- "ThemesEnabled": {
- "title": "Themes enabled",
- "tooltip": "Specify if the user is allowed to use a custom visual theme."
- }
- },
+ "Wizard": {
+ "AgreementTargetEntityScope": {
+ "NotSelected": {
+ "label": "None selected"
+ },
+ "selectEntityTitle": "Select group",
+ "title": "Select group"
+ },
+ "PolicyFile": {
+ "Languages": {
+ "Empty": {
+ "default": "Select default language",
+ "nonDefault": "Select a language"
+ }
+ },
+ "Validations": {
+ "duplicateLanguage": "Oops, {0} appears to be selected multiple times. Language selection must be unique."
+ }
+ },
+ "PolicyTemplate": {
+ "InfoBox": {
+ "allGuestsAllApps": "A conditional access policy will be created for all guests and all cloud apps. This policy impacts the Azure portal. Once this is created you might be required to sign-out and sign-in.",
+ "allUsersAllApps": "A conditional access policy will be created for all users and all cloud apps. This policy impacts the Azure portal. Once this is created you will be required to sign-out and sign-in.",
+ "custom": "Select the users, groups, and apps that this Terms of Use will be applied to.",
+ "noPolicy": "This terms of use will appear in the grant control list when creating a conditional access policy."
+ }
+ },
+ "Section": {
+ "conditionalAccessSubtitle": "Enforce with conditional access policy templates",
+ "conditionalAccessTitle": "Conditional access",
+ "termsOfUseSubtitle": "Create and upload documents",
+ "termsOfUseTitle": "Terms of use"
+ },
+ "acceptanceDurationInfo": "The terms of use will be enforced immediately and each user will have to re-consent every specified number of days.",
+ "acceptanceDurationLabel": "Duration before re-acceptance required (days)",
+ "acceptanceDurationPlaceholder": "Example: '90'",
+ "acceptanceExpirationFrequencyInfo": "Require users to consent on a recurring basis.",
+ "acceptanceExpirationFrequencyLabel": "Frequency",
+ "acceptanceExpirationStartDateTimeInfo": "The terms of use will be enforced immediately and users will be required to re-consent on this date.",
+ "acceptanceExpirationStartDateTimeLabel": "Expire starting on",
+ "agreementIsPerDeviceAcceptanceRequiredInfo": "The end users will be required to consent to the terms of use on every device.",
+ "agreementIsPerDeviceAcceptanceRequiredLabel": "Require users to consent on every device",
+ "agreementIsViewingBeforeAcceptanceRequiredInfo": "The end users will be required to view the terms of use prior to accepting.",
+ "agreementIsViewingBeforeAcceptanceRequiredLabel": "Require users to expand the terms of use",
+ "agreementNameInfo": "Name will be used to manage the terms of use within the Azure portal.",
+ "agreementNameLabel": "Name",
+ "agreementNamePlaceholderText": "Example: 'All users terms of use'",
+ "agreementRequirmentLabel": "Required Upon",
+ "agreementTargetEntityLabel": "Users targeted",
+ "agreementUploadPolicyLabel": "Terms of use",
+ "agreementUploadPolicyPlaceholderText": "Upload required PDF",
+ "createButtonLabel": "Create",
+ "createPolicyInfo": "In order to enforce the terms of use, a conditional access policy is required. You can create a conditional access policy targeted to specific users and applications later or use one of the predefined templates.",
+ "createPolicyLabel": "Create a policy",
+ "isAcceptanceExpirationEnabledInfo": "The terms of use will be enforced immediately and all users will be forced to re-consent on a schedule.",
+ "isAcceptanceExpirationEnabledLabel": "Expire consents",
+ "pdfValidationInvalidFileFormat": "The file must be in the .pdf format.",
+ "policyFilesInfo": "Upload a PDF file containing the terms of use that your end users must accept. Based on end user preferences they will be shown the appropriate language or if not match the default language will be shown.
For end users agreeing on mobile devices, we recommend the PDF font size to be at least 24 pt.
Display name will be the title of the terms of use that is presented to the end user.",
+ "policyFilesLabel": "Terms of use document",
+ "policyTemplateInfo": "These templates are pre configured conditional access policies that are targeted to specific users and applications.",
+ "policyTemplateLabel": "Policy templates",
+ "title": "New terms of use"
+ }
+ },
+ "TACSettings": {
+ "edgeSettings": "Edge configuration settings",
+ "edgeWindowsDataProtectionSettings": "Edge (Windows) data protection settings - Preview",
+ "edgeWindowsSettings": "Edge (Windows) configuration settings - Preview",
+ "generalAppConfig": "General app configuration",
+ "generalSettings": "General configuration settings",
+ "outlookSMIMEConfig": "Outlook S/MIME settings",
+ "outlookSettings": "Outlook configuration settings",
+ "sMIME": "S/MIME"
+ },
+ "MicrosoftEdgeChannel": {
+ "beta": "Beta",
+ "dev": "Dev",
+ "stable": "Stable"
+ },
+ "WipPolicySettings": {
+ "addNetworkBoundary": "Add network boundary",
+ "addNetworkBoundaryButton": "Add network boundary...",
+ "allowWindowsSearch": "Allow Windows Search to search encrypted corporate data and Store apps",
+ "authoritativeIpRanges": "Enterprise IP Ranges list is authoritative (do not auto-detect)",
+ "authoritativeProxyServers": "Enterprise Proxy Servers list is authoritative (do not auto-detect)",
+ "boundaryType": "Boundary type",
+ "cloudResources": "Cloud resources",
+ "corporateIdentity": "Corporate identity",
+ "dataRecoveryCert": "Upload a Data Recovery Agent (DRA) certificate to allow recovery of encrypted data",
+ "editNetworkBoundary": "Edit network boundary",
+ "enrollmentState": "Enrollment state",
+ "iPv4Ranges": "IPv4 ranges",
+ "iPv6Ranges": "IPv6 ranges",
+ "internalProxyServers": "Internal proxy servers",
+ "maxInactivityTime": "Maximum amount of time (in minutes) allowed after the device is idle that will cause the device to become PIN or password locked",
+ "maxPasswordAttempts": "Number of authentication failures allowed before the device will be wiped",
+ "mdmDiscoveryUrl": "MDM discovery URL",
+ "mdmRequiredSettingsInfo": "This policy only applies to Windows 10 Anniversary Edition and higher. This policy uses Windows Information Protection (WIP) to apply protection.",
+ "minimumPinLength": "Set the minimum number of characters required for the PIN",
+ "name": "Name",
+ "networkBoundariesGridEmptyText": "Any network boundaries you add will show up here",
+ "networkBoundary": "Network boundary",
+ "networkDomainNames": "Network domains",
+ "neutralResources": "Neutral resources",
+ "passportForWork": "Use Windows Hello for Business as a method for signing into Windows",
+ "pinExpiration": "Specify the period of time (in days) that a PIN can be used before the system requires the user to change it",
+ "pinHistory": "Specify the number of past PINs that can be associated to a user account that can’t be reused",
+ "pinLowercaseLetters": "Configure the use of lowercase letters in the Windows Hello for Business PIN",
+ "pinSpecialCharacters": "Configure the use of special characters in the Windows Hello for Business PIN",
+ "pinUppercaseLetters": "Configure the use of uppercase letters in the Windows Hello for Business PIN",
+ "protectUnderLock": "Prevent corporate data from being accessed by apps when the device is locked. Applies only to Windows 10 Mobile",
+ "protectedDomainNames": "Protected domains",
+ "proxyServers": "Proxy servers",
+ "requireAppPin": "Disable app PIN when device PIN is managed",
+ "requiredSettings": "Required settings",
+ "requiredSettingsInfo": "Changing the scope or removing this policy will decrypt corporate data.",
+ "revokeOnMdmHandoff": "Revoke access to protected data when the device enrolls to MDM",
+ "revokeOnUnenroll": "Revoke encryption keys on unenroll",
+ "rmsTemplateForEdp": "Specify the template ID to use for Azure RMS",
+ "showWipIcon": "Show the enterprise data protection icon",
+ "type": "Type",
+ "useRmsForWip": "Use Azure RMS for WIP",
+ "value": "Value",
+ "weRequiredSettingsInfo": "This policy only applies to Windows 10 Creators Update and higher. This policy uses Windows Information Protection (WIP) and Windows MAM to apply protection.",
+ "wipProtectionMode": "Windows Information Protection mode",
+ "withEnrollment": "With enrollment",
+ "withoutEnrollment": "Without enrollment"
+ },
+ "OfficeApplicationAdditionalType": {
+ "projectProRetail": "Project Online Desktop Client",
+ "visioProRetail": "Visio Online Plan 2"
+ },
+ "Countries": {
+ "ae": "United Arab Emirates",
+ "ag": "Antigua and Barbuda",
+ "ai": "Anguilla",
+ "al": "Albania",
+ "am": "Armenia",
+ "ao": "Angola",
+ "ar": "Argentina",
+ "at": "Austria",
+ "au": "Australia",
+ "az": "Azerbaijan",
+ "bb": "Barbados",
+ "be": "Belgium",
+ "bf": "Burkina Faso",
+ "bg": "Bulgaria",
+ "bh": "Bahrain",
+ "bj": "Benin",
+ "bm": "Bermuda",
+ "bn": "Brunei",
+ "bo": "Bolivia",
+ "br": "Brazil",
+ "bs": "Bahamas",
+ "bt": "Bhutan",
+ "bw": "Botswana",
+ "by": "Belarus",
+ "bz": "Belize",
+ "ca": "Canada",
+ "cg": "Republic Of Congo",
+ "ch": "Switzerland",
+ "cl": "Chile",
+ "cn": "China",
+ "co": "Colombia",
+ "cr": "Costa Rica",
+ "cv": "Cape Verde",
+ "cy": "Cyprus",
+ "cz": "Czech Republic",
+ "de": "Germany",
+ "dk": "Denmark",
+ "dm": "Dominica",
+ "do": "Dominican Republic",
+ "dz": "Algeria",
+ "ec": "Ecuador",
+ "ee": "Estonia",
+ "eg": "Egypt",
+ "es": "Spain",
+ "fi": "Finland",
+ "fj": "Fiji",
+ "fm": "Federated States Of Micronesia",
+ "fr": "France",
+ "gb": "United Kingdom",
+ "gd": "Grenada",
+ "gh": "Ghana",
+ "gm": "Gambia",
+ "gr": "Greece",
+ "gt": "Guatemala",
+ "gw": "Guinea-Bissau",
+ "gy": "Guyana",
+ "hk": "Hong Kong",
+ "hn": "Honduras",
+ "hr": "Croatia",
+ "hu": "Hungary",
+ "id": "Indonesia",
+ "ie": "Ireland",
+ "il": "Israel",
+ "in": "India",
+ "is": "Iceland",
+ "it": "Italy",
+ "jm": "Jamaica",
+ "jo": "Jordan",
+ "jp": "Japan",
+ "ke": "Kenya",
+ "kg": "Kyrgyzstan",
+ "kh": "Cambodia",
+ "kn": "St. Kitts and Nevis",
+ "kr": "Republic Of Korea",
+ "kw": "Kuwait",
+ "ky": "Cayman Islands",
+ "kz": "Kazakstan",
+ "la": "Lao People’s Democratic Republic",
+ "lb": "Lebanon",
+ "lc": "St. Lucia",
+ "lk": "Sri Lanka",
+ "lr": "Liberia",
+ "lt": "Lithuania",
+ "lu": "Luxembourg",
+ "lv": "Latvia",
+ "md": "Republic Of Moldova",
+ "mg": "Madagascar",
+ "mk": "North Macedonia",
+ "ml": "Mali",
+ "mn": "Mongolia",
+ "mo": "Macau",
+ "mr": "Mauritania",
+ "ms": "Montserrat",
+ "mt": "Malta",
+ "mu": "Mauritius",
+ "mw": "Malawi",
+ "mx": "Mexico",
+ "my": "Malaysia",
+ "mz": "Mozambique",
+ "na": "Namibia",
+ "ne": "Niger",
+ "ng": "Nigeria",
+ "ni": "Nicaragua",
+ "nl": "Netherlands",
+ "no": "Norway",
+ "np": "Nepal",
+ "nz": "New Zealand",
+ "om": "Oman",
+ "pa": "Panama",
+ "pe": "Peru",
+ "pg": "Papua New Guinea",
+ "ph": "Philippines",
+ "pk": "Pakistan",
+ "pl": "Poland",
+ "pt": "Portugal",
+ "pw": "Palau",
+ "py": "Paraguay",
+ "qa": "Qatar",
+ "ro": "Romania",
+ "ru": "Russia",
+ "sa": "Saudi Arabia",
+ "sb": "Solomon Islands",
+ "sc": "Seychelles",
+ "se": "Sweden",
+ "sg": "Singapore",
+ "si": "Slovenia",
+ "sk": "Slovakia",
+ "sl": "Sierra Leone",
+ "sn": "Senegal",
+ "sr": "Suriname",
+ "st": "Sao Tome and Principe",
+ "sv": "El Salvador",
+ "sz": "Swaziland",
+ "tc": "Turks and Caicos",
+ "td": "Chad",
+ "th": "Thailand",
+ "tj": "Tajikistan",
+ "tm": "Turkmenistan",
+ "tn": "Tunisia",
+ "tr": "Turkey",
+ "tt": "Trinidad and Tobago",
+ "tw": "Taiwan",
+ "tz": "Tanzania",
+ "ua": "Ukraine",
+ "ug": "Uganda",
+ "us": "United States",
+ "uy": "Uruguay",
+ "uz": "Uzbekistan",
+ "vc": "St. Vincent and The Grenadines",
+ "ve": "Venezuela",
+ "vg": "British Virgin Islands",
+ "vn": "Vietnam",
+ "ye": "Yemen",
+ "za": "South Africa",
+ "zw": "Zimbabwe"
+ },
+ "OfficeUpdateChannel": {
+ "current": "Current Channel",
+ "deferred": "Semi-Annual Enterprise Channel",
+ "firstReleaseCurrent": "Current Channel (Preview)",
+ "firstReleaseDeferred": "Semi-Annual Enterprise Channel (Preview)",
+ "monthlyEnterprise": "Monthly Enterprise Channel",
+ "placeHolder": "Select one"
+ },
+ "AppProtection": {
+ "allAppTypes": "Target to all app types",
+ "androidPlatformLabel": "Android",
+ "appsInAndroidWorkProfile": "Apps in Android Work Profile",
+ "appsOnIntuneManagedDevices": "Apps on Intune managed devices",
+ "appsOnUnmanagedDevices": "Apps on unmanaged devices",
+ "iOSPlatformLabel": "iOS/iPadOS",
+ "iosAndroidMacPlatformLabel": "iOS, Android, Mac",
+ "iosAndroidPlatformLabel": "iOS, Android",
+ "macPlatformLabel": "Mac",
+ "notAvailable": "Not Available",
+ "windows10PlatformLabel": "Windows 10 and later",
+ "withEnrollment": "With enrollment",
+ "withoutEnrollment": "Without enrollment"
+ },
+ "InstallContextType": {
+ "device": "Device",
+ "deviceContext": "Device context",
+ "user": "User",
+ "userContext": "User context"
+ },
+ "ProactiveRemediations": {
+ "Create": {
+ "Basics": {
+ "DescriptionMultiLineTextBox": {
+ "label": "Description",
+ "placeholder": "Enter a description"
+ },
+ "NameTextBox": {
+ "label": "Name",
+ "placeholder": "Enter a name"
+ },
+ "PublisherTextBox": {
+ "label": "Publisher",
+ "placeholder": "Enter a publisher"
+ },
+ "VersionTextBox": {
+ "label": "Version"
+ },
+ "headerDescription": "Create a new custom script package from detection and remediation scripts that you’ve written."
+ },
+ "ScopeTags": {
+ "headerDescription": "Select one or more groups to assign the script package."
+ },
+ "Settings": {
+ "DetectionScriptMultiLineTextBox": {
+ "label": "Detection script",
+ "placeholder": "Input script text",
+ "requiredValidationMessage": "Please enter the detection script"
+ },
+ "EnforceScriptSignatureCheckOptionPicker": {
+ "label": "Enforce script signature check"
+ },
+ "LoggedOnCredentialsOptionPicker": {
+ "label": "Run this script using the logged-on credentials"
+ },
+ "RemediationScript": {
+ "infoBox": "This script will run in detect-only mode because there is no remediation script."
+ },
+ "RemediationScriptMultiLineTextBox": {
+ "label": "Remediation script",
+ "placeholder": "Input script text"
+ },
+ "RunIn64BitPSOptionPicker": {
+ "label": "Run script in 64-bit PowerShell"
+ },
+ "ScriptMultiLineTextBox": {
+ "base64EncodingValidationMessage": "Invalid script. One or more characters used in the script is not valid."
+ },
+ "headerDescription": "Create a custom script package from scripts you've written. By default, scripts will run on assigned devices every day.",
+ "infoBox": "This script is read-only. Some of the settings for this script might be disabled."
+ },
+ "title": "Create custom script",
+ "ScriptProperties": {
+ "GridHeaders": {
+ "interval": "Interval",
+ "time": "Date and time"
+ },
+ "Interval": {
+ "day": "Repeats every day",
+ "days": "Repeats every {0} days",
+ "hour": "Repeats every hour",
+ "hours": "Repeats every {0} hours",
+ "month": "Repeats every month",
+ "months": "Repeats every {0} months",
+ "week": "Repeats every week",
+ "weeks": "Repeats every {0} weeks"
+ },
+ "Time": {
+ "utc": "{0} (UTC)",
+ "utcWithDate": "{0} (UTC) on {1}",
+ "withDate": "{0} on {1}"
+ }
+ }
+ },
+ "Edit": {
+ "title": "Edit - {0}"
+ }
+ },
+ "EdgeAppConfig": {
+ "AllowedURLs": {
+ "title": "Allowed URLs",
+ "tooltip": "Specify the sites your users are allowed to access while in their work context. No other sites will be allowed. You may choose to configure either an allowed/blocked list, but not both. "
+ },
+ "ApplicationProxyRedirection": {
+ "header": "Application proxy",
+ "title": "Application proxy redirection",
+ "tooltip": "Enable App proxy redirection to give users access to corporate links and on-premise web apps."
+ },
+ "BlockedURLs": {
+ "title": "Blocked URLs",
+ "tooltip": "Specify the sites that are blocked for your users while in their work context. All other sites will be allowed. You may choose to configure either an allowed/blocked list, but not both. "
+ },
+ "Bookmarks": {
+ "header": "Managed bookmarks",
+ "tooltip": "Enter a list of bookmarked URLs for your users to have available when using Microsoft Edge in their work context.",
+ "uRL": "URL"
+ },
+ "HomepageURL": {
+ "header": "Managed homepage",
+ "title": "Homepage shortcut URL",
+ "tooltip": "Configure a homepage shortcut that will appear to users as the first icon beneath the search bar when they open a new tab in Microsoft Edge."
+ },
+ "PersonalContext": {
+ "label": "Redirect restricted sites to personal context",
+ "tooltip": "Configure if users should be allowed to transition to their personal context to open restricted sites."
+ }
+ },
+ "BooleanActions": {
+ "allow": "Allow",
+ "block": "Block",
+ "configured": "Configured",
+ "disable": "Disable",
+ "dontRequire": "Don't Require",
+ "enable": "Enable",
+ "hide": "Hide",
+ "limit": "Limit",
+ "notConfigured": "Not configured",
+ "require": "Require",
+ "show": "Show",
+ "yes": "Yes"
+ },
+ "ArchitectureOptions": {
+ "sixtyFourBit": "64-bit",
+ "thirtyTwoBit": "32-bit"
+ },
+ "WindowsQualityUpdateDaysUntilForcedReboot": {
+ "oneDay": "1 day",
+ "twoDays": "2 days",
+ "zeroDays": "0 days"
+ },
"SoftwareUpdates": {
"BladeTitles": {
"overview": "Overview"
@@ -10800,66 +10878,732 @@
"notScannedYet": "Not scanned yet",
"outOfDateIosDevices": "Out of Date iOS Devices"
},
- "ScheduledAction": {
- "Form": {
- "editBlockActionInfo": "One block action is required for all compliance policies.",
- "graceperiod": "Schedule (days after noncompliance)",
- "graceperiodInfo": "Specify the number of days after noncompliance after which this action should be triggered for the user's device",
- "subtitle": "Specify action parameters",
- "title": "Action parameters"
- },
- "List": {
- "gracePeriodDay": "{0} day after noncompliance",
- "gracePeriodDays": "{0} days after noncompliance",
- "gracePeriodHour": "{0} hour after noncompliance",
- "gracePeriodHours": "{0} hours after noncompliance",
- "gracePeriodMinute": "{0} minute after noncompliance",
- "gracePeriodMinutes": "{0} minutes after noncompliance",
- "immediately": "Immediately",
- "schedule": "Schedule",
- "scheduleInfoBalloon": "Days after noncompliance",
- "subtitle": "Specify the sequence of actions on noncompliant devices",
- "title": "Actions"
- },
- "Notification": {
- "additionalEmailLabel": "Others",
- "additionalRecipients": "Additional recipients (via email)",
- "additionalRecipientsBladeTitle": "Select additional recipients",
- "emailAddressPrompt": "Enter email addresses (separated by commas)",
- "invalidEmail": "Invalid email address",
- "messageTemplate": "Message template",
- "noneSelected": "None selected",
- "notSelected": "Not selected",
- "numSelected": "{0} selected",
- "selected": "Selected"
+ "ConfigurationTypes": {
+ "Table": {
+ "androidDeviceOwnerGeneral": "Device restrictions (device owner)",
+ "androidForWorkGeneral": "Device restrictions (work profile)"
+ },
+ "androidCustom": "Custom",
+ "androidDeviceOwnerGeneral": "Device restrictions",
+ "androidDeviceOwnerPkcs": "PKCS Certificate",
+ "androidDeviceOwnerScep": "SCEP Certificate",
+ "androidDeviceOwnerTrustedCertificate": "Trusted Certificate",
+ "androidDeviceOwnerVpn": "VPN",
+ "androidDeviceOwnerWiFi": "Wi-Fi",
+ "androidEmailProfile": "Email (Samsung KNOX only)",
+ "androidForWorkCustom": "Custom",
+ "androidForWorkEmailProfile": "Email",
+ "androidForWorkGeneral": "Device restrictions",
+ "androidForWorkImportedPFX": "PKCS imported certificate",
+ "androidForWorkOemConfig": "OEMConfig",
+ "androidForWorkPKCS": "PKCS certificate",
+ "androidForWorkSCEP": "SCEP certificate",
+ "androidForWorkTrustedCertificate": "Trusted certificate",
+ "androidForWorkVpn": "VPN",
+ "androidForWorkWiFi": "Wi-Fi",
+ "androidGeneral": "Device restrictions",
+ "androidImportedPFX": "PKCS imported certificate",
+ "androidPKCS": "PKCS certificate",
+ "androidSCEP": "SCEP certificate",
+ "androidTrustedCertificate": "Trusted certificate",
+ "androidVPN": "VPN",
+ "androidWiFi": "Wi-Fi",
+ "androidZebraMx": "MX profile (Zebra only)",
+ "complianceAndroid": "Android compliance policy",
+ "complianceAndroidDeviceOwner": "Fully managed, dedicated, and corporate-owned work profile",
+ "complianceAndroidEnterprise": "Personally-owned work profile",
+ "complianceAndroidForWork": "Android for Work compliance policy",
+ "complianceIos": "iOS compliance policy",
+ "complianceMac": "Mac compliance policy",
+ "complianceWindows10": "Windows 10 and later compliance policy",
+ "complianceWindows10Mobile": "Windows 10 mobile compliance policy",
+ "complianceWindows8": "Windows 8 compliance policy",
+ "complianceWindowsPhone": "Windows Phone compliance policy",
+ "exchangeActiveSync": "Exchange Active Sync",
+ "iosCustom": "Custom",
+ "iosDerivedCredentialAuthenticationConfiguration": "Derived PIV credential",
+ "iosDeviceFeatures": "Device features",
+ "iosEDU": "Education",
+ "iosEducation": "Education",
+ "iosEmailProfile": "Email",
+ "iosGeneral": "Device restrictions",
+ "iosImportedPFX": "PKCS imported certificate",
+ "iosPKCS": "PKCS certificate",
+ "iosPresets": "Presets",
+ "iosSCEP": "SCEP certificate",
+ "iosTrustedCertificate": "Trusted certificate",
+ "iosVPN": "VPN",
+ "iosVPNZscaler": "VPN",
+ "iosWiFi": "Wi-Fi",
+ "macCustom": "Custom",
+ "macDeviceFeatures": "Device features",
+ "macEndpointProtection": "Endpoint protection",
+ "macExtensions": "Extensions",
+ "macGeneral": "Device restrictions",
+ "macImportedPFX": "PKCS imported certificate",
+ "macSCEP": "SCEP certificate",
+ "macTrustedCertificate": "Trusted certificate",
+ "macVPN": "VPN",
+ "macWiFi": "Wi-Fi",
+ "settingsCatalog": "Settings catalog (preview)",
+ "unsupported": "Unsupported",
+ "windows10AdministrativeTemplate": "Administrative Templates (Preview)",
+ "windows10Atp": "Microsoft Defender for Endpoint (desktop devices running Windows 10 or later)",
+ "windows10Custom": "Custom",
+ "windows10DesktopSoftwareUpdate": "Software Updates",
+ "windows10DeviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
+ "windows10EmailProfile": "Email",
+ "windows10EndpointProtection": "Endpoint protection",
+ "windows10EnterpriseDataProtection": "Windows Information Protection",
+ "windows10General": "Device restrictions",
+ "windows10ImportedPFX": "PKCS imported certificate",
+ "windows10Kiosk": "Kiosk",
+ "windows10NetworkBoundary": "Network boundary",
+ "windows10PKCS": "PKCS certificate",
+ "windows10PolicyOverride": "Override Group Policy",
+ "windows10SCEP": "SCEP certificate",
+ "windows10SecureAssessmentProfile": "Education profile",
+ "windows10SharedPC": "Shared multi-user device",
+ "windows10TeamGeneral": "Device restrictions (Windows 10 Team)",
+ "windows10TrustedCertificate": "Trusted certificate",
+ "windows10VPN": "VPN",
+ "windows10WiFi": "Wi-Fi",
+ "windows10WiFiCustom": "Wi-Fi custom",
+ "windows8General": "Device restrictions",
+ "windows8SCEP": "SCEP certificate",
+ "windows8TrustedCertificate": "Trusted certificate",
+ "windows8VPN": "VPN",
+ "windows8WiFi": "Wi-Fi import",
+ "windowsDeliveryOptimization": "Delivery Optimization",
+ "windowsDomainJoin": "Domain Join",
+ "windowsEditionUpgrade": "Edition upgrade and mode switch",
+ "windowsIdentityProtection": "Identity protection",
+ "windowsPhoneCustom": "Custom",
+ "windowsPhoneEmailProfile": "Email",
+ "windowsPhoneGeneral": "Device restrictions",
+ "windowsPhoneImportedPFX": "PKCS imported certificate",
+ "windowsPhoneSCEP": "SCEP certificate",
+ "windowsPhoneTrustedCertificate": "Trusted certificate",
+ "windowsPhoneVPN": "VPN",
+ "IosUpdate": "iOS Update policy"
+ },
+ "OfficeSuiteAppsTab": {
+ "acceptLicenseOnBehalfOfUsersLabel": "Accept the Microsoft Software License Terms on behalf of users",
+ "appSuiteConfigurationLabel": "App suite configuration",
+ "appSuiteInformationLabel": "App suite information",
+ "appsToBeInstalledLabel": "Apps to be installed as part of the suite",
+ "architectureLabel": "Architecture",
+ "architectureTooltip": "Defines whether the 32-bit or 64-bit edition of Microsoft 365 Apps is installed on devices.",
+ "configurationDesignerLabel": "Configuration designer",
+ "configurationFileLabel": "Configuration file",
+ "configurationSettingsFormatLabel": "Configuration settings format",
+ "configureAppSuiteLabel": "Configure app suite",
+ "configuredLabel": "Configured",
+ "currentVersionLabel": "Current version",
+ "currentVersionTooltip": "This is the current version of Office that’s configured in this suite. This value will be updated when a newer version is configured and saved.",
+ "enableMicrosoftSearchAsDefaultTooltip": "Installs a background service that helps determine whether a Microsoft Search in Bing extension for Google Chrome is installed on the device.",
+ "enterXmlDataLabel": "Enter XML data",
+ "languagesLabel": "Languages",
+ "languagesTooltip": "By default, Intune will install Office with the default language of the operating system. Choose any additional languages that you want to install.",
+ "learnMoreText": "Learn more",
+ "newUpdateChannelTooltip": "Defines how often the app is updated with new features.",
+ "noCurrentVersionText": "No current version",
+ "noLanguagesSelectedLabel": "No languages selected",
+ "notConfiguredLabel": "Not configured",
+ "propertiesLabel": "Properties",
+ "removeOtherVersionsLabel": "Remove other versions",
+ "removeOtherVersionsTooltip": "Select Yes to remove other versions of Office (MSI) from user devices.",
+ "selectOfficeAppsLabel": "Select Office apps",
+ "selectOfficeAppsTooltip": "Select the Office 365 apps that you want to install as part of the suite.",
+ "selectOtherOfficeAppsLabel": "Select other Office apps (license required)",
+ "selectOtherOfficeAppsTooltip": "If you own licenses for these additional Office apps you can also assign them with Intune.",
+ "specificVersionLabel": "Specific version",
+ "updateChannelLabel": "Update channel",
+ "updateChannelTooltip": "Defines how often the app is updated with new features.
\nMonthly - Provide users with the newest features of Office as soon as they're available.
\nMonthly Enterprise Channel - Provide users with the newest features of Office once a month, on the second Tuesday of the month.
\nMonthly (Targeted) – Provide an early look at the upcoming Monthly Channel release. It is a supported update channel, and usually is available at least one week ahead of time when it's a Monthly Channel release that contains new features.
\nSemi-Annual - Provide users with new features of Office only a few times a year.
\nSemi-Annual (Targeted) - Provide pilot users and application compatibility testers the opportunity to test the next Semi-Annual.",
+ "useMicrosoftSearchAsDefault": "Install background service for Microsoft Search in Bing",
+ "useSharedComputerActivationLabel": "Use shared computer activation",
+ "useSharedComputerActivationTooltip": "Shared computer activation lets you deploy Microsoft 365 Apps to computers that are used by multiple users. Normally, users can only install and activate Microsoft 365 Apps on a limited number of devices, such as 5 PCs. Using Microsoft 365 Apps with shared computer activation doesn't count against that limit.",
+ "versionToInstallLabel": "Version to install",
+ "versionToInstallTooltip": "Select the version of Office that should be installed.",
+ "xLanguagesSelectedLabel": "{0} language(s) selected",
+ "xmlConfigurationLabel": "XML Configuration"
+ },
+ "EnrollmentRestrictions": {
+ "DeletePayloadLink": {
+ "content": "{0} is included in one or more policy sets. If you delete {0}, you'll no longer be able to assign it via these policy sets. Delete anyway?",
+ "contentWithError": "{0} might be included in one or more policy sets. If you delete {0}, you'll no longer be able to assign it via these policy sets. Delete anyway?",
+ "header": "Are you sure you want to delete this restriction?"
+ },
+ "DeviceLimit": {
+ "description": "Specify the maximum number of devices a user can enroll.",
+ "header": "Device limit restrictions",
+ "info": "Define how many devices each user can enroll."
+ },
+ "DeviceType": {
+ "VersionValidation": {
+ "aOSP": "Must be 1.0 or greater.",
+ "android": "Enter a valid version number. Examples: 5.0, 5.5.1, 6.0.0.1",
+ "androidForWork": "Enter a valid version number. Examples: 5.0, 5.1.1",
+ "iOS": "Enter a valid version number. Examples: 9.0, 10.0, 9.0.2",
+ "mac": "Enter a valid version number. Examples: 10, 10.10, 10.10.1",
+ "min": "Minimum cannot be lower than {0}",
+ "minMax": "Minimum version cannot be greater than maximum version.",
+ "windows": "Must be 10.0 or greater. Leave blank to allow 8.1 devices",
+ "windowsMobile": "Must be 10.0 or greater. Leave blank to allow 8.1 devices"
+ },
+ "allPlatformsBlocked": "All device platforms are blocked. Allow platform enrollment to enable platform configuration.",
+ "blockManufacturerPlaceHolder": "Manufacturer name",
+ "blockManufacturersHeader": "Blocked manufacturers",
+ "cannotRestrict": "Restriction not supported",
+ "configurationDescription": "Specify the platform configuration restrictions that must be met for a device to enroll. Use compliance policies to restrict devices after enrollment. Define versions as major.minor.build. Version restrictions only apply to devices enrolled with the Company Portal. Intune classifies devices as personally-owned by default. Additional action is required to classify devices as corporate-owned.",
+ "configurationDescriptionLabel": "Learn more about setting enrollment restrictions",
+ "configurations": "Configure platforms",
+ "deviceManufacturer": "Device manufacturer",
+ "header": "Device type restrictions",
+ "info": "Define which platforms, versions, and management types can enroll.",
+ "manufacturer": "Manufacturer",
+ "max": "Max",
+ "maxVersion": "Maximum version",
+ "min": "Min",
+ "minVersion": "Minimum version",
+ "newPlatforms": "You have allowed new platforms. Consider updating Platform Configurations.",
+ "personal": "Personally owned",
+ "platform": "Platform",
+ "platformDescription": "You can allow enrollment of the following platforms. Only block platforms you will not support. Allowed platforms can be configured with additional enrollment restrictions.",
+ "platformSettings": "Platform settings",
+ "platforms": "Select platforms",
+ "platformsSelected": "{0} platforms selected",
+ "type": "Type",
+ "versions": "versions",
+ "versionsRange": "Allow min/max range:",
+ "windowsTooltip": "Restricts enrollment through Mobile Device Management. Does not restrict PC agent installation. Only Windows 10 and Windows 11 versions are supported. Leave versions blank to allow Windows 8.1."
+ },
+ "Priority": {
+ "saved": "Restriction Priorities were successfully saved."
+ },
+ "Row": {
+ "announce": "Priority: {0}, Name: {1}, Assigned: {2}"
+ },
+ "Table": {
+ "deployed": "Deployed",
+ "name": "Name",
+ "priority": "Priority"
},
- "block": "Mark device noncompliant",
- "lockDevice": "Lock device (local action)",
- "lockDeviceWithPasscode": "Lock device (local action)",
- "noAction": "No action",
- "noActionRow": "No actions, select 'Add' to add an action",
- "pushNotification": "Send push notification to end user",
- "remoteLock": "Remotely lock the noncompliant device",
- "removeSourceAccessProfile": "Remove source access profile",
- "retire": "Retire the noncompliant device",
- "wipe": "Wipe",
- "emailNotification": "Send email to end user"
- },
- "WIPPinRequirements": {
- "WipLowercaseCharacterPinRequirements": {
- "allow": "Allow the use of lowercase letters in PIN",
- "notAllow": "Do not allow the use of lowercase letters in PIN",
- "requireAtLeastOne": "Require the use of at least one lowercase letter in PIN"
- },
- "WipSpecialCharacterPinRequirements": {
- "allow": "Allow the use of special characters in PIN",
- "notAllow": "Do not allow the use of special characters in PIN",
- "requireAtLeastOne": "Require the use of at least one special character in PIN"
- },
- "WipUppercaseCharacterPinRequirements": {
- "allow": "Allow the use of uppercase letters in PIN",
- "notAllow": "Do not allow the use of uppercase letters in PIN",
- "requireAtLeastOne": "Require the use of at least one uppercase letter in PIN"
- }
- }
+ "Type": {
+ "limit": "Device limit restriction",
+ "type": "Device type restriction"
+ },
+ "allUsers": "All Users",
+ "androidRestrictions": "Android restrictions",
+ "create": "Create restriction",
+ "defaultLimitDescription": "This is the default Device Limit Restriction applied with lowest priority to all users regardless of group membership.",
+ "defaultTypeDescription": "This is the default Device Type Restriction applied with lowest priority to all users regardless of group membership.",
+ "defaultWhfbDescription": "This is the default Windows Hello for Business configuration applied with the lowest priority to all users regardless of group membership.",
+ "deleteMessage": "Affected users will be restricted by the next highest priority restriction assigned or the default restriction if no other restriction is assigned.",
+ "deleteTitle": "Are you sure you want to delete {0} restriction?",
+ "descriptionHint": "Short paragraph describing the business use or restriction level characterized by the restriction's settings.",
+ "edit": "Edit restriction",
+ "info": "A device must comply with the highest priority enrollment restrictions assigned to its user. You can drag a device restriction to change its priority. Default restrictions are lowest priority for all users and govern userless enrollments. Default restrictions may be edited, but not deleted.",
+ "iosRestrictions": "iOS restrictions",
+ "mDM": "MDM",
+ "macRestrictions": "MacOS restrictions",
+ "maxVersion": "Max Version",
+ "minVersion": "Min Version",
+ "nameHint": "This will be the primary attribute visible for identifying the restriction set.",
+ "noAssignmentsStatusBar": "Assign restriction to at least one group. Click Properties.",
+ "notFound": "Restriction not found. It may have already been deleted.",
+ "personallyOwned": "Personally owned devices",
+ "restriction": "Restriction",
+ "restrictionLowerCase": "restriction",
+ "restrictionType": "Restriction type",
+ "selectType": "Select restriction type",
+ "selectValidation": "Please select a platform",
+ "typeHint": "Choose Device Type Restriction to restrict device properties. Choose Device Limit Restriction to restrict number of devices per-user.",
+ "typeRequired": "Restriction type is required.",
+ "winPhoneRestrictions": "Windows Phone restrictions",
+ "windowsRestrictions": "Windows restrictions"
+ },
+ "Titles": {
+ "ChromeOs": {
+ "devices": "Chrome OS devices"
+ },
+ "ManagedDesktop": {
+ "adminContacts": "Admin contacts",
+ "appPackaging": "App packaging",
+ "devices": "Devices",
+ "feedback": "Feedback",
+ "gettingStarted": "Getting started",
+ "messages": "Messages",
+ "onlineResources": "Online resources",
+ "serviceRequests": "Service requests",
+ "settings": "Settings",
+ "tenantEnrollment": "Tenant enrollment"
+ },
+ "actions": "Actions for Non-Compliance",
+ "advancedExchangeSettings": "Exchange online settings",
+ "advancedThreatProtection": "Microsoft Defender for Endpoint",
+ "allApps": "All apps",
+ "allDevices": "All devices",
+ "androidFotaDeployments": "Android FOTA deployments",
+ "appBundles": "App Bundles",
+ "appCategories": "App categories",
+ "appConfigPolicies": "App configuration policies",
+ "appInstallStatus": "App install status",
+ "appLicences": "App licenses",
+ "appProtectionPolicies": "App protection policies",
+ "appProtectionStatus": "App protection status",
+ "appSelectiveWipe": "App selective wipe",
+ "appleVppTokens": "Apple VPP Tokens",
+ "apps": "Apps",
+ "assign": "Assignments",
+ "assignedPermissions": "Assigned permissions",
+ "assignedRoles": "Assigned roles",
+ "autopilotDeploymentReport": "Autopilot deployments (preview)",
+ "brandingAndCustomization": "Customization",
+ "cartProfiles": "Cart profiles",
+ "certificateConnectors": "Certificate connectors",
+ "chromeEnterprise": "Chrome Enterprise",
+ "compliancePolicies": "Compliance policies",
+ "complianceScriptManagement": "Scripts",
+ "complianceScriptManagementPreview": "Scripts (Preview)",
+ "complianceSettings": "Compliance policy settings",
+ "conditionStatements": "Condition statements",
+ "conditions": "Locations",
+ "configMgr": "Microsoft Endpoint Configuration Manager",
+ "configurationProfiles": "Configuration profiles",
+ "configurationProfilesPreview": "Configuration profiles (preview)",
+ "connectorsAndTokens": "Connectors and tokens",
+ "corporateDeviceIdentifiers": "Corporate device identifiers",
+ "customAttributes": "Custom attributes",
+ "customNotifications": "Custom notifications",
+ "deploymentSettings": "Deployment settings",
+ "derivedCredentials": "Derived Credentials",
+ "deviceActions": "Device actions",
+ "deviceCategories": "Device categories",
+ "deviceCleanUp": "Device clean-up rules",
+ "deviceEnrollmentManagers": "Device enrollment managers",
+ "deviceExecutionStatus": "Device status",
+ "deviceLimitEnrollmentRestrictions": "Enrollment device limit restrictions",
+ "deviceTypeEnrollmentRestrictions": "Enrollment device platform restrictions",
+ "devices": "Devices",
+ "discoveredApps": "Discovered apps",
+ "embeddedSIM": "eSIM cellular profiles (Preview)",
+ "enrollDevices": "Enroll devices",
+ "enrollmentFailures": "Enrollment failures",
+ "enrollmentNotifications": "Enrollment notifications (Preview)",
+ "enrollmentRestrictions": "Enrollment restrictions",
+ "exchangeActiveSync": "Exchange ActiveSync",
+ "exchangeServiceConnectors": "Exchange service connectors",
+ "failuresForFeatureUpdates": "Feature update failures (Preview)",
+ "failuresForQualityUpdates": "Windows Expedited update failures (Preview)",
+ "featureFlighting": "Feature flighting",
+ "featureUpdateDeployments": "Feature updates for Windows 10 and later (Preview)",
+ "flighting": "Flighting",
+ "fotaUpdate": "Firmware over-the-air update",
+ "groupPolicy": "Administrative Templates",
+ "groupPolicyAnalytics": "Group policy analytics",
+ "helpSupport": "Help and support",
+ "helpSupportReplacement": "Help and support ({0})",
+ "iOSAppProvisioning": "iOS app provisioning profiles",
+ "incompleteUserEnrollments": "Incomplete user enrollments",
+ "intuneRemoteAssistance": "Remote help (preview)",
+ "iosUpdates": "Update policies for iOS/iPadOS",
+ "legacyPcManagement": "Legacy PC management",
+ "macOSSoftwareUpdate": "Update policies for macOS",
+ "macOSSoftwareUpdateAccountSummaries": "Installation status for macOS devices",
+ "macOSSoftwareUpdateCategorySummaries": "Software updates summary",
+ "macOSSoftwareUpdateStateSummaries": "updates",
+ "managedGooglePlay": "Managed Google Play",
+ "msfb": "Microsoft Store for Business",
+ "myPermissions": "My permissions",
+ "notifications": "Notifications",
+ "officeApps": "Office apps",
+ "officeProPlusPolicies": "Policies for Office apps",
+ "onPremise": "On Premise",
+ "onPremisesConnector": "Exchange ActiveSync on-premises connector",
+ "onPremisesDeviceAccess": "Exchange ActiveSync devices",
+ "onPremisesManageAccess": "Exchange on-premises access",
+ "outOfDateIosDevices": "Installation failures for iOS devices",
+ "overview": "Overview",
+ "partnerDeviceManagement": "Partner device management",
+ "perUpdateRingDeploymentState": "Per update ring deployment state",
+ "permissions": "Permissions",
+ "platformApps": "{0} apps",
+ "platformDevices": "{0} devices",
+ "platformEnrollment": "{0} enrollment",
+ "policies": "Policies",
+ "previewMDMDevices": "All managed devices (Preview)",
+ "profiles": "Profiles",
+ "properties": "Properties",
+ "reports": "Reports",
+ "retireNoncompliantDevices": "Retire noncompliant devices",
+ "retireNoncompliantDevicesPreview": "Retire noncompliant devices (preview)",
+ "role": "Role",
+ "scriptManagement": "Scripts",
+ "securityBaselines": "Security baselines",
+ "serviceToServiceConnector": "Exchange online connector",
+ "shellScripts": "Shell scripts",
+ "teamViewerConnector": "TeamViewer connector",
+ "telecomeExpenseManagement": "Telecom expense management",
+ "tenantAdmin": "Tenant admin",
+ "tenantAdministration": "Tenant administration",
+ "termsAndConditions": "Terms and conditions",
+ "titles": "Titles",
+ "troubleshootSupport": "Troubleshooting + support",
+ "user": "User",
+ "userExecutionStatus": "User status",
+ "warranty": "Warranty vendors",
+ "wdacSupplementalPolicies": "S mode supplemental policies",
+ "windows10DriverUpdate": "Driver updates for Windows 10 and later (Preview)",
+ "windows10QualityUpdate": "Quality updates for Windows 10 and later (Preview)",
+ "windows10UpdateRings": "Update rings for Windows 10 and later",
+ "windows10XPolicyFailures": "Windows 10X policy failures",
+ "windowsEnterpriseCertificate": "Windows enterprise certificate",
+ "windowsManagement": "PowerShell scripts",
+ "windowsSideLoadingKeys": "Windows side loading keys",
+ "windowsSymantecCertificate": "Windows DigiCert certificate",
+ "windowsThreatReport": "Threat agent status"
+ },
+ "ScopeTypes": {
+ "allDevices": "All Devices",
+ "allUsers": "All Users",
+ "allUsersAndDevices": "All Users & All Devices",
+ "selectedGroups": "Selected Groups"
+ },
+ "OfficeApplicationType": {
+ "access": "Access",
+ "bing": "Microsoft Search as default",
+ "excel": "Excel",
+ "groove": "OneDrive (Groove)",
+ "lync": "Skype for Business",
+ "oneDrive": "OneDrive Desktop",
+ "oneNote": "OneNote",
+ "outlook": "Outlook",
+ "powerPoint": "PowerPoint",
+ "publisher": "Publisher",
+ "teams": "Teams",
+ "word": "Word"
+ },
+ "ApplicableDeviceType": {
+ "iPad": "iPad",
+ "iPhoneAndIPod": "iPhone and iPod"
+ },
+ "Assignment": {
+ "AutoUpdateMode": {
+ "default": "Default",
+ "header": "Update Priority",
+ "postponed": "Postponed",
+ "priority": "High Priority"
+ },
+ "DeliveryOptimizationPriority": {
+ "backgroundNormal": "Background",
+ "displayText": "Content download in {0}",
+ "foreground": "Foreground",
+ "header": "Delivery optimization priority"
+ },
+ "RestartGracePeriod": {
+ "allowSnooze": "Allow user to snooze the restart notification",
+ "countdownDialog": "Select when to display the restart countdown dialog box before the restart occurs (minutes)",
+ "durationInMinutes": "Device restart grace period (minutes)",
+ "snoozeDurationInMinutes": "Select the snooze duration (minutes)"
+ },
+ "SoftwareInstallationTime": {
+ "TimeZone": {
+ "label": "Time zone",
+ "local": "Device time zone",
+ "utc": "UTC"
+ },
+ "dateAndTimeLabel": "Date and time",
+ "deadlineTimeColumnLabel": "Installation deadline",
+ "deadlineTimeDatePickerErrorMessage": "Selected date must be after the available date",
+ "deadlineTimeLabel": "App installation deadline",
+ "defaultTime": "As soon as possible",
+ "infoText": "This application will be available as soon as it has been deployed, unless you specify an availability time below. If this is a required application, you may specify the installation deadline.",
+ "specificTime": "A specific date and time",
+ "startTimeColumnLabel": "Availability",
+ "startTimeDatePickerErrorMessage": "Selected date must be before the deadline date",
+ "startTimeLabel": "App availability"
+ },
+ "restartGracePeriodHeader": "Restart grace period",
+ "restartGracePeriodLabel": "Device restart grace period",
+ "summaryTitle": "End user experience"
+ },
+ "EnrollmentType": {
+ "devicesWithEnrollment": "Managed devices",
+ "devicesWithoutEnrollment": "Managed apps"
+ },
+ "PolicySet": {
+ "appManagement": "Application management",
+ "assignments": "Assignments",
+ "basics": "Basics",
+ "deviceEnrollment": "Device enrollment",
+ "deviceManagement": "Device management",
+ "scopeTags": "Scope tags",
+ "appConfigurationTitle": "App configuration policies",
+ "appProtectionTitle": "App protection policies",
+ "appTitle": "Apps",
+ "iOSAppProvisioningTitle": "iOS app provisioning profiles",
+ "deviceLimitRestrictionTitle": "Device limit restrictions",
+ "deviceTypeRestrictionTitle": "Device type restrictions",
+ "enrollmentStatusSettingTitle": "Enrollment status pages",
+ "windowsAutopilotDeploymentProfileTitle": "Windows autopilot deployment profiles",
+ "deviceComplianceTitle": "Device compliance policies",
+ "deviceConfigurationTitle": "Device configuration profiles",
+ "powershellScriptTitle": "Powershell scripts"
+ },
+ "AzureIAMCommon": {
+ "CountryNames": {
+ "countryNameNR": "Nauru",
+ "countryNameBH": "Bahrain",
+ "countryNameZA": "South Africa",
+ "countryNameJO": "Jordan",
+ "countryNameSD": "Sudan",
+ "countryNameNU": "Niue",
+ "countryNameCZ": "Czech Republic",
+ "countryNameLT": "Lithuania",
+ "countryNameTK": "Tokelau",
+ "countryNameEC": "Ecuador",
+ "countryNameVU": "Vanuatu",
+ "countryNameUG": "Uganda",
+ "countryNameLI": "Liechtenstein",
+ "countryNameHK": "Hong Kong SAR",
+ "countryNameGH": "Ghana",
+ "countryNameSA": "Saudi Arabia",
+ "countryNamePG": "Papua New Guinea",
+ "countryNameBW": "Botswana",
+ "countryNameDG": "Diego Garcia",
+ "countryNameIN": "India",
+ "countryNameHN": "Honduras",
+ "countryNameRO": "Romania",
+ "countryNameKZ": "Kazakhstan",
+ "countryNameLC": "Saint Lucia",
+ "countryNameGE": "Georgia",
+ "countryNameTT": "Trinidad and Tobago",
+ "countryNameMP": "Northern Mariana Islands",
+ "countryNameMV": "Maldives",
+ "countryNameFI": "Finland",
+ "countryNameNO": "Norway",
+ "countryNameEE": "Estonia",
+ "countryNameVE": "Venezuela",
+ "countryNameUZ": "Uzbekistan",
+ "countryNameME": "Montenegro",
+ "countryNameTJ": "Tajikistan",
+ "countryNameAW": "Aruba",
+ "countryNameFR": "France",
+ "countryNameOM": "Oman",
+ "countryNameAO": "Angola",
+ "countryNameIT": "Italy",
+ "countryNameAZ": "Azerbaijan",
+ "countryNameKG": "Kyrgyzstan",
+ "countryNameWF": "Wallis and Futuna",
+ "countryNameTL": "Timor-Leste",
+ "countryNameFK": "Falkland Islands (Islas Malvinas)",
+ "countryNameGY": "Guyana",
+ "countryNameSS": "South Sudan",
+ "countryNameMM": "Myanmar",
+ "countryNameHT": "Haiti",
+ "countryNameSY": "Syria",
+ "countryNameMD": "Moldova",
+ "countryNameVC": "Saint Vincent and the Grenadines",
+ "countryNameID": "Indonesia",
+ "countryNameRE": "Reunion",
+ "countryNameER": "Eritrea",
+ "countryNameMK": "North Macedonia",
+ "countryNameTG": "Togo",
+ "countryNamePF": "French Polynesia",
+ "countryNameKY": "Cayman Islands",
+ "countryNameIO": "British Indian Ocean Territory",
+ "countryNameRU": "Russia",
+ "countryNameMA": "Morocco",
+ "countryNameAU": "Australia",
+ "countryNameBO": "Bolivia",
+ "countryNameVA": "Holy See (Vatican City State)",
+ "countryNameVG": "Virgin Islands, British",
+ "countryNameFM": "Micronesia",
+ "countryNameAQ": "Antarctica",
+ "countryNameZM": "Zambia",
+ "countryNameBR": "Brazil",
+ "countryNameIS": "Iceland",
+ "countryNamePE": "Peru",
+ "countryNameBG": "Bulgaria",
+ "countryNamePR": "Puerto Rico",
+ "countryNameGI": "Gibraltar",
+ "countryNameBS": "Bahamas, The",
+ "countryNameJE": "Jersey",
+ "countryNameMO": "Macao SAR",
+ "countryNameRW": "Rwanda",
+ "countryNameAS": "American Samoa",
+ "countryNameBQ": "Bonaire, Sint Eustatius, and Saba",
+ "countryNameMF": "Saint Martin",
+ "countryNameTM": "Turkmenistan",
+ "countryNameML": "Mali",
+ "countryNameTO": "Tonga",
+ "countryNameNC": "New Caledonia",
+ "countryNameAC": "Ascension Island",
+ "countryNameBN": "Brunei",
+ "countryNameBD": "Bangladesh",
+ "countryNameMW": "Malawi",
+ "countryNameGM": "Gambia, The",
+ "countryNameGA": "Gabon",
+ "countryNameCA": "Canada",
+ "countryNameSH": "Saint Helena",
+ "countryNameYT": "Mayotte",
+ "countryNameMN": "Mongolia",
+ "countryNamePA": "Panama",
+ "countryNameCM": "Cameroon",
+ "countryNameNE": "Niger",
+ "countryNameCW": "Curaçao",
+ "countryNameJP": "Japan",
+ "countryNameCY": "Cyprus",
+ "countryNameCD": "Democratic Republic of Congo",
+ "countryNameTN": "Tunisia",
+ "countryNameTR": "Turkey",
+ "countryNameWS": "Samoa",
+ "countryNameSE": "Sweden",
+ "countryNameXK": "Kosovo",
+ "countryNameKH": "Cambodia",
+ "countryNamePL": "Poland",
+ "countryNameDZ": "Algeria",
+ "countryNameLR": "Liberia",
+ "countryNameSO": "Somalia",
+ "countryNameDM": "Dominica",
+ "countryNameEG": "Egypt",
+ "countryNameGF": "French Guiana",
+ "countryNameNZ": "New Zealand",
+ "countryNamePS": "Palestinian Authority",
+ "countryNameIL": "Israel",
+ "countryNameSL": "Sierra Leone",
+ "countryNameGR": "Greece",
+ "countryNameNG": "Nigeria",
+ "countryNameMR": "Mauritania",
+ "countryNameVI": "Virgin Islands, U.S.",
+ "countryNameGQ": "Equatorial Guinea",
+ "countryNameMX": "Mexico",
+ "countryNameDJ": "Djibouti",
+ "countryNameGN": "Guinea",
+ "countryNameCN": "China",
+ "countryNameMZ": "Mozambique",
+ "countryNameBV": "Bouvet Island",
+ "countryNameNF": "Norfolk Island",
+ "countryNameTZ": "Tanzania",
+ "countryNameAI": "Anguilla",
+ "countryNameGS": "South Georgia and the South Sandwich Islands",
+ "countryNameRS": "Serbia",
+ "countryNameCC": "Cocos (Keeling) Islands",
+ "countryNameNA": "Namibia",
+ "countryNameDE": "Germany",
+ "countryNameCG": "Republic of Congo",
+ "countryNameKW": "Kuwait",
+ "countryNameMH": "Marshall Islands",
+ "countryNameVN": "Vietnam",
+ "countryNameBY": "Belarus",
+ "countryNameMY": "Malaysia",
+ "countryNameST": "São Tomé and Príncipe",
+ "countryNameLS": "Lesotho",
+ "countryNameBI": "Burundi",
+ "countryNameTD": "Chad",
+ "countryNameCX": "Christmas Island",
+ "countryNameIR": "Iran",
+ "countryNameTV": "Tuvalu",
+ "countryNameGW": "Guinea-Bissau",
+ "countryNameUA": "Ukraine",
+ "countryNameCU": "Cuba",
+ "countryNameCO": "Colombia",
+ "countryNameNI": "Nicaragua",
+ "countryNameHR": "Croatia",
+ "countryNameSC": "Seychelles",
+ "countryNameNL": "Netherlands",
+ "countryNameUM": "US Minor Outlying Islands",
+ "countryNameIM": "Isle of Man",
+ "countryNameFJ": "Fiji",
+ "countryNameSR": "Suriname",
+ "countryNameGT": "Guatemala",
+ "countryNameSM": "San Marino",
+ "countryNameLA": "Laos",
+ "countryNameGB": "United Kingdom",
+ "countryNameBB": "Barbados",
+ "countryNameSI": "Slovenia",
+ "countryNameAM": "Armenia",
+ "countryNameAR": "Argentina",
+ "countryNamePM": "Saint Pierre and Miquelon",
+ "countryNameTF": "French Southern and Antarctic Lands",
+ "countryNameDO": "Dominican Republic",
+ "countryNameZW": "Zimbabwe",
+ "countryNameMQ": "Martinique",
+ "countryNamePT": "Portugal",
+ "countryNameCF": "Central African Republic",
+ "countryNameBE": "Belgium",
+ "countryNameKM": "Comoros",
+ "countryNameLY": "Libya",
+ "countryNameIE": "Ireland",
+ "countryNameKP": "North Korea",
+ "countryNameGG": "Guernsey",
+ "countryNameSK": "Slovakia",
+ "countryNameTC": "Turks and Caicos Islands",
+ "countryNameNP": "Nepal",
+ "countryNameBF": "Burkina Faso",
+ "countryNameYE": "Yemen",
+ "countryNameBA": "Bosnia and Herzegovina",
+ "countryNameGP": "Guadeloupe",
+ "countryNameMS": "Montserrat",
+ "countryNameCL": "Chile",
+ "countryNameIQ": "Iraq",
+ "countryNameSJ": "Svalbard and Jan Mayen Island",
+ "countryNameAX": "Åland Islands",
+ "countryNameKE": "Kenya",
+ "countryNameGU": "Guam",
+ "countryNameBM": "Bermuda",
+ "countryNameFO": "Faroe Islands",
+ "countryNameBL": "Saint Barthélemy",
+ "countryNameLB": "Lebanon",
+ "countryNameJM": "Jamaica",
+ "countryNameAF": "Afghanistan",
+ "countryNameES": "Spain",
+ "countryNameMC": "Monaco",
+ "countryNameSG": "Singapore",
+ "countryNameAL": "Albania",
+ "countryNameSN": "Senegal",
+ "countryNameSZ": "Swaziland",
+ "countryNameBZ": "Belize",
+ "countryNameCI": "Côte d’Ivoire",
+ "countryNameTW": "Taiwan",
+ "countryNameUY": "Uruguay",
+ "countryNameCK": "Cook Islands",
+ "countryNameTH": "Thailand",
+ "countryNameHM": "Heard Island and McDonald Islands",
+ "countryNameGD": "Grenada",
+ "countryNameUS": "United States",
+ "countryNameAT": "Austria",
+ "countryNameKR": "Korea, Republic of",
+ "countryNamePK": "Pakistan",
+ "countryNameDK": "Denmark",
+ "countryNameSV": "El Salvador",
+ "countryNamePW": "Palau",
+ "countryNameET": "Ethiopia",
+ "countryNameMG": "Madagascar",
+ "countryNameCR": "Costa Rica",
+ "countryNameLU": "Luxembourg",
+ "countryNameQA": "Qatar",
+ "countryNameBT": "Bhutan",
+ "countryNameSB": "Solomon Islands",
+ "countryNameAE": "United Arab Emirates",
+ "countryNameAD": "Andorra",
+ "countryNameCV": "Cabo Verde",
+ "countryNameAG": "Antigua and Barbuda",
+ "countryNameMU": "Mauritius",
+ "countryNameHU": "Hungary",
+ "countryNameSX": "Sint Maarten",
+ "countryNameCH": "Switzerland",
+ "countryNamePN": "Pitcairn Islands",
+ "countryNameGL": "Greenland",
+ "countryNamePH": "Philippines",
+ "countryNameMT": "Malta",
+ "countryNameKN": "Saint Kitts and Nevis",
+ "countryNameLK": "Sri Lanka",
+ "countryNameKI": "Kiribati",
+ "countryNameBJ": "Benin",
+ "countryNameLV": "Latvia",
+ "countryNamePY": "Paraguay"
+ }
+ }
}
diff --git a/Extensions/Documentation.psm1 b/Extensions/Documentation.psm1
index 050df7e..5983715 100644
--- a/Extensions/Documentation.psm1
+++ b/Extensions/Documentation.psm1
@@ -20,11 +20,13 @@ $global:documentationProviders = @()
function Get-ModuleVersion
{
- '1.1.0'
+ '1.2.0'
}
function Invoke-InitializeModule
{
+ $script:alwaysUseMigTableForTranslation = $false
+
# Make sure we add the default Output types
Add-OutputType
@@ -43,14 +45,20 @@ function Invoke-InitializeModule
Schedule="ScheduledAction.List.schedule"
MessageTemplate="ScheduledAction.Notification.messageTemplate"
EmailCC="ScheduledAction.Notification.additionalRecipients"
- Filter="AssignmentFilters.assignmentFilterColumnHeader"
Rule="ApplicabilityRules.GridLabel.Rule"
ValueWithLabel="TableHeaders.value"
Status="TableHeaders.status"
CombinedValueWithLabel="TableHeaders.value"
CombinedValue="TableHeaders.value"
useDeviceLicensing="TableHeaders.licenseType"
- #filterMode="Filter mode" # Not in any string file yet
+ Filter="AppResources.AppSettingsUx.assignmentFilterColumnHeader"
+ filterMode="AppResources.AppSettingsUx.assignmentFilterTypeColumnHeader"
+ deliveryOptimizationPriority="AppResources.AppSettingsUx.deliveryOptimizationPriorityHeader"
+ startTimeColumnLabel="AppResources.AppSettingsUx.startTimeColumnLabel"
+ installTimeSettings="AppResources.AppSettingsUx.deadlineTimeColumnLabel"
+ restartSettings="AppResources.AppSettingsUx.restartGracePeriodHeader"
+ notifications="AppResources.AppSettingsUx.assignmentToast"
+ Settings="TableHeaders.settings"
}
}
@@ -199,7 +207,7 @@ function Get-ObjectDocumentation
$status = $null
$inputType = "Settings"
- if(-not $script:scopeTags)
+ if(-not $script:scopeTags -and $script:offlineDocumentation -ne $true)
{
$script:scopeTags = (Invoke-GraphRequest -Url "/deviceManagement/roleScopeTags").Value
}
@@ -209,7 +217,7 @@ function Get-ObjectDocumentation
$script:currentObject = $obj
$script:languageStrings = $null
-
+
$script:CurrentSubCategory = $null
$script:objectBasicInfo = @()
$script:objectSettingsData = @()
@@ -587,19 +595,68 @@ function Add-BasicAdditionalValues
if($obj.createdDateTime)
{
- $tmpDate = ([DateTime]::Parse($obj.createdDateTime))
- Add-BasicPropertyValue (Get-LanguageString "Inputs.createdDateTime") "$($tmpDate.ToLongDateString()) $($tmpDate.ToLongTimeString())"
+ try
+ {
+ if($obj.createdDateTime -is [DateTime])
+ {
+ $tmpDate = $obj.createdDateTime
+ }
+ else
+ {
+ $tmpDate = ([DateTime]::Parse($obj.createdDateTime))
+ }
+ $tmpDateStr = "$($tmpDate.ToLongDateString()) $($tmpDate.ToLongTimeString())"
+
+ }
+ catch
+ {
+ Write-Log "Failed to parse date from $($obj.createdDateTime) (Object type: $($obj.createdDateTime.GetType().Name))" 2
+ $tmpDateStr = $obj.createdDateTime
+ }
+ Add-BasicPropertyValue (Get-LanguageString "Inputs.createdDateTime") $tmpDateStr
}
if($obj.lastModifiedDateTime)
{
- $tmpDate = ([DateTime]::Parse($obj.lastModifiedDateTime))
- Add-BasicPropertyValue (Get-LanguageString "TableHeaders.lastModified") "$($tmpDate.ToLongDateString()) $($tmpDate.ToLongTimeString())"
+ try
+ {
+ if($obj.lastModifiedDateTime -is [DateTime])
+ {
+ $tmpDate = $obj.lastModifiedDateTime
+ }
+ else
+ {
+ $tmpDate = ([DateTime]::Parse($obj.lastModifiedDateTime))
+ }
+ $tmpDateStr = "$($tmpDate.ToLongDateString()) $($tmpDate.ToLongTimeString())"
+ }
+ catch
+ {
+ Write-Log "Failed to parse date from $($obj.lastModifiedDateTime) (Object type: $($obj.lastModifiedDateTime.GetType().Name))" 2
+ $tmpDateStr = $obj.lastModifiedDateTime
+ }
+ Add-BasicPropertyValue (Get-LanguageString "TableHeaders.lastModified") $tmpDateStr
}
elseif($obj.modifiedDateTime)
{
- $tmpDate = ([DateTime]::Parse($obj.modifiedDateTime))
- Add-BasicPropertyValue (Get-LanguageString "TableHeaders.lastModified") "$($tmpDate.ToLongDateString()) $($tmpDate.ToLongTimeString())"
+ try
+ {
+ if($obj.modifiedDateTime -is [DateTime])
+ {
+ $tmpDate = $obj.modifiedDateTime
+ }
+ else
+ {
+ $tmpDate = ([DateTime]::Parse($obj.modifiedDateTime))
+ }
+ $tmpDateStr = "$($tmpDate.ToLongDateString()) $($tmpDate.ToLongTimeString())"
+ }
+ catch
+ {
+ Write-Log "Failed to parse date from $($obj.modifiedDateTime) (Object type: $($obj.modifiedDateTime.GetType().Name))" 2
+ $tmpDateStr = $obj.modifiedDateTime
+ }
+ Add-BasicPropertyValue (Get-LanguageString "TableHeaders.lastModified") $tmpDateStr
}
if($obj.version)
@@ -1829,7 +1886,11 @@ function Invoke-TranslateSection
$useParentProp = $true
# Use $script:currentObject since $obj could be a property on the original object
# Cert links are always specified on the main object
- $cert = Invoke-GraphRequest -URL $script:currentObject."$($prop.entityKey)@odata.navigationLink" -ODataMetadata "minimal" -NoError
+ $cert = $null
+ if($script:offlineDocumentation -ne $true)
+ {
+ $cert = Invoke-GraphRequest -URL $script:currentObject."$($prop.entityKey)@odata.navigationLink" -ODataMetadata "minimal" -NoError
+ }
if($cert)
{
if($cert.value -is [Object[]])
@@ -1849,7 +1910,22 @@ function Invoke-TranslateSection
}
elseif($script:currentObject.'@ObjectFromFile' -eq $true)
{
- $value = "##TBD - Linked Certificate"
+ if($script:currentObject."#CustomRef_$($prop.entityKey)")
+ {
+ $idx = $script:currentObject."#CustomRef_$($prop.entityKey)".IndexOf("|:|")
+ if($idx -gt -1)
+ {
+ $value = $script:currentObject."#CustomRef_$($prop.entityKey)".SubString(0,$idx)
+ }
+ else
+ {
+ $value = $script:currentObject."#CustomRef_$($prop.entityKey)"
+ }
+ }
+ else
+ {
+ $value = "##TBD - Linked Certificate"
+ }
$rawValue = $value
}
}
@@ -2242,6 +2318,17 @@ function Get-CustomChildObject
return $obj
}
+function Invoke-InitDocumentation
+{
+ foreach($docProvider in ($global:documentationProviders | Sort -Property Priority))
+ {
+ if($docProvider.InitializeDocumentation)
+ {
+ & $docProvider.InitializeDocumentation
+ }
+ }
+}
+
function Add-CustomProfileProperties
{
param($obj)
@@ -2900,7 +2987,7 @@ function Invoke-TranslateAssignments
$groupInfo = $null
- if($groupIds.Count -gt 0)
+ if($groupIds.Count -gt 0 -and $script:offlineDocumentation -ne $true)
{
$ht = @{}
$ht.Add("ids", @($groupIds | Unique))
@@ -2913,26 +3000,40 @@ function Invoke-TranslateAssignments
if(($null -eq $groupInfo -or ($groupInfo | measure).Count -eq 0) -and $obj."@ObjectFromFile" -eq $true -and $script:migTable)
{
### Get group info from mig table when documenting from file if there's no access to the environment
- $groupInfo = $script:migTable.Objects | Where Type -eq "Group"
+ $groupInfo = $script:migTable.Objects | Where Type -eq "Group"
}
if($filterIds.Count -gt 0)
- {
- $batchInfo = @{}
- $requests = @()
- #{"requests":[{"id":"","method":"GET","url":"deviceManagement/assignmentFilters/?$select=displayName"}]}
- foreach($filterId in $filterIds)
+ {
+ if($script:offlineDocumentation -eq $true)
{
- $requests += [PSCustomObject]@{
- id = $filterIds
- method = "GET"
- "url" = "deviceManagement/assignmentFilters/$($filterId)?`$select=displayName"
+ if($script:offlineObjects["AssignmentFilters"])
+ {
+ $filtersInfo = $script:offlineObjects["AssignmentFilters"] | Where { $_.Id -in $filterIds }
+ }
+ else
+ {
+ Write-Log "No assignment filters loaded for Offline documentation. Check export folder" 2
}
}
- $batchInfo = @{"requests"=$requests}
- $jsonBody = $batchInfo | ConvertTo-Json
+ else
+ {
+ $batchInfo = @{}
+ $requests = @()
+ #{"requests":[{"id":"","method":"GET","url":"deviceManagement/assignmentFilters/?$select=displayName"}]}
+ foreach($filterId in $filterIds)
+ {
+ $requests += [PSCustomObject]@{
+ id = $filterId
+ method = "GET"
+ "url" = "deviceManagement/assignmentFilters/$($filterId)?`$select=displayName"
+ }
+ }
+ $batchInfo = @{"requests"=$requests}
+ $jsonBody = $batchInfo | ConvertTo-Json
- $filtersInfo = Invoke-GraphRequest -Url "/`$batch" -Content $jsonBody -Method "Post"
+ $filtersInfo = (Invoke-GraphRequest -Url "/`$batch" -Content $jsonBody -Method "Post").responses.body
+ }
}
foreach($assignment in $obj.assignments)
@@ -2987,12 +3088,12 @@ function Invoke-TranslateAssignments
$filterName = $noFilter
$filterMode = $noFilter
- if($assignment.target.deviceAndAppManagementAssignmentFilterId -and $filtersInfo.responses)
+ if($assignment.target.deviceAndAppManagementAssignmentFilterId -and $filtersInfo)
{
- $filtersObj = $filtersInfo.responses | Where Id -eq $assignment.target.deviceAndAppManagementAssignmentFilterId
- if($filtersObj.body.displayName)
+ $filtersObj = $filtersInfo | Where Id -eq $assignment.target.deviceAndAppManagementAssignmentFilterId
+ if($filtersObj.displayName)
{
- $filterName = $filtersObj.body.displayName
+ $filterName = $filtersObj.displayName
}
if($assignment.target.deviceAndAppManagementAssignmentFilterType -eq "include")
@@ -3037,6 +3138,66 @@ function Invoke-TranslateAssignments
$value = Get-LanguageString "SettingDetails.licenseTypeUser"
}
}
+ elseif($settingProp -eq "restartSettings" -and $null -eq $assignment.settings.$settingProp)
+ {
+ $value = Get-LanguageString "SettingDetails.disabledOption"
+ }
+ elseif($settingProp -eq "notifications")
+ {
+ $value = ?? (Get-LanguageString "AppResources.AssignmentToast.$($assignment.settings.$settingProp)") $assignment.settings.$settingProp
+ }
+ elseif($settingProp -eq "installTimeSettings")
+ {
+ $asap = Get-LanguageString "Assignment.SoftwareInstallationTime.defaultTime"
+ $startValue = $asap
+ $value = $asap
+
+ if($assignment.settings.installTimeSettings)
+ {
+ if($assignment.settings.installTimeSettings.startDateTime)
+ {
+ $instTime = Get-Date $assignment.settings.installTimeSettings.startDateTime
+
+ if($assignment.settings.installTimeSettings.useLocalTime -eq $false)
+ {
+ $hours = ($instTime.ToUniversalTime() - $instTime).Hours
+ $instTime = $instTime.AddHours($hours)
+ }
+ $startValue = "$($instTime.ToShortDateString()) $($instTime.ToShortTimeString())"
+ }
+
+ if($assignment.settings.installTimeSettings.deadlineDateTime)
+ {
+ $endTime = Get-Date $assignment.settings.installTimeSettings.deadlineDateTime
+
+ if($assignment.settings.installTimeSettings.useLocalTime -eq $false)
+ {
+ $hours = ($endTime.ToUniversalTime() - $endTime).Hours
+ $endTime = $endTime.AddHours($hours)
+ }
+ $value = "$($instTime.ToShortDateString()) $($instTime.ToShortTimeString())"
+ }
+ }
+
+ $assignmentSettingProps.Add("startTimeColumnLabel", $startValue)
+ }
+ elseif($settingProp -eq "deliveryOptimizationPriority")
+ {
+ $tmpStr = Get-LanguageString "AppResources.DeliveryOptimizationPriority.displayText"
+ if($assignment.settings.$settingProp -ne "foreground")
+ {
+ $tmpType = Get-LanguageString "AppResources.DeliveryOptimizationPriority.backgroundNormal"
+ }
+ else
+ {
+ $tmpType = Get-LanguageString "AppResources.DeliveryOptimizationPriority.foreground"
+ }
+ $value = $tmpStr -f $tmpType
+ }
+ elseif($assignment.settings.$settingProp -eq "notConfigured")
+ {
+ $value = Get-LanguageString "BooleanActions.notConfigured"
+ }
else
{
$value = $assignment.settings.$settingProp
@@ -3389,6 +3550,9 @@ function Show-DocumentationForm
$txtDocumentationRawData.Text = ""
+ $script:offlineDocumentation = $false
+ $script:offlineObjects = @{}
+
$loadExportedInfo = $true
$script:migTable = $null
$script:scopeTags = $null
@@ -3421,6 +3585,8 @@ function Show-DocumentationForm
Get-CustomIgnoredCategories $obj
+ Invoke-InitDocumentation
+
if($global:grdDocumentObjects.Tag -eq "Objects")
{
$sourceList = @()
@@ -3532,21 +3698,20 @@ function Show-DocumentationForm
$script:migTable = ConvertFrom-Json (Get-Content $migFileName -Raw)
}
- $scopeTagObjectType = $global:currentViewObject.ViewItems | Where Id -eq "ScopeTags"
-
- if($scopeTagObjectType)
+ if($script:migTable.TenantId -and $script:migTable.TenantId -ne $global:organization.id)
{
- $scopePath = [IO.Path]::Combine($diSource.FullName,$scopeTagObjectType.Id)
- if([IO.Directory]::Exists($scopePath) -eq $false)
+ $script:offlineDocumentation = $true
+ }
+
+ if($script:offlineDocumentation -eq $true)
+ {
+ Add-DocOfflineDependecies "ScopeTags" $diSource.FullName
+ Add-DocOfflineDependecies "AssignmentFilters" $diSource.FullName
+ Add-DocOfflineObjectTypeDependecies $diSource.FullName
+ if($script:offlineObjects.ContainsKey("ScopeTags"))
{
- Write-Log "Object path for Scope (Tags) ($($scopePath)) not found" 2
- }
- else
- {
-
- $scopeTagObjects = Get-GraphFileObjects $scopePath -ObjectType $scopeTagObjectType
- $script:scopeTags = @(($scopeTagObjects | Select Object))
- }
+ $script:scopeTags = @($script:offlineObjects["ScopeTags"])
+ }
}
}
@@ -3723,7 +3888,7 @@ function Show-DocumentationForm
}
}
}
- }
+ }
}
if($allObjectTypeObjects.Count -gt 0)
@@ -3745,7 +3910,13 @@ function Show-DocumentationForm
Write-Status "Run PostProcess for $($global:cbDocumentationType.SelectedItem.Name)"
& $global:cbDocumentationType.SelectedItem.PostProcess
}
-
+
+ if($script:offlineDocumentation -eq $true)
+ {
+ # Clear the dependecy objects loaded for Offline documentation
+ $global:LoadedDependencyObjects = $null
+ }
+ $script:offlineDocumentation = $false
Write-Status ""
}
@@ -3797,6 +3968,18 @@ function Show-DocumentationForm
Show-ModalForm "Intune Documentation" $script:docForm -HideButtons
}
+function Get-DocOfflineObjects
+{
+ param($objectName)
+
+ if($script:offlineDocumentation -eq $false) { return }
+
+ if($script:offlineObjects.ContainsKey($objectName))
+ {
+ $script:offlineObjects[$objectName]
+ }
+}
+
function Set-OutputOptionsTabStatus
{
param($control)
@@ -3828,6 +4011,42 @@ function Invoke-DocumentSelectedObjects
Show-DocumentationForm -objects $script:selectedObjects -SelectedDocuments
}
+function Add-DocOfflineObjectTypeDependecies
+{
+ param($fromFolder)
+
+ foreacH($viewItem in $global:currentViewObject.ViewItems)
+ {
+ foreach($dep in $viewItem.Dependencies)
+ {
+ Add-DocOfflineDependecies $dep $fromFolder
+ }
+ }
+}
+
+function Add-DocOfflineDependecies
+{
+ param($objectTypeName, $fromFolder)
+
+ if($script:offlineObjects.ContainsKey($objectTypeName)) { return }
+
+ $tmpObjType = $global:currentViewObject.ViewItems | Where Id -eq $objectTypeName
+
+ if($tmpObjType)
+ {
+ $objPath = [IO.Path]::Combine($fromFolder,$tmpObjType.Id)
+ if([IO.Directory]::Exists($objPath) -eq $false)
+ {
+ Write-Log "Object path for $($tmpObjType.Title) ($($objPath)) not found" 2
+ }
+ else
+ {
+ $tmpObjects = Get-GraphFileObjects $objPath -ObjectType $tmpObjType
+ $script:offlineObjects.Add($tmpObjType.Id, @(($tmpObjects | Select Object).Object))
+ }
+ }
+}
+
function Add-DocumentationObjects
{
param($objects)
diff --git a/Extensions/DocumentationCustom.psm1 b/Extensions/DocumentationCustom.psm1
index 36cb0c2..27c6dff 100644
--- a/Extensions/DocumentationCustom.psm1
+++ b/Extensions/DocumentationCustom.psm1
@@ -10,7 +10,7 @@ This module will also document some objects based on PowerShell functions
function Get-ModuleVersion
{
- '1.1.0'
+ '1.2.0'
}
function Invoke-InitializeModule
@@ -18,6 +18,7 @@ function Invoke-InitializeModule
Add-DocumentationProvicer ([PSCustomObject]@{
Name="Custom"
Priority = 1000 # The priority of the Provider. Lower number has higher priority.
+ InitializeDocumentation = { Initialize-CDDocumentation @args }
DocumentObject = { Invoke-CDDocumentObject @args }
GetCustomProfileValue = { Add-CDDocumentCustomProfileValue @args }
GetCustomChildObject = { Get-CDDocumentCustomChildObjet @args }
@@ -27,6 +28,12 @@ function Invoke-InitializeModule
})
}
+function Initialize-CDDocumentation
+{
+ $script:allTenantApps = $null
+ $script:allTermsOfUse = $null
+}
+
function Invoke-CDDocumentObject
{
param($documentationObj)
@@ -42,6 +49,13 @@ function Invoke-CDDocumentObject
Properties = @("Name","Value","Category","SubCategory") #,"RawValue","Description"
}
}
+ elseif($type -eq '#microsoft.graph.agreement')
+ {
+ Invoke-CDDocumentTermsOfUse $documentationObj
+ return [PSCustomObject]@{
+ Properties = @("Name","Value") #,"RawValue","Description"
+ }
+ }
elseif($type -eq '#microsoft.graph.countryNamedLocation')
{
Invoke-CDDocumentCountryNamedLocation $documentationObj
@@ -116,7 +130,7 @@ function Get-CDAllCloudApps
{
if(-not $script:allCloudApps)
{
- $script:allCloudApps =(Invoke-GraphRequest -url "/servicePrincipals?`$select=displayName,appId&top=999" -ODataMetadata "minimal").value
+ $script:allCloudApps = (Invoke-GraphRequest -url "/servicePrincipals?`$select=displayName,appId&top=999" -ODataMetadata "minimal").value
}
$script:allCloudApps
}
@@ -125,7 +139,11 @@ function Get-CDAllTenantApps
{
if(-not $script:allTenantApps)
{
- $script:allTenantApps =(Invoke-GraphRequest -url "/deviceAppManagement/mobileApps?`$select=displayName,id&top=999" -ODataMetadata "minimal").value
+ $script:allTenantApps = Get-DocOfflineObjects "Applications"
+ if(-not $script:allTenantApps)
+ {
+ $script:allTenantApps =(Invoke-GraphRequest -url "/deviceAppManagement/mobileApps?`$select=displayName,id&top=999" -ODataMetadata "minimal").value
+ }
}
$script:allTenantApps
}
@@ -750,13 +768,26 @@ function Add-CDDocumentCustomProfileProperty
{
if($obj.authenticationMethod -ne "derivedCredential")
{
- $idCert = Invoke-GraphRequest -URL $obj."identityCertificateForClientAuthentication@odata.navigationLink" -ODataMetadata "minimal" -NoError
+ if($obj."#CustomRef_identityCertificateForClientAuthentication" -and $obj.'@ObjectFromFile' -eq $true)
+ {
+ $idCert = $obj."#CustomRef_identityCertificateForClientAuthentication"
+ $idx = $idCert.IndexOf("|:|")
+ if($idx -gt -1)
+ {
+ $idCertType = $idCert.SubString($idx + 3)
+ }
+ }
+ else
+ {
+ $idCert = Invoke-GraphRequest -URL $obj."identityCertificateForClientAuthentication@odata.navigationLink" -ODataMetadata "minimal" -NoError
+ $idCertType = $idCert.'@OData.Type'
+ }
- if($idCert.'@OData.Type' -like "*Pkcs*")
+ if($idCertType -like "*Pkcs*")
{
$clientCertType = "PKCS certificate"
}
- elseif($idCert.'@OData.Type' -like "*SCEP*")
+ elseif($idCertType -like "*SCEP*")
{
$clientCertType = "SCEP certificate"
}
@@ -1102,6 +1133,7 @@ function Add-CDDocumentCustomProfileProperty
$supersededApps = @()
if($obj.dependentAppCount -gt 0 -or $obj.supersededAppCount -gt 0)
{
+ # ToDo: Add support for Offline documentation
$relationships = (Invoke-GraphRequest -Url "/deviceAppManagement/mobileApps/$($obj.Id)/relationships?`$filter=targetType%20eq%20microsoft.graph.mobileAppRelationshipType%27child%27").value
foreach($rel in $relationships)
{
@@ -1187,6 +1219,11 @@ function Add-CDDocumentCustomProfileProperty
}
}
+ elseif($obj.'@OData.Type' -eq "#microsoft.graph.windows10TeamGeneralConfiguration")
+ {
+ $obj | Add-Member Noteproperty -Name "syntheticAzureOperationalInsightsEnabled" -Value ($obj.azureOperationalInsightsBlockTelemetry -eq $false)
+ $obj | Add-Member Noteproperty -Name "syntheticMaintenanceWindowEnabled" -Value ($obj.maintenanceWindowBlocked -eq $false)
+ }
if(($obj.PSObject.Properties | where Name -eq "securityRequireSafetyNetAttestationBasicIntegrity") -and
($obj.PSObject.Properties | where Name -eq "securityRequireSafetyNetAttestationCertifiedDevice"))
@@ -1478,7 +1515,7 @@ function Invoke-CDDocumentCountryNamedLocation
$countryList = @()
foreach($country in $obj.countriesAndRegions)
{
- $countryList += Get-LanguageString "Countries.$($country.ToLower())"
+ $countryList += Get-LanguageString "AzureIAMCommon.CountryNames.countryName$($country.ToLower())"
}
Add-CustomSettingObject ([PSCustomObject]@{
@@ -1525,6 +1562,117 @@ function Invoke-CDDocumentIPNamedLocation
})
}
+# Document Terms of Use
+function Invoke-CDDocumentTermsOfUse
+{
+ param($documentationObj)
+
+ $obj = $documentationObj.Object
+ $objectType = $documentationObj.ObjectType
+
+ $script:objectSeparator = ?? $global:cbDocumentationObjectSeparator.SelectedValue ([System.Environment]::NewLine)
+ $script:propertySeparator = ?? $global:cbDocumentationPropertySeparator.SelectedValue ","
+
+ $offLabel = Get-LanguageString "SettingDetails.offOption"
+ $onLabel = Get-LanguageString "SettingDetails.onOption"
+
+ ###################################################
+ # Basic info
+ ###################################################
+
+ Add-BasicPropertyValue (Get-LanguageString "SettingDetails.nameName") $obj.displayName
+ Add-BasicPropertyValue (Get-LanguageString "TableHeaders.configurationType") (Get-LanguageString "AzureIAM.menuItemTermsOfUse")
+
+ Add-CustomSettingObject ([PSCustomObject]@{
+ Name = Get-LanguageString "TermsOfUse.Wizard.agreementIsViewingBeforeAcceptanceRequiredLabel"
+ Value = ?: $obj.isViewingBeforeAcceptanceRequired $onLabel $offLabel
+ Category = $null
+ SubCategory = $null
+ EntityKey = "isViewingBeforeAcceptanceRequired"
+ })
+
+ Add-CustomSettingObject ([PSCustomObject]@{
+ Name = Get-LanguageString "TermsOfUse.Wizard.agreementIsPerDeviceAcceptanceRequiredLabel"
+ Value = ?: $obj.isPerDeviceAcceptanceRequired $onLabel $offLabel
+ Category = $null
+ SubCategory = $null
+ EntityKey = "isPerDeviceAcceptanceRequired"
+ })
+
+ Add-CustomSettingObject ([PSCustomObject]@{
+ Name = Get-LanguageString "TermsOfUse.Wizard.isAcceptanceExpirationEnabledLabel"
+ Value = ?: $obj.termsExpiration $onLabel $offLabel
+ Category = $null
+ SubCategory = $null
+ EntityKey = "isAcceptanceExpirationEnabledLabel"
+ })
+
+ if($obj.termsExpiration.startDateTime)
+ {
+ try
+ {
+ if($obj.termsExpiration.startDateTime -is [DateTime])
+ {
+ $tmpDate = $obj.termsExpiration.startDateTime
+ }
+ else
+ {
+ $tmpDate = ([DateTime]::Parse($obj.termsExpiration.startDateTime))
+ }
+ $tmpDateStr = ($tmpDate).ToShortDateString()
+ }
+ catch
+ {
+ Write-Log "Failed to parse date from string $($obj.termsExpiration.startDateTime)" 2
+ $tmpDateStr = $obj.termsExpiration.startDateTime
+ }
+
+ Add-CustomSettingObject ([PSCustomObject]@{
+ Name = Get-LanguageString "TermsOfUse.Wizard.acceptanceExpirationStartDateTimeLabel"
+ Value = $tmpDateStr
+ Category = $null
+ SubCategory = $null
+ EntityKey = "startDateTime"
+ })
+
+ if($obj.termsExpiration.frequency -eq "P365D")
+ {
+ $value = Get-LanguageString "TermsOfUse.AcceptanceExpirationFrequency.annually"
+ }
+ elseif($obj.termsExpiration.frequency -eq "P180D")
+ {
+ $value = Get-LanguageString "TermsOfUse.AcceptanceExpirationFrequency.biannually"
+ }
+ elseif($obj.termsExpiration.frequency -eq "P30D")
+ {
+ $value = Get-LanguageString "TermsOfUse.AcceptanceExpirationFrequency.monthly"
+ }
+ elseif($obj.termsExpiration.frequency -eq "P90D")
+ {
+ $value = Get-LanguageString "TermsOfUse.AcceptanceExpirationFrequency.quarterly"
+ }
+
+ Add-CustomSettingObject ([PSCustomObject]@{
+ Name = Get-LanguageString "TermsOfUse.Wizard.acceptanceExpirationFrequencyLabel"
+ Value = $value
+ Category = $null
+ SubCategory = $null
+ EntityKey = "frequency"
+ })
+ }
+ if($null -ne $obj.userReacceptRequiredFrequency)
+ {
+ $days = Get-DurationValue $obj.userReacceptRequiredFrequency
+ Add-CustomSettingObject ([PSCustomObject]@{
+ Name = Get-LanguageString "TermsOfUse.Wizard.acceptanceDurationLabel"
+ Value = $days
+ Category = $null
+ SubCategory = $null
+ EntityKey = "userReacceptRequiredFrequency"
+ })
+ }
+}
+
# Document Conditional Access policy
function Invoke-CDDocumentConditionalAccess
{
@@ -1540,7 +1688,9 @@ function Invoke-CDDocumentConditionalAccess
# Basic info
###################################################
- Add-BasicDefaultValues $obj $objectType
+ #Add-BasicDefaultValues $obj $objectType
+ Add-BasicPropertyValue (Get-LanguageString "SettingDetails.nameName") $obj.displayName
+ Add-BasicPropertyValue (Get-LanguageString "TableHeaders.configurationType") (Get-LanguageString "AzureIAM.conditionalAccessBladeTitle")
if($obj.state -eq "enabledForReportingButNotEnforced")
{
@@ -1590,6 +1740,7 @@ function Invoke-CDDocumentConditionalAccess
$body = $ht | ConvertTo-Json
+ # ToDo: Get from MigFile for Offline
$idInfo = (Invoke-GraphRequest -Url "/directoryObjects/getByIds?`$select=displayName,id" -Content $body -Method "Post").Value
}
@@ -1719,6 +1870,7 @@ function Invoke-CDDocumentConditionalAccess
$idObj = $idInfo | Where Id -eq $id
$tmpObjs += ?? $idObj.displayName $id
}
+
Add-CustomSettingObject ([PSCustomObject]@{
Name = $category
Value = $tmpObjs -join $script:objectSeparator
@@ -1916,8 +2068,12 @@ function Invoke-CDDocumentConditionalAccess
if(-not $script:allNamedLocations -and ($obj.conditions.locations.includeLocations.Count -gt 0 -or $obj.conditions.locations.excludeLocations.Count))
{
- # Might be better to get them one by one
- $script:allNamedLocations = (Invoke-GraphRequest -url "/identity/conditionalAccess/namedLocations?`$select=displayName,Id&top=999" -ODataMetadata "minimal").value
+ $script:allNamedLocations = Get-DocOfflineObjects "NamedLocations"
+ if(-not $script:allNamedLocations)
+ {
+ # Might be better to get them one by one
+ $script:allNamedLocations = (Invoke-GraphRequest -url "/identity/conditionalAccess/namedLocations?`$select=displayName,Id&top=999" -ODataMetadata "minimal").value
+ }
if(-not $script:allNamedLocations) { $script:allNamedLocations = @()}
elseif($script:allNamedLocations -isnot [Object[]]) { $script:allNamedLocations = @($script:allNamedLocations) }
@@ -1927,6 +2083,17 @@ function Invoke-CDDocumentConditionalAccess
}
}
+ if(-not $script:allTermsOfUse -and (($obj.grantControls.termsOfUse | measure).Count -gt 0))
+ {
+ $script:allTermsOfUse = Get-DocOfflineObjects "TermsOfUse"
+ if(-not $script:allTermsOfUse)
+ {
+ $script:allTermsOfUse = (Invoke-GraphRequest -url "/identityGovernance/termsOfUse/agreements?`$select=displayName,Id&top=999" -ODataMetadata "minimal").value
+ }
+ if(-not $script:allTermsOfUse ) { $script:allTermsOfUse = @()}
+ elseif($script:allTermsOfUse -isnot [Object[]]) { $script:allTermsOfUse = @($script:allTermsOfUse ) }
+ }
+
if($obj.conditions.locations.includeLocations.Count -gt 0)
{
$tmpObjs = @()
@@ -2056,82 +2223,103 @@ function Invoke-CDDocumentConditionalAccess
EntityKey = "policyControl"
})
- if(($obj.grantControls.builtInControls | Where { $_ -eq "block"}))
+ if($null -eq (($obj.grantControls.builtInControls | Where { $_ -eq "block"}) ))
{
- if(($obj.grantControls.builtInControls | Where { $_ -eq "mfa"}))
+ if(($obj.grantControls.builtInControls | measure).Count -gt 0)
{
- Add-CustomSettingObject ([PSCustomObject]@{
- Name = Get-LanguageString "AzureIAM.policyControlMfaChallengeDisplayedName"
- Value = Get-LanguageString "Inputs.enabled"
- Category = $category
- SubCategory = ""
- EntityKey = "mfa"
- })
+ if(($obj.grantControls.builtInControls | Where { $_ -eq "mfa"}))
+ {
+ Add-CustomSettingObject ([PSCustomObject]@{
+ Name = Get-LanguageString "AzureIAM.policyControlMfaChallengeDisplayedName"
+ Value = Get-LanguageString "Inputs.enabled"
+ Category = $category
+ SubCategory = ""
+ EntityKey = "mfa"
+ })
+ }
+
+ if(($obj.grantControls.builtInControls | Where { $_ -eq "compliantDevice"}))
+ {
+ Add-CustomSettingObject ([PSCustomObject]@{
+ Name = Get-LanguageString "AzureIAM.policyControlCompliantDeviceDisplayedName"
+ Value = Get-LanguageString "Inputs.enabled"
+ Category = $category
+ SubCategory = ""
+ EntityKey = "compliantDevice"
+ })
+ }
+
+ if(($obj.grantControls.builtInControls | Where { $_ -eq "domainJoinedDevice"}))
+ {
+ Add-CustomSettingObject ([PSCustomObject]@{
+ Name = Get-LanguageString "AzureIAM.policyControlRequireDomainJoinedDisplayedName"
+ Value = Get-LanguageString "Inputs.enabled"
+ Category = $category
+ SubCategory = ""
+ EntityKey = "domainJoinedDevice"
+ })
+ }
+
+ if(($obj.grantControls.builtInControls | Where { $_ -eq "approvedApplication"}))
+ {
+ Add-CustomSettingObject ([PSCustomObject]@{
+ Name = Get-LanguageString "AzureIAM.policyControlRequireMamDisplayedName"
+ Value = Get-LanguageString "Inputs.enabled"
+ Category = $category
+ SubCategory = ""
+ EntityKey = "approvedApplication"
+ })
+ }
+
+ if(($obj.grantControls.builtInControls | Where { $_ -eq "compliantApplication"}))
+ {
+ Add-CustomSettingObject ([PSCustomObject]@{
+ Name = Get-LanguageString "AzureIAM.policyControlRequireCompliantAppDisplayedName"
+ Value = Get-LanguageString "Inputs.enabled"
+ Category = $category
+ SubCategory = ""
+ EntityKey = "compliantApplication"
+ })
+ }
+
+ if(($obj.grantControls.builtInControls | Where { $_ -eq "passwordChange"}))
+ {
+ Add-CustomSettingObject ([PSCustomObject]@{
+ Name = Get-LanguageString "AzureIAM.policyControlRequiredPasswordChangeDisplayedName"
+ Value = Get-LanguageString "Inputs.enabled"
+ Category = $category
+ SubCategory = ""
+ EntityKey = "passwordChange"
+ })
+ }
}
- if(($obj.grantControls.builtInControls | Where { $_ -eq "compliantDevice"}))
+ if(($obj.grantControls.termsOfUse | measure).Count -gt 0)
{
+ $termsOfUse = @()
+ foreach($tmpId in $obj.grantControls.termsOfUse)
+ {
+ $touObj = $script:allTermsOfUse | Where Id -eq $tmpId
+ $termsOfUse += ?? $touObj.displayName $tmpId
+ }
+
Add-CustomSettingObject ([PSCustomObject]@{
- Name = Get-LanguageString "AzureIAM.policyControlCompliantDeviceDisplayedName"
- Value = Get-LanguageString "Inputs.enabled"
+ Name = Get-LanguageString "AzureIAM.menuItemTermsOfUse"
+ Value = $termsOfUse -join $script:objectSeparator
Category = $category
SubCategory = ""
- EntityKey = "compliantDevice"
- })
+ EntityKey = "termsOfUse"
+ })
}
-
- if(($obj.grantControls.builtInControls | Where { $_ -eq "domainJoinedDevice"}))
- {
- Add-CustomSettingObject ([PSCustomObject]@{
- Name = Get-LanguageString "AzureIAM.policyControlRequireDomainJoinedDisplayedName"
- Value = Get-LanguageString "Inputs.enabled"
- Category = $category
- SubCategory = ""
- EntityKey = "domainJoinedDevice"
- })
- }
-
- if(($obj.grantControls.builtInControls | Where { $_ -eq "approvedApplication"}))
- {
- Add-CustomSettingObject ([PSCustomObject]@{
- Name = Get-LanguageString "AzureIAM.policyControlRequireMamDisplayedName"
- Value = Get-LanguageString "Inputs.enabled"
- Category = $category
- SubCategory = ""
- EntityKey = "approvedApplication"
- })
- }
-
- if(($obj.grantControls.builtInControls | Where { $_ -eq "compliantApplication"}))
- {
- Add-CustomSettingObject ([PSCustomObject]@{
- Name = Get-LanguageString "AzureIAM.policyControlRequireCompliantAppDisplayedName"
- Value = Get-LanguageString "Inputs.enabled"
- Category = $category
- SubCategory = ""
- EntityKey = "compliantApplication"
- })
- }
-
- if(($obj.grantControls.builtInControls | Where { $_ -eq "passwordChange"}))
- {
- Add-CustomSettingObject ([PSCustomObject]@{
- Name = Get-LanguageString "AzureIAM.policyControlRequiredPasswordChangeDisplayedName"
- Value = Get-LanguageString "Inputs.enabled"
- Category = $category
- SubCategory = ""
- EntityKey = "passwordChange"
- })
- }
-
+
Add-CustomSettingObject ([PSCustomObject]@{
Name = Get-LanguageString "AzureIAM.descriptionContentForControlsAndOr"
Value = Get-LanguageString "AzureIAM.$((?: ($obj.grantControls.operator -eq "OR") "requireOneControlText" "requireAllControlsText"))"
Category = $category
SubCategory = ""
EntityKey = "grantOperator"
- })
-}
+ })
+ }
###################################################
# Session
@@ -2644,12 +2832,11 @@ function Invoke-CDDocumentAssignmentFilter
$label = Get-LanguageString "ApplicabilityRules.GridLabel.rule"
- # "Rules" is not in the translation file
- $category = "Rules"
+ $category = Get-LanguageString "SettingDetails.rules"
Add-CustomSettingObject ([PSCustomObject]@{
Name = $label
- Value = $obj.rule
+ Value = $obj.rule
EntityKey = "rule"
Category = $category
SubCategory = $null
diff --git a/Extensions/DocumentationWord.psm1 b/Extensions/DocumentationWord.psm1
index bea7288..0eb4873 100644
--- a/Extensions/DocumentationWord.psm1
+++ b/Extensions/DocumentationWord.psm1
@@ -3,7 +3,7 @@
#https://docs.microsoft.com/en-us/office/vba/api/overview/word
function Get-ModuleVersion
{
- '1.1.0'
+ '1.2.0'
}
function Invoke-InitializeModule
@@ -31,32 +31,7 @@ function Invoke-InitializeModule
Process = { Invoke-WordProcessItem @args }
PostProcess = { Invoke-WordPostProcessItems @args }
ProcessAllObjects = { Invoke-WordProcessAllObjects @args }
- })
-
- $script:columnHeaders = @{
- Name="Inputs.displayNameLabel"
- Value="TableHeaders.value"
- Description="TableHeaders.description"
- GroupMode="SettingDetails.modeTableHeader" #assignmentTypeSelectionLabel?
- Group="TableHeaders.assignedGroups"
- Groups="TableHeaders.groups"
- useDeviceContext="SettingDetails.installContextLabel"
- uninstallOnDeviceRemoval="SettingDetails.UninstallOnRemoval"
- isRemovable="SettingDetails.installAsRemovable"
- vpnConfigurationId="PolicyType.vpn"
- Action="SettingDetails.actionColumnName"
- Schedule="ScheduledAction.List.schedule"
- MessageTemplate="ScheduledAction.Notification.messageTemplate"
- EmailCC="ScheduledAction.Notification.additionalRecipients"
- Filter="AssignmentFilters.assignmentFilterColumnHeader"
- Rule="ApplicabilityRules.GridLabel.Rule"
- ValueWithLabel="TableHeaders.value"
- Status="TableHeaders.status"
- CombinedValueWithLabel="TableHeaders.value"
- CombinedValue="TableHeaders.value"
- useDeviceLicensing="TableHeaders.licenseType"
- #filterMode="Filter mode" # Not in any string file yet
- }
+ })
}
function Add-WordOptionsControl
@@ -90,6 +65,11 @@ function Add-WordOptionsControl
$global:txtWordTableHeaderStyle.Text = Get-Setting "Documentation" "WordTableHeaderStyle" ""
$global:txtWordCategoryHeaderStyle.Text = Get-Setting "Documentation" "WordCategoryHeaderStyle" ""
$global:txtWordSubCategoryHeaderStyle.Text = Get-Setting "Documentation" "WordSubCategoryHeaderStyle" ""
+ $global:txtWordTableTextStyle.Text = Get-Setting "Documentation" "WordTableTextStyle" ""
+
+ $global:cbWordTableCaptionPosition.ItemsSource = ("[ { Name: `"Above`",Value: `"above`" }, { Name: `"Below`",Value: `"below`" }]" | ConvertFrom-Json)
+ $global:cbWordTableCaptionPosition.SelectedValue = (Get-Setting "Documentation" "WordTableCaptionPosition" "below")
+
$global:txtWordContentControls.Text = Get-Setting "Documentation" "WordContentControls" "Year=;Address="
$global:txtWordTitleProperty.Text = Get-Setting "Documentation" "WordTitleProperty" "Intune documentation"
$global:txtWordSubjectProperty.Text = Get-Setting "Documentation" "WordSubjectProperty" "Intune documentation"
@@ -152,6 +132,9 @@ function Invoke-WordPreProcessItems
Save-Setting "Documentation" "WordTableHeaderStyle" $global:txtWordTableHeaderStyle.Text
Save-Setting "Documentation" "WordCategoryHeaderStyle" $global:txtWordCategoryHeaderStyle.Text
Save-Setting "Documentation" "WordSubCategoryHeaderStyle" $global:txtWordSubCategoryHeaderStyle.Text
+ Save-Setting "Documentation" "WordTableTextStyle" $global:txtWordTableTextStyle.Text
+ Save-Setting "Documentation" "WordTableCaptionPosition" $global:cbWordTableCaptionPosition.SelectedValue
+
Save-Setting "Documentation" "WordContentControls" $global:txtWordContentControls.Text
Save-Setting "Documentation" "WordTitleProperty" $global:txtWordTitleProperty.Text
Save-Setting "Documentation" "WordSubjectProperty" $global:txtWordSubjectProperty.Text
@@ -470,7 +453,7 @@ function Set-WordContentControlText
}
else
{
- Write-Log "No ContentControl found with name $controlName" 2
+ #Write-Log "No ContentControl found with name $controlName" 2
}
}
catch
@@ -521,12 +504,12 @@ function Invoke-WordProcessItem
foreach($prop in $global:txtWordCustomProperties.Text.Split(","))
{
- # This will add language support for custom columens (or replacing existing header)
+ # This will add language support for custom columns (or replacing existing header)
$propInfo = $prop.Split('=')
if(($propInfo | measure).Count -gt 1)
{
$properties += $propInfo[0]
- Set-WordColumnHeaderLanguageId $propInfo[0] $propInfo[1]
+ Set-DocColumnHeaderLanguageId $propInfo[0] $propInfo[1]
}
else
{
@@ -574,9 +557,12 @@ function Invoke-WordProcessItem
if(($documentedObj.Assignments | measure).Count -gt 0)
{
$params = @{}
+ $settingProps = $null
if($documentedObj.Assignments[0].RawIntent)
{
$properties = @("GroupMode","Group","Filter","FilterMode")
+
+ $settingProps = @("Filter","FilterMode")
$settingsObj = $documentedObj.Assignments | Where { $_.Settings -ne $null } | Select -First 1
@@ -586,7 +572,7 @@ function Invoke-WordProcessItem
{
if($objProp -in $properties) { continue }
if($objProp -in @("Category","RawIntent")) { continue }
- $properties += ("Settings." + $objProp)
+ $settingProps += ("Settings." + $objProp)
}
}
}
@@ -609,7 +595,14 @@ function Invoke-WordProcessItem
$params.Add("AddCategories", $true)
}
+ # Creates a standard assignments table
Add-DocTableItems $obj $objectType $documentedObj.Assignments $properties "TableHeaders.assignments" @params
+
+ if($null -ne $settingProps)
+ {
+ # Adds additional values to the assignments table for Apps assignments
+ Set-DocTableSettingsItems $obj $objectType $documentedObj.Assignments $settingProps 3
+ }
}
if($global:chkWordAttatchJsonFile.IsChecked -eq $true)
@@ -632,6 +625,44 @@ function Invoke-WordProcessItem
}
}
+function Set-DocTableSettingsItems
+{
+ param($obj, $objectType, $items, $properties, $firstColumn)
+
+ $secondColumn = $firstColumn + 1
+
+ $script:docTable.Cell(1, $firstColumn).Range.Text = (Invoke-WordTranslateColumnHeader "Settings")
+ $script:docTable.Cell(1, $secondColumn).Range.Text = ""
+
+ $row = 2
+ foreach($itemObj in $items)
+ {
+ $script:docTable.Cell($row, $firstColumn).Range.Text = ""
+ $script:docTable.Cell($row, $secondColumn).Range.Text = ""
+ $script:docTable.Cell($row, $firstColumn).Split($properties.Count,1)
+ $script:docTable.Cell($row, $secondColumn).Split($properties.Count,1)
+
+ $cellRow = $row
+ foreach($settingProp in $properties)
+ {
+ $script:docTable.Cell($cellRow, $firstColumn).Range.Text = (Invoke-WordTranslateColumnHeader ($settingProp.Split('.')[-1]))
+
+ $propArr = $settingProp.Split('.')
+ $tmpObj = $itemObj
+ $propName = $propArr[-1]
+ for($x = 0; $x -lt ($propArr.Count - 1);$x++)
+ {
+ $tmpObj = $tmpObj."$($propArr[$x])"
+ }
+
+ $script:docTable.Cell($cellRow, $secondColumn).Column.Cells($cellRow).Range.Text = "$($tmpObj.$propName)"
+
+ $cellRow++
+ }
+ $row = $row + $properties.Count
+ }
+}
+
function Invoke-WordProcessAllObjects
{
param($allObjectTypeObjects)
@@ -671,54 +702,32 @@ function Invoke-WordProcessAllObjects
}
}
-function Invoke-WordTranslateColumnHeader
-{
- param($columnName)
-
- $lngText = ""
- if($script:columnHeaders.ContainsKey($columnName))
- {
- $lngText = Get-LanguageString $script:columnHeaders[$columnName]
- }
-
- (?? $lngText $columnName)
-}
-
function Invoke-WordCustomProcessItems
{
param($obj, $documentedObj)
}
-function Set-WordColumnHeaderLanguageId
-{
- param($columnName, $lngId)
-
- if(-not $script:columnHeaders -or -not $lngId) { return }
-
- if($script:columnHeaders.ContainsKey($columnName))
- {
- $script:columnHeaders[$columnName] = $lngId
- }
- else
- {
- $script:columnHeaders.Add($columnName, $lngId)
- }
-}
-
function Add-DocTableItems
{
param($obj, $objectType, $items, $properties, $lngId, [switch]$AddCategories, [switch]$AddSubcategories, $captionOverride, [switch]$forceFullValue)
+ if(($items | measure).Count -eq 0)
+ {
+ return
+ }
+
$tblHeaderStyle = $global:txtWordTableHeaderStyle.Text
$tblCategoryStyle = $global:txtWordCategoryHeaderStyle.Text
$tblSubCategoryStyle = $global:txtWordSubCategoryHeaderStyle.Text
+ $tblTextStyle = $global:txtWordTableTextStyle.Text
+ $txtTableCaptionPosition = $global:cbWordTableCaptionPosition.SelectedValue
$range = $script:doc.application.selection.range
$script:docTable = $script:doc.Tables.Add($range, ($items.Count + 1), $properties.Count, [Microsoft.Office.Interop.Word.WdDefaultTableBehavior]::wdWord9TableBehavior, [Microsoft.Office.Interop.Word.WdAutoFitBehavior]::wdAutoFitWindow)
$script:docTable.ApplyStyleHeadingRows = $true
- Set-DocObjectStyle $script:docTable $global:txtWordTableStyle.Text
+ Set-DocObjectStyle $script:docTable $global:txtWordTableStyle.Text | Out-null
if($captionOverride)
{
@@ -736,7 +745,7 @@ function Add-DocTableItems
$i = 1
foreach($prop in $properties)
{
- $script:docTable.Cell(1, $i).Range.Text = (Invoke-WordTranslateColumnHeader ($prop.Split(".")[-1]))
+ $script:docTable.Cell(1, $i).Range.Text = (Invoke-DocTranslateColumnHeader ($prop.Split(".")[-1]))
$i++
}
@@ -816,6 +825,8 @@ function Add-DocTableItems
}
$i++
}
+
+ Set-DocObjectStyle $script:docTable.Rows($row).Range $tblTextStyle
if($itemObj.Category -and $curCategory -ne $itemObj.Category -and $AddCategories -eq $true)
{
@@ -857,13 +868,22 @@ function Add-DocTableItems
$row++
}
- # -2 = Table, 1 = Below
- $script:docTable.Application.Selection.InsertCaption(-2, ". $caption", $null, 1)
+ # -2 = Table caption, 1 = Below / 0 = Above
+ if($txtTableCaptionPosition -eq "above")
+ {
+ $capPos = 0
+ }
+ else
+ {
+ $capPos = 1
+ }
+ $script:docTable.Application.Selection.InsertCaption(-2, ". $caption", $null, $capPos)
+ Invoke-DocGoToEnd
+
# Add new row after the table
#$script:doc.Application.Selection.InsertParagraphAfter()
$script:doc.Application.Selection.TypeParagraph()
- #$script:doc.Application.Selection.TypeParagraph()
}
function Add-DocTableScript
diff --git a/Extensions/EndpointManager.psm1 b/Extensions/EndpointManager.psm1
index 5a7a416..325bb9d 100644
--- a/Extensions/EndpointManager.psm1
+++ b/Extensions/EndpointManager.psm1
@@ -11,7 +11,7 @@ This module is for the Endpoint Manager/Intune View. It manages Export/Import/Co
#>
function Get-ModuleVersion
{
- '3.4.0'
+ '3.5.0'
}
function Invoke-InitializeModule
@@ -86,7 +86,7 @@ function Invoke-InitializeModule
ID="IntuneGraphAPI"
ViewPanel = $viewPanel
AuthenticationID = "MSAL"
- ItemChanged = { Show-GraphObjects; Invoke-ModuleFunction "Invoke-GraphObjectsChanged"; Write-Status ""}
+ ItemChanged = { Show-GraphObjects -ObjectTypeChanged; Invoke-ModuleFunction "Invoke-GraphObjectsChanged"; Write-Status ""}
Deactivating = { Invoke-EMDeactivateView }
Activating = { Invoke-EMActivatingView }
Authentication = (Get-MSALAuthenticationObject)
@@ -112,6 +112,7 @@ function Invoke-InitializeModule
PostCopyCommand = { Start-PostCopyDeviceConfiguration @args }
PostGetCommand = { Start-PostGetDeviceConfiguration @args }
GroupId = "DeviceConfiguration"
+ NavigationProperties=$true
})
Add-ViewItem (New-Object PSObject -Property @{
@@ -124,6 +125,8 @@ function Invoke-InitializeModule
GroupId = "ConditionalAccess"
ImportExtension = { Add-ConditionalAccessImportExtensions @args }
PreImportCommand = { Start-PreImportConditionalAccess @args }
+ PostExportCommand = { Start-PostExportConditionalAccess @args }
+ ExpandAssignmentsList = $false
})
if((Get-SettingValue "PreviewFeatures" $false) -eq $true)
@@ -150,6 +153,7 @@ function Invoke-InitializeModule
Permissons=@("Policy.ReadWrite.ConditionalAccess")
ImportOrder = 50
GroupId = "ConditionalAccess"
+ ExpandAssignmentsList = $false
})
Add-ViewItem (New-Object PSObject -Property @{
@@ -226,6 +230,7 @@ function Invoke-InitializeModule
SkipRemoveProperties = @('Id')
GroupId = "Azure"
SkipAddIDOnExport = $true
+ ExpandAssignmentsList = $false
})
Add-ViewItem (New-Object PSObject -Property @{
@@ -340,6 +345,7 @@ function Invoke-InitializeModule
PostExportCommand = { Start-PostExportTermsAndConditions @args }
PreImportAssignmentsCommand = { Start-PreImportAssignmentsTermsAndConditions @args }
GroupId = "TenantAdmin"
+ ExpandAssignmentsList = $false
})
Add-ViewItem (New-Object PSObject -Property @{
@@ -359,6 +365,7 @@ function Invoke-InitializeModule
Permissons=@("DeviceManagementApps.ReadWrite.All")
Dependencies = @("Applications")
GroupId = "AppProtection"
+ ExpandAssignmentsList = $false
})
# These are also included in the managedAppPolicies API
@@ -377,6 +384,7 @@ function Invoke-InitializeModule
Dependencies = @("Applications")
Icon = "AppConfiguration"
GroupId = "AppConfiguration"
+ ExpandAssignmentsList = $false
})
Add-ViewItem (New-Object PSObject -Property @{
@@ -400,6 +408,7 @@ function Invoke-InitializeModule
ViewID = "IntuneGraphAPI"
PropertiesToRemove = @('uploadState','publishingState','isAssigned','dependentAppCount','supersedingAppCount','supersededAppCount','committedContentVersion','isFeatured','size','categories')
QUERYLIST = "`$filter=(microsoft.graph.managedApp/appAvailability%20eq%20null%20or%20microsoft.graph.managedApp/appAvailability%20eq%20%27lineOfBusiness%27%20or%20isAssigned%20eq%20true)&`$orderby=displayName"
+ QuerySearch=$true
Permissons=@("DeviceManagementApps.ReadWrite.All")
AssignmentsType="mobileAppAssignments"
AssignmentProperties = @("@odata.type","target","settings","intent")
@@ -437,10 +446,12 @@ function Invoke-InitializeModule
PreImportAssignmentsCommand = { Start-PreImportAssignmentsPolicySets @args }
PreImportCommand = { Start-PreImportPolicySets @args }
PreUpdateCommand = { Start-PreUpdatePolicySets @args }
+ PostListCommand = { Start-PostListPolicySets @args }
Permissons=@("DeviceManagementConfiguration.ReadWrite.All")
ImportOrder = 2000 # Policy Sets reference other objects so make sure it is imported last
Dependencies = @("Applications","AppConfiguration","AppProtection","AutoPilot","EnrollmentRestrictions","EnrollmentStatusPage","DeviceConfiguration","AdministrativeTemplates","SettingsCatalog","CompliancePolicies")
GroupId = "PolicySets"
+ ExpandAssignmentsList = $false # expand is not allowed, IsAssigned is set in PostListCommand
})
Add-ViewItem (New-Object PSObject -Property @{
@@ -485,6 +496,8 @@ function Invoke-InitializeModule
# Property that needs to be updated on the Compliance Policy
# deviceManagement/managementConditionStatements/$obj.conditionStatementId
+ # Location objects support removed from Intune
+ <#
Add-ViewItem (New-Object PSObject -Property @{
Title = "Locations"
Id = "Locations"
@@ -495,6 +508,7 @@ function Invoke-InitializeModule
ImportOrder = 30
GroupId = "CompliancePolicies"
})
+ #>
Add-ViewItem (New-Object PSObject -Property @{
Title = "Settings Catalog"
@@ -526,6 +540,8 @@ function Invoke-InitializeModule
#expand=roleassignments
PropertiesToRemoveForUpdate = @('isBuiltInRoleDefinition','isBuiltIn','roleAssignments') ### !!! ToDo: Add support for roleAssignments
GroupId = "TenantAdmin"
+ ExpandAssignments = $false
+ ExpandAssignmentsList = $false
})
Add-ViewItem (New-Object PSObject -Property @{
@@ -539,6 +555,7 @@ function Invoke-InitializeModule
ImportOrder = 10
DocumentAll = $true
GroupId = "TenantAdmin"
+ ExpandAssignmentsList = $false # Adds the assignmnets property but always empty
})
Add-ViewItem (New-Object PSObject -Property @{
@@ -554,6 +571,7 @@ function Invoke-InitializeModule
PostCopyCommand = { Start-PostCopyNotifications @args }
PropertiesToRemoveForUpdate = @('defaultLocale','localizedNotificationMessages') ### !!! ToDo: Add support for localizedNotificationMessages
GroupId = "CompliancePolicies"
+ ExpandAssignmentsList = $false
})
# This has some pre-reqs for working!
@@ -593,6 +611,7 @@ function Invoke-InitializeModule
ImportOrder = 15
GroupId = "TenantAdmin"
PropertiesToRemoveForUpdate = @('platform')
+ ExpandAssignmentsList = $false
})
Add-ViewItem (New-Object PSObject -Property @{
@@ -749,19 +768,34 @@ function Set-EMViewPanel
$btnRefresh.SetValue([System.Windows.Controls.Grid]::ColumnProperty,$grdTitle.ColumnDefinitions.Count - 1)
$btnRefresh.Margin = "0,0,5,3"
$btnRefresh.Cursor = "Hand"
+ $btnRefresh.Name = "btnRefresh"
$btnRefresh.Focusable = $false
$grdTitle.Children.Add($btnRefresh) | Out-Null
$tooltip = [System.Windows.Controls.ToolTip]::new()
- $tooltip.Content = "Refresh"
+ $tooltip.Content = "Refresh all objects"
+ [System.Windows.Controls.ToolTipService]::SetToolTip($btnRefresh, $tooltip)
+
+ $panel.RegisterName($btnRefresh.Name, $btnRefresh)
+
+ $tooltip = [System.Windows.Controls.ToolTip]::new()
+ $tooltip.Content = "Refresh objects"
+
[System.Windows.Controls.ToolTipService]::SetToolTip($btnRefresh, $tooltip)
$btnRefresh.Add_Click({
- # ToDo: Move this to view view object
+ $txtFilterText = $null
$txtFilter = $this.Parent.FindName("txtFilter")
- if($txtFilter) { $txtFilter.Text = "" }
+ if($txtFilter) { $txtFilterText = $txtFilter.Text } #= "" }
- Show-GraphObjects
+ Show-GraphObjects $txtFilterText
+
+ if($txtFilterText -and $txtFilter)
+ {
+ $txtFilter.Text = $txtFilterText
+ Invoke-FilterBoxChanged $txtFilter
+ }
+
Write-Status ""
})
}
@@ -782,11 +816,29 @@ function Set-EMViewPanel
$graphObjects | ForEach-Object { $global:dgObjects.ItemsSource.AddNewItem($_) | Out-Null }
$global:dgObjects.ItemsSource.CommitNew()
Set-GraphPagesButtonStatus
- Invoke-FilterBoxChanged $global:txtFilter -ForceUpdate
+ Invoke-FilterBoxChanged $global:txtFilter
Write-Status ""
})
}
+function Invoke-GraphObjectsChanged
+{
+ $btnRefresh = $global:EMViewObject.ViewPanel.FindName("btnRefresh")
+
+ if($btnRefresh)
+ {
+ $tooltip = [System.Windows.Controls.ToolTipService]::GetToolTip($btnRefresh)
+ if($global:lstMenuItems.SelectedItem.QuerySearch -eq $true)
+ {
+ $tooltip.Content = "Refresh objects based on filter. Note: Only filtered objects will be returned. Clear filter and press refresh to reload other objects"
+ }
+ else
+ {
+ $tooltip.Content = "Refresh all objects"
+ }
+ }
+}
+
function Invoke-EMSelectedItemsChanged
{
$hasSelectedItems = ($global:dgObjects.ItemsSource | Where IsSelected -eq $true) -or ($null -ne $global:dgObjects.SelectedItem)
@@ -2132,6 +2184,16 @@ function Update-EMPolicySetAssignment
Invoke-GraphRequest -Url $api -HttpMethod "POST" -Content $json
}
+function Start-PostListPolicySets
+{
+ param($objList, $objectType)
+
+ foreach($obj in $objList)
+ {
+ $obj | Add-Member -MemberType NoteProperty -Name "IsAssigned" -Value ($obj.Object.status -ne "notAssigned")
+ }
+ $objList
+}
#endregion
#endregion Locations
@@ -2710,6 +2772,43 @@ function Start-PreImportConditionalAccess
$obj.state = $global:cbImportCAState.SelectedValue
}
}
+
+function Start-PostExportConditionalAccess
+{
+ param($obj, $objectType, $path)
+
+ $ids = @()
+ foreach($id in ($obj.conditions.users.includeGroups + $obj.conditions.users.excludeGroups))
+ {
+ if($id -in $ids) { continue }
+ elseif($id -eq "GuestsOrExternalUsers") { continue }
+ elseif($id -eq "All") { continue }
+ elseif($id -eq "None") { continue }
+
+ $ids += $id
+ Add-GraphMigrationObject $id "/groups" "Group"
+ }
+
+ foreach($id in ($obj.conditions.users.includeUsers +$obj.conditions.users.excludeUsers))
+ {
+ if($id -in $ids) { continue }
+ elseif($id -eq "GuestsOrExternalUsers") { continue }
+ elseif($id -eq "All") { continue }
+ elseif($id -eq "None") { continue }
+
+ $ids += $id
+ Add-GraphMigrationObject $id "/users" "User"
+ }
+
+ <#
+ $roleIds = @()
+ foreach($id in ($obj.conditions.users.includeRoles + $obj.conditions.users.excludeRoles))
+ {
+ if($id -in $ids) { continue }
+ $roleIds += $id
+ }
+ #>
+}
#endregion
#region Terms of use
diff --git a/Extensions/EndpointManagerInfo.psm1 b/Extensions/EndpointManagerInfo.psm1
index 7ec653b..e911d14 100644
--- a/Extensions/EndpointManagerInfo.psm1
+++ b/Extensions/EndpointManagerInfo.psm1
@@ -10,7 +10,7 @@ This module is for the Endpoint Info View. It shows read-only objects in Intune
#>
function Get-ModuleVersion
{
- '3.1.4'
+ '3.5.0'
}
function Invoke-InitializeModule
@@ -22,7 +22,7 @@ function Invoke-InitializeModule
ID = "EMInfoGraphAPI"
ViewPanel = $viewPanel
AuthenticationID = "MSAL"
- ItemChanged = { Show-GraphObjects; Invoke-ModuleFunction "Invoke-GraphObjectsChanged"; Write-Status ""}
+ ItemChanged = { Show-GraphObjects -ObjectTypeChanged; Invoke-ModuleFunction "Invoke-GraphObjectsChanged"; Write-Status ""}
Activating = { Invoke-EMInfoActivatingView }
Authentication = (Get-MSALAuthenticationObject)
Authenticate = { Invoke-EMInfoAuthenticateToMSAL }
@@ -40,7 +40,8 @@ function Invoke-InitializeModule
API = "/deviceManagement/templates"
ShowButtons = @("Export","View")
Permissons=@("DeviceManagementConfiguration.ReadWrite.All")
- Icon="EndpointSecurity"
+ Icon="EndpointSecurity"
+ ExpandAssignmentsList = $false
})
Add-ViewItem (New-Object PSObject -Property @{
@@ -50,7 +51,8 @@ function Invoke-InitializeModule
ViewProperties = @("bindStatus", "lastAppSyncDateTime", "ownerUserPrincipalName")
API = "/deviceManagement/androidManagedStoreAccountEnterpriseSettings"
ShowButtons = @("Export","View")
- Permissons=@("DeviceManagementConfiguration.ReadWrite.All")
+ Permissons=@("DeviceManagementConfiguration.ReadWrite.All")
+ ExpandAssignmentsList = $false
})
Add-ViewItem (New-Object PSObject -Property @{
@@ -61,6 +63,7 @@ function Invoke-InitializeModule
ShowButtons = @("Export","View")
Permissons=@("DeviceManagementConfiguration.ReadWrite.All")
Icon = "AndroidCOWP"
+ ExpandAssignmentsList = $false
})
Add-ViewItem (New-Object PSObject -Property @{
@@ -70,7 +73,8 @@ function Invoke-InitializeModule
ViewProperties = @("appleId", "state", "appleId", "id")
API = "/deviceAppManagement/vppTokens"
ShowButtons = @("Export","View")
- Permissons=@("DeviceManagementConfiguration.ReadWrite.All")
+ Permissons=@("DeviceManagementConfiguration.ReadWrite.All")
+ ExpandAssignmentsList = $false
})
Add-ViewItem (New-Object PSObject -Property @{
@@ -80,9 +84,9 @@ function Invoke-InitializeModule
ViewProperties = @("tokenName", "appleIdentifier", "tokenExpirationDateTime", "id")
API = "/deviceManagement/depOnboardingSettings/?`$top=100"
ShowButtons = @("Export","View")
- Permissons=@("DeviceManagementServiceConfig.ReadWrite.All")
+ Permissons=@("DeviceManagementServiceConfig.ReadWrite.All")
+ ExpandAssignmentsList = $false
})
-
}
function Invoke-EMInfoActivatingView
diff --git a/Extensions/MSALAuthentication.psm1 b/Extensions/MSALAuthentication.psm1
index bb66d77..c4bb8df 100644
--- a/Extensions/MSALAuthentication.psm1
+++ b/Extensions/MSALAuthentication.psm1
@@ -10,7 +10,7 @@ This module manages Authentication for the application with MSAL. It is also res
#>
function Get-ModuleVersion
{
- '3.4.0'
+ '3.5.0'
}
$global:msalAuthenticator = $null
@@ -78,7 +78,7 @@ function Invoke-InitializeModule
Key = "CacheMSALToken"
Type = "Boolean"
DefaultValue = $true
- Description = "Store the MSAL token in an encrypted file an automatically log on at next logon. Store in the users profile and can only be decrypted by the user that created it. Note: Requires restart"
+ Description = "Store the MSAL token in an encrypted file and automatically log when the script starts. The token is stored in the users profile and can only be decrypted by the user that created it. Note: Requires restart"
}) "MSAL"
Add-SettingsObject (New-Object PSObject -Property @{
@@ -106,20 +106,12 @@ function Invoke-InitializeModule
}) "MSAL"
Add-SettingsObject (New-Object PSObject -Property @{
- Title = "Azure Login"
- Key = "AzureLogin"
- Type = "List"
- ItemsSource = $script:lstAADEnvironments
- DefaultValue = "public"
- }) "MSAL"
-
- Add-SettingsObject (New-Object PSObject -Property @{
- Title = "GCC Environment"
- Key = "GCCEnvironment"
- Type = "List"
- ItemsSource = $script:lstGCCEnvironments
- DefaultValue = "gcc"
- }) "MSAL"
+ Title = "Show Azure AD login menu"
+ Key = "AzureADLoginMenu"
+ Type = "Boolean"
+ DefaultValue = $false
+ Description = "Use this to login to US Government or China cloud. If not enabled, it will directly prompt for Public cloud login"
+ }) "MSAL"
Add-SettingsObject (New-Object PSObject -Property @{
Title = "Sort Account List"
@@ -156,6 +148,7 @@ function Get-MSALAuthenticationObject
function Invoke-SettingsUpdated
{
Initialize-MSALSettings
+ Invoke-MSALCheckObjectViewAccess
}
function Initialize-MSALSettings
@@ -192,19 +185,19 @@ function Set-MSALGraphEnvironment
$graphEnv = "graph.microsoft.com"
+
if($user)
{
$curAADEnv = $script:lstAADEnvironments | Where URL -eq $user.Environment
}
else
{
- $loginValue = Get-SettingValue "AzureLogin" "public" -TenantID (?? $tenantId $loginHint.user.TenantId)
- $curAADEnv = $script:lstAADEnvironments | Where value -eq $loginValue
- }
+ $curAADEnv = $script:lstAADEnvironments | Where value -eq (Get-Setting "" "MSALCloudType" "public")
+ }
if($curAADEnv.Value -eq "usGov")
{
- $gccEnv = Get-SettingValue "GCCEnvironment" "gcc" -TenantID (?? $tenantId $loginHint.user.TenantId)
+ $gccEnv = (Get-Setting "" "MSALGCCType" "gcc")
if($gccEnv)
{
$GCCEnvObj = $script:lstGCCEnvironments | Where Value -eq $gccEnv
@@ -527,13 +520,29 @@ function Add-MSALPrereq
return
}
+ $fiLoaded = $null
+ if(("Microsoft.Identity.Client.TokenCache" -as [type]))
+ {
+ $fiLoaded = [IO.FileInfo]"$([Microsoft.Identity.Client.TokenCache].Assembly.Location)"
+ }
+
$fi = [IO.FileInfo]$msalPath
- [void] [System.Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms")
- Write-Log "Using MSAL file $msalPath. Version: $($fi.VersionInfo.FileVersion)"
- [void][System.Reflection.Assembly]::LoadFile($msalPath)
[System.Collections.Generic.List[string]] $RequiredAssemblies = New-Object System.Collections.Generic.List[string]
- $RequiredAssemblies.Add($msalPath)
+ if($fiLoaded -and $fiLoaded.VersionInfo.FileVersion -ne $fi.VersionInfo.FileVersion)
+ {
+ Write-Log "Wrong version of MSAL.DLL is loaded - Version $($fiLoaded.VersionInfo.FileVersion). DLL: $($fiLoaded.FullName)" 3
+ Write-Log "Expected version: $($fi.VersionInfo.FileVersion) from DLL $msalPath" 3
+ Write-Log "Some MSAL features might not work!" 3
+ Write-Log "This could happen if another version of MSAL.DLL was loaded beforethe script tried to load it" 3
+ $RequiredAssemblies.Add($fiLoaded.FullName)
+ }
+ else
+ {
+ Write-Log "Using MSAL file $msalPath. Version: $($fi.VersionInfo.FileVersion)"
+ [void][System.Reflection.Assembly]::LoadFile($msalPath)
+ $RequiredAssemblies.Add($msalPath)
+ }
$RequiredAssemblies.Add('System.Security.dll')
try
@@ -545,6 +554,7 @@ function Add-MSALPrereq
$global:SkipTokenCacheHelperEx = $true
Write-LogError "Failed to compile TokenCacheHelperEx. The access token will not be cached. Check write access to the CS folder and ASR policies" $_.Exception
}
+ [void] [System.Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms")
}
function Connect-MSALClientApp
@@ -650,9 +660,8 @@ function Get-MsalAuthenticationToken
function Get-MSALLoginEnvironment
{
- $loginValue = Get-SettingValue "AzureLogin" "public"
- $loginEnv = $script:lstAADEnvironments | Where value -eq $loginValue
- return (?? $loginEnv.Environment "login.microsoftonline.com")
+ $loginEnv = $script:lstAADEnvironments | Where value -eq (Get-Setting "" "MSALCloudType" "public")
+ return (?? $loginEnv.URL "login.microsoftonline.com")
}
function Get-MSALApp
{
@@ -687,7 +696,10 @@ function Get-MSALApp
if($appInfo.RedirectUri) { [void]$appBuilder.WithRedirectUri($appInfo.RedirectUri) }
[void] $appBuilder.WithClientName("CloudAPIPowerShellManagement")
- [void] $appBuilder.WithClientVersion($PSVersionTable.PSVersion)
+ [void] $appBuilder.WithClientVersion($PSVersionTable.PSVersion)
+
+ # Ceck if correct version...
+ #$appBuilder.WithMultiCloudSupport($true)
$msalApp = $appBuilder.Build()
@@ -732,6 +744,9 @@ function Connect-MSALUser
$Account,
+ [switch]
+ $ShowMenu,
+
$Tenant
)
@@ -750,7 +765,7 @@ function Connect-MSALUser
}
else
{
- Write-Log "Azure AppId, Tenant Id and Sercret/Cert must be specified for batch login" 3
+ Write-Log "Azure AppId, Tenant Id and Sercret/Cert must be specified for batch jobs" 3
}
return
@@ -758,28 +773,23 @@ function Connect-MSALUser
Write-LogDebug "Authenticate"
+ if($ShowMenu -eq $true -and ((Get-SettingValue "AzureADLoginMenu") -eq $true))
+ {
+ if((Show-MSALLoginMenu) -eq $false) { return }
+ $global:MSALGraphEnvironment = $null
+ }
+
if(-not $global:appObj.ClientId)
{
Write-Log "Application id is missing. Cannot authenticate" 3
return
}
- #if(-not $global:appObj.TenantId -and -not $global:appObj.Authority)
- #{
- # Write-Log "Tenant id/Authority is missing. Cannot authenticate" 3
- #}
-
if ($global:SkipTokenCacheHelperEx -ne $true -and -not ("TokenCacheHelperEx" -as [type]))
{
Add-MSALPrereq
}
- #if (-not ("TokenCacheHelperEx" -as [type]))
- #{
- # Write-Log "Failed to compile TokenCacheHelperEx class"
- # return
- #}
-
$curTicks = $global:MSALToken.ExpiresOn.LocalDateTime.Ticks
$currentLoggedInUserApp = ($global:MSALToken.Account.HomeAccountId.Identifier + $global:MSALToken.TenantId + $global:MSALApp.ClientId)
@@ -818,10 +828,20 @@ function Connect-MSALUser
}
else
{
- $lastUser = Get-Setting "" "LastLoggedOnUser"
- if($lastUser)
+ $lastUser =
+ $lastUserId = Get-Setting "" "LastLoggedOnUserId"
+ if($lastUserId)
{
- $loginHint = $global:MSALAccounts | Where { $_.HomeAccountId.Identifier -eq $lastUser }
+ # Try to get user based on Id - to allow alias login...
+ $loginHint = $global:MSALAccounts | Where { $_.HomeAccountId.ObjectId -eq $lastUserId }
+ }
+ if(-not $loginHint)
+ {
+ $lastUser = Get-Setting "" "LastLoggedOnUser"
+ if($lastUser)
+ {
+ $loginHint = $global:MSALAccounts | Where { $_.HomeAccountId.Identifier -eq $lastUser }
+ }
}
if(-not $loginHint)
{
@@ -842,34 +862,12 @@ function Connect-MSALUser
Set-MSALGraphEnvironment $loginHint $tenantId
$useDefaultPermissions = (Get-SettingValue "UseDefaultPermissions" -TenantID (?? $tenantId $loginHint.HomeAccountId.TenantId))
- if($useDefaultPermissions -eq $true -or ($global:currentViewObject.ViewInfo.Permissions | measure).Count -eq 0)
- {
- [string[]] $Scopes = "https://$($global:MSALGraphEnvironment)/.default"
- $useDefaultPermissions = $true
- }
- else
- {
- #$Scopes = [string[]]$global:PermissionScope
- $reqScopes = [string[]]$global:msalAuthenticator.Permissions
- $useDefaultPermissions = $false
-
- $resolveRoles = ((Get-SettingValue "AzureADRoleRead" $false -TenantID (?? $tenantId $loginHint.HomeAccountId.TenantId)) -eq $true)
-
- if($resolveRoles -and $global:msalAuthenticator.Permissions -notcontains "RoleManagement.Read.Directory")
- {
- # Adds the required permission for reading AAD directory roles
- $reqScopes += "RoleManagement.Read.Directory"
- }
-
- $script:curViewPermissions = $global:currentViewObject.ViewInfo.Permissions
-
- foreach($tmpScope in $script:curViewPermissions)
- {
- if($reqScopes -notcontains $tmpScope) { $reqScopes += $tmpScope }
- }
- $Scopes = [String[]]$reqScopes
- }
-
+ # Always login with default scopes
+ # The app will check if there are any missing scopes
+ # Full Consent prompt will be triggered if app is not approved in the environment
+ # Consent prompt for additional scopes will be forced or available depending on the 'Use Default Permissions' setting
+ [string[]] $Scopes = "https://$($global:MSALGraphEnvironment)/.default"
+ $useDefaultPermissions = ($useDefaultPermissions -eq $true -or ($global:currentViewObject.ViewInfo.Permissions | measure).Count -eq 0)
$prompConsent = $false
$authResult = $null
@@ -911,32 +909,51 @@ function Connect-MSALUser
#AADSTS65001
if($script:authenticationFailure.Classification -eq "ConsentRequired")
{
- $Scopes = [string[]]$reqScopes
+ # Will this ever happen? Cached credentials but original app consent removed...
+ $prompConsent = $true
}
- else
+ elseif($authResult -and $useDefaultPermissions -eq $false -and ($null -eq $currentLoggedInUserId -or $currentLoggedInUserId -ne $global:MSALToken.Account.HomeAccountId.Identifier))
{
- if($useDefaultPermissions -eq $false -and $authResult -and ($reqScopes | measure).Count -gt 0 -and $global:promptConsentRequested -notcontains $authResult.TenantId)
- {
- $missingScopes = @()
- foreach($scope in $reqScopes)
- {
- $tmpScope = $scope.Split('/')[-1]
- if($tmpScope -eq ".default") { continue }
- if($authResult.Scopes -contains $tmpScope) { continue }
- $missingScopes += $tmpScope
- Write-LogDebug "Adding missing scope $tmpScope"
+ # If 'Use Default Permissions' is not checked and new user logs in...
+ # Check if there are any missing permissions
+ # Only prompt for consent if the app is fully started
+ # "Cancel" login if the app is starting
+ Get-MSALMissingScopes $authResult
+ if(($script:missingPermissions | measure).Count -gt 0)
+ {
+ if($global:MainAppStarted)
+ {
+ # App started...force full consent prompt
+ $tmpAuthResult = Start-MSALConsentPrompt -PassThru -authToken $authResult
+ if($tmpAuthResult)
+ {
+ # Consent successfull so update the authResult with new token
+ $authResult = $tmpAuthResult
+ }
+ else
+ {
+ # Consent cancelled by the user or failed...continue with successful silent login
+ # Note: This will not have full permissions
+ if($currentLoggedInUserApp -eq ($global:MSALToken.Account.HomeAccountId.Identifier + $global:MSALToken.TenantId + $global:MSALApp.ClientId))
+ {
+ # Only need to update if it is the same user
+ # If it is a new user, the code below will take care of this e.g. this could happen if clicked on cached user
+ Invoke-MSALCheckObjectViewAccess $authResult
+ }
+ }
}
-
- if($missingScopes)
+ else
{
- # This will prompt for consent for the missing scopes
- $prompConsent = $true
- $global:promptConsentRequested += $authResult.TenantId
- $Scopes = $authResult.Scopes
- $extraScopesToConsent = [string[]]$missingScopes
- $loginHint = $authResult.Account
- }
- }
+ # Silent login was successfull but cancel it since Use Default Permission is set to false
+ # One or more permissions are missing
+ # This will force an additional login that will prompt for consent
+ Write-Log "Silent login was successful but one or more scopes are missing. Aborting login to force Consent Prompt" 2
+ $authResult = $null
+ Get-MSALUserInfo
+ Clear-MSALCurentUserVaiables
+ return
+ }
+ }
}
}
}
@@ -952,6 +969,12 @@ function Connect-MSALUser
### Interactive Login
#########################################################################################################
Write-Log "Initiate interactive logon"
+
+ if($useDefaultPermissions -eq $false)
+ {
+ [string[]]$Scopes = Get-MSALRequiredScopes
+ }
+
Write-Log "Scopes: $(($Scopes -join ","))"
$loginHintName = (?? $loginHint.Username $loginHint)
@@ -986,19 +1009,18 @@ function Connect-MSALUser
[void]$aquireTokenObj.WithParentActivityOrWindow($ParentWindow)
}
- # If we need a consent (e.g. App is not approved in the environment), prompt for consent with all reqruied permissions
- # Extra scopes to consent is only required when new perissions should be added
+ # If we need a consent (e.g. App is not approved in the environment)
if ($script:authenticationFailure.Classification -eq "ConsentRequired")
{
Write-Log "Interactive login with Consent prompt"
[void]$aquireTokenObj.WithPrompt([Microsoft.Identity.Client.Prompt]::Consent)
}
- elseif ($extraScopesToConsent)
+ elseif(-not $loginHintName)
{
- Write-Log "Interactive login with extra scopes consent prompt: $(($extraScopesToConsent -join ","))"
- [void] $aquireTokenObj.WithExtraScopesToConsent($extraScopesToConsent)
+ Write-Log "Interactive login with Select account prompt"
+ [void]$AquireTokenObj.WithPrompt([Microsoft.Identity.Client.Prompt]::SelectAccount)
}
-
+
$authResult = Get-MsalAuthenticationToken $aquireTokenObj
if($authResult)
{
@@ -1022,7 +1044,8 @@ function Connect-MSALUser
$appBuilder = [Microsoft.Identity.Client.PublicClientApplicationBuilder]::Create($global:appObj.ClientID)
if($tenantId) { [void]$appBuilder.WithAuthority("https://$((Get-MSALAppAuthority))/$($tenantId)") }
else { [void]$appBuilder.WithAuthority($global:MSALApp.Authority) }
- if($global:appObj.RedirectUri) { [void]$appBuilder.WithRedirectUri($global:appObj.RedirectUri) }
+ if($global:appObj.RedirectUri) { [void]$appBuilder.WithRedirectUri($global:appObj.RedirectUri) }
+
$app = $appBuilder.Build()
if((Get-SettingValue "CacheMSALToken"))
@@ -1039,6 +1062,7 @@ function Connect-MSALUser
$AquireTokenObj = $app.AcquireTokenInteractive($tmpScope)
#[void]$AquireTokenObj.WithAccount($authResult.Account)
[void]$AquireTokenObj.WithLoginHint($authResult.Account.Username)
+ [void]$AquireTokenObj.WithPrompt([Microsoft.Identity.Client.Prompt]::NoPrompt)
$tmpResults = Get-MsalAuthenticationToken $AquireTokenObj
}
@@ -1070,76 +1094,189 @@ function Connect-MSALUser
if($authResult)
{
Save-Setting "" "LastLoggedOnUser" $authResult.Account.UserName
+ Save-Setting "" "LastLoggedOnUserId" $authResult.Account.HomeAccountId.ObjectId
}
-
+
Write-LogDebug "User, tenant or app has changed"
Get-MSALUserInfo
- Invoke-MSALCheckObjectViewAccess
+ if($authResult)
+ {
+ Invoke-MSALCheckObjectViewAccess $authResult
+ }
Invoke-ModuleFunction "Invoke-GraphAuthenticationUpdated"
}
}
+function Start-MSALConsentPrompt
+{
+ param([switch]$PassThru, $authToken)
+ Write-Log "Initiate consent prompt"
+
+ if(($script:missingPermissions | measure).Count -eq 0) { return }
+
+ if(-not $authToken -and $global:MSALToken)
+ {
+ $authToken = $global:MSALToken
+ }
+
+ [string[]] $Scopes = $script:missingPermissions
+
+ $loginHintName = $authToken.Account.UserName
+ $tenantId = $authToken.TenantId
+
+ if(-not $loginHintName -or -not $tenantId)
+ {
+ return
+ }
+
+ $aquireTokenObj = $global:MSALApp.AcquireTokenInteractive($Scopes)
+ [void]$aquireTokenObj.WithAuthority("https://$((Get-MSALAppAuthority))/$tenantId/")
+ [void]$AquireTokenObj.WithLoginHint($loginHintName)
+
+ [IntPtr]$ParentWindow = [System.Diagnostics.Process]::GetCurrentProcess().MainWindowHandle
+ if ($ParentWindow)
+ {
+ [void]$aquireTokenObj.WithParentActivityOrWindow($ParentWindow)
+ }
+ [void]$aquireTokenObj.WithPrompt([Microsoft.Identity.Client.Prompt]::NoPrompt)
+
+ Write-Log "Consent prompt for the following scopes: $(($script:missingPermissions -join ","))"
+ [void] $aquireTokenObj.WithExtraScopesToConsent(([string[]]$script:missingPermissions))
+
+ $authResult = Get-MsalAuthenticationToken $aquireTokenObj
+ if($authResult)
+ {
+ Write-Log "Consent for additional scopes added successfully"
+ if($PassThru -eq $true)
+ {
+ # The calling function will take care of the authResult
+ $authResult
+ }
+ else
+ {
+ $global:MSALToken = $authResult
+ Invoke-MSALCheckObjectViewAccess $authResult
+ }
+ }
+}
+
function Invoke-MSALCheckObjectViewAccess
{
+ param($authToken)
+
+ if(-not $authToken -and $global:MSALToken)
+ {
+ $authToken = $global:MSALToken
+ }
+
+ if($authToken)
+ {
+ Get-MSALMissingScopes $authToken
+ }
+
+ if($script:userEllipsGrid -and ($script:missingPermissions | measure).Count -eq 0)
+ {
+ Set-XamlProperty $script:userEllipsGrid "lnkRequestConsent" "Visibility" "Collapsed"
+ }
+ elseif($script:userEllipsGrid)
+ {
+ Set-XamlProperty $script:userEllipsGrid "lnkRequestConsent" "Visibility" "Visible"
+ }
+
foreach($viewObjInfo in ($global:viewObjects | Where { $_.ViewInfo.AuthenticationID -eq "MSAL" }))
{
$viewObjInfo = $global:viewObjects | Where { $_.ViewInfo.Id -eq $global:EMViewObject.Id }
if($viewObjInfo)
{
- $accessToken = Get-JWTtoken $global:MSALToken.AccessToken
- if($accessToken.Payload.scp)
+ if($authToken)
+ {
+ $accessToken = Get-JWTtoken $authToken.AccessToken
+ if($accessToken.Payload.scp)
+ {
+ $curPermissions = $accessToken.Payload.scp.Split(" ")
+ foreach($viewItem in $viewObjInfo.ViewItems)
+ {
+ $full = 0
+ $partial = 0
+ $missingScopes = @()
+
+
+ foreach($permission in $viewItem.Permissons)
+ {
+ if($curPermissions -contains $permission)
+ {
+ $full++
+ continue
+ }
+ # Check read access
+ $permissionRead = $null
+ $arrTemp = $permission.Split('.')
+ if($arrTemp[1] -eq "ReadWrite")
+ {
+ $arrTemp[1] = "Read"
+ $permissionRead = $arrTemp -join "."
+ if($null -ne $permissionRead -and $curPermissions -contains $permissionRead)
+ {
+ # ReadWrite permission required but the user only has Read
+ $partial++
+ continue
+ }
+ }
+ elseif($arrTemp[1] -eq "Read")
+ {
+ $arrTemp[1] = "ReadWrite"
+ $permissionRW = $arrTemp -join "."
+ if($null -ne $permissionRW -and $curPermissions -contains $permissionRW)
+ {
+ # Only Read permission required but the user has ReadWrite
+ $full++
+ continue
+ }
+ }
+ $missingScopes += $permission
+ }
+ $hasAccess = $false
+ if($viewItem.Permissons.Count -eq $full)
+ {
+ $accessType = "Full"
+ $hasAccess = $true
+ }
+ elseif($partial -gt 0)
+ {
+ $accessType = "Limited"
+ }
+ else
+ {
+ $accessType = "None"
+ }
+
+ if(-not ($viewItem.PSObject.Properties | Where Name -eq "@HasPermissions"))
+ {
+ $viewItem | Add-Member -NotePropertyName "@HasPermissions" -NotePropertyValue $hasAccess
+ $viewItem | Add-Member -NotePropertyName "@AccessType" -NotePropertyValue $accessType
+ $viewItem | Add-Member -NotePropertyName "@MissingScopes" -NotePropertyValue ($missingScopes -join ",")
+
+ }
+ else
+ {
+ $viewItem."@HasPermissions" = $hasAccess
+ $viewItem."@AccessType" = $accessType
+ $viewItem."@MissingScopes" = ($missingScopes -join ",")
+ }
+ }
+ }
+ }
+ else
{
- $curPermissions = $accessToken.Payload.scp.Split(" ")
foreach($viewItem in $viewObjInfo.ViewItems)
{
- $full = 0
- $partial = 0
-
- foreach($permission in $viewItem.Permissons)
+ if(($viewItem.PSObject.Properties | Where Name -eq "@HasPermissions"))
{
- if($curPermissions -contains $permission)
- {
- $full++
- continue
- }
- # Check read access
- $arrTemp = $permission.Split('.')
- if($arrTemp[1] -eq "ReadWrite")
- {
- $arrTemp[1] = "Read"
- $arrTemp -join "."
- }
- if($curPermissions -contains $permission)
- {
- $partial++
- }
- }
- $hasAccess = $false
- if($viewItem.Permissons.Count -eq $full)
- {
- $accessType = "Full"
- $hasAccess = $true
- }
- elseif($partial -gt 0)
- {
- $accessType = "Limited"
- }
- else
- {
- $accessType = "None"
- }
-
- if(-not ($viewItem.PSObject.Properties | Where Name -eq "@HasPermissions"))
- {
- $viewItem | Add-Member -NotePropertyName "@HasPermissions" -NotePropertyValue $hasAccess
- $viewItem | Add-Member -NotePropertyName "@AccessType" -NotePropertyValue $accessType
- }
- else
- {
- $viewItem."@HasPermissions" = $hasAccess
- $viewItem."@AccessType" = $accessType
- }
+ $viewItem."@HasPermissions" = $null
+ $viewItem."@AccessType" = $null
+ $viewItem."@MissingScopes" = $null
+ }
}
}
}
@@ -1147,6 +1284,40 @@ function Invoke-MSALCheckObjectViewAccess
Show-ViewMenu
}
+function Show-MSALLoginMenu
+{
+ $script:loginMenuForm = Initialize-Window ($global:AppRootFolder + "\Xaml\MSALLoginMenu.xaml")
+ if(-not $script:loginMenuForm) { return }
+
+ Set-XamlProperty $script:loginMenuForm "cbMSALCloudType" "ItemsSource" $script:lstAADEnvironments
+ Set-XamlProperty $script:loginMenuForm "cbMSALGCCType" "ItemsSource" $script:lstGCCEnvironments
+
+ Set-XamlProperty $script:loginMenuForm "cbMSALCloudType" "SelectedValue" (Get-Setting "" "MSALCloudType" "public")
+ Set-XamlProperty $script:loginMenuForm "cbMSALGCCType" "SelectedValue" (Get-Setting "" "MSALGCCType" "gcc")
+
+ Set-XamlProperty $script:loginMenuForm "cbMSALGCCType" "IsEnabled" ((Get-Setting "" "MSALCloudType" "public") -eq "usGov")
+
+ Add-XamlEvent $script:loginMenuForm "cbMSALCloudType" "add_selectionChanged" {
+ Set-XamlProperty $script:loginMenuForm "cbMSALGCCType" "IsEnabled" ($this.SelectedValue -eq "usGov")
+ }
+
+ Add-XamlEvent $script:loginMenuForm "btnLogin" "Add_Click" -scriptBlock ([scriptblock]{
+ Save-Setting "" "MSALCloudType" (Get-XamlProperty $script:loginMenuForm "cbMSALCloudType" "SelectedValue")
+ Save-Setting "" "MSALGCCType" (Get-XamlProperty $script:loginMenuForm "cbMSALGCCType" "SelectedValue")
+
+ $script:loginMenuForm.DialogResult = $true
+ $script:loginMenuForm.Close()
+ })
+
+ Add-XamlEvent $script:loginMenuForm "btnCancel" "Add_Click" -scriptBlock ([scriptblock]{
+ $script:loginMenuForm.Close()
+ })
+
+ $script:loginMenuForm.Owner = $global:window
+ $script:loginMenuForm.Icon = $Window.Icon
+ return ($script:loginMenuForm.ShowDialog())
+}
+
function Disconnect-MSALUser
{
param($user, [switch]$force, [switch]$PassThru)
@@ -1232,9 +1403,11 @@ function Get-MSALProfileEllipse
Show-MSALError
return
}
+
if(($global:MSALAccounts | measure).Count -eq 0)
{
- Connect-MSALUser -Interactive
+ # No cached users
+ Connect-MSALUser -Interactive -ShowMenu
if($global:curObjectType)
{
Show-GraphObjects
@@ -1243,57 +1416,14 @@ function Get-MSALProfileEllipse
}
else
{
+ # Add list of cached users + a 'Sign in with a different account' option
+
$xaml = Get-Content ($global:AppRootFolder + "\Xaml\LoginPanel.Xaml")
$loginPanel = [Windows.Markup.XamlReader]::Parse($xaml)
$otherLogins = $loginPanel.FindName("grdAccounts")
foreach($account in $global:MSALAccounts)
{
- try
- {
- #########################################################################################################
- ### Add cached users to the list of logins
- #########################################################################################################
- $grdAccount = [System.Windows.Controls.Grid]::new()
- $cd = [System.Windows.Controls.ColumnDefinition]::new()
- $grdAccount.ColumnDefinitions.Add($cd)
- $cd = [System.Windows.Controls.ColumnDefinition]::new()
- $cd.Width = [double]::NaN
- $grdAccount.ColumnDefinitions.Add($cd)
-
- $icon = Get-XamlObject ($global:AppRootFolder + "\Xaml\Icons\LoggedOnUser.xaml")
- $icon.Width = 24
- $icon.Height = 24
- $icon.Margin = "0,0,5,0"
- $grdAccount.Children.Add($icon) | Out-Null
-
- $tenantName = Get-Setting $account.HomeAccountId.TenantId "_Name" $account.HomeAccountId.TenantId
-
- $lbObj = [Windows.Markup.XamlReader]::Parse("$($account.UserName)$($tenantName)")
- $lbObj.SetValue([System.Windows.Controls.Grid]::ColumnProperty,1)
- $grdAccount.Children.Add($lbObj) | Out-Null
-
- $lnkButton = [System.Windows.Controls.Button]::new()
- $lnkButton.Content = $grdAccount
- $lnkButton.Style = $window.TryFindResource("LinkButton")
- $lnkButton.Margin = "0,5,0,0"
- $lnkButton.Cursor = "Hand"
- $lnkButton.Tag = $account
- $lnkButton.add_Click({
- Write-Status "Logging in with $($this.Tag.UserName)"
- Hide-Popup
- Clear-MSALCurentUserVaiables
- Connect-MSALUser -Account $this.Tag #!!!.UserName
-
- if($global:curObjectType)
- {
- Show-GraphObjects
- }
- Write-Status ""
- })
-
- Add-GridObject $otherLogins $lnkButton
- }
- catch {}
+ Add-CachedUser $account $otherLogins
}
#########################################################################################################
@@ -1325,7 +1455,7 @@ function Get-MSALProfileEllipse
$lnkButton.add_Click({
Write-Status "Logging in..."
Hide-Popup
- Connect-MSALUser -Interactive
+ Connect-MSALUser -Interactive -ShowMenu
if($global:curObjectType)
{
Show-GraphObjects
@@ -1363,49 +1493,8 @@ function Get-MSALProfileEllipse
$initials = "$($global:me.userPrincipalName[0])".ToUpper()
}
- $grd = [System.Windows.Controls.Grid]::new()
-
- $ellipse = [System.Windows.Shapes.Ellipse]::new()
- $ellipse.Width = $size
- $ellipse.Height = $size
- $ellipse.Fill = $Color
- $ellipse.Stroke = "#FFFF00FF"
- $ellipse.StrokeThickness = "0"
-
- $grd.Children.Add($ellipse) | Out-Null
-
- $tb = [System.Windows.Controls.TextBlock]::new()
- $tb.FontSize = $fontSize
- $tb.Foreground = "White"
- #$tb.FontFamily=""
- $tb.FontWeight = "Bold"
- #$tb.TextLineBounds="Tight"
- $tb.VerticalAlignment="Center"
- $tb.HorizontalAlignment="Center"
- #$tb.IsTextScaleFactorEnabled="False"
- $tb.Text = $initials
-
- $grd.Children.Add($tb) | Out-Null
-
- if($global:profilePhoto -and [IO.File]::Exists($global:profilePhoto))
- {
- Write-LogDebug "Create image"
- $img = [System.Windows.Media.Imaging.BitmapImage]::new()
- $img.BeginInit()
- $img.CacheOption = [System.Windows.Media.Imaging.BitmapCacheOption]::OnLoad
- $img.UriSource = [System.Uri]::new($global:profilePhoto)
- $img.EndInit()
- $ib = [System.Windows.Media.ImageBrush]::new()
- $ib.ImageSource = $img
-
- $ellipse = [System.Windows.Shapes.Ellipse]::new()
- $ellipse.Width = $size
- $ellipse.Height = $size
- $ellipse.FlowDirection="LeftToRight"
- $ellipse.Fill = $ib
- $grd.Children.Add($ellipse) | Out-Null
- }
-
+ $grd = Get-MSALUserPhotoEllips -size $size -fontSize $fontSize -Color $Color
+
if($Popup)
{
# Hide the popup when mouse button is clicked anywhere
@@ -1437,7 +1526,9 @@ function Get-MSALProfileEllipse
Set-XamlProperty $global:grdProfileInfo "txtAppId" "Text" $global:tokenInfo.Payload.appid
}
- $tmpObj = Get-MSALProfileEllipse -size 64 -fontSize 32
+ # Get the elips with only the photo in a larger size for the popup info
+ $tmpObj = Get-MSALUserPhotoEllips -size 64 -fontSize 32
+ #$tmpObj = Get-MSALProfileEllipse -size 64 -fontSize 32
$profileGrid = $global:grdProfileInfo.FindName("ProfileInfo")
if($tmpObj -and $profileGrid)
{
@@ -1456,8 +1547,20 @@ function Get-MSALProfileEllipse
[System.Windows.Controls.Canvas]::SetTop($obj,($point.Y + $obj.Tag.ActualHeight))
})
- $otherLogins = $global:grdProfileInfo.FindName("grdCachedAccounts")
+ #########################################################################################################
+ ### Show / Hide consent button
+ #########################################################################################################
+ $script:userEllipsGrid = $tmpObj
+ if(($script:missingPermissions | measure).Count -eq 0)
+ {
+ Set-XamlProperty $script:userEllipsGrid "lnkRequestConsent" "Visibility" "Collapsed"
+ }
+ Add-XamlEvent $script:userEllipsGrid "lnkRequestConsent" "add_Click" {
+ Start-MSALConsentPrompt
+ }
+ $otherLogins = $global:grdProfileInfo.FindName("grdCachedAccounts")
+
#########################################################################################################
### Add cached users
#########################################################################################################
@@ -1473,88 +1576,10 @@ function Get-MSALProfileEllipse
foreach($account in $accounts)
{
# Skip current logged on user
- if($global:MSALToken.Account.Username -eq $Account.Username) { continue }
+ if($global:MSALToken.Account.Username -eq $Account.Username -or
+ $global:MSALToken.Account.HomeAccountId.ObjectId -eq $Account.HomeAccountId.ObjectId) { continue }
- try
- {
- $grdAccount = [System.Windows.Controls.Grid]::new()
-
- $cd = [System.Windows.Controls.ColumnDefinition]::new()
- $grdAccount.ColumnDefinitions.Add($cd) # Login
-
- $cd = [System.Windows.Controls.ColumnDefinition]::new()
- $cd.Width = [double]::NaN
- $grdAccount.ColumnDefinitions.Add($cd) # Forget
-
- $grdLogin = [System.Windows.Controls.Grid]::new()
- $cd = [System.Windows.Controls.ColumnDefinition]::new()
- $grdLogin.ColumnDefinitions.Add($cd)
- $cd = [System.Windows.Controls.ColumnDefinition]::new()
- $cd.Width = [double]::NaN
- $grdLogin.ColumnDefinitions.Add($cd)
-
- $icon = Get-XamlObject ($global:AppRootFolder + "\Xaml\Icons\LoggedOnUser.xaml")
- $icon.Width = 24
- $icon.Height = 24
- $icon.Margin = "0,0,5,0"
- $grdLogin.Children.Add($icon) | Out-Null
-
- $tenantName = Get-Setting $account.HomeAccountId.TenantId "_Name" $account.HomeAccountId.TenantId
-
- $lbObj = [Windows.Markup.XamlReader]::Parse("$($account.UserName)$($tenantName)")
- $lbObj.SetValue([System.Windows.Controls.Grid]::ColumnProperty,1)
- $grdLogin.Children.Add($lbObj) | Out-Null
-
- $lnkButton = [System.Windows.Controls.Button]::new()
- $lnkButton.Content = $grdLogin
- $lnkButton.Style = $window.TryFindResource("LinkButton")
- $lnkButton.Margin = "0,5,0,0"
- $lnkButton.Cursor = "Hand"
- $lnkButton.Tag = $account
- $lnkButton.add_Click({
- Write-Status "Logging in with $($this.Tag.UserName)"
- Hide-Popup
- Clear-MSALCurentUserVaiables
- Connect-MSALUser -Account $this.Tag #!!!.UserName
-
- if($global:curObjectType)
- {
- Show-GraphObjects
- }
- Write-Status ""
- })
-
- $grdAccount.Children.Add($lnkButton) | Out-Null
-
- # Add Forget user icon
- $icon = Get-XamlObject ($global:AppRootFolder + "\Xaml\Icons\Bin.xaml")
- $icon.Width = 16
- $icon.Height = 16
- $icon.Margin = "5,5,0,0"
-
- $lnkButton = [System.Windows.Controls.Button]::new()
- $lnkButton.ToolTip = "Forget"
- $lnkButton.Content = $icon
- $lnkButton.Style = $window.TryFindResource("LinkButton")
- $lnkButton.Margin = "0,5,0,0"
- $lnkButton.Cursor = "Hand"
- $lnkButton.Tag = $account
- $lnkButton.SetValue([System.Windows.Controls.Grid]::ColumnProperty,1)
- $lnkButton.add_Click({
- Write-Status "Logging out $($this.Tag.UserName)"
- if((Disconnect-MSALUser $this.Tag -PassThru))
- {
- $this.Parent.Parent.Children.Remove($this.Parent)
- }
-
- Write-Status ""
- })
-
- $grdAccount.Children.Add($lnkButton) | Out-Null
-
- Add-GridObject $otherLogins $grdAccount
- }
- catch {}
+ Add-CachedUser $account $otherLogins
}
#########################################################################################################
@@ -1587,7 +1612,7 @@ function Get-MSALProfileEllipse
$lnkButton.add_Click({
Write-Status "Logging in..."
Hide-Popup
- Connect-MSALUser -Interactive
+ Connect-MSALUser -Interactive -ShowMenu
if($global:curObjectType)
{
Show-GraphObjects
@@ -1677,7 +1702,7 @@ function Get-MSALProfileEllipse
$dg.ItemsSource = ($tokenArr | Select Name, Value)
Show-ModalForm "Token info" $dg
}
-
+
Add-XamlEvent $tmpObj "lnkAccessTokenInfo" "add_Click" {
#Hide-Popup
Show-MSALDecodedToken (Get-JWTtoken $global:MSALToken.AccessToken) "Access Token Info"
@@ -1697,6 +1722,10 @@ function Get-MSALProfileEllipse
Show-GraphObjects
Hide-Popup
}
+ else
+ {
+ Invoke-MSALCheckObjectViewAccess $global:MSALToken
+ }
Write-Status ""
}
@@ -1717,6 +1746,196 @@ function Get-MSALProfileEllipse
$grd
}
+function local:Add-CachedUser
+{
+ param($account, $parentObj)
+
+ try
+ {
+ $grdAccount = [System.Windows.Controls.Grid]::new()
+
+ $cd = [System.Windows.Controls.ColumnDefinition]::new()
+ $grdAccount.ColumnDefinitions.Add($cd) # Login
+
+ $cd = [System.Windows.Controls.ColumnDefinition]::new()
+ $cd.Width = [double]::NaN
+ $grdAccount.ColumnDefinitions.Add($cd) # Forget
+
+ $grdLogin = [System.Windows.Controls.Grid]::new()
+ $cd = [System.Windows.Controls.ColumnDefinition]::new()
+ $grdLogin.ColumnDefinitions.Add($cd)
+ $cd = [System.Windows.Controls.ColumnDefinition]::new()
+ $cd.Width = [double]::NaN
+ $grdLogin.ColumnDefinitions.Add($cd)
+
+ $icon = Get-XamlObject ($global:AppRootFolder + "\Xaml\Icons\LoggedOnUser.xaml")
+ $icon.Width = 24
+ $icon.Height = 24
+ $icon.Margin = "0,0,5,0"
+ $grdLogin.Children.Add($icon) | Out-Null
+
+ $tenantName = Get-Setting $account.HomeAccountId.TenantId "_Name" $account.HomeAccountId.TenantId
+
+ $lbObj = [Windows.Markup.XamlReader]::Parse("$($account.UserName)$($tenantName)")
+ $lbObj.SetValue([System.Windows.Controls.Grid]::ColumnProperty,1)
+ $grdLogin.Children.Add($lbObj) | Out-Null
+
+ $lnkButton = [System.Windows.Controls.Button]::new()
+ $lnkButton.Content = $grdLogin
+ $lnkButton.Style = $window.TryFindResource("LinkButton")
+ $lnkButton.Margin = "0,5,0,0"
+ $lnkButton.Cursor = "Hand"
+ $lnkButton.Tag = $account
+ $lnkButton.add_Click({
+ Write-Status "Logging in with $($this.Tag.UserName)"
+ Hide-Popup
+ Clear-MSALCurentUserVaiables
+ Connect-MSALUser -Account $this.Tag #!!!.UserName
+
+ if($global:curObjectType)
+ {
+ Show-GraphObjects
+ }
+ Write-Status ""
+ })
+
+ $grdAccount.Children.Add($lnkButton) | Out-Null
+
+ # Add Forget user icon
+ $icon = Get-XamlObject ($global:AppRootFolder + "\Xaml\Icons\Bin.xaml")
+ $icon.Width = 16
+ $icon.Height = 16
+ $icon.Margin = "5,5,0,0"
+
+ $lnkButton = [System.Windows.Controls.Button]::new()
+ $lnkButton.ToolTip = "Forget"
+ $lnkButton.Content = $icon
+ $lnkButton.Style = $window.TryFindResource("LinkButton")
+ $lnkButton.Margin = "0,5,0,0"
+ $lnkButton.Cursor = "Hand"
+ $lnkButton.Tag = $account
+ $lnkButton.SetValue([System.Windows.Controls.Grid]::ColumnProperty,1)
+ $lnkButton.add_Click({
+ Write-Status "Logging out $($this.Tag.UserName)"
+ if((Disconnect-MSALUser $this.Tag -PassThru))
+ {
+ $this.Parent.Parent.Children.Remove($this.Parent)
+ }
+
+ Write-Status ""
+ })
+
+ $grdAccount.Children.Add($lnkButton) | Out-Null
+
+ Add-GridObject $parentObj $grdAccount
+ }
+ catch {}
+}
+
+function local:Get-MSALUserPhotoEllips
+{
+ param($size = 32, $fontSize = 20, $Color = "Blue")
+
+ $grd = [System.Windows.Controls.Grid]::new()
+
+ $ellipse = [System.Windows.Shapes.Ellipse]::new()
+ $ellipse.Width = $size
+ $ellipse.Height = $size
+ $ellipse.Fill = $Color
+ $ellipse.Stroke = "#FFFF00FF"
+ $ellipse.StrokeThickness = "0"
+
+ $grd.Children.Add($ellipse) | Out-Null
+
+ $tb = [System.Windows.Controls.TextBlock]::new()
+ $tb.FontSize = $fontSize
+ $tb.Foreground = "White"
+ #$tb.FontFamily=""
+ $tb.FontWeight = "Bold"
+ #$tb.TextLineBounds="Tight"
+ $tb.VerticalAlignment="Center"
+ $tb.HorizontalAlignment="Center"
+ #$tb.IsTextScaleFactorEnabled="False"
+ $tb.Text = $initials
+
+ $grd.Children.Add($tb) | Out-Null
+
+ if($global:profilePhoto -and [IO.File]::Exists($global:profilePhoto))
+ {
+ Write-LogDebug "Create image"
+ $img = [System.Windows.Media.Imaging.BitmapImage]::new()
+ $img.BeginInit()
+ $img.CacheOption = [System.Windows.Media.Imaging.BitmapCacheOption]::OnLoad
+ $img.UriSource = [System.Uri]::new($global:profilePhoto)
+ $img.EndInit()
+ $ib = [System.Windows.Media.ImageBrush]::new()
+ $ib.ImageSource = $img
+
+ $ellipse = [System.Windows.Shapes.Ellipse]::new()
+ $ellipse.Width = $size
+ $ellipse.Height = $size
+ $ellipse.FlowDirection="LeftToRight"
+ $ellipse.Fill = $ib
+ $grd.Children.Add($ellipse) | Out-Null
+ }
+
+ $grd
+}
+
+function Get-MSALRequiredScopes
+{
+ $reqScopes = [string[]]$global:msalAuthenticator.Permissions
+
+ $resolveRoles = ((Get-SettingValue "AzureADRoleRead" $false -TenantID (?? $tenantId $loginHint.HomeAccountId.TenantId)) -eq $true)
+
+ if($resolveRoles -and $global:msalAuthenticator.Permissions -notcontains "RoleManagement.Read.Directory")
+ {
+ # Adds the required permission for reading AAD directory roles
+ $reqScopes += "RoleManagement.Read.Directory"
+ }
+
+ $script:curViewPermissions = $global:currentViewObject.ViewInfo.Permissions
+
+ foreach($tmpScope in $script:curViewPermissions)
+ {
+ if($reqScopes -notcontains $tmpScope) { $reqScopes += $tmpScope }
+ }
+ $reqScopes
+}
+function Get-MSALMissingScopes
+{
+ param($authToken)
+
+ $reqScopes = Get-MSALRequiredScopes
+
+ if(($reqScopes | measure).Count -eq 0) { return }
+
+ $script:missingPermissions = @()
+
+ foreach($scope in $reqScopes)
+ {
+ $tmpScope = $scope.Split('/')[-1]
+ if($tmpScope -eq ".default") { continue }
+ if($authToken.Scopes -contains $tmpScope) { continue }
+ if(($authToken.Scopes -like "*/$tmpScope")) { continue }
+ $arrTemp = $tmpScope.Split(".")
+ if($arrTemp[1] -eq "Read")
+ {
+ # Check if we have "more" permissions than required eg ReadWrite when only Read is required
+ $arrTemp[1] = "ReadWrite"
+ $permissionRW = $arrTemp -join "."
+ if($authToken.Scopes -contains $permissionRW) { continue }
+ if(($authToken.Scopes -like "*/$permissionRW")) { continue }
+ }
+ $script:missingPermissions += $tmpScope
+ }
+
+ if($script:missingPermissions.Count -gt 0)
+ {
+ Write-Log "Missing scopes: $(($script:missingPermissions -join ","))" 2
+ }
+}
+
function Show-MSALDecodedToken {
param (
$tokenData,
diff --git a/Extensions/MSGraph.psm1 b/Extensions/MSGraph.psm1
index 364ea23..95e7f49 100644
--- a/Extensions/MSGraph.psm1
+++ b/Extensions/MSGraph.psm1
@@ -10,7 +10,7 @@ This module manages Microsoft Grap fuctions like calling APIs, managing graph ob
#>
function Get-ModuleVersion
{
- '3.4.0'
+ '3.5.0'
}
$global:MSGraphGlobalApps = @(
@@ -61,6 +61,12 @@ function Invoke-InitializeModule
Values = @()
})
+ $global:appSettingSections += (New-Object PSObject -Property @{
+ Title = "MS Graph General"
+ Id = "GraphGeneral"
+ Values = @()
+ })
+
Add-SettingsObject (New-Object PSObject -Property @{
Title = "Root folder"
Key = "RootFolder"
@@ -132,23 +138,6 @@ function Invoke-InitializeModule
Description = "Default value for Import Scope (Tags) when importing objects"
}) "ImportExport"
- Add-SettingsObject (New-Object PSObject -Property @{
- Title = "Show Delete button"
- Key = "EMAllowDelete"
- Type = "Boolean"
- DefaultValue = $false
- Description = "Allow deleting individual objectes"
- }) "ImportExport"
-
- Add-SettingsObject (New-Object PSObject -Property @{
- Title = "Show Bulk Delete "
- Key = "EMAllowBulkDelete"
- Type = "Boolean"
- DefaultValue = $false
- Description = "Allow using bulk delete to delete all objects of selected types"
- }) "ImportExport"
-
-
Add-SettingsObject (New-Object PSObject -Property @{
Title = "Allow update on import (Preview)"
Key = "AllowUpdate"
@@ -157,7 +146,6 @@ function Invoke-InitializeModule
Description = "This will enable the option to update/replace an existing object during import"
}) "ImportExport"
-
Add-SettingsObject (New-Object PSObject -Property @{
Title = "Add ID to export file"
Key = "AddIDToExportFile"
@@ -171,17 +159,17 @@ function Invoke-InitializeModule
Key = "UseBatchAPI"
Type = "Boolean"
DefaultValue = $false
- Description = "This will use batch API to call up to extport 20 objects on each API call"
+ Description = "This will use batch API to export up to 20 objects on each API call"
}) "ImportExport"
Add-SettingsObject (New-Object PSObject -Property @{
- Title = "Refresh Objects after copy"
- Key = "RefreshObjectsAfterCopy"
+ Title = "Resolve reference info"
+ Key = "ResolveReferenceInfo"
Type = "Boolean"
DefaultValue = $true
- Description = "This will refresh all objects when after a copy. If this is disabled, the list must be refreshed manually to see the new objects. Default is true"
+ Description = "This will export/import info for referenced/navigation properties eg certificates in VPN profiles etc."
}) "ImportExport"
-
+
Add-SettingsObject (New-Object PSObject -Property @{
Title = "ApplicationId"
Key = "GraphAzureAppId"
@@ -202,6 +190,38 @@ function Invoke-InitializeModule
Type = "String"
Description = "Certificate for Azure App"
}) "GraphSilent"
+
+ Add-SettingsObject (New-Object PSObject -Property @{
+ Title = "Refresh Objects after copy"
+ Key = "RefreshObjectsAfterCopy"
+ Type = "Boolean"
+ DefaultValue = $true
+ Description = "This will refresh all objects when after a copy. If this is disabled, the list must be refreshed manually to see the new objects. Default is true"
+ }) "GraphGeneral"
+
+ Add-SettingsObject (New-Object PSObject -Property @{
+ Title = "Show Delete button"
+ Key = "EMAllowDelete"
+ Type = "Boolean"
+ DefaultValue = $false
+ Description = "Allow deleting individual objectes"
+ }) "GraphGeneral"
+
+ Add-SettingsObject (New-Object PSObject -Property @{
+ Title = "Show Bulk Delete "
+ Key = "EMAllowBulkDelete"
+ Type = "Boolean"
+ DefaultValue = $false
+ Description = "Allow using bulk delete to delete all objects of selected types"
+ }) "GraphGeneral"
+
+ Add-SettingsObject (New-Object PSObject -Property @{
+ Title = "Expand assignments"
+ Key = "ExpandAssignments"
+ Type = "Boolean"
+ DefaultValue = $false
+ Description = "Expand assignments when listing objects. This can be used in custom columns based on assignment info"
+ }) "GraphGeneral"
}
function Get-GraphAppInfo
@@ -210,13 +230,8 @@ function Get-GraphAppInfo
if($global:hideUI -eq $true)
{
- # Set app info from custom settings
- $appObj = New-Object PSObject -Property @{
- ClientId = Get-SettingValue "$($PreFix)CustomAppId"
- TenantId = $global:silentTenantId
- RedirectUri = Get-SettingValue "$($PreFix)CustomAppRedirect"
- Authority = Get-SettingValue "$($PreFix)CustomAuthority"
- }
+ # Taken care of by authentication function
+ return
}
$graphAppId = Get-SettingValue $settingId
@@ -288,8 +303,8 @@ function Invoke-GraphRequest
$ODataMetadata = "full", # full, minimal, none or skip
- [ValidateSet("BETA","v1.0")]
- $GraphVersion = "BETA",
+ [ValidateSet("beta","v1.0")]
+ $GraphVersion = "beta",
[switch]
$AllPages,
@@ -452,7 +467,9 @@ function Get-GraphObjects
[switch]
$AllPages,
[switch]
- $SingleObject)
+ $SingleObject,
+ [string]
+ $filter)
$params = @{}
if($objectType.ODataMetadata)
@@ -486,7 +503,7 @@ function Get-GraphObjects
if($SinglePage -eq $true)
{
#Use default page size or use below for a specific page size for testing
- #$params.Add("pageSize",100)
+ #$params.Add("pageSize",10) #!!!
}
elseif($SingleObject -ne $true -and $SinglePage -ne $true)
{
@@ -498,14 +515,36 @@ function Get-GraphObjects
$url = $script:nextGraphPage
}
+ if($SingleObject -ne $true -and (Get-SettingValue "ExpandAssignments") -eq $true -and $objectType.ExpandAssignmentsList -ne $false)
+ {
+ # Expand assignments so they can be used in custom columns
+ if(($url.IndexOf('expand',[System.StringComparison]::InvariantCultureIgnoreCase)) -eq -1)
+ {
+ $url += (?: (($url.IndexOf('?')) -eq -1) "?" "&")
+ $url = "$($url)`$expand=assignments"
+ }
+ }
+
+ if($script:multipleGraphPages -eq $true -and $SingleObject -ne $true -and $filter -and $objectType.QuerySearch -eq $true)
+ {
+ # QuerySearch is only reqired when there are more pages to load
+ if(($url.IndexOf('search',[System.StringComparison]::InvariantCultureIgnoreCase)) -eq -1)
+ {
+ $url += (?: (($url.IndexOf('?')) -eq -1) "?" "&")
+ $url = "$($url)`$search=`"$($filter)`""
+ }
+ }
+
$graphObjects = Invoke-GraphRequest -Url $url @params
if($SinglePage -eq $true -or $AllPages -eq $true)
{
$script:nextGraphPage = $graphObjects.'@odata.nextLink'
- }
+ if($null -eq $script:multipleGraphPages)
+ {
+ $script:multipleGraphPages = $null -ne $script:nextGraphPage
+ }
+ }
-
-
if($graphObjects -and ($graphObjects | GM -Name Value -MemberType NoteProperty))
{
$retObjects = $graphObjects.Value
@@ -515,7 +554,7 @@ function Get-GraphObjects
$retObjects = $graphObjects
}
- $graphObjects = Add-GraphObectProperties $retObjects $objectType $property $exclude $SortProperty
+ $graphObjects = Add-GraphObjectProperties $retObjects $objectType $property $exclude $SortProperty
if($SingleObject -ne $true -and $objectType.PostListCommand)
{
@@ -525,7 +564,7 @@ function Get-GraphObjects
$graphObjects
}
-function Add-GraphObectProperties
+function Add-GraphObjectProperties
{
param($graphObjects,
$objectType,
@@ -548,6 +587,8 @@ function Add-GraphObectProperties
$retObjects = $graphObjects
}
+ $getAssignmentInfo = ((Get-SettingValue "ExpandAssignments") -eq $true -and $objectType.ExpandAssignmentsList -ne $false)
+
foreach($graphObject in $retObjects)
{
$params = @{}
@@ -559,7 +600,16 @@ function Add-GraphObectProperties
$objTmp | Add-Member -NotePropertyName "Object" -NotePropertyValue $graphObject
$objTmp | Add-Member -NotePropertyName "ObjectType" -NotePropertyValue $objectType
$objects += $objTmp
- }
+ }
+
+ if($null -ne $graphObject.isAssigned)
+ {
+ $objTmp | Add-Member -NotePropertyName "IsAssigned" -NotePropertyValue $graphObject.isAssigned
+ }
+ elseif($getAssignmentInfo)
+ {
+ $objTmp | Add-Member -NotePropertyName "IsAssigned" -NotePropertyValue (($graphObject.assignments | measure).Count -gt 0)
+ }
}
if($objects.Count -gt 0 -and $SortProperty -and ($objects[0] | GM -MemberType NoteProperty -Name $SortProperty))
@@ -572,8 +622,15 @@ function Add-GraphObectProperties
function Show-GraphObjects
{
+ param($filter, [switch]$ObjectTypeChanged)
+
$global:curObjectType = $global:lstMenuItems.SelectedItem
+ if($ObjectTypeChanged -eq $true)
+ {
+ $script:multipleGraphPages = $null
+ }
+
Clear-GraphObjects
if(-not $global:MSALToken)
@@ -585,7 +642,17 @@ function Show-GraphObjects
}
elseif($global:curObjectType.'@AccessType' -eq "None")
{
- $global:txtNotLoggedIn.Content = "You don't have the required permissons to access $($global:curObjectType.Title).`n`nRequired perimssons: $($global:curObjectType.Permissons)"
+ $requiredPermissions = ($global:curObjectType.Permissons -join ",")
+ $missingScopes = ?? $global:curObjectType.'@MissingScopes' $requiredPermissions
+ if($requiredPermissions -ne $missingScopes)
+ {
+ $requiredPermissions = "`nRequired permissions: $requiredPermissions"
+ }
+ else
+ {
+ $requiredPermissions = ""
+ }
+ $global:txtNotLoggedIn.Content = "You don't have the required permissons to access $($global:curObjectType.Title).$($requiredPermissions)`n`Missing perimssons: $missingScopes`n`nRequest consent from the 'Request Consent' link in the user login info`nor`nDisable the 'Use Default Permissions' setting to trigger consent prompt.`nNote: Changing the 'Use Default Permissions' setting will require a restart of the app`nand a 'manual' login"
$global:grdNotLoggedIn.Visibility = "Visible"
$global:grdData.Visibility = "Collapsed"
return
@@ -593,7 +660,7 @@ function Show-GraphObjects
$global:grdNotLoggedIn.Visibility = "Collapsed"
$global:grdData.Visibility = "Visible"
- # Always show Import is an item is selected
+ # Always show Import if an item is selected
$global:btnImport.IsEnabled = $global:lstMenuItems.SelectedItem -ne $null
if(-not $global:lstMenuItems.SelectedItem) { return }
@@ -612,9 +679,9 @@ function Show-GraphObjects
$global:grdTitle.Visibility = "Visible"
}
- $script:nextGraphPage = $null
+ $script:nextGraphPage = $null
- $graphObjects = @(Get-GraphObjects -property $global:curObjectType.ViewProperties -objectType $global:curObjectType -SinglePage)
+ $graphObjects = @(Get-GraphObjects -property $global:curObjectType.ViewProperties -objectType $global:curObjectType -SinglePage -Filter $filter)
$dgObjects.AutoGenerateColumns = $false
$dgObjects.Columns.Clear()
@@ -857,7 +924,7 @@ function Start-GraphPreImport
}
# Remove OData properties
- foreach($odataProp in ($obj.PSObject.Properties | Where { $_.Name -like "*@Odata*Link" -or $_.Name -like "*@odata.context" -or $_.Name -like "*@odata.id" -or ($_.Name -like "*@odata.type" -and $_.Name -ne "@odata.type")}))
+ foreach($odataProp in ($obj.PSObject.Properties | Where { $_.Name -like "*@Odata*Link" -or $_.Name -like "*@odata.context" -or $_.Name -like "*@odata.id" -or ($_.Name -like "*@odata.type" -and $_.Name -ne "@odata.type")})) # -or $_.Name -like "#CustomRef*"
{
$removeProperties += $odataProp.Name
}
@@ -890,10 +957,11 @@ function Get-GraphMetaData
{
# Graph metadata does not support Content-Length in response so size can not be used to check if it is updated
# There also no other version information in response headers. Use file date to update every week
+ Write-Log "Load Graph MetaData file"
$url = "https://graph.microsoft.com/beta/`$metadata"
$fileFullPath = [Environment]::ExpandEnvironmentVariables("%LOCALAPPDATA%\CloudAPIPowerShellManagement\GraphMetaData.xml")
$fi = [IO.FileInfo]$fileFullPath
- $maxAge = (Get-Date).AddDays(-7)
+ $maxAge = (Get-Date).AddDays(-14)
if($fi.Exists -and ($fi.LastWriteTime -gt $maxAge -or $fi.CreationTime -gt $maxAge))
{
try
@@ -905,6 +973,7 @@ function Get-GraphMetaData
if(-not $global:metaDataXML)
{
+ Write-Log "Download Graph MetaData file"
[void][System.Reflection.Assembly]::LoadWithPartialName("System.Web.Extensions")
$wc = New-Object System.Net.WebClient
$wc.Encoding = [System.Text.Encoding]::UTF8
@@ -1538,6 +1607,7 @@ function Show-GraphImportForm
$filesToImport = & $global:curObjectType.PreFilesImportCommand $global:curObjectType $filesToImport
}
+ $navigationPropObjects = @()
foreach ($fileObj in $filesToImport)
{
if($allowUpdate -and $global:cbImportType.SelectedValue -ne "alwaysImport" -and (Reset-GraphObjet $fileObj $global:dgObjects.ItemsSource))
@@ -1545,7 +1615,22 @@ function Show-GraphImportForm
continue
}
- Import-GraphFile $fileObj
+ $importedObj = Import-GraphFile $fileObj -PassThru
+ if($importedObj -and $global:curObjectType.NavigationProperties -eq $true)
+ {
+ $navigationPropObjects += [PSCustomObject]@{
+ File = $fileObj
+ ImportedObject = $importedObj
+ }
+ }
+ }
+
+ if($navigationPropObjects)
+ {
+ foreach($navPropObj in $navigationPropObjects)
+ {
+ Set-GraphNavigationPropertiesFromFile $navPropObj
+ }
}
Show-GraphObjects
Show-ModalObject
@@ -1554,8 +1639,9 @@ function Show-GraphImportForm
Add-XamlEvent $script:importForm "btnGetFiles" "add_click" {
# Used when the user manually updates the path and the press Get Files
- $global:dgObjectsToImport.ItemsSource = @(Get-GraphFileObjects $global:txtImportPath.Text)
- if([IO.Directory]::Exists($global:txtImportPath.Text))
+ $path = Expand-FileName $global:txtImportPath.Text
+ $global:dgObjectsToImport.ItemsSource = @(Get-GraphFileObjects $path)
+ if([IO.Directory]::Exists($path))
{
Save-Setting "" "LastUsedFullPath" $global:txtImportPath.Text
Set-XamlProperty $script:importForm "lblMigrationTableInfo" "Content" (Get-MigrationTableInfo)
@@ -1566,7 +1652,8 @@ function Show-GraphImportForm
if($global:txtImportPath.Text)
{
- $global:dgObjectsToImport.ItemsSource = @(Get-GraphFileObjects $global:txtImportPath.Text)
+ $path = Expand-FileName $global:txtImportPath.Text
+ $global:dgObjectsToImport.ItemsSource = @(Get-GraphFileObjects $path)
Set-XamlProperty $script:importForm "lblMigrationTableInfo" "Content" (Get-MigrationTableInfo)
}
@@ -1750,7 +1837,8 @@ function Start-GraphObjectImport
{
$filesToImport = & $item.ObjectType.PreFilesImportCommand $item.ObjectType $filesToImport
}
-
+ $navigationPropObjects = @()
+
foreach ($fileObj in @($filesToImport))
{
$objName = Get-GraphObjectName $fileObj.Object $item.ObjectType
@@ -1766,10 +1854,25 @@ function Start-GraphObjectImport
continue
}
- Import-GraphFile $fileObj
+ $importedObj = Import-GraphFile $fileObj -PassThru
+ if($importedObj -and $item.ObjectType.NavigationProperties -eq $true)
+ {
+ $navigationPropObjects += [PSCustomObject]@{
+ File = $fileObj
+ ImportedObject = $importedObj
+ }
+ }
+
$importedObjects++
}
Save-Setting "" "LastUsedFullPath" $folder
+ if($navigationPropObjects)
+ {
+ foreach($navPropObj in $navigationPropObjects)
+ {
+ Set-GraphNavigationPropertiesFromFile $navPropObj
+ }
+ }
}
else
{
@@ -2010,7 +2113,7 @@ function Get-GraphFileObjects
function Import-GraphFile
{
- param($file, $objectType)
+ param($file, $objectType, [switch]$PassThru)
if([IO.File]::Exists($file.FileInfo.FullName) -eq $false)
{
@@ -2050,7 +2153,12 @@ function Import-GraphFile
if($newObj -and $objClone.Assignments -and $global:chkImportAssignments.IsChecked -eq $true)
{
Import-GraphObjectAssignment $newObj $file.ObjectType $objClone.Assignments $file.FileInfo.FullName | Out-Null
- }
+ }
+
+ if($PassThru -eq $true -and $newObj)
+ {
+ $newObj
+ }
}
catch
{
@@ -2347,7 +2455,8 @@ function Add-GraphMigrationInfo
if($objType -eq "#microsoft.graph.groupAssignmentTarget" -or
$objType -eq "#microsoft.graph.exclusionGroupAssignmentTarget")
{
- Add-GroupMigrationObject $objInfo.groupid
+ #Add-GroupMigrationObject $objInfo.groupid
+ Add-GraphMigrationObject $objInfo.groupid "/groups" "Group"
}
elseif($objType -eq "#microsoft.graph.allLicensedUsersAssignmentTarget" -or
$objType -eq "#microsoft.graph.allDevicesAssignmentTarget")
@@ -2420,6 +2529,8 @@ function Add-GroupMigrationObject
if(-not $path) { return }
+ $path = Expand-FileName $path
+
# Check if group is already processed
$groupObj = Get-GraphMigrationObject $groupId
if(-not $groupObj)
@@ -2434,7 +2545,7 @@ function Add-GroupMigrationObject
if($global:AADObjectCache.ContainsKey($groupId) -eq $false) { $global:AADObjectCache.Add($groupId, $groupObj) }
# Add group to migration file
- if((Add-GraphMigrationObject $groupObj $path "Group"))
+ if((Add-GraphMigrationObjectToFile $groupObj $path "Group"))
{
# Export group info to json file for possible import
$grouspPath = Join-Path $path "Groups"
@@ -2445,6 +2556,46 @@ function Add-GroupMigrationObject
}
}
+function Add-GraphMigrationObject
+{
+ param($objId, $grapAPI, $objTypeName)
+
+ if(-not $objId) { return }
+
+ $path = Get-GraphMigrationTableFile $global:txtExportPath.Text
+
+ if(-not $path) { return }
+
+ $path = Expand-FileName $path
+
+ # Check if object is already processed
+ $graphObj = Get-GraphMigrationObject $objId
+ if(-not $graphObj)
+ {
+ # Get object info
+ $graphObj = Invoke-GraphRequest "$($grapAPI)/$objId" -ODataMetadata "none"
+ }
+
+ if($graphObj)
+ {
+ # Add object to cache
+ if($global:AADObjectCache.ContainsKey($objId) -eq $false) { $global:AADObjectCache.Add($objId, $ugraphObjserObj) }
+
+ # Add object to migration file
+ if((Add-GraphMigrationObjectToFile $graphObj $path $objTypeName))
+ {
+ if($objTypeName -eq "Group")
+ {
+ # Export group info to json file for possible import
+ $grouspPath = Join-Path $path "Groups"
+ if(-not (Test-Path $grouspPath)) { mkdir -Path $grouspPath -Force -ErrorAction SilentlyContinue | Out-Null }
+ $fileName = "$grouspPath\$((Remove-InvalidFileNameChars $graphObj.displayName)).json"
+ ConvertTo-Json $graphObj -Depth 10 | Out-File $fileName -Force
+ }
+ }
+ }
+}
+
function Get-GraphMigrationObject
{
param($objId)
@@ -2458,7 +2609,7 @@ function Get-GraphMigrationObject
}
# Adds an object to migration file if not added previously
-function Add-GraphMigrationObject
+function Add-GraphMigrationObjectToFile
{
param($obj, $path, $objType)
@@ -2517,6 +2668,7 @@ function Get-GraphMigrationTableForImport
$global:GraphMigrationTable = $null
# Migration table must be located in the root of the import path
$path = $global:txtImportPath.Text
+ $path = Expand-FileName $path
for($i = 0;$i -lt 2;$i++)
{
@@ -2659,7 +2811,7 @@ function Update-JsonForEnvironment
#region Dependency Functions
function Get-GraphDependencyDefaultObjects
{
- Add-GraphDependencyObjects @("ScopeTags")
+ Add-GraphDependencyObjects @("ScopeTags","AssignmentFilters")
}
function Get-GraphDependencyObjects
@@ -2771,6 +2923,8 @@ function Export-GraphObjects
$global:ExportRoot = (Get-XamlProperty $script:exportForm "txtExportPath" "Text")
$folder = Get-GraphObjectFolder $objectType $global:ExportRoot (Get-XamlProperty $script:exportForm "chkAddObjectType" "IsChecked") (Get-XamlProperty $script:exportForm "chkAddCompanyName" "IsChecked")
+
+ $folder = Expand-FileName $folder
$objectsToExport = @()
if($Selected -ne $true)
@@ -2831,6 +2985,8 @@ function Export-GraphObject
Write-Log "No object to export" 3
return
}
+
+ Add-GraphNavigationProperties $obj $objectType
try
{
@@ -2871,6 +3027,177 @@ function Export-GraphObject
}
}
+<#
+ Update the navigation references for an object
+#>
+function Set-GraphNavigationPropertiesFromFile
+{
+ param($navPropObject)
+
+ if(-not $navPropObject.File -or -not $navPropObject.ImportedObject)
+ {
+ return
+ }
+
+ # Reload data from file. Some object properties was removed before import...
+ $objFileInfo = (ConvertFrom-Json (Get-Content -LiteralPath $navPropObject.File.FileInfo.FullName -Raw))
+
+ if(-not ($objFileInfo.PSObject.Properties | Where { $_.Name -like "#CustomRef_*" })) { return }
+
+ Set-GraphNavigationProperties $navPropObject.ImportedObject $objFileInfo $navPropObject.File.ObjectType
+
+}
+
+function Set-GraphNavigationProperties
+{
+ param($newObj, $oldObj, $objectType, [switch]$FromOldObject)
+
+ if($objectType.NavigationProperties -ne $true) { return }
+
+ if(-not $newObj -or -not $oldObj -or -not $objectType)
+ {
+ return
+ }
+
+ if((Get-SettingValue "ResolveReferenceInfo") -ne $true) { return }
+
+ $entityName = $oldObj.'@odata.type'.Split('.')[-1]
+
+ $nameProp = ?? $objectType.NameProperty "displayName"
+
+ $props = Get-GraphEntityTypeProperties $entityName
+
+ foreach($prop in ($props | Where LocalName -eq "NavigationProperty" ))
+ {
+ # Is this the correct way of filter out Assignments, summaries etc.?
+ if($prop.ContainsTarget -eq $true) { continue }
+
+ if(-not ($oldObj."$($prop.Name)@odata.associationLink")) { continue }
+
+ $associationLink = $oldObj."$($prop.Name)@odata.associationLink" -replace $oldObj.Id,$newObj.Id
+ $refBodyObjs = $null #@()
+ $refObjName = $null
+ $refObjId = $null
+
+ if($FromOldObject -eq $true)
+ {
+ $navProp = Invoke-GraphRequest -URL $oldObj."$($prop.Name)@odata.navigationLink" -ODataMetadata "minimal" -NoError
+
+ if(-not $navProp) { continue }
+
+ $refObjName = Get-GraphObjectName $navProp $navProp
+ $refObjId = $navProp.Id
+
+ $refBodyObjs = ([PSCustomObject]@{
+ "@odata.id" = ("https://$global:MSALGraphEnvironment/beta/$($objectType.API)('$($navProp.Id)')")
+ })
+ }
+ else
+ {
+ if(-not ($oldObj."#CustomRef_$($prop.Name)")) { continue } # Not included in the export file
+
+ $idx = $oldObj."#CustomRef_$($prop.Name)".IndexOf("|:|")
+ if($idx -gt -1)
+ {
+ $refObjName = $oldObj."#CustomRef_$($prop.Name)".SubString(0,$idx)
+ }
+ else
+ {
+ $refObjName = $oldObj."#CustomRef_$($prop.Name)"
+ }
+
+ $refObjects = Invoke-GraphRequest -URL "$($objectType.API)?`$filter=$($nameProp) eq '$($refObjName)'" -NoError
+
+ $objectsFound = ($refObjects.value | measure).Count
+
+ if($objectsFound -eq 1)
+ {
+ # Are there any references that allows multiple ref objects?
+ foreach($refObj in $refObjects.value)
+ {
+ $refBodyObjs = ([PSCustomObject]@{
+ "@odata.id" = ("https://$global:MSALGraphEnvironment/beta/$($objectType.API)('$($refObj.Id)')")
+ })
+ $refObjId = $refObj.Id
+ }
+ }
+ elseif($objectsFound -gt 1)
+ {
+ Write-Log "Multiple objects ($objectsFound) found with $nameProp $refObjName. Skipping reference." 2
+ continue
+ }
+ else
+ {
+ Write-Log "No object found with $nameProp $refObjName" 2
+ continue
+ }
+ }
+
+ Write-Log "Add $refObjName ($refObjId) to navigation property $($prop.Name)"
+
+ $body = $refBodyObjs | ConvertTo-Json -Depth 10
+ Invoke-GraphRequest -URL $associationLink -HttpMethod "PUT" -Content $body | Out-Null
+ }
+}
+
+
+<#
+ Add Navigation Property data to the object so it included in the exported json file
+#>
+function Add-GraphNavigationProperties
+{
+ param($obj, $objType)
+
+ if($objectType.NavigationProperties -ne $true) { return }
+
+ if(-not $obj.'@odata.type') { return }
+
+ if((Get-SettingValue "ResolveReferenceInfo") -ne $true) { return }
+
+ $entityName = $obj.'@odata.type'.Split('.')[-1]
+
+ $props = Get-GraphEntityTypeProperties $entityName
+
+ foreach($prop in ($props | Where LocalName -eq "NavigationProperty" ))
+ {
+ # Is this the correct way of filter out Assignments, summaries etc.?
+ if($prop.ContainsTarget -eq $true) { continue }
+
+ if(-not ($obj."$($prop.Name)@odata.navigationLink")) { continue }
+ $navProp = Invoke-GraphRequest -URL $obj."$($prop.Name)@odata.navigationLink" -ODataMetadata "minimal" -NoError
+ if($navProp)
+ {
+ $value = $null
+ $refType = ""
+ if($navProp.value -is [Object[]])
+ {
+ if($navProp.value.Count -gt 0 -and $navProp.value[0].'@odata.type') { $refType = $navProp.value[0].'@odata.type' }
+ $refValues = @()
+ $navProp.value | ForEach-Object { $refValues += (Get-GraphObjectName $_ $objType) }
+ if($refValues.Count -gt 0)
+ {
+ if(($refValues -join "") -like "*,*")
+ {
+ Write-Log "One or mor referenced objects has the comma (,) character in the name. Cannot add navigation property $($prop.Name)" 3
+ }
+ $value = ($refValues -join ",")
+ }
+ }
+ else
+ {
+ if($navProp.'@odata.type') { $refType = $navProp.'@odata.type' }
+ $value = (Get-GraphObjectName $navProp $objType)
+ }
+ if($refType -and $value)
+ {
+ $value = ($value + "|:|" + $refType)
+ }
+
+ $obj | Add-Member -NotePropertyName "#CustomRef_$($prop.Name)" -NotePropertyValue $value
+ }
+ }
+}
+
function Get-GraphBatchObjects
{
param($objects, $txtNameFilter)
@@ -2932,7 +3259,7 @@ function Get-GraphBatchObjects
if($objectType -and $batchResults.Count -gt 0)
{
$batchResultsTmp = $batchResults
- $batchResults = Add-GraphObectProperties $batchResultsTmp $objectType -property $objectType.ViewProperties
+ $batchResults = Add-GraphObjectProperties $batchResultsTmp $objectType -property $objectType.ViewProperties
$curObj = 1
foreach($obj in $batchResults)
@@ -3120,6 +3447,8 @@ function Copy-GraphObject
[System.Windows.MessageBox]::Show("No object selected`n`nSelect the $($global:curObjectType.Title) item you want to copy", "Error", "OK", "Error")
return
}
+ $script:copyForm = Initialize-Window ($global:AppRootFolder + "\Xaml\CopyDialog.xaml")
+ if(-not $script:copyForm) { return }
$newName = "$((Get-GraphObjectName $dgObjects.SelectedItem $global:curObjectType)) - Copy"
if($global:curObjectType.CopyDefaultName)
@@ -3127,10 +3456,44 @@ function Copy-GraphObject
$newName = $global:curObjectType.CopyDefaultName
$dgObjects.SelectedItem.PSObject.Properties | foreach { $newName = $newName -replace "%$($_.Name)%", $dgObjects.SelectedItem."$($_.Name)" }
}
- $ret = Show-InputDialog "Copy $($global:curObjectType.Title)" "Select name for the new object" $newName
+
+ Set-XamlProperty $script:copyForm "txtObjectName" "Text" $newName
+ $descriptionProperty = $global:dgObjects.SelectedItem.Object | gm | Where { $_.Name -eq "Description" }
+ if($descriptionProperty)
+ {
+ Set-XamlProperty $script:copyForm "txtObjectDescription" "Text" $global:dgObjects.SelectedItem.Object.Description
+ }
+ else
+ {
+ Set-XamlProperty $script:copyForm "txtObjectDescription" "IsEnabled" $false
+ }
+
+ $script:copyForm.Add_ContentRendered({
+ $txtName = $script:copyForm.FindName("txtObjectName")
+ if($txtName)
+ {
+ $txtName.SelectAll();
+ }
+ })
+
+ Add-XamlEvent $script:copyForm "btnOk" "Add_Click" -scriptBlock ([scriptblock]{
+ $script:copyForm.DialogResult = $true;
+ })
+
+ $script:copyForm.Owner = $global:window
+ $script:copyForm.Icon = $global:Window.Icon
+ $ret = $script:copyForm.ShowDialog()
if($ret)
{
+ $newName = Get-XamlProperty $script:copyForm "txtObjectName" "Text"
+ if(-not $newName)
+ {
+ Write-Log "New name cannot be empty. Copy object skipped" 2
+ Write-Status ""
+ return
+ }
+
# Export profile
Write-Status "Export $((Get-GraphObjectName $dgObjects.SelectedItem $global:curObjectType))"
@@ -3138,7 +3501,7 @@ function Copy-GraphObject
if($global:curObjectType.PreCopyCommand)
{
- if((& $global:curObjectType.PreCopyCommand $exportObj $global:curObjectType $ret))
+ if((& $global:curObjectType.PreCopyCommand $exportObj $global:curObjectType $newName))
{
if((Get-SettingValue "RefreshObjectsAfterCopy") -eq $true)
{
@@ -3154,15 +3517,22 @@ function Copy-GraphObject
if($obj)
{
# Import new profile
- Set-GraphObjectName $obj $global:curObjectType $ret
+ Set-GraphObjectName $obj $global:curObjectType $newName
+ if((Get-XamlProperty $script:copyForm "txtObjectDescription" "IsEnabled" $false) -eq $true)
+ {
+ $obj.Description = Get-XamlProperty $script:copyForm "txtObjectDescription" "Text"
+ }
$newObj = Import-GraphObject $obj $global:curObjectType
if($newObj)
{
+ Set-GraphNavigationProperties $newObj $exportObj $global:curObjectType -FromOldObject
+
if($global:curObjectType.PostCopyCommand)
{
& $global:curObjectType.PostCopyCommand $exportObj $newObj $global:curObjectType
}
+
if((Get-SettingValue "RefreshObjectsAfterCopy") -eq $true)
{
Show-GraphObjects
@@ -3236,7 +3606,7 @@ function Show-GraphObjectInfo
$descriptionProperty = $global:dgObjects.SelectedItem.Object | gm | Where { $_.Name -eq "Description" }
if($descriptionProperty)
{
- Set-XamlProperty $script:detailsForm "txtObjectDescription" "Text" $descriptionProperty.Value
+ Set-XamlProperty $script:detailsForm "txtObjectDescription" "Text" $global:dgObjects.SelectedItem.Object.Description
}
else
{
@@ -3612,6 +3982,11 @@ function Get-GraphEntityTypeProperties
{
param($entityType, $xml)
+ Get-GraphMetaData
+
+ if(-not $xml) { $xml = $global:metaDataXML }
+ if(-not $xml) { return }
+
$tmpEntity = $xml.SelectSingleNode("//*[name()='EntityType' and @Name='$entityType']")
if(-not $tmpEntity) { return }
@@ -3631,7 +4006,7 @@ function Get-GraphEntityTypeProperties
[array]::Reverse($entities)
foreach($enitiy in $entities)
{
- $properties += $enitiy.SelectNodes("*[name()='Property']")
+ $properties += $enitiy.SelectNodes("*[name()='Property' or name()='NavigationProperty']")
}
$properties
diff --git a/MSALInfo.md b/MSALInfo.md
index 1225fc6..c83afca 100644
--- a/MSALInfo.md
+++ b/MSALInfo.md
@@ -1,6 +1,6 @@
# Microsoft Authentication Library (MSAL)
-Microsoft Authentication Library (MSAL) is used for authenticating to Microsoft Graph and other APIs used by the script. Microsoft.Identity.Client.dll** is the library file that contains the authentication functions. This script is depending on the file to be able to authenticate to Microsoft Graph.
+Microsoft Authentication Library (MSAL) is used for authenticating to Microsoft Graph and other APIs used by the script. **Microsoft.Identity.Client.dll** is the library file that contains the authentication functions. This script is depending on the file to be able to authenticate to Microsoft Graph.
See the GitHub repository [MSAL.PS](https://github.com/AzureAD/MSAL.PS) for more information on using MSAL with PowerShell. This script does not use the module directly for various reasons but the MSAL.PS repository is a great source of information and the best place to start for using MSAL with PowerShell.
diff --git a/Microsoft.Identity.Client.dll b/Microsoft.Identity.Client.dll
index 35a76a610492c8f950b64bb11ee39f035c1bb73d..de90d23c7e728858c4e04d03a8404ae31187e95a 100644
GIT binary patch
literal 1461208
zcmb@v37i~7*+1S}-P3dIk<9MS%qE*;mOzru9GhbaED1*lgqv^**>ImifOMQC3fbup
zKu|HD5`@Fu|mQ8&ZZt6Sum=pRg@y|W4zr8)PN67lvwU%{Mi)|hB
z@UMRvrS`Nnzpu4rsbzKNk$__7FM+!c?$v;nHB;P1Ns_^49kk!F^`lY6Eztnzv4j!d?pOv#eB%E(QN#F@OK1
z=UsLw{F^(&d@-+(JO0;))cb40wR3JDJC}|!1sSYbGSfsl!Z>5r!buRM1J;Y51<{9s9%gU4@*zdg?-t8y>
zr*xeu7K1LhjCTu4%$N~+3hS@`n6XUINfN7Tsbk%U1X?UBo2a_mc9B_P8{@CfxbEDu
zZD;3M>oZPbeJf(NmpcTPCN2$sI=TE$u3OBWGX&ydtAJkqYFcNsnGvRwx~m>Pjr_ok?$Rl4@H%=tF1N2xq0{=2)Whv
z?*+)XkL+rIdX6FOx}1+X?__0U&Lw3YiRLzOB8y
zAT5$62Xbi@)PFBnRg&r}rA5g0boKkjPI@RUw?sX%OwqQpPRJ-@!^P~ow+)-wmK&zy
zChtN~WPxvkWC0y1jWOUFF9mK%NfbP7>tgUkUy)Tt8KvvlP*~rZ3=6U?-(DVc)300_fjCett5nZQg%KLz9#U`{
z)fN%aLuo{D0I?uKhy#d)5kee5puf;4;sC;n5aIv=i8!VGkt`ji+XHVVIDE!i1#vZ;Oj)15Vg31$vh+N@ts<#6J(5CVs7%BBYTt`->x4aQF*TUJ*)CwQDHl&At8?z%Ms2ujl
zd1u(Q-NwBA5ZA7u(QWp=NQurj#eV-wjMr~W$;3j&isTUzj(NXK@47~TeFa``Ew!`I
z6z6+K&;=POFB&Sx?JP3QqE?N674(@IE$aCiJgrGLsp=61N0GttGpx}(dV&_IXSR1N
zk!PbVKZ*#EqM6(}2JB`0uLB>F2^Wd5(AatJI8xkb7w7lq?Bb&SnKiWI&9$rXGyE7L
zZ8dhm@%BTr;&^FWPht>)uvu1JDNf@*4l-{&8=%`Ww3eAd30wcc13e2|9KsbLL}d~D
z(IFfP;dvo^RS1I+z9ED+hwxn?L=6%?4}=i86#p+m_~#IQ4=@qB(Fm-;XYpe$y{yG*
z(Z*(WZKZoJ>cZ^0mTt&O_iO1sRNZyD_fdC1_eyn-&^@T`tLZ*O-P`C!$3Z?<(7ms^
zx6{49y04`B0CitQH>@Vo_n~mTW$H%9-Qpcacc}7R^NE4_Nx6XT!^M3m#)1|PS|y&<
z!$Xsxdw06`qr3LjsHTMl_hl6A@Hbe}3r%;ox1L0(7~LKUB`kBu!VW8IR~-9>s@+{~
z8~$pG{8fP3jf8U#k^qINq@E1lcJh
zE17QF(HKHk2Gm2_nrhM>JS%Welf|
zB2G6?p!9paZ$SpzI~NRg(O+uDlZoQl*7}eS>U}C*BGZy;FKC(PcF>yI@h#{|{)|!$
zRq6VhkhN;kE%=vERm0z=E-=`+t!~oxQF+~QgQ4cRYPAkVc}D(T$vku1wXNfkR!6L?
z#&LW#I69R@j{gW8m0~%U^nZ)Uz5Q*;+UXQ-Dezm9{y%`M{vxh(@Yl4vtUV9av^fr6
zs7a&zU8@Ia&p_J4%iCG??85b3Xvz!n?p@wVBqL2RPP4%Avy+puur6jC=?5>Nt7L2^
z?`?{uhvqw$9%_6$c!A{%f`s2CoS#6K*&-zylZHinDFaXk^4{h~I_TS|$CoMRa3ek@
za*>={l$G#$Npe=Fl9K`K-&-tnb@EsH2TE!?Iv}U^0$nsyYOMw?_WHFPU9gXw+G4uU
zSvs{|Y_gfJ|p
zJ6lF`WSw;Lqb(hd|6L@ogNV{0W1`sp|1e$TtWMhfl$FL_pU)S;{-wtF5e5ep)6dQ;f+bc_ZdLM59mN;b-W)oTtA}g5aM;N7V48dGX1F+@W*rP0IzD;^`4oDtB3qoY_ZUh7v>>QH|Fpgq^5};0E
zw$8d^EY|ZZ{>=#KGj5?j1*@a5*Ua)mPeE;Y0Ep(2pwmbINkaC=J
ztXo`^-}a{#%gJ{qynT_PUE9^5FWEi}l1zSC+J-Ut3|ZK&vMSldQ$mc&>;F=Mi>E2J
z)NgwF6K2+EOQ}$jvF#(&1LV$UOl5H%D+{w-lXd)GAzD|WGvU1p>RX@5V!eXv2*&?4
z0+#<6_T+EisC2n-p)-!tx-vqxcDHr6o64Z^f5%|Aoa=PG-_x1IibAL9w7t8)8puBY
zS^fD_9i8rI{vfmoo!&$#dDycp&{*Y1ag8=eo)^B^MF9=nJTZz?N{4^zOcRGr!*5sC5J
zf!aZ{&G;C|)aiX?EM9X;rL&8j*V8~;@WiXJlHmOX$!ursU}Ha#kh5lS0P%_lAr2rg
zE-8gLfIuIm2yvj>Tp
zjsIWDmknvquZB@kQCtt*m2iaGL-fChhUSnP_UY7PLGyy_XM$ZKvkC4IXb1NS%mwcj
zSl3`K5iu|Hd5|S6lR4nk171dKPOQH;Ztp+}n|^o*yGFwmScMpGD1BVnL9H%eR_K%7a0=zjn@n+;vqnS3kS
z1)F(t)WGzCrv;ilqcXGhPjsFt;A5eH5+8hq$Omu(;SmZKRPBY`CGT;NhV71Npyp%T
zJ`Z#Ys?NfEIpJ}1%4kt}he;oA>Zc)G2KTCQxyGt8LScX&zOq5&l)mB<`YiQAxu@KD^hEds(v`FLfy@6X=V@6IF+1!OPl1O0^Q@T&-D!sNk
zWK>o4#T=4CqwQr`msuUxTD?mk
z66+r-B(rt>Z-I@%W46~Ok*>jEeCoo5KNs}mN=Bml0gsx`O6w_Evq=2Tj
zIMHm4N%B(P---14VmdFTmqPJbm#wzkgV$*N3AflW(9s?0RPtAHy~EKvRE~=DTv?Oc
zvM+Mbp03PHcdK-MM$|edxn&Xa#W?R$|diX2~brkEWQTq>I=radjwood>{m{-PZU~U?7fQ>MBDy?v|
zLL)$?(kvFZz$J_I4VF>XDMc#A`!aXS0#?yt)|KT%wkL_3WQ=4OBN-J5Y}4M7@t%Y5
z&|*XK30kBMmm%x(p~K;JNRUx`tcsTDp|o7%djA2F%5PjBy0em(Ol^saDkt^K)>@*CYXlUu-vQr>Lr;vp-
zQKyh?bPAooUffo03p<4_c-zdp)DA`ptL()Z)x=sptvD9K*P>iaCd#XlseZHe+TL6y`ah7fDvlzODZ&?7p^0+pAC7;a1qH%ud@y>CUSh4WVJ
zDZvJ5J%hB+%Z%x7((&mQP$lpXM()A4z{9F|6gb7JBC3E?MM6}?9!MEg#j){e7O=7L
zX*RtWpAvZel?ux`9G?>5_=I{&j$u7jwoS^08OdsTQ51iIZYLX?-i%CmQ|g*ogRYBy
zqrzeo4=e1LFs=$?`*RSO*NqS;o(s`M76znpPoRwtWM7E{ju#K>!7j*#;WaFqwiL&)
zRHX;7|J3rP6vi>&I{K5T;>`ZG@@cHjM?>JI>WqG|r7{=QnU0Jp&V*odA?A+0hAy>Y
z?;>J&9)iNwAf11!NqR5_sn_20w4EAcD#Y1#j3Vqv=6mnB!iM*6}ruM2R3vo?r-^H=C+|V^%y^GBNV5pqP7O{92lc1VFD=gz=DURJ5--u_4b6`Vmh2AM*emW1`Ftl9g$;3=;%>OnZr2J
z{&ij4Bs`c_Zs{K5!3M=k4CDPsG+^dQj51m+EDqPMz`;3YX=^wUIt-bu%v4VumcFy#
zh{F04OWIdpSx(p4xs1pcZ5|91*X^HgYIn2rXhGRhUhWRe0gbMn%IGytkW?rLEJn&9
z{2hz)d1x8^C#BA~YaJjk!532?1BgW=tK4U1OD0NYP6&&c(4ovst-UprCX{1rx^uiy
zRaBi~8x{dH-mmOp`;gf11_>}xmkGIrQcr0XD&w~!cAB}^>}jPb_%Ml}Ma;=EcyTK$
zKXYY`!9D}p^eBy3%a=S_Id#&ap2!JYUq9>#W5
zFaKHOd*L8y6ctWI+6I=IT6bGizI@m3+TN`$UUpVn7d|1I7`}y)kEsRB&{W)o<$ZM(
zaAA2sCpint2pVNN<=u?`FL9ui8X=xxxMG1IcX%PRxmDB8kJ@;br7bvVJQyA>YfZimkfj?2d#-Bzg`;Gl_uQOotN)H$>_d1F3Yp+0p@38y`jL
zqR5eFS^r5`dqU2Bwu8nSJj1@M4RmOm@}eT6FDY8fP96(%j_oEB!{~pTHV~rZMf!_F
zc!|Q7n+rxmF363!5N?u-WlV2;E|yC!w7>X2=3@z2aIXVwDGNO))(4?b)a}-!?JYvh
zxD?H_x6RavO(nfqXsa1FIq=gG=%*%HDfQRW*5quX6lg85U0R615unk8HWUv; U
zNB&>tI|fEaICyiqI<8>h?Kt*(o4MB_;}2pWBmsGB8L8~?e7GE2i2CV
z{n({G$M`3Zz2aSeKk)VU$B*n*SFC>k{LBBxu74b&d#mB8v|$I_TM>_>u3i5G0}hM=
zZe_sn67T^Atce0{X8?SN@gM^ZiUMwCz`+vm5eC4iX}o~}he*JO8L&1Acq0Q2lYkE~
z05lrodIqeMfQJ}xXcX`!1{@&)A7lU`YmB!r;3x_B7y}NE0`6eIu@dl61|YJ=_y7Y=
zmVo;hz4$SyHL!lRn3;-_3xdqX7D($Fb}0W&pbv$p?MX
zr`Yvf3}7E30rW}7VUN5YPM99{$OFVl3sIBcdQQB7M?#*!6oEa7+|HpY%6&
z{XGnTzBLAY(xuoV?}by6r$ZW$J@P){nEd_3NyAs9w*HlPxy3z;j>qkVVvqT+p$qMV
z`+3j`t>tVFwbkt~UuFMeZC&IvSd!~(;Vza=2kYY4ybE(3ot<0hQ0QL>8+Y~+*t^&Z
z>RpWxyp9<@Jc)&JG*PqAcKjp6gEu4+ady`AXQwQ;+uw+o*ngT#rL#^p;ccT(Vl&|#
z5D$Mua*G!R|JXiIk0{;li3pC5{l#H^(iR4Q@%j1xArr>G7-{%Ny^O4ger+p({$>FB
zH6!frDvK4`+^ggI$Dxd?c{CFGj>GZ>X}EpIE!$4_ai-4UOl#x8w*OP$%?MF^&ww#5
zgE!4B5`0E=kAxBoa~QnxI2eC+7@dUv)8v`Ni#LXt`c>pBm3gi0|4jH2)z)cbYy@8;
z!Dmz#bU-{(40Ei!@_1z|@i~feJC<8cbzsSqLE#`Ol^UFXA)GmgwqqX@hgNX5rOuNx
zL?*>BhuSMoP|hS4N^ayLXUNPTGs3~Fvd-qKP#3RcWQfGpE!|#&%J~n>ufSg4-NN4@
z$(>Q{?Lg&VC8Jj@%x4?o6f7fxW&&vUu3I`3}}C
zI~~dH=8#)*#wn1>|uB`<3BY
zXzdwWmYjH~XAgK~4(C|EHx}2Z(D$4gbvT{YXzm!PNMbHZ*L?u?%VW2>86m1G)tM42
z5=EVouKkSayiQ9=yb6j8^CN@GnFJl`ffiR#L9W}-Hl3ESwrPK;tC@z_Y4+UKq0iS^eL
zMb4`!rwke3dAsl=s;jlLRjg3R*(%|b(^e9XRw;N&T$-x>JINCb^A*DL8uC0A_zHO5
zCOnDiYU^wh^A$YXB%D0a=1JnwoCQybOB>gJJFwk&qoKXoqNq1}7tq?9bz^jgrz;Wl
zW_L*pl%BM(MYfL(p-n9eF^KANqXu>-38oljTzeRUmfMvy!rBPg3Ou~g;|kIv~2HnY)-Ug7o!dB&9S4h2Q1VA&Qa1T
z#SGuaB+IRsWOS5L?9!*ZOY3wMfI2}-r9qpajW4Do>;#=B!A!{nL@`K=$rDM(J;|`d
zG67Kx5_9r@qga1uETR}B2IY^Vpr0^^CQa-)|xKr6QINm1gk
zBQpU}WFrULogBTDWoNeL1N;b
z8U>xkAfhPfrwA#iIDq(cgb>FO#-oj@d$q(;MaRxHl`_g}5al)8j)S`y*ACu~{cgq`
zA&}!g?x@>=pyAVzn)e>c2K+AXqfw-4*e2u*a(
zk!hvluo-7yob#R$W%W#El|-DP(q?U*q7s9tBduCWN2@X#w^ky5m@vJ}xhOe+A?;M^
z{Vu?9%K$_%2;<`TWdNcY^ZBKcKicHX9|z1y*8oV+h_g)M>8%E
zeWDmd1AW}`08tF0i9T)(fG8@MmO2$YHpM4~k?vz8{Ad-2mNEfRr43iG$VPLJTu(D@
zzk_Jhx+g(nhR;GCyqj2g&Nd^TM-X0J*xuLBBcRQDk1_z|#JMimStv8SE7%=FxURdm
zCfBwDjgi+{6T%E2AL1f>=Qux$zPuXzpCEt0?+MJ?-eYiNT(6t&;$VB64e2U3>3&gz
zHSn*8^p6Xy;fQRwi^TgrB;N6H+$s=T6sO!q&eE)c+$iKxs^x>Sm(&Cg3ABR;1vSIs@I{Gl
zf-ecQgGU59!IuRlg0Be71z!+YS8{KjrbC~19@yymK4r$!(CwoV#{^#&Xa|o8%mrT)
zSl3{$sJ!Tl<)1oTt-Supa>6?x*%SVxKs)%ZKqvT)z+CVxfpsPG`jjVqjlJOx>#KDj
zcp5YERn%?VbwFSWSmyt3tfqBhFl1HpT-5AshjMo^Hbp%-rbFfv6}+)u{pXUl37!#X
z2fq-Q3w|cBuEE}JDieJTnRL(dLCWiVmdCFpjtPDv&<=hpFcDa>
zCW5~R%mu#}SXXjyca?>{Sou*$Yh%3sE^$oo4}o^@tiW9GzXIzT%z6Cg4w3?Mfg`Z4!5-#h
zl#jj`FY58I7_U}|V}f>pcF-Zv31$dP1Z@IyK}KL*$-PC&o4y!t=Kb)P9y=wD3AzN@
z0bUHET{uBbU@piCtSg!4DNp*w>GOyf&mM_mf>{FXV75Rf=oOd?3Igj&<}Fs9^u>6t
zhnz>obTCiin4l=o4*CQ-!F+*$%9ezr-=YYJqlefIufWP+%_DPhefic-)aZ
z=^Murlio(#Su1f&aEL%VI82}u94asu94xS|WL#kjc`tF#>bJQ3C54?7@m7Z~9_&ljVMVOx_bEjtO2N&<;)#mgaqb-%LUez%-dUe(x*J*rtV{*srwi9E>S%k(zGsSJHJYJnc!-H
zcJNw(x!_8Hbq(gl6O@}iZxh>hJdMZ0H2xM(V}qvgAKE(C2`>}8QJ@{{5SRHjcMF2yiD*;fp&0*
zz+CVSfprb$Wgbj}KEBawPUBl)8vl-`ak{3lg=yR+yi9PnKs$K1z+CVyfprb$l^slj
zKJPW-)A)9n#(&~zoS|u4#x(8~UM9fC1+;BDc(1@*aF4*c2J<2kra_;#b$l9_s>w9z
z`FI*yiD+bKr9sq%mw!gtZOhYIAI#}@#RaiuD%nd@j^U}vosC7O~GP{
z@WQ-FpdEZjU@rKez`6!|t2GV!xRRSGjT#=D#k(0ffzQ`MdU;y#2u1+R}29_SSD@8N%WjNK0-dW5HbbvNKOHiMeV1r{CL9o+h2|oe%6)`{7Dg@8)!FR%A>gYxs
z?{mmQH6r~wl!w75bbfZsN$y;n
zkDmf5P2d_k!Gm=zbUv7A$PvlP<<6V|r_f%W;mjRydfM?GPw?&O!oYGf!VH8vo4sGM
zQs^NE$GevE{r#}_HtX!@YwQIEQ;iX$O?a;-ZI-l&*hXD!)=W>3Gu%=fig<*vdp00uzIl8#p-awg}gbC)nMpi_u}1eyOn>RIAFuFl-u{h3ojh7
ze1p!nLYmfOe%Y*eMN)S@>19|2%m}MVNGnwadl|?a7u|hDLbM9foxhzgEc0GRtj-is
z_$W)rMhXXWJ(aOAbU+e8cIBK1)3YJt=9k-UIYBY6h$0l$dw9Qs(v((^^!7se;zmSr
z$*1yBWEECO6y@#BDv=6Ehf+{cMJerRXFZQFsvOG?QO1H4=3P!YzbvQWns1zSN>7nM
z7OM_O0q3PA*J2oNYAvQki?pR3ISr)cC^KMgNyIe2oy8DJs~H(83}wv7BS<%rlG$_p
zYeY{j6i47!Jmw*t`Uazbq5rsz_0zq7bxAdT(}
zSI%JPuBqMGSdNPm?Z9x>5?hrU+XMPy>vwyBcQ1JFIt1^W@JeBhm#6P&_01Nao=l{^
z&%kQq`3*hcW)9gI9IjB#M5bZQ$Z=A_$Q|LSF}frFA3-w+lhA?)q8o#AdhuN0T*;yp
z2d0YcD;A_GTX5iHXf1ib%(1YlW1-Q>gSQ3N;1&2u75i45D{y}QsfgQu@*tLRfIel#
z+*Gl$>i3A8DlS>|J%OjJx*u>5+i!q8ZPgD1xoH)8bofX5{Xx8%L?O)4*8JV}o*(vXB{kW)uQ6
zQ}l!s&xujt^+6s;mY13`_+ip}vw<6Y@5HE5YIFKKwfK7b)9RQvfTKAb!j^gTdJugp
zIPOU{XA8#xI!~U!aq!>?sFZgt8vDvJ10q)5Zio)nFIFj~Z5!L-S-#2IBx}%ZsEQGc
z+>t+C(-?Lmp23^(GgVE)MVg1NVRcBNvU$mUSVNLgeM6Tcn?kT8Z}EYpYYonWBU$Vl
zT05Jv0P_GIOg9A59X*rb_Cxqa(B6&*FO~(;{bCQKT$Kg=;GOtM7EfD|OBUCy;wS~r
zs)Y=J(&0IO72ZeyZd%2jEm^#D)wO_wm@7s#`gxX1tVUxKveanXE1--@rcls63fnk1
zd_+}mXYp{kV`8lk;mshqIj6&X_p+tuZ9M>FXFt^$qoC!5mEB}i%hbS*$bNI~jFyhG=7(_zTa#h{HpfXY&N>bewQ5In*;LKc4uB^-FVj3A
zMdLLuPQGyRHr)g9--bLzFmgwJwrRQ}|LZ|JxD!87o6d082&V5icGgr`FpBK6=2pZ^
z?ekgwM$Otr+<&1#V7!y(4{&1y(H4CpJiG85gBXPIXEIzBG@M!R*)8Uda8p5P$*JP`
zD{>rz*n;6%^$Bp1mYgbX>OV4t=6f$On0rUfcXoV0ie(%}=cO4>Fw?yk#)gR)eLmJQ
zyOP=P0*739Ser+Y!=uOT6OSIZNEseLtFg|Jm7LR3nASv_6)MYVIW*F1LI@=@o@F89c&leX{+u81B`?H;IZdO7?HwMDDmuEn{6P@|Q*4NgD)XIVmHFnEQJLe`Su}=(m3WD_Tn(>n~iaT7+Sb!x2h
zPLG#0tt)*YzFaWSiE7mb>8pisB8_=slR1(v-KA+)iwO7zil>iDb+VQqivt>($La{=
zXI}n^zThJEEn?1Lnn$Y+3mgPEqV^a--g}7a7m_D;0p{5|xqlYsa}RdW_QRD~wGCW|
zS~Ubm`8#mVUv-V*7OkqQfe*M`Il#$f=I1Wss+MaXnaZ%(8juCk&b>F(@ucupki6i;2zkKaWr3izGB>dnvqy{lda#~}8f(YK_(j^9)J
zFB!xZEh5fef$L?8XZJ6qyZ_)pY^)}FlOSqCa>Uo8E`e_cJc!IX;F;Hz7~B)En1-WF
z2QH`_oKHs^9JArT`Ln$xPz3He8frV3rja#97r
zfoyD^$2gzDJv9db@M<{Lj)4n%Gd~MULTD~C-C>bSQYOQ&NKCC%^b^;np`h%34|ms?dc
zVF}L;6E(FHBK5~3&mMj~Xyf{?-A%eZ&|`1i-m_>;3St_skF%U*z#Aw%dwuN^6_UE*RRF#GN5JPy8LkO@qEWd@!h5gEQc9v0U~Oco1#X%|v1)37#b@axNCj9#GG!oeX(e
zJg4;!xyZ=AgLvm>H4Q=ea0ps?5u10hP3{GNDzqMiwR>?&_z^3z+9%>?
zMD#W;Je0LAd*!pRVkS_EsXRf1uhZZOZKluCty6d|m$_14m9Az92X7UsA3-xbrTzy%
zUOYiN9L#I4iwe*kzXU7o;ipj4WaT79G|(ub*MJPoM%J0H13VLttRbU_`f=^clK#V}
z_;UHuCat$d1OJ`l^I5(j(rj~XpryuAa;Sx~SSYH6lO~kU;6Xr5p%_mh_J{pt!di(c
zwP}(%IiL63EgGQdLGvN34ERivzQ{|;i@frI*bKOYeZWkt*K3G}MGu$8(adbvO5)wq
z&hZL29#8b}sun`EG`*?c!1<{1Zdb`c-Ag&J`9d4Jbw6uBWhT
z{l2L^PwAw`hWaUcI3~NXaZLK(Wz^lhk^Of%(&HbdFIp(gg_kddy&HP6l>>7^)?xbb
zArkei_R7ww`ZygkJ`6+9pQPTbTk{4;fEKV~sk;wEhcoQaFh*Ng+O`J62XFI8w`wl^
zP^ENYD`{;$EYTL}Tj00A^H)^T58xr>!*!i`p&Q3{tU;~|KtI+HXgeN`0X^@nB^lmF>#7pzqxV+cK`L`|
zTKbX$bj@gevoQf3zM23&TqT)E(HI@V&h0%k?6h;cozA9o2CoBZiq6fKpzGKgF|1bE
zh4te-Tq9$y>TXjr$Iz$S8D2d;tYFKMx@>?(L!-TPDQedw<3k0vd}aCv`4XvA-lwU?
zP|Y$qdTgB5%AZ0A-_(>J(j1rXb*`x`6ko%kHyeoX?!dz+t-iS{@mtEqxru(x$Q~-hKUB6KsKQo87&pfq{h5l~y!6?Q-A2?IvhBPQdW;Y;iJJ@)(!
z&P@uMB$e2(r(M07rTss8$G1~FQ5o&JG8BaMe5~ooCYQM48bje
zxaF?Jdmy5HFVHQE42S-hbRyQ*JKh^nr+F9F;|P(BE(N(by3Hvr9oQI0FFQ5#jT=MR
z-23|vm^$!0T%D!tCyBW>x~aO|maRD#*yx0jYr@sAs%co?j~YlfpEt8lUj>J9@B)1o52LA|_=}M@yakpO+t1$mBml)0}IT?YX^0Q6*wDSMVZpHC)aU^{Ty4(sT*tcsnJ6wD#%PD{5i&!2V2L?1
z$iX;WIeh|~uGVa8vrbyI`djvd^PyISiYV?n@d%?
zoK3~08;5paH$_VZMfwe3)0HzPMDEIFv(0(RHu97W^Q26kn$y)8Yfag#W~WoLgCs8E
za5HIl5n`p#y1ffnmAkTCg@GB_?uLL>#Ljm046L6Z;sUuZx(_!^Sj(V@2O@<|AdDBV
z-mAM36^Xfj0wt=S94HK&_2M$-q++RznQShsT-#o1<(eQ^tZ4I5(dNgBw$Y(Yh#1e&
zyw);W%k#{=4$Lywz>16RJAob2vKra6{%S2Ow9LWM2=sM#OZAD!{V}uTS0=>YVlR2b
z4&57_(oK%I*TEbMcgApo)&jnv!qH@JC#y7C2|l+4TPI=N3(mtFqnZY6Q_#&&ycY1l
zd_&6k$X6^4;6AuA%#N5Hf)x~}kYN?Sp0OUpdSO%eiwwh|c@pP{_r#eMGgFl!;3_PV
zTZ6yC4|X4|x?5nW|A;|s;B7YG7e#Ze56i`du^iagmdVlA+n1wsbEeDq%BKWIli`&$
zPNu^(Y~5`X7p=Ht^>HMKcov3)YcrFQTba?I2vb!%YOtHL_=%xv82^*Aj3#kpx6wu$
z8+*guA6$Rb)xcJk?&*e?{y^h}AzcHsz5SUU
zFpPbH?*TJ>PgSLGbzL(2?67|3YWdg0K=mp`0UMufZ$Bh0mm`MT>Udfh#Id^KttLsh
z`Bc-`iPa<7`)A9(3fkaUnOm{gj^>ybAQyZ#h7a8~?CEp3fOlB=bS&YmXye)*;w{02
z{zr3l57Xgb;2n_hcD@H
z<-N?mo46Q5Zi?yU
zhr)FOKdyq3-c9!u5Am1|)=%}+`+>Yu1FiO0Y6u@+YQwND->(|MQncgWj8vQG4-V;%
zCp}g=NL8%Z-b}>f-5kPLb_TCeO2<1y|5z`6!|2SP@iC84izeyE|yL&G!v0RRs01HQ^)?76=HnQsZA&a4pAvaZ@M(c|@UTE9
z_>90r@L7Sm;FALDO75-Ee9_l9)8@$CDX*rCcEWodq-(oZxRHoO&
zWcq@ng|qhp?cj?7o!}9HiQvlubHV2Y)|K2lNM)jLqONg^vQ*mBnQT-E`zEV|hbX1v
zok>!(18Nmkk%%5IrK3ZZXDiEMs~oPiy;CG-w3kr&I*u088%O!J!@+X~-cM*7Sh~?(
z|E)w=agl;cl|`la3`@~XXc>YJ`7Hz#{myOHZ$=KVpTl%<{R5PHo``@r##)a!m&J7Z
zHPIRF9uQ~;j|y~x#{?#V#|7g2@i)Yg3%)9_uJQPVb5>~jRLNZPC?Ji?k%pb$IEw3V
z@#W?7X0~8`!|~3gAm}V`*Mc~ikFjB`Q&`#=vLYd4KUmq8D6r^mC@-T>x)XF|jZuz0u0BgFw5A
z{A-vnWQ^L()|d{zB`Pt&lLGDF+X8Xtg1|)ZU4gma34wJb=XceqI{H*~wXpBg;yWhH
zSHio50!QhN#M1q~@H4>=1lqw51v-K5t8NdfQ^@{a*N);12?EkAy%c_@lsF@H>HZCF5t(nI3%;b#hIp
zlh>$DYch9d&3(_%H+Q3q^$m#LUizgc!y#N_;|$YFy26=(;46X*ng
z7nlqFBCxJx-VrJ%eUs?r+DI>3nczvV8=eP7Wr}*$CPkhRMW{2v8kn!R#Sq4gqaAA#
z?U@lR_9@|xb9~Nq6|4_bRk-fMgv9ZL3BGGCoivUkjTswfY1~bYcRnLG@jW}@dnJRe
z1-DzscP9B_qhuzE6fwRf&iEWgwqctidsj2QaeNso8oJ&d)Ac_^mnQg^Ks$I&pcDLC
zU@mx8U|q>PY>H!@pl=dgpBssN4U>iH(l$?uPpZ1}BHGuHma2POLv^>p<#@s*%3+gw
z&X3~0fpN#$|CO8$}l-?U7S#ew=
zEN1MZfUF|Oq_SdFnghS%UEeJ0RWVs@k2Z!r!#5sT@;aG|GXC8I~&Q|A;}1jD4C|3f3e2J
zn2ZB8yj*@BKHMTV9(s=hfvb^`XhNIYqw$)32_vGW;Ot5UTPVV6%|`JqUrnELS
z(!yzg$;EZ)Z~I(>R8*Z@W5H)@dnA6J!M1L7PA)
zXcd?XQUdEr=B?ARrf-t6epQsbRbvfRfhfuX_
zsaJ>h`dF`pUbTKy_O{0=gdKiE(%!W@-x?UysCP3#EIHwoRmNM7NdOw;8zO05O-EC$
zd5s1|`E1JHWl^;EM9O(@Lpk@s6-A12(Zu-jX&7&f7~dZ;zQ4iveUmV5l4>N1`~V|M
z-E(Blrekv2X&RG@b_GTs8VrrmQaC^lhE?x>2?_%3V3t59=n{RsK8?O?M=*mgb$
zR}?8?+!T3x6#12m+!SXkf_Vb%V6H$XC<;sjeFAequfV#J
zdsuB^-Jnm)s;Sjnt$B}B*QA%%MtXUeB2nKTYUumJFQ)GkqR5|Xtp%ZUF0;u
z9s=!Pp+F~CATSrq7g$#^?|97zeVUK+!*bwtjYmjonARLlM?B<637IuX$Wao4X@PqgNpn0cH^N#vqTigeB9eCTt-IqAU-7znhnRUjk@~G!8
z(dWQM#9VhlTfiB2s^s2qp}ibmvyKP0I+c{0bi9wCKo#%m-3LjDl*H$SMxH`!tk7#`
zHk?Nv9}uMhyq|<=O?DlL;1T|`gxmQgt+nJV97)6r9QnAo;1SM6g3=9kaen_y8z;kC
zYp2Ai7;3zys8i5l*QQfC8*_d-@QH0Zpu=}?2Id~^Kih2yjevEZ@947mRzs9
zgHn~<^6lkWZdzW|X?S{PzmspnH^H
z#S1W@3a>5HV4&MVG~a~5BeB-uyEcs$pe2hJ9pFh0cC{nA`!GtQAa$hlsPXKvXp=2P
zYGbUkcl7qQ&giX}6kprD27AmKJ-gXP6OkFdnulvuAABS#%~d55C4gR)3f
z$|E6G7CBO9{+=lXFRH^
zl7{9!2c~7Ja4sAGp9dKJ0)BdwXnK9xypPqoUh0n4%5E^JrLm7z`=YO6>}*sPcJi@`
z;Z9Kv#C}*ij_-_?Zsqtz$o6tM-WE<6_&rVS02*yb=L6b*eZzR8(2EvsZT8edd95!B
z!?zKeR$(PeSO$_>D_cHjeiV1t)1|D+GPc?LrcU&pXL%3yS!`SyE-quo8D3@S5TGxC
zj9azsva!!|wa1e-dq7y$d=19v@=olG$|Ovisug)1R9<{#yv0}+|pRsZ{uOVr{{Px@*nWC{VyR^
z81|#^ls>9R{}JLs_m|=37a(90F@paU_>~$`FqZ!Yd=~;$TfSe96=drzq7MdDbA{{g
zh9VZ=^0(*Vziarbh+T@sW36p4@xR8j+-;WJCa(B5%J(Sb95Kczem~g4<`212Yw%e(
zV$mbMS0YNawYCrql^^_ew+=rFzBo*kLk01_4tLw&L*SG0AA`F+?WfY{5$7um`H@Gb
z<3A1pT$Gk|d~5*Cr2PyjU!l1E*$&3ow`)Fq?_L#GiNKC3~_n?JCV5M;Sg6jqA9|%
zRdH{a^{b(_!qBq52BRkY7*j;;X6_1bbkNZuG3bnEbiZ*K%_d7)Icl#(;nv=U9~l|K
zR9IJbJj~f5_q7jy7g@mjW~+r0Nb7gjz6)F0;D!4R>r3afWYm3C%cDmbanlAF0`f-I
zU(5tREZuL}u6-j)$(7IZ%Eolp?*M@~^-I`aL@~CSB)%5Mrl^!kH2gh$(8ueMUQOqK
zvyskDrW5uX=wk5^n>Eb;q4+7;TW{2>Ozp9c+o6@R)th15v7ZUp7&!(1FX45%^{CQX
z!w0oD5964Y%=sCH**cpZNg2DeE!+yFTb(e&Ayy~B+#)4olp|k1zX|f$)fNl}MfR+i
zV|*WcD=Tb&Hbfl$0X)F{5WxFA@>jtbll4elO2pl9B{~Et2VA738RuH)cI5kJ$v2ag
z{ZjZ$<{B>fL63rhf_Vyx
zs}<62q+H3;5n&JdEK16Fiz#4)`u9W>I;8PbQ0;gW8vl6Izb2y0L|)Dq>Ybrnct4?g
zIklr_|J^GmrA5|4sTb=kU$QOh7SSaOxVrD~A`}aTQLPhx5k4vUkR^F|hoNCqaZiTv
z^2qb>4zw7r3$7SVdwMN3z5v|WAY3MNK(zG
z2(L~VbmA=K3Mdp|jOD+f$B8VlO2UGgj#tv)Jk0VYUU&!af8&+Hl@;ESCSGU#UwNfX
zHtqE{@j?glf0HX?vKg=1#OrIQgH8H+@q%nM*;cO{=Yk=)sT8{rxDcDBWgHEa-mn_t
z1=wb?ZC>T&vTCqzlxb-gmqBH=mRinb|94W$Zm)^PsQ0$)_Gsk(N6T(`6OLU6n%&Nh
z+}E4k-XFPtV0L>hau@A+``ID=Mtk1t)y?y9Gf;8g3dM!S+*3$AGx#$U3wrXO!qb}c
zIg0iSbS3?3;HUt>K|Mce$}M@E5--`?2C+20pjueCZErY6-8Umx8uNnf4Dm3fDDQ)l
zPgc@@9fGQTvA)GS6#dW2S21w-kX8(KuLp(FDOKM8FqEno|IKi&JQ&0=4zpJcG+6rw
zgGGC?Tezeuo0I;vV3+o8&7j3#$6mQ|l&QTw8j>_41wEK1BU4gL*KPYW=jSbB`C*6$
zlb|d^SjgVTJR&pr0IHw8ZDn)R8^@wDL{)J$DWe|X>_(>oyRQd5bmiF45sJM5sa5xt
zF?9GBD3C5Uopt4FmEI``@;`yRnc5RkrtqOYn6i2~33@4xv{5g0b93cJ0sj*GR(9c(
z!&4pjSY;l9^=kK3vJS)=AgYG-8YtHX{1u>7Ah?OA`|rTf1G7i|xR>(%aJ>!nN$dnQ
zf3JfQGJ5Tf>w`~b+p1qlneiM+I-Vom%Fr^i
zi>tkTQ0C(H=D}4uT?6Kg$8&y`kR$%LMtQai
zShdI0I_5=^rDH{-Q>y9{@%a>N;1;}(G1gD5J-c+Cz`CAB-M_7&yV+Cg4r+TY%;cS{
zL0jga3K1h$xOv;rYvq?AXPX-m#e=_sE;6b%qli@5Yhv^&Vt?sHWB+S{5X8iUSOPXD
z6eG3R{#bBai2pW(7z<|}D8z#=8vEIp5c_b@c6DFNu)Aw_=(*kYBZ@ykSIs`}&p-`%
zf5C5;)9HX-|Gd8fgVnD}YdXA@v#oq+x;gIf-$3L2F9|pD@CPcz93#@F)z$ChyA^n%dhU
ziDN`MH|1P76%JrxzTWawCRxE4I}4rJj~jJ;KWo$dGX26@S;E3ny|qW9uJ=q`*Hxok
zP~o^*zt0Y2JFNHYK&WNuI@u(o>)d;{hLYDbNXIML_N5K56OP)HaN_5~8=PME(m2K2
zLnK~=6Q=Bk8%#Urj}vdK_K(#8+n3fs@tQa_iFff!;}o?6=`+YNLQpnu0QFNUX%+SJ
zpW``_biC^DUfkHHc>h3bd&3asx6+WpM)dc6M|C~g;W-vr$Ja4j=H#lyZ%3cX)N0bs^I^NX~@D=bvK+?@b==ER4}z8cW>yB)lj=N<>vZVft|J?W1RsR
z-og5&i*Yj*IzDDa8J_;Lb?I%DLjO6SrKiu7yItw&Tb-mXwmF5ir?A8=HT{{VaEt;X
zOHI$0Ql+q8UuN|kr*(aQTTV&hK%-RgQo}z}{m;q|00FyUO|lr%idsmn+&MgyL1sb5wBw_992
zWgGrCbox$7Hvv>;TMK^e+uWOQElzr1nW?SYBP^Vzqg=EM@t!X{*TtG1p6kLLP2^)n
zT>KUWYVO(;5_mNp8i=d$EX0$+!{vhrV)uaKuccuEcn~43NX4dC?|>%UY+Uoyi{qs6
zkb{MKHooOD7IUE+yY!oBFzpC3wlA^tvziFvn$rP*SiNZM3pxUpVy9(-BL&*QQ37+p
z;R5R#?4d?-FBg3tG?^*Y@QUm|td2Mc)`1s+CF66~i6%8k;CmW@ubyGTm`)he_CMbU
zoh0fPrVISybb(kC3MHB>(XTc_CrR|7Mxf};=J!On-j4Sr_aaD^>1?1PjkA=?J=j*K
zo4agZH-_21Yy+F1tlDF!Zme8$!9pi3UxZr2%EkK1ar924H&I*OXDPto>zTUo?t#bq
z41VxRf;F-*(2H{C*?_i`e9RXoF=e0C3qawefYw)>aU^k1{~qd?-OpI8k>g_FMp(p3
zIzG=)MqwFnbi5V`@;-+Eyp|ryBV7tcuSMfeXT(^S?K#4p_4R&
z`x=3mUSYTB5YsrlX&K%r6cYZa#Dk<88@lP#b$uLkweDga9;bR+)>OHk%9ZXeJiT}@
z>9&r>gVPt*S%B!REtG+U7xLCBJO|-963+>EPQh~y9_+)l27iJdtpX#^mR?>*ZwOJ_FoC@zhYdRE%TX)PG=Wkmt(R{
z!oMIc)_;Zn`HJGp(uOu)L0l8B1tBj&Sz1o`n>C_*J}2RyLtm|PfwkG*u^1g*Z62K7
zIVjMr+TPAWEx9|^-cFKsWP+0g+QE8(PH?KgL@*=}XHid4M^LN1zj&D=-(FDX^|&-r35PzL0Cgb61S#1ro;u7YVe3
z3k5pCMuEBDl>+NZ=AENF>6^N*_!jgybvOC*X+ys|ZRoG24gKS^q2HM{^q13yet+7~
z-%cC)gK0y5H*M(mrVahgw4qN-8~U?pL%%s~=+o1N{&3pR-%lI*^=U(YJZEPF-XFXWGzTPaFE}X+wW8ZRn%ZhW=>U&_7HY`q;FgKbbc48`FmVblT8AO&j{;
zw4u*5LMO2uzS0Ps%&NJSub<48!25FUgE4rxE}zHK
zhvy(XN8&kdif04x=s9_RZiA*g3?nBYr@vv#^fX+vLYK4UG7Q8x<}kB%6ow%gbB7;;
zRe|pfB;=L=SRUSq$XO}0N5V@haP?0@PkR_}J)8svOvNFC+wjxm!u{tp$FlB0KJA{N
zwb-g5Z=Go&(K=d#hcdqk&y9HQ#PbC_PvH3*9!z$v`FJqRwqW>JXX1fLVZ9m8LwG)i
z=jV9-f~OM->%+4K`!L5Z>C3=Po=rC1rgZ&(nB}jSt4)!8=t8Ggk|iiM18a>+#%z
zXYf}17-!d3XeQyGD_L_Y?TQ$F9=1R^&7B69z{rEabDk3Hx>m^52oZ83u2a<@lw&`2-Lqsv0_x{zN!Moz@=3nb5UI-|K7$Z5AABPa=H
zS0MCPkI@q`j5LT;<}M{Y)N@5he}&Mi^(opUV%S#t
z^k{A~>7k!3A^mot-#*5lh+#+RGov{yg7s!$TV5H`)BbE2pDbJ=h7(HPI-1)=`qqT+
zhxD{#L(9~NJVXp{)lK-J$w>Z049`>g_R$=s1-;q!g#XHr
ze!kF$RwwC+7~W0kJ4SQsNZ*n0FAV8vZ->UV%0t9(kJ8T=%^gMh843TQke=pf!xANb
zB8FYf@66F0UJCYRXD0kth4fhK0exM4q$fgl52Jjux;;CKSDSi3Q6~@aNrDQsJ0m4E
zk(H8};z=2%D|3
z>P|-%m%sCqV(A+$T>h}@XMmFVqia13S@<{a`W?vHf_yP^Js0B^JaI)UWcv%6+g%F^
z4df+b$esq$A4AS+AYU_voZUbMW60hH^71j{oXL=L8^|jgl-osf*FmM*Tc8>4HA@oC
z$Cfp50FjCi;@})$H{>$`y_*pmVGF9x!hAX5{Tg}9=#o=KzDy%)#2hCs0R4M}o(nnn
zDs2V`tbEEK=mPRdg%88{IC#*fTjdU}$M%$Fm1dWEOLK5<*hev*nL1g;7d*d+XpJ=~
zV=YD0_cBdc8yQ&(hLw~GjE$_>%E(6vCJRGTg>v~amV5?-P!%P
zZHkULI9sQyQ_-csRlG7$hDq+c<-*J`l+2}grWU3GwQ_N*w8_pdckIHlRvn+8hFDvn
zdI4t;7v>$*WOZBBZsk|aJe%*
z^+VuUa71DKiKXY_<%oqq>JqDk!+@E99!06beMHV+SLU54(147jjVAcrU-?rijZry7
zq0j1@Up9!{(_`!eSs3zvg)m_>Ss=2O!40J%@n~)yYOT~ZZ0{bcdN>m0-GFRX@api>
z%gfsAY8h%I5?O
z#?jdNme1*2Jne8nYer*1%je{{B6L=gp4zhJgYC!cwD
zIp>~x?z#K9+bl919N?O786-eU=W(`;K++$3zoTPr1r{HjPrLUKL6x8DP#UBUFx^kU
zHx@2psqYz7xSr7krW|$<9cKA4G}gVm3qHmhf!qgyTgbIpB`o?AyAMw|E1L==QD9%O
zDeu%Mi0nNpnVCXMc6{2hHseZ84~5Y#U4gCF?k7QUNvlzQ0ukx)>3&!`dXH
z!d%Gc%Ilr9i2k?m%Z`C-TBO~d8~;cs@JfzG)4|4pZ-%fS68a$NcZRV3jF-J_+-~6b
zt8TW+5#SJaJxuk5EWS8ddAa_>TwgV1&;H$r3nvEaO{FQfB9E#>
zb&toLL}8&5;aMfN%TZ~IrGYg^?MU}ntPqK0#}kpvk{{V66oXAjpw5AytveNI!n`|J
z50gVFz3}AtB8FcleuV*aOyoRo^vy6;_XX)qg7{un!q|WEpZOgQeGw!%=Fy9{N+{Rj
z?%e3;^1ZF#&K}e>uHuSVd-&uzxs)f*Y3U#3+m#UZ!wtD{xI&U#`l9%&FpK@nK_@PO
zhq{zy-cZ8q9o2&w^inG8Y$b?A{y}840{ZMRMv8LW7>AVo%O2b>F(T9ZDhwj3vxVrV
z)M?>=Z&Bxgfuk)5uTI*|5$xa7t`krPW64V0rkSdf*pBti7Brvrqowdb>k{**Ow1F^
z3sjoGA7yh(9hiXcm2@#io*H5Gr=Dxm})cuziTG=MuMpa7x48n!8Z_01-yXooC&^*
zVCq5ze9KJmdkB_3nVj#Q34S-h(!~*c(@gNq1WTVt@NF}}w-YRV9l>|c1b>)dDn#?g
z&OT$Df9>8*qUP_fW9#$%yk|vbsHh0vL|&-Np4>l?Hmb}tO%CB+q-C{{_5KKp!7Jxu
zxEn<3(3vg7?}p=KVq=
zUqWOlPl__#Gu3P!wdtP8FL+jWTIdp{803g-!P?
z1)Im!2V!4LY^fy*o9hgIOLKo_jGw&8BtJtOqq{p#LTE)>CtTKJHJ#
z8`eSCm_J0^SEwI2jZA2;_znA%BImtLMtvx=}5QX;$APrd8c0X1KalOza=1h^4EFGqBKiov*^V
z5FfV<(4`jR{Ww0_5XX5E#Hel;)2zN#OsiTIGhCez6LFj`maghs#5`Yxb6>0CpsOAS
z_Z^|k1nHQRAV&2fG0p0QVp`RU#SB+35woj$ftcqjboX_NG+i_HCw#1d_S+?lQGJJ)
zX7zG0t?FfBc2zGG^L&NozFyI!OVPwQxt((Y^xcJ~Z+3PH@nBQI71s3Hj*G^cb?Ypogw}MyoVuO=}7?oD4rgzuyuw+coaDFT{ZFk^X
zNz!kU5Tk;nHM~}!S2dw$H@y^n^mfN4K)L~NPP?VJgqjU&Q(XkL=|D4J84cS)zM<&I
z!rh0bLoUy_Z-Cb%)1FmU3LwL031gE-QWm?7+%Y>jV5qK#Q|S`T@-(W4+9qXIUq&=(
zQ`VtO@z2Bs0*S@`m1P!hQ|qPk2~?QvVLBJpowy~&8izu(?j`$g-wrx=qYN=^ZWg&@
zOhCb9WtI-Z2OGqC;f0r;jfrFE+ha_Sy^Pxf#uLyViYwyIV?e?0fz1k!#d53Sg_7lr
z*-I_k8jqV69@wb|ZS{jjB`EMZ49gz*7Sk7&c6tarh1d6-62mE!72)uDdwiqf0Z$M0
z?BqbADjdZNY31)A0qe({v8!&<6Yr<-hBcEynzppFVWv}(CpU00yj9FSWuE)r9!Gi}1G!GON?dEM20dqi8p#lNVG-s%<5rjN<4(V}iNK
z;`AU#!=UH4NB1_==c`e=xd-?fG0p0=Vp`Sf#0*!j7ZdH#4Pxo4UM1%FDx8ZUGTS`5
zR0W6nS4WHTD-TAf`TOxYJ(w>16YSLY4(p<@^xvdUr6@?I>CQ(1(97&c7;Z1hiQC5y
zj$g;}czDGskDyS>$Hfz{vHXKtac)-T!&%MYg9c-O_64+us|#r$nft)>`_-Gl^T#DW
z830--Z(o?jrJW&b$8}iJn9lI)VfY^_%`+xQLi%oV#{uwHcP~83dSXm4796VZ1{Hx8
zg)*HXVnBd#3jsyGiGXlmd5eIeshQqlICz1YhLJfs85eGbWK?JlaWkw3~@uKSoS)a^@xy3JD$rnetZV}&-`!-R#GICuq^`V_&lji(48By~2dC)7JCS|2H2
zM}s#1jPkXhEbYqF896JOLlZwGMw=svzUkXkZ}kVE1GiqVlkYw;)MZdCr994Y)xXPqa@CRzubQp!J6h>
zjy!xe3KaK^Y_M@*z2%+*Taj<$m?B-|3Q7U=cgMo~1bDVe4jY?)~7h14RiEc0jR&Rdyvp}zDChe047r;ab7blsh0A!MThlWm-g05mZhgF$_a|whPc#zk%18Y(
zDbdirCBHmba%U3TLA(++V3|ACLQ)2bBM6G!!<%9<5g3E6x~r-cNwS+=tAQ0W0Pxl@&{}+K4=B~wS6WcuT9}1CjBH3M!v80F3S=AvkY&!qlkuE0Wu9ju|{4%HO3x`f_sQ0$#Ku6
zgDg4uliWAKv270u!C=W*l-bGR!1`{;3ft#MS5`>Pa?#bTkGahR61G7^(8V4`abcbH
zaGI~3g$sya>@g;27NI1kX?iy?VOWQxLmGE)06vR&Ppu$Ai%-)#0w0a%9m6oU%%pT=
z9Ya%EK)kCp9yG=hqvhSw5T)hqN7u~Qj;hm=?4E^ibDf5V$zLr0+)Q@fQ^#mvXOOp-
zHY67FaJ4VPkon~2DQDp`reEqJu3JXlc;_ip$&+s6^%t6OokfbSmm}IaxI-BM4fA&C
z246Q2kecU@7JlO{;+@G#<0_qEXa?M8HdC%?UUT38n@xZ*xA)3O5a;-B*wS1>t~*+?58)
z4}lFCbQn|21+}+_>m&_Z93h`=1meVHX<-A}v+TK34IWo=%8i~an?FKHl+{!vk9%RD
z5mWmd!~zc}y_APoFexOb(tdI+@2xC5n4FKJ^84ce^qrxH;a__@f&%EBfMgWIX66-8
z=eSRip>{L-3WIOHDQz*l$yO1UBcBMrxTCNZPtBh>GQjn8Kv2U8&=6g79+b2B6}5LT
zI`4e2w>y8t)Cqo2HKM`Z1QDT&Q!l6}oC{!J%r&cI<)fHMV#xMNMr}+${ToX}%CF0Z
z&h^JH&K?gBvtd@5SrjQ>FdNVsP4m4q^m1vew*JY%#U5S-Rjqm}2Hp0weGjLqcuIkC
zGeiGCykDZ+wxM9RV2xNbVlfCubT)AZ7pW;;ui>n~*hal$vCR
zH04i?Dg9~kuC~hQ${&NuK0aDqj3lF#SJSV20|cdtty&kLR;=+7fqUP1XRw!fyaS4oC_oVn0Hm&?GraPU@-=Liq|G
zrd~uZhl^;VzJWr&z1#XHWf|2iyBzp&Aw^S9z$dpwW<6_D57`A^&o`%E51`MZF
zNjMo17LUSVG@9!yRojcI_!pC5)MDtfVp;brP+}Qlv&m^tRh$ghwX#W;AC>*1<6_(K+JW|hIA`wpGeCru15+ouE-Q5!alsYW;7c@}@pC)1$
zz;2aH)Zi}+rYc`W_-}FcVbE6EwF-PKeF<@eyufSACoC%
zpF0c7(NgGKU5U|F#~
zt*;}FaAu=bGI}7IYjUM&ZdvZYS!Q^cP?@z@+3^ktZ7go(V#96tjP6Io;qmUJ17@O-
zF(P!dMl&PfXfC=G!6MnQM8p~SRd?RRyyj#aQzQmErp$<)3@fBuEWCbGGCa;A6kfly
zpe8(pd2?g?(;;W%XUO!Vy|M0bE6PTA{Q%N3IcfkHUVrAstc+ohZy_|Eh<3|~|6Kx8
z|6P(!nVU&mLL5E@Y1*O^bhD6fMq*_6)
zFw~B3Y4m_>s+IH9!ZP^|`B4v}uq1M;SfX;+(!L3f;qkFlTQZz%TVf^KQlNgz7};~STcG&n{VCY^yB-aExJ7eyH!KWvaQL$DLQ}K1E%R(Z63ub^+Bhn$sSSr<-
zQbI^{ruF%sbRhvx?(dO}3#nvod8)HBDI1}Zow)rcDVwA=7p1|FSaPw-mB4o|@Kd=m
zjU+auqCqB-hLwL{V*f7;@W%9jhb)@JUyk66lknkA`V2tKYu_m)5Ms{F8_Nu5!`Qi5
zyATM4uo%KdHZKGQns_}^GaDqQaFm7*fMmzO>BiuJ1E)TE+<-50=CsP0#*8~NH_y+y
zfD+y%_j$d@4}>Y2Ay@93d?QolU}1Ty2z?vUvC)hbHW>CbxbbDxaKb_5bnqEZ6c#(V
zBj|B3J@$u3#>u^w9;egemGB57G=?+b^$~PL_IU56TyFEL$2N-Q&>Hz58$`J;IgDiC
zuW|{ZADrSUn+yWFy|;-68#wXk(H_C%pjUga=@X1T?ZFK=;xSKqK>4LG`n3ml-3Z2f
z?Ew{x!pKFn54YL~N-m~--W=e>wGXFl3MZj`jtFpCwGUUr6i%D=!3!K@1Uc_qDV0Zy0p2_|N_jP`+MK-0-;pI~m6^K;>4
z0gj&y1O8|&=jX%A0~|jiIJ8$h`#EuJfa7Nc+Zu)A=fyDrPEPZ~;l9Ed&^}OfYMvKp
zpI}^`Tc~|7*Vj1vXrEx%oZDCXTpr*IYM)^ApIfATf;}d=#o8yBZ{S%bCFk8i?(8Q%
zlhm^0Qajh7LmtdjUWrlQV10n=ZKONnodg4?vE~M6HMo0jaBe>h@6qs}UMT9l8r-YF
zLB&$wZVm3!;GoVZ@H`Ekr@=ufR^VKlhWBfDP@xojz6Q_N;Gi<;;4ux)MKwZDlQcrY
zM~G>Jpo(aO4j&<|5rX=m5juT@ghmJ|hek;I2(20+s2Li;&!1eIMhL2fM(|~rYu5-t
zS=I=?7;w|LDgi;I(FlGf<&qj9m;)(j`e*MZ-wmvC7PA`n{TRqh-bCkuz8u9MJ#=0iINwL-6@l|MI&TP^x6^rh;Jky*2Lk8&>HJjS`~aN!
zzhD&tBL~aC7KbV-BrL86ffN@SH8N(6TNUUe0Gp(3Zp0dIrdFl&_2Sgxd~ZG{J=G-jNSL*tgal{7aa1YN@?DKnQCJ_dLc
zUl4E&JSac}yebH|2m$FD?pLOYSP^mGfn1$7xFVgwJ}+zucoXB|USAx6x48uZc^wXo
zVgPgo`ftNrZ=8R%PkPlm$ovG|x$fZ_fHmgGSZ=jS$Jz8@rhp&lICVn6KOMQXOThp7
z8gnTK0R{T{8Z!zZaOz5jz^OPo5CZp2s@O(xSb$Wpu}5HB#5EC?xjMEHRB}U#hZ@f2
zT?bFBS{956=BBxxbI`bx8Cil`=Y}!ypCCdmw#gY2R1PRWi&NK)AkU0nV%hy8pR@ay
z^odek2dS~3_uJ#wZjx{TZ%{ImB6-4~gyrBx2nyqlBp$INxwXF*!3j6l;N--np|G9X
zKAJSL)pr3blkJrc1IO$h(+s=}S<5mC!C-s37R(A`f{xs4hKn{PQCS;vC>*gEWUY%9L5+^=7x}#ZQvF%+)guM)OAfjQg1e*KRQRg?K;*^X=
z4GXG{3?&Tdp)6`J@1`tz{K(GH8N+;m>_jZtG07$E>J}H)_5{`=uGWk_ybP10B}+2S
zZ~>E|C5tkV;e~hrXi0x2I@}Y5C2au#`HD}3pXeAA0v3mniWiKoc)e_0Tkyzj4nzTiEP$-5}UR^4KjgBJ6iMsHkX
ztIkzVehl9E5x#+r<+#i7&40m=GgcP(w(+Chr(kDrh&Y=sKaAGP*zp<+ZOY$dLl)f6
z)Nn>CP(~*ZGK1d;DGVC!c2xI{5Ej?n31yqt9>RvbD-dbM-GOf*UXBkz3oI%sL*!@3
zn;73hUIOzWOqp;1+5|mvMddhG9Shx>N_T}+@^I~>30>TOMWeHkMpn@rEkLk3Me=CH+U+CN5pGUe6gMd4kHxEHw3FEWM_#6!P98fPsaks_*
zN&!`~Z-YnNo?!KFjp_q>oF8FW5V{S&l?y?+lUKtsr?ZmND{;a()M?q$w%AgeGwwA2
zYphO7B!cEqWS9zfh9&fHCZd=YALepg8ZkUJ#r#OwcyfrMoE30sdo!U#XG^48v2rnZ
z>~!|dilZ_ItS|=yRz^~@SShTTi;t#IOWK>M)cL^v9+&SAUN```N}Fzlus|C6&VQXJ
zxE_U*ml=7&WrT)fldT|$sR#CI3v76=$lvC@l2-8*`|TkjBE1
z#sch1zH}N&NKnjf8A(Kgvb!`IFl9QC%5{kCLh>l-bL4IVq!IfIbeEgR#@a)fDqRKa
zNb1Cc!yLk>k%T|CAXIhDs$+Jq2U()BN8IAx09PF2rOuXpkWT!)aFF{h`Z>_khC`o+
z4~i$-6PD-9fp@_}mvKaHyPtt?Zpr9~M#x1+UT>6-L%ZaD5s>1^M)?#vzC;JMA7ba@
z709;Yp;^Nc?9eD}LCpi(OwZ3?^3RY<>N5voT_R*;dEkE8^t+l*a&5&;r-g0{KCN9%}G($?VEp^A6o=n|v+
z8cOLN5FVIBOi03w$b@31&1$pWG=MVDRNQsS@doeSQp+~#K@e)nJGL)#}L8m=GhMMXvnkL>^#${I-?=S#)2F>wkgNfHRRZ`nK>4AcQeE0%@xCp
zgrgK=@ppD&Sw1-yW1fYx8;x9{UyFDCxce~5SIq7jO&Ph;Z117IaQ8;T?|jCvCJa%Q
z`p^%ai1o_ayTRIpRG(;i-Q%dc(p{l~Nq;ql1uWBjJwjz=V94_GTJVB(DDE@q#B-|d
z<)qozmt6#p1h0wj9?BN>wa~1wkIA?7IX_eQdP$=|$#%YD6
zB4E*8Dncjj1!sF7YqR_|e@5N53B!d-N%W~i6
zJHb6=YKIPo`9I(%tRCqt=GMtc2W;&}>eVew5e%w0UbN&r*SKM49Q|l-dkfps&j6<0
zE)|;L&_7{9-;gw8ZQ<;?55W}{3F3TbjO)N0Uts0La(UjB_paAiR?0V{mCG1*zk3_F
zwEM?mNFN(L_jb6^9U9ocLluQ5aAhAuo)?`qocG_aFk-1u;vGOQ4q9rID2{H!cG|-3
zwJamJ4X5rX->u^8QE~R*82_OLR+XCliQA$JB4I5=_~n7sa7p)IGJ#Q{xmML*u4Y(=BOH6~1~
zPo{4!c1rQLpqv`Z4KarFSkginA&*!I&W>TuZI9)*<1$|}JVxx?FkWqC=nf-{o2@&{
z(o+~CShAKd1Q{46&vEcREep^cFDPwHiPO}#8z|KYvjy%p`x21T3g?>9mJr=X82NGUD|eeSG0
z#|S55i}AoctBugf*sd&=O_+cTd}tRyiAXP2R10Lct7o(=n(M~Z6FqoV-pb-_Evztc
zVu}?ePDF8~*u2+Z0TQe9SXX4GCGBgM{K3K!d{`XW@oUF6g?xmNKNu4XTf{XSG}Yc%bu7a}^NpG01Sw$SoR~Onv53JcAH{dO9~j!AdSGv<
z3P$qWSWMIO?qMiR!}}N=$OpcIa41avX+AQ_^hVi^V3nufZp8;7g&ao9G`)NA@d0Gd
z`?yf#TofxG@~7#!vsf#pn!N5qNFGMgG1w|)KBxC~;b!+h?ZjQ^E@J+X$^|=0#JIP4wmtbUl6E00=Ge
znQ5XVkCvL=r%CNWoe@w5F)`j}=sA~Yy@w=n#yz(j8slEjkO*H6?pu_!DOA(@oKORw
zXe&9sdz@{huu$BjSs4bASYg=qJ`Y^%2VslIC&a!0r);l={bAZ!9x7ji?KUP{A3pl(
z<0X6B3XA{-OXi}2ek*vcgrP2e31LxY)H#)OXzlTGBMt5~RSfyESwl2U0)A43zO4MD
zqi?2#UB-hWXP3V3C8z*NI6P
zxZi-Si1U!MF#X!Oms;a}69JVD_>^XTmMdZ|w&@pYj{-{$vwjPfX?qIa%D3q^Nr?Ma
z;CSDGZKjO0pU6n;+_+6VzaF4fB+JMN-BwB~)l_EHu6|4MTD6^Q_hz+IC~QK>qilRW
zP*F)x9}Hl16mjXi(B7<=%6m3fd#{sH4mDR&JJ}ZF$eH{pUa*5$c=A}DeU{KZOYxyN
zD&J$&A4LXgjzowJzRh)xVk~y*_C(@W9f2;GfHWjl_ZLbg(xc!|h*02pGQpIibc#c$
zS!1~BPa&W>N{+El@H+{~m$`ZmMj)L{{zp31K~Avj`BBZ0r5^i+MYCdMtLrzzO|dq%
z&k`$}^ZesF)_O_WuR+?)(Qd`y8iyaG((AS+$Ro4@JT-y?5#I*`JP<*%`9K7H^4IGK
zafFy$_z8rQ-0FM0c`+A6`zZt!#y{z>1?wx1fxaaz
zgZl$maTfK5jInG?(3I_$Q}?np_%_mFx*x$DS^7ge^a_+p=z5Zs{{bRShgE+B(>AI<
zhGCSy&T-IBV1=gHo*>BmDL%M%ixBPeIDBx1;Ab!@PvDbwe@-0MMTcugp(jZH7w{wf
zCt-sAFKJlSr(hW6r-Eowh(<6b2yuUf43lkuq%rxxd2)(GjA3blRQ+K+%7mD4ITH_Y2a0
z0iLA)dzhgA2N*^>a1i6322lNTCC&Wk7{}TW+Wfu=!3;Iuz{+|IR{lCBj{lC(%
zs(*uFl$Qt5PurI;@fob|P
zW8IhVNy``glr49C{F3~IOvPUdOz>yWu&O2uqkLi$e}XYVh-={kVGwRlH29Mx#2N;;
zStOFDXF?`VF-{wB%EW<*I3qNyY7~Z1err>lf-yme8^Z^25^hg4`0F_10MClk37vyD
zf5kWxfHTfkn258D2CkKWVU%|^#VHsQgt#5}AWp*V3HsN|FyTQNPQuX~Ic3Z;hBen@
zr4wMroq~zD(=d$ky+Ncb!vygaL`Fx5_R(c51Hf$hl;_i=p9ProyJ3QU4-Ko@3&SY?
zAc%%#OfV)0ar^K=WP~^QYkAHCxH(G6Lk#*t&oIt@z!~R!n20k+!>SI@2v--tFv`yd
zQTHHfL7WhT3Buil_<#Xo%>mtql&0-{VF(+#b)a0&01wZShd}_z!y@7u)x|Wdstdy?
zJHvhzX1WDqf)KtN&u9s6^4ICk1FRyH=Aze~V2i)os1*Q^(NYnXX}d(cA^J@c;^Jsn
zLE6o52&3iDZ@^!6C-zgI!K?3>GNjSt!{V_$IFkiD&c~02`CH(d9u}%&vF@Fi$LuxO
zVAl4QGD04{E17no!>-fk^XIWWimnkF0NwjRSD%)_QCs&((XhJDz$pISu=$uG$E~)k
z%Ki?x=-H(0fX2cK+t3NI-H>!eY#q6fn5@a4UjBHm^-#<33md)$NZHQYl4hw<@=H0aVKZm|mk
zO4gCkW03Xpjqh>blBEUMg?#oR*%U(mGv-4tdch?Y^9jQxyv;lp1g!OaI>5C!lc3?+VL-ADlx(4e*Ww
zBwIP2aJsXV4YaB;$_bFi?;#I$s-~Xd{>jd%ulU2ZJ*M{xgmZrmz2l&F0<5TCcEuXn2m2}bPGR<{@~!rFh}1n5
ze%@vQpGK?DaJU<(Hm+#y7UQwDOJd8GeQPMs@nmq9elB+W>h39S)ytgX4{K#1tCPnYw^FB6rc!+g9xyV(IX}CRU+q
zZg8z3u9XkAFfGF4Ds(G##udq^;z+VB71z8cteOY<8m7__*9>Z5v|1{b*11x|z)2q>
z$xGiW#T!eNX#-t^v4>$V7VvjqHQih{6ZD|)5TgF!1
z&8$$&w>L9gCJ(-dB`4Z-PBbQsSal9`hEUXgP7&F+S4gsviVxTdfG*(Mh||V*{QR8t
zlisd!wo$Tv<|Y#=Kk>edE>(WUa;<@9U{GfcI_|}nUQ)%rm{Rq{+&TuyNDV2V25j9-
zIW2``b?s6R)8nl60UAc)!RquDr4|-mmpjLHMgD^cLZM2W`*S~2DVw{0y4?u
zt2ruDj>gmuQ*`BCcl}Ej1^*0Y6i6t+2+-ElUdzX}+q0@twY6CsSUBPP3zp;FkHWfLNzhi!
zi%KcSGp|DYlFkbxok3Zww;(~O3{pOKEA2kbls?j&QaaIYnj+6XF`Zey@FLu9LeVbv
zmERt4t7<}>WqYo+&Xx>^m}(#+nP}DX%?@3p(_`}CpIC8zWfI1qndUn^vFb(mOxqXZ
zTe$?Ee0gT7gER)I4toE+r25&trJ8-88R(2nz8)DX^)|KJwM*e=dT+-U<+=8bzy++!
z;Al>s%qvjjRepWHIlt0DXBQ-ao!!6V9v8^`mdvB|Z|v&mR65a(h>L%Q;yr=Gz|uRj
z&oOJ4gF#h34aF?mZH?My)~*29&`C3EI|7$kFMI!g)AHQENsH3mv;5)e3#pU+&iS`(%1Co;ntr2O#D&Py8#5fcj1#;J37zwZiLPBcH>+76sSoW-FL&8
z$8O4-XhIq{(;O02;UuweM~_@j0>(ZKC+?)gh5-xeI_xR1cy$~WS=D>vadgjr78%?E
z8Zp~_4~)38>#UvUVLY3lg{L_9ZqmxnLS9bN+KqKioT6Ll-3ru{jmMO5l3nVy`x3!wq=cN5vLE
z9Y^1YCN^%!4PYXlgzfS6mg>1>L(&T
zZ5G36EY2@ThD%+}E?g~>xxR!8y)YIpv=R`B%7p_Qn&;Q6B&X|1hDab2BlHEBe<#n9
zxmX3{g+DPHuOOxX!D3D5MEp9niQ&GubJ|?2&4aWV)8_u#JXV`W!YrI%+8|H;T_3O0Vo*ih7~0qvo4;&3AQY;LCN;GWMsmzGL~!}>U9l}ZN*lc7SvNr
zRwJ<9i&R|C*NSlI6>CAH&}U(;@d32nE|M85*-0G0FLbEW+sTL`HS*)6)ioL~|DDND
zV=5GS2I7cSHgc8{Xq-wzY@!OIFISf~I8G)P
z7lwz%&ijIr@g-TbM-2&k3cv(*{@}`hq_Y%t9F7L?lk^@>wOTeqxAwX%4Z~ebm
z!bKgGbLsm2Lo{>W<11@NpuKYPr{VzKKTrWHp8#g%llV-st%7>wVH%*%@%70t|A~0a
za?7YL^0pT@c8X()Dj?%A$poem!oinSI-lm-U3r^)owaX&BKeMVT#H#5SF5Bvgw
z=C;i&soZ=wiWY;j)0s2Ugb~F}&P+yYp$8Y4aWv^ZERX*u%iEeYhK>}A;ra~kEK@(7T)*6?+h_5{E6
z8*Y_b-3!!;MT>6$D%XPNL-nx^dUl3#zljenS#^|H67@NB#JvB=cPs+M
zM}3N|kB7ji-(IW?9Xb)};ADt(^6l_fb+RX@lN^JHlDDCDmPdm+si&AaPV=*fJJiB9Du`Qa7iH}P&z^l3sKtc4
z9%(YYcOY=So?i{j)#Fr8(@AqSgJTM94vrJNA$DmX$<|0zN@~igPfwGU-yZQ4z0=qp
z`EypAccO*R?jtQh-ZrEqNW*2#X{a+EYshqUwWG)#1yN}nlrURS9ypC;omOQcfm>VL
z@6jtZF+y({&w@LL_R~U%uF%eOU
zN4yhZxsL(ciI|d1nFhwqbX{_?M&|wiIF|cEVyc-U!i~VinWCOIw}Hb+=_Bz-#dpCB
zW{O`#mx-C;m)LV2YfR8ICg^GM#TBkOJVMZXV^YlC+Sj#H%--5Jv{TI9+BdaR%-$Lv
z8IrJK_SU|oonrRZrnFPc-rBddQ_SAlceGQ?-r9GyQ%p#i`}od8A7~s0nxh7R6^uiJyqVEM$r-A6hX2F`v7`2gG!f65ZFNvj-R4zHhpB@Y9u
zg1dmUc#S4NUCp3<8bJNcpj-oJ6+s7*V1)z+CE}OUlL;^1?1Lx23Ta^y;6o |